diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 131bb4f..3a09319 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,6 +65,34 @@ jobs: - name: Lint code for consistent style run: bin/rubocop -f github + spec: + runs-on: ubuntu-latest + + # services: + # redis: + # image: valkey/valkey:8 + # ports: + # - 6379:6379 + # options: --health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5 + steps: + - name: Install packages + run: sudo apt-get update && sudo apt-get install --no-install-recommends -y libvips node-gyp + + - name: Checkout code + uses: actions/checkout@v7 + + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + bundler-cache: true + + - name: Run specs + env: + RAILS_ENV: test + # RAILS_MASTER_KEY: ${{ secrets.RAILS_MASTER_KEY }} + # REDIS_URL: redis://localhost:6379/0 + run: bin/rspec + test: runs-on: ubuntu-latest diff --git a/.gitignore b/.gitignore index f13cbd3..33c3e37 100644 --- a/.gitignore +++ b/.gitignore @@ -51,3 +51,8 @@ # Ignore key files for decrypting credentials and more. /config/*.key + +# Ignore data files that are generated by the application and should not be committed to the repository. +/data/ead +/data/xml +/data/pdf \ No newline at end of file diff --git a/.rspec b/.rspec new file mode 100644 index 0000000..c99d2e7 --- /dev/null +++ b/.rspec @@ -0,0 +1 @@ +--require spec_helper diff --git a/.rubocop.yml b/.rubocop.yml index f9d86d4..33dd7f1 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,8 +1,15 @@ +inherit_from: .rubocop_todo.yml + # Omakase Ruby styling for Rails inherit_gem: { rubocop-rails-omakase: rubocop.yml } # Overwrite or add rules to create your own house style # +# Enforce explicit frozen string literal magic comments. +#Style/FrozenStringLiteralComment: +# Enabled: true +# EnforcedStyle: always_true + # # Use `[a, [b, c]]` not `[ a, [ b, c ] ]` # Layout/SpaceInsideArrayLiteralBrackets: # Enabled: false diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml new file mode 100644 index 0000000..ac97bcc --- /dev/null +++ b/.rubocop_todo.yml @@ -0,0 +1,21 @@ +# This configuration was generated by +# `rubocop --auto-gen-config --auto-gen-only-exclude --no-exclude-limit` +# on 2026-06-25 15:59:23 UTC using RuboCop version 1.87.0. +# The point is for the user to remove these configuration records +# one by one as the offenses are removed from the code base. +# Note that changes in the inspected code, or installation of new +# versions of RuboCop, may require this file to be generated again. + +# Offense count: 2 +# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes, Max. +Metrics/AbcSize: + Exclude: + - 'app/services/package/generator.rb' + - 'lib/box/package/generator.rb' + +# Offense count: 4 +# Configuration parameters: CountComments, Max, CountAsOne, AllowedMethods, AllowedPatterns. +Metrics/MethodLength: + Exclude: + - 'app/services/package/generator.rb' + - 'lib/box/package/generator.rb' diff --git a/Dockerfile b/Dockerfile index d35f019..fcf1bad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,6 +17,14 @@ WORKDIR /rails # Install base packages RUN apt-get update -qq && \ apt-get install --no-install-recommends -y curl libjemalloc2 libvips sqlite3 && \ + # wkhtmltopdf is no longer packaged in Debian bookworm; install the official + # static build (.deb) so the PDF packager can shell out to it. Installing a + # local .deb via apt lets it resolve the font/X11 dependencies automatically. + arch="$(dpkg --print-architecture)" && \ + curl -fsSL -o /tmp/wkhtmltox.deb \ + "https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6.1-3/wkhtmltox_0.12.6.1-3.bookworm_${arch}.deb" && \ + apt-get install --no-install-recommends -y /tmp/wkhtmltox.deb && \ + rm -f /tmp/wkhtmltox.deb && \ ln -s /usr/lib/$(uname -m)-linux-gnu/libjemalloc.so.2 /usr/local/lib/libjemalloc.so && \ rm -rf /var/lib/apt/lists /var/cache/apt/archives diff --git a/Gemfile b/Gemfile index 376862c..5533202 100644 --- a/Gemfile +++ b/Gemfile @@ -44,6 +44,14 @@ gem "image_processing", "~> 1.2" # date range chart gem "blacklight_range_limit", ">= 9.2" +# job worker queue +gem "resque", "~> 3.0" +gem "redis" +gem "resque-scheduler" +# NOTE: The Resque dashboard is served by Resque::Server (bundled with the +# `resque` gem) via config/resque_web.ru. The separate `resque-web` gem is +# intentionally NOT used: it depends on sass-rails/sprockets, which conflicts +# with this app's Propshaft asset pipeline and breaks `assets:precompile`. group :development, :test do # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem @@ -53,7 +61,7 @@ group :development, :test do gem "bundler-audit", require: false # Static analysis for security vulnerabilities [https://brakemanscanner.org/] - gem "brakeman", "~> 8.0.5", require: false + gem "brakeman", "~> 8.0.6", require: false # Omakase Ruby styling [https://github.com/rails/rubocop-rails-omakase/] gem "rubocop-rails-omakase", require: false @@ -73,9 +81,11 @@ gem "arclight" group :development, :test do gem "solr_wrapper", ">= 0.3" + gem "rspec-rails", "~> 8.0" end gem "rsolr", ">= 1.0", "< 3" gem "bootstrap", "~> 5.3" gem "devise" gem "devise-guests", "~> 0.8" gem "blacklight-locale_picker" +gem "benchmark" diff --git a/Gemfile.lock b/Gemfile.lock index 4f9fe64..71be33d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -77,7 +77,8 @@ GEM uri (>= 0.13.1) addressable (2.9.0) public_suffix (>= 2.0.2, < 8.0) - arclight (1.6.2) + arclight (1.6.3) + benchmark blacklight (>= 8.0.0, < 9) gretel rails (>= 7.1, < 9) @@ -87,6 +88,7 @@ GEM base64 (0.3.0) bcrypt (3.1.22) bcrypt_pbkdf (1.1.2) + benchmark (0.5.0) bigdecimal (4.1.2) bindex (0.8.1) blacklight (8.12.3) @@ -103,11 +105,11 @@ GEM blacklight_range_limit (9.2.0) blacklight (>= 7.25.2, < 10) view_component (>= 2.54, < 5) - bootsnap (1.24.6) - msgpack (~> 1.2) + bootsnap (1.25.0) + msgpack (~> 1.5) bootstrap (5.3.8) popper_js (>= 2.11.8, < 3) - brakeman (8.0.5) + brakeman (8.0.6) racc builder (3.3.0) bundler-audit (0.9.3) @@ -127,7 +129,7 @@ GEM crass (1.0.7) cssbundling-rails (1.4.3) railties (>= 6.0.0) - csv (3.3.5) + csv (3.3.6) date (3.5.1) debug (1.11.1) irb (~> 1.10) @@ -142,6 +144,7 @@ GEM warden (~> 1.2.3) devise-guests (0.8.3) devise + diff-lcs (1.6.2) domain_name (0.6.20240107) dot-properties (0.1.4) bundler (>= 2.2.33) @@ -167,9 +170,6 @@ GEM ffi (1.17.4-arm64-darwin) ffi (1.17.4-x86_64-linux-gnu) ffi (1.17.4-x86_64-linux-musl) - ffi-compiler (1.4.2) - ffi (>= 1.15.5) - rake fugit (1.13.0) et-orbi (~> 1.4) raabro (~> 1.4) @@ -180,16 +180,16 @@ GEM railties (>= 6.1) hashie (5.1.0) logger - http (5.3.1) - addressable (~> 2.8) + http-2 (1.2.1) + http (6.0.4) http-cookie (~> 1.0) - http-form_data (~> 2.2) - llhttp-ffi (~> 0.5.0) + llhttp (~> 0.6.1) http-cookie (1.1.6) domain_name (~> 0.5) - http-form_data (2.3.0) httpclient (2.9.0) mutex_m + httpx (1.8.1) + http-2 (>= 1.2.0) i18n (1.15.2) concurrent-ruby (~> 1.0) image_processing (1.14.0) @@ -199,7 +199,7 @@ GEM actionpack (>= 6.0.0) activesupport (>= 6.0.0) railties (>= 6.0.0) - io-console (0.8.2) + io-console (0.9.2) irb (1.18.0) pp (>= 0.6.0) prism (>= 1.3.0) @@ -234,11 +234,9 @@ GEM activerecord kaminari-core (= 1.2.2) kaminari-core (1.2.2) - language_server-protocol (3.17.0.5) + language_server-protocol (3.17.0.6) lint_roller (1.1.0) - llhttp-ffi (0.5.1) - ffi-compiler (~> 1.0) - rake (~> 13.0) + llhttp (0.6.2) logger (1.7.0) loofah (2.25.2) crass (~> 1.0.2) @@ -256,15 +254,17 @@ GEM marc (~> 1.0) marcel (1.2.1) matrix (0.4.3) - mini_magick (5.3.1) + mini_magick (5.3.3) logger mini_mime (1.1.5) minitar (1.1.0) minitest (6.0.6) drb (~> 2.0) prism (~> 1.5) - msgpack (1.8.3) + mono_logger (1.1.2) + msgpack (1.8.4) multi_json (1.21.1) + mustermann (3.1.1) mutex_m (0.3.0) net-http (0.9.1) uri (>= 0.11.1) @@ -300,7 +300,7 @@ GEM orm_adapter (0.5.0) ostruct (0.6.3) parallel (2.1.0) - parser (3.3.11.1) + parser (3.3.12.0) ast (~> 2.4.1) racc popper_js (2.11.8) @@ -317,7 +317,11 @@ GEM nio4r (~> 2.0) raabro (1.5.0) racc (1.8.1) - rack (3.2.6) + rack (3.2.7) + rack-protection (4.2.1) + base64 (>= 0.1.0) + logger (>= 1.6.0) + rack (>= 3.0.0, < 4) rack-session (2.1.2) base64 (>= 0.1.0) rack (>= 3.0.0) @@ -357,7 +361,7 @@ GEM zeitwerk (~> 2.6) rainbow (3.1.1) rake (13.4.2) - rbs (4.1.2) + rbs (4.1.3) logger prism (>= 1.6.0) tsort @@ -366,18 +370,56 @@ GEM prism (>= 1.6.0) rbs (>= 4.0.0) tsort + redis (6.0.0) + redis-client (= 0.30.1) + redis-client (0.30.1) + connection_pool + redis-namespace (1.11.0) + redis (>= 4) regexp_parser (2.12.0) - reline (0.6.3) + reline (0.7.0) io-console (~> 0.5) responders (3.2.0) actionpack (>= 7.0) railties (>= 7.0) + resque (3.0.0) + base64 (~> 0.1) + logger + mono_logger (~> 1) + multi_json (~> 1.0) + redis (>= 4.0) + redis-namespace (~> 1.6) + sinatra (>= 2.0) + resque-scheduler (5.0.0) + base64 (~> 0.1) + logger + mono_logger (~> 1.0) + redis (>= 4.0) + resque (>= 3.0) + rufus-scheduler (~> 3.2, != 3.3) retriable (4.2.0) rexml (3.4.4) rsolr (2.6.0) builder (>= 2.1.2) faraday (>= 0.9, < 3, != 2.0.0) - rubocop (1.88.1) + rspec-core (3.13.6) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.5) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.8) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-rails (8.0.4) + actionpack (>= 7.2) + activesupport (>= 7.2) + railties (>= 7.2) + rspec-core (>= 3.13.0, < 5.0.0) + rspec-expectations (>= 3.13.0, < 5.0.0) + rspec-mocks (>= 3.13.0, < 5.0.0) + rspec-support (>= 3.13.0, < 5.0.0) + rspec-support (3.13.7) + rubocop (1.89.0) json (~> 2.3) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.1.0) @@ -388,18 +430,18 @@ GEM rubocop-ast (>= 1.49.0, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 4.0) - rubocop-ast (1.49.1) + rubocop-ast (1.50.0) parser (>= 3.3.7.2) prism (~> 1.7) - rubocop-performance (1.26.1) + rubocop-performance (1.27.0) lint_roller (~> 1.1) - rubocop (>= 1.75.0, < 2.0) + rubocop (>= 1.89.0, < 2.0) rubocop-ast (>= 1.47.1, < 2.0) - rubocop-rails (2.35.5) + rubocop-rails (2.37.0) activesupport (>= 4.2.0) lint_roller (~> 1.1) rack (>= 1.1) - rubocop (>= 1.75.0, < 2.0) + rubocop (>= 1.89.0, < 2.0) rubocop-ast (>= 1.44.0, < 2.0) rubocop-rails-omakase (1.1.0) rubocop (>= 1.72) @@ -409,14 +451,23 @@ GEM ruby-vips (2.3.0) ffi (~> 1.12) logger - rubyzip (3.4.1) + rubyzip (3.5.0) + rufus-scheduler (3.9.2) + fugit (~> 1.1, >= 1.11.1) securerandom (0.4.1) - selenium-webdriver (4.46.0) + selenium-webdriver (4.47.0) base64 (~> 0.2) logger (~> 1.4) rexml (~> 3.2, >= 3.2.5) rubyzip (>= 1.2.2, < 4.0) websocket (~> 1.0) + sinatra (4.2.1) + logger (>= 1.6.0) + mustermann (~> 3.0) + rack (>= 3.0.0, < 4) + rack-protection (= 4.2.1) + rack-session (>= 2.0.0, < 3) + tilt (~> 2.0) slop (4.10.1) solid_cable (4.0.2) actioncable (>= 7.2) @@ -441,14 +492,14 @@ GEM ostruct retriable ruby-progressbar - sqlite3 (2.9.5-aarch64-linux-gnu) - sqlite3 (2.9.5-aarch64-linux-musl) - sqlite3 (2.9.5-arm-linux-gnu) - sqlite3 (2.9.5-arm-linux-musl) - sqlite3 (2.9.5-arm64-darwin) - sqlite3 (2.9.5-x86_64-linux-gnu) - sqlite3 (2.9.5-x86_64-linux-musl) - sshkit (1.25.0) + sqlite3 (2.9.6-aarch64-linux-gnu) + sqlite3 (2.9.6-aarch64-linux-musl) + sqlite3 (2.9.6-arm-linux-gnu) + sqlite3 (2.9.6-arm-linux-musl) + sqlite3 (2.9.6-arm64-darwin) + sqlite3 (2.9.6-x86_64-linux-gnu) + sqlite3 (2.9.6-x86_64-linux-musl) + sshkit (1.25.1) base64 logger net-scp (>= 1.1.2) @@ -458,18 +509,21 @@ GEM stimulus-rails (1.3.4) railties (>= 6.0.0) thor (1.5.0) - thruster (0.1.23) - thruster (0.1.23-aarch64-linux) - thruster (0.1.23-arm64-darwin) - thruster (0.1.23-x86_64-linux) + thruster (0.1.25) + thruster (0.1.25-aarch64-linux) + thruster (0.1.25-arm64-darwin) + thruster (0.1.25-x86_64-linux) + tilt (2.9.0) timeout (0.6.1) - traject (3.8.3) + traject (3.9.1) + base64 concurrent-ruby (>= 0.8.0) csv dot-properties (>= 0.1.1) hashie (>= 3.1, < 6) - http (>= 3.0, < 6) + http (>= 3.0, < 7) httpclient (~> 2.5) + httpx (~> 1.4) marc (~> 1.0) marc-fastxmlwriter (~> 1.0) mutex_m @@ -526,11 +580,12 @@ PLATFORMS DEPENDENCIES arclight + benchmark blacklight-locale_picker blacklight_range_limit (>= 9.2) bootsnap bootstrap (~> 5.3) - brakeman (~> 8.0.5) + brakeman (~> 8.0.6) bundler-audit capybara cssbundling-rails @@ -544,7 +599,11 @@ DEPENDENCIES propshaft puma (>= 5.0) rails (~> 8.1.3) + redis + resque (~> 3.0) + resque-scheduler rsolr (>= 1.0, < 3) + rspec-rails (~> 8.0) rubocop-rails-omakase selenium-webdriver solid_cable @@ -572,19 +631,20 @@ CHECKSUMS activestorage (8.1.3.1) sha256=f555254f387b1cffa499d2fd3115d12635eadc5b15206a8534316a67036163ef activesupport (8.1.3.1) sha256=85458765f25ea48b9019c46b6bb3fa5683197bf4280d9f06710a6e8d7a831376 addressable (2.9.0) sha256=7fdf6ac3660f7f4e867a0838be3f6cf722ace541dd97767fa42bc6cfa980c7af - arclight (1.6.2) sha256=a990fd84e91552d7027223ab4b9daa1bc0daa14d7ad4631f5ebcb1cba2d9ec16 + arclight (1.6.3) sha256=e0975876906702531a85d15851997a8f5f7f8a50fc59ef96813ac1ec66364905 ast (2.4.3) sha256=954615157c1d6a382bc27d690d973195e79db7f55e9765ac7c481c60bdb4d383 base64 (0.3.0) sha256=27337aeabad6ffae05c265c450490628ef3ebd4b67be58257393227588f5a97b bcrypt (3.1.22) sha256=1f0072e88c2d705d94aff7f2c5cb02eb3f1ec4b8368671e19112527489f29032 bcrypt_pbkdf (1.1.2) sha256=c2414c23ce66869b3eb9f643d6a3374d8322dfb5078125c82792304c10b94cf6 + benchmark (0.5.0) sha256=465df122341aedcb81a2a24b4d3bd19b6c67c1530713fd533f3ff034e419236c bigdecimal (4.1.2) sha256=53d217666027eab4280346fba98e7d5b66baaae1b9c3c1c0ffe89d48188a3fbd bindex (0.8.1) sha256=7b1ecc9dc539ed8bccfc8cb4d2732046227b09d6f37582ff12e50a5047ceb17e blacklight (8.12.3) sha256=7ff56bad2ae768653d5646593c8f3e8ea903aea7084cc3c20fd51282da95230f blacklight-locale_picker (1.3.0) sha256=7ee2bd1f6aeac0e4389c3700a4d25dea3ffca8933340c2bf44d2ff7fcce72b1e blacklight_range_limit (9.2.0) sha256=1cd556fce61a9e0a6e02fb110fca102376cbeaafbe4ce3a3d072e16c2b19a3b1 - bootsnap (1.24.6) sha256=c60bab88c70332290f0a2636a288f675299eb4f804a02a3c085b42eca9da164a + bootsnap (1.25.0) sha256=41059e7d0f9cb4023a33465d095f64b913fc9d1b808d6524c307da945fbcffcf bootstrap (5.3.8) sha256=1c23b06df24ec28a0058ad90a0da93e260d2c0a5c453d7087f6bad428464742f - brakeman (8.0.5) sha256=03735f9690d3fd4b32d66aacbf0a6d15a84266bdd06b32c05c8ecc8f6021d2be + brakeman (8.0.6) sha256=759cc69341115e6c2dcd47b6fd8649a0b9bd540e3585ac8a0a94e31c66fee386 builder (3.3.0) sha256=497918d2f9dca528fdca4b88d84e4ef4387256d984b8154e9d5d3fe5a9c8835f bundler (4.0.13) sha256=19f08be7f27022cf0b89f27da0b044ae075e8270a9ef44ad248a932614e1ca3b bundler-audit (0.9.3) sha256=81c8766c71e47d0d28a0f98c7eed028539f21a6ea3cd8f685eb6f42333c9b4e9 @@ -593,12 +653,13 @@ CHECKSUMS connection_pool (3.0.2) sha256=33fff5ba71a12d2aa26cb72b1db8bba2a1a01823559fb01d29eb74c286e62e0a crass (1.0.7) sha256=94868719948664c89ddcaf0a37c65048413dfcb1c869470a5f7a7ceb5390b295 cssbundling-rails (1.4.3) sha256=53aecd5a7d24ac9c8fcd92975acd0e830fead4ee4583d3d3d49bb64651946e41 - csv (3.3.5) sha256=6e5134ac3383ef728b7f02725d9872934f523cb40b961479f69cf3afa6c8e73f + csv (3.3.6) sha256=aba61e7e507a66f03d45cb1f3c4b6359861c3504038b422962875dce099e4456 date (3.5.1) sha256=750d06384d7b9c15d562c76291407d89e368dda4d4fff957eb94962d325a0dc0 debug (1.11.1) sha256=2e0b0ac6119f2207a6f8ac7d4a73ca8eb4e440f64da0a3136c30343146e952b6 deprecation (1.1.0) sha256=01707cea9a6ed2d7270377457941f43394a345e6dd8048e1be6d18ff2f2a01e1 devise (5.0.4) sha256=d605f2b85854e74e56ee789e2d398702bc2d06e6bcd894717a670a3199c74cc1 devise-guests (0.8.3) sha256=3df086c2adad4ad66661020483c16de142a487eddf2672834a7345269b7f9fa4 + diff-lcs (1.6.2) sha256=9ae0d2cba7d4df3075fe8cd8602a8604993efc0dfa934cff568969efb1909962 domain_name (0.6.20240107) sha256=5f693b2215708476517479bf2b3802e49068ad82167bcd2286f899536a17d933 dot-properties (0.1.4) sha256=c41f5681d53e946ed5a2afa45bfd2dc8a4475980f62eba069ca83aaba2637004 dotenv (3.2.0) sha256=e375b83121ea7ca4ce20f214740076129ab8514cd81378161f11c03853fe619d @@ -617,19 +678,19 @@ CHECKSUMS ffi (1.17.4-arm64-darwin) sha256=19071aaf1419251b0a46852abf960e77330a3b334d13a4ab51d58b31a937001b ffi (1.17.4-x86_64-linux-gnu) sha256=9d3db14c2eae074b382fa9c083fe95aec6e0a1451da249eab096c34002bc752d ffi (1.17.4-x86_64-linux-musl) sha256=3fdf9888483de005f8ef8d1cf2d3b20d86626af206cbf780f6a6a12439a9c49e - ffi-compiler (1.4.2) sha256=a9d69d5d9ced6f64776ddafa535867ad90e5740ad37bed7afb4de6e450da126e fugit (1.13.0) sha256=a4f093fce740da52f216740a5041e2a594ea763cdb89e8b2754ca4399634ab18 globalid (1.4.0) sha256=037f12fbf1d9d7a014d501c2d5c77356fd4ddd96d7a7991d6700bba96706f427 gretel (5.1.0) sha256=7324d255dca34b8997cba2d207f29c11b9cdbd4e72bd5d6392cf67da46b9cdaf hashie (5.1.0) sha256=c266471896f323c446ea8207f8ffac985d2718df0a0ba98651a3057096ca3870 - http (5.3.1) sha256=c50802d8e9be3926cb84ac3b36d1a31fbbac383bc4cbecdce9053cb604231d7d + http (6.0.4) sha256=3768f902489ea8309424f1881c668af8d3ca73675648a755dfe2cb0030d42d26 + http-2 (1.2.1) sha256=d290f3b7daa70b8be8cd2260306c01243c73ec4df9d598feadaf0ed26e00b9b7 http-cookie (1.1.6) sha256=ba4b82be64de61dc281243dac70e3c382c45142f20268ed9276a3670c93feaa9 - http-form_data (2.3.0) sha256=cc4eeb1361d9876821e31d7b1cf0b68f1cf874b201d27903480479d86448a5f3 httpclient (2.9.0) sha256=4b645958e494b2f86c2f8a2f304c959baa273a310e77a2931ddb986d83e498c8 + httpx (1.8.1) sha256=8d9e003019b2c1a8f582daac9371ec9da96182c23064e211386eaad70b6e12e5 i18n (1.15.2) sha256=00f9eb62412fe593b2a65a97daa75300d37abb8f7202ec748e94b6d46a9dd1b5 image_processing (1.14.0) sha256=754cc169c9c262980889bec6bfd325ed1dafad34f85242b5a07b60af004742fb importmap-rails (2.2.3) sha256=7101be2a4dc97cf1558fb8f573a718404c5f6bcfe94f304bf1f39e444feeb16a - io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc + io-console (0.9.2) sha256=efa74f891dd03c0939a931dfc6e74c2813d904763d456ea9762b0525e748db08 irb (1.18.0) sha256=de9454a0703a54704b9811a5ef31a60c86949fbf4013fcf244fabc7c775248e3 jbuilder (2.15.1) sha256=2430bec28fb0cebacb5875b1009cf9d8bc3c303ccb810c4c8b062a4b51457637 json (2.21.2) sha256=1f1d3b7cf2b3ba1a69beca0bb6db13d5438b80bff3cd54cdaaa620b9b07c1c6a @@ -639,9 +700,9 @@ CHECKSUMS kaminari-actionview (1.2.2) sha256=1330f6fc8b59a4a4ef6a549ff8a224797289ebf7a3a503e8c1652535287cc909 kaminari-activerecord (1.2.2) sha256=0dd3a67bab356a356f36b3b7236bcb81cef313095365befe8e98057dd2472430 kaminari-core (1.2.2) sha256=3bd26fec7370645af40ca73b9426a448d09b8a8ba7afa9ba3c3e0d39cdbb83ff - language_server-protocol (3.17.0.5) sha256=fd1e39a51a28bf3eec959379985a72e296e9f9acfce46f6a79d31ca8760803cc + language_server-protocol (3.17.0.6) sha256=5ef2c0c138f8267e1bc631d3328347d354f96724b0af22f2c79516120443b7f0 lint_roller (1.1.0) sha256=2c0c845b632a7d172cb849cc90c1bce937a28c5c8ccccb50dfd46a485003cc87 - llhttp-ffi (0.5.1) sha256=9a25a7fc19311f691a78c9c0ac0fbf4675adbd0cca74310228fdf841018fa7bc + llhttp (0.6.2) sha256=3c3c59aafb1e1594ab2f45293478f697458f5a91eb0f0db4b27f61a064024982 logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203 loofah (2.25.2) sha256=2007f746959ac65552456e04b433e83deb22759ab38c838b4445c70e43425918 mail (2.9.1) sha256=06574eca475253d6c18145dd70af80d0eb970182d55053497c5f4d797ea160e8 @@ -649,12 +710,14 @@ CHECKSUMS marc-fastxmlwriter (1.1.0) sha256=b696f5688a5b2fa48ea299d6aa5f00f161925576b08f38871ea384ebc6a7fe25 marcel (1.2.1) sha256=1678e9360e32f9eafa917c80029e2f6d10b2715c66a4b87b6d0da9b9cd1f859f matrix (0.4.3) sha256=a0d5ab7ddcc1973ff690ab361b67f359acbb16958d1dc072b8b956a286564c5b - mini_magick (5.3.1) sha256=29395dfd76badcabb6403ee5aff6f681e867074f8f28ce08d78661e9e4a351c4 + mini_magick (5.3.3) sha256=b3beed8a8cef36bd03666365f14b89cd344da0ecd373af53e617c71bfd426aab mini_mime (1.1.5) sha256=8681b7e2e4215f2a159f9400b5816d85e9d8c6c6b491e96a12797e798f8bccef minitar (1.1.0) sha256=38db0cfb6f3801017946cdcd8dc53f2cf3fd41ff752892312bf9a1639c9ea23e minitest (6.0.6) sha256=153ea36d1d987a62942382b61075745042a2b3123b1cd48f4c3675af9cc7d6f1 - msgpack (1.8.3) sha256=8bda4a6428d3244e50d6bd55854d354edbada88a4e1f4f5731a39a0f86bee6a1 + mono_logger (1.1.2) sha256=2e359def7007f5c908aadd953687991fe667995d14ae5f0d10dda76e3e8670f7 + msgpack (1.8.4) sha256=4411c22d350dd1c20250f7eada3cca2695438c2f769cf0782f0cd065d90a3e7b multi_json (1.21.1) sha256=e6126a31808e3b4d19f483c775ceac34df190dffa62adfb63a165ee14ba68080 + mustermann (3.1.1) sha256=4c6170c7234d5499c345562ba7c7dfe73e1754286dcc1abb053064d66a127198 mutex_m (0.3.0) sha256=cfcb04ac16b69c4813777022fdceda24e9f798e48092a2b817eb4c0a782b0751 net-http (0.9.1) sha256=25ba0b67c63e89df626ed8fac771d0ad24ad151a858af2cc8e6a716ca4336996 net-imap (0.6.6) sha256=96aa4ee50df3060203e649efc341f53480b791d49e150f2fdebf68beb141a8df @@ -675,7 +738,7 @@ CHECKSUMS orm_adapter (0.5.0) sha256=aa5d0be5d540cbb46d3a93e88061f4ece6a25f6e97d6a47122beb84fe595e9b9 ostruct (0.6.3) sha256=95a2ed4a4bd1d190784e666b47b2d3f078e4a9efda2fccf18f84ddc6538ed912 parallel (2.1.0) sha256=b35258865c2e31134c5ecb708beaaf6772adf9d5efae28e93e99260877b09356 - parser (3.3.11.1) sha256=d17ace7aabe3e72c3cc94043714be27cc6f852f104d81aa284c2281aecc65d54 + parser (3.3.12.0) sha256=21a6d7f755d5a24dfbdc6e6b772e4e879a52e7631a88bc5a3a134606052c9828 popper_js (2.11.8) sha256=f4b0be717fc0d50bdb3dbbc55788525a9e0e8f640b76c9971fc34ee609eadbd2 pp (0.6.4) sha256=dfcb0fce700c41456265922884f9fe195d7fbb0674a3578e6c0f69588e82b570 prettyprint (0.2.0) sha256=2bc9e15581a94742064a3cc8b0fb9d45aae3d03a1baa6ef80922627a0766f193 @@ -685,7 +748,8 @@ CHECKSUMS puma (8.0.2) sha256=c8ed871dfbbe66448ea9ffd46692342d9804d4071522b52b5331b7b6e7b686fb raabro (1.5.0) sha256=3f998a7bc84f9c84df3ab580634d2e0a5bda4f0841168d56035f529c9877440a racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f - rack (3.2.6) sha256=5ed78e1f73b2e25679bec7d45ee2d4483cc4146eb1be0264fc4d94cb5ef212c2 + rack (3.2.7) sha256=93e13e1c24f93556671d85d2d79fa228c3485815c50d7e2f265b5330c6528fb7 + rack-protection (4.2.1) sha256=cf6e2842df8c55f5e4d1a4be015e603e19e9bc3a7178bae58949ccbb58558bac rack-session (2.1.2) sha256=595434f8c0c3473ae7d7ac56ecda6cc6dfd9d37c0b2b5255330aa1576967ffe8 rack-test (2.2.0) sha256=005a36692c306ac0b4a9350355ee080fd09ddef1148a5f8b2ac636c720f5c463 rackup (2.3.1) sha256=6c79c26753778e90983761d677a48937ee3192b3ffef6bc963c0950f94688868 @@ -695,45 +759,58 @@ CHECKSUMS railties (8.1.3.1) sha256=2388a232579a00cefea4487de66c8553c3408c1300abdc6cf1799d86ffb04487 rainbow (3.1.1) sha256=039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a rake (13.4.2) sha256=cb825b2bd5f1f8e91ca37bddb4b9aaf345551b4731da62949be002fa89283701 - rbs (4.1.2) sha256=050eb1d8b508f1233bed929c0f2c7052302f7adf295230d9cb314e9024078f48 + rbs (4.1.3) sha256=0c4474a9751cdc14364bfad0b3e53678323bbdc2c31683b0445932867dbab8c4 rdoc (8.0.0) sha256=03bf8c08a9639658855a0cfd77c0abca8325c227693f7f33f82957811348c469 + redis (6.0.0) sha256=de71c10edd106986b759ec7ecdd08b63b9c0ee7414a0d0c1da73d31ba2bccda6 + redis-client (0.30.1) sha256=5151bc5c7bbfe48623732cdae3b900d8a22dc691cc7cdfacfb351ac55116522d + redis-namespace (1.11.0) sha256=e91a1aa2b2d888b6dea1d4ab8d39e1ae6fac3426161feb9d91dd5cca598a2239 regexp_parser (2.12.0) sha256=35a916a1d63190ab5c9009457136ae5f3c0c7512d60291d0d1378ba18ce08ebb - reline (0.6.3) sha256=1198b04973565b36ec0f11542ab3f5cfeeec34823f4e54cebde90968092b1835 + reline (0.7.0) sha256=5b012d8e55dbf9d450f12bde2cf7d15ff546ae80b3f8f3b30e570d431815583d responders (3.2.0) sha256=89c2d6ac0ae16f6458a11524cae4a8efdceba1a3baea164d28ee9046bd3df55a + resque (3.0.0) sha256=ee6f02b61b2af48c587587dd6fb3b9b5eca94e348c568aed8e9d7e7872b2f713 + resque-scheduler (5.0.0) sha256=f199df7ae73b5c7972acd27c7e2f8a1f1ff4339eca5b794d0b2ba74c3d998aff retriable (4.2.0) sha256=90c3b257472a1c02f2a3dfa64dd35a420f7a624cef1a5981e20fdac5730f8cdc rexml (3.4.4) sha256=19e0a2c3425dfbf2d4fc1189747bdb2f849b6c5e74180401b15734bc97b5d142 rsolr (2.6.0) sha256=4b3bcea772cac300562775c20eeddedf63a6b7516a070cb6fbde000b09cfe12b - rubocop (1.88.1) sha256=726af773d6bc169ed3ff852f3ca020b7c58d39c34e7a8d879a8e0147cc994f26 - rubocop-ast (1.49.1) sha256=4412f3ee70f6fe4546cc489548e0f6fcf76cafcfa80fa03af67098ffed755035 - rubocop-performance (1.26.1) sha256=cd19b936ff196df85829d264b522fd4f98b6c89ad271fa52744a8c11b8f71834 - rubocop-rails (2.35.5) sha256=f00b3c936002ba8e9ac62e8607c54bb24cda44b36e41b9c7e4f3872e1b0f3fe3 + rspec-core (3.13.6) sha256=a8823c6411667b60a8bca135364351dda34cd55e44ff94c4be4633b37d828b2d + rspec-expectations (3.13.5) sha256=33a4d3a1d95060aea4c94e9f237030a8f9eae5615e9bd85718fe3a09e4b58836 + rspec-mocks (3.13.8) sha256=086ad3d3d17533f4237643de0b5c42f04b66348c28bf6b9c2d3f4a3b01af1d47 + rspec-rails (8.0.4) sha256=06235692fc0892683d3d34977e081db867434b3a24ae0dd0c6f3516bad4e22df + rspec-support (3.13.7) sha256=0640e5570872aafefd79867901deeeeb40b0c9875a36b983d85f54fb7381c47c + rubocop (1.89.0) sha256=4dee8e3ee9c45e474834efd9e8d6fd031e8331c8dacdff0de4ad65ae0a6faae7 + rubocop-ast (1.50.0) sha256=b9ca88300da0803ee222ad20cdb30494c0a784eed06fdc35d254b06d662788db + rubocop-performance (1.27.0) sha256=eeeb1374d062a368ee1c787b70eb0b0cc4b184cb1f8565f424760946146d61ce + rubocop-rails (2.37.0) sha256=6e1645add5060e0328f8ddda0d820f55697c591394398bf14bb9dccb62f14b7e rubocop-rails-omakase (1.1.0) sha256=2af73ac8ee5852de2919abbd2618af9c15c19b512c4cfc1f9a5d3b6ef009109d ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33 ruby-vips (2.3.0) sha256=e685ec02c13969912debbd98019e50492e12989282da5f37d05f5471442f5374 - rubyzip (3.4.1) sha256=0a79e745b5c25872ebd148457df5665da8530ed8626c993b01457128f173ca02 + rubyzip (3.5.0) sha256=f77c49d737a849b662f6ca4de473f31b4ecd8288f1c9f901a5c820641f0f8d7c + rufus-scheduler (3.9.2) sha256=55fa9e4db0ff69d7f38c804f17baba0c9bce5cba39984ae3c5cf6c039d1323b9 securerandom (0.4.1) sha256=cc5193d414a4341b6e225f0cb4446aceca8e50d5e1888743fac16987638ea0b1 - selenium-webdriver (4.46.0) sha256=cb6cfa6f79eac041749df0b14cdcb0e9fe5df3715a64c77bfaa56b345b99f957 + selenium-webdriver (4.47.0) sha256=67f915b8223d2133bbaa13e92fd98854175394f086e2036a9eff4f5561fd69e4 + sinatra (4.2.1) sha256=b7aeb9b11d046b552972ade834f1f9be98b185fa8444480688e3627625377080 slop (4.10.1) sha256=844322b5ffcf17ed4815fdb173b04a20dd82b4fd93e3744c88c8fafea696d9c7 solid_cable (4.0.2) sha256=084636a67679ad00d23088b33c84047e614bcf41ee559db24b414d83cdc42d03 solid_cache (1.0.10) sha256=bc05a2fb3ac78a6f43cbb5946679cf9db67dd30d22939ededc385cb93e120d41 solid_queue (1.6.0) sha256=b5fc3bb34162e09d8f960df6400d0f9304dc80fe66c2cfface31c32b228de6a1 solr_wrapper (4.4.0) sha256=1eaf0667611a90c623d05c3c2c765d7a2e4174427d03580396cc2124b10430bb - sqlite3 (2.9.5-aarch64-linux-gnu) sha256=78075b6337d3d182c6d2b4691049ed45cd220826160c9ea18946bf6a1de200dc - sqlite3 (2.9.5-aarch64-linux-musl) sha256=18c801185deb4adc01ddb281e8f672a39e3d1729979ca91e39439cd3eac0402d - sqlite3 (2.9.5-arm-linux-gnu) sha256=1bdfca0c7d63998c60b0f4a8e3c8df2d33800ccc4abd2d612eddbbbc92a4c48b - sqlite3 (2.9.5-arm-linux-musl) sha256=bae1109d12b2e9f588455967729b008e1ff4feb7761749df695019c9079913c6 - sqlite3 (2.9.5-arm64-darwin) sha256=d0cf444a70fc9395d513cfbcc1e6719e224aa645314e3824cb0474c721425aa2 - sqlite3 (2.9.5-x86_64-linux-gnu) sha256=233dbcb6714148dd23bc5aeb33e8efd6eac974969564ddd5794c23d5f52b231e - sqlite3 (2.9.5-x86_64-linux-musl) sha256=e7d3a7474e8af0f96150c21abc203fbab5437206bfcdf11deab7741c0ca516f2 - sshkit (1.25.0) sha256=c8c6543cdb60f91f1d277306d585dd11b6a064cb44eab0972827e4311ff96744 + sqlite3 (2.9.6-aarch64-linux-gnu) sha256=d8b1f7d23efd7abac285775a9566562fc7debfef79d594e3a20354406fb7907c + sqlite3 (2.9.6-aarch64-linux-musl) sha256=3579e1c98cdc7ff5c3722847bb63ed4e1efb7ff675cb5e1e48ef2d4da5fb3bc9 + sqlite3 (2.9.6-arm-linux-gnu) sha256=33541500e3615da02afe54a9cc38b17a6985d3cf9d8b76d6d0a83002f114e7ec + sqlite3 (2.9.6-arm-linux-musl) sha256=c5490af48bb228fefa54314e9541375c3907e70f8109f3881b5ff97e1c93ae33 + sqlite3 (2.9.6-arm64-darwin) sha256=849b5d7f795e60fe25076d62c72dd722beb45b3850b516ad978d60ee848ec15b + sqlite3 (2.9.6-x86_64-linux-gnu) sha256=613188ce02f614126ddbc38c5e217ccffd6306d0dcd9adca9764547aa890a634 + sqlite3 (2.9.6-x86_64-linux-musl) sha256=d493b11818a3573387a1d56e1ee8fa00da23a683a7a1cc063e7a0feeed843abf + sshkit (1.25.1) sha256=be3f10b9d6eb0b44d5eaba3f7cbe41bc6bb894bce4339688ac20124391455b78 stimulus-rails (1.3.4) sha256=765676ffa1f33af64ce026d26b48e8ffb2e0b94e0f50e9119e11d6107d67cb06 thor (1.5.0) sha256=e3a9e55fe857e44859ce104a84675ab6e8cd59c650a49106a05f55f136425e73 - thruster (0.1.23) sha256=ad3081e8ff3b5cb413768292c367f1e015c423bb6b35919b9b9f533af50d639f - thruster (0.1.23-aarch64-linux) sha256=042a05581dd1d750d1583d83817460b1f7fde254ed0b2bcd7ec56f9bed278c7a - thruster (0.1.23-arm64-darwin) sha256=2f1b73119ffec813cdb104d64dd39bfc3771b5308eb0f4dc2428077141140022 - thruster (0.1.23-x86_64-linux) sha256=9cd7265bf54e954575c8442e42d050ed8eb55df4f9d7da8fd6f94fcc0339baa5 + thruster (0.1.25) sha256=d97d704e91fa37d5858bc238dea6186f7310b633abfeea9f2ba814f252203716 + thruster (0.1.25-aarch64-linux) sha256=495265b11fc3c3596ae0d70ed902b60db82dafb2a5b47a2c527d3176ee3cf311 + thruster (0.1.25-arm64-darwin) sha256=20338360cce4035e787135ae154a10663f3d3d61b15bfa72df347fe9d982de57 + thruster (0.1.25-x86_64-linux) sha256=e5586003b34dc2f4200f8412101e906621e276bb294d41d1b63a3c41e348503d + tilt (2.9.0) sha256=da5735d0280bba96e9a91041bb14aee435ccad5c17b0fa519249ae543d9aa3a5 timeout (0.6.1) sha256=78f57368a7e7bbadec56971f78a3f5ecbcfb59b7fcbb0a3ed6ddc08a5094accb - traject (3.8.3) sha256=db615df38e28af4b9780bbba52b365ec38d211108eaa942d4f490d7134e13585 + traject (3.9.1) sha256=0a8187cac4eba0622e6fa298d078afecf4c45791588cb0f6711d70736ef56387 traject_plus (2.0.1) sha256=442e9e9ad4bbbfa22214a71e7d5ac80a99778de3805d539ee57b141846c19084 tsort (0.2.0) sha256=9650a793f6859a43b6641671278f79cfead60ac714148aabe4e3f0060480089f turbo-rails (2.0.23) sha256=ee0d90733aafff056cf51ff11e803d65e43cae258cc55f6492020ec1f9f9315f diff --git a/README.md b/README.md index 680b5bc..6ec311a 100644 --- a/README.md +++ b/README.md @@ -3,16 +3,19 @@ ## Installation and usage ### Docker - +#### Services shell ```shell cp env.example .env # Then add the RAILS_MASTER_KEY value to .env -docker compose build -docker compose up -/bin/bash ./solr/dev-init.sh # creates the blacklight-collection +docker compose --profile app build +docker compose --profile app up +``` +#### Command shell +```shell +# Create the blacklight-collection +/bin/bash ./solr/dev-init.sh ``` #### Indexing a directory - ```shell # Inside the container docker compose exec app bash @@ -21,10 +24,19 @@ DIR= REPOSITORY= rake um_arclight:index_dir # Outside the container SOLR_URL=http://localhost:8983/solr/blacklight-collection DIR=./ REPOSITORY_ID= rake um_arclight:index_dir ``` -#### Hybrid development +### Docker Hybrid development Use hybrid for quick rebuilds of Rails (outside a container) without repeatedly spinning up Solr/Zookeeper for each reset. +##### Services shell + +```shell +docker compose build +docker compose up +``` +##### Command shell + ```shell -docker compose up solr +# Create the blacklight-collection /bin/bash ./solr/dev-init.sh -SOLR_URL=http://localhost:8983/solr/blacklight-collection bin/dev # recompiles Rails and connects it to Solr in container -``` \ No newline at end of file +# Recompiles Rails and connects it to Solr container +SOLR_URL=http://localhost:8983/solr/blacklight-collection bin/dev +``` diff --git a/app/assets/config/manifest.js b/app/assets/config/manifest.js index 9ea363d..f374c8f 100644 --- a/app/assets/config/manifest.js +++ b/app/assets/config/manifest.js @@ -3,4 +3,4 @@ //= link application.css //= link_tree ../../javascript .js //= link blacklight-range-limit/index.js -//= link blacklight/manifest.js \ No newline at end of file +//= link blacklight/manifest.js diff --git a/app/errors/boxwalker/error.rb b/app/errors/boxwalker/error.rb new file mode 100644 index 0000000..721a9f8 --- /dev/null +++ b/app/errors/boxwalker/error.rb @@ -0,0 +1,5 @@ +# frozen_string_literal: true + +module Boxwalker + class Error < StandardError; end +end diff --git a/app/errors/boxwalker/generate_error.rb b/app/errors/boxwalker/generate_error.rb new file mode 100644 index 0000000..464e16a --- /dev/null +++ b/app/errors/boxwalker/generate_error.rb @@ -0,0 +1,5 @@ +# frozen_string_literal: true + +module Boxwalker + class GenerateError < Error; end +end diff --git a/app/errors/finding_aid_index_error.rb b/app/errors/finding_aid_index_error.rb new file mode 100644 index 0000000..b6874e5 --- /dev/null +++ b/app/errors/finding_aid_index_error.rb @@ -0,0 +1,3 @@ +# frozen_string_literal: true + +class FindingAidIndexError < Boxwalker::Error; end diff --git a/app/jobs/build_suggest_job.rb b/app/jobs/build_suggest_job.rb new file mode 100644 index 0000000..8b0740f --- /dev/null +++ b/app/jobs/build_suggest_job.rb @@ -0,0 +1,11 @@ +# frozen_string_literal: true + +# Rebuild the Solr suggester index +# https://lucene.apache.org/solr/guide/8_0/suggester.html +class BuildSuggestJob < ApplicationJob + queue_as :index + + def perform + Solr::BuildSuggest.call + end +end diff --git a/app/jobs/delete_finding_aid_job.rb b/app/jobs/delete_finding_aid_job.rb new file mode 100644 index 0000000..4e446a1 --- /dev/null +++ b/app/jobs/delete_finding_aid_job.rb @@ -0,0 +1,9 @@ +# frozen_string_literal: true + +class DeleteFindingAidJob < ApplicationJob + queue_as :delete + + def perform(eadid) + FindingAid::DeleteFromIndex.call(eadid) + end +end diff --git a/app/jobs/ingest_automation_index_job.rb b/app/jobs/ingest_automation_index_job.rb new file mode 100644 index 0000000..37d16a6 --- /dev/null +++ b/app/jobs/ingest_automation_index_job.rb @@ -0,0 +1,13 @@ +# frozen_string_literal: true + +class IngestAutomationIndexJob < ApplicationJob + queue_as :index + + def perform(src_path, repo_id) + ead_id = FindingAid::IndexFromEad.call(src_path, repo_id) + IngestAutomationJob.perform_later("index.success", src_path: src_path, repo_id: repo_id, ead_id: ead_id) + + rescue FindingAidIndexError => e + IngestAutomationJob.perform_later("index.failure", src_path: src_path, repo_id: repo_id, ead_id: nil, err_msg: e.message) + end +end diff --git a/app/jobs/ingest_automation_job.rb b/app/jobs/ingest_automation_job.rb new file mode 100644 index 0000000..7daaf81 --- /dev/null +++ b/app/jobs/ingest_automation_job.rb @@ -0,0 +1,18 @@ +# frozen_string_literal: true + +class IngestAutomationJob < ApplicationJob + queue_as :ingest + + def perform(event, details) + unless Rails.configuration.x.arclight.enable_ingest_automation + logger.debug <<~EOM + Ingest automation attempted, but disabled... + Set config.x.arclight.enable_ingest_automation = true if you want it to run. + event: #{event}, details: #{details} + EOM + return + end + + IngestAutomation::Dispatch.call(event, details, logger: logger) + end +end diff --git a/app/jobs/ingest_automation_package_job.rb b/app/jobs/ingest_automation_package_job.rb new file mode 100644 index 0000000..7d98211 --- /dev/null +++ b/app/jobs/ingest_automation_package_job.rb @@ -0,0 +1,12 @@ +# frozen_string_literal: true + +class IngestAutomationPackageJob < ApplicationJob + queue_as :index + + def perform(identifier, format) + FindingAid::PackageArtifact.call(identifier, format) + IngestAutomationJob.perform_later("#{format}.success", ead_id: identifier) + rescue ::Boxwalker::GenerateError => e + IngestAutomationJob.perform_later("#{format}.failure", ead_id: identifier, err_msg: e.message) + end +end diff --git a/app/jobs/ingest_record_job.rb b/app/jobs/ingest_record_job.rb new file mode 100644 index 0000000..bd380db --- /dev/null +++ b/app/jobs/ingest_record_job.rb @@ -0,0 +1,9 @@ +# frozen_string_literal: true + +class IngestRecordJob < ApplicationJob + queue_as :ingest + + def perform(id) + FindingAid::IngestRecord.call(id) + end +end diff --git a/app/services/finding_aid/delete_from_index.rb b/app/services/finding_aid/delete_from_index.rb new file mode 100644 index 0000000..1f4786f --- /dev/null +++ b/app/services/finding_aid/delete_from_index.rb @@ -0,0 +1,13 @@ +# frozen_string_literal: true + +module FindingAid + class DeleteFromIndex + def self.call(eadid) + connection = Blacklight.default_index.connection + connection.delete_by_query("ead_ssi:#{eadid}") + connection.delete_by_query("parent_ssim:#{eadid}") + connection.delete_by_query("id:#{eadid}") + connection.commit + end + end +end diff --git a/app/services/finding_aid/index_from_ead.rb b/app/services/finding_aid/index_from_ead.rb new file mode 100644 index 0000000..209e7f5 --- /dev/null +++ b/app/services/finding_aid/index_from_ead.rb @@ -0,0 +1,49 @@ +# frozen_string_literal: true + +module FindingAid + class IndexFromEad + def self.call(src_path, repo_id) + ead_id = nil + dest_path = nil + + File.open(src_path, "r:UTF-8:UTF-8") do |file| + # A Traject reader that yields Nokogiri docs from source XML. + CompressedReader.new(file, {}).each do |doc| + indexer = Traject::Indexer::NokogiriIndexer.new( + # Keep indexing/writes inline to avoid Rails threading side effects. + "processing_thread_pool" => 0, + "solr_writer.thread_pool" => 0, + "solr_writer.batch_size" => 1, + "solr.url" => ENV.fetch("SOLR_URL", Blacklight.default_index.connection.base_uri).to_s.chomp("/"), + "repository" => repo_id + ) + + # Load the Arclight EAD2 mapping rules (same config used by the + # `arclight:index` rake task) so the record gets an `id` and all + # Solr fields. Without this the indexer has no rules and Solr rejects + # the document for a missing mandatory uniqueKey `id` field. + indexer.load_config_file( + Rails.root.join("lib", "um_arclight", "traject", "ead2_config.rb").to_s + ) + + # Process one source record through traject and writer. + context = indexer.process_record(doc) + + # Flush writer and run after_processing hooks. + indexer.complete + + # Make an archive copy of source file available for downloads. + ead_id = context.output_hash["id"]&.first + dest_dir = File.join(ENV.fetch("FINDING_AID_DATA", Rails.root.join("data").to_s), "xml", repo_id) + dest_path = File.join(dest_dir, "#{ead_id}.xml") + FileUtils.mkdir_p(dest_dir) + FileUtils.copy_file(src_path, dest_path, preserve: true, dereference: true, remove_destination: true) + end + + ead_id + end + rescue => e + raise FindingAidIndexError, e.message + end + end +end diff --git a/app/services/finding_aid/ingest_record.rb b/app/services/finding_aid/ingest_record.rb new file mode 100644 index 0000000..4f59990 --- /dev/null +++ b/app/services/finding_aid/ingest_record.rb @@ -0,0 +1,52 @@ +# frozen_string_literal: true + +module FindingAid + class IngestRecord + def self.call(id) + findingaid = Findingaid.find(id) + findingaid.state = "indexing" + findingaid.save! + + begin + path = File.join(ENV["FINDING_AID_DATA"], "findingaids", findingaid.id.to_s) + Rails.logger.info "Beginning Finding Aid ingest to repository '#{findingaid.reposlug}' of EAD file #{path}" + IngestAutomationIndexJob.perform_now(path, findingaid.reposlug) + rescue => e + findingaid.error = "ERROR: IndexFindAidJob.perform_now(#{path}, #{findingaid.reposlug}) #{e.message}" + findingaid.state = "errored" + end + + if findingaid.error.blank? + document = fetch_doc(findingaid.eadslug) + if document.present? + findingaid.eadurl = document["title_ssm"]&.first + if findingaid.eadurl.present? + findingaid.state = "indexed" + else + findingaid.error = "ERROR: document['title_ssm']&.first is blank!" + findingaid.state = "errored" + end + else + findingaid.error = "ERROR: fetch_doc(#{findingaid.eadslug}) returned nil!" + findingaid.state = "errored" + end + end + + findingaid.save! + end + + def self.fetch_doc(id) + params = { + fl: "*", + q: [ "id:#{id}" ], + start: 0, + rows: 1 + } + repo = Blacklight.repository_class.new(CatalogController.new.helpers.blacklight_config) + response = repo.search(params) + response.documents.first + end + + private_class_method :fetch_doc + end +end diff --git a/app/services/finding_aid/package_artifact.rb b/app/services/finding_aid/package_artifact.rb new file mode 100644 index 0000000..433a417 --- /dev/null +++ b/app/services/finding_aid/package_artifact.rb @@ -0,0 +1,24 @@ +# frozen_string_literal: true + +module FindingAid + class PackageArtifact + FORMATS = %w[html pdf].freeze + + def self.call(identifier, format) + unless FORMATS.include?(format) + raise ::Boxwalker::GenerateError, identifier, "Unsupported format requested: #{format}" + end + + convert(identifier, format) + end + + def self.convert(identifier, format) + artifact = ::Package::Generator.new identifier: identifier + format == "html" ? artifact.generate_html : artifact.generate_pdf + rescue => error + raise ::Boxwalker::GenerateError, identifier, error.to_s + end + + private_class_method :convert + end +end diff --git a/app/services/ingest_automation/dispatch.rb b/app/services/ingest_automation/dispatch.rb new file mode 100644 index 0000000..62b79bd --- /dev/null +++ b/app/services/ingest_automation/dispatch.rb @@ -0,0 +1,29 @@ +# frozen_string_literal: true + +module IngestAutomation + class Dispatch + def self.call(event, details, logger: Rails.logger) + case event + when "ingest.file" + logger.info "Beginning Finding Aid ingest to repository '#{details[:repo_id]}' of EAD file #{details[:file_path]}" + ::IngestAutomationIndexJob.perform_later(details[:file_path], details[:repo_id]) + when "index.success" + logger.info "Finding Aid successfully indexed -- ID: #{details[:ead_id]}, source path: #{details[:src_path]}, archived path: #{details[:archive_path]}" + ::IngestAutomationPackageJob.perform_later(details[:ead_id], "html") + when "html.success" + logger.info "HTML generated for Finding Aid -- ID: #{details[:ead_id]}" + ::IngestAutomationPackageJob.perform_later(details[:ead_id], "pdf") + when "pdf.success" + logger.info "PDF generated for Finding Aid -- ID: #{details[:ead_id]}" + ::IngestAutomationJob.perform_later("ingest.success", ead_id: details[:ead_id]) + when "ingest.success" + logger.info "Ingest completed for Finding Aid -- ID: #{details[:ead_id]}" + # do some accounting + when "index.failure", "html.failure", "pdf.failure" + logger.error "Ingest failed for Finding Aid -- event: #{event}, details: #{details.inspect}" + else + logger.error "Unknown ingest event for Finding Aid -- event: #{event}, details: #{details.inspect}" + end + end + end +end diff --git a/app/services/package/generator.rb b/app/services/package/generator.rb new file mode 100644 index 0000000..60cdeef --- /dev/null +++ b/app/services/package/generator.rb @@ -0,0 +1,576 @@ +# frozen_string_literal: true + +require "arclight" +require "benchmark" +require "json" +require "fileutils" +require "nokogiri" +require "deprecation" +require "uri" +require "net/http" +require "open3" + +Deprecation.default_deprecation_behavior = :silence + +module Package + # Generate HTML and PDF packages of finding aids + class Generator + COMPONENT_FIELDS = %w[ + id + parent_ssi + parent_ssim + ref_ssi + ref_ssm + ead_ssi + abstract_tesim + scopecontent_tesim + component_level_isim + normalized_title_ssm + level_ssm + unitid_ssm + odd_tesim + bioghist_tesim + physloc_tesim + materialspec_tesim + total_digital_object_count_isim + digital_objects_ssm + containers_ssim + repository_ssm + ].freeze + + attr_accessor :identifier, :doc, :fragment, :collection, :session + + def initialize(identifier:) + @identifier = identifier + @collection = nil + @session = ActionDispatch::Integration::Session.new(Rails.application) + @session.host = "findingaids.lib.umich.edu" + @session.https!(true) + @fonts = [] + end + + def build_html + components = [] + elapsed_time = Benchmark.realtime do + @collection = fetch_doc(identifier) + components = fetch_components(@collection.id) + end + + response = get("/catalog/#{@collection.id}") + @doc = Nokogiri::HTML5(response.body) + + Rails.logger.info("UM-Arclight generate package : #{collection.id} : fetch components (in #{elapsed_time.round(3)} secs).") + elapsed_time = Benchmark.realtime do + @fragment = render_fragment( + collection: collection, + components: components + ) + + update_navigation_links + update_package_html + end + Rails.logger.info("UM-Arclight generate package : #{collection.id} : build HTML (in #{elapsed_time.round(3)} secs).") + end + + def generate_html + build_html + + output_filename = generate_output_filename(".html") + FileUtils.makedirs(File.dirname(output_filename)) unless Dir.exist?(File.dirname(output_filename)) + + # serialize the viewable HTML + File.open(output_filename, "w") do |f| + f.puts doc.serialize + end + + generate_pdf_html + end + + def build_pdf_html + # build the source in tmp + FileUtils.mkdir_p(working_path_name) + Dir.chdir(working_path_name) do + FileUtils.mkdir_p("assets") + + elapsed_time = Benchmark.realtime do + update_package_html_pdf + update_package_styles_pdf + update_package_scripts_pdf + # set the media + doc.root["data-media"] = "print" + end + Rails.logger.info("UM-Arclight generate package: #{collection.id} : update HTML for PDF (in #{elapsed_time.round(3)} secs).") + end + end + + def generate_pdf_html + build_pdf_html + local_html_filename = generate_local_html_filename # "#{collection.document_id}.local.html" + File.open(local_html_filename, "w") do |f| + f.puts doc.serialize + end + end + + def build_pdf_prereq + @collection = fetch_doc(identifier) + local_html_filename = generate_local_html_filename + if File.exist?(local_html_filename) + Rails.logger.info("-- using #{local_html_filename}") + else + generate_html + end + end + + def generate_pdf + build_pdf_prereq + + local_html_filename = generate_local_html_filename + output_filename = generate_output_filename(".pdf") + FileUtils.mkdir_p(File.dirname(output_filename)) + + Dir.chdir working_path_name do + elapsed_time = Benchmark.realtime do + cmd = [ + "wkhtmltopdf", + "--page-size", "Letter", + "--enable-internal-links", + "--enable-local-file-access", + "--margin-top", "20mm", + "--margin-bottom", "20mm", + "--margin-right", "20mm", + "--margin-left", "20mm", + local_html_filename, + output_filename + ] + stdout_and_stderr, process_status = Open3.capture2e(*cmd) + + if process_status.success? + Rails.logger.info(stdout_and_stderr) + else + raise Boxwalker::GenerateError, identifier, stdout_and_stderr.to_s + end + end + + Rails.logger.info("UM-Arclight generate package: #{collection.id} : PDF render (in #{elapsed_time.round(3)} secs).") + end + end + + private + + def generate_output_filename(ext) + filename = File.join(finding_aid_data_path, "pdf", collection_repository_id, "#{collection.document_id}#{ext}") + filename = File.join(Rails.root, filename) if filename.start_with?("./") + filename + end + + def working_path_name + # File.join(Rails.root, "tmp", "pdf") + File.writable?(File.join(finding_aid_data_path)) ? + File.join(finding_aid_data_path, "pdf", "tmp", collection_repository_id) : + File.join(Rails.root, "tmp", "pdf") + end + + def finding_aid_data_path + ENV.fetch("FINDING_AID_DATA", Rails.root.join("data").to_s) + end + # TODO: this is a hack to get the repository_id from the collection. + def collection_repository_id + return collection.repository_id if collection.respond_to?(:repository_id) + + Array(collection["repository_ssm"]).first.to_s.parameterize.presence || "repository" + end + + def generate_local_html_filename + File.join(working_path_name, "#{@collection.document_id}.local.html") + end + + def get(url) + if url.start_with?("/assets/") && File.exist?(File.join(Rails.root, "public", url)) + contents = File.read(File.join(Rails.root, "public", url)) + response = OpenStruct.new + response.body = contents + return response + end + session.get(url) + session.response + end + + def fetch_doc(id) + params = { + fl: "*", # COMPONENT_FIELDS.join(','), + q: [ "id:#{id}" ], + start: 0, + rows: 1 + } + response = index.search(params) + response.documents.first + end + + def fetch_components(id) + params = { + fl: "*", + # Components are indexed as Solr block-join child documents rooted at + # the collection's id (they carry no ead_ssi of their own), so harvest + # the whole nested block via the _root_ field. + q: [ "_root_:#{id}" ], + sort: "sort_ii asc, title_sort asc", + start: 0, + rows: 1000 + } + components = [] + tmp = {} + tmp_map = {} + component_mapper = {} + response = index.search(params) + start = 0 + while response.documents.present? + Rails.logger.info("UM-Arclight generate package : harvesting components : #{collection.id} : #{start} / #{response.total}") + response.documents.each do |doc| + # ignore the collection/root doc itself (level 0) and anything without + # a component level. + next if doc.id == id || doc.component_level.nil? + + tmp[doc.component_level] = [] if tmp[doc.component_level].nil? + tmp[doc.component_level] << doc + # Key by document id so parent lookups via #parent_ids (which are + # document ids) resolve correctly below. + tmp_map[doc.id] = doc + end + start += 1000 + params[:start] = start + response = index.search(params) + end + + return [] if tmp.keys.empty? + + # now attach child components + tmp.keys.sort.each do |component_level| + next if component_level == 1 + + tmp[component_level].each do |doc| + # find the parent_doc because nothing is easy + parent_doc = nil + doc.parent_ids.reverse.each do |parent_id| + if tmp_map[parent_id] + parent_doc = tmp_map[parent_id] + break + end + end + + # No harvested ancestor (e.g. an orphaned component); fall back to + # treating it as a top-level entry so it still appears in the package. + if parent_doc.nil? + (tmp[1] ||= []) << doc + next + end + + component_mapper[parent_doc.reference] = [] if component_mapper[parent_doc.reference].nil? + component_mapper[parent_doc.reference].unshift doc + end + end + + # now flatten this into components? + queue = Array(tmp[1]).flatten.compact + until queue.empty? + doc = queue.shift + components << doc + component_mapper.fetch(doc.reference, []).each do |v| + queue.unshift v + end + end + + components + end + + def render_fragment(variables) + fragment_html = CatalogController.renderer.render( + template: "arclight/fragments/fragment", + assigns: variables, + layout: false, + formats: [ :html ] + ) + Nokogiri::HTML5(fragment_html) + end + + def update_navigation_links + doc.css("#about-collection-nav a").each do |link| + href = link["href"] + link["href"] = "#" + href.split("#").last + end + end + + def update_package_html + last_style_el = doc.xpath('/html/head/link[@rel="stylesheet"]').last + last_style_el.add_next_sibling(fragment.css("#utility-styles").first) + @chunks = doc.fragment + asset_links = doc.xpath('/html/head/link[starts-with(@href, "/assets")]') + # add the placeholder + asset_links.first.add_previous_sibling '' + + asset_links.each do |el| + # @chunks << el + el.unlink + end + + # @chunks << doc.xpath('/html/head/script[starts-with(@src, "/assets")]') + doc.xpath('/html/head/script[starts-with(@src, "/assets")]').each do |el| + el.unlink + end + + doc.css('meta[name="csrf-param"]').first&.unlink + doc.css('meta[name="csrf-token"]').first&.unlink + + doc.css("#summary dl").first << fragment.css("dl#ead_author_block dt,dl#ead_author_block dd") + if (contents_el = doc.css("div.al-contents").first) + contents_el.replace(fragment.css("div.al-contents-ish").first) + end + doc.css(".card-img").first&.remove + doc.css("#navigate-collection-toggle").first&.remove + if (tree_el = doc.css("#context-tree-nav .tab-pane.active").first) + tree_el.inner_html = "" + tree_el << fragment.css("#toc").first + end + end + + def update_package_html_pdf + build_package_html_toc + if (header_el = doc.css("m-website-header").first) && (new_header = fragment.css("header").first) + header_el.replace(new_header) + end + doc.css("footer").first&.remove + doc.css("div.x-printable").remove + doc.css("body a[href]").each do |link| + if link["href"].start_with?("/") + link["href"] = File.join("https://findingaids.lib.umich.edu/", link["href"]) + end + if link["href"].include?("%5B") + # gambling + link["href"] = CGI.unescape(link["href"]) + end + end + # ARC-114 Chinese characters were missing (Hack to include font as fallback font) + doc.css("body").first << '
x
' + end + + def build_package_html_toc + # rearrange the various contents links + snippet_el = doc.css(".access-preview-snippet").first + return unless snippet_el + + snippet_el.inner_html = '
    ' + current_ul = doc.css("#toc ul").first + contents_li = nil + doc.css("#about-collection-nav li.nav-item").each do |li| + current_ul << li + contents_li = li if li.css("a").first["href"] == "#contents" + end + return unless contents_li + + if (contents_ul = doc.css("#sidebar #toc > ul").first) + contents_ul["class"] = "list-unbulleted" + contents_li << contents_ul + end + end + + def update_package_styles_pdf + # restore the stylesheet links for the PDF + placeholder_el = doc.css("style#placeholder").first + + doc.css('link[rel="stylesheet"][href^="https://"]').each do |link| + link.unlink + end + + # add links for pdf + placeholder_el.add_next_sibling '' + placeholder_el.add_next_sibling '' + placeholder_el.add_next_sibling '' + # print.css is optional: the app uses Propshaft (not Sprockets), which raises + # Propshaft::MissingAssetError when the asset is absent. Swallow it so packaging + # still works in test and environments that don't ship a print stylesheet. + begin + placeholder_el.add_next_sibling CatalogController.helpers.stylesheet_link_tag("print") + rescue Propshaft::MissingAssetError + # print.css is optional in test and some packaging environments + end + + # cache the assets locally + doc.xpath("/html/head/link").each do |link| + next unless link["rel"] == "stylesheet" + # next unless link['href'].start_with?('/assets/', 'https://') + filename = if link["href"].start_with?("/assets/") + link["href"].split(/[\?#]/).first.gsub("/assets", "") + else + ("/" + link["href"].split("#").first.gsub(/[^\w\.]/, "-")) + end + filename += ".css" if link["rel"] == "stylesheet" && !filename.end_with?(".css") + + # only cache as needed + download_and_cache(link, filename) unless File.exist?("./assets#{filename}") + + link["href"] = "./assets#{filename}" + placeholder_el.add_next_sibling link + end + @fonts.each do |filename| + placeholder_el.add_next_sibling "" + end + + # ARC-114 Chinese characters were missing (Hack to include font as fallback font). + # The font is baked into the image under public/fonts (outside the FINDING_AID_DATA + # volume) and referenced by absolute path so PDF generation never depends on the + # data volume being seeded. wkhtmltopdf reads it via --enable-local-file-access. + unifont_path = Rails.root.join("public", "fonts", "UnifontExMono.woff") + placeholder_el.add_next_sibling <<~STYLE + + STYLE + + placeholder_el.unlink + end + + def download_and_cache(link, filename) + if link["href"].start_with?("/assets/") + response = get(link["href"]) + else + uri = URI(link["href"]) + response = Net::HTTP.get_response(uri) + # STDERR.puts "-- FETCHING #{link['href']} :: #{response.is_a?(Net::HTTPSuccess)}" + return unless response.is_a?(Net::HTTPSuccess) + end + + stylesheet = response.body + buffer = download_and_update_urls(stylesheet) + + FileUtils.makedirs("./assets#{File.dirname(filename)}") unless Dir.exist?("./assets/#{File.dirname(filename)}") + + File.open("./assets/#{filename}", "wb") do |f| + f.puts buffer + end + + if filename.include?(".css") && filename.include?("font") + @fonts << filename + end + end + + def download_and_update_urls(stylesheet) + # now we have to look for url(/assets) here + buffer = stylesheet.split(/\n/) + buffer.each_with_index do |line, i| + matches = line.scan(%r{url\("?([^\)]+)"?\)}) + next unless matches + + matches.each do |match| + asset_path = match[0].delete('"') + next unless asset_path.start_with?("/assets/", "https://") + + asset_filename = if asset_path.start_with?("/assets/") + asset_path.split(/[\?#]/).first.gsub("/assets", "") + else + ("/" + asset_path.gsub(/[^\w\.]/, "-")) + end + + unless File.exist?("./#{asset_filename}") + resource = if asset_path.start_with?("/assets/") + response = get(asset_path) + response.body + else + uri = URI(asset_path) + response = Net::HTTP.get_response(uri) + # STDERR.puts "-- +++ FETCHING #{asset_path} :: #{response.code} :: #{response['content-type']}" + next unless response.is_a?(Net::HTTPSuccess) + asset_filename += ".css" if response["content-type"].include?("text/css") && !asset_filename.end_with?(".css") + asset_filename += ".woff2" if response["content-type"].include?("font/woff2") && !asset_filename.end_with?(".woff2") + if response["content-type"].include?("text/css") + download_and_update_urls(response.body) + else + response.body + end + end + + FileUtils.makedirs("./assets#{File.dirname(asset_filename)}") unless Dir.exist?(File.dirname("./assets#{asset_filename}")) + @fonts << asset_filename if asset_filename.include?("font") && asset_filename.include?(".css") + + File.open("./assets#{asset_filename}", "wb") do |f| + f.puts resource + end + end + + line.gsub!(asset_path, ".#{asset_filename}") + end + buffer[i] = line + end + + buffer.join("\n") + end + + def update_package_scripts_pdf + # remove the script tags + doc.xpath("/html/head/script").each do |script| + script.remove + end + end + + def index + @index ||= Index.new + end + end + + # Queue packaging + class Queue + attr_accessor :index + + def initialize + @index = Index.new + end + + def setup(**kw) + identifiers = if kw[:eadid] + [ kw[:eadid] ] + else + fetch_collection_identifiers(kw[:repository_ssm]) + end + + identifiers.each do |identifier| + Rails.logger.info("UM-Arclight queue package: #{identifier}") + ::PackageFindingAidJob.perform_later(identifier, kw.fetch(:format, "html")) + end + end + + def fetch_collection_identifiers(repository_ssm) + params = { + fl: "id", + q: [ "level_ssm:collection" ], + start: 0, + rows: 1000 + } + params["fq"] = [ "repository_ssm:\"#{repository_ssm}\"" ] if repository_ssm + identifiers = [] + response = index.search(params) + start = 0 + while response.documents.present? + response.documents.each do |doc| + identifiers << doc.id + end + start += 1000 + params[:start] = start + response = index.search(params) + end + identifiers + end + end + + # Shared helper to Blacklight.repository + class Index + attr_accessor :index + def initialize + @index = Blacklight.repository_class.new(CatalogController.new.helpers.blacklight_config) + end + + def search(params) + @index.search(params) + end + end +end diff --git a/app/services/solr/build_suggest.rb b/app/services/solr/build_suggest.rb new file mode 100644 index 0000000..4954f61 --- /dev/null +++ b/app/services/solr/build_suggest.rb @@ -0,0 +1,19 @@ +# frozen_string_literal: true + +require "net/http" + +module Solr + class BuildSuggest + def self.call + base_uri = ENV.fetch("SOLR_URL", Blacklight.default_index.connection.base_uri).to_s.chomp("/") + uri = URI("#{base_uri}/suggest?suggest.build=true") + + ::Net::HTTP.start(uri.host, uri.port) do |http| + http.read_timeout = 600 + response = http.request_get(uri.path, "Accept" => "application/json") + response.value # raises exception if not 2XX status + puts response.body + end + end + end +end diff --git a/app/views/arclight/fragments/fragment.html.erb b/app/views/arclight/fragments/fragment.html.erb new file mode 100644 index 0000000..f68fb0d --- /dev/null +++ b/app/views/arclight/fragments/fragment.html.erb @@ -0,0 +1,37 @@ + + +
    +

    <%= Array(@collection['normalized_title_ssm']).first %>

    +
    + + + +
    +
    Finding Aid Author
    +
    <%= Array(@collection['ead_author_ssm']).first %>
    +
    + +
    + <% @components.each do |component| %> +
    +

    <%= Array(component['normalized_title_ssm']).first || component.id %>

    +
    + <% end %> +
    + +
    + +
    diff --git a/bin/docker-entrypoint b/bin/docker-entrypoint index ed31659..c8f5e49 100755 --- a/bin/docker-entrypoint +++ b/bin/docker-entrypoint @@ -1,7 +1,14 @@ #!/bin/bash -e -# If running the rails server then create or migrate existing database -if [ "${@: -2:1}" == "./bin/rails" ] && [ "${@: -1:1}" == "server" ]; then +# Prepare the database for the long-running services that depend on it: +# * the Rails web server (renders catalog pages), and +# * the Resque worker -- Package::Generator renders /catalog/:id in-process while +# building HTML/PDF, and in development the migration_error=:page_load middleware +# runs a pending-migration check on that request. The worker container has its own +# (image-baked, non-volume) SQLite DB, so it must be prepared here too or packaging +# jobs fail with a 500 on the internal render. +if { [ "${@: -2:1}" == "./bin/rails" ] && [ "${@: -1:1}" == "server" ]; } || \ + [[ "${*}" == *resque:work* ]]; then ./bin/rails db:prepare fi diff --git a/bin/rspec b/bin/rspec new file mode 100755 index 0000000..93e191c --- /dev/null +++ b/bin/rspec @@ -0,0 +1,16 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true + +# +# This file was generated by Bundler. +# +# The application 'rspec' is installed as part of a gem, and +# this file is here to facilitate running it. +# + +ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__) + +require "rubygems" +require "bundler/setup" + +load Gem.bin_path("rspec-core", "rspec") diff --git a/compose.yml b/compose.yml index e2b12f4..93549f6 100644 --- a/compose.yml +++ b/compose.yml @@ -1,17 +1,68 @@ --- services: app: + profiles: + - app depends_on: solr: condition: service_healthy + redis: + condition: service_healthy build: context: . ports: - '3000:3000' environment: - SOLR_URL=http://solr:8983/solr/blacklight-collection + - REDIS_URL=redis://redis:6379/0 + - FINDING_AID_DATA=/rails/data env_file: - .env + volumes: + - finding-aid-data:/rails/data + redis: + image: redis:7 + healthcheck: + interval: 30s + timeout: 10s + start_period: 30s + retries: 5 + test: ["CMD", "redis-cli", "ping"] + ports: + - '6379:6379' + volumes: + - redis-data:/data + command: redis-server --appendonly yes + resque: + depends_on: + redis: + condition: service_healthy + build: + context: . + environment: + - SOLR_URL=http://solr:8983/solr/blacklight-collection + - REDIS_URL=redis://redis:6379/0 + - QUEUE=* + - FINDING_AID_DATA=/rails/data + env_file: + - .env + command: bundle exec rake environment resque:work + volumes: + - finding-aid-data:/rails/data + resque-web: + depends_on: + redis: + condition: service_healthy + build: + context: . + environment: + - REDIS_URL=redis://redis:6379/0 + - RESQUE_NAMESPACE=resque:boxwalker + env_file: + - .env + ports: + - '5678:5678' + command: bundle exec rackup -o 0.0.0.0 -p 5678 config/resque_web.ru solr: depends_on: zookeeper: @@ -35,6 +86,9 @@ services: - ZK_HOST=zookeeper:2181 zookeeper: image: zookeeper + volumes: + - zk-data:/data + - zk-datalog:/datalog healthcheck: interval: 30s timeout: 10s @@ -48,3 +102,7 @@ services: ZOO_SERVERS: server.1=0.0.0.0:2888:3888;2181 volumes: solr-data: + redis-data: + zk-data: + zk-datalog: + finding-aid-data: diff --git a/config/environments/development.rb b/config/environments/development.rb index 75243c3..f2b7d8a 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -75,4 +75,18 @@ # Apply autocorrection by RuboCop to files generated by `bin/rails generate`. # config.generators.apply_rubocop_autocorrect_after_generate! + + # Enable the finding-aid ingest automation state machine (event-driven pipeline). + config.x.arclight.enable_ingest_automation = true + + # Route ActiveJob through Resque so jobs are processed by the resque worker + # container (matches config/initializers/resque.rb). Without this, development + # falls back to the in-process :async adapter and jobs never reach the worker. + config.active_job.queue_adapter = :resque + + # The finding-aid packager renders /catalog/:id in-process using an + # ActionDispatch integration session whose host is set to the public site + # (see Package::Generator). Allow that host through DNS-rebinding protection + # so the render doesn't get blocked with "Blocked hosts". + config.hosts << "findingaids.lib.umich.edu" end diff --git a/config/environments/production.rb b/config/environments/production.rb index f5763e0..22faeb7 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -87,4 +87,6 @@ # # Skip DNS rebinding protection for the default health check endpoint. # config.host_authorization = { exclude: ->(request) { request.path == "/up" } } + + config.x.arclight.enable_ingest_automation = true end diff --git a/config/initializers/resque.rb b/config/initializers/resque.rb new file mode 100644 index 0000000..4beda0a --- /dev/null +++ b/config/initializers/resque.rb @@ -0,0 +1,7 @@ +# frozen_string_literal: true + +# config/initializers/resque.rb +require "resque" + +Resque.redis = ENV.fetch("REDIS_URL", "redis://localhost:6379/0") +Resque.redis.namespace = "resque:boxwalker" diff --git a/config/resque_web.ru b/config/resque_web.ru new file mode 100644 index 0000000..562ed80 --- /dev/null +++ b/config/resque_web.ru @@ -0,0 +1,16 @@ +# frozen_string_literal: true + +# Rackup config for the Resque dashboard (Resque::Server). +# +# We run the dashboard directly via `rackup`/Puma instead of the `resque-web` +# binary, because resque 2.7's WebRunner relies on the old `Rack::Handler` API +# that was removed in Rack 3. +# +# bundle exec rackup -o 0.0.0.0 -p 5678 config/resque_web.ru +require "resque" +require "resque/server" + +Resque.redis = ENV.fetch("REDIS_URL", "redis://localhost:6379/0") +Resque.redis.namespace = ENV.fetch("RESQUE_NAMESPACE", "resque:boxwalker") + +run Resque::Server.new diff --git a/data/ead/.keep b/data/ead/.keep new file mode 100644 index 0000000..e69de29 diff --git a/data/ead2002/dtd2schema.xsl b/data/ead2002/dtd2schema.xsl new file mode 100644 index 0000000..e284541 --- /dev/null +++ b/data/ead2002/dtd2schema.xsl @@ -0,0 +1,256 @@ + + + + + + + + + + + + W3C + + + + + + + ../ + + + + + + + RNGSchema=" + + ead.rng" + type="xml" + + + + http://www.w3.org/1999/xlink + + + + + + + + + + + + + + + + + + + + + + + + + + urn:isbn:1-931666-22-9 + + ead.xsd + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + arc + + + + + + + + extended + + + + + + + + + locator + + + + + + + + + resource + + + + + + + + simple + + + + + + + + + + + + + + + onLoad + onRequest + other + none + + + + + + + + new + replace + embed + other + none + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/ead2002/ead.dtd b/data/ead2002/ead.dtd new file mode 100644 index 0000000..a1c3c12 --- /dev/null +++ b/data/ead2002/ead.dtd @@ -0,0 +1,4612 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ]]> + + + + + + ]]> + + + + + + + + + + + + + + + + + + + + + + + +%isolat1; %isolat2; + +%isonum; %isopub; %isotech; %isodia; + +%isocyr1; %isocyr2; + +%isogrk1; %isogrk2; %isogrk3; %isogrk4; + ]]> + + + + + + + + + + + + + + + + + +%isolat1; %isolat2; + +%isonum; %isopub; %isotech; %isodia; + +%isocyr1; %isocyr2; + +%isogrk1; %isogrk2; %isogrk3; %isogrk4; + ]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ]]> + + + + + + + + + + +%attrsmod; + ]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ]]> + + + ]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ]]> + + + + ]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ]]> + + + + ]]> + + + + + ]]> + + + + + + + + + ]]> + + + ]]> + + ]]> + + + + ]]> + + ]]> + + + + ]]> + + ]]> + + + + ]]> + + ]]> + + + + ]]> + + ]]> + + + + ]]> + + ]]> + + + + ]]> + + ]]> + + + + ]]> + + ]]> + + + + ]]> + + ]]> + + + + ]]> + + ]]> + + + + ]]> + + ]]> + + + + ]]> + + ]]> + + + + ]]> + + ]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/data/ead2002/ead2002.xsd b/data/ead2002/ead2002.xsd new file mode 100644 index 0000000..b7040bf --- /dev/null +++ b/data/ead2002/ead2002.xsd @@ -0,0 +1,1855 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/ead2002/related_optional/eadlocal/eadlocal.ent b/data/ead2002/related_optional/eadlocal/eadlocal.ent new file mode 100644 index 0000000..e349211 --- /dev/null +++ b/data/ead2002/related_optional/eadlocal/eadlocal.ent @@ -0,0 +1,1071 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ]]> + + + ]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/data/ead2002/related_optional/sgml/eadcatalog b/data/ead2002/related_optional/sgml/eadcatalog new file mode 100644 index 0000000..08efdf2 --- /dev/null +++ b/data/ead2002/related_optional/sgml/eadcatalog @@ -0,0 +1,52 @@ +OVERRIDE YES + +-- Encoded Archival Description (EAD) Version 2002 Catalog -- + +-- SGML declaration eadsgml.dcl -- + +SGMLDECL 'eadsgml.dcl' + +-- ead.dtd -- + +PUBLIC '+//ISBN 1-931666-00-8//DTD ead.dtd (Encoded Archival Description (EAD) Version 2002)//EN' +'ead.dtd' + +-- SGML ISO SDATA character entity files. + Note: These are commonly distributed with SGML compliant software +-- +PUBLIC 'ISO 8879:1986//ENTITIES Added Latin 1//EN' +'isolat1.gml' + +PUBLIC 'ISO 8879:1986//ENTITIES Added Latin 2//EN' +'isolat2.gml' + +PUBLIC 'ISO 8879:1986//ENTITIES Greek Symbols//EN' +'isogrk3.gml' + +PUBLIC 'ISO 8879:1986//ENTITIES Alternative Greek Symbols//EN' +'isogrk4.gml' + +PUBLIC 'ISO 8879:1986//ENTITIES Greek Letters//EN' +'isogrk1.gml' + +PUBLIC 'ISO 8879:1986//ENTITIES Monotoniko Greek//EN' +'isogrk2.gml' + +PUBLIC 'ISO 8879:1986//ENTITIES Diacritical Marks//EN' +'isodia.gml' + +PUBLIC 'ISO 8879:1986//ENTITIES Numeric and Special Graphic//EN' +'isonum.gml' + +PUBLIC 'ISO 8879:1986//ENTITIES Publishing//EN' +'isopub.gml' + +PUBLIC 'ISO 8879:1986//ENTITIES General Technical//EN' +'isotech.gml' + +PUBLIC 'ISO 8879:1986//ENTITIES Russian Cyrillic//EN' +'isocyr1.gml' + +PUBLIC 'ISO 8879:1986//ENTITIES Non-Russian Cyrillic//EN' +'isocyr2.gml' + diff --git a/data/ead2002/related_optional/sgml/eadsgml.dcl b/data/ead2002/related_optional/sgml/eadsgml.dcl new file mode 100644 index 0000000..c033515 --- /dev/null +++ b/data/ead2002/related_optional/sgml/eadsgml.dcl @@ -0,0 +1,235 @@ + diff --git a/data/ead2002/related_optional/xml/charentities/iso-cyr1.ent b/data/ead2002/related_optional/xml/charentities/iso-cyr1.ent new file mode 100644 index 0000000..8abe5a3 --- /dev/null +++ b/data/ead2002/related_optional/xml/charentities/iso-cyr1.ent @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/ead2002/related_optional/xml/charentities/iso-cyr2.ent b/data/ead2002/related_optional/xml/charentities/iso-cyr2.ent new file mode 100644 index 0000000..51190f4 --- /dev/null +++ b/data/ead2002/related_optional/xml/charentities/iso-cyr2.ent @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/ead2002/related_optional/xml/charentities/iso-dia.ent b/data/ead2002/related_optional/xml/charentities/iso-dia.ent new file mode 100644 index 0000000..6a60107 --- /dev/null +++ b/data/ead2002/related_optional/xml/charentities/iso-dia.ent @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/ead2002/related_optional/xml/charentities/iso-grk1.ent b/data/ead2002/related_optional/xml/charentities/iso-grk1.ent new file mode 100644 index 0000000..55b28f2 --- /dev/null +++ b/data/ead2002/related_optional/xml/charentities/iso-grk1.ent @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/ead2002/related_optional/xml/charentities/iso-grk2.ent b/data/ead2002/related_optional/xml/charentities/iso-grk2.ent new file mode 100644 index 0000000..4a4b97b --- /dev/null +++ b/data/ead2002/related_optional/xml/charentities/iso-grk2.ent @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/ead2002/related_optional/xml/charentities/iso-grk3.ent b/data/ead2002/related_optional/xml/charentities/iso-grk3.ent new file mode 100644 index 0000000..7bd15df --- /dev/null +++ b/data/ead2002/related_optional/xml/charentities/iso-grk3.ent @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/ead2002/related_optional/xml/charentities/iso-grk4.ent b/data/ead2002/related_optional/xml/charentities/iso-grk4.ent new file mode 100644 index 0000000..7ee90d9 --- /dev/null +++ b/data/ead2002/related_optional/xml/charentities/iso-grk4.ent @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/ead2002/related_optional/xml/charentities/iso-lat1.ent b/data/ead2002/related_optional/xml/charentities/iso-lat1.ent new file mode 100644 index 0000000..9e02906 --- /dev/null +++ b/data/ead2002/related_optional/xml/charentities/iso-lat1.ent @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/ead2002/related_optional/xml/charentities/iso-lat2.ent b/data/ead2002/related_optional/xml/charentities/iso-lat2.ent new file mode 100644 index 0000000..01a8ed2 --- /dev/null +++ b/data/ead2002/related_optional/xml/charentities/iso-lat2.ent @@ -0,0 +1,163 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/ead2002/related_optional/xml/charentities/iso-num.ent b/data/ead2002/related_optional/xml/charentities/iso-num.ent new file mode 100644 index 0000000..adf21bc --- /dev/null +++ b/data/ead2002/related_optional/xml/charentities/iso-num.ent @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/ead2002/related_optional/xml/charentities/iso-pub.ent b/data/ead2002/related_optional/xml/charentities/iso-pub.ent new file mode 100644 index 0000000..305481c --- /dev/null +++ b/data/ead2002/related_optional/xml/charentities/iso-pub.ent @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/ead2002/related_optional/xml/charentities/iso-tech.ent b/data/ead2002/related_optional/xml/charentities/iso-tech.ent new file mode 100644 index 0000000..bb67efa --- /dev/null +++ b/data/ead2002/related_optional/xml/charentities/iso-tech.ent @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/ead2002/related_optional/xml/eadcatalog.xml b/data/ead2002/related_optional/xml/eadcatalog.xml new file mode 100644 index 0000000..74dbdf4 --- /dev/null +++ b/data/ead2002/related_optional/xml/eadcatalog.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/lib/compressed_reader.rb b/lib/compressed_reader.rb new file mode 100644 index 0000000..79ccb1c --- /dev/null +++ b/lib/compressed_reader.rb @@ -0,0 +1,22 @@ +# frozen_string_literal: true + +# Provides a Traject Reader for XML Documents which removes the namespaces +# and squishes/compresses/normalizes consecutive spaces or newline characters. +# DUL CUSTOM modified version of: +# https://github.com/projectblacklight/arclight/blob/master/lib/arclight/traject/nokogiri_namespaceless_reader.rb +class CompressedReader < ::Traject::NokogiriReader + # Overrides the #each method (which is used for iterating through each Document) + # @param args + # @see ::Traject::NokogiriReader#each + # @see Enumerable#each + def each(*args) + return to_enum(:each, *args) unless block_given? + + super do |doc| + new_doc = doc.dup + new_doc.remove_namespaces! + compressed_doc = new_doc.xpath("/ead").to_s.strip.gsub!(/[[:space:]]+/, " ") + yield Nokogiri::XML(compressed_doc) + end + end +end diff --git a/lib/tasks/ingest.rake b/lib/tasks/ingest.rake new file mode 100644 index 0000000..2056ce3 --- /dev/null +++ b/lib/tasks/ingest.rake @@ -0,0 +1,29 @@ +# frozen_string_literal: true + +require "arclight" +require "arclight/repository" + +# Read the repository configuration +repo_config = YAML.safe_load(File.read("./config/repositories.yml")) + +namespace :arclight do + # FIXME: SHAMELESS copy of dul_arclight:reindex_everything for now + desc "Reingest all finding aids in the data directory via background jobs" + task ingest_everything: :environment do + path = ENV.fetch("FINDING_AID_DATA") + + puts "Looking in #{path} ..." + + # Find our configured repositories, get their IDs + repo_config.keys.each do |repo_id| + puts "repo ID : #{repo_id}" + puts "working directory : " + Dir.glob(File.join(path, "ead", repo_id, "*.xml")) do |ead_path| + puts "Queuing #{ead_path} for Ingest..." + IngestAutomationJob.perform_later("ingest.file", repo_id: repo_id, file_path: ead_path) + end + end + + puts "All collections queued for Ingest." + end +end diff --git a/lib/um_arclight/traject/ead2_component_config.rb b/lib/um_arclight/traject/ead2_component_config.rb index d57c979..0f1057f 100644 --- a/lib/um_arclight/traject/ead2_component_config.rb +++ b/lib/um_arclight/traject/ead2_component_config.rb @@ -130,6 +130,10 @@ accumulator << (settings[:depth] || 1) end +to_field "parent_ssi" do |_record, accumulator, _context| + accumulator.concat settings[:parent].output_hash["ref_ssi"] || settings[:parent].output_hash["id"] +end + to_field "parent_ids_ssim" do |_record, accumulator, _context| accumulator.concat(settings[:parent].output_hash["parent_ids_ssim"] || []) accumulator.concat settings[:parent].output_hash["id"] @@ -265,9 +269,9 @@ values = accumulator.map(&:to_s) accumulator.replace([]) next if context.output_hash["date_range_isim"].present? - clean_range = values.map { |v| v.gsub(/([^()]*)\(.*\)/, '\1').tr('^0-9\\-/ ', '').strip } + clean_range = values.map { |v| v.gsub(/([^()]*)\(.*\)/, '\1').tr('^0-9\\-/ ', "").strip } .select { |date| date.match?(%r{\A\d{4}[-/]\d{4}\z}) } - .map { |date| date.tr('-', '/') } + .map { |date| date.tr("-", "/") } next if clean_range.empty? range = Arclight::YearRange.new range << range.parse_ranges(clean_range) diff --git a/lib/um_arclight/traject/ead2_config.rb b/lib/um_arclight/traject/ead2_config.rb index 0aa4720..27b2a64 100644 --- a/lib/um_arclight/traject/ead2_config.rb +++ b/lib/um_arclight/traject/ead2_config.rb @@ -256,9 +256,9 @@ values = accumulator.map(&:to_s) accumulator.replace([]) next if context.output_hash["date_range_isim"].present? - clean_range = values.map { |v| v.gsub(/([^()]*)\(.*\)/, '\1').tr('^0-9\\-/ ', '').strip } + clean_range = values.map { |v| v.gsub(/([^()]*)\(.*\)/, '\1').tr('^0-9\\-/ ', "").strip } .select { |date| date.match?(%r{\A\d{4}[-/]\d{4}\z}) } - .map { |date| date.tr('-', '/') } + .map { |date| date.tr("-", "/") } next if clean_range.empty? range = Arclight::YearRange.new range << range.parse_ranges(clean_range) diff --git a/public/fonts/UnifontExMono.woff b/public/fonts/UnifontExMono.woff new file mode 100644 index 0000000..89bc299 Binary files /dev/null and b/public/fonts/UnifontExMono.woff differ diff --git a/sample-ead/bhl/umich-bhl-032.xml b/sample-ead/bhl/umich-bhl-032.xml new file mode 100755 index 0000000..ea93c74 --- /dev/null +++ b/sample-ead/bhl/umich-bhl-032.xml @@ -0,0 +1,105 @@ + + +umich-bhl-032Finding aid for Women in Science and Engineering Program (University of Michigan) recordsFinding aid created by Michelle Sweetser, August 2002; Steven Gentry, May 2020.Bentley Historical Library

    April 2005

    This finding aid was produced using ArchivesSpace on 2020-05-29 12:23:24 -0400.The finding aid is written in EnglishDescribing Archives: A Content Standard2005-03-28Original encoding from Word 6.0 file using Word macros and Xmetal.2012-12-12Web site and oral histories added.2016-11-21Updated Conditions Governing Use Note.2020-05-20Added 2018 and 2020 accessions (172440 and 171585).
    Bentley Historical Library University of MichiganFinding aid for Women in Science and Engineering Program (University of Michigan) recordsFinding aid created by Michelle Sweetser, August 2002; Steven Gentry, May 2020. + + + + Bentley Historical Library + + + Women in Science and Engineering Program (University of Michigan) records 1888-1928 + 1888-1889 + + University of Michigan. Women in Science and Engineering Program. + + 032 Bimu 2 + + 3.0 linear feet + + + 79.7 GB (online) + + + 1 archived websites + + 1974-1996 + 2004-2019 + The material is in English. + Established in 1980 as part of the Center for Continuing Education of Women (now CEW+), the Women in Science and Engineering Program (WISE) has sought to increase the number of women who major in and seek advanced degrees in mathematics, science and technical fields. WISE has offered internships, resource guides, programming, and the Warner-Lambert lecture series towards this goal. In addition to supporting women at the collegiate level, WISE offers a variety of K-12 programs for students of any gender identity, although they are primarily aimed at women and girls. + +Records include correspondence; physical and digital materials related to programming efforts, including the Warner-Lambert lecture series and Girls in Science and Engineering summer camp; funding proposals; research papers and talks by WISE staff members; and clippings and documents related to the establishment of WISE. Planning files for the Girls and Science and Technology (GASAT) IV Conference 1987 are included as well as digital transcripts and recordings from an oral history project that sought to preserve the history of University of Michigan alumnae in the sciences and engineering. + + +

    The record group (donor no. 9222) was received from the unit in June 2002. Additional accessions were received in March 2018 and January 2020.

    +

    Periodic additions to the records are expected.

    +

    Restrictions apply; see item listing for details.

    Access to select audiovisual content in the Programming series is restricted to the reading room of the Bentley Historical Library.

    +

    Copyright is held by the Regents of the University of Michigan but the collection may contain third-party materials for which copyright is not held. Patrons are responsible for determining the appropriate use or reuse of materials.

    +

    [item], folder, box, Women in Science and Engineering Program (University of Michigan) records, Bentley Historical Library, University of Michigan.

    [item], [URL], Women in Science and Engineering Program (University of Michigan) records, Bentley Historical Library, University of Michigan

    +

    +
    +

    In 1980, the University of Michigan established the Women in Science Program as part of the Center for Continuing Education of Women (now Center for Education of Women+, or CEW+), with Dr. Barbara Sloat as the program's first director. The program has sought over the years to increase the number of women and girls who major and seek advanced degrees in mathematics, science, and technical fields, particularly via programming efforts which are open to students of any gender identity. In 1994, the program changed its name to Women in Science and Engineering (WISE) to reflect support for women in science as well as engineering. While WISE had always supported women in engineering (made apparent by many early programming endeavors), the common interpretation of "science" at the time excluded engineering. The name change was designed to bridge the gap in terminology.

    In its initial years, the program was funded by joint contributions from the College of Literature, Science, and the Arts; the College of Engineering; the Medical School; the Horace H. Rackham School of Graduate Studies; and the Office of the Vice President for Academic Affairs. In the two decades since its inception, WISE applied for and received considerable funds from outside sources while continuing to work under the auspices of CEW. Today, WISE is an independent program supported by the College of Engineering; the College of Literature, Sciences and Arts; and the Office of the Provost. The director of WISE reports to the Vice Provost for Engaged Learning.

    WISE has supported undergraduate and graduate women through a variety of programs, including workshops, roundtable discussions, "tray lunches," and conferences. Prominent in the early years was the Women in Science Workshop, offered each fall for incoming women in both the College of Literature, Science, and the Arts and College of Engineering who were interested in science and mathematics-related majors and careers. The workshop afforded students the opportunity to meet female scientists and obtain information about science and engineering programs at the university.

    Of particular significance is the Warner-Lambert Lecture Series, begun in 1981 with a gift of $15,000. This gift from the Warner-Lambert Foundation allowed WISE to co-sponsor, with departments across campus, lectures by visiting women scientists as well as sponsor university-wide lectures by outstanding women scientists. Faculty members across campus were invited to submit nominations for speakers, which were then reviewed by a faculty advisory committee. Well over 100 women scientists were brought to campus as a direct result of this program.

    In addition to supporting internships in the sciences for undergraduate women in cooperation with the College of Literature, Science, and the Arts, WISE and University Housing established the Women in Science and Engineering Residence Program (WISE RP) in 1993. Designed for first- and second-year students who are majoring in science, technology, engineering, mathematics, pre-health, nursing or kinesiology, WISE RP supports WISE's mission by developing a community learners via study groups, peer mentoring, coursework, and events. WISE has also provided counseling and advising services, as well as resource guides, for students.

    WISE has also sought from early on to encourage girls and minorities in K-12 schools to take an interest in science. With the support of a Sigma Xi pre-college education grant, WISE sponsored two "Science Day on Campus" events in 1988 and brought local high school girls to campus to get career information and tours of the laboratories of female scientists. Among the other pre-college programs supported by WISE were Summerscience for Girls and high school internships. Summerscience, first held in 1989 with funding from the Young Scholars program of the National Science Foundation, brought nearly 50 girls to campus to do hands-on projects in the sciences. Additional NASA funding in the second year allowed the program to expand to 75 students. In 1992, a joint project by Warner-Lambert/Parke-Davis and the Women in Science Program received federal funding from the National Institute of Health Science Education Award Program. The joint project -- "Science for Life: A Summer Program for High School Women" -- placed twenty high school women between their junior and senior years in research laboratories for a six-week period.

    Other K-12 programs that WISE has offered have included the Girls in Science and Engineering (GISE) Camp, a summer camp that focused on STEM topics (e.g. chemistry, engineering, robotics, human genetics, and physics) and the Southeast Michigan Science Fair, which is sponsored by the University of Michigan and Washtenaw Community College. WISE has also been involved in the FIRST LEGO League, an international program designed to introduce pre-college students to STEM topics via a robotics competition. WISE offered a variety of K-12 summer programs in 2020, including the GISE Camp, Python Bootcamp, Girls in Music and Technology (GiMaT) summer commuter program, and Electrify Tech Camp.

    WISE staff have also conducted a number of scientific research projects on campus and made themselves available to give papers and talks at local, state, and national events and conferences. The program has also been involved in international efforts encouraging girls in scientific fields, as exemplified by WISE staff members hosting the 1987 Girls and Science and Technology (GASAT) IV conference in Ann Arbor. Founded in 1979 by researchers in Northern Europe who were concerned with the participation of girls and women in scientific fields, GASAT held international conferences bringing individuals around the world together to discuss their work on issues relating to girls and science.

    WISE, along with its programs and staff, has received several awards over the years, including a National Science Foundation Recognition Award for the Integration of Research and Education (1997), Presidential Award for Excellence in Science, Mathematics, and Engineering Mentoring (2000), and Maria Mitchell Women in Science Award (presented to WISE's second Director, Cinda-Sue Davis, in 2000).

    After receiving a grant from the Alumnae Council Birthday Greeting Committee in 2004, the Women in Science and Engineering Program, under the direction of Dr. Cinda-Sue Davis, initiated an oral history project to collect and preserve the oral histories of University of Michigan alumnae in the sciences and engineering. Interview subjects were selected based on their integrity, social consciousness, and citizenship, and not simply on their technical ability or accomplishments. Furthermore, the oral histories focus on the whole interview subject, not simply her experience in a technological field. Interview subjects spoke candidly about their hopes, fears, regrets, and triumphs in all aspects of their lives: education, career, marriage, family, and retirement. They have discussed at length how their treatment and experiences led to, sidetracked, or thwarted their attempts as scientists, engineers, or technicians. The Women's History in Michigan Science and Engineering Oral History Project completed its interviews in 2007. The project resulted in a website (which provided this description) as well as audio recordings and transcripts.

    + Directors of the Women in Science and Engineering Program + + 1980-1984 + + Barbara Sloat + + + + 1984-2019 + + Cinda-Sue Davis + + + + 2019- + + Melissa Gross + + + +
    +

    The WISE records (3.0 linear feet and digital files (online)) reflect the changing approaches that WISE took to encourage and support women in the sciences and engineering, as well as the changing organizational structure of the program. Specific formats include correspondence, digital photographs and videos, grant applications and program proposals, oral histories, research studies and talks, publications, reports, web archives, and background material on women and sciences at the University of Michigan. Prominently represented in the collection are WISE's various programming efforts as well as the Women's History in Michigan Science and Engineering Oral History Project.

    +

    Arranged in 7 series: 1. Administrative. 2. Outreach. 3. Programming. 4. Research. 5. Girls and Science and Technology (GASAT) IV. 6. Women's History in Michigan Science and Engineering Oral History Project 7. Archived Website.

    + +

    + +

    + Engineering -- Study and teaching. + Human genetics -- Study and teaching. + Robotics -- Study and teaching. + Science -- Study and teaching. + Women college students -- Michigan -- Ann Arbor. + Women engineers. + Women in engineering. + Women in science. + Women scientists. + Digital file formats. + Oral histories (document genres). + Photographs. + Web sites. + Ajzenberg-Selove, Fay, 1926- + Buckley, Paulita. + Carter, Barbara (Barbara Quinn) + Connable, Tenho. + FIRST Robotics Competition. + Frank, Margaret (Margaret Barson) + Holter, Francis. + Kelly, Marilee. + Natvig, Anne. + Patterson, Dorothy (Dorothy Lewis) + Pilchard, Patricia. + Shumway, Sally. + Sloat, Barbara F. + University of Michigan -- Camps. + University of Michigan. Women in Science and Engineering Program. + London, Ted, 1963- +
    + Administrative1.25 linear feet1977-1996

    The Administrative series (1.25 linear feet) is an alphabetically arranged sequence providing insight into the day-to-day operation and structure of the WISE program. Records describe the history and creation of the WISE program, and also include correspondence and documents relating to early funding arrangements. Also of note are position papers and listings of program activities and accomplishments that describe the program's early endeavors and justify its purpose and existence.

    Background/HistoryAdvisory Committee19801984-19851Funding Arrangements19811Grade Point Average Comparisons19811Internship Committee19801Minority Engineering Program Office ReportJuly 19791News Clippings1Newsletters1981-1982198419861Position Papers1980-19821Program Activities and Accomplishments1980-19841987-19881Science and Technology Workforce19891Women Faculty Instructional Rankings19801Women in Academic Science Discussion Group19901Women in Science and Technology Equal Opportunity Act19801Women in Science Brochures, ca.1980-19901Women's Caucus Efforts1977-19791Correspondence1980-19811198312 folders198412 folders198512 folders198612 folders198712 folders198812 folders198912 folders199012 folders199122 folders1992219932199421995219962FundingDevelopment Office Contact198119832IBM Proposal for Internships1985-19872Shell Funds for Women's Careers1982-19862Solicitations19912MiscellaneousKing/Chavez/Parks College Day Program1988-19892Science Development Council1988-19892
    Outreach1980-1992

    The Outreach series (0.25 linear feet) includes a number of papers and talks given by WISE staff at various conferences, workshops, and educational group meetings. These records provide snapshots of the WISE program as well as more personal reflections on the program's development and purpose, while at the same time situating it in national context. The series also contains various directories and listings created by WISE to aid students in locating resources in the sciences.

    High School Outreach Program1982-19852Papers"Determinants of Choice of Undergraduate Concentrations in the Sciences, Mathematics, and Engineering at the University of Michigan," 1989.2"Women in Science: A University Program of Intervention, Outreach, and Research." Presented at the Second International Interdisciplinary Congress on Women19842ResourcesBibliography: Holdings in the CEW Library198119922Departmental Resources Persons Listing19802Resource Directory of Michigan Women in the Sciences19832Resource List of National Organizations of and for Women in Science1980-198119912Resource Locator: Careers in the Health Sciences19802Women and Science Acquisitions19842Science By Mail Volunteer Program1989-19902Talks/AddressesMichigan Science Teachers Association19902Science Workshop for Secondary Teachers19872St. Cloud State University Conference on Women in Mathematics19892State Superintendent's Special Committee on Minorities, Females and Handicappers19852Washtenaw Intermediate School District19902
    Programming1974-19751980-19962004-20112017-2018

    The Programming series (1.0 linear feet and digital files (online)) provides the researcher with the greatest insight into the main work of WISE -- a vast array of programming efforts -- and its changing strategies and priorities.

    The series includes digital photographs and videos from various WISE programs, particularly its FIRST LEGO League teams and Girls in Science and Engineering (GISE) Camp; documentation related to the 2017 "Hidden Figures: When the Computer Wore a Skirt: NASA's Human Computers" exhibit; as well as reports for various grants, program proposals, fliers, and other information about WISE programming efforts over the decades.

    Files are arranged alphabetically by topic, event, or program name.

    Career FairsHigh Tech Career Connections19862Math and Science Career Fair19822New Detroit Career Awareness Fair19822Willow Run Intermediate School19832Women's Career Fair4 folders1980-19832ConferencesImage and Professionalism19812Options and Opportunities in Industry19832Women in Science, Engineering and Mathematics Regional Conference: Creating an Academic Community19932ENGAGE (ENGineering for HumAnity and ServinG SociEty)

    (ENGAGE was a non-residential one-week program for high school students that involved participants meeting other students and touring sites to learn more about computers.)

    Photographs2009

    [DCP2 479]

    Online
    ExhibitsHidden Figures bicentennial exhibit documentationcirca 2017-2018

    [access item]

    Online
    FIRST LEGO League (FLL)

    (Includes material related to one of the University of Michigan's For Inspiration and Recognition of Science and Technology (FIRST) LEGO League Teams, the M Go Blue Bots.)

    Journal entries2005

    [access item]

    Online
    Orientation presentation2005

    [access item]

    Online
    M Go Blue Bots Logo2006

    [access item]

    Online
    Nanotechnology notes and related material2006

    [access item]

    Online
    Photographs2006

    [access item]

    Online
    Photographs and videos2007

    [access item]

    Online
    Training presentations and related documentation2007

    [access item]

    Online
    Photographs and videocirca 2008

    [access item]

    Online
    Future Science, Future Engineering (FSFE) CampVideo2004

    [access item]

    Online

    [Access to this material is restricted to the reading room of the Bentley Historical Library]

    Girls in Science and Engineering (GISE) Camp

    (Includes material related to one or more of camp's activities or topics, including cardboard canoes, chemistry, computer science, engineering, gaming for girls, geodesic structures, human genetics, physics, and/or robotics.)

    Photographs2005

    [access item]

    Online
    Presentation2006

    [access item]

    Online
    Photographs2006

    [access item]

    Online
    Photographs, videos, and related material2007

    [access item]

    Online
    Photographs and videos2008

    [access item]

    Online
    Photographs2011

    [access item]

    Online
    Graduate Experience Program (GEP)19962Graduate student programming photographs2006

    [access item]

    Online
    LS&A/Women In Science Program Internships in the Sciences for Undergraduate Women1989-19902Medical Student Interface19892Miscellaneous programs and eventsPhotographs2004-2005

    [access item]

    Online

    (Includes digital photographs of the following programs and topics: M Go Blue Bots, Sally Ride Science Festival, Science Fair, Tech Day Breakfast, and WISE Residence Program (RP).)

    Photographs2006

    [access item]

    Online
    Pipeline Program1989-19902Roundtable DiscussionsPositive Options for Women Scientists19862Sally Ride Science Festival photographs and related material2005

    [access item]

    Online
    Science Day on CampusProgram19832

    (includes photographs)

    19842

    (includes photographs)

    198521986219872
    Report to Shell Companies Foundation19852
    Science for Life Program19932Sloane Proposal -- Summer Math Program for Undergraduate Women19892Southeast Michigan Science FairPhotographscirca 2004

    [access item]

    Online
    Photographs2005

    [access item]

    Online
    Presentation2006

    [access item]

    Online
    Summer Internship Program198421985219862198721988319893Final Grant Report19853Proposal1982-19843"Summer Internships in the Sciences for High School Women: A Model Program at the University of Michigan,"19853Summer Research Experience for Minority High School Women19913Summerscience for GirlsGrant Proposal1988-19893Interim ReportJuly 19893Program19893Program (includes photos)19903Program19943Tray Lunches"Do You Really Need a Ph.D. to Get a Job in Mathematics or Science?,"19853Dual Career Couples19853Highest Paying Careers in the Sciences19853Science Writing Careers, ca.19893Women in Technology In England: An Affirmative Action Perspective19863Trevor Field2007

    (Trevor Field, founder of PlayPumps International, visited the campus in 2007. WISE was one of several institutions that sponsored his visit.)

    Fliers and related material

    [access item]

    Online
    Interview with Ted London

    [access item]

    Online
    Photographs

    [access item]

    Online
    Warner-Lambert Lecture SeriesFlyers1981-19903Guidelines Memo1981-19903History/Proposal1974-19751980-19833List of LecturersBy Co-Sponsoring Department19913By Year1981-19893Nominations1981-19903Press Releases and Publicity3WorkshopsCareer Options: The Mathematics Degree19833Careers in Computer Science19813Careers in Science19823Careers in Technology19823Careers in the Health Sciences19813Public Health Careers19833Resume Writing19843Surviving and Thriving in Graduate and Professional School19833Training and Development19803Women and Science7 folders1980-19863Women in Medicine19803Women in Medicine and Dentistry19823Women in Science19803Women in Technology19833
    Research1983-1990

    WISE conducted a number of independent research efforts focusing on students at the University of Michigan, which are documented in the Research series (0.15 linear feet). The results of these studies and questionnaires help the researcher understand perceptions and attitudes toward science among students at the university and contextualize WISE's programming direction and goals.

    Experiences of Math/Physics Majors19903Factors that Influence Women's Pursuit of Scientific Fields1983-19843Survey of University of Michigan Seniors' Career Aspirations, Especially Toward Careers in Science: Academic and Non-Academic Determinants1986-19873
    Girls and Science and Technology (GASAT) IV1985-1988

    The Girls and Science and Technology (GASAT) IV series (0.35 linear ft.) includes correspondence relating to the GASAT conference held in Ann Arbor as well as documentation on the fundraising efforts and strategies used to underwrite the conference.

    Correspondence4 folders1985-19883Fundraising2 folders1986-19873Michigan Sesquicentennial Handout19873Publicity19873
    Women's History in Michigan Science and Engineering Oral History Project2007

    The Women's History in Michigan Science and Engineering Oral History Project series includes digital recordings and transcripts of University of Michigan alumnae.

    Audio recordingsAjzenberg-Selove, Fay2007

    [download zip file]

    Online
    Buckley, Paulita2007

    [download zip file]

    Online
    Carter, Barbara2007

    [download zip file]

    Online
    Connable, Tenho2007

    [download zip file]

    Online
    Frank, Margaret2007

    [download zip file]

    Online
    Holter, Francis2007

    [download zip file]

    Online
    Kelly, Marilee2007

    [download zip file]

    Online
    Natvig, Anne2007

    [download zip file]

    Online
    Patterson, Dorothy2007

    [download zip file]

    Online
    Pilchard, Patricia2007

    [download zip file]

    Online
    Shumway, Sally2007

    [download zip file]

    Online
    Sloat, Barbara2007

    [download zip file]

    Online
    Transcripts2007

    [download zip file]

    Online
    Archived WebsiteArchived Women in Science and Engineering homepage, 2010-[ongoing]

    [view item]

    Online
    + + + Related Material +

    Researchers may wish to consult the following collections also held at the Bentley Historical Library: Center for the Education of Women (University of Michigan) records and the Women's History in Michigan Science and Engineering (University of Michigan) Web Archives.

    +
    +
    +
    diff --git a/sample-ead/bhl/umich-bhl-0420.xml b/sample-ead/bhl/umich-bhl-0420.xml new file mode 100644 index 0000000..22ab069 --- /dev/null +++ b/sample-ead/bhl/umich-bhl-0420.xml @@ -0,0 +1,97 @@ + + +umich-bhl-0420Finding aid for the Albert Kahn Associates records, 1825-2014 Finding aid created by Sally Linvill Bund on January 14, 2004; updated by Julia Marie Teran in August 2017.Bentley Historical Library

    This collection was formerly titled the "Albert Kahn papers." In August 2017, the title of this collection was changed to the "Albert Kahn Associates records." Please see the Preferred Citation note to view the current instructions for how to cite this collection.

    This finding aid was produced using ArchivesSpace on 2019-06-11 08:48:53 -0400.The finding aid is written in EnglishDescribing Archives: A Content Standard20170817Edited abstract.20170801Updated finding aid to reflect change in collection title and additional books.20170609Added new material to container list and updated front matter.20170529complete re-encoding of container list with addition of new material.20160226corrected drawer 1920150619added links in related material20140609revised to included latest processing, updates, and additions20120613revised to included latest processing, updates, drawer 30-3220111121revised to included latest processing, updates, drawer 26-3020101004revised to included latest processing, updates, drawer 24-2620100127revised to included latest processing, Kahn Books, fabric catalogs and misc. updates20090612revised to included latest processing,beginning with Alvan Macauley Residence20070613revised to included latest processing, Ford Exposition Building etc.20060615revised to included latest processing, Willow Run etc.20040505revised to included latest processing, beginning Natural Science Building and ending Durant Building20040405Original encoding from Word 6.0 file using Word macros and Xmetal.2018-06-07Added 2018 a/v accessions2018-06-23Corrected a broken link2018-10-29Suppressed Vol. 902019-06-10Updated to DEI language in biography
    Bentley Historical Library University of MichiganFinding aid for the Albert Kahn Associates records, 1825-2014Finding aid created by Sally Linvill Bund on January 14, 2004; updated by Julia Marie Teran in August 2017. + + + Bentley Historical Library + + + Albert Kahn Associates records + + Albert Kahn Associates. + + 0420 Aa/2 + + 166 linear feet (in 180 boxes; textual materials, photographs, and audiovisual materials) + + + 90 portfolios (photographs) + + + 22 scrapbooks (sample architectural materials) + + + 131 oversize volumes (books) + + + 12,731 drawings (in 45 drawers and 114 tubes; architectural drawings) + + 1825-2014 + 1900-1945 + The vast majority of the material is in English. A few of the books owned by Albert Kahn are also in French, German, Italian, and Hungarian. + Albert Kahn was a Detroit-based architect, active from 1896 to 1942. He founded the firm, Albert Kahn Associated Architects & Engineers, which is today known as Albert Kahn Associates, Inc. He was best known for his industrial design work, including the Ford Motor Company's Highland Park and River Rouge plants; numerous commercial buildings in Detroit such as the Fisher Building, Detroit Athletic Club, and General Motors Building; and much of the University of Michigan's Central Campus, including Angell Hall, the Clements Library, and Hill Auditorium, as well as the Willow Run Bomber Plant near Ann Arbor, Michigan. After Kahn's death in 1942, his architectural firm, Albert Kahn Associates, Inc., has continued to be a worldwide leader in the design of factory buildings that enhance the manufacturing process. The Albert Kahn Associates records are composed of materials produced by Albert Kahn the architect, as well as materials produced by his firm, Albert Kahn Associates, Inc., and include correspondence, company files, photographs, published materials, and architectural drawings. + + +

    Donated by Albert Kahn Associates, Inc. (Donor No. 9121) in multiple accessions between March 2003 and July 2017.

    +

    The Albert Kahn Associates records are open for research. Albert Kahn Associates, Inc. will retain any copyright that it posses to the contents of the corporation's textual materials, drawings, visual images, and other materials, by the cooperation of the Bentley Historical Library. Reproductions of architectural drawings from the Albert Kahn Associates records require permission from Albert Kahn Associates, Inc.

    Records and drawings for the Ford Motor Company Airplane Parts Manufacturing Building (Willow Run Bomber Factory), 1941-1943, Job No. 1888R were originally classified by the federal government. All documents associated with this project have been declassified by the National Archives and Records Administration, 2/23/2006: Declassification Number NND41511

    +

    No further additions to the collection are expected.

    +

    Copyright is retained by Albert Kahn Associates, Inc. Patrons are responsible for determining the appropriate use or reuse of materials.

    Duplication Policy: Digital reproductions of drawings may be ordered after obtaining permission from Albert Kahn Associates, Inc. Use of digital cameras to copy drawings of sections of drawings is not permitted. Contact the Bentley Library reference staff for duplication policies and procedures.

    +

    [item], folder, box, Albert Kahn Associates records, Bentley Historical Library, University of Michigan

    +

    This collection was formerly titled the "Albert Kahn papers." In August 2017, the title of this collection was changed to the "Albert Kahn Associates records." Please see the Preferred Citation note to view the current instructions for how to cite this collection.

    + +

    +
    +
    +

    As America's most influential industrial architect, Albert Kahn revolutionized the health and safety conditions of early twentieth-century factories and worked closely with Henry Ford to implement his vision of the assembly line at the Highland Park and River Rouge automobile plants. Kahn pioneered the use of reinforced concrete, non-intrusive steel structures, natural ventilation and glass building skins to respond to the changing functional needs of the American factory. His pragmatism, ability to listen to the needs of the client and experimentation with innovative building technologies resulted in a new industrial architecture, which inspired the development of European Modernism by Walter Gropius, Mies van der Rohe and Le Corbusier. Hugely versatile in his design capabilities and strongly interested in historic architecture, Kahn also produced many commercial and institutional icons in Detroit and at the University of Michigan, including the Fisher Building, Detroit Athletic Club, General Motors Building, Hill Auditorium, Angell Hall, William L. Clements Library and Burton Memorial Carillon Tower. This most prolific of American architects built over 2000 projects in his lifetime, including 521 factories in Russia between 1929 and 1932, and in 1938 was constructing 19% of all architect-designed industrial facilities in the United States. When he died in 1942, he had signed defense contracts totaling $200 million for the construction of the Willow Run Bomber Plant and naval bases in Honolulu, Midway Island, Puerto Rico and Kodiak, Alaska, among other war-time facilities.

    Born on March 21, 1869 in Rhaunen, Germany, Kahn spent much of his childhood in Echternach, Luxembourg. His father Joseph, an itinerant teacher and rabbi, came to the United States in 1879. Joseph's wife Rosalie and six of their children joined him in 1880 and lived in Baltimore, Maryland for a short time before settling in Detroit. Albert was the oldest of eight children in the Kahn family and showed brilliance as a pianist at an early age. Due to the family's economic hardship, Rosalie advised him to take up a more practical line of work, although she arranged for him to take drawing lessons from the German sculptor Julius Melchers. Kahn completed his formal education after the seventh grade, when he left school to supplement the family's income with odd jobs, including the position of office boy at the architectural firm of John Scott. At the dedication of George Mason's Masonic Temple years later in 1923, Kahn showed his sense of humor when he told the story of being fired from this first job in architecture. To increase his meager income, he worked in a stable before leaving for the office every morning and would arrive at the firm smelling like the horses. He surmised that "most of the men had a very keen sense of smell and I literally got on their olfactory nerves." [1]

    After this employment failure, Melchers referred Kahn to the Detroit architectural firm of Mason and Rice in 1885. Here the 26-year-old George Mason recognized his brilliance and promoted him from the position of office boy to draftsman, despite his color vision deficiency. Years later, Kahn expressed his gratitude to Mason for his tutelage, recalling that he and the other apprentices admired George's "indomitable energy, his enthusiasm, his nice criticisms, his general helpfulness, his keen interest in us, his innate ability and his own superior draftsmanship."[2] In 1887, Mason assigned Kahn the job of laying out the famous 660-foot-long porch of the Grand Hotel on Mackinac Island Over the ten years that he remained with Mason and Rice, Kahn worked on numerous commissions, including designs for Hiram Walker in Windsor, Ontario.

    While working for Mason and Rice in 1891 at the age of 22, Kahn won a $500 travel scholarship, awarded by American Architect and Building News, to study in Europe for a year. He met Henry Bacon, Jr. in Florence and traveled for four months through Italy, France, Belgium and Germany with this young architect, who would later design the Lincoln Memorial in Washington, D.C. Years later, Kahn said of Bacon, "to me he proved not only a splendid teacher but a real friend whose kindness and stimulating influence I have treasured ever since." [3] It was during this period of educational travel that Kahn developed his love of Palladio and a wide range of historic architectural styles which inspired many of his own later residential, commercial and institutional designs. When he returned from Europe, Kahn was promoted by Mason to chief designer, and in 1892, he turned down a job offer from Adler and Sullivan to fill the position of Frank Lloyd Wright, who had just been fired from the Chicago firm.

    In 1896, Kahn married Ernestine Krolik, the daughter of a successful dry goods merchant who was a client of the young architect. A graduate of the University of Michigan, Ernestine was a talented gardener and interior designer, who often advised Albert on matters of color and fabric selection. When speaking of her parents, their daughter Rosalie Kahn Butzel said years later that "they complemented each other wonderfully." [4] Albert and Ernestine had two other daughters, Lydia and Ruth, and one son, Edgar. "Eddie" became the first scorer and captain of the University of Michigan hockey team and, from 1949 to 1971, served as the innovative chairman of neurosurgery at the University of Michigan Hospital (designed by his father in 1919).

    Kahn left Mason and Rice in 1895 to found Nettleton, Kahn and Trowbridge with two of his colleagues from Mason's office. The new firm was known for its design of Children's Hospital on St. Antoine Street, financed by Hiram Walker in 1896. When Alexander B. Trowbridge left Detroit to become dean of the College of Architecture at Cornell University in 1877, the firm was renamed Nettleton and Kahn, until George W. Nettleton died in 1900. Kahn then joined with George Mason briefly, producing the Palms Apartments (1901-1902) on Jefferson Avenue and the initial design for the Pantheon-inspired Temple Beth El (1902) on Woodward Avenue. The Palms project represented Kahn's earliest experimentation with reinforced concrete structures, which would soon revolutionize his design of American factories.

    By 1903, Kahn had joined with a talented designer to form the firm of Albert Kahn, Architect, Ernest Wilby, Associate. Wilby practiced with Kahn until 1918 and made a major contribution to the innovative designs of the Ford Motor Company Highland Park Plant in Dearborn (1908-09) and Hill Auditorium (1913) and the Natural Science Building (1917) at the University of Michigan. 1903 was also the year that Kahn's brother Julius became chief engineer of the firm and began his ground-breaking collaboration with Albert on the use of reinforced concrete in industrial design, which would have global impact. Albert had helped educate Julius, who received his B.S. and C.E. degrees at the University of Michigan. Having served as an engineer for the U.S. Navy and the U. S. Engineering Corps from 1896 to 1903, Julius brought technical expertise in structural design to the firm. Thus began Albert's revolutionary practice of joining the multiple disciplines of architecture and engineering under one professional roof, just as he would incorporate multi-functional operations into his subsequent designs of assembly-line factories.

    Kahn's first factory built of reinforced concrete in Detroit was Building Number 10 for the Packard Motor Company (1905). In 1903, Henry Joy had commissioned Kahn to design an automobile plant on 40 acres on East Grand Boulevard. The first nine buildings which Kahn produced on the site were of conventional, nineteenth-century, timber construction, which caused mills to be prone to fire and impeded production because of the need for numerous structural posts. After experimenting with and perfecting his "Kahn system" [5] of reinforced concrete in the University of Michigan Engineering Building (1903), Julius collaborated with Albert on the structural design of the two-story Packard Building No. 10 using this innovative technology. The Kahn system soon revolutionized the design of factories nation-wide because reinforced concrete buildings were more fire-proof, vibration from large machinery was minimized, assembly floors could be more open and flexible through the use of fewer columns and larger double-hung window openings permitted more natural light and ventilation for workers. Packard Building Number 10 was so technologically advanced that it attracted the attention of tourists, who flocked to the site, and, most importantly, Henry Ford.

    Ford approached Kahn in 1908 to build an automobile plant for the manufacture of his Model T automobiles on a new 180-acre site in Highland Park, when it appeared that his first two factories were becoming obsolete. Thus began a long-term partnership between two geniuses: Ford, who foresaw the futuristic advantages of assembly-line production, and Kahn, who "found aesthetic values in the forms engendered by new techniques and functional considerations." [6] In implementing Ford's vision over the next 34 years of their collaboration, Kahn completed over 1,000 projects for the Ford Motor Company, with the "Crystal Palace" [7] at Highland Park being perhaps his most famous.

    The Highland Park main assembly building (1910), with the first mechanized assembly line, was a four-story, concrete structure, 840 feet long. Through the use of imported steel-frame, floor-to-ceiling sash, Kahn further improved the health and safety conditions of the American factory. Over the next five years, Kahn added a 5-smokestack power house, an administration building with a frieze of glazed tiles, other assembly buildings and steel-framed atriums between the structures. Gravity conveyances and overhead, traveling cranes in the atriums moved raw materials down the four levels of the plant to the final assembly-line area on the first floor, where 700,000 Tin Lizzies would be produced by the year 1917. In its stunning simplicity, its innovative use of steel, brick and glass and its new aesthetic principle of form following function, the Crystal Palace is thought to have inspired the work of Walter Gropius in his 1914 Faguswerk [8] and influenced the development of European Modernism.

    When the Highland Park automobile operation outgrew its site, Henry Ford purchased 2000 acres on the River Rouge in 1917 and commissioned Kahn to design and construct what would become the largest manufacturing complex in the world. The design of the River Rouge plant cemented his reputation as the father of American industrial architecture. In the first assembly Building B, where Ford produced the Eagle Submarine Chaser for the U. S. Navy, the continuous moveable assembly line was further perfected in a one-half-mile-long, one-story, steel structure, which was economically and quickly built for the World War I military operation. Here the first steel, saw-tooth roof and glass and steel sash cladding were to become the hallmarks of Kahn's innovative industrial work.

    Although Kahn expanded the Ford Motor Company Rouge River plant with more buildings to house the cement, motor assembly, open hearth and pressed steel operations in the early 1920s, his 1922 Glass Plant on the site was "the building of greatest significance, both in terms of Kahn's career and in the larger history of industrial architecture." [9] The steel cage construction, saw-tooth roof and glass curtain walls, while breathtakingly minimalist on the exterior, provided the flexibility and open space to perfectly accommodate the manufacturing processes on the interior. This architectural icon within the most renown industrial site in the world changed the form and function of American industrial architecture at home and abroad and inspired the work of other architects, engineers and artists.

    Kahn certainly recognized the aesthetic values in his "beautiful factories," [10] as he called them, although he would not have had the historical perspective at the time to understand the impact of his designs on the emerging Modern movement. In his characteristically solution-oriented way of thinking, he expressed his views on industrial architecture in a 1940 speech to the New York Society of Architects:

    The simpler the exterior the better it is, as a rule, for are we not quite agreed that a straight forward and direct expression of the function of the structure is an important element in all architecture, even the purely monumental; that proper proportions, effective grouping and good outline may be produced at no increase in cost; that these are infinitely more desirable than elaborate ornamentation, no matter how well executed. [11]

    As a result of his breakthrough industrial work for Ford, Kahn received commissions to construct 150 major buildings for General Motors Corporation and many for Chrysler. He also produced manufacturing facilities for companies which were turning out clothing, textiles, food, cement and other products. His reputation for building efficient plants on-time and under-budget caused his office to grow to 400 staff members by 1920 and to bring in more than $1,000,000 of work a week. By 1939, Kahn's office, with a staff of 600, was constructing 19% of all architect-designed industrial facilities in the United States, his Chrysler Dodge Half-Ton Truck Plant (1938) in Warren, Michigan, being among the best known. Mies van der Rohe was inspired by Kahn's Glenn L. Martin Company aircraft assembly building (1937), with its 135,000-square-foot, column-free work area, spanned by the longest, flat-roof trusses ever used in a building.

    By 1929, the famed collaboration of Henry Ford and Albert Kahn on the River Rouge Plant had come to the attention of the Russians, who admired their efficient accommodation of industrial design to the principles of mass production. Representatives of the Amtorg Trading Corporation came to Detroit to propose that Kahn become the consulting architect to the Soviet Union in the initiation of Stalin's First Five-Year Plan to industrialize his nation. Between 1929 and 1932, with Kahn's brother Moritz at the helm of the his Moscow architectural/engineering office, the firm produced 521 tractor, steel, auto, airplane and chemical plants for $2 billion, the largest architectural design project in the firm's history. [12] Twenty-five professionals from the Detroit firm set up the Moscow office and trained over 4,000 Soviet engineers, architects and other personnel. The tractor factories at Stalingrad and Cheliabinsk were two of the largest plants built under Kahn's supervision. The Stalingrad plant, designed with a 1300-foot-long assembly area to produce 40,000 tractors a year, was constructed in a record six months. The factory was later the site of the pivotal battle of Stalingrad, where the Russians were victorious over the Germans and turned the tide of World War II.

    One of the reasons for Kahn's world-wide reputation in industrial architecture was his ground-breaking establishment of a non-traditional, multi-disciplinary firm of designers, mechanical and structural engineers, cost accountants and job managers, who could provide the full range of design/build functions in-house. Through this collaboration of professionals within one firm, Kahn could make construction more efficient and less costly for clients. He had raised factory design to a legitimate level of architectural practice and years later would recall:

    When I began, the real architects would design only museums, cathedrals, capitols, monuments. The office boy was considered good enough to do factory buildings. I'm still that office boy designing factories. I have no dignity to be impaired. [13]

    The final chapter in Kahn's industrial architecture career focuses on his contributions to America's "Arsenal of Democracy" [14] during World War II. Between 1914 and 1917, Kahn had constructed the first hangar building ever built at Langley Field, the Ford Eagle Shipbuilding Factory at River Rouge and the majority of the country's World War I naval bases and army airfields. In the last three years of his life, his firm took on the bulk of the U. S. Defense Department's contracts for World War II, totaling $200 million. These included naval bases in Alaska, Hawaii, Midway Island, Puerto Rico and Jacksonville, Florida. Kahn also constructed the Chrysler Tank Arsenal (1941) and numerous airplane factories, the largest of which was the 70-acre Ford Motor Company Willow Run Bomber factory (1943) at Ypsilanti, Michigan. Willow Run was Kahn's last industrial project for Ford. The B-24 Liberator bomber was produced here in a 4,000,000-square-foot, artificially lighted assembly plant to guard against the threat of night attack. This was the world's largest industrial facility, producing one bomber every 24 hours. In 1942, just before Kahn's death, the American Institute of Architects presented him with a special award, the citation for which read:

    Master of concrete and steel, master of space and time, he stands today at the forefront of our profession in meeting the colossal demands of a Government in need. [15]

    Kahn's greatest significance in architectural history is his design of technologically innovative industrial buildings of "utmost simplicity, rational construction, functional efficiency and a striking expressive aspect.[16] However, he is also renowned for changing the skyline of Detroit with his institutional, commercial and residential buildings of exceptional merit. Fifty of his buildings in the city and environs have been placed on the National Register of Historic Places, honoring the exceptional breadth of Kahn's design repertoire. It was in his non-industrial work that he showed himself to be a keen student of historical architecture, having sketched many works of antiquity and later centuries during his European travels. Many of his residences, synagogues, bank buildings and office structures pull from classical, Italian Renaissance or English Tudor and Georgian sources. He showed versatility and innovation in his pairing of industrial-style reinforced concrete and steel structures with an historic aesthetic in many of his buildings.

    Even before designing Packard Number 10 (1905) for Henry Joy, Kahn was experimenting with reinforced concrete in the design of the Palms Apartment House (1902) on Jefferson Avenue with George Mason. He used industrial steel trusses to support the dome of another early work, the Temple Beth El (1903) on Woodward Avenue. This oldest synagogue building in Detroit was inspired by the Roman Pantheon, a photo of which was framed over Kahn's desk. Its severely altered French Classical facade is now the Bonstelle Theater of Wayne State University. Kahn's design versatility is also seen in his National Theatre (1910) on Monroe Street. Here he collaborated with his chief designer Ernest Wilby to bring together Baroque, Moorish and Beaux-Arts elements in an imaginative, terra-cotta building, which was breathtaking when the lattice-work twin-towers were illuminated at night.

    Kahn's residential work also demonstrated his design versatility and ability to combine structural innovation with historical architectural elements. In his own house on Mack Avenue (1907) and in other residential commissions for captains of industry, Kahn showed a penchant for English Domestic Revival and Tudor styles, as seen in George Booth's Cranbrook House (1907), with its use of Arts and Crafts detailing and Pewabic tiles. The later English Cotswold-style mansion of Edsel and Eleanor Ford in Grosse Pointe Shores (1929) is considered one of his finest residential designs. Here Kahn used industrial-style concrete for the floors and steel roof trusses, but faced the building with traditional sandstone. The roof stones were split by expert English craftsmen who were imported to Detroit for this project, along with the materials.

    Kahn's facility with a broad palette of historical styles influenced his design of many of Detroit's commercial and institutional icons, which contribute to the character of the city even today. His famous Detroit Athletic Club (1915) was inspired by the New York work of McKim, Mead and White and by Rome's Farnese Palace, which Kahn toured and sketched in 1912. The Italian Renaissance style was selected to give this important meeting place for leaders of the automobile industry the appropriate elegance and dignity. Between 1911 and 1926, Kahn completed numerous corporate buildings which combine industrial structure with traditional stylistic elements: Detroit Trust Company (1915), Detroit News Building (1916), First National Bank (1922) and the world famous General Motors (Durant) Building (1922) are among a few of these. The GM Building was the largest office building in the world at that time, with four cross-wings of 15 stories each, which ensured that each of the 1,800 offices had access to natural light and ventilation. With a Sullivanesque, skyscraper-style concept of base, shaft and capital, this monumental 1,320,000 square-foot structure is known for its Italian Renaissance, triple-arched entry with Ionic pilasters and its two-story-high, capital crown of Corinthian columns. Thought by many to be "Albert Kahn's personal masterpiece in commercial architecture,"[17] the building was renovated in 2002 by Albert Kahn Associates, Inc. for the State of Michigan at a cost of $126 million.

    As the Art Deco style took hold in the mid-1920s, Kahn showed himself to be a master of this vocabulary as well, using the New York formula of step-back massing in his Detroit Free Press Building (1925) and Maccabees Building (1927). However, it was his 28-story Fisher Building (1927) which attracted national attention when the Architecture League of New York recognized it as the year's most beautiful commercial building in 1928. The Detroit chapter of the American Institute of Architects named this historic icon the "Building of the Century"[18] in 2000. Because the seven Fisher brothers of Fisher Body Company envisioned the finest office building in the world, which was to anchor a second Detroit commercial district, they gave Kahn no budget for this Art Deco masterpiece. Kahn installed a 3,000-seat theater within the building, applied an exterior trim of solid bronze and designed the interior with 40 shades of marble and a vaulted arcade. A final Art Deco Kahn building of note is the Livingstone Light (1929-1930) on Belle Isle, a 58-foot-high, marble and bronze monument to William Livingstone, who had founded the Lake Carriers Association in 1901.

    Just as Kahn used many of the structural principals of his industrial buildings in his commercial designs, so too in his buildings at the University of Michigan, he showed a commitment to providing natural lighting and ventilation to the students and faculty who labored within. Between 1903 and 1938, he worked with Presidents James B. Angell, Harry B. Hutchins and Marion L. Burton to design 23 buildings and additions, significantly changing the skyline of the university at a time of tremendous growth. From the Engineering Building (1903), with its pioneering reinforced concrete structure, to Hill Auditorium (1913), the Natural Science Building (1917) and General Library (1919), with their brick, stone and tile strapwork trim, Kahn divorced himself from the Gothic Academicism of traditional university architecture with new elements which both delighted and angered alumni/ae. His prolific work on the campus in the first two decades also included the Helen Newberry and Betsy Barbour Residence Halls (1915 and 1918) and Sigma Phi and Delta Upsilon fraternity houses (1898 and 1903), among others.

    During the post-war building boom of the early 1920s, Kahn served as consulting architect on the university's "Committee of Five,"[19] composed of President Burton, Professor John Shepard, Regent William Clements and Regent Benjamin Hanchett. The committee was appointed to make all decisions related to the construction of new buildings. During this time he designed the William L. Clements Library to house the regent's collection of rare Americana. Using Italian Renaissance design elements which he had seen and sketched on his trips to Europe, Kahn created a majestic, triple-arched portico for this architectural gem, which is said to have been his favorite building. For the commanding Literary Building (Angell Hall, 1922), he used a monumental Doric portico to remove attention from the long, horizontal structure behind it, which was reminiscent of his non-production, industrial buildings. Other important campus works were the University of Michigan Hospital (1920), the Simpson Memorial Institute for Medical Research (1924), the Museums Building (1927) and the Burton Memorial Carillon Tower (1936).

    Albert Kahn was honored for his achievements in modern industrial architecture many times during his illustrious career. He received honorary degrees from the University of Michigan in 1933 and Syracuse University in 1942. In 1937, he was awarded the "Chevalier Legion D'Honneur" by the Republic of France and a gold medal at the Paris International Exposition of Arts and Sciences. In addition to the special award given to him by the American Institute of Architects for his wartime service in 1942, he also received the Frank P. Brown medal posthumously from The Franklin Institute of the State of Pennsylvania in 1943. Kahn's success in pioneering a global industrial architecture was predicated on his pragmatic, solution-oriented mind, his interest in technological innovation, his ability to listen to his clients' needs, his indefatigable energy and his legendary work ethic. Kahn's famous quote below succinctly sums up his views on industrial architecture:

    In spite of the fact that architecture today is in my opinion only about 10% art and 90% business, the architect must have constantly before him the final result - the artistic, the practical and the economic.[20]

    Albert Kahn passed away on December 8, 1942. Well after his death, his architectural firm, Albert Kahn Associates, Inc., remains an international leader in the design of highly specialized, efficient, flexible, and expandable factory buildings that enhance the flow of the manufacturing process. Examples of such factories include the Nissan Motor Manufacturing Corporation USA assembly plant in Smyrna, Tennessee, and the BMW Manufacturing Corporation assembly plant in Spartanburg, South Carolina.[21]

    In addition to designing and building numerous factories and buildings across the United States, Albert Kahn Associates, Inc. has designed a number of notable buildings in Michigan since 1942, including the Providence Medical Center in Novi, Michigan, the Ford Research and Engineering Center in Dearborn, Michigan, and the General Motors Building Prototype Wing 4A, and Grand Circus Park, in Detroit, Michigan. On the University of Michigan campus in Ann Arbor in particular, Albert Kahn Associates, Inc. constructed a number of prominent buildings in recent years that have become part of the public "face" of the university.

    One such building is the University of Michigan's University Hospital, which was built on top of a bluff overlooking the Huron River and the city of Ann Arbor. This hospital is considered to be one of the best of its kind due to its maximum energy efficiency and its use of modern technologies. It is the clinical care cornerstone of the University of Michigan Health System, which consistently ranks among the best health care institutions in the United States. The University Hospital was planned by Albert Kahn Associates, Inc. in 1980, construction was completed in 1986, and the hospital won the ASHRAE (American Society of Heating, Refrigerating, and Air-Conditioning Engineers) National Energy prize in 1989.[22]

    Another prominent building is the Duderstadt Center, originally called the University of Michigan Media Union, on the University of Michigan's north campus in Ann Arbor. The Duderstadt Center was built to change the formality of education, and was the result of advanced technologies developed with the resources of four university departments: Architecture and Urban Planning, Art and Design, Engineering, and Music, Theatre, and Dance. The building is structured around modern technological spaces that allow for the creation of information laboratories where students can learn through the utilization of media. Architecturally, it is particularly known for its vast, north-facing expanse of glass that illuminates the first floor atrium and second floor lobby, as well as for the pyramidal skylight over the center of the building, which further enhances the openness of the core space. Designed by Albert Kahn Associates, Inc. in the early 1990s, the building opened its doors in 1996.[23]

    In 1998, Albert Kahn Associates, Inc. opened a second office in São Paulo, Brazil. As the world's third largest city, and the largest city in South America, the firm saw opportunities for growth and continuing development in the industrial, health care, and corporate markets of the region. A successful part of Albert Kahn Associates, Inc. since 1998, Kahn do Brasil Ltda. strengthens the firm's ability to provide a wide variety of design, consulting, and business planning services to clients in South America and beyond.[24] With offices in both Detroit, Michigan and São Paulo, Brazil, Albert Kahn Associates, Inc. has built an expertise in a variety of markets, including corporate, health care, automotive, industrial, research and technology, higher education, and government. Today, the firm ranks among the Top 200 architectural firms in the United States, and is internationally recognized for both its broad historical significance and for its revolutionary, award-winning designs.[25]

    ______________________

    Notes

    [1] Speech by Albert Kahn honoring George Mason at Masonic Temple Dedication, given to Michigan Society of Architects, 1923, Box 1, Albert Kahn Collection, Bentley Historical Library, University of Michigan.

    [2] Ibid.

    [3] Speech by Albert Kahn given to Boston Society of Architects, "Industrial Architecture - Its Problems and Obligations," 11/12/40, Box 1, Albert Kahn Collection, Bentley Historical Library, University of Michigan.

    [4] Richard Bak, "Blueprint for Detroit," HOUR Detroit(May, 2000, reprinted by Albert Kahn Associates, Inc.), p. 2.

    [5] W. Hawkins Ferry The Legacy of Albert Kahn(Detroit: Wayne State University Press, 1987), p. 11.

    [6] Ibid.

    [7] Richard Bak, "Blueprint for Detroit," HOUR Detroit, p. 2.

    [8] Grant Hildebrand, "Beautiful Factories," Albert Kahn: Inspiration for the Modern, edited by Brian Carter (Ann Arbor: The University of Michigan Museum of Art, 2001), p. 20.

    [9] Albert Kahn Associates, Inc., "The AIA 2003 Gold Medal Submission: Albert Kahn, FAIA, 1869-1942" (2003), p. 10.

    [10] Grant Hildebrand, "Beautiful Factories," Albert Kahn: Inspiration for the Modern, p.17.

    [11] Speech by Albert Kahn to the New York Society of Archiects, "Industrial Architecture - An Opportunity and Challenge," 9/27/1940, Box 1, Albert Kahn Collection, Bentley Historical Library, University of Michigan.

    [12] Anatole Senkevich, Jr., "Albert Kahn's Great Soviet Venture as Architect of the First Five-Year Plan, 1929-1932," Dimensions, Vol Ten (1996), p. 45.

    [13] Janet Kreger, "Albert Kahn and the Design of Angell Hall," LSA Magazine(Spring, 1998), p. 5.

    [14] W. Hawkins Ferry The Legacy of Albert Kahn, p. 25.

    [15] Eric J. Hill and John Gallagher AIA Detroit: The American Institute of Architects Guide to Detroit Architecture(Detroit: Wayne State University Press, 2003), p. 118.

    [16] Anatole Senkevitch, Jr. "Albert Kahn's Great Soviet Venture as Architect of the First Five-Year Plan, 1929-1932," p. 35.

    [17] Eric J. Hill and John Gallagher AIA Detroit: The American Institute of Architects Guide to Detroit Architecture, p. 176.

    [18] Albert Kahn Associates, Inc., "The AIA 2003 Gold Medal Submission: Albert Kahn, FAIA, 1969-1942," p. 3.

    [19] Janet L. Kreger, "Albert Kahn and the Design of Angell Hall," LSA Magazine, p. 8.

    [20] Speech by Albert Kahn to the Adcraft Club, "Thirty Minutes of American Architecture and Architects," 11/22/1937, Box 1, Albert Kahn Collection, Bentley Historical Library, University of Michigan.

    [21] L'Arca Edizioni, Albert Kahn Associates: Continuing the Legacy, (2000), p. 8.

    [22] Ibid, p. 19.

    [23] Ibid, p. 63.

    [24] "Where." Albert Kahn Associates, Inc. Viewed June 13, 2017. http://www.albertkahn.com/where.php

    [25] "Albert Kahn Associates, Inc." Linkedin. Viewed June 13, 2017. https://www.linkedin.com/company/albert-kahn-family-of-companies

    +

    The Albert Kahn Associates records offer researchers the opportunity to study the correspondence, transcripts of speeches, photographs, and architectural drawings of the preeminent, American, industrial architect, Albert Kahn, and his firm, Albert Kahn Associates, Inc. On March 21, 2003 (the 134th anniversary of Albert Kahn's birthday), Albert Kahn Associates, Inc. (AKA) donated this collection to the Bentley Historical Library at the University of Michigan to ensure the conservation and accessibility of these records. Through this gift, AKA has shown its commitment to preserving the legacy of Kahn, whose factories on five continents influenced the development of industrial architecture and whose commercial, residential and institutional buildings define the character of Detroit and the University of Michigan today. The collection encompasses 166 linear feet (in 180 boxes) of correspondence, transcripts of speeches, newspaper and journal articles, company files, audiovisual materials, photographs and slides, as well as 90 leather portfolios containing photographs of completed buildings, 22 albums of sample architectural materials, 131 books, and 12,731 architectural drawings in 45 flat-file drawers and 114 oversize tubes.

    The narrative and visual materials in the collection illuminate the breadth of Kahn's career and highlight the work of his architectural firm, Albert Kahn Associates, Inc., which continued to develop projects after his death, and remains a living institution. In pairing the textual materials with the photographs and architectural drawings associated with Kahn's projects, this collection offers a rich perspective on the master architect himself, illuminating his personal views on his own architecture and its place in a changing and often tumultuous world.

    +

    The Albert Kahn Associates records are comprised of ten series: Albert Kahn's Personal Papers, Albert Kahn's Professional Papers and Albert Kahn Associates' Files, Construction Photographs, Marketing Photographs, Photographs of Completed Buildings in Leather Portfolios, Slides, Albums Containing Furniture, Fabric, Ironwork and Terra Cotta Samples, Books Owned by Albert Kahn, Audio-Visual Materials, and Architectural Drawings. + + Materials relating to individual jobs are arranged according to the order in which they were received by the Bentley. Photographs in the Construction Photographs series and the Architectural Drawings are arranged chronologically by job number. Materials in the Marketing Photographs series, the Photographs of Completed Buildings in Leather Portfolios series, the Slides series, and in the Albums series, are arranged alphabetically by project title.

    + +

    + +

    + Architects -- Michigan. + Architects -- United States. + Architecture -- Design and plans. + Architecture -- Michigan -- Ann Arbor. + Architecture -- Michigan -- Detroit. + Industrial buildings -- Michigan -- Detroit. + Architectural firms -- Michigan -- Detroit. + Architecture -- United States. + Architecture, Industrial. + Architecture, Modern -- 20th century. + Architectural design. + Arsenals -- Michigan -- Warren. + Construction. + Detroit (Mich.) -- Buildings. + Factories -- Design and construction. + Industrial buildings. + Natural Science Building (University of Michigan) + Office buildings -- Michigan. + Audiocassettes. + Architectural drawings. + Architectural photographs. + Photographs. + Progress photographs. + Sound recordings. + Video recordings. + Videocassettes. + Albert Kahn Associates. + Kahn, Albert, 1869-1942. + Kahn, Albert, 1869-1942. + Detroit Trust Company -- Buildings. + General Motors Building (Detroit, Mich.) + University of Michigan -- Buildings. + University of Michigan. Hospitals -- Buildings. + Warren Truck Assembly Plant (Chrysler Corporation) + Willow Run Bomber Plant. +
    + Albert Kahn's Personal Papers

    The Albert Kahn's Personal Papers series (1 linear foot, 1917-1970) contains correspondence to and from Albert Kahn from 1917 to 1942 and to a few principals of his firm through 1970. These documents were probably saved in a special file by Kahn because they are letters of appreciation, commendation and reference from admiring clients and government officials, including such historic figures as Henry Ford, George G. Booth, James C. Couzens, Henry B. Joy, William L. Clements, C. S. Mott, Alfred P. Sloan, Jr. and The Honorable Ferry K. Heath, Assistant Secretary of the Treasury. The letters have been described at the item-level in this finding aid because of the importance of the authors and their own contributions to American industrial and political history.

    Correspondence1917-1970Letters of Appreciation, Commendation and Reference1917-1929To Kahn from George G. Booth, President, The Evening News Association, Detroit10/8/19171To Kahn from F. L. Klingensmith, Vice President and Treasurer, Ford Motor Company2/21/19181To Kahn from Malcolm McGregor, President, Detroit Golf Club1/2/19191To Kahn from Alvan Macauley, President, Packard Motor Car Company4/7/19191To Kahn from H. W. Chapin, Treasurer and General Manager, Brown-Lipe-Chapin Co., Syracuse, NY4/30/19191To Kaufman Rubber Co., Ltd., Kitchener, Ontario, from H. W. Chapin, General Manager, Brown-Lipe-Chapin Company4/30/19191To Kahn from C. G. Edgar, W. H. Edgar & Son, Detroit6/13/19191To Frank A. Seiberling, President, Goodyear Tire & Rubber Company, Akron, OH, from C. J. Butler10/17/19191To Kahn from George G. Booth, President, The Evening News Association8/19/19201To Kahn from B. W. Peterson, President, Dollar Savings & Trust Co., Wheeling, WV8/26/19201To Whom It May Concern from Dr. James W. Inches, Commissisoner of Police, City of Detroit9/23/19201To Whom It May Concern from James Couzens, Mayor, City of Detroit9/23/19201To A. Gaddis, President, Citizens Title & Trust Company, Uniontown, PA, from BWP1/20/19211To Kahn from B. W. Peterson, President, Dollar Savings & Trust Co., Wheeling, WV6/2/19211To Kahn from Charles C. Bowen, Secretary, Standard Accident Insurance Company of Detroit6/2/19211To Kahn from [signature illegible], President, The Detroit Savings Bank6/6/19211To Kahn from Howard Van Doren Shaw, Architect, Chicago7/22/19211To Cramer Smith, President, Pontiac Commercial & Savings Bank, from Ralph Stone, President, Detroit Trust Co.8/1/19211To Kahn from H. A. Austin, General Manager, General Motors Building Corporation11/8/19211To Clyde H. Burroughs, Detroit Museum of Art, from J. J. Crowley, Crowley Brothers11/11/19211To Austin Lynch, First National Bank of Canton, OH, from Eugene W. Lewis, House Financing Corporation of Detroit11/12/19211To Kahn from Louis J. Horowitz, New York, NY11/30/19211To Kahn from C. G. Edgar, W. H. Edgar & Son, Detroit3/20/19221To Kahn from CHLF [signature illegible], Disteel Wheels, Detroit Pressed Steel Company3/20/19221To Kahn from Lawrence Veiller, Secretary, The Committee on Criminal Courts, New York, NY11/9/19221To Henry Swan, Vice President, Bankers' Trust Company, Denver, CO, from B. W. Peterson, President, Dollar Savings & Trust Co., Wheeling, WV12/5/19221To Kahn from Emory W. Clark, President, First National Bank, Detroit1/9/19231To Kahn from Henry B. Joy, "Fairacres," Grosse Pointe Farms, MI3/13/19231To Kahn from W. C. Durant, New York, NY10/18/19231To Kahn from John R. Searles, Michigan Smelting & Refining Co., Detroit11/27/19231To Kahn froom George R. Cooke, The George R. Cooke Co., Detroit12/26/19231To Kahn from Charles Harris Whitaker, Editor, The Journal of The American Institute of Architects, New York, NY1/10/19241To Kahn from R. B. Mann, General Manager, Packard Motor Car Company5/5/19241To Kahn from Alvan [Macauley]5/24/19241To Kahn from C. B. Ferguson, President, The Ohio Valley Trust Company, Goraopolis, PA6/21/19241To Kahn from James Couzens, U. S. Senate8/8/19241To Kahn from John R. Effinger, Dean, College of Literature, Science, and the Arts, University of Michigan12/22/19241To Kahn from Kirby B. White, Jr., Vice President, D. M. Ferry & Co., Detroit1/16/19251To William W. Tefft, Chief Engineer, Consumers Power Company, Jackson, MI, from H. A. Austin, General Manager, General Motors Building Corporation1/19/19251To William Teft, Chief Engineer, Consumers Power Company, Jackson, MI, from W. J. Roberts, Vice President, The Mahoning National Bank, Youngstown, OH1/23/19251To Kahn from G. G. Atkins, Minister, The First Congregational Church, Detroit5/29/19251To Kahn from Katherine G. Kimmick, Director, Henry Ford Hospital School of Nursing and Hygiene, Detroit6/27/19251To Kahn from John G. C. [signature illegible], St. Mary's of Redford, Detroit7/14/19251To Kahn from W. L. Graham, Superintendent, Henry Ford Hospital, Detroit9/20/19251To Kahn from Frank J. Sladen, Physician-in-Chief, Henry Ford Hospital, Detroit9/25/19251To Kahn from R. D. McClure, Surgeon-in-Chief, Henry Ford Hospital, Detroit9/30/19251To Kahn from G. W. Brown, Vice President, Citizens Title & Trust Company, Uniontown, PA10/16/19251To Kahn from G. W. Brown, Vice President, Citizens Title & Trust Company, Uniontown, PA11/16/19251To Kahn from W. J. Roberts, Vice President, The Mahoning National Bank, Youngstown, OH11/17/19251To Kahn from Frank E. Quisenberry, President, Highland Park Trust Company, Highland Park, MI12/11/19251To Kahn from James O. Murfin, Board of Regents, University of Michigan1/5/19261To Kahn from Dr. Walter H. Sawyer, Board of Regents, University of Michigan1/8/19261To Kahn from Victor M. Gore, Gore & Harvey and Board of Regents, University of Michigan1/9/19261To Kahn from Junius E. Beal, Board of Regents, University of Michigan1/10/19261To Kahn from William L. Clements, Board of Regents, University of Michigan1/11/19261To Kahn from C. C. Little, President, University of Michigan1/18/19261To Kahn from Ella K. Winter, Secretary to Ralph Stone, President, Detroit Trust Company1/19/19261To Kahn from John F. Shepard, University of Michigan1/29/19261To Kahn from A. Barit2/13/19261To Kahn from William L. Clements, Board of Regents, University of Michigan3/3/19261To Kahn from Harry Whyel, President, Whyel Coke Company, Uniontown, PA3/5/19261To Kahn from C. S. Mott, General Motors Corporation, Detroit6/4/19261To Kahn from Alfred P. Sloan, Jr., General Motors Corporation, New York, NY6/4/19261To Kahn from Alvan Macauley, President, Packard Motor Company6/15/19261To Kahn from Jacob M. Loeb, Insurance Exchange, Chicago6/15/19261To Kahn from Ralph Stone, President, Detroit Trust Company7/19/19261To Otto Kahn from Lucius L. Hubbard, Board of Regents, Unversity of Michigan8/1/19261To Kahn from Jacob M. Loeb, Insurance Exchange, Chicago11/9/19261To Jacob M. Loeb, Insurance Exchange, Chicago, from Julius Kahn12/28/19261To August Gatzert, Standard Club, Chicago, from Henry X. Strauss12/28/19261Remarks Made at Dinner in Honor of Albert Kahn, Standard Club, Chicago12/28/19261To Kahn from Bayer Brothers, Detroit1/27/19271To C. C. Wilcox, Studebaker Corporation, South Bend, IN, from Albert Kahn4/29/19271To John French, Briggs Manufacturing Co., Detroit, from C. C. Wiolcox, Superintendent, Power Division, South Bend, IN4/29/19271To Kahn from Ralph Stone, President, Detroit Trust Company5/13/19271To Kahn from Ralph Stone, President, Detroit Trust Company5/19/19271To Kahn from Ralph Stone, President, Detroit Trust Company5/19/19271To Kahn from Ralph Stone, President, Detroit Trust Company5/28/19271To Kahn from [signature illegible], Hodenpyl, Hardy & Co., New York, NY7/28/19271To Kahn from C. W. Tippy, Vice President, Consumers Power Co., Jackson, MI8/2/19271To Arthur C. Bloomfield, Vice President, National Union Bank, Jackson, MI, from H. N. Davock12/1/19271To Messrs. Strawbridge & Clothier, Philadelphia, from Alvan Macauley, President, Packard Motor Car Company1/7/19281To Kahn from Moritz Kahn2/23/19281To Kahn from William L. Clements3/26/19281To Alfred P. Sloan, Jr., President, General Motors Corporation, New York, NY, from Albert Kahn4/3/19281To Kahn from Alfred P. Sloan, Jr., President, General Motors Corporation, New York, NY4/5/19281To Kahn from A. R. Glancy, President, Oakland Motor Car Company, Pontiac, MI4/27/19281To William J. Sampson, Jr., Vice President, Steel & Tubes, Inc., Cleveland, OH, from William J. Massey, Plant Engineer, Chevrolet Motor Company5/26/19281To Kahn from R. B. Palmer, District Manager, Consumers Power Company, Saginaw, MI7/11/19281To George W. Cook, Flint P. Smith Building, Flint, MI, from C. C. Hyatt7/26/19281To T. G. Stone, Spencer Kellogg & Sons, Inc., Buffalo, NY, from H. E. Beyster, Fisher Body Corporation8/14/19281To T. G. Stone, Spencer Kellogg & Sons, Inc., Buffalo, NY, from Edward G. Budd, Edward G. Budd Manufacturing Co., Philadelphia, PA8/17/19281To Louis Kahn from John. F. Phillips, Vice President, The Foreman Trust and Savings Bank, Chicago, IL8/20/19281To T. G. Stone, Spencer Kellogg & Sons, Inc., Buffalo, NY, from Gordon Lefebvre, Vice President, Oakland Motor Car Company, Pontiac, MI8/22/19281To T. G. Stone, Spencer Kellogg & Sons., Inc., Buffalo, NY, from A. Johnston, Ford Motor Company8/27/19281To Kahn from Alvan Macauley, Jr., Director, Guardian Detroit Bank9/24/19281To Kahn from McPherson Browning, President, Detroit and Security Trust Company11/8/19281To Kahn from Alvan Macauley, President, Packard Motor Car Company12/4/19281To Kahn from Benton Hanchett regarding The Bank of Saginaw12/31/19281To R. E. Daugherty, New York Central Railroad, New York, NY, from Alvan Macauley, President, Packard Motor Car Company1/24/19291To Kahn from L. R. Flook, The University of Chicago1/31/19291To Kahn from James Couzens, U. S. Senator2/15/19291To Kahn from William L. Clements3/14/19291To Kahn from James Couzens, U. S. Senator4/24/19291To Kahn from Dr. A. G. Studer, General Secretary, Detroit Young Men's Christian Associaion5/3/19291To Kahn from Lilian S. Holt, President, Woman's Hospital, Detroit6/10/19291To Kahn from Donald L. Brown, Pratt & Whitney Aircraft Company12/10/19291To George G. Booth from Ferry K. Heath, Assistant Secretary of the Treasury12/26/19291To Ferry K. Heath, Assistant Secretary, U. S. Treasury Department, from Roger M. Andrews, President, Detroit Times12/30/19291To Kahn from W. E. Anderman, Assistant Publisher, Detroit Times12/30/192911930-1970To Kahn from George D. Mason, Detroit1/28/19301To Mrs. Wright, Albert Kahn, Inc., from Arthur C. Bloomfield, Chairman, Union & Peoples National Bank, Jackson, MI4/3/19301To Kahn from Charles N. Liqued, Aeronautical Consultant, Silver Lake, CT7/2/19301To Andrew W. Mellon, Secretary of the Treasury, from Alvan Macauley, President, Packard Motor Car Company7/10/19301To Major Ferry K. Heath, Assistant U. S. Treasurer, from Charles M Greenway, Grand Rapids Press7/10/19301To Ferry K. Heath, Assistant Secretary of the Treasury, from Charles B. Van Dusen, S. S. Kresge Company7/12/19301To Kahn from Ralph Stone, Chairman of the Board, Detroit and Security Trust Company7/14/19301To Hon. Ferry K. Heath, Assistant Secretary of the Treasury, from Ralph Stone, Detroit and Security Trust Company7/14/19301To Kahn from Alvan T. Fuller, Boston Packard Showroom7/17/19301To Kahn from Ira L. Berk, President, Packard Motor Company of Pittsburgh7/17/19301To Hon. A. W. Mellon, Secretary of the Treasury, from Ira L. Berk, President, Packard Motor Company of Pittsburgh7/17/19301To Arthur Sixsmith, Secretary to A. W. Mellon, from Seth Hughes, Packard Motor Company of Pittsburgh7/17/19301To Alvan T. Fuller, Boston Packard Showroom, from Kahn7/21/19301To Ira L. Berk, Packard Motor Co. of Pittsburgh, from Kahn7/21/19301To Kahn from Henry B. Joy, Watch Hill, RI8/7/19301To Hon. Andrew W. Mellon, Secretary of the Treasury, from Henry B. Joy, President, Packard Motor Company8/7/19301To Henry B. Joy, Watch Hill, RI, from Kahn8/12/19301To Ferry K. Heath, Assistant Secretary of the Treasury, from Henry Ford8/14/19301To Kahn from E. G. Liebold, General Secretary to Henry Ford8/15/19301Kahn from [signature illegible], The New York Times9/3/19301To Kahn from Alvan Macauley9/23/19301To Kahn from Isabella MacKay, YWCA, Detroit11/24/19301To Hon. Ferry Heath, Assistant Secretary of the Treasury, from Henry B. Joy2/20/19311To C. M. Greenway, Grand Rapids Press, from Ferry Heath, Assistant Secretary of the Treasury2/24/19311To Hon. Ferry K. Heath, Assistant Secretary of the Treasury, from Phelps Newberry3/5/19311To Ferry Heath, Assistant Secretary of the Treasury, from Howard E. Coffin3/10/19311To Kahn from Roy D. Chapin3/18/19311To Roy D. Chapin, Hudson Motor Car Company, from Ferry K. Heath, Assistant Secretary, Treasury Department3/20/19311To Kahn from H. C. Anderson, Treasurer, H. J. Heinz Company, Pittsburgh, PA4/14/19311To W. E. Levis, President, Owens-Illinois Glass Company, Toledo, OH, from Acting Comptroller, Parke Davis & Company5/27/19311To M. Kahn from Hugh Dean, Manager, Chevrolet Motor Company Forge Plant, Detroit6/27/19311To Kahn from Alvan Macauley12/1/19311To Ferry Heath, Assistant Secretary of the Treasury, from Ralph Stone, Detroit Trust Company9/14/19321To Kahn from Jess Lilienfield5/28/19331To Kahn from James A. Grier, Resident Manager, General Motors Corporation "A Century of Progress" Exhibition, Chicago, IL6/16/19331To Kahn from MEC [signature illegible], General Manager, Chevrolet Motor Company, Detroit4/18/19351To Kahn from L. N. Upjohn, President, The Upjohn Company, Kalamazoo, MI12/10/19361To Kahn from Tom M. Girdler, Chairman, Republic Steel Corporation, Cleveland, OH12/15/19361To Kahn from Arvid Nelson, Factory Manager, Hamilton Standard Propellers, East Hartford, CT2/11/19371To Glenn Martin, Glenn-Martin Airplane Company, Baltimore, MD, from R. R. Rees, Plant Engineer, Packard Motor Car Company2/22/19371To Kahn from E. L. Patton, Director, Pittsburgh Glass Institute, New York, NY6/22/19371To Moritz Kahn from D. L. Brown, President, United Aircraft Corporation, East Hartford, CT6/24/19371To Kahn from J. A. Herlihy, Vice President, United Airlines, Chicago, IL10/6/19381To Philip O. Geier, Cincinnati Milling Machine Co., from JEG, The Ohio Steel Foundry Company6/23/19391To Kahn from W. A. Fink, Treasurer, Toledo Scale Company7/26/19391To Kahn from B. Moreell, Navy Department, Bureau of Yards and Docks, Wachington, DC1/23/19401To Kahn from Harry W. Benton, Plant Engineer, Pratt & Whitney, Hartford, CT1/27/19401To Kahn fromn B. Moreell, Chief, Bureau of Yards and Docks, Navy Department, Washington, DC5/9/19401To Kahn from G. R. Bennett, Vice President, Toledo Scale Company6/7/19401To Kahn from R. R. Rees, General Plant Engineer, Packard Motor Company12/24/19401To Kahn from E. E. Talmadge, Engineering Department, General Electric Realty Corporation, Schenectady, NY1/22/19411To Kahn from A. M. Stoner, Secretary, The Jacobs Manufaturing Company, Hartford, CT2/26/19411To Kahn from R. C. Wilson, New York, NY4/3/19411To Kahn from R. C. Wilson, New York, NY5/20/19411To Kahn from Leon W. Frost, General Secretary, Children's Aid Society, Detroit6/9/19411To Kahn from R. C. Wilson, New York, NY7/8/19411To Harrison Hoblitzelle, President, General Steel Castings Corporation, Eddystone, PA, from J. E. Galvin, The Ohio Steel Foundry Company, Lima, OH10/30/19411Resolution of Commendation for Glenn-Martin Bomber Plant, Fort Crook, Nebraska, from A. H. Clarke, President, Omaha Chamber of Commerce11/11/19411To Kahn from R. F. Gagg, Assistant to General Manager, Wright Aeronautical Corporation, Paterson, NJ11/25/19411To Kahn from E. W. Niles, Captain, Corps of Engineers, War Department, U. S. Engineer Office, Omaha, Nebraska12/22/19411To Kahn from M. B. Gordon, Vice-President, Wright Aeronautical Corporation, Paterson, NJ1/26/19421To Kahn from G. W. Vaughan, President, Curtiss-Wright Corporation, New York, NY3/10/19421To Kahn from H. H. Hoyt, Managing Director, Carter Products, Inc., New York, NY3/11/19421To Kahn from John F. Harbeson, Chairman of the Exhibition Board, The Philadelphia Art Alliance3/19/19421To Kahn from W. P. Graham, Chancellor, Syracuse University, Syracuse, NY4/13/19421To Kahn from E. E. Wilson, President, United Aircraft Corporation, East Hartford, CT6/10/19421To Kahn, upon his acceptance of AIA award, from R. H. Shreve, President, The American Institute of Architects, Washington, DC7/9/19421To George H. Miehls, Albert Kahn Associated Archiects & Engineers, Inc., from Karr Parker, President, McCarthy Bros. & Ford, Buffalo, NY7/21/19421To Kahn from Lieut. Don L. Clark, U. S. Naval Ordnance Plant, Forest Park, IL9/30/19421To Louis Kahn from L. J. Carney, Albert Kahn Associated Architects & Engineers10/10/19421To Kahn from K. T. Keller, President, Chrysler Corporation11/19/19421To Kahn from Lee H. Smith, Branch Manager, Fairchild Aircraft, Burlington, NC11/20/19421To Kahn from J. A. Coulter, Vice President, Colgate-Palmolive-Peet Company, Jersey City, NJ11/24/19421To Kahn from Thomas Drever, President, American Steel Foundries, Chicago, IL11/27/19421To Myron B. Gordon, Vice-President, Wright Aeronautical Corporation, from George T. Lucas, Division Engineer, Defense Plant Corporation12/16/19421To Louis Kahn from M. B. Gordon, Vice-President, Wright Aeronautical Corporation, Paterson, NJ12/22/19421To Louis Kahn from I. J. Gunther, Wright Aeronautical Corporation3/9/19431Commendation from B. Moreell, Chief, Bureau of Yards and Docks, The Navy War Construction Program3/29/19431To Albert Kahn, Inc. from B. Moreell, Chief, Bureau of Yards and Docks, Navy Department4/2/19431To Louis Kahn from E. Wilson, President, United Aricraft Corporation, East Hartford, CT4/9/19431Nomination of Albert Kahn Associated Archiects & Engineers, Inc. for Army-Navy "E" Award by S. G. Nordlinger, Major, Air Corps5/11/19431To Charles, R. Swinford, Albert Kahn Associated Archiects & Engineers, Inc., Chicago, from Foster R. Phillips, Supervising Engineer, Defense Plant Corporation, Chicago, IL11/5/19431To George H. Miehls, Albert Kahn Associated Architects & Engineers, Inc., from P. N. Jansen, General Manager, Curtiss-Wright Corporation, Buffalo, NY12/1/19431To Louis Kahn from A. Tamaro, Major, Corps of Engineers, War Department, U. S. Engineer Office, Detroit12/20/19431To Louis Kahn from F. E. Lamphere, Assistant Chief Engineer, Defense Plant Corporation, Washington, DC6/2/19441To Louis Kahn from Brehon Somervell, Commanding General, U. S. Army Service Forces, Washington, DC9/7/19451To George H. Miehls, Albert Kahn Associated Architects & Engineers, from F. E. Lamphere, Reconstruction Finance Corporation, Office of Defense Plants, Washington, DC9/18/19451To Mr. Saulson, Albert Kahn Associated Archiects & Engineers, from Frank N. Isbey, Chairman, U. S. Treasury Department, War Finance Committee for Michigan, Detroit12/13/19451To Sol King, President, Albert Kahn Associates, from Karel Yasko, U. S. General Services Administration, Washington, DC7/27/19701To Wally from Hawkins Ferry8/27/19701Excerpts from A History of Congregation Beth El, 1850-1912 and Congregation Beth El Year Books, 1913-1945, compiled by Jan Durecki, Rabbi Leo Franklin Archives, Temple Beth El, Southfield, MI20061

    (includes information about Kahn's membership)

    Albert Kahn's Professional Papers and Albert Kahn Associates' Files

    The Albert Kahn's Professional Papers and Albert Kahn Associates' Files series (18 linear feet, 1903-2014) includes nine subseries of professional materials related to Albert Kahn and his firm, Albert Kahn Associates, Inc.: the AIA 2003 Gold Medal Submission, Cost Ledgers, Employee Biographies, Mechanical Engineering Department Maps, Newspaper and Journal Articles, Publications, Scholarships and Contributions, Special Activities and Events, and Transcripts of Speeches.

    AIA 2003 Gold Medal Submission

    The AIA Gold Medal Submission subseries (0.2 linear feet, 2002-2003) includes printed and CD copies of the presentation that was made to the Board of Directors of the American Institute of Architects. It was prepared by Albert Kahn Associates, Inc. in its unsuccessful attempt to have Kahn receive this award posthumously in 2003. With photographs and text, the nomination materials effectively summarize the significance of Kahn's industrial, commercial, institutional and residential architecture in American history.

    Gold Medal Submission Booklets5/29/20021

    (Reproductions available on CD)

    Cost Ledgers

    The Cost Ledgers subseries (2 linear feet, 1907-1948) consists of cost books, cost cards, and other various materials regarding the monetary costs of many of the projects produced by Albert Kahn and his architectural firm, Albert Kahn Associates, Inc. One of the most valuable items in the collection is Albert Kahn's Personal Cost Ledger.

    Albert Kahn's Personal Cost Ledger1907-1913VaultLeather-covered, loose-leaf binder, 6x4 inches

    Restricted access: Photocopy of original available for use.

    Albert Kahn's Personal Cost Ledger, 1907-1913, is perhaps the most valuable piece in this collection. The leather-covered, 4x6-inch binder includes cost summaries, dimensions, descriptions of construction materials and structural sketches for Kahn's projects during this period, written and drawn in his own hand. The inscription, "Valuable," inside the front cover signifies that Kahn considered this an important notebook of building data. The meticulously written records give the researcher a sense of the master's hands-on involvement in all of his projects, as well as his strong interest in structural design and his adherence to financial budgets. The original notebook has been restored by Bentley Conservator James Craven and is being limited to restricted use. A photocopy of the ledger is available for research.

    Cost Books, Projects A-Z3 folders146Cost Cards, Projects A-F11 folders146Cost Cards, Projects F-Z15 folders147Miscellaneous Project Costs1919-1948147Wright Aeronautical Corporation, Cincinnati Plant Construction Costs1944-1945147
    Employee Biographies

    The Employee Biographies subseries (0.3 linear feet, 1957-1991) consists of biographical information for various employees of Albert Kahn Associates, Inc. from the 1950s to the 1990s. The materials in this subseries are arranged alphabetically.

    A-Z5 folders1957-1991148
    Mechanical Engineering Department Maps

    The Mechanical Engineering Department Maps subseries (156 maps in 4 folders and 1 drawer, 1905-1966) consists of topigraphical maps that were used by the Mechanical Engineering Department at Albert Kahn Associates, Inc. during the 20th century. The maps cover various regions within seven states: Michigan, Connecticut, Illinois, Ohio, Maryland, New York, and Virginia.

    Michigan, Connecticut, Illinois, Ohio, Maryland, New York, Virginia39 maps1905-19663710

    (1 of 4 folders)

    Michigan, Connecticut, Illinois, Ohio, Maryland, New York, Virginia39 maps1905-19663711

    (2 of 4 folders)

    Michigan, Connecticut, Illinois, Ohio, Maryland, New York, Virginia39 maps1905-19663712

    (3 of 4 folders)

    Michigan, Connecticut, Illinois, Ohio, Maryland, New York, Virginia39 maps1905-19663713

    (4 of 4 folders)

    Newspaper and Journal Articles1903-2014

    The Newspaper and Journal Articles subseries (10.75 linear feet, 1903-2014) consists of articles that offer an in-depth perspective on issues surrounding the design, construction technologies, budgets, politics and dedications of many of Kahn's buildings. Materials in this subseries are arranged chronologically and alphabetically by subject. Articles often include Kahn's own comments about the buildings, as well as construction and opening-day photographs which document the artistic detailing and technological advancements of his structures. Researchers interested in the work which Kahn's firm did in Russia between 1929 and 1932, during which time he designed 521 factories for Stalin's First Five-Year Industrial Plan, will find two leather binders of newspaper articles documenting this period in Box 13. A number of journal articles written by Kahn himself summarize his views on defense architecture and the business of industrial architecture. The researcher will note the proliferation of articles from 1939 to 1942, when such national journals asAero Digest, Engineering News-Record, Heating and Ventilating, American Builder and Architectural Forum covered in detail his design and construction of aircraft factories, tank arsenals and U. S. Navy air stations. Articles written after his death include analytical pieces by historians Grant Hildebrand (1970 and 1998), David Lewis (1975), Anatole Senkevich, Jr. (1996) and Janet Kreger (1998). Post-1942 materials, documenting the demolition, restoration and adaptive re-use of a number of Kahn's buildings up to the present time, have been included in the collection.

    Chronological1903-190871910-191471915-191971920-192371925-192871929719307193171932-19337193471935-19367193771938January-May7July-December71939January-June7July-December71940January-March7April-June7July-September7October-December71941January7February-June7July-September7October7November8December81942January-February8March8April-May8June2 folders8July8August-September8October-December81943-194981950-195781960-196981970-197181972-19738197481975-197681977-197981980-19838198481985-198681987-198981990-20088TopicalAdmission of Associates and Advancement to Senior Associate1970-1973153Admission of Associates and Advancement to Senior Associate2 folders1972-1979153Albert Kahn: Addresses, Articles, Mentions of & Quotes2 folders1939-19401532 folders19411532 folders19421532 folders1943-19691532 folders1970-19741532 folders1974-19781532 folders1979-19831532 folders1984-1990154Albert Kahn Associates, Inc., 75th Anniversary5 folders1970154Albert Kahn, Buildings: Residential, (1944-1991)4 folders154Albert Kahn Memorial Issue MSA Bulletin2 foldersMarch 30, 1943154Assembly Plant, Copy of Nomination to National Register, Edgewater, NJ2 folders19701982-1983154Associates, Appointments & Promotions, (1971-1980)2 folders154Avon Products Inc.1971-1985155Awards3 folders1969-19771551978-1980155Biographical Material, Former AssociatesVincent C. Adrente, (1968-1989)155Thomas E. Alderton, (1971)155Aaro J. Annala, (1961-1983)155Max R. Ashby, (1961)155Nathan Balter, (1961-1965)155Arthur F. Bassett Jr., (1961-1982)155Robert H. Baum, (1969-1978)155Arthur I. Bergey, (1961)155Frank A. Bergey, (1960-1990)155Deborah S. Bleger, (1988)155Louis J. Blume, (1961-1968)155Roger W. Boe, (1980-1987)155Frederick K. Boomhower, (1955)155Leo B. Bratt, (1969-1980)155Lyster T. Carney, (1961-1963)155Raymond M. Doering, (1961-1968)155Walter A. Drath, (1969)155Frederic A. Fairbrother, (1942-1956)155David Fettes, (1944)155Paul G. Fleck1961-1983155J. N. French, (1951-1961)155N. W. Fuhrer1961155Robert J. Gibb1976-1982155Harold N. Hammer1961155Joseph R. Henninger1961155William A. Hogan1970155Hubert Hollier1969-1976155Carl F. Kemp1976-1978155Nelson A. Kieb1961-1968155Harry S. King1974-1976155Walter M. Kuhn1961155Cass M. Labunski1961155Earl G. Langford1969-1979155John LaPorte1980155Robert E. Linton1961-1981155Bernard T. Lourim1961155Maurice Lowell1961-1988155John A. McSorley1944155Louis Menk1969-1987155Gustav Muth1961-1986155Palanisamy Nachimuthu1982-1985155Phillip A. Nicholas1976155Martin Papesh1978-1983155David W. Perkins Jr.1985155Seymour Remen1976-1978155Richard Ro1977-1978155James Y. Rust1967-1976155Saul Saulson1959-1967155Harvey Schneider1972-1980155Lester J. Sever1961-1990155Jozef Skorupka1969-1976155E. Surrell1961155L. B. Tillson1961155Virgil C. Wagner1961-1964155Scott A. Wilson1983155Robert I. Wine1969155Roger Y. Yamamoto1982-1985155Herbert E. Ziel1961155Biographical Material, Officers and DirectorsCharles J. Allen1961-1990155William L. Demiene1974-1990155Robert L. Eck1969-1991155C. Dino Gavras1968-1988155Thomas C. Halliday1961-1991155Gordon V. R. Holness1969-1991155Robert J. Mauck1971-1991155Edgar E. Parks1962-1993155Henry L. Ritter1976-1990155Charles T. Robinson1970-1989155Stephen Q. Whitney1982-1989155Children's Hospital, Job No. 21512 folders1961-1986155ElectionsLouis Kahn, George Miehls1943-19591551970-19741551970-19741561975-1990156ENR Top 500 Reports1967-19761561977-1988156Firm Award4 folders1971156Firm AwardJune 21, 1971AIA Architectural Firm Award1971156Acceptance Remarks156Announcements156Announcement Card (Clients)156Articles156Clippings156Correspondence (AIA Board of Directors)156Correspondence (AIA Honor Awards Jury)156Correspondence (AIA Honor Awards, Program Director AIA Assistant PR Director Exec. Dir. Detroit Chapter AIA & MSA)156Correspondence (Arch. Firm Award Congratulatory Correspondence)156Correspondence (Misc.)156Correspondence (Misc. Supporters of AKA Arch. Firm Award Nomination)156Dinner156Exhibit156Lists156Miscellaneous156Fisher Building2 folders1929-19771561978-1988156Former Associates, A. Zweig, (1956-1989)156Former Employees1964-19771561 folder1964-19841562 folders1964-1984157Phillip A. Nicholas1976-1979157General1971-1973157General Work Scrapbook1929-193813Haro, John1972-1990157JobsA-E2 folders1970-1988157F2 folders1969-1990157G-M2 folders1971-1987157N-T1971-1985157U-Z2 folders1964-1988157Job List2 folders1949-1951157Kahn FamilyMrs. Albert Kahn1938-1958157Dr. Edgar Kahn1985-1988157Felix Kahn1958157Julius Kahn1942157Louis Kahn1943-1982157Lydia Kahn Winston Malbin1938-1989157Moritz Kahn1933-19791571974-1986157Langley Field1949157Clayton Lewis, "Architecture and Artifacts, The Quarto, No. 35., Ann Arbor: Clements Library, University of Michigan, (Spring-Summer 2011), Pp. 3-5.12Chris Meister, "Albert Kahn's Partners in Industrial Architecture,"Journal of the Society of Architectural Historians, Vol. 72, No. 1, (2013)12Sonia Melnikova-Raich, "The Soviet Problem with Two 'Unknowns': How an American Architect and a Soviet Negotiator Jump-Started the Industrialization of Russia, Part I: Albert Kahn,"The Journal of the Society for Industrial Archeology, Vol. 36, No. 2, (2013), Pp. 57-80.12Sonia Melnikova-Raich, "The Soviet Problem with Two 'Unknowns': How an American Architect and a Soviet Negotiator Jump-Started the Industrialization of Russia, Part II: Saul Bron," The Journal of the Society for Industrial Archeology, Vol. 37, Nos. 1 & 2, (2014), Pp. 5-28.12Sonia Melnikova-Raich, "The Role of an American Architect and Soviet Trade Representative in the Industrialization of the USSR," American Yearbook 2014, Institute of World History, Academy of Sciences of Russian Ferderation, Moscow: Nauka (2015), Pp. 196-213 (in Russian).12Mention of Albert Kahn Associates, Inc.1943-19691571943-19691582 folders1945-19711583 folders1970-19781582 folders1979-1990158Michigan Manufacturer & Financial Record Publicity, (1943-1978)2 folders158National Bank of Detroit2 folders1955-19591582 folders1959-19601582 folders1960-1968158NecrologyAssociates1944-1988158Foundersundated158Non-Associates1965-19901582007-2013158Nissan Motor Publicity, Groundbreaking Publicity2 folders1980-1985158Officers and DirectorsWilliam L. Demiene1989-1990158Robert L. Eck1977-1991158T. C. Halliday1965-1984158Gordon V. R. Holness1977-1991159Robert J. Mauck, P. E.1983-1988159Edgar E. Parks1971-1991159Samuel D. Popkin1966-1991159Henry L. Ritter1987159Charles T. Robinson1989159Stephen Q. Whitney1990159Organization Chart2 folders1949-1951159Personnel2 folders1949-1951159Report in Albert Kahn Associates, Inc., Architects and Engineers2 folders1949-1951159Restoration and Re-opening of Hill Auditorium2002-20058RetireesAlfred A. Agli1970-1981159Raymond P. Antioch1969-1989159Heinz L. Bensel1973-1985159Gilbert R. Boersma1969-1986159Lynn L. Bunn Jr.1983-1985159John K. Burch1961-1976159Thomas E. Burke1961-1988159Cadwell/Carlson/Clos1982-1984159Harold G. Coll1969-1981159Harold C. Cunningham1969-1984159Thomas J. De Gregory1973-1976159Franklin L. Einberger1961-1969159Hyman Gittleman1969-1972159Fred B. Guenot1961-1968159Donald R. Gwin1956-1974159Donald C. Hardie1963-1980159John Haro1961-1990159Ralph Holzhauer1982-1987159Richard C. Hudson1961-1976159Stanley W. James1980159William L. Kahn1961-1981159Fritz Kramrisch1949-1980159Robert H. Liles1972-1983159Patrick J. Lindsay1974-1986159Robert P. Maggid Admitted 12-20-731974-1976159Sheldon Marston1961-1965159William H. May Admitted 2-12-691969-1981159John R. McAdoo1976-1985159John E. McCaughey1961-1968159Joseph J. McDonald1957-1976159Joachim Nachbar1961-1987159George Ross Olding Admitted 2-12-691969-1978159R. M. Van Petten1961-1963159Jay S. Pettitt Jr.1961-1981159Samuel D. Popkin1961-1990159Daniel H. Shahan1961-1969159Claiborne F. Smith Admitted 2-12-691976-1982159Norton J. Taylor1961-1975159Harry D. Unwin1961-1970159Michael W. Waskul Admitted 2-12-691969-1974159Geoffrey S. Whittaker1961-1965159Robert A. Zander1968-1971159Alfred Zweig1961-1989159Russian Work Scrapbooks1929-1978Volume I-1929-193213Volume II-1932-197813Schematic Water Flow Diagram2 folders1949-1951159Shahan, Daniel2 folders1953-1987159Sol King: Mentions of and Quotes8 folders1951-1983159Technical Articles2 folders1949-1951159
    Publications1921-2007

    The Publications subseries (2.4 linear feet, 1921-2007) includes promotional literature produced by the firm, Albert Kahn Associates, Inc., as well as, among others, three volumes which offer perspective on Kahn's career as well as photographs of the master's most important projects. Albert Kahn, Architect, Architectural Catalog, published in October 1921, is a 90-page book containing full-page photographs of the General Motors Building, Detroit Athletic Club, Hill Auditorium and many other buildings, as well as trade advertisements which document the construction technologies and materials used by Kahn at that time. The editors of Architectural Forum chose to dedicate the entire issue of August 1938 to Albert Kahn's accomplishments, the organization of his firm and photographs of numerous manufacturing plants which had advanced his reputation as America's greatest industrial architect. The Michigan Society of Architects' Weekly Bulletin, Albert Kahn Memorial Issue of March 30, 1943 is an important journal in bringing together many contemporary tributes to Kahn, written by friends and colleagues. The high regard in which he was held at the time of his death, even before historians could offer perspective on his contributions, may be of particular interest to researchers.

    Albert Kahn, Architect, Architectural CatalogOctober 1921Cloth-bound, 90-page book, 13-1/2x10-1/4 inches, published by Architectural Catalog Co., New York9

    (Includes trade advertisements and photographs of General Motors Building, Kresge Office Building, Detroit Athletic Club, Hill Auditorium, Packard Motor Car Company Main Factory, John S. Newberry Residence and other buildings)

    "Albert Kahn Commissions with Pewabic Tile," compiled by Dr. Thomas W. Brunk, unpublished1/7/20079Architectural ForumAugust 19389

    (Issue devoted to Albert Kahn. Articles include "Albert Kahn," "Organization of Albert Kahn, Inc." and "Portfolio of Industrial Buildings, Albert Kahn, Inc.," 87-142)

    City of Windsor's Heritage Planner. Walkerville, Ontario: A Brief Tour of Walkerville, an Edwardian Company Town, Now Part of Windsor, Ontario . Windsor: Windsor Architectural Conservation Advisory Committee19979

    (includes descriptions of Kahn's buildings in Walkerville)

    Detroit Athletic Club . Detroit: Detroit Athletic Clubundated12Langley, 1916-1996. Langley AFB, Virginia: Office of History, Air Combat Com199612Promotional LiteratureRecent Industrial Plants -- Brochure1958148Institutional Buildings -- Brochure1959148Michigan Society of Architects'1959148Power Plants -- Brochure1960148Henry Ford Hospital Parking Structure1960148Principals and Associates1961148Electrical Installations -- Brochure1961148Principals and Associates5 folders1962-1966148Albert Kahn Associates, Architects and Engineers -- Brochure1965148Principals and Associates1967148Industrial Buildings, Reprint1967148Impact of Human Factors on Industrial Architecture, Reprint1968148Human Considerations and Priorities -- The Design Challenge of the Highly Automated and Mechanized Industrial Plant1969148Principals and Associates and Project 75 -- Brochure1970148Firm Award -- Brochure1971148Institutional Buildings -- Brochure1972148Newspaper Plant -- Brochure1972148Principals and Associates1974148Scarth, W. M. "Description of Bas Relief in Entablature over the Entrance on the South Elevation of the General Motors Building Annex." Unpublished1/26/196512Weekly Bulletin, Michigan Society of Architects, Albert Kahn Memorial IssueMarch 30, 19439

    (Includes 240 pages of tributes, articles and photographs)

    Your Company -- Employee Brochure1976148
    Scholarships and Contributions

    The Scholarships and Contributions subseries (0.3 linear feet, 1942-1978) consists of materials related to various monetary gifts and scholarships produced by Albert Kahn and his firm, Albert Kahn Associates, Inc., and awarded to deserving individuals and organizations at various universities and institutions.

    Scholarships -- Albert Kahn, Founder1942-1957148Scholarships, University of Michigan -- Albert Kahn Associates1943-1975148Contributions and Gifts1946-1978148Scholarships, Awards -- Albert Kahn Associates1959-1976148
    Special Activities and Events

    The Special Activities and Events subseries (0.8 linear feet, 1947-1979) consists of materials related to Project 75, which was the 75th anniversary of Albert Kahn Associates, Inc., celebrated in 1970. Additional materials include items from other miscellaneous special activities and events in the 1960s and 1970s, as well as materials related to an open house event that was held by the firm in 1977, and black-and-white photographs of the Albert Kahn Bowling League annual banquet in 1947 and 1948.

    Special Activities and Events -- Miscellaneous1961-1979148Project 75Correspondence1970148Employee Publication1970148General AKA's 75th Anniversary1970148IOC to Associates and their Suggestions1970148News Releases1970148Press Conference1970148Television and Radio1970148Thanksgiving Letter1976148Open House -- Invitations1977148Albert Kahn Bowling League Annual Banquet, Hotel Fort Shelby, Detroit, Michigan3 photographs1947-19483714Painting of Living Room, Albert Kahn Architect, W & J Sloane Decorators, Robert Kuhn Esquire, Detroit, Michigan1 drawingsundated3715
    Transcripts of Speeches1918-1942

    The Transcripts of Speeches subseries (0.25 linear feet, 1918-1942) contains Kahn's typed presentations with annotations and corrections by his own hand. The reader can imagine him reading over his transcripts before a lecture with a discerning eye to punctuation and content. The topics of Kahn's talks in the early years range from "Reinforced Concrete," the innovative structural material which he used in his early automobile factories for Henry Joy and Henry Ford, to tributes to George D. Mason and George G. Booth. During the 1930s, his speeches run the gamut from the challenges of industrial architecture to his love of architectural and art history. His collection of Impressionist art was the focus of his Torch Club talk at his own home on 5/14/1935. Kahn's well-publicized speech entitled "Building Program for National Defense" to the Adcraft Club on 11/28/1941 enriches our understanding of his major contribution to America's "Arsenal of Democracy." Taken as a whole, the transcripts capture his immense genius, sense of humor, humility and intellect.

    1918-1929"Reinforced Concrete"11/18/19181"Post-War Reconstruction," Peace and Prosperity Dinner, Detroit Real Estate Board1/22/19191"What Will the Detroit of the Future Be Like," Vortex Club at Fellowcraft Club9/28/19211"Tribute to George D. Mason," Masonic Temple dedication dinner honoring Mason, given by Michigan Society of Architects, c19231"Reinforced Concrete Architecture These Past Twenty Years," 20th Anniversary of the American Concrete Institute19241"Industrial and Commercial Buildings: Their Probable Life, Obsolescence and Depreciation"11/27/19251"Tribute to George Booth," upon his receiving honorary membership into The American Institute of Architects19261"What Are the Characteristics of Good Architecture?," Teachers' Convention10/28/19271"The Story of Architecture and Its Present Day Status," Tuesday Musical11/15/19271"Architecture and Business," Women's Advertising Club12/8/19271"Improvements in American Architecture," Business Women's Club, Hotel Statler19281"The Architecture of Garages," Society of Automotive Engineers, Toronto11/15/192911930-1935"Putting Architecture on a Business Basis," Cleveland Engineering Society12/16/19301"Architectural Trend," Maryland Academy of Science4/15/19311"What Does Archiecture Demand of a Young Man Who Hopes for Success in It?," Interview for "Life Saver" radio program12/19311"The Planning of Children's Hospitals," American Hospital Association9/13/19321"Problems of Architecture Today," Torch Club1/16/19331"Plans for the Ford Exposition at Chicago Fair," Illinois Society of Architects, Chicago3/20/19341"Eugene Manet and the French Impressionists," Torch Club Meeting at Kahn's home5/14/193511936-1939"Slum Clearance," WWJ radio speech12/6/19361"Thirty Minutes with American Architecture and Architects," Adcraft Club1/22/19371"Progress in Industrial Building Design"2/22/19381"Industrial Architecture," Torch Club Building Industry Luncheon and Builders and Trades Exchange12/21/19381"The Modern Administration Building," National Office Management Association3/14/19391"Industrial Architecture," Torch Club5/25/19391"Industrial Architeture," Detroit Institute of Arts10/24/19391"How Building Design Affects Production Efficiency," speech by A. Kahn, read by Louis Kahn, American Management Association11/15/193911940-1942"Industrial Architecture-An Opportunity and Challenge," New York State Architects, Rochester9/27/19401"Industrial Architecture-Its Problems and Obligations," Boston Society of Architects11/12/19401"Architecture in the National Defense Program," Society of Automotive Engineers, Detroit4/28/19411"Building Program for National Defense," Adcraft Club11/28/19411"The Businessman-Architect of Today: Challenges and Opportunities," Speech of acceptance of American Institute of Architects Medal6/24/19421"F.O.B. Detroit," WJR radio speech7/18/19421"Challenges for the Industrial Architect"undated1"Problems in City Development," Wednesday Night Clubundated
    Construction Photographs1902-1982

    The Construction Photographs series (90 linear feet, 1902-1982) contains photographs that document the construction process of many of Kahn's buildings, representing the range of industrial, commercial, residential and institutional projects which he and his firm built in Detroit, Ann Arbor and across the nation. The evolution of construction technology through the first half of the twentieth century is captured in these dynamic, black-and-white prints. Researchers interested in the innovative structure of his industrial designs will find the construction photographs of the Detroit News Building, Glenn L. Martin Company Factory Buildings (Baltimore), Chrysler Half-Ton Truck Plant (Warren, MI) and Ford Motor Company Willow Run Bomber Plant (Ypsilanti, MI) of particular value. Other iconic buildings represented in this subseries include the General Motors (Durant) Building and Ford Motor Company Engineering Laboratory in Detroit and the University of Michigan Natural Science Building and Hospital in Ann Arbor. The photographs in this series are arranged chronologically by job number.

    Job No. 89-476Temple Beth El, Detroit, Michigan (1902) Jobs No. 89 and 136-AInterior Hall1 prints (black-and-white; 8x10-inch), 1 copy printsundated1Hiram Walker and Sons, Addition to Office Building, Walkerville, Ontario, Canada, (1920), Job No. 150-L14Packard Motor Car Company, Heat Treat Building No. 65, Detroit, MI, (1917), Job No. 201-CH14Packard Motor Car Company, Foundry Addition Building No. 53, Detroit, MI, (1918), Job No. 201-CO14Packard Motor Car Company, Warehouse Building No. 21, Detroit, MI, (1927), Job No. 201-GF14Packard Motor Car Company, Metal Stamping Building No. 92, Detroit, MI, (1928), Job No. 201-GK14Packard Motor Car Company, Five Bay Extension to Foundry Building No. 54, Detroit, MI, (1928), Job No. 201-GT14Packard Motor Car Company, 2nd and 3rd Floor Addition to Aircraft Engineering Building, Detroit, MI, (1929), Job No. 201-GY14Packard Motor Car Company, 4th and 5th Floor Addition to Building No. 21, Detroit, MI, (1928-1929), Job No. 201-GZ14Packard Motor Car Company, Four Story Addition to Building No. 92, Detroit, MI, (1929), Job No. 201-HD14Packard Motor Car Company, Aviation Division Building No. 84, Detroit, MI, (1940-1941), Job No. 201-LQ14Packard Motor Car Company Plant and Buildings, Detroit, Philadelphia, Long Island, Chicago, New York and Boston (1911-1917)Photographs of Buildings under Construction and Completed by Manning Bros., Commercial Photographer (Detroit), W. D. Benham Co., Photographers (Detroit), Underwood & Underwood (New York), Edwin Levick (New York), N. Lazarnick (New York), F. E. Parshley Photo (Brooklyn), Howe & Arthur, Photographers (Chicago), and unknown photographers78 prints (black-and-white; most undated; 3-1/4x7-1/2 to 7-1/2x16-inch)1911-191712Burroughs Adding Machine Company, Addition to Boiler House, Detroit, MI, (1948), Job No. 300-AO14Stambaugh, John, Office Building, Youngstown, OH, (1913), Job No. 32714William L. Clements Residence, Stable Building, Bay City, Michigan (1908) Job No. 362Stable Building in 2005 by John Lore4 prints (color; 4x6-inch)5/200510Ford Motor Company, Highland Park Plant Building "A," Section "A-A" (1917) Job No. 375-BBConstruction of Building "A," Section "A-A" by Jeffrey White Studio, Commercial Photographers18 prints (black-and-white; 7-1/2x9-1/2-inch)8/21/1917-10/16/19174Ford Motor Company, Highland Park Plant Extension Buildings 29 & 30, Highland Park, Michigan (1916) Job No. 375 WConstruction of Building by Charles R. Messinger, Commercial Photographer80 prints (black and white; 7-1/2x9-1/2-inch)3/19/1916-12/10/1916140 prints3/19/1916-6/11/19164

    (14 prints by Manning Bros., Commercial Photographers)

    240 prints6/18/1916-12/10/19164
    Ford Motor Company, Highland Park Plant, Extension to Building "A" (1916) Job No. 375-YConstruction of Extension to Building "A" by Charles R. Messinger, Commercial Photographer, 8/5/1916-11/14/191617 prints (black-and-white; 7-1/2x9-1/2-inch)4Packard Motor Car Company, Eight Story Service Station, Long Island City, NY, (1916-1917), Job No. 3972 folders14Alvan T. Fuller Service and Sales Buildings Additions (Packard), Commonwealth Avenue and Malvern Street, Boston, MA (1916-1917 & 1928-1929) Job Nos. 413-A & 413-FConstruction of Addition to Service Building (Job No. 413-A) by unknown photographer32 prints (black-and-white; 7-3/4x9-3/4-inch)7/28/1916-5/25/191710Construction of Addition to Sales Building (Job No. 413-F) by George E. Lawrence Co., Commercial Photographers, Boston36 prints (black-and-white; 7x9-1/2-inch)10/27/1928-8/27/192910Mahoning National Bank, Addition to Building, Youngstown, OH, (1924), Job No. 442-B2 folders14Ford Motor Company, Service Building, Omaha, NE, (1915-1916), Job No. 4443 folders14Hudson Motor Car Company Plant Additions, Detroit, Michigan (1925-1929) Job Nos. 450-BE, BP, CK, CL, CN, CO, CP & CSConstruction of Pumping Station and Oil Tanks (Job No. 450-BE) by unknown photographer6 prints (black-and-white; 3-1/2x4-1/2-inch)undated10Construction of Plant Addition (Job No. 450-BP) by unknown photographer4 prints (black-and-white; 8x10-inch)5/2/192510Unfinished Body Storage Building (Job No. 450-CK) by Manning Bros.6 prints (black-and-white; 7-1/4x9-1/4-inch)12/19/1927-1/23/192810Construction of Addition to Sheet Metal Shop (Job No. 450-CL) by Kalec & Forster, 1/6/1928-3/16/192819 prints (black-and-white; 7-3/4x9-1/2-inch)10Construction of Plant Addition (Job No. 450-CN) by Kalec & Forster11 prints (black-and-white; 7-3/4x9-1/2-inch)10/25/1928-1/8/192910Construction of Hospital (Job No. 450-CO) by Spencer & Wyckoff, 1/12/1929-5/7/19297 prints (black-and-white; 7-1/2x9-1/2-inch)10Construction of Garage and Showroom (Job No. 450-CP) by Manning Bros., 1/12/1929-5/6/192919 prints (black-and-white; 7-1/2x9-1/2-inch)10Construction of Addition to Building 101 (Job No. 450-CS) by O. R. Forster Co., Commercial Photographers6 prints (black-and-white; 7-3/4x9-1/2-inch)5/16/1929-6/14/192910Brown Lipe Company, Factory Building, Syracuse, NY, (1910), Job No. 45214Lozier Motor Company, Motor Products Company, Detroit, MI, (1910), Job No. 4572 folders14Ford Service Building ("Boulevard Building"), Grand Boulevard and Woodward Avenue, Detroit (1910) Job No. 462Construction of Building by unknown photographer4 prints (black-and-white; 7-1/2x9-1/2-inch)undated9Dollar Savings and Trust Company, Addition and Alterations, Wheeling, WV, (1929-1930), Job No. 464-C14Industrial Works Building (Industrial Brownhoist), Bay City, Michigan (1907) Job No. 467Renovated Building in 2005 by John Lore7 prints (color; 4x6-inch)5/200510Industrial Works, Machine Shop, Bay City, MI, (1914), Job No. 467-B14Packard Motor Car Company, Service Building, Philadelphia, PA, (1916-1917), Job No. 476-A2 folders14
    Job No. 501-988Clayton Store, Alterations, Detroit, MI, (1915), Job No. 50114Dearborn State Bank, Alterations and Addition, Dearborn, MI, (1929-1930), Job No. 502-D2 folders14Bates Manufacturing Company, Weave Mill, Lewiston, ME, (1912-1913), Job No. 5533 folders14Canadian Consolidated Rubber Company, Berlin, Ontario, Canada, (1912-1913), Job No. 56214Shaw-Walker Company, Addition to Factory Building, Muskegon, MI, (1926), Job No. 575-H14Shaw-Walker Company, Addition to Manufacturing Building, Muskegon, MI, (1949), Job No. 575-R14Ford Motor Company, Service Building, Philadelphia, PA, (1913-1914), Job No. 60114Science (Natural Science) Building, University of Michigan, Ann Arbor (1914-1915) Job No. 605Construction of Building, 5/19/1914-4/5/191522 prints (black-and-white; 7-1/2x9-1/2-inch), 1 prints (black-and-white; 7-1/2x19-1/2-inch)1Details of Rejected Stone4 prints (black-and-white; 3-3/4x4-3/4-inch)undated1First National Bank, Bay City, Michigan (1919) Job No. 610Building in 2005 by John Lore4 prints (color; 4x6-inch)5/200510Frederick Stearns and Company, Power House, Detroit, MI, (1926), Job No. 622-G15Charles J. Butler Residence, 1507 Iroquois Avenue, Detroit, Michigan (1914) Job No. 627Main and Side Facades by unknown photographer, ca1 prints (black-and-white; 6-1/2x9-1/2-inch)19159Garden Court, Nine Story Apartment House, Detroit, MI, (1914-1915), Job No. 62915Detroit Trust Company, Detroit, Michigan (1914-1915 & 1926-1927) Job Nos. 637 & 637-FConstruction of Original Building by Manning Bros., Commercial Photographers1 prints (black-and-white; 7-1/2x9-1/2-inch)19151Construction of Building Addition (Job No. 637-F) by Manning Bros., Commercial Photographers19 prints (black-and-white; 7-1/2x9-1/2-inch)5/6/1926-6/5/19271Detroit News (Evening News) Building, Detroit, Michigan (1915-1916 & 1920) Job Nos. 641, 641-BN, 641-BM & 641-HRConstruction of Building (Job No. 641) by Charles R. Messinger, Commercial Photographer47 prints (black-and-white; 7-1/2x9-1/2-inch)11/11/1915-11/22/19161Façade and Interior Views of New Presses, Switchboard and Substation (Job No. 641-BN & BM) by MacGregor and Company, Commercial Photography13 prints (black-and-white; 8x10-inch)undated1Construction of Building Addition (Job No. 641-HR) by Manning Bros., Commercial Photographers23 prints (black-and-white; 7-1/2x9-1/2-inch)5/14/1920-11/22/19201Ford Motor Company, Assembly Building, Louisville, KY, (1915), Job No. 6532 folders15Mishawaka Woolen Manufacturing Company Building, Mishawaka, IN, (1915), Job No. 66815Ford Motor Company, Service Building, Washington, DC, (1915-1916), Job No. 671-R2 folders15Ford Motor Company Building, Kansas City, MO, (1915-1916), Job No. 6802 folders15Ford Motor Company, Assembling Plant, Milwaukee, WI, (1915-1916), Job No. 6832 folders15Ford Motor Company, Assembly Building, Brooklyn, NY, (1916-1917), Job No. 6872 folders15Ford Motor Company, Addition to Assembly Building, Oklahoma City, OK, (1924), Job No. 691-A3 folders15Packard Motor Car Company, Service Building, Pittsburgh, PA, (1916-1917), Job No. 6962 folders15Packard Motor Car Company, One Story Addition and Alterations to Building, Pittsburgh, PA, (1928), Job No. 696-A15Ford Motor Company, Service Building, St. Louis, MO, (1915-1916), Job No. 7012 folders15Ford Motor Company, Inspection of Floor Loads in Service Building, St. Louis, MO, (1915), Job No. 701-A15Crowley Milner Company, Department Store, Detroit, MI, (1916), Job No. 70815Ford Motor Company, Service Building, Scranton, PA, (1916), Job No. 710-B15Ford Motor Company, Service Building Addition, San Francisco, CA, (1916), Job No. 71515Saint Francis Home for Orphan Boys, New Dormitory Unit, Detroit, MI, (1965), Job No. 729-C15Ford Motor Company, Service Building Addition, Denver, CO, (1916), Job No. 71616Ford Motor Company, Service Building Addition, Columbus, OH, (1916), Job No. 71716National Bank of Commerce Building, Detroit, MI, (1916-1917), Job No. 72516Ford Motor Company, Assembly Building Annex, Chicago, IL, (1916), Job No. 7272 folders16Saint Francis Home for Orphan Boys, Detroit, MI, (1916-1917), Job No. 7292 folders16Michigan Stamping Company, Factory Building, Detroit, MI, (1916), Job No. 73316Briggs Manufacturing Company, Lumber Story Building, Detroit, MI, (1928), Job No. 733-AK16Briggs Manufacturing Company, Sixth Floor Addition to Manufacturing Building, Detroit, MI, (1928), Job No. 733-AN16Briggs Manufacturing Company, Factory Building, Detroit, MI, (1927), Job No. 733-X16Briggs Manufacturing Company, Power House, Detroit, MI, (1927), Job No. 733-Y16Briggs Manufacturing Company, Mill Building, Detroit, MI, (1927), Job No. 733-Z16Packard Motor Car Company, Service Building, Hartford, CT, (1916), Job No. 73516George Garage, Detroit, MI, (1926-1927), Job No. 742-C16Ford Motor Company, Service Building, Chicago, IL, (1916-1917), Job No. 74316Ford Motor Company, Service Building, Yonkers, NY, (1916-1917), Job No. 74416Ford Motor Company, Service Building, New York City, NY, (1917), Job No. 74516McMillan Estate, Garage, Detroit, MI, (1916), Job No. 76216Krolik Building, Jefferson and Randolph Streets, Detroit (1917) Job No. 766Construction of Building by unknown photographer, with exception of one photograph by Manning Brothers, Commercial Photographers12 prints (black-and-white; 7-1/2x9-1/2-inch)6/21/1917-12/6/19179Krolik & Co. Warehouse Building, Detroit (1917) Job No. 766Construction of Building by unknown photographer, except for one by A. R. Wilson and two by Manning Bros., Commercial Photographers16 prints (black-and-white; 7-1/2x9-1/2-inch)6/21/1917-11/13/191710Vinton Building, Woodward and Congress Streets, Detroit (1917) Job No. 770Construction of Building by Manning Brothers, Commercial Photographers25 prints (black-and-white; 7-1/2x9-1/2-inch)1/10/1917-11/3/19179Ford Motor Company, Service Building, Des Moines, IA, (1917-1918), Job No. 7725 folders16Detroit Savings Bank, Remodeling Main Branch, Detroit, MI, (1920), Job No. 791-C16Ford Motor Company Building, 54th & Broadway, New York, New York (1917-1918) Job No. 807Construction of Building by Camera Craft Photographers17 prints (black-and-white; 8x10-inch), 19 copy prints (black-and-white; 7-1/2x9-1/2-inch)10/26/1917-12/19/19184Modern Sales and Service, B. Siegel Building, Detroit, MI, (1918), Job No. 81716Stroh, Julius, Store Building, Detroit, MI, (1918-1919), Job No. 84616Ford Motor Company Eagle Shipbuilding Plant, River Rouge, Michigan (c, & 1926) Job No. 8471918Trucson Steel Building under Construction by unknown photographer1 prints (black-and-white; 7-1/2x9-1/2-inch)undated4Eagle Avenue Grade Separation by unknown photographer2 prints (black-and-white; 7-1/2x9-1/2-inch)5/24/19264Ford Motor Company, By-Products Plant Coke Ovens, River Rouge, MI, (1924), Job No. 847-AD4 folders17Ford Motor Company, Motors Building and Extension to Foundry, River Rouge, MI, (1923-1924), Job No. 847-AG2 folders17Ford Motor Company, Pressed Steel Building, River Rouge, MI, (1924), Job No. 847-AH2 folders17Ford Motor Company, Spring and Upset Building, River Rouge, MI, (1924), Job No. 847-AL17Ford Motor Company, Substation No. 16 Adjoining Pressed Steel Building, River Rouge, MI, (1925), Job No. 847-AO17Ford Motor Company, Oil Cooling Plants, River Rouge, MI, (1924), Job Nos. 847-AS, AT, AY17Ford Motor Company, Open Hearth Building, River Rouge, MI, (1925-1926), Job No. 847-AZ2 folders17Ford Motor Company, Open Hearth Building Piling Photographs, River Rouge, MI, (1925-1926), Job No. 847-AZ2 folders17Ford Motor Company, Oil and Tar Storage, River Rouge, MI, (1925-1926), Job No. 847-BR17Ford Motor Company, Motors Building Addition, River Rouge, MI, (1925-1926), Job No. 847-CD17Ford Motor Company, Stripper Building, River Rouge, MI, (1925-1926), Job No. 847-CN17Ford Motor Company, Water Tank Tower Foundations, River Rouge, MI, (1926), Job No. 847-CT17Ford Motor Company, Coke Ovens, River Rouge, MI, (1926), Job No. 847-CZ2 folders17Ford Motor Company, Service Tunnel, River Rouge, MI, (1936), Job No. 847-DP17Ford Motor Company, Open Hearth Slag and Skull Cracker Building, River Rouge, MI, (1948), Job No. 847-EF17Ford Motor Company, Slag Crusher Building, River Rouge, MI, (1923), Job No. 847-SA17Ford Motor Company, Twelve Inch Spring Mill, River Rouge, MI, (1926), Job No. 847-XAE17University Hospital, University of Michigan, Ann Arbor (1919-1921) Job No. 850Construction of Building7-1/2x9-1/2-inch, black-and-white prints1134 prints3/23/1920--11/4/19201232 prints11/18/1920--10/10/19211Paige Motor Car Company, Service Building, Detroit, MI, (1918), Job No. 85117Detroit News Building, Detroit, MI, (1918-1919), Job No. 86317Ford Motor Company, Main Building, Kearny, NJ, (1917-1919), Job No. 87418Ford Motor Company, Bulkhead, Kearny, NJ, (1925), Job No. 874-AC18Ford Motor Company, Alterations to Main Building, Kearny, NJ, (1919-1920), Job No. 874-I4 folders18Ford Motor Company, Assembly Building, Kearny, NJ, (1922-1924), Job No. 874-O2 folders18Ford Motor Company, Service Building, Buenos Aires, Argentina, (1921), Job No. 89218General Motors (Durant) Building, Detroit, Michigan (1919-1920) Job No. 902Material Storage Yards for General Motors Building by Manning Bros., Commercial Photographers, 9/4/1919-12/8/191935 prints (black-and-white; 7-1/2x9-1/2-inch)1Construction of Building by Manning Bros., Commercial Photographers7-1/2x9-1/2-inch, black-and-white prints133 prints6/2/1919-7/7/19191239 prints7/14/1919-8/11/19191

    (1 print by Alliance Commercial Photo Co.)

    334 prints8/18/1919-9/22/19191436 prints9/29/1919-10/28/19191531 prints11/3/1919-12/1/19192636 prints12/10/1919-1/12/19202736 prints1/19/1920-2/24/19202836 prints3/1/1920-3/30/19202933 prints4/5/1920-5/5/192021036 prints5/10/1920-6/26/192021139 prints6/29/1920-8/9/192021235 prints8/17/1920-9/20/192021340 prints9/27/1920-12/2/19202
    Cracks in Stone in Durant Building7-1/2x9-1/2-inch, black-and-white printsBy J. W. Hughes, Photographer3 printsundated2By Manning Bros., Commercial Photographers35 prints12/23/19202

    (only 2 prints dates)

    Construction of General Motors Building Power Plant by Manning Bros., Commercial Photographers12/1/1919-11/26/19207-1/2x9-1/2-inch, black-and-white prints128 prints12/1/1919-5/17/19202229 prints6/14/1920-11/26/19202
    General Motors Corporation Building, New Cafeteria, Detroit, MI, (1929), Job No. 902-AC18Packard Motor Car Company, Service Building, Detroit, MI, (1919), Job No. 90318Packard Motor Car Company, Addition to Franklin Street Service Building, Detroit, MI, (1929), Job No. 903-L18Grace Hospital, Addition to Building, Detroit, MI, (1919), Job No. 91118Bay City Library, Bay City, Michigan (1920-1922) Job No. 920Building in 2005 by John Lore5 prints (color; 4x6-inch)5/200510Cadillac Motor Car Division, Administration Building, Detroit, MI, (1926), Job No. 923-D18Cadillac Motor Car Division, Engineering Building, Detroit, MI, (1929), Job No. 923-H18Cadillac Motor Car Division, Study of Rehabilitation of Existing Foundry Buildings, Detroit, MI, (1963), Job No. 923-N18Cadillac Motor Car Division, Conversion of Foundry to Machine Shop, Detroit, MI, (1963-1964), Job No. 923-P2 folders18Cadillac Motor Car Division, Remodeling of Medical and Personnel Departments, Detroit, MI, (1964), Job No. 923-Q18Fisher Body Plant, Cleveland, OH, (1920), Job No. 9404 folders18Ford Motor Company, Assembly Building, Houston, TX, (1920-1921), Job No. 94618Kahn Realty Company, Garage, Detroit, MI, (1919), Job No. 94918Harper Hospital, Power House, Detroit, MI, (1921-1922), Job No. 97718Ford Motor Company Iron Mountain Distillation and Carbonization Plant, Kingsford, Upper Peninsula, Michigan (1923-1925) Job Nos. 988 & 988-A, B, C, D & AAConstruction Photographs of Distillation Building (Job No. 988-A) by Quades Picture Shop, Iron Mountain, and unknown photographer31 prints (black-and-white; 7-1/2x10-inch)6/11/1923-5/19/192412Construction Photographs of Carbonization Plant (Job No. 988-B) by Quades Picture Shop, Iron Mountain, and unknown photographer27 prints (black-and-white; 7-1/2x10-inch)8/22/1923-5/28/192412Construction Photographs of Power Building (Job No. 988-C) by Quades Picture Shop, Iron Mountain, and unknown photographer, 8/22/1923-2/3/192445 prints (black-and-white; 7-1/2x10-inch)12Construction Photographs of Power House and Storage Bins by unknown photographer5 prints (black-and-white; 7-1/2x9-1/2-inch)11/18/1924-4/17/192512Construction Photographs of Saw Mill Extension (Job No. 988-D) by Quades Picture Shop, Iron Mountain, and unknown photographer22 prints (black-and-white; 7-1/2x9-1/2-inch)6/25/1923-5/19/192412Construction Photographs of Green Parts Saw Mill and Shipping Building by Quades Picture Shop, Iron Mountain, and unknown photographer7 prints (black-and-white; 7-1/2x9-1/2-inch)3/31/1924-8/16/192412Construction Photographs of Charcoal Storage Plant (Job No. 988-AA & W) by Quades Picture Shop, Iron Mountain, and unknown photographer, 2/11/1925-7/1/192526 prints (black-and-white; 7-1/2x9-1/2-inch)12
    Job No 1022-1500Citizens Title and Trust Company Building, Uniontown, PA, (1924-1925), Job No. 102218Herman Kiefer Hospital Unit, Detroit, MI, (1927-1928), Job No. 1030-K2 folders18Grosse Pointe Country Club Building, Grosse Pointe, MI, (1922), Job No. 104918Rollman Store Building, Cincinnati, OH, (1922-1923), Job No. 10562 folders18Ohio Valley Trust Company, Bank Building, Coraopolis, PA, (1922-1923), Job No. 105718Studebaker Corporation, Foundry Building, South Bend, IN, (1923-1924), Job No. 1066-D18Buick Motor Company, Service Building, New York, NY, (1922), Job No. 106919Ford Motor Company Glass Manufacturing Plant, River Rouge, MI (1922-1923) Job No. 1071Construction Photographs of Glass Plant by Manning Bros., Commercial Photographers, Detroit41 prints (black-and-white; 7-1/2x9-1/2-inch)12/11/1922-6/7/192310Construction Photographs of Stone Crusher and Slag Crusher Buildings by Manning Bros., Commercial Photographer, Detroit8 prints (black-and-white; 7-1/2x9-1/2-inch)12/11/1922-3/9/192310Ford Motor Company, Sand Settling Basin, River Rouge, MI, (1925), Job No. 1071-B19Ford Motor Company, Assembly Building, New Orleans, LA, (1922-1923), Job No. 107319Ford Motor Company, Alterations and Additions to Lincoln Boiler House, Detroit, MI, (1926), Job No. 1074-G19Ford Motor Company, Lincoln Plant Additions, Detroit, MI, (1925-1926), Job No. 1074-J3 folders19Ford Motor Company Engineering Laboratory Building and Power House Extension, Dearborn, Michigan (1923-1924 & 1929-1930) Job No. 1077 & 1077-SConstruction of Engineering Laboratory Building (Job No. 1077) by J. W. Hughes, Photographer2122 prints (black-and-white; 7-1/2x9-1/2-inch), 1 prints (black-and-white; 7-1/2x18-inch), 1 prints (black-and-white; 7-1/2x16-1/2-inch)4/11/1923-10/1/19232227 prints (black-and-white; 7-1/2x9-1/2-inch)10/15/1923-5/15/19242Beam Testing by Manning Bros., Commercial Photographers8 prints (black-and-white; 7-1/2x9-1/2-inch)received 5/14/19232Entry Facade and Corner Piers2 prints (black-and-white; 7-1/2x9-1/2-inch)undated2Construction of Power House Extension (Job No. 1077-S)43 prints (black-and-white; 7-1/2x9-1/2-inch)12/2/1929-5/20/19302Construction of Power House Tunnel Extension5 prints (black-and-white; 7-1/2x9-1/2-inch)1/15/1930-1/29/19302Chevrolet Motor Company, Fisher Body Plant, Flint, MI, (1922-1923), Job No. 108219Chevrolet Motor Company, Fisher Body Plant, Addition to Assembly Building, Flint, MI, (1935-1936), Job No. 1082-D19Chevrolet Motor Company, Fisher Body Plant, Train Shed for Plant No. 2, Flint, MI, (1936), Job No. 1082-E19Chevrolet Motor Company, Fisher Body Plant, Loading Dock, Flint, MI, (1936), Job No. 1082-F19Chevrolet Motor Company, Fisher Body Plant, Service Building, Flint, MI, (1940-1941), Job No. 1082-H19Chevrolet Motor Company, Fisher Body Plant, Additions to Plant No. 2-A, Flint, MI, (1945), Job No. 1082-J&K19Chevrolet Motor Company, Fisher Body Plant, New Elevated Substation Plant No. 5, Flint, MI, (1959), Job No. 1082-L19Chevrolet Motor Company, Fisher Body Corporation Assembly Building, Oakland, CA, (1922-1923), Job No. 108319Chevrolet Motor Company, Assembly Building, Buffalo, NY, (1922-1923), Job No. 10862 folders19Chevrolet Motor Company, Parts Service Building, Buffalo, NY, (1926-1927), Job No. 1086-A19Ford Motor Company, Power House, Ford City, Ontario, Canada, (1923-1924), Job No. 1087-A19Ford Motor Company, By Products Building, Ford City, Ontario, Canada, (1923), Job No. 1087-CB19Chevrolet Motor Company, Service Parts Building, St. Louis, MO, (1926-1927), Job No. 1088-B19Chevrolet Motor Company, Service Parts Building Addition, St. Louis, MO, (1935), Job No. 1088-D19Chevrolet Motor Company, Office Extension, St. Louis, MO, (1935), Job No. 1088-E19Chevrolet Motor Company, Floor over Court, Fisher Body Section, St. Louis, MO, (1954-1956), Job No. 1088-F&G4 folders19Chevrolet Motor Company, Oven Supports and Enclosure on Roof, Fisher Body Section, St. Louis, MO, (1955-1956), Job No. 1088-H2 folders19Chevrolet Motor Company, Three Story Addition to "B" and "D" Buildings, St. Louis, MO, (1960-1961), Job No. 1088-K5 folders20Chevrolet Motor Company, Final Process Addition and Car Loading Building, St. Louis, MO, (1961-1962), Job No. 1088-L7 folders20Chevrolet Motor Company, Alterations and Additions to Plant for Increased Storage, St. Louis, MO, (1962-1963), Job No. 1088-M5 folders20Chevrolet Motor Company, Corvette Building Additions, St. Louis, MO, (1963-1964), Job No. 1088-N3 folders20Chevrolet Motor Company, Building Additions at West End of Passenger Assembly Line, St. Louis, MO, (1964), Job No. 1088-P20Chevrolet Motor Company, First Floor Building Addition, St. Louis, MO, (1966), Job No. 1088-R20Chevrolet Motor Company, Assembly Building, Norwood, OH, (1922-1923), Job No. 108920Chevrolet Motor Company, Service Parts Building, Norwood, OH, (1926-1927), Job No. 1089-A21Chevrolet Motor Company, Aerials of Pre-Additions to North, South, and East Buildings, Norwood, OH, (1962), Job Nos. 1089-AA, AB, AC21Chevrolet Motor Company, Car Storage Building Addition, Norwood, OH, (1927), Job No. 1089-C21Chevrolet Motor Company, Fisher Body Addition, Norwood, OH, (1936), Job No. 1089-F21Chevrolet Motor Company, Assembly Building Additions and Alterations, Norwood, OH, (1936), Job No. 1089-G21Chevrolet Motor Company, New Car Conditioning Building, Norwood, OH, (1940), Job No. 1089-M21Chevrolet Motor Company, Assembly Building Additions and Alterations, Norwood, OH, (1945-1946), Job No. 1089-O2 folders21Chevrolet Motor Company, New Boiler House, Norwood, OH, (1954-1955), Job No. 1089-T2 folders21Chevrolet Motor Company, New Transformer on Roof, Norwood, OH, (1955), Job No. 1089-V21Chevrolet Motor Company, Alterations and Additions for Truck Paint Equipment, Norwood, OH, (1955-1957), Job No. 1089-W21Chevrolet Motor Company, Fisher Section Alterations and Additions, Norwood, OH, (1955-1958), Job No. 1089-X3 folders21Ford Motor Company, Assembly and Service Building, Toronto, Ontario, Canada, (1922-1923), Job No. 10905 folders21Chevrolet Motor Company, Transmission Plant, Toledo, OH, (1922), Job No. 109121Chevrolet Motor Company, Transmission Plant Boiler House, Toledo, OH, (1922-1923), Job No. 109121Chevrolet Motor Company, Transmission Plant Shop Building, Toledo, OH, (1922-1923), Job No. 109121Ford Motor Company, Assembly Building, Chicago, IL, (1923-1924), Job No. 10925 folders22Ford Motor Company, Calumet River Wharf, Chicago, IL, (1930), Job No. 1092-H22Children's Hospital of Michigan, James Couzens Memorial Clinic, Detroit, MI, (1952-1953), Job No. 1098-V2 folders22Flint Daily Journal Building, Flint, MI, (1923-1924), Job No. 111422Ford Motor Company, Henry Ford Hospital, Nurses Home, Detroit, MI, (1924-1925), Job No. 11193 folders22Ford Motor Company, Henry Ford Hospital, Educational Building, Detroit, MI, (1924-1925), Job No. 1119-B22Ford Motor Company, Dearborn Country Club, Dearborn, MI, (1924-1925), Job No. 1129-A22Ford Motor Company, Service Building, Salt Lake City, UT, (1923-1924), Job No. 11432 folders22Ford Motor Company, Assembly Building, Charlotte, NC, (1924), Job No. 11452 folders22Ford Motor Company, Power House, Charlotte, NC, (1924), Job No. 1145-A22Ford Motor Company, Oil House, Charlotte, NC, (1924), Job No. 1145-B22Ford Motor Company, Glass Plant Unit in Manufacturing Building, St. Paul, MN, (1925), Job No. 1148-C22Ford Motor Company, Assembly Building, Kansas City, MO, (1923-1925), Job No. 11511 folder22Ford Motor Company, Assembly Building, Kansas City, MO, (1923-1925), Job No. 11512 folders23Ford Motor Company, Assembly Building, Jacksonville, FL, (1924), Job No. 11525 folders23Ford Motor Company, Assembly Building Addition, Jacksonville, FL, (1925-1926), Job No. 1152-K23Ford Motor Company, Assembly Building, Memphis, TN, (1924), Job No. 11532 folders23Ford Motor Company, Power House, Memphis, TN, (1924-1926), Job No. 1153-A2 folders23Ford Motor Company, Assembly Building, Dallas, TX, (1924-1925), Job No. 11543 folders23Ford Motor Company, Assembly Building Addition, Dallas, TX, (1940), Job No. 1154-G23Ford Motor Company, Assembly Building, Louisville, KY, (1924-1925), Job No. 11554 folders23Chevrolet Motor Company, Tarrytown, NY, (1957), Job No. 115723Chevrolet Motor Company, Bulkhead and Fill in Hudson River, Tarrytown, NY, (1960-1961), Job No. 1157-AA1 folder23Chevrolet Motor Company, Bulkhead and Fill in Hudson River, Tarrytown, NY, (1960-1961), Job No. 1157-AA1 folder24Chevrolet Motor Company, Land Development, Tarrytown, NY, (1960-1961), Job No. 1157-AB2 folders24Chevrolet Motor Company, Access Road and Parking Lot, Tarrytown, NY, (1960-1961), Job No. 1157-AC2 folders24Chevrolet Motor Company, Ground Storage Tank and Pump House, Tarrytown, NY, (1963), Job No. 1157-AD24Chevrolet Motor Company, Manufacturing Building Addition, Tarrytown, NY, (1961-1963), Job No. 1157-AD, AF5 folders24Chevrolet Motor Company, New 48 Inch Storm Sewer and Extension Oil Fill Line, Tarrytown, NY, (1960), Job No. 1157-AE24Chevrolet Motor Company, Boiler House Alterations, Tarrytown, NY, (1961), Job No. 1157-AF24Chevrolet Motor Company, Tank Farm and Pump House, Tarrytown, NY, (1964-1965), Job No. 1157-AG3 folders24Chevrolet Motor Company, Pedestrian Bridge over Railroad, Tarrytown, NY, (1960-1961), Job No. 1157-AH2 folders24Chevrolet Motor Company, Office Building, Tarrytown, NY, (1963-1965), Job No. 1157-AJ-R3 folders24Chevrolet Motor Company, Office Building, Tarrytown, NY, (1963-1965), Job No. 1157-AJ-R2 folders25Chevrolet Motor Company, New Construction over Present Building, Tarrytown, NY, (1962), Job No. 1157-AL25Chevrolet Motor Company, New Road from Parking Lot, Tarrytown, NY, (1961), Job No. 1157-AM25Chevrolet Motor Company, Paving for South Portion of Parking Lot, Tarrytown, NY, (1961), Job No. 1157-AN25Chevrolet Motor Company, Renovation of Existing Floors and Foundations, Tarrytown, NY, (1963-1964), Job No. 1157-AQ4 folders25Chevrolet Motor Company, Shipping Building East of Railroad, Tarrytown, NY, (1962), Job No. 1157-AS25Chevrolet Motor Company, Body Delivery Conveyor, Tarrytown, NY, (1962-1963), Job No. 1157-AT2 folders25Chevrolet Motor Company, Cafeteria and Personnel Facilities, Tarrytown, NY, (1965), Job No. 1157-AY2 folders25Chevrolet Motor Company, New North and South Truck Wells, Tarrytown, NY, (1965-1966), Job No. 1157-BA2 folders25Chevrolet Motor Company, Renovation of Power House Walls, Tarrytown, NY, (1965), Job No. 1157-BC25Chevrolet Motor Company, Assembly Building, Tarrytown, NY, (1929-1930), Job No. 1157-D2 folders25Chevrolet Motor Company, Fisher Body Building, Tarrytown, NY, (1930), Job No. 1157-F25Chevrolet Motor Company, Fisher Body Building Extension, Tarrytown, NY, (1935-1936), Job No. 1157-L25Chevrolet Motor Company, Assembly Plant Addition, Tarrytown, NY, (1936), Job No. 1157-O25Chevrolet Motor Company, Power House Alterations and Oil House Addition, Tarrytown, NY, (1939), Job No. 1157-R25Chevrolet Motor Company, Addition to Boiler House, Tarrytown, NY, (1958-1959), Job No. 1157-Z2 folders25Ford Motor Company, Retaining Wall, Seattle, WA, (1924), Job No. 1159-B26Ford Motor Company, Assembly Building, Norfolk, VA, (1924-1925), Job No. 11633 folders26Ford Motor Company, Power House, Norfolk, VA, (1925), Job No. 1163-A26Ford Motor Company, Pump House, Norfolk, VA, (1925), Job No. 1163-D26Ford Motor Company, New Dock, Norfolk, VA, (1937-1938), Job No. 1163-J2 folders26Ford Motor Company, Assembly Building Addition, Norfolk, VA, (1937-1938), Job No. 1163-K26Detroit Free Press, Publishing Building, Detroit, MI, (1924), Job No. 117026Standard Club Building, Chicago, IL, (1925-1926), Job No. 1174-B26Detroit and Ironton Railroad, River Rouge Substation No. 1, Flat Rock, MI, (1925), Job No. 1179-G26Ford Motor Company, Forge Shop Addition, Hamilton, OH, (1924), Job No. 118326Jennison Hardware Company Warehouse, Bay City, Michigan (1924) Job No. 1184Exterior of Original Building by unknown photographer, ca1 prints (black-and-white; 4x6-inch)1950s9Exterior of Renovated Building after Completion of Condominium Development, "Jennison Place," by John and Judy Lore19 prints (color; 4x6-inch)ca. 20049"Water Street Home Tour" Brochure4/25/20049Mazer Cressman Cigar Company Plant, Detroit, MI, (1925), Job No. 118726C.C. Coddington, Inc., Sales and Service Building, Charlotte, NC, (1925), Job No. 119526Booth Publishing Company, Kalamazoo Gazette, Kalamazoo, MI, (1924), Job No. 121326Detroit News, Garage, Detroit, MI, (1924), Job No. 121726Ford Motor Company, Assembly Building, Chester, PA, (1926-1927), Job No. 12183 folders26Ford Motor Company, Fabricating Building, Chester, PA, (1926), Job No. 1218-A26Ford Motor Company, Oil House, Chester, PA, (1926-1927), Job No. 1218-B26Ford Motor Company, Power House, Chester, PA, (1926-1927), Job No. 1218-C26Ford Motor Company, Car Delivery Building, Chester, PA, (1926-1927), Job No. 1218-D26Ford Motor Company, Pump House, Chester, PA, (1926-1927), Job No. 1218-H26Ford Motor Company, Pier and Bulkhead Construction, Chester, PA, (1926-1927), Job No. 1218-J2 folders26Ford Motor Company, Pier and Bulkhead Construction, Chester, PA, (1926-1927), Job No. 1218-J2 folders27Ford Motor Company, Fabricating Building Alterations, Chester, PA, (1931-1932), Job No. 1218-S27A.M. Campau Realty Company, Thurber Garage, Detroit, MI, (1925), Job No. 1220-B27Consumers Power Company, Office Building, Jackson, MI, (1926), Job No. 124327Kahn Realty Company, Store Building, Detroit, MI, (1926), Job No. 125027Detroit Railway and Harbor Terminals, Inc., Warehouse, Detroit, MI, (1925-1926), Job No. 125227Ford Motor Company, Assembly Building, Somerville, MA, (1925-1926), Job No. 12673 folders27Ford Motor Company, Power House, Somerville, MA, (1926), Job No. 1267-A27Ford Motor Company, Oil House, Somerville, MA, (1926), Job No. 1267-B27Ford Motor Company, Pump House, Somerville, MA, (1925-1926), Job No. 1267-C27Ford Motor Company, Assembly Building Addition, Somerville, MA, (1936-1937), Job No. 1267-G2 folders27H.J. Heinz Company, Warehouse Addition to Present Factory Building, Pittsburgh, PA, (1926), Job No. 127127H.J. Heinz Company, Welfare Building Auditorium, Pittsburgh, PA, (1929-1930), Job No. 1271-B2 folders27H.J. Heinz Company, New Office Building, Pittsburgh, PA, (1937-1938), Job No. 1271-C27Packard Motor Car Company, Sales and Service Building Addition, Buffalo, NY, (1927-1928), Job No. 1280-A27Briggs Investment Company, Apartment Building, Detroit, MI, (1925-1926), Job No. 128127Chevrolet Motor Company, Service Building, New York City, NY, (1926), Job No. 128827Chevrolet Motor Company, Service Building Addition, New York City, NY, (1928), Job No. 1288-C27Ford Motor Company, Airplane Hanger, Dearborn, MI, (1926), Job No. 129027Ford Motor Company, Airplane Factory, Dearborn, MI, (1926-1927), Job No. 1290-A27Ford Motor Company, Airplane Factory Addition, Dearborn, MI, (1929), Job No. 1290-G27Ford Motor Company, Airplane Hanger, Cleveland, OH, (1926), Job No. 129528Ford Motor Company, Assembly Building, Montevideo, Uruguay, (1926-1927), Job No. 129928Packard Motor Car Company, Service Building, New York City, NY, (1926), Job No. 130328Fort Shelby Hotel, Detroit, MI, (1926-1927), Job No. 130528Westinghouse Electric and Manufacturing Company, Detroit, MI, (1926-1927), Job No. 1308-A2 folders28Booth Newspapers Inc., Citizen Patriot Newspaper Building, Jackson, MI, (1926-1927), Job No. 1309-A28Ford Motor Company, Airplane Hanger, Lansing, IL, (1926-1927), Job No. 131128Plymouth House of Correction, Cottages 1 to 8, Hospital, Administration Building, Factory, Plymouth, MI, (1926-1927), Job No. 13242 folders28Ford Motor Company, Administration Building, Dearborn, MI, (1927-1928), Job No. 1326-A2 folders28Packard Motor Car Company, Sales and Service Building, New York City, NY, (1926-1927), Job No. 133228Senator James Couzens Residence, Bloomfield Hills, Michigan, (1926-1927) Job No. 1335Construction of Building by Spencer and Wyckoff Photographers9 prints (black-and-white; 8x10-inch)12/15/1926-3/9/19274Chevrolet Motor Company, Engineering Building, Detroit, MI, (1926), Job No. 133628Chevrolet Motor Company, Bumper Plant, Detroit, MI, (1931), Job No. 1337-AB28Chevrolet Motor Company, Power House Additions, Detroit, MI, (1946-1947), Job No. 1337-AM28Chevrolet Motor Company, Extension to North End of Bumper Plant, Detroit, MI, (1946-1947), Job No. 1337-AO28Chevrolet Motor Company, High Pressure Boiler Installation in Power House, Detroit, MI, (1954), Job No. 1337-AY28Chevrolet Motor Company, Forge Building, Detroit, MI, (1926), Job No. 1337-B28Chevrolet Motor Company, Power House Addition, Detroit, MI, (1926), Job No. 1337-C28Chevrolet Motor Company, Forge Building Extension, Detroit, MI, (1928), Job No. 1337-H28Chevrolet Motor Company, Gear and Axle Plant Addition, Detroit, MI, (1928), Job No. 1337-J28Chevrolet Motor Company, Power House Addition, Detroit, MI, (1928), Job No. 1337-L28Chevrolet Motor Company, Power House Addition, Detroit, MI, (1928-1930), Job No. 1337-S28Chevrolet Motor Company, Water Purification Extension to Cooling Tower, Detroit, MI, (1928), Job No. 1337-T28Chevrolet Motor Company, Seismograph Observations, Detroit, MI, (1929), Job No. 1337-W28Chevrolet Motor Company, Machine Shop, Detroit, MI, (1929), Job No. 1337-Z28Chevrolet Motor Company, Addition to Present Plant, Janesville, WI, (1926-1927), Job No. 133828Chevrolet Motor Company, Service Parts Building, Janesville, WI, (1926-1927), Job No. 1338-A28Chevrolet Motor Company, Fisher Body Addition, Janesville, WI, (1936), Job No. 1338-B28Chevrolet Motor Company, Office Building Addition, Janesville, WI, (1945-1947), Job No. 1338-F3 folders28Chevrolet Motor Company, Demolition of Old Foundry Building, Janesville, WI, (1946), Job No. 1338-G28Chevrolet Motor Company, Assembly Building Addition, Janesville, WI, (1946), Job No. 1338-H28Chevrolet Motor Company, Acetylene Generator and Carbide Storage Building, Janesville, WI, (1946-1947), Job No. 1338-J29Chevrolet Motor Company, Addition to West End of Assembly Building, Janesville, WI, (1947-1948), Job No. 1338-K2 folders29Chevrolet Motor Company, Alterations and Additions to Fisher Section, Janesville, WI, (1954-1955), Job No. 1338-L29Chevrolet Motor Company, Alterations and Additions Reinforcing Present Plant, Janesville, WI, (1955), Job No. 1338-M29Chevrolet Motor Company, Alterations and Additions to Chevrolet Section, Janesville, WI, (1955), Job No. 1338-N29Chevrolet Motor Company, Reinforcing of Present Structure, Janesville, WI, (1955), Job No. 1338-P29Chevrolet Motor Company, Paint Mix and Storage Building, Janesville, WI, (1955), Job No. 1338-Q29Chevrolet Motor Company, Alterations and Additions for Two-Tone Paint Program, Janesville, WI, (1955), Job No. 1338-R29Ford Motor Company, Detroit and Ironton Railroad Passenger Station, Fordson, MI, (1926), Job No. 134429Ford Motor Company, Assembly Building Alterations, Long Beach, CA, (1926-1930), Job No. 1347-F4 folders29Ford Motor Company, Pressed Steel Department Building Addition, Long Beach, CA, (1930-1931), Job No. 1347-M29Richards-Oakland, Service Building, Detroit, MI, (1926-1927), Job No. 135729Packard Motor Car Company, Service Building, Atlanta, GA, (1927), Job No. 1360-A29Y. W. C. A Building, Adams and Witherell Streets, Detroit (1928-1929) Job No. 1362Construction of Building by Manning Bros., Commercial Photographers7-1/2x9-1/2-inch, black-and-white prints9140 prints6/21/1928-10/2/19289239 prints10/9/1928-3/6/19299336 prints3/13/1929-7/23/19299Peninsular Stove Company, Manufacturing Plant, Detroit, MI, (1927), Job No. 136429Packard Motor Company, Sales and Service Building, Cleveland, OH, (1928), Job No. 137029Fordson State Bank Building, Fordson, MI, (1927), Job No. 137129First National Bank, Additions, Detroit, MI, (1927-1928), Job No. 137329Bank of Saginaw Building, Saginaw, MI, (1927-1928), Job No. 137529Consumers Power Company, Office Building, Saginaw, MI, (1927-1928), Job No. 137729Palmer Bee Company, Office and Warehouse Building, Detroit, MI, (1927), Job No. 138029Argonaut Realty Company, General Motors Truck Building, Chicago, IL, (1927), Job No. 138329Shaarey Zedek Synagogue, Detroit (1930) Job No. 1385Construction Photographs by O. R. Forster Co., Commercial Photographers, Detroit24 prints (black-and-white; 7-1/2x9-3/4-inch)4/17/1930-9/18/193012Argonaut Realty Company, General Motors Truck Building, Detroit, MI, (1927), Job No. 138829Argonaut Realty Company, General Motors Truck Building, Pittsburgh, PA, (1927), Job No. 138929Cadillac Motor Car Company, Sales and Service Building, Oak Park, IL, (1927-1928), Job No. 139029Liberty National Bank, New York City, NY, (1927), Job No. 139129Muskegon Chronicle, Muskegon, MI, (1927-1928), Job No. 139329Woman's Hospital Building, Detroit, MI, (1927), Job No. 139529The Women's Hospital, Beaubien Street and Forest Avenue, Detroit (1927-1929) Job No. 1395Completed Exterior of Building by Manning Bros., Commercial Photographers2 prints (black-and-white; 7-1/2x9-1/2-inch)5/22/19299Argonaut Realty Company, General Motors Truck Building, Boston, MA, (1927-1928), Job No. 1397-B29Cadillac Motor Car Company, Sales and Service Building, Brookline, MA, (1927-1928), Job No. 13982 folders29William Livingstone Memorial Lighthouse, Belle Isle, Detroit (1929-1930) Job No. 1400Construction of Building by Spencer and Wyckoff, Commercial Photographers18 prints (black-and-white; 8x10-inch)8/30/1929-4/25/19309General Motors Corporation, Inc., Car Storage and Assembly Building, Pontiac, MI, (1927-1928), Job No. 140229General Motors Corporation, Inc., Engineering Building, Pontiac, MI, (1949-1951), Job No. 1402-AD3 folders30General Motors Corporation, Inc., Addition between Plants 6 and 9, Pontiac, MI, (1946-1947), Job No. 1402-AE30General Motors Corporation, Inc., Axle Plant 5, Pontiac, MI, (1945-1947), Job No. 1402-AF2 folders30General Motors Corporation, Inc., Steel Dock Addition, Pontiac, MI, (1945-1946), Job No. 1402-AH30General Motors Corporation, Inc., Third Floor Addition to Plant 8, Pontiac, MI, (1946), Job No. 1402-AK30General Motors Corporation, Inc., Cooling Conveyor Building, Pontiac, MI, (1946-1948), Job No. 1402-AM30General Motors Corporation, Inc., Press Shop, Pontiac, MI, (1951-1952), Job No. 1402-AS2 folders30General Motors Corporation, Inc., Relocations and Alterations to Present Driveway Building, Pontiac, MI, (1950-1951), Job No. 1402-AT2 folders30General Motors Corporation, Inc., Service Machine Building, Pontiac, MI, (1951-1952), Job No. 1402-AW2 folders30General Motors Corporation, Inc., Shipping Dock North of Plant 11, Pontiac, MI, (1953), Job No. 1402-AZ30General Motors Corporation, Inc., Gun Range Building, Pontiac, MI, (1952-1953), Job No. 1402-BB30General Motors Corporation, Inc., Foundry Building Addition, Pontiac, MI, (1953-1954), Job No. 1402-BG2 folders30General Motors Corporation, Inc., Personnel Building North End Addition, Pontiac, MI, (1953-1954), Job No. 1402-BJ30General Motors Corporation, Inc., Personnel Building, Pontiac, MI, (1928), Job No. 1402-E30General Motors Corporation, Inc., Personnel Building South End Addition, Pontiac, MI, (1940-1941), Job No. 1402-P30General Motors Corporation, Inc., Personnel Building Northwest End Addition, Pontiac, MI, (1944), Job No. 1402-R30General Motors Corporation, Inc., Foundry and Cupola Building Alterations and Additions, Pontiac, MI, (1945-1948), Job No. 1402-S31General Motors Corporation, Inc., Core Building Addition, Pontiac, MI, (1945), Job No. 1402-T31General Motors Corporation, Inc., Salvage and Incinerator Building, Pontiac, MI, (1945-1947), Job No. 1402-W31General Motors Corporation, Inc., Personnel Facilities at Plants 7, 8, and 10, Pontiac, MI, (1948-1951), Job No. 1402-Z31Chevrolet Motor Company, Assembly Plant, Atlanta, GA, (1927-1928), Job No. 140831Chevrolet Motor Company, Service Parts Building Addition, Atlanta, GA, (1935), Job No. 1408-B31Chevrolet Motor Company, Fisher Body Addition, Atlanta, GA, (1936), Job No. 1408-C31Chevrolet Motor Company, Assembly Building Alterations and Additions, Atlanta, GA, (1939), Job No. 1408-D31Chevrolet Motor Company, Office Building Addition, Atlanta, GA, (1946-1947), Job No. 1408-E31Chevrolet Motor Company, Assembly Building Alterations and Additions, Atlanta, GA, (1954-1955), Job No. 1408-G31Chevrolet Motor Company, Assembly Building Alterations and Additions, Atlanta, GA, (1954-1955), Job No. 1408-H31Chevrolet Motor Company, Fisher Body Section Alterations and Additions, Atlanta, GA, (1956-1957), Job No. 1408-J31Chevrolet Motor Company, Site Development Car Loading Dock and Underpass, Atlanta, GA, (1956-1957), Job No. 1408-L31Chevrolet Motor Company, Chevrolet Section Alterations and Additions, Atlanta, GA, (1958), Job No. 1408-N4 folders31Chevrolet Motor Company, Chevrolet Section Alterations and Additions, Atlanta, GA, (1958-1959), Job No. 1408-P, R31Chevrolet Motor Company, Tank Farm and Pump House, Atlanta, GA, (1958), Job No. 1408-Q31Chevrolet Motor Company, Office Building Addition, Atlanta, GA, (1960-1961), Job No. 1408-T2 folders31Chevrolet Motor Company, Office Building Addition, Atlanta, GA, (1960-1961), Job No. 1408-T1 folder32Chevrolet Motor Company, Relocation of Railroad Track 15 and Related Alterations, Atlanta, GA, (1964), Job No. 1408-W32Wabeek Corporation Building, Birmingham, MI, (1928), Job No. 141232Y.M.C.A., Northwestern Branch Building, Detroit, MI, (1928-1929), Job No. 141532Peerless Portland Cement Company (John Gillespie, Inc.), Dock Extension, Detroit, MI, (1928), Job No. 1419-A32Griswold Building, Detroit, MI, (1928), Job No. 142032Finsterwald Building, Detroit, MI, (1928), Job No. 142132Argonaut Realty Company, General Motors Research Laboratory Building, Detroit, MI, (1928), Job No. 14224 folders32Youngstown Hospital Association, Hospital Building, Youngstown, OH, (1928-1929), Job No. 14233 folders32Bromley Warehouse, Detroit, MI, (1928), Job No. 1424-B32National Union Bank, Bank and Office Building, Jackson, MI, (1929-1930), Job No. 14252 folders32Argonaut Realty Company, Chevrolet Parts Depot, Omaha, NE, (1928), Job No. 142632D.M. Ferry Corporation, Warehouse, San Francisco, CA, (1928), Job No. 142932Chevrolet Motor Company, Office Building Addition, Saginaw, MI, (1928), Job No. 143032Chevrolet Motor Company, New Elevated Substation, Foundry No. 2, Saginaw, MI, (1960-1961), Job No. 1430-AB32Chevrolet Motor Company, Second Floor Addition to Engineering Building and Pattern Storage Balcony, Saginaw, MI, (1962), Job No. 1430-AD32Chevrolet Motor Company, Cleaning Building, Saginaw, MI, (1928), Job No. 1430-B32Chevrolet Motor Company, Foundry, Core, and Sand Storage Buildings, Saginaw, MI, (1928-1929), Job No. 1430-C32Chevrolet Motor Company, Power House Addition, Saginaw, MI, (1928), Job No. 1430-D32Chevrolet Motor Company, Gantry Craneway and Bulkhead, Saginaw, MI, (1928-1929), Job No. 1430-H1 folder32Chevrolet Motor Company, Gantry Craneway and Bulkhead, Saginaw, MI, (1928-1929), Job No. 1430-H1 folder33Chevrolet Motor Company, Machine Shop Addition, Saginaw, MI, (1940-1941), Job No. 1430-N33Chevrolet Motor Company, Foundry and Core Building Addition, Saginaw, MI, (1946-1948), Job No. 1430-O2 folders33Chevrolet Motor Company, Pattern Shop and Maintenance Building Addition, Saginaw, MI, (1946-1947), Job No. 1430-P33Chevrolet Motor Company, Boiler House Addition, Saginaw, MI, (1946-1948), Job No. 1430-R33Chevrolet Motor Company, Transfer Substation Addition, Saginaw, MI, (1948), Job No. 1430-S33Chevrolet Motor Company, Office Building Addition, Saginaw, MI, (1948-1949), Job No. 1430-T2 folders33Chevrolet Motor Company, Core Cooling Building, Saginaw, MI, (1949-1950), Job No. 1430-V33Chevrolet Motor Company, New Engineering Office Building, Saginaw, MI, (1960-1961), Job No. 1430-Z3 folders33Argonaut Realty Company, Chevrolet Service Station, Philadelphia, PA, (1928), Job No. 143233Chevrolet Motor Company, Assembly Plant, Kansas City, MO, (1928), Job No. 143333Chevrolet Motor Company, "R" Building South Addition, Kansas City, MO, (1962-1963), Job No. 1433-AA2 folders33Chevrolet Motor Company, "R" Building South Addition and Truck Dock, Kansas City, MO, (1962-1963), Job No. 1433-AA, AB2 folders33Chevrolet Motor Company, New Paint Mix Room, Kansas City, MO, (1962-1963), Job No. 1433-AC34Chevrolet Motor Company, Fisher Body Division Phase No. 1, Kansas City, MO, ( April-May 1963), Job No. 1433-AE34Chevrolet Motor Company, Fisher Body Division Phase No. 2, Kansas City, MO, ( April-December 1963), Job No. 1433-AE34Chevrolet Motor Company, New Depressed Track, Cafeteria, Body Tank, Conveyor Bridge, and Miscellaneous Alterations, Kansas City, MO, (1963), Job No. 1433-AE34Chevrolet Motor Company, New Substation Addition, Phase 1 Second Floor, Kansas City, MO, ( June-August 1963), Job No. 1433-AF34Chevrolet Motor Company, New Substation Addition, Phase 2 First Floor, Kansas City, MO, ( May-December 1963), Job No. 1433-AF2 folders34Chevrolet Motor Company, New Substation Addition, Kansas City, MO, (1963), Job No. 1433-AF, AG34Chevrolet Motor Company, New Substation Addition and Freight Elevator, Kansas City, MO, (1963), Job No. 1433-AF, AH34Chevrolet Motor Company, Freight Elevator, Kansas City, MO, (1963), Job No. 1433-AH34Chevrolet Motor Company, Renovations to Office Building Phase 2, Kansas City, MO, (1964-1965), Job No. 1433-AK3 folders34Chevrolet Motor Company, Company Car Garage, Kansas City, MO, (1964), Job No. 1433-AL34Chevrolet Motor Company, Service Parts Building, Kansas City, MO, (1935), Job No. 1433-E34Chevrolet Motor Company, Assembly and Fisher Body Building Alterations and Additions, Kansas City, MO, (1935), Job No. 1433-F34Chevrolet Motor Company, South Side of Plant Alterations and Additions, Fisher Section, Kansas City, MO, (1954-1955), Job No. 1433-L2 folders34Chevrolet Motor Company, East Side of Plant Alterations and Additions, Fisher Section, Kansas City, MO, (1954-1955), Job No. 1433-M3 folders34Chevrolet Motor Company, Reinforcing Present Structure for Ovens, Conveyors, and Other Related Subjects, Kansas City, MO, (1954), Job No. 1433-N34Chevrolet Motor Company, Alterations to Present Fisher Addition Structure, Kansas City, MO, (1954-1955), Job No. 1433-P34Chevrolet Motor Company, Assembly Building South End Addition, Kansas City, MO, (1958), Job No. 1433-Q35Chevrolet Motor Company, Addition of Two Story Building on West Side of Assembly Building, Kansas City, MO, (1958-1959), Job No. 1433-R2 folders35Chevrolet Motor Company, Alterations and Additions to Assembly Building for Body Conveyors and Body Bank, Kansas City, MO, (1959), Job No. 1433-S35Chevrolet Motor Company, Tank Farm and Pump House, Kansas City, MO, (1959), Job No. 1433-T35Chevrolet Motor Company, Wheel Spray Booth Second Floor Addition, Kansas City, MO, (1959), Job No. 1433-U35Parke Davis Company, Manufacturing Building, Detroit, MI, (1928-1929), Job No. 143435Parke Davis Company, Manufacturing Building Addition, Detroit, MI, (1938-1939), Job No. 1434-AL35Parke Davis Company, Animal House, Detroit, MI, (1940-1941), Job No. 1434-AO35Parke Davis Company, Arsenical Building No. 36, Detroit, MI, (1945-1946), Job No. 1434-AV35Parke Davis Company, Animal Building, Detroit, MI, (1951), Job No. 1434-BC35Parke Davis Company, Products Development Building, Detroit, MI, (1951), Job No. 1434-BF35Argonaut Realty Corporation, Chevrolet Parts Depot, New Orleans, LA, (1928), Job No. 144035Argonaut Realty Corporation, Chevrolet Parts Depot, Fargo, ND, (1928), Job No. 144435Murray Corporation of America, Factory Building, Detroit, MI, (1929), Job No. 1449-A35Murray Corporation of America, Factory Building 122, Detroit, MI, (1929), Job No. 1449-H35Detroit Times, Publishing Building, Detroit, MI, (1928-1929), Job No. 145135Nichols and Chepard Company, Factory Building Warehouse, Battle Creek, MI, (1928-1929), Job No. 145235Argonaut Realty Corporation, Chevrolet Parts Depot, Indianapolis, IN, (1929), Job No. 145335Chrysler Corporation, Addition to Present Building, Detroit, MI, (1928-1929), Job No. 145636Chrysler Corporation, New Addition at Northwest Side of Present Building, Detroit, MI, (1945-1946), Job No. 1456-AL36Chrysler Corporation, Frame Conveyor, Detroit, MI, (1945), Job No. 1456-AM36Chrysler Corporation, East Addition to Plymouth-Detroit Assembly Plant, Detroit, MI, (1964), Job No. 1456-BO36Chrysler Corporation, Northwest and Southeast Additions to Plymouth-Detroit Assembly Plant, Detroit, MI, (1964-1965), Job No. 1456-BP3 folders36Chrysler Corporation, Office Building, Detroit, MI, (1945-1946), Job No. 1456-J3 folders36Packard Motor Car Company, Sales and Service Building, New Orleans, LA, (1929), Job No. 145936Cadillac Motor Car Company, Sales and Service Building, Providence, RI, (1930), Job No. 1462-B36Argonaut Realty Corporation, Chevrolet Service Parts Building, Birmingham, AL, (1929), Job No. 146336Murray Corporation of America, Kiln and Mill Building, Power Plant, Memphis, TN, (1929), Job No. 146436Argonaut Realty Corporation, Chevrolet Sales and Service Building, El Paso, TX, (1929), Job No. 14652 folders36Argonaut Realty Corporation, Chevrolet Parts Depot, Great Falls, MT, (1929), Job No. 1470-A2 folders36Argonaut Realty Corporation, Chevrolet Service Parts Building, Richmond, VA, (1929), Job No. 1471-A36Argonaut Realty Corporation, Chevrolet Service Parts Building, Salt Lake City, UT, (1929), Job No. 14722 folders36Argonaut Realty Corporation, Chevrolet Parts Depot, Knoxville, TN, (1929), Job No. 147336Packard Motor Car Company, Sales and Service Building, London, England, (1929), Job No. 147437H.J. Heinz Corporation, Kitchen Building, Leamington, Ontario, (1929), Job No. 147537S. S. Kresge Company Administration Building, Cass Park, Detroit (1929-1930) Job No. 1476Construction of Building by Manning Bros., Commercial Photographers, 7/11/1929-3/6/193027 prints (black-and-white; 7-1/2x9-1/2-inch)9Interior Pardee-Grueby Tile by Haas Studios, Photographers2 prints (black-and-white; 7-1/2x10-inch)5/15/19309Completed Building by Manning Bros., Commercial Photographers1 prints (black-and-white; 7-1/2x9-1/2-inch)undated9Peoples Outfitting Company, Warehouse and Store Building, Dearborn, MI, (1929), Job No. 147737Peoples Outfitting Company, Alterations to Store Fronts, Dearborn, MI, (1948), Job No. 1477-C37New York Times, Publishing Building, Brooklyn, NY, (1929-1930), Job No. 147837Argonaut Realty Corporation, General Motors Truck Building, Denver, CO, (1929), Job No. 148037Cadillac Motor Car Company, Sales and Service Building, Detroit, MI, (1929), Job No. 149037Argonaut Realty Company, Chevrolet Parts Depot, Wichita, KS, (1929), Job No. 1495-A37Ockford Printing Company, Addition to Present Building, Detroit, MI, (1929), Job No. 149637Argonaut Realty Company, Chevrolet Parts Depot, Jacksonville, FL, (1929), Job No. 149837Checker Cab Manufacturing Corporation, Body Building Plant, Kalamazoo, MI, (1929-1930), Job No. 150037Job No. 1501-1750Ford Motor Company, Assembly Building, Dredging, Edgewater, NJ, (1929), Job No. 150137Ford Motor Company, Assembly Building, Land Piling, Edgewater, NJ, (1929-1930), Job No. 150137Ford Motor Company, Assembly Building, Sewer on South Property Line, Edgewater, NJ, (1929), Job No. 150137Ford Motor Company, Assembly Building, Water Piling, Edgewater, NJ, (1929-1930), Job No. 15012 folders37Ford Motor Company, Assembly Building, Power House, and Oil House, Edgewater, NJ, (1930), Job No. 1501-A, B3 folders37Packard Motor Car Company, Sales and Service Building, Newark, NJ, (1929-1930), Job No. 150237Stalingrad Tractor Plant, Amtorg Trading Corporation, Stalingrad, U.S.S.R. (1929-1930) Job No. 1503Construction of Foundation by unknown photographer, 7/8/1929-10/23/19295 prints (black-and-white; 4x6-1/4-inch), 1 prints (black-and-white; 4x13-inch), 7 prints (black-and-white; 6-1/4x9-inch), 1 prints (black-and-white; 6x26-inch), 1 prints (black-and-white; 5-1/2x17-inch), 1 prints (black-and-white; 6x17-1/2-inch)10Construction of Steel Structure, received by Albert Kahn, Inc.12 prints (black-and-white, nine by Santangelo Studio, Pottstown, PA, and three by unknown photographer)7/26/1929-10/7/192910Dearborn Inn (Henry Ford Hotel), Dearborn, Michigan (1930-1932) Job No. 1504-A & 1504-BConstruction of Building (Job No. 1504-A) by Manning Bros.53 prints (black-and-white; 7-1/4x9-1/2-inch)6/25/1930-6/23/193110Construction of Addition (Job No. 1504-B) by Manning Bros.22 prints (black-and-white; 7-1/2x9-1/2-inch)7/14/1932-9/23/193210Chrysler Corporation, Dodge Main Plant, Three Story Addition to Building No. 419, Detroit, MI, (1944), Job No. 1507-D37Chrysler Corporation, Dodge Main Plant, Warehouse No. 519 Plant No. 4 Alterations, Detroit, MI, (1947-1948), Job No. 1507-E37Chrysler Corporation, Dodge Main Plant, Pedestrian Bridge, Detroit, MI, (1954), Job No. 1507-F37Taber Cadillac Company, Sales and Service Building, Hartford, CT, (1929), Job No. 150837United Aircraft Corporation, Employment Building Extension, East Hartford, CT, (1939), Job No. 1509-AB37United Aircraft Corporation, New Executive Dining Room, Second Floor Engineering Building, East Hartford, CT, (1939), Job No. 1509-AC37United Aircraft Corporation, Factory Building Addition, East Hartford, CT, (1939), Job No. 1509-AF37United Aircraft Corporation, Power House Addition, East Hartford, CT, (1939), Job No. 1509-AG37United Aircraft Corporation, New Cafeteria, East Hartford, CT, (1939), Job No. 1509-AK37United Aircraft Corporation, Factory Building South Addition, East Hartford, CT, (1940), Job No. 1509-AN37United Aircraft Corporation, Factory Building East Addition, East Hartford, CT, (1940), Job No. 1509-AO38United Aircraft Corporation, 20 Foot Experimental Test Houses, East Hartford, CT, (1941), Job No. 1509-BO38United Aircraft Corporation, 24 Foot Experimental Test Houses, East Hartford, CT, (1941), Job No. 1509-BP38United Aircraft Corporation, Extension to Engineering Building, East Hartford, CT, (1941), Job No. 1509-BR38United Aircraft Corporation, New Production Test Houses, East Hartford, CT, (1941), Job No. 1509-BS38United Aircraft Corporation, Temporary Engineering Building, East Hartford, CT, (1942), Job No. 1509-CE38United Aircraft Corporation, Boiler Plant Oil to Coal Conversion, East Hartford, CT, (1943), Job No. 1509-CH38United Aircraft Corporation, Boiler Plant Oil to Coal Conversion, East Hartford, CT, (1943), Job No. 1509-CK38United Aircraft Corporation, Supercharger Test Houses, East Hartford, CT, (1943), Job No. 1509-CL38United Aircraft Corporation, Two 24 Foot Diameter Experimental Test Cells, East Hartford, CT, (1943), Job No. 1509-CM38United Aircraft Corporation, Control Tower at Airport, East Hartford, CT, (1943), Job No. 1509-CO38United Aircraft Corporation, Installation Engineering Laboratory Building, East Hartford, CT, (1943), Job No. 1509-CQ38United Aircraft Corporation, Experimental Hanger Addition, East Hartford, CT, (1943), Job No. 1509-CR38United Aircraft Corporation, Cafeteria Building at Airport, East Hartford, CT, (1944), Job No. 1509-CV38United Aircraft Corporation, Eight 18 Foot Test Cells, East Hartford, CT, (1944), Job No. 1509-CW38United Aircraft Corporation, Thermodynamics Laboratory, East Hartford, CT, (1944), Job No. 1509-DC38United Aircraft Corporation, Engine Development Laboratory, East Hartford, CT, (1946), Job No. 1509-DO2 folders38United Aircraft Corporation, Dynamometer and Refrigerating Building, East Hartford, CT, (1946), Job No. 1509-DP38United Aircraft Corporation, X-Ray Division Addition, East Hartford, CT, (1946), Job No. 1509-DQ38United Aircraft Corporation, Research Department Burner Test Rig, East Hartford, CT, (1948), Job No. 1509-DS38United Aircraft Corporation, Power House Addition, East Hartford, CT, (1950), Job No. 1509-DX38United Aircraft Corporation, Additional 18 Foot Test Cells, East Hartford, CT, (1950), Job No. 1509-EA38United Aircraft Corporation, Additions to Cells X-22 to X-25 Inclusive, East Hartford, CT, (1952), Job No. 1509-EB38United Aircraft Corporation, New Test Cells at Willgoos Laboratory, East Hartford, CT, (1952) Job No. 1509-ED38United Aircraft Corporation, Willgoos Laboratory Air Facilities Expansion, East Hartford, CT, (1953), Job No. 1509-EH38United Aircraft Corporation, Additions to Preparation Room and Train Shed, East Hartford, CT, (1953), Job No. 1509-EL38United Aircraft Corporation, Test Cells X-212 and X-213, East Hartford, CT, (1953), Job No. 1509-EQ38United Aircraft Corporation, Ventilating Stack between Silencers at Willgoos Laboratory, East Hartford, CT, (1953), Job No. 1509-ER38United Aircraft Corporation, Underground Communication Center, East Hartford, CT, (1954), Job No. 1509-EV38United Aircraft Corporation, Willgoos Laboratory Engine Development Facilities, East Hartford, CT, (1956), Job No. 1509-FC2 folders38United Aircraft Corporation, Power House Alterations and Additions, East Hartford, CT, (1956), Job No. 1509-FH38United Aircraft Corporation, Willgoos Laboratory Damage Survey, East Hartford, CT, (1959), Job. No. 1509-FN38United Aircraft Corporation, New Test House, East Hartford, CT, (1936), Job No. 1509-O38United Aircraft Corporation, Water Brake Test House, East Hartford, CT, (1937), Job No. 1509-R38United Aircraft Corporation, 18 Foot and 24 Foot Experimental Test Houses, East Hartford, CT, (1939), Job No. 1509-Y38United Aircraft Corporation, Third Floor to Engineering Building, East Hartford, CT, (1939), Job No. 1509-Z38Argonaut Realty Company, Chevrolet Parts Depot, Minneapolis, MN, (1929), Job No. 151138Detroit House of Correction, Administration and Cell Buildings, Detroit, MI, (1930-1931), Job No. 1513-K, M2 folders39Detroit House of Correction, Dining Hall, Detroit, MI, (1930-1931), Job No. 1513-L39Packard Motor Car Company, Sales and Service Building, Kansas City, MO, (1929), Job No. 151539Argonaut Realty Company, Chevrolet Parts Depot, Louisville, KY, (1929), Job No. 151739United Aircraft Corporation, South Extension to Hot Foaming Operation, East Hartford, CT, (1943), Job No. 1519-N39United Aircraft Corporation, Two 32 Foot Diameter Propeller Test Houses, East Hartford, CT, (1943), Job No. 1519-Q39United Aircraft Corporation, Addition to South Side of Plant, East Hartford, CT, (1947), Job No. 1519-S39United Aircraft Corporation, Hamilton Standard Building Addition, East Hartford, CT, (1951), Job No. 1519-W39Argonaut Realty Company, Chevrolet Parts Depot, Pittsburgh, PA, (1929), Job No. 15202 folders39Intercity Trucking Company, Terminal Building, Detroit, MI, (1929), Job No. 152439Grace Hospital, Nurses Home, Detroit, MI, (1929), Job No. 152539Grace Hospital, Building Addition, Detroit, MI, (1930-1931), Job No. 152739Grace Hospital Addition, Brush and Willis Streets, Detroit, Michigan (1930-1931) Job No. 1527Completed Interiors and Exterior of Building by O. R. Forster Co., Commercial Photographers5 prints (black-and-white; 7-1/2x9-3/4-inch)11/4/1930-10/2/19319New York Times Annex Addition, New York, New York (1930-1931) Job No. 1528Construction of Building36 prints (black-and-white; 7-1/2x9-1/2-inch)8/27/1930-4/21/19314

    (13 prints by N. L. Coe and Son and 23 prints by Irving Underhill, Photographer, Inc.)

    Argonaut Realty Company, United Motors Service Building, Philadelphia, PA, (1929-1930), Job No. 152939Kelsey-Hayes Wheel Company, Military Avenue Press Shop Addition, Detroit, MI, (1929-1930), Job No. 153739Argonaut Realty Company, Chevrolet Parts Depot, Baltimore, MD, (1930), Job No. 154739Ann J. Kellogg School, Battle Creek, Michigan (1930-1931) Job No. 1549Construction of Building by unknown photographer, 5/5/1930-3/12/193136 prints (black-and-white; 8x10-inch)4Parker Pen Company, Alterations and Additions to Present Buildings, Janesville, WI, (1930), Job No. 155039Michigan State Hospital, Administration Building, Ypsilanti, MI, (1930-1931), Job No. 155339Michigan State Hospital, Dining Room, Ypsilanti, MI, (1930), Job No. 1553-B39Michigan State Hospital, Continued Treatment Building, Ypsilanti, MI, (1930-1931), Job No. 1553-C39Michigan State Hospital, Warehouse and Laundry Buildings, Ypsilanti, MI, (1930-1931), Job No. 1553-E39Michigan State Hospital, Power House, Ypsilanti, MI, (1930-1931), Job No. 1553-F39Michigan State Hospital, Dormitory and Staff Apartment Building, Ypsilanti, MI, (1931), Job No. 1553-J, K39Michigan State Hospital, Patients' Type B and C Buildings, Ypsilanti, MI, (1937-1938), Job No. 1553-P, Q4 folders39Michigan State Hospital, Patients' Type B and C Buildings, Ypsilanti, MI, (1937-1938), Job No. 1553-P, Q1 folder40Michigan State Hospital, Occupational Therapy and Employees Buildings, Ypsilanti, MI, (1937-1938), Job No. 1553-R, S3 folders40Michigan State Hospital, Alterations and Additions to Present Hospital Buildings, Ypsilanti, MI, (1938), Job No. 1553-W40Michigan State Hospital, Men's C Building, Ypsilanti, MI, (1938-1939), Job No. 1553-Y3 folders40Michigan State Hospital, Women's C Building, Ypsilanti, MI, (1938-1939), Job No. 1553-Y3 folders40Michigan State Hospital, Dining Room and Kitchen Building, Ypsilanti, MI, (1938-1939), Job No. 1553-Z3 folders40Ford Motor Company, Assembly Building, Richmond, CA, (1930-1931), Job No. 15624 folders40Autotrust Corporation Forge Shop, Moscow, U.S.S.R. (1930) Job No. 1563Construction of Steel Structure, received by Albert Kahn, Inc.4 prints (black-and-white; 8x10)5/5/193010

    (prints by the Conrad Studio, Allentown, PA)

    Ford Motor Company, Assembly Building, Buffalo, NY, (1930-1932), Job No. 15682 folders40Ford Motor Company, Assembly Building, Buffalo, NY, (1930-1932), Job No. 15684 folders41Ford Motor Company, Assembly Building, Seattle, WA, (1931-1932), Job No. 15744 folders41H.J. Heinz Company, Warehouse Building, Detroit, MI, (1930-1931), Job No. 157841New Center Development Corporation Building, Detroit, MI, (1931), Job No. 158541New Center Development Corporation, Building Alterations, Detroit, MI, (1946-1947), Job No. 1585-E41Ford Motor Company, Assembly Building Terrenosy Factories, Mexico City, Mexico, (1931-1932), Job No. 15899 folders41Kellogg Company of Canada, Factory Building, London, Ontario, Canada, (1934), Job No. 1590-B41Southeastern Junior High School, Battle Creek, MI, (1931-1932), Job No. 159342Richman Brothers Company, Store Building, Detroit, MI, (1931), Job No. 159642University of Notre Dame, Power House, South Bend, IN, (1931-1932), Job No. 160142University of Notre Dame, Power House Addition, South Bend, IN, (1952-1953), Job No. 1601-A42First National Bank, Redford Branch Alterations, Detroit, MI, (1931), Job No. 160842W.K. Kellogg Company, Kellogg Junior High School and Auditorium, Battle Creek, MI, (1931-1932), Job No. 161042Ford Motor Company, Manufacturing Building, Ypsilanti, MI, (1932), Job No. 161142Ford Motor Company, Administration Building Addition, Ypsilanti, MI, (1950), Job No. 1611-R42General Motors Exhibition Building, Chicago, Illinois (1932-1933) Job No. 1614Construction of Building by Hedrich-Blessing Studio, 5/23/1932-3/9/193335 prints (black-and-white; 7-1/2x9-1/2-inch), 2 prints (black-and-white; by unknown photographer; 8x10-inch)4W.K. Kellogg Company, Warehouse West End Addition to Building No. 2, Battle Creek, MI, (1932-1933), Job No. 1617-A42W.K. Kellogg Company, Warehouse East End Addition to Building No. 2, Battle Creek, MI, (1932-1933), Job No. 1617-B42W.K. Kellogg Company, Addition to Building Nos. 2, 3, and 17, Battle Creek, MI, (1936-1937), Job No. 1617-G42Ford Motor Company, Service Building, Alexandria, VA, (1932), Job No. 16202 folders42Providence Journal, Publishing Building, Providence, RI, (1933-1934), Job No. 163942Chrysler Corporation, Jefferson Plant, Personnel Building, Detroit, MI, (1945-1946), Job No. 1646-AD42Chrysler Corporation, Jefferson Plant, Service Building, Detroit, MI, (1945-1946), Job No. 1646-AK42Chrysler Corporation, Kercheval Plant, Building No. 1 Alterations and Additions, Detroit, MI, (1945-1946), Job No. 1646-AL42Chrysler Corporation, Jefferson Plant, Conveyor Bridge, Detroit, MI, (1945), Job No. 1646-AO42Chrysler Corporation, Jefferson Plant, Building No. 52B, Detroit, MI, (1945-1946), Job No. 1646-AP42Chrysler Corporation, Jefferson Plant, Oil Unloading Station and Connecting Tunnel, Detroit, MI, (1945), Job No. 1646-AT42Chrysler Corporation, Jefferson Plant, Two Story Body Paint Building No. 41, Detroit, MI, (1954-1955), Job No. 1646-CE2 folders42Chrysler Corporation, Jefferson Plant, Two Story Body Paint Building No. 41, Detroit, MI, (1954-1955), Job No. 1646-CE1 folder43Chrysler Corporation, Jefferson Plant, Bridge over Jefferson Avenue, Building No. 70, Detroit, MI, (1955), Job No. 1646-CF43Chrysler Corporation, Jefferson Plant, Court Building No. 71 between Buildings No. 21 and No. 52, Detroit, MI, (1954-1955), Job No. 1646-CG43Chrysler Corporation, Jefferson Plant, Boiler House Addition, Building No. 5G, Detroit, MI, (1954-1955), Job No. 1646-CH43Chrysler Corporation, Jefferson Plant, Removal of First Floor Columns and Addition of New Pits, Detroit, MI, (1963), Job No. 1646-CQ43Chrysler Corporation, Jefferson Plant, Pits for Delivery Conveyor with Water Test and Final Line Conveyors, Detroit, MI, (1963), Job No. 1646-CT43Chrysler Corporation, Machine Shop Extension to Present Service Building, Detroit, MI, (1941-1942), Job No. 1646-X43Chrysler Corporation, Sales and Service Building, Pittsburg, PA, (1934), Job No. 165443Ford Motor Company Exposition Building (Rotunda), Chicago, Illinois (1934) Job No. 1657Construction of Building by Kaufmann-Fabry Commercial Photographers25 prints (black-and-white; 7-1/2x9-1/2-inch), 1 prints (black-and-white, by unknown photographer; 8x10-inch)2/26/1934-5/23/19344Chrysler Corporation, Engineering Building No. 301, Highland Park, MI, (1942), Job No. 1659-AC43Chrysler Corporation, Buildings No. 109-A and No. 113-A, Highland Park, MI, (1950), Job No. 1659-BM2 folders43Chrysler Corporation, Auxiliary Crane Structure in Building No. 135A, Highland Park, MI, (1950-1951), Job No. 1659-BR43Chrysler Corporation, Alterations to Exhibition from 6th Floor Engineering Building No. 137, Highland Park, MI, (1952-1953), Job No. 1659-BS43Chrysler Corporation, North Parking Lot Building No. 129 and Viewing Yard, Highland Park, MI, (1955), Job No. 1659-BW43Chrysler Corporation, Addition to Engineering Building No. 130, Highland Park, MI, (1955-1956), Job No. 1659-BX43Chrysler Corporation, Addition of Second Floor to Engineering Building No. 136, Highland Park, MI, (1955-1956), Job No. 1659-BY43Chrysler Corporation, Engineering Building No. 128, Highland Park, MI, (1955-1956), Job No. 1659-BZ2 folders43Chrysler Corporation, Addition to Boiler House Building No. 309, Highland Park, MI, (1955), Job No. 1659-CA43Chrysler Corporation, Addition to East End of Engineering Building No. 132, Highland Park, MI, (1955-1956), Job No. 1659-CB43Chevrolet Motor Company, Assembly Building, Baltimore, MD, (1934-1935), Job No. 16722 folders43Chevrolet Motor Company, Present Plant Alterations and Additions, Baltimore, MD, (1961-1962), Job No. 1672-AA43Chevrolet Motor Company, New Salaried Personnel Parking Lot, Baltimore, MD, (1964), Job No. 1672-AD43Chevrolet Motor Company, New Driveaway Building, Baltimore, MD, (1964), Job No. 1672-AE43Chevrolet Motor Company, Assembly Plant East and West Additions, Baltimore, MD, (1964-1965), Job No. 1672-AF2 folders43Chevrolet Motor Company, New 8000 CFM Air Compressor, Baltimore, MD, (1964-1965), Job No. 1672-AG44Chevrolet Motor Company, Second Floor Addition for Truck Cab Shop, Baltimore, MD, (1959), Job No. 1672-K4 folders44Chevrolet Motor Company, Extension to Second Floor Cab Shop, Baltimore, MD, (1959-1960), Job No. 1672-N44Chevrolet Motor Company, Office Building Addition and Alterations, Baltimore, MD, (1961-1963), Job No. 1672-P3 folders44Chevrolet Motor Company, North and West Addition to Assembly Plant, Baltimore, MD, (1960-1961), Job No. 1672-Q6 folders44Chevrolet Motor Company, Boiler House and Incinerator Building, Baltimore, MD, (1960), Job No. 1672-R3 folders44Chevrolet Motor Company, Fisher Body Division, South and West Addition to Present Plant, Baltimore, MD, (1960-1962), Job No. 1672-S8 folders45Chevrolet Motor Company, Fisher Body Division, South and West Addition to Present Plant, Paint Mix and Storage Building, Baltimore, MD, (1960), Job No. 1672-S&T45Chevrolet Motor Company, Fisher Body Division, Paint Mix and Storage Building, Baltimore, MD, (1960-1961), Job No. 1672-T2 folders45Chevrolet Motor Company, Parking and Haulaway Facilities at North Side of Plant, Baltimore, MD, (1959-1960), Job No. 1672-V45Chevrolet Motor Company, Tank Farm and Pump House, Baltimore, MD, (1960-1961), Job No. 1672-W45Chevrolet Motor Company, Driveaway Building, Baltimore, MD, (1960), Job No. 1672-X45Chevrolet Motor Company, Assembly Building Alterations and Additions, Baltimore, MD, (1961-1962), Job No. 1672-Z2 folders45Chevrolet Motor Company, Assembly Building Alterations and Additions, Baltimore, MD, (1961-1962), Job No. 1672-Z1 folder46Ford Motor Company "Rotunda" Building, Dearborn, Michigan (1941) Job Nos. 1673-N & OConstruction of Alterations and Addition3 prints (black-and-white, by Sheill; 5x8-inch), 6 prints (black-and-white, by unknown photographer; 5x7-inch), 1 prints (black-and-white, by unknown photographer; 8x10-inch)one dated 10/21/194110Detroit News, WWJ Studios Radio Broadcasting Building, Detroit, MI, (1935-1936), Job No. 168146Argonaut Realty Company, General Motors Parts Warehouse, Charlotte, NC, (1935), Job No. 1684-A46Children's Fund of Michigan, General Hospital Extension, Traverse City, MI, (1935), Job No. 168846Ainsworth Manufacturing Corporation, Manufacturing Building, Detroit, MI, (1936), Job No. 169246Chevrolet Motor Company, Forge and Bumper Plant, Saginaw, MI, (1935), Job No. 1693-A46Booth Newspapers, Inc., Ann Arbor Daily News, Ann Arbor, MI, (1935-1936), Job No. 169746American Blower Corporation, Factory Building, Boiler House, Detroit, MI, (1935-1936), Job No. 1701 A46Chevrolet Motor Company, Commercial Body Building, Indianapolis, IN, (1935-1936), Job No. 17022 folders46Chevrolet Motor Company, Factory Building Extension, Indianapolis, IN, (1945-1947), Job No. 1702-F46Chevrolet Motor Company, Office Building and Cafeteria, Indianapolis, IN, (1946-1947), Job No. 1702-G46Chevrolet Motor Company, Boiler House Extension, Indianapolis, IN, (1946-1947), Job No. 1702-H46Chevrolet Motor Company, Personnel Building, Indianapolis, IN, (1946-1947), Job No. 1702-J46Chevrolet Motor Company, Paint Mixing and Storage Building, Indianapolis, IN, (1946-1947), Job No. 1702-K46Chevrolet Motor Company, Addition to South Side of Factory Building, Indianapolis, IN, (1953-1954), Job No. 1702-L3 folders46Chevrolet Motor Company, Shipping and Receiving Addition at West Side of Plant, Indianapolis, IN, (1960-1961), Job No. 1702-R46Chevrolet Motor Company, Boiler House Alterations and Additions, Indianapolis, IN, (1961), Job No. 1702-S2 folders46Argonaut Manufacturing Company, General Motors Corporation, Assembly Plant, Los Angeles, CA, (1936), Job No. 171046Argonaut Manufacturing Company, General Motors Corporation, Assembly Building Additions, Los Angeles, CA, (1940), Job No. 1710-D46Ford Motor Company, Exposition Building, Dallas, TX, (1936), Job No. 171446General Motors Corporation, Inc., Olds Motor Works, Engineering Building, Lansing, MI, (1936), Job No. 171546City Auto Stamping Company, Manufacturing Building West Addition, Toledo, OH, (1947-1948), Job No. 1718-D46City Auto Stamping Company, New Office Building, Toledo, OH, (1947-1948), Job No. 1718-E47City Auto Stamping Company, Power House, Toledo, OH, (1947-1948), Job No. 1718-G47Chrysler Corporation DeSoto Plant, Wyoming Avenue, Detroit, Michigan (1941) Job No. 1719-DConstruction of Addition to Press Shop by Manning Bros., Inc., Commercial Photographers14 prints (black-and-white; 7-1/2x9-1/2-inch), 1 prints (black-and-white; 8x10-inch)4/28/1941-11/13/194110Completed Building by Manning Bros., Inc.3 prints (black-and-white; 8x10-inch)received 1/21/194210Ford Motor Company, Factory Building, Milford, MI, (1937-1938), Job No. 172647General Motors Corporation, Truck and Coach Manufacturing Company, Additions and Alterations, Pontiac, MI, (1936), Job No. 172847General Motors Corporation, Truck and Coach Manufacturing Company, Addition to Coach and Sheet Metal Department, Pontiac, MI, (1940), Job No. 1728-C47General Motors Corporation, Truck and Coach Manufacturing Company, Storage Building Addition, Pontiac, MI, (1940), Job No. 1728-D47General Motors Corporation, Truck and Coach Manufacturing Company, Final Repair Building, Pontiac, MI, (1940-1941), Job No. 1728-E47General Motors Corporation, Truck and Coach Manufacturing Company, Concrete Drives and Steel Bridges, Pontiac, MI, (1941), Job No. 1728-F47General Motors Corporation, Truck and Coach Manufacturing Company, Personnel Building, Pontiac, MI, (1941-1942), Job No. 1728-G47General Motors Corporation, Truck and Coach Manufacturing Company, Assembly Building, Pontiac, MI, (1945-1946), Job No. 1728-J47General Motors Corporation, Truck and Coach Manufacturing Company, Wagon Concourse Locker Room and Cafeteria "A," Pontiac, MI, (1946-1947), Job No. 1728-K47General Motors Corporation, Truck and Coach Manufacturing Company, Storage Shed Extension, Pontiac, MI, (1946-1947), Job No. 1728-L47General Motors Corporation, Truck and Coach Manufacturing Company, Warehouse, Pontiac, MI, (1946), Job No. 1728-M47General Motors Corporation, Truck and Coach Manufacturing Company, Engineering Building, Pontiac, MI, (1946-1947), Job No. 1728-N47General Motors Corporation, Truck and Coach Manufacturing Company, Dynamometer Test Building, Pontiac, MI, (1946-1948), Job No. 1728-O47General Motors Corporation, Truck and Coach Manufacturing Company, Engine Shop, Pontiac, MI, (1946-1947), Job No. 1728-P47General Motors Corporation, Linden Division, Assembly Plant, Linden, NJ, (1936-1937), Job No. 173447General Motors Corporation, Linden Division, West Side Factory Expansion, Acetylene Building, Linden, NJ, (1940), Job No. 1734-E, F48Lady Esther, Inc., Manufacturing Building, Clearing, Illinois (1937) Job No. 1736AConstruction of Building by Chicago Architectural Photographing Company21 prints (black-and-white; 7-1/2x9-1/2-inch)8/30/1937-11/22/19374Burroughs Adding Machine Company Factory Building, Plymouth, Michigan (1937) Job No. 1737Construction of Building by Manning Bros., Inc., Commercial Photographers56 prints (black-and-white; 8x10-inch)2/22/1937-11/1/19379Construction of Building by Multi-Color3 prints (black-and-white; 8x10-inch)late 19379Aerial View of Construction by Don Walker, Detroit News Airphoto1 prints (black-and-white; 8x10-inch)8/25/19379Chrysler Corporation, Amplex Division, Factory Building Addition, Detroit, MI, (1947-1948), Job No. 1740-B48H.J. Heinz Company, Strained Foods Manufacturing Building, Medina, NY, (1937), Job No. 174648Wright Aeronautical Corporation, Assembly Building Addition, Paterson, NJ, (1937), Job No. 1750-A48Wright Aeronautical Corporation, Building No. 4A, Paterson, NJ, (1937), Job No. 1750-B48Wright Aeronautical Corporation, Assembly Building North End Extension, Paterson, NJ, (1938-1939), Job No. 1750-D48Wright Aeronautical Corporation, New Factory Building, Paterson, NJ, (1939-1940), Job No. 1750-H48Wright Aeronautical Corporation, Dynamometer and Propeller Test Cells, Paterson, NJ, (1940-1941), Job No. 1750-J, L, N, P48Wright Aeronautical Corporation, Foundry Extension, Paterson, NJ, (1939-1940), Job No. 1750-K48Wright Aeronautical Corporation, Assembly Building North End Extension, Paterson, NJ, (1940), Job No. 1750-M48Wright Aeronautical Corporation, 30 Foot Flight Propeller Test Cells, Paterson, NJ, (1941), Job No. 1750-Q48Wright Aeronautical Corporation, Motor Packing and Shipping Building, Paterson, NJ, (1940-1941), Job No. 1750-R48
    Job No. 1752-1992Glenn L. Martin Company Factory Buildings, Baltimore, Maryland (1937-1942) Job Nos. 1752 (Assembly Building) & 1752A (Engineering Building)Construction of Buildings by unknown photographer8x10-inch, black-and-white prints4135 prints5/5/1937-6/10/19374233 prints6/11/1937-7/14/19374334 prints7/16/1937-8/27/19374435 prints9/1/1937-10/06/19374530 prints10/7/1937-12/10/19374Factory Building F by unknown photographer7 prints (black-and-white; 8-1/2x10-inch)2/14/1939-4/25/19394Trailer Camps by unknown photographer7 prints (black-and-white; 8x10-inch)8/5/19414Work Done by Others8x10-inch, black-and-white prints1, Apron Rear Gate to Building D3 prints8/5/1941-12/22/194142, Plant #1 Incinerator12 prints9/8/1941-12/22/194143, Plant #2 Incinerator15 prints9/8/1941-12/22/194144, Eastern Avenue Cloverleaf4A31 prints11/10/1941-1/5/19424B25 prints1/13/1942-3/23/194245, River Channel Dredging4 prints11/28/1941-12/22/194146, Lookout Tower1 prints1/13/19424The Glenn L. Martin Company, Engineering Building Extension, Middle River, MD, (1953), Job No. 1752-BE8 folders48The Glenn L. Martin Company, Employment Building, Middle River, MD, (1940-1941), Job No. 1752-E48The Glenn L. Martin Company, "D" Navy Building, Middle River, MD, (1940-1941), Job No. 1752-F1 folder48The Glenn L. Martin Company, "D" Navy Building, Middle River, MD, (1940-1941), Job No. 1752-F1 folder49The Glenn L. Martin Company, Five Foot Box Culvert under Parking Lot No. 6, Middle River, MD, (1941), Job No. 1752-F49The Glenn L. Martin Company, Tunnel from "C" to "D" Building, Middle River, MD, (1941-1942), Job No. 1752-F49The Glenn L. Martin Company, Plant No. 1, Platform Canopy, Middle River, MD, (1941), Job No. 1752-G49The Glenn L. Martin Company, Plant No. 2, "A" Army Building, Middle River, MD, (1940-1941), Job No. 1752-G3 folders49The Glenn L. Martin Company, Plant No. 2, Apron and Taxi Way, Middle River, MD, (1941), Job No. 1752-G49The Glenn L. Martin Company, Engineering Building Addition, Middle River, MD, (1941), Job No. 1752-H2 folders49The Glenn L. Martin Company, Plant No. 2, Oil House, Middle River, MD, (1941), Job No. 1752-K49The Glenn L. Martin Company, Flight Hangars, Middle River, MD, (1937-1941), Job No. 1752-L2 folders49The Glenn L. Martin Company, Plant No. 2, Boiler House, Middle River, MD, (1941), Job No. 1752-M49The Glenn L. Martin Company, Plant No. 2, Personnel Building, Middle River, MD, (1941), Job No. 1752-N49The Glenn L. Martin Company, Airport Administration Building, Middle River, MD, (1941-1942), Job No. 1752-O49The Glenn L. Martin Company, Additional Three Hangar Building at Plant No. 1, Middle River, MD, (1941), Job No. 1752-S49The Glenn L. Martin Company, Plant No. 2, Excavation for Paint House, Middle River, MD, (1941-1942), Job No. 1752-T49The Glenn L. Martin Company, Plant No. 2, Pump House, Middle River, MD, (1941), Job No. 1752-V49The Glenn L. Martin Company, Plant No. 2, Drop Hammer Building, Middle River, MD, (1941), Job No. 1752-W49Argonaut Realty Corporation, Moraine Products Division, Dayton, OH, (1937), Job No. 1754-A49Chevrolet Motor Company, Manufacturing Plant, Tonawanda, NY, (1937-1938), Job No. 17562 folders49Chevrolet Motor Company, Office Building Addition and Modernization, Tonawanda, NY, (1965), Job No. 1756-J50Chevrolet Motor Company, East Cafeteria and Locker Room, Tonawanda, NY, (1964-1965), Job No. 1756-K50Chevrolet Motor Company, New Air Compressors for Power House, River Pump House Addition, Tonawanda, NY, (1964 1967), Job No. 1756-L, N50General Motors Corporation, Harrison Radiator Division, Manufacturing Building, Lockport, NY, (1938), Job No. 176250Electro-Motive Corporation, Manufacturing Plant Addition, McCook, IL, (1937-1938), Job No. 176350Chrysler Corporation Half-Ton Truck Plant, Warren, Michigan (1937-1938) Job No. 1766Construction of Building by Manning Bros., Inc.Black-and-white prints4130 prints (7-1/2x9-1/2-inch), 1 prints (by Don Walker, Detroit News Airphoto; 8x10-inch)9/3/1937-1/7/19384225 prints (7-1/2x9-1/2-inch), 3 prints (by Fred Eggert; 8x10-inch)1/25/1938-4/26/19384Dodge Truck Division, Chrysler Corporation, Addition to Building Nos. 301 and 102, Detroit, MI, (1951), Job No. 1766-AB, AC50New Military Vehicle Service and Finishing Plant, U.S. Engineers Office, New Boiler House, Macomb County, MI, (1943-1944), Job No. 1766-K, L50Dodge Truck Division, Chrysler Corporation, Addition to Assembly Building No. 101, Macomb County, MI, (1945-1946), Job No. 1766-P50Dodge Truck Division, Chrysler Corporation, Addition to Boiler House No. 103, Macomb County, MI, (1945-1946), Job No. 1766-Q50Ford Motor Company, Press Building, Dearborn, MI, (1937-1938), Job No. 17724 folders50United Air Lines, Office Building, Chicago, IL, (1937-1938), Job No. 177650United Air Lines, General Office Building Addition, Chicago, IL, (1941-1942), Job No. 1776-B50Ford Motor Company Exposition Building, New York World's Fair, (1938-1940) Job No. 17831939Early Construction of Building by Knickerbocker Photo Service12 prints (black-and-white; 7-1/2x9-1/2-inch)3/15/1938-4/26/19389Construction of Building by Albert Rothschild, Commercial Photographer104 prints (black-and-white; 7-1/2x9-1/2-inch)151 prints5/4/1938-10/27/19389253 prints11/3/1938-4/28/19399Construction of Building Alterations by unknown photographer96 prints (black-and-white; 7-1/2x9-1/2-inch)145 prints1/18/1940-2/29/19409251 prints3/7/1940-5/1/19409Albert Kahn and Others, Surveying Construction1 prints (black-and-white; 5x7-1/2-inch)8/20/19409General Motors Corporation Exposition Building, New York World's Fair, (1938-1939) Job No. 1784-A1939Construction of Building by Eric J. Baker, Elizabeth, N. J.77 prints (black-and-white; 7-1/2x9-1/2-inch)10

    (64 prints by Baker and 13 prints by unknown photographer)

    136 prints8/1/1938-10/20/193810241 prints10/25/1938-3/21/193910
    Construction of Foundation by unknown photographer25 prints (black-and-white; 2-3/4x4-1/2 inch), 4 prints (black-and-white; 3x5-inch)8/10/1938-8/30/193810
    Curtiss-Wright Corporation, Curtiss Airplane Division, Buffalo, New York (1938) Job No. 1785Construction of Dope Room and Zinc Foundry by unknown photographer, 3/19/1938-4/9/193814 prints (black-and-white; 2-3/4x4-1/2-inch)4Kalamazoo School District, Additions and Alterations to Existing School Building, Kalamazoo, MI, (1938-1939), Job No. 179250General Motors Corporation, Buick Motor Division, Overhead Traffic Bridge, Flint, MI, (1938-1939), Job No. 179550General Motors Corporation, Buick Motor Division, Service Parts Storage Building, Flint, MI, (1938-1940), Job No. 179550General Motors Corporation, Buick Motor Division, Rear Axle Building, Flint, MI, (1940), Job No. 1795-A51General Motors Corporation, Buick Motor Division, Administration Building Addition, Flint, MI, (1956), Job No. 1795-AP51General Motors Corporation, Buick Motor Division, Building No. 71-B, Flint, MI, (1950-1951), Job No. 1795-Q51General Motors Corporation, Buick Motor Division, Building No. 36, Flint, MI, (1950-1952), Job No. 1795-S51General Motors Corporation, Buick Motor Division, Building No. 43, Flint, MI, (1951-1952), Job No. 1795-T51Toledo Scale Company, Office and Factory Building, Toledo, OH, (1939), Job No. 179951Toledo Scale Company, Factory Building and Boiler House Extension, Toledo, OH, (1941), Job No. 1799-A51Toledo Scale Company, North Side Factory Building Addition, Toledo, OH, (1942), Job No. 1799-C51Toledo Scale Company, Factory Building and Boiler House Additions, Toledo, OH, (1947-1948), Job No. 1799-D, E51Toledo Scale Company, Factory Building North Addition, Toledo, OH, (1948), Job No. 1799-F51Niles-Bement-Pond Company, Pratt and Whitney Division, Factory and Office Buildings, Garage, Pattern Shop, Boiler House, West Hartford, CT, (1939-1940), Job No. 1800 A, B51Niles-Bement-Pond Company, Pratt and Whitney Division, Die Storage Building, West Hartford, CT, (1940-1941), Job No. 1800-D51Niles-Bement-Pond Company, Pratt and Whitney Division, Factory Building, Northwest Corner Extension, West Hartford, CT, (1941), Job No. 1800-E51Niles-Bement-Pond Company, Pratt and Whitney Division, Machine Tool Building, West Hartford, CT, (1942), Job No. 1800-H51Niles-Bement-Pond Company, Pratt and Whitney Division, Gauge Building, West Hartford, CT, (1942), Job No. 1800-J51R.C.A. Manufacturing Company, Inc., Addition to Indianapolis Plant, Camden, NJ, (1939), Job No. 180251Keyston Steel and Wire Company, Office Building, Peoria, IL, (1939), Job No. 180351United Aircraft Corporation, Vought-Sikorsky Division, Proposed Addition to Factory Building, Stratford, CT, (1939), Job No. 180451United Aircraft Corporation, Vought-Sikorsky Division, 400 Foot Addition to Manufacturing Plant, Stratford, CT, (1940-1941), Job No. 1804-A51United Aircraft Corporation, Vought-Sikorsky Division, Factory Building Extension and New Office Addition, Stratford, CT, (1942-1943), Job No. 1804-B51United Aircraft Corporation, Chance-Vought Division, Office Building Extension, Stratford, CT, (1943-1944), Job No. 1804-F51United Aircraft Corporation, Chance-Vought Division, Two Story Factory Addition, Stratford, CT, (1943-1944), Job No. 1804-G2 folders51United Aircraft Corporation, Chance-Vought Division, Main Boiler Plant Addition, Stratford, CT, (1943-1944), Job No. 1804-H51United Aircraft Corporation, Chance-Vought Division, South Factory Plant Spray Booth, Stratford, CT, (1943), Job No. 1804-J51United Aircraft Corporation, Chance-Vought Division, Revision and Addition to Electric Distribution System, Stratford, CT, (1943), Job No. 1804-K51United Aircraft Corporation, Chance-Vought Division, Scrap Segregation Building, Stratford, CT, (1944), Job No. 1804-L51United Aircraft Corporation, Chance-Vought Division, Paint Storage Building, Stratford, CT, (1944), Job No. 1804-M51United Aircraft Corporation, Chance-Vought Division, West Employees Entrance, Stratford, CT, (1944), Job No. 1804-N51United Aircraft Corporation, Chance-Vought Division, Fire House, Stratford, CT, (1944), Job No. 1804-O51United Aircraft Corporation, Chance-Vought Division, Cafeteria Alterations, Stratford, CT, (1944-1945), Job No. 1804-R51United Aircraft Corporation, Chance-Vought Division, Incinerator Building, Stratford, CT, (1945), Job No. 1804-V51United Aircraft Corporation, Chance-Vought Division, Paint Storage Building Alterations and Addition, Stratford, CT, (1945), Job No. 1804-W51United Aircraft Corporation, Chance-Vought Division, Alterations to Building for Sheridan Stretch Press Area 51 Main Plant, Stratford, CT, (1944), Job No. 1804-X51Ohio Steel Foundry Company, Roll and Heavy Machine Shop, Lima, OH, (1939), Job No. 180651Ohio Steel Foundry Company, Breech Ring Plant, Lima, OH, (1942-1943), Job No. 1806-B51Ohio Steel Foundry Company, Machine Shop Addition, Lima, OH, (1942), Job No. 1806-C52Ohio Steel Foundry Company, Personnel Building, Lima, OH, (1943), Job No. 1806-D52Ohio Steel Foundry Company, Roll and Heavy Machine Shop Addition, Lima, OH, (1951-1952), Job No. 1806-J52Ohio Steel Foundry Company, Forge Shop, Lima, OH, (1957-1958), Job No. 1806-K3 folders52Hanes Hosiery Mills Company, Knitting Mills, Winston-Salem, NC, (1939), Job No. 180752Chrysler Corporation, Oakland Parts Warehouse, San Leandro, CA, (1939), Job No. 180852Chrysler Corporation, Body Building, San Leandro, CA, (1951-1953), Job No. 1808-C3 folders52Chrysler Corporation, Alterations at Southwest Corner of Body Building for Propeller Press and Furnace, San Leandro, CA, (1952-1953), Job No. 1808-E52Chrysler Corporation, Enclosure for Paint Rooms, Fire Walls, and Conveyor Bridge from Body to Assembly Building, San Leandro, CA, (1952-1953), Job No. 1808-F52Heald Machine Company, New Office Building and Factory Building, Worcester, MA, (1939-1940), Job No. 1811-A52Heald Machine Company, Office Building, Worcester, MA, (1940), Job No. 1811-B52United Airlines Transport Corporation, Office Building and Hangar, Portland, OR, (1940), Job No. 182752Aviation Manufacturing Corporation, Stinson Aircraft Division, Factory and Office Building, Nashville, TN, (1939-1940), Job No. 182852B.F. Goodrich Company, Addition to Southeast Corner of Present Plant, Oaks, PA, (1943), Job No. 1840-E52Curtiss-Wright Corporation, Curtiss Aeroplane Division, Factory and Office Building, Boiler House, Truck Garage, Oil Storage, Switch House, Buffalo, NY, (1940-1941), Job No. 1841 A, B, C, D1 folder52Curtiss-Wright Corporation, Curtiss Aeroplane Division, Factory and Office Building, Boiler House, Truck Garage, Oil Storage, Switch House, Buffalo, NY, (1940-1941), Job No. 1841 A, B, C, D1 folder53Curtiss-Wright Corporation, Curtiss Aeroplane Division, Final Assembly Bay Extension, East and West Additions to Airport Plant No. 2, Boiler House Addition, Manufacturing Building Addition, Drop Hammer Building, Office Building Extension, Expansion Program, Buffalo, NY, (1942-1944), Job No. 1841-K, L, M, O, P, R, W, X53Fairchild Engine and Airplane Corporation, Ranger Engineering Corporation Division, Factory Additions, Farmingdale, Long Island, NY, (1940), Job No. 1843-A, B, C53Fairchild Engine and Airplane Corporation, Ranger Aircraft Engines Division, Engine Test Houses, Farmingdale, Long Island, NY, (1941), Job No. 1843-E53Fairchild Engine and Airplane Corporation, Ranger Aircraft Engines Division, Factory and Office Building Additions, Farmingdale, Long Island, NY, (1941), Job No. 1843-F53Fairchild Engine and Airplane Corporation, Ranger Aircraft Engines Division, Hangar, Farmingdale, Long Island, NY, (1942), Job No. 1843-G53Fairchild Engine and Airplane Corporation, Ranger Aircraft Engines Division, Addition to South Side of Present Building, Farmingdale, Long Island, NY, (1942), Job No. 1843-K2 folders53Fairchild Engine and Airplane Corporation, Ranger Aircraft Engines Division, Boiler House Alterations and Additions, Farmingdale, Long Island, NY, (1942-1943), Job No. 1843-L53The Sherwin-Williams Company, Chemical Products Building, Chicago, IL, (1940-1941), Job No. 184553The Sherwin-Williams Company, Warehouse Building, Chicago, IL, (1940-1941), Job No. 1845-A53The City Machine and Tool Company, Factory Building, Toledo, OH, (1940), Job No. 184653Westinghouse Electric and Manufacturing Company, Enameling Building, Mansfield, OH, (1940), Job No. 184753Curtiss-Wright Corporation, Propeller Division, New Boiler House, Caldwell, NJ, (1940-1941), Job No. 185353Curtiss-Wright Corporation, Propeller Division, Factory and Office Building, Caldwell, NJ, (1940-1941), Job No. 1853-A53Curtiss-Wright Corporation, Propeller Division, Administration Building, Caldwell, NJ, (1940-1941), Job No. 1853-B53Curtiss-Wright Corporation, Propeller Division, Factory Extension, Caldwell, NJ, (1940-1941), Job No. 1853-F53Curtiss-Wright Corporation, Propeller Division, Sewage Disposal Plant, Caldwell, NJ, (1940), Job No. 1853-G53Curtiss-Wright Corporation, Propeller Division, Propeller Test Cells, Caldwell, NJ, (1943), Job No. 1853-L53Ethyl Gasoline Corporation, New Engineering Research Building, Ferndale, MI, (1940-1942), Job No. 185453Ethyl Gasoline Corporation, Alterations and Additions to Plant, Ferndale, MI, (1954-1955), Job No. 1854-M53Jacobs Manufacturing Company, Factory and Office Building, Boiler House, Hartford, CT, (1940-1941), Job No. 1857 A53Jacobs Manufacturing Company, Factory and Office Building Addition, Hartford, CT, (1947-1948), Job No. 1857-B53Jacobs Manufacturing Company, Addition to East Side of Plant, Hartford, CT, (1951-1952), Job No. 1857-D53Taylorcraft Aviation Corporation, Aircraft Plant, Alliance, OH, (1940), Job No. 185953Todd Shipyards Corporation, Robins Dry Dock and Repair Company, Personnel Building, Brooklyn, NY, (1940-1941), Job No. 1860-A54Todd Shipyards Corporation, Robins Dry Dock and Repair Company, Compressed Air Systems, Brooklyn, NY, (1940-1941), Job No. 1860-B54Todd Shipyards Corporation, Robins Dry Dock and Repair Company, Manufacturing and Storage Building, Brooklyn, NY, (1941-1942), Job No. 1860-C54Todd Shipyards Corporation, Robins Dry Dock and Repair Company, Blacksmith Shop, Brooklyn, NY, (1941-1942), Job No. 1860-F54Todd Shipyards Corporation, Robins Dry Dock and Repair Company, Boiler House, Brooklyn, NY, (1941-1942), Job No. 1860-G54Todd Shipyards Corporation, Robins Dry Dock and Repair Company, Substation, Brooklyn, NY, (1941-1942), Job No. 1860-K54Todd Shipyards Corporation, Robins Dry Dock and Repair Company, Garage and Locker Rooms, Brooklyn, NY, (1941-1942), Job No. 1860-L54Fairchild Aircraft Corporation, Manufacturing Plant, Hagerstown, MD, (1940-1941), Job No. 186154Fairchild Aircraft Corporation, Factory Additions, Hagerstown, MD, (1941-1942), Job No. 1861-B54Fairchild Aircraft Corporation, New Hangar Building, Hagerstown, MD, (1943-1944), Job No. 1861-J54Fairchild Aircraft Corporation, Manufacturing Building East Addition, Hagerstown, MD, (1943-1944), Job No. 1861-K5 folders54Fairchild Aircraft Corporation, Sewage Treatment Plant, Hagerstown, MD, (1943-1944), Job No. 1861-M54Fairchild Aircraft Corporation, Main Sewers, Hagerstown, MD, (1944), Job No. 1861-N54Fairchild Aircraft Corporation, Flight Test Hangar, Hagerstown, MD, (1945), Job No. 1861-X54City of Denver, Municipal Hangar Building No. 3, Denver, CO, (1940-1941), Job No. 186254General Electric Company, Materials and Processes Laboratory Building, Schenectady, NY, (1960), Job No. 1865-D54United Aircraft Corporation, Vought-Sikorsky Aircraft Division, Engineering Building Addition, Stratford, CT, (1940-1941), Job No. 186654United Aircraft Corporation, Vought-Sikorsky Aircraft Division, Experimental Building Addition, Stratford, CT, (1942), Job No. 1866-A54United Aircraft Corporation, Vought-Sikorsky Aircraft Division, Test Hangar Building, Stratford, CT, (1942-1944), Job No. 1866-B54United Aircraft Corporation, Chance-Vought Aircraft Division, Plant Intercepting Sanitary Sewer, Stratford, CT, (1943), Job No. 1866-F54United Aircraft Corporation, Vought-Sikorsky Aircraft Division, Test Hangar Building No. 2, Stratford, CT, (1943-1944), Job No. 1866-G54United Aircraft Corporation, Chance-Vought Aircraft Division, S-44 Building Alterations, Stratford, CT, (1943-1944), Job No. 1866-H54United Aircraft Corporation, Chance-Vought Aircraft Division, Experimental Hangar, Stratford, CT, (1943-1944), Job No. 1866-J54United Aircraft Corporation, Chance-Vought Aircraft Division, South Employees Entrance, Stratford, CT, (1943), Job No. 1866-K54United Aircraft Corporation, Chance-Vought Aircraft Division, Airplane Test Building, Stratford, CT, (1944), Job No. 1866-L54United Aircraft Corporation, Chance-Vought Aircraft Division, Three Story Addition to Engineering Building, Stratford, CT, (1944), Job No. 1866-M54United Aircraft Corporation, Chance-Vought Aircraft Division, S-44 Building Alterations, Stratford, CT, (1944), Job No. 1866-P54United Aircraft Corporation, Chance-Vought Aircraft Division, Universal Test Jig Foundation, Stratford, CT, (1944-1945), Job No. 1866-Q54Chrysler Corporation Tank Arsenal, Warren, Michigan (1940-1943) Job No. 1867Construction of Plant by unknown photographers7-1/2x10-inch, black-and-white prints5133 prints8/29/1940-9/27/19405235 prints10/4/1940-10/25/19405338 prints11/1/1940-11/22/19405438 prints11/29/1940-12/20/19405544 prints12/27/1940-1/17/19415634 prints1/20/1941-2/14/19415732 prints2/21/1941-3/21/19415835 prints3/24/1941-5/29/1941597 prints (7x9-inch), 39 prints (8x10-inch)6/17/1941-1/4/19435Chrysler Corporation, Tank Arsenal, Macomb County, MI, (1941), Job No. 186755Curtiss-Wright Corporation, Factory and Office Building, Robertson, MO, (1940-1941), Job No. 18682 folders55Curtiss-Wright Corporation, Factory and Office Building, Columbus, OH, (1941), Job No. 186955Curtiss-Wright Corporation, New Assembly Building, Columbus, OH, (1942-1943), Job No. 1869-J55Curtiss-Wright Corporation, Airplane Division, Flight Office Addition, Columbus, OH, (1944), Job No. 1869-M55Curtiss-Wright Corporation, Airplane Division, Firewall around Flight Hangar, Columbus, OH, (1944), Job No. 1869-P55Curtiss-Wright Corporation, Airplane Division, Storage Tank in Flight Hangar, Columbus, OH, (1944), Job No. 1869-R55Curtiss-Wright Corporation, Airplane Division, Service Building, Columbus, OH, (1943), Job No. 1869-T55Curtiss-Wright Corporation, Airplane Division, Water Conservation Program, Columbus, OH, (1944), Job No. 1869-V55Curtiss-Wright Corporation, Airplane Division, Fire and Police Station Building, Columbus, OH, (1944), Job No. 1869-W55Curtiss-Wright Corporation, Airplane Division, Maintenance Building Addition, Columbus, OH, (1944), Job No. 1869-Y55Curtiss-Wright Corporation, Airplane Division, Storage Building Addition, Columbus, OH, (1944), Job No. 1869-Z55Wright Aeronautical Corporation, New Magnesium Foundry Building, Fairlawn, NJ, (1940-1941), Job No. 187055Wallace Laboratories, Office and Manufacturing Building, North Brunswick, NJ, (1941-1942), Job No. 187155Wright Aeronautical Corporation, Machine, Assembly, and Office Buildings, Cincinnati, OH, (1940-1941), Job No. 18742 folders55Wright Aeronautical Corporation, North and South Shops, Magnesium and Aluminum Foundries, Test Cells, Boiler House, Compressor Buildings, Water Storage, Salvage and Refuse Building, Lockland, OH, (1942), Job No. 1874-AA -- AZ4 folders55Wright Aeronautical Corporation, North and South Shops, Magnesium and Aluminum Foundries, Test Cells, Boiler House, Compressor Buildings, Water Storage, Salvage and Refuse Building, Lockland, OH, (1942), Job No. 1874-AA -- AZ1 folder56Wright Aeronautical Corporation, Test Cells and Storage Building, Lockland, OH, (1941), Job No. 1874-C56Wright Aeronautical Corporation, Foundry Building, Lockland, OH, (1940-1941), Job No. 1874-D56Republic Aviation Corporation, Manufacturing and Assembly Building, Farmingdale, Long Island, NY, (1941), Job No. 18782 folders56Republic Aviation Corporation, Boiler House, Farmingdale, Long Island, NY, (1941), Job No. 1878-A56Republic Aviation Corporation, Experimental and Engineering Building No. 55 Alterations and Additions, Farmingdale, Long Island, NY, (1955-1956), Job No. 1878-C56Wright Aeronautical Corporation, New South Manufacturing Building, East Paterson, NJ, (1941-1943), Job No. 1880-D56Wright Aeronautical Corporation, New East Manufacturing Building Addition, East Paterson, NJ, (1941-1942), Job No. 1880-E56Wright Aeronautical Corporation, New Overpass Bridge and Clock House, East Paterson, NJ, (1942), Job No. 1880-F56Wright Aeronautical Corporation, Substation and Switch House, East Paterson, NJ, (1942), Job No. 1880-H56Wright Aeronautical Corporation, South Manufacturing Building Addition, East Paterson, NJ, (1942-1943), Job No. 1880-J56Curtiss-Wright Corporation, Steel Blade Propeller Plant, Beaver, PA, (1941-1942), Job No. 188256General Motors Corporation, Buick Motor Division, Aviation Engine Plant, Melrose Park, IL, (1941), Job No. 18833 folders56Hudson Motor Car Company, U.S. Naval Ordinance Plant, Centerline, MI, (1941-1942), Job No. 18843 folders56Hudson Motor Car Company, U.S. Naval Ordinance Plant, Centerline, MI, (1941-1942), Job No. 188410 folders57Thompson Aircraft Products, Inc., Manufacturing Building, Euclid, OH, (1941-1942), Job No. 18853 folders57Thompson Aircraft Products, Inc., Manufacturing Plant No. 2, Euclid, OH, (1942), Job No. 1885-E57Thompson Aircraft Products, Inc., Personnel and Service Building, Euclid, OH, (1942), Job No. 1885-L57Thompson Aircraft Products, Inc., Forge Shop Addition, Euclid, OH, (1951), Job No. 1885-P57Thompson Aircraft Products, Inc., Manufacturing Building Addition, Euclid, OH, (1951-1952), Job No. 1885-Q2 folders57Thompson Aircraft Products, Inc., Manufacturing Building Addition for Fork Lift Truck Storage, Euclid, OH, (1952), Job No. 1885-S57Thompson Aircraft Products, Inc., Boiler House Additions and Alterations, Euclid, OH, (1952-1953), Job No. 1885-T57The Glenn L. Martin Company, Manufacturing Building, Omaha, NE, (1941), Job No. 188657Ford Motor Company Willow Run Bomber Plant, Ypsilanti, Michigan (1941-1943) Job No. 1888Construction of Plant814 prints (black-and-white; 8x10-inch)5

    (prints by unknown photographer)

    1, #1-4240 printsSpring and Early Summer 194152, #43-82, Spring and Summer194140 prints53, #83-12240 printsSummer 194154, #123-16442 printsSummer 194155, #165-19439 prints (ten without numbers by Stegeman)Late Summer 1941-10/21/194156, #195-23440 prints11/3/1941-12/1/194157, #235-27541 prints12/1/1941-1/5/194258, #276-31540 prints1/5/1942-2/2/194259, #316-35540 prints2/2/1942-2/18/1942510, #356-39641 prints2/18/1942-4/2/1942611, #397-43540 prints4/2/1942-4/23/1942612, #436-47644 prints4/23/1942-5/12/1942613, #473-52350 prints5/19/1942-6/5/1942614, #524-57146 prints6/19/1942-7/6/1942615, #572-59319 prints7/1942-8/19/1942616, #595-63939 prints9/1942-1943617, #640-69441 prints1943618, #695-73440 prints1943619, #735-77540 prints1943-11/4/1943620, #776-82752 prints11/12/1943-12/24/19436
    Construction of Plant by unknown photographer3-1/2x4-3/4-inch, black-and-white prints with typed descriptions on reverse side140 prints9/12/1941-10/21/19416232 prints10/25/1941-2/19426
    Dodge Forge Plant, Forge and Heat Treat Building, Detroit, MI, (1941), Job No. 1889-A58Dodge Forge Plant, Extension to Duralumin Forge Plant, Detroit, MI, (1942), Job No. 1889-G58Dodge Forge Plant, Building 315 Alterations and Additions, Detroit, MI, (1949), Job No. 1889-J58Dodge Forge Plant, Crank Shaft Shop, Detroit, MI, (1950), Job No. 1889-K58Chevrolet Motor Company, Aviation Engine Plant No. 1, Tonawanda, NY, (1941-1942), Job No. 189258Chevrolet Motor Company, Addition to West Side of Building, Tonawanda, NY, (1942-1943), Job No. 1892-B58Chevrolet Motor Company, Aviation Engine Test Cells, Tonawanda, NY, (1952), Job No. 1892-N58Chevrolet Motor Company, New Substations and Railroad Loading Dock, Tonawanda, NY, (1964), Job No. 1892-P58Chevrolet Motor Company, Addition to North Side of Plant No. 4, Tonawanda, NY, (1964), Job No. 1892-Q58Chevrolet Motor Company, Primary Switch House and Equipment Alterations and Additions, Tonawanda, NY, (1964), Job No. 1892-R58Chevrolet Motor Company, Northwest Addition to Engine Plant No. 4, Tonawanda, NY, (1966), Job No. 1892-T58Chevrolet Motor Company, Manufacturing Building, Detroit, MI, (1941-1942), Job No. 189358Chevrolet Motor Company, Office Building Addition to Plant No. 6, Detroit, MI, (1946-1947), Job No. 1893-C2 folders58Chevrolet Motor Company, Heat Treat Plant Addition, Detroit, MI, (1953), Job No. 1893-D58Chevrolet Motor Company, East End of Plant Addition, Bay City, MI, (1941-1942), Job No. 189458Colgate-Palmolive Company, New Toilet Articles Building, Jeffersonville, IN, (1941-1942), Job No. 189558Colgate-Palmolive Company, Oil Bleach Building, Jeffersonville, IN, (1942), Job No. 1895-A58Colgate-Palmolive Company, Super Suds Building, Jeffersonville, IN, (1941-1942), Job No. 1895-B58Colgate-Palmolive Company, Vel Building, Jeffersonville, IN, (1945-1947), Job No. 1895-E2 folders58Colgate-Palmolive Company, Hydrogenation Building, Jeffersonville, IN, (1946-1947), Job No. 1895-K58Colgate-Palmolive Company, Toilet Articles Building Addition, Jeffersonville, IN, (1947), Job No. 1895-L58Colgate-Palmolive Company, Warehouse Building, Jeffersonville, IN, (1950-1951), Job No. 1895-P1 folder58Colgate-Palmolive Company, Warehouse Building, Jeffersonville, IN, (1950-1951), Job No. 1895-P1 folder59Colgate-Palmolive Company, Ajax Building, Jeffersonville, IN, (1951), Job No. 1895-Q59Colgate-Palmolive Company, Fab Plant Building 34-E-2, Jeffersonville, IN, (1953-1954), Job No. 1895-S2 folders59Colgate-Palmolive Company, Expansion of Toilet Articles Building, Jeffersonville, IN, (1959-1960), Job No. 1895-V4 folders59Colgate-Palmolive Company, New Office Building No. 45, Jeffersonville, IN, (1960), Job No. 1895-W59General Motors Corporation, Inc., New Departure Division, Plant A Buildings 85 and 86, Bristol, CT, (1941-1943), Job No. 1897-A3 folders59General Motors Corporation, Inc., Pontiac Motor Division, Service Parts Storage Building, Pontiac, MI, (1941-1942), Job No. 190059Gorham Tool Company, Foundry Building, Detroit, MI, (1941-1942), Job No. 190159American Steel Foundries, Cast Armor Plant, East Chicago, IN, (1942-1943), Job No. 19033 folders59American Steel Foundries, Office Building, East Chicago, IN, (1942), Job No. 1903-A60American Steel Foundries, Personnel Building, East Chicago, IN, (1942), Job No. 1903-B60American Steel Foundries, Maintenance and Machine Shop, East Chicago, IN, (1942), Job No. 1903-C60American Steel Foundries, Power House, East Chicago, IN, (1942-1943), Job No. 1903-D60American Steel Foundries, Commissary Building, East Chicago, IN, (1942-1943), Job No. 1903-E60American Steel Foundries, Oil Storage House, East Chicago, IN, (1942), Job No. 1903-G60American Steel Foundries, Scale Houses and Pits Nos. 1 and 2, East Chicago, IN, (1942), Job No. 1903-H60American Steel Foundries, Pump and Screen House, East Chicago, IN, (1942), Job No. 1903-K60American Steel Foundries, Acetylene Tank House, East Chicago, IN, (1942), Job No. 1903-M60American Steel Foundries, Sanitary Pump House, East Chicago, IN, (1942), Job No. 1903-Q60American Steel Foundries, Canal Bulkhead, East Chicago, IN, (1943), Job No. 1903-R60American Steel Foundries, X-Ray Machine Building, East Chicago, IN, (1943), Job No. 1903-S60Chevrolet Motor Company, Aluminum Forge Plant, Saginaw, MI, (1942), Job No. 19052 folders60Chevrolet Motor Company, Boiler House, Saginaw, MI, (1942), Job No. 1905-B60American Locomotive Company, Machine Shop and Office Building, Auburn, NY, (1942-1943), Job No. 190760American Locomotive Company, Boiler House Extension, Auburn, NY, (1942-1943), Job No. 1907-A60Amertorp Corporation, U.S. Naval Ordnance Plant, Manufacturing Building, Forest Park, IL, (1942), Job No. 19082 folders60Amertorp Corporation, U.S. Naval Ordnance Plant, Manufacturing Building, Forest Park, IL, (1942), Job No. 19081 folder61Amertorp Corporation, U.S. Naval Ordnance Plant, Office Building, Forest Park, IL, (1942), Job No. 1908-A61Amertorp Corporation, U.S. Naval Ordnance Plant, Boiler House, Forest Park, IL, (1942), Job No. 1908-B61Amertorp Corporation, U.S. Naval Ordnance Plant, Garage, Forest Park, IL, (1942), Job No. 1908-C61Amertorp Corporation, U.S. Naval Ordnance Plant, Officer's Quarters, Forest Park, IL, (1942), Job No. 1908-E, F, G61Amertorp Corporation, U.S. Naval Ordnance Plant, Parts Storage Building, Forest Park, IL, (1943), Job No. 1908-H61Curtiss-Wright Corporation, Assembly Building, Indianapolis, IN, (1942), Job No. 19093 folders61American Locomotive Company, Gun Shop, Schenectady, NY, (1942), Job No. 191061American Steel Foundries, Personnel Building, East Chicago, IN, (1943), Job No. 191161Fairchild Engine and Airplane Corporation, Manufacturing Plant Alterations and Additions, Boiler House, Burlington, NC, (1942-1944), Job No. 1912-A, B61Fairchild Engine and Airplane Corporation, Hammer House, Burlington, NC, (1944), Job No. 1912-F61Fairchild Engine and Airplane Corporation, Alterations and Additions to Present Plant for Air Conditioning, Burlington, NC, (1944), Job No. 1912-J61Fairchild Engine and Airplane Corporation, Cafeteria Alterations, Burlington, NC, (1944), Job No. 1912-L, M61Buick Motor Division, Aluminum Foundry, Flint, MI, (1942), Job No. 19132 folders61General Motors Corporation, Truck and Coach Division, Box Receiving Building and Shipping Facilities, Pontiac, MI, (1943), Job No. 1914-A61General Motors Corporation, Truck and Coach Division, Parts Warehouse in Plant No. 4, Pontiac, MI, (1948), Job No. 1914-B61Curtiss-Wright Corporation, Addition to Plant No. 1, Kenmore, NY, (1942-1943), Job No. 1915-A, B61United Aircraft Corporation, Plant L Crank Case and Reduction Gear Housings, Willimantic, CT, (1942), Job No. 19162 folders61Chrysler Corporation, Dodge Chicago Plant, Batching Plant No. 1, Chicago, IL, (1943), Job No. 191762Chrysler Corporation, Dodge Chicago Plant, Batching Plant No. 2, Chicago, IL, (1943), Job No. 191762Chrysler Corporation, Dodge Chicago Plant, Coal Piles, Chicago, IL, (1942-1943), Job No. 191762Chrysler Corporation, Dodge Chicago Plant, Machine Shop and Assembly Building No. 4, Chicago, IL, (1942-1943), Job No. 19176 folders62Chrysler Corporation, Dodge Chicago Plant, Office Building and Garage Building No. 2, Chicago, IL, (1942), Job No. 1917-A2 folders62Chrysler Corporation, Dodge Chicago Plant, Aluminum Foundry Building No. 7, Chicago, IL, (1942-1943), Job No. 1917-B62Chrysler Corporation, Dodge Chicago Plant, Test Cells Building No. 5, Chicago, IL, (1942-1943), Job No. 1917-C62Chrysler Corporation, Dodge Chicago Plant, Heavy Forge Building No. 12, Chicago, IL, (1942-1943), Job No. 1917-D63Chrysler Corporation, Dodge Chicago Plant, Power House Building No. 9, Chicago, IL, (1942-1943), Job No. 1917-E2 folders63Chrysler Corporation, Dodge Chicago Plant, Heat Treat and Die Shop Building No. 11, Chicago, IL, (1942-1943), Job No. 1917-F2 folders63Chrysler Corporation, Dodge Chicago Plant, Light Forge Building No. 10, Chicago, IL, (1942-1943), Job No. 1917-G63Chrysler Corporation, Dodge Chicago Plant, Magnesium Foundry Building No. 8, Chicago, IL, (1942-1943), Job No. 1917-H63Chrysler Corporation, Dodge Chicago Plant, Tool Shop Building No. 1, Chicago, IL, (1942), Job No. 1917-J63Chrysler Corporation, Dodge Chicago Plant, Personnel Building No. 3, Chicago, IL, (1942), Job No. 1917-K63Chrysler Corporation, Dodge Chicago Plant, Oil and Ship Storage Building No. 6, Chicago, IL, (1942-1943), Job No. 1917-L63Chrysler Corporation, Dodge Chicago Plant, Propeller Test Building No. 13, Chicago, IL, (1942-1943), Job No. 1917-M63Chrysler Corporation, Dodge Chicago Plant, Boiler House No. 2 Building No. 14, Chicago, IL, (1942-1943), Job No. 1917-N2 folders63Chrysler Corporation, Dodge Chicago Plant, Substation, Chicago, IL, (1942-1943), Job No. 1917-O63United Aircraft Corporation, Plant M Rods, Crank Shaft, and Propeller Shafts, East Longmeadow, MA, (1942), Job No. 19182 folders64Consolidated Aircraft Corporation, Assembly Plant, New Orleans, LA, (1942-1943), Job No. 192164Consolidated Aircraft Corporation, Hangar Building, New Orleans, LA, (1942-1943), Job No. 1921-A64Consolidated Aircraft Corporation, Paint Shop, New Orleans, LA, (1942-1943), Job No. 1921-B64Nash-Kelvinator Corporation Motor Assembly Building, Kenosha, Wisconsin (1942-1943) Job No. 1922Construction of Building by A & E Woodworth Commericial Photography31 prints (black-and-white; 7-1/2x9-1/2-inch)5/18/1942-1/10/19436Curtiss-Wright Corporation, Manufacturing and Assembly Plant, Louisville, KY, (1942-1943), Job No. 192364Curtiss-Wright Corporation, Conversion Program for 1945 Louisville, KY, (1945), Job No. 1923-P64United Aircraft Corporation, Plant N Cylinder Heads and Barrels, Southington, CT, (1942-1943), Job No. 19252 folders64Wright Aeronautical Corporation, Manufacturing Building Plant No. 7, Wood-Ridge, NJ, (1942-1943), Job No. 19263 folders64Wright Aeronautical Corporation, Development Laboratory, Wood-Ridge, NJ, (1946), Job No. 1926-AP64Wright Aeronautical Corporation, Boiler House, Wood-Ridge, NJ, (1942-1943), Job No. 1926-B64Wright Aeronautical Corporation, Parking Lot, Wood-Ridge, NJ, (1942-1943), Job No. 1926-C64Wright Aeronautical Corporation, Gas Storage, Wood-Ridge, NJ, (1942-1943), Job No. 1926-D64Wright Aeronautical Corporation, Oil Storage and Handling Facilities, Wood-Ridge, NJ, (1942-1943), Job No. 1926-E64Wright Aeronautical Corporation, Oil Separating, Wood-Ridge, NJ, (1942), Job No. 1926-G64Wright Aeronautical Corporation, Oxygen House, Wood-Ridge, NJ, (1942-1943), Job No. 1926-H64Wright Aeronautical Corporation, Carburetor Laboratory, Wood-Ridge, NJ, (1942-1943), Job No. 1926-J64Wright Aeronautical Corporation, Engine Test Cells and Crib Storage Building, Wood-Ridge, NJ, (1942-1943), Job No. 1926-K64Wright Aeronautical Corporation, Ammonia House, Wood-Ridge, NJ, (1942-1943), Job No. 1926-M64Wright Aeronautical Corporation, Electrical Switch Stations, Wood-Ridge, NJ, (1942-1943), Job No. 1926-O64Wright Aeronautical Corporation, Reservoirs, Wood-Ridge, NJ, (1942), Job No. 1926-P64Wright Aeronautical Corporation, Guard Houses, Wood-Ridge, NJ, (1943), Job No. 1926-Q64Wright Aeronautical Corporation, Incinerator, Wood-Ridge, NJ, (1943), Job No. 1926-R64Wright Aeronautical Corporation, Magnesium Storage Building, Wood-Ridge, NJ, (1942-1943), Job No. 1926-T64Wright Aeronautical Corporation, Scale Pit Platform and House, Wood-Ridge, NJ, (1942-1943), Job No. 1926-W64United Aircraft Corporation, Engine Plant, Kansas City, MO, (1942-1943), Job No. 19273 folders64United Aircraft Corporation, Engine Plant, Kansas City, MO, (1942-1943), Job No. 19273 folders65American Steel Foundries, Personnel Building, Granite City, IL, (1943), Job No. 192865American Steel Foundries, Office Building, Granite City, IL, (1943), Job No. 1928-A65Curtiss-Wright Corporation, Miscellaneous Manufacturing Building, Caldwell, NJ, (1942-1943), Job No. 192965Curtiss-Wright Corporation, Second Story Office Addition, Caldwell, NJ, (1943), Job No. 1929-A65Sikorsky Aircraft Corporation, Alterations to Present Crane Company, Bridgeport, CT, (1943), Job No. 193465Sikorsky Aircraft Corporation, Assembly Building and Flight Hanger, Bridgeport, CT, (1948), Job No. 1934-D2 folders65Sikorsky Aircraft Corporation, Shipping and Office Building, Bridgeport, CT, (1951-1952), Job No. 1934-H65Sikorsky Aircraft Corporation, Addition and Alterations to Buildings 7S, 8S, 9S, and 10S, Bridgeport, CT, (1951-1952), Job No. 1934-J2 folders65Seiberling Rubber Company, Factory and Personnel Building, Barberton, OH, (1943-1944), Job No. 193565Seiberling Rubber Company, Office Building, Barberton, OH, (1944), Job No. 1935-A65Manufacturers National Bank, Alterations and Repairs to Present Building, Detroit, MI, (1944), Job No. 193965Chrysler Corporation, Lynch Road Plant, Two Story Office Building Addition, Detroit, MI, (1946), Job No. 1944-A65General Motors Corporation, Saginaw Malleable Iron Foundry Plant No. 2, Danville, IL, (1943), Job No. 194765Chevrolet Motor Company, Assembly Building, Flint, MI, (1945-1947), Job No. 19502 folders65Chevrolet Motor Company, Office Building and Garage, Flint, MI, (1945-1947), Job No. 1950-A65Chevrolet Motor Company, Assembly Building Addition, Flint, MI, (1960), Job No. 1950-AB1 folder65Chevrolet Motor Company, Assembly Building Addition, Flint, MI, (1960), Job No. 1950-AB1 folder66Chevrolet Motor Company, Wheel and Small Parts Processing Substation, Flint, MI, (1962), Job No. 1950-AG66Chevrolet Motor Company, Final Process Addition and Tank Farm, Flint, MI, (1963-1964), Job No. 1950-AJ, AL66Chevrolet Motor Company, Boiler House Addition, Flint, MI, (1963-1964), Job No. 1950-AK66Chevrolet Motor Company, Assembly Plant North Additions and Alterations, Flint, MI, (1964), Job No. 1950-AM66Chevrolet Motor Company, New Final Process and Haulaway Parking Lots, Flint, MI, (1962-1963), Job No. 1950-AP66Chevrolet Motor Company, Haulaway Parking Lots and Second Floor Fill-Ins, Flint, MI, (1963), Job No. 1950-AP, AQ66Chevrolet Motor Company, Second Floor Fill-Ins and Prime System Alterations, Flint, MI, (1963), Job No. 1950-AQ, AT66Chevrolet Motor Company, Foreign Body Loading Dock and Conveyor, Flint, MI, (1963), Job No. 1950-AS66Chevrolet Motor Company, Site Work, Flint, MI, (1964-1965), Job No. 1950-AW66Chevrolet Motor Company, Northwest and East Additions, Flint, MI, (1965), Job No. 1950-AW, AX66Chevrolet Motor Company, Haulaway Parking Lot Improvement, Flint, MI, (1965), Job No. 1950-AY66Chevrolet Motor Company, Boiler House and Pump House No. 1, Flint, MI, (1945-1946), Job No. 1950-B66Chevrolet Motor Company, Driveaway, Flint, MI, (1946-1947), Job No. 1950-C66Chevrolet Motor Company, Car Loading, Flint, MI, (1946-1947), Job No. 1950-D66Chevrolet Motor Company, Acetylene Building and Pump House No. 2, Flint, MI, (1946), Job No. 1950-F66Chevrolet Motor Company, Shipping Building, Flint, MI, (1946-1947), Job No. 1950-H66Chevrolet Motor Company, Assembly Building Addition, Flint, MI, (1956), Job No. 1950-M66Chevrolet Motor Company, Firewall between Chevrolet and Fisher Section, Flint, MI, (1956-1957), Job No. 1950-Q66Chevrolet Motor Company, Extension to Northeast Corner and Second Floor Extension, Flint, MI, (1959), Job No. 1950-W, X66Congoleum-Nairn, Inc., Examining Building, Kearny, NJ, (1945-1947), Job No. 195566Congoleum-Nairn, Inc., Stove Building, Kearny, NJ, (1945-1947), Job No. 1955-A66Colgate-Palmolive-Peet Company, Spray Products Building, Jersey City, NJ, (1946-1948), Job No. 1960-B2 folders66Colgate-Palmolive-Peet Company, Industrial Service Building, Warehouse and Shipping, Jersey City, NJ, (1953-1954), Job No. 1960-N3 folders66Colgate-Palmolive-Peet Company, Industrial Service Building, Warehouse and Shipping, Jersey City, NJ, (1953-1954), Job No. 1960-N1 folder67Colgate-Palmolive-Peet Company, Spray Products Building, Kansas City, KS, (1945-1947), Job No. 196267Colgate-Palmolive-Peet Company, Toilet Articles Building, Kansas City, KS, (1949-1951), Job No. 1962-B2 folders67Colgate-Palmolive-Peet Company, Warehouse, Kansas City, KS, (1954-1955), Job No. 1962-G3 folders67Colgate-Palmolive-Peet Company, Canopy Extension Building "P," Kansas City, KS, (1960), Job No. 1962-H67Colgate-Palmolive-Peet Company, Warehouse Addition, Kansas City, KS, (1966-1967), Job No. 1962-K2 folders67Colgate-Palmolive-Peet Company, Vel Building Addition, Kansas City, KS, (1950-1951), Job No. 1962-P2 folders67Pekin Wood Products Company, Manufacturing Building Addition, West Helena, AR, (1948), Job No. 1963-A67General Motors Corporation, Buick-Oldsmobile-Pontiac Division, Assembly Plant, Wilmington, DE, (1945-1946), Job No. 19644 folders67General Motors Corporation, Buick-Oldsmobile-Pontiac Division, Assembly Plant, Atlanta, GA, (1946-1947), Job No. 19661 folder67General Motors Corporation, Buick-Oldsmobile-Pontiac Division, Assembly Plant, Atlanta, GA, (1946-1947), Job No. 19661 folder68General Motors Corporation, Buick-Oldsmobile-Pontiac Division, Assembly Plant, Framingham, MA, (1945-1947), Job No. 19672 folders68General Motors Corporation, Buick-Oldsmobile-Pontiac Division, Boiler House, Framingham, MA, (1946-1947), Job No. 1967-A2 folders68General Motors Corporation, Fisher Body Division, One Story West End Addition, Framingham, MA, (1960), Job No. 1967-F2 folders68General Motors Corporation, Chevrolet Division, Body Bank, Receiving Dock, Tire Balcony, Factory Additions, Framingham, MA, (1960), Job No. 1967-G2 folders68General Motors Corporation, Chevrolet Division, Body Bank Addition, Framingham, MA, (1961), Job No. 1967-H68General Motors Corporation, Fisher Body Division, I.B.M. Addition, Framingham, MA, (1963), Job No. 1967-J68Chrysler Corporation, Airtemp Division, Factory Building, Dayton, OH, (1945-1947), Job No. 19702 folders68Chrysler Corporation, Airtemp Division, Boiler House, Dayton, OH, (1946-1947), Job No. 1970-A68Chrysler Corporation, Airtemp Division, Factory Building Addition, Dayton, OH, (1951-1952), Job No. 1970-C68New Departure Division, Bridge Storage Area between Buildings 11 and 32, Bristol, CT, (1945-1946), Job No. 1971-A, B3 folders68The Philadelphia Inquirer, Rotogravure Building, Philadelphia, PA, (1946-1949), Job No. 19734 folders69The Philadelphia Inquirer, Garage Building, Philadelphia, PA, (1946-1948), Job No. 1973-A2 folders69Ford Motor Company, Office and Assembly Building, St. Louis, MO, (1946-1948), Job No. 1975-A7 folders69Western Manufacturing Plant, New Departure Division, Steel Manufacturing Building, Sandusky, OH, (1945-1947), Job No. 19777 folders70Lee Rubber and Tire Corporation, Manufacturing Plant, Kansas City, KS, (1945), Job No. 1978 A70Bond Stores, Inc., Factory Building, Rochester, NY, (1945-1948), Job No. 197970General Motors Corporation, New Departure Division, Boiler House Additions and Alterations, Meriden, CT, (1945-1946), Job No. 1983-A2 folders70R.R. Donnelley and Sons Corporation, Printing House, Chicago, IL, (1946-1948), Job No. 19843 folders70R.R. Donnelley and Sons Corporation, Tunnel, Pump House, and Tank Farm, Chicago, IL, (1946-1947), Job No. 1984-A70R.R. Donnelley and Sons Corporation, Corporate Office Building, Chicago, IL, (1960-1961), Job No. 1984-R70Jewish Hospital Association of Detroit, Sinai Hospital Building, Detroit, MI, (1951-1952), Job No. 1985-B3 folders71Jewish Hospital Association of Detroit, Sinai Hospital, Shapero School of Nursing, Detroit, MI, (1955-1956), Job No. 1985-D71Jewish Hospital Association of Detroit, Sinai Hospital Building Addition, Detroit, MI, (1958-1960), Job No. 1985-E3 folders71Ford Motor Company, Assembly Plant, Atlanta, GA, (1946-1947), Job No. 19867 folders71Ford Motor Company, Assembly Plant, Atlanta, GA, (1946-1947), Job No. 19863 folders72Chevrolet Motor Company, Administration Building, Los Angeles, CA, (1946-1947), Job No. 198772Chevrolet Motor Company, North Side Plant Addition, Los Angeles, CA, (1955-1957), Job No. 1987-A3 folders72Chevrolet Motor Company, East Side Plant Addition, Los Angeles, CA, (1955-1956), Job No. 1987-B72Chevrolet Motor Company, Storage Building, Los Angeles, CA, (1955-1956), Job No. 1987-C72Chevrolet Motor Company, Parts Building Alterations and Additions, Los Angeles, CA, (1956-1958), Job No. 1987-D72Chevrolet Motor Company, Existing Building Alterations, Los Angeles, CA, (1957), Job No. 1987-E72Chevrolet Motor Company, Compressor Building, Los Angeles, CA, (1957-1958), Job No. 1987-F72Chevrolet Motor Company, Facilities Rearrangement, Los Angeles, CA, (1958), Job No. 1987-G3 folders72Chevrolet Motor Company, Fill in Open Areas, Los Angeles, CA, (1957), Job No. 1987-H72Chevrolet Motor Company, Substation C, Los Angeles, CA, (1957), Job No. 1987-J72Chevrolet Motor Company, Building Foundation, Los Angeles, CA, (1957), Job No. 1987-K72Chevrolet Motor Company, Boiler Room, Los Angeles, CA, (1959), Job No. 1987-P72Chevrolet Motor Company, Extension to Compressor House, Los Angeles, CA, (1961), Job No. 1987-Q72Chevrolet Motor Company, Parts Plant Addition, Los Angeles, CA, (1961), Job No. 1987-S2 folders72Chevrolet Motor Company, Fisher Body Division, Additions and Alterations to Present Plant, Los Angeles, CA, (1962), Job No. 1987-U72Chevrolet Motor Company, Fisher Body Division, Revisions to Trim Shop, Cushion Room, Cafeteria, and Office Building, Los Angeles, CA, (1962-1963), Job No. 1987-W2 folders72Ford Motor Company, Lincoln-Mercury Assembly Branch, Metuchen, NJ, (1946-1948), Job No. 19884 folders73Ford Motor Company, Lincoln-Mercury Assembly Branch, Metuchen, NJ, (1946-1948), Job No. 19884 folders73Ford Motor Company, Lincoln-Mercury Assembly Branch, Assembly Plant Addition, Metuchen, NJ, (1954), Job No. 1988-G73General Motors Corporation, Chevrolet-Cleveland Division, Parma, OH, (1946), Job No. 198973General Motors Corporation, Chevrolet-Cleveland Division, Brook Park Village, OH, (1946), Job No. 199073Packard Motor Car Company, Sales and Administration Building, Chicago, IL, (1949-1950), Job No. 1991-A73Chrysler Corporation, Eastern Parts Plant, Newark, DE, (1947-1948), Job No. 1992-B2 folders73
    Job No. 2001-2343Columbia Records, Inc., Building No. 2 Addition, Bridgeport, CT, (1947-1948), Job No. 20012 folders73R.R. Donnelley Crawfordsville Corporation, Rotogravure Plant, Chicago, IL, (1947-1948), Job No. 20032 folders73General Motors Corporation, Chevrolet-Bloomfield Division, Covered Dock for Export Building, Bloomfield, NJ, (1947-1948), Job No. 201073General Motors Corporation, Chevrolet-Cleveland Division, Parts Manufacturing Building, Parma, OH, (1947-1949), Job No. 20111 folder73General Motors Corporation, Chevrolet-Cleveland Division, Parts Manufacturing Building, Parma, OH, (1947-1949), Job No. 20111 folder74General Motors Corporation, Chevrolet Motor Division, Railroad Dock Extension, Baler Building, Pressed Metal Plant Addition, Scrap Metal Conveyor Tunnel, Parma, OH, (1953-1954), Job No. 2011-C, D2 folders74General Motors Corporation, Chevrolet Motor Division, North and South Additions, Parma, OH, (1956-1957), Job No. 2011-E2 folders74General Motors Corporation, Chevrolet-Cleveland Division, Parts Storage and Shipping Dock Additions, Parma, OH, (1962), Job No. 2011-F74Fuller-Johnson Corporation, Office and Factory Building, Independence, OH, (1947), Job No. 201274Colgate-Palmolive-Peet Company, Spray Products Building, Berkley, CA, (1948-1949), Job No. 202174Colgate-Palmolive-Peet Company, Household Products Warehouse, Berkley, CA, (1959-1960), Job No. 2021-C2 folders74Colgate-Palmolive-Peet Company, Views of Site before Construction, Berkley, CA, (1959-1960), Job No. 2021-D74Chrysler Corporation, Nine Mile Press Plant, Macomb County, MI, (1948-1949), Job No. 20243 folders74Chrysler Corporation, Nine Mile Press Plant, Boiler House Addition, Macomb County, MI, (1949), Job No. 2024-A74Chrysler Corporation, Nine Mile Press Plant, Addition to South Side of Press Shop, Macomb County, MI, (1950-1951), Job No. 2024-F2 folders75Chrysler Corporation, Nine Mile Press Plant, Additions to Crane Bays and South Side of Office Building, Macomb County, MI, (1951-1952), Job No. 2024-G75Our Lady of Victory, Boiler House, Lackawanna, NY, (1948-1949), Job No. 202675Clark Equipment Company, Manufacturing Building and Office, Jackson, MI, (1948-1949), Job No. 20273 folders75Clark Equipment Company, Boiler House, Jackson, MI, (1949), Job No. 2027-A75Chance Vought Aircraft, Office Building Addition, Dallas, TX, (1948-1949), Job No. 2028-B2 folders75Chance Vought Aircraft, Hangar, Dallas, TX, (1949), Job No. 2028-H75Chance Vought Aircraft, Manufacturing Building, Dallas, TX, (1948-1949), Job No. 2028-K75Gar Wood Industries, Inc., New Addition to Manufacturing Plant, Thayne, MI, (1950), Job No. 2031-A75Brotherhood of Maintenance of Way Employees, International Headquarters Building, Novi, MI, (1950-1951), Job No. 20351 folder75Brotherhood of Maintenance of Way Employees, International Headquarters Building, Novi, MI, (1950-1951), Job No. 20351 folder76The Washington Post, New Press Building, Washington, D.C., (1949-1950), Job No. 2043-A2 folders76The Washington Post-Times Herald, Boilers in Old Building, Washington, D.C., (1960), Job No. 2043-B2 folders76Detroit Steel Products Company, Michigan Sales Office and Warehouse, Detroit, MI, (1950), Job No. 204676Ford Motor Company, Metal Stamping Plant, Hamburg, NY, (1949-1951), Job No. 20512 folders76The Gannett Newspapers, The Rochester Times Union Building, Rochester, NY, (1949-1951), Job No. 205276Ford Motor Company, Automatic Transmission Plant, Cincinnati, OH, (1949-1950), Job No. 205476Ford Motor Company, Automatic Transmission Plant Addition, Cincinnati, OH, (1951-1952), Job No. 2054-D4 folders76Ethyl Corporation, Central Building and Stores, Baton Rouge, LA, (1950-1951), Job No. 205676International Harvester Company, Motor Truck Engineering Building, Fort Wayne, IN, (1950-1952), Job No. 20574 folders77Ford Motor Company, Engine Plant, Brook Park Village, Cleveland, OH, (1950), Job No. 20582 folders77Ford Motor Company, Foundry and Boiler House, Brook Park Village, Cleveland, OH, (1950-1952), Job No. 2058-A, B7 folders77Ford Motor Company, Personnel Building and Garage, Brook Park Village, Cleveland, OH, (1951-1952), Job No. 2058-C4 folders77Ford Motor Company, Engine Plant No. 2, Brook Park Village, Cleveland, OH, (1953-1954), Job No. 2058-G2 folders78Ford Motor Company, Compressor Room Addition, Brook Park Village, Cleveland, OH, (1954), Job No. 2058-K78St. Joseph Hospital, New Boiler House, Mt. Clemens, MI, (1951-1952), Job No. 2061-A78St. Joseph Hospital, Addition, Mt. Clemens, MI, (1961-1962), Job No. 2061-D78St. Joseph Hospital, Chapel, Mt. Clemens, MI, (1961-1962), Job No. 2061-F78American Steel Foundries, Engineering Building, Hammond, IN, (1952-1953), Job No. 20622 folders78Chrysler Corporation, Plant, Indianapolis, IN, (1950-1952), Job No. 20655 folders78Chrysler Corporation, Boiler House, Indianapolis, IN, (1951-1952), Job No. 2065-A78Ford Motor Company, Tank Plant, Livonia, MI, (1951-1953), Job No. 20661 folder78Ford Motor Company, Tank Plant, Livonia, MI, (1951-1953), Job No. 20661 folder79Chrysler Corporation, Manufacturing Plant, Newark, DE, (1951-1952), Job No. 20675 folders79Chrysler Corporation, Boiler House, Newark, DE, (1951-1952), Job No. 2067-A2 folders79Chrysler Corporation, Administration Building, Newark, DE, (1951-1952), Job No. 2067-B3 folders79Chrysler Corporation, Paint Shop, Newark, DE, (1951-1952), Job No. 2067-C79Chrysler Corporation, Test Track, Newark, DE, (1951), Job No. 2067-D79Chrysler Corporation, Tank Repair Shop, Newark, DE, (1951-1952), Job No. 2067-E79Chrysler Corporation, Incinerator Plant, Newark, DE, (1951-1952), Job No. 2067-F79Chrysler Corporation, Guard House, Newark, DE, (1952), Job No. 2067-G79Chrysler Corporation, Pump House and Tank Field, Newark, DE, (1951-1952), Job No. 2067-H79Chrysler Corporation, Manufacturing Building Addition, Newark, DE, (1956-1957), Job No. 2067-J3 folders79Chrysler Corporation, Manufacturing Building Addition, Newark, DE, (1956-1957), Job No. 2067-J3 folders80Chrysler Corporation, Boiler House, Newark, DE, (1956-1957), Job No. 2067-K80Chrysler Corporation, Paint Mixing Building, Newark, DE, (1956-1957), Job No. 2067-M80Chrysler Corporation, Machine Shop and Boiler House, Trenton, MI, (1951-1952), Job No. 2068 A12 folders80Chrysler Corporation, Machine Shop and Boiler House, Trenton, MI, (1951-1952), Job No. 2068 A5 folders81Chrysler Corporation, Dynamometer Rooms, Trenton, MI, (1957), Job No. 2068-D81Chrysler Corporation, Jet Engine Plant, Manufacturing Building, Macomb County, MI, (1951-1953), Job No. 20713 folders81Chrysler Corporation, Jet Engine Plant, Administration Building, Macomb County, MI, (1951-1953), Job No. 2071-A3 folders81Chrysler Corporation, Jet Engine Plant, Boiler House, Macomb County, MI, (1952-1953), Job No. 2071-B81Chrysler Corporation, Jet Engine Plant, Chip Handling Building, Macomb County, MI, (1952-1953), Job No. 2071-C81Chrysler Corporation, Jet Engine Plant, Tank Form, Macomb County, MI, (1952-1953), Job No. 2071-D82Chrysler Corporation, Jet Engine Plant, Sewage Disposal, Macomb County, MI, (1952), Job No. 2071-E82Chrysler Corporation, Jet Engine Plant, Test Cells, Macomb County, MI, (1952-1953), Job No. 2071-F82Chrysler Corporation, Jet Engine Plant, Central Test Building No. 6, Macomb County, MI, (1952-1953), Job No. 2071-G82Chrysler Corporation, Jet Engine Plant, Master Sub Station, Macomb County, MI, (1952), Job No. 2071-H82Chrysler Corporation, Jet Engine Plant, Industrial Waste Treatment Plant, Macomb County, MI, (1952-1953), Job No. 2071-K82Chrysler Corporation, Jet Engine Plant, Pump House at Ponding Basin, Macomb County, MI, (1952), Job No. 2071-L82Chrysler Corporation, Jet Engine Plant, Pump House Pits and Foundations, Macomb County, MI, (1952-1953), Job No. 2071-M82Chrysler Corporation, Jet Engine Plant, Incinerator Building, Macomb County, MI, (1953), Job No. 2071-N82Chrysler Corporation, Jet Engine Plant, Four Combination Test Cells Building No. 25, Macomb County, MI, (1953-1954), Job No. 2071-P3 folders82Chrysler Corporation, Jet Engine Plant, Propane Tank Farm, Macomb County, MI, (1952-1953), Job No. 2071-R82Chrysler Corporation, Jet Engine Plant, Dynamometer Building, Macomb County, MI, (1953-1954), Job No. 2071-S82Chrysler Corporation, Jet Engine Plant, Acetylene and Oxygen Storage Building No. 29, Macomb County, MI, (1954), Job No. 2071-U82Chrysler Corporation, Jet Engine Plant, Completion of Four Jet Engine Test Cells, Macomb County, MI, (1957-1958), Job No. 2071-V82United Aircraft Corporation, Hamilton Standard Division, Manufacturing Building and Boiler House, Windsor Locks, CT, (1951-1953), Job No. 2072 A5 folders83United Aircraft Corporation, Hamilton Standard Division, Aerial of Manufacturing Building, Boiler House, and Test Houses, Windsor Locks, CT, (1953), Job No. 2072 A, B83United Aircraft Corporation, Hamilton Standard Division, Incinerator Building, Windsor Locks, CT, (1953), Job No. 2072-D83United Aircraft Corporation, Hamilton Standard Division, 80 Foot Addition to South Side of Factory, Windsor Locks, CT, (1953-1954), Job No. 2072-N83United Aircraft Corporation, Hamilton Standard Division, Windsor Locks, CT, (1956-1957), Job No. 2072-V, Z, AA83United Aircraft Corporation, Hamilton Standard Division, Third Story Addition to Present Office Building, Windsor Locks, CT, (1956), Job No. 2072-W83Pratt and Whitney Aircraft, Manufacturing Building, North Haven, CT, (1951-1952), Job No. 20732 folders83Pratt and Whitney Aircraft, Manufacturing and Office Building Addition, North Haven, CT, (1955-1956), Job No. 2073-B2 folders83Packard Motor Car Company, Parts Warehouse Building No. 1, Macomb County, MI, (1951), Job No. 20742 folders83Packard Motor Car Company, Assembly Building, Macomb County, MI, (1951-1952), Job No. 2074-A2 folders83Packard Motor Car Company, Administration Building, Macomb County, MI, (1952), Job No. 2074-B83Packard Motor Car Company, Boiler House, Macomb County, MI, (1951-1952), Job No. 2074-C2 folders84Packard Motor Car Company, Sewage Disposal Plant, Macomb County, MI, (1951-1952), Job No. 2074-D84General Electric Company, Appliance Park, Louisville, KY, (1952-1956), Job No. 20764 folders84Chrysler Corporation, Parts Plant, Centerline, MI, (1952), Job No. 20772 folders84Chrysler Corporation, Parts Plant, Office Building, Centerline, MI, (1952-1954), Job No. 2077-A84Chrysler Corporation, Parts Plant, Sewage Disposal Building, Centerline, MI, (1952), Job No. 2077-B84Chrysler Corporation, Office and Warehouse Building, Centerline, MI, (1957-1958), Job No. 2077-E2 folders84Chrysler Corporation, Temporary Parking Lot No. 1, Centerline, MI, (1958), Job No. 2077-F84Chrysler Corporation, Enclosed Cranebay Building No. 113, Centerline, MI, (1962), Job No. 2077-J84Ford Motor Company, Assembly Plant, Aircraft Turbine Plant, Romulus, MI, (1952-1954), Job No. 2079-A, B2 folders84Ford Motor Company, Assembly Plant, Aircraft Turbine Plant, Romulus, MI, (1952-1954), Job No. 2079-A, B3 folders85Ford Motor Company, Aircraft Engine Division, Jet Engine Testing Facilities, Chicago, IL, (1952-1953), Job No. 20828 folders85Chrysler Corporation, Tank Modification and Processing Depot, Newark, DE, (1953-1954), Job No. 20842 folders85Chrysler Corporation, Proving Grounds, Test Track Paving, Chelsea, MI, (1953), Job No. 208585General Motors Corporation, Chevrolet Motor Division, Spring and Bumper Plant, Livonia, MI, (1953-1954), Job No. 20873 folders85General Motors Corporation, Chevrolet Motor Division, Spring and Bumper Plant, Livonia, MI, (1953-1954), Job No. 20872 folders86General Motors Corporation, Chevrolet Motor Division, Spring and Bumper Plant, Boiler House, Livonia, MI, (1953-1954), Job No. 2087-A86General Motors Corporation, Chevrolet Motor Division, Spring and Bumper Plant, North Side Addition, Livonia, MI, (1963-1964), Job No. 2087-F2 folders86General Motors Corporation, Chevrolet Motor Division, Spring and Bumper Plant, Parking Lots and Related Site Work, Livonia, MI, (1964), Job No. 2087-J86General Motors Corporation, Chevrolet Motor Division, Spring and Bumper Plant, Pedestrian Tunnel and Guard Houses, Livonia, MI, (1965-1966), Job No. 2087-L2 folders86Ford Motor Company, Assembly Plant, San Jose, CA, (1953-1955), Job No. 20887 folders86Ferro Stamping Company, Boiler House, Mount Pleasant, MI, (1953-1954), Job No. 2091-A86Ferro Stamping Company, Factory Addition, Mount Pleasant, MI, (1954-1955), Job No. 2091-B86Ford Motor Company, Louisville Assembly Plant No. 2, Jefferson County, KY, (1953-1955), Job No. 20922 folders86Ford Motor Company, Louisville Assembly Plant No. 2, Jefferson County, KY, (1953-1955), Job No. 20922 folders87General Motors Corporation, Chevrolet Motor Division, Frame and Stamping Plant, General Superstructure, Flint, MI, (1953-1955), Job No. 20933 folders87General Motors Corporation, Chevrolet Motor Division, Frame and Stamping Plant, Assembly Plant Boiler House Addition, Flint, MI, (1954-1955), Job No. 2093-A87General Motors Corporation, Chevrolet Motor Division, Frame and Stamping Plant, Pump House and Tank Foundation Addition, Flint, MI, (1954 1957), Job No. 2093-C87General Motors Corporation, Chevrolet Motor Division, Frame and Stamping Plant, Addition, Flint, MI, (1960-1962), Job No. 2093-D3 folders87General Motors Corporation, Chevrolet Motor Division, Frame and Stamping Plant, Office Building Addition, Flint, MI, (1961-1962), Job No. 2093-E4 folders87General Motors Corporation, Chevrolet Motor Division, Frame and Stamping Plant, New Air Compressor Equipment in Present Boiler House, Flint, MI, (1961-1962), Job No. 2093-F88General Motors Corporation, Chevrolet Motor Division, Metal Fabricating Plant, East and North Additions, Flint, MI, (1965-1966), Job No. 2093-G3 folders88General Motors Corporation, Chevrolet Motor Division, Metal Fabricating Plant, North Addition, Flint, MI, (1966-1967), Job No. 2093-H88Briggs and Stratton Corporation, Manufacturing Building, Wauwatosa, WI, (1954-1955), Job No. 20943 folders88Briggs and Stratton Corporation, Service Building, Wauwatosa, WI, (1958), Job No. 2094-A88Briggs and Stratton Corporation, Manufacturing Building North Addition, Wauwatosa, WI, (1966-1967), Job No. 2094-C2 folders88United Aircraft Corporation, Sikorsky Aircraft Division, Manufacturing and Office Building, Stratford, CT, (1954-1955), Job No. 20953 folders88United Aircraft Corporation, Sikorsky Aircraft Division, Stratford, CT, (1943 1954-1955), Job No. 2095-A5 folders89United Aircraft Corporation, Sikorsky Aircraft Division, Stratford, CT, (1943), Job No. 2095-D2 folders89United Aircraft Corporation, Sikorsky Aircraft Division, New Engineering Building, Stratford, CT, (1957-1958), Job No. 2095-K5 folders89United Aircraft Corporation, Sikorsky Aircraft Division, Boiler House Addition, Stratford, CT, (1957), Job No. 2095-L89United Aircraft Corporation, Sikorsky Aircraft Division, Parking Lot, Stratford, CT, (1957-1958), Job No. 2095-M89Bethlehem Steel Company, Reinforcing Bar Warehouse and Office, Bethlehem, PA, (1954), Job No. 209889Ford Motor Company, Manufacturing Development Facilities Building, Redford Township, MI, (1954-1955), Job No. 21012 folders89Pittsburgh Plate Glass Company, Warehouse Alterations and Additions, Detroit, MI, (1954-1955), Job No. 210389Chrysler Corporation, Crane Bay Extension to South End of Craneway Building, Detroit, MI, (1955), Job No. 2104-A89Chrysler Corporation, Plymouth Division, Extension of Northeast Corner of Building, Detroit, MI, (1955), Job No. 2104-B89Mohawk Brush Company, (1955-1956), Job No. 210589The Trane Company, Engineering Building, La Crosse, WI, (1956-1957), Job No. 2107-A1 folder89The Trane Company, Engineering Building, La Crosse, WI, (1956-1957), Job No. 2107-A1 folder90The Trane Company, La Crosse, WI, (1961-1962), Job No. 2107-D2 folders90Ford Motor Company, Aircraft Engine Division, Jet Engine Testing Facilities Addition, Chicago, IL, (1955), Job No. 21082 folders90Chrysler Corporation, Mack Avenue Plant, Automatic Body Division, Modernization of Present Press Building, Detroit, MI, (1955), Job No. 21092 folders90Chrysler Corporation, Mack Avenue Plant, Automatic Body Division, Baler Pit, Detroit, MI, (1955), Job No. 2109-A90Ford Motor Company, Sterling Township Plant, Chassis Parts Division, Macomb County, MI, (1955-1956), Job No. 21107 folders90Chrysler Corporation, Kokomo Plant, Kokomo, IN, (1955-1956), Job No. 21115 folders90Chrysler Corporation, Kokomo Plant, West Side of Plant Addition, Kokomo, IN, (1963-1964), Job No. 2111-G91Chrysler Corporation, Kokomo Plant, New Industrial Waste Treatment Facility, Kokomo, IN, (1964), Job No. 2111-J91Chrysler Corporation, Kokomo Plant, Second West Addition, Kokomo, IN, (1965-1966), Job No. 2111-M91Chrysler Corporation, Kokomo Plant, Boiler House West Addition, Kokomo, IN, (1965-1966), Job No. 2111-N91Ford Motor Company, General Office Building, Dearborn, MI, (1955-1957), Job No. 21124 folders91Rehabilitation Institute of Metropolitan Detroit, Detroit, MI, (1956-1958), Job No. 211391National Bank of Detroit, Detroit, MI, (1957-1959), Job No. 21144 folders91National Bank of Detroit, Detroit, MI, (1957-1959), Job No. 21144 folders92National Bank of Detroit, Concourse to Underground, Parking Garage, Detroit, MI, (1964), Job No. 2114-D92Ford Motor Company, Engine Plant, Lima, OH, (1956-1957), Job No. 21166 folders92Chrysler Corporation, Ohio Stamping Plant, Twinsburg, OH, (1956-1957), Job No. 21178 folders92Chrysler Corporation, Ohio Stamping Plant, Twinsburg, OH, (1956-1957), Job No. 21177 folders93Chrysler Corporation, Ohio Stamping Plant, Boiler House, Twinsburg, OH, (1956-1957), Job No. 2117-A93Chrysler Corporation, Ohio Stamping Plant, Baler House, Twinsburg, OH, (1956-1957), Job No. 2117-B93Chrysler Corporation, Ohio Stamping Plant, Oil Storage Building, Twinsburg, OH, (1956-1957), Job No. 2117-C93The Washington Post and Times Herald, Mechanical and Office Building, Washington, D.C., (1959-1961), Job No. 21183 folders93Henry Ford Hospital, Fifth and Sixth Floor Addition, Detroit, MI, (1957-1958), Job No. 211993Henry Ford Hospital, Parking Structure, Detroit, MI, (1959), Job No. 2119-C93Ford Motor Company, Addition of Test Cells P-9 through P-12 and Auxiliary Facilities, Chicago, IL, (1956-1957), Job No. 21212 folders93Chevrolet Motor Company, Major Supply Depot, Flint, MI, (1956-1957), Job No. 21233 folders93Chevrolet Motor Company, Major Supply Depot, Flint, MI, (1956-1957), Job No. 21232 folders94Chevrolet Motor Company, Major Supply Depot and Office Building, Flint, MI, (1957), Job No. 2123-A94Ford Motor Company, Assembly Plant, Lorain, OH, (1956-1958), Job No. 21288 folders94Pratt and Whitney Aircraft Plant, West Palm Beach, FL, (1956-1957), Job No. 21292 folders94Pratt and Whitney Aircraft Plant, Office and Manufacturing Building, Boiler House, West Palm Beach, FL, (1957), Job No. 2129-A, F2 folders94Pratt and Whitney Aircraft Plant, West Palm Beach, FL, (1957), Job No. 2129-B94Pratt and Whitney Aircraft Plant, West Palm Beach, FL, (1957), Job No. 2129-C94Pratt and Whitney Aircraft Plant, West Palm Beach, FL, (1957), Job No. 2129-G94Hotpoint Company, Facilities Project, Cook County, IL, (1958), Job No. 213194United Air Lines, Inc., Jet Overhaul and Test Facilities, San Francisco, CA, (1958-1959), Job No. 213394United Air Lines, Inc., Jet Overhaul Facilities, San Francisco, CA, (1958-1959), Job No. 2133-A95United Air Lines, Inc., Jet Engine Test Cell No. 3, San Francisco, CA, (1964), Job No. 2133-D95Chrysler Corporation, Assembly Building, St. Louis, MO, (1958-1959), Job No. 21364 folders95Chrysler Corporation, Assembly Building, St. Louis, MO, (1957-1959), Job No. 2136 A, B5 folders95Chrysler Corporation, Assembly Building Additions, St. Louis, MO, (1964), Job No. 2136-H2 folders95Wayne State University, New Science Building, Detroit, MI, (1959-1960), Job No. 213795Lexington Metal Products Company, Lexington, TN, (1959-1960), Job No. 21392 folders95Lexington Metal Products Company, Stamping Plant North Addition, Lexington, TN, (1960-1961), Job No. 2139-A1 folder95Lexington Metal Products Company, Stamping Plant North Addition, Lexington, TN, (1960-1961), Job No. 2139-A3 folders96Chrysler Corporation, Factory Building, Syracuse, NY, (1959-1960), Job No. 21403 folders96Chrysler Corporation, Factory and Office Buildings, Syracuse, NY, (1959-1962), Job No. 2140 A4 folders96Kelsey-Hayes Company, Press Building, Romulus, MI, (1960-1961), Job No. 214196Kelsey-Hayes Company, Shipping and Storage Building, Romulus, MI, (1961), Job No. 2141-E96Dade County Port Authority, Eastern Air Lines, Inc., Miami, FL, (1961), Job No. 214296Dade County Port Authority, Eastern Air Lines, Inc., Engine Overhaul Shop, Miami, FL, (1961-1962), Job No. 2142-A96Dade County Port Authority, Eastern Air Lines, Inc., Buildings 37, 38, 39, Miami, FL, (1961), Job No. 2142-D96Dade County Port Authority, Eastern Air Lines, Inc., Major Jet Overhaul Service Facilities Building, Miami, FL, (1961-1963), Job No. 2142-E96Dade County Port Authority, Eastern Air Lines, Inc., Major Jet Overhaul Hanger Building, Miami, FL, (1961-1962), Job No. 2142-F2 folders96Dade County Port Authority, Eastern Air Lines, Inc., Storm Water Pump Station No. 2, Site Utilities and Land Improvements, Miami, FL, (1961-1962), Job No. 2142-H96General Motors Corporation, Fisher Body Division, Tarrytown, NY, (1961), Job No. 214396General Motors Corporation, Fisher Body Division, Pedestrian Bridge and Locker Room, Tarrytown, NY, (1961), Job No. 2143-A97General Motors Corporation, Fisher Body Division, Alterations and Additions to Manufacturing and Office Buildings, Tarrytown, NY, (1961), Job No. 2143-B97General Motors Corporation, Fisher Body Division, Conveyor Housing and Elevator, Tarrytown, NY, (1961-1962), Job No. 2143-C97General Motors Corporation, Fisher Body Division, Site Development Work, Tarrytown, NY, (1962), Job No. 2143-D97University of Michigan, Load Test, Ann Arbor, MI, (1962), Job No. 214497Fisher Body, Pressroom and Metal Shop Addition, Hamilton, OH, (1961), Job No. 214697Traverse City Light and Power Company, Power Plant Alterations and Additions, Traverse City, MI, (1966-1968), Job No. 2149-A97Chevrolet Motor Company, Press Shop and Manufacturing Building, Warren, MI, (1962), Job No. 21504 folders97Chevrolet Motor Company, Shipping Building Addition, Sub Station Addition, Remodeling Building, Warren, MI, (1961-1963), Job No. 2150-A, B, C, D4 folders97Chevrolet Motor Company, Tank Farm and Pump House, Warren, MI, (1962-1963), Job No. 2150-E1 folder97Chevrolet Motor Company, Tank Farm and Pump House, Warren, MI, (1962-1963), Job No. 2150-E1 folder98Chevrolet Motor Company, Remodeling of Building No. 8, Alterations to Building Nos. 10 and 11, Warren, MI, (1962), Job No. 2150-F, G, H3 folders98Chevrolet Motor Company, Boiler House Additions, Warren, MI, (1962-1963), Job No. 2150-J3 folders98Chevrolet Motor Company, Remodeling of Building No. 5, Warren, MI, (1964), Job No. 2150-M2 folders98Chevrolet Motor Company, Fire Protection Revisions and Additions, Warren, MI, (1964-1965), Job No. 2150-P98Chevrolet Motor Company, Site Work -- Renovation of Building No. 3, Pedestrian Underpass, Warren, MI, (1964-1965), Job No. 2150-Q98Chevrolet Motor Company, Capacity Increase and Renovations, Warren, MI, (1965-1966), Job No. 2150-R, T2 folders196498Chevrolet Motor Company, 5200 CFM Air Compressor, Warren, MI, (1966), Job No. 2150-S98General Motors Corporation, 1964-1965 World's Fair, Exhibit Building, New York, NY, (1962-1963), Job No. 21584 folders98General Motors Corporation, Cadillac Motor Division, Modernization to Building 101-S and New Steel Storage Building, Detroit, MI, (1963), Job No. 216799Boulevard Buildings, New Exterior Walls and Related Work, Detroit, MI, (1966), Job No. 2175-A99Chevrolet Motor Company, Core Room Addition, Tonawanda, NY, (1964-1965), Job No. 21803 folders99Chevrolet Motor Company, Office and Cleaning Department Additions, Tonawanda, NY, (1964-1965), Job No. 2180-A99Chevrolet Motor Company, New Cupola Building and Craneway, Tonawanda, NY, (1964-1965), Job No. 2180-B4 folders99Ford Motor Company of Canada, St. Thomas Assembly Plant, Talbotville, Ontario, (1966-1967), Job No. 2195-B99General Motors Corporation, Detroit Diesel Engine Division, South Addition to Plant and Boiler House Addition, Detroit, MI, (1966-1967), Job No. 2196 A99Nissan Motor Manufacturing Corporation, Truck Plant, Smyrna, TN, (1981-1982), Job No. 2343-A2 folders99
    Marketing Photographs1902-2007

    The Marketing Photographs series (46 linear feet, 1902-2007) consists of black-and-white and color photographs of the interiors and exteriors of many of Kahn's completed buildings that were used by Albert Kahn Associates, Inc. for marketing purposes. The photographs in this series are arranged alphabetically by project title.

    Aarons Furniture - Chesebrough-Pond's, IncAaron's Furniture Store, Uniontown, PA, (1920), Job No. 970100Abington Apartments, Detroit, MI, (1945), Job No. 763100Acheson Ventures, LLC, Harborside Office Center, Port Huron, MI, Job No. 2900-A100Acheson Ventures, LLC, WaterWorx, Port Huron, MI, Job No. 2900-Y100Ainsworth Manufacturing Company, Manufacturing Building, Detroit, MI, (1935), Job No. 1692100Airfoil Public Relations, Inc., Office Relocation and Renovation, Southfield, MI, Job No. 2970100Airlines National Terminal Service Company, Inc., Willow Run Air Terminal, Ypsilanti, MI, (1947), Job No. 1998100American Baptist, Publishing and Administrative Facilities, (1959), Job No. PR-3109100American Blower Corporation, Machine Shop, Dearborn, MI, (1935), Job No. 1701100American Electrical Heater Company, Detroit, MI, (1908), Job No. 381100American Lady Corset Company, Detroit, MI, (1909), Job No. 415100American Locomotive Company, Diesel Engine Division, Machine Shop and Office Building, Auburn, NY, (1943-1944), Job No. 1907100American Locomotive Company, Machine Shop, Auburn, NY, (1944), Job No. 1907100American Locomotive Company, Office Building, Auburn, NY, (1944), Job No. 1907100American Locomotive Company, Gun Shop, Schenectady, NY, (1945), Job No. 1910100American Motors Corporation, Engine Plant Addition, Kenosha, WI, (1963-1964), Job No. 2168100American Steel Foundries, Cast Armor Plant, Office Building, East Chicago, IN, (1943), Job No. 1903-A100American Steel Foundries, Cast Armor Plant, Personnel Building, East Chicago, IN, (1942-1943), Job No. 1903-B100American Steel Foundries, Cast Armor Plant, Machine Shop, Commissary, X-ray Building, East Chicago, IN, (1942), Job No. 1903-C, E, S100American Steel Foundries, Cast Armor Plant, Boiler House, East Chicago, IN, (1943), Job No. 1903-D100American Steel Foundries, Indiana Harbor Works, Personnel Building, East Chicago, IN, (1943), Job No. 1911100American Steel Foundries, Office Building, Granite City, IL, (1943), Job No. 1928-A100American Steel Foundries, Hammond Works, Office Building, Hammond, IN, (1950-1953), Job No. 2062100Amertorp Corporation, U.S. Naval Ordnance Plant, Chicago, IL, (1942-1946), Job No. 1908100Amertorp Corporation, U.S. Naval Ordnance Plant, Office Building, Chicago, IL, (1942), Job No. 1908-A100Amertorp Corporation, U.S. Naval Ordnance Plant, Garage, Chicago, IL, (1942-1943), Job No. 1908-C100Amertorp Corporation, U.S. Naval Ordnance Plant, Officers' Quarters, Chicago, IL, (1942), Job No. 1908-E100Ann Arbor Daily News, Ann Arbor, MI, (1936), Job No. 1697100Aurora Health Care, Inc., Pewaukee Ambulatory Care Center, Waukesha, WI, Job No. 2521100Aurora Health Care, Inc., Depere Clinic Facility, Depere, WI, Job No. 2522100Aurora Health Care, Inc., Green Bay West Health Center, Green Bay, WI, Job No. 2718100Aurora Health Care, Inc., Ambulatory Care and Clinical Facility, Kenosha, WI, Job No. 2520100Aurora Health Care, Inc., Kenosha Inpatient Addition, Kenosha, WI, Job No. 2520-B100Aurora Health Care, Inc., Bay Care Medical Center, Green Bay, WI, Job No. 2717-A100Aurora Health Care, Inc., Oshkosh Clinic Inpatient Expansion, Oshkosh, WI, Job No. 2627-B100Aurora Health Care, Inc., Replacement Hospital, Two Rivers, WI, Job No. 2696-A100Avon Products, Inc., General100Avon Products, Inc., Laboratory and Office Building, Springdale, OH, Job No. 21652 folders100Avon Products, Inc., Processing Area Addition, Springdale, OH, (1965 1980), Job No. 2165-AW2 folders100Avon Products, Inc., Laboratory and Office Building, Addition to Packaging Department, Springdale, OH, (1968-1974), Job No. 2165-D100Avon Products, Inc., Laboratory and Office Building, Proposed Aerosol Addition, Springdale, OH, (1967), Job No. 2165-E100Avon Products, Inc., Laboratory and Office Building, Addition, Springdale, OH, (1970), Job No. 2165-F100Avon Products, Inc., Stacker Storage Building, Morton Grove, IL, (1978), Job No. 2206-AA100Avon Products, Inc., Office Building and Plant, Morton Grove, IL, (1969-1981), Job No. 2206-D100Avon Products, Inc., Southeastern Branch Facilities, Atlanta, GA, Job No. 2207100Avon Products, Inc., Shipping Building, Glenview, IL, (1968-1971), Job No. 2218100Avon Products, Inc., Design Study, Building Identification Program, Suffern, NY, (1970), Job No. 2232100Avon Products, Inc., Design Study, World Headquarters, New York, NY, Job No. 2264100Avon Products, Inc., Master Planning, Harriman, NY, (1978), Job No. 2310100Avon Products, Inc., Master Plan for Corporate Office Facility, Rye, NY, (1983), Job No. 2338-A100Avon Products, Inc., Proposed Corporate Office Facility, Design Competition Photos, Rye, NY, (1981), Job No. 2338-A100Avon Products, Inc., Site Master Plan for Corporate Office Facility, Renderings, Rye, NY, (1981-1982), Job No. 2338-A101Avon Products, Inc., Conversion of Existing Facility to Corporate Offices, Exterior Views, Rye, NY, (1984-1985), Job No. 2338-B101Avon Products, Inc., Conversion of Existing Facility to Corporate Offices, Interior Views, Rye, NY, (1984-1985), Job No. 2338-B101Avon Products, Inc., Conversion of Existing Facility to Corporate Offices, Lobby, Office Views, Rye, NY, (1984-1985), Job No. 2338-B101Avon Products, Inc., Conversion of Existing Facility to Corporate Offices, Renderings, Drawings, Rye, NY, (1982-1983), Job No. 2338-B101Avon Products, Inc., Conversion of Existing Facility to Corporate Offices, Rye, NY, (1982-1983), Job No. 2338-B101Avon Products, Inc., Atrium Views, Rye, NY, (1984), Job No. 2338-B101Avon Products, Inc., Conversion of Existing Facility to Corporate Offices, Rye, NY, (1981-1982), Job No. 2338-B101Avon Products, Inc., Furniture and Furnishings, Rye, NY, (1983), Job No. 2338-C101Avon Products, Inc., Revised Master Plan, Rye, NY, (1983), Job No. 2338-E101Avon Products, Inc., Exterior Renovations to Existing Lobby, Rye, NY, (1984), Job No. 2338-H101Avon Products, Inc., Northeast Facilities, Rye, NY, (1971), Job No. 3412-A101Bagley Theater and Market Buildings, Detroit, MI, (1910), Job No. 418101Bank of Saginaw, Saginaw, MI, (1927), Job No. 1375101Barit, M.A., Residence at 80 Boston Boulevard, Detroit, MI, (1910), Job No. 1104101Bates Street Building, Detroit, MI, (1926), Job No. 1373101Bearfoot Sole Company, Inc., Factory Building, Cafeteria and Personnel Building, Wadsworth, OH, (1948), Job No. 1980-A, B101Beaumont Hospital, Surgery Expansion, Royal Oak, MI, (1998), Job No. 2497101Beaumont Hospital, Emergency Room Modifications, Royal Oak, MI, (1998), Job No. 2497-G101Beck Printing and Engraving, Philadelphia, PA, (1947)101Belle Isle Memorial, Samuel Francis Smith Monument, Detroit, MI, (1931), Job No. 1605101Belle Isle Park, Conservatory, Detroit, MI, (1903), Job No. 154101Bethlehem Steel Company, Reinforcing Bar Warehouse, Detroit, MI, (1954), Job No. 2098101Blodgett Memorial Medical Center, Master Plan Studies, Grand Rapids, MI, Job No. 2488-A101BMW, Energy Center, Spartanburg, SC, Job No. 2524101BMW, Visitors Center, Spartanburg, SC, Job No. 2514101BMW, Validation Center, Noise and Vibration Anechoic Chamber, Spartanburg, SC, Job No. 2514101BMW, Assembly Plant, Spartanburg, SC, Job No. 2514101BMW, Executive Offices, Spartanburg, SC, Job No. 2514-B101Bon Secours Hospital, Gift Shop Renovation, Grosse Pointe, MI, Job No. 2754101Bond Stores, Inc., Clothing Factory, Rochester, NY, (1946-1948), Job No. 1979101Bond Stores, Inc., Clothing Factory, Boiler House, Rochester, NY, (1946-1947), Job No. 1979-A101Booth, George C., Residence, Cranbrook House, Bloomfield Hills, MI, (1907), Job No. 333101Borg-Warner Corporation, Acoustical Laboratory, Des Plaines, IL, Job No. 2273101Boulevard Building, Woodward and Grand Boulevard, Detroit, MI, Job No. 2175-A101Bower Roller Bearing Company Plant, Detroit, MI, (1910), Job No. 474101Boyer Building, Detroit, MI, (1911), Job No. 459101Briggs Manufacturing Company, Detroit, MI, (1927), Job No. 733101Briggs and Stratton Corporation, Manufacturing Building, Wauwatosa, WI, (1954-1955), Job No. 2094101Briggs and Stratton Corporation, Manufacturing Building Addition, Wauwatosa, WI, (1966-1967), Job No. 2094-C101Briggs and Stratton Corporation, Manufacturing Building South Addition, Wauwatosa, WI, (1973-1974), Job No. 2094-G101Briggs and Stratton Corporation, Steel Receiving Building, Wauwatosa, WI, (1974), Job No. 2094-L101Briggs and Stratton Corporation, Office Building, Wauwatosa, WI, (1975), Job No. 2094-M101Brotherhood of Maintenance of Way Employees, Office Building, Highland Park, MI, (1951-1952), Job No. 2035101Brown, David, Hotel, Detroit, MI, (1923), Job No. 1164-C101Brown-Lipe-Chapin Company, Syracuse, NY, (1910), Job No. 452101Bryant, E.R., Residence, Dearborn, MI, (1925), Job No. 1263101Budd Company, Stamping Plant, Shelbyville, KY, Job No. 2406101Budd Company, Morris Wheeler Project, Philadelphia, PA, Job No. 4138-PR101Budd Company, Plastics Manufacturing Facility, Kendallville, IN, Job No. 2412101Budd Wheel Company, Detroit, MI, (1920-1927), Job No. 1284-A101Buffalo Tank Corporation, Factory Building, Wayne County, MI, (1955), Job No. 2106101Buick Motor Division, General Motors Corporation, Sales and Service Building, Charlotte, NC, (1920), Job No. 955101Buick Motor Division, General Motors Corporation, Flint, MI, (1945-1953), Job No. 1795101Buick Motor Division, General Motors Corporation, Office Building, Flint, MI, (1939-1940), Job No. 1795101Buick Motor Division, General Motors Corporation, Industrial Waste Treatment Plant, Flint, MI, (1952), Job No. 1795-AE101Buick Motor Division, General Motors Corporation, Engine Plant Building No. 36, Flint, MI, (1950-1954), Job No. 1795-S101Buick Motor Division, General Motors Corporation, Castings Cleaning Building, Jet Engine Manufacturing Plant, Assembly and Garage Buildings, Boiler House, Flint, MI, (1950-1953), Job No. 1795-Q, T, W, X101Buick Motor Division, General Motors Corporation, Boiler House, Flint, MI, (1951-1953), Job No. 1795-X101Buick Motor Division, General Motors Corporation, Service Parts Building, Rear Axle Plant, Building No. 4, Flint, MI, (1939-1948), Job No. 1795-A, B101Buick Motor Division, General Motors Corporation, Building Nos. 12, 16, 23, 41-A, Flint, MI, (1945-1948), Job No. 1795-C, D, F, M101Buick Motor Division, General Motors Corporation, Bishop Airport Hangar Building, Flint, MI, (1948), Job No. 1795-L102Buick Motor Division, General Motors Corporation, Aviation Engine Plant, Melrose Park, IL, (1941-1946), Job No. 1883102Buick Motor Division, General Motors Corporation, Aviation Engine Plant, Office Building, Melrose Park, IL, (1941-1942), Job No. 1883-A102Buick Motor Division, General Motors Corporation, Aviation Engine Plant, Boiler House, Melrose Park, IL, (1941-1942), Job No. 1883-B102Buick Motor Division, General Motors Corporation, Aviation Engine Plant, Personnel Building, Melrose Park, IL, (1941-1942), Job No. 1883-C102Buick Motor Division, General Motors Corporation, Aviation Engine Plant, Airplane Engine Plant, Melrose Park, IL, (1942), Job No. 1883-D102Buick Motor Division, General Motors Corporation, Aviation Engine Plant, Dynamometer Test Building, Melrose Park, IL, (1942), Job No. 1883-E102Buick Motor Division, General Motors Corporation, Aviation Engine Plant, Master and Transformer Substation, Melrose Park, IL, (1941-1942), Job No. 1883-F102Buick Motor Division, General Motors Corporation, Aviation Engine Plant, 28 Additional Test Cells, Melrose Park, IL, (1943), Job No. 1883-M102Buick Motor Division, General Motors Corporation, Aviation Engine Plant, 120 Foot Extension on Each Side of Main Building, Melrose Park, IL, (1943), Job No. 1883-N102Buick Motor Division, General Motors Corporation, Aluminum Foundry, Flint, MI, (1943-1947), Job No. 1913 A102Burroughs Adding Machine Company, Power and Electric Survey and Detroit Edison Standby Service, Detroit, MI, (1948), Job No. 300-AV102Burroughs Adding Machine Company, Power House, Plymouth, MI, (1938), Job No. 1737-A102Burroughs Adding Machine Company, Detroit, MI, (1912), Job No. 300102Burroughs Adding Machine Company, Plymouth, MI, (1937-1938), Job No. 1737102Cadillac Motor Car Company, Office Building, Detroit, MI, (1926), Job No. 923102Cadillac Motor Car Company, Engineering Building, Detroit, MI, (1929), Job No. 923-H102Cadillac Motor Car Company, Conversion of Foundry to Machine Shop, Detroit, MI, (1964), Job No. 923-P102Cadillac Motor Car Company, Garage Building, Detroit, MI, (1964), Job No. 923-Q102Cadillac Motor Car Company, Sheet Metal Plant Addition, Detroit, MI, (1963), Job No. 2167102Cadillac Motor Car Company, Sales and Service Building, Brookline, MA, (1927), Job No. 1398102Canadian Bank of Commerce, Walkerville, Ontario, Canada, Job No. 292102Carter Products, Inc., Manufacturing Plant, New Brunswick, NJ, (1940-1943), Job No. 1871102Caterpillar Inc., Southtown Facility, Peoria, IL, Job No. 2429102Chalmers Motor Car Company, Office and Service Building, Detroit, MI, Job No. 344-Z102Checker Cab Manufacturing Company, Body Plant, Kalamazoo, MI, (1929), Job No. 1500102Chesebrough-Pond's, Inc., Ragu Manufacturing, Warehouse Expansion, Owensboro, KY, Job No. 2320102Chesebrough-Pond's, Inc., Warehouse Addition, Jefferson City, MO, Job No. 2324-A102ChevroletChevrolet Gear and Axle Division, General Motors Corporation, Office Building Addition to Plant, Detroit, MI, (1946-1947), Job No. 1893-C102Chevrolet Gear, Axle, and Forge Division, General Motors Corporation, Forge and Press Shop, Gear and Axle Plant, Detroit, MI, (1937-1947), Job No. 1337-AJ102Chevrolet Light Car Division, General Motors Corporation, Office Building, Parts Building, Engineering Building, Brook Park Village, OH, (1946), Job No. 1989 A, C, D, A1990102Chevrolet Motor Division, General Motors Corporation, Commercial Body Plant, Indianapolis, IN, (1948), Job No. 1702-A, H102Chevrolet Motor Division, General Motors Corporation, Commercial Body Plant, Indianapolis, IN, (1935-1960), Job No. 1702 F, G, J, K, R102Chevrolet Motor Division, General Motors Corporation, Court and Dye Storage Building, Detroit, MI, (1923), Job No. 1100102Chevrolet Motor Division and Fisher Body Division, General Motors Corporation, Bulkhead and Fill, Assembly Building Addition, Manufacturing Plant, Office Building, Tarrytown, NY, (1957-1965), Job No. 1157 AA, AD, 2143 B102Chevrolet Motor Division, General Motors Corporation, Office Building, Tarrytown, NY, (1961-1963), Job No. 1157-AJ, AJR102Chevrolet Motor Division, General Motors Corporation, Sales, Parts, and Service Buildings, Flint, MI, (1941), Job No. 1882-H102Chevrolet Motor Division, General Motors Corporation, Sales, Parts, and Service Buildings, Janesville, WI, (1927), Job No. 1338-A102Chevrolet Motor Division, General Motors Corporation, Sales, Parts, and Service Buildings, St. Louis, MO, (1927), Job No. 1088-B102Chevrolet Motor Division, General Motors Corporation, Boiler House, Norwood, OH, (1957), Job No. 1089-T102Chevrolet Motor Division, General Motors Corporation, Addition, Assembly Building Alterations and Additions, Norwood, OH, (1940-1947), Job No. 1089-M, O102Chevrolet Motor Division, General Motors Corporation, Power House, Addition, Detroit, MI, (1939-1968), Job No. 1337-AG, AM102Chevrolet Motor Division, General Motors Corporation, Office Building Addition, Janesville, WI, (1947), Job No. 1338-F102Chevrolet Motor Division, General Motors Corporation, Assembly Building Addition, Janesville, WI, (1946), Job No. 1338-H102Chevrolet Motor Division, General Motors Corporation, Fisher Section Alterations and Additions, Janesville, WI, (1954), Job No. 1338-L102Chevrolet Motor Division, General Motors Corporation, Assembly Plant Alterations and Additions, Atlanta, GA, (1954-1958), Job No. 1408-H, J, K, N, T102Chevrolet Motor Division, General Motors Corporation, Bumper Plant Alterations and Additions, Assembly Plant Addition, Atlanta, GA, (1937-1968), Job No. 1408-AO, AJ, D102Chevrolet Motor Division, General Motors Corporation, Office Building, Addition, Atlanta, GA, (1947-1962), Job No. 1408-E, T102Chevrolet Motor Division, General Motors Corporation, Assembly Plant, Baltimore, MD, (1937-1961), Job No. 1672102Chevrolet Motor Division, General Motors Corporation, Commercial Body Plant, Indianapolis, IN, (1936-1938), Job No. 1702102Chevrolet Motor Division, General Motors Corporation, Office Building, Indianapolis, IN, (1944-1948), Job No. 1702-G102Chevrolet Motor Division, General Motors Corporation, Manufacturing Building, Tonawanda, NY, (1938), Job No. 1756102Chevrolet Motor Division, General Motors Corporation, Office Building, Tonawanda, NY, (1938), Job No. 1756-A103Chevrolet Motor Division, General Motors Corporation, Boiler House, Tonawanda, NY, (1938), Job No. 1756-B103Chevrolet Motor Division, General Motors Corporation, Rehabilitation of Test Facilities, Tonawanda, NY, (1953), Job No. 1892-N103Chevrolet Motor Division, General Motors Corporation, Airplane Engine Plant, Tonawanda, NY, (1942-1944), Job No. 1892103Chevrolet Motor Division, General Motors Corporation, Airplane Engine Plant Additions, Tonawanda, NY, (1943-1944), Job No. 1892-B, H103Chevrolet Motor Division, General Motors Corporation, Airplane Engine Plant, Office Building, Tonawanda, NY, (1944), Job No. 1892-D103Chevrolet Motor Division, General Motors Corporation, Foundry, Tonawanda, NY, (1964), Job No. 2180 A103Chevrolet Motor Division, General Motors Corporation, Addition to East End of Plant, Bay City, MI, (1942), Job No. 1894103Chevrolet Motor Division, General Motors Corporation, Aluminum Forge Plant, Office Section, Saginaw, MI, (1943), Job No. 1905103Chevrolet Motor Division, General Motors Corporation, Aluminum Forge Plant, Boiler House, Saginaw, MI, (1943), Job No. 1905-B103Chevrolet Motor Division, General Motors Corporation, Assembly Plant, Flint, MI, (1945-1948), Job No. 1950103Chevrolet Motor Division, General Motors Corporation, Assembly Plant, Office Building, Flint, MI, (1944-1966), Job No. 1950-A, AN103Chevrolet Motor Division, General Motors Corporation, Assembly Plant, Boiler House, Addition, Flint, MI, (1947 1963), Job No. 1950-B, AK103Chevrolet Motor Division, General Motors Corporation, Assembly Plant, Flint, MI, (1947-1966), Job No. 1950-AJ, AM, B, C, D, F, H103Chevrolet Motor Division, General Motors Corporation, Office Building, Flint, MI, (1962-1963), Job No. 2093-E103Chevrolet Motor Division, General Motors Corporation, Dye Build Plant, Flint, MI, (1968), Job No. 1082-N103Chevrolet Motor Division, General Motors Corporation, Major Supply Depot, Flint, MI, (1958), Job No. 2123103Chevrolet Motor Division, General Motors Corporation, Office Building Renovations and Additions, Flint, MI, (1971), Job No. 1950-BF103Chevrolet Motor Division, General Motors Corporation, Assembly Plant, Van Nuys, CA, (1945-1960), Job No. 1987103Chevrolet Motor Division, General Motors Corporation, Assembly Plant Alterations and Additions, Parts Plant Alterations and Additions, Van Nuys, CA, (1957-1960), Job No. 1987-G, S103Chevrolet Motor Division, General Motors Corporation, Manufacturing Building, Cleveland, OH, (1947-1950), Job No. 2011103Chevrolet Motor Division, General Motors Corporation, Office Building, Cleveland, OH, (1950), Job No. 2011103Chevrolet Motor Division, General Motors Corporation, Frame and Stamping Plant, Office Building, Flint, MI, (1961-1962), Job No. 2093-E103Chevrolet Motor Division, General Motors Corporation, Boiler House, Cleveland, OH, (1950), Job No. 2011-A103Chevrolet Motor Division, General Motors Corporation, Manufacturing Building Addition, Parts Storage and Shipping Dock Addition, Industrial Waste Treatment Building, Cleveland, OH, (1956-1963), Job No. 2011-E, F, G103Chevrolet Motor Division, General Motors Corporation, Spring and Bumper Plant, Boiler House, Livonia, MI, (1955), Job No. 2087-A103Chevrolet Motor Division, General Motors Corporation, Spring and Bumper Plant Addition, Livonia, MI, (1953-1963), Job No. 2087 F104Chevrolet Motor Division, General Motors Corporation, Spring and Bumper Plant, Office Building Addition and Renovations, Livonia, MI, (1955 1965), Job No. 2087 H104Chevrolet Motor Division, General Motors Corporation, Foundry, Saginaw, MI, (1964), Job No. P-3317104Chevrolet Motor Division, General Motors Corporation, Assembly Plant Additions, Paint Mix and Storage Building, Pump House, Baltimore, MD, (1956-1962), Job No. 1672-G, K, N, Q, S, T, W104Chevrolet Motor Division, General Motors Corporation, Stamping and Frame Plant, Stamping Building Addition, Flint, MI, (1953-1960), Job No. 2093 D104Chevrolet Motor Division, General Motors Corporation, Office Building, Flint, MI, (1962-1963), Job No. 2093-E104Chevrolet Motor Division, General Motors Corporation, Laboratory and Renovation of Existing Forge Administration Building, Detroit, MI, (1965-1966), Job No. 1337-BJ104Chevrolet Motor Division, General Motors Corporation, Office Building Alterations, Indianapolis, IN, (1964), Job No. 1702-U104Chevrolet Motor Division, General Motors Corporation, Trim Facility Addition, Indianapolis, IN, (1969), Job No. 1702-X104Chevrolet Motor Division, General Motors Corporation, Third Floor Addition, Indianapolis, IN, (1970), Job No. 1702-Y104Chevrolet Motor Division, General Motors Corporation, Office Building Alterations and Additions, Kansas City, MO, (1964), Job No. 1433-AK104Chevrolet Motor Division, General Motors Corporation, Dye Build Plant, Flint, MI, (1966-1969), Job No. 1082-N104Chevrolet Motor Division, General Motors Corporation, Major Supply Depot, Flint, MI, (1956-1958), Job No. 2123104Chevrolet Motor Division, General Motors Corporation, Assembly Plant, Lordstown, OH, (1956), Job No. 2126104Chevrolet Motor Division, General Motors Corporation, High Bay Addition, Southwest Corner, Indianapolis, IN, (1964), Job No. 1702-W104Chevrolet Motor Division, General Motors Corporation, Assembly Plant, Truck Loading Dock, Assembly Plant Additions, Kansas City, MO, (1955-1963), Job No. 1433 AA, AB, Q, R104Chevrolet Motor Division, General Motors Corporation, Alterations and Additions to South and East Sides of Plant, Kansas City, MO, (1954), Job No. 1433-L, M104Chevrolet Motor Division, General Motors Corporation, General Photographs104Chevrolet Motor Division, General Motors Corporation, Gear and Axle Plant, Detroit, MI, (1972-1977), Job No. 1336 R, S2 folders104Chevrolet Motor Division, General Motors Corporation, Gear and Axle Plant, General Refrigeration, Detroit, MI, (1977), Job No. 1336-T104Chevrolet Motor Division, General Motors Corporation, Engine Plant No. 4 Addition, Tonawanda, NY, (1964), Job No. 1892-Q104Chevrolet Motor Division, General Motors Corporation, Office Building Addition and Modernization, Tonawanda, NY, (1964-1966), Job No. 1756-J104Chevrolet Motor Division, General Motors Corporation, Office Building Addition, Indianapolis, IN, (1963), Job No. 1702-T104Chevrolet Motor Division, General Motors Corporation, Fisher Body Division, Phase No. 2, Kansas City, MO, (1963), Job No. 1433-AE104Chevrolet Motor Division, General Motors Corporation, Office Building Addition and Alterations, Second Floor Addition for Truck Cab Shop, Baltimore, MD, (1937 1960-1963), Job No. 1672 K, P104Chevrolet Motor Division, General Motors Corporation, Assembly Plant, Boiler House and Incinerator Building, Baltimore, MD, (1937 1961), Job No. 1672 R105Chevrolet Motor Division, General Motors Corporation, V-8 Engine Plant, Flint, MI, (1963), Job No. 2171105Chevrolet Motor Division, General Motors Corporation, Southern Addition, Muncie, IN, (1963-1964), Job No. 2178105Chevrolet Motor Division, General Motors Corporation, South Addition and Coil Shop Building, Livonia, MI, (1971), Job No. 2087-Q105Chevrolet Motor Division, General Motors Corporation, Tank Farm and Pump House, Warren, MI, (1962-1963), Job No. 2150 E105Chevrolet Motor Division, General Motors Corporation, Alterations to Building Nos. 10 and 11, Warren, MI, (1962-1963), Job No. 2150-G, H105Chevrolet Motor Division, General Motors Corporation, Assembly Plant, Alterations and Additions to Plant, Corvette Building, St. Louis, MO, (1960-1964), Job No. 1088-K, L, M, N, P105Chevrolet Motor Division, General Motors Corporation, Office Building Extension, St. Louis, MO, (1964), Job No. 1088-R105Chevrolet-Pontiac-Canada Group, General Motors Corporation, South Addition to Fabrication Plant, Mansfield, OH, (1997), Job No. 2376 A105Chevrolet-Pontiac-Canada Group, General Motors Corporation, Pressed Metal Plant, Existing Plant Renovations, Parma, OH, (1996), Job No. 2011 R105Chevrolet-Saginaw Grey Iron Foundry Division, General Motors Corporation, Transmission Plant Office Building, Saginaw, MI, (1963-1964), Job No. 1905-C105Chevrolet-Saginaw Grey Iron Foundry Division, General Motors Corporation, Transmission Plant Office Building, Saginaw, MI, (1966), Job No. 1905-D2 folders105Chevrolet-Saginaw Grey Iron Foundry Division, General Motors Corporation, Modernization of Kitchen and Cafeteria Facilities, Experimental Foundry, Saginaw, MI, (1960-1963), Job No. 1430-AA, AC105Chevrolet-Saginaw Grey Iron Foundry Division, General Motors Corporation, Experimental Foundry, Administrative Office Building, Foundry and Core Building Additions, Saginaw, MI, (1941-1968), Job No. 1430-AC, AK, N, O, P105Chevrolet-Saginaw Grey Iron Foundry Division, General Motors Corporation, Engineering Building Addition, Saginaw, MI, (1962), Job No. 1430-AD105Chevrolet-Saginaw Grey Iron Foundry Division, General Motors Corporation, Administrative Office Building, Saginaw, MI, (1965-1968), Job No. 1430-AJ, AK3 folders105Chevrolet-Saginaw Grey Iron Foundry Division, General Motors Corporation, Office Building, Saginaw, MI, (1970-1978), Job No. 1430-AK105Chevrolet-Saginaw Grey Iron Foundry Division, General Motors Corporation, Engineering Office Building, Saginaw, MI, (1960), Job No. 1430-Z105Chicago Mail Order Company - Curtiss-Wright CorporationChicago Mail Order Company, Chicago, IL, (1940), Job No. 1838105Children's Aid Society Building, Detroit, MI, Job No. 1603105Children's Hospital of Michigan, Detroit Medical Center, Detroit, MI, (1971), Job No. 2151105Children's Hospital of Michigan, Detroit Medical Center, Kitchen, Detroit, MI, (1971-1972), Job No. 2151105Children's Hospital of Michigan, Detroit Medical Center, Hospital Building, Parking Structure, Detroit, MI, (1961-1978), Job No. 2151 A105Children's Hospital of Michigan, Detroit Medical Center, Emergency Department Renovations, Detroit, MI, Job No. 2151-AA105Children's Hospital of Michigan, Detroit Medical Center, Orthopedics Department Relocation, Detroit, MI, Job No. 2151-AB105Children's Hospital of Michigan, Detroit Medical Center, Modifications to Cafeteria, Detroit, MI, Job No. 2151-AD105Children's Hospital of Michigan, Detroit Medical Center, North Building Additions, Detroit, MI, Job No. 2151-AJ105Children's Hospital of Michigan, Detroit Medical Center, Overall Space Planning, Detroit, MI, Job No. 2151-V105Children's Hospital of Michigan, Detroit Medical Center, Surgery Department Renovation, Detroit, MI, (1994), Job No. 2151-Y105Children's Hospital of Michigan, Farmington, MI, Job No. 1043105Children's Hospital of Michigan, Nurses Home, Detroit, MI, (1922), Job No. 1098105Children's Hospital of Michigan, Couzens Memorial Clinic, Detroit, MI, (1953), Job No. 1098-V105Chrysler Corporation, Desoto Division, Warren Avenue Plant, Air View, Detroit, MI, (1950), Job No. 797, 2030105Chrysler Corporation, Plymouth Division, Hospital, Detroit, MI, (1939), Job No. 1456-AF106Chrysler Corporation, Plymouth Division, Office Building, Detroit, MI, (1945-1947), Job No. 1456-AJ2 folders106Chrysler Corporation, Plymouth Division, Mt. Elliott Plant, Detroit, MI, (1928 1945), Job No. 1456-AL, AM106Chrysler Corporation, Plymouth Division, Mt. Elliott Plant, Detroit, MI, (1958), Job No. 1456-AT, AV, AW106Chrysler Corporation, Dodge Division, Main Plant, Detroit, MI, Job No. 1507106Chrysler Corporation, Dodge Division, Main Plant, Three Story Addition to Building No. 419, Pedestrian Bridge, Detroit, MI, (1954), Job No. 1507-D, F106Chrysler Corporation, Sales and Service Building, East Jefferson Avenue Plant, Detroit, MI, (1934), Job No. 1646106Chrysler Corporation, Personnel Building, East Jefferson Avenue Plant, Detroit, MI, (1946-1947), Job No. 1646-AD106Chrysler Corporation, Service Building, East Jefferson Avenue Plant, Detroit, MI, (1946-1947), Job No. 1646-AK106Chrysler Corporation, East Jefferson Avenue Plant, Detroit, MI, (1946), Job No. 1646-AL, AO, AP, AT106Chrysler Corporation, Sales Building, Sales Room, Detroit, MI, (1934-1953), Job No. 1646-BA, BN106Chrysler Corporation, East Jefferson Avenue Plant, Detroit, MI, (1955-1963), Job No. 1646-CE, CF, CQ106Chrysler Corporation, Machine Shop Extension to Service Building, Detroit, MI, (1942), Job No. 1646-X106Chrysler Corporation, Highland Park Plant, Highland Park, MI, (1939-1947), Job No. 1659106Chrysler Corporation, Administration Building, Fifth Floor Show Room, Fifth Floor Administration, Highland Park, MI, (1935), Job No. 1659-A, BN106Chrysler Corporation, Engineering Garage Building No. 135, Highland Park, MI, (1947), Job No. 1659-AE106Chrysler Corporation, Engineering Building, Highland Park, MI, (1945-1948), Job No. 1659-AL, AO, AP, BD106Chrysler Corporation, Dynamometer Building, Engineering Building, Institute of Engineering, Highland Park, MI, (1939-1947), Job No. 1659-M, Z, AC106Chrysler Corporation, Administration Offices Addition, Highland Park, MI, (1939 1950), Job No. 1659-N, BC106Chrysler Corporation, Export Building, Highland Park, MI, (1940-1941), Job No. 1659-Y106Chrysler Corporation, Desoto Division, Press Shop and Addition, Detroit, MI, (1936-1942), Job No. 1719 D106Chrysler Corporation, Desoto Division, Employment and Welfare Building, Detroit, MI, (1938), Job No. 1719-A106Chrysler Corporation, Warehouse, Marysville, MI, (1936), Job No. 1727106Chrysler Corporation, Dodge City Complex Truck Assembly Plant, Warren, MI, Job No. 1766106Chrysler Corporation, Dodge Truck Division, Half Ton Truck Plant, Detroit, MI, (1943-1944), Job No. 1766-L, Q106Chrysler Corporation, Dodge Truck Division, Half Ton Truck Plant, Assembly Building Addition, Detroit, MI, (1938-1946), Job No. 1766 P106Chrysler Corporation, Parts Warehouse, Oakland, CA, (1939), Job No. 1808106Chrysler Corporation, San Leandro Plant, San Leandro, CA, (1951-1953), Job No. 1808-C, F106Chrysler Corporation, Tank Arsenal, Warren, MI, (1941), Job No. 1867106Chrysler Corporation, Dodge Division, Detroit, MI, (1941), Job No. 1889 A106Chrysler Corporation, Dodge Division, Forge Plant, Detroit, MI, (1951), Job No. 1889-K106Chrysler Corporation, Dodge-Chicago Plant, Chicago, IL, (1942-1945), Job No. 1917106Chrysler Corporation, Dodge-Chicago Plant, Airplane Engine Plant, Engineering Building, Administration Building, Chicago, IL, (1943-1945), Job No. 1917 A106Chrysler Corporation, Dodge-Chicago Plant, Airplane Engine Plant, Office Building, Chicago, IL, (1943-1945), Job No. 1917-A106Chrysler Corporation, Dodge-Chicago Plant, Chicago, IL, (1943), Job No. 1917-C, M106Chrysler Corporation, Dodge-Chicago Plant, Airplane Engine Plant, Chicago, IL, (1942-1943), Job No. 1917-E, N, R106Chrysler Corporation, Dodge-Chicago Plant, Airplane Engine Plant, Personnel Building, Building No. 3, Chicago, IL, (1943-1945), Job No. 1917-K106Chrysler Corporation, Lynch Road Plant, Office Building Addition, Detroit, MI, (1946), Job No. 1944-A106Chrysler Corporation, Airtemp Division, Boiler House, Dayton, OH, (1945-1947), Job No. 1970106Chrysler Corporation, Eastern Parts Plant, Newark, DE, (1940 1947), Job No. 1992-B106Chrysler Corporation, Nine Mile Press Plant, Detroit, MI, (1948-1949), Job No. 20242 folders107Chrysler Corporation, Nine Mile Press Plant, South Side Addition, Detroit, MI, (1951), Job No. 2024-F107Chrysler Corporation, Nine Mile Press Plant, Office Building Addition, Detroit, MI, (1949-1953), Job No. 2024 G107Chrysler Corporation, Boiler House, Indianapolis, IN, (1952-1954), Job No. 2065-A107Chrysler Corporation, Tank Manufacturing Plant, Newark, DE, (1951-1957), Job No. 20672 folders107Chrysler Corporation, Tank Manufacturing Plant, Boiler House, Newark, DE, (1952), Job No. 2067-A107Chrysler Corporation, Tank Manufacturing Plant, Office Building, Newark, DE, (1951-1952), Job No. 2067-B107Chrysler Corporation, Plymouth Delaware Plant, Manufacturing Building Addition, Boiler House, Plant Protection House, Paint Mixing Building, Pump House and Tank Farm Addition, Driveaway Parking Lot No. 4 and Building, Newark, DE, (1956-1957), Job No. 2067-J, K, L, M, N, P107Chrysler Corporation, Engine Plant, Manufacturing Building, Boiler House, Trenton, MI, (1951-1953), Job No. 2068 A107Chrysler Corporation, Engine Plant, Boiler House, Trenton, MI, (1953), Job No. 2068-A107Chrysler Corporation, Jet Engine Plant, Manufacturing Building, Sterling Heights, MI, (1954), Job No. 2071107Chrysler Corporation, Jet Engine Plant, Administration Building, Macomb County, MI, (1954), Job No. 2071-A107Chrysler Corporation, Jet Engine Plant, Boiler House, Macomb County, MI, (1954), Job No. 2071-B107Chrysler Corporation, Jet Engine Plant, Chip Handling Building, Tank Farm, Sewage Treatment Plant, Test Cells, Sterling Heights, MI, (1953-1954), Job No. 2071-C, D, E, F107Chrysler Corporation, Jet Engine Plant, Control Test Building No. 6, Master Substation, Industrial Waste Treatment Plant, Pump House at Ponding Basin, Sterling Heights, MI, (1953-1954), Job No. 2071-G, H, K, L107Chrysler Corporation, Jet Engine Plant, Pump House for Water Storage Tanks, Incinerator Building No. 8, Four Combination Test Cells (Building No. 25), Sterling Heights, MI, (1954), Job No. 2071-M, N, P107Chrysler Corporation, Jet Engine Plant, Propane Tank Farm, Dynamometer Building No. 26, Acetylene and Oxygen Storage Building, Sterling Heights, MI, (1952-1954), Job No. 2071-R, S, U107Chrysler Corporation, Parts Division, Truck Dock, Centerline, MI, (1952), Job No. 2077107Chrysler Corporation, Parts Division, Office Building, Centerline, MI, (1951), Job No. 2077-A107Chrysler Corporation, Parts Division, Office and Warehouse, Centerline, MI, (1957), Job No. 2077-E107Chrysler Corporation, Delaware Tank Depot, Newark, DE, (1953-1954), Job No. 2084107Chrysler Corporation, Proving Grounds, Test Tracks, Chelsea, MI, (1953), Job No. 2085107Chrysler Corporation, Manufacturing Plant, Kokomo, IN, (1956), Job No. 2111108Chrysler Corporation, Boiler House, Kokomo, IN, (1956), Job No. 2111-B108Chrysler Corporation, Transaxle Additions, Kokomo, IN, (1980), Job No. 2111-T108Chrysler Corporation, A604 Transmission Program, Kokomo, IN, (1985), Job No. 2111-Y108Chrysler Corporation, Automotive Body Division, Ohio Stamping Plant Office, Boiler House, Twinsburg, Summit County, OH, (1958), Job No. 2117 A108Chrysler Corporation, Stamping Division, Ohio Stamping Plant, Twinsburg, Summit County, OH, (1955-1958), Job No. 2117108Chrysler Corporation, Assembly Plant, Sterling Heights, MI, (1985), Job No. 2360108Chrysler Corporation, Assembly Plant, Model Pictures, Renderings, Proofs, Sterling Heights, MI, Job No. 2360108Chrysler Corporation, Assembly Plant, Exterior Photos, Miscellaneous Interior Photos, Sterling Heights, MI, Job No. 2360108Chrysler Corporation, Assembly Plant, Shop Area Photos (Interior), Sterling Heights, MI, Job No. 23602 folders108Chrysler Canada, Ltd., Bramalea Assembly Plant, Brampton, Ontario, Job No. 23642 folders108Chrysler Canada, Ltd., Bramalea Assembly Plant, Model Pictures, Brampton, Ontario, Job No. 23642 folders108Chrysler Canada, Ltd., Bramalea Assembly Plant, Renderings, Floor Plans, Miscellaneous Drawings, Brampton, Ontario, Job No. 2364108Chrysler Canada, Ltd., Bramalea Assembly Plant, Proofs and Transparencies, Brampton, Ontario, Job No. 2364108Chrysler Corporation, Assembly Plant, St. Louis, MO, (1957-1960), Job No. 2136108Chrysler Corporation, Assembly Plant, St. Louis, MO, (1957-1960), Job No. 2136109Chrysler Corporation, Assembly Plant, Boiler House, St. Louis, MO, (1958-1959), Job No. 2136-A109Chrysler Corporation, Assembly Plant, East and West Additions, St. Louis, MO, (1970), Job No. 2136-L109Chrysler Corporation, Manufacturing Plant, Dewitt, NY, (1960-1961), Job No. 2140 A109Chrysler Corporation, Kenosha Engine Plant, Kenosha, WI, Job No. 2168-A109Chrysler Corporation, Truck Assembly Plant, Office Building, St. Louis, MO, (1965-1967), Job No. 21933 folders109Chrysler Corporation, Truck Assembly Plant, Office Building, St. Louis, MO, (1965-1967), Job No. 2193109Chrysler Corporation, Truck Assembly Plant Addition, St. Louis, MO, (1972-1973), Job No. 2193-D109Chrysler Corporation, T-115 Additions, Assembly Plant II, St. Louis, MO, Job No. 2193-H109Chrysler Corporation, Sales and Service Station, Richmond, VA, (1944), Job No. P-2301109Chrysler Corporation, Plant, Richmond, IN, (1978), Job No. 2316 (not built)109Chrysler Corporation, Jefferson Assembly Plant, Detroit, MI, Job No. 2403109Chrysler Corporation, Powertrain Test Facility, Auburn Hills, MI, Job No. 2437109Chrysler Corporation, CTC Sound and Vibration Development Facility, Auburn Hills, MI, Job No. 2437109Chrysler Corporation, Indiana Transmission Plant, Kokomo, IN, Job No. 2584109Chrysler Corporation, Plymouth Division, Temporary Office Building, Detroit, MI, (1955), Job No. P-2951109Chrysler Corporation, Administration Building Addition, Highland Park, MI, (1955), Job No. P-2960109Chrysler Corporation, CTC Additional Parking Structures, Auburn Hills, MI, (1997), Job No. 5686109Citizens Title and Trust Company, Uniontown, PA, Job No. 1022109City Machine and Tool Company, Toledo, OH, Job No. 1846109Clark Equipment Company, Machine Shop and Office, Jackson, MI, (1948-1950), Job No. 2027109Clark Equipment Company, Machine Shop and Office, Boiler House, Jackson, MI, (1949-1950), Job No. 2027-A109Clements, W.L., Residence, Bay City, MI, (1908), Job No. 362109Coffin, H.E., Residence, Grosse Pointe, MI, Job No. 429109Colgate-Palmolive Company, Oil Bleach Building, Super Suds Building, Vel Building, Jeffersonville, IN, (1944-1946), Job No. 1895-A, B, E109Colgate-Palmolive Company, Dental Cream Area Modernization, Jeffersonville, IN, (1983), Job No. 1895-AC109Colgate-Palmolive-Peet Company, Office Building, Jeffersonville, IN, (1946), Job No. 1895-G109Colgate-Palmolive Company, Warehouse Building and Passageway to Toilet Articles Building, Jeffersonville, IN, (1950-1952), Job No. 1895-P2 folders109Colgate-Palmolive Company, Ajax Building, Fab Building, Jeffersonville, IN, (1952-1954), Job No. 1895-Q, S109Colgate-Palmolive Company, Toilet Articles Building Addition, Jeffersonville, IN, (1942-1960), Job No. 1895 V2 folders110Colgate-Palmolive Company, Office Building, Jeffersonville, IN, (1959), Job No. 1895-W110Colgate-Palmolive Company, Office Building, Jeffersonville, IN, (1973), Job No. 1895-Z110Colgate-Palmolive-Peet Company, Manufacturing Building, Jersey City, NJ, (1947), Job No. 1960-A110Colgate-Palmolive Company, Spray Products Building, Jersey City, NJ, (1943-1944), Job No. 1960-B110Colgate-Palmolive-Peet Company, Office and Shop, Jersey City, NJ, (1945), Job No. 1960-D110Colgate-Palmolive Company, Industrial Service Building, Warehousing and Shipping, Jersey City, NJ, (1954), Job No. 1960-N2 folders110Colgate-Palmolive Company, Essential Oils Building, Jersey City, NJ, (1974-1975), Job No. 1960-S110Colgate-Palmolive Company, Spray Products Building, Kansas City, KS, (1947), Job No. 1962110Colgate-Palmolive Company, Toilet Articles Building, Kansas City, KS, (1951-1952), Job No. 1962-B110Colgate-Palmolive Company, Warehouse, Addition, Kansas City, KS, (1954-1960), Job No. 1962-G, H110Colgate-Palmolive Company, Building K, Kansas City, KS, (1983), Job No. 1962-Q110Colgate-Palmolive Company, Spray Products Building, Berkeley, CA, (1948), Job No. 2021110Colgate-Palmolive Company, Corporate Computer Center, Piscataway, NJ, (1959-1960), Job No. 2268110Colgate-Palmolive Company, Research and Development Center, Piscataway, NJ, (1983), Job No. 2268-C, D2 folders110Colgate-Palmolive Company, "A" Wing Office Renovation, Existing R&D Center, Piscataway, NJ, (1986), Job No. 2268-G110Colgate-Palmolive Company, Support and Laboratory Additions, Piscataway, NJ, (1987), Job No. 2268-G110Colgate-Palmolive Company, "D" Wing Millwork (Laboratory Interiors), Piscataway, NJ, Job No. 2268-J110Colgate-Palmolive Company, Upgrading Existing Building, Piscataway, NJ, Job No. 2268-L110Colgate-Palmolive-Peet Company, Research Building, Jersey City, NJ, (1949), Job No. P-2681110Colgate-Palmolive-Peet Company, Cafeteria Building, Kansas City, KS, (1952), Job No. P-2828110Collins and Aikman Corporation, Automotive Center, Troy, MI, Job No. 2724110Collins and Aikman Corporation, Global Headquarters, Troy, MI, Job No. 2724-C110Columbia Records, Inc., Building No. 2 Addition, Bridgeport, CT, (1947-1948), Job No. 2001110Comprehensive Health Services, Detroit, MI, Job No. 2478110Conelec, Inc., Office, Laboratory, and Manufacturing Facilities, Elmira, NY, (1967-1971), Job No. 2211110Congoleum Nairn Corporation, Examining Building, Stove Building, Kearny, NJ, (1944-1946), Job No. 1955 A110Consolidated Aircraft Corporation, Flight Hangar, Seaplane Ramp and Boat House, Warehouse, Loft Building, Shipping and Spares Building, Control Tower on Flight Hangar, New Orleans, LA, (1945), Job No. 1921 A, C, H, L, O, P110Continental Motor Car Company, Detroit, MI, (1912), Job No. 508110Cottage Hospital of Grosse Pointe, Second Floor Obstetrical Unit, Grosse Pointe Farms, MI, Job No. 2379-K110Cottage Hospital of Grosse Pointe, New Emergency Department Lobby, Grosse Pointe Farms, MI, Job No. 2379-L110Country Club of Detroit, Grosse Pointe Farms, MI, Job Nos. 264, 1049110Crittenton Hospital Renovations and Expansions, Rochester, MI, Job No. 2530-B110Crocker-Wheeler Electric Manufacturing Company, Factory and Office Building No. 28 Addition, Ampere, NJ, (1940), Job No. P-1869110Curtiss-Wright Corporation, Airplane Division, Assembly Building, Buffalo, NY, (1938-1939), Job No. 1785 A110Curtiss-Wright Corporation, Airplane Division, Airport Plant, Buffalo, NY, (1941-1945), Job No. 18412 folders111Curtiss-Wright Corporation, Airplane Division, Airport Plant, Engineering Building, Buffalo, NY, (1941-1942), Job No. 1841111Curtiss-Wright Corporation, Airplane Division, Airport Plant, Office Building, Buffalo, NY, (1941-1942), Job No. 1841111Curtiss-Wright Corporation, Airplane Division, Airport Plant, Boiler House and Addition, Buffalo, NY, (1941-1943), Job No. 1841-A, O111Curtiss-Wright Corporation, Airplane Division, Airport Plant, Truck Garage, Buffalo, NY, (1942), Job No. 1841-B111Curtiss-Wright Corporation, Propeller Division, Boiler House, Caldwell, NJ, (1941), Job No. 1853111Curtiss-Wright Corporation, Propeller Division, Caldwell, NJ, (1941-1944), Job No. 1853-A, B, F, L111Curtiss-Wright Corporation, Propeller Division, Administration Building, Manufacturing Building, Caldwell, NJ, (1940-1944), Job Nos. 1853-B1929111Curtiss-Wright Corporation, Airplane Division, St. Louis, MO, (1941-1942), Job No. 1868111Curtiss-Wright Corporation, Airplane Division, Engineering Building, Temporary Engineering Building, St. Louis, MO, (1942-1944), Job No. 1868111Curtiss-Wright Corporation, Airplane Division, Power House, St. Louis, MO, (1942-1944), Job No. 1868-A111Curtiss-Wright Corporation, Airplane Division, Airframe Manufacturing and Assembly Plant, Personnel Building, St. Louis, MO, (1944), Job No. 1868-C111Curtiss-Wright Corporation, Airplane Division, Truck Garage, St. Louis, MO, (1944), Job No. 1868-N111Curtiss-Wright Corporation, Airplane Division, Columbus, OH, (1941-1949), Job No. 1869111Curtiss-Wright Corporation, Airplane Division, Engineering Building, Columbus, OH, (1941), Job No. 1869111Curtiss-Wright Corporation, Airplane Division, Office Building, Columbus, OH, (1941), Job No. 1869111Curtiss-Wright Corporation, Airplane Division, Boiler House, Columbus, OH, (1941-1944), Job No. 1869-A111Curtiss-Wright Corporation, Airplane Division, Assembly Building, Service Building, Columbus, OH, (1942-1944), Job No. 1869-J, T111Curtiss-Wright Corporation, Propeller Division, Propeller Plant, Beaver, PA, (1941-1944), Job No. 1882111Curtiss-Wright Corporation, Propeller Division, Office Building, Beaver, PA, (1942-1944), Job No. 1882-A111Curtiss-Wright Corporation, Propeller Division, Propeller Plant, Boiler House, Beaver, PA, (1942), Job No. 1882-B111Curtiss-Wright Corporation, Propeller Division, Assembly Plant, Indianapolis, IN, (1943), Job No. 1909111Curtiss-Wright Corporation, Airplane Division, Manufacturing Plant, Buffalo, NY, (1943), Job No. 1915111Curtiss-Wright Corporation, Airplane Division, Boiler House Addition, Plant No. 1, Buffalo, NY, (1943), Job No. 1915-B111Curtiss-Wright Corporation, Airplane Division, Louisville, KY, (1942-1943), Job No. 1923111Curtiss-Wright Corporation, Airplane Division, Manufacturing and Assembly Plant, Truck Garage, Louisville, KY, (1943), Job No. 1923111Curtiss-Wright Corporation, Airplane Division, Office, Louisville, KY, (1943), Job No. 1923111Curtiss-Wright Corporation, Airplane Division, Manufacturing Plant, Boiler House, Louisville, KY, (1943), Job No. 1923-B111Curtiss-Wright Corporation, Propeller Division, Manufacturing Building, Caldwell, NJ, (1943-1944), Job No. 1929111Dearborn Country Club - Ford, Edsel and Eleanor, ResidenceDearborn Country Club, Master Plan for Additions and Renovations, Dearborn, MI, (1986), Job No. 1129-G111Dearborn Country Club, Renovations, Dearborn, MI, Job No. 1129-K111Dearborn Inn, Hotel, Dearborn, MI, Job No. 1504111Delco Appliance Division, General Motors Corporation, Office and Manufacturing Building, Rochester, NY, (1938), Job No. 1765111De Lorean Motor Company, Assembly Plant, Fort Worth, TX, (1976-1977), Job No. 2293111"Denso" Nippondenso Manufacturing USA, Inc., Manufacturing Facility, Battle Creek, MI, (1986), Job No. 2378111"Denso" Nippondenso Manufacturing Canada, Manufacturing Facility, Guelph, Ontario, Canada, (1997), Job No. 2422111"Denso" Nippondenso Manufacturing USA, Inc., Alternator/Starter Plant, Maryville, TN, (1989), Job No. 2435111"Denso" Nippondenso Manufacturing USA, Inc., Meter Plant, Maryville, TN, (1989), Job No. 2435111Detroit Athletic Club, Detroit, MI, (1915), Job No. 593112Detroit City Airport, Air Terminal Building, Detroit, MI, (1966-1967), Job No. 21822 folders112Detroit, City of, First-Bagley Parking Structure, Detroit, MI, (1976-1977), Job No. 22562 folders112Detroit, City of, First-Michigan Parking Structure, Detroit, MI, (1969-1970), Job No. 2230112Detroit, City of, Grand Circus Park Renovations, Detroit, MI, (1998), Job No. 8001112Detroit, City of, Kennedy Underground Parking Garage, Detroit, MI, (1967), Job No. 2152112Detroit, City of, Police Headquarters, 1300 Beaubien, Detroit, MI, (1945), Job No. 844112Detroit Creamery Company, Detroit, MI, (1911), Job No. 527112Detroit Diesel Allison Division, General Motors Corporation, Engineering Complex, First Phase, Romulus, MI, (1977-1979), Job No. 2297112Detroit Diesel Allison Division, General Motors Corporation, Manufacturing Facility Addition, Romulus, MI, (1978-1980), Job No. 2307112Detroit Diesel Engine Division, General Motors Corporation, Addition, Detroit, MI, (1965-1978), Job No. 2196112Detroit DDA, Detroit Riverfront Promenade, Detroit, MI, (2002), Job No. 8052-A112Detroit Free Press, Newspaper Plant, Detroit, MI, (1925 1945), Job No. 1170112Detroit Girl Scouts, Inc., Rattalee Lake Camp, Holly, MI, (1945), Job No. 2036112Detroit House of Correction, Northville, MI, (1922), Job No. 1039112Detroit Medical Center, Grand River Health Center, Detroit, MI, (1996), Job No. 2608112Detroit Medical Center, New Center Community Health Center, Detroit, MI, Job No. 2608-N112Detroit Medical Center, Highland Park Health Center, Highland Park, MI, Job No. 2608-P112Detroit Medical Center, Multi-project Healthcare Renovation Program, Detroit, MI, Job No. 2641112Detroit Medical Center, Healing Garden, Children's Hospital of Michigan, Detroit, MI, Job No. 2151-E112Detroit Medical Center, Grace Sinai Hospital, Detroit, MI, Job No. 2659-P112Detroit News, Newspaper Plant, Garage, Detroit, MI, Job No. 863-C2 folders112Detroit News, WWJ Broadcasting Studio, Radio Station, Detroit, MI, Job No. 1681112Detroit Opera House, Design of Historic Renovations, Detroit, MI, Job No. 8022112Detroit Opera House, Offices, Detroit, MI, (1999), Job No. 8069112Detroit Properties Building, Detroit, MI, (1926), Job No. 1247112Detroit Public Library, Magnus Butzel Branch, Detroit, MI, Job No. 529112Detroit Public Schools, Cass Tech High School Study, Detroit, MI, (1985), Job No. 2282112Detroit Public Schools, Cass Tech High School Addition, Detroit, MI, (1985), Job No. 2282-C112Detroit Public Schools, Heilmann Elementary, Detroit, MI, Job No. 2800112Detroit Railway and Harbor, Terminals, Detroit, MI, (1926), Job No. 1252112Detroit Savings Bank, Woodward and Milwaukee, Detroit, MI, Job No. 689112Detroit Steel Products Company, Michigan Sales Office and Warehouse, Detroit, MI, (1950), Job No. 2046112Detroit Trust Company, Detroit, MI, (1915), Job No. 637113Detroit Wire Spring Company, Detroit, MI, Job No. 802113Detroit Zoological Institute, Animal Hospital Complex, Royal Oak, MI, (2005), Job No. 2785113Diesel Engine Division, General Motors Corporation, Manufacturing and Laboratory Building, Redford, MI, (1937-1938), Job No. 1755113Diesel Engine Division, General Motors Corporation, Laboratory and Power Building, Redford, MI, (1938), Job No. 1755-A113Dodge Brothers, Inc., Assembly Plant, Detroit, MI, (1910-1911), Job No. 449113Dodge Brothers, Inc., Office Building, Detroit, MI, (1911), Job No. 449-E113Dodge, H.E., Residence, Grosse Pointe, MI, Job No. 423113Dodge Main Plant, Chrysler Corporation, Three Story Addition to Building No. 419, Detroit, MI, (1945), Job No. 1507-D113Dominion Tire Company, Ltd., Canadian Consolidated Rubber Company, Factory, Berlin, Ontario, Canada, (1912), Job No. 562113R.R. Donnelley and Sons Company, Printing Plant, Chicago, IL, (1948), Job No. 1984113R.R. Donnelley and Sons Company, Office Building, Chicago, IL, (1946-1961), Job No. 1984-R2 folders113R.R. Donnelley and Sons Company, Rotogravure Plant Addition, Chicago, IL, (1946-1948), Job No. 2003113Donovan Building, Detroit, MI, Job No. 1093113Draper Motor Company, (1944), Job No. 1956113Eastern Airlines, Inc., Jet Engine Maintenance and Overhaul Base, Major Jet, Hangar, and Overhaul Facilities, Miami, FL, (1960-1963), Job No. 21422 folders113Eastern Airlines, Inc., Jet Engine Maintenance and Overhaul Base, Major Jet Overhaul Facilities, Miami, FL, (1961-1963), Job No. 2142-A, B113Eastern Airlines, Inc., Jet Engine Maintenance and Overhaul Base, Jet Engine Test Cells, Miami, FL, (1963), Job No. 2142-B113Eastern Airlines, Inc., Jet Engine Maintenance and Overhaul Base, Alterations to Building Nos. 37, 38, and 39 for Plant and Equipment Maintenance Shops, Miami, FL, (1960-1961), Job No. 2142-D113Eastern Airlines, Inc., Jet Engine Maintenance and Overhaul Base, Service Facilities Building, Miami, FL, (1963), Job No. 2142-E113Eastern Airlines, Inc., Jet Engine Maintenance and Overhaul Base, Hangar Building, Miami, FL, (1961-1963), Job No. 2142-F113Eastern Airlines, Inc., Jet Engine Maintenance and Overhaul Base, Industrial Waste Treatment Plant, Miami, FL, (1963), Job No. 2142-G113Eastern Airlines, Inc., Jet Engine Maintenance and Overhaul Base, Site Utilities and Land Improvements, Miami, FL, (1963), Job No. 2142-H113Eastern Airlines, Inc., Detroit Metro Airport, Hangar Building, Detroit, MI, (1983), Job No. 2185-B113Edgar, C.G., Residence, Grosse Pointe, MI, (1915), Job No. 693113Edwards Brothers, Inc., Printing Plant, Ann Arbor, MI, (1948), Job No. P-2641113Edwin S. George Stores, Detroit, MI, Job No. 370113Electro Motive Division, General Motors Corporation, Manufacturing Plant Addition, McCook, IL, (1938), Job No. 1763113Eli Lilly and Company, Aerial Perspectives and Renderings, Indianapolis, IN, (1971-1976), Job No. 22402 folders113Eli Lilly and Company, Renderings, Indianapolis, IN, (1971-1973), Job No. 2240113Eli Lilly and Company, Master Plan, Phase I Dry Products Manufacturing, Indianapolis, IN, (1972), Job No. 2240-A113Eli Lilly and Company, Exterior Photos, Office Building, Distribution Center, Biochemical Facilities Building, Parenteral Manufacturing Building, Indianapolis, IN, (1972-1978), Job No. 2240-A, C, G, M, N113Eli Lilly and Company, Interior Photos, Office Building, Distribution Center, Biochemical Facilities Building, Parenteral Manufacturing Building, Indianapolis, IN, (1972-1978), Job No. 2240-A, C, G, M, N2 folders114Eli Lilly and Company, Distribution Center, Office Building, Indianapolis, IN, (1973-1977), Job No. 2240-C, G114Eli Lilly and Company, Master Planning Studies, Indianapolis, IN, Job No. 2424114Eli Lilly and Company, LTC Administration Center, Indianapolis, IN, (1992), Job No. 2424-N114Ethyl Corporation, Engineering Research Building, Ferndale, MI, (1940-1942), Job No. 1854114Ethyl Corporation, Engineering Research Building, Garage, Ferndale, MI, (1942), Job No. 1854114Ethyl Corporation, Research and Test Facilities, Richmond, VA, (1994), Job No. 2477114Evansville Airport, Evansville, IN, (1944), Job No. P-2310114Evening News Association, Detroit News, Newspaper Printing Facility, Lansing, MI, (1981), Job No. 23172 folders114Evergreen Cemetery Mausoleum, (1941), Job No. P-1836114Fairchild Aircraft Corporation, Office and Factory Building, Hagerstown, MD, (1930), Job No. 1853-B114Fairchild Aircraft Division, Fairchild Engine and Airplane Corporation, Manufacturing Plant, Hangar Building, Manufacturing Building East Addition, Sewage Treatment Plant, Hagerstown, MD, (1943-1950), Job No. 1861 J, K, M114Fairchild Aircraft Division, Fairchild Engine and Airplane Corporation, Manufacturing Plant Alterations and Additions, Alterations and Additions to Plant for Air Conditioning, Burlington, NC, (1942-1943), Job No. 1912-A, J114Fairchild Aircraft Division, Fairchild Engine and Airplane Corporation, Boiler House, Burlington, NC, (1944), Job No. 1912-B114Federated Metals Corporation, Detroit, MI, Job No. 1131114Ferris State University, Granger Center, Big Rapids, MI, Job No. 2810114Ferro Stamping Company, Boiler House, Mt. Pleasant, MI, (1954-1955), Job No. 2091-A114Ferro Stamping Company, Factory Building Extension, Mt. Pleasant, MI, (1953), Job No. 2091-B114Ferro Manufacturing Corporation, Office Building Addition, Mt. Pleasant, MI, (1966), Job No. 2091-C114Ferro Manufacturing Corporation, South Addition, Pikeville, TN, (1984), Job No. 2313-A114Firestone Steel Products Company, Manufacturing and Warehouse Building, Riverview, MI, (1938), Job No. 1758114First Congregational Church, Alterations and Additions, Detroit, MI, Job No. 1008114First National Bank, Youngstown, OH, Job No. 340114First National Bank, Bay City, MI, Job No. 610114First National Bank, Woodward Avenue at Fort Street, Detroit, MI, (1922), Job No. 803114First National Bank, Fisher Building, Detroit, MI, Job No. 1378114First National Building, Detroit, MI, (1945 1959), Job No. 1373-L114First National Building, Office Tower Addition, Detroit, MI, Job No. 4181-PR114First State Bank, Griswold and Lafayette Streets, Detroit, MI, Job No. 1141114Fisher Body Division, General Motors Corporation, Kansas City, MO, (1963), Job No. 1433-AE114Fisher Body Division, General Motors Corporation, Los Angeles, CA, (1963), Job No. 1987-W114Fisher Body Division, General Motors Corporation, Office Building, Tarrytown, NY, (1960-1965), Job No. 2143-B114Fisher Building, Detroit, MI, (1927-1979), Job No. 1378114Fisher Building, Detroit, MI, (1927-1979), Job No. 1378115Fisher Building, Garage, Detroit, MI, Job No. 1378115Fisher Building, Recess Club, Alterations and Additions, Detroit, MI, (1959), Job No. 1378-AA115Fisher Building, West Entrance Alterations, Detroit, MI, (1961), Job No. 1378-AC115Fisher and G.M. Buildings, Office Buildings, Detroit, MI, (1920-1928), Job No. 1378 902115Fisher-New Center Company, Fisher and New Center Buildings, Modernization of Elevators, Detroit, MI, (1965), Job No. 1378-AE115Fisher-New Center Company, Office Building and Parking Structure, Detroit, MI, (1967-1970), Job No. 2214115Fisher-New Center Company. Office Building and Parking Structure Models, Exterior, Detroit, MI, (1970), Job No. 2214115Fisher-New Center Company, Office Building and Parking Structure Renderings, Exterior, Detroit, MI, (1968-1970), Job No. 2214115Fisher-New Center Company, Office Building Renderings, Interior, Detroit, MI, (1968), Job No. 2214115Fisher-New Center Company, Cooperative Center Building, Detroit, MI, (1969), Job No. 2215115Fisher-New Center Company, Fisher-New Center Development Planning, West, Detroit, MI, Job No. 2215115Fisher-New Center Company, Fisher-New Center Area, Appearance Program, Detroit, MI, (1970), Job No. 2239115Flint Daily Journal, Flint, MI, Job No. 1114115Ford, Edsel and Eleanor, Residence, Gaukler Pointe, Grosse Pointe Shores, MI, (1926), Job No. 1334115Ford, Edsel and Eleanor, Residence, Modifications to House, Gaukler Pointe, Grosse Pointe Shores, MI, (1979), Job No. 1334-AA115Ford, Edsel and Eleanor, Residence, Activities Center, Grosse Pointe Shores, MI, (1990), Job No. 1334-AB115Ford Motor Company - General Electric CompanyFord Motor Company, Highland Park Plant, Highland Park, MI, (1909-1914), Job No. 3752 folders115Ford Motor Company, Highland Park Plant, North Building, Highland Park, MI, (1973-1975), Job No. 375-CC, CD115Ford Motor Company, Sales and Service Building and Show Rooms, Various Cities, (1910-1938), Job No. 462115Ford Motor Company, Power House, Walkerville, Ontario, Canada, Job No. 475115Ford Motor Company, Rouge Plant, Dearborn, MI, (1924-1938), Job No. 847115Ford Motor Company, Shipbuilding Plant, Dearborn, MI, (1919), Job No. 847115Ford Motor Company, Driveaway Building, Dearborn, MI, (1939-1940), Job No. 847-EA115Ford Motor Company, Lincoln Driveaway Building, Detroit, MI, (1939-1940), Job No. 1074-M115Ford Motor Company, Engineering Laboratory, Dearborn, MI, (1925-1940), Job No. 1077115Ford Motor Company, Engineering Laboratory, Power House, Dearborn, MI, (1925-1931), Job No. 1077115Ford Motor Company, Twin Cities Assembly Plant, St. Paul, MN, Job No. 1148115Ford Motor Company, Twin Cities Assembly Plant West Addition, St. Paul, MN, (1968), Job No. 1148-K115Ford Motor Company, Twin Cities Assembly Plant, Ford Ranger Program Paint Facility, St. Paul, MN, (1983-1986), Job No. 1148-S115Ford Motor Company, Assembly Building Addition, Dallas, TX, (1940), Job No. 1154-G116Ford Motor Company, Assembly Building, Buffalo, NY, (1930), Job No. 1161116Ford Motor Company, Assembly Building, Norfolk, VA, (1923), Job No. 1163116Ford Motor Company, Hangar Building, Dearborn, MI, Job No. 1290-P116Ford Motor Company, Administration Building, Temporary Office Building Addition, Dearborn, MI, (1945-1947), Job No. 1326 R116Ford Motor Company, Assembly Plant, Long Beach, CA, (1926), Job No. 1347116Ford Motor Company, Assembly Plant, Edgewater, NJ, (1930-1933), Job No. 1501116Ford Motor Company, Assembly Building, Richmond, CA, (1930), Job No. 1562116Ford Motor Company, Assembly Plant, Mexico, DF, (1932), Job No. 1589116Ford Motor Company, Factory Building, Oil and Varnish Building and Truck Garage, Boiler House, Office Building Addition, Aircraft Accessories Building, Ypsilanti, MI, (1947-1951), Job No. 1611-N, P, Q, R, S116Ford Motor Company, Rotunda Building, Chicago World's Fair, Relocated at Dearborn, MI, (1933), Job Nos. 1657, 1673116Ford Motor Company, Small Parts Plant, Northville, MI, Job No. 1694116Ford Motor Company, Manufacturing and Hydro Electric Plant, Milford, MI, (1938-1939), Job No. 1726116Ford Motor Company, Tire Plant, Dearborn, MI, (1937-1938), Job No. 1747116Ford Motor Company, Press Shop, Dearborn, MI, (1938-1940), Job No. 1772116Ford Motor Company, World's Fair Building, New York, NY, (1939), Job No. 1783116Ford Motor Company, Bomber Plant, Manufacturing Area, Office Building, Willow Run, Ypsilanti, MI, (1942-1944), Job No. 1888 A116Ford Motor Company, Bomber Plant, Manufacturing Area, Commissary Building, Willow Run, Ypsilanti, MI, (1941-1942), Job No. 1888 S116Ford Motor Company, Bomber Plant, Boiler House, Willow Run, Ypsilanti, MI, (1942), Job No. 1888-B116Ford Motor Company, Bomber Plant, Personnel Building, Willow Run, Ypsilanti, MI, (1942-1944), Job No. 1888-C116Ford Motor Company, Bomber Plant, Hangar 1 and 2, Willow Run, Ypsilanti, MI, (1941-1945), Job No. 1888-F, AH116Ford Motor Company, Bomber Plant, Airplane School, Willow Run, Ypsilanti, MI, (1941-1945), Job No. 1888-K116Ford Motor Company, Lincoln-Mercury Division, Assembly Plant, St. Louis, MO, (1938-1945), Job No. 1975116Ford Motor Company, Lincoln-Mercury Division, Assembly Plant, Office Building, St. Louis, MO, (1945-1949), Job No. 1975-A116Ford Motor Company, Lincoln-Mercury Division, Assembly Plant, Boiler House, St. Louis, MO, (1948-1949), Job No. 1975-B116Ford Motor Company, Assembly Plant, Office Building, Atlanta, GA, (1947-1948), Job No. 19862 folders116Ford Motor Company, Assembly Plant, Boiler House, Atlanta, GA, (1948), Job No. 1986-A116Ford Motor Company, Boiler House, Los Angeles, CA, (1946), Job No. 1995116Ford Motor Company, Lincoln-Mercury Division, Assembly Plant, Oxygen and Acetylene Building, Metuchen, NJ, (1946-1949), Job No. 1988 C116Ford Motor Company, Assembly Plant, East Additions, Metuchen, NJ, (1970), Job No. 1988-Q117Ford Motor Company, Metal Stamping Plant, Pump House and Cooling Tower, Master Substation, Hamburg, NY, (1949-1951), Job No. 2051 B, E117Ford Motor Company, Metal Stamping Plant, Boiler House, Hamburg, NY, (1949-1951), Job No. 2051-A117Ford Motor Company, Metal Stamping Plant Additions, Hamburg, NY, (1970-1971), Job No. 2051-L, M117Ford Motor Company, Metal Stamping Division, Southwest Addition, Hi Density Stacker Building, Hamburg, NY, (1971-1973), Job No. 2051-M117Ford Motor Company, Automatic Transmission Plant, Boiler House, Cincinnati, OH, (1952), Job No. 2054117Ford Motor Company, Automatic Transmission Plant, Factory Building Addition, Office Building Addition, Cincinnati, OH, (1949-1953), Job No. 2054 D, E117Ford Motor Company, Cleveland Boiler Plant, Brook Park Village, OH, (1953-1954), Job No. 2058-A, K117Ford Motor Company, Cleveland Engine Plant No. 2, Brook Park Village, OH, (1991), Job No. 2058-AD117Ford Motor Company, Cleveland Foundry, Brook Park Village, OH, (1950-1953), Job No. 2058-B117Ford Motor Company, Cleveland Personnel Building, Brook Park Village, OH, (1950-1953), Job No. 2058-C117Ford Motor Company, Cleveland Engine Plant No. 2, Brook Park Village, OH, (1950-1958), Job No. 2058-G117Ford Motor Company, Tank Manufacturing Plant, Administration and Engineering Building, Livonia, MI, (1951-1955), Job No. 2066117Ford Motor Company, Tank Manufacturing Plant, Boiler House, Livonia, MI, (1951-1953), Job No. 2066-A117Ford Motor Company, Transmission Plant Expansion, Livonia, MI, (1977), Job No. 2066-N117Ford Motor Company, Lincoln-Mercury Division, Gas Turbine Plant, Romulus Township, MI, (1952-1954), Job No. 2079117Ford Motor Company, Aircraft Engine Division, Building No. 25, Chicago, IL, (1953), Job No. 2082117Ford Motor Company, Canton Forge Plant Additions and Alterations, Administration Building Additions and Alterations, Canton, OH, (1952-1953), Job No. 2083 A117Ford Motor Company, Assembly Plant, San Jose, CA, (1953-1955), Job No. 20882 folders117Ford Motor Company, Assembly Plant, Utility Building, Oil House, Covered Loading Docks, Stand-by L.P. Gas Plant, Grounds Equipment Building, Industrial Waste Treatment System, Oxygen-Acetylene Building, San Jose, CA, (1954-1955), Job No. 2088-A, B, C, E, F, G, H117Ford Motor Company, Assembly Plant No. 2, Louisville, KY, (1955), Job No. 20922 folders117Ford Motor Company, Assembly Plant No. 2, Boiler House, Louisville, KY, (1955), Job No. 2092-A117Ford Motor Company, Assembly Plant No. 2, Oil House, Oxygen-Acetylene Building, Incinerator Building, Stand-By I.P. Gas Plant, Louisville, KY, (1955), Job No. 2092-B, C, D, E118Ford Motor Company, Bomber Plant, Warehouse, Willow Run, MI, (1943), Job No. P-2096118Ford Motor Company, Manufacturing Development Facilities Building, Redford Township, MI, (1954), Job No. 2101118Ford Motor Company, Manufacturing Development Center, Plastics Development Addition, Redford Township, MI, (1971-1972), Job No. 2101-A118Ford Motor Company, Chassis Parts Division, Sterling Township Plant, Macomb County, MI, (1955-1956), Job No. 2110118Ford Motor Company, Trailer Park, Willow Run, MI, (1943), Job No. P-2110118Ford Motor Company, Ford Division, General Office Building, Dearborn, MI, (1955-1958), Job No. 21125 folders118Ford Motor Company, Engine Plant, Office Building, Lima, OH, (1955-1958), Job No. 21162 folders118Ford Motor Company, Aircraft Engine Division, Addition of Test Cells P-9 -- P-12 and Auxiliary Facilities, Chicago, IL, (1957-1958), Job No. 2121118Ford Motor Company, Assembly Plant, Lorain, OH, (1958-1963), Job No. 2128118Ford Motor Company, Shopping Center, Willow Run, MI, (1943), Job No. P-2148118Ford Motor Company, Research and Engineering Center, Addition to Styling Building Studio Wing, Styling Building North Addition, Dearborn, MI, (1962-1965), Job No. 2161 A118Ford Motor Company, Research and Engineering Center, Dearborn, MI, (1963), Job No. 2173118Ford Motor Company, Research and Engineering Center, Gas Turbine Laboratory Addition, Dearborn, MI, (1971), Job No. 2183-A118Ford Motor Company, Stamping Plant, Woodhaven, MI, (1964-1967), Job No. 21871 folder118Ford Motor Company, Stamping Plant, Woodhaven, MI, (1964-1967), Job No. 21873 folders119Ford Motor Company of Canada, Ltd., Assembly Plant, Administration Building, St. Thomas, Ontario, Canada, (1966), Job No. 2195119Ford Motor Company of Canada, Ltd., Assembly Plant, St. Thomas, Ontario, Canada, (1966-1968), Job No. 2195-A, B119Ford Motor Company, Trim Plant, Proposed Location Unknown, Job No. 2200119Ford Motor Company, Van Dyke Plant, Transmission and Chassis Division, Sterling Heights, MI, (1966-1978), Job No. 2201-A2 folders119Ford Motor Company, Van Dyke Plant, Transmission and Chassis Division, Drive Shaft and Front Suspension Plant Utility Building, Sterling Heights, MI, (1966), Job No. 2201-B119Ford Motor Company, Service Parts Processing Redistribution Center, Brownstown Township, Wayne County, MI, (1967-1972), Job No. 2212119Ford Motor Company, Auto-Lite Ford Products Division, Detroit Parts Distribution Center, West Building Addition, Detroit, MI, (1972), Job No. 2246119Ford Motor Company, Philippines Stamping Plant, Office Building, Mariveles, Bataan, Philippines, (1973), Job No. 2255119Ford Motor Company, Central Laboratory, Dearborn, MI, (1977-1979), Job No. 22792 folders119Ford Motor Company, Batavia Transmission Plant Plans and Drawings, Batavia, OH, Job No. 2305119Ford Motor Company, Batavia Transmission Plant, Boiler House and Central Refrigeration Plant, Batavia, OH, (1980), Job No. 2305-A119Ford Motor Company, Batavia Transmission Plant, Administration Building, Batavia, OH, (1980-1981), Job No. 2305-B1 folder119Ford Motor Company, Batavia Transmission Plant, Administration Building, Batavia, OH, (1980-1981), Job No. 2305-B2 folders120Ford Motor Company, Schuler Press Line, Chicago Heights, IL, (1994), Job No. 2319120Ford Motor Company, Paint Building Addition, Wixom, MI, (1988), Job No. 2411120Ford Motor Company, Body and Stamping Plant, Wayne, MI, (1988), Job No. 2416120Ford Motor Company, Design Center, Dearborn, MI, Job No. 2428120Ford Motor Company, Product Development Offices, Dearborn, MI, (1999), Job No. 2428-BZ120Ford Motor Company, Kansas City Assembly Plant, Paint Building/Upgrade of Paint System, Claycomo, MO, Job No. 2436120Ford Motor Company, F-Wing Addition, Dynamometer Laboratory, Dearborn, MI, (1996), Job No. 2443-L120Ford Motor Company, R&E Center, AEC NVH Tech Center, Dearborn, MI, (1995), Job No. 2456-A120Ford Motor Company, R&E Center, AEC NVH Tech Center, Dearborn, MI, Job No. 2456-C120Ford Motor Company, Office Building, Detroit, MI, (1949), Job No. P-2699120Ford Motor Company, Engineering Office Building, Dearborn, MI, (1953-1954), Job No. P-2872120Ford Motor Company, Reception Center, Computer and Credit Building, Dearborn, MI, (1963), Job No. P-3257120Ford Motor Company, Michigan Truck Project, Wayne, MI, Job No. 4318-PR120Ford Motor Company, Michigan Truck Project, Wayne, MI, (1989-1990), Job Nos. 4382-PR, 4383-PR120Fort Shelby Hotel, Garage, Detroit, MI, Job No. 983-A120Fort Shelby Hotel, Detroit, MI, (1928), Job No. 1305120Franklin Hills Country Club, Franklin Hills, MI, Job No. 1374120Franklin Hills Country Club, Franklin Hills, MI, (1970-1971), Job No. 1374-M120Fuller, Alvan T., Service Building, Packard Motor Car Company, Boston, MA, (1909), Job No. 413120Fuller Brush Company, Factory and Office Building, Hartford, CT, (1957), Job No. 2135120Fuller-Johnson Corporation, Office and Factory Building, Cleveland, OH, (1947), Job No. 2012120General Dynamics Corporation, Technical Research Office, Sterling Heights, MI, (1983), Job No. P-3852120General Electric Company, Warehouse Addition and Garage, Detroit, MI, (1939), Job No. 1812120General Electric Company, Order and Stores Building, Schenectady, NY, (1940-1941), Job No. 1865-A120General Electric Company, Materials and Processes Laboratory Building, Schenectady, NY, (1959-1960), Job No. 1865-D120General Electric Company, Aircraft Gas Turbine Division, Lockland, OH, (1949), Job No. 2041120General Electric Company, Appliance Park, Louisville, KY, (1950-1968), Job No. 20762 folders120General Electric Company, Appliance Park, Building Nos. 2, 3, 4, 5, Louisville, KY, (1953-1955), Job No. 2076-A, F, H, S, Y120General Electric Company, Warehouse, Louisville, KY, (1959), Job No. 2076-AO120General Electric Company, Appliance Park, Building No. 1, Louisville, KY, (1966), Job No. 2076-AX120General Electric Company, Appliance Park, Household Refrigerator Plastics Building No. 4, Louisville, KY, (1967), Job No. 2076-AY120General Electric Company, Applied Research and Design Center, Louisville, KY, (1968-1972), Job No. 2076-AZ2 folders120General Electric Company, Appliance Park, Boiler House, Building No. 20, Louisville, KY, (1951-1957), Job No. 2076-B120General Electric Company, Appliance Park, Administration Building, Louisville, KY, (1952-1953), Job No. 2076-G121General Electric Company, Appliance Park, Warehouse, Louisville, KY, (1955-1957), Job No. 2076-G121General Electric Company, Appliance Park East, Columbia, MD, (1969-1970), Job No. 22232 folders121General Electric Company, Appliance Park East, Dryer Building, Columbia, MD, (1972), Job No. 2223-AA121General Electric Company, Appliance Park East, Range Building No. 1, Columbia, MD, (1968-1972), Job No. 2223-B2 folders121General Electric Company, Appliance Park East, Warehouse, Columbia, MD, (1970-1972), Job No. 2223-C121General Electric Company, Appliance Park East, Personnel Building, Columbia, MD, (1969-1972), Job No. 2223-F121General Electric Company, Appliance Park East, Air Conditioning Building, Columbia, MD, (1969-1972), Job No. 2223-G2 folders121General Electric Company, Appliance Park East, Communications and Security Building, Columbia, MD, (1969-1972), Job No. 2223-K121General Electric Company, Appliance Park East, Entrance Sign, Columbia, MD, Job No. 2223-V121General Electric Company, Detroit Technical Center, Southfield, MI, (1973), Job No. 22662 folders121General Electric Company, Productivity Center Study, Southfield, MI, (1982), Job No. 2350-A121General Electric Company, Application Development Center Addition, Southfield, MI, Job No. 2350-F3 folders121General Electric Company, Test Cells, Lynn, MA, (1948), Job No. PR-2724122General Motors Corporation - Henry Ford HospitalGeneral Motors Corporation Building, Detroit, MI, Job No. 902122General Motors Corporation, Assembly Division, Norwood, OH, (1982), Job No. 1089122General Motors Corporation, Assembly Division, Norwood, OH, (1982), Job No. 1089-T, U, V122General Motors Corporation, Research Building, Detroit, MI, (1938-1945), Job No. 1422122General Motors Corporation, World's Fair Building, Chicago, IL, (1933-1934 1962-1964), Job No. 1614122General Motors Corporation, Assembly Plant, Los Angeles, CA, (1936-1940), Job No. 1710122General Motors Corporation, Truck and Coach Division, Storage Building, Pontiac, MI, (1941-1950), Job No. 1728-D122General Motors Corporation, Truck and Coach Division, Final Repair Building, Pontiac, MI, (1941-1950), Job No. 1728-E122General Motors Corporation, Truck and Coach Division, Bridge Joining New and Old Engineering Buildings, Pontiac, MI, (1941-1950), Job No. 1728-F122General Motors Corporation, Truck and Coach Division, Personnel Building, Pontiac, MI, (1942), Job No. 1728-G122General Motors Corporation, Truck and Coach Division, Assembly Plant, Pontiac, MI, (1941-1950), Job No. 1728-J122General Motors Corporation, Truck and Coach Division, Cafeteria and Wagon Concourse, Pontiac, MI, (1941-1950), Job No. 1728-K122General Motors Corporation, Truck and Coach Division, Engineering Building, Pontiac, MI, (1949), Job No. 1728-N122General Motors Corporation, Truck and Coach Division, Engine Shop, Pontiac, MI, (1941-1950), Job No. 1728-P122General Motors Corporation, Truck and Coach Division, Warehouse Nos. 2 and 1, Pontiac, MI, (1946), Job No. 1728-L, M122General Motors Corporation, Truck and Coach Division, Engineering Building, Bridge, Pontiac, MI, (1947-1949), Job No. 1728-N, F122General Motors Corporation, Truck and Coach Division, Dynamometer Test Building, Pontiac, MI, (1945-1948), Job No. 1728-O122General Motors Corporation, Assembly Plant, Linden, NJ, (1937), Job No. 1734122General Motors Corporation, Assembly Plant, Office Building, Linden, NJ, (1937), Job No. 1734-A122General Motors Corporation, Assembly Plant, Boiler House, Linden, NJ, (1937), Job No. 1734-B122General Motors Corporation, World's Fair Building, New York, NY, (1939), Job No. 1784-A122General Motors Corporation, Commercial Body Building, Buenos Aires, Argentina, South America, (1941), Job No. 1817122General Motors Corporation, Buick-Oldsmobile-Pontiac Division, Assembly Plant, Wilmington, DE, (1947), Job No. 1964122General Motors Corporation, Buick-Oldsmobile-Pontiac Division, Power House, Wilmington, DE, (1947), Job No. 1964-A122General Motors Corporation, Buick-Oldsmobile-Pontiac Division, Assembly Plant, Atlanta, GA, (1945-1954), Job No. 1966122General Motors Corporation, Buick-Oldsmobile-Pontiac Division, Assembly Plant, Framingham, MA, (1945-1949), Job No. 1967122General Motors Corporation, Buick-Oldsmobile-Pontiac Division, Assembly Plant, Boiler House, Framingham, MA, (1947-1949), Job No. 1967-A122General Motors Corporation, Chevrolet-Pontiac-Canada Group, Parma Pressed Metal Plant, Parma, OH, Job No. 2011-R122General Motors Corporation, World's Fair Exhibit Building, New York City, NY, (1964-1965), Job No. 2158122General Motors Corporation, Technical Center, Research Acoustics Laboratory, Warren, MI, (1974), Job No. 2271122General Motors Corporation, Chevrolet-Pontiac-Canada Group, Mansfield Metal Fabrication Plant, Mansfield, OH, Job No. 2376122General Motors Corporation, Chevrolet-Pontiac-Canada Group, Additions/Renovations to Grand Rapids Plant, Grand Rapids, MI, (1986), Job No. 2382122General Motors Acceptance Corporation (GMAC), Ongoing A/E Services, Glendale, Ontario, Canada, (1994), Job No. 2525122General Motors Acceptance Corporation (GMAC), Ongoing A/E Services, Toronto-North York & Etobicke, (1996), Job No. 2525122General Motors Acceptance Corporation (GMAC), Field Services Office, Little Rock, AR, (1997), Job No. 2525-AQ122General Motors Acceptance Corporation (GMAC), Field Services Office, Birmingham, AL, Job No. 2525-B122General Motors Acceptance Corporation (GMAC), Troy Salvage Center, Troy, MI, Job No. 2525-CB122General Motors Acceptance Corporation (GMAC), Coverage One Call Center, Southfield, MI, (1999), Job No. 2525-EL122General Motors Acceptance Corporation (GMAC), Detroit Administration Center, Auburn Hills, MI, Job No. 2525-KY122General Motors Corporation, Climatic Wind Tunnels, Warren, MI, (2000), Job No. 2552-F122General Motors Corporation, Wing 4A, General Motors Building/Cadillac Place, Detroit, MI, (1996), Job No. 2586122General Motors Acceptance Corporation (GMAC), Educational Services Facility, Southfield, MI, (1996), Job No. 2601-A122General Motors Acceptance Corporation (GMAC), Atlanta Regional Office, Atlanta, GA, (1997), Job No. 2605-C122Gerity-Adrian Manufacturing Company, Office and Factory, Adrian, MI, (1939-1940), Job No. 1810122Glenn L. Martin Company, Assembly Building Addition, Baltimore, MD, (1932-1955), Job No. 1752122Glenn L. Martin Company, Engineering Building, Baltimore, MD, (1938-1946), Job No. 1752-A123Glenn L. Martin Company, Storage Building, Proposed Addition, Delivery Hangar, Baltimore, MD, (1944), Job No. 1752-AK, AM, AV123Glenn L. Martin Company, Engineering Building Extension, Baltimore, MD, (1953-1955), Job No. 1752-BE123Glenn L. Martin Company, Manufacturing Building Addition, Baltimore, MD, (1939), Job No. 1752-C123Glenn L. Martin Company, Buildings B & C Addition to North Side, Baltimore, MD, (1941), Job No. 1752-D123Glenn L. Martin Company, Plant No. 1, Personnel Building, Baltimore, MD, (1941), Job No. 1752-E123Glenn L. Martin Company, Navy Building, Baltimore, MD, (1941), Job No. 1752-F123Glenn L. Martin Company, Plant No. 2, Army Building, Baltimore, MD, (1940-1941), Job No. 1752-G123Glenn L. Martin Company, Engineering Building Addition, Baltimore, MD, (1941 1955), Job No. 1752-H123Glenn L. Martin Company, Plant No. 2, Oil House, Baltimore, MD, (1941), Job No. 1752-K123Glenn L. Martin Company, Flying Field Hangar, Baltimore, MD, (1941), Job No. 1752-L123Glenn L. Martin Company, Plant No. 2, Boiler House, Baltimore, MD, (1941), Job No. 1752-M123Glenn L. Martin Company, Plant No. 2, Personnel Building, Baltimore, MD, (1941), Job No. 1752-N123Glenn L. Martin Company, Airport Administration Building, Baltimore, MD, (1941-1942), Job No. 1752-O123Glenn L. Martin Company, Flying Field Hanger, Baltimore, MD, (1941), Job No. 1752-S123Glenn L. Martin Company, Plant No. 2, Paint Shop, Baltimore, MD, (1942), Job No. 1752-T123Glenn L. Martin Company, Bomber Plant, Omaha, NB, (1942-1944), Job No. 1886123Glenn L. Martin Company, Bomber Plant, Flight Hangar, Camouflage Building, Omaha, NB, (1944), Job No. 1886-A, F123Glenn L. Martin Company, Bomber Plant, Personnel Building, Omaha, NB, (1944), Job No. 1886-B123Glenn L. Martin Company, Bomber Plant, Boiler House, Omaha, NB, (1944), Job No. 1886-C123B.F. Goodrich Company, Service Building, Detroit, MI123B.F. Goodrich Company, Geon Plant, Boiler House, Louisville, KY, (1946), Job No. 1889-D123B.F. Goodrich Company, Geon Plant, Louisville, KY, (1946), Job No. 1899123B.F. Goodrich Company, Coagulation Building, Polymerization Building, Louisville, KY, (1946), Job No. 1904-A, B123B.F. Goodrich Company, Boiler House, Louisville, KY, (1946), Job No. 1904-D123Gorham Tool Company, Foundry, Detroit, MI, (1942), Job No. 1901123Grabowsky Power Wagon Company, Detroit, MI, Job No. 446123Grace Hospital, Nurses' Home, Detroit, MI, (1945), Job No. 73123Great Lakes World Trade Center, Detroit, MI, Job No. 2397-A123Grinnell Building, Store, Detroit, MI, (1908), Job No. 341123Guardian Industries, Float Glass Facility, Dewitt, IA, (1998), Job No. 2569123Guardian Industries, Float Glass Facility, Geneva, NY, Job No. 2629123Hanes Hosiery Mills Company, Manufacturing Plant, Winston Salem, NC, (1939-1940), Job No. 1807123Harper Hospital, Detroit, MI, (1912 1945), Job No. 709123Harper Hospital, Brush Street Wing/Nurses' Home, Detroit, MI, (1948), Job No. 780123Harper Hospital, Cafeteria and Kitchen, Detroit, MI, (1938-1939), Job No. 1376-D123Harrison Radiator Division, General Motors Corporation, Manufacturing Building, Lockport, NY, (1938), Job No. 1762123Heald Machine Company, Worcester, MA, (1940), Job No. 1811-A123Heald Machine Company, Office Building, Worcester, MA, (1940-1941), Job No. 1811-B123Health Alliance Plan, Metro Medical Group, Planning Study, Allen Park Medical Center, Allen Park, MI, Job No. 2468123H.J. Heinz Company, Welfare Building, Auditorium, Pittsburgh, PA, (1930), Job No. 1271-B123H.J. Heinz Company, Office Building, Berkeley, CA, Job No. 1417123Henry Ford Health Care Corporation, Ambulatory Care Center, Sterling Heights, MI, Job No. 2327-B3 folders123Henry Ford Health Care Corporation, Renovation of Oakridge Medical Center, Rochester Hills, MI, Job No. 2438123Henry Ford Hospital, Nurses' Home/Education Building, Detroit, MI, (1945), Job No. 11192 folders123Henry Ford Hospital, Pediatric and Neonatal Intensive Care Suite, Detroit, MI, (1978), Job No. 2119-AE123Henry Ford Hospital, "I" Ground Floor Dialysis Unit, Detroit, MI, Job No. 2119-AM123Henry Ford Hospital, Admitting Entrance and Passageway, Detroit, MI, Job No. 2119-AP123Henry Ford Hospital, Center for Athletic Medicine, Detroit, MI, Job No. 2119-AS124Henry Ford Hospital, New Grand Boulevard Entrance, Detroit, MI, (1989), Job No. 2119-AV3 folders124Henry Ford Hospital, Angiography Area, Detroit, MI, Job No. 2119-AZ124Henry Ford Hospital, Renovated Fourth Floor Intensive Care Unit Wing, Detroit, MI, (1989), Job No. 2119-BH124Henry Ford Hospital, 6th Floor Critical Care Unit, Eleanor Clay Ford Pavilion, Detroit, MI, Job No. 2119-BJ124Henry Ford Hospital, Relocated Cardiac Cath Labs from K-14 to K-2, Detroit, MI, Job No. 2119-BK124Henry Ford Hospital, Parking Structure, Detroit, MI, (1959-1960), Job No. 2119-C4 folders124Henry Ford Hospital, Physical Facilities Offices, Detroit, MI, (1945-1985), Job No. 2119-J3 folders124Henry Ford Hospital, General Services Building and Parking Structure, Detroit, MI, (1967-1972), Job No. 2119-P2 folders124Henry Ford Hospital, Elevator Expansion, Detroit, MI, (1971-1973), Job No. 2119-T124Henry Ford Hospital, Master Plan, Hospital Complex, Detroit, MI, (1973), Job No. 2257124Henry Ford Hospital, Student Housing Facility, Detroit, MI, (1974-1978), Job No. 2257-A1 folder124Henry Ford Hospital, Student Housing Facility, Detroit, MI, (1974-1978), Job No. 2257-A3 folders125Henry Ford Hospital, Hospital Apartments, Detroit, MI, (1977-1978), Job No. 2257-A125Henry Ford Hospital, Hospital Apartments, Models, Detroit, MI, (1974), Job No. 2257-A125Henry Ford Hospital, Hospital Apartments, Renderings, Detroit, MI, (1974), Job No. 2257-A125Henry Ford Hospital, West Bloomfield Center, Maplegrove, West Bloomfield Township, MI, (1978-1981), Job No. 2308 A2 folders125Henry Ford Hospital, West Bloomfield Center, Maplegrove, Site Plans, Elevations, Floor Plans, West Bloomfield Township, MI, (1978), Job No. 2308-A125Henry Ford Hospital, West Bloomfield Center, Maplegrove, Various Renderings, West Bloomfield Township, MI, (1978), Job No. 2308-A125Henry Ford Hospital, West Bloomfield Center, Maplegrove, Outpatient Adolescent Chemical Dependency Program, West Bloomfield Township, MI, (1984-1985), Job No. 2308-B2 folders125Henry Ford Hospital, West Bloomfield Center, Maplegrove, Proposed Master Plan, West Bloomfield Township, MI, (1983), Job No. 2357125Henry Ford Hospital, West Bloomfield Center, Maplegrove, Ambulatory Surgery and Emergency Room Expansion, Edsel B. Ford Center, West Bloomfield Township, MI, (1987), Job No. 2357-B125Henry Ford Hospital, Satellite Hospital (proposed), (1973), Job No. P-3429125Herman Kiefer Hospital - Nissan Tech CenterHerman Kiefer Hospital, Tuberculosis Building, Detroit, MI, (1945), Job No. 1030-G125Herman Miller, Bloomfield Hills Customer Center, Birmingham, MI, (1998), Job No. 2640125Heyn's Bazaar, Detroit, MI, Job No. 891125Higgins Aircraft, Inc., Manufacturing Plant, New Orleans, LA, (1943-1945), Job No. 1931125Higgins Aircraft, Inc., Office Building, New Orleans, LA, (1943-1945), Job No. 1931125Higgins Aircraft, Inc., Boiler Houses, New Orleans, LA, (1945), Job No. 1931-B, M125Higgins Resources, Inc., Higgins Homes Division, Thermo-Con Single House for War Department, Fort Belvoir, VA, (1948), Job No. 2034-A125Highland Park State Bank, Highland Park, MI, (1916), Job No. 403125Hiram Walker and Sons, Office Building, Windsor, Ontario, Job No. 150-F125Hormel, Office and Personnel Building, Austin, MN, (1943-1944), Job No. P-2160125Hotpoint Company Division, General Electric Company, Compressor Building, Cook County, IL, (1957-1961), Job No. 2131125Houston Chronicle, Printing Plant, Houston, TX, (1965-1971), Job No. 21893 folders126Houston Chronicle, Printing Plant, Exterior, Houston, TX, (1965-1971), Job No. 2189126Houston Chronicle, Printing Plant, Interior, Houston, TX, (1971), Job No. 2189126H.P.F. Associates, Feasibility Study, Renovation of former Ford Motor Office Building, Highland Park, MI, (1982), Job No. 2355126H.T., Inc., Condominium Complex, Grosse Pointe Woods, MI, (1981), Job No. 2347126J.L. Hudson Company, Warren Avenue Warehouse Addition, Detroit, MI, (1965), Job No. 2192-A126J.L. Hudson Company, Downtown Warehouse Expansion, Detroit, MI, (1966), Job No. 2203126Hudson Motor Car Company, Detroit, MI, (1910), Job No. 450126Hudson Motor Car Company, Office Building, Detroit, MI, (1910 1931), Job No. 450-A126Hudson Naval Ordnance Plant, Machine Shop, Centerline, MI, (1945), Job No. 1884-A126Hudson Naval Ordnance Plant, Assembly Building, Shipping and Receiving Building, Scrap Building, Cafeteria Building, Tool Shop, Gun Proving Range, Centerline, MI, (1941-1945), Job No. 1884-B, C, F, J, M, Q2 folders126Hudson Naval Ordnance Plant, Maintenance Garage, Centerline, MI, (1941), Job No. 1884-D126Hudson Naval Ordnance Plant, Boiler House, Centerline, MI, (1941-1949), Job No. 1884-G126Hudson Naval Ordnance Plant, Personnel Building, Centerline, MI, (1941), Job No. 1884-K126Hudson Naval Ordnance Plant, Officers Quarters, Centerline, MI, (1941-1942), Job No. 1884-L126Hudson Naval Ordnance Plant, Office Building, Centerline, MI, (1943-1945), Job No. 1884-N126Inland Manufacturing Division, General Motors Corporation, Manufacturing Building and Office, Clark, NJ, (1938), Job No. 1768 A126International Harvester Company, Motor Truck Division, Fort Wayne, IN, (1952-1953), Job No. 20572 folders126International Harvester Company, Motor Truck Division, Assembly Plant, Springfield, OH, (1964-1967), Job No. 21792 folders126Ja Da Restaurant, Barbeque Grill, Detroit, MI, Job No. 8041126Jackson Life, Remote Data Center, Lansing, MI, (2007), Job No. 2907126Jacobs Manufacturing Company, Factory and Office, East Hartford, CT, (1941), Job No. 1857126Jacobs Manufacturing Company, Boiler House, West Hartford, CT, (1941), Job No. 1857-A126Jewish Community Center, Jewish War Veterans Building, Gymnasium Addition, Detroit, MI, (1948-1954), Job No. 2044 A126Jewish Home for Aged, Detroit, MI, (1966), Job No. 21561 folder126Jewish Home for Aged, Detroit, MI, (1966), Job No. 21562 folders127Joy Realty Company, Fence, Detroit, MI, (1914), Job No. 368127Albert Kahn Associates, Inc., Albert Kahn Building, Interior, Detroit, MI, (1937)127Albert Kahn Associates, Inc., Albert Kahn Office Renovations, Detroit, MI, (1998), Job No. 2233-B2 folders127Albert Kahn Associates, Inc., New Center Building, New Quarters, Detroit, MI, (1978)127Kahn, Albert, "The Legacy of Albert Kahn" (original photographs)2 folders127Kahn, Albert, Photographs (General File)127Kahn, Albert, Residences (General File)127Kalamazoo College, Kalamazoo, MI, (1924), Job No. 1185127Kalamazoo Gazette, Newspaper Plant, Kalamazoo, MI, Job No. 1213127Kellogg Company, Auditorium and High School, Battle Creek, MI, (1931), Job No. 1610127Kellogg Company, Grain Silos, Battle Creek, MI, (1938), Job No. 1617-F127Kellogg Company, Building 100 Manufacturing Facilities, Battle Creek, MI, Job No. 1617-L127Ann J. Kellogg School, Battle Creek, MI, (1931), Job No. 1549127Kelsey-Hayes Company, Plant Addition, Romulus, MI, (1960), Job No. 2141127Kelsey-Hayes Company, Office Building, Romulus, MI, (1960), Job No. 2141-D127Kelsey-Hayes Company, Research and Development Building, Romulus, MI, (1966), Job No. 2199127Kendall Company, Central Research and Engineering Facility, Franklin, MA, (1985), Job No. 2371 A127Keystone Steel and Wire Company, Office Building, Peoria, IL, (1939-1941), Job No. 1803127Kia Motors Corporation, Kia Engineering Detroit, R and D Facility, Ann Arbor, MI, Job No. 4994127Kirkham Aircraft Corporation, Airplane Plant, Newark, NJ, (1939), Job No. P-1840127Kirkham Engineering and Manufacturing Company, Factory, Farmingdale, Long Island, NY, (1939), Job No. P-1782127Kish Health System (Navigant Consult), Kishwaukee Community Replacement Hospital, DeKalb, IL, (2007), Job No. 2931127Klingensmith, Frank L., Residence, Bloomfield Hills, MI, Job No. 704127Klinger, H.J., Residence, Algonac, MI, (1949)127S.S. Kresge Company, Office Building, Park and Adams (Grand Circus Park), Detroit, MI, (1914), Job No. 599127S.S. Kresge Company, Administration Building, Cass and Second Boulevard, Detroit, MI, (1930-1945), Job No. 1476127A. Krolik and Company, Warehouse, Detroit, MI, (1916-1917), Job No. 766127Kuhn, Frank and Robert, Residence, 28 McKinley Road, Grosse Pointe Farms, MI, (1914), Job No. 642127Lady Esther, Ltd., Factory and Office Building, Clearing, IL, (1938-1939), Job No. 1736 A127Lansing General Hospital, Lansing, MI, (1973-1975), Job No. 2248127Lansing General Hospital, Expansion Program, Lansing, MI, (1981), Job No. 2248-B127Lansing General Hospital, Expansion Program, New Jarrett Wing, Lansing, MI, (1981), Job No. 2248-B127LaPalomo, Isle of Capri Casino, Design Concept, Detroit, MI, (1997), Job No. 2661-A128Lapeer Regional Medical Center, Cancer Center and Ambulatory Facility, Lapeer, MI, (2007), Job No. 2971-A128Lear Corporation, HQ Office Building and Integration Center, Southfield, MI, (2006), Job No. 2894-AO128Lee Rubber and Tire Corporation, Kansas City, KS, (1945), Job No. 1978128Lexington Metal Products Company, Stamping Plant, North Addition, Lexington, TN, (1959-1963), Job No. 2139 A128Liberty National Bank, New York City, NY, (1923), Job No. 1120128Linden Products Company, Office Building, Manufacturing Plant, Linden, TN, (1970-1972), Job No. 22382 folders128Livingstone, William, Residence, Detroit, MI, (1893)128Livingstone Memorial Lighthouse, Belle Isle, MI, (1930), Job No. 1400128Long Manufacturing Division, Borg-Warner Corporation, Office/Factory Addition, Detroit, MI, (1936-1938), Job No. 1723128Lozier Motor Company, Detroit, MI, (1909), Job No. 456128Macauley, Alvan, Residence, Grosse Pointe Shores, MI, (1928-1929), Job No. 1435 A128Maccabees Building, Woodward Avenue, Detroit, MI, (1926-1945), Job No. 12622 folders128Mack Truck, Inc., Truck Assembly Building, Winnsboro, SC, (1987), Job No. 2375-A128Magic City Brewing Company, Birmingham, AL, (1934), Job No. 1670128Mahle, Inc., Technical Center, Farmington Hills, MI, (1999), Job No. 2645128Mahoning National Bank, Youngstown, OH, Job No. 442128Manufacturer's National Bank, Corner Fort and Shelby Streets, Detroit, MI, (1944), Job No. 1939128Max Factor and Company, Production and Distribution Facility, Oxford, NC, (1980-1981), Job No. 2334128Mazer Cressman Cigar Company, Detroit, MI, (1927), Job No. 1178128McMillan, Philip Senator, Residence, Grosse Pointe Farms, MI, (1912), Job No. 512128Medical Center Development Corporation, Central Laundry Building, Detroit, MI, (1969), Job No. 2220128Mercedes-Benz, SUV Manufacturing Plant, M Class Assembly Plant, Administration Offices, Tuscaloosa, AL, (1996), Job No. 25322 folders128Mercedes-Benz, U.S. International, Child Care and Wellness Center, Tuscaloosa, AL, (2002), Job No. 2532-J128Mercedes-Benz, Program Management A/E Services, Juiz de Fora, Brazil, (1998), Job Nos. 2618, 2624128Mergenthaler Linotype Company, Brooklyn, NY, (1907), Job No. 349128Mesaba Northwest Airlink, Hangar Facility, Metropolitan Wayne County Airport, Romulus, MI, Job No. 2454128Metropolitan Airport, Hangar for North Central Airlines, Detroit, MI, (1966), Job No. 2185-A128Metropolitan Airport, North Central and Eastern Airlines Hangars, Detroit, MI, (1964-1966), Job No. 2185-A, B128Michigan Automotive Compressor, Nippondenso Compressor Plant, Jackson, MI, (1990), Job No. 2434128Michigan Stamping Company, Factory Building, Detroit, MI, (1916), Job No. 733128Michigan State Hospital, Ypsilanti, MI, (1939), Job No. 1553128Michigan, State of, Cadillac Place Adaptive Reuse, Detroit, MI, (2002), Job No. 902-AR128Michigan, State of, Michigan Hall of Justice, Lansing, MI, (2002), Job No. 2690128Michigan, State of, Michigan Hall of Justice, Lansing, MI, (2002), Job No. 2690129Michigan, State of, House of Representatives, Computer System Network, Lansing, MI, (2000), Job No. 2712129Michigan, State of, Fisher-Northwest, Proposed Office Building, Detroit, MI, (1972), Job No. P-3430129Michigan State University, Natural Resources Building, East Lansing, MI, (1963-1967), Job No. 21662 folders129Michigan State University, Natural Resources Building, Food Science Building, East Lansing, MI, (1963-1982), Job Nos. 2166, 2174129Michigan State University, Food Science Building, East Lansing, MI, (1963-1982), Job No. 21742 folders129Michigan State University, Engineering Building Addition, East Lansing, MI, Job No. 2294-B129Michigan State University, Dow Connector Building, East Lansing, MI, (1999), Job No. 2294-D129Minneapolis-St. Paul Metropolitan Airports Commission, Republic Airlines, Inc., Hangar Addition, Administration Building Addition, Minneapolis, MN, (1980-1981), Job No. 2336 A129Minnesota Mining and Manufacturing Company, Office Building, St. Paul, MN, (1940), Job No. 1801129Mishawaka Woolen Mills Company, Mishawaka, IN, Job No. 668-B129Modern Engineering Service Company, Master Planning and Schematic Design Services, Automotive Engineering Design Center, Warren, MI, (1985), Job No. 2396129Mohawk Brush Company, Factory and Office, Albany, NY, (1954-1958), Job No. 2105129Moraine Products Division, General Motors Corporation, Administration Building and Manufacturing Plant, Dayton, OH, (1938), Job No. 1754-A129Morgan and Wright Company, Detroit, MI, Job No. 578129Mt. Carmel Mercy Hospital, Addition, Detroit, MI, (1964), Job No. 2184129Murphy, William H., Estate, Garage, Alterations to House, Birmingham, MI, Job No. 748129Murray Corporation of America, Body Factory, Detroit, MI, (1929), Job No. 1449-A129Muskegon Chronicle, Muskegon, MI, (1928-1929), Job No. 1393129Nash-Kelvinator Corporation, Plymouth Road Plant, Warehouse, Detroit, MI, (1936-1945), Job No. 1735129Nash-Kelvinator Corporation, Helicopter Rotor Test Building, Detroit, MI, (1945), Job No. 1735-D129Nash-Kelvinator Corporation, Motor Assembly Plant, Kenosha, WI, (1942-1943), Job No. 1922129National Bank of Commerce, Detroit, MI, Job Nos. 725, 1144129National Bank of Detroit, Bank Building, Detroit, MI, (1945), Job No. 803129National Bank of Detroit, Main Office Building, Detroit, MI, (1956-1962), Job No. 21144 folders129National Bank of Detroit, Trust Department Renovations, Detroit, MI, Job No. 2114-AS129National Bank of Detroit, Staff Floor Renovation, Detroit, MI, (1995), Job No. 2114-AW129National Bank of Detroit, Main Office, Main Floor Renovations, Detroit, MI, (1959-1981), Job No. 2114-K46130National Bank of Detroit, Remodeling of Uptown Office, General Motors Building, Detroit, MI, (1971-1978), Job No. 22163 folders130National Production Company, Detroit, MI, (1925), Job No. 1277130National Theatre, Detroit, MI, (1910), Job No. 478130C.J. Netting Company, Goldberg, Laazora Stores, Detroit, MI, (1913), Job No. 532130New Center Area Planning Project, Plans, Detroit, MI, Job No. 22152 folders130New Center Building, Detroit, MI, (1931), Job No. 1585130New Departure Division, General Motors Corporation, Western Manufacturing Plant, Sandusky, OH, (1945-1949), Job No. 19772 folders130New Departure Division, General Motors Corporation, Western Manufacturing Plant, Boiler House, Sandusky, OH, (1947-1949), Job No. 1977-B130New Departure Division, General Motors Corporation, Western Manufacturing Plant, Pump House, Sewage Treatment Plant, Incinerator Building, Industrial Waste Treatment Plant, Sandusky, OH, (1947-1948), Job No. 1977-C, D, F, H130New Departure Division, General Motors Corporation, Plant A and B, Bristol, CT, (1943-1944), Job No. 1897130New York Times, Brooklyn, NY, (1931-1945), Job No. 1478130New York Times, New York, NY, Job No. 1528130Newberry, John S., Residence, Grosse Pointe, MI, (1957), Job No. 604130Niles-Bement-Pond Company, Pratt and Whitney Division, Factory, West Hartford, CT, (1939-1940), Job No. 1800130Niles-Bement-Pond Company, Pratt and Whitney Division, Boiler House, West Hartford, CT, (1940), Job No. 1800-A130Niles-Bement-Pond Company, Pratt and Whitney Division, Office Building, West Hartford, CT, (1940-1943), Job No. 1800-B130Niles-Bement-Pond Company, Pratt and Whitney Division, Die Storage Building, West Addition to Factory, Machine Tool Building, West Hartford, CT, (1941-1942), Job No. 1800-D, E, H, J130Nissan Motor Manufacturing Corporation, Truck Assembly and Stamping Plant, Smyrna, TN, (1982-1984), Job No. 23431 folder130Nissan Motor Manufacturing Corporation, Truck Assembly and Stamping Plant, Smyrna, TN, (1982-1984), Job No. 23432 folders131Nissan Motor Manufacturing Corporation, Truck Assembly and Stamping Plant, Exterior Photos, Smyrna, TN, (1981-1984), Job No. 23432 folders131Nissan Motor Manufacturing Corporation, Truck Assembly and Stamping Plant, Interior Photos, Smyrna, TN, Job No. 23432 folders131Nissan Motor Manufacturing Corporation, Truck Assembly and Stamping Plant, Model Photos, Smyrna, TN, (1981), Job No. 2343131Nissan Motor Manufacturing Corporation, Truck Assembly and Stamping Plant, Renderings, Drawings, Smyrna, TN, (1980-1983), Job No. 23432 folders131Nissan Motor Manufacturing Corporation, Truck Assembly and Stamping Plant, Administration Building, Smyrna, TN, (1984-1985), Job No. 2343-H131Nissan Motor Manufacturing Corporation, Plant Expansion, Smyrna, TN, Job No. 2343-N131Nissan Motor Manufacturing Corporation, Processing and Distribution Facility, Sheffield Village, OH, Job No. 2455-B131Nissan Tech Center, Expansion, Farmington Hills, MI, Job No. 2855131Oakland Hospital - Union and Peoples National BankOakland Hospital, Alterations and Additions, Dearborn, MI, (1969), Job No. 2217131Oakland University, Elliot Hall of Business and Information Technology, Rochester, MI, Job No. 2650131Ohio Steel Foundry Company, Roll and Heavy Machine Shop, Lima, OH, (1939-1940), Job No. 1806131Ohio Steel Foundry Company, Personnel Building, Breech Ring Plant, Substation, Machine Shop Addition, Forging Building, Lima, OH, (1943-1956), Job No. 1806-B, C, J, K131Ohio Steel Foundry Company, Personnel Building and Extension, Lima, OH, (1943), Job No. 1806-D, H131Ohio Valley Trust Company, Corapolis, OH, Job No. 1057131Oldsmobile Division, General Motors Corporation, Forge Plant, Hammer Shop, Lansing, MI, (1945), Job No. 1949-D131Oldsmobile Division, General Motors Corporation, Master Plan Development, Lansing, MI, Job No. 2318131Olds Motor Works, Engineering Building, Lansing, MI, (1938), Job No. 1715131Onan Corporation, Service and Training Center, Fridley, MN, (1979), Job No. 2321-A131Orchestra Hall, Façade Study, Detroit, MI, Job No. 4983-P131Our Lady of Victory's Care, Boiler House, Lackawanna, NY, (1948), Job No. 2026131Owen Building, Detroit, MI, (1907), Job No. 306131Owens-Illinois, HQ Office Building, Perrysburg, OH, Job No. 2958131Packard Motor Car Company, Exteriors, Detroit, MI, (1940-1947), Job No. 201131Packard Motor Car Company, Office Building, Detroit, MI, (1915-1939), Job No. 201-E131Packard Motor Car Company, "Jewel Box" Showroom, Detroit, MI, (1947), Job No. 201-MN131Packard Motor Car Company, Building No. 10, Detroit, MI, (1903-1910), Job No. 2772 folders131Packard Motor Car Company, Toledo Division, Propeller Test Building, Dynamometer Test Building, Toledo, OH, (1944-1949), Job No. 1946-A, B132Packard Motor Car Company, Administration and Sales Building, Chicago, IL, (1948-1950), Job No. 1991-A132Packard Motor Car Company, Zone Office and Warehouse, Atlanta, GA, (1949), Job No. 2047132Packard Motor Car Company, Mound Road Plant, Macomb County, MI, (1951-1954), Job No. 2074132Packard Motor Car Company, Mound Road Plant, Boiler House, Macomb County, MI, (1953), Job No. 2074-C132Packard Motor Car Company, Office Building and Test Hangar, Flatrock, Toledo, OH, (1944), Job No. P-2296132Paige Motor Car Company, Jewett Plant, Detroit, MI, (1914), Job No. 797132Paige Motor Car Company, Administration Building, Detroit, MI, Job No. 797-M132Palmer Office and Store Building, Detroit, MI, (1910), Job No. 417132Palms Apartment House, Detroit, MI, (1902), Job No. 95132Parke Davis and Company, Building No. 64, Detroit, MI, (1940), Job No. 1434132Parke Davis and Company, Biological Building No. 65, Detroit, MI, (1938-1940), Job No. 1434-AL132Parke Davis and Company, Animal House, Arsenical Building, Detroit, MI, (1941-1946), Job No. 1434-AO, AV132Parke Davis and Company, Research Building Alterations, Detroit, MI, (1941), Job No. 1434-AQ132Parke Davis and Company, Clinical Data Handling Addition, Ann Arbor, MI, (1987), Job No. 2393132Parke Davis and Company, 6-Story Manufacturing Building, Detroit, MI, (1946), Job No. P-2453132Peninsular Stove Company, Detroit, MI, (1926), Job No. 1364132People's Community Hospital, Western Wayne County, Eloise, MI, (1944-1945), Job No. 1945132People's Outfitting Company, Store Building, Detroit, MI, Job No. 676132People's Outfitting Company, Store Front Alterations, Dearborn, MI, (1947), Job No. 1477-C132Philadelphia Inquirer, Rotogravure Building, Philadelphia, PA, (1945-1949), Job No. 1973132Philadelphia Inquirer, Newspaper Plant Garage, Philadelphia, PA, (1945-1949), Job No. 1973-A132Phoenix Club House, John R and Erskine, Detroit, MI, Job No. 266132Phoenix Golf Club, Redford, MI, (1914), Job No. 625132Pierson Apartments, Woodward and Adelaide, Detroit, MI, (1910), Job No. 65132Planetree, Office Renovation, Derby, CT, (2007)132Plymouth Streetscape, Master Plan, Plymouth, MI132Pontiac Motor Division, General Motors Corporation, Administrative Building, Pontiac, MI, (1947)132Pontiac Motor Division, General Motors Corporation, Pontiac, MI, (1946-1954), Job No. 1402132Pontiac Motor Division, General Motors Corporation, Service Parts Building, Administration Building, Engineering Building, Pontiac, MI, (1945-1951), Job No. 1402 AC, AD2 folders132Pontiac Motor Division, General Motors Corporation, Pontiac, MI, (1944-1948), Job No. 1402-AE, S, W132Pontiac Motor Division, General Motors Corporation, Additions to Foundry, Addition to North End of Personnel Building, Pontiac, MI, (1954), Job No. 1402-BG, BJ132Pontiac Motor Division, General Motors Corporation, Service Parts and Storage Building, Gun Plant, Pontiac, MI, (1941-1944), Job No. 1900132Poudre Valley Health System, Harmony Campus ACC/MOB Complex, Fort Collins, CO, Job Nos. 2687/2650132Precision Computing, Acheson Ventures, Port Huron, MI, Job No. 2900-X132Proctor and Gamble Company, Great Miami River Project, Research Building, Colerain Township, Hamilton City, OH, (1952-1953), Job No. 20553 folders132Providence Journal, Newspaper Plant, Providence, RI, Job No. 1639132Providence Medical Center, Helen DeRoy Cancer Center, Southfield, MI, Job No. 2333-J132Providence Medical Center, DePaul Center Expansion, Southfield, MI, Job No. 2333-K132Providence Medical Center, Heart Institute Renovation, Southfield, MI, Job No. 2333-R132Providence Medical Center, Medical Office Building Expansion, Novi, MI, Job No. 2466-A, M133Providence Medical Center, Second Floor Short Stay/Interim OB, Novi, MI, (1988), Job No. 2466-H133Providence Medical Center, Phase 1C, Novi, MI, (1996), Job No. 2466-J133Providence Medical Center, Assarian Cancer Center, Novi, MI, (1999), Job No. 2466-L133Providence Medical Center, Building Addition Renderings, Farmington Hills, MI, Job No. 6251133Radio Corporation of America, Plant Addition, Indianapolis, IN, (1939-1947), Job No. 1802133Ranger Aircraft Engines Division, Fairchild Engine and Airplane Corporation, Farmingdale, Long Island, NY, (1941-1944), Job No. 1843 F, K133Ranger Aircraft Engines Division, Fairchild Engine and Airplane Corporation, Farmingdale, Long Island, NY, (1942-1944), Job No. 1843-L133Ranger Aircraft Engines Division, Ranger, MA, (1940), Job No. P-1938133Rehabilitation Institute of Metropolitan Detroit, Detroit, MI, (1955-1958), Job No. 2113133Rehabilitation Institute, Inc., Sixth, Seventh, and Eighth Floor Addition, Detroit, MI, (1966-1971), Job No. 2113-H133Rehabilitation Institute, Inc., Investigation of Mechanical System, Replacement of HVAC Systems, Detroit, MI, (1983), Job No. 2113-L, Q133Remington Rand, Administration Building, (1962), Job No. P-3240133Republic Aviation Corporation, Airplane Factory, Farmingdale, Long Island, NY, (1940-1941), Job No. 18782 folders133Republic Aviation Corporation, Airplane Factory, Boiler House, Farmingdale, Long Island, NY, (1941), Job No. 1878-A133Republic Aviation Corporation, Experimental and Engineering Building, Farmingdale, Long Island, NY, (1956), Job No. 1878-C133Republic Steel Corporation, 96 Inch Continuous Strip Mall, Cleveland, OH, (1937-1938), Job No. 1743133Republic Steel Corporation, Welfare Building, Cleveland, OH, (1938), Job No. 1743-B133Richman Brothers Clothing Store, Detroit, MI, Job No. 1596133Robbins Dry Dock and Repair Company, Personnel Building, Brooklyn, NY, (1941), Job No. 1860-A133Robbins Dry Dock and Repair Company, Compressor House, Boiler House, Brooklyn, NY, (1941-1942), Job No. 1860-B, C133Robbins Dry Dock and Repair Company, Manufacturing and Storage Building, Brooklyn, NY, (1942), Job No. 1860-C133Rochester Times Union, Gannett Newspapers, Press Building Addition, Rochester, NY, (1949-1951), Job No. 2052133Rollman Brothers Store, Cincinnati, OH, Job No. 1056133Saginaw Malleable Iron Foundry Division, General Motors Corporation, Foundry Building, Danville, IL, (1943-1945), Job No. 1947133Saginaw Malleable Iron Foundry Division, General Motors Corporation, Foundry Building, Boiler House, Danville, IL, (1945), Job No. 1947-B133Saginaw Malleable Iron Foundry Division, General Motors Corporation, Propane Pump House, Danville, IL, (1945), Job No. 1947-C133Saginaw Malleable Iron Foundry Division, General Motors Corporation, Office Building, Danville, IL, (1945), Job No. 1957-A133Saginaw News, Newspaper Plant, Saginaw, MI, Job No. 1680133Saint Francis Home for Orphan Boys, Detroit, MI, Job No. 729133Saint John Health, Romeo Plank Center, Macomb Township, MI, (1998), Job No. 2587-A133Saint John Health, ADT Center, Macomb, MI, Job No. 2871-C133Saint Joseph Hospital, Addition and Alterations, Mount Clemens, MI, (1958-1962), Job No. 2061-D133Saint Joseph Hospital, Chapel Addition and Alterations, Mount Clemens, MI, (1950-1962), Job No. 2061-F133Saint Joseph Hospital of Mount Clemens, Inc., Southwest Building Addition, Sterling Heights, MI, (1935 1988), Job No. 2327-C133Saint Mary's Hospital, Livonia, MI, (1999), Job No. 2536133Saint Mary's Hospital, Expansion Project, Livonia, MI, (1999), Job No. 2536-B133Saint Vincent's Hospital, Fourth Floor Diagnostics, Birmingham, AL, Job No. 20100-01133Scherer Estate, Office Building, Detroit, MI, Job No. 1322133Schust Company, Warehouse, Fourth Avenue and Hudson, Detroit, MI, (1924), Job No. 1193133James E. Scripps Library and Art Gallery, Detroit, MI, (1898), Job No. 152134Security Trust Company, Bank Building, Detroit, MI, (1945), Job No. 1140134Seiberling Rubber Company, Factory Building, Barberton, OH, (1945-1946), Job No. 1935134Seiberling Rubber Company, Office Building, Barberton, OH, (1943-1946), Job No. 1935-A134Shaarey Zedek Congregation, Synagogue Center, Southfield, MI, (1961-1967), Job No. 21383 folders134Shaw Walker Company, Office Building, Muskegon, MI, (1913), Job No. 575134Dr. J. Donald Sheets, Clinic Building, Highland Park, MI, (1963), Job No. 2164134Sherwin-Williams Company, Chemical Products Building, Chicago, IL, (1941), Job No. 1845134Sherwin-Williams Company, Warehouse, Chicago, IL, (1940-1941), Job No. 1845-A134Siegel Building, Woodward and Clifford, S.S. Kresge 5 and 10 Store, Detroit, MI, (1915), Job No. 500134Siegel, B., Residence, Detroit, MI, Job No. 582134Thomas Henry Simpson Memorial Institute, Ann Arbor, MI, (1927), Job No. 1239134Sinai Hospital, Detroit, MI, (1951-1974), Job No. 1985134Sinai Hospital, Kitchen, Detroit, MI, (1972), Job No. 1985134Sinai Hospital, Medical Coronary Intensive Care Unit, Detroit, MI, (1975), Job No. 1985-AC134Sinai Hospital, Samuel and Isabelle Friedman Laboratory, Detroit, MI, (1974), Job No. 1985-AH134Sinai Hospital, New Entrance -- Physical Medicine and Rehabilitation Center, Detroit, MI, (1975), Job No. 1985-AW134Sinai Hospital, Detroit, MI, (1948-1977), Job No. 1985-B5 folders134Sinai Hospital, Perinatal Center, Detroit, MI, (1978-1983), Job No. 1985-BG4 folders134Sinai Hospital, Shapero School of Nursing, Detroit, MI, (1954-1957), Job No. 1985-D135Sinai Hospital, Addition, Detroit, MI, (1957-1964), Job No. 1985-E3 folders135Sinai Hospital, Medical Library, Detroit, MI, (1962-1966), Job No. 1985-O135Sinai Hospital, Medical Research Building, Detroit, MI, (1963), Job No. 1985-P135Sinai Hospital, Auditorium and Conference Center, Detroit, MI, (1965-1969), Job No. 1985-Q135Sinai Hospital, New Research Building, Detroit, MI, (1985), Job No. 1985-RR-25135Sinai Hospital, Auditorium and Conference Center, Radiotherapy Building, Detroit, MI, (1976), Job No. 1985-R-60135Sinai Hospital, Perinatal Center, Detroit, MI, (1978), Job No. 1985-R-71135Sinai Hospital, Renovation of North Wing Entrance, Detroit, MI, (1981), Job No. 1985-R-96135Sinai Hospital, Expanded Patient Care Facilities, Detroit, MI, (1965-1975), Job No. 1985-S135Sinai Hospital, Radiotherapy Center, Detroit, MI, (1964-1968), Job No. 1985-W135Sinai Hospital, Center for Continued Care, Detroit, MI, (1968), Job No. 1985-Y135Sinai Hospital, Shapero School of Nursing Addition, Detroit, MI, (1969), Job No. P-3498135C.F. Smith Company, Office Building, Detroit, MI, Job No. 800-B135Southeastern Junior High School, Battle Creek, MI, Job No. 1593135Sparrow Health System, Site Analysis, Lansing, MI, (1994), Job No. 2529-A135Sparrow Health System, Healing Garden, Lansing, MI, Job No. 2529-BE135Sparrow Health System, Seventh Floor Neumann Wing Addition, Lansing, MI, (2004), Job No. 2529-BQ135Sparrow Health System, Neumann Wing Addition, Lansing, MI, Job No. 2529-W135Sparrow Health System, Data Center, Lansing, MI, (1999), Job No. 2607135Sparrow Hospital System, Professional Building, Site Plans, Lansing, MI, Job No. 2529-D135Sparrow Hospital, ACC/MOB Parking Deck, Lansing, MI, Job No. 2529-E135Sparrow Hospital System, Master Site Model, Lansing, MI, Job No. 4828135Spence Engineering Company, Office Building, Baton Rouge, LA, (1944), Job No. P-2295135Spietz and Worch Company, United Cigar Manufacturing Company Branch, Detroit, MI, Job No. 419135Standard Accident Insurance Company, Detroit, MI, Job No. 952135Standard Club, Chicago, IL, Job No. 1174135Frederick Stearns and Company, Detroit, MI, (1929), Job No. 622135Stinson Aircraft Division, Aviation Manufacturing Corporation, Factory and Office, Nashville, TN, (1939-1940), Job No. 1828135Stinson Aircraft Division, Aviation Manufacturing Corporation, Office Building, Nashville, TN, (1940), Job No. 1828-A135Studebaker Company, South Bend, IN, (1924-1925), Job No. 1066135Suomi College, Master Plan, Hancock, MI, (1990), Job No. 2448135Swift, C.M., Residence, Grosse Pointe, MI, Job No. 168135Talon Development Group, Tower Automotive, Novi, MI, Job No. 2731135Taylorcraft Aviation Corporation, Aircraft Plant, Office Building, Alliance, OH, (1940-1941), Job No. 1859135Temple Beth El, Detroit, MI, (1903), Job No. 136135Temple Beth El, Detroit, MI, (1945), Job No. 821135Thompson Products, Inc., Manufacturing Plant, Manufacturing Building Addition, Euclid, OH, (1941-1951), Job No. 1885 Q135Thompson Products, Inc., Office Building, Euclid, OH, (1941-1942), Job No. 1885-A135Thompson Products, Inc., Boiler House, Euclid, OH, (1942-1944), Job No. 1885-B135Thompson Products, Inc., Personnel and Service Building, Euclid, OH, (1942-1945), Job No. 1885-L135Thurber Garage, Detroit, MI, Job No. 1120-B135Todd Hoboken Dry Goods, Tietjen and Lang Dry Docks Company, Plant and Fabricating Shop, Hoboken, NJ, (1943), Job No. 1876-A135Toledo Scale Company, Toledo, OH, (1939-1948), Job No. 1799135Toyota Technical Services, Toyota Technical Center Office Building Expansion, Ann Arbor, MI, (1999), Job No. 2635136Trane Company, Engineering and Office Building, La Crosse, WI, (1957-1965), Job No. 2107-A136Trane Company, Acoustics Laboratory, La Crosse, WI, (1966), Job No. 2107-F136Trane Company, Administrative Building, La Crosse, WI, (1957-1969), Job No. 2107-G3 folders136Traverse City, Power and Generating Facilities Alterations and Additions, Traverse City, MI, (1965-1969), Job No. 2149-A136Travis Pointe Country Club, Country Club Renovation, Ann Arbor, MI, (2004), Job No. 8077-C136Trinity Medical Center, Hammes Company, Exterior and Interior Renderings, Moline, IL, Job No. 2542136Trinity Medical Center, Hammes Company, Seventh Street Campus, Moline, IL, Job No. 2542136Trinity Medical Center, Chesterfield Township, MI, Job Nos. 2692, 2693136Trinity Regional Health System, Trinity at Terrace Park Replacement Hospital, Bettendorf, IA, Job No. 2747-A136Trizec Corporation, Office Building, West Grand Boulevard and Second, Detroit, MI, (1978), Job No. 2295-A136Truscon Steel Company, Detroit, MI, (1916), Job No. 722136UAW-Chrysler, National Training Center, Detroit, MI, Job No. 2459136UAW-GM, Human Resource Center, Auburn Hills, MI, Job No. 2490136Union and Peoples National Bank, Jackson, MI, Job No. 1425136United Aircraft Corporation - University of Alabama, BirminghamUnited Aircraft Corporation, Pratt and Whitney Aircraft Division, East Hartford, CT, (1930-1947), Job No. 1509136United Aircraft Corporation, Pratt and Whitney Aircraft Division, Garage, East Hartford, CT, Job No. 1509136United Aircraft Corporation, Pratt and Whitney Aircraft Division, Offices, East Hartford, CT, Job No. 1509136United Aircraft Corporation, Hamilton Standard Division, Pratt and Whitney Division, East Hartford, CT, (1937-1950), Job Nos. 1519, 1509136United Aircraft Corporation, Pratt and Whitney Division, Factory Addition, East Hartford, CT, (1941), Job No. 1509-AY136United Aircraft Corporation, Pratt and Whitney Division, New Hangar Office Building, East Hartford, CT, (1940), Job No. 1509-BC136United Aircraft Corporation, Pratt and Whitney Division, Addition to East Side of Present Factory Building, East Hartford, CT, (1941), Job No. 1509-BG136United Aircraft Corporation, Pratt and Whitney Division, Eight to Sixteen Foot Product Test Houses, East Hartford, CT, (1942), Job No. 1509-BS136United Aircraft Corporation, Pratt and Whitney Division, Converting Boiler Plant from Oil to Coal, East Hartford, CT, (1943-1944), Job No. 1509-CH, CK136United Aircraft Corporation, Pratt and Whitney Division, Supercharger Test Houses, East Hartford, CT, (1943), Job No. 1509-CL136United Aircraft Corporation, Pratt and Whitney Division, Two 24 Foot Diameter Experiment Test Cells, East Hartford, CT, (1943-1944), Job No. 1509-CM136United Aircraft Corporation, Pratt and Whitney Division, East Hartford, CT, (1946), Job No. 1509-CW, CX136United Aircraft Corporation, Pratt and Whitney Division, Engine Development Laboratory, East Hartford, CT, (1946-1958), Job No. 1509-DO136United Aircraft Corporation, Pratt and Whitney Division, X-ray Building, East Hartford, CT, (1947), Job No. 1509-DQ136United Aircraft Corporation, Pratt and Whitney Division, Research Department, Burner Test Rig, East Hartford, CT, (1948-1950), Job No. 1509-DS136United Aircraft Corporation, Pratt and Whitney Division, Boiler House Extension, East Hartford, CT, (1951), Job No. 1509-DX136United Aircraft Corporation, Pratt and Whitney Division, Eight 20 Foot Production Test Cells and Carburetor Air Box Building, East Hartford, CT, (1952), Job No. 1509-EA136United Aircraft Corporation, Pratt and Whitney Division, Computation Laboratory and Office Building Extension, East Hartford, CT, (1956-1958), Job No. 1509-FB136United Aircraft Corporation, Pratt and Whitney Division, Willgoos Laboratory Engine Development Facilities II, East Hartford, CT, (1957-1958), Job No. 1509-FC136United Aircraft Corporation, Pratt and Whitney Division, Power House Addition, East Hartford, CT, (1965), Job No. 1509-FV136United Aircraft Corporation, Pratt and Whitney Division, East Hartford, CT, (1936-1937), Job No. 1509-L, M136United Aircraft Corporation, Pratt and Whitney Division, Test House, East Hartford, CT, (1937-1938), Job No. 1509-O136United Aircraft Corporation, Pratt and Whitney Division, 18 Foot Test Houses, East Hartford, CT, (1939), Job No. 1509-X136United Aircraft Corporation, Pratt and Whitney Division, Engineering Building, East Hartford, CT, (1937-1943), Job No. 1509-Z, AC, CE136United Aircraft Corporation, Chance-Vought Aircraft Division, Factory Building, East Hartford, CT, (1930-1936), Job No. 1519136United Aircraft Corporation, Chance-Vought Aircraft Division, Office Building, East Hartford, CT, (1930-1944), Job Nos. 1519, 1804-F136United Aircraft Corporation, Hamilton Standard Division, Engineering Building Addition, East Hartford, CT, (1936-1938), Job No. 1519-G136United Aircraft Corporation, Hamilton Standard Division, Temporary Office Building, East Hartford, CT, (1944), Job No. 1519-L136United Aircraft Corporation, Hamilton Standard Division, East Hartford, CT, (1937), Job No. 1519-M136United Aircraft Corporation, Hamilton Standard Division, South Extension to Hot Forming Operations and Southwest Extensions to Factory Building, East Hartford, CT, (1944), Job No. 1519-N, O136United Aircraft Corporation, Hamilton Standard Division, Two 33 Foot Square Propeller Test Houses, East Hartford, CT, (1945-1946), Job No. 1519-Q137United Aircraft Corporation, Hamilton Standard Division, Southeast Extension to Factory Building, East Hartford, CT, (1948), Job No. 1519-S137United Aircraft Corporation, Pratt and Whitney Division, Addition to South Side of Hamilton Standard Building, East Hartford, CT, (1951-1952), Job No. 1519-W137United Aircraft Corporation, Pratt and Whitney Division, Test Houses, East Hartford, CT, (1939), Job No. 1519-Y137United Aircraft Corporation, Chance-Vought Aircraft Division, Stratford, CT, (1944), Job No. 1804137United Aircraft Corporation, Vought-Sikorsky Division, Factory Building Additions, Stratford, CT, (1939-1943), Job No. 1804-A, B137United Aircraft Corporation, Chance-Vought Aircraft Division, Office Building, Stratford, CT, (1944), Job No. 1804-F137United Aircraft Corporation, Chance-Vought Aircraft Division, Factory Extension, Stratford, CT, (1944), Job No. 1804-G137United Aircraft Corporation, Chance-Vought Aircraft Division, Electric Distribution System Additions, Stratford, CT, (1944), Job No. 1804-K137United Aircraft Corporation, Chance-Vought Aircraft Division, Scrap Segregation Building, Stratford, CT, (1944), Job No. 1804-L137United Aircraft Corporation, Chance-Vought Aircraft Division, Paint Storage Building, Stratford, CT, (1944), Job No. 1804-M137United Aircraft Corporation, Chance-Vought Aircraft Division, West Employees' Entrance, Stratford, CT, (1944), Job No. 1804-N137United Aircraft Corporation, Chance-Vought Aircraft Division, Fire House, Stratford, CT, (1944), Job No. 1804-O137United Aircraft Corporation, Chance-Vought Aircraft Division, Cafeteria Rearrangements, Stratford, CT, (1944-1945), Job No. 1804-R137United Aircraft Corporation, Vought-Sikorsky Aircraft Division, Engineering Building Addition, Stratford, CT, (1941), Job No. 1866137United Aircraft Corporation, Vought-Sikorsky Aircraft Division, Test Hangar, Stratford, CT, (1943), Job No. 1866-B137United Aircraft Corporation, Chance-Vought Aircraft Division, Test Hangar Building No. 2, Stratford, CT, (1944), Job No. 1866-G137United Aircraft Corporation, Chance-Vought Aircraft Division, Experimental Hangar, Stratford, CT, (1944), Job No. 1866-J137United Aircraft Corporation, Chance-Vought Aircraft Division, South Employee's Entrance, Stratford, CT, (1943), Job No. 1866-K137United Aircraft Corporation, Chance-Vought Aircraft Division, Airplane Test Building, Stratford, CT, (1944), Job No. 1866-L137United Aircraft Corporation, Pratt and Whitney Aircraft Division, Plant L, Willimantic, CT, (1944), Job No. 1916137United Aircraft Corporation, Pratt and Whitney Aircraft Division, Plant M, East Longmeadow, MA, (1942-1944), Job No. 1918137United Aircraft Corporation, Pratt and Whitney Aircraft Division, Plant N, Southington, CT, (1944), Job No. 1925137United Aircraft Corporation, Pratt and Whitney Aircraft Division, Power House, Southington, CT, (1966), Job No. 1925-C137United Aircraft Corporation, Pratt and Whitney Aircraft Division, Kansas City, MO, (1944-1945), Job No. 19272 folders137United Aircraft Corporation, Pratt and Whitney Aircraft Division, Airplane Engine Plant Personnel Building, Kansas City, MO, (1942-1944), Job No. 1927-A137United Aircraft Corporation, Pratt and Whitney Aircraft Division, Boiler House, Kansas City, MO, (1944), Job No. 1927-B137United Aircraft Corporation, Pratt and Whitney Aircraft Division, Truck Garage, Kansas City, MO, (1944), Job No. 1927-C137United Aircraft Corporation, Sikorsky Aircraft Division, Hangar Building, Shipping and Office Building, Additions to Building Nos. 7-3, 8-S, 9-S, 10-S, Bridgeport, CT, (1949-1952), Job No. 1934-D, H, J137United Aircraft Corporation, Chance-Vought Aircraft Division, Manufacturing Building "B" Plant Alterations, Hangar Building, Grand Prairie, TX, (1948-1950), Job No. 2028-A, H137United Aircraft Corporation, Hamilton Standard Division, Office Building, Windsor Locks, CT, (1951-1955), Job No. 20723 folders137United Aircraft Corporation, Hamilton Standard Division, Experimental Test Building, Windsor Locks, CT, (1953-1954), Job No. 2072-B137United Aircraft Corporation, Pratt and Whitney Aircraft Division, Manufacturing Building, North Haven, CT, (1951-1953), Job No. 2073137United Aircraft Corporation, Pratt and Whitney Aircraft Division, Manufacturing Building -- Boiler House, Manufacturing and Office Building Addition, North Haven, CT, (1952-1956), Job No. 2073-A, B137United Aircraft Corporation, Sikorsky Aircraft Division, Helicopter Manufacturing Plant, Stratford, CT, (1953-1958), Job No. 20952 folders138United Aircraft Corporation, Sikorsky Aircraft Division, Boiler House, Stratford, CT, (1956), Job No. 2095-A138United Aircraft Corporation, Sikorsky Aircraft Division, Engineering Facilities Addition, Stratford, CT, (1957), Job No. 2095-K138United Aircraft Corporation, Pratt and Whitney Aircraft Division, Research and Development Center, Manufacturing and Testing Facilities, United, FL, (1956-1960), Job No. 2129138United Aircraft Corporation, Pratt and Whitney Aircraft Division, Manufacturing and Testing Facilities, Boiler House, Palm Beach County, FL, (1956), Job No. 2129-F138United Aircraft Corporation, Administrative Office Building, East Hartford, CT, (1956), Job No. P-3031138United Aircraft Corporation, Pratt and Whitney Aircraft Division, Electronic Research and Development Facilities, Norden, CA, (1958), Job No. PR-3092138United Aircraft Corporation, Sikorsky Aircraft Division, Sky Jig Test Stand, Job No. P-3372138United Airlines, Office Building, Chicago, IL, (1938-1941), Job No. 1776138United Airlines, Office Building Addition, Chicago, IL, (1942), Job No. 1776-B138United Airlines, Hangar Building and Office, Portland, OR, (1940-1942), Job No. 1827138United Airlines, Hangar and Office Building, Denver, CO, (1940-1941), Job No. 1862138United Airlines, Jet Test Facilities, San Francisco, CA, (1959), Job No. 2133138United Airlines, Jet Overhaul Facilities, Jet Engine Test Cell, San Francisco, CA, (1959-1965), Job No. 2133-A, D138United Airlines, Detroit Metro Airport, Hangar Building, Romulus, MI, (1966-1968), Job No. 2198138United Airlines, O'Hare International Airport, Major Maintenance Hangar, Chicago, IL, (1967-1969), Job No. 2204138United Airlines, Office Building, (1958), Job No. P-3091138United Savings Bank, Bank Building, Detroit, MI, (1920), Job No. 991138United States Army, Airplane Repair Dock, Fairfield, OH, (1939-1948), Job No. 1836-A, B138United States Army, Storehouse, Duncan Field, TX, (1939), Job No. 1837-B138United States Army, Corps of Engineers, Renovation of Tank Plant Arsenal, Warren, MI, (1980-1983), Job No. 2169-G138United States Aviation School, Langley Field, VA, (1917-1948), Job No. 796138United States Coast Guard, Ninth Coast Guard District, Hangar Building, Traverse City, MI, (1978-1981), Job No. 23063 folders138United States Government, National Advisory Committee for Aeronautics Laboratory, (1940), Job No. P-1917138United States Government, Federal Aviation Agency, Base Building for Control Tower, Detroit City Airport, Detroit, MI, (1967), Job No. 2210138United States Government, GSA Internal Revenue Service Center, Detroit, MI, (1965-1968), Job No. 2213138United States Government, Cape Canaveral, FL, (1960), Job No. P-3154139United States Navy, Naval Air Base, Kaneohe Bay, Oahu, HI, (1939), Job No. 1820139United States Navy, Naval Air Base, Bachelor Officers' Quarters, Midway Islands, (1940), Job No. 1821-F139United States Navy, Naval Air Base, Plot Plan, Enlisted Men's Recreation Building, Dispensary, Kodiak, AK, (1939-1940), Job No. 1822 F, G139United States Navy, Naval Air Base, Administration Building, Bachelor Officers' Quarters, Enlisted Men's Recreation Building, Sitka, AK, (1939), Job No. 1823-B, G, H139United States Navy, Naval Air Base, Bachelor Officers' Quarters, Officers' Recreation Facilities, San Juan, Puerto Rico, (1940), Job No. 1824-I, X139United States Navy, Hangar Building, Squantum, MA, (1940), Job No. 1829139United States Navy, Naval Air Station, Quonset Point, RI, (1940), Job No. 1863139United States Navy, Shipfitters' Shop, San Francisco, CA, (1945), Job No. 1981139United States Navy, Aircraft Maintenance Hangar and I.M.A. Facility, Mount Clemens, MI, (1976), Job No. 2290139United States Post Office, Parcel Post Building, Roosevelt Park Annex, Detroit, MI, (1933), Job No. 1644139United States Post Office, Lansing, MI, (1931), Job No. 1616139United Technologies Corporation, Sikorsky Aircraft Division, Finishes Building, Stratford, CT, (1983), Job No. 2095-AC139United Technologies Corporation, Sikorsky Aircraft Division, Engineering Building, Stratford, CT, (1982-1985), Job No. 2095-Z3 folders139United Technologies Corporation, Pratt and Whitney Aircraft Division, Service Center, Southington, CT, (1980), Job No. 23412 folders139United Technologies Corporation, Sikorsky Aircraft Division, Blade Balance Test Facility, Pensacola, FL, (1984), Job No. 2352-A139United Technologies Corporation, Sikorsky Aircraft Division, Test Enclosures, Pensacola, FL, (1985), Job No. 2352-B, C139University of Alabama -- Birmingham, Palliative Care Unit, Birmingham, AL, Job No. 20107139University of Michigan, Hill Auditorium - YWCA, Dearborn, MIUniversity of Michigan, Hill Auditorium, Ann Arbor, MI, (1911-1915), Job No. 494139University of Michigan, Hill Auditorium, Theater Restoration, Ann Arbor, MI, Job No. 494-H139University of Michigan, Natural Science Building, Ann Arbor, MI, (1914-1917), Job No. 605139University of Michigan, General Library, Addition (not built), Renovation, Ann Arbor, MI, (1919-1975), Job No. 663, B, D2 folders139University of Michigan, Hospital, Ann Arbor, MI, (1945), Job No. 850139University of Michigan, Hospital, Medical Procedures Unit, Plant Extension, Ann Arbor, MI, Job No. 850-BA139University of Michigan, Mott Renewal Project, Ann Arbor, MI, Job No. 850-CJ139University of Michigan, C.S. Mott Children's Hospital, Ann Arbor, MI, (1969-1978), Job No. 850-M139University of Michigan, Replacement Hospital Project, Floor Plans, Drawings, Ann Arbor, MI, (1980-1981), Job No. 850-T2 folders139University of Michigan, Hospital, Beth Singer Photos, Ann Arbor, MI, (1987), Job No. 850-TD1 folder139University of Michigan, Hospital, Beth Singer Photos, Ann Arbor, MI, (1987), Job No. 850-TD2 folders140University of Michigan, Hospital, Exterior Site Plans, Floor Plans, Miscellaneous Plans, Ann Arbor, MI, (1980-1983), Job No. 850-TD140University of Michigan, Hospital, Interior Photos, Ann Arbor, MI, (1986), Job No. 850-TD140University of Michigan, Hospital, Miscellaneous Photos, Ann Arbor, MI, Job No. 850-TD140University of Michigan, Replacement Hospital Project, Photos/Renderings, Gaming Diagrams, Ann Arbor, MI, Job No. 850-TD140University of Michigan, Hospital Parking Structure, Ann Arbor, MI, Job No. 850-W140University of Michigan, Hospital, Burn Center Facilities, Ann Arbor, MI, (1985), Job No. 850-Y140University of Michigan, William L. Clements Library, Ann Arbor, MI, (1922 1945), Job No. 1001140University of Michigan, Randall Laboratory Addition, Ann Arbor, MI, (1957), Job No. 1024-B140University of Michigan, Literary Building (Angell Hall), Ann Arbor, MI, (1922 1945), Job Nos. 1025, 461140University of Michigan, Angell Hall Connector, Ann Arbor, MI, (1995), Job No. 1025-D140University of Michigan, Psi Upsilon Fraternity House, Ann Arbor, MI, (1924), Job No. 1200140University of Michigan, Carillon (Burton) Tower, Ann Arbor, MI, (1934-1973), Job No. 1706140University of Michigan, Central Service and Stack Building, North Campus, Ann Arbor, MI, (1953), Job Nos. 2096 P-2893140University of Michigan, Undergraduate Library, Ann Arbor, MI, (1955-1958), Job No. 21154 folders140University of Michigan, Undergraduate Library, Ann Arbor, MI, (1995), Job No. 2115-C140University of Michigan, Physics and Astronomy Building (David M. Dennison Building/Weiser Hall), Ann Arbor, MI, (1963-1978), Job No. 21442 folders140University of Michigan, Physics and Astronomy Building (David M. Dennison Building/Weiser Hall), Ann Arbor, MI, (1963-1978), Job No. 21443 folders141University of Michigan, Harlan Hatcher Library, Ann Arbor, MI, (1964-1978), Job No. 21724 folders141University of Michigan, Classroom and Office Building, Ann Arbor, MI, (1965-1978), Job No. 21943 folders141University of Michigan, School of Public Health, Ann Arbor, MI, (1966-1972), Job No. 21973 folders141University of Michigan, Replacement Hospital Project, Artwork/Renderings for Development Brochure, Ann Arbor, MI, (1983), Job No. 2356-B141University of Michigan, Media Union (Pierpont Commons), Ann Arbor, MI, Job No. 2415141University of Michigan, Health System, East Ann Arbor Health Center, Ann Arbor, MI, Job No. 2554142University of Michigan, Health System, Rachel Upjohn Building, Ann Arbor, MI, Job No. 2554-D142University of Michigan, Health System, Ambulatory Surgery Center and Clinics, Ann Arbor, MI, (2006), Job No. 2554-E142University of Michigan, Joan and Sanford Weill Hall, Ann Arbor, MI, Job No. 2888142University of Notre Dame, Studies, South Bend, IN, (1959), Job No. 1601142University of Notre Dame, Power House, Addition, South Bend, IN, (1953-1957), Job No. 1601 A142Upjohn Company, Manufacturing Building, Kalamazoo, MI, (1935-1937), Job No. 1663142Upjohn Company, Office Building, Kalamazoo, MI, (1935-1937), Job No. 1663-A142Upjohn Company, Boiler House Addition, Kalamazoo, MI, (1945), Job No. 1663-E142Upjohn Orthopedic School for Crippled Children, Kalamazoo, MI, (1939), Job No. 1792142Valeo Wiper Systems, Sound and Vibration Test Facilities, Auburn Hills, MI, Job No. 2732-A142Vinton Building, Woodward Avenue, Detroit, MI, Job No. 770142Volkswagen of America, Inc., Manufacturing and Administration Building Modifications, Sterling Heights, MI, (1981-1982), Job No. 2332 A142Volkswagen of America, Inc., Paint Building Addition to Assembly Plant, Sterling Heights, MI, (1980), Job No. 2332-E142Walbri Apartments, Briggs Commercial and Development Company, Detroit, MI, (1932), Job No. 1631142Washington Post, Newspaper Plant, Washington, D.C., (1950-1963), Job No. 2043-A2 folders142Washington Post and Times Herald, Mechanical and Office Building, Additions and Alterations, Washington, D.C., (1959-1969), Job No. 2118 A142Washington Post, Newspaper Plant Alterations and Additions, Washington, D.C., (1969-1973), Job No. 2118-B3 folders142Washtenaw Community College, Gunder Myran Building, Ann Arbor Township, MI, Job No. 2652142Waterbury Paper Box Company, Plant Addition, Waterbury, CT, (1944), Job No. P-2352142Wayne County Community College, Administration Building, Detroit, MI, (1978-1981), Job No. 22983 folders142Wayne County Community College, Administration Building, Detroit, MI, (1978-1981), Job No. 22981 folder143Wayne County and Home Savings Bank, Woodward Avenue and West Grand Boulevard, Detroit, MI, Job No. 695143Wayne County Michigan, Replacement Parking Structure, Detroit Metro Airport, Romulus, MI, Job No. 2419-C143Wayne County Michigan, World Travel Center, Detroit Metro Airport, Romulus, MI, Job No. 2419-D143Wayne County Michigan, Replacement Parking Structure Renderings, Detroit Metro Airport, Romulus, MI, Job No. 2419-E143Wayne State University, Life Sciences Research Center Building, Detroit, MI, (1959-1961), Job No. 21372 folders143Wayne State University, Life Sciences Research Center Building, Detroit, MI, (1959-1961), Job No. 21372 folders143Wayne State University, Undergraduate Library Competition, Detroit, MI, (1987), Job No. 2405143Wayne State University, College of Pharmacy, Detroit, MI, Job No. 2647143Westinghouse Electric and Manufacturing Company, Office and Warehouse, Detroit, MI, (1926), Job No. 1308143Westinghouse Electric Company, Metal Stamping Plant, Enameling Building, Mansfield, OH, (1940-1941), Job No. 1847143Westinghouse Electric and Manufacturing Company, Warehouse, Mansfield, OH, (1940-1941), Job No. 1847-A143Whirlpool Corporation, Danville Division, Building Addition/Plant Renovations, Danville, KY, (1983), Job No. 2362143Whirlpool Corporation, Danville Division, Space Programming and Site Planning Study, New Laboratory and Office Building, Danville, KY, (1985), Job No. 2362-A, B143Whirlpool Corporation, Engineering Building, Benton Harbor, MI, (1984), Job No. 2368143Whirlpool Corporation, Renovations to Washington School, St. Joseph, MI, (1986), Job No. 23893 folders143White Motor Corporation, Truck Group, Distribution Warehouse, Florence, KY, (1974), Job No. 2276143Wills, C.H., Swimming Pool at Residence, Detroit, MI, Job No. 620143WJR/WHYT Capital Cities, ABC, Inc., Phase II Services, Fisher Building, Detroit, MI, (1987), Job No. 2383-A2 folders143Woman's Hospital, Detroit, MI, (1945), Job No. 1395143Woodward Apartments, Detroit, MI, (1902), Job No. 83143Wright Aeronautical Corporation, Manufacturing Building Addition to Plant No. 2, Airplane Engine Plant, 30 Foot Flight Propeller Test Cells, Motor Packing and Shipping Building, Paterson, NJ, (1937-1941), Job No. 1750-B, H, Q, R144Wright Aeronautical Corporation, Test Cell Building, Dynamometer and Propeller Test Cells, Paterson, NJ, (1939-1941), Job No. 1750-D, J, L, N, T, O144Wright Aeronautical Corporation, New Magnesium Foundry, Sand Reclaim Building, Fairlawn, NJ, (1941-1944), Job No. 1870 A144Wright Aeronautical Corporation, Airplane Engine Plant, Cincinnati, OH, (1941-1946), Job No. 18742 folders144Wright Aeronautical Corporation, Airplane Engine Plant, Office Building, Cincinnati, OH, (1940-1946), Job No. 1874-A144Wright Aeronautical Corporation, Airplane Engine Plant, North Shop, Cincinnati, OH, (1944), Job No. 1874-AA144Wright Aeronautical Corporation, Airplane Engine Plant, South Shop, Cincinnati, OH, (1944), Job No. 1874-AB144Wright Aeronautical Corporation, Airplane Engine Plant, Magnesium Foundry, Cincinnati, OH, (1944), Job No. 1874-AC144Wright Aeronautical Corporation, Airplane Engine Plant, Aluminum Foundry, Cincinnati, OH, (1944), Job No. 1874-AD144Wright Aeronautical Corporation, Airplane Engine Plant, Test Cells, Cincinnati, OH, (1944), Job No. 1874-AE144Wright Aeronautical Corporation, Airplane Engine Plant, Carburetor Test Laboratory No. 2, Cincinnati, OH, (1944), Job No. 1874-AG144Wright Aeronautical Corporation, Airplane Engine Plant, Boiler House No. 2, Cincinnati, OH, (1944), Job No. 1874-AH144Wright Aeronautical Corporation, Airplane Engine Plant, Water Softener Plant No. 2, Cincinnati, OH, (1944), Job No. 1874-AJ144Wright Aeronautical Corporation, Airplane Engine Plant, Parking Lots, Cincinnati, OH, (1944), Job No. 1874-AQ144Wright Aeronautical Corporation, Airplane Engine Plant, Water Tower No. 2, Cincinnati, OH, (1944), Job No. 1874-AR144Wright Aeronautical Corporation, Airplane Engine Plant, 66 KV Substation, Cincinnati, OH, (1944), Job No. 1874-AS144Wright Aeronautical Corporation, Airplane Engine Plant, Conveyors and Test Cells, Cincinnati, OH, (1944), Job No. 1874-AV144Wright Aeronautical Corporation, Airplane Engine Plant, Salvage and Refuse Building, Cincinnati, OH, (1944), Job No. 1874-AZ144Wright Aeronautical Corporation, Airplane Engine Plant, Boiler House No. 1, Cincinnati, OH, (1944), Job No. 1874-B144Wright Aeronautical Corporation, Airplane Engine Plant, Test Cells, Cincinnati, OH, (1941-1944), Job No. 1874-C144Wright Aeronautical Corporation, Airplane Engine Plant, Aluminum Foundry No. 1, Cincinnati, OH, (1941-1944), Job No. 1874-D144Wright Aeronautical Corporation, Airplane Engine Plant, Substation, Cincinnati, OH, (1943), Job No. 1874-G144Wright Aeronautical Corporation, Airplane Engine Plant, Oil Storage and Chip Handling Building, Cincinnati, OH, (1944), Job No. 1874-J144Wright Aeronautical Corporation, Airplane Engine Plant, Water Softener Plant No. 1, Cincinnati, OH, (1944), Job No. 1874-K144Wright Aeronautical Corporation, Airplane Engine Plant, Carburetor Test Laboratory No. 1, Cincinnati, OH, (1944), Job No. 1874-N144Wright Aeronautical Corporation, South Manufacturing Building and Addition, East Paterson, NJ, (1941-1944), Job No. 1880-D, J144Wright Aeronautical Corporation, East Manufacturing Building Addition, Overpass Bridge, Turnstile and Guard House, Switch House and Substation, East Paterson, NJ, (1942), Job No. 1880-E, F, H144Wright Aeronautical Corporation, Plant No. 7, Woodridge, NJ, (1942-1949), Job No. 1926144Wright Aeronautical Corporation, Plant No. 7, Personnel Building, Woodridge, NJ, (1943-1944), Job No. 1926-A144Wright Aeronautical Corporation, Plant No. 7, Engine Test Cells and Service Building, Woodridge, NJ, (1944-1945), Job No. 1926-AD144Wright Aeronautical Corporation, Plant No. 7, Development Laboratory, Woodridge, NJ, (1947-1949), Job No. 1926-AP144Wright Aeronautical Corporation, Plant No. 7, Boiler House, Woodridge, NJ, (1943), Job No. 1926-B144Wright Aeronautical Corporation, Plant No. 7, Gasoline Storage Building, Woodridge, NJ, (1943), Job No. 1926-D144Wright Aeronautical Corporation, Plant No. 7, Carburetor Laboratory, Woodridge, NJ, (1943), Job No. 1926-J144Wright Aeronautical Corporation, Plant No. 7, Engine Propeller and Crib Storage Building, Woodridge, NJ, (1943), Job No. 1926-K144Wright Aeronautical Corporation, Plant No. 7, Main Switch House, Woodridge, NJ, (1942-1943), Job No. 1926-O144Wright Aeronautical Corporation, Plant No. 7, Main Guard House, Woodridge, NJ, (1943), Job No. 1926-Q144Wright Aeronautical Corporation, Plant No. 7, Scale Pit, Woodridge, NJ, (1943), Job No. 1926-W144Wyandotte General Hospital, Addition, Wyandotte, MI, (1962-1964), Job No. 2153145Wyandotte General Hospital, Replacement General Hospital, Wyandotte, MI, (1968-1978), Job No. 2153-D3 folders145Wyandotte General Hospital, Long Range Planning Study, Wyandotte, MI, (1982), Job No. 2153-F-9145YMCA Building, Grand Boulevard and Dexter, Detroit, MI, Job No. 1415145Youngstown Hospital, Youngstown, OH, (1928-1929), Job No. 1423145YWCA Building, Central Branch, Witherell Street, Detroit, MI, (1929), Job No. 1362145YWCA, Dearborn, MI, (1954), Job No. P-2834145
    Photographs of Completed Buildings in Leather Portfolios90 portfolios, 2 boxes (black-and-white prints; 4-1/2x6-1/2-inch to 10x14-inch)1907-1941

    The Photographs of Completed Buildings in Leather Portfolios series (90 portfolios, 1907-1941) is an important collection of large-format, black-and-white images of Kahn's projects, built between 1907 and 1941. With the exception of the Hudson Motor Car Company Factory photographs, which document the project under construction in a series of fold-out images, all of the photographs in this subseries were taken after the buildings were completed and measure between 4-1/2x6-1/2 and 10x14 inches, with the majority at the larger end of this range. These prints are housed in their original, 90 leather portfolios, with marbled end-papers. A few smaller leather albums can be found in Boxes 11 and 12. The series is arranged alphabetically by project title. The portfolio numbers were assigned by the Bentley Historical Library during processing of the collection.

    The full dimensions of Kahn's work are represented here, from institutional, residential, commercial, and industrial buildings to such important First and Second World War projects as Langley Field (Hampton, VA), Buick Airplane Engine Plant (Melrose Park, IL), Chrysler Tank Arsenal (Warren, MI), Curtiss Wright Corporation Aeroplane Division Buildings (Buffalo, NY), and Thompson Aircraft Products Building (Euclid, OH). The twenty-three photographs of Langley Field (1917) are particularly interesting, because they document views of several military and civilian structures, even before the roads were completed. The portfolio photographic collection offers researchers an unparalleled opportunity to view in rich detail the exteriors and interiors of Kahn's buildings, representing the entire range of his industrial-modern and historically influenced projects. Five of the leather portfolios contain photographs of important buildings by other architects, including Paul P. Cret, York & Sawyer, Malcomson & Higgenbotham, Ayman Embury, Charles Platt, Walker & Gillette and McKim, Mead & White.

    The photographers whose work is represented in the portfolio collection were among the most respected architectural photographers of their day, including the Hedrich-Blessing Studio of Chicago, John Wallace Gillies of New York, and Thomas Ellison of Detroit. The partnership of Ken and Bill Hedrich and Phillip Blessing, established in 1929, is particularly noteworthy, as the firm became the premier, architectural, photographic studio in the country, with such other famous architects as Frank Lloyd Wright, Mies van der Rohe, and Skidmore, Owings and Merrill also using their services. Albert Kahn hired Hedrich-Blessing to photograph four of the projects in the portfolio collection: Curtiss Wright Corporation Aeroplane Division Buildings (Buffalo), W. K. Kellogg Auditorium and High School (Battle Creek), Southeastern Junior High School (Battle Creek), and Thompson Aircraft Products Building (Euclid, Ohio). The archives of the Hedrich-Blessing Studio have been housed at the Chicago Historical Society since 1991.

    Russell A. Alger Residence, Grosse Pointe, Michigan, (1910), Job No. 40480American Blower Corporation, Detroit, Michigan (1935) Job No. 1701Photographs of exterior by Fred Eggert, Detroit2 prints1Ann Arbor Daily News Building, Ann Arbor, Michigan (1935) Job No. 1697Photograph of exterior by Fred Eggert, Detroit1 prints2Bank of Saginaw, Saginaw, Michigan (1927) Job No. 1375Photographs of exterior and interior by Thomas Ellison, Detroit12 prints3George G. Booth Residence at Cranbrook, Bloomfield Hills, Michigan (1908) Job No. 333Photographs of "Cranbrook Farm" (house exteriors) by unknown photographer18 prints11Photographs of exterior and interior by John Wallace Gillies, New York15 prints4Photographs of exterior, grounds, and interior by unknown photographer50 prints11C.V. Brokan Residence80Buick Airplane Engine Plant, Melrose Park, Illinois (1941) Job No. 1883Photographs of exterior and interior by unknown photographer3 prints5Charles J. Butler Residence, Indian Village, Detroit, Michigan (1914) Job No. 627

    (the portfolio is labeled "L. K. Butler," but residence is that of Charles J. Butler)

    Exterior and interior photographs of all residences included in the portfolio6Photos by John Wallace Gillies, New York20 prints6Photos by Hance1 prints6Photos by unknown photographer10 prints6
    Cadillac Motor Car Company Service Building, Detroit, Michigan (1920) Job No. 900Photographs of exterior and interior by Hance7 prints7

    (two prints not identified, but most probably of Cadillac Service Building; building is located in Detroit, not in NY, as is noted on portfolio cover)

    Children's Aid Society, Detroit, Michigan (1931) Job No. 1603Photograph of exterior by Thomas Ellison, Detroit1 prints8Children's Hospital of Michigan, Detroit, Michigan (1922) Job No. 1098Photographs of interior by Thomas Ellison, Detroit3 prints9Children's Hospital of Michigan Nurses' Home, Detroit, Michigan (1922) Job No. 1098Photographs of exterior and interior by Thomas Ellison, Detroit8 prints10Chrysler Corporation Administration Building, Mr. K. T. Keller's Office, Detroit, Michigan (ca.1937) Job number unknownPhotographs by Multi-Color, Detroit2 prints11Chrysler Tank Arsenal, Warren, Michigan (1942) Job No. 1867Photographs of exterior and interior by unknown photographer4 prints5William L. Clements Library, University of Michigan, Ann Arbor (1922) Job No. 1001Photographs of exterior and interior by John Wallace Gillies, New York9 prints12

    (6 prints not identified, but most probably by Gillies)

    William L. Clements Residence, Bay City, Michigan (1909) Job No. 362Photographs of exterior, interior, and grounds by unknown photographer34 prints11H. E. Coffin Residence, Grosse Pointe, Michigan (1910) Job No. 429Photographs of exterior and interior by unknown photographer9 prints11Colony Club Building, Detroit, Michigan81James C. Couzens Residence, Second and Longfellow Avenues, Detroit, Michigan (1910) Job No. 411Photographs of exterior by unknown photographer8 prints13Curtiss-Wright Corporation Factory, Columbus, Ohio (date and job number unknown)Photographs of exterior and interior by unknown photographer5 prints5Curtiss-Wright Corporation, Curtiss Aeroplane Division Buildings, Tonawanda (Buffalo), New York (1938) Job No. 1785Photographs of exterior and interior by Hedrich-Blessing Studio, Chicago34 prints14Dearborn Inn, Dearborn, Michigan (1929) Job No. 1504Photographs of exterior and interior by Thomas Ellison, Detroit7 prints15Detroit Athletic Club, Detroit, Michigan (1915) Job No. 593Photographs of exterior and interior by unknown photographer32 prints16Detroit Free Press Building, Detroit, Michigan (1925) Job No. 1170Photographs of exterior by Thomas Ellison, Detroit2 prints17Detroit Golf Club, Detroit, Michigan (1917) Job No. 740Photographs of exterior and interior18Photos by John Wallace Gillies, New York10 prints18Photos by Hance11 prints18Photos by Thomas Ellison, Detroit1 prints18Photos by unknown photographers7 prints18Detroit Institute of Arts. Detroit, Michigan, by Paul P. Cret, Architect (1927)Photostatic prints of architectural drawings by Paul P. Cret, prepared for the Art Commission of the City of Detroit11 prints (of drawings and renderings)192019Photographs of exterior and interior by Thomas Ellison, Detroit13 prints20Detroit Police Headquarters, Detroit, Michigan (1923) Job No. 990Photographs of exterior21Photos by Thomas Ellison, Detroit4 prints21Photos by John Wallace Gillies, New York6 prints21Detroit Savings Bank Building, Detroit, Michigan (1915) Job No. 689Photographs of exterior and interior22Photos by John Wallace Gillies, New York1 prints22Photos by Hance5 prints22Photos by unidentified photographer7 prints22Detroit Times Building, Detroit, Michigan (1928) Job No. 1451Photographs of exterior and interior by Thomas Ellison, Detroit5 prints (with interleaving)23Detroit Trust Company Building, Detroit, Michigan (1915) Job No. 637Photographs of exterior and interior by Thomas Ellison, Detroit10 prints24Photographs of exterior by unknown photographer2 prints22Horace Elgin Dodge Residence, Grosse Pointe, Michigan (1911) Job No. 423Photographs of exterior and interior by unknown photographer19 prints25Dollar Savings & Trust Company Building, Wheeling, West Virginia (1910) Job No. 464Photographs of exterior and interior by unknown photographer12 prints26C. C. Edgar Residence, Grosse Pointe, Michigan (1915) Job No. 693Photographs of exterior and interior by unknown photographer7 prints27Ethyl Gasoline Corporation Building, Livonia, Michigan (1940) Job No. 1854Photographs of exterior by unknown photographer5 prints28Evening News Association (Detroit News) Building, Detroit, Michigan (1916) Job No.641, Volume No. 1Photographs of exterior and interior29Photos by Hance59 prints (and duplicates)29Photos by unknown photographer5 prints29Evening News Association (Detroit News) Building, Detroit, Michigan, (1916), Job No. 641, Volume No. 282First Congregational Church Alterations and Additions, Detroit, Michigan (1924) Job No. 1008Photographs of interior by Thomas Ellison, Detroit3 prints30First National Bank Building, Detroit, Michigan (1922) Job No. 803Photographs of exterior and interior31Photos by Hance16 prints31Photos by John Wallace Gillies, New York1 prints31Photos by unknown photographer16 prints31First National Bank Building, Youngstown, Ohio (1908) Job No. 340Photographs of exterior and interior by unknown photographer11 prints32First State Bank Building, Detroit, Michigan (1923) Job No. 1141Photographs of exterior and interior33Photos by Thomas Ellison, Detroit7 prints33Photos by Hance1 prints33Fisher Building, Detroit, Michigan (1929) Job No. 1378Photographs of exterior and interior by Thomas Ellison, Detroit11 prints34Ford Motor Company Airport and Hangar, Dearborn, Michigan (1925) Job No. 1290Photograph of exterior of hangar by Thomas Ellison, Detroit1 prints35Ford Motor Company Building, 54th & Broadway, New York, New York (1919) Job No. 807Photographs of exterior and interior by John Wallace Gillies, New York11 prints (one not identified, but is most probably by Gillies)7Ford Motor Company "Century of Progress" Exposition Buildings, Chicago, Illinois (1934) Job No. 1657Photographs of exterior and interior36Photos by John Stara1 prints36Photos by unknown photographer15 prints36Ford Motor Company Engineering Laboratory, Dearborn, Michigan (1925) Job No. 1077Photographs of exterior and interior35Photos by Thomas Ellison, Detroit26 prints35Photos by B. G. Miller, Detroit1 prints35Ford Motor Company Open Hearth Mills and Glass Manufacturing Plant (Job No. 1071), Rouge Plant, Dearborn, Michigan (1922-1925)Photographs of exteriors by unknown photographers15 printssix dated 193635Ford Motor Company Plant, Edgewater, New Jersey (1929) Job No. 1501Photographs of exterior by unknown photographer4 printsone dated 9/4/193035Ford Motor Company Plant and Hotel (unidentified), possibly Longbeach, CA, and Twin Cities, St. Paul, MNPhotographs of exteriors35Photo by John Wallace Gillies, New York1 prints35Photos by unknown photographer4 prints35Ford Motor Company Tire Plant, Dearborn, Michigan (1936) Job No. 1747Photographs of exterior and interior by unknown photographer3 prints5Clara Ford Nurses' Home, Detroit, Michigan (1923) Job No. 1119Photographs of exterior and interior37Photos by Thomas Ellison, Detroit19 prints37Photos by unknown photographer7 prints37Fort Shelby Garage, Detroit, Michigan (1920) Job No. 983Photograph of exterior by John Wallace Gillies, New York1 prints38Franklin Hills Country Club, Franklin, Michigan (1926) Job No. 1374Photographs of exterior and interior39Photos by Thomas Ellison, Detroit12 prints39Photos by Forester Studio, Detroit2 prints39Photos by unknown photographer24 prints39General Motors (Durant) Building, Detroit, Michigan (1922) Job No. 902Photographs of floor plans, exterior, and interior by unknown photographer79 prints11Photographs of exterior and interior40Photos by Hillis-McGregor, Detroit1 prints40Photos by McGregor and Vallin, Detroit1 prints40Photos by John Wallace Gillies, New York17 prints40Photos by unknown photographer14 prints40General Necessities Building (Park Boulevard Building/Jerome Ackerman Building), Detroit, Michigan (1922) Job No. 1058Photographs of exterior by John Wallace Gillies, New York2 prints41

    (one not identified, but most probably by Gillies)

    Grace Hospital Nurses' Home, Detroit, Michigan (1929) Job No. 1525Photograph of exterior by Thomas Ellison, Detroit1 prints42Grosse Pointe Country Club, Grosse Point, Michigan (1922) Job No. 1049Photographs of exterior and interior43Photos by Thomas Ellison, Detroit21 prints43Photos by John Wallace Gillies, New York6 prints43Photos and by unknown photographer4 prints43Harper Hospital Nurses' Home, Detroit, Michigan (1917) Job No. 780Photographs of exterior and interior44Photos by Thomas Ellison, Detroit1 prints44Photos by John Wallace Gillies, New York4 prints44

    (one print identified and three most probably by Gillies)

    Hill Auditorium, University of Michigan, Ann Arbor (1913) Job 494Photographs of exterior and interior by Manning Bros., Detroit12 prints78Hudson Motor Car Company Factory, Detroit, Michigan (1910) Job No. 450Construction photographs of exterior and interior by Spooner and Wells, Detroit16 photographs4/30/1910-11/23/191045

    (in folded, panoramic views, sizes vary)

    Photograph of exterior by Thomas Ellison, Detroit1 prints46
    Albert Kahn Residence, Detroit, Michigan (1906) Job No. 293Photographs of exterior and interior47Photos by Thomas Ellison, Detroit5 prints47Photos by unknown photographer1 prints47Photographs of exterior by unknown photographer3 prints27Photographs of exterior and interior by unknown photographer6 prints11W. K. Kellogg Auditorium and High School, Battle Creek, Michigan (1931) Job No. 1610Photographs of exterior and interior by Hedrich-Blessing Studio, Chicago10 prints, 8 enlargements48King's (National) Theater, Detroit, Michigan (1911) Job No. 478Photographs of exterior and interior by unknown photographer7 prints49S. S. Kresge Company Building, Detroit, Michigan (1929) Job No. 1476Photographs of exterior and interior50Photos by Thomas Ellison, Detroit21 prints50Photos by unknown photographer2 prints (and duplicates)50Herman Krolik Residence, Detroit, Michigan (1909) Job No. 439Photographs of exterior and interior by unknown photographer15 prints11Robert and Frank Kuhn Residence, Grosse Pointe, Michigan (1914) Job No. 642Exterior and interior photographs of all residences included in the portfolio6Photos by John Wallace Gillies, New York20 prints6Photos by Hance1 prints6Photos by unknown photographer10 prints6Langley Field, Hampton, Virginia (1917) Job No. 796Photographs of exteriors of several buildings by unknown photographer23 prints51Livingstone Memorial Lighthouse, Belle Isle, Detroit, Michigan (1930) Job No. 1400Photographs of exterior by Thomas Ellison, Detroit7 prints52Alvan Macauley Residence, Grosse Point, Michigan (1928) Job No. 1435Photographs of exterior and interior53Photos by Thomas Ellison, Detroit25 prints53Photos and by unknown photographer22 prints53Alvan Macauley Residence Library, Indian Village, Detroit, Michigan (1914) Job No. 611Photographs of interior by John Wallace Gillies, New York2 prints54Maccabees Building, Detroit, Michigan (1927) Job No. 1262Photographs of exterior and interior55Photos by Thomas Ellison, Detroit24 prints55Photos by Hance1 prints55Photos by unknown photographer3 prints55Miscellaneous Buildings by Other ArchitectsundatedPhotographs of exteriors and interiors by unknown photographer of the Princeton Club by Ayman Embury; Passaic National Bank & Trust Co. by Harry L. Walker; Cumberland Street Hospital (Brooklyn, NY) by Ludlow & Peabody; Percy Rockefeller Residence (New York), Ives Library (New Haven, CT) by Cass Gilbert; William Ziegler, Jr. Residence (New York) by Fk. Stevens; and Hogarth House by W. & J. Sloane60 prints11Miscellaneous Buildings by Other ArchitectsundatedPhotographs of exteriors and interiors by John Wallace Gillies, New York, of Eugene Meyer Residence (Mt. Kisco, NY) by Clarles Platt, Harkness Dormitories, Yale University, Coe House (Long Island) by Walker & Gillette, John J. Raskob Residence (Wilmington, DE), Rogers House by Walker & Gillette, Richmond Station, Brooklyn Trust Co. by York & Sawyer, Bush Terminal Sales Building, Metropolitan Museum of Art by McKim, Mead & White95 prints12Miscellaneous Buildings by Other ArchitectsundatedPhotographs of exteriors and interiors by John Wallace Gillies, New York, of Barbour Intermediate School (Detroit) by Malcomson & Higgenbotham, Hutchins School (Detroit) by Malcomson & Higgenbotham, Southwestern High School by Malcomson & Higgenbotham(Detroit), Temple Israel (New York) by Tachau & Vought, St. Benedict's Church School (Detroit) by Malcomson & Higgenbotham24 prints12Miscellaneous ExteriorsGarden Court Apartments, Detroit, MI, (1914), Job No. 62983Mendelson Mausoleum83People's Outfitting Company, Detroit, MI, (1915), Job No. 67683St. Francis Home for Orphan Boys, Detroit, MI, (1916), Job No. 72983Firestone Tires DAC Garage, Detroit, MI, (1917), Job No. 80583Standard Accident Insurance Company, Detroit, MI, (1920), Job No. 95283Grosse Pointe Shores City Hall83Miscellaneous Exteriors by Other Architectsundated84Miscellaneous Interiors and GardensBillings House85Marquette Building, Detroit, MI, (1917), Job No. 79885Hayward Murphy Residence, Detroit, MI, (1914), Job No. 63385Collins Residence85Miscellaneous Interiors and Gardens, Book 1Hayward Murphy Residence, Detroit, MI, (1914), Job No. 63386Miscellaneous Interiors and Gardens, Book 2Collins Residence87Howard Club Lounge87Mishawaka Woolen Manufacturing Company Mill, Mishawaka, Indiana (1920) Job No. 668Photograph of exterior by unknown photographer1 prints56Hayward Murphy Residence, Detroit, Michigan (1914) Job No. 633Exterior and interior photographs of all residences included in the portfolio6Photos by John Wallace Gillies, New York20 prints6Photos by Hance1 prints6Photos by unknown photographer10 prints6National Bank of Commerce, Detroit, Michigan (1916) Job No. 725Photographs of exterior and interior22Photos by John Wallace Gillies, New York3 prints22Photos by Detroit Publishing Company1 prints (and one copy)22Photos by unknown photographer2 prints22J. S. Newberry Residence, Grosse Pointe, Michigan (1914) Job No. 604Exterior and interior photographs by John Wallace Gillies, New York15 prints54New York Times Building, New York, New York (1931) Job No. 1478Photographs of exterior and interior by Wurts Brothers, New York4 prints57

    (two not identified, but most probably by Wurts)

    Packard Motor Car Company Factories, Detroit, (1905-1910) Jobs No. 201, 277, 289, etc.Photographs of exteriors and interior by unknown photographer28 prints79Packard Motor Car Company Salesroom, Detroit, Michigan (1923) Job No. 1125APhotographs of exterior and interior by Thomas Ellison, Detroit5 prints58Parke-Davis Company Factory, Detroit, Michigan (1928) Job No. 1434Photograph of exterior by Thomas Ellison, Detroit1 prints59Police Headquarters, Detroit, MI, (1920), Job No. 99088Psi Upsilon Fraternity House, Ann Arbor, Michigan (1925) Job No. 1200APhotographs of exterior and interior by Thomas Ellison, Detroit10 prints60Republic Steel Corporation Factory, Cleveland, Ohio (1937) Job No. 1743Photographs of exterior and interior by unknown photographer5 prints5Security Trust Bank, Detroit, Michigan (1923) Job No. 1140Photographs of exterior by Thomas Ellison, Detroit3 prints61Joseph Siegel Residence, Detroit, Michigan (1914) Job No. 644Exterior and interior photographs of all residences included in the portfolio6Photos by John Wallace Gillies, New York20 prints6Photos by Hance1 prints6Photos by unknown photographer10 prints6Samuel Francis Smith Memorial, Belle Isle, Detroit, Michigan (1931) Job No. 1605Photographs of exterior62Photos by Thomas Ellison, Detroit3 prints62Photos Davis B. Hillmer1 prints62Southeastern Junior High School, Battle Creek, Michigan (1930) Job No. 1593Photographs of exterior and interior by Hedrich-Blessing Studio, Chicago3 prints, 2 enlargements48Standard Club Building, Chicago, Illinois (1923) Job No. 1174Photographs of exterior and interior63Photos by Thomas Ellison, Detroit32 prints63Photos by unknown photographer2 prints63Studebaker Corporation Factory, Detroit, Michigan (1920) Job No. 966Photograph of exterior by unknown photographer1 prints64C. M. Swift Residence, Grosse Pointe, Michigan (1903) Job No. 168Photographs of exterior by unknown photographer5 prints65The New Temple Beth El, Detroit, Michigan (1922) Job No. 821Photographs of exterior and interior66Photos by John Wallace Gillies, New York3 prints66Photos by Thomas Ellison, Detroit11 prints66Thompson Aircraft Products Building, Euclid, Ohio (1941) Job No. 1885Photographs of exterior and interior by Hedrich-Blessing Studio, Chicago18 prints67United Savings Bank, Detroit, MI, (1920), Job No. 99189University Hospital, University of Michigan, Ann Arbor, Michigan (1921) Job No. 850Photographs of exterior by Thomas Ellison, Detroit4 prints68University of Michigan Carillon (Burton) Tower, Ann Arbor, Michigan (1936)Photograph of a model by Fred Eggert, Detroit1 prints69University of Michigan Lawyers' Club, by York and Sawyer, Architects (1924)Photographs of exterior by Thomas Ellison, Detroit34 prints76Photographs of interior by Thomas Ellison, Detroit18 prints76University of Michigan Literary Building (Angell Hall), Ann Arbor, Michigan (1924) Job No. 1025Photographs of exterior by Thomas Ellison, Detroit5 prints70University of Michigan Medical (C. C. Little) Building, Ann Arbor, Michigan (1924) Job No. 1023Photographs of exterior by Thomas Ellison, Detroit2 prints68University of Michigan Science (Natural Science) Building, Ann Arbor, Michigan (1914) Job No. 605Photographs of exterior by unknown photographer5 prints71Wayne County (Home Savings) Bank, Detroit, Michigan (1915) Job No. 695Photographs of exterior and interior22Photos by John Wallace Gillies, New York2 prints22Photos unidentified photographer10 prints22Women's Hospital (Free Hospital & Infants' Home), Detroit, Michigan (1927) Job No. 1395Photographs of exterior and interior74Photos by Thomas Ellison, Detroit7 prints74Photos by unknown photographer1 prints74WWJ (Detroit News Radio Broadcasting) Building, Detroit, Michigan (1934) Job No. 203Photographs of exterior by R.W. Tibbs, New York and Detroit4 prints75Youngstown Hospital, Youngstown, Ohio (1928) Job No. 1423Photograph of exterior by unknown photographer1 prints72Ypsilanti State Hospital, Ypsilanti, Michigan (1929) Job No. 1553Photographs of exterior by Thomas Ellison, Detroit2 prints73
    Slides1924-2002

    The Slides series (7 linear feet, 1924-2002) consists of thousands of 35mm mounted color slides of the interiors and exteriors of many of Kahn's completed buildings, and were maintained by Albert Kahn Associates, Inc. for presentation purposes. The slides in this series are arranged alphabetically by project title.

    Albert Kahn Associates, Inc., Albert Kahn Office Renovations, Detroit, MI, (1998), Job No. 2233-B258 slides160Aurora Health Care, Inc., Bay Care Medical Center, Green Bay, WI, Job No. 2717-A35 slides160Aurora Health Care, Inc., Ambulatory Care and Clinical Facility, Kenosha, WI, Job No. 2520112 slides160Aurora Health Care, Inc., Pewaukee Ambulatory Care Center, Waukesha, WI, Job No. 252124 slides160Aurora Health Care, Inc., Replacement Hospital, Two Rivers, WI, Job No. 2696-A58 slides160Avon Products, Inc., Laboratory and Office Building, Springdale, OH, Job No. 2165149 slides160Avon Products, Inc., Laboratory and Office Building, Addition to Packaging Department, Springdale, OH, (1968-1974), Job No. 2165-D5 slides160Avon Products, Inc., Stacker Storage Building, Morton Grove, IL, (1978), Job No. 2206-AA8 slides161Avon Products, Inc., Southeastern Branch Facilities, Atlanta, GA, Job No. 220791 slides161Avon Products, Inc., Shipping Building, Glenview, IL, (1968-1971), Job No. 221859 slides161Avon Products, Inc., Master Plan, Harriman, NY, Job No. 231042 slides161Avon Products, Inc., Master Plan for Corporate Office Facility, Rye, NY, (1983), Job No. 2338-A115 slides161Avon Products, Inc., Conversion of Existing Facility to Corporate Offices, Rye, NY, (1984-1985), Job No. 2338-B99 slides161Avon Products, Inc., Revised Master Plan, Rye, NY, (1983), Job No. 2338-E124 slides161Avon Products, Inc., Exterior Renovations to Existing Lobby, Rye, NY, (1984), Job No. 2338-H15 slides161BMW, Assembly Plant, Visitors Center, and Energy Center, Spartanburg, SC, Job No. 2514, 2524182 slides162BMW, Executive Offices, Spartanburg, SC, Job No. 2514-B67 slides162Bon Secours Hospital, Gift Shop Renovation, Grosse Pointe, MI, Job No. 275416 slides162Budd Company, Stamping Plant, Shelbyville, KY, Job No. 240641 slides162Cass Tech High School, Detroit Public Schools, Study and Addition, Detroit, MI, (1985), Job No. 2282 C177 slides163Chevrolet Motor Division, General Motors Corporation, Frame and Stamping Plant, Flint, MI, (1961-1962), Job No. 2093-E30 slides163Chevrolet Motor Division, General Motors Corporation, Dye Build Plant, Flint, MI, (1968), Job No. 1082-N72 slides163Chevrolet Motor Division, General Motors Corporation, Gear and Axle Plant, Detroit, MI, (1972-1977), Job No. 1336 R, S51 slides163Chevrolet-Saginaw Grey Iron Foundry Division, General Motors Corporation, Transmission Plant Office Building, Saginaw, MI, (1966), Job No. 1905-D22 slides163Chevrolet-Saginaw Grey Iron Foundry Division, General Motors Corporation, Office Building, Saginaw, MI, (1970-1978), Job No. 1430-AK54 slides163Chevrolet Motor Division, General Motors Corporation, Office Building Addition and Modernization, Tonawanda, NY, (1964-1966), Job No. 1756-J21 slides163Children's Hospital of Michigan, Detroit Medical Center, Detroit, MI, (1971), Job No. 215185 slides163Children's Hospital of Michigan, Detroit Medical Center, Parking Structure, Detroit, MI, Job No. 2151-A22 slides163Chrysler Canada, Ltd., Bramalea Assembly Plant, Brampton, Ontario, Job No. 236448 slides163Chrysler Canada, Ltd., Bramalea Assembly Plant, Brampton, Ontario, Job No. 2364130 slides164Chrysler Corporation, Chelsea Facility, Chelsea, MI, (1953), Job No. 2085-C30 slides164Chrysler Corporation, Jefferson North Assembly Plant, Detroit, MI, Job No. 2403-J186 slides164Chrysler Corporation, A604 Transmission Program, Kokomo, IN, (1985), Job No. 2111-Y12 slides164Chrysler Corporation, Indiana Transmission Plant, Kokomo, IN, Job No. 258414 slides164Chrysler Corporation, Auburn Hills, MI, Job No. 243755 slides164Chrysler Corporation, Newark, DE, Job No. 2067-AB10 slides164Chrysler Corporation, Assembly Plant, Sterling Heights, MI, (1985), Job No. 2360146 slides164Chrysler Corporation, T-115 Additions, Assembly Plant II, St. Louis, MO, Job No. 2193-H72 slides165Chrysler Corporation, Dodge City Complex Truck Assembly Plant, Warren, MI, Job No. 176685 slides165Colgate-Palmolive Company, Piscataway, NJ, Job No. 2268-D21 slides165Colgate-Palmolive Company, Piscataway, NJ, (1987), Job No. 2268-G59 slides165Colgate-Palmolive Company, "D" Wing Millwork (Laboratory Interiors), Piscataway, NJ, Job No. 2268-J19 slides165Collins and Aikman Corporation, Automotive Center, Troy, MI, Job No. 272424 slides165Comprehensive Health Services, Detroit, MI, Job No. 2478-D20 slides165Corps of Engineers, United States Army, Renovation of Tank Plant Arsenal, Warren, MI, (1980-1983), Job No. 2169-G13 slides165Cottage Hospital of Grosse Pointe, New ER/Lobby, Grosse Pointe Farms, MI, Job No. 2379-F33 slides165Cottage Hospital of Grosse Pointe, Second Floor Obstetrical Unit, Grosse Pointe Farms, MI, Job No. 2379-K12 slides165Cottage Hospital of Grosse Pointe, New Emergency Department Lobby, Grosse Pointe Farms, MI, Job No. 2379-L129 slides165Chevrolet-Pontiac-Canada Group, General Motors Corporation, Mansfield Metal Fabrication Plant, Mansfield, OH, Job No. 237626 slides165Chevrolet-Pontiac-Canada Group, General Motors Corporation, Parma Pressed Metal Plant, Parma, OH, Job No. 2011-R40 slides165Dearborn Country Club, Renovations, Dearborn, MI, Job No. 1129-K38 slides166Detroit City Airport, Air Terminal Building, Detroit, MI, (1966-1967), Job No. 218257 slides166Detroit DDA, Detroit Riverfront Promenade, Detroit, MI, (2002), Job No. 8052-A25 slides166Detroit, City of, Grand Circus Park Renovations, Detroit, MI, (1998), Job No. 800145 slides166Detroit, City of, First-Bagley Parking Structure, Detroit, MI, (1976-1977), Job No. 225625 slides166Detroit Diesel Allison Division, General Motors Corporation, Engineering Complex, First Phase, Romulus, MI, (1977-1979), Job No. 2297143 slides166Detroit Diesel Allison Division, General Motors Corporation, Engineering Complex, Second Phase, Romulus, MI, (1977-1979), Job No. 2297-A25 slides166Detroit News, Evening News Association, Newspaper Printing Facility, Lansing, MI, (1981), Job No. 231747 slides167Detroit Opera House, Design of Historic Renovations, Detroit, MI, Job No. 802224 slides167Detroit Public Schools, Heilmann Elementary, Detroit, MI, Job No. 280012 slides167Eli Lilly and Company, Indianapolis, IN, (1971-1976), Job No. 2240110 slides167Eli Lilly and Company, Master Plan, Phase I Dry Products Manufacturing, Indianapolis, IN, (1972), Job No. 2240-A15 slides167Eli Lilly and Company, Master Planning Studies, Indianapolis, IN, Job No. 2424235 slides167Eli Lilly and Company, Utilities Concourse, Indianapolis, IN, Job No. 2424-D16 slides167Eli Lilly and Company, LTC Administration Center, Indianapolis, IN, (1992), Job No. 2424-N31 slides167Eli Lilly and Company, Indianapolis, IN, Job No. 4267-PR27 slides168Ethyl Corporation, Research and Test Facilities, Richmond, VA, (1994), Job No. 2477325 slides168Ferris State University, Granger Center, Big Rapids, MI, Job No. 281098 slides168Fisher-New Center Company, Office Building Renderings, Interior, Detroit, MI, (1967-1970), Job No. 221429 slides168Fisher Building, Detroit, MI, Job No. 137823 slides168Ford Motor Company, Detroit, MI, Job No. 1092-Q13 slides168Ford, Edsel and Eleanor, Residence, Activities Center, Grosse Pointe Shores, MI, (1990), Job No. 1334-AB85 slides169Ford Motor Company, Ford Division, General Office Building, Dearborn, MI, (1955-1958), Job No. 211232 slides169Ford Motor Company, Batavia Transmission Plant Plans and Drawings, Batavia, OH, Job No. 230516 slides169Ford Motor Company, Batavia Transmission Plant, Boiler House and Central Refrigeration Plant, Batavia, OH, (1980), Job No. 2305-A18 slides169Ford Motor Company, R&E Center, AEC NVH Tech Center, Dearborn, MI, Job No. 2456-C99 slides169Ford Motor Company, Central Laboratory, Dearborn, MI, (1977-1979), Job No. 227932 slides170Ford Motor Company, Cleveland Engine Plant No. 2, Brook Park Village, OH, (1991), Job No. 2058-AD66 slides170Ford Motor Company, Design Center, Dearborn, MI, Job No. 242835 slides170Ford Motor Company, F-Wing Addition, Dynamometer Laboratory, Dearborn, MI, (1996), Job No. 2443-L63 slides170Ford Motor Company, Octane Roll and Heat Protection Wind Tunnels, Dearborn, MI, Job No. 2428-BB24 slides170Ford Motor Company, Product Development Offices, Dearborn, MI, (1999), Job No. 2428-BZ12 slides170Ford Motor Company, Rouge Plant, Dearborn, MI, (1924-1938), Job No. 84714 slides170Ford Motor Company, Metal Stamping Division, Southwest Addition, Hi Density Stacker Building, Hamburg, NY, (1971-1973), Job No. 2051-M12 slides170Ford Motor Company, Parking Study, Lima, OH, Job No. 2116-N9 slides170Ford Motor Company of Canada, Ltd., Assembly Plant, St. Thomas, Ontario, Canada, (1966-1968), Job No. 2195-A45 slides170Ford Motor Company, Twin Cities Assembly Plant, Ford Ranger Program Paint Facility, St. Paul, MN, (1983-1986), Job No. 1148-S16 slides170Ford Motor Company, Van Dyke Plant, Transmission and Chassis Division, Sterling Heights, MI, (1966-1978), Job No. 2201-A79 slides170Ford Motor Company, Paint Building Addition, Wixom, MI, (1988), Job No. 2411-A31 slides170Ford Motor Company, Stamping Plant, Woodhaven, MI, (1964-1967), Job No. 218723 slides170General Electric Company, Appliance Park East, Air Conditioning Building, Columbia, MD, (1969-1972), Job No. 2223-G49 slides171General Electric Company, Appliance Park East, Range Building No. 1, Columbia, MD, (1968-1972), Job No. 2223-B23 slides171General Electric Company, Appliance Park East, Warehouse, Columbia, MD, (1970-1972), Job No. 2223-C10 slides171General Electric Company, Applied Research and Design Center, Louisville, KY, (1968-1972), Job No. 2076-AZ55 slides171General Electric Company, Productivity Center Study, Southfield, MI, (1982), Job No. 2350-A10 slides171General Electric Company, Application Development Center Addition, Southfield, MI, Job No. 2350-F232 slides171General Motors Acceptance Corporation (GMAC), Glendale, Ontario, Canada, (1994), Job No. 252515 slides171General Motors Acceptance Corporation (GMAC), Field Services Office, Little Rock, AR, (1997), Job No. 2525-AQ14 slides171General Motors Acceptance Corporation (GMAC), Troy Salvage Center, Troy, MI, Job No. 2525-CB15 slides171General Motors Acceptance Corporation (GMAC), Atlanta Regional Office, Atlanta, GA, (1997), Job No. 2605-C11 slides171General Motors Corporation, Climatic Wind Tunnels, Warren, MI, (2000), Job No. 2552-F28 slides171General Motors Corporation, Wing 4A, General Motors Building/Cadillac Place, Detroit, MI, (1996), Job No. 258690 slides171General Motors Acceptance Corporation (GMAC), Educational Services Facility, Southfield, MI, (1996), Job No. 2601-A12 slides172Great Lakes World Trade Center, Detroit, MI, Job No. 2397-A18 slides172Henry Ford Hospital, "I" Ground Floor Dialysis Unit, Detroit, MI, Job No. 2119-AM18 slides172Henry Ford Hospital, Center for Athletic Medicine, Detroit, MI, Job No. 2119-AS14 slides172Henry Ford Hospital, New Grand Boulevard Entrance, Detroit, MI, (1989), Job No. 2119-AV118 slides172Henry Ford Hospital, 6th Floor Critical Care Unit, Eleanor Clay Ford Pavilion, Detroit, MI, Job No. 2119-BJ17 slides172Henry Ford Hospital, Elevator Expansion, Detroit, MI, (1971-1973), Job No. 2119-T12 slides172Henry Ford Hospital, Master Plan, Hospital Complex, Detroit, MI, (1973), Job No. 225724 slides172Henry Ford Hospital, Student Housing Facility and Apartments, Detroit, MI, (1974-1978), Job No. 2257-A79 slides172Henry Ford Hospital, Physical Facilities Offices, Detroit, MI, (1945-1985), Job No. 2119-J10 slides173Henry Ford Hospital, General Services Building and Parking Structure, Detroit, MI, (1967-1972), Job No. 2119-P43 slides173Henry Ford Hospital, West Bloomfield Center, Maplegrove, West Bloomfield Township, MI, (1978-1981), Job No. 230866 slides173Henry Ford Hospital, West Bloomfield Center, Maplegrove, West Bloomfield Township, MI, (1978), Job No. 2308-A15 slides173Henry Ford Hospital, West Bloomfield Center, Maplegrove, Outpatient Adolescent Chemical Dependency Program, West Bloomfield Township, MI, (1984-1985), Job No. 2308-B45 slides173Henry Ford Health Care Corporation, Ambulatory Care Center, Sterling Heights, MI, Job No. 2327-B71 slides173Henry Ford Hospital, West Bloomfield Center, Maplegrove, Ambulatory Surgery and Emergency Room Expansion, Edsel B. Ford Center, West Bloomfield Township, MI, (1987), Job No. 2357-B32 slides173Herman Miller, Bloomfield Hills Customer Center, Birmingham, MI, (1998), Job No. 264031 slides173Houston Chronicle, Printing Plant, Houston, TX, (1965-1971), Job No. 218922 slides173Ja Da Restaurant, Barbeque Grill, Detroit, MI, Job No. 804150 slides173Kellogg Company, Building 100 Manufacturing Facilities, Battle Creek, MI, Job No. 1617-L25 slides173Lansing General Hospital, Expansion Program, Lansing, MI, (1981), Job No. 2248-B24 slides173Linden Products Company, Manufacturing Plant, Linden, TN, Job No. 232827 slides173Mack Truck, Inc., Truck Assembly Building, Winnsboro, SC, (1987), Job No. 2375-A136 slides173Mahle, Inc., Technical Center, Farmington Hills, MI, (1999), Job No. 2645-B67 slides173Max Factor and Company, Production and Distribution Facility, Oxford, NC, (1980-1981), Job No. 2334161 slides173Mercedes-Benz, SUV Manufacturing Plant, M Class Assembly Plant, Administration Offices, Tuscaloosa, AL, (1996), Job No. 2532128 slides173Mercedes-Benz, U.S. International, Child Care and Wellness Center, Tuscaloosa, AL, (2002), Job No. 2532-J44 slides173Mercedes-Benz, Program Management A/E Services, Juiz de Fora, Brazil, (1998), Job Nos. 2618, 2624145 slides173Mesaba Northwest Airlink, Hangar Facility, Metropolitan Wayne County Airport, Romulus, MI, Job No. 245417 slides174Michigan Automotive Compressor, Nippondenso Compressor Plant, Jackson, MI, (1990), Job No. 243472 slides174Michigan, State of, House of Representatives, Computer System Network, Lansing, MI, (2000), Job No. 271250 slides174Michigan Opera Theater, Detroit Opera House, Detroit, MI, Job No. 802294 slides174Michigan State University, Natural Resources Building, East Lansing, MI, (1963-1967), Job No. 216622 slides174Michigan State University, Food Science Building, East Lansing, MI, (1963-1982), Job No. 217410 slides174Michigan State University, Engineering Building Addition, East Lansing, MI, Job No. 2294-B147 slides174Michigan State University, Dow Connector Building, East Lansing, MI, (1999), Job No. 2294-D31 slides174Michigan, State of, GM Building Renovation, Detroit, MI, (2002), Job No. 902-AR24 slides174Michigan, State of, Michigan Hall of Justice, Lansing, MI, (2002), Job No. 269071 slides174NBD Bank, Suburban Office Complex, Master Planning Phase, Farmington Hills, MI, Job No. 2524-A69 slides174National Bank of Detroit, Detroit, MI, (1957-1959), Job No. 2114164 slides174National Bank of Detroit, Staff Floor Renovation, Detroit, MI, (1995), Job No. 2114-AW23 slides174National Bank of Detroit, Remodeling of Uptown Office, General Motors Building, Detroit, MI, (1971-1978), Job No. 221625 slides174New Center Area Planning Project, Plans, Detroit, MI, Job No. 221521 slides174"Denso" Nippondenso Manufacturing USA, Inc., Manufacturing Facility, Battle Creek, MI, (1986), Job No. 237863 slides174"Denso" Nippondenso Manufacturing Canada, Manufacturing Facility, Guelph, Ontario, Canada, (1997), Job No. 242273 slides174"Denso" Nippondenso Manufacturing USA, Inc., Maryville, TN, (1989), Job No. 243527 slides174Nissan Motor Manufacturing Corporation, Truck Assembly and Stamping Plant, Smyrna, TN, (1982-1984), Job No. 2343131 slides174Nissan Motor Manufacturing Corporation, Truck Assembly and Stamping Plant, Administration Building, Smyrna, TN, (1984-1985), Job No. 2343-H116 slides175Oakland University, Elliot Hall of Business and Information Technology, Rochester, MI, Job No. 265042 slides175Parke Davis and Company, Clinical Data Handling Addition, Ann Arbor, MI, (1987), Job No. 239338 slides175Poudre Valley Health System, Harmony Campus ACC/MOB Complex, Fort Collins, CO, Job Nos. 265096 slides175Pratt and Whitney Division, United Aircraft Corporation, Engine Development Laboratory, East Hartford, CT, (1946-1958), Job No. 1509-DO14 slides175Providence Medical Center, Medical Office Building Expansion, Novi, MI, Job No. 2466-A160 slides175Providence Medical Center, Assarian Cancer Center, Novi, MI, (1999), Job No. 2466-L262 slides175Providence Medical Center, Medical Office Building Expansion, Novi, MI, Job No. 2466-M24 slides175Rehabilitation Institute of Metropolitan Detroit, Detroit, MI, (1956-1958), Job No. 2113-Q68 slides176Republic Airlines, Inc., Minneapolis-St. Paul Metropolitan Airports Commission, Hangar Addition, Administration Building Addition, Minneapolis, MN, (1980-1981), Job No. 2336 A19 slides176Sikorsky Aircraft Division, United Technologies Corporation, Finishes Building, Stratford, CT, (1983), Job No. 2095-AC72 slides176Sikorsky Aircraft Division, United Technologies Corporation, Engineering Building, Stratford, CT, (1982-1985), Job No. 2095-Z56 slides176Sinai Hospital, Medical Library, Detroit, MI, (1962-1966), Job No. 1985-O22 slides176Sinai Hospital, Auditorium and Conference Center, Detroit, MI, (1965-1969), Job No. 1985-Q16 slides176Sinai Hospital, Perinatal Center, Detroit, MI, (1978-1983), Job No. 1985-BG105 slides176Sparrow Hospital System, Professional Building, Site Plans, Lansing, MI, Job No. 2529-D74 slides176Sparrow Health System, Neumann Wing Addition, Lansing, MI, Job No. 2529-W16 slides176Sparrow Hospital System, Master Site Model, Lansing, MI, Job No. 482838 slides176St. John Health, Romeo Plank Center, Macomb Township, MI, (1998), Job No. 2587-A16 slides176St. Joseph Hospital of Mount Clemens, Inc., Southwest Building Addition, Sterling Heights, MI, (1935 1988), Job No. 2327-C20 slides176Saint Mary's Hospital, Expansion Project, Livonia, MI, (1999), Job No. 2536-B28 slides176Suomi College, Master Plan, Hancock, MI, (1990), Job No. 2448176Talon Development Group, Tower Automotive, Novi, MI, Job No. 273112 slides177Toyota Technical Services, Toyota Technical Center Office Building Expansion, Ann Arbor, MI, (1999), Job No. 263544 slides177Trinity Regional Health System, Trinity at Terrace Park Replacement Hospital, Bettendorf, IA, Job No. 2747-A66 slides177Trinity Medical Center, Hammes Company, Moline, IL, Job No. 2542153 slides177United Airlines, O'Hare International Airport, Major Maintenance Hangar, Chicago, IL, (1967-1969), Job No. 220423 slides177UAW-Chrysler, National Training Center, Detroit, MI, Job No. 245967 slides177United States Coast Guard, Ninth Coast Guard District, Hangar Building, Traverse City, MI, (1978-1981), Job No. 230634 slides177University of Michigan, Hill Auditorium, Ann Arbor, MI, Job No. 494-E34 slides177University of Michigan, Hill Auditorium, Theater Restoration, Ann Arbor, MI, Job No. 494-H86 slides177University of Michigan, Harlan Hatcher Library, Ann Arbor, MI, (1964-1978), Job No. 663-D, 217255 slides177University of Michigan, Media Union (Pierpont Commons), Ann Arbor, MI, Job No. 2415117 slides177University of Michigan, School of Public Health, Ann Arbor, MI, (1966-1972), Job No. 219740 slides178University of Michigan, Undergraduate Library, Ann Arbor, MI, Job No. 2115 C82 slides178University of Michigan, Physics and Astronomy Building (David M. Dennison Building/Weiser Hall), Ann Arbor, MI, (1963-1978), Job No. 214424 slides178University of Michigan, Health System, East Ann Arbor Health Center, Ann Arbor, MI, Job No. 255499 slides178University of Michigan, Mott Renewal Project, Ann Arbor, MI, Job No. 850-CJ308 slides178University of Michigan, Replacement Hospital Project, Artwork/Renderings for Development Brochure, Ann Arbor, MI, (1983), Job No. 2356-B149 slides178University of Michigan, Replacement Hospital Project, Floor Plans, Drawings, Ann Arbor, MI, (1980-1981), Job No. 850-T272 slides178University of Michigan, Replacement Hospital Project, Floor Plans, Drawings, Ann Arbor, MI, (1980-1981), Job No. 850-T172 slides179University of Michigan, C.S. Mott Children's Hospital, Ann Arbor, MI, (1969-1978), Job No. 850-M36 slides179University of Michigan, Hospital, Ann Arbor, MI, Job No. 850-TD506 slides179Washington Post, Newspaper Plant Alterations and Additions, Washington, D.C., (1969-1973), Job No. 2118-B65 slides179Washtenaw Community College, Gunder Myran Building, Ann Arbor Township, MI, Job No. 265228 slides179Wayne County Community College, Administration Building, Detroit, MI, (1978-1981), Job No. 2298106 slides179Wayne County Michigan, Replacement Parking Structure Renderings, Detroit Metro Airport, Romulus, MI, Job No. 2419-E100 slides179Wayne State University, Undergraduate Library Competition, Detroit, MI, (1987), Job No. 240577 slides179Whirlpool Corporation, Renovations to Washington School, St. Joseph, MI, (1986), Job No. 2389150 slides179William Beaumont Hospital, Emergency Room Modifications, Royal Oak, MI, (1998), Job No. 2497-G66 slides180WJR/WHYT Capital Cities, ABC, Inc., Phase II Services, Fisher Building, Detroit, MI, (1987), Job No. 2383-A38 slides180Wyandotte General Hospital, Long Range Planning Study, Wyandotte, MI, (1982), Job No. 2153-F-936 slides180Wyandotte General Hospital, Replacement General Hospital, Wyandotte, MI, (1968-1978), Job No. 2153-D47 slides180
    Albums Containing Furniture, Fabric, Ironwork, and Terra Cotta Samples1913-1926

    The Albums Containing Furniture, Fabrics, Ironwork and Terra Cotta Samples series consists of 22 scrapbooks that contain photographs and drawings of decorative arts pieces used by Kahn in the designs of both the interiors and exteriors of a number of his projects, built between 1913 and 1926. Researchers interested in Kahn's selection of furniture, fabrics and decorative architectural elements for such buildings as the Detroit Athletic Club, the University of Michigan Natural Science Building and Hill Auditorium, the Standard Club of Chicago, the Evening News Building, King's Theatre and Detroit Trust Company, among others, will find these albums of great interest. Many of them were prepared by W. & J. Sloane, the renowned interior design firm and furniture and rug store in New York, which serviced prominent clients across the country during its 94-year history (1891-1985).

    Country Club of Detroit, Grosse Pointe, MI (1923) Job No. 1049Furniture and Fabrics by W. & J. Sloane, New York16

    (catalogue photographs, prints of furniture drawings and floor plan layouts, fabric swatches, and copies of furniture estimate and order, 4/25/1923 & 5/7/1923)

    Detroit Athletic Club (1914) Job No. 593Furniture and Fabrics by W. & J. Sloane, New York (Book I)prints of furniture drawings, fabric swatches, and letter from Sloane to Kahn, 11/19/19142Furniture and Fabrics by W. & J. Sloane, New York (Book II)catalogue photographs, prints of furniture drawings, and fabric swatches1Furniture and Fabrics by W. & J. Sloane, New York (Book III)prints of furniture drawings and fabric swatches3Samples of Miscellaneous Chairs and Tables by W. & J. Sloane, New Yorkthree original renderings and six catalogue photographs4Detroit Golf Club (1917) Job No. 740Furniture (Book I)catalogue photographs and prints of furniture drawings12Furniture (Book II)catalogue photographs and prints of furniture drawings13Detroit Trust Company (1914-1915) Job No. 637Furniture and Draperies by W. & J. Sloane, New York (Book I)catalogue photographs, blueprints of furniture drawings, and fabric swatches10Furniture and Draperies by W. & J. Sloane, New York (Book II)catalogue photographs, blueprints of furniture drawings, and fabric swatches11"Greater Detroit" and "Greater Buffalo" Steamships, Detroit & Cleveland Navigation Co. (1925)Memorandum of Furniture for Two Steamers by W. & J. Sloane, New Yorkblueprints of furniture drawings by Schmieg, Reichman, Thonet and Palmer & Embury and fabric swatches17Evening News (Detroit News) Building (1915-1916) Job No. 641Furniture and Leathercatalogue photographs, blueprints of furniture drawings, and leather swatches14Furniturecatalogue photographs and blueprints of furniture drawings20Franklin Hills Country Club, Franklin, MI (1926) Job No. 1374Furniture by W. & J. Sloane, New Yorkcatalogue photographs and blueprints of furniture drawings19Miscellaneous BuildingsTerra Cotta Samples by Atlanta Terra-Cotta Co. and Ornamental Iron Samples, indexed for Detroit Athletic Club, Horace Dodge Residence, King's (National) Theatre, Trussed Concrete Co. Building, Kahn Stores, Hill Auditorium, University of Michigan Library, University of Michigan Natural Science Building, Kresge Building, etc.catalogue photographs with pencil and ink notations8Terra Cotta Samples for Ford Hospital Nurses Home, Kalamazoo Gazette, Ford Engineering Laboratory, Ford Memphis and Charlotte, Ford Jacksonville, David Brown Mausoleum, Ford St. Paul, Smith Building, Ford Twin Cities Plant, University of Michigan Medical Building, University of Michigan Literary Building, University of Michigan Hospital, Hudson Motor Company, Packard Motor Car Company, Flint Journal, General Motors, Passaic Bank, Police Headquarters, First National Bank, Detroit Institute of Arts, D & C Boat, and Various Other Statuescatalogue photographs with pencil and ink notations21Terra Cotta and Ironwork Samples for Hill Memorial Auditorium, La Azora Building, King's Theatre, Kahn Stores, Louisville Theatre, Kresge Building, Siegel Building, Dodge Residence, Detroit Athletic Club, and University of Michigan Science Buildingcatalogue photographs with pencil and ink notations22National Bank of Commerce, Detroit (1916) Job No. 725Furniture and Draperies by W. & J. Sloane, New Yorkprints of furniture and fabric swatches15Packard Motor Car Company, DetroitFurniture for Directors' Roomcatalogue photographs of antique pieces, five original drawings and blueprints of furniture, and two original renderings by W. & J. Sloane, New York9Psi Upsilon House, University of Michigan, Ann Arbor (1924-1925) Job No. 1200Furniture and Fabric Samples by Kathleen Calkins, Decorator, J. L. Hudson Co.original plans of furniture layouts, catalogue photographs, fabric swatches, and two original pencil drawings of furniture details18Standard Club, Chicago (1923) Job No. 1174Furniture and Fabrics by W. & J. Sloane, New York (Book I)catalogue photographs, blueprints of furniture drawings and drapery treatments, and fabric swatches5Furniture and Fabrics (Book II) by W. & J. Sloane, New York (Book II)catalogue photographs, blueprints of furniture drawings, and fabric swatches6Furniture by Mandel Brothers, Chicago20 prints (of renderings or furniture)7
    Books Owned by Albert Kahn

    The Books Owned by Albert Kahn series consists of a library of 131 books, many of which were autographed and dated by the architect when Albert Kahn purchased them in the early 20th century. These volumes, published between 1825 and 1944, cover a number of subjects of interest to Kahn, including European and American art, architecture and gardens, and library, school, greenhouse, ironwork, and hospital design. The large-format books about architecture and gardens contain hundreds of plates of images, which may have been of inspiration to Kahn in the design of his residential, commercial, and institutional buildings. While the majority of the books are written in English, some are also written in French, German, Italian, and Hungarian.

    A Monograph of the Work of McKim Mead & White, 1879-1915 Vol. 1. New York: The Architectural Book Publishing Co., Paul Wenzel & Maurice Krakow 1915 1 A Monograph of the Work of McKim Mead & White, 1879-1915 Vol. 2. New York: The Architectural Book Publishing Co., Paul Wenzel & Maurice Krakow 1915 2 A Monograph of the Work of McKim Mead & White, 1879-1915 Vol. 3. New York: The Architectural Book Publishing Co., Paul Wenzel & Maurice Krakow undated 3

    (autographed by Albert Kahn)

    A Monograph of the Work of McKim Mead & White, 1879-1915 Vol. 4. New York: The Architectural Book Publishing Co., Paul Wenzel & Maurice Krakow undated 4

    (autographed by Albert Kahn)

    American Greenhouses. Chicago: American Greenhouse Manufacturing Co. undated 36

    (title page missing)

    American Greenhouses. Chicago: American Greenhouse Manufacturing Co. 1928 37 Architectural Association Sketch Book: France, Belgium, Spain, etc. 1909-1912 5

    (autographed by Albert Kahn)

    Arnott, James A. & Wilson, John. The Petit Trianon Versailles. New York: Charles Scribner's Sons 190812

    (autographed by Albert Kahn)

    Audsley, G.A. & Bowes, J.L. La Ceramique Japonaise. Paris: Librairie de Firmin-Didot et Cie 188178Aumonier, W., ed. Modern Architectural Sculpture. London: The Architectural Press and New York: Charles Scribner's Sons 193026

    (autographed by Albert Kahn, 7/16/1930)

    Aus der Kunst-Schmiede -- Eisen Sammlung des Architekten Friedr. Halselmann in Munchen. Munich: Verlag von Joseph Albert 1881 40

    (autographed by Albert Kahn, 9/1929)

    Azema, Leon. Documents d'Architecture Contemporaine, 1st Series. Paris: A. Vincent et Cie 192746

    (autographed by Albert Kahn, 2/18/1929)

    Beauclair, R. & Gradl, M. I. Documents Architecture-Moderne, 3rd Annee. Paris: H. Laurens Editeur undated49

    (autographed by Albert Kahn)

    Benedictus. Nouvelles Variations: Soixante-Quinze Motifs Decoratifs en Vingt Planches. Paris: Aux Editions Albert Levy, Librairie Centrale des Beaux-Arts undated108Blossfeldt, Karl. Urformen der Kunst. Berlin: Zweite Auflage 192984Boito, Camillo. La Basilica Di San Marco, Parte Prima. Venezia undated94Boito, Camillo. La Basilica Di San Marco, Parte Seconda. Venezia undated93 Book Stack and Shelving for Libraries by Bernard R. Green, C. E. Jersey City, N. J.: The Snead and Company Iron Works 1908 53Bossert, Helmuth Theodor. Geschichte des Kunstgewerbes: Aller Zeiten und Volker, Band I. Berlin: Ernst Wasmuth A.G. 192877Bossert, Helmuth Theodor. Geschichte des Kunstgewerbes: Aller Zeiten und Volker, Band II. Berlin: Ernst Wasmuth A.G. 1929112Bossert, Helmuth Theodor. Geschichte des Kunstgewerbes: Aller Zeiten und Volker, Band III. Berlin: Ernst Wasmuth A.G. 1930111Bossert, Helmuth Theodor. Geschichte des Kunstgewerbes: Aller Zeiten und Volker, Band IV. Berlin: Ernst Wasmuth A.G. 193076Bossert, Helmuth Theodor. Geschichte des Kunstgewerbes: Aller Zeiten und Volker, Band V. Berlin: Ernst Wasmuth A.G. 193275Byne, Arthur & Stapley, Mildred. Rejeria of the Spanish Renaissance. New York: The Hispanic Society of America 191424

    (autographed by Albert Kahn, 5/15/1915)

    Calavas, A., ed. Le Petit Trianon: Architecture, Decoration -- Ameublement. Paris: Librairie des Arts Decoratifs undated10

    (autographed by Albert Kahn, July 12)

    Cantacuzene, G. M., compiler. Petits Edifices: Roumanie, 7th Serie . Paris: Vincent, Freal et Cie, Editeurs 193158

    (autographed by Albert Kahn, 12/30/1936)

    Cary, A. Cent Portes Cocheres. Paris: A. Cary 190450

    (autographed by Albert Kahn)

    Colasanti, Arduino. L'Arte Bisantina in Italia. Milan: Bestetti & Tumminelli, Editori d'Arte 19128

    (autographed by Albert Kahn)

    Compositions et Dessins de Viollet-Le-Duc. Paris: Librairie Centrale D'Architecture 1884 121Conklin, Edward F. The Lincoln Memorial, Washington. Washington, D.C.: United States Government Printing Office 192764

    (autographed by Albert Kahn)

    Creeny, Rev. W.F. A Book of Facsimiles of Monumental Brasses on the Continent of Europe. London: W. Griggs, Norwich: Agas H. Goose and Co. 1884110

    (Autographed by Albert Kahn.)

    Cunningham, Harry Francis, and Younger, Joseph Arthur. Measured Drawings of Georgian Architecture in the District of Columbia, 1750-1820. New York: Architectural Book Publishing Co., Paul Wenzel and Maurice Krakow 191420

    (autographed by Albert Kahn, 2/27/1925)

    Cyclopedia of Architecture, Carpentry and Building: Carpentry, Stair Building, Estimating, Steel Square, Vol. 2. Chicago: American Technical Society 1908 68 Cyclopedia of Architecture, Carpentry and Building: Plastering, Painting, Sheet Metal, Vol. 9. Chicago: American Technical Society 1908 69Daly, Cesar. Motifs Historiques D'Architecture et de Sculpture D'Ornement: Decorations Interieures, Volume I. Paris: Librairie Generale de L'Architecture et des Arts Decoratifs 1912122Daly, Cesar. Motifs Historiques D'Architecture et de Sculpture D'Ornement: Decorations Interieures, Volume II. Paris: Librairie Generale de L'Architecture et des Arts Decoratifs 1912123Daly, M. Cesar. Motifs Historiques D'Architecture et de Sculpture D'Ornement, Volume I. Paris: Se Vend Chez A, Morel, Libraire-Editeur 186998Daly, M. Cesar. Motifs Historiques D'Architecture et de Sculpture D'Ornement, Volume II. Paris: Se Vend Chez A, Morel, Libraire-Editeur 186997Darcel, M.A. Recueil de Faiences Italiennes des XV, XVI, et XVII Siecles. Paris: Quai Voltaire 1869109 The Decorative Work of Robert and James Adam. London: F. Mildner and Company undated 107

    (Autographed by Albert Kahn.)

    DeMotte, G.J. La Tapisserie Gothique. Paris: 27 Rue de Berri 1924102 Deuxieme Serie de L'Ornement Polychrome. Paris: Chromolithographie et Typographie de Firmin-Didot et Cie, rue Jacob, 56 undated 96Donovan, John J. et al. School Architecture: Principles and Practices. New York: The MacMillan Company 192157

    (inscribed by John J. Donovan: "It's a real joy to find you so human. St. Patrick's Day, 1924")

    Doury, MM. Decloux et. Histoire: Archeologique, Descriptive et Graphique de La Sainte-Chapelle du Palais. Paris: A. Morel, Libraire-Editeur 1865100Dufrene, Maurice. Ensembles Mobiliers: Exposition Internationale de 1937 Vol. 2. Paris: Editions d'Art Charles Moreau 193751

    (autographed by Albert Kahn, 9/25/1937)

    Errard, Charles and Gayet, Al. L'Art Byzantin D'Apres Les Monuments de l'Italie, de l'Istrie et de la Dalmatie, Tome I. Paris: Societe Francaise D'Editions D'Art undated128Errard, Charles and Gayet, Al. L'Art Byzantin D'Apres Les Monuments de l'Italie, de l'Istrie et de la Dalmatie, Tome II. Paris: Societe Francaise D'Editions D'Art undated129Errard, Charles and Gayet, Al. L'Art Byzantin D'Apres Les Monuments de l'Italie, de l'Istrie et de la Dalmatie, Tome III. Paris: Emile Gaillard, Libraire-Editeur undated130Errard, Charles and Gayet, Al. L'Art Byzantin D'Apres Les Monuments de l'Italie, de l'Istrie et de la Dalmatie, Tome IV. Paris: Emile Gaillard, Libraire-Editeur undated131Faure, Elie. Histoire de l'Art: l'Art Medieval. Paris: Les Editions G. Cres and Cie 192174Filow, Bogdan D. Die Altbulgarische Kunst. Bern: Buhler and Werder 191983Franke-Berlin, Diedrich. Schmiedeeiserne Gitter. Stuttgart: Julius Hoffman Verlag undated44

    (autographed by Albert Kahn, 4/15/1926)

    French Exteriors 60

    (title page missing, autographed by Albert Kahn)

    Fuhrmann, Ernst. Der Grabbau. Munchen: Georg Muller 192380Furtwangler, Adolf. Masterpieces of Greek Sculpture: A Series of Essays on the History of Art, Volume I. London: Richard Clay and Sons undated86Furtwangler, Adolf. Masterpieces of Greek Sculpture: A Series of Essays on the History of Art, Volume II. London: Richard Clay and Sons undated85Garcelon, A. Inspirations: 80 Motifs en Couleur. Paris: Librairie Generale de L'Architecture et des Arts Decoratifs undated99 Gardens Old & New: The Country House & Its Garden Environment. London: The Offices of "Country Life Illustrated" and George Newnes, Limited undated 30

    (autographed by Albert Kahn, 5/25/1901)

    Gardens Old & New: The Country House & Its Garden Environment, Vol. 2. John Leyland, ed. London: Offices of Country Life and George Newnes, Limited, and New York: Charles Scribner's Sons undated 31

    (autographed by Albert Kahn, 4/9/1923)

    Gardens Old & New: The Country House & Its Garden Environment, Vol. 3. H. Avray Tipping, ed. London: Offices of Country Life and George Newnes, Limited, and New York: Charles Scribner's Sons undated 32

    (autographed by Albert Kahn, 2/25/1923)

    Gelis-Didot, P. La Peinture Decorative en France du XVI au XVIII Siecle. Paris: Librairie Generale de L'Architecture et des Arts Decoratifs undated124Gelis-Didot, P. et Laffillee, H. La Peinture Decorative en France du XI au XVI Siecle, Deuxieme Edition. Paris: Librairies-Imprimeries Reunies undated125

    (Autographed by Albert Kahn.)

    Godard, Octave. Jardins de la Cote d'Azur. Paris: Ch. Massin et Cie, Editeurs 192711

    (autographed by Albert Kahn, 8/10/1927)

    Gromort, Georges. Jardins d'Espagne, Vol I. Paris: A. Vincent et Cie 192616

    (autographed by Albert Kahn)

    Gromort, Georges. Jardins d'Espagne, Vol. II. Paris: A. Vincent et Cie 192617

    (autographed by Albert Kahn)

    Gromort, Georges. Jardins d'Italie. Paris: A. Vincent, Editeur 192218Gromort, Georges. Jardins d'Italie, Vol. III. Paris: Vincent, Freal et Cie 193119

    (autographed by Albert Kahn, 10/19/1931)

    Gruner, Lewis. Fresco Decorations: Stuccoes of Churches and Palaces in Italy During the Fifteenth and Sixteenth Centuries. London: John Murray, Hering and Remington 1848103Hadley, Chalmers. Library Buildings: Notes and Plans. Chicago: American Library Association 192466

    (autographed by Albert Kahn, 8/25/1924)

    Hall, S.C. The Baronial Halls: Picturesque Edifices and Ancient Churches of England, Volume I. London: Chapman and Hall 184590Hall, S.C. The Baronial Halls: Picturesque Edifices and Ancient Churches of England, Volume II. London: Chapman and Hall 184889Hall, S.C. The Baronial Halls: Picturesque Edifices and Ancient Churches of England, Volume III. London: Chapman and Hall 184788Hamlin, A. D. F. & Snyder, C. B. J., et al. Modern School Houses. New York: The Swetland Publishing Co. 191054

    (autographed by Albert Kahn, 1911)

    Hannover, Kunstverein. Schone Plastik. Munchen: Klischees und Druck von F. Bruckmann AG. 193181Harris, Kip Badeslade. English Houses and Gardens in the 17th and 18th Centuries: A Series of Bird's-Eye Views. New York: B.T. Batsford, Chas. Scribner's Sons 1908114

    (Autographed by Albert Kahn.)

    Harrison, W. K. & Dobbin, C. E. School Buildings of Today and Tomorrow. New York: Architectural Book Publishing Company, Inc. 193152

    (autographed by Albert Kahn, 2/19/1931)

    Hautecoeur, Louis. Sculpture Decorative: Exposition Internationale de 1937. Paris: Editions d'Art Charles Moreau 193742

    (autographed by Albert Kahn, 11/24/1937)

    Hegemann, Werner. Amerikanische Architektur & Stadtbaukunst. Berlin: Ernst Wasmuth, A.-G. 192738

    (autographed by Albert Kahn, 11/15/1929)

    Hegemann, Werner. City Planning, Housing, Vol. 3: A Graphic Review of Civic Art, 1922-1937. New York: Architectural Book Publishing Company, Inc. 193834

    (autographed by Albert Kahn, 6/15/1938)

    Henri, Ernst, ed. Decoration Egyptienne. Paris: 18, Rue du Mont-Cenis undated92 Histoire de L'Ornement Russe du X au XVI Siecle. Paris 1872 126Holme, Charles, compiler. Les Jardins d'Angleterre dans les Comtes du Nord. Paris: Bureau du "Studio" a Paris 191165

    (autographed by Albert Kahn, 2/3/1922)

    Junghandel, Max and Gurlitt, Cornelius. Die Baukunst Spaniens, Vol. I. Dresden: Gilbers'sche Konigl. Hof-Verlagsbuchhandlung undated6

    (autographed by Albert Kahn, 7/19/1928)

    Junghandel, Max and Gurlitt, Cornelius. Die Baukunst Spaniens, Vol. II. Dresden: Gilbers'sche Konigl. Hof-Verlagsbuchhandlung undated7

    (autographed by Albert Kahn, 7/19/1928)

    Klauder, Charles Z. & Wise, Herbert C. College Architecture in America and Its Part in the Development of the Campus. New York: Charles Scribner's Sons 192973

    (autographed by Albert Kahn, 6/10/1929)

    Kotet, Masodik. A Magyar Nep Muveszete, II. Budapest: Franklin-Tarsulat 1909113Kotet, Masodik. A Magyar Nep Muveszete, V. Budapest: Franklin-Tarsulat 192279Lafollye, A. Le Chateau de Pau: Histoire et Description. Paris: Ve A. Morel and Cie, Libraires-Editeurs 188291 L'Architecte: Revue Mensuelle de L'Art Architectural Ancien et Moderne 6th Annee. Paris: Librairie Centrale des Beaux-Arts 1911 28

    (autographed by Albert Kahn)

    Lloyd, Nathaniel . Building Craftsmanship in Brick and Tile and in Stone Slates. Cambridge: The University Press 192961

    (autographed by Albert Kahn, 7/22/1929)

    Luthgen, Eugen. Romanische Plastik in Deutschland. Leipzig: Druck Von F.A. Brockhaus 192382Magonigle, H. Van Buren. The Nature, Practice and History of Art. New York: Charles Scribner's Sons 192470

    (autographed by Albert Kahn, 1924)

    Martinie, A. H. La Ferronnerie, 2nd Serie. Paris: Editions Albert Levy -- Librarie Centrale des Beaux-Arts undated45Mawson, Thomas H. Civic Art: Studies in Town Planning, Parks, Boulevards and Open Spaces. London: B. T. Batsford and New York: Chas. Scribner's Sons 191127

    (autographed by Albert Kahn, 10/1911)

    Meheut, Mathurin. La Plante Exotique. Paris: Ch. Massin et Cie 193133

    (inscribed by Mathurin Meheut: "A Monsieur et Madame Albert Kahn de Detroit, Hommage reconnaissant. Paris, Mai 31")

    Millar, Donald. Measured Drawings of Some Colonial and Georgian Houses, Vol. 3. New York: Architectural Book Publishing Co., Inc. 193021

    (autographed by Albert Kahn, 9/29/30)

    Modern School Houses, Part II. New York: The American Architect 1915 55

    (autographed by Albert Kahn)

    Moretti, Bruno. Ospedali. Milan: Ulrico Hoepli Editore 193563

    (autographed by Albert Kahn, 12/1/1936)

    Mujica, Francisco. History of the Skyscraper. Paris: Archaeology & Architecture Press 19299

    (autographed by Albert Kahn, 5/25/1931)

    Nash, Joseph. The Mansions of England in The Olden Time, Volume I. London: Henry Sotheran and Company 186995Niccolini, Antonio. Arte Pompeiana: Monvmenti Scelti. Napoli 1888106 The Passports: Printed by Benjamin Franklin at His Passy Press. Ann Arbor: The William L. Clements Library 1925 56

    (inscribed by William L. Clements: "To my much esteemed friend Mr. Albert Kahn, who was an inspiration in the building of the William L. Clements Library, 3/23/1926")

    Pean, P. Jardins de France, Vol. I. Paris: A. Vincent, Editeur 192513Pean, P. Jardins de France, Vol. II. Paris: A. Vincent, Editeur 192514

    (autographed by Albert Kahn, 1/25/1926)

    Phillipps, E. March. The Gardens of Italy. Bolton, Arthur T., ed., London: Offices of Country Life, Ltd., and George Newnes, Ltd., and New York: Charles Scribner's Sons 191939

    (autographed by Albert Kahn, 10/1920)

    Poulin, Roger, compiler. Hospitaux, Sanatoria. Paris: Vincent Freal et Cie undated62

    (autographed by Albert Kahn, 9/29/1930)

    Poulin, Roger, compiler. Villas Modernes. Paris: Vincent Freal et Cie undated59

    (autographed by Albert Kahn, 12/4/1930)

    Prentice, Andrew N. Renaissance Architecture and Ornament in Spain: A Series of Examples Selected from the Purest Works Executed between the Years 1500-1560. London: B. T. Batsford 189315

    (autographed by Albert Kahn)

    Richardson, A.E. Monumental Classic Architecture in Great Britain and Ireland During the Eighteenth and Nineteenth Centuries. London: B.T. Batsford, Ltd. 94, High Holborn undated115Riviere, Henri. La Ceramique dans L'Art D'Extreme-Orient, Tome I. Paris: Librairie Centrale des Beaux-Arts 1923104Riviere, Henri. La Ceramique dans L'Art D'Extreme-Orient, Tome II. Paris: Librairie Centrale des Beaux-Arts 1923105Roeper. Adalbert. Geschmiedete Gitter des XVI-XVIII Jahrhunderts aus Suddeutschland. Leipzig: A. Schumann's Verlag undated23

    (autographed by Albert Kahn, 9/25/1924)

    Roussel, J. Palais de Fontainebleau. Paris: Armand Guerinet, Libraire-Editeur des Musees Nationaux undated22

    (autographed by Albert Kahn)

    Ruggles, E. A. Small Stone Houses of the Cotswold District. Cleveland: J. H. Jansen 193135

    (autographed by Albert Kahn, 8/28/1931)

    Schmidt, Adolf. Bucheinbande: Aus Dem XIV-XIX Jahrhundert In der Landesbibliothek Zu Darmstadt. Leipzig 1921101Semper, H., Schulze, F.O., Barth, W. Carpi Ein Furstensitz der Renaissance. Dresden: Bleyl and Kammerer 1882127Sloan, Raymond P. Hospital Color and Decoration. Chicago: Physicians' Record Company 194472Small, Tunstall & Woodbridge, Christopher. English Wrought Ironwork of the Late 17th & Early 18th Centuries: A Portfolio of Full-Sized Details. London: The Architectural Press and New York: William Helburn, Inc. undated48

    (autographed by Albert Kahn, 3/2/1931)

    Soule, Charles C. How to Plan a Library Building for Library Work. Boston: The Boston Book Company 191271Stevens, Edward F. The American Hospital of the Twentieth Century. New York: Architectural Record Publishing Company 191867

    (autographed by Albert Kahn)

    Stratton, Arthur. The English Interior: A Review of the Decoration of English Homes from Tudor Times to the XIXth Century. London: B.T. Batsford Ltd. 94 High Holborn undated116Stuart, James & Revett, Nicholas. Antiquities of Athens, Volume I. London: Priestley and Weale 1825120Stuart, James & Revett, Nicholas. Antiquities of Athens, Volume II. London: Priestley and Weale 1825119Stuart, James & Revett, Nicholas. Antiquities of Athens, Volume III. London: Priestley and Weale 1827118Stuart, James & Revett, Nicholas. Antiquities of Athens, Volume IV. London: Priestley and Weale 1830117Tipping, H. Avray. English Gardens. London: Country Life, Ltd., and New York: Charles Scribner's Sons 192529

    (autographed by Albert Kahn)

    Totten, George Oakley. Maya Architecture. Washington, D. C.: The Maya Press 192625

    (autographed by Albert Kahn, 10/15/1927)

    Virette, Jean. La Cite Jardin. Paris: Editions S. de Bonadona, Librairie Nouvelle de l'Architecture et des Beaux-Arts undated47

    (autographed by Albert Kahn, 10/4/1931)

    Vollard, Ambroise. La Vie and L'Oeuvre de Pierre-Auguste Renoir. Paris: Ambroise Vollard 191987Weaver, Lawrence. Houses and Gardens by E. L. Lutyens . London: Offices of "Country Life" and George Newnes, Ltd. 191341

    (autographed by Albert Kahn, 1914)

    Zoubaloff, Jacques. Clos Joli I -- Les Fleurs and Clos Joli II -- Les Fruits. Paris: Editions d'Art Charles Moreau 192943

    (two volumes autographed by Albert Kahn, 8/15/1929)

    Audiovisual Materials1970-2004

    The Audiovisual Materials series (1 linear foot, 1970-2004) consists of audiocassettes and videocassettes arranged alphabetically by format. The materials include recordings of interviews, special events, architectural discussions, and featurettes on Albert Kahn and some of his building projects. Many of these materials were produced by Albert Kahn Associates, Inc., although some were produced by third parties.

    Audiocassettes"Albert Kahn legacy conversations in depth" TV Channel 561 audiocassettesSeptember 22, 1970152Albert Kahn -- S. Whitney, Tom Campbell, WJR1 audiocassettessFebruary 5, 2002152American Institute of Architects Guide to Detroit Architecture -- Eric Hill, John Gallagher, and Balthazar Korab, WDET FM1 audiocassettessNovember 22, 2002152"Conversations in depth: the legacy of Albert Kahn"1 audiocassettesSeptember 22, 1970152Ed Parks -- Engineering Week, WJR Focus1 audiocassettessFebruary 18, 1991152Ed Parks -- Retirement, April 301 audiocassettess152Kahnvention2 audiocassettes1993152Kahnvention2 audiocassettesNovember 28, 2000152Kahnvention1 audiocassettesOctober 10, 2001152Newcomen address by Sol King1 audiocassettesSeptember 24, 1970152Sol King with WWJ-TV: People1 audiocassettesJuly 23, [1974]152Sol King with WWJ-TV: Personnel1 audiocassettesJuly 23, 1974152VideocassettesAlbert Kahn Associates, Inc. KMS Video1 videocassettes (VHS)152Albert Kahn -- Auction Spot and Interview1 videocassettes (VHS)152Albert Kahn Symposium1 videocassettes (VHS)February 1, 1987152American Architectural Review -- Albert Kahn Associates, Inc.1 videocassettes (VHS)152American Architectural Review -- Private Screening1 videocassettes (VHS)152An Architectural Presentation with Grant Hildebrand1 videocassettes (VHS)January 26, 1995152Architects We Knew: Kahn, Saarinen and Yamasaki1 videocassettes (VHS)200410Fisher Building -- WDIV-TV Channel 4 Newsbeat1 videocassettes (VHS)October 18, 1990152Ford Michigan Truck Project -- Durr Team Capabilities1 videocassettes (VHS)152MVP Marketing Tape1 videocassettes (VHS)152The Psychology of Persuasion, Part I, Gary D'Angelo, Ph.D -- D'Angelo & Associates1 videocassettes (VHS)1984152The Rouge: A Living Legacy, Art of Industry1 videocassettes (VHS)undated152UAW-Chrysler National Training Center -- First Floor Capabilities1 videocassettes (VHS)September 5, 1996152The VSI Video Tour1 videocassettes (VHS)152The Work of Albert Kahn -- Presented by Professor Grant Hildebrand, Kahnvention1 videocassettes (VHS)December 8, 1999152The Rouge: A Living Legacy, Revolution by Design1 videocassettes (VHS)undated152
    Architectural Drawings

    The Architectural Drawings series (3 linear feet and 12,731 drawings, 1896-1970) contains the heart of the Albert Kahn Associates records, and consists of origainal drawings arranged chronologically by job number and Drawing Record Cards.

    The drawings in this series were produced by Kahn's firm, Albert Kahn Associates, Inc., are located in 45 flat-file storage drawers and 114 oversize tubes, and are accessible to researchers for study. The original, ink-on-linen drawings in this series often include the structural, mechanical and electrical drawings, as well as the architectural. A number of the larger projects include more than one building, as in the case of the Edsel and Eleanor Ford Residence (1926-1932), for which the drawings of the Gate Lodge, Heating Plant, Boat House, Dog Kennel and later Activities Building (1990-1991) are also available.

    The buildings represented in this collection of drawings range from Job. No. 1-A, Dupont Residence in Detroit, Michigan (1896) to Job. No. 2223-A, General Electric Appliance and Television Group, Appliance Park East in Columbia, Maryland (1969-1970), and include such industrial landmarks as Packard Motor Company Building No. 10, Ford Motor Company Highland Park Plant, Ford Motor Company River Rouge Eagle Shipbuilding Plant, Ford Motor Company River Rouge Glass Manufacturing Plant and the Amtorg Trading Company Stalingrad Tractor Plant. The drawings representing sections of these innovative factory buildings are especially illustrative of the pioneering structural design which revolutionized American industrial architecture. Elevations of the George G. Booth, Edsel and Eleanor Ford and James C. Couzens residences show the rich, historic, exterior detailing of Kahn's domestic architecture. His versatility with Italian Renaissance and Art Deco design styles in his institutional and commercial work is also beautifully illuminated in the construction drawings of, among others, the William L. Clements Library at the University of Michigan and the Fisher Building in Detroit.

    Job No. 1-136Dupont Residence, Job No. 1-A, Detroit, Michigan1896Construction DrawingsundatedBlack and red ink-on-linen drawings, 18-3/4x28 inches and 13-3/4x28 inchesArchitectural DrawingsFoundation Plan (1)11First Floor Plan (2)11Second Floor Plan (3)11Roof Plan (4)11West Elevation (5)11South Elevation (6)11East Elevation (7)11North Elevation (8)11Elevations in Living Room and Cross Section thro' Main Part (9)11Longitudinal Section (10)11Professor Edward DeMille Campbell Residence, Job No. 12, Ann Arbor, Michigan1899Construction Drawings by Nettleton and Kahn, Architects7/22/1899Ink-on-linen drawings, 18x26 inchesArchitectural DrawingsFoundation Plan81First Floor Plan81Second Floor Plan81Third Floor and Roof Plan81West Elevation81South Elevation81North Elevation81East Elevation81Finish [Details] in Main Hall81Inside Finish Details-Study, Living Room and Dining Room81[Interior Elevations]-Pantry and China Closet Fittings81Sigma Phi House, University of Michigan, Job No. 66, Ann Arbor, Michigan, undatedConstruction DrawingsundatedBlack and orange ink-on-linen drawings, 22x34-3/4 to 22-1/2x35-1/2 inches, except as notedArchitectural DrawingsSub-Basement Plan (2)83Basement Plan (3)83First Floor Plan (4)83Second Floor Plan (5)83Third Floor Plan (6)83Details of Inside Finish (7)83Details of Inside Finish (8)83West Elevation and Transverse Section through East Wing (9)83East Elevation and Transverse Section (10)83North Elevation (11)83South Elevation (12)83Detail of Front Elevation and Section thro' Front Wall23-1/4x12 inches83Grace Hospital Nurses Home, Job Nos. 73 and 73-A, B & C, Detroit, Michigan1898191019141915Grace Hospital Nurses Home by Nettleton and Kahn, Architects (Job No. 73)Architectural Construction Drawings10/31/1898Blue-line prints with pink and yellow ink drawing and pencil notations, 19-3/4x36-1/2 to 22-1/2x37-1/2 inchesFoundation Plan (1) & (2)2 printsundated1611Second Floor Plan (3)1611Third Floor Plan1611

    (not numbered)

    Fourth Floor and Roof Plan (4)1611John R. Street Elevation (5)1611Rear Elevation (6)1611Alley and Willis Avenue Elevations (7)1611Cross-Section and Details of Truss over Main Hall, Shower and Baths, and Columns and Beams in Gymnasium (8)1611Inside Finish Details (9)1611Finish Details in Main Hall (10)Print with two pencil drawings on tracing paper attached, 8-3/4x9 and 11-1/4x13 inches1611
    Additions and Alterations to Grace Hospital Nurses Home by Albert Kahn, Architect, and Ernest Wilby, Associate (Job No. 73-A)Design Development DrawingsundatedPencil and red ink drawings on tracing paper, 19-1/4x33-1/2 to 20-1/4x34-3/4 inchesFirst Floor Plan (2)1612Second Floor Plan (3)1612Third Floor Plan (4)1612Fourth Floor and Roof Plan (5)1612Rear Elevation and Cross-Section (6)1612Alley Elevation (7)1612Yard Elevation (8)1612Terra-Cotta Coping Details (9)8/1/191021-1/4x25-3/4 inches1612Architectural Construction Drawings6/1910Ink-on-linen drawings, 20-1/4x33 inchesBasement Planrevised 11/2/19101612

    (not numbered)

    First Floor Plan (2)revised 11/2/19101612Second Floor Plan (3)revised 11/2/19101612Third Floor Plan (4)undated1612Fourth Floor and Roof Plan (5)undated1612Rear Elevation and Cross-Section (6)undated1612Alley Elevation (7)undated1612Yard Elevation (8)undated1612
    Sleeping Porch for Grace Hospital Nurses Home by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 73-B)

    (Not Built)

    Architectural Construction Drawings7/27/1914Ink-on-linen drawings with pencil notations, 20-1/4x36-1/4 inchesPlans of Foundation, First, Second and Third Floors and Roof (1)1612Elevations and Section (2)1612Full-Size Detail of Typical Window (3)1612
    Sleeping Porch for Grace Hospital Nurses Home by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 73-C)Architectural Construction Drawings9/8/19159/21/1915Pencil and ink drawings on linen with pencil notations, 20-1/4x31-3/4 inchesPlans of Foundation, First, Second and Third Floors and Roof (1)1612Elevations and Section (2)1612Plans of Foundation, First, Second and Third Floors and Roof (1)1612Elevations and Section (2)1612
    Grace Hospital Nurses' Home Alterations, Job No. 73-D & E, Detroit, Michigan1924-1931Construction DrawingsMechanical Drawings of Alterations to Grace Hospital Nurses' Home (Job 73-D) by Albert Kahn, Architect1/12/1924pencil-on-vellum drawings, 19x36 inchesBasement Plan (1-M)245First Floor Plan (2-M)245Second Floor Plan (3-M)245Third Floor Plan (4-M)245Fourth Floor Plan (5-M)245Basement Plan (6-M)245First Floor Plan (7-M)245Second Floor Plan (8-M)245Third Floor Plan (9-M)245Fourth Floor Plan (10-M)245Architectural Drawings of Alterations to Old Nurses' Home--Grace Hospital (Job 73-E) by Albert Kahn, Inc., Architects1/19/1931pencil and ink drawings on vellum, 19x35-1/2 inchesBasement Plan (1)245First Floor Plan (2)revised 4/24/31245Second Floor Plan (3)revised 2/27/1931245Third Floor Plan (4)revised 4/15/1931245Fourth Floor Plan (5)revised 2/27/1931245First Floor Plan (7)revised 2/27/1931245Second Floor Plan (8)revised 2/27/1931245Third Floor Plan (9)revised 2/27/1931245Fourth Floor Plan (10)revised 2/27/1931245D. Loomis Residence, 162 Joseph Campau, Job No. 77, Detroit, Michiganca. 1899Architectural Design Development Drawings by Nettleton and Kahn, ArchitectsundatedBlack and red ink drawings on linen, 15-3/4x33-1/2 inchesFoundation Plan (1)15-1/2x20 inches171First and Second Floor Plans (2)171Front and Side Elevations and Section (3)171Side and Rear Elevations (4)171Plan and Elevation of Fireplace, Elevation of Sideboard, and Elevation of Seat and Stairs15-3/4x19-3/4 inches171

    (not numbered)

    "The Woodward" Apartment Building, Woodward & Forest Avenues, Job No. 83, Detroit, Michiganca. 1900Design Development and Construction Drawings by George D. Mason and Albert Kahn, ArchitectsDesign Development Drawingsundatedink-on-vellum drawings with red ink and pencil notationsFloor Plan, Basement Section and Elevations5 drawings (untitled; 17x31 to 18-1/2x39-1/4)246Architectural Construction Drawingsundatedink-on-vellum drawings with pencil and red ink notationsPlan of Excavation28x43-1/4 inches246Basement Plan--West Half (1)27x28 inches246First Floor Plan--West Half (2)26-3/4x27-3/4 inches246Second Floor Plan--West Half (3)26-1/4x26-3/4 inches246Third Floor Plan--West Half (4)26x26-1/2 inches246Attic and Roof Plan--West Half (5)26x27 inches246West Elevation--West Half (6)2 drawings (18x34-1/2 and 19-1/2x35 inches)246South Elevation--West Half (7)17-3/4x28-3/4 inches246North Elevation--West Half (8)18x28-1/4 inches246Rear Elevation (9)17-1/2x46 inches246Section on Line A-B, Looking South (10)18-1/4x28-3/4 inches246Section on Line C-D, Looking West (11)18x29 inches246Basement Plan--East Half (12)28-1/2x39 inches247First Floor Plan--East Half (13)28x39-1/2 inches247Second Floor Plan--East Half (14)27x38 inches247Third Floor Plan--East Half (15)26-1/2x38 inches247Attic and Roof Plan--East Half (16)26-3/4x40 inches247North Elevation (Forest Avenue)--East Half (17)17-1/2x40-1/4 inches247East Elevation--East Half (18)17-1/4x28-1/4 inches247East Elevation--Court C and Elevation of 1st and 2nd Story Columns (19)15-3/4x28 inches247Interior Finish Details (20)25-1/4x38 inches247Elevations of Basement and Foundation Walls (21)28-1/2x38-3/4 inches247Plan of Pharmacy and Interior Wall Elevations16-1/2x28 inches247Interior Elevations of Pharmacy16-3/4x27 inches247Elevations of Wainscoting in Public Halls at Entrance No. 116-1/4x36 inches247Sections thro' Public Hall of Entrance No. 316x30-3/4 inches247Sections thro' Public Hall of Entrance No. 416x30-3/4 inches247Sections thro' Public Hall of Entrance No. 515x32-1/4 inches247Temple Beth El, Job Nos. 89 and 136-A, Detroit, Michigan1902Design Development Drawings (Set of Bonds) by George D. Mason and Albert Kahn, ArchitectsundatedInk-on-linen drawingsElevation of Large Window on South Side of Temple Beth El27x14 inches12Plan of Locker and Shower Rooms12x14 inches12[Foundation Plan], untitled13x16 inches12Heating Plan2 drawings (26x14 inches)12Heating Plan for Temple Beth El Showing Mechanical Hot Air System of The Bryce Heating & Ventilating Co., Toledo Ohio13x26 inches12Foundation and Basement Plan (1)30x18 inches12First Floor Plan (2)28x17 inches12Second Floor Plan (3)26x17 inches12Roof Plan (4)27x17 inches12Front and Rear Elevations (5)16x28 inches12North Side Elevation (6)17x26 inches12South Side Elevation (7)16x27 inches12Detail of Front Entrance (8)30x18 inches12Longitudinal Section on Line J-J Looking North (9)17x30 inches12Sections thro' Lines E-E, G-G and H-H Looking East (10)32x16 inches12Detail of Platform, Tabernacle Choir Gallery, etc., Detail of Skylight in Main Ceiling, and Section on Line A-A (11)18x32 inches12Interior Details (12)18x27 inches12Half-Elevation of Dome Trusses and Section of Side Walls of Dome, Detail Showing Support of Purlins at Top Joints, and Section thro' Corner of Dome (13)27x18 inches12Plan of Dome (14)27x18 inches12Construction DrawingsInk-on-linen drawingsArchitectural DrawingsDetail of Rear Stairs, Rear Entrance Doors, Frames, Sash, Glass, Partitions and Cupboards (13) by Albert Kahn, Architect29x48-3/4 inches13

    (date not visible due to linen damage)

    Plaster Details of Auditorium (20) by Mason & Kahn, Architects (20)10/24/190237x33-3/4 inches13Diagram Showing Plan and Profiles of Dome Ceiling (20)undated28x35-1/2 inches13[Plan] (23), untitled, by Albert Kahn, Architectundated28x18 inches13Plaster Details of Auditorium (89) by Mason & Kahn, Architects10/17/190240x29 inches13Plan of Auditorium and Sections on Lines A, B, C, D and E (Job No. 136-A)23x47 inches13

    (date not visible due to linen damage)

    Alterations to Temple Beth El (2) by Albert Kahn, Architect (Job 136-A)9/22/1902Pencil-on-vellum drawing, 23-1/2x30 inches13
    Dr. J. B. Book Apartment Building ("The Palms"), Job Nos. 93 and 105, Detroit, Michigan1901-1902Construction Drawings by George D. Mason and Albert Kahn, ArchitectsArchitectural Drawingsundatedink-on-linen drawings with pencil and colored pencil notations, 18x30 inchesBasement and First Floor Plans (1)187Second and Third Floor Plans (2)187Fourth and Fifth Floor Plans (3)187Sixth Floor and Roof Plans (4)187South Front and East Side Elevations (5)187North Rear and West Side Elevations (6)187West Elevation of Court and Longitudinal Section thro' Center of Building (7)187Transverse Section and Details of Cafe and Billiard Room (8)187Exterior Details (9)187Interior Details (10)187Details of Main Entrance Doors, Vestibule and Lobby Ceiling, and Construction for Rear Stairs (11)187Plan Showing Radiators and Return Pipes in Basement (12)187Architectural Drawings of Exterior and Interior Detailsundatedink-on-linen drawings, 10-1/2x11-1/2 to 27x39-1/2 inchesPlans and Elevations of Balustrade187Details of Columns and Beams for Support of Floors and Walls, Second Story, West Side187Detail of Radiator Cases for Palms Cafe187Elevations in Entrance Halls, West Side187Elevations in Entrance Hall, Apartment D-2, East Side187Details of Fixtures in Butler's Pantry, Apartment D-1187Details of Fixtures in Butler's Pantry, Apartment D-2187Details of Pantry Fittings, Apartment A-1187Details of Fixtures for Mrs. Thayer, Second Floor187Elevations in Dining Room for Mrs. Thayer, Second Floor187Elevations in Dining Rooms on East Side187Details of Living Room Bookcases in Apartments D-4 & D-5187Elevations in Library of Apartment A-1187Elevations of Entrance Halls, Apartments D-3, D-4 & D-5, East Side187Elevations in Dining Rooms on West Side187Details of Paneled Wainscoat, Apartment D-16/28/1902187Details of Main Stairway187Revised Architectural Drawingsink-on-linen-drawings, 17-3/4x15-3/4 to 18-1/2x16-1/2 inchesTypical Floor Planundated187Revised First Floor Plan12/31/1901187Revised Second Floor Plan12/28/1901187Revised Third Floor Plan1/14/1902187Revised Fourth Floor Plan1/21/1902187Revised Fifth Floor Plan12/13/1901187Revised Sixth Floor Plan12/9/1901187Structural Drawingsundatedink drawings on tracing paper, 15-1/2x18-1/2 to 15-1/2x23-3/4 inchesFirst Floor Framing Plan188Second Floor Framing Plan188Framing Plan of Third, Fourth, Fifth and Sixth Floors188Framing Plan of Attic Floor and Roof Garden188Structural, Mechanical, Electrical and Revised Architectural Drawingsundatedblue-line prints with colored ink markings, 22x32 inchesBasement Plan and Schedules of I-Beams, Plates, Columns and Lintels (1)188First Floor Plan and Schedules of Beams, Plates, Columns and Lintels (2)188Second Floor Plan, Schedule of I-Beams and Plates, and Details of Bay Window Construction, East Side Elevation (3)188Third Floor Plan and Details of Construction for Floors, Stairs, Rails, etc. at Rear of Building (4)188Fourth and Fifth Floor Plans (5)188Sixth Floor Plan and Plan Showing Radiators and Return Pipes in Basement (6)188Attic Floor Plan and Roof Plan (7)188Front and East Side Elevations (8)188North Rear and West Side Elevations (9)188Elevation of West Wall of Court and Longitudinal Section thro' Center of Building (10)188Transverse Section (11)188Details of Front Entrance (12)188Details of Center Portion of Front Elevation over Main Entrance (13)188Interior Details (14)188Interior Details (15)188Construction Details of Main Stairs (16)188Electrical Wiring Layout1 blueprints (16x21 inches)188Belle Isle Horticultural (Conservatory) and Aquarium Building, Job No. 98, Belle Isle Park, Detroit, Michigan1900Construction Drawings, Architectural14 drawings456
    Job No. 137-185University of Michigan Psychopathic Ward Building, Job No. 137 & 137-A, Ann Arbor, Michigan1902-1903 and 1911-1912Construction Drawings of Original Building (Job No. 137) by Mason & Kahn, ArchitectsArchitectural Drawings, undated, except as notedink and red pencil drawings on linen, 20x35 inches, except as notedFoundation Plan (1)2212Foundation Plan: Rearrangement of South Half of Basementrevised 9/3/190312-1/2x16-1/2 inches2212First Floor Plan (2)2212Second Floor Plan (3)2212Third Floor and Roof Plan (4)2212North, South, East and West Elevations (5)2212Sections and Window Details (6)2212Half Elevation, West Entrance and Details (11)2212Half Elevation, West Entrance (11)revised 10/2/19022212Details of Porch Openings and Sun Room Windows (12)2212Brickwork Revisions of Porch Openings and Sun Room Windows (12)revised 10/2/190220-1/2x27-1/2 inches2212Details of Doors, Service Stairs, Cupboards and Kitchen Fixtures (14)2212Suggested Arrangement for Heating and Ventilation (15)14x29 inches2212Details of Windows in Basement under Sun Rooms (16)9/23/190215-1/2x20 inches2212Elevation and Section of Brick Arch in Corridor, Showing Half of Vestibule Door (26)12/9/190210-1/2x12-1/4 inches2212Construction Drawings of Addition to Building (Job No. 137-A) by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings11/13/1911ink-on-linen drawings, 19-1/2x22-3/4 inchesBasement and First Floor Plans (1)revised 5/2/19122212Second Floor and Roof Plans (2)2212Elevations and Sections (3)revised 5/2/19122212Details of Elevations, Steel Sash and Doors (4)2212Engineering Building, University of Michigan, Job No. 145, 145A & 145B, Ann Arbor, Michigan1902-1903 and 1908-1910Engineering Building (Job No. 145)Design Development Drawings (Block Plans) by Mason & Kahn ArchitectsundatedInk-on-linen drawings, 27-1/2x39 to 27-1/2x42 inchesGround Floor Plan310Second Floor Plan2 drawings310Third Floor Plan310Roof Plan310Construction Drawings by Mason & Kahn Architects, undated, except as notedInk and colored pencil drawings on linen, some with pencil notations, 27-3/4x40 to 29x43 inches, except as notedArchitectural DrawingsFoundation Plan (1)310Ground Floor Plan (2)310Second Floor Plan (3)revised 4/1/1903310Third Floor Plan (4)revised 4/1/1903310Fourth Floor Plan (5)revised 4/1/1903310Roof Plan (6)revised 4/1/1903310Elevations of South Wing and Center Pavilion (7)310Elevations and Cross-Sections (8)310Elevations and Cross-Section (9)310Fourth Floor Plan by Albert Kahn, Architect (10)3/24/1903310Details of Interior Finish (10)310Detail of Main Stairs and Brick and Wood Details (11)310Details of Steel Work (12)310Roof Framing Plan (13)310Detail of Stone and Brick Work in Archway (23)310Details of Cupola, Interiors, Dormers and Boiler House Clere Story (28)discarded 2/26/1903310Plan Showing Method of Determining Present Position of Wall (35)14x22-1/2 inches310Elevations and Plan of Stacks, South Extension (37)24-1/2x29-1/4 inches311Elevation and Plan of Stacks, South Extension by Albert Kahn, Architect (37 Revised)3/24/1903revised 4/4/190328-3/4x29 inches311Elevations and Plans of Stacks (38)2/26/1903completed 4/4/190325x43-1/2 inches311Revised Brick and Wood Details (39)9/16/1902311Brick and Wood Details of Tower and Detail of Windows and Door at East Wing Stairs (44)9/16/1902revised 11/25/190223x29 inches311Revised Plan of Center Pavilion, Ground Floor (46)19x18-1/2 inches311Revised Plan of Center Pavilion, Fourth Floor (49)19x18 inches311Ground Floor Plan (53)11/17/1902revised 12/30/1902311Second Floor Plan (54)11/17/1902revised 12/30/1902311Third Floor Plan (55)11/17/1902revised 12/30/1902311Fourth Floor Plan (56)11/17/1902revised 12/30/1902311Detail of Main Stairs (60)11/18/190227-1/4x23-1/4 inches311Revised Second Floor Plan of North Wing (91)1/22/190320x17-1/2 inches311Plans, Elevations and Sections of Boiler Room (96)12/190225x36 inches311Typical Interior Trim Details (99)2/28/1903311

    ("Albert Kahn Architect in Charge" notation)

    Plans, Elevations and Sections of Tower (102)3/17/1903311Details of Dormers (114)4/14/190328x53 inches311Detail of Entrance Doors and Lobby (119)4/13/190311x27-1/4 inches311Revised Plan of General Toilet, Locker Room, etc. (131)9/1/190319-1/4x29 inches311Interior Finish in Faculty and Secretary's Room and Studies (134)9/17/190325-1/2x26-1/4 inches311Ammended Plan of Library (139)25x33-3/4 inches311Ammended Detail of Finish in Library (139)25x33-3/4 inches311Archway in Centre Pavilion10-1/2x38-1/2 inches311
    Addition to Engineering Building (1908-1910) (Job No. 145-A)Construction Drawings by Albert Kahn Architect, Ernest Wilby AssociateArchitectural DrawingsundatedInk-on-linen drawings, 27x34 inches, except as notedFoundation Plan (1)9/9/1908revised 8/11/1909312Plot Plan (1-A)312First Floor Plan (2)revised 4/20/1910312Second Floor Plan (3)revised 9/20/1909312Third Floor Plan (4)revised 4/20/1910312Fourth Floor Plan (5)revised 4/20/1910312Roof Plan and Details (6)revised 5/4/1909312Longitudal Sections (7)312Architectural DrawingsundatedInk-on-linen drawings, 27x34 inches, except as noted) (contTransverse Section and Details of Dormers and Doors (8)312North and East Elevations (9)revised 5/4/1909312South and West Elevations (10)revised 5/4/1909312Section thro' Stairs and Details of Stairs(11)312Interior Details (12)312Details of Columns and Stairs in North Wing (13)312Typical Detail of East Elevation (14)312Typical Details of West and North Elevations (15)312Typical Detail of Window Frames (16)312Roof Framing Plan (17)revised 5/4/1909312Riser Diagrams, West, North and East Walls (18)312Riser Diagram, West and South Walls, and Detail of Typical Vent Air Register (19)312Sections "D-D" and "E-E" thro' Fan Room (20)312Revised Second Floor Plan (29)4/21/190911-1/4x15-1/4 inches312Heating and Ventilating Plans by H. C. Anderson, EngineerundatedInk-on-linen drawings with pencil notations, 24x34 inchesFirst Floor Plan (1)6/29/1909313Second Floor Plan (2)313Third Floor Plan (3)313Fourth Floor Plan (4)313Riser Diagrams, North and East Walls (5)313Riser Diagram, South and West Walls (6)313Sections "R-R" and "B-B" (7)313Alterations to Library, Engineering Building (1910) Job No. 145-BArchitectural Construction Drawing by Albert Kahn, Architect, Ernest Wilby, Associate8/9/1910Ink-on-linen drawing, 17x21 inchesAlterations to Library, Second Floor (1)313
    Charles M. Swift Residence, Job No. 168, Jefferson Avenue, Grosse Pointe, Michigan1903-1906Construction Drawings by Albert Kahn, ArchitectArchitectural Drawings, except as noted8/21/1903ink-on-linen drawings, 23x28 to 26x32 inches, except as notedBasement Plan (1)3210First Floor Plan (2)3210Second Floor Plan (3)3210Third Floor and Roof Plan (4)3210North Elevation (5)3210East Elevation and Cross-Section (7)3210South Elevation (8)3210Details of Finish in Main Hall (9)3210Interior Elevations of Pantry, Butler's Pantry, Bathroom No. 1 and Cabinets (12)3210Details of "Kahn Trussed" Basement Lintels (14)9/25/190311-1/2x27-1/2 inches3210Amended Details of Finish in Main Hall (43)2 drawings11/17/19033210Amended Details of Finish in Den (44)11/23/19033210Amended Details of Finish in Reception Room (not numbered)undated21x20 inches3210Amended Plan and Detail of Trim in Living Room (60)1/11/190415-1/2x27-1/2 inches3210Driveway Entry Plan and Elevation of Gates and Wall (90)undated16-3/4x24 inches3210Details of Pergola (94)undated15x18 inches3210Site Plan (not numbered)undated15-1/2x28-1/4 inches3210Sewerage Plan (not numbered)12/10/190613x44 inches3210Plan Showing Outline of Planting on Grounds (112-5) by James H. Bowditch, Landscape Gardner (Boston) and Punchard & Babson, Engineers (Boston)2/12/190417-1/2x48 inches3210Delta Upsilon House, University of Michigan, Job No. 173, Ann Arbor, Michigan1902-1903Construction Drawings by Albert Kahn, Architect10/18/1902Black and red ink, pencil and red pencil drawings on linen, 22x28-1/2 inches, except as notedArchitectural DrawingsBasement Plan (1)82Revised Basement Plan (1)2/3/190382First Floor Plan (2)82First Floor Plan (2)4/9/190318x28-1/2 inches82Second Floor Plan (3)82Second Floor Plan (3)4/9/190318x28-1/2 inches82Third Floor Plan (4)82Third Floor Plan (4)4/9/190318-1/4x28-1/2 inches82Front Elevation (5)82West Elevation (6)82East Elevation (7)82Rear Elevation (8)82Transverse Section and Detail of Interior Finish in General (9)82Details of Interior Finish (10)82Basement Plan (Revised 11)11/26/190215x25 inches82First and Second Floor Plans (Revised 12)2/3/190315x25 inches82Third Floor Plan (Revised 13)11/26/190215x25 inches82Rear and East Elevations (Revised 14)2/3/190315x25 inches82Exterior Details (18)4/17/190323x36 inches82Basement, First Floor, Second Floor and Attic Plans (19)1/14/190321-3/4x28 inches82Consolidated Tool Company, Job No. 181, Scotland1902Construction Drawings, Architectural3 drawings367Metzger Building, Job No. 185-A, 185-B, Detroit, Michigan19031926Construction Drawings, Architectural and Structural8 drawings3214
    Job No. 201-293Packard Motor Car Company Forge Building, Job No. 201-A-N, Detroit, Michigan1910Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateInk-on-linen drawings, 30x40 inchesArchitectural Drawings1/15/1910Foundation Plans, Sections A and B (1)16First Floor Plans, Sections A and B (2)16Roof Plans, Sections A and B (3)16Second Floor Plan, East Elevation-Section B, South Elevation and Transverse Section (4)16East Elevation-Section A and West Elevations-Section B (5)16North Elevations and Transverse and Longitudinal Sections (6)16Plot Plan, Detail of Interior Steel Columns in Stamping Room and Sections thru' Hammer Foundations (8)1/26/191016Dean Cooley Residence, Proposed Alterations, Job No. 209, Ann Arbor, Michigan1903Design Development DrawingsArchitectural Drawings9/7/1903ink-on-linen drawings, with notations "see revised set" and "no good," 14-1/2x19-1/2 inchesBasement Plan (1)2312First Floor Plan (2)2312Second Floor Plan (3)2312Attic and Roof Plan (4)2312South Elevation (5)2312East Elevation (6)2312North Elevation (7)2312Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings, undated, except as notedink-on-linen drawings with pencil notations, 14-1/2x19-1/2 inchesBasement Plan (1)8/8/19032312First Floor Plan (2)2312Second Floor Plan (3)2312Attic and Roof Plan (4)2 drawings (one marked "no good")2312Front Elevation (5)2 drawings (one marked "no good")2312South Elevation (6)2312North Elevation (7)2312East Elevation (8)2312Interior Elevations (9)9/7/19032312Finish Details in Dining Room (10)9/7/19032312E. Chandler Walker Residence ("Willistead Manor"), Job No. 210 and 210-A, Walkerville, Ontario, Canada1904-1905Construction Drawings by Albert Kahn, ArchitectArchitectural Drawings7/30/1904Ink-on-linen drawings with pencil notations, 24x44 to 35-1/4x43-1/4 inchesSite Plan (2)undated24-1/2x39-3/4 inches161Elevations for Foundation Work (Y)6/7/1904Blue-line print on linen, 19-1/2x39-1/4 inches161Foundation and Basement Plan (1-A)6/8/1904Blue-line print on linen161Basement Plan (1)7/1/1904revised 11/14/1904161First Floor Plan (2)revised 5/25/1905161Second Floor Plan (3)161Third Floor and Roof Plan (4)revised 11/2/1904161Roof Framing Plan and Truss Details (5)161East Front Elevation (6)161North Elevation (7)161West Front Elevation (8)161South Elevation (9)161Cross-Section on Line "A-B" Looking South and Elevations at "C" and "D" Looking North (10)revised 11/2/1904161Interior Finish Drawings4/26/1905Ink-on-linen drawings, 22-1/2x25 to 25x25 inchesElevation of Door to Carriage Porch, (34)undated15x12-3/4 inches162Elevations of Hall Looking East and West (79)162Elevations of Wall Looking South and Window on Stair Landing (80)162North Elevation of Hall (81)162Elevations of Morning Room (82)162Elevations of Billiard Room (83)162Elevations of Library and Half-Plan of Ceiling (84)162Elevations of Drawing Room (85)162Elevations of Dining Room and Vestibule (86)162Elevations of Dining Room (87)162Elevations of Butler's Pantry and Coat Closet (88)162Elevations of Mr. Walker's Dressing Room, Boudoir and Mantels in Chambers (89)162Elevations of Dining Room Looking West and Morning Room Looking North (122)7/13/1905162Plan and Elevations of Dressing and Bath Room for Mrs. J. H. Walker (W)undated162Details of Closets (144)undated20-1/4x34 inches162Details of Fittings for Closets, Pantry, Guests' Chamber No. 1, Sewing and Linen Room, Scullery and Servant's Dining Room (145)undated20-1/4x36 inches162Details of Bulkhead Doors by Albert Kahn, Architect, Ernest Wilby, Associate (X)undated16x34-1/2 inches162Conservatory in Residence of Mr. E. C. Walker by Albert Kahn, Architect (Job No. 210-A)Architectural Construction Drawings7/18/1905Ink-on-linen drawings, 24x26-1/2 inchesPlan, South Elevation, West Interior Elevation and Structural Details (1)162Interior Elevations (2)162Battle Creek Post Office Building, Job No. 218, Battle Creek, Michigan1904Construction Drawings, Architectural32 drawings454E. Chandler Walker Gate Lodge ("Willistead Manor"), Job No. 235, Walkerville, Ontario, Canada1904Construction Drawings by Albert Kahn, ArchitectArchitectural Drawings7/2/1904ink-on-linen drawings with pencil notations, 14-1/2x26-1/2 inchesBasement Plan (1)234First and Second Floor Plans (2)234North and East Elevations (3)234South and West Elevations (4)234E. Chandler Walker Barn ("Willistead Manor"), Job No. 236, Walkerville, Ontario, Canada1904Construction Drawings by Albert Kahn, ArchitectArchitectural Drawings6/7/1904ink-on-linen drawings with pencil notations,17-3/4x34-1/2 inches, except as notedFoundation Plan (1)234Ground Floor Plan (2)234Second Floor Plan (3)234Roof Plan (4)234Longitudinal Section (5)234Elevation of Truss and Cross-Sections (6)234East Elevation (7)234North and South Elevations (8)234West Elevation (9)234Revised Plan of Hay Door13-1/2x25-1/4 inches234Revised Drainage Plan234Walkerville Police Station (former E. Chandler Walker Barn), Job No. 236-B, Walkerville, Ontario, Canada1921Construction DrawingsArchitectural Drawingspencil and colored pencil drawings on tracing paper, 18x31 inchesGround Floor Plan (1)10/31/1921234Elevations, Section and Details (2)10/31/1921234Details of Magistrate's Bench and Doors (3)10/10/1921234Mechanical Drawingsundatedink-on-linen drawings with pencil notations, 19x32 inchesBasement Plan (1M)234First Floor Plan (2M)234Second Floor Plan (3M)234Joseph Boyer Residence, Job No. 243, Woodward Avenue, Detroit, Michigan1904Construction DrawingsArchitectural Drawings of Residence by Albert Kahn, Architect9/12/1904ink-on-linen drawings, 18x20-1/2 inchesBasement Plan (1)1810First Floor Plan (2)1810Second Floor Plan (3)1810Attic and Roof Plan (4)1810Front Elevation (5)1810Side Elevation (6)1810Side Elevation (7)1810Rear Elevation (8)1810Interior Details (9)1810Architectural Drawings of Alteration to Garage by Albert Kahn, Architect, Ernest Wilby, Associateundatedpencil-on-vellum drawings, 15-1/2x19 inchesBasement Plan (1)1810First Floor Plan (2)1810Scripps Power Building, Job No. 260, Jefferson Avenue, Detroit, Michigan1905Presentation Drawingsundatedink-on-linen renderings, 16-1/2x24-1/2 to 26x26 inchesExterior of Original Scripps Building by Mason and Rice, Architects, Detroit1811Exterior of Power Building by Albert Kahn, Architect, Ernest Wilby, Associate1811Interior of Building2 renderings1811Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings6/12/1905ink-on-linen drawings with pencil notations, 28x36-3/4 inchesPlan of Footings (1)1811Ground Floor Plan (2)1811First Floor Plan (3)1811Second and Third Floor Plans (4)1811Fifth Floor Plan (5)1811Roof Plan (6)1811Longitudinal Section (7)1811Cross-Section on Center Line (8)1811South Elevation (9)1811

    (with notation, "not to be used")

    South Elevation (9)1811East Elevation (10)1811West Elevation (11)1811North Elevation (12)1811Exterior Details (13)1811Exterior Details of Fifth-Floor Windows and Cornice (14)1811Details of Entrance Hall and Stairway (15)1811Details of Combined Footings for Columns (16)1811Details of Stairways and Footings for Columns (17)1811Details of Columns (18)1811
    Grosse Pointe Country Club, Garage, and Additions, Job No. 264, 264-A, 264-C, 264-D, Grosse Pointe, Michigan1905-1909Construction Drawings, Architectural25 drawings3215Woodlawn Cemetery Mortuary Chapel, Job No. 275, Detroit, Michigan1905Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings, undated, except as notedink-on-linen drawings, 20x26 inchesFoundation and Basement Plan (1)9/8/19052213First Floor Plan (2)2213Roof Plan (3)2213Front Elevation (4)2213Rear Elevation (5)2213West Side Elevation (6)2213East Elevation (7)2213Longitudinal Section through Chapel and Chancel (8)2213Interior Sections (9)2213Packard Motor Company Factory Addition, Building Number 10, Job No. 277, Detroit, Michigan1905-1909Construction Drawings by Albert Kahn, Architect, Ernest Wilby, Associate10/25/1905Ink-on-linen drawings with pencil notations, 20-1/4x26 inchesArchitectural DrawingsFoundation Plan (1)revised 12/16/190914First Floor Plan (2)revised 2/16/190914Second Floor Plan (3)revised 12/16/190914North and South Elevations (4)14East and Court Elevations and Transverse and Typical Detail Sections (5)14Revised Drawing of Fan Room and Air Flues (10)11/22/190515x23 inches14Revised Drawing of Floor Construction for Fan Room (12)12/12/190515-1/4x20 inches14The Sorosis Chapter House, University of Michigan, Job No. 288, Ann Arbor, Michigan1905-1906Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings, undated, except as notedink-on-linen drawings, 20-3/4x22-1/2 to 21-1/4x23-3/4 inchesBasement Plan (1)2/7/1905231First Floor Plan (2)231Second Floor Plan (3)231Third Floor and Roof Plan (4)231South Elevation (5)231East Elevation (6)231West Elevation (7)231North Elevation (8)231Transverse Section (9)231Interior Details (10)231Interior Details (11)231Mechanical Drawings, undated, except as notedink-on-linen drawings, 19-3/4x20-3/4 inchesBasement Heating Plan (1)2/8/1906231First Floor Heating Plan (2)231Second Floor Heating Plan (3)231Third Floor and Roof Heating Plan (4)231Packard Motor Company Factory Addition, Building Number 11, Job No. 289, Detroit, Michigan1906Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateundatedInk-on-linen drawings with pencil notations, 16-3/4x45-1/2 inchesArchitectural DrawingsFoundation Plan of Section A (1)4/10/190615Foundation and First Floor Plans of Section B (2)15Plot Plan of Buildings 10, 11 and 12 Showing Columns and Conductors and Third Floor Plan of Section B, Building No. 11 (2)17x47 inches15Foundation Plan of Section C (3)15First Floor Plan of Section A (4)15First Floor Plan of Section C (5)15Secdong Floor Plan of Section A (6)15Second Floor Plan of Section C (7)15Second Floor Plan of Section B and East Elevation of Section A and B (8)15Roof Plan, End Elevation of Section C, Section thro' Elevator Shaft Passage and Toilet Room, and Details (9)15North and South Elevations of Section B, Transverse Section of Section B and Details (10)15East and West Elevations of Section C (11)17-3/4x45-1/2 inches15Block Plan (12)15Block Plan (12)17-1/2x33-1/4 inches15Typical Details of Coil and Connections, Fan Room, Riser Connections and Heating Ducts (13)17-3/4x45 inches15Plan, Elevations and Sections of Bridge #2 between Old Buildings (20)2 drawings (16x31-3/4)6/21/19066/29/190615Plan, Elevations and Sections of Bridge #3 (21)6/28/190613-1/2x35 inches15Albert Kahn Residence, Job No. 293 and 293-E, F & G, Detroit, Michigan1906 and 1921-1928Albert Kahn Residence (Job No. 293)Architectural Construction DrawingsundatedInk-on-linen drawings with pencil revisions, 17-1/2x25 to 23x31 inchesBasement Plan (1), Heatingrevised 9/11/190617First Floor Plan (2), Heatingrevised 9/11/190617Second Floor Plan (3)17Attic and Roof Plan (4)17Front Elevation (5)17Rear Elevation (6)17West Elevation (7)17East Elevation (8)17Transverse Section (9)17Plan and Elevations of Terrace and Garden Enclosure (10)17Plan and Elevations of Living Room Porch (41)17Details of Vestibule and Main Hall (43)17Details of Butler's Pantry and New Porch Addition (44)17Dining Room, Den and Living Room Mantel Elevations (45)17Details of Closets and Pantry Fittings (47)10/9/190617Alterations to Residence of Mr. Albert Kahn (Job No. 293-E)Architectural Construction Drawing9/2/1921Pencil-on-vellum drawingsDetails of Cupboards and Cabinets (48)21-1/2x27 inches19Plan, Elevations and Sections of Second Floor Addition17-1/4x27 inches19

    (not numbered or dated due to paper damage)

    Gallery and Garage Addition to Residence for Mr. Albert Kahn by Albert Kahn, Inc., Architects (Job No. 293-F)Architectural Construction Drawings6/8/1928Black and green ink and pencil drawings on vellum and tracing paper, 13x17 to 24-1/2x35-1/2 inchesFirst Floor Plan (2)revised 8/21/192818Second Floor and Roof Plan (3)revised 8/20/192818John R. Street Elevation (4)revised 9/14/192818East Elevation and Sections (5)revised 8/8/192818Sections "AA" and "BB" (6)revised 9/4/192818Garage Elevations and Detailsrevised 8/8/192818

    (not numbered due to paper damage)

    Detail of Paneling and Mantel and Section thru' Fireplace (9)7/10/1928revised 8/27/192818Ceiling Plan (10)7/14/1928revised 8/22/192818Revised Detail of Dining Room Bay (11)8/15/1928revised 8/16/192818Plan of Hearth in Gallery (12)8/27/192818Detail of Paneling in Dining Room and Bay (13)8/28/1928revised 8/31/192818Elevations of Gallery Interiors Showing Revised Wood Cornice (14)18

    (undated due to paper damage)

    Gallery Floor Pattern (50)18

    (undated due to paper damage)

    Elevations of Gallery Interiors18

    (not numbered or dated due to paper damage)

    Mechanical Construction DrawingsGreen and black ink drawing on vellum, 24-1/2x32-3/4 inchesFoundation Plan (1ME)18

    (undated)

    Alterations to Residence of Mr. Albert Kahn (Job No. 293-G)Architectural Construction Drawing6/28/1928Pencil drawing on tracing paper, 19-3/4x28-1/4 inchesDetail of Wood Bookcase in Third Floor Bedroom (1)19
    Job No. 300-376Burroughs Adding Machine Company, Job No. 300K, Detroit, Michigan1916-1917Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateInk-on-linen drawings, 16-1/2x38-1/2 inchesArchitectural Drawings10/12/1916Plot Plan (1)revised 11/8/191637Excavation Plan (1-A)9/26/1916revised 11/8/191637Basement and Foundation Plan (2)revised 11/8/191637First Floor Plan (3)revised 11/8/191637Typical Floor Plan (4)revised 11/8/191637Roof Plan (5)revised 11/13/191637North and South Elevations (6)revised 11/8/191637Typical Section on Line B-B, East and West Elevations and Toilet Elevations (7)revised 11/13/191637First Floor Plan of Elevators-Wings #1 & 2, and Section thru' Elevator and Toilet Room on Line A-A (8)revised 11/8/191637Details of Doors, Stairs, Toilets and Cesspool (9), revised 11/81637Details of Employees' Entrance to Basement (10)revised 11/7/191637[Details of Employees' Entrance to Basement] to Supersede Entrance Details on Sheet #10 (10A)12/19/191617x28 inches37Details of Steel Bridge and Column Caps and Floor Slabs (11)revised 11/8/191637[Details of Steel Bridge] to Supersede Bridge Details Shown on Old Sheet #11 (11A)12/19/1916revised 1/25/191720x31-1/4 inches37Plan of Shipping Platform, Section thru' Shipping Platform, South Elevation, Typical Detail of Sash in Outside Walls and Sections A-A to H-H (12)revised 11/8/191637Structural Drawing3/12/1917Roof over Kitchen (1-S)19-3/4x22-1/4 inches37Mechanical Drawings10/17/1916revised 11/7/1916Foundation and Basement Plan (1M)37First Floor Plan (2M)37Second, Third and Fourth Floor Plan (3M)37Fifth Floor Plan (4M)37Layout of Plumbing Fixtures as Per Bulletin No. 53 (5M)2/10/1917revised 2/26/191737Cook Farm Company, Ltd., Office Building (Owen Building), Job No. 306, Shelby and Lafayette Streets, Detroit, Michigan1906-1907Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawingsink-on-linen drawings with pencil notations, 23-1/4x34 to 26x37 inchesFoundation, Basement and First Floor Plans (1)revised 2/16/19071812Heating and Lighting Plans (1), revised 12/11/9061812Second through Fifth Floor and Roof Plans (2)undated1812Second through Sixth Floor Plans (2)revised 2/18/19071812Third through Fifth Floor Lighting Plans (2)revised 3/4/19071812Third through Fifth Floor Lighting Plans (2)revised 11/8/19071812Seventh and Eighth Floor and Roof Plans (3)revised 2/18/19071812Sixth, Seventh and Eighth Floor Lighting Plans (3)revised 9/11/19071812Longitudinal and Cross-Sections and Marquise Structural Details (4)revised 2/22/19071812Steam Riser and Water Piping Diagrams (4)revised 12/11/19061812West and South Elevations (5)revised 2/16/19071812East, North and Court Elevations (6)revised 2/18/19071812Details for Lower Stories, South Elevation (7)revised 2/22/19071812Detail for Top Stories, East Half of South Elevation, for Stairs in Rear Area and for Metal Window Frames in Light Court (8)revised 12/11/19061812Detail for Top and Lower Stories of Typical Bays (9)revised 12/11/19061812Detail for Top and Bottom Stories of End Bay, North Elevation (10)revised 12/11/19061812Detail of Marble Work and Plaster Cornice in Hall and Vestibule (11-1/2)undated1812Section A-B, Looking North, and Section thro' Stair, Looking East (12)revised 12/11/19061812Portion of East Elevation of Basement, First and Second-Floor Corridors (13)revised 12/11/19061812Section thro' Stairs between Fourth and Sixth Floors, Looking East, and Miscellaneous Details (14)revised 12/11/19061812Interior Finish in Owen Building above Second Story (49)undated1812Mezzanine, Second and Third Floor Plans (X)undated1812Day Krolik Residence, Job No. 331, Detroit, Michigan1906-1907Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings, undated, except as notedink-on-linen drawings, 17x22-1/2 inchesBasement Plan (1)2 drawings232Transverse Section (5)revised 2/4/1907232West Elevation (7)revised 2/4/1907232East Elevation (9)232Finish Details in Main Hall, Living Room and Dining Room (10)232Interior Details (11)232George G. Booth Residence at Cranbrook, Jobs No. 333 & 333-A, B, D-K, Birmingham, Michigan1907-1908 and 1913-1923George G. Booth Residence by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 333)Survey Document by Mason L. Brown & Co., Civil Engineers, DetroitundatedRed, yellow and black ink drawing on linen, 31x37-1/2 inchesContour Map of Proposed Residence Site for G. G. Booth, Esq., at Cranbrook110Architectural Construction DrawingsundatedInk-on-linen drawings, 23x46Basement Plan (1)4/1/1907revised 6/28/1907110Basement Piping Plan (1A)revised 7/23/1907110First Floor Plan (2)revised 1/6/1908110Second Floor Plan (3)revised 4/11/1908110Third Floor and Roof Plan (4)revised 1/28/1908110Sections on Lines A-B and C-D (5)revised 6/5/1907110South Elevation (6)revised 1/6/1908110North Elevation (7)110East and West Elevations and Section thro' Rear Stairs (8)revised 6/5/1907110Plan of Retaining Walls and Out-Buildings (9)revised 3/2/190830x33-1/2 inches110Elevations and Sections of Garage and Out-Buildings (10)revised 10/8/190726x33-1/2 inches110Details of Wardrobes, Linen Closet, Laundry Cupboard, Butler's and Kitchen Pantries, and Window and Door Trim, etc. (11)22-3/4x27-1/2 inches110Plans of Revised Portion of Second and Third Floors and Roof (15)revised 6/7/190722-1/2x33 inches110Front Elevation and Window Elevations Showing Stonework (19)6/11/1907revised 6/20/190718-1/2x27-1/2 inches110Layout of Terrace (134)26x26 inches110Plan and Details of Junk Garden and Terrace (135)21-1/2x14 inches110Cottage for Gardener for George Booth Residence by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 333-A)Architectural Construction DrawingsundatedInk-on-linen drawings, 12x25-1/4 inchesFoundation and First Floor Plans (1)3/28/1908111Attic and Roof Plan and Section (2)111South and East Elevations (3)111North and West Elevations (4)111Water Tower for George Booth Residence by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 333-B)Architectural Construction Drawing8/3/1908Ink-on-linen drawing, 33-1/2x22-1/2 inchesPlans and Details of Water Tower (1)111Addition to Water Tower for George Booth Residence by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 333-D)Architectural Construction Drawing7/17/1913Ink-on-linen drawing, 24-1/4x23 inchesPlans and Elevations (1)111Addition to Residence for George Booth by Albert Kahn, Architect (Job No. 333-E)Architectural Construction Drawings2/25/1918Ink-on-linen drawings with blue pencil revisions, 25-3/4x42-1/4 to 24-3/4x46 inchesBasement Plan (1)revised 7/11/1918111First Floor Plan (2)revised 8/27/1918111Roof Plan (3)revised 3/4/1918111East Elevation (4)revised 6/20/1918111West and South Elevations (5)revised 4/2/1918111Sections (6)revised 4/2/1918111Details of Library (7)revised 3/4/1918111Details of Sun Room, Office and Work Room, and Hall and Work Room (8)revised 4/2/1918111Detail of Tile Radiator Enclosure in Sun Room (27)10/15/191818-1/4x18-1/2 inches111Mechanical Construction DrawingsInk-on-linen drawingsBasement Plan (1M)2/26/1918revised 7/11/191825-3/4x45-1/2 inches111Sun Room Plan and Sections--Heating System (2M)12/31/191817x30 inches111Addition to Residence for George Booth by Albert Kahn, Architect (Job No. 333-F)Architectural Construction Drawings6/19/1918Ink-on-linen drawings with blue pencil revisions, 18-1/4x301/4inchesBasement Plan (1)revised 7/11/1918112First Floor Plan (2)revised 8/8/1918112Second Floor Plan (3)revised 7/11/1918112Third Floor Plan (4)revised 6/29/1918112West and North Elevations (5)revised 8/8/1918112South Elevation and Section thro' Porch on Line A-A (6)revised 8/8/1918112East Elevation of Dormer for Alcove, Section thro' Porch on Line B-B and Detail of Overhang at Bay (7)revised 8/8/1918112Details of Hall #37 and Main Stairs to Third Floor (8)undated112Interior Details of Chamber #30 (9), undatedrevised 9/14/1918112Interior Details of Dressing Rooms #32 & 35 (10), undatedrevised 2/28/1919112Interior Details of Chamber #33 (11), undatedrevised 9/14/1918112Details of Chamber #33 (12)undated112Details of Chamber #33 (12R)9/13/1918revised 9/26/1918112Details of Baths #31 & 36 (13R), undatedrevised 9/13/1918112Interior Details of Porch (14)undated112Interior Details of Hall #37 (15)undated112South and East Elevations (16)9/11/1918revised 11/21/1918112Details of Fountain Basin (17), rev.10/24/191811/30/1918112Additions to Residence for George Booth by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 333-G)Architectural Construction DrawingAugust 1918Ink-on-linen drawing, 26-1/4x45-3/4 inchesBasement Plan and Terrace Wall Details (1)revised 1/10/1919113Alterations and Additions to Service Wing of Residence for George Booth by Albert Kahn, Architect and Ernest Wilby, Associate (Job No. 333-H)Architectural Construction Drawings, undatedrevised 1/4/1922Ink-on-linen drawings, 28-1/2x35 inchesBasement Plan (1)113

    (not revised)

    First Floor Plan (2)113Second Floor Plan (3)113Third Floor and Roof Plan and Section thro' Common Room Wing (4)113South Elevation (5)113West and South Elevations of Common Room Wing (6)113East Elevation (7)113North Elevation (8)113

    (not revised)

    Interior Elevations and Sections (9)113Interior Elevations (10)113Common Room Details (125)9/5/1919113
    Mechanical Construction Drawing4/28/1919Ink-on-linen drawing, 27-3/4x34-1/2 inchesBasement Plan (2M)113
    Additions to Residence for George Booth by Albert Kahn, Architect (Job No. 333-I)Mechanical Construction Drawings12/12/1922Ink-on-linen drawings, 30x49 inchesBasement Plan (1M)114First Floor Plan (2)114Second Floor Plan (3)114Third Floor Plan (4)114Alterations to Residence for George Booth by Albert Kahn, Architect (Job No. 333-J)Architectural Construction DrawingsPencil-on-vellum drawingsDetail of Bookcases (1)11/7/192321-3/4x18-1/2 inches113Detail of Balustrade for North Terrace (2)11/15/192326-3/4x21 inches113Alterations to Bath Rooms for Residence of George Booth by Albert Kahn, Architect (Job No. 333-K)Architectural Construction Drawing12/6/1923Pencil and red pencil drawing on vellum, 23-1/2x33-3/4 inchesPlans and Elevations of Guest Room Bath and Bath Rooms #37 & 41 (1)revised 1/9/1924113
    Chalmers--Detroit Motor Company (E. R. Thomas--Detroit Company) Factory, Job No. 344 and 344-A and C, Detroit, Michigan1907-1909E. R. Thomas--Detroit Company Factory Building Construction Drawings by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 344)Architectural Drawings5/10/1907ink-on-linen drawings, 19-1/2x57 inchesFoundation Plan (1)56First Floor Plan (2)revised 6/7/190756[Second Floor Plan]56Roof Plan (4)56East and West Elevations (5)56North and South Elevations, Sections, and Details of Main Entrance, Stairs and Sliding Tin Doors (6)revised 6/7/190756Exterior Elevation, Sections of Wall and Column, and Details of Outside Elevator Doors and Outside Doors (7)revised 6/5/190756Typical, Full-Sized Details of Door and Window Frames (8)56Plan of Office and Elevations of Corridors and Partitions (14)revised 8/10/190756E. R. Thomas-Detroit Company Power Building Construction Drawings by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 344-A)Architectural Drawings5/20/1907ink-on-linen drawings, 29x28 inchesPlans of Foundation, First Floor and Roof (1)revised 6/24/1907248North, South, East and West Elevations (2)revised 6/21/1907248Exterior Elevation, Half-Section, and Details of Outside Doors, Coal Doors and Partitions (3)revised 6/8/1907248Typical, Full-Sized Details of Window and Door Frames (4)248Chalmers-Detroit Motor Company Factory Building Construction Drawings by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 344-C)Architectural and Mechanical Drawings4/14/1909ink-on-vellum drawings with pencil notations, 19x56 inches, except as notedPlot Plan (1-A)undated19-1/2x28 inches56Plot Plan (1-B)5/24/190722x28 inches56First Floor Plan (2)revised 12/16/190956Second Floor Plan (3)56Third Floor Plan (4)revised 7/6/190956Full-Sized Detail of Box Frames (9)56First Floor Plan of Steam Heating (1-M)undated56Map of Underground of The Chalmers Motor Company, Detroit5 prints (black-and-white; 7-1/2x9-1/2-inch), 2 drawings (one ink-on-linen and one blueprint-on-linen; 28x71 inches and 29-1/2x72-1/2 inches, respectively)undated56Mergenthaler Linotype Company Office Building, Job No. 349, Brooklyn, New York1907Construction Drawings, Architectural27 drawings331Mergenthaler Linotype Company Addition, Job No. 349-A, Brooklyn, New York1912Construction Drawings, Architectural and Plumbing10 drawings332Standard Auto Company Garage and Showroom, Job No. 355, Woodward and Garfield Avenues, Detroit, Michigan1907-1908Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawingsink-on-linen drawings, 28x35 inches2410Foundation Plan (1)9/28/19072410First Floor Plan (2)revised 3/2/19082410Plan of Heating and Lighting and Riser Diagrams (2-A)revised 3/2/19082410Roof Plan (3)revised 2/13/19082410Woodward and Garfield Avenues Elevations and South and East Elevations (4)revised 3/2/19082410Transverse and Longitudinal Sections and Miscellaneous Sections and Details (5)revised 2/13/19082410Detail of Woodward Avenue Front (6)revised 10/25/19072410Part Elevations of Woodward Avenue Front and Section, Showing Anchors for Tops of Piers (7)2410Elevations of East and West Portions on Garfield Avenue (8)2410Interior Elevations of Showroom and Offices (9)revised 3/2/19082410William L. Clements Residence, Job No. 362 and 362-D, Bay City, Michigan1908-1909 and 1924Design Development Drawings by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 362)Architectural DrawingsundatedInk-on-linen drawingsFirst Floor Plan14-1/4x24-3/4 inches181Second Floor Plan14x24-1/4 inches181First Floor Plan25-1/2x43 inches181Second Floor Plan26-1/4x43-1/2 inches181Construction Drawings by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 362)Architectural DrawingsMarch 1908Ink-on-linen drawings with pencil notations, 24-3/4x43-1/2 to 26-1/2x43-1/2 inchesPlot Plan (1-A)revised 7/3/1908181Basement Plan (1)revised 7/17/1908181First Floor Plan (2)revised 7/17/1908181Second Floor Plan (3)revised 7/17/1908181Third Floor and Roof Plan and Details of Pantry Fittings (4)revised 7/17/1908181Sections (5)revised 5/18/1908181South Elevation (6)181East and West Elevations (7)revised 5/18/1908181North Elevation (8)revised 5/18/1908181Interior Details (9)181Details of Living Room, Dining Room, Drawing Room, Den and Chambers (10)revised 5/18/1908181Elevations of Music Room and Breakfast Room (11)revised 5/18/1908181North Elevation of Music Room and Details of Bathrooms and Finish on Second Floor (12)revised 5/18/1908181Window Details (13)181Plans, Elevations and Sections of Stable (14)revised 7/3/1908181Details of Alterations to Music Swell Box and Revised Third Floor Plan and Portion of Elevations (15)revised 9/3/1908181Plan and Section of Dining Room Bay (24)18-1/2x12 inches181Details for Pergola (95)6/18/190915x25 inches181Construction Drawing by Albert Kahn, Inc., Architects (Job No. 362-D)Architectural Drawing8/1/1924Pencil-on-linen drawing, 21-1/4x25-1/4 inchesDetails of Changes in Basement Library (1)181Henry B. Joy Residence ("Fairacres"), Job No. 368 and 368-A, F, G, J, L, M & N, Grosse Pointe, Michigan1908-19091914-191519261928Henry B. Joy Residence Drawings by Albert Kahn, Architect, Ernest Wilby, Associate (Job No 368)Architectural Design Development DrawingsundatedInk-on-linen drawings with pencil sketching and notationsSite Plan17-3/4x30-1/4 inches164Basement Plan24x44-3/4 inches164Architectural Construction Drawings8/22/1908Ink-on-linen drawings with pencil notations, 24-1/2x45 inchesBasement Plan (1)revised 7/2/1909164First Floor Plan (2)revised 1/8/1909164Second Floor Plan (3)revised 1/8/1909164Third Floor Plan (4)revised 1/8/1909164Section on Line "A-B," Section thro' Main Cornice and Details of Mantels and Windows (5)undated164East and West Elevations (6)undated164Main Hall Details (9)revised 1/8/1909164Details of Terrace Walls and Walks at East Front of House (14)7/18/190811x29-1/2 inches164Gate and Fence Details (94)revised 12/7/190915x23 inches164Details of Fences on East, North and West Property Lines, Entrances and Barnyard30-3/4x48-1/2 inches164

    (not numbered or dated due to linen damage)

    Mechanical Construction DrawingundatedInk-on-linen drawing with pencil sketching, 31-1/2x62-1/2 inchesPlot Plan Showing Sewer, Water amd Drain Pipes164

    (not numbered due to linen damage)

    Henry B. Joy Residence Garage Drawings by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 368-A)Architectural Construction DrawingsInk-on-linen drawings with pencil notations, 18-1/4x28-1/2 inchesPlans of Foundation and First and Second Floors (1)revised 6/19/1909165Plans of First and Second Floors (1)7/9/190814-1/4x27 inches165Elevations and Sections (2)3/16/1909165Corner of East Elevation Showing Detail of Brick Work and Detail of Truss "A" (3)3/16/1909165Corner of West Elevation, Detail of Truss "B" and Section thru' Truss (4)undated165Design for Alternating Figure-Elevations and Cross-Section (5)3/16/1909165Details of Truss Reinforcement (13)undated19-1/4x34-1/4 inches165Henry B. Joy Residence Boat House by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 368 and 368-F)Architectural Construction Drawings of Boat House (Job 368)undatedBlueprints, 18x22 to 20x27-1/4 inchesSite Plan165Foundation Plan2 prints165Architectural Construction Drawings of Addition to Boat House (Job No. 368-F)Ink and pencil drawings on tracing paper with notations, 16x27-1/2 to 15-1/4x32 inchesFoundation Plan and Section thru' Dock (1)11/3/1914165Floor Plan (2)undated165Roof Plan (3)undated165North and South Elevation (4)undated165East Elevation (5)undated165Transverse Section and Section of Cornice (6)12/1/1914165Section thru' Saddle between Old and New Boat House (7)undated165Roof Framing Plan and Details of Framing (8)11/4/1914165New Concrete Boat Dock (Job No. 368-G)Architectural Construction Drawing2/24/1915revised 3/1/1915Ink-on-linen drawing, 18-1/2x22-1/4 inchesPlan of New Concrete Dock and Section thro' Beam Where New Concrete Dock Adjoins Present Boat House (1)165Structural Construction Drawing1/2/1915revised 3/1/1915Ink-on-linen drawing, 19x29-1/2 inchesSection "AA" and Details of Beams "A" and "B" (1-S)165Alterations to Garage by Albert Kahn, Inc., Architects (Job No. 368-J)Architectural Construction Drawings3/17/1926Pencil drawings on tracing paper, 16x28-1/2 inchesPlans of First and Second Floors and Roof (1)165North and West Elevations, Details of Balcony and Stair and Wardrobe in Chamber #1, and Section thru' Truss "B" and Rear Wall (2)165Structural Construction Drawing3/9/1926Pencil drawing on tracing paper, 16-1/4x29 inchesAlteration and Reinforcement of Truss "B" (1-S)165Mechanical Construction Drawing3/26/1926Ink-on-linen drawing, 16-1/4x29-1/4 inchesPlans of First and Second Floors (1-M)165Office Addition to Residence by Albert Kahn, Inc., Architects (Job No. 368-L)Architectural Construction DrawingsundatedFoundation, First Floor and Roof Plans, South and West Elevations, Sections and Details (1)Pencil and ink drawing on vellum, 20-1/2x30-1/4 inches165Elevation and Details of Additional Shelving and New Cabinet in Hall (2)Pencil and ink drawing on tracing paper, 9-3/4x22 inches165New Drive for Residence by Albert Kahn, Inc., Architects (Job No. 368-M)Architectural Construction Drawing7/20/1928Ink-on-linen drawing, 23x37 inchesLayout of New Drive and Details of Catch Basins and Curb (1)165New Fence on Grosse Pointe Boulevard for Residence by Albert Kahn, Inc., Architects (Job No. 368-N)Architectural Construction Drawings10/18/1928Pencil and ink drawings on tracing paper and vellumPlan Showing New Fence (1)29-1/4x39-1/2 inches165Plans and Elevations of Fence (2)17-3/4x25 inches165Inscription on Posts (3)10-3/4x26 inches165
    Ford Motor Company, Plant, Job No. 375, Highland, Park, Michigan1908-1909Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateundatedInk-on-linen drawings, 33x63 inchesArchitectural DrawingsPlot Plan2 drawings (33x47 inches and 33x39 inches)1Foundation Plan, North and South Halves (1), revised 9/8/1908 Heating revised 9/29/1909revised 9/29/1909revised 9/8/19081First Floor Plan, North and South Halves (2), revised 9/8/1908 Heating revised 9/29/1909revised 9/29/1909revised 9/8/19081Second Floor Plan, North and South Halves (3), revised 9/8/1908 Heating revised 9/29/19091 drawings, 1 prints (electrostatic)revised 9/29/1909revised 9/8/19081Third Floor Plan, North and South Halves (4), Heatingrevised 9/29/19091Fourth Floor Plan, North and South Halves (5), Heatingrevised 9/29/19091Roof Plan, North and South Halves (6)1Front Elevation, North and South Halves (7)1 drawings, 1 prints (electrostatic)1Transverse Section, Part Longitudinal Section, Section thru' Platform and Reservoir, Section A-A, and North and South Elevations (8)1 drawings, 1 prints (electrostatic)revised 9/14/19081Rear Elevation, North and South Halves (9)1Exterior Details of North and West Elevations (10)1 drawings, 1 prints (electrostatic)1Details of Rear Wall and Doors, Plans of Stairs and Section thru' Stairs (11)1Typical Detail for Windows with Plank Frames, Typical Double-Hung Windows in 8" HB Walls, and Section thru' Elevator Shafts #1, #2 and #5 (12)1First Floor Plan Showing Steel Frame, Front Elevation Showing Steel Frame of West Elevation and Typical Details of Steel Frame (13)revised 7/15/19081Details of Ford Motor Company Sign (27)5/22/190934x24 inches1Ford Motor Company, Power Building, Job No. 375-A, Highland Park, Michigan1909Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateInk-on-linen drawings, 23x29 inchesArchitectural DrawingsPlans of Foundation and Drainage, First Floor and Roof, and Transverse Section (1)4/15/1909revised 8/25/190921North, South and West Elevations, Detail of Iron Stairs and Detail of Steel Girders, Brackets and Columns (2)4/15/190921Plans and Elevations of North and South Doors, Sections A-A, B-B & C-C and Plan and Elevation of Corner Pier (3)4/15/190921Revised Elevations and Section-This Sheet to Supersede Parts of Sheets No. 1 & No. 2 (12)7/13/190921Revised Exterior Detail-This Sheet to Supersede Sheet No. 3 (13)7/10/190921Plan, Elevations and Section A-A of Engine Foundations (14)6/18/1909revised 7/8/190928 x 39 inches21Ford Motor Company, Administration Building, Job No. 375-D, Highland Park, Michigan1909-1910Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateInk-on-linen drawings, 28x44 inchesArchitectural DrawingsPlot Plan (1)2/12/1910revised 6/24/191022Interior Finish, Basement Plan (1-A), 18x44 inches8/2/191022Plans and Sections of Tunnel between Power and Main Building and of Hose and Hydrant House (1-B)7/26/190917x21 inches22Foundation and Basement Plans (2)2/12/1910revised 7/12/191022First Floor Plan (2-A)8/12/191018x44 inches22First and Second Floor Plans (3)22

    (date not visible due to linen damage)

    Second Floor Plan (3-A)8/12/191018x44 inches22Roof Plan, North and South Elevations and Sections (4)2/12/191022Details of Room #105, Vestibule and North and South Stairs (5-A)8/12/191018x44 inches22Detail of End Bay-West Elevation, Detail of Main Entrance, and Typical Riser Diagram and Radiator Connections (6)2/12/191022North Elevation of Lobby and Section thru' Stair Landing (6-A)8/12/191018x44 inches22Typical Details for Windows on North and South Elevations and Typical Details of North and South Elevation-Corner Bay (7)2/12/191022Typical Detail of First and Second Story Partitions and Detail of Blind Windows, Door and Cast Iron Stairs (7-A)8/12/191018x44 inches22Detail of Entrance-East Elevation, and Elevation and Detail of Rear End Bay (8)2/12/191022Typical Section thru' Column above Second Floor Line, Sections of Hot Air Ducts and Plan of Hot Air Duct at Corners (8-A)8/12/191018x44 inches22Plans of Main Staircase and Ceiling over Lobby (9-A)8/12/191018x44 inches22Pipe Connections at Gas House (27)5/17/1910Red and black ink drawing on vellum, 16x28 inches22Plan, Elevation and Sections thru' Bridge at Factory and Office Buildings and Full-Size Detail of Fenestra Sash and Chanel [sic] [of] Iron Door Frame (31)9/28/191025x46 inches22Detail of Bridge Connecting Office and Factory Building (31)11/2/191025x37 inches22Plan and Sections of Desk in Room #223 (48)undated23x18 inches22
    Ford Motor Company, Extension No. 29 and 30, Job No. 375-W, Highland Park, Michigan1915-1916Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssocateInk-on-linen drawings with pencil notations, 23x64 inchesArchitectural Drawings1/26/1915Plot Plan and Details of Bridge over John R. Street between Present and New Buildings (1)revised 3/6/191624Foundation Plan (2)revised 3/6/191624First Floor Plan (3)revised 3/11/191624Second Floor Plan (4)revised 3/11/191624Fifth Floor Plan (5)revised 3/11/191624Sixth Floor Plan (6)revised 3/11/191624Roof Plan (7)revised 7/12/191624North Elevation and Elevation of North Side of Craneway (8)revised 3/6/191624First, Third and Fourth Floor Plans, John R. Street End, and Elevation of South Side of Craneway (9)revised 3/11/191624East Elevation and Cross-Section (10)revised 3/6/191624John R. Street Elevation, Part North Elevation and Part Longitudinal Section thro' Craneway (11)revised 3/6/191624Typical Details of Elevators, Section thro' Stairs, Plan of Fan Rooms No. 2, 3 & 4, and Section "A-A" (12)revised 3/6/191624Miscellaneous Details and Sections (13)24

    (not dated due to linen damage)

    Detail of Doors at East End of Craneway (14)revised 3/6/191624Plan of Machine Room and Revised Plan of Penthouse and Pit for Elevator No. 8 (21)3/22/1916revised 5/23/191620-1/4x18-3/4 inches24Elevation and Revised Plan of East End of Craneway Showing Location of Door at Center of Present Railroad Track (23)4/5/191616-1/4x25-1/4 inches24Revised Detail of Rails for Balconies in Craneways (26)3/29/191616x23 inches24Revisions to Fan Room No. 8 (28)6/22/191613-3/4x28-1/4 inches24
    Structural DrawingsColumn Schedule (1-S), revised3/14/19161/20/191624Sixth Floor Plan, Beam Schedule and Spandrel Details (2-S)1/22/1916revised 3/6/191624Roof Plan (3-S)1/20/1916revised 2/21/191624Details of Structural Steel Framing (4-S)1/21/1916revised 3/6/191624Part Plan of Roof, South Wing, Part Plan of Typical Floor Showing Placing of Steel, and Detail of Typical Roof Spandrel (5-S)1/22/1916revised 3/6/191624Roof Framing Plan (6-S)3/6/1916revised 3/9/191624Typical Part Plan of Roof and Half-Section thru' Skylight over Craneway (7-S)3/6/1916revised 3/9/191624Plan and Elevation of Footing (8-S)3/14/191624Mechanical DrawingsPlan of Fan Apparatus, Elevation at Apparatus and Section thru' Duct (1-M)1/25/1916revised 3/6/191624Drainage Plan (2-M)3/14/191624
    Delta Gamma House, University of Michigan, Job No. 376, Ann Arbor, Michigan1911Construction DrawingsArchitectural Drawingsrevised 3/30/1911Ink-on linen drawings with pencil notations, 17-1/2x27-1/2 inchesBasement Plan (1)revised 5/20/19111312First Floor Plan (2)Ink and pencil drawing on vellum, 15-1/2x26-1/2 inches1312Second Floor Plan (3)revised 5/20/19111312Third Floor and Roof Plan and Details of Linen Cupboard and Typical Wardrobe(4)1312South Elevation (5)undated1312East and West Elevations (6)1312North Elevation and Typical Detail of Wood Partitions in Bath Room (7)1312Transverse Section and Details of Living Room Mantel and Door in Vestibule (8)1312
    Job No. 411-494James C. Couzens Residence, Job No. 411 & 411-C, Second and Longfellow Avenues, Detroit, Michigan1909-1910 and 1922Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings6/12/1909ink-on-linen drawings with pencil notations, six drawn by Albert Kahn, 14-1/2x18-1/2 to 23-3/4x31-1/2 inchesPlot Plan (1)191Basement Plan (2)revised 7/30/1909191First Floor Plan (3)191Second Floor Plan (4)revised 4/20/1910191Third Floor and Roof Plan (5), revised12/14/1909191South Elevation (6)191East Elevation (7)191West Elevation (8)191North Elevation (9)191Cross-Section and Window Details (10)191Plans, Elevations, Section and Details of Garage (11)6/16/1909revised 4/15/1910191Details of Garden Walls, Fence, Gates and Pergola (12)191Details of Closets, Wardrobes, Mantels and Bookcases (13)191Details of Butler's Pantry, Kitchen and Fruit Cellar Fittings (14)191Plot Plan of Gardens, Walls, Steps and Fence (15)6/22/1909191Details of West Entrance (16)7/14/1909191Stone Details (17)7/15/1909revised 7/20/1909191Detail for Structural Iron in Bays (25)7/21/1909191Main Hall Details (45)11/2/1909191Main Hall Details (46)11/2/1909191Billiard Room Details (47)11/2/1909191Dining Room Details (48)2 drawings (one marked "void")11/6/1909revised 1/4/1910191Reception Room Details (50)11/2/1909191Living Room Details (51)11/2/1909191Details of Sink in Butler's Pantry (54)11/22/1909191Details of Drawers in Play Room, Store Room and Rooms #300 & 306 (58)undated191Plot Plan Showing Drainage and Part Elevations of Columns and Wall Piers (59)undated191Plot Plan (97)4/30/1910191Alterations and Additions to Bath Room #216 (Job No. 411-C, #1)7/24/1922pencil drawing on tracing paper191Alvan T. Fuller Service Building (Packard), Job Nos. 413 & 413-A, Commonwealth Avenue and Malvern Street, Boston, Massachusetts1909-1910 and 1916Construction Drawings for Original Building (Job. No 413) by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings, except as noted5/15/1909ink-on-linen drawings, 27x50-1/2 inches, except as notedPlot Plan (1)53Foundation Plan (2)revised 8/3/190953First and Second Floor Plans (3)revised 8/3/190953Third and Fourth Floor Plans (4)revised 10/1/190953Roof Plan, Elevations and Transverse Section (5)revised 10/1/190953East and Malvern Street Elevations (6)revised 10/2/190953Details of Front and Side Elevations (7)53

    (not dated due to linen damage)

    Elevations and Sections of Elevators and Stairways (8)revised 8/3/190953Miscellaneous Details (9)53Plan, Elevation and Details of Fence for Commonwealth Avenue (12)5/26/1909revised 1/24/191021-3/4x32-1/4 inches53

    (drawn by Ernest Wilby)

    Plot Plan (48)3/10/191024-1/4x29-1/2 inches53Full-Scale Detail of Typical Outside Window Frames26-1/4x48-3/4 inches53

    (not numbered or dated due to linen damage)

    Construction Drawings for Addition to Alvan T. Fuller Service Building (Job No. 413-A) by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings5/13/1916ink-on-linen drawings, 28-1/4x47-1/4 to 29-1/2x47-1/2 inchesBasement and Footing Plan (1)revised 8/12/1916233First Floor Plan (2)revised 8/12/1916233Second Floor Plan and Details (3)revised 8/12/1916233Third Floor Plan and Riser Diagram (4)revised 8/12/1916233Fourth Floor Plan (5)revised 8/12/1916233Roof Plan (6)233Elevations (7)233East and West Elevations (8)revised 7/24/1916233Exterior Details (9)233Skylight, Stairway and Interior Details (10)revised 6/5/1916233Structural Drawings, except as noted5/23/1916ink-on-linen drawings, 28-1/2x46-1/4 inches, except as notedFooting and Column Schedules and Details (1-S)5/4/1916revised 7/27/191632x36 inches233Typical Floor Plan and Beam Schedule (2-S)233Beam and Column Schedules and Details (3-S)revised 7/27/1916233
    Senator T. W. Palmer Store and Office Building, Job No. 417, Washington Boulevard, Detroit, Michigan1909-1910Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings10/20/1909ink-on-linen drawings with pencil notations, 23-1/4x30 to 22-1/2x34 inchesExcavation and Drainage Plan (1-A)9/22/1909revised 10/8/190913-1/2x18 inches224Foundation and Basement Plans (1)revised 6/1/1910224First and Second Floor Plans (2)224First and Second Floor Plans (2)11/5/1909revised 6/1/1910224Third Floor Plan and Details of Service Stairway and Steel Column in Show Windows (2-A)revised 6/1/1910224Fourth and Fifth Floor Plans (3)224Fourth and Fifth Floor Plans (3)11/5/1909revised 6/6/1910224Roof and Sixth Floor Plans (4)revised 6/6/1910224Front and Rear Elevations (5)revised 1/11/1910224North and South Elevations (6)1/11/1910224Section and Elevations of North and South Light Courts (7)revised 1/11/1910224Details of Entrance and Marquise (8)11/2/1909revised 11/2/1910224Elevation of Show Window and Detail of Upper Portion of Front (9)224Details of Doors, Windows, Flag Pole Bracing and Water Closet Partitions (10)224Details of First Story Hall, Vestibule and Stairs (11)revised 1/11/1910224Details of First Story Hall, Vestibule and Stairs (12)224Second and Third Floor Plans (13)11/2/1909224First Floor Plan and Detail of Steel Columns (14)11/2/1909224Details of Second and Third Story Glass Partitions in Corridors (51)11/11/1910revised 11/17/1910224Plan of Offices on First and Second Floors (53)undated224Horace Elgin Dodge Residence, Job No. 423, Grosse Pointe, Michigan1910-1911Construction Drawings by Albert Kahn, Architect, Ernest Wilby, Associate3/30/1910Ink-on-linen drawings, 27x39 inchesArchitectural DrawingsBasement Plan (1)revised 12/5/191023Design for Retaining Wall in Front of Property (1-A)revised 6/18/191016x19 inches23Basement Plan (1-B)revised 9/27/191023Excavation Plan (1-B)23Plot Plan (1-C)23First Floor Plan (2)revised 12/5/191023Second Floor Plan (3)revised 12/5/191023Third Floor and Roof Plan (4)revised 12/5/191023Section on Line A-A, Details for Vestibule, Door Frame with Side Lights, Typical Eaves and Box Windows and Section thro' Living Room Bay (5)23Front Elevation (6)23East Elevation and Details for Main Entrance Porch (7)23West Elevation, Section on Line B-B, Details for Bath Room No 206, and Typical Door, Transom, Window Stool, Chair Rail and Door and Window Trim (8)23South Elevation, Detail for Porch Ceiling and Removable Enclosure for South Porch (9)23Main Hall Details (10)2 drawingsrevised 9/21/191023Main Hall Details (10-A)9/22/1910revised 12/28/191023Dining Room and Living Room Details (11)revised 12/10/191023Details for Den, Main Stair, Reception Room, Sewing Room Cabinet, Nook in Chamber No. 209 and Mantel in Chamber No. 202 and Dining Room Ceiling Plan (12)23Fittings for Butler's Pantry, Pantry, Closets, Cabinets, Wine Rack and Wardrobes (13)23Revised Detail for South Porch (14)16x21 inches23Details for Sinks in Butler's Pantry (40)12/1/191016x26 inches23Details for Main Entrance (105)6/11/191023Boat House Plan and Roof Plan (129)4/29/191120x30 inches23Boat House South, North and West Elevations and Section (130)4/29/191120x28 inches23Hugh Chalmers Residence and Garage, Jobs No. 432 & 432-A, 275 Iroquois Avenue, Indian Village, Detroit, Michigan1909-1910Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings of Residence (Job No. 432), except as noted10/9/1909ink-on-linen drawings with pencil notations, 19x27-3/4 inches, except as notedPlot Plan (1-A)undated235Basement Plan (1)revised 12/18/1909235First Floor Plan (2)235Second Floor Plan (3)revised 12/18/1909235Third Floor and Roof Plan (4)235East Elevation (5)revised 11/19/1909235South Elevation (6)revised 11/19/1909235West Elevation (7)revised 11/19/1909235North Elevation (8)revised 11/19/1909235Transverse Section (9)revised 11/19/1909235Miscellaneous Details (10)235Details of Kitchen and Butler's Pantries and of Wardrobes and Cupboards (11)235Details of Main Hall and Vestibule (12)235Details of Main Hall and Mantels (13)235Dining Room Details (14)235Living Room and Den Details (15)235Front Entrance Elevation (25)undated24x29 inches235Plot Plan (61)6/20/1910revised 8/11/191023-1/2x30 inches235Details of Garden Wall, Pergola and Fence in Garden (62)6/20/1910revised 8/11/191024x30 inches235Architectural Drawings of Garage/Barn (Job No. 432-A)9/22/1909pencil drawings on tracing paper, 13x17-1/2 inchesFoundation Plan (1)revised 9/25/1909235First Floor Plan (2)revised 9/25/1909235Second Floor Plan (3)revised 9/25/1909235Front Elevation (4)235End Elevation (5)235Mahoning National Bank, Addition, Job No. 442-B, Youngstown, Ohio1924Construction Drawings, Architectural19 drawings368Mahoning National Bank, Addition, Job No. 442-B, Youngstown, Ohio1924Construction Drawings, Structural and Mechanical20 drawings369Mahoning National Bank, Additions, Stores, Alterations to Basement, Job No. 442-C, 442-D, 442-E, 442-F, 442-H, 442-J, Youngstown, Ohio1924-1931Construction Drawings, Architectural, Structural, and Mechanical15 drawings3610Ford Motor Company, Service Building, Job No. 444, Omaha, Nebraska1910Construction Drawings, Architectural7 drawings3611Grabowsky Power Wagon Company, Factory Building, Job No. 446 and 446-B & C, Detroit, Michigan1910-1911Factory Construction Drawings by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 466)Architectural Drawings, except as noted1/17/1910ink-on-linen drawings, 17-1/4x40-1/2 inches, except as notedFoundation Plan (1)revised 6/7/1910249Foundation Plan (1)revised 7/12/1911249Plot Plan (1-A)1/19/1910revised 3/30/1910249First Floor Plan (2)revised 6/7/1910249Second Floor Plan (3)revised 6/7/1910249Roof Plan (4)revised 4/6/1910249East and West Elevations (5)revised 10/21/1910249North and South Elevations, Transverse Section, Typical Elevation of Half-Bay, and Details of Interior Columns and Window Frames (6)revised 6/20/1910249Typical Third and Fourth Floor Plan (7)revised 6/25/1910249North and South Elevations and Transverse Section (8)revised 3/30/1910249East Elevation (9)revised 4/6/1910249West Elevation (10)revised 3/25/1910249Plot Plan Showing Ground, Buildings and Tracks of Grabowsky Power Wagon Co. (10)5/4/1910revised 6/7/191023-1/4x27-1/2 inches249Typical Details of Stairs, Partitions and Doors, etc. (11)revised 4/6/1910249Section of Fire Escape (12)undated16-1/2x20 inches249Power Building Construction Drawings by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 446-B)Architectural Drawingsink-on-linen drawingsPlans, Elevations, Section and Detail of Engine Foundation (1)6/11/1910revised 7/12/191119-1/2x34 inches249Plans Showing Arrangement of Engine, Boilers and Piping (1-A)6/7/1910revised 8/11/191026-1/2x26-1/2 inches249Detail of Boiler Setting (2)6/14/191019-1/4x34 inches249Dry Kiln Construction Drawing by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 446-C)Architectural Drawing8/2/1911ink-on-linen drawing, 21-1/4x31-1/2 inchesPlans, Elevation and Sections (1)249Dodge Brothers, Factory Buildings, Job Nos. 449, 449-A, B, E, F & G, Detroit, Michigan1910-1913Construction Drawings of Factory Building (Job No. 449) by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings, except as noted5/21/1910ink-on-linen drawings with pencil notations, 20x57-1/4 to 21x58 inches, except as notedPlot Plan (1)5/28/191054West Half of Foundation Plan (2)revised 7/21/191054East Half of Foundation Plan (3)revised 7/21/191054West Half of First Floor Plan (4)revised 6/21/191054East Half of First Floor Plan (5)revised 5/28/191054West Half of Second Floor Plan (6)revised 12/21/191054East Half of Second Floor Plan (7)revised 5/28/191054West Half of Third Floor Plan (8)revised 6/21/191054East Half of Third Floor Plan (9)revised 5/28/191054West Half of Fourth Floor Plan (10)revised 6/21/191054East Half of Fourth Floor Plan (11)revised 6/13/191054West Elevation (12)revised 6/21/191054East Elevation of Court (13)revised 6/29/191054East Elevation (14)revised 6/21/191054North and South Elevations of Court (15)revised 6/29/191054South Elevation and Roof Plan (16)revised 9/29/191054Typical Details of Front and Rear Elevations and Court (17)54Miscellaneous Details (18)54Bridge and Platform Details (19)6/10/191054Site Plan for Pavement for Factory (33)3/27/191131-1/2x43-1/2 inches54Details for Bridge Enclosure at Machine Shop (37)revised 10/6/191116-1/4x23-1/2 inches54Details for Changes to Windows (38)10/2/1911revised 11/10/191119-1/4x27-1/4 inches54Plan of Stock Room (39)1/16/191326x44-3/4 inches54Construction Drawings of Blacksmith (Forge) Shop at Dodge Factory (Job No. 449-A) by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings, except as noted6/11/1910ink-on-linen drawings with pencil notations, 20x58 inches, except as notedFoundation Plan (1)5/23/1910revised 9/20/191055Floor Plan (2)revised 10/24/191055East and West Elevations (3)55North and South Elevations, Sections and Roof Plan (4)revised 10/8/191055Details of Hammer Foundations, Outside Doors, Window Frames and Office Partitions (5)6/2/1910revised 6/11/191055Plan, Elevation and Section of Office and Machine Room at North End of Blacksmith Shop (11)12/16/191018x23-1/2 inches55Structural Drawings, except as noted5/17/1910ink-on-linen drawings with pencil notations, 19-1/2x58 inches, except as notedSide and End Elevations and Section (1-S)55South Elevation (1-S-A)6/27/191019x29 inches55Roof Plan (2-S)55Construction Drawings of Power Building at Dodge Factory (Job No. 449-B) by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings6/16/1910ink-on-linen drawings with pencil notations, 18-1/2x24 inches, except as notedFoundation Plan (1)revised 7/13/1910236Floor Plan (2)revised 10/31/1910236Roof Plan (3)revised 7/21/1910236East and West Elevations (4)revised 10/31/1910236North and South Elevations (5)revised 7/21/1910236Cross-Section and Miscellaneous Details (6)revised 7/21/1910236Typical Half-Bay Exterior Elevation and Details of Doors and Iron Stairs (7)236Roof Framing Plan (8)236Cross-Section and Detail of Steel Column and Girder (9)236Details of Concrete Foundation for Chimney (10)undated14x21 inches236Plan, Elevation and Section of Support for Crane Beam (17)9/29/191019-1/2x19 inches236Revised Details of Stairs at South Side of Engine Room (18)11/16/1910revised 11/22/191012-1/4x17 inches236Piping Plan (1-A)9/7/1910revised 10/31/191033x39-1/2 inches236Cross-Sections Showing Tunnel (2-A)9/9/1910revised 10/31/191033x39-1/2 inches236Plot Plan (3-A)9/9/1910revised 10/31/191032x39-1/2 inches236Details of Britchen Smoke Connections, Ladders and Runway (4-A)8/24/1910revised 9/6/191032-3/4x39-1/2 inches236Plan of Outlets for Wiring and Gables for Switch Board (5-A)revised 8/29/191018x29 inches236Interior Elevation and Details of Window in Boiler Room (8-A)undated18-1/4x23 inches236Plan of Trolley Hoistundated7-1/2x10 inches236Construction Drawings of Office Building at Dodge Factory (Job No. 449-E) by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings, except as noted10/15/1910ink-on-linen drawings with pencil notations, 14-1/4x21-1/4 to 15x21-1/2 inches, except as notedFoundation Plan (1)undated237First Floor Plan (2)237Second Floor Plan (3)revised 3/13/1911237Roof Plan (4)237Front Elevation (5)237North and South Elevations (6)237Rear Elevation (7)237Section A-A and Interior Elevations (8)237Miscellaneous Details (9)237Detail of Main Entrance (10)237Section through Reception Room and Corridor, Second Floor, and Interior Elevations (11)237Details of Rear Stair Hall and Office No. 214 (12)237Structural Floor Plan, Roof Plan and Elevation (13)237Details of Bridge Connecting Office and Factory Building (13)11/4/191019-1/2x32-1/2 inches237Construction Drawing of Watchman's House at Dodge Factory (Job No. 449-F) by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawing9/26/1911ink-on-linen drawing, 18x27 inchesPlan, Elevations and Sections (1)revised 11/17/1911237Construction Drawings of Blacksmith Shop and Sheds at Dodge Factory (Job No. 449-G) by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings, 9/28/1911 revised 10/10/1911 except as noted9/28/1911revised 10/10/1911ink-on-linen drawings with pencil notations, 21-1/2x55 to 22x56 inchesFoundation Plan and Structural Details (1)9/16/1911revised 4/6/191255Plot Plan (1-A)55First Floor and Framing Plan and Roof Plan (2)55East and West Elevations (3)55North and South Elevations and Elevations in Court (4)55Sections, Framing for North and South Elevations, and Detail of Typical Door, South Elevation (5)revised 11/17/191155Plan of Shed #1 and Miscellaneous Sections (6)2 drawings (one "superseded")55Hudson Motor Car Company, Factory Buildings, Job No. 450 & 450-A, Detroit, Michigan1910Construction Drawings of Buildings #2, 3 & 5 (Job No. 450) by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings, except as noted5/16/1910ink-on-linen drawings with pencil notations, 34x41 inches and 19-1/2x45 inches, except as notedGeneral Plan of Hudson Motor Car Company Buildingsundated25-3/4x40-1/4 inches241General Plan of Hudson Motor Car Company Buildingsundated26x41 inches241Site Plan (1)revised 8/18/1910241First Floor Plan (2)revised 11/10/1910241Second Floor Plan (3)revised 11/10/1910241General Roof Plan (4)241Foundation Plan of Ends of Buildings (5)revised 8/17/1910241First Floor Plan of Ends of Buildings (6)revised 11/10/1910241Front and Rear Elevations of East Half of Building # 2 (7)241Front and Rear Elevations of West Half of Building # 2 (8)241East and West Elevations of Building # 3 (9)241East and West Elevations of Building # 5 (10)241Elevations of Buildings # 2, 3, & 5 and Detail of Gates at Driveway (11)241Details of Stairs, Doors and Elevator (12)5/15/1910revised 6/20/1910241Details of Window Frames and Bridge between Buildings # 1 & 2 (13)4/1/1910241Detail of End Pavilion and Parapet Wall (21)4/1/1910241Miscellaneous Details (23)4/1/1910241Construction Drawings of Office Building for Hudson Motor Car Co. (Job 450-A) by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings4/7/1910ink-on-linen drawings with pencil notations, 19x32-1/2 inchesFoundation Plan and Footing Details (1)revised 4/20/1910242First Floor Plan (2)revised 8/22/1910242Second Floor Plan (3)revised 8/22/1910242Roof Plan (4)242North and South Elevations (5)242East Elevation and Sections (6)242Detail of End Bay (7)242Details of Main and Rear Entrances and of Corner of Terrace Steps (8)242Interior Elevations of Lobby and Miscellaneous Details (9)242Gramm Motor Car Company, Factory Building, Job No. 453, Bowling Green, Ohio1910Construction Drawings, Architectural9 drawings3612Ford Motor Company, Service ("Boulevard") Building, Job Nos. 462 & 462-A, C & D, Grand Boulevard and Woodward Avenue, Detroit, Michigan1910-1918Ford Motor Company Service Building (Job No. 462)Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings4/16/1910revised 6/8/1910ink-on-linen drawings with pencil notations, 25x25 inchesFooting Plan (1)221Basement Plan (2)221First Floor Plan (3)revised 10/7/1910221Second Floor Plan (4)revised 7/22/1910221Third Floor Plan (5)revised 7/22/1910221Roof Plan (6)revised 9/29/1910221Woodward Avenue and Grand Boulevard Elevations (7)221North and East Elevations (8)221Cross-Section (9)221Details of Typical Windows on Top Story and East Elevation (10)221Details of Typical Front Bay and Garage Windows and Doors (11)221Miscellaneous Details (12)221Details at Office, Garage and Show Room Entrances (13)25x29 inches221Details of Steel Columns, First to Third Floors (14)6/8/1910revised 7/1/191022x36 inches221Ceiling Plans and Interior Elevations (15)9/23/191026x34 inches221Ford Motor Company Service Building Addition (Job No. 462-A, C & D)Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings (Job 462-A)5/5/1913ink-on-linen drawings with pencil notations, 22-3/4x45 to 23x46 inchesExcavation Plan (1-A)5/1/1913revised 5/5/1913222Foundation Plan (1)revised 8/12/1913222Revised Foundation and Drainage Plan (1-B)7/30/1913revised 10/17/191317-3/4x18-1/2 inches222Basement Plan (2)revised 6/7/1913222Revised Boiler Room Plan and Sections (2-B)7/30/1913revised 10/17/191317-3/4x18-3/4 inches222First Floor Plan (3)222Detail of Partition between Boiler Room and Coal Bin (3-B)9/3/1913revised 10/9/191317-1/4x19 inches222Second Floor Plan (4)222Third Floor Plan (5)revised 6/30/1913222Fourth Floor Plan (6)222Eighth Floor Plan (7)222Roof Plan (8)revised 6/23/1913222Boulevard Elevation (9)revised 7/7/1913222Woodward Avenue and East Elevations and Transverse Section on Line "A-A" (10)revised 6/7/1913222North Elevation (11)6/7/1913222Details of Boulevard Elevation and Miscellaneous Elevations (12)revised 6/7/1913222Details of North Elevation and Miscellaneous Elevations (13)5/6/1913revised 5/7/1913222Details of Elevator Shaft, Stairs, Toilet Rooms and Chimney (14)revised 6/7/1913222Elevations of Present Building (15)222Revised Details of Penthouse and Basement Plan (16)5/24/1913revised 6/23/1913222Structural Drawings5/7/1913ink-on-linen drawings with pencil notations, 23x45-1/2 inchesColumn Schedule (1-S)223First and Second Floor Plan and Beam Details (2-S)5/1/1913223Third and Fourth Floor Plan and Details (3-S)5/3/1913223Fifth, Sixth, Seventh and Eighth Floor Plan (4-S)223Roof Plan and Sections (5-S)223Mechanical/Electrical Drawingsone dated 5/5/1913ink-on-linen drawings with pencil notations, 23x45-1/4 inchesBasement Plan for Electrical Work (1-M)223Diagram of Hot Water and High Pressure Water Piping (1-MM)223First Floor Plan for Electrical Work (2-M)223Second Floor Plan for Electrical Work (3-M)223Third Floor Plan for Electrical Work (4-M)223Fourth Floor Plan for Electrical Work (5-M)223Eighth Floor Plan for Electrical Work (6-M)223Architectural Drawings of Alterations to Service Buildingink-on-linen drawings with pencil notationsFloor Plans, Interior Elevations and Elevator Door Details (1) (Job No. 462-C)6/20/191429x34-1/2 inches223Fourth Floor Plan (1) (Job No. 462-D)6/25/1918revised 7/1/191825-1/4x45-3/4 inches223King's Theatre (National Theatre), Jobs No. 478 and 478-A, C & D, Detroit, Michigan191119201924Theatre Building by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 478)Architectural Construction Drawings2/14/1911Ink-on-linen drawings with pencil notations, 24x29-1/4 inchesFoundation and Parquet Floor Plans (1)2 drawings (only one revised)revised 4/18/191184Balcony and Mezzanine Floor Plan and Roof Plan (2)revised 4/18/191184North Elevation and Sections (3)revised 4/19/191184Half-Front Elevation, Half Cross-Section thro' Front and Details (4)revised 4/19/191184Ceiling Plan and Longitudinal Section (5)revised 4/19/191184First Floor and Balcony Plans and Cross-Section and Direct Elevation of Boxes (6)revised 4/21/191184Typical Side Elevation of Tower and Details of Vestibule and Lobby (7)revised 4/18/191184Plans of Stairs and Sections through Stairs (8)revised 4/22/191184Details of Dressing Rooms and Stairs to Boxes (9)revised 4/25/191184Detail for Marquise and Entrance Door Frame (10)84Foundation and Parquet Floor Plans, Heating and Lighting (11)2 drawingsrevised 4/8/19117/31/191184Half-Balcony and Mezzanine Plan and Roof Plan, Heating and Lighting (12)revised 6/20/191184Longitudinal Section and Sections thro' Front and Rear, Heating and Lighting (13)84Terra-Cotta Detail of Half of Front Elevation (15)3/20/1911revised 4/20/191129-3/4x39-3/4 inches84Sprinkler System Underground Plan (17)3/23/191119x11 inches84Sprinkler System Plans under Stage Floor and over Procenium Arch (18)3/23/191119x24-3/4 inches84Sprinkler System Plans for Gridiron Floor and Roof (19)3/23/191118x23 inches84Sprinkler System Plan for Dressing Rooms (20)3/23/191110-1/4x13-3/4 inches84Revised Plans Showing Dressing Rooms in Basement (36)6/19/191111x29-1/4 inches84Revised Basement Plan, Heating and Lighting (37)6/20/191111-3/4x19 inches84Elevations of Steel Frame for Electric Sign (40)revised 9/30/191120x32-1/2 inches84Structural Construction Drawings2/17/1911Ink-on-linen drawings with pencil notations, 24x29 inchesHalf-Plans of Mezzanine and Balcony and Roof Plan (1S)85Half-Front Elevation and Half-Cross-Section on "D-D" (2S)85Gridiron and Stage Floor Plans and Details (3S)4/10/1911revised 4/11/191185Alterations to King's (National) Theatre by Albert Kahn, Architect (Jobs No. 478-A, C & D)Architectural and Mechanical Construction DrawingsInk-on-linen drawingsRevised Plan, Elevation and Section, Mezzanine Floor Lobby, Job No. 478-A (1)9/17/192024x29-1/2 inches85Details of Alterations to Marquise, Job No. 478-C (1)10/21/1920revised 11/18/1920Pencil-on-vellum drawing, 19-1/4x28 inches85Basement and Roof Plans, Air-Conditioning System, Job No. 478-D (1M)2/8/192418x23-3/4 inches85James Couzens Farm Residence, Wabeek Farm, Job Nos. 482, 482-B, C, D, H, J & K, Birmingham, Michigan1910-1913192019231935Construction Drawings of Farm Residence (Job No. 482) by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings, except as noted9/30/1910ink-on-linen drawings with pencil notations, 20x27-1/4 to 21x28-1/2 inchesFoundation Plan (1)239First Floor Plan (2)239Second Floor Plan (3)undated239Roof Plan (4)239Front Elevation (5)239Rear Elevation (6)239Side Elevation (7)239Side Elevation (8)undated239Transverse Section (9)undated239Construction Drawing of Garage and Fence (Job No. 482-B)Architectural Drawing5/2/1911ink-on-linen drawing, 28-1/2x25-1/2 inchesDetails of Garage and Fence (1)239Construction Drawings of Swimming Pool (Job No. 482-C) by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawingspencil drawings on tracing paperPlan and Longitudinal and Cross Sectionsundated15-1/2x23-1/2 inches239Plan, Elevation and Longitudinal Section (1)4/30/1913revised 5/17/191316x24-1/2 inches239Elevation, Sections and Details of Lattice Work (2)16-1/2x26-3/4 inches239

    (undated due to paper damage)

    Architectural Drawingsblueprints, 17-1/2x29-1/2 inches, except as notedPlan, Elevation and Longitudinal Section (1)4/30/1913revised 5/17/1913239Elevation, Sections and Details of Lattice Work (2)5/12/1913revised 5/17/1933239Plan, Elevations of Interior and Exterior Walls and Longitudinal Section (3)5/17/1913239Revised Plan Showing Showers (4)6/30/191314-1/4x18-3/4 inches239Details of New Rail and Gate for Poolundated12-1/2x20 inches239Structural Drawings of Swimming Pool by Gabriel Reinforcement Co., DetroitblueprintsDetails (1)5/21/191313x27 inches239Details (2)6/18/19135-3/4x11-1/2 inches239
    Construction Drawings of Dairy Barn and Creamery for Mr. J. C. Couzens, Wabeek Farm, Pontiac, Michigan (Job No. 482-D) by Albert Kahn, Architect, Ernest Wilby AssociateArchitectural Drawings, except as noted10/14/1913ink-on-linen drawings with pencil notations, 21-1/2x33-3/4 inchesPlot Plan (1)2310Foundation Plan (2)2310Plan of Sewerage (2-A)undated2310Ground Plan (3)2310Second Floor and Roof Plan (4)2310North and South Elevations (5)2310East and West Elevations and Sections (6)2310Cross-Section thro' Cow Stalls (7)2310Elevations and Details of Manure Pit and Cistern (8)2310Section thro' Silo, Feed Mixing Room and Root Cellar, Details of Gables on East, West and South Elevations, and Details of Trusses (9)2310Creamery Floor Plans and Details (10)11/22/1913revised 12/22/19132310Creamery Elevations, Sections and Details (11)11/22/19132310Construction Drawings of Silos on Dairy Barn and Creamery, Wabeek Farm (Job No. 482-J) by Albert Kahn, ArchitectArchitectural Drawing of Silosink-on-vellum drawing, 23-3/4x32-1/2 inchesPlan, North Elevation and Section (1)undated2310Structural Drawings of Silospencil-on-vellum drawingsDetails Showing Reinforcement for Silos (1-S)5/1/192324x32-3/4 inches2310Structural Details of Inside Scaffolding and Bracing (2-S)2/28/192323-3/4x20-1/2 inches2310Construction Drawings of Alterations and Addition to Farm Residence for Mr. James Couzens (Job No. 482-H) by Albert Kahn, ArchitectArchitectural Drawings3/4/1920ink-on-vellum drawings, 20x26-1/4 to 20x27 inchesFirst Floor Plan (1)2311Second Floor Plan (2)2311Rear and Side Elevations (3)2311Construction Drawings of Alterations to Residence for Hon. Frank Couzens, Big Wabeek, Michigan (Job 482-K) by Albert Kahn, Inc., ArchitectArchitectural Drawings1/8/1935black and blue ink and pencil drawings on vellum with notations, 24x31 inchesPlot Plan (1)2311Basement Plan (2)revised 2/12/19352311First Floor Plan (3)revised 2/4/19352311Second Floor Plan (4)revised 2/12/19352311Roof Plan (5)revised 1/14/19352311Front Elevation (6)2311Side Elevation (7)revised 2/4/19352311Side Elevation (8)revised 2/4/19352311Rear Elevation (9)2311Elevation at Library Chimney, Sections and Interior Elevations (10)2311Mechanical DrawingsBasement Plan (1-M)1/16/1935pencil and ink drawing on tracing paper, 23-1/2x31 inches2311Basement and Foundation Plan, Showing Installation of Sprinkler System by Geo. H. Soffel Co.1 blueprints (23x29-1/2 inches)1/28/19352311
    The Detroit Free Press, Office Building, Job No. 487, Detroit, Michigan1911-1912Design Development Architectural Drawings (Block Plans)undatedInk-on-linen drawings, 27-1/2x22-1/2 to 28x23-1/4 inchesBasement Plan (1)1010First Floor Plan (2)1010Second Floor Plan (3)1010Third and Fifth Floor Plans (4)1010Fourth Floor Plan (5)1010Sixth, Eighth and Ninth Floor Plans (6)1010Tenth Floor Plan (7)1010Seventh Floor Plan (8)1010Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateInk-on-linen drawings with pencil notationsArchitectural Drawings4/10/191127-3/4x33-3/4 inchesPlot Plan (1)27x31-1/2 inches1010Foundation and Basement Plan and Section "AA" of Present Building (1-A)undated1010Foundation and Basement Plans (2)revised 4/24/19121010First and Second Floor Plans of Present Building (2-A)undated1010First, Second and Mezzanine Floor Plans (3)revised 11/17/19111010Third and Fourth Floor Plans (4)1010Ninth and Tenth Floor Plans (5)revised 2/8/19121010Roof Plans and Sections (6)1010Front and Rear Elevations (7)2 drawings (only one revised)revised 5/30/19111010East Side Elevation and Details of Typical Window Frames (8)revised 5/30/19111010West Elevation and Detail of Iron Stairs to Mailing Room (9)revised 5/30/19111010Longitudinal Section and Detail of Men's Toilet Rooms (10)2/9/19121010Transverse Section and Detail of Dumb Waiter (11)1010Detail of Front Elevation Showing Lower Portion of East Bay (12)1010Detail of Front Elevation Showing Lower Portion of East Bay-Alternate Design (12-A)undated1010Typical Detail of Upper Story of North Part of East and West Elevations (13 & 13-A)2 drawings (one undated)1011Detail of East Half of First Story Rear Elevation (14)revised 3/16/19121011Typical Details of Stairs and Elevators from Third to Ninth Floor (15)1011Elevations and Details of Corridor Partitions (16)1011Typical Press Foundations and Typical Details of Fire Escape (17)1011Elevations of Main Entrance and Plan of Top of Marquise (18)1011Detail of Passenger Elevators (19)undated7x10 inches1011Plan, Elevation and Section of Press Room (31)9/5/191121x26-3/4 inches1011Interior Finish for First Floor (34)10/12/1911rev. 2/8/19121011Details for General Office and Lobby (35)10/12/19111011Details for General Office and Lobby (35-A)11/11/19111011Details for General Office (36)10/12/19111011Details for General Office (36-A)11/11/1911revised 2/8/19121011Ceiling Plan (37)10/12/19111011Detail of Main Entrance, Case in Lobby and Cashier's Cage (38)10/12/19111011Details of Main Stairs, Desks in General Office, Office Walls, Lobby Finish and Cast Iron Frames (39)10/12/19111011Plan of Tenth Floor (40)revised 8/10/191228-1/2x35 inches1011Plan of Editorial Room and Mezzanine, Tenth Floor (55)4/3/191216-1/4x22-3/4 inches1011Lighting Plan for Mezzanine Floor in Editorial Room (67)undated14x27-3/4 inches1011Details of Proof Room, Composing Room and Copy Room Partitions (70)7/20/1912revised 8/10/191219-1/4x22 inches1011Floor Plan of Rooms 701-702 (71)7/25/19128-3/4x11 inches1011Ninth Floor Plan (73)revised 9/6/191220-1/2x17-1/4 inches1011Layout of Offices, Sixth Floor (76)revised 9/23/191215-1/4x14-3/4 inches1011Plan of Offices, Eighth Floor (80)undated18-1/4x18-3/4 inches1011Plan at Sixth Floor (88)10/23/191212-3/4x9 inches1011Plan of Offices-Southwest Corner of Sixth Floor (89)10/31/1912revised 11/5/191211x12 inches1011Plan of Offices on Ninth Floor, Northeast Corner (94)12/13/191212x13-1/4 inches1011Layout of Offices, Southwest Corner on Eighth Floor (95)undated9-1/4x10-1/2 inches1011Plan Showing Second Floor Office Lighting (97)3/12/1913revised 3/17/191318-1/2x9-1/2 inches1011Structural Drawings27-3/4x33-1/2 inchesFirst and Second Floor Framing Plans (1S)4/7/1911revised 2/18/19121012Typical Floor Framing Plan and Tenth Floor Framing Plan (2S)4/6/1911revised 5/12/19111012Roof Plan, Column Schedule and Details of Cast Iron Column Bases (3S)4/7/1911revised 2/8/19121012Piling and Footing Plan (4S)6/30/1911revised 7/17/191116-3/4x21-1/4 inches1012Mechanical and Electrical Drawings4/8/191127-3/4x33-1/2 inchesBasement Plan and Drainage Plan (1E)revised 3/16/19121012First and Second Floor Plans (2E)revised 10/28/19111012Tenth Floor Plan and Typical Floor Plan (3E)revised 2/9/19121012Detail of Ventilating Fan and Piping in Linotype Room and Elevation of Toilet Vents (4E)4/12/19111012Steam Riser Diagram (5E)4/12/19111012Plan of Machine Room (6E)5/20/19111012Revised Plan of Machine Room (7E)3/6/1912redrawn 6/11/191224-1/4x33-3/4 inches1012Hill Auditorium, University of Michigan, Job No. 494, Ann Arbor, Michigan1911-1913The Engineering Society of Detroit 2005 Construction & Design Awards Entry Submission, "Significant Restoration, Redesign and Renovation of a Historical Structure," by Albert Kahn Associates, Inc. and The Christman Company3/10/20059Hill Memorial Hall (Hill Auditorium), University of Michigan, Job No. 494, Ann Arbor, Michigan1911-1913 and 1924Construction Drawings by Albert Kahn Architect, Ernest Wilby Associate, Detroit, with Hugh Talant, Acoustics Engineer New York CityArchitectural and Mechanical/Electrical Drawings10/5/1911revised 1/27/1912Ink-on-linen drawings with pencil notations, 29-1/2x34-1/2 to 29-1/4x36 inches)Plot Plan (1)142-ABasement Plan, Heating-Ventilation and Electric Lighting (1-A)revised 5/10/1912142-AFoundation Plan (2)142-A

    ("superceded")

    Foundation Plan (2)revised 2/15/1912142-AFirst Floor Plan with Electric Lighting (2-A)revised 5/11/1912142-AMain Floor Plan (3)142-ABalcony Floor Plan, Heating-Ventilation and Electric Lighting (3-A)revised 5/11/1912142-ABalcony Floor Plan (4)142-AGallery Floor Plan, Heating-Ventilation and Electric Lighting (4-A)revised 5/11/1912142-AGallery Plan (5)142-ALongitudinal Section, Heating-Ventilation (5-A)revised 12/5/1911142-AAttic and Ceiling Plan (6)revised 2/28/1912142-AAttic and Ceiling Plan, Heating-Ventilation and Electric Lighting (6-A)9/30/1911revised 5/10/1912142-ARoof Plan (7)revised 12/19/1911142-A

    ("retraced")

    Roof Plan (7)142-AFront Elevation (8)142-BWest Side Elevation (9)142-BEast Side Elevation (10)142-BRear Elevation (11)142-BLongitudinal Section (12)142-BTransverse Section (13)142-BCross-Section, Heating-Ventilation (13-A)11/1911revised 12/5/1911142-BDetails of Entrance (14)143Details of Wings (15)143Section thru' Foyer Looking toward Auditorium (16)143Partial Longitudinal Section on Center Line A-A (17)143Half-Section thro' Lobby Lecture Room and Gallery Lobby (18)143Longitudinal Section through Wing (19)1/27/1912143Details of Orchestra Pit (20)2/24/1912143Seating Plan Showing Position of Mushrooms (21)5/6/1226-1/2x32-1/2 inches143Seating Plan Showing Position of Mushrooms on Main Floor (22)undated26-1/4x32-1/4 inches143Longitudinal Section (24)6/5/1912revised 1/11/191328-1/2x46-3/4 inches143Ceiling Plan and Elevation of Foot of Ceiling Ribs Showing Character of Ornament to be Used (25)6/5/191230x46-3/4 inches143Transverse Section Looking toward Stage and Details of "M" Plaque and Plaster Work in Arch over Stage (26)6/5/191229-1/2x47 inches143Longitudinal Section Showing Parabolic Curve (27)6/5/191228-1/2x46-1/2 inches143Revised Seating Plan at Rear of Auditorium (28-A)revised 11/15/191215-1/4x28 inches143Details of Reading Desk for the Hill Memorial (49)4/18/191314-3/4x21-1/2 inches143
    Structural DrawingsInk-on-linen drawings, 29-1/4x34-1/2 inchesLongitudinal Section on Centre Line and Half-Roof Plan (1-S)8/27/1911revised 2/2/1912143Upper Gallery and Balcony Framing and Column Schedule (2-S)8/27/1911revised 2/2/1912143Details of Roof Truss (3-S)1/23/1912revised 3/16/1912143Electrical DrawingPencil-on-vellum drawing, 26x29inchesPart Plan of Ceiling (100-E)1/24/1924143
    Job No 508-599Continental Motors Corporation, Job No. 508, Detroit, Michigan1911Construction Drawings, Architectural20 drawings333Continental Motors Corporation, Job No. 508-A, Detroit, Michigan1911Construction Drawings, Architectural, Structural, and Plumbing22 drawings334Continental Motors Corporation, Job No. 508-B, Detroit, Michigan1911Construction Drawings, Architectural and Electrical14 drawings335P.H. McMillian Residence, Garage, Gardeners Cottage, Job Nos. 512, 512-A, 512-B, Grosse Pointe, Michigan1912Construction Drawings, Architectural and Structural30 drawings3211Riverview Casino and Dancing Pavilion (Palace Gardens), Riverview Park Company, Job Nos. 523 and 523-D, E, L & M, Detroit, Michigan1911-1924Riverview Casino by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 523)Construction DrawingsArchitectural Drawings, except as noted10/25/1911ink-on-linen drawings, 21x39-1/4 inches, except as notedPlot Plan and Plan Showing Present Piers (1)revised 11/7/19112810Basement Plan and Details of Piers and Footings (2)revised 2/6/19122810First Floor Plan (3)revised 7/29/19122810Second Floor Plan and Sections on Lines "B-B" and "C-C" (4)revised 12/7/19112810Roof Plan (5)revised 11/7/19112810Jefferson Avenue and South Elevations and Section on Line "A-A" (6)revised 12/7/19112810East and West Elevations (7)revised 12/1/19112810Details of Jefferson Avenue Front, Trusses and Arch "A" (8)revised 11/29/19112810Detail of East Side (9)revised 12/1/19112810Details of Marquise (10)revised 12/1/19112810Section "D-D" and Details of Areas on West Side (11)revised 11/7/19112810Section at Center of Platform and Details of West Stairs, Purlins and Trusses (12)revised 12/1/19112810Plot Plan Showing Steam Connection between Kling's Brewery and Riverview Park (16)8/2/191222x37 inches2810Mechanical Floor Plan (17)7/29/191222x39-1/2 inches2810Revised Boiler Room Plan and Section "A-A" (18)8/27/191213-1/2x14-1/2 inches2810Riverview Dancing Pavilion by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 523-D)Construction DrawingsArchitectural Drawings, 9/13/1913 revised 10/1/1913 except as noted9/13/1913revised 10/1/1913ink-on-linen drawings, 34-1/4x42 inches, except as notedPlot Plan (1)2811Piling Plan and Details of Approach (2)2 drawings (one marked "void")2811Footing Plan and Details (3)2811Plan at Water Level (Boat Shelter), Section "A-A" and Footing Details (3)2811

    (marked "void")

    Dancing Floor Plan and Details of Orchestra Balcony (4)2811Roof Plan and Details of Ticket Office and Toilets (5)2811Elevations Looking South and West and Cross-Section (6)2811Details of Elevation, Electric Lights and Columns (7)2811Structural Details (8)2811Detail of Revised Arches (9)1/6/19142811Plot Plan and Section thru' Pavilion Showing Electrical Wiring33-3/4x39 inches2811

    (undated due to linen damage)

    Electrical Details34x35-1/2inches2811

    (undated due to linen damage)

    Riverview Cement Walks, Booths, Archways, etc., by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 523-E)Construction DrawingsArchitectural Drawings3/20/1914ink-on-linen drawings, 26x41-1/2 inchesPlan (1)2812Elevations of Arches "A" and "B" and Details of Ticket Booth (2)2812Additions to Present Dance Hall and Passageways for the Palace Gardens Co. by Albert Kahn, Architect (Job No. 523-L)Construction DrawingsArchitectural Drawings10/20/1921ink-on-linen drawings, 21x39 inchesPlan, East Elevation and Elevation "A-A" (1)revised 11/17/19212812Plan at Roller Skating Level and Section "X-X" (2)2812Plans at Dance Floor Level and of Roof over Brick Portion and over Ladies' Retiring Rooms (3)revised 11/2/19212812Details of Center Portion of Passageway (4)revised 11/17/19212812Elevations and Section of Ladies Rooms (5)2812Details of Marquise (6)revised 10/22/19212812Details of Ladies' Dressing Room, Parlor and Toilet (7)2812Mechanical/Electrical Drawing10/22/1921ink-on-linen drawing, 21-1/4x38-1/2 inchesPlans and Details of Approach and Balcony (1-M)2812Addition to Palace Gardens by Albert Kahn, Architect (Job No. 523-M)Construction Drawings, except as noted9/13/1924pencil-on-vellum drawings, 21x29 inchesArchitectural DrawingsFloor Plan (1)2812Sections on Lines "A-A" and "B-B" (2)2812Structural DrawingsFloor Plan, Typical Slab Section and Beam Schedule (1-S)revised 10/22/19242812Foundation Plan, Footing Details and Column Schedule (2-S)revised 10/22/19242812Details of Footings for Columns and Column Schedule (3-S)revised 10/22/242812Details of Footings for Columns (4-S)11/15/1924revised 12/3/19242812
    Detroit Home and Day School (Liggett School), Branch Building and Addition, Job Nos. 526, 526-A, 526-C, 526-C-R1, 526-D, 526-E & 526-F, Burns and Charlevoix Avenues, Detroit, Michigan1913-1929Detroit Home and Day School Branch Building (1913-1917) Job No. 526 & 526-ADesign Development Drawingsundatedink-on-vellum drawings, 16-1/2x22-1/4 to 16-1/2x24 inchesBasement Plan1910First Floor Plan1910Second Floor Plan1910Construction Drawings by Albert Kahn, Architect, Ernest Wilby, Associate4/25/1913ink-on-linen drawings with pencil notations, 15-1/4x18-3/4 to 15-1/2x19-1/2 inchesArchitectural DrawingsPlot Plan (1)1910Foundation Plan (2)1910Basement Plan (3)revised 9/5/19131910First Floor Plan (4)1910Second Floor Plan (5)1910Roof Framing Plan (6)1910Roof Plan (7)1910South Elevation (8)1910West Elevation (9)1910East Elevation (10)1910Transverse Section (12)1910Detail for Entrance (13)1910Detail of Corner Bay-South Elevation (14)1910Details of Alternate Double-Hung Windows (14-A)4/27/19131910Details of Kindergarten (15)1910Details of Halls (16)1910Mechanical DrawingsBasement Plan (1-M)1910First Floor Plan (2-M)1910Second Floor Plan (3-M)1910Proposed Solarium for Eastern Liggett School (1917) Job No. 526-AConstruction Drawings5/14/1917ink-on-linen drawings with pencil notations, 12x18-1/2 inchesArchitectural DrawingsPlan and Elevation (1)1910Details of Typical Finish (2)1910Addition to Present Building for The Liggett School (1923-1929) Job Nos. 526-C, 526-C-R1, 526-D, 526-E & 526-FConstruction Drawings by Albert Kahn, ArchitectArchitectural Drawings11/12/1923ink-on-linen drawings with pencil notations, 22-3/4x32-1/2 to 24-1/2x35-1/4 inchesPlot Plan (1)revised 12/24/19231911Foundation Plan (2)revised 12/24/19231911Basement Floor Plan (3)revised 12/24/19231911First Floor Plan (4)revised 5/24/19241911Second Floor Plan (5)revised 6/11/19241911Attic Floor and Roof Plans (6)revised 12/24/19231911East and West Elevations (7)revised 1/7/19241911North and South Elevations, Cross-Section and Details (8)revised 1/7/19241911Sections A, B & C (9)revised 2/2/19241911Elevation of Main Entrance Tower and Door Details (10)revised 1/7/19241911Details of Stairs # 1 & 4 (11)revised 2/2/19241911Details of Stairs # 2 & 3 (12)revised 12/24/19231911Details of Auditorium (13)revised 2/2/19241911Interior Details (14)revised 12/24/19231911Revised Architectural Drawings, Job No. 526-C-R1pencil-on-vellum drawings, 22-3/4x33 inchesFoundation Plan (2-A)1/18/19241911Basement Floor Plan (3-A)5/22/19241911Part First and Second Floor Plans (4-A)1/18/19241911East and West Elevations (7-A)1/18/19241911Structural Drawings, Job No. 526-C11/12/1923pencil drawings on tracing paper with notations, 21-1/2x31-3/4 to 24-1/2x35-1/4 inchesFooting and Column Schedule (1-S)revised 12/20/1923ink-on-vellum drawing1912Basement and First Floor Beam Schedule and First Floor Framing Plan (2-S)revised 12/20/19231912Second Floor Beam Schedule and Framing Plan (3-S)12/22/19231912Attic Floor Framing Plan (4-S)1912Roof Framing Plan (5-S)1/8/19241912Part Attic and Roof Framing Plans Revision (6-S)1912

    (date illegible due to paper damage)

    Mechanical Drawings, Job No. 526-C12/18/1923revised 1/23/1924ink-on-linen drawings with pencil notations, 24x35 inchesFoundation Plan (1-M)1912Basement Floor Plan for Plumbing and Electrical Work (2-M)1912Basement Floor Plan for Heating and Ventilation (3-M)1912First Floor Plan (4-M)1912Second Floor Plan (5-M)1912Attic Plan (6-M)1912Plan and Details of Boiler and Fan Rooms (7-M)1912Mechanical Drawings, Job No. 526-C-R11/23/1924ink-on-linen drawings with pencil notations, 24-1/2x35 inchesBasement Floor Plan (1-M)1912First Floor Plan (2-M)1912
    Alterations to First Floor (1927), Job No. 526-DConstruction Drawing by Albert Kahn, Inc., ArchitectArchitectural Drawing6/29/1927ink and pencil drawing on vellum, 15-1/2x33 inchesDetails of Alterations to Window in Kindergarten and to Coat Rooms (1)1912Alterations and Additions to Modeling Room (1928) Job No. 526-EConstruction Drawing by Albert Kahn, Inc., ArchitectsArchitectural Drawing4/26/1928ink-on-linen drawing, 16-3/4x23-3/4 inchesDetails of Alterations and Additions to Modeling Room (1)1912Wrought Iron Gate for Liggett School (1929) Job No. 526-FConstruction Drawing by Albert Kahn, ArchitectArchitectural Drawing1/22/1929pencil drawing on tracing paper, 19-1/2x21-1/2 inchesElevation of Wrought Iron Gate (1)1912
    Professor George Washington Patterson Residence, Job No. 544, Ann Arbor, Michigan1913Construction DrawingsArchitectural Drawings3/5/1913revised 6/9/1913Ink-on-linen drawings, 19-1/2x27-1/4 inches, except as notedProposed Plot PlanundatedPencil drawing on tracing paper, 18-3/4x23-3/4 inches39Plan of Basement (2)undated39

    ("Void" notation)

    Plan of Basement (2)39Basement Plan (2)39First Floor Plan (3)39Second Floor Plan (4)39Third Floor Plan (5)39

    (not revised)

    Transverse Sections on Lines "A-A" and "B-B" (6)39South Elevation (7)39East Elevation and Section Showing Support for Brickwork in Large Gable at West End (8)39West Elevation and Details for Interior Finish (9)39North Elevation (10)39Main Hall Details (11)39

    (not revised)

    Living Room, Music Room and Study Details (12)39

    (not revised)

    Dining Room Details and Elevations of Chamber Mantels (13)39

    (not revised)

    Details of Butler's Pantry and Kitchen Cabinet, etc. (14)39

    (not revised)

    Plan Showing Concrete Reinforcement and Structural Details (19)7/16/191339
    Mechanical Drawings2/22/1913revised 6/9/1913Ink-on-linen drawing, 20x29 inchesBasement Plan (2M)39
    Kahn Realty Company, Store and Theatre, Job No. 560, Jefferson and Fairview Avenues, Detroit, Michigan1912-1913Design Development and Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Design Development Drawingspencil drawings on tracing paper, 17x18 to 17x24 inchesFirst Floor Plan (3), &2 drawings8/16/19127/8/1912267Second Floor Plan (4)8/15/1912267Roof Plan (5)8/19/1912267Elevations (6)8/19/1912267Architectural Construction Drawings, except as noted6/12/1913ink-on-linen drawings with pencil notations, 19x24 inches, except as notedPlot Plan (1)6/1/1913267Basement Plan (2)267First Floor Plan (3)267Second Floor Plan (4)267Roof Plan (5)267North and West Elevations and Sections on Lines "B-B" and "C-C" (6)267South and East Elevations and Section on Line "A-A" (7)267Details of Theatre and Store Fronts (8)267First Floor Plan for Heating and Lighting (9)267Details8/13/1913pencil drawing on tracing paper, 16-3/4x21-2/3 inches267Kahn Realty Company, Store Building and (Calvert) Theatre, Job Nos. 573 & 573-A, Woodward and Calvert Avenues, Detroit, Michigan1912-1913Store Building by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 573)Construction DrawingsArchitectural Drawings, except as noted8/21/1912ink-on-linen drawings, 13x19 inches, except as notedSite Plan (1)2813Basement Plan (2)revised 1/23/19132813First Floor Plan (3)revised 1/23/19132813Second Floor Plan (4)revised 1/23/19132813Roof Plan (5)2813Front Elevation (6)2813Calvert Avenue and South Elevations (7)2813Rear Elevation (8)2813Detail of Front Elevation and Section (9)revised 1/23/19132813Revised Detail of Front Elevation (10)1/23/19132813Revised Basement and Second Floor Plans (11)1/23/19132813Revised Plumbing Plan (12)1/23/19132813Detail of Entrance for Theater to be Placed in Store No. 1 of the Kahn Realty Company (15)3/26/191326x36 inches2813Mechanical Drawingsundatedink-on-linen drawings, 13x19 inchesBasement Plan (1-M)2813First Floor Plan (2-M)2813Second Floor Plan (3-M)2813Auditorium Addition to Store Building by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 573-A)Construction DrawingsArchitectural Drawings, except as noted5/30/1913ink-on-linen drawings, 18x22 inchesFooting Plan (1)2813First Floor Plan (2)revised 8/7/19132813Roof Plan (3)2813Calvert Avenue Elevation, Longitudinal Section Looking East, Cross-Section Looking toward Stage, and Structural Details (4)revised 8/7/19132813Plan of Picture Booth, South and West Elevations and Section thru' Passageway (5)revised 8/7/19132813Calvert Avenue Elevation, Longitudinal Section Looking East and Section at Roof (8)8/18/19132813Detroit Athletic Club, Jobs No. 593 and 593-A, H, I, N, O, P, Q & R, Detroit, Michigan1913-1914 and 1918-1935Detroit Athletic Club by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 593)Architectural Construction Drawings11/29/1913Ink-on-linen drawings with pencil revisions, 29-1/4x34-1/2 inchesPlot Planundated24Excavation Plan (1A)24Foundation Plan (2), undatedrevised 1/7/191424Basement Plan and Details (3)undated24First Floor Plan and Details (4)24First Floor Plan and Details (4)revised 1/30/191424First Floor Mezzanine and Ceiling Plans (5)undated24First Floor Mezzanine and Ceiling Plans (5)revised 1/30/191424Second Floor Plan and Details (6)revised 1/30/191424Second Floor Mezzanine [Plan] (7)24Second Floor Mezzanine [Plan] (7)revised 2/11/191424Third Floor Plan and Details (8)24Third Floor Plan and Details (8)revised 1/30/191424Fourth Floor Plan and Squash and Hand Ball Courts Elevations (9)24Fourth Floor Plan and Squash and Hand Ball Courts Elevations (9)revised 1/30/191424Fourth Floor Plan, First Mezzanine (10)24Fourth Floor Plan, Second Mezzanine (11)24Fifth Floor Plan and Details (12)24Fifth Floor Plan and Details (12)revised 1/30/191424Sixth Floor Plan and Details (13)24Sixth Floor Plan and Details (13)revised 1/30/191424Bowling Alley Details and Plan of Pipe Space over Sixth Floor (14)25Roof Plan (15)25Longitudinal Section and Elevations of Light Court #1 (16)undated25Madison Avenue Elevation (18)revised 1/30/191425John R. Street Elevation (19)revised 1/30/191425Randolph Street Elevation (20)revised 1/30/191425Cross Street Elevation (21)revised 1/30/191425Detail of Front Elevation, First and Second Stories (22)25Detail of Front Elevation at Third and Fourth Stories (23)undated25Detail of Front Elevation at Fifth and Sixth Stories (24)25Detail of Ladies Entrance and Adjoining Wall (25)25Detail of Rear Elevation below Fifth Story (26)undated25Details of Lobby, Lounging Room and Entrance to Grill Room, Billiard Room and Vestibules #116-B & 117 (27)25Detail of Main Staircase (28)25Details of Grill Room and Billiard Room (29)25Interior Details of Vestibule #117, Lobby #134a, Lobby #212 and Stairs of Halls #113, 132a, 206 & 236a (30)25Details for Main Dining Room and Ladies Dining Room (31)25Details for Basement Corridor, Palm Room, Lobby #211 and Private Dining Rooms #208, 209 & 210 (32)25Details for Third Floor Private Dining Rooms, Corridor #307, Library #135-A and Ladies Room #114 (33)25Structural Construction Drawings11/29/1913Ink-on-linen drawings with pencil revisions, 29-1/4x35 to 30-1/4x38 inchesColumn Schedule (1-S)26First Floor Framing Plan (2-S)26First Floor Framing [Plan] (2-SR)1/24/1914revised 2/11/191426First and Second Floor Mezzanines Framing [Plans] (3-S)26First and Second Floor Mezzanines Framing [Plans] (3-SR)1/24/1914revised 1/29/191426Second Floor Framing [Plan] (4-S)26Second Floor Framing [Plan] (4-SR)1/24/1914revised 1/29/191426Third Floor Framing [Plan] (5-S)26Third Floor Framing [Plan] (5-SR)2/21/1914revised 3/4/191426Fourth Floor Framing [Plan] (6-S)26Fourth Floor Framing [Plan] (6-SR), undatedrevised 3/4/191426Fourth Floor First and Second Mezzanines Framing [Plans] (7-S)26Fourth Floor First and Second Mezzanines Framing [Plans] (7-SR)undated26Fifth Floor Framing Plan (8-S)26Fifth Floor Framing [Plan] (8-SR)undated26Sixth Floor Framing Plan (9-S)26Roof Framing and Half Attic Framing Plans (10-S)26Attic Framing Plan (10-SR)3/19/191426Revised Column Schedule (11-S)1/17/1914revised 3/5/191426Typical Connections on Flanges, Webs, Concrete Joists and Special Plate Girders (12-S)1/24/191426Cornice Framing [Plan] and Details (25-S)4/6/191426Mechanical and Electrical Construction Drawings2/8/1913Ink-on-linen drawings with pencil revisions, 28-1/2x33-1/2 to 33x43-1/2 inchesBasement Plan (3M)revised 3/12/191427[First Floor Plan], untitled (4M)12/18/1913revised 4/10/191427First Floor Mezzanine Plan (5M)revised 3/30/191427Second Floor Plan (6M)revised 7/28/191427Plan of Second Floor Mezzanine (7M)revised 4/8/191427Third Floor Plan (8M)4/17/191427Fourth Floor Plan (9M)4/14/191427Fourth Floor Plan--First Mezzanine (10M)revised 4/14/191427Fourth Floor Plan--Second Mezzanine (11M)27Fourth Floor Plan--Second Mezzanine (11M)revised 4/16/191427Fifth Floor Plan (12M)27Sixth Floor Plan (13M)27Attic Plan (14M)revised 4/20/191427John R. Street Elevation (15M)27Cross Street Elevation (16M)27Randolph Street Elevation (17M)27Madison Avenue Elevation (18M)revised 4/17/191427Machine Room Details (19M)revised 3/9/191428Diagram of Piping to Pumps, Heaters, etc., and Detail of Riser Connections (20M)revised 4/20/191428Roof Plan and Arrangement of Elevator Machinery in Pent House (21M)28Electric Feeder Diagram (22M)12/10/1913revised 4/17/191428Details of Drain Box for Plunge (24M)4/14/191428Details of Gutter Drain and Water Inlet (25M)4/20/191428Refrigerating Layout (27M)5/18/191428Plan of Kitchen--Second Floor (33M)6/17/1914revised 7/1/191428Plan of Foundations in Machine Room (36M)6/5/1914revised 6/18/191428Diagram of Cooled Drinking Water Piping (39M)7/20/191428Plan of Piping in Furred Space under Kitchen Floor and on First Floor Mezzanine Ceiling (38M)7/11/191428Arrangement of Kitchen Apparatus (40M)28

    (Undated due to linen damage)

    Plan and Elevation of Service Bar--First Mezzanine (45M)10/19/191425-1/2x26-1/2 inches28
    Seventh Floor Addition to Detroit Athletic Club by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 593-A)Architectural Construction DrawingsundatedInk-on-linen drawings, 24x34 inchesPlan of Seventh Floor on Roof of Present D.A.C Building (1)2/19/191829Plan of Roof over Seventh Floor (2)29Details of Skylights over Corridors and Typical Toilets (3)29Plan of Present Building (4)29Sections (5)29Full-Size Details of Galvanized Iron Work (6)Pencil-on-vellum drawing, 22x32 inches29Full-Size Details of D. H. Windows (7)Pencil-on-vellum drawing, 23x38 inches29Details of Entrance Doors to Corridors (8)Pencil-on-vellum drawing, 23-1/2x37-1/2 inches29Details of Doors in Corridor (9)Pencil-on-vellum drawing, 25x38 inches29Mechanical Construction Drawings by Albert Kahn, Architect2/19/1918revised 3/13/1918Ink-on-linen drawings, 20x28-1/2 inchesFloor Plan (1M)29Attic Plan (2M)29Alterations to Rooms #100, 113, 117, 150, 151 & 152 of Detroit Athletic Club by Albert Kahn, Architect. (Job No. 593-H)Architectural Construction DrawingsPencil and ink drawings on vellumDetails of Alterations (1)2/29/192016-1/4x41 inches29Plans of Mezzanine and First Floor (2)2/27/192016-1/4x41 inches29Revised Plan and Elevations of Reception Room, Showing Revision in Floor and Width of Soffit (3)8/21/1920revised 9/28/192013x27 inches29Squash Courts for Detroit Athletic Club by Albert Kahn, Inc., Architect (Job No. 593-I)Architectural Construction Drawings12/4/1924Pencil and ink drawings on vellum, 22x24-1/2 inchesPlan (1)revised 2/24/192529Balcony and Roof Plans and Details (2)revised 2/24/192529Elevations (3)revised 1/8/192529Section (4)revised 1/8/192529Structural Construction Drawings12/8/1924Pencil-on-vellum drawings, 23-1/2x26 inchesDetails of Framing at Present Roof (2-S)29Roof and Wall Framing Plan, Elevations and Sections (3-S)revised 1/8/192529Mechanical Construction Drawing9/25/1924Ink-on-linen drawings, 23-1/4x27 inchesPlans and Details (1M)29Alteration to Ladies Reception Room of Detroit Athletic Club by Albert Kahn, Architect (Job No. 593-N)Architectural Construction DrawingsInk, pencil and colored pencil drawings on vellum, 13-1/2x27-1/2 to 15-1/2x29-1/4 inchesDetails (1)4/16/193029Plan and Elevations (2 & 3)2 drawings2/4/193029Fourth Floor Lounge of Detroit Athletic Club by Albert Kahn, Inc., Architects & Engineers (Job No. 593-O)Mechanical Construction Drawing12/18/1930Pencil and blue pencil drawing on velum, 24x30 inchesVentilation Layout (1-M)29Air Conditioning for Detroit Athletic Club by Albert Kahn, Inc., Architects & Engineers (Job No. 593-P)Mechanical Construction Drawings5/31/1935Pencil-on-vellum drawingsPlans of Basement and Platform for Coils and Filter on Third Floor (1M)25x32 inches29Part Plans of Second Floor Mezzanine and Third Floor and Sections (2-M)30-1/4x32 inches29Alterations to Abbey Room, Lounge and Bowling Alley of Detroit Athletic Club by Albert Kahn, Inc., Architects (Job. No. 593-Q)Architectural Construction Drawings6/14/1935Pencil and blue ink drawings on vellum, 20-3/4x34 inchesBasement Floor Plan (1)29Passage and Hall Details (2)29East and West Elevations of Abbey Room (3)29North and South Elevations of Abbey Room (4)29Lounge, Shower and Phone Booth Details (5)29Alterations to Cocktail Room, Grill Room and Billiard Room of Detroit Athletic Club by Albert Kahn, Inc., Architects & Engineers (Job. No. 593-R)Architectural Construction Drawings12/18/1935Pencil-on-vellum drawings, 16x34 inchesElevations and Ceiling Plan of Cocktail Room (1)29Elevations and Sections of Grill Room, Billiard Room and Bar Front (2)29
    Kresge Company Office Building, Job No. 599, Detroit, Michigan1913Construction Drawings, Architectural27 drawings336Kresge Company Office Building, Job No. 599, Detroit, Michigan1914-1915Construction Drawings, Architectural30 drawings337Kresge Company Office Building, Job No. 599, Detroit, Michigan1914Construction Drawings, Architectural25 drawings338Kresge Company Office Building, Job No. 599, Detroit, Michigan1914-1915Construction Drawings, Architectural28 drawings339Kresge Company Office Building, Job No. 599, Detroit, Michigan1913-1914Construction Drawings, Structural and Mechanical14 drawings3310
    Job No. 604-693John S. Newberry Residence, Job No. 604, Grosse Pointe, Michigan1914Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings4/28/1914ink-on-linen drawings with pencil notations, 24-1/2x48-1/2 inchesExcavation Plan (1)4/14/1914revised 4/15/1914189Basement Plan (2)revised 5/23/1914189First Floor Plan (3)revised 5/23/1914189Second Floor Plan (4)189Third Floor Plan (5)revised 5/23/1914189South Elevation (6)revised 5/23/1914189North Elevation (7)revised 5/23/1914189East and West Elevations (8)revised 5/23/1914189Sections (9)revised 5/23/1914189Details of First-Story Windows and Trim for First, Second and Third Floors (10)5/23/1914189Details of First-Floor Cabinets and Pantry Fittings (11)5/23/1914189Wardrobe and Bath Room Details (12)5/23/1914189Finish in Play Room, Mrs. Newberry's Room, Children's Rooms and Sleeping Porch (13)5/23/1914189Finish in Living Room, Dining Room and Morning Room(20)10/15/1914revised 12/10/1914189Mechanical Drawingsundatedink-on-linen drawings with pencil notations, 24-3/4x48-1/2 & 25x49-1/2 inchesBasement Plan (1-M)189Plot Plan (2-M)189Science (Natural Science) Building, University of Michigan, Job No. 605, Ann Arbor, Michigan1914Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateInk-on-linen drawings with pencil notations, 44-1/2x38 inchesArchitectural Drawings3/10/1914Plot Plan (1)2 drawings22Foundation Plan (2)22Foundation Plan (2R)revised 4/30/191422First Floor Plan (3)22First Floor Plan (3R)revised 4/30/191422Second Floor Plan (4)22Second Floor Plan (4R)revised 4/30/191422Third Floor Plan (5)22Third Floor Plan (5R)revised 4/30/191422Fourth Floor Plan (6)22Fourth Floor Plan (6R)revised 4/30/191422Roof Plan (7)22Roof Plan (7R)undated22South, East and North Elevations (8R)revised 4/30/191422West Elevation and Court Elevations (9R)revised 4/30/191422Transverse Section, Corridor Partition Details and Window and Door Details (11R)revised 4/30/191422Section thro' Main Stairs, Sections on Lines "AA," "BB" and "CC," and Stair Details (12R)revised 4/30/191422Miscellaneous Floor Plans and Sections (13R)revised 4/30/191422First Floor Plan of General Lecture Room (14R)revised 4/30/191422Second and Third Floor Plans [of General Lecture Room] (15R)revised 4/30/191422Transverse and Longitudinal Sections and Sections on Lines "CC" and "EE" (16R)revised 4/30/191422Miscellaneous Floor Plans and Sections (17)22Miscellaneous Floor Plans and Sections (17R)revised 4/30/191422Structural Drawing3/10/1914Structural Steel Details (1S-R)revised 4/30/191423Mechanical Drawings, undatedrevised 5/18/1914Foundation Plan (1M-R)23First Floor Plan (2M23Second Floor Plan (3M)23Third Floor Plan (4M)23Fourth Floor Plan (5M)23Riser Diagram (6M)3/18/1914revised 5/6/191423Details of Supply Fans, Ducts and Exhaust (7M)23Newberry Residence Hall, University of Michigan, Job Nos. 606 & 606-A, Ann Arbor, Michigan1914 and 1920Design Development Drawings (Block Plans)undatedInk-on-linen drawings, 17-1/2x28 inchesFirst Floor Plan (1)86Typical Floor Plan (2)86Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings4/17/1914revised 6/18/1914Ink-on-linen drawings with pencil notations, 25-1/2x27-1/2 inchesPlot Plan and Details of Elevator, Mantels and Interior Doors (1)86Foundation and Basement Plans (2)revised 7/17/191486First, Second and Third Floor Plans (3)revised 7/17/191486Attic Plan, East and West Elevations and Cross-Section (4)revised 7/17/191486North and South Elevations (5)86One-Half-Inch Details of Exterior (6)86

    (Not revised)

    Details of Stairs, Dumb Waiter and Cupboards in Kitchen, Serving Room and Kitchenette (7)86Details of Porches, Windows and Toilets (8)86
    Mechanical Drawings, undatedrevised 6/22/1914Ink-on-linen drawings with pencil notations, 25-1/2x27-1/2 inchesBasement and First Floor Plans (1M)86Basement Plan (1MR)9/30/191486Second and Third Floor Plans (2M)86Fourth Floor Plan and Riser Diagram (3M)86Revised Drainage Plan (4M)8/18/191486Supplementary Construction DrawingPencil-on-vellum drawing, 24x29 inches

    (undated due to paper damage)

    Details of Elevator86
    Changes in Connection with Kitchen and Bakery (Job No. 606-A)1/20/1920Pencil-on-vellum drawings, 13x26 inchesBasement Floor Plan (1)86Details of Door Lintel, Tilting Flour Bin, Drawer and Shelf (2)86
    Boyer, Joseph Mausoleum, Job No. 6211914Construction Drawings, Architectural2 drawings3613Hiram Walker & Sons Company, Office Building, by Mason & Rice Architects, Job No. 632, Windsor, Ontario, Canada1892Construction DrawingsArchitectural Drawings6/3/1892reverse blueprints with blue, brown and red water color painting and pencil and ink notations, 24-1/2x36 inchesFirst Floor Plan (2)238Second Floor Plan (3)238Sections on Lines C-D and E-F (4)238Section on Line A-B and Detail of Vaults (5)238North and South Elevations (6)238West Elevation of Corridor (6)238East and West Elevations (7)238Details of Main Entrance (8)238Details of South Front (9)238Plans of Center Bay, North Front (10)238Section thro' Center Bay, North Front (11)238Detail of Center Bay, North Front (12)238Detail of End Bays, North Front (13)238Details of Main Entrance, Outside and Inside Vestibule (14)238Details of Iron Columns and Girders (15)238Detroit Trust Company, Job No. 637 & 637-F, Detroit, Michigan1914-1915 and 1926Detroit Trust Company by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 637)Design Development (Block Plans) DrawingsundatedInk-on-linen drawings, 16x30 inchesFirst Floor Plan31Second Floor Plan31Architectural Construction Drawings12/15/1914Ink-on-linen drawings, 29x47 inchesExcavation and Plot Plan (1)31Foundation Plan (2)revised 1/27/191531Basement Plan (3)31First Floor Plan (4)31Mezzanine Floor [Plan] (5)31Second Floor Plan (6)31Third Floor Plan (7)31Roof Plan (8)31Elevations (9)31Cross-Section and Misc. Details (10)31Longitudinal Section (11)31Details of Fort Street Elevation (12)31Revised Details, Fort Street Elevation (12-R)2/8/191531Details of Shelby Street Elevation (13)31Interiors (14)31Interior Finish (15)1/4/1915revised 1/13/191531Interior Finish (16)1/4/1915revised 1/13/191531Details of Furniture in Cages on Second Floor (21)2/5/191523x39 inches31Structural Construction Drawings11/20/1914revised 1/15/1915Ink-on-linen drawings, 23x47 inchesFraming of First Floor (1S)32Framing of Mezzanine (2S)32Framing of Second Floor (3S)32Framing of Third Floor (4S)revised 1/7/191532Framing of Roof (5S)32Mechanical Construction Drawings12/15/1914Ink-on-linen drawings, 29x47 inchesBasement Plan for Heating and Ventilation (1M)revised 2/19/191532Exhaust Piping (2M)32Riser Diagram (3M)32Future Fourth Floor Plan and Attic Plan Showing Future Piping (MM)2/10/191532Detroit Trust Company Addition by Albert Kahn, Inc., Architects (Job No. 637-F)Design Development (Block Plans) DrawingsundatedInk-on linen drawings, 27x30 inchesBasement Plan (1)33Main Floor Plan (2)33Mezzanine Floor Plan (3)33Second Floor Plan (4)33Third Floor Plan (5)33Architectural Construction Drawings2/9/1926Ink-on-linen drawings, 29x40 inchesPlot Plan (1)33Foundation Plan (2)33Basement Plan (3)revised 3/26/192633First Floor Plan (4)revised 5/17/192633Mezzanine Floor Plan (5)revised 3/26/192633Second Floor Plan (6)revised 3/26/192633Third Floor Plan (7)revised 3/26/192633Plan at Fan Room and Roof (8)revised 3/26/192633Elevations (9)revised 3/26/192633Elevations and Details (10)revised 3/26/192633Sections (11)revised 3/26/192634Exterior Details (12)revised 3/26/192634Plans: Elevators and Stairs #2 & 3 (13)34Sections of Elevators and Stairs #2, 3 & 4 (14)revised 3/26/192634Plans and Sections of Stairs #1 & 6 (15)revised 3/26/192634Banking Room Interiors (16)34Banking Room Interiors (17)revised 3/26/192634Banking Room and Safe Deposit Dept. Interiors (18)revised 3/26/192634Interior Scale Details (19)34Interior Scale Details (20)revised 3/26/192634Structural Construction Drawings2/8/1926Ink-on-linen drawings, 29x40 inches35First Floor Framing (1S)35Mezzanine Floor Framing (2S)35Second Floor Framing (3S)35Third Floor Framing (4S)35Roofing and Attic Framing (5S)revised 2/16/192635Column Schedule; Footing Details (6S)35Alterations in Present Building (7S)35Second Floor Trusses and Girders (8S)35Mechanical Construction Drawings3/15/1926revised 5/8/1926Ink-on-linen drawings, 29x40 inchesFoundation Plan (1M)revised 8/17/192636Basement Floor Plan (2M)revised 9/11/192636First Floor Plan (3M)36Mezzanine Floor Plan (4M)36Second Floor Plan (5M)36Third Floor Plan (6M)36Pipe Space Plan (7M)36Heating Riser Diagram and Details (8M)36Electrical Construction Drawings4/12/1926Ink-on-linen drawings, 29x40 inchesBasement Plan and Riser Diagrams (9M)revised 9/11/192636First Floor Plan (10M)revised 9/30/192636Mezzanine Floor Plan (11M)revised 3/5/192636Second Floor Plan (12M)revised 9/11/192636Third Floor Plan (13M)revised 9/11/192636Fan Room and Roof Plan (14M)36The Evening News Association, (Detroit News) Building, Job No. 641, Detroit, Michigan1915-1916Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings9/18/1915Ink-on-linen drawings with pencil notations, 26-1/2x44-1/4 to 27-1/2x45-3/4 inchesPlot Plan (1)26-1/2x40-1/2 inches155Foundation Plan (2)revised 11/13/1915155Basement Plan (3)155

    (not dated due to linen damage)

    First Floor Plan (4)revised 11/15/1915155Mezzanine Floor Plan (5)revised 11/17/1915155Second Floor Plan (6)revised 11/16/1915155Third Floor Plan (7)155

    (not dated due to linen damage)

    Roof Plan (8)revised 11/17/1915155Fort Street and Lafayette Boulevard Elevations (9)revised 11/17/1915155Second Avenue Elevation (10)revised 11/17/1915155West Elevation (11)revised 11/17/1915155Sections on Lines "A-A" and "E-E" (12)revised 11/17/1915155Longitudinal Section (13)revised 11/17/1915155Transverse Section and Details of Steel Sash Partitions-Third Floor (14)revised 11/17/1915155Longitudinal Section thro' Shipping Room (15)revised 11/17/1915155Exterior Elevations and Sections (16)revised 11/17/1915156Main Entrance Elevation and Interior Elevations (17)revised 11/18/1915156Details of Color Press Foundation and Lift (18)revised 9/30/1915156Details of Lobbies and Stair Halls-Rooms #100, 107, 152, 209 and 325 (19)revised 11/18/1915156Details of Lobbies #107, 152 & 207, Hall #325, and Lobby Stairs (20)revised 11/18/1915156Details of Lobbies #100, 107 & 152 (21)revised 11/18/1915156Plans of Elevator and Stairway #1 and Sections thro' Elevator and Stairs #1 (22)revised 11/18/1915156Sections thro' Walls and Details of Cast Iron Window Frames on Street Fronts (23)revised 11/18/1915156Details of Windows and Monitor Roofs (24)revised 11/18/1915156Details of Stairs (25)revised 11/18/1915156Miscellaneous Elevations, Sections and Details (26)revised 11/18/1915156Interior Elevations and Ceiling Plan of General Offices (27)revised 11/18/1915156Interior Details of Rooms #211, 212 & 213 and Editor's Room (28)revised 11/18/1915156Details of Editorial Rooms (29)156Details of Counters, Cashier's Office and Waiting Room (30)revised 11/18/1915156
    Structural DrawingsInk-on-linen drawings with pencil notations, 27x42-1/2 to 27-1/2x45-1/2 inchesColumn Schedules and Details (1-S)7/20/1915157First Floor Framing Plan (2-S)7/22/1915157Mezzanine Framing Plan (3-S)157

    (not dated due to linen damage)

    Second Floor Framing Plan (4-S)7/15/1915157Third Floor Plan (5-S)157

    (not dated due to linen damage)

    Roof Framing Plan (6-S)7/24/1915157Truss Details (7-S)8/2/1915157
    Mechanical/Electrical Drawings9/21/1915Ink-on-linen drawings with pencil notations, 26-1/4x42-1/2 to 27x45 inchesDrainage Plan (1-M)157Basement Plan (2-M)157First Floor Plan (3-M)revised 7/17/1916157Mezzanine Floor Plan (4-M)revised 8/16/1916157Second Floor Plan (5-M)revised 12/16/1916157Third Floor Plan (6-M)revised 4/6/1916157Plan of Fan Rooms and Ventilating Systems (7-M)revised 12/1/1915157Riser Diagrams for Supply and Exhaust Fans (8-M)157Riser Diagram for Steam Heating and Section thru' Boiler Room (9-M)157Details of Ducts, Registers and Exhaust Fan Piping (10-M)157
    Construction Drawings of Alterations and Additions to Machine Room by Albert Kahn, Inc., Architects & Engineers8/13/1930revised 9/2/1930ink-on-linen drawings, 27-1/2x41 inchesMechanical DrawingsFoundation Plan--Drainage (1-M)157Basement and Sub-Basement Plans (2-M)157First Floor and Pent House Plans (3-M)157Basement Plan--Ventilating (4-M)157
    Robert and Frank Kuhn Residence, Job No. 642, 642-A, Grosse Pointe, Michigan1914Construction Drawings, Architectural and Mechanical14 drawings3212Grosse Pointe Village Hall, Job No. 652, Grosse Pointe, Michigan1915Construction Drawings, Architectural13 drawings3311Library Building, University of Michigan, Job Nos. 663 & 663-A-E, Ann Arbor, Michigan1916-19171949196919721977Library Building by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 663)Design Development Drawings (Block Plans)undatedInk-on-linen drawings, 19-3/4x25 inchesFirst Floor Plan87Second Floor Plan87Third Floor Plan87Architectural Construction Drawings5/20/1916revised 5/8/1917 except as notedInk-on-linen drawings with pencil, blue pencil and red ink notations, 35x38 to 35-1/2x43-1/2 inchesPlot Plan (1)revised 9/16/191687Footing and Foundation Plan (2)87Basement Plan (3)87First Floor Plan (4)87Second Floor Plan (5)87Third Floor Plan (6)revised 12/27/191787Fourth Floor Plan (7)87Attic Plan (8)87Roof Plan (9)revised 9/16/191687North and South Elevations (10)revised 9/16/191687East and West Elevations (11)revised 9/16/191687Sections on Lines "B-B" and "C-C" (12)revised 9/16/191687Sections through East and West Courts and on Line "J-J" (13)87Sections through Outside Walls and on Line "A-A" (14)87Sections on Lines "D-D" and "E-E" (15)revised 9/16/191687Sections on Line "B-B" and "G-G" (16)88Section on Line "F-F" and Details of Main Stair (17)revised 9/16/191688Plan and Section Showing Run of Book Carrier and Details of Toilets (18)revised 9/16/191688Basement Plan (19)revised 12/26/191788Second, Third and Fourth Floor Plans (20)88Typical Floor Plan of East Stack and Sections thru' Outside Walls of East and West Stacks (21)88Exterior Detail of Front (22)88Details of Main Entrance and of Windows, East End of Front Pavilion (23)88Typical Details of Center Bay, East Elevation, and of Bay, South Wall of East Stack (24)88Details of Entrances, West Elevation, of Rec. Entrance, East Elevation, and of Dormers on Stacks (25)revised 11/26/191788Plan and Elevations of Vestibule and Main and Rear Corridors (26)revised 7/6/191788Details of Delivery Corridor, Second Floor (27)revised 9/16/191688Details of Main Reading Room, Second Floor (28)revised 9/16/191688Details of Main Reading Room, Second Floor (29)88Elevations of Periodical Room and Study Room, First Floor (30)revised 9/16/191688Alternate North Elevation, Alternate East Elevation of North Pavilion and Detail of Terra Cotta Ornament and Brick Pattern (31)revised 9/16/191688Structural Construction DrawingsundatedInk-on-linen drawings, 35x41 inchesFirst Floor Framing Plan (1-S)89Second Floor Framing Plan (2-S)89Third Floor Framing Plan (3-S)89Fourth Floor Framing Plan (4-S)89Attic and Part Roof Framing Plan (5-S)89Column and Footing Schedules (6-S)89Mechanical Construction Drawings6/5/1916Ink-on-linen drawings, 35x41 inchesFoundation Plan (1M)revised 10/1/191789Basement Plan (2M)revised 9/27/191789First Floor Plan (3M)revised 10/26/191789Second Floor Plan (4M)revised 8/24/191689Third Floor Plan (5M)revised 11/21/191789Fourth Floor Plan (6M)revised 11/21/191789Attic Plan (7M)revised 11/21/191789Steam Riser Diagram (8M)revised 10/1/191789Supply and Exhaust Air Riser Diagrams (9M)revised 7/7/191689Details (10M)revised 8/24/191689Typical Floor Plan of East Stack and First Floor Plans of West Stack and First and Eighth Tiers (11M)8/5/191689Stack Buildings for the Library, University of Michigan, by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 663-A)Architectural Construction Drawings5/25/1916Ink-on-linen drawings, 28-1/2x41 inchesPlot Plan and Foundation and Basement Plans (1)undated810First and Second Floor Plans (2)810Third Floor Plan and Attic and Roof Plan (3)810South Elevation and Section on Line "C-C" (4)810West Elevation, Sections thru' East and West Stacks and Details of Entrance (5)810Alterations and Addition to Library Building, University of Michigan, by Albert Kahn Associated Architects & Engineers, Inc. (Job No. 663-B)Structural Construction Drawings1/31/1949Ink-on-linen drawings with yellow and red pencil revisions, 30-1/4x45-3/4 inchesFoundation Plan and Details (1-S)91Column and Footing Schedules (2-S)91First Floor Framing and Details (3-S)91Second Floor Framing Plan (4-S)91Third Floor Framing Plan (5-S)91Framing Plan at Bottom Chord of Trusses and Details of Trusses (6-S)91Roof Framing Plan (7-S)91Ceiling Framing Plan and Details (8-S)91Mechanical Construction Drawings1/19/1949Ink and blue pencil drawings on linen, 29-1/2x44-1/4 to 30x45-1/2 inchesPlot Plan and Details (1-M)92Foundation Plan (2-M)92Basement Floor Plan, First St ack Floor (3-M)92Basement Floor Mezzanine Plan, Second Stack Floor (4-M)92First Floor Ventilation Plan, Third Stack Floor (5-M)92First Floor Mezzanine Plan, Fourth Stack Floor (6-M)92Second Floor Plan, Fifth Stack Floor (7-M)92Second Floor Mezzanine Plan, Sixth Stack Floor (8-M)92Third Floor Plan, Seventh Stack Floor (9-M)92Third Floor Mezzanine Plan, Eighth Stack Floor, and Details (10-M)92Pipe Space Plan and Details (11-M)93Toilet Details (12-M)93Plans and Sections of Fan Rooms # 4 & 5 (13-M)2 drawings (one pencil-on-vellum)93Plan and Sections of Fan Room # 2 (14-M)2 drawings (one pencil and ink-on-vellum)93Plan of Fan Room # 1 and Equipment Schedule (15-M)2 drawings (one pencil-on-vellum)93Section thru' Building (16-M)93Heating Details (17-M)93Heating Riser Diagram and Details (18-M)93Electrical Construction Drawings8/12/1949Ink, pencil and blue pencil drawings on linen, 29-1/2x44-1/4 inchesPlot Plan, Riser Diagram and Symbols (1-E)94Basement Wiring Plan (2-E)94First Floor Wiring Plan (3-E)94Second Floor Wiring Plan (4-E)94Third Floor Wiring Plan (5-E)94Pipe Space Wiring Plan (6-E)94Basement Floor Plan, Present Building (7-E)94First Floor Plan, Present Building (8-E)94Alterations to General Library, University of Michigan (Job No. 663-C)Mechanical Design Develop ment Drawings by Albert Kahn Associated Architects & Engineers, Inc.3/3/1969Pencil drawings on sepia prints, 21x32 inchesBasement Floor Plan with New Supply Air Units (1-MD)95First Floor Plan with New Main Supply Air Duct (2-MD)95Second Floor Plan (3-MD)95Third Floor Plan with New Fan Room (4-MD)95Fourth Floor Plan with New Fan Room (5-MD)95Fifth Floor Plan (6-MD)95Typical Cross-Section (7-MD)Pencil-on-vellum drawing95General Library Renovation, University of Michigan (Job No. 663-D)Architectural Construction Drawings by Albert Kahn Associates, Inc., Architects & Engineers11/30/1972Pencil drawings on electrostatic prints on mylar, 23x37 inchesSite Plan (1)96Basement Plan (2)96First Floor Plan (3-A)undatedPencil drawing on sepia print96Second and Fourth Stack Floor Plans (4)96Sixth and Ninth Stack Floor Plans (6)96Third Floor Plan (7)96Fourth Floor Plan (8)96Attic and Tenth Stack Floor Plans (9)96Roof Plan (10)96West Elevation (12)96South Elevation (13)96Graduate Library, University of Michigan, Revisions to Ventilation in Photo Duplication Area (Job No. 663-E)Mechanical Construction Drawing by Albert Kahn Associates, Inc., Architects & Engineers7/29/1977Pencil-on-vellum drawing, 24x33-3/4 inches9 6Folder Part Plan of Basement Photo Duplication Area--Air-Conditioning and Ventilating (1-M)9 6Detroit Athletic Club, Garage Building, Job Nos. 672, 672-B and C, Detroit, Michigan1915-1921Detroit Athletic Club Garage Building (Job No 672) by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Construction Drawings6/23/1915Ink-on-linen drawings with pencil notations, 24x40 inchesPlot Plan, Foundation and Basement Plan and Riser Diagram (1)9/10/1915revised 10/19/1915147First and Second Floor Plans (2)revised 10/19/1915147Third Floor and Roof Plans (3)revised 10/19/1915147East and West Elevations (4)revised 10/19/1915147North and South Elevations (5)revised 10/19/1915147Longitudinal Section and Door Details (6)10/19/1915147Interior Details9/11/1915revised 10/19/1915147

    (not numbered due to linen damage)

    Detail of Main Front (8)147Revised Details of Front Elevation (8A)11/2/1915147Detail of Front Elevation32x39-1/2 inches147

    (not numbered or dated due to linen damage)

    Plans and Sections of Stairs (9)147Front Elevation and Details of Stairs (9)9/11/1915revised 10/28/1915147
    Structural Construction Drawings6/23/1915Ink-on-linen drawings with pencil notations, 24x42-1/2 inchesFooting Plan, Schedule and Details (1-S)147Typical Floor Plan and Beam Schedule (2-S)revised 11/8/1915147Column and Footing Schedule (3-S)revised 9/17/191518x31 inches147Footing Plan and Column Schedule (4-S)9/21/1915revised 10/14/1915147Mechanical DrawingPencil-on-linen drawing, 20x21-1/2 inchesRiser Diagram (1-M)7/10/1915147Structural Construction Drawings by Trussed Concrete Steel Company, Kahn System of Reinforced Concrete, DetroitBlue-line prints, 24x35-3/4 inchesFooting Schedule (M-942-A)9/24/1915148Column Schedule, Plan of Pipe Trench and Elevations Showing Lintels under First Floor (M-942-B)9/24/1915revised 11/18/1915148Second and Third Floor Plans (M-942-C)9/24/1915revised 10/20/1915148Roof Plan (M-942-D)10/2/1915revised 10/27/1915148Stair Details (M-942-E)10/13/1915revised 10/27/1915148
    Alterations and Addition to Detroit Athletic Club Garage (Job No. 672-B) by Albert Kahn, ArchitectArchitectural Construction Drawings9/13/1919Ink-on-linen drawings with pencil notations, 26x33-1/2 inchesBasement and Foundation Plan (1)149First Floor Plan (2)149Second Floor Plan (3)149Third Floor Plan (4)149Fourth Floor Plan (5)149Typical Floor Plan (6)149Roof Plan (7)149Front Elevation (8)149East Elevation (9)149North and South Elevations (10)149Longitudinal Section (11)149Details of Stairs #2, Elevators #3 & 4 and Passenger Elevator (12)149Sections and Plans of Stairs #1, Waiting Room Plan and Partition Sections (13)149Elevation of Garage Doors-Front Elevation (14)149Details of Front Elevation (15)149Elevator Sections (16)149Structural Construction Drawings9/22/1919Ink-on-linen drawings with pencil notations, 25-1/2x33-1/2 inchesSecond Floor (Typical) Plan (1-S)1410Fifth and Sixth Floor Plan (2-S)1410Roof Plan (3-S)1410Column Schedule and Details of Columns and Footings (4-S)1410Mechanical Construction DrawingsundatedInk-on-linen drawings, 25-3/4x33-1/2 inchesBasement and Foundation Plan (1-M)1410First Floor Plan (2-M)1410Second Floor Plan (3-M)1410Third Floor Plan (4-M)1410Typical Floor Plan (5-M)1410Sixth Floor Plan (6-M)1410Heating Riser Diagram (7-M)1410Alterations and Addition to Detroit Athletic Club Garage (Job No. 672-C) by Albert Kahn, ArchitectArchitectural Construction Drawings11/5/1920Ink-on-linen drawings with pencil notations, 26x33-1/2 to 26-1/2x35-1/2 inchesPlot Plan (1)1411Foundation Plan (2)1411First Floor Plan (3)1411Second Floor Plan (4)1411Third Floor Plan (5)1411Fourth Floor Plan (6)1411Sixth Floor Plan (7)1411Roof Plan (8)11/6/19201411Front Elevation (9)1411East Elevation (10)1411North and South Elevations (11)1411Longitudinal Section "D-D"(12)1411Sections "A-A" and "B-B" (13)1411Section "C-C" (14)1411Details of Exterior Showing Added Stories and Addition to Present Building (15)1411Plan of First Floor and Details of Waiting Room and Elevator (16)11/6/19201411Details of Stairs and Elevator (17)11/6/19201411Architectural Construction Drawings of RampsPencil and red ink drawings on vellum, 20-1/2x24-1/2 to 30-1/4x29 inchesLayout of Ramps-Third Floor (19)1412

    (undated due to paper damage)

    Ramp from First to Second Floors (19-A)1412

    (undated due to paper damaged)

    Layout of Ramp from Sixth Floor to Roof (19-B)3/29/19211412Longitudinal Section (19-C)3/29/19211412Roof Plan over Ramp, Indicating Elevations (19-E)4/1/19211412Elevation at Sixth Floor South Wall (19-F)4/4/19211412Plan of Garage Entrance and Revised Section thro' First Floor Ramp (19-G)4/9/19211412
    Structural Construction Drawings11/5/1920Red and black ink drawings on linen with pencil notations, 26x35 inchesFooting Plan and Details of Footings (1-S)151Second Floor Plan and Beam Schedule (2-S)151Third Floor Plan and Beam Schedule (3-S)151Fifth and Sixth Floor Plan and Beam Schedule (4-S)151Roof Plan and Beam Schedule (5-S)151Part Plan of Fifth Floor, Roof Plan over Ramp and Beam Schedule (6-S)151Column Schedule and Details of Footings (7-S)151Alternate Structural Drawings3/17/1921Pencil and red ink drawings on vellum, 24-1/2x32 to 25x33 inchesFooting Plan (8-S)151Part Second Floor Framing Plan and Beam Schedule(9-S)151Part Third Floor Framing Plan and Beam Schedule (10-S)151Fifth and Sixth Floor Framing Plan and Beam Schedule (11-S)151Roof Framing Plan and Beam Schedule (12-S)151Column Schedule and Details (13-S)151Mechanical Construction Drawings11/22/1920Ink-on-linen drawings, 27x33-3/4 to 27x35 inchesFoundation Plan (1-M)revised 12/1/1920152First Floor Plan (2-M)revised 12/1/1920152Second Floor Plan (3-M)152Third Floor Plan (4-M)revised 12/8/1920152Fourth Floor Plan (5-M)revised 12/8/1920152Sixth Floor Plan (6-M)152Heating Riser Diagram (7-M)152
    Ford Motor Company, Service Building, New Car Delivery Building, Job No. 692, 692-C, Omaha, Nebraska19151924Construction Drawings, Architectural, Structural, and Mechanical29 drawings3614C.G. Edgar Residence, Job No. 693, Grosse Pointe, Michigan1915Construction Drawings, Architectural and Mechanical15 drawings3213
    Job No. 732-770Grosse Pointe Shores School, Job No. 732, Vernier Road, Grosse Pointe Shores, Michigan1916Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings2/11/1916ink-on-linen drawings with pencil notations, 16-1/2x28 inchesPlot Planundated15x22 inches225Basement and First Floor Plans and Class Room Elevations (1)revised 3/29/1916225Attic and Roof Plan, Sections "A-A" and "B-B" and Details (2)225Elevations (3)225Elevation of South Entrance, Typical Wall Section and Sections thro' Entrances (4)225Clubhouse for the Detroit Golf Club, Job No. 740 and 740-B, F, G, H, J and K, Detroit, Michigan1916-191719231927Detroit Golf Club Clubhouse Drawings by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 740)Architectural Design Development Drawings ("Block Plans")undatedInk-on-linen drawings, 28-3/4x54-1/2 to 29-3/4x54-3/4 inchesBasement Plan30First Floor Plan30Second Floor Plan30Architectural Construction Drawings8/12/1916Ink-on-linen drawings with pencil notations, 29x54 inchesPlot Plan (1)undated29x47-1/4 inches30Foundation and Basement Plan (2)revised 5/14/191730First Floor Plan (3)revised 5/14/191730Second Floor Plan (4)revised 11/2/191630Roof Plan and Details of Trusses (5)revised 11/2/191630North and East Elevations and Section "A-A" Looking East (6)revised 11/2/191630South Elevation and Sections on Lines "BB" and "CC" (7)revised 11/2/191630West Elevation and Sections on Lines "DD," "EE," "FF" and "GG" (8)revised 11/2/191630Sections thru' Men's and Women's Locker Rooms and Grille Room and Details of Stairs (9)revised 11/2/191630Details of Typical Dormer, Porte-Cochere and Main Entrance, Bay Windows, Porches and Gables (10)revised 11/2/191630Details of Porch, Fountain and Pergola, Bay #130-A, Outside Entrance to Sales Room and Billiard Room Dormers (11)revised 11/2/191630Details for Court #139, Corridors, Lobby #143, Office #144, Stairs #2 and Hall #248 (12)30

    (not dated due to linen damage)

    Interior Details of Rooms (13)revised 2/21/191730Miscellaneous Details (14)revised 11/2/191630Plan and Details of Terraces and Pavements, South Front (15)30
    Mechanical/Electrical Construction Drawings8/17/1916Ink-on-linen drawings with pencil notations, 29x54 inchesBasement Plan (1-M)revised 6/12/191730First Floor Plan (2-M)revised 9/17/191730Second Floor Plan (3-M)revised 9/17/191730Basement Plan of Kitchen and Laundry Piping (4-M)5/22/1917revised 7/23/191729-1/4x43-1/2 inches30First Floor Plan of Kitchen Piping and Second Floor Piping Plan (5-M)5/22/1917revised 7/23/191729-3/4x43-1/4 inches30
    Detroit Golf Club Shelter House Drawing (Job No. 740-B)Architectural Construction Drawing10/8/1917revised 10/19/1917Ink-on-linen drawing with pencil notations, 29-1/4x39-3/4 inchesFoundation, Ground Floor and Roof Plans, Elevations and Sections (1)163Detroit Golf Club Locker Room Addition by Albert Kahn, Architect(Job No. 740-F)Architectural Construction DrawingundatedBlack and green ink drawing on tracing paper, 25x41-3/4 inchesSecond Floor Plan, Elevations, Sections and Detail of Terrazzo Base (1)163Mechanical Construction DrawingundatedInk drawing on tracing paper, 25-1/4x40 inchesBasement and Second Floor Plans and Section (1-M)163Detroit Golf Club Dormitory Addition for Help by Albert Kahn, Architect (Job No. 740-G)Architectural Construction Drawing3/15/1923Ink drawing on tracing paper with pencil notations, 20x15-1/2 inchesThird Floor Plan, Elevation and Section (1)163Mechanical Construction Drawing3/17/1923Ink and pencil drawing on tracing paper, 19-3/4x15-1/4 inchesBasement, Second Floor and Third Floor Plans (1-M)163Detroit Golf Club New Winter Vestibule at Main Entrance by Albert Kahn, Architect (Job No. 740-H)Architectural Construction Drawing11/17/1923Pencil and green ink drawing on tracing paper, 13x22-1/4 inchesPlan, Elevations and Details (1)163Detroit Golf Club Alterations by Albert Kahn, Inc., Architects (Job No. 740-J)Architectural Construction DrawingsundatedPencil drawings on tracing paperBasement Plan of Servant's Wing and Second Floor Plan of Maid's Quarters (1)12x29-1/4 inches163Plan, Elevation and Section of Caddy Master's Pavilion (2)12-3/4x22-1/4 inches163Detroit Golf Club New Glass Roof over Court by Albert Kahn, Inc., Architects (Job No. 740-K)Architectural Construction Drawing2/14/1927Pencil drawing on tracing paperFloor, Ceiling and Roof Plans, Section and Details (1)26-1/4x28-1/4 inches163Structural Construction Drawing2/14/1927Ink drawing on tracing paper, 10-1/4x15 inchesDetail of Four Trusses (1-S)163
    Ford Motor Company, Service Building, Job No. 760, Cleveland, Ohio1916Construction Drawings, Architectural and Structural12 drawings3615A. Krolik and Company, Warehouse and Store Building, Job No. 766, Jefferson Avenue and Randolph Street, Detroit, Michigan1917Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings3/20/1917ink-on-linen drawings with pencil notations, 25-1/2x36 inchesPlot Plan (1)243Foundation and Footing Plan (2)243Ground Floor Plan (3)revised 6/15/1917243First Floor Plan (4)243Second Floor Plan (5)revised 6/15/1917243Third and Typical Floor Plan (6)243Roof Plan (7)revised 6/15/1917243Woodbridge Street and Jefferson Avenue Elevations (8)243Randolph Street Elevation (9)243East Elevation (10)243Longitudinal Section A-A (11)revised 6/15/1917243Plan of First Floor Mezzanine, Sections B-B & C-C, and Typical Detail for Elevators, Stairs and Toilets (12)revised 6/15/1917243Typical Detail for Jefferson Avenue Elevation and Exterior Details (13)243Details of Entrance Driveway on Woodbridge Street, Typical Bay on Randolph Street and Details of Spandrels (14)243Details of Main Entrance, Marquise and Stairs (15)revised 6/15/1917243Sections thru Stairs and Elevators and Miscellaneous Details (16)243Details of Combined Column Footings and Column Schedule (17)243Structural Drawingsink-on-linen drawings with pencil notations, 26x36-1/2 inchesColumn Schedule and Details (1-S)4/20/1917244Column Schedule and Details (2-S)undated244Column Schedule and Details (3-S)5/29/1917revised 6/15/1917244Mechanical Drawings3/29/1917ink-on-linen drawings with pencil notations, 26x36 inchesDrainage and Boiler Room Plan (1-M)revised 7/19/1917244Ground Floor Plan (2-M)revised 6/27/1917244First Floor Plan (3-M)revised 6/27/1917244Second Floor Plan (4-M)revised 6/27/1917244Typical Floor Plan (5-M)244Ninth Floor Plan (6-M)revised 6/27/1917244Heating Riser Diagram (7-M)revised 6/27/1917244The Vinton Company, Office and Store Building (The Guaranty Trust Company Building), Job Nos. 770, 770-A & 770-D, Detroit, Michigan1916-1927The Vinton Building (Job No. 770)Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings10/21/1916revised 1/24/1917ink-on-linen drawings with pencil notations, 23x32 inchesPlot Plan (1-A)206Excavation Plan (1)206Plans of Foundation, Basement and First Floor (2)206Plans of First and Second Floors (3)206Typical Floor Plan, Twelfth Floor Plan and Roof Plan(4)206Woodward Avenue Elevation (5)206Congress Street Elevation (6)206North Elevation (7)206Longitudinal Section (8)206First Floor Plan (9)206Detail of Lower Stories, Front Elevation (10)206Detail of Upper Stories, Front Elevation (11)206Details of Upper Stories, Rear Elevation (12)206Details of Passenger Elevators (13)206Details of Alley and Interior Doors and Section thro' Iron Stairs to Basement (14)206Details of Stairs and Toilets and Details of Typical Spandrels (15)206Typical Details of Iron Stairs (16)206Details of Fire Escape, Stairs to Storage and Store Front (17)206Plan of First Floor Ceiling, Interior Elevations and Detail of Stairs from First to Second Floors (18)206Details of Fire Escape (21)206Details of Barber Shop and Toilet Room, Sixth Floor (26)6/28/191714-1/2x25-1/4 inches206Structural Drawings10/20/1916ink-on-linen drawings with pencil notations, 23x32 inchesFooting Plan (1-S)revised 1/27/1917207Column Schedule and Mezzanine Floor Plan (2-S)revised 12/27/1916207First Floor Plan (3-S)revised 2/20/1917207Second Floor Plan (4-S)10/21/1916revised 1/30/1917207Third Floor Plan (5-S)10/19/1916revised 2/20/1917207Typical Floor Plan and Beam Details (6-S)revised 2/20/1917207Roof Plan (7-S)10/19/1916revised 12/26/1916207Transverse Sections (8-S)revised 2/23/1917207Steel Framing Plan of Fourth and Fifth Floors and Column Connection Details (9-S)10/21/1016207Steel Framing Plan of Third Floor (11-S)10/21/1916revised 2/20/1917207Plan Showing Alternate Location of Columns 1, 2 & 3 (13-S)11/22/1916revised 1/29/1917207Alternate Steel Framing Plan of Second Floor (14-S)11/23/1916revised 12/7/1916207Elevations of Exterior Basement Walls (15-S)1/23/191713-1/2x31-3/4 inches207Roof Plan and Penthouse Details (16-S)2/22/1917revised 5/14/1917207Mechanical Drawings10/26/1916ink-on-linen drawings, 22-1/2x30 to 23x33-1/4 inchesPlans of Foundation, Basement and First Floor (1-M)revised 2/21/1917207Plans of Upper Part of First Floor and Second and Third Floors (2-M)revised 2/21/1917207Riser Diagram and Plans of Roof and Twelfth Floor (3-M)revised 2/21/1917207Details of Expansion Joints and Connections (4-M)revised 2/21/1917207Basement Plan and Sections (5-M)2/21/1917207First Floor Plan and Details of Radiators and Connections to Ventilating Coils (6-M)2/21/1917207Plan of Underground Piping and Restaurant Piping (7-M)2/21/1917207Construction Drawings by Albert Kahn, Architect, Ernest Wilby, Associate, Job No. 770-AArchitectural Drawings2/19/1917ink-on-linen drawings with pencil notations, 22-3/4x33-1/2 inchesBasement Plan (1)208First Floor Plan and Column Details (2)208Sections thro' Basement (3)208Interior Sections (4)208Details of Stairway No. 1 and of Show Windows' Radiator Enclosures (5)208Plans of Second through Twelfth Floors (6-16)11 drawings (19-1/2x11-1/2 inches)undated208Alterations to The Guaranty Trust Company Building, Job No.770-DConstruction Drawings by Albert Kahn, Inc., ArchitectArchitectural Drawings3/17/1927ink-on-linen drawings with pencil notations, 26x34-1/2 inchesBasement Floor Plan and Details of Metal Stair to Mezzanine and Second Floor (1)revised 3/23/1927209First Floor Plan (2)revised 4/8/1927209Woodward Avenue Elevation and Exterior Details (3)revised 3/23/1927209Interior Elevations (4)revised 4/8/1927209Mechanical Drawingundatedink-on-linen drawing with pencil notations, 25-3/4x34 inchesFirst Floor Plan (1-M)209
    Job No. 796-798Langley Field Aeronautical Experimental Station, Job Nos. 796 & 796-A, B, D, E, F, G, I, K, L, M, N, O, P, Q, S, T, W, X, Y, Z, AB, AE, AF, AM, AO, AR, AS, AT, AU, AV, AW, AX, BC & BJ, Hampton, Virginia1917-1918Plot Plans and Underground Plans by Albert Kahn, Architect, and Ernest Wilby, Associate, and by Albert Kahn, Architect (Job No. 796)Construction DrawingsArchitectural Drawingsink-on-linen drawings with pencil notationsSite Survey, untitledundated34x83 inches57Plan of Langley Field (4)8/2/191730-1/4x68-1/2 inches57Plan of Langley Field (9)8/17/191730-1/2x69 inches57Plan of Langley Field (64)10/19/191830-1/2x68-1/2 inches57Mechanical/Electrical Drawingsink-on-linen drawings with pencil notations, 26-1/2x37-1/2 inches, except as notedPlan of Underground Steam Heating Mains (100-M)2/22/191830x68-1/2 inches57Details of Underground Steam Mains (101-M)undated30-1/2x68-1/2 inches57Plan of Telephone, Fire Alarm, Sprinkler Alarm, Clock and Gasoline Distributing Systems (102-M)3/29/191857Plan of Telephone, Fire Alarm, Sprinkler Alarm, Clock and Gasoline Distributing Systems (103-M)3/29/191857Plan of Underground Electrical System (100-E)3/6/191857Plan of Underground Electrical Conduit and Wire Layout (101-E)undated57Site Plan (1)undated30x38-1/2 inches268Map Prepared from Original Survey of April 1917 to Be Used for Dredging, Clearing and Filling (2)6/5/1917revised 7/19/191736x48 inches268

    (with Albert Kahn's autographed initials in brown ink)

    Plot Plan Showing Location of Research Laboratory (1)7/11/191720-1/2x18-1/2 inches268Plan of Main Entranceundated29-1/4x46 inches268Plot Plan (34)1/21/191817x30 inches268Details of Inscriptions on Manhole Covers for Heating System and Storm Sewer (45)7/31/191817x10-3/4 inches268Plan of Main Entrance (46)9/28/1918268Plan of Block 2 (47)9/17/1918268Plan of Blocks 1 and 3 (48)9/17/1918268Plan of Block 4 (49)8/31/1918268Plan of Block 5 (50)9/28/1918268Plan of Block 8 (51)8/31/1918268Plan of Block 8 (51)9/28/1918268Plan of Block 10 (52)9/17/1918268Plan of Block 11 (53)9/17/1918268Plan of Block 13 (54)9/29/1918268Plan of Block 16 (55)8/1918revised 9/24/1918268Plan of Blocks 18 and 19 (56)8/31/1918268Plan of Block 20 (57)8/31/1918268Plan of Block 20 (57)9/28/1918268Plan of Block 21 (58)9/28/1918268Plan of Block 22 (59)9/17/1918268Plan of Block 11s (60)9/28/1918268Plan of Block 13s (61)9/17/1918268Plan of Block G (62)9/17/1918268
    Laboratory Building by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 796-A)Construction DrawingsArchitectural Drawings, except as noted8/25/1917ink-on-linen drawings with pencil notations, 24x35 inches, except as notedFoundation and Basement Plan (1)8/13/1917revised 9/17/1917269First Floor Plan (2)269Second Floor Plan (3)revised 11/12/1917269Roof Plan and Elevations (4)269North and South Elevations (5)269East and West Elevations and Sections Looking East and West (6)269Typical Cross-Section and Details (7)revised 11/12/1917269Plan of Auditorium and Sections thru' Auditorium and thru' Roof over East Wing (8)269Details of Exterior Elevation, One-Story Portion of North Elevation, Terrace and Penthouse (9)269Details of Center Entrance and Entrance to East Wing (10)269Basement Plan, Interior Elevations and Details of Stairs and Elevator Shaft (11)269Details of Stairs and Interior Elevations (12)269Elevations of First and Second-Floor Corridors, Looking North and South (13)269Miscellaneous Details (14)269Second Floor Plan Showing Re-Arrangement of Photographic Section (15)11/9/1917pencil drawing on tracing paper, 21-1/2x33-1/2 inches269Miscellaneous Details of Photographic Section (16)11/9/1917pencil drawing on tracing paper, 21-1/4x33-1/2 inches269Miscellaneous Details of Photographic Section (17)11/9/1917pencil drawing on tracing paper, 21-1/2x33-1/2 inches269Structural Drawings, 9/17/1917 revised 10/13/1917 except as noted9/17/1917revised 10/13/1917ink-on-linen drawings, 24x35 inchesFirst Floor Framing Plan and Beam and Column Schedules (1-S)8/13/1917269Second Floor Framing Plan and Beam Schedule (2-S)269Attic Floor Framing Plan and Beam Schedule (3-S)269Mechanical Drawings11/8/1917ink-on-linen drawings with pencil notations, 24x35 inchesFoundation and Basement Plan (1-M)269First Floor Plan (2-M)269Second Floor Plan (3-M)269Attic Plan (4-M)269Riser Diagrams and Details (5-M)269First Floor Electrical Plan (6-M)269Second Floor Electrical Plan (7-M)269Basement Electrical Plan and Wiring Diagram (8-M)11/9/1917269Aircraft Construction Building by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 796-B)Construction DrawingsArchitectural Drawings10/20/1917ink-on-linen drawings with pencil notations, 38x43 inches, except as notedFoundation Plan (1)revised 10/25/191722-1/2x43-1/4 inches58Floor Plan (2)58Roof Plan (3)58East, West and South Elevations (4)58North Elevation and Longitudinal and Transverse Sections (5)58Details of Exterior Walls of Assembling Room (6)58Typical South Elevation of Sawtooth Portion and Details of Employees' Entrance and Stock Room Doors (7)58Details of Superintendent's Office Locker and Toilet Rooms at Northwest Corner of Low Portion of Building (8)58Miscellaneous Details (9)58Typical Sections and Details of Assembly Room (High Portion) (10)58Typical Detail Sections of Sawtooth Portion (11)58Details of Fan Room (12)58Typical Details of Outside Sliding Doors in Assembling Room (13)58Details of Sawdust Bin and Tank (14)58Details of Dust Fan Room Mezzanine and Ducts to Toilet Room No. 4, Office and Stock Room (15)58Details of Interior Partitions (16)58Structural Drawings, except as noted10/20/1917ink-on-linen drawings with pencil notations, 38x43 inches, except as notedFraming Plan of Roof (1-S)58Details of Trusses and Column Bases (2-S)58Sections and Elevations (3-S)58Section Midway between Carrying Frames and Details of Bottom and Top Chord Connections (4-S)11/15/191719-1/2x24 inches58Mechanical/Electrical Drawingsundatedink-on-linen drawings, 38x43 inchesFoundation and Drainage Plan (1-M)58First Floor Plan (2-M)58Details of Assembly Room Fan Heating Apparatus (3-M)58Floor Plan Showing Light and Power Feeders (4-M)58Power House by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 796-D)Construction DrawingsPreliminary Architectural Drawings12/29/1917ink-on-linen drawings with pencil notations, marked "Void," 29-1/2x46-1/2 inchesPlot Plan and Foundation Plan (1)2610Basement and First Floor Plans (2)2610Roof Plan and Bunker and Mezzanine Floor Plan (3)2610North, South, East and West Elevations (4)2610Typical Exterior Details and Exterior Wall Details of Coal Bunker Bay (5)2610Cross-Section on Line "A-A" (6)2610Longitudinal Section on Line "B-B" (7)2610Miscellaneous Details (8)2610Details of Stairs and Toilet Rooms (9)2610Architectural Drawings3/2/1918ink-on-linen drawings with pencil notations, 29-1/2x46-1/2 inchesPlot Plan and Foundation Plan (1)revised 7/23/19182611First Floor and Ground Floor Plans (2)revised 11/8/19182611Roof Plan and Bunker and Mezzanine Floor Plan (3)revised 7/23/19182611North, South, East and West Elevations (4)2611Typical Exterior Details and Exterior Wall Details of Coal Bunker (5)2611Cross Section on Line "A-A" (6)2611Longitudinal Section on Line "B-B" (7)2611Details of Stairs and Toilet Rooms (8)revised 11/6/19182611Structural Drawings3/4/1918ink-on-linen drawings with pencil notations, 29-1/2x46-1/2 inchesFooting Plan and Schedule (1-S)revised 7/25/19182611Concrete Plan of First Floor and Mezzanine and Miscellaneous Details (2-S)revised 8/15/19182611Plan of Bunker and Sections "A-A" through "D-D" (3-S)revised 5/14/19182611First Floor Framing Plan and Detail of Typical Connection for Columns Supporting Bunker (4-S)revised 7/25/19182611Roof Framing Plan and Details of Trusses and Girders (5-S)revised 5/14/19182611Detail of Bunker Truss "H" and Framing Plan at Southeast Corner of Bunker (6-S)revised 5/14/19182611Airplane Hangar Unit by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 796-E)Construction DrawingsArchitectural Drawings, except as noted9/17/1917ink-on-linen drawings, 23-1/4x51-3/4 inches, except as notedPlot Plan, Foundation Plan and Details of Columns (1)8/13/1917revised 11/2/191759Floor Plan (2)revised 11/22/191759Roof Plan, Roof Framing Plan and Detail of Lower Chord Bracing (3)59Front, Rear and End Elevations and Transverse Section (4)59Transverse Section and Truss and Other Details (5)59End Elevation and Elevations of End of Rear, End of Front, Typical Windows and Typical Doorways (6)revised 11/22/191759Revised Roof Plan and Details (7)1/9/191823-1/2x34-1/4 inches59Details of Supports for Heaters in Hangars No. 1 & 2 (8)8/27/191817-1/2x30-1/4 inches59Structural Drawing11/24/1917pencil-on-vellum drawing, 16-3/4x21-1/2 inchesDetails of Plates for Support Curtain (1-S)59Mechanical/Electrical Drawing11/1/1917ink-on-linen drawing, 23-1/4x51-3/4 inchesPlan and Section Showing Wiring and Details of Water Cooler59Sea Plane Hangars by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 796-F)Construction DrawingsArchitectural Drawings, except as noted10/27/1917ink-on-linen drawings, 29-1/2x48-1/2 inchesFoundation Plan (1)10/20/19172612Floor Plan (2)10/20/19172612Roof Plan (3)2612North, South, East and West Elevations (4)2612Plan, Elevation and Section of Pylon and Elevation of and Section thro' East and West Walls (5)2612Details of Entrance Doorways, Storage Rooms, and Cast Blocks in Brick Pattern Spandrels on all Elevations (6)2612Details of Doors and North and South Elevations (7)2612Typical Cross-Section and Details of Skylights, Sump, Scuttle and Steel Flagpole (8)2612Structural Drawings, except as noted10/27/1917ink-on-linen drawings, 29-1/2x48-1/2 inches, except as notedHalf-Framing Plan and Roof Framing Plan (1-S)2612Truss Schedule (2-S)2612Details of Rolling Doors (3-S)2612Half-Elevation of East Wall Framing and Details of Trusses and Columns (4-S)2612Details of Reinforced Concrete (5-S)2612Plan and Section of Crane Platform (6-S)11/28/191727-1/2x34-1/2 inches2612Mechanical Drawings2/7/1918ink-on-linen drawings, 29-1/2x48-1/2 inchesFloor Plan (1-M)2612Details of Outside Lighting Fixtures, Electric Drive Truck, and Cabinets and Conduit on Columns # 16, 18, & 20 (2-M)2612Technical Stores Building by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 796-G)Construction DrawingsArchitectural Drawings, except as noted8/23/1917ink-on-linen drawings, 32x32 inchesFloor Plan and Foundation Plan (1)8/13/1917271Roof Plan and South and East Elevations (2)271Section "A-A" and Details of South Elevation and of Cornice and Brick Pattern in Spandrel (3)271Detail at Entrance Bays (4)271Structural Drawing7/23/1917ink-on-linen drawing, 31-1/4x31-3/4 inchesRoof Framing Plan and Beam and Footing Schedules (1-S)revised 10/31/1917271Mechanical/Electrical Drawing1/14/1918ink-on-linen drawing, 32x32 inchesPlumbing and Heating Plan and Electrical Plan (1-M)271Freight and Waiting Room by Albert Kahn, Architect (Job No. 796-I)Construction DrawingsArchitectural Drawings, except as noted3/8/1918ink-on-linen drawings with pencil notations, 17-1/2x31-1/2 inchesPlot Plan and Foundation Plan (1)271Floor Plan (2)271Section "B-B" and Roof Plan (3)271North, South, East and West Elevations (4)271Section on Line "A-A" and Miscellaneous Details (5)271Mechanical Drawing4/12/1918ink-on-linen drawing, 17-1/2x31-1/2 inchesFloor Plan (1-M)271Barracks by Albert Kahn, Architect (Job No. 796-K-R)Construction DrawingsArchitectural Drawings4/11/1918ink-on-linen drawings, 27-1/2x34-1/2 inchesPlot and Foundation Plans (1)272Basement and First Floor Plans (2)272Second Floor Plan and Attic and Roof Plan (3)272Rear, Front and End Elevations and Section "X-X" (4)272Miscellaneous Sections (5)272Interior Details (6)272Exterior Details (7)272Interior and Exterior Details (8)272Structural Drawings, except as noted3/25/1918ink-on-linen drawings, 27-1/2x34-1/2 inchesPlan of Reinforcing for Basement Floor, Sections and Column Schedule (101-S)3/27/1918272First and Second Floor Framing Plans (102-S)272Half-Plans of Roof and Attic Floor Framing and Details of Trusses and Column Base (103-S)272Mechanical Drawings4/2/1918ink-on-linen drawings, 27-1/2x34-1/2 inchesDrainage and Basement Plans (1-M)272First and Second Floor Plans (2-M)272Plot Plan, Heating and Plumbing Riser Diagrams and Detail of Hot Water Heater (3-M)272Sewage Disposal Building by Albert Kahn, Architect (Job No. 796-L)Construction DrawingsArchitectural Drawings6/13/1918ink-on-linen drawings, 23-1/2x34-1/4 inchesPlan and Longitudinal and Cross-Sections (1)revised 7/5/1918273Plot Plan, Plan, Roof Framing Plan over Imhoff Tank, Elevations and Sections (2)273North, South, West and Door Elevations (3)2 drawings (one undated)revised 7/5/1918273Administration Building by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 796-M)Construction DrawingsArchitectural Drawings11/2/1917ink-on-linen drawings with pencil notations, 27-1/2x34-1/2 inchesBasement Plan (1)273First and Second Floor Plans (2)273North and South Elevations (3)273West Elevation and Sections "A-A" through "D-D" (4)273Exterior Details (5)273Structural Drawings, except as noted10/31/1917ink-on-linen drawings, 27-1/2x34-1/2 inchesBasement Framing Plan and Column Schedule (1-S)10/27/1917273First Floor Framing Plan and Beam Schedule (2-S)273Second Floor Framing Plan and Lantern Details (3-S)revised 11/20/1917273Roof Framing Plan and Truss Details (4-S)273Mechanical Drawings5/21/1918ink-on-linen drawings, 27-1/2x34-1/2 inchesBasement and Attic Plans and Heating and Plumbing Riser Diagrams (1-M)273First and Second Floor Plans (2-M)273Housing Units (Types A, B, C, D, E, I, J, K, L & M) by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 796-N)Construction Drawings of Housing Unit Type A and All House TypesArchitectural Drawings of Housing Unit A12/24/1917ink-on-linen drawings,18-1/4x30-3/4 inchesBasement Plan (1-A)revised 1/18/1918274First Floor Plan (2-A)revised 1/18/1918274Second Floor Plan (3-A)274Front Elevation (4-A)274Rear Elevation (5-A)274End Elevation (6-A)274Architectural Drawings of All House Types, except as noted12/24/1917ink-on-linen drawings with pencil notations,18-1/4x30-3/4 inches, except as notedTypical Details for Stairs, Doors, Porches, Walls, and Fireplaces (7-Gen)revised 1/18/1918274Typical Details for Windows, Dormers, Closets and Cupboards (8-Gen)274Plot Plan (9)revised 7/26/1918274Plot Plan (10)3/7/1918revised 7/26/1918pencil drawing on paper, 17-1/2x30-1/2 inches274Plot Plan (11)3/7/1918revised 7/26/1918pencil drawing on paper, 17-1/4x30-1/4 inches274Plot Plan (12)2/5/1918revised 7/26/1918274Basement Plan for Warm Air Heating for House Types, C, D, J & F (13)1/7/1918274Basement Plan for Warm Air Heating for House Types A, B, G, H, K & F (14)1/7/1918274Basement Plan for Warm Air Heating for House Type E (15)1/7/1918274Mechanical Drawings of Basement Plans for Steam Heating for All House Typesink-on-linen drawings, 18-1/4x30-3/4 inchesHouse Types A, B, G, H, L, & K (1-M)4/23/1918274House Types C, D & J (2-M)4/24/1918274House Type E (3-M)4/25/1918274House Type F (4-M)4/26/1918274House Type I (5-M)4/26/1918274House Type M (6-M)4/27/1918274Construction Drawings of Housing Unit Type BArchitectural Drawings12/24/1917ink-on-linen drawings, 18-1/4x30-1/2 inchesBasement Plan (1-B)revised 1/18/1918275First Floor Plan (2-B)revised 1/18/1918275Second Floor Plan (3-B)275Front Elevation (4-B)275Rear Elevation (5-B)275End Elevation and Sections (6-B)275Typical Details, Plot Plans and Mechanical Plans (7-15)275

    (stored with House Type A)

    Mechanical Drawings of Basement Plans for Steam Heating for All House Types275

    (stored with House Type A)

    Construction Drawings of Housing Unit Type CArchitectural Drawings12/24/1917ink-on-linen drawings, 18-1/4x30-1/2 inchesBasement Plan (1-C)revised 1/18/1918275First Floor Plan (2-C)revised 1/18/1918275Second Floor Plan (3-C)275Front Elevation (4-C)275Rear Elevation (5-C)275End Elevation (6-C)275Typical Details, Plot Plans and Mechanical Plans (7-15)275

    (stored with House Type A)

    Mechanical Drawings of Basement Plans for Steam Heating for All House Types275

    (stored with House Type A)

    Construction Drawings of Housing Unit Type DArchitectural Drawings12/24/1917ink-on-linen drawings, 18-1/4x30-1/2 inchesBasement Plan (1-D)revised 1/18/1918275First Floor Plan (2-D)revised 1/18/1918275Second Floor Plan (3-D)275Front Elevation (4-D)275Rear Elevation (5-D)275End Elevation (6-D)275Typical Details, Plot Plans and Mechanical Plans (7-15)275

    (stored with House Type A)

    Mechanical Drawings of Basement Plans for Steam Heating for All House Types275

    (stored with House Type A)

    Construction Drawings of Housing Unit Type EArchitectural Drawings12/24/1917electrostatic prints of photostatic prints, 11x17 inchesBasement Plan (1-E)revised 1/18/1918275First Floor Plan (2-E)revised 1/18/1918275Second Floor Plan (3-E)275Front Elevation (4-E)275Rear Elevation (5-E)275End Elevations (6-E)275Typical Details, Plot Plans and Mechanical Plans (7-15)275

    (stored with House Type A)

    Mechanical Drawings of Basement Plans for Steam Heating for All House Types275

    (stored with House Type A)

    Construction Drawings of Housing Unit Type IArchitectural Drawings12/24/1917ink-on-linen drawings, 18-1/4x30-1/2 inchesBasement Plan (1-I)revised 1/18/1918276First Floor Plan (2-I)revised 1/18/1918276Second Floor Plan (3-I)276Front Elevation (4-I)276Rear Elevation (5-I)276End Elevation (6-I)276Typical Details, Plot Plans and Mechanical Plans (7-15)276

    (stored with House Type A)

    Mechanical Drawings of Basement Plans for Steam Heating for All House Types276

    (stored with House Type A)

    Construction Drawings of Housing Unit Type JArchitectural Drawings12/29/1917ink-on-linen drawings, 18-1/4x30-1/2 inchesBasement Plan (1-J)undated276First Floor Plan (2-J)revised 1/18/1918276Construction Drawings of Housing Unit Type JArchitectural Drawings12/29/1917ink-on-linen drawings, 18-1/4x30-1/2 inchesSecond Floor Plan (3-J)276Front Elevation (4-J)276Rear Elevation (5-J)276End Elevation (6-J)276Typical Details, Plot Plans and Mechanical Plans (7-15)276

    (stored with House Type A)

    Mechanical Drawings of Basement Plans for Steam Heating for All House Types276

    (stored with House Type A)

    Construction Drawings of Housing Unit Type KArchitectural Drawings12/29/1917ink-on-linen drawings, 18-1/4x30-1/2 inchesBasement Plan (1-K)revised 1/18/1918276First Floor Plan (2-K)revised 1/18/1918276Second Floor Plan (3-K)276Front Elevation (4-K)revised 1/18/1918276Rear Elevation (5-K)276End Elevation (6-K)276Typical Details, Plot Plans and Mechanical Plans (7-15)276

    (stored with House Type A)

    Mechanical Drawings of Basement Plans for Steam Heating for All House Types276

    (stored with House Type A)

    Construction Drawings of Housing Unit Type LArchitectural Drawings1/11/1918ink-on-linen drawings, 18-1/4x30-1/2 inchesBasement Plan (1-L)revised 1/18/1918277First Floor Plan (2-L)277Second Floor Plan (3-L)277Front Elevation (4-L)277Rear Elevation (5-L)277End Elevation (6-L)277Typical Details, Plot Plans and Mechanical Plans (7-15)277

    (stored with House Type A)

    Mechanical Drawings of Basement Plans for Steam Heating for All House Types277

    (stored with House Type A)

    Construction Drawings of Housing Unit Type MArchitectural Drawingsundatedink-on-linen drawings, 18-1/4x30-1/2 inchesBasement Plan (1-M)277First Floor Plan (2-M)277Second Floor Plan (3-M)277Front Elevation (4-M)277Rear Elevation (5-M)277End Elevation (6-M)277Typical Details, Plot Plans and Mechanical Plans (7-15)277

    (stored with House Type A)

    Mechanical Drawings of Basement Plans for Steam Heating for All House Types277

    (stored with House Type A)

    Commissioned Officers' Quarters by Albert Kahn, Architect (Job No. 796-O)Construction DrawingsArchitectural Drawings4/6/1918ink-on-linen drawings, 24x34-1/2 inchesFoundation and Basement Plans (1)278First and Second Floor Plans (2)278Roof Plan, Section "A-A" and Details of Chimney, Dormers and Interior Trim (3)278North, South, East and West Elevations (4)278Window and Other Details (5)278Details of Main Entrance and Windows (6)278Details of Entry and Hall, Dining Room and Kitchen (7)278Structural Drawingsink-on-linen drawings with pencil notations, 24x34-1/2 inchesFirst and Second Floor Framing Plans (1-S)3/28/1918revised 5/26/1918278Beam Schedule (2-S)5/14/1918278Mechanical Drawings4/10/1918revised 5/30/1918ink-on-linen drawings, 24x34-1/4 inchesDrainage and Basement Plans (1-M)278First and Second Floor Plans (2-M)278Machine Shop and Engine Storage Building by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 796-P)Construction DrawingsArchitectural Drawings, except as noted9/17/1917ink-on-linen drawings with pencil notations, 24x43 inchesFoundation Plan (1)8/13/1917revised 9/17/1917279First Floor Plan (2)revised 11/23/1917279Roof Plan (3)revised 11/23/1917279North, South, East and West Elevations (4)279Exterior Elevations and Sections "A-A" and "B-B" (5)279Plan of Toilet Room and Sections "A-A" through "D-D" (7)279Details of Steel-Sash Doors and Sawtooth Skylight (8)279Structural Drawingsink-on-linen drawings, 25x43 inchesRoof Framing Plan, Sections of Sawtooth Roof and Beam Schedule (1-S)8/21/1917279Sections of Sawtooth Roof (2-S)10/31/1917279Mechanical Drawingsundatedink-on-linen drawings, 24x43 inchesFirst Floor and Fan Room Plans and Details for Heating, Ventilating and Plumbing (1-M)279First Floor Electrical Plan (2-M)279Foundry by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 796-Q)Construction DrawingsArchitectural Drawings11/15/1917ink-on-linen drawings, 23-1/2x34-1/2 inchesPlot, Foundation, Floor and Roof Plans (1)279North, South, East and West Elevations and Details of Monitor Roof (2)279Exterior Details (3)279Longitudinal and Cross-Sections and Miscellaneous Details (4)279Structural Drawing11/15/1917ink-on-linen drawing with pencil notations, 23-1/2x34-1/2 inchesFloor Plan and Details of Trusses (1-S)279Guard House by Albert Kahn, Architect (Job No. 796-S)Construction DrawingsArchitectural Drawings4/19/1918ink-on-linen drawings with pencil notations, 18x31-3/4 inchesPlot Plan and Foundation Plan (1)2710Floor Plan and Details (2)2710Roof and Roof Framing Plan and Details (3)2710North, South, East and West Elevations (4)2710Details of Colonnade and Column (5)2710Details of Doors, Windows, Walls and Brickwork (6)2710Details of Cells (7)2710Details of Prison Cage and Cell (8)2710Structural Drawing4/19/1918ink-on-linen drawing, 18x31-3/4 inchesRoof Plan and Column Details (1-S)2710Mechanical Drawing4/16/1918ink-on-linen drawing, 18x31-3/4 inchesFloor Plan and Details of Hot Water Heater and Radiator (1)2710Quarter Master's Storehouse by Albert Kahn, Architect (Job No. 796-T)Construction DrawingsArchitectural Drawings8/17/1918ink-on-linen drawings with pencil notations, 23-1/2x34-1/4 inchesPlot Plan and Basement Plan (1)2710First Floor Plan and Interior Elevations (2)2710Second Floor Plan and Door and Stair Details (3)2710Roof Plan and Shelving Details (4)2710Elevations and Sections (5)2710Plan and Elevation of Entrance to Commissary and Miscellaneous Sections (6)2710Exterior Details of Marquise, Doors and Windows (7)2710Details of Stairs and Elevators (8)2710Structural Drawings, except as noted7/10/1918ink-on-linen drawings, 23-1/2x34-1/4 inchesBasement Floor Framing Plan, Column and Footing Schedule and Footing Details (1-S)7/12/19182710First Floor Framing Plan and Beam Schedule (2-S)2710Second Floor Framing Plan and Beam Details (3-S)2710Attic Floor Framing Plan and Sections "A-A" and "B-B" (4-S)2710Mechanical/Electrical Drawings, except as noted7/11/1918ink-on-linen drawings, 23-1/2x34-1/4 inchesBasement Plan (1-M)2710First Floor Plan (2-M)2710Second Floor Plan (3-M)7/12/19182710Truck Shed by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 796-W)Construction DrawingsArchitectural Drawings8/18/1917ink-on-linen drawings with pencil notations, 19x37-1/4 inchesPlot Plan, Foundation Plan and Sections (1)2711Floor Plan and Details (2)2711Roof Plan, Sway Frame Plan and Detail of Truss (3)2711Elevations, Transverse Section and Details of Partitions (4)2711Exterior Details (5)2711Mechanical/Electrical Drawing11/2/1917ink-on-linen drawing, 19x37-1/4 inchesPlot Plan, Floor Plan and Details (1-M)2711Post Exchange by Albert Kahn, Architect (Job No. 796-X)Construction DrawingsArchitectural Drawings11/16/1918ink-on-linen drawings with pencil notations, 23-1/2x34-1/2 inchesPlot Plan and Foundation Plan (1)2711Basement Plan and Door Schedule (2)2711First Floor Plan and Details of Terrace and Gymnasium (3)2711Second Floor Plan and Interior Details (4)2711Elevations (5)2711Longitudinal and Cross-Sections and Details of Rear Entrance (6)2711Details of Main Entrance Fa&#231;ade (7)2711Details of Minor Doors and Windows (8)2711Details of Swimming Pool, Club Room and Fireplace (9)2711Interior Sections and Details (10)2711Structural Drawings, except as noted10/10/1918ink-on-linen drawings, 23-1/2x34-1/2 inchesBasement Floor Framing Plan, Beam Schedule and Section thru' Pool (1-S)2711First Floor Framing Plan and Column & Footing and Beam Schedules (2-S)2711Second Floor Framing Plan and Beam Schedule (3-S)2711Ceiling and Roof Framing Plans and Details of Trusses and Joints (4-S)11/1/19182711Mechanical/Electrical Drawings11/13/1918ink-on-linen drawings, 24x35 inchesPlot Plan and Drainage Plan (1-M)2711Basement Plan and Plumbing Riser Diagram (2-M)2711First Floor Plan (3-M)2711Second Floor Plan (4-M)2711Hospital (Job No. 796-Y and 796-YR)Construction Drawings by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 796-Y)Architectural Drawings11/17/1917ink-on-linen drawings with pencil notations, 27-1/2x34-1/2 inchesPlot, Foundation and Basement Plans and Details of Footings, Columns and Walls (1)2712First and Second Floor Plans (2)2712Third Floor and Roof Plan, Sections "A" and "B" and Details (3)2712Elevations (4)2712Elevation of Typical Bay, Typical Wall Section and Details of Main Entrance (5)2712Details of Main Entrance Marquise, Rear Entrance and Terra-Cotta Pier Caps and Sills (6)2712Details of Operating Room Bay, Operating Room Windows and Dormer on Real Elevation (7)2712Details of Stairs and Fire Escape (8)2712Miscellaneous Details (9)2712Structural Drawings11/17/1917ink-on-linen drawings, 23-1/2x34-1/2 inchesFirst and Second Floor Framing Plans and Beam Schedules (1-S)revised 1/3/19182712Basement Floor Plan, Column Schedule and Details of Beams and Columns (2-S)2712Construction Drawings by Albert Kahn, Architect (Job No. 796-YR)Architectural Drawings6/11/1918ink-on-linen drawings, 27-1/2x34-1/2 inchesPlot Plan, Foundation Plan and Footing Details (1)2713Basement Plan and Details (2)2713First Floor Plan and Door Details (3)2713Second Floor Plan and Window Details (4)2713Roof and Attic Plan and Sections thru' Building (5)2713North, South, East and West Elevations (6)2713Elevations of Center Wing, Sections and Details of Fire Escape and Vent Dormers (7)2713Exterior Elevations and Sections (8)2713Details of Main, Kitchen and East Wing Entrances (9)2713Details of Elevator and Stairs (10)2713Details of Kitchen, Lab, Dispensary and Toilet (11)2713Structural Drawingsink-on-linen drawings with pencil notations, 27-1/2x34-1/2 inchesBasement Floor Plan and Column and Beam Schedules (100-S)5/25/19182713First Floor Framing Plan and Beam Schedule (101-S)6/11/1918revised 7/22/19182713Second Floor Framing Plan and Beam Schedule (102-S)6/11/1918revised 7/16/19182713Attic Floor Framing Plan, Section on "A-A" and Beam Schedule (103-S)5/20/1918revised 7/16/19182713Basement Floor Plan and Wall Details (104-S)7/16/1918revised 7/23/19182713Mechanical/Electrical Drawings6/21/1918ink-on-linen drawings, 27-1/2x34-1/2 inchesFoundation Plan (1-M)2713Basement Plan and Details (2-M)2713First Floor Plan (3-M)2713Second Floor Plan (4-M)2713Roof and Attic Plan (5-M)2713Wind Channel Building by Albert Kahn, Architect (Job No. 796-Z)Construction DrawingsArchitectural Drawings5/1/1918revised 6/27/1918ink-on-linen drawings, 23-1/2x34-1/4 inchesPlot, Foundation and Roof Plans, Section "X-X" and Footing Details (1)281First and Mezzanine Floor Plans, Stair Details and Door Schedule (2)281North, South, East and West Elevations (3)281Exterior Elevations (4)281Structural Drawingsink-on-linen drawings, 23-1/2x34-1/4 inchesRoof Framing Plan, Truss Diagram and Beam Schedule (1-S)5/4/1918revised 6/27/1918281Details of Framing and Columns (2-S)5/4/1918revised 6/24/1918281Details of Foundation for Wind Channel Motor (3-S)6/26/1918281Mechanical/Electrical Drawingsink-on-linen drawings, 23-1/2x34-1/2 inches, except as notedDrainage, First Floor and Mezzanine Floor Plans (1-M)5/1/1918revised 5/31/1918281Diagram of Switch Board Wiring and Connections (2-M)7/12/191817-3/4x30-1/2 inches281Observation Tower by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 796-AB)Construction DrawingsArchitectural Drawings, except as noted1/3/1918ink-on-linen drawings, 27-1/2x34-1/2 inches, except as notedPlans at Balcony and at Top, Elevations of Towers # 1, 2 & 3 and Details (1)281Plot Plan (2)undated281Plot Plan, Plans of Towers # 1, 2 & 3 and Details of Footings (2)281Details for Instrument House for Towers (3)1/28/1918281Section thru' Railing of Platform at Top of Observation Tower3/6/1918pencil-on-vellum drawing, 20x37-1/2 inches281Non-Commissioned Officers' Quarters by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 796-AE)Construction DrawingsArchitectural Drawings2/6/1918ink-on-linen drawings, 23-1/2x34-1/4 inchesPlot Plan and Details of Bathrooms, Kitchen and Pantry (1)282Basement, First Floor, Second Floor and Roof Plans (2)revised 4/26/1918282North, South, East and West Elevations and Section "A-A" (3)revised 4/26/1918282Sections and Details of Stairs, Footings and Kitchen Porch (4)revised 3/7/1918282Details of Entrances, Dormers and Walls (5)282Details of Stairs, Doors and Windows (6)282Mechanical/Electrical Drawing2/9/1918ink-on-linen drawing, 23-1/2x34-1/4 inchesPlot, Basement, First Floor and Second Floor Plans and Details of Radiator and Hot Water Heater Connections (1-M)282Bakery by Albert Kahn, Architect (Job No. 796-AF)Construction DrawingsArchitectural Drawings8/14/1918ink-on-linen drawings with pencil notations, 23-1/2x34-1/4 inchesFoundation Plan, Section thru Firing Room and Miscellaneous Details (1)282Floor Plan, Clear Story and Roof Plan and Details of Toilet Room, Doors and Condensation Gutter (2)282Elevations and Sections (3)282Details of Entrances, Walls and Vent Dormers (4)282Foundation, First Floor and Roof Plans for Structural and Mechanical Work (5)revised 12/31/1918282Boat House by Albert Kahn, Architect, Ernest Wilby, Associate (Job 796-AM)Construction DrawingsArchitectural Drawings9/17/1917ink-on-linen drawings with pencil notations, 19-1/2x24 inchesPlot Plan and First Floor Plan (1)revised 11/2/1917283Assembly Room Plan and Details of Doors and Trusses (2)revised 11/22/1917283North and South Elevations (3)283East and West Elevations (4)283Sections on Lines "A-A" and "B-B" (5)revised 11/22/1917283Exterior Details (6)revised 10/17/1917283Structural Drawingsink-on-linen drawings, 19-1/2x24 inchesPlan of First Floor Showing Piling Below (1-S)10/8/1917revised 11/12/1917283Details of Beams, Sheet Piling and Bases for Steel Columns (2-S)10/19/1917283Mechanical/Electrical Drawings11/2/1917ink-on-linen drawings, 19-1/2x24 inchesPlot Plan, Foundation Plan and Wiring Diagram (1-M)283First Floor Plan (2-M)283Assembly Room Plan (3-M)283Main Flagstaff by Albert Kahn, Architect (Job No. 796-AO)Architectural Drawingink-on-linen drawing, 17-1/2x31-1/2 inches

    (undated due to linen damage)

    Details of Flagstaff (1)283
    Water Tower by Albert Kahn, Architect (Job No. 796-AR)Construction Drawings8/16/1918ink-on-linen drawings with pencil notations, 23-1/2x34-1/4 inchesArchitectural DrawingsPlot, Foundation and Miscellaneous Plans (1)283Front and Side Elevations (2)283Rear Elevation and Miscellaneous Details (3)283Details of Base (4)283Details of Top (5)283Structural DrawingPlans, Sections and Details (1-S)283Mechanical DrawingPlan and Sections (1-M)283Housing Units (Types A-1, A-2, B-1 & B-2) by Albert Kahn, Architect, Ernest Wilby, Associate (Job No. 796-AS)Construction Drawings of Housing Unit Type A-1 and of All House Types1/5/1918ink-on-linen drawings, 17-1/2x30-1/2 inchesArchitectural Drawings of Housing Unit Type A-1Basement Plan (1)284First Floor Plan (2)284Second Floor Plan (3)284Front and End Elevations (4)284Rear Elevation and Typical Wall Section (5)284Architectural Drawings of All House TypesDetails of Stairs, Porch, Fireplace, Windows, Doors and Walls (6-Gen)revised 1/18/1918284Details of Dormers, Windows, Kitchen Cupboard and Linen Closet (7-Gen)284Plot Plan (8)revised 9/3/1918284Mechanical Drawing of All House TypesundatedBasement Plan (1-M)284Construction Drawings of Housing Unit Type A-2Architectural Drawings1/5/1918ink-on-linen drawings, 17-1/2x30-1/2 inchesBasement Plan (1)285First Floor Plan (2)285Second Floor Plan (3)285Front and End Elevations (4)285Rear Elevation (5)285Typical Details and Plot Plan (6-8)285

    (stored with House Type A-1)

    Mechanical Drawing of Basement Plan for All House Types (1-M)285

    (stored with House Type A-1)

    Construction Drawings of Housing Unit Type B-1Architectural Drawings1/5/1918ink-on-linen drawings, 17-1/2x30-1/2 inchesBasement Plan (1)285First Floor Plan (2)285Second Floor Plan (3)285Front and End Elevations (4)285Rear Elevation (5)285Typical Details and Plot Plan (6-8)285

    (stored with House Type A-1)

    Mechanical Drawing of Basement Plan for All House Types (1-M)285

    (stored with House Type A-1)

    Construction Drawings of Housing Unit Type B-2Architectural Drawings1/5/1918ink-on-linen drawings, 17-1/2x30-1/2 inchesBasement Plan (1)285First Floor Plan (2)285Second Floor Plan (3)285Front and End Elevations (4)285Rear Elevation (5)285Typical Details and Plot Plan (6-8)285

    (stored with House Type A-1)

    Mechanical Drawing of Basement Plan for All House Types (1-M)285

    (stored with House Type A-1)

    Commissioned Officers' Houses by Albert Kahn, Architect (Job No. 796-AT)Construction Drawings of House Type A and All House Types, except as noted7/6/1918ink-on-linen drawings, 23-1/2x34-1/4 inchesArchitectural Drawings of House Type APlot Plan (1-A)286Basement Plan and Miscellaneous Sections (1)286First Floor Plan (2)286Second Floor Plan (3)286Roof Plan (4)286Front Elevation (5)286End Elevation and Sections on Lines "A-A" and "B-B" (6)286Rear Elevation (7)286Architectural Drawings of All House TypesDetails of Cornice, Windows, Dormers and Interiors (8-Gen)286Stairway, Fireplace and Miscellaneous Details (9-Gen)286Mechanical Drawing of House Type A5/8/1918revised 7/10/1918Basement Plan (1-M)286Construction Drawings of House Type B, except as noted7/6/1918ink-on-linen drawings, 23-1/2x34-1/4 inchesArchitectural Drawings of House Type BBasement Plan and Miscellaneous Sections (1)286First Floor Plan (2)286Second Floor Plan (3)286Roof Plan (4)286Front Elevation (5)286End Elevation and Sections on Lines "A-A" and "B-B" (6)286Rear Elevation (7)286Exterior and Interior Details (8 & 9-Gen)286

    (stored with House Type A)

    Mechanical Drawing of House Type B4/27/1918revised 7/10/1918Basement Plan with Details of Tank and Heater Connections for All Units (1-M-Gen)286
    Construction Drawings of House Type C, except as noted7/6/1918ink-on-linen drawings, 23-1/2x34-1/4 inchesArchitectural Drawings of House Type CBasement Plan (1)286First Floor Plan (2)286Second Floor Plan (3)286Roof Plan (4)286Front Elevation (5)286End Elevation and Section on Line "A-A"(6)286Rear Elevation (7)286Exterior and Interior Details (8 & 9-Gen)286

    (stored with House Type A)

    Mechanical Drawing of House Type C5/8/1918revised 7/10/1918Basement Plan (1-M)286
    Construction Drawings of House Type D-1, except as noted7/6/1918ink-on-linen drawings, 17-1/2x30-1/2 inchesArchitectural Drawings of House Type D-1Basement Plan (1)287First Floor Plan (2)287Second Floor Plan and Section "D-D" (3)287Roof Plan (4)287Front and Side Elevations (5)287Rear and Side Elevations (6)287Exterior and Interior Details (8 & 9-Gen)287

    (stored with House Type A)

    Mechanical Drawing of House Type D-15/16/1918revised 7/10/1918Basement Plan (1-M)287
    Construction Drawings of House Type D-2, except as noted7/6/1918ink-on-linen drawings, 17-1/2x30-1/2 inchesArchitectural Drawings of House Type D-2Basement Plan (1)287First Floor Plan (2)287Second Floor Plan and Section "D-D" (3)287Roof Plan (4)287Front and Side Elevations (5)287

    (stored with House Type D-1)

    Rear and Side Elevations (6)287

    (stored with House Type D-1)

    Exterior and Interior Details (8 & 9-Gen)287

    (stored with House Type A)

    Mechanical Drawing of House Type D-25/17/1918revised 7/10/1918Basement Plan (1-M)287
    Construction Drawings of House Type E-1, except as noted7/6/1918ink-on-linen drawings, 17-1/2x30-1/2 inchesArchitectural Drawings of House Type E-1Basement Plan (1)287First Floor Plan (2)287Second Floor Plan (3)287Roof Plan (4)287Front and Side Elevations (5)287Rear and Side Elevations (6)287Sections "A-A" and "B-B" and Details of Bay (7)287Exterior and Interior Details (8 & 9-Gen)287

    (stored with House Type A)

    Mechanical Drawing of House Type E-15/10/1918revised 7/10/1918Basement Plan (1-M)287
    Construction Drawings of House Type E-27/6/1918ink-on-linen drawings, 17-1/2x30-1/2 inchesArchitectural Drawings of House Type E-2Basement Plan (1)287First Floor Plan (2)287Second Floor Plan (3)287Roof Plan (4)287Exterior and Interior Details (8 & 9-Gen)287

    (stored with House Type A)

    Mechanical Drawing of House Type E-15/15/1918revised 7/10/1918Basement Plan (1-M)287
    Freight Dock by Albert Kahn, Architect (Job No. 796-AU)Construction DrawingsArchitectural Drawings, except as noted10/30/1918ink-on-linen drawings, 27-3/4x34-1/4 inchesPlot, Foundation and Floor Plans and Section (1)288Sections "A-A" through "D-D" and Details (2)288Plan of Freight Pier and Details of Pipes (3)11/19/1918288Oil Reclaiming Station by Albert Kahn, Architect (Job No. 796-AV)Construction DrawingsArchitectural Drawings5/3/1918revised 7/27/1918ink-on-linen drawings, 23-1/2x34-1/2 inchesFoundation Plan, First Floor Plan, Sections and Details (1)288Roof Plan and Elevations (2)288Structural Drawing5/3/1918revised 7/27/1918ink-on-linen drawing, 23-1/2x34-1/2 inchesPart Foundation Plan, Roof and First Floor Framing Plans and Sections (1-S)288Mechanical Drawing5/31/1918ink-on-linen drawing, 23-1/2x34-1/2 inchesFoundation and First Floor Plans and Sections (1-M)288Garbage Incinerator Building by Albert Kahn, Architect (Job No. AW)Construction DrawingsArchitectural Drawings7/17/1918ink-on-linen drawings, inches288Plot, Floor and Roof Plans (1)288Elevations and Sections (2)288Details of Doors, Stairs and Work Bench, etc. (3)288Street Lighting by Albert Kahn, Architect (Job No. 796-AX)Construction DrawingsArchitectural Drawingsink-on-linen drawingsDetails of Concrete Lamp Posts (1)7/13/191818-1/4x30-3/4 inches288Details of Cast Iron Lamp Posts (2)8/26/191817-1/2x23-1/2 inches288Quarter Master's Industrial Stores by Albert Kahn, Architect (Job No. 796-BC)Construction DrawingsArchitectural Drawings, except as noted9/18/1918ink-on-linen drawings, 17-1/2x30-1/2 inchesPlot, Foundation, Floor and Roof Plans (1)289Elevations, Section and Details of Beam "A" (2)289Exterior Details (3)9/9/1918289Mechanical Drawing11/22/1918ink-on-linen drawing, 17-1/2x30-1/2 inchesPlot, Foundation and Floor Plans (1-M)289Quarter Master's Industrial Shops by Albert Kahn (Job No. 796-BJ)Construction DrawingsArchitectural Drawings11/5/1918ink-on-linen drawings, 23-3/4x34-1/4 inchesPlot, Foundation, Floor and Roof Plans and Details (1)289Exterior Details (2)289Elevations and Sections (3)289Structural Drawing11/4/1918ink-on-linen drawing, 23-1/2x34-1/4 inchesFraming Plans for Concrete Roof and Wood Roof and Details (1-S)289Mechanical Drawing11/22/1918ink-on-linen drawing, 23-1/2x34-1/2 inchesPlot, Foundation and Floor Plans (1-M)289
    Offices of Albert Kahn, Architect, Marquette Building, Job Nos. 798, 798-D, F, G, K, L, O, P and Q, Detroit, Michigan1917-1929Proposed Offices for Albert Kahn Architect (Job No. 798)Ink-on-linen and pencil-on-vellum drawings with pencil notations, 18-3/4x34 to 20-1/2x28-1/2 inchesArchitectural Construction DrawingsTenth Floor Plan (1)2 drawings3/29/1917141Details of Vault Fixtures, Layout Table and Board, and Stock Room (4)undated141Detail of Counter and Wall Cases in Draughting Rom #25 (8)undated141Floor Plan3 drawingsundated141Alteration of Offices (29)9/18/1922revised 11/21/1922141Mechanical/Electrical Construction DrawingsTenth Floor Electrical Plan (1M)3/23/1917revised 3/28/1917141[Electrical Floor Plan], untitledundated141Office Layout for Albert Kahn Architect (Job No. 798-D)undatedPencil and red pencil drawing on tracing paper, 16x28-3/4 inchesArchitectural DrawingSeventh Floor Plan (1)141Alterations at Northeast Corner, Ninth and Tenth Floors, Marquette Building, for Albert Kahn, Inc., Architects (Job No. 798-F)Pencil and green pencil drawings on tracing paper, 10-3/4x22 and 16x28 inchesArchitectural DrawingsFloor Plan, Elevations and Section (1)7/23/1925141Plan of New Lights under Present Lights in Architects' Drafting Room (2)8/17/1925141Alterations to Offices of Albert Kahn, Inc., Architects (Job No. 798-G)undatedPencil and green pencil drawing on tracing paper, 13-1/4x30 inchesArchitectural DrawingNinth Floor Plan, East End, and Tenth Floor Plan, West End (1)141Drafting Room on Ninth Floor, Office of Albert Kahn, Inc. (Job No. 798-K)Pencil-on-vellum drawing, 15x23-1/2 inchesArchitectural DrawingFloor Plan of Drafting Room (1)4/20/1926141Alterations to Offices for Albert Kahn, Inc. (Job No. 798-L)Pencil drawings on tracing paper, 24-1/2x13-1/2 and 14x16-1/2 inchesArchitectural DrawingsFloor Plan of Offices (1)7/30/1929141Floor Plan of Offices on Ninth Floor (2)7/29/1926141Alterations to Room 908, Marquette Building, for Albert Kahn, Inc., Architects (Job No. 798-O)Pencil and red pencil drawing on tracing paper, 18-1/4x30-1/2 inchesArchitectural DrawingFloor Plan, Sections and Elevation of Box Rack in Centre of Vault (1)2/20/1928141Alterations to Room 908, Marquette Building, for Albert Kahn, Inc., Architects (Job No. 798-P)Pencil and red pencil drawing on tracing paper, 17x34-1/2 inchesArchitectural DrawingFloor Plan and Sections (1)2/21/1929141[Alterations to Offices], untitled (Job No. 798-Q)undatedPencil drawings on tracing paper, 18-1/2x24-3/4 to 20-1/2x24-1/2 inchesArchitectural DrawingsNinth Floor Plan (1)141[Floor Plan], untitled (2)141Revised Layout of Ninth Floor Plan (3)141
    Job No. 803-892First and Old Detroit National Bank, Job No. 803, Detroit, Michigan1919-1922Construction Drawings by Albert Kahn, ArchitectArchitectural Drawings12/20/1919revised 9/22/1920Ink-on-linen drawings with red ink, pencil and blue pencil revisions, 30-3/4x47 to 31-3/4x52-3/4 inchesPlot Plan (1)16Sub-Basement and Mezzanine Floor Plans (2)16

    (revision date illegible)

    Basement, Basement Mezzanine and First Floor Mezzanine Floor Plans (3)revised 2/15/192216First and Second Floor Plans (4)revised 2/14/192216Third, Fourth and Truss Space Floor Plans (5)revised 2/14/192216Sixth and Seventh Floor Plans (6)revised 5/29/192016Fifth and Eighth Floor Plans (7)revised 2/15/192216Ninth and Typical Floor Plans (8)16Twenty-Second, Twenty-Third and Twenty-Fourth Floor Plans (9)16Roof and Pipe Space Floor Plans (10)undated16Woodward Avenue Elevation (11)16Cadillac Square Elevation (12)16East Elevation (13)16West Half of South Elevation and West Elevation of Court and Section on Line "F-F" (14)16East Half of South Elevation, Section "G-G" and Cross-Section "B-B" (15)16Transverse Section on Line "D-D" (16)16Sections "A-A," "C-C" and "E-E" (17)16Elevation of West Bay, Cadillac Square, and Details of Lower Stories (18)16Detail of Upper Portion of Cadillac Square and Woodward Ave. Elevations (19)16First Floor Exterior Details (20)16Details of Rear Elevation (21)16Details of Passenger Elevators, Pent House and Stairs #3 (22)16Sections thru' Elevator Lobby and Freight Elevator (23)revised January 192116Sections thru' Elevators and Details of Passenger Elevator Doors, etc. (24)revised 1/4/192116Details of Elevators (25)17

    (undated due to linen damage)

    Sections and Details of Stairs (26)17Sub-Basement Mezzanine, Basement Mezzanine and First Floor Plans (27)17First Floor Mezzanine and Third and Fourth Floor Plans (28)17Miscellaneous Floor Plan Details (29)17Detail of Stack and Typical Wall Sections (30)17Details of Typical Toilet Rooms and Corridor Office Partitions (31)17Details of Typical Doors, Toilets and Barber Shop (32), undatedrevised 9/22/192017Details of Girders, Metal Louvres, Skylights, Columns and Walls, etc. (33)17Details of Window Frames in Main Banking Room, Shop Fronts and Savings Bank (34)17Plan and Interior Elevations of Directors' Room and Appurtenances on Sixth Floor (35)17Basement Plan, Elevations and Details (36)17Interior Designs for Entrance Lobby (37)9/20/1919revised 9/22/192017Interior Designs for Main Banking Room (38)9/20/1920revised 9/22/192017Interior Designs for Savings Bank (39)17

    (date illegible due to linen damage)

    Typical Floor Plan Showing Revised Widths of Elevator Doors (41)5/24/1920revised 9/22/192031-1/2x36-1/2 inches17First Floor Plan (47)39-1/4x53-3/4 inches17

    (undated due to linen damage)

    [Floor Plan], untitled due to linen damage (48)undated39-1/4x53 inches17Details of Vaults in Sub-Basement Mezzanine, in Basement and at Eighth Floor (50)11/22/1920revised 12/21/192032-3/4x37-3/4 inches17Details of Vault Furniture and Safe-Deposit Vault Floor Framing (52)11/22/1920revised 12/21/192032-3/4x38 inches17Details of Furniture in Bank Vault (52A), undatedrevised 12/21/192033x38 inches17Typical Floor Plan (65)36-1/2x49 inches17

    (undated due to linen damage)

    Part Plan of Public Elevator Lobby at Twenty-First through Twenty-Fouth Floors (65A)undated18x10-3/4 inches17Details of Ceiling of Second Floor (Low Part) (82)3/10/1921revised 9/7/192127x44-1/2 inches17
    Structural Drawings12/20/1919Ink-on-linen drawings with pencil notations, 30x50-1/2 to 31-1/2x52-1/2 inches

    (some not numbered or dated due to linen damage)

    Column Schedule (1-S)18Column Schedule (2-S)18Column Schedule (cont)18Foundation Plan and Details of Caissons18[Details of] Foundation Girders and Grillage for Columns 86, 87, 88 and 9018Sub-Basement Mezzanine and Basement Floor Framing Plans18Basement Mezzanine and First Floor Framing Plans (7-S)18First Floor Mezzanine and Second Floor Framing Plans (8-S)18Third and Fourth Floor Framing Plans (9-S)18Fifth Floor Framing Planrevised 10/15/192018Sixth Floor and Truss Space Framing Plans18Seventh and Eighth Floor Framing Plans (12-S)18Ninth Floor Framing Planrevised 8/24/192018Typical Floor Framing Plan18Twenty-First, Twenty-Second and Twenty-Third Floor Framing Plans (15-S)18Twenty-Fourth Floor and Pipe Space Floor Framing Plans (16-S)revised 9/10/192018Pent House Floor and Main Roof Framing Plan (17-S)revised 9/1/192018Fifth Floor Truss and Girder Details (18-S)19Wind Bracing Systems A-A and M-M (19-S)19Wind Bracing Systems D-D, J-J and K-K (22-S)19Wind System F-F, Woodward Avenue Elevation (24-S)19Wind System G-H, Rear Elevation (25-S)19Longitudinal Wind Bracing System M-M.19Wind System N-N, Cadillac Square Elevation (27-S)19Wind Bracing Connections, Special Vault and D-Type (28-S)3/15/192019Wind Bracing Systems, B-E and F-Type (29-S)3/15/192019Wind Bracing Systems, C-Type (30-S)3/15/192019Wind Bracing Systems, A, B, C and X-Type (31-S)3/15/192019Wind Bracing Connections, 20, 26 and 30-Inch Spandrel Connections (32-S)3/15/192019Wind Bracing Connections, 18 and 24-Inch Spandrel Connections (33-S)3/15/192019Wind Bracing Connections, 15-Inch Spandrel Connections (34-S)3/15/192019Wind Bracing Connections, 12 and 18-Inch Spandrel Connections19Untitled drawing (36-S)undated19Elevation and Detail of Additional Girder at Caisson for Column #8 (38-S)9/29/192028-1/2x26 inches19Piling Plan (1000-S)4/12/192026-3/4x34-1/4 inches19Cornice Channels, Pipe Space (1016-S)2/2/192117-1/4x30-1/2 inches19Main Cornice Details (1026-S)6/24/1921revised 8/5/192116-1/2x39 inches19
    Mechanical Drawings by Albert Kahn, Architects and Engineers1/5/1920Ink-on-linen drawings with pencil notations, 31-1/4x50-1/4 to 31-1/2x52 inchesSection Details and Symbols (1-M)revised 12/3/192020Sub-Basement Mezzanine and Sub-Basement Floor Plans (2-M)revised 10/17/192120Basement Mezzanine and Basement Floor Plans (3-M), undatedrevised 11/11/192120First Floor Mezzanine and First Floor Plans (4-M)revised 11/29/192120Second Floor Plan and Details of Typical Toilet Room (5-M)revised 5/6/192120Third and Fourth Floor Plans (6-M)revised 9/13/192120Fifth Floor and Truss Space Plans (7-M)revised 9/13/192120Sixth and Seventh Floor Plans (8-M)revised 5/18/192120Eighth and Ninth Floor Plans (9-M)revised 3/21/192220Typical Floor Plan for Electrical Work Only, Fifth to Twenty-Fourth Floors, and Typical Floor Plan, Tenth to Nineteenth Floors (10-M)revised 5/18/192120Twentieth through Twenty-Third Floors Plan and Twenty-Fourth Floor Plan (11-M)revised 5/18/192120Pipe Space Plan (12-M)revised 10/6/192120Riser Diagrams (13-M), revised5/6/192120[Riser Diagram], untitled (14-M)revised 5/6/192120[Riser Diagrams], untitled (15-M)revised 5/6/192120Sub-Basement Mezzanine and Basement [Electrical] Plans (16-M)undated20Riser Diagram-Lighting Feeders and Diagram of Telephone Risers (17-M)undated20Riser Diagram-Power Feeders (18-M)undated31-1/2x44 inches20Layouts of Fan Room in Basement and of Exhaust and Recirculating Duct in Truss Space and Details (19-M)12/3/1920revised 10/18/192120Typical [Pipe] Installation Plan and Front and Rear Sectional Elevations (20-M)3/17/1921revised 5/6/192120Mechanical Drawings (cont)Black and red ink-on-linen drawings, 39x53 to 45x54 inchesSub-Basement Mezzanine [Electrical] Plan (21M)5/9/1921revised 8/23/192121Basement [Electrical] Plan (22-M)3/2/1921revised 8/2/192121First Floor [Electrical] Plan (23-M)5/19/1921revised 11/29/192121First Floor Mezzanine [Electrical] Plan (24-M)4/27/1921revised 8/2/192130-1/4x50-3/4 inches21Second Floor [Electrical] Plan (25-M)4/18/1920revised 8/2/192121Third Floor [Electrical] Plan (26-M)revised 8/2/192121Undated21

    (undated due to linen damage)

    Fourth Floor [Electrical] Plan (27-M)3/31/1921revised 8/2/192121Fifth Floor [Electrical] Plan (28-M)revised 8/2/192121

    (date illegible)

    Sixth Floor [Electrical] Plan (29-M)4/13/192121Seventh Floor [Electrical] Plan (31-M)4/12/1921revised 8/2/192121Eighth Floor [Electrical] Plan (32-M), undatedrevised 8/2/192121Typical Floor [Electrical] Plan (33-M)revised 9/6/192121

    (undated due to linen damage)

    Riser Diagram (34-M)4/7/1921revised 6/8/192121Truss Space [Electrical] Plan (35-M)5/19/1921revised 10/6/192121Conduit Schedule and [Electrical] Plans and Sections (36-M)10/24/192130-3/4x47 inches21Wiring Diagram-Electric Sub-Station (37-M)11/3/192129-3/4x46-1/2 inches21[Electrical] Sections (38-M)11/17/1921revised 9/20/192231-1/4x46-1/2 inches21Pipe Space Plan (39-M)21

    (undated due to linen damage)

    Power Risers (40-M)undated36x38-3/4 inches21Main Distribution of A.C. and D.C. Current (42-M)8/24/192130-3/4x42-1/4 inches21Main Control Switchboard (44-M)32x41-1/2 inches21

    (undated due to linen damage)

    Ford Motor Company Building, Job No. 807, 54th Street & Broadway, New York, New York1917-1919Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings8/30/1917revised 12/5/1917ink-on-linen drawings with pencil notations, 23-1/2x34 to 27-3/4x37-3/4 inchesPlot Plan (1)revised 10/19/1917204Foundation and Basement Floor Plans (2)204Plans of First and Second Floors (3)204Plans of Third, Fourth, Fifth and Sixth Floors (4)204Roof Plan and Details of Skylight (5)204Broadway and 54th Street Elevations (6)204East and North Elevations (7)204Cross-Section and Details of Lobbies, Vestibules and Stairs No. 2 (8)204Details of Stairs No. 1 and Passenger Elevator Shaft (9)204Details of Stairs No. 3 and Freight Elevator (10)204Detail of West 54th Street Elevation (11)revised 1/17/1918204Exterior Details of Office Entrance and Marquise (12)204Details of Main Entrance to Show Room and of Hollow Metal Windows for Court Walls (13)204First Floor and Ceiling Plans of Show Room and Interior Elevations (14)10/25/1917204Interior Elevations (15)10/25/1917204Interior Elevations, Second Floor (16)10/25/1917204Details of Vestibule and Stairs (20)10/25/1917204Plans and Details of Fourth, Fifth and Sixth Floors (21)10/25/1917204Basement Plan (22)11/21/1917204First Floor Plan (23)12/27/1917204Second Floor Plan (24)12/28/1917204Details of Granite Pier Bases and Window and Door Sills (25)12/29/1917204Sections thro' Roof Spandrels Showing Revised Location of Beams and Roof Slab (28)5/28/1918204Basement Plan and Sections of Toilet Room Addition (30)11/12/1815x18 inches204Structural Drawings8/30/1917revised 11/7/1917ink-on-linen drawings with pencil notations, 27-1/2x34-1/2 inchesColumn Schedule and Details (1-S)205First Floor Framing Plan (2-S)205Second Floor Framing Plan (3-S)205Third Floor Framing Plan (4-S)revised 1/19/1918205Sixth Floor Framing Plan (5-S)205Roof Framing Plan (6-S)revised 11/21/1917205Bending Diagrams (7-S)10/11/1917205Addition to Sheet 2-S (8-S)10/11/19177-3/4x8-1/2 inches205Mechanical Drawingsink and pencil drawings on linenBasement Heating Plan, Sixth Floor Plan, Riser Diagram and Typical Connection Diagram (1-M)8/31/1917revised 11/8/191728-1/2x35 inches205Plans of Fourth, Fifth and Sixth Floors (2-M)1/14/1917revised 2/2/191718x21-1/2 inches205Heating Plan for Secretary's Room (3-M)1/4/191917-1/2x30-1/2 inches205United States Signal Corps Mobilization Camps (Aviation Training Camp), Job No. 809, Joy Field, Mt. Clemens, Michigan1917Specifications for a Group of Buildings for Aviation Training Camp (Job 809-R)12/12/191710Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings, except as noted5/8/1917photostatic prints with pencil notations, 7-1/4x14 to 9-1/2x14 inchesFlying Field Plot Plan (1-A)5/19/191710Mess Hall Plans (1)10Mess Hall Elevations and Sections (2)10Dope House Plan, Elevations and Sections (3)10Guard House Plans, Elevations and Sections (4)10Latrines Plan, Elevations and Sections (5)10Boiler House Plan, Elevations and Sections (6)10Officers' Club Plans, Elevations and Sections (7)10Commanding Officer's Quarters (Cantonment Building) Plans, Elevations and Sections (8)10Administration Building Plans, Elevations and Sections (9)10Machine Shop Plans, Elevations and Sections (10)10Aero Repair Shop Plan, Elevations and Sections (11)10Garage Plan and Elevation (12)10Garage Elevations, Sections and Details (13)10Roof Truss Plan and Elevation (14)10Hangar Plan and Details (15)10Hangar Plan, Elevations and Section (16)10Hangar Plan, Elevation and Details (17)10Hospital Plans, Elevations and Sections (18)10School Building Foundation Plan and Section (19)10School Building Plan and Elevations (20)10Aero Supply Building Plans, Elevations and Sections (21)10Post Exchange Plans, Elevations and Sections (22)10Commissioned and Non-Commissioned Officers' Cantonment Buildings Plans, Elevations and Sections (23)10Barracks Plan, Elevations and Sections (24)10Blacksmith Shop Plan, Elevations and Section (25)10The New Temple Beth El, Job No. 821, Detroit, Michigan1920-1922Construction Drawings by Albert Kahn, ArchitectundatedInk-on-linen drawings, 26x33 inchesArchitectural DrawingsPlot Plan (1)4/18/1921revised 5/17/192141Foundation Plan (2)5/3/1921revised 5/17/192141Basement Plan (3)revised 5/4/192241First Floor Plan (4)revised 2/14/192241Second Floor Plan (5)revised 2/14/192241Third Floor Plan (6)revised 2/14/192241Fourth Floor Plan (7)revised 2/14/192241Roof Plan (8)11/11/1920revised 5/17/192141Woodward Avenue and Gladstone Avenue Elevations (9)revised 5/17/192141Rear and North Elevations (10), revised 2/14/92241Cross-Section, Main Auditorium, and Longitudinal Section (11)revised 5/17/192141Elevations of Basement Lobby and Sections C-C, D-D and E-E (12)revised 2/14/192241Exterior Details (13)revised 5/17/192141Plan of Columns, Door Elevations and Window Details (14)revised 5/17/192142Half-Plan of Ceiling under Balcony and Views Looking East and West (15)revised 2/14/192242South Elevation of Main Auditorium Line A-A and Elevations of Lobby #101 (16)revised 2/14/192242Corridor Elevations and Details of Men's Room #110 and Ladies Room #105 (18)revised 5/17/192142Interior Details of Assembly Room (19)revised 2/14/192242Details of Windows and Wardrobes in Class Rooms (20)11/11/1920revised 5/17/192142Details of Stair #3 (21)revised 5/17/192142Details of Main Stairs #2 (22)11/11/1920revised 5/17/192142Details of Passenger and Freight Elevators, Library Bookshelves and Dumbwaiter (23)revised 2/14/192242Details of Dining Room #1 and Women's and Men's Showers (24)revised 2/14/192242Revised Layout of Organ Space and Choir Gallery (30)2/8/192218x29 inches42West and South Elevations (38)9/28/1922revised 10/18/192213x33 inches42Structural DrawingsRoof Framing Plan (1-S)revised 8/13/192143Fourth Floor Plan (2-S)revised 5/17/192143Third Floor Framing (3-S)revised 9/28/192143Second Floor Plan (4-S)revised 2/24/192243First Floor Framing (5-S)revised 8/20/192143Columns and Footings (6-S)revised 8/17/192143Truss Details (7-S)revised 8/13/192143Steel and Concrete Girders (8-S)revised 5/17/192143Main Dome Rib, Balcony Framing, Truss T2 and Details of Column Bases (9-S)revised 5/17/192143Mechanical Drawings12/22/1920Foundation Plan (1M)revised 8/17/192143Basement Plan (2M)revised 2/8/192243First Floor Plan (3M)revised 6/2/192143Second Floor Plan (4M)revised 6/2/192143Third Floor Plan (5M)revised 6/2/192143Fourth Floor Plan (6M)revised 3/7/192243Detail of Ventilating Equipment in Basement (7M)revised 8/17/192143Heating Riser Diagram and Details (8M)revised 6/2/192143Boiler Room (9M)revised 8/17/192143Betsy Barbour Residence Hall, University of Michigan, Job No. 829, Ann Arbor, Michigan1917Construction Drawings by Albert Kahn, Architect, Ernest Wilby, AssociateArchitectural Drawings11/20/1917Ink-on-linen drawings with pencil and blue pencil revisions, 25x27to 25-3/4x28 inchesPlot Plan (1)97Basement and First Floor Plans (2)97Second, Third and Fourth Floor Plans (3)97North and South Elevations (4)97Maynard and State Street Elevations, Section "A-A" and Interior Details (5)97Details of Maynard Street Entrance (6)97Details of Windows and Fireplace in Sewing and Games Room #19 (7)97Interior Details (8)97Sections and Details of Stairs (9)97Interior Details (10)97Structural DrawingsundatedInk-on-linen drawing with blue pencil revisions, 25-3/4x28 inchesFirst, Second, Third and Fourth Floor Plans (1-S)97Mechanical Drawings12/20/1917Ink-on-linen drawings, 26x28 inchesHeating Riser Diagram and Foundation and Drainage Plan (1)97Basement Plan (2)97Second, Third and Fourth Floor Plans (3)97Plumbing Riser Diagram and Details (4)97Ford Motor Company, Eagle Shipbuilding Plant, Job No. 847, River Rouge, Michigan1918Construction Drawings by Albert Kahn, ArchitectArchitectural Drawings2/12/1918revised 2/15/1918Ink-on-linen drawingsPlot Plan (IX)undated14-1/2x32 inches98Plot Plan (1A)30-1/2x41 inches98Building "A" Foundation Plan and Details (1)revised 3/1/191830-3/4x 41-3/4 inches98Building "A" Floor Plan (2)revised 3/1/191831-3/4x42 inches98Building "A" Roof Plan (3)revised 3/1/191830-3/4x42 inches98Building "A" Elevations and Cross-Section (4)revised 2/26/191832x42 inches98Elevation of Monitor and Typical Details (5)revised 2/26/191831-1/2x42 inches98Building "B" Foundation Plan and Details (6)33-3/4x49 inches98

    (undated due to linen damage)

    Building "B" Floor Plan and Details (7)revised 4/4/191834-1/4x49 inches98Building "B" Roof Plan (8)33-3/4x49 inches98Elevations and Sections thru' High Point and Monitor (9)revised 2/23/191835x48-1/4 inches98Building "B" Sections (10)revised 2/23/191834-3/4x48 inches98
    Structural Drawings2/11/1918revised 2/15/1918Ink-on-linen drawings with pencil and blue pencil revisionsDetails of Girders in Monitor Walls and under Main Roof (1-S)2/12/191831x42-1/2 inches99Building "B" Half-Plan Showing Framing and Details (2-S)34x49 inches99Elevations, Sections and Sway Frame Details (3-S)34x49 inches99Details of Roof Trusses, Monitor Framing and Bottom Chord Bracing (4-S)34x49 inches99Building "B" Cross-Sections thru' High and Low Portions (5-S)34-3/4x48-3/4 inches99Mechanical DrawingsInk-on-linen drawings with pencil and blue pencil notations[Plan and Section of] Service Tracks (1-MR)28-1/4x54-1/2 inches2

    (undated due to linen damage)

    Plot Plan and Details of Septic Tank, Sludge Beds and Toilet, etc. (1M)3/5/191831-3/4x42 inches2Drinking Water Layout (2M)5/10/191821-1/4x35 inches2Layout of Steam Plant and Detail of Unit Heater and Connections23x55 inches2

    (not numbered or dated due to linen damage)

    Building "B" Layout of Heating System and Details (4M)8/1/1918revised 8/10/191823x56 inches2Plan of Existing Underground Pipe Lines (5M)8/16/191824x43-1/2 inches2Building "A" Heating Plan (6M)undated23x46-1/2 inches2Layout of Steam Piping (8M)23-1/2x54-1/2 inches2

    (undated due to linen damage)

    University Hospital, University of Michigan, Job No. 850, Ann Arbor, Michigan1919-1921Construction Drawings by Albert Kahn, ArchitectInk-on-linen drawingsArchitectural Drawings10/4/191935-1/2x60-1/2to37x64 inchesPlot Plan (1)3Foundation Plan (2)revised 11/17/19193Sub-Basement Plan (3)revised 11/17/19193Basement Plan (4)revised 11/17/19193Ground Floor Plan (5)3First Floor Plan (6)revised 11/17/19193Second Floor Plan (7)revised 11/17/19193Third Floor Plan (8)3Fourth through Tenth Floors Plan (9)3Roof Plan (10)revised 1/24/19213North and South Elevations of Ward Wings and Main Building (11)revised 11/17/19194East and West Elevations of Ward Wings and End Elevations of East and West Wings (12)4East and West Elevations of Demonstration Wing and Sections D-D through GG (13)4Elevations of Surgical Wing (14)4Section on Line A-A Looking West and Elevations of Pent House (15)revised 11/17/19194Sections through Typical Ward and Demonstration Wings and Details of Fire Escapes (16)revised 11/17/19194Details of Ward Wings (17)4North Elevation of Ward Wing and Main Building and Miscellaneous Details (18)4Details of Surgical Building (19)4Details of Amphitheater (20)4Rear Elevation of Main Ward Building, East Elevation of Demonstration Wing and Miscellaneous Floor Plans (21)10/30/191917x28 inches4Plans, Elevations and Section of Diet Kitchen, Main Ward Building (22)10/30/1919revised 6/28/192018x15 inches4Revised Plan of Wing between Administration Building and Main Building (27)9/15/1920revised 11/2/192020x33 inches4Structural Drawings10/4/191936x56 to 37x57 inchesSub-Basement and Basement Framing Plans (1-S)revised 5/7/19205Ground Floor Framing (2-S)revised 5/10/19205First Floor Framing (3-S)revised 5/10/19205Second Floor Framing Plan (4-S)revised 5/11/19205Typical Floor Framing Plan, Third through Tenth Floors (5-S)revised 5/12/19205Roof Framing (6-S)5Column Schedule (7-S)revised 4/16/19205Plan of Revised Framing, Sub-Basement Floor at Teaching Lab (8-S)4/15/192019-1/2x23-1/4 inches5Change in Framing Adjacent to Administration Building (11-S)9/15/1920revised 11/1/192012-1/2x32 inches5Detail of Columns Supporting Area Walls (13-S)12/2/192012-1/2x32 inches5Tables of Electrical Outletsundated16-3/4x36 inchesSub-Basement, Basement and Foundation Floor Plans (101M)38Basement, Ground and First Floor Plans (102M)38First Floor Plan (103M)38Second and Third Floor Plans (104M)38Third and Fourth Floor Plans (105M)38Fourth and Fifth Floor Plans (106M)38Block Plans12/30/1921revised 4/20/192523x33 inchesSub-Basement Floor Plan (1)38Basement Floor Plan (2)38Ground Floor Plan (3)38First Floor Plan (4)38Second Floor Plan (5)38Third Floor Plan (6)38Fourth Floor Plan (7)38Fifth Floor Plan (8)38Sixth Floor Plan (9)38Roof Plan (10)38James Couzens Mausoleum, Woodlawn Cemetery, Job No. 866 & 866-A, Detroit, Michigan1919 and 1937Mausoleum by Albert Kahn, Architect (Job No. 866)Construction DrawingsArchitectural Drawings5/15/1919ink-on-linen drawings, 23-1/2x34-1/2 inches, except as notedFoundation Plan (1)291Floor Plan (2)291Front and Rear Elevations (3)291Side Elevation (4)291Sections "A-A" and "B-B" (5)291Revised Section "A-A" (5R)6/27/191923-1/2x22 inches291Section "C-C" (6)2 drawings291Stone Approach to Mausoleum by Albert Kahn, Inc., Architects (Job No. 866-A)Construction DrawingsArchitectural Drawingspencil-on-vellum drawingsPlan, Elevation and Sections (1)12/28/193615-1/2x34 inches291Section (2)1/30/1937revised 2/8/193716-1/2x43-1/2 inches291Rosenberger, Oscar Mausoleum, Job No. 8801919Construction Drawings, Architectural5 drawings3616Ford Motor Company, Service Building, Job No. 892, Buenos Aires, Argentina1919-1920Construction Drawings, Architectural, Structural, and Mechanical26 drawings371
    Job No. 900-999Cadillac Motor Car Company, Sales and Service Building and Addition, Job No. 900, 900-A & 900-E, York Street and Cass Avenue, Detroit, Michigan1919-1926Cadillac Sales & Service Building (Job No. 900)Construction DrawingsArchitectural Drawings, except as noted5/22/1919blue prints, 28x35 inchesFirst Floor Plan (3)revised 7/29/19192912Second Floor Plan (4)2912

    (undated due to paper damage)

    Third Floor Plan (5)revised 7/29/19192912Typical Floor Plan (6)revised 7/29/19192912Sixth Floor Plan and Details of First Story Windows, York Street Elevation (7)revised 7/29/19192912Roof and Pent House Roof Plans and Details of Monitor and Flagpole (8)revised 7/29/19192912Cass Avenue (East) Elevation (9)2912York Street (South) Elevation (10)2912North Elevation and Details of Used Car Room (11)revised 7/29/19192912West Elevation and Details of Steel Sash Partitions (12)revised 7/29/19192912Transverse Section, Section thru' Examination Room and Interior Elevations (13)revised 7/29/19192912Details of Upper Portion of York Street and North Elevations and Details of Shield on Roof Balustrade (15)2912Exterior Details (16)2912Plan of Pent House and Details of Stairs No. 2 (17)revised 7/29/19192912Detail of Stairs No. 2 (18)revised 7/29/19192912Details of Stairs No. 1 (19)revised 7/29/19192912Transverse Section thru' Examination Room and Details of Doors and Skylight (20)2912Details of Passenger Elevator and Dumb Waiter (21)undated2912Interior Details for Sales Room (22)2912Details of Main Lobby and Stairs and of Show Windows (23)5/27/19192912
    Structural Drawings5/22/1919blue prints, 28x35 inchesColumn and Footing Schedule and Details (1-S)revised 7/3/19192913Details of Basement Walls and First Floor Plan (2-S)revised 7/21/19192913Second Floor Plan and Beam Schedule (3-S)revised 7/31/19192913Third, Fourth, Fifth and Sixth Floors Plan and Beam Schedule (4-S)revised 7/31/19192913Mechanical Drawings, 6/9/1919 revised 8/14/1919 except as noted6/9/1919revised 8/14/1919blue prints, 28x35 inchesDrainage Plan (1-M)8/15/19192913First Floor Plan (2-M)2913Second Floor Plan (3-M)2913Typical Third, Fourth and Fifth Floor Plan (4-M)2913Sixth Floor Plan (5-M)2913Boiler Room Plan and Riser Diagram (6-M)2913
    Cadillac Sales and Service Building Addition (Job No. 900-A)Construction Drawings by Albert Kahn, Inc., ArchitectsArchitectural Drawings, except as noted12/1/1925ink-on-vellum drawings, 29x38 inches, except as notedPlot Plan (1)revised 12/16/1925301Foundation Plan (2)revised 12/21/1925301First Floor Plan (3)revised 2/17/1926301Second Floor Plan (4), due to paper damageundated301Roof Plan (5)revised 2/17/1926301Sections "A-A" through "E-E" and Elevation Looking towards Ramp (6)revised 2/17/1926301York Street, North and West Elevations (7)revised 12/16/1925301Details of South and West Walls and Ramp (8)revised 2/17/1926301Details of Stairs and Doors (9)revised 12/22/1925301Details of Ramp (10)pencil-on-vellum drawing, 26x36 inches301Alternate Details Using Asbestos Protected Metal Covering for New Roof Ramp (11)6/2/1924pencil-on-vellum drawing, 21-1/4x31-1/4 inches301Structural Drawings12/2/1925revised 12/16/1925ink-on-linen drawings, 31-1/2x41-1/2 inchesSecond Floor Framing Plan and Beam Schedule (1-S)301Roof Plan and Future Second Floor Mezzanine Framing Plan and Details (2-S)301Column Schedule and Details (3-S)301Mechanical Drawings12/23/1925ink-on-linen drawings, 31-1/2x41-1/2 inchesFoundation Plan (1-M)301First Floor Plan (2-M)301Second Floor Plan (3-M)301Plan of Present Boiler Room and Details (4-M)301New Service Offices and Waiting Room (Job No. 900-E)Construction Drawings by Albert Kahn, Inc., ArchitectsArchitectural Drawing6/30/1926pencil-on-vellum drawing, 26x26 inchesFirst Floor Plan and Interior Elevations (1)301Mechanical Drawing7/15/1926ink-on-linen drawing, 28x28 inchesFoundation and First Floor Plans and Details (1-M)301
    General Motors (Durant) Building, Job No. 902, Detroit, Michigan1919-1920Specification for Office and Laboratory Building, Durant Building Corporation by Albert Kahn, Incorporated8/2/19192Construction Drawings by Albert Kahn, ArchitectArchitectural Drawings8/2/1919Ink-on-linen drawings with pencil notations, 28-3/4x34 to 29x44 inchesPlot Plan Showing Present Buildings (A-1)undated126Plot Plan (1)126Excavation Plan (A-2)6/6/1919126Details of Swimming Pools (2)revised 9/2/1919126Grading Plan (A-3)revised 5/28/1921126Details of Laboratory Foundations and Tunnel (3)126

    (undated due to linen damage)

    Plan of Foundation and Sub-Basement (4)revised 1/3/1922126Basement Plan (5-R)revised 1/3/1922126First Floor Plan (6)revised 1/3/1922126Plan of Mezzanine Floor and First Floor of Laboratory (7)revised 1/3/1922126Second Floor Plan (8)revised 5/16/1921126Third Floor Plan (9)revised 5/16/1921126Fourth Floor Plan (10)revised 9/27/1920126Fifth Floor Plan (11)revised 9/27/1920126Typical Floor Plan (12)revised 11/1/1920126Fourteenth Floor Plan (13)revised 6/23/1920126Fifteenth Floor Plan (14)revised 6/23/1920126Plan of Pipe Space and Sixteenth Floor (15)revised 7/20/1920126Roof Plan (16)revised 6/10/1920126North Elevation, Grand Boulevardsepia print127

    (not numbered or dated due to print damage)

    South Elevation, Milwaukee Avenue (18)revised 9/2/1919127West Elevation, Second Avenue (19)revised 9/2/1919127Section "A-A" (20)revised 9/2/1919127Section "B-B" (21)revised 1/3/1922127Section "C-C" thru' Courts #1, 2 & 4, Looking towards Laboratory (22)revised 7/9/1920127Section "D-D" thru' Courts # 1, 2 & 4, Looking North (23-R)revised 1/3/1922127Sections "E-E" and "J-J" (24)revised 1/3/1922127Elevations of Courts # 2 & 4 and Sections "G-G" and "H-H" (25)revised 5/5/1920127Section "F-F" thru' Courts # 3 & 7, Looking East (26)revised 5/18/1920127Section "I-I" thru' Courts # 1 & 8, Looking West (27)revised 1/3/1922127Details of Driveway (28)127

    (undated due to linen damage)

    Details of Main Entrance, West Grand Boulevard (29)revised 9/2/1919sepia print127Details of Main Entrance (30)revised 9/2/1919127Details of First Story Windows (31)revised 2/24/1920127Details of Entrances to Shops on Grand Boulevard and Second and Cass Avenues (32)revised 6/10/1920127Details of Typical Window Frames and Typical Walls and Spandrels (33)revised 1/3/1922128Basement Plan, East Half, Future Arrangement (34)128

    (undated due to linen damage)

    Wall Sections (34-R)revised 1/3/1922128Details of Fourteenth and Fifteenth Stories (35)revised 1/3/1922128Details of Laboratory Entrance Portico, Milwaukee Street Elevation (36)revised 1/3/1922128Details of Laboratory, Milwaukee Street Elevation (37)revised 7/9/1920128Details of Laboratory Entrance Steps, Milwaukee Street Elevation (38)revised 7/9/1920128Detail of Typical Bay for Laboratory (39)128

    (undated due to linen damage)

    Details of Connection between Laboratory and Office Building (40)revised 1/3/1922128Foundation Plan of Stairs, Elevators, etc. of Laboratory Building, Footing Plan of Exterior Columns and Area Walls, and Sections thru' Columns at Basement Floor (41)revised 5/10/1920128Basement and First Floor Plans of Laboratory Building (42)revised 1/3/1922128Mezzanine and Second Floor Plans of Laboratory Building (43)revised 1/3/1922128Plans of Third Floor, Pent Houses at Fifth Floor and North Wall at Fourth Floor of Laboratory Building (44)revised 1/3/1922128Detail Sections of Elevators L-1 to L-4 and Stairs # 9 (45)revised 1/3/1922128Cross-Section thru' Laboratory at Fourth Floor, Typical Elevation of Half-Bay and Sections "T-T" and "U-U" thru' Fresh Air Intake and Shaft (46)revised 1/3/1922128Plans of Stairs # 1 at Basement through Fourth Floors and at East Entrance (47)revised 6/10/1920128Plans of Stairs # 1 at Eleventh through Fifteenth Floors (48-R)1/2/1920revised 9/3/1920128Details of Elevators "A" to "M" & "Z" and Stairs # 7 & 8 (49)revised 6/10/1920129Basement Plan of Elevators and Lobby and Details of Freight Elevators (50)revised 7/1920129Detail Plans of Stairs # 8 & 12 and Elevators "A" to "M" & "W" to "Z" (51)revised 9/1/1920129Details of Elevators "A" to "M" and Stairs # 2 (52)revised 9/1/1920129Details of Elevators and Stairs (53)revised 1/3/1922129Detail Plans of Stairs # 2, 5 & 15 and Elevators "A" to "M" & "Z" (54)revised 6/23/1920129Plan of Pent House, Plan at Pipe Space and Details of Stairs (55)revised 1/3/1922129Sections thru' Stairs # 1 & 6, 7 & 8 and 2 & 5 (56)revised 6/10/1920129Typical Floor Plan Showing Men's Toilet and Stairs # 1 and Elevations and Details of Toilets (57)revised 1/3/1922129Elevations of Corridors (58)revised 9/1/1920129Detail Sections of Hollow Metal Doors, Frames and Trim and Section thru' Stair # 15 (59)revised 1/3/1922129Details of Main Entrance Lobby #104 (60)revised 3/24/1920129Reflected Ceiling Plans and Elevations of Elevator Lobby and Stairway # 3 (61)revised 9/2/1919129Elevations and Ceiling Plan of East and West Corridors (62)revised 9/1/1920129Details of Entrance Lobby # 105 to Laboratory (63)revised 1/3/1922129Detail Sections thru' Stairs # 10 and Lobby # 210 (64)129

    (undated due to linen damage)

    Plan of Sub-Basement and Machine Room (65)9/9/1919revised 1/3/1922129Details of Laboratory Flues (66)11/12/1919revised 5/10/19201210Sections "C-C" and "D-D" thru' Stair # 1 and Elevations and Details for Toilets (67)1/2/1920revised 1/3/19221210Revised Marble and Plaster Work in Stairs # 3 & 4 and Lobbies # 104 & 105 (68)1/2/1920revised 2/17/19201210Detail Sections thru' Stairs # 10 and Lobby # 210, Showing Revised Finish of Plaster and Marble Wainscot (70)1/3/1920revised 1/3/19221210Details of Air Shaft and Revised Details Showing New Location of Two-Part Sliding Doors to Office Building from Driveway (71)1/6/19201210Details of West End of Driveway (72)revised 12/11/19201210Details of Driveway at East End of Building (73)1/20/1920revised 12/11/19201210Details of Doors in Basement (74)5/11/1920revised 7/26/19201210Details of Mailing Room, Monorail and Men Janitors' Locker Room # 5-C (75)5/11/1920revised 1/3/19221210Details of Women's Toilet Room # 21, Toilets # M-8, M-9 & M-13, and Utility Space (76)revised 1/3/19221210Plan of Mezzanine Floor Utilities Space and Miscellaneous Details (77)revised 1/3/19221210Basement Plan for Telephone Conduit Layout (78)undated1210Revisions to Stairs # 8 between Sub-Basement and First Floor and Details of Stairs # 5 (270 & 274)3/30/1920revised 7/23/19201210
    Structural DrawingsInk-on-linen drawings with pencil notations, 37-1/2x47 to 36-1/4x48 inchesColumn Schedule (1-S)revised 9/2/19191211Column Schedule (2-S)revised 9/2/19191211Details of Columns (3-S)8/11/19191211Half Framing Plan of First Floor (4-S)9/22/19191211Half Framing Plan of Mezzanine Floorrevised 9/22/19191211

    (not numbered due to linen damage)

    Half Framing Plan of Second Floor (6-S)revised 9/9/19191211Third Floor Framing Plan (7-S)revised 9/2/19191211Typical Floor Half Framing Plan of Fourth to Eleventh Floors (8-S)6/28/1919revised 9/10/19191211Plan of Framing Adjoining Laboratory at First Floor of Laboratory (9-S)6/28/1919revised 9/13/19191211Half Framing Plan of Twelfth and Thirteenth Floors (10-S)7/1/1919revised 8/2/19191211Half Framing Plan of Fourteenth Floor (11-S)8/1/19191211Half Framing Plan of Fifteenth Floor (12-S)revised 9/2/19191211Half Framing Plan of Pipe Gallery1211

    (not numbered or dated due to linen damage)

    Half Framing Plan of Roof (14-S)revised 9/15/19191211Wind Bracing Details (15-S)revised 9/6/19191211Girder Details (16-S)revised 8/6/1919131Details of Girders and Trusses (17-S)revised 9/23/1919131Penthouse Roof Plan and Truss Details (18-S)revised 9/16/1919131Framing Plan of Ground, First, Second and Forty-Third Floors of Laboratory (19-S)revised 9/24/1919131Framing Plan of Fourth Floor and Penthouses (20-S)8/2/1919revised 10/16/1919131Beam Schedule for Laboratory Building10/17/1919131

    (not numbered due to linen damage)

    Details of Trusses for Laboratoy (22-S)8/1/1919revised 8/15/1919131Footing Schedule8/8/1919revised 10/8/1919131

    (not numbered due to linen damage)

    Details of Retaining Walls of Main Building (24-S)undated131Details of Retaining Walls around Sub-Basement (25-S)revised 10/15/1919131Details of Men's and Women's Swimming Pools (26-S)undated131Details of Trusses (27-S)131

    (undated due to linen damage)

    Column Schedule (28-S)131

    (undated due to linen damage)

    Details of Roof and Pipe Gallery Framing131

    (not numbered or dated due to linen damage)

    Structural "Sketches"Ink-on-linen drawings with pencil notationsSection thru' Vacuum Room of Laboratory Building (112-S)9/9/1919revised 9/15/191912-1/2x22-3/4 inches132Plan and Revised Layout of Retaining Wall between Columns # 263 & 176A (113-S)9/12/191910-1/4x34 inches132Elevation of Retaining Walls at Driveways (114-S)9/17/1919revised 9/18/191917x22 inches132Elevation Showing Location of Bolts for Beam Seats for Beams Connecting Laboratory with Durant Building (115-S)9/29/1919revised 10/13/191915-1/4x37 inches132Elevation Showing Location of Bolts for Beam Seats for Beams Connecting Laboratory with Durant Building (117-S)10/10/191915-1/2x38-3/4 inches132Plan and Section of Proposed Walkway around Testing Machine Opening at Ground Floor Level-Laboratory Building (119-S)1/10/192014x22 inches132Elevation Showing Location of Bolts for Beam Seats for Beams Connecting Laboratory with Durant Building at Second Floor of Laboratory (120-S)10/13/191914-3/4x38-1/4 inches132Elevation Showing Location of Bolts for Beam Seats for Beams Connecting Laboratory with Durant Building at Third Floor of Laboratory (121-S)10/15/191915x38-1/2 inches132Details of Concrete Columns Supporting Steel Girders, Showing Base Plates and Anchor Bolts for Same-Laboratory Building (122-S)10/21/191913x26-1/4 inches132Details of Pipe Sleeves in Laboratory (124-S)11/4/1919revised 11/26/191924-1/2x33-1/2 inches132Details of Instrument Tower-Laboratory Building (125-S)11/12/191926x32 inches132Plan and Section of Openings in Floors for Steam Risers (128-S)12/3/191915-1/2x20 inches132Structural Drawings (cont)Black and red ink drawings on linen with pencil notations, 24-1/4x30 to 28x43-1/2 inchesChanges in Framing at Vents B and F (132-S)1/19/1920revised 4/22/1920Pencil-on-vellum drawing133Plans and Sections of Beams and Girders-Field Work, First and Second Floors (133-S)1/19/1920revised 2/20/1920133Details of Brackets on Columns Supporting Girders and Trusses in Laboratory (136-S)1/28/1920133Details of Brackets Supporting Beams, Ground to Fourth Floors (139-S)2/2/1920revised 3/12/1920133Details of Framing for Locker Rooms in Courts # 2 & 4 (140-S)4/1/1920revised 4/21/1920133Details of Concrete Spandrels in Courts # 1 & 5 at Second Floor (141-S)2/19/1920revised 3/25/1920133Details of Bracing for Girder G-36 (143-S)3/22/1920133Revised Details of Columns 77, 78 & 96-A at Fourteenth Floor, Elevator "A" (144-S)4/21/1920133Plan and Sections of Pit for Elevator "A" and Details of Pipe Chase in Sub-Basement (151-S)4/20/1920133Part Plans and Sections of Laboratory Floors over Openings for Tower and Machine Room (154-S)4/15/1920133Plans of Stairways # 17-20 (157-S)4/26/1920revised 10/6/1920133Details of New Brackets on Columns 332 & X91-A (160-S)4/29/1920revised 5/7/1920133Plans and Sections of Framing and Footings in Basement Truckway (161-S & 162-S)5/11/1920revised 5/22/1920133Details of Floor over Vacuum Room Opening in Laboratory (165-S)5/17/1920133Record of Test Borings (188-S)9/23/1920133Mechanical Drawings8/12/1919Ink-on-linen drawings with pencil notations, 36x44-1/4 to 36-1/4x48 inchesPlot Planrevised 2/4/1920134

    (not numbered due to linen damage)

    Sub-Basement Plan, East Half (2-M)revised 12/6/1920134Sub-Basement Plan, West Half (3-M)revised 12/27/1922134Basement Plan, East Half (4-M)revised 5/23/1921134Basement Plan, West Half (5-M)revised 8/17/1922134First Floor Plan, East Half (6-M)revised 10/26/1921134First Floor Plan, West Half (7-M)revised 8/17/1922134Mezzanine Floor Plan, East Half (8-M)revised 5/23/1921134Mezzanine Floor Plan, West Half (9-M)revised 2/24/1922134Second Floor Plan, East Half (10-M)revised 6/16/1920134Second Floor Plan, West Half (11-M)revised 8/6/1920134Typical Floor Plan of Floors # 3 to 12, East Half (12-M)revised 6/16/1920134Typical Floor Plan of Floors # 3 to 13, West Half (13-M)revised 6/18/1920134Fourteenth Floor Plan, East Half (14-M)revised 5/2/1922135Fourteenth Floor Plan, West Half (15-M)revised 9/8/1920135Fifteenth Floor Plan, East Half (16-M)revised 5/2/1922135Fifteenth Floor Plan, West Half (17-M)revised 6/11/1920135Pipe Space Plan, East Half (18-M)revised 9/8/1920135Pipe Space Plan, West Half (19-M)revised 8/5/1920135Pent House Plan and Vent Riser Details (20-M)revised 8/5/1920135Drainage Plan, Laboratory (21-M)revised 4/20/1920135Basement Plan, Laboratory (22-M)revised 8/24/1921135Ground Floor Plan, Laboratory (23-M)revised 10/21/1921135First Floor Plan, Laboratory (24-M)revised 10/21/1921135Second Floor Plan, Laboratory (25-M)revised 8/24/1921135Third Floor Plan, Laboratory (26-M)revised 8/24/1921135Fourth Floor Plan, Laboratory (27-M)136

    (undated due to linen damage)

    Machine Room Plan (28-M)revised 7/20/1920136Swimming Pool Details (29-M)revised 1/28/1920136Piping Diagrams (30-M)136

    (undated due to linen damage)

    Piping Details (31-M)revised 5/18/1920136Tunnel Piping Details (32-M)9/13/1919revised 7/6/1920136Heating Riser Diagram (33-M)revised 6/11/1920136Heating Riser Diagram (34-M)revised 6/11/1920136Heating Riser Diagram (35-M)revised 1/31/1920136Heating Riser Diagram (36-M)revised 10/19/1920136Heating Riser Diagram (37-M)revised 1/31/1920136Details of Pipe Shafts (38-M)revised 1/22/1920136
    Electrical DrawingsInk-on-linen drawings with pencil notations, 36x48 to 36x51 inchesSub-Basement Plan (39-M)10/10/1919revised 6/17/1920137Basement Wiring Plan, East Half (40-M)1/8/1920revised 6/17/1920137Basement Wiring Plan, West Half (41-M)8/12/1919revised 11/1/1920137First Floor Plan (42-M)10/10/1919revised 11/26/1920137Mezzanine Floor Plan (43-M)10/10/1920revised 6/1/1920137Second Floor Plan (44-M)10/10/1920revised 5/29/1920137Typical Floor Plan, East Half, Third to Twelfth Floors (45-M)6/21/1920revised 6/25/1920137Plan of Center Connection between Main Building and Laboratory (46-M)10/10/1919revised 6/20/1920137Fourteenth Floor Lighting Plan, East Half (47-M)revised 1/9/1922137Fifteenth Floor Lighting Plan, East Half (48-M)7/17/1920revised 1/9/1922137Fifteenth Floor Lighting Plan, West Half (49-M)7/17/1920revised 1/9/1922137Fifteenth Floor and Pipe Space Plan, East Half-Kitchen Wiring (50-M)1/8/1920revised 1/9/1922137Sixteenth Floor and Pipe Space Wiring Plan, West Half-Wiring (51-M)1/8/1920revised 1/9/1922137

    (letter from F. Gossman attached, 1/29/1965)

    Pent House Plan (52-M)10/10/1919revised 3/26/1920137Basement Plan, Laboratory (53-M)9/21/1919revised 1/9/1922138Ground Floor Plan, Laboratory (54-M)10/10/1919revised 1/9/1922138First Floor Plan, Laboratory (55-M)10/10/1919revised 1/9/1922138Second Floor Plan, Laboratory (56-M)10/10/1919revised 1/9/1922138Third Floor Plan, Laboratory (57-M)10/10/1919revised 10/17/1920138Fourth Floor Plan, Laboratory (58-M)8/12/1919revised 1/9/1922138Light and Power Riser Diagram (59-M)10/10/1919revised 1/9/1922138Plan of Electrical Conduit Lines and Sections of Duct Lines (60-MR)revised 5/21/1920138Site Plan of Additions to Sewers by Albert Kahn, Architect, Ernest Wilby, Associate (61-M)revised 12/16/191917-1/2x30 inches138First Floor Plan, Laboratory by Albert Kahn, Architect, Ernest Wilby, Associate (62-M)10/22/191917-1/2x31-1/2 inches138Layout of Electrical Lab, East End of First Floor (63-M)revised 11/20/191927-1/2x60 inches138Plan of Register Openings (64-M)undated17-1/2x31-1/2 inches138Layout of Electric Sub-Station in Laboratory Basement (64-M)?/17/1920revised 7/7/1921Pencil-on-paper drawing, 27x38-1/4 inches138Details of Power House Tunnelrevised 1/20/192030-1/4x54 inches138

    (not numbered due to linen damage)

    Plan Showing Location of Light Outlets in Typical Bays by Albert Kahn, Architect, Ernest Wilby, Associate (66-M)12/16/191917x30-3/4 inches138Riser Diagrams for Low Tension Conduit, Clock and Telephone Systems, Main Building and Laboratory (67-M)2/3/1920revised 1/9/1922138
    Mechanical and Electrical DrawingsInk-on-linen drawings, 36x48 to 36x51 inchesPlan of Revised Machine Room Piping (68-M)revised 5/23/1921139Layout of Sprinkler, Basement (69-M)undated139Thirteenth Floor Radiator Plan (70-M)6/11/1920revised 1/9/1922139Thirteenth Floor Lighting Planrevised 1/9/1922139

    (not numbered due to linen damage)

    Detail of Special Manhole Cover (75-M)6/23/192017-1/2x30-3/4 inches139Details of Refrigerator Piping (76-M)1/9/1922139Elevations and Details of Laboratory Power Cabinets (77-M)revised 10/17/1920139Fire Alarm Riser Diagram (80-M)8/24/192025-1/2x26 inches139Thirteenth and Fourteenth Floor Plans (83)10/18/1920revised 1/9/192221-1/4x39-3/4 inches139Details of Supply and Return Connections to Vento Heaters for Fan Units (85-M)11/18/192017-1/2x31 inches139First Floor Electrical Plan by Albert Kahn Architect and Engineers (88-M)12/9/1921revised 1/9/1922139Electrical Plan of Mezzanine over Sales Rooms # 106-B & 106-C by Albert Kahn Architects and Engineers (89-M)1/12/1922revised 1/9/1922139Mezzanine Floor Electrical Plan by Albert Kahn Architects and Engineers (90-M)1921revised 1/9/1922139First Floor Electrical Plan, West EndPencil-on-paper drawing, 19-3/4x28-1/2 inches139

    (not numbered or dated due to paper damage)

    Details of Transformer Room No. 129-1/2x41 inches139

    (not numbered or dated due to linen damage)

    Details of Transformer Room No. 15/26/192029-1/2x42 inches139

    (not numbered due to linen damage)

    Details of Transformer Room No. 229-1/2x40-1/4 inches139

    (not numbered or dated due to linen damage)

    Details of Transformer Room No. 2 (48-M)5/20/192030x41 inches139
    Fisher Body Company, Job No. 940, Cleveland, Ohio1920Construction Drawings, Architectural26 drawings75Fisher Body Company, Job No. 940, Cleveland, Ohio1920Construction Drawings, Stuctural21 drawings76Fisher Body Company, Job No. 940, Cleveland, Ohio1920Construction Drawings, Mechanical and Electrical28 drawings77Fisher Body Company, Power House, Job No. 940-A, Cleveland, Ohio1920Construction Drawings, Architectural, Stuctural, and Mechanical31 drawings3417Ford Motor Company, Service Building, Addition of Second Story Offices Over One Story Showroom, Job No 982, 982-D, Sao Paulo, Brazil19201934Construction Drawings, Architectural, Structural, and Mechanical25 drawings372Ford Motor Company, Iron Mountain Plant, Job No. 988, 988-A, B, C, D, E, G, J, K, L, M, N, P and Y, Iron Mountain and Pequaming, Michigan1923-1927General Plot Plan by Albert Kahn, Inc., Architects (Job No. 988)Architectural Drawingundatedink-on-linen drawing, 30x41 inches2411Wood Distillation Plant by Albert Kahn, Architect (Job No. 988-A)Construction DrawingsArchitectural Drawings5/2/1923ink-on-linen drawings with pencil notations, 31x40 inches, except as notedGeneral Plot Plan (0)undated31x41 inches2411Plot Plan (1)revised 12/22/19232411Door and Lintel Schedules and Sections "A-A" to "J-J" (2)2411Foundation Details for Lime Lee Stills and Tanks (3)2411Column Details (4)2411Footing Plan for Primary Stills between Columns 1-10 (5)2411Foundation Plan for Refinery, Plan of Footings under Tanks, and Sections "A-A" to "H-H" (6)revised 12/14/19232411Footing Plan, Columns 13-20, Acetate Drying and Ethyl Acetate Buildings (7)revised 12/24/19232411First Floor Plan, Columns 1-10, Primary Still Building (8)revised 6/21/19232411Second Floor Plan, Columns 1-10, Primary Still Building (9)revised 6/21/19232411First, Second and Third Floor Plans, Refinery (10)revised 12/14/19232411Fourth and Fifth Floor Plans, Refinery, and Details (11)2411First Floor Plan, Columns 13-20, Acetate Drying and Ethyl Acetate Buildings (12)revised 1/31/19242411Second Floor Plan, Columns 13-20, Acetate Drying and Ethyl Acetate Buildings (13)revised 6/19/19242411Third Floor Plan, Columns 13-20, Acetate Drying and Ethyl Acetate Buildings, and Detail of Stairway #4 (14)revised 6/19/19242411Roof Plan (15)revised 6/19/19242411North Elevation, Columns H-1 to H-10 (16)revised 9/15/19232411North Elevation, Columns H-10 to H-13 and South Elevation, Columns A-10 to A-13 (17)2411North Elevation, Columns H-13 to H-20 (18)revised 6/19/19242411West Elevation (19)revised 12/24/19232411South Elevation, Columns A-13 to A-20 (20)revised 6/19/19242412South Elevation, Columns A-1 to A-10 (21)revised 9/15/19232412East Elevation (22)revised 9/15/19232412Section on Line "A-A" (23)revised 9/15/19232412Section on Line "B-B" (24)revised 9/15/19232412Section "C-C" (25)revised 8/27/19232412Section on Line "D-D" (26)revised 6/19/19242412Section on Line "E-E" (27)revised 9/15/19232412Section "F-F" and Details of Sludge Duct and Trench (28)revised 1/31/19242412Section on Line "G-G" (29)2412Plan of Lower Floor of Dryers and Mezzanine in Ethyl Acetate Building and Section on Line "G-G" (30)revised 1/31/19242412Section "G-G" (31)revised 6/19/19242412Section "H-H" (32)2412Detail of Stairway No. 3 (33)2412Detail of Flashing in Hy-Rib Wall (34)revised 9/15/19232412Interior Details of Refinery (35)revised 1/31/19242412Details of Industrial Rails, Curbs and Bumpers (36)2412Details of Doors, Metal Curtain Wall, Gas Duct, Tracks, etc. (37)2412Detail of Fire Escape No. 1 (38)2412Detail of Fire Escape No. 2 (39)2412Structural Drawings of Wood Distillation Plant, except as noted4/23/1923ink-on-linen drawings with pencil notations, 31x40 inchesRoof Plan and Details (1-S)2413Bottom Chord Plan (2-S)revised 5/10/19232413Sections Showing Trusses, Primary Still Department (3-S)2413Sections Showing Trusses and Sway Frames, Refining and Acetate Drying Departments (4-S)2413Second Floor Plan, Primary Still Department (5-S)revised 5/16/19232413Second and Third Floor Plans, Refinery (6-S)revised 7/14/19232413Fourth and Fifth Floor Plans, Refinery (7-S)revised 6/12/19232413Second Floor Plan, Acetate Drying Department (8-S)revised 11/21/19232413Third Floor Plan, Acetate Drying Department (9-S)revised 9/7/19232413Second Floor and Mezzanine Plans, Ethyl Acetate Department (10-S)revised 9/25/19232413Third Floor Plan, Ethyl Acetate Department (11-S)revised 5/17/19232413North and South Elevations (12-S)2413End Elevations (13-S)revised 9/12/19232413Sections Showing Refinery Walls (14-S)revised 8/16/19232413Column Schedule (15-S)2413Details of Fire Escapes (16-S)6/7/19232413Miscellaneous Details (17-S)revised 10/10/19232413Sections Showing Concrete Work for Continuous Acetate Dryers (18-S)5/3/1923revised 9/17/19232413Details of Miscellaneous Platforms and Supports (20-S)4/2/19242413Mechanical and Electrical Drawings of Wood Distillation Plant by Albert Kahn Architect10/1/1923ink-on-linen drawings with pencil notations, 31x40 inchesPlot Plan (1-M)251Foundation Plan, Primary Stills (2-M)251First Floor Plan, Primary Stills (3-M)251Second Floor Plan, Primary Stills (4-M)251Foundation, First Floor and Second Floor Plans, Refinery (5-M)251Third, Fourth and Fifth Floor Plans, Refinery (6-M)251Foundation Plan, Acetate Drying and Ethyl Acetate (7-M)revised 2/7/1924251First Floor Plan, Acetate Drying and Ethyl Acetate (8-M)revised 2/7/1924251Plan of Lower Floor of Driers and Mezzanine, Acetate Drying and Ethyl Acetate (9-M)251Second Floor Plan, Acetate Drying and Ethyl Acetate (10-M)revised 2/7/1924251Third Floor Plan, Acetate Drying and Ethyl Acetate (11-M)revised 2/7/1924251Heating Riser Diagram and Miscellaneous Details (12-M)revised 2/7/1924251Carbonization Building (Job No. 988-B) by Albert Kahn, ArchitectConstruction DrawingsArchitectural Drawings, except as noted10/6/1923ink-on-linen drawings with pencil notations, 31x47-1/2 inchesPlot Plan (101)252Foundation Plan, Briquetting Department (102)252Foundation Plan, First Floor Plan and Second Floor Plan Retort Department (103)revised 7/30/1923252Foundation Plan, Wood Drying Department (104)252First Floor Plan, Briquetting Department (105)252Second Floor Plan, Briquetting Department (106)revised 4/14/1925252Second Floor Gallery Plan, Operating Floor Plan and Fourth Floor Plan, Retort Department (107)revised 7/30/1923252First Floor Plan, Wood Drying Department (108)252Second Floor Plan, Wood Drying Department (109R)4/4/1924252Floor Plans at Elevations: 140'-6", 146' and 130', Wood Drying Department (109A)4/4/1924252Roof Plan (110)252North Elevation, Column F-1 to F-9 (111)revised 4/14/1925252North Elevation, Columns F-9 to F-11, and South Elevation, Columns A-9 to A-11 (112)revised 7/30/1923252North Elevation, Columns F-11 to F-19 (113)252West Elevation (114)252South Elevation, Columns A-11 to A-19 (115)253South Elevation, Columns A-1 to A-9 (116)253East Elevation and West and South Elevations of Scrubber Tank (117)253Longitudinal Section thru' Briquetting Department "A-A" (118)revised 4/13/1925253Section thru "C-C," Briquetting Department, and Sections "L-L" and "M-M" (119)revised 4/11/1925253Sections "B-B" and "D-D" (120)revised 4/14/1925253Sections on Lines "E-E' and "F-F" (121)revised 7/30/1923253Section "G-G" (122)4/4/1924253Section "H-H" (123)253Sections "I-I" and "J-J" (124)253Details of Metal Curtains between Columns, of Rail Connections to Concrete, and of Curbs (125)253Details of Stairways and Tin-Clad Doors (126)253Sections "N-N" and "O-O" (127)4/4/1924253Details of Platforms in Retort and Briquetting Departments (128)4/4/1924revised 4/14/1925253Structural Drawings of Carbonization Building, except as noted5/3/1923ink-on-linen drawings with pencil notations, 31x39-3/4 inches, except as notedRoof Plan--Top Chord and Details of Typical Connections--Purlin Bracing (101-S)254Bottom Chord Plan and Typical Details of Strut Connections (102-S)254Sections Showing Roof Trusses "A," "B" & "C" and Sway Frames (103-S)254Sections Showing Roof Trusses "D," "E" and "D-D" (104-S)revised 6/22/1923254Floor Plans, Retort Department (105-S)revised 2/13/1924254Sections Showing Retort House Walls (106-S)revised 9/6/1923254Plan and Sections of Wood Dryer Supports (107-S)revised 3/7/1924254Details of Wood Dryer Supports (108-S)254North and South Elevations (109-S)revised 1/29/1924254East and West Elevations (110-S)254Details of Platforms and Walkways (111-S)8/15/1923revised 4/30/1924254Details of Bins and Walkways (112-S)8/15/1923revised 3/6/192431x41 inches254Column Schedule (113-S)revised 9/21/1923254Details of Platforms and Walkways (114-S)8/15/1923revised 3/11/1924255Plan and Details of Foundations, Charcoal Cooling and Briquetting Department (115-S)9/4/1923revised 2/22/1924255Details of Retort Bay Foundations (116-S)7/24/1923revised 1/31/1924255Footing Schedule and Details, Wood Drying Department (117-S)9/5/1923revised 1/31/1924255Details of Intermediate Floors and Walkways in Charcoal Cooling and Briquetting Department (119-S)9/4/1923revised 4/28/1924255Details of Intermediate Floors in Charcoal Bin and Sections in Charcoal Cooling and Briquetting Department (120-S)9/4/1923revised 1/15/1924255Details of Charcoal Bin (121-S)8/25/1923revised 1/15/1924255Details of Supports for Gas Scrubber (123-S)1/31/1924revised 2/22/1924255Details of Floors and Framing, Briquetting Plant (124-S)1/29/1924revised 2/13/1924255Details of Floors and Framing, Charcoal Pulverizing and Screening Plant (125-S)2/23/1924255Details of Foundations for Wood Dryers (126-S)revised 2/22/1924255Miscellaneous Foundation Details (127-S)2/8/1924revised 2/26/1924255Details of Miscellaneous Steel Work, Retort Bay (128-S)3/12/1924revised 4/15/1924255Mechanical Drawings of Carbonization Buildingundatedink-on-linen drawings with pencil notations, 31x47 inchesFoundation Plan, Charcoal Briquetting Department (1-M)256First Floor Plan, Briquetting Department (2-M)256Second Floor Plan, Briquetting Department (3-M)256Floor Plans, Retorts Department (4-M)256Floor Plans, Retorts Department (5-M)256Foundation Plan, Wood Drying Department (6-M)256First Floor Plan, Wood Drying Department (7-M)256Second Floor Plan, Wood Drying Department (8-M)256Power House No. 1 (Job No. 988-C) by Albert Kahn, ArchitectConstruction DrawingsArchitectural Drawings8/13/1923ink-on-linen drawings with pencil notations, 34x46-1/2 inches, except as notedPlot Plan (201)revised 9/14/1923257Plans of Foundation, Basement and Ground Floor (202)3/31/1925257Plans of Water Treatment Floor, Boiler Floor and Turbine Room (203)4/6/1925257Plans of Bunker Floor and Platforms over Boilers (204)revised 4/6/1924257Plans of Conveyor Room and Heater Floor, Elevation of Chimneys and Electric Sign, and Details of Steel Sash Partitions (205)revised 9/10/1924257East and North Elevations (206)revised 2/14/1924257West and South Elevations and Details of Stairs No. 2 & 3 (207)revised 2/14/1924257Transverse Section on Line "A-A" (208)revised 4/8/1925257Section thru' Boiler Room on Line "C-C" and Details of Open Steel Stairs (209)revised 4/3/1925257Section thru' Boiler Room on Line "B-B" and Details of Elevator (210)revised 4/6/1925257Section thru' Turbine Room, Looking toward Boiler House on Line "D-D" (211)revised 10/1/1923257Details of Stairs No. 1 and No. 4 (212)revised 2/26/1924257Details of Monitor Skylights and West Wall (213)revised 9/7/1923257Details of North, South and East Elevations (214)revised 12/12/1923257Details of Main Entrance to Boiler House and Doors (215)revised 9/14/1923257Details of Additions and Alterations to Stairways, Power House No. 1 (218)undatedpencil-on-vellum drawing, 28x34-3/4 inches257Details of Platforms in Front of Boilers (219)4/1/1925revised 4/20/1925257Structural Drawings, except as noted8/22/1923ink-on-linen drawings, with pencil notations, 31x39-1/2 inchesPlan of Roof and Bottom Chord (201-S)revised 12/21/1923258Floor Plans of Turbine and Boiler (202-S)revised 4/8/1924258Cross Section "A-A" (203-S)revised 4/29/1924258Longitudinal Section "B-B" (204-S)revised 4/29/1924258Plan and Sections of Saw Dust Bunker (205-S)revised 9/14/1923258East and West Elevations (206-S)revised 9/19/1923258North and South Elevations (207-S)revised 11/1/1923258Details of Walkway and Stairway System (108-S)revised 12/6/1923258Column Schedule (209-S)revised 9/18/1923258Revised Foundation Plan (210-S)8/20/1923revised 10/26/1923258Revised Footing Schedule and Miscellaneous Details (211-S)9/6/1923revised 9/18/1923258Details of Revised Chimney Foundations (212-S)8/31/1923revised 9/5/1923258Details of Boiler Framing (213-S)258Details of Miscellaneous Platforms (214-S)revised 10/26/1923258Plan of Revised Arrangement of Pipe Tunnels (215-S)9/5/1923259Ground Floor Plan and Sections (218-S)9/10/1923revised 10/26/1923259Details of Dust Catcher No. 1 (219-S)9/26/1923revised 2/22/1924259Details of Dust Catcher No. 2 (220-S)9/26/1923revised 2/22/1924259Miscellaneous Details (221-S)10/26/1923revised 1/4/1924259Miscellaneous Details (222-S)12/14/1923revised 5/8/1924259Details of Main Gas Ducts under Boilers (223-S)1/24/1924revised 2/11/1924259Erection Plan, Boiler No. 3 (225-S)4/1/1924259Details of Ash Hopper, Boiler No. 3 (226-S)3/31/1924revised 4/21/1924259Details of Framing for Boiler No. 3 (227-S)4/1/1924259Details of Crushed and Pulverized Coal Bins (228R-S)7/30/1924revised 8/28/1924259Details of 500 K-W Turbo-Generator Foundation (229-S)7/11/1924revised 10/23/1925259Addition to Present Saw Mill (Job 988-D) by Albert Kahn, ArchitectConstruction DrawingsArchitectural Drawings5/2/1923ink-on-linen drawings with pencil notations, 31x39-3/4 inchesPlot Plan (301)revised 7/12/19232510Footing and First Floor Plans (302)revised 8/24/19232510Saw Mill and File Room Floor Plans (303)revised 9/29/19232510North, South and West Elevations and Cross-Section on Line "A-A" (304)revised 9/29/19232510Longitudinal Section on Line "B-B" and Details of Exterior and Stairs (305)revised 9/17/19232510Structural Drawings, except as noted5/3/1923ink-on-linen drawings with pencil notations, 31x39-3/4 inchesBottom Chord Plan, Roof Plan and Filing Room Floor Plan (301-S)revised 6/5/19232510Cross-Section, Column Schedule and Details of Truss B and Sway Frames (302-S)revised 6/5/19232510Elevations and Typical Building Sections (303-S)revised 6/5/19232510Second Floor Plan and Beam Schedule (304-S)revised 7/11/19232510Second Floor Details (305-S)revised 7/11/19232510Foundation Plan and Column and Footing Schedule (306-S)6/13/1923revised 12/12/19232510Conveyor Bridges (Job No. 988-E) by Albert Kahn, ArchitectConstruction DrawingsArchitectural Drawings, except as noted10/6/1923ink-on-linen drawings with pencil notations, 32-1/2x41-3/4 inches, except as notedPlan and Sections of Bridge between Power House and Saw Mill (401)2511Plan, South Elevation and Sections of Bridge between Power House and Saw Millpencil-on-vellum drawing, 29x39 inches2511

    (not numbered)

    Plan, East Elevation and Sections of Bridge between Saw Mill and Carbonization Building (403)11/1/19232511Plans at Conveyor Walkways and at Auxiliary Conveyor Platforms of Monitor on Present Saw Mill (404)11/23/1923revised 1/17/19242511North, South and West Elevations and Sections of Monitor on Present Saw Mill (405)revised 1/17/19242511Sections of Monitor on Present Saw Mill (406)11/23/1923revised 1/17/19242511Plan, Elevation and Sections of Bridge between Wood Storage and Carbonization Buildings (407)undated2511
    Structural Drawingsink-on-linen drawings with pencil notations, 31x40 inchesSite Plan Showing General Arrangement of Conveyor Bridges (400-S)9/24/1923revised 11/6/19232511Plan, Elevations and Sections of Bridge between Power House and Saw Mill (401-S)9/21/1923revised 3/13/19242511Plans of Top and Bottom Chord Bracing, Elevations and Sections of Bridge between Carbonization Building and Saw Mill (402-S)10/30/1923revised 11/7/19232511Details Showing Conveyor Layout and Supports in New Saw Mill (403-S)12/13/19232511Details Showing Conveyor Arrangement and Monitor over Present Saw Mill (404-S)12/23/1923revised 3/13/19242511Monitor Elevations and Details Showing Arrangement of Columns under Monitor of Present Saw Mill (405-S)12/13/1923revised 12/14/19242511Details Showing Alterations to Trusses in Present Saw Mill (406-S)12/13/19232511Bridge Support and Miscellaneous Details (407-S)12/13/1923revised 1/24/19242511Details of Bridge between Carbonization Building and Wood Storage Bins (408-S)11/7/1923revised 3/13/19242511
    Shipping Building (Job No. 988-G) by Albert Kahn, ArchitectConstruction DrawingsArchitectural Drawings1/2/1924ink-on-linen drawings, 31x39-1/2 inchesPlot, Foundation, Floor and Roof Plans (601)2512Elevations and Sections (602)2512Miscellaneous Details (603)2512Structural Drawings, except as noted2/6/1924ink-on-linen drawings with pencil notations, 31x40-3/4 inchesRoof Framing Plan, Elevations, Cross-Section and Typical Section for Columns (601-S)2512Foundation Plan and Sections (602-S)2512Details of Pipe Bridge from Distillation Building to Shipping Building (603-S)4/14/19242512Mechanical Drawing4/1/1924ink-on-linen drawing, 30-1/2x39-1/2 inchesPlot, Foundation and Floor Plans (1-M)2512Charcoal and Briquette Storage Plant (Job No. 988-J) by Albert Kahn, Inc., ArchitectsConstruction DrawingsArchitectural Drawings1/6/1925ink-on-linen drawings with pencil notations, 29-3/4x40 inchesFoundation and Footing Plan and Details (1402)2513First Floor Plan and Details (1403)2513Plans of Bin Bottoms and Penthouse and Details (1404)2513Elevations (1405)2513Cross-Section "A-A" (1406)2513Sections "B-B" and "C-C" and Typical Wall Sections (1407)2513Structural Drawings12/16/1924ink-on-linen drawings with pencil notations, 30x39 inchesDetails of Concrete Deck and Foundation (1401-S)revised 1/2/19252513Details of Concrete for Conveyor Tunnel and Hoist Pit (1402-S)revised 1/8/19252513Detail of Hopper and Bucket Guides (1403-S)2513Details Showing General Arrangement of Tunnel and Storage Conveyors in Carbonization Building (1404-S)12/17/19242513Tar Distillation Plant--Addition to Distillation Building (Job No. 988-K) by Albert Kahn, ArchitectConstruction DrawingsArchitectural Drawings12/20/1923ink-on-linen drawings, 31x39-3/4 inchesPlot and Roof Plans (501)261Foundation and First Floor Plans (502)261Second and Third Floor Plans (503)261North and South Elevations (504)261West Elevation (505)261Section "A-A" and Stairway Details (506)261Section "B-B" (507)261Miscellaneous Details (508)261Structural Drawingsink-on-linen drawings, 31x40 inchesFoundation Plan, Footing Schedule and Details (501-S)10/18/1923revised 12/19/1923261Roof Plan, Elevations, Cross-Section and Column Schedule (502-S)11/22/1923261Second and Third Floor Plans and Details (503-S)10/30/1923revised 12/19/1923261Mechanical Drawings2/11/1924ink-on-linen drawings with pencil notations, 31x40 inchesFoundation and First Floor Plans (1-M)261Second and Third Floor Plans (2-M)261Gas Duct System for Wood Distillation Plant (Job No. 988-L) by Albert Kahn, Architect, and Albert Kahn, Inc., ArchitectsConstruction DrawingsArchitectural Drawing12/22/1923ink-on-linen drawing, 31x39-1/2 inchesPlot Plan (701)262Structural Drawings, except as noted12/22/1923ink-on-linen drawings with pencil notations, 31x39-3/4 inches, except as notedSections Showing Flue Gas Duct through Distillation Building (700-S)revised 4/2/1924262Plan, Elevation and Details Showing General Arrangement of Exterior Gas Mains (701-S)revised 2/25/1924262Details of Gas Duct Supports (702-S)revised 2/25/1924262Plan and Sections Showing Arrangement of Gas Ducts in Carbonization Building (703-S)revised 4/2/1924262Sections and Gas Duct Details for Carbonization Building (704-S)revised 4/2/1924262Details of Duct Connections (705-S)2/11/1924revised 4/3/1924262Details of Footings for Outside Gas Duct Supports (706-S)2/9/1924revised 2/11/1924262Details of Supports for Gas Duct in Distillation Building (708-S)3/14/1924262Details of Duct Supports in Charcoal and Briquetting Plant and in Carbonization Building (709-S)3/24/1924revised 7/16/1924262Details of Duct Supports in Wood Drying Department in Carbonization Building (710-S)4/2/1924262Details of Alterations in Briquette Dryers, Ducts and Fans in Carbonization Building (711-S)6/29/192525x37 inches262Details of Vapor Ducts and Stacks for Acetate Drums in Distillation Building (712-S)7/16/1925revised 11/13/1925262Details of Stacks in Carbonization Building (713-S)10/30/1926revised 4/2/192725x37 inches262Details of Stack Foundations in Carbonization Building (714-S)6/21/1926revised 4/2/192725x37 inches262Details of Breachings for Stack No. 4 in Carbonization Building (715-S)12/8/1926revised 4/2/192725x37 inches262Club House (Job No. 988-M) by Albert Kahn, ArchitectConstruction DrawingsArchitectural Drawings11/30/1923pencil-on-vellum drawings, except as noted, 21-1/2x25-1/2 inchesFoundation Plan (801)263First Floor Plan (802)revised 2/5/1924263Front, Rear and Side Elevations (803)263Sections "A-A," "B-B" and "C-C" (804)263Plans and Elevations (805)undatedpencil drawing on tracing paper263Saw Mill for Green Parts (Job No. 988-N) by Albert Kahn, Architect and Albert Kahn, Inc., ArchitectConstruction DrawingsArchitectural Drawings5/15/1924ink-on-linen drawings with pencil notations, 31x39-3/4 inchesPlot Plan (901)revised 6/6/1924264First Floor Plan and Stairway and Other Details (902)264Second Floor and Roof Plans (903)revised 7/22/1924264East, West and South Elevations and Toilet Room Details (904)revised 6/6/1924264Typical Cross-Section, Looking North (905)revised 6/6/1924264Details Showing Typical Intersection between Saw Mill and Transfer Building (906)revised 6/6/1924264Toilet Room Details (907)revised 7/17/1924264Structural Drawings5/20/1924ink-on-linen drawings with pencil notations, 31x39-3/4 inchesTop and Bottom Chord Plan and Details of Toilet Room Steelwork (901-S)revised 7/18/1924264Typical Cross-Section and Sway Frame Details (902-S)revised 6/6/1924264Second Floor Plan (903-S)revised 7/7/1924264Steelwork Elevations (904-S)revised 7/7/1924264Foundation Plan (905-S)revised 5/7/1924264Pequaming Plant Power House and Storage Bin (Job No. 988-P) by Albert Kahn, Inc., ArchitectsConstruction DrawingsArchitectural Drawings, except as noted10/6/1924ink-on-linen drawings with pencil notations, 29-3/4x39-1/2 inchesPlot Plan (1001)revised 4/7/1925265Foundation Plan and Details of Ash Trench (1002)revised 2/4/1925265First Floor Plan, Storage Bin Floor Plan and Details of Pilasters (1003)revised 4/10/1925265Second Floor Plan, Plan of Conveyor and Platform, and Sections (1004)revised 2/4/1925265Roof Plan and East and West Elevations of Power House and Storage Bin (1005)revised 12/16/1924265North and South Elevations (1006)revised 12/16/1924265Cross-Sections "A-A" and "B-B" (1007)revised 1/19/1925265Longitudinal Sections "C-C" and "D-D" (1008)10/5/1924revised 4/7/1925265Sections through North and South Walls and Details (1009)revised 10/27/1924265Details of Conveyor Bridge (1010)revised 10/27/1924265Details (1011)revised 10/27/1924265Details of Conveyor Housing Alterations (1012)3/20/1925265Structural Drawingsink-on-linen drawings with pencil notations, 29-1/2x39-1/2 inchesDetails of Boiler and Stack Foundations (1001-S)8/30/1924revised 4/7/1925265Details of Boiler House and Sawdust Bin Foundations (1002-S)9/26/1924revised 10/10/1924265Floor Plans and Roof Plan for Power House and Storage Bin (1003-S)9/15/1924revised 4/7/1925265Cross-Section and Details (1004-S)10/7/1924265Elevations and Sections (1005-S)10/7/1924revised 4/7/1925265Details of Platforms and Conveyor Supports (1006-S)10/8/1924265Mechanical Drawingsink-on-linen drawings with pencil notations, 30x39-1/2 inchesSetting Plan for 2-300 H.P. Vertical Wickes Boilers (1-M)9/24/1924265Plan of Engine Room with Miscellaneous Sections (2-M)10/31/1924265Hospital (Job No. 988-Y) by Albert Kahn, Inc., ArchitectConstruction DrawingsArchitectural Drawings1/21/1925ink-on-linen drawings with pencil notations, 26x39 inchesPlot Plan (1)266Basement and Foundation Plan (2)266First Floor Plan (3)266Second Floor Plan (4)266East and West Elevations (5)266North and South Elevations and Sections "A-A," "B-B" and "C-C" (6)266Exterior Details (7)266Details of Operating Rooms and Miscellaneous Details (8)undated266First Floor, Second Floor and Basement Plans (9)266Details of Elevator and Stairs (10)266Interior Elevations and Details (11)266Miscellaneous Details (12)266Structural Drawingsundatedpencil-on-vellum drawings, 26x38-1/2 inchesFirst Floor Framing Plan, Column Schedule and Details (1-S)266Second Floor Framing Plan and Details (2-S)266Roof Framing Plan (3-S)266Mechanical Drawings1/9/1925ink-on-linen drawings with pencil notations, 26x38-1/2 inchesBasement Plan and Details (1-M)266First Floor Plan and Electrical Riser Diagram (2-M)266Second Floor Plan and Details (3-M)266
    Police Headquarters Building and First Precinct Police Station, Job No. 990-R, Beaubien and Clinton Streets, Detroit, Michigan1921-1923Construction Drawings by Albert Kahn, ArchitectArchitectural Drawings, 8/4/1921 General Revision, 9/15/19218/4/19219/15/1921ink-on-linen drawings, 35x36 inchesPlot Plan (1)revised 11/18/1921295Foundation Plan (2)295Basement Plan (3)revised 8/8/1922295First Floor Plan (4)revised 9/1/1922295Second Floor Plan (5)revised 9/12/1922295Third Floor Plan (6)revised 1/5/1922295Fourth Floor Plan (7)revised 1/9/1922295Fifth Floor Plan and Column Details (8)revised 11/13/1922295Sixth and Seventh Floor Plans (9)revised 5/6/1922295Eighth and Ninth Floor Plans (10)revised 11/18/1921295Pipe Space Floor Plan and Roof Plan (11)295Details of Elevators (12)revised 10/26/1921295West Elevation (13)revised 10/26/1921295North Elevation (14)revised 10/26/1921295South Elevation (15)revised 10/26/1921295East Elevation (16)revised 10/26/1921295Court Elevations and Details of Mezzanine and Metal Grilles (17)revised 10/26/1921296Elevation of Northwest Corner and Details of Lower Stories of Main Building (18)revised 11/18/1921296Exterior Details of Upper Stories of Main Building (19)revised 1/19/1922296Details of Front Entrance and Entrance to First Precinct Police Station (North Elevation) (20)revised 11/18/1921296Details of North Wall of Armory Building (21)revised 10/26/1921296Exterior Details of Armory Building (22)revised 10/26/1921296Cross-Section at Center Line of Building and South Elevation of Court (23)revised 10/26/1921296Details of Running Track and Monitor in Armory (24)revised 10/26/1921296Details of Roof over Wagon Court (25)revised 10/26/1921296Details of Stairs (26)revised 11/18/1921296Details of Stairs (27)revised 11/18/1921296Details of Pistol Range, Steel Doors, Cell Fronts and Eighth & Ninth Floor Windows (28)revised 11/18/1921296Miscellaneous Details (29)revised 10/26/1921296Details of Partitions, Corridors, Dumb Waiter and Cabinets (30)revised 11/18/1921296Details of First Floor Lobby (31)revised 10/26/1921296Details of Police Commissioner's Room and Other Offices (32)revised 9/1/1922296Details of Toilet Rooms (33)revised 1/9/1922296Structural Drawings8/4/1921 except as notedGeneral Revision 9/15/1921ink-on-linen drawings, 36x36 inches, except as notedColumn Schedule (1-S)revised 11/9/1921297Armory Column Schedule and Footing Details (2-S)297First Floor Framing Plan and Beam Schedule (3-S)297Second Floor Framing Plan and Beam Schedule (4-S)297Third Floor Framing Plan and Beam Schedule (5-S)revised 10/31/1921297Fourth Floor Framing Plan and Beam Schedule (6-S)revised 11/4/1921297Fifth Floor Framing Plan and Beam Schedule (7-S)revised 11/7/1921297Sixth Floor Framing Plan and Beam Schedule (8-S)revised 11/9/1921297Seventh Floor Framing Plan and Beam Schedule (9-S)revised 11/10/1921297Eighth Floor Framing Plan and Beam Schedule (10-S)revised 11/18/1921297Ninth Floor Framing Plan and Beam Schedule (11-S)297Roof and Attic Framing Plans, Details of Trusses and Beam Schedule (12-S)revised 2/10/1922298Garage Floor Framing Plan, Key Plan for Basement Walls and Beam Schedule (13-S)298Armory Floor Framing Plan and Beam Schedule (14-S)revised 12/8/1921298Running Track Balcony Floor Plan and Details (15-S)298Armory and Wagon Court Roof Plans and Truss Details (16-S)298Armory Roof Framing Details (17-S)298Plan of Eighth Floor Framing around Cells (18-S)12/5/192134x44 inches298Plan of Ninth Floor Framing at Cells (19-S)1/7/192233-1/2x44 inches298Details of Towers (20-S)2/13/192227-1/2x35-1/2 inches298Alternate Design for Wireless Towers "A" and "C" (21-S)2/13/192227-1/2x36-1/2 inches298Mechanical Drawings, except as noted8/6/1921ink-on-linen drawings, 36x36 inches, except as notedFoundation Plan (1-M)revised 11/28/1921299Basement Plan for Plumbing (2-M)revised 11/28/1921299Basement Plan for Heating, Ventilating and Electrical Work (3-M)revised 8/8/1922299First Floor Plan (4-M)revised 11/28/1921299Second Floor Plan (5-M)revised 11/28/1921299Third Floor Plan (6-M)revised 1/7/1922299Fourth and Fifth Floor Plans (7-M)revised 1/7/1922299Sixth and Seventh Floor Plans (8-M)revised 8/10/1922299Plan of Pipe Space above Seventh Floor and Details of Pipe Shafts (9-M)revised 11/28/1921299Eighth and Ninth Floor Plans (10)revised 11/28/1921299Pipe Space Floor Plan and Details of Pipe Shafts (11)revised 11/28/1921299Heating Riser Diagrams for Main Building and Armory (12-M)revised 8/12/1922299Section thru' Gymnasium and Court and Heating Riser Diagram (13-M)revised 8/10/1922299Ventilation Details (14-M)revised 11/28/19212910Service Details (15-M)revised 11/28/19212910Machine Room Details (16-M)revised 11/28/19212910Details of Transformer Room and Switch Vault (17-M & 17-MR)revised 9/23/1921two drawings2910Electrical Riser Diagram and Details (18-M)revised 11/28/19212910Plan of Rotary and Transformer Rooms (19-M)revised 5/22/19222910Wiring Diagram of Rotary Converters (20-M)revised 7/27/192229-1/2x45 inches2910Plan and Front Elevation of Switchboard (21-M)5/11/192226-1/2x35 inches2910Sixth and Seventh Floor Plans, Showing Piping and Connections for Kitchen Equipment (21-M)1/15/1923revised 3/14/192315x23-1/2 inches2910Electrical Plan of Transformer and Rotary Rooms and Switch Vault (22-M)5/20/192224-1/2x37 inches2910Details of Fan Motor for Police Station Garage (100-M)7/24/192212-1/2x18 inches2910Revised Fifth Floor Plan, Prosecuting Attorney's Division (106-M)11/16/1922revised 3/14/192317-1/2x23-1/4 inches2910Dr. Christopher Gregg Parnall Residence, Job No. 994 & 994-A, Oxford Street, Ann Arbor, Michigan1921-1923Construction Drawings by Albert Kahn, ArchitectArchitectural Drawings for Job No. 994, undated, except as notedpencil-on-vellum drawings, 19x24-3/4 inchesPlot Plan (1)2911Basement Plan (2)2911First Floor Plan (3)2911Second Floor Plan (4)2911Attic Plan (5)2911East Elevation (6)2911North Elevation (7)2911South Elevation (8)2911West Elevation (9)2911Interior Details (10)2911Details of Stairs, Interior Walls and Living Room Fireplace (11)2911Revised Details (12)revised 10/22/19212911Mechanical Drawing for Job No. 9946/8/1921ink-on-linen drawing, 19x25 inchesBasement Plan (1-M)2911Architectural Drawings for Job No. 994-A2/17/1923pencil-on-vellum drawings, 15x22 inchesBasement Plan (2)2911First Floor Plan (3)2911Second Floor Plan (4)revised 2/23/19232911Attic and Roof Plan (5)2911East Elevation (6)2911Side Elevation (7)2911Side Elevation (8)2911Rear Elevation (9)2911Trussed Concrete Steel Company (Truscon Steel), Worker Housing, Job No. 999, Hamtramck, Michiganca. 1920Construction DrawingsArchitectural Drawingsundatedink-on-linen drawings, 30-1/4x46 inchesFloor Plans, Elevation and Sections2 drawings302
    Job No. 1001-1077William L. Clements Library, University of Michigan, Job No. 1001 & 1001-B, Ann Arbor, Michigan1921-1922Program DocumentCampus of the University of Michigan at Ann Arbor [Site Plan] by Rippey and Newton8/27/1897Ink-on-linen drawing, 35x29 inches44Design Development (Block Plans) Drawings by Albert Kahn, ArchitectundatedInk-on-linen drawings, 19x20 inchesBasement Plan44First Floor Plan44Second Floor Plan44Construction Drawings by Albert Kahn, ArchitectInk-on-linen drawings, 26x40 to 26x42 inchesArchitectural Drawings12/14/1921Plot Plan (1)revised 5/23/192244Basement Plan and First Floor Plan (2)44Attic Plan and Second Floor Plan (3)44North, South and East Elevations and Section A-A (4)revised 12/24/192144Section thru' Window at Each Side of Entrance, Section on Line A-A, Elevation of Loggia and Section thru' Loggia (5)44Detail Plans of Loggia, Details of Terrace Steps and Railing and Details of Fan Room (6)44Plans and Sections of Windows in Main Reading Room, in Alcove and on North Elevation (7)revised 12/24/192144Details of Main Reading Room and Custodian's Room (8)44Details of Main Reading Room, Rare Book Room, Men's and Women's Toilet, Balcony, Main Entrance-Vestibule, Doors and Windows (9)44Details of Stairs and Dumb Waiter Door (10)44Alternate Scheme for Approach (11)revised 12/24/192144Plan for New Pavement (3)9/11/1925Pencil-on-vellum drawing, 17-1/4x21-1/2 inches44Structural Drawings12/14/1921Roof and Ceiling Framing Plans and Truss Details (1S)45First and Second Floor Framing Plan (2S)45Mechanical Drawings8/23/1921Basement and Foundation Plans (1M)revised 12/6/192145First and Second Floor Plans (2M)revised 12/6/192145Attic Plan (3M)revised 11/9/192145Ventilating Equipment by Albert Kahn, Inc., Architects & Engineers (1M), Job No. 1001-B10/11/192845Belle Isle Coliseum Company Ball Room ("The Pier"), Job No. 1007-A & B, Detroit, Michigan1921Ball Room Building (Job No. 1007-A)Construction Drawings by Albert Kahn, ArchitectArchitectural Drawings4/8/1921ink-on-linen drawings, 26x39 inchesPlot Plan and Roof Plan (1)303Basement Plan (2)revised 4/27/1921303Main Floor Plan (3)revised 4/27/1921303Plan at Balcony Level (4)303North and South Elevations and Details of Entrance (5)revised 4/28/1921303East and West Elevations (6)303Sections "A-A" and "B-B" and Plan Showing Plank Walk in Truss Space (7)revised 4/27/1921303Sections "C-C" through "F-F" (8)revised 4/27/1921303Sections "G-G," "H-H" and "J-J" and Details of Typical Loge Box and Cloak Room (9)revised 4/27/1921303Section thru' Balcony and Details of Doors and Office Partitions and Drop Curtain over Stage (10)303Reflected Ceiling Plan, Interior Elevations and Details of Grille and Balcony (11)303Plans and Elevations of Foyer # 112 and Ladies Parlor #111 and Details of Check Rooms (12)revised 4/27/1921303Details of Stairs (13)revised 4/27/1921303Details of Stairs (14)revised 4/27/1921303Miscellaneous Details (15)revised 4/27/1921303Structural Drawings, except as noted4/8/1921pencil-on-vellum drawings, 23-3/4x37-1/2 inches, except as notedFoundation Detailsrevised 5/2/1921304

    (not numbered or dated due to paper damage)

    Piling and Footing Plan (1-S)revised 5/2/1921304Truss and Column Details (2-S)revised 5/4/1921304First Floor Framing Plan (3-S)revised 5/4/1921304Balcony Floor Framing Plan and Boiler Room Roof Plan (4-S)revised 5/16/1921304Roof Framing Plan (5-S)revised 4/15/1921304Truss and Footing Details (6-S)revised 4/15/1921304Anchor Bolt Plan (7-S)revised 5/4/1921304Details of Steel Stack (8-S)4/25/192116-3/4x22-1/2 inches304Plan Showing Proposed Re-Framing of Beams at North End of Building (9-S)6/8/1921ink-on-vellum drawing, 18-1/2x32 inches304
    Mechanical Drawings4/22/1921ink-on-linen drawings, 26x39 inchesBasement Plan (1-M)revised 6/10/1921304Main Floor Plan (2-M)revised 5/20/1921304Plan at Balcony Level (3-M)revised 5/10/1921304Roof Plan and Details (4-M)revised 6/10/1921304
    Ball Room Main Entrance Passage from Jefferson Avenue (Job No. 1007-B)Construction DrawingsArchitectural Drawings5/26/1921ink-on-linen drawings, 26x40 inchesPlan, East Elevation and Section of Passage (1)304Details of Main Entrance (2)304Structural Drawing6/2/1921pencil-on-vellum drawing, 23-3/4x37-1/4 inchesDetails of Passage (1-S)304Mechanical Drawingsundatedpencil-on-vellum drawingsPlans of First Floor Display Rooms and Basement, Adjacent to Corridor to Ballroom (1-M)15-1/2x18-1/2 inches304Heating Plan for Display Rooms (1-M)15-1/4x29-3/4 inches304
    First Congregational Church, Alterations and Additions, Job Nos. 1008, 1008 A & B, Woodward and Forest Avenues, Detroit, Michigan1923-1925Alterations and Additions (Job No. 1008)Design Development Drawings, undated, except as notedink-on-linen drawings, except as noted, 21-1/2x28 inchesArchitectural DrawingsBasement Plan305First Floor Plan305Second Floor Plan305Second Floor Plan6/23/1923pencil-on vellum drawing, 20x28 inches305Construction Drawings by Albert Kahn, ArchitectMechanical Drawings6/2/1924ink-on-linen drawings, 28x32 inchesFoundation and Boiler Room Plan (1-M)305Basement Floor Plan (2-M)revised 6/10/1924305First Floor Plan and Riser Diagrams (3-M)305Second Floor Plan (4-M)305Alterations and Additions by Albert Kahn, Inc., Architect (Job No. 1008-A)Construction DrawingsArchitectural Drawings, except as noted7/16/1924ink-on-linen drawings, except as noted, 28x32 inchesExcavation Plan (1-A)6/24/1924pencil-on-vellum drawing305Plot Plan and Foundation Plan (1)305Basement Floor Plan and Details (2)305First Floor Plan and Details (3)305Second Floor and Roof Plans (4)305North, East and West Elevations (5)305Sections "A-A," "B-B" and "C-C" (6)305Main Lounge Ceiling Plan and Interior Elevations (7)305Alterations and Additions by Albert Kahn, Inc., Architect (Job No. 1008-B)Construction DrawingsArchitectural Drawings, 8/11/1924 revised 9/26/1924 except as noted8/11/1924revised 9/26/1924pencil-on-vellum drawings, 28x32 inchesExcavation Plan and Sections (1-A)7/25/1924306Plot Plan and Foundation Plan (1)306Basement Floor Plan and Details (2)306First Floor Plan and Details (3)306Second Floor and Roof Plans (4)306North, East and West Elevations and Section "D-D" (5)306Sections and Interior Elevations (6)306Main Entrance and Other Details (7)306Section "E-E" and Details of Gymnasium and First Floor Corridor (8)306Lounge and Dining Room Interior Details (9)306Miscellaneous Details (10)306Structural Drawings8/14/1924revised 9/26/1924ink-on-linen drawings, 28x32 inchesFoundation Plan and Details (1-S)306First and Mezzanine Floor Plan and Details (2-S)306Second Floor and Roof Plans (3-S)306Mechanical Drawings8/19/1924ink-on-linen drawings, 28x32 inchesFoundation Plan (1-M)revised 9/29/1924306Basement Plan and Details (2-M)revised 9/29/1924306First Floor Plan and Heating and Electrical Riser Diagrams (3-M)revised 1/10/1925306Second Floor Plan (4-M)revised 12/1/1924306Medical (C. C. Little) Building, University of Michigan, Job No. 1023, Ann Arbor, Michigan1923-1924Construction Drawings by Albert Kahn, ArchitectArchitectural Drawings12/28/1923Ink-on-linen drawings with pencil notations, 32x48-3/4 inchesPlot Plan (1)145Basement and Foundation Plan (2)145First Floor Plan (3)145Second Floor Plan (4)145Third Floor Plan (5)145Fourth Floor Plan (6)145FifthFloor Plan (7)145Roof Plan (8)145Street Elevations (9)145End and Court Elevations (10)145Scale Sections and Typical Court Elevation (11)145Details of Stairs # 1 and Lobby (12)revised 8/26/1924145Elevator Details (13)145Detail of Center Portion of West Elevation (14)145Details of Typical Bay, West and North-East Elevations (15)145Structural Drawings11/14/1923Ink-on-linen drawings with pencil notations, 32x48-1/2 inchesSchedule of Columns and Footings (1-S)revised 11/21/1923146First Floor Framing Plan (2-S)146Typical Floor Plans (3-S)revised 12/21/1923146Fifth Floor Plan (4-S)revised 2/5/1924146Roof Plan (6-S)revised 2/6/1924146Mechanical DrawingsundatedInk-on-linen drawings with pencil notations, 32x48-1/2 inchesBasement and Foundation Plan (1-M)146First Floor Plan (2-M)revised 3/13/1923146Second Floor Plan (3-M)revised 3/13/1923146Third Floor Plan (4-M)146Fourth Floor Plan (5-M)146Fifth Floor Plan (6-M)146Heating Riser Diagram (7-M)146University of Michigan Physical Science Building (East Physics Building), Job Nos. 1024 and 1024-A, Ann Arbor, Michigan1922-1923Physical Science Building by Albert Kahn Architect (Job No. 1024)Construction DrawingsArchitectural Drawings3/7/1922ink-on-linen drawings, 29x40-1/2 inchesSub-Basement Plan (3)307Basement Plan (4)307First Floor Plan (5)307Second Floor Plan (6)307Third Floor Plan (7)307Fourth Floor Plan (8)307Roof Plan (9)307West Elevation (10)307South Elevation (11)307East Elevation (12)307North Elevation (13)307North and West Elevations in Court (14)307Exterior Details of Lower Portion (15)307Details of Upper Portion of Exterior Elevations (16)307Floor and Roof Plans of Lecture Rooms #1 & 2 (18)307Plans of Lecture Room Ceiling and Skylight Construction (19)307Sections thru' Shop and Lecture Rooms #1 & 2 ( 20)307Structural Drawings3/7/1922ink-on-linen drawings, 29x40 inchesColumn Schedule and Details of Footings and Foundation Walls (0-S)308Details of Tunnel Framing and Column and Beam Schedules (1-S)revised 5/9/1922308Sub-Basement and Basement Floor Framing Plans and Beam Schedule (2-S)revised 5/9/1922308First Floor and Lecture Room Framing Plan (3-S)308Second, Third and Fourth Floors Framing Plan (4-S)308Plans of Fan Room Floor and Roof and Truss Details (5-S)308First Floor Beam Schedule and Details of Joists, Spandrels and Girders (6-S)308Roof Framing Plan, Beam Schedule and Truss Details (7-S)308Mechanical/Electrical Drawings3/11/1922ink-on-linen drawings, 29x40 inchesSecond Sub-Basement Plan and Details (1-M)309Sub-Basement Plan (2-M)309Basement Plan (3-M)309First Floor Plan (4-M)309Second Floor Plan (5-M)309Third Floor Plan (6-M)309Fourth Floor Plan (7-M)309Plan of Pipe Space above Fourth Floor (8-M)309Heating Riser Diagram and Details (9-M)309Ventilation Riser Diagram and Details (10-M)309Plan of Lecture Room Ventilation and Details (11-M)309Second Sub-Basement and Sub-Basement Electrical Plans (12-M)309Basement Electrical Plan (13-M)309First Floor Electrical Plan (14-M)309Second Floor Electrical Plan (15-M)309Third Floor Electrical Plan (16-M)309Fourth Floor Electrical Plan (17-M)309Riser Diagram (18-M)309Physical Science Building by Albert Kahn, Architect (Job No. 1024-A)Construction DrawingsArchitectural Drawings5/8/1922ink-on-linen drawings, 29x29 inches, except as notedPlot Plan (1)29x39-1/2 inches3010Second Sub-Basement Plan (2)29-1/2x28 inches3010Second Sub-Basement Plan and Detail of Two-Story Sound Laboratory (2-A)29x40 inches3010Sub-Basement Plan (3)revised 3/20/19233010Basement Plan (4)revised 3/20/19233010First Floor Plan (5)3010Second Floor Plan (6)3010Third Floor Plan (7)3010Fourth Floor Plan (8)revised 3/29/19233010Roof Plan (9)3010West Elevation (10)revised 3/20/19233010South Elevation (11)revised 3/20/19233010East Elevation (12)3010North Elevation (13)revised 3/20/19233010Details of Lower Portion of East Elevation (15)3010Details of Upper Portions of Exterior Elevations (16)3010Miscellaneous Interior Details (17)28-1/2x39-1/2 inches3010Details of Stairs # 1 & 2, Toilet Rooms and Fan Room (21)29x39-1/2 inches3010Cross-Section (22)3010Section thru' Elevator Shaft and Details of Stair #3 (22-A)28x40 inches3010Structural Drawings5/9/1922ink-on-linen drawings, 29x28 inchesColumn Footing Schedule (1-S)3011Basement and Sub-Basement Floor Framing Plan (2-S)3011First Floor Framing Plan and Beam Schedule (3-S)3011Second, Third Fourth and Fourth Floor Mezzanine Framing Plan (4-S)3011Roof Framing Plan and Beam Schedule (5-S)3011First thru' Fourth Floor Spandrel Schedule and Details (6-S)3011Pipe Space Framing Plan (7-S)3011Mechanical Drawingsundatedink-on-linen drawings, 29x28 inchesSecond Sub-Basement Plan (1-M)3011Sub-Basement Plan (2-M)3011Basement Plan (3-M)3011First Floor Plan (4-M)3011Second Floor Plan (5-M)3011Third Floor Plan (6-M)3011Fourth Floor Plan (7-M)3011Details of Fourth Floor Fan Room (8-M)3011Literary Building (Angell Hall), University of Michigan, Job No. 1025-B, Ann Arbor, Michigan1923-1924Construction Drawings by Albert Kahn, ArchitectInk-on-linen drawings with pencil notations, 28x69 inches, except as notedArchitectural Drawings6/6/1923revised 10/17/1923Plot Plan (1)25

    (not revised)

    Tunnel and Foundation Plan (2)25Ground Floor Plan (3)25First Floor Plan (4)revised 2/7/192425Second Floor Plan (5)25Third Floor Plan (6)25Fourth and Fifth Floor Plans and Pipe Space Plan(7)25Roof Plan (8)25Plan Showing Location of Lookouts at Fourth Floor Cornice (8-A)17-3/4x41-1/4 inches25

    (not revised)

    West Elevation (9)25East Elevation (10)25Sections (11)25Details of Stairs and Elevator (12)25Details of Center Portion, West Elevation (13)25Details of East Elevation (14)25

    (not revised)

    Sections and Details (15)25Plans of Main Stairs (16)revised 2/7/192425Details of Stairs # 3 & 4, Doors and Windows, etc. (17)25Details of Lobby, First Floor (18)revised 2/7/192425Typical Bay and Portico Details (19)25Revised Detail of Main Entrance Doors (19-A)10/5/1923Pencil-on-vellum drawing, 28x26-1/2 inches25
    Stuctural DrawingsundatedSchedule of Columns and Footings (1-S)revised 4/27/192326Ground Floor Framing Plan (2-S)revised 2/23/192326First Floor Framing Plan (3-S)revised 3/7/192326Second and Third Floors Framing Plans (4-S)revised 5/24/192326Fourth Floor Framing Plan (5-S)revised 6/6/192326Fifth Floor and Roof Framing Plans (6-S)26Mechanical DrawingsundatedFoundation Plan (1M)revised 7/23/192326Ground Floor Plan (2M), revised 311/192426First Floor Plan (3M)revised 3/11/192426Second Floor Plan (4M)revised 7/23/192326Third Floor Plan (5M)revised 7/23/192326Fourth Floor Plan (6M)revised 3/18/192426Fifth Floor Plan and Heating Riser Diagram (7M)revised 3/18/192426
    University of Michigan, Campus Layout, Job No. 1028, Ann Arbor, Michiganca. 1921Campus Layout (1), c1921Pencil-on-linen drawing, 26-1/4x23-1/4 inches1311Detroit House of Correction, Job No. 1039 1039-A, Detroit, Michigan1922Construction Drawings, Architectural, Structural, and Mechanical38 drawings71Detroit House of Correction, Cell Blocks, Job No. 1039-B, Detroit, Michigan1922Construction Drawings, Architectural, Structural, and Mechanical36 drawings72Detroit House of Correction, Industrial Building, Job No. 1039-C, Detroit, Michigan1922Construction Drawings, Architectural, Structural, and Mechanical15 drawings73Detroit House of Correction, Power House, Job No. 1039-D, Detroit, Michigan1922Construction Drawings, Architectural, Structural, and Mechanical17 drawings3415Detroit House of Correction, Warehouse, Job No. 1039-E, Detroit, Michigan1922Construction Drawings, Architectural1 drawings3416Detroit House of Correction, Job No. 1039-F, Detroit, Michigan1922-1927Construction Drawings, Architectural and Mechanical5 drawings74Ford Motor Company, Glass Manufacturing Plant, Job No. 1071, River Rouge, Michigan1922-1923Construction Drawings by Albert Kahn, ArchitectInk-on-linen drawings, 28x63 inchesArchitectural Drawings10/9/1922[Site Plan], untitled (1)6Foundation Plan (2)revised 5/23/19236First Floor Plan (3)revised 6/27/19236Roof Plan (4)11/23/19226Elevations (5)revised 11/23/19226Sections thru' Main Building (6)revised 5/2/19236Plans of Storage Bins, Cross-Section thru' Furnace Room and Details (7)1 drawings, 1 prints (electrostatic; on mylar)revised 5/23/19236Details of Conveyor Bin, Rolling Curtain, Railroad Tracks and Exterior (8)revised 5/23/19236Details of Storage Bins and Conveyor Pits (9)revised 11/23/19226Details of Balcony, Sand Tanks, Toilets, Stairs and Loading Platform (10)revised 8/1/19236Details of Roof and Wall Sections (11)revised 11/23/19226Plans and Elevations of Sub-Station No. 9 (19-A), undatedrevised 11/23/192328-1/4x32-1/4 inches6Sections and Stair Details of Sub-Station No.9 (19-B), undatedrevised 2/12/192328-1/2x33-1/4 inches6General Plan of Grinder Foundations (20)2/5/1923revised 11/19/192322-1/2x40-3/4 inches6Structural DrawingsundatedRoof Plan and Column and Footing Schedules (1-S)revised 11/11/19227Sections (2-S)revised 11/23/19227Sections (3-S)revised 11/11/19227Plans of Balcony, Charging Floor and Toilets (4-S)revised 11/27/19227Elevations (5-S)revised 11/11/19227Plans and Sections of Concrete Storage Bins (6-S)revised 11/11/19227Details of Connections to Concrete Bins (7-S)revised 11/11/19227Mechanical DrawingsFoundation Plan (1M)12/22/1922revised 3/27/19237First Floor Plan and Section "AA" (2M)11/3/1922revised 3/27/19237First Floor Plan and Sections "AA" & "BB" (3M), undatedrevised 7/6/19237Heating Plan (4M)12/29/1922revised 5/2/19237Ford Motor Company, Engineering Laboratory, Job Nos. 1077, 1077-K, 1077-L & 1077-S, Dearborn, Michigan1922-1926 and 1929-1930Engineering Laboratory Building by Albert Kahn, Architect (1922-1924) Job No. 1077Architectural Construction Drawings9/14/1922Ink-on-linen drawings with pencil and blue and orange pencil revisions, 30-1/4x56-3/4 to 30-1/4x59-1/2 inchesPlot Plan (1A)revised 6/13/19238Foundation Plan and Schedule of Columns and Footings (1)revised 6/13/19238Basement Plan (2)revised 6/6/19238First Floor and Basement Plans (3)revised 6/13/19238Second Floor and Roof Plans (4)revised 4/25/19238Details of Monitors and Columns (5)revised 4/25/19238East and West Elevations, Sections and Details (6)revised 4/25/19238North, South, East and West Elevations (7)revised 6/19/19238Details of Front-Center (8)revised 10/6/19238Details of End Features (9), undatedrevised 5/2/19238Details of Pylons and East Elevation (10)revised 4/25/19238Details of Toilet and Fan Rooms (11R)6/24/1924revised 7/14/19248Basement Wall Details (14)6/19/192330x28 inches8Structural Construction DrawingsInk-on-linen drawngs with red and blue pencil revisions, 30x56-1/2 to 30x57-1/2 inchesFirst Floor Framing Plan (11-S), undatedrevised 7/27/19239Details of First Floor Beams (12-S)5/29/1923revised 8/16/19239Details of Concrete Columns (13-S), undatedrevised 6/13/19239Second Floor and Roof Framing Plans and Truss Details (14-S)5/21/19239Roof Framing Plan, Cross-Section and Beam Schedule (15-S)undated9Details of Roof Girders (16-S), undatedrevised 7/31/19239Details of Roof Beams (17-S)2/19/1923revised 8/9/19239Details of Beams9

    (not numbered or dated due to linen damage)

    Foundation and Floor Plans of Printing Press and Paper Storage Rooms (18)8/2/19239Basement Floor Plan, Plans and Details of Office Building and Fan Rooms (19-S)8/1/19239Details of Transformer Rooms (21-S)12/19/1923Pencil-on-vellum drawing, 19-1/2x36 inches9
    Mechanical Construction DrawingsBlack and red ink-on-linen drawings with pencil and blue pencil revisions, 30-1/4x57-1/2 inchesPlans of Basement and Fan Rooms (2M)revised 6/13/19249

    (undated due to linen damage)

    First and Second Floor Plans and Details (3M)5/16/1923revised 6/18/19249Ventilating Details (4M)6/27/1923revised 9/24/19239Second Floor, Attic Space and Exhaust Fan Plans (5M)10/10/1922revised 7/3/19249Basement Electrical Plan (7M)6/19/1923revised 3/20/19249First Floor, Second Floor and Attic Space Electrical Plans (8M)revised 4/18/192431x56 inches9

    (undated due to linen damage)

    First and Second Floor Heating and Ventilating Plans (10M)2/6/1924revised 7/8/192430-3/4x46 inches9Revised First and Second Floor Lighting Layout in Office Portion of Laboraory (11M), undatedrevised 4/18/192425-1/2x49-1/4 inches9Revised First Floor Lighting Layout in Office Portion of Laboratory (100M), undatedrevised 2/20/192422x54-1/2 inches9Plan and Longitudinal Elevation (117M)24-3/4x55 inches9

    (undated due to linen damage)

    Addition to Power House, Engineering Laboratory Building (1923-1926) Job No. 1077-KArchitectural Construction Drawings by Albert Kahn, Architect8/22/1923revised 7/1/1925Ink-on-linen drawings, 27x37-1/2 inchesPlot Plan (1)102Basement Plan (2)102First Floor Plan (3)102Roof Plan (4)102Elevations (5)102Sections (6)102Section "C" and Details of Monitor, etc. (7)102Structural Construction Drawings by Albert Kahn, Inc., Architect8/28/1923revised 7/1/1925Ink-on-linen drawings, 26-3/4x37 inchesFoundation Plan and Sections (1-S)102Boiler Room Framing Plan and Sections (2-S)102Roof Framing Plan and Details (3-S)102Details of New Platforms around Boilers (4-S)1/6/1926revised 3/13/1926Pencil-on-vellum drawing, 25-x34-1/2 inches102Layout of Walkways over Boilers (5-S)1/6/1926revised 3/16/192626x40 inches102Details of First Floor Hand Rails (6-S)3/16/192626x45 inches102Mechanical Construction Drawings by Albert Kahn, Inc., Architects and EngineersInk-on-linen drawings with pencil and blue pencil revisions, 26-1/4x45-1/2 inchesFirst Floor Plan (1-M)6/16/1925103Basement Floor Plan and Section "A-A" (2-M)6/17/1925103Sections thru' Power House (3-M)6/16/1925103Details of Feed Water Heater, Water Softener and Misc. Piping (4-M)6/17/1925revised 12/23/1925103Details of Tunnel Piping Layout and Sump (5-M)6/17/1925103Details of Platform for Feed Water Heater and Breeching for Badenhauser Boilers (6-M)6/19/1925103Details of Setting for Badenhausen Boiler (7-M)6/19/1925103Drainage Plan (8-M)6/18/1925103Details of Jackets for Stacks and Breeching (9-M)4/23/192625-1/2x44-3/4 inches103Extension to Engineering Laboratory Building (1925) Job No. 1077-LArchitectural Construction Drawings by Albert Kahn, Inc., Architects4/29/1925revised 9/11/1925Ink-on-linen drawings, 29x45-1/2 inchesPlot Plan (1)910Present Floor Plan (1-A)7/1/1925Pencil-on-vellum drawing, 28x44 inches910Present Building Foundation Plan (2)revised 8/7/1925910First Floor Plan (3)910Roof Plan (4)910Elevations and Sections (5)910Door Details (6)910Roof Details (7)910Elevations of Connecting Passage and Details (8)910Structural Construction Drawings by Albert Kahn, Inc., ArchitectsInk-on-linen drawingsTypical Cross Section and Details (1-S), undatedrevised July 192526-1/4x47-1/2 inches9Roof Framing Plan (2-S)27-1/2x54-1/4 inches9

    (undated due to linen damage)

    Cross-Section Showing Alternate Design for Roof (3-S), undatedrevised 7/3/192527-1/4x56 inches9
    Mechanical Construction Drawings by Albert Kahn, Inc., ArchitectsInk-on-linen drawings with blue pencil revisionsFirst Floor Plan, Section "AA" and Details (2-M)5/20/1925revised 10/28/192530x48 inches101Heating Details, etc. (3-M)5/20/1925revised 9/24/192530-1/4x47-1/2 inches101First Floor Plan (4-M), undatedrevised 11/9/192529-1/2x48 inches101Plan of Ventilating Equipment (6-M), undatedrevised 12/19/192529x35-1/4 inches101Plan, Sections and Riser Detail of Cleaning Plant (7-M)12/12/192524-3/4x36-1/2 inches101Proposed Arrangement of Cafeteria (9-M)12/28/192529-3/4x35-1/2 inches101Part of Mezzanine and First Floor Plans (10-M), undatedrevised 3/1/192626-3/4x33-3/4 inches101Connection Plan of Cafeteria (101-M)12/4/192525-1/4x30-1/2 inches101
    Addition to the Power House, Engineering Laboratory Building (1929-1930) Job No. 1077-SArchitectural Construction Drawings by Albert Kahn, Inc., Architects10/14/1929Ink-on-linen drawings with pencil and blue pencil revisions, 27x38 inchesPlot Plan and Details (1)revised 12/19/1929104Foundation Plan and Details (2)revised 3/17/1930104First Floor Plan and Details (3)revised 12/12/1929104Roof Plan and Stack Details (4)revised 3/11/1930104Sections (5)revised 12/12/1929104Elevations (6)revised 11/12/1929104Elevation at Northeast Corner of Building and Details (7)revised 12/12/1929104Plot Plan and Tunnel Details (8)revised 12/19/1929104North Elevation of Power House Showing Arrangement of Floodlights (10)February 1930Pencil-on-vellum drawing, 29-3/4x24-3/4 inches104Details of Addition to Present Tunnel (13)4/28/1930Pencil-on-vellum drawing, 27-3/4x36 inches104Plot Plan of Proposed Addition (100)7/26/192919x28-1/2 inches104[Plot Plan of] Proposed Addition (100-B)7/25/192918-3/4x33 inches104[Plot Plan of] Proposed Addition (100-C)7/25/192918-1/2x33-1/4 inches104Structural Construction Drawings by Albert Kahn, Inc., Architects10/14/1929Ink-on-linen drawings with pencil and blue pencil revisions, 26-1/2x38 inchesRoof Framing Plan, Sections and Details (1-S)revised 11/21/1929105Elevations and Sections (2-S)revised 4/7/1930105Foundation Plan and Sections (3-S)revised 12/19/1929105Underpinning and Footing Details (4-S)revised 11/21/1929105Details of Walkways (7-S)1/28/1930revised 5/9/1930105Stack Details (8-S)3/7/1930revised 7/8/1930Pencil-on-vellum drawing, 26x37-1/4 inches105Mechanical Construction Drawings by Albert Kahn, Inc., Architects and EngineersInk-on-linen drawings with pencil revisions, 30-1/2x42-1/2 inchesDetails of Tunnel Piping (2-M)10/14/1929revised 11/6/1929106Details of Tunnel Piping (3-M)10/16/1929revised 1/10/1930106Plan of Underground Lines (4-M)11/12/1929revised 1/9/1930106First Floor Plan of Boiler Room (5-M)12/9/1929revised 5/22/1930106Cross-Section and Elevation of Main Steam Header (6-M)12/24/1929106Details of Boiler Feed Heater and Auxiliaries (7-M)12/18/1929revised 8/25/1930106Elevation and Sections of Boiler Setting (8-M)6/9/1930106Sections of Oil Storage Tanks (9-M)2/4/1930106Plan and Sections of Oil Burner Piping (10-M)1/18/1930106Breeching Details (11-M)undated106Plan and Section of Equalizing Pipe Line between East and West Pond (13-M)2/26/1930revised 3/15/1930106Details of Tunnel Lighting and Power Conduit (1-E)11/23/1929revised 11/29/192927x40 inches106Mechanical Construction Drawings by Albert Kahn, Inc., Architects and EngineersPencil-on-vellum drawings, 29-1/2x41-1/2 inchesDetails of Rearrangement of Piping in Tunnel #3 (15-M)3/27/1930107Details of Transite Boiler (17-M)107

    (undated due to paper damage)

    Details of Transite Casing (18-M)5/1/1930107Details of Power House Gage Board (19-M)undated107[Piping Details], untitled due to paper damage107

    (undated due to damage)

    Details of Foundation for Fan107

    (undated due to damage)

    Details of Instrument Piping (22-M)undated107Details of Arrangement of Water Softener (119-M)undated27x33-3/4 inches107Plan and Sections of Oil Storage Tanks (121-M)11/24/193021-3/4x34 inches107Details of Oil Ret'n to Tanks, Scheme No. 1 (100-X)10/29/1930107[Details of Oil Ret'n to Tanks], untitled (100-X-M)undated29-1/2x35-1/2 inches107
    Job No. 1149-1295Les Cheneaux Club, Job No. 1149 Les Cheneaux Islands, Lake Huron1923Construction Drawings, Mechanical2 drawings3312Ford Motor Company, Job No. 1198 Detroit, Michigan1924Construction Drawings, Structural1 drawings3313Psi Upsilon Fraternity House, University of Michigan, Job No. 1200-A, Ann Arbor, Michigan1924-1925Construction Drawings by Albert Kahn, Inc., ArchitectArchitectural Drawings, undatedrevised 2/21/1925Ink-on-linen drawings with pencil and blue pencil revisions, 25x34 inches, except as notedPlot Plan (1)revised 4/21/1925108Basement Plan (2)revised 1/5/1925108First Floor Plan (3108Second Floor Plan (4108Third Floor Plan (5)108Roof Plan (6)108North Elevation (7)108South Elevation and Details (8)108East and West Elevations (9)revised 1/5/1925108Sections and Miscellaneous Details (10)revised 1/5/1925108Interior Details(11)revised 1/5/1925108Interior Details (12)revised 1/5/1925108Details for Living Room (14)2/5/1925Pencil-on-vellum drawing, 20-3/4x35 inches108Details for Solarium and Lobby (17)3/19/1925Pencil-on-vellum drawing, 19-1/2x42 inches108Details for Library on Second Floor (19)4/4/1925Pencil-on-vellum drawing, 20x26 inches108Details for Main Stairway (20-A)4/27/1925revised 6/24/1925Pencil-on-vellum drawing, 26-1/2x28-1/2 inches108Details for Main Stairway (20-B)4/27/1925Pencil-on-vellum drawing, 21x17 inches108Structural Drawings10/17/1924revised 2/27/1924Pencil-on-vellum drawings, 24 x33 inchesBasement and Foundation Plan (1-S)109First Floor Framing Plan (2-S)109Second Floor Framing Plan (3-S)109Third Floor Framing Plan (4-S)revised 3/19/1925109Roof Framing Plan (5-S)revised 3/19/1925109Mechanical Drawings12/3/1924revised 4/4/1925Ink-on-linen drawings, 25x34 inchesBasement Plan (1-M)109First Floor Plan (2-M)109Brown, David Mausoleum, Job No. 12141924Construction Drawings, Architectural4 drawings373The Detroit News, Garage, Job No. 1217, Detroit, Michigan1924-1925Construction Drawings, Architectural and Mechanical26 drawings453Ford Motor Company, Railroad Layouts at Thirty-Three Factory Sites, Job No. 12211924Plot Plans Showing Locations of Railroad Tracks at Factory Sites by Albert Kahn, Inc., Architectpencil-on-vellum drawings, 10-3/4x16 inchesAtlanta, Georgia (1)10/30/1924315Buffalo, New York (2)10/29/1924315Chicago, Illinois (3)11/7/1924315Cambridge, Massachusetts (4)11/13/1924315Charlotte, North Carolina (5)undated315Cincinnati, Ohio (6)11/3/1924315Cleveland, Ohio (7)10/30/1924315Columbus, Ohio (8)10/30/1924315Dallas, Texas (9)undated315Denver, Colorado (10)10/30/1924315Des Moines, Iowa (11)10/31/1924315Fargo, North Dakota (12)10/31/1924315Houston, Texas (13)11/6/1924315Indianapolis, Indiana (14)11/6/1924315Jacksonville, Florida (15)undated315Kansas City, Missouri (16)11/5/1924315Kearny, New Jersey (17)11/3/1924315Los Angeles, California (18)12/12/1924315Louisville, Kentucky (19)11/5/1924315Memphis, Tennessee (20)undated315Milwaukee, Wisconsin (21)12/13/1924315Minneapolis, Minnesota (22)11/5/1924315New Orleans, Louisiana (23)11/4/1924315Oklahoma City, Oklahoma (24)11/4/1924315Omaha, Nebraska (25)10/30/1924315Philadelphia, Pennsylvania (26)11/10/1924315Pittsburgh, Pennsylvania (27)11/1/1924315Portland, Oregon (28)11/1/1924315St. Louis, Missouri (29)10/30/1924315Salt Lake City, Utah (30)11/6/1924315San Francisco, California (31)10/31/1924315Seattle, Washington (32)10/31/1924315St. Paul, Minnesota (33)11/5/1924315Henry Ford Boat House, Job No. 1223, Grosse Isle, Michigan1924Construction Drawings, Architectural, Structural, and Mechanical7 drawings3314The Thomas Henry Simpson Memorial Institute for Medical Research, Job No. 1239, Ann Arbor, Michigan1925-1926Construction Drawings by Albert Kahn, Inc., ArchitectsInk-on-linen drawings, 24x34 inchesArchitectural Drawings4/22/1925revised 5/26/1925Plot Plan (1)46Foundation Plan (2)46Sub-Basement Plan (3)revised 10/1/192546Basement Plan (4)46First Floor Plan (5)revised 9/25/192546Second Floor Plan (6)46Third Floor Plan (7)46Fourth Floor Plan (8)46Roof Plan (9)46Elevations (10)46Detail of Center Bays (11)46Scale Details of Exterior (12)46Sections (13)46Details (14)46West Elevation of Corridors (15)46East Elevation of Corridors (16)46Interior Details (17)46Structural Drawings4/22/1925revised 5/14/1925Basement Framing Plan; Column and Footing Schedule (1-S)47First Floor Framing Plan (2-S)47Second Floor Framing Plan (3-S)47Third Floor Framing Plan (4-S)47Fourth Floor Framing Plan (5-S)revised 6/12/192547Mechanical Drawings5/13/1925Plot Plan (1M)47Foundation Plan (2M)revised 1/15/192647Sub-Basement Plan (3M)revised 1/15/192647Basement Plan (4M)revised 1/15/192647First Floor Plan (5M)revised 1/15/192647Second Floor Plan (6M)revised 1/15/192647Third Floor Plan (7M)revised 10/10/192547Fourth Floor Plan (8M)47Heating Riser Diagram (9M)47Electric Feeder Layout (10M)9/1/192547Mrs. Marion Le Roy Burton (Nina Moses Burton) Residence, Job No. 1251, 2025 Seneca Street, Ann Arbor, Michigan1925Construction DrawingsArchitectural Drawingspencil drawings on tracing paper, 19-1/2x20 inchesBasement Plan (1)revised 6/4/1925329First Floor Plan (2)6/4/1925329Second Floor Plan (3)revised 6/4/1925329South Elevation (4)revised 4/23/1925329East Elevation (5)revised 4/23/1925329North Elevation (6)revised 7/16/1925329West Elevation (7)revised 7/16/1925329Interior Elevations and Sections (8)4/23/1925329Plot Plan and Interior and Exterior Details (9)6/15/1925329Mechanical Drawingsrevised 5/29/1925ink-on-linen drawings, 19-1/2x21-1/4 inchesBasement Plan (1-M)329First Floor Plan (2-M)329Second Floor Plan (3-M)329Ford Motor Company, Airplane Hanger, Extension, Job No. 1295 1295-A, Cleveland, Ohio1925-1927Construction Drawings, Architectural, Structural, and Mechanical10 drawings374Job No. 1319-1395University Museums, Job No. 1319, Ann Arbor, Michigan1926-1927Construction Drawings by Albert Kahn, Inc. ArchitectsInk-on-linen drawings, some with blue pencil revisions, 35x51-1/2 inchesArchitectural Drawings12/20/1926Plot Plan (1)revised 5/9/192710Foundation Plan (2)revised 2/25/192710Basement Floor Plan (3)revised 5/9/192710First Floor Plan (4)revised 5/3/192710Second Floor Plan (5)revised 8/17/192710Third Floor Plan (6)revised 8/17/192710Fourth Floor and Roof Plans (7)revised 8/17/192710Elevations # 1, 2 & 3 (8)revised 5/9/192710Elevations # 4,5,6,7 & 8 (9)revised 1/6/192710Detail of Exterior Elevation # 2 (10)revised 1/6/192710Details of Exterior Elevations # 1 & 3 (11)revised 1/6/192710Details of Exterior Elevations # 5, 6 & 7 (12)revised 1/6/192710Plan of Stair # 1 and Main Lobby (13)revised 5/3/192710Interior Elevations (14)revised 1/6/192710Miscellaneous Details (15)revised 3/31/192710Structural Drawings12/20/1926revised 1/6/1927Column Schedule and Details (1-S)10First Floor Framing Plan (2-S)10Second Floor Framing Plan (3-S)10Third Floor Framing Plan (4-S)10Fourth Floor Framing Plan (5-S)10Roof Framing Plan (6-S)revised 6/1/192710Mechanical Drawings12/27/1926Foundation Plan (1-M)revised 2/11/192711Basement Plan (2-M)revised 3/23/192711First Floor Plan (3-M)11Second Floor Plan (4-M)revised 1/26/192711Third Floor Plan (5-M)revised 1/26/192711Fourth Floor Plan (6-M)11Pipe Space Plan (7-M)revised 3/24/192711Heating Riser Plan (8-M)11Electrical Drawings2/22/1927Basement Plan (9-MR)revised 3/24/192711First Floor Plan (10-MR)revised 3/24/192711Second Floor Plan (11-MR)revised 8/17/192711Third Floor Plan (12-MR)revised 8/17/192711Fourth Floor Plan (13-MR)revised 8/17/192711Detroit House of Correction, Women's Division, Job No. 1324, Northville, Michigan1926-1927Construction Drawings, Architectural, Structural, and Mechanical36 drawings346Detroit House of Correction, Women's Division Cottages, Job No. 1324-A, Northville, Michigan1926-1927Construction Drawings, Architectural, Reversed, Structural, and Mechanical23 drawings347Detroit House of Correction, Women's Division Observation and Hospital Building, Job No. 1324-B, Northville, Michigan1926-1927Construction Drawings, Architectural, Structural, and Mechanical13 drawings348Detroit House of Correction, Women's Division Superintendent's Cottage, Job No. 1324-C, Northville, Michigan1926-1927Construction Drawings, Architectural and Mechanical12 drawings349Detroit House of Correction, Women's Division Manufacturing Building, Job No. 1324-D, Northville, Michigan1926-1927Construction Drawings, Architectural, Structural, and Mechanical9 drawings3410Detroit House of Correction, Women's Division Cottage B, Job No. 1324-E, Northville, Michigan1926-1927Construction Drawings, Architectural, Reversed, Structural, and Mechanical19 drawings3411Detroit House of Correction, Women's Division Laundry Building, Marquette Building, Temporary Boiler House, Proposed and Present Buildings, Job No. 1324-F, 1324-G, 1324-H, Northville, Michigan1926-1928Construction Drawings, Architectural, Structural, and Mechanical17 drawings3412Detroit House of Correction, Men's Group Institution Buildings, Marquette Building, Boiler House and Plumbing Shop, Job No. 1324-J, 1324-K, Northville, Michigan1927-1928Construction Drawings, Architectural, Structural, and Mechanical19 drawings3413Detroit House of Correction, Men's Group Institution Buildings, Garage, Marquette Building, Addition to Manufacturing Building, Job No. 1324-L, 1324-M, 1324-O, Northville, Michigan1927-1928Construction Drawings, Architectural, Structural, and Mechanical17 drawings3414Detroit House of Correction, Telephone Lines, Job No. 1324-N, Northville, Michigan1928Construction Drawings, Architectural1 drawings70Edsel B. Ford Residence, Job Nos. 1334 & 1334-A, B, C, D, E, F, H, L, V, W, AA, AB & AD, Gaukler Pointe, Michigan1926-1932 and 1977-1991Edsel B. Ford Residence (Job No. 1334)Design Development Drawings (Block Plans)Ink-on-linen drawings, 25-1/2x34 inches48First Floor Planundated48Second Floor Plan1/23/193148Architectural Construction Drawings by Albert Kahn, Inc., Architects11/4/1926Ink-on-linen drawings with pencil revisions, 29x39-1/2 inches

    (Prints of originals in Drawer 4, Folder 9)

    Part Plan of the Estate of Edsel B. Ford, Esq.1/18/192731-3/4x59 inches48

    (in Oversize Tube 12)

    Plot Plan (1)revised 4/12/192748Excavation Plan (1-A), undatedrevised 4/12/192748Wall Footing Plan (2)revised 8/8/192748Basement Plan (3)revised 7/19/192748First Floor Plan (4)revised 1/30/192848Second Floor Plan (5)revised 1/30/192848Attic Floor Plan (6)revised 3/3/192848Roof Plan (7)revised 4/12/192748First Floor Plan-Portion "A" (8)revised 3/1/192848Second Floor Plan-Portion "A" (9)revised 3/15/192848First Floor Plan-Portions "B" & "C" (10)revised 2/8/192848Second Floor Plan-Portion "B" and Basement Plan (11)revised 3/1/192848
    Architectural Construction Prints11/4/1926Electrostatic prints of originals on mylar, 29-1/2x42 inchesBasement Plan (3)revised 7/19/192749First Floor Plan (4)revised 1/30/192849Second Floor Plan (5)revised 1/30/192849Attic Floor Plan (6)revised 3/3/192849Elevations # 1-7 Inclusive (12)revised 8/1/1927Sepia print, 29-1/2x39-1/2 inches49Elevations # 8-17 Inclusive (13)revised 6/6/1927Sepia print, 29-1/4x40-1/4 inches49Architectural Construction Drawings by Albert Kahn, Inc., Architects11/4/1926Ink-on-linen drawings with pencil revisions, 29x39-1/2 inchesElevations # 1-7 Inclusive (12)revised 8/1/1927410Elevations # 8-17 Inclusive (13)revised 6/6/1927410Sections (14)revised 4/12/1927410Sections (15)revised 12/31/1927410Details of Main Entrance and Drawing Room (16)revised 4/12/1927410Exterior Details of Gallery Portion "C" (17)revised 4/12/1927410Exterior Details of Loggia, Porch and Dining Room Bay (18)revised 8/1/1927410Exterior Details of Southeast Corner of Library Wing (19)revised 4/12/1927410Exterior Details at North Side of Drawing Room, Son's Room Dormers and Chimney, and Balcony and Bay in Study (20)revised 6/6/1927410Floor Plan, Elevations and Sections of Store Room, Kitchen and Butler's Pantry (21)revised 1/21/1928Pencil-on-vellum drawing410

    (undated due to damage)

    Elevations, Sections and Details of Butler's Pantry and Store Room (22)51Details of Son's Room #216 and Kitchens #105, 109 & 307 (23), undatedrevised 2/2/192851Details of Wardrobes (24)revised 12/23/192751Details of Owner's Wardrobe #227 (25), undatedrevised 12/1/192751Detail of Cedar Closets (26)51Details of Cupboards and Interior Finish at Windows in Bathrooms #235 & 236 (27)revised 1/16/192851Miscellaneous Wardrobe and Toilet Details (28)51Details of Bath Room #225 to Owner's Room (29)revised 1/10/192851Detail of Daughter's and Governess's Bath Rooms #217 & 219 (30)undated51Details of Sons' Bath Rooms #211 & 215 (31), undatedrevised 12/14/192751Details of Guests' Bath Rooms #235 & 236 (32)51Details of Maids' and Housekeeper's Bath Rooms #203 & 209 (33)undated51Details of Toilets #120, 124 & 129 and Wardrobes in Closet to Owner's Room (34)undated51Details of Typical Interior Trim (35)51Detail of Owner's Bed Room (36)51Details of Son's Room #216, Rooms #213, 218, 221, 224 & 233 and Halls #223 & 230 (37)52Details of Son's Room #213 and Study #214 (38)revised 1/26/192852Details of Daughter's Room #221 and Governess's Room #218 (39)revised 12/4/192752Details of Guest Rooms #233 & 238 (40)undated52Details of Finish in Help's Dining Room #104 and Maid's Sitting Room #103 (41)undated52Details of Finish and Elevations in Halls #106, 107, 202 & 206 (42)52Details of Ladies Room #122 and Halls #223 & 230 (43)undated52Details of Door Jambs, Transom and Brackets (44)52Details of Laundry Cupboard and Clothes Chute (45)52Revised Details of Games Room #130 and Children's Entrance (46)undated52Index to Rooms and Details of Electrical Heaters in Bathrooms (47)52Floor Plan of Boudoir #222 Showing Design of Parquet Flooring (48)undated18x28 inches52
    Structural Construction Drawings10/26/1926Ink-on-linen drawings with pencil revisions, 30-1/2x43 inchesFoundation Plan (1-S)revised 1/17/192753First Floor Framing Plan (2-S)revised 1/22/192753Second Floor Framing Plan (3-S)revised 1/19/192753Attic Floor Framing Plan (4-S)revised 1/17/192753Roof Framing Plan (5-S)revised 1/19/192753Column Schedule (6-S)revised 11/29/192653Framing Around [Vent and Register Openings] in First [Floor] (7-S)Pencil-on-vellum drawing, 25-1/2x32-1/2 inches53

    (date illegible due to damage)

    Steel Framing to Replace Concrete Column #95 (8-S)2/16/1927Pencil-on-vellum drawing, 20-1/2x31 inches53Anchor Bolt Setting Plan for Steel Columns in Art Gallery (10-S)undatedInk-on-vellum drawing, 27x34 inches53Cutting 7-1/2 Inches from Width of Beam #348 (11-S)undatedPencil-on-vellum drawing, 22-1/2x34-1/2 inches53Framing Due to Change in Type of Elevator (12-S)undatedPencil-on-vellum drawing, 21x29 inches53
    Mechanical Construction DrawingsInk-on-linen drawings with pencil revisions, 31x43 inchesBasement Plan Portion "A" (1-M)12/17/1926revised 3/2/192853Basement Plan Portion "B" (2-M)revised 2/22/192853

    (date illegible due to damage)

    Details of Manholes for Electrical Work Only (3-M)12/8/192753
    Structural Construction Drawings (Job No. 1334-A)undatedInk-on-linen drawings with pencil revisions, 24-1/4x36 inches54Foundation and Basement Shop Drawing (1-S)revised 9/4/192630x43 inches54Bar List for First Floor (2-S)revised 10/8/192654First Floor Framing (3-S)revised 10/8/192654Reinforcing Bar List for First Floor Column Schedule (4-S)revised 11/27/192654Bar List for Balance of First Floor and Part of Second Floor (5-S)revised 11/22/192654Bar List for Columns and Slabs (6-S)revised 11/27/192654Bar List for Balance of Second Floor (7-S)revised 11/22/192654Second Floor Framing Plan (8-S)revised 11/22/192654Second Floor Joist Schedule (11-S)revised 11/13/192654Attic Spandrel Schedule (12-S)revised 12/8/192654Attic Beam Schedule (13-S)revised 12/7/192654Attic Beam Schedule (14-S)revised 1/5/192754Attic Sections (15-S)revised 1/11/192754Attic Floor Framing Plan (16-S)revised 1/11/192754Attic Beam and Spandrel Sections (17-S)revised 1/11/192754Attic Beam Schedule (18-S)revised 12/22/192654Attic Floor Slab Schedule (19-S)54Attic Floor Slab Schedule--Joists (20-S)54
    Gate Lodge for Edsel B. Ford Residence by Albert Kahn, Inc., Architects (Job No 1334-B)Architectural Construction Drawings4/15/1927revised 6/7/1927Pencil-on-vellum drawings, 22x30 inchesPlot Plan (1)55Basement Floor Plan (2)55First Floor Plan (3)55Roof Plan (4)55North and Jefferson Avenue Elevations (5)revised 6/9/192855West and East Elevations and Sections (6)revised 7/14/192755Sections (7)55Sections and Garage Door, Window and Chimney Details (8)55Structural Construction Drawings4/13/1927revised 6/16/1927Pencil-on-vellum drawings, 22x30 inchesGarage Roof Framing (1-S)55Mechanical Construction Drawings, undatedrevised 8/22/1927Ink-on-linen drawings, 22x30 inchesBasement Plan (1M)55First Floor Plan (2M)55Heating Plant for Edsel B. Ford Residence by Albert Kahn, Inc., Architects (Job No. 1334-C)Architectural Construction Drawings6/17/1927Pencil-on-vellum drawings, 22-1/2x34 inchesPlot Plan (1)56Plans, Elevations, Details (2)56Sections and Details (3)56Structural Construction DrawingsundatedPencil-on-vellum drawings, 22-1/2x34 inchesRoof, First Floor and Basement Framing (1-S)56Mechanical Construction Drawings7/16/1927Ink-on-linen drawings with pencil revisions, 22x32 inchesBasement Plan (1M)revised 2/27/192856First Floor Plan (2M)56Details (3M)revised 2/27/192856Sectional Plan and Details of Septic Tank (4M)56Basement Plan for Electrical Work (5M)9/1/1927Pencil and ink drawing on vellum, 23x32-1/2 inches56Schematic Connection Diagram for Electrical Work (6M)12/1/192724x37 inches56Recreation Building for Edsel B. Ford Residence by Albert Kahn, Inc., Architects (Job No. 1334-D)Architectural Construction DrawingsundatedPencil and ink drawings on vellum, 20x34 inchesPlot Plan (1)57Basement, First Floor and Roof Floor Plans (2)57Elevations (3)57Details (4)57Sections & Details (5)57[Miscellaneous Details], untitled (6)57Structural Construction DrawingsPencil and ink drawings on vellum, 20x34 inchesRoof Framing (1-S)12/9/192757Foundation Plan (2-S)12/8/1927revised 2/14/192857Mechanical Construction DrawingsundatedInk-on-linen drawings, 20x34 inchesPlot Plan (1-M)57Basement and First Floor Plot Plans (2-M)revised 3/9/192857Floor Plans (3-M)Pencil and ink drawing on vellum57Riser Diagram (4-M)Ink-on-vellum drawing57Swimming Pool for Edsel B. Ford Residence by Albert Kahn, Inc., Architects (Job No. 1334-E)Construction Drawing12/28/1927revised 1/24/1928Ink-on-linen drawing, 21-1/2x87-3/4 inchesPlan, Sections and Details (1-S)12Woodlift for Edsel B. Ford Residence by Albert Kahn, Inc., Architects (Job No. 1334-F)Construction Drawing of Framing5/8/1928revised 5/10/1928Pencil-on-vellum drawing, 16-1/2x10-1/2 inPlan and Elevation (1-S)58Greenhouse Service Building for Edsel B. Ford Residence by Albert Kahn, Inc., Architects (Job No. 1334-H)Architectural Construction Drawings8/17/1928Ink-on-vellum drawings with pencil revisions, 18-3/4x31 inchesPlot Plan (1)58Foundation Plan (2)revised 9/28/192858Floor Plan (3)revised 9/12/192858East Elevation (4)revised 9/27/192858South and North Elevations (5)revised 9/27/192858West Elevation (6)58Sections and Details (7)revised 9/27/192858Structural Construction Drawings8/3/1928Pencil-on-vellum drawings, 18-3/4x31 inchesFoundation Plan (1-S)revised 8/10/192858Roof Framing Plan (2-S)58Boat House for Edsel B. Ford Residence by Albert Kahn, Inc., Architects (Job No. 1334-L)Architectural Construction DrawingsundatedPencil-on-vellum drawings, 26x34-1/2 inchesPiling Plan (1)revised 12/3/192959Floor Plan (2)revised 3/12/192959Roof Plan (3)revised 3/12/192959North and West Elevations (4)revised 3/12/192959South and East Elevations (5)revised 3/12/192959Sections and Details (6)revised 3/12/192959Enlarged Details (7)revised 3/12/192959Structural Details (8)revised 3/1/192959Cottage for Edsel B. Ford Residence by Albert Kahn, Inc., Architects (Job No. 1334-M)Architectural Construction DrawingsundatedPencil-on-vellum drawings, 18x30-1/2 inchesFoundation Plan (2)510First Floor Plan (3)revised 1/2/1930510Second Floor Plan (4)revised 1/2/1930510South Elevation and Details (5)510East Elevation and Details (6)510West Elevation and Details (7)510North Elevation (8)510[Section], untitled (9)510Mechanical Construction Drawings10/7/1929Ink-on-linen drawings, 18x30-1/2 inchesFoundation Plan (1M)510First Floor Plan (2M)510Second Floor Plan (3M)510Dog Kennel for Edsel B. Ford Residence by Albert Kahn, Inc., Architects (Job No. 1334-N)Architectural Construction Drawing12/5/1929Pencil-on-vellum, 20x28 inchesPlan, Elevations and Sections (1)510Awning Porch for Edsel B. Ford Residence by Albert Kahn, Inc., Architects (Job No. 1334-P)Architectural Construction Drawings6/3/1930Pencil-on-vellum drawingsPlan, Elevations and Section18-3/4x36-1/2 inches510Elevations and Sections51-1/2x29 inches510

    (in Oversize Tube 12)

    Alterations to Cedar Closet #228 and Wardrobe #227 for Edsel B. Ford Residence by Albert Kahn, Inc., Architects (Job No. 1334-T)Architectural Construction Drawing7/22/1931revised 7/31/1931Pencil-on-vellum drawing, 21x30-3/4 inchesPlan, Elevation, Section and Details (1)61Recreation Room for Edsel B. Ford Residence by Albert Kahn, Inc., Architects and Engineers (Job 1334-V)Architectural Construction Drawings12/21/1931Pencil and ink drawings on vellum, 22x35 inchesPlan and Elevations (1)61Ceiling Plan, Elevations and Details (2)61Mechanical Construction DrawingsPencil-on-vellum drawings, 20-1/4x26-3/4 inchesPlan (1M)12/22/193161Plan (2M)12/30/1931revised 1/19/193261Plan and Section "AA" (3M)3/10/193261Electrical Construction DrawingundatedPencil-on-vellum drawing, 22x34 inches[Plan], untitled (1E)61Tool and Implement Shed for Edsel Ford Residence by Albert Kahn, Inc., Architects (Job No. 1334-W)Architectural Construction Drawings3/3/1932Ink-on-vellum drawings, 25-1/4x35-1/2 inchesPlot Plan and Roof Framing Plan--Structural Steel (1)61Foundation and Floor Plans (2)revised 4/22/193261Roof Plan and Details (3)61Elevations and Details (4)61Mechanical Construction Drawing3/3/1932revised 5/26/1932Ink-on-linen drawing, 26x36 inchesFirst Floor Plan and Details (1-M)61Modifications of Edsel and Eleanor Ford House by Albert Kahn Associates, Inc. (Job No. 1334-AA)Survey DocumentsSurvey of Gaukler Pointe Tracts, E. C. Ford Estates by Mason L. Brown & Son, Civil Engineers and Surveyors, Detroit, MI7/7/1977Print on vellum, 30x42 inches62Survey of E. C. Ford Estates, Part of Private Claims 222, 544 & 6241 prints (electrostatic; on mylar; 17-3/4x23-1/2), 1 prints (sepia; 33x41-1/2 inches)undated11/5/197762Tree Location Index on Topographic Survey of Edsel Ford Estate by Lehner Associates, Inc., Registered Land Surveyors, Mt. Clemens, MI2 prints (electrostatic; on mylar; 24x36 inches and 18x24 inches)2/6/19798/15/1980revised 9/11/198062Topographic Survey of Peninsula by Lehner Associates, Inc.10/15/1979Reverse sepia print, 18x24 inches62A Plan of the Water [Pipe System of the] Estate of Mr. Edsel B. FordundatedPrint on vellum, 35-1/2x58-1/2 inches62Architectural Construction DrawingsPencil drawings on mylar, 30x46-1/2 inchesFloor Plans, Elevations and Details of New Office (1)12/12/1978revised 2/5/197963Floor Plans and Details of New Men's and Women's Toilets, First Floor (2)2/16/197963Site Plan and Layout of Residence Parking Lot (C-1)6/5/1979revised 7/24/197963Site Plans and Details of Parking Lot and Bus Entrance (C-1A)11/10/1978revised 9/6/197963Mechanical Construction DrawingsPencil drawings on mylar, 30x46-1/2 inchesPlot Plan (Plumbing) (1-M)7/18/1979revised 2/18/198063Details (2-M)7/18/1979revised 2/18/198063

    (with "Void" in red marker)

    Details (3-M)10/31/1979revised 2/18/198063

    (with "Void" in red marker)

    Profiles of Sanitary Sewer (4-M)11/15/1979revised 11/16/197963
    Supplementary Construction DrawingsPencil-on-vellum drawings, 18x24 inchesFloor Plans and Elevations of Ice Machine for Butler's Pantry (SK-1)10/5/1978Pencil drawing on mylar63Elevations and Sections of Lectern (SK-1)12/26/197863Door Additions to Existing Library-North Wall Elevation (LD-1)12/27/197863Door Additions to Existing Library-West Wall Elevation (LD-2)12/28/197863Details of Sectional Ramp (SK-R-1)12/27/197818x32 inches63
    Activities Building, Equipment Shelter Expansion and Gatehouse Garage Renovation of Edsel and Eleanor Ford House by Albert Kahn Associates, Inc. (Job No. 1334-AB)Architectural Construction DrawingsElectrostatic prints on mylar, 30x42 inchesSite Plan, Plan and Elevations of Activities Building and Gift Shop (GS-1)12/4/199024x36 inches64Proposed Activities Building Partial Site Plan--Grading (C-1)4/30/1987revised 7/9/198764Proposed Activities Building Partial Site Plan--Grading & Utilities (C-2)4/30/1987revised 7/9/198764Equipment Shelter Expansion and Gatehouse Garage Renovation--Key Plan, Symbols, General Notes (1)5/2/1990revised 12/31/199064Equipment Shelter Expansion--Plans, Sections and Elevations (A-1)5/2/1990revised 12/31/199064Equipment Shelter Expansion--Construction Details (A-2)5/2/1990revised 12/31/199064Gatehouse Garage Renovation--Floor Plan, Interior Elevations, General Notes (A-3)5/2/1990revised 12/31/199064Mechanical/Electrical Construction Drawings of Equipment Shelter Expansion (Job No. 1334-AB)5/2/1990revised 12/31/1990Electrostatic prints on mylar, 30x42 inchesMechanical Plan & Site Work (M-1)64Schedules and Details (M-2)64Details--HVAC (M-3)64Electrical Plan, Schedules, Details (E-1)64Partial Site Lighting, Layout & Details (E-2)64Gatehouse Garage Renovation, Mechanical/Electrical Services (ME-1)64Pool & Power House Renovations of Edsel and Eleanor Ford House by Albert Kahn Associates, Inc. (Job No. 1334-AD)Architectural Construction Drawings2/20/1991revised 12/18/1991Electrostatic prints on mylar, 30x42 inchesExisting Floor Plans (A-1)65Photographs (A-2)65Elevations and Details (A-3)65Signage Details (A-4)65Mechanical/Electrical Construction Drawings2/20/1991revised 12/18/1991Electrostatic prints on mylar, 30x42 inchesMechanical Plans and Details (M-1)65Existing Electrical Floor Plans (E-1)65
    Senator James C. Couzens Residence, Job No. 1335, Bloomfield Hills, Michigan1926-1927"Welcome to Wabeek Manor, the Home of Enid and Gary Goodman"September 20049

    (Brochure documenting the restoration of the Couzens Residence, autographed by Gary Goodman)

    Senator James C. Couzens Residence, Job No. 1335 & 1335-B, Bloomfield Hills, Michigan1926-1927 and 1940Construction Drawings by Albert Kahn Inc., ArchitectsArchitectural Drawings8/5/1926Ink-on-linen drawings,some with pencil notations, 31x44-1/4 inchesPlot Plan (1)revised 9/14/192679Basement Plan (2)revised 10/11/192679First Floor Plan and Details (3)revised 1/4/192779Second Floor Plan (4)revised 5/5/192779Roof and Attic Plan (5)revised 2/17/192779Elevations (6)revised 10/11/192679Cross Sections (8)revised 12/21/192679Exterior Details (9)revised 4/20/192779Exterior Details (10)revised 10/11/192679Exterior Details (11)revised 12/21/192679Structural Drawings8/5/1926Ink-on-linen drawings, 31x44 inchesFirst and Second Floor Plans (1-S)revised 11/24/192679Attic & Roof Framing Plans (2-S)revised 11/19/192679Mechanical Construction Drawings9/14/1926revised 4/22/1927Ink-on-linen drawings, some with blue pencil notations, 31x44 inchesBasement Floor Plan (1-M)79First Floor Plan (2-M)79Second Floor Plan (3-M)79Attic Floor Plan (4-M)79Plan of Tile Disposal Field #2 (5-M)4/7/1938Pencil drawing on tracing paper79Diagram of Piping Connections for Schemes #1 & #2 (6-M)3/11/1940Pencil-on-vellum drawing, 21-3/4x35 inches79Interior Details for Residence of Senator James C. Couzens (1926-1927) Job No. 1335-BConstruction Drawings by Albert Kahn, Inc., Architects12/15/1926Ink-on-linen drawings, some with pencil notations, 30x37 inchesArchitectural DrawingsLiving Room Details (1)710Library Details (2)710Dining Room Details (3)revised 4/19/1927710Details of Stair Halls and Landing (5)revised 5/6/1927710Ladies' Room Details and Hall Ceiling Plans (6)710Details of Bedroom # 201 and Bathroom #200 (7)revised 10/24/1927710Details of Bedrooms #204 and #216 (8)revised 1/31/1927710Details of Bedroom #205 and Bathroom #202 (9)revised 5/5/1927710Details of Bedroom #208 and Miscellaneous Closet Details (10)710Details of Bedrooms #211 and #302 and Vestibule (11)revised 4/26/1927710Details of Kitchen, Pantry and Store Room (12)revised 3/1/1927710Ford Motor Company, Car Delivery Building, Job No. 1354 Cleveland, Ohio1926Construction Drawings, Architectural, Structural, and Mechanical9 drawings375Young Women's Christian Association Building, Job No. 1362, Montcalm and Witherell Streets, Detroit, Michigan1928-1929Construction Drawings by Albert Kahn, Inc., ArchitectsArchitectural Drawings4/14/1928ink-on-linen drawings, 29x52 inchesPlot Plan and Door Schedule (1)revised 10/4/192860Foundation Plan (2)revised 6/18/192860Ground Floor Plan (3)revised 3/1/192960First Floor Plan (4)revised 3/1/192960First Floor Mezzanine Plan, Stair Sections and Isometric View of Shower, Locker and Dressing Room Unit in Room 401M (5)revised 10/4/192860Second Floor Plan (6)revised 3/1/192960Third Floor Plan (7)revised 3/1/192960Fourth Floor Plan (8)revised 5/8/192960Fourth Floor Mezzanine Plan (9)revised 4/10/192960Fifth Floor Plan (10)revised 10/4/192860Sixth Floor Plan (11)revised 5/2/192960Seventh Floor Plan (12)revised 5/28/192960Eighth Floor Plan (13)revised 3/7/192960Ninth Floor Plan (14)revised 10/4/192860Tenth Floor Plan (15)revised 10/4/192860Roof Plan (16)revised 10/4/192860Plan of Machine Room and Miscellaneous Details (17)revised 6/18/192860North (Montcalm St) and West (Witherell St) Elevations (18)revised 10/25/192860South (Alley) and East Elevations (19)revised 6/18/192860Cross-Sections "A-A," "B-B" and "C-C" (20)revised 6/18/192860Cross-Sections "K-K" and "L-L" (21)revised 7/13/192860Stair Sections and Details (22)revised 6/18/192860Details of Witherell Street Entrance Elevation (23)revised 6/18/192860Details of Montcalm Street Entrance Elevation (24)revised 7/5/192860Interior Details of Social Hall, Assembly Hall, Gym and 6th Floor Club Room (25)revised 1/25/192960Details of Swimming Pool, Showers and Dressing Rooms (26)revised 6/18/192860Interior Details (27)revised 6/18/192860Interior Details (28)revised 6/18/192860Details of Interior Partitions (29)revised 6/18/192860Details of Interior Partitions (30)revised 6/18/192860Details of Toilet Rooms (31)revised 6/18/192960Details of Toilet Rooms (32)revised 1/3/192960Miscellaneous Details (33)revised 6/18/192860Structural Drawings4/25/1928ink-on-linen drawings, 30x52 inchesColumn Schedules (1-S)revised 6/19/192861Framing Details of Foundation, Machine Room, Fan Room and Penthouse (2-S)revised 6/25/192861Ground Floor Framing Plan and Details (3-S)61First Floor, First Floor Mezzanine and Second Floor Framing Plans (4-S)revised 8/28/192861Third and Fourth Floor Framing Plans (5-S)revised 6/19/192861Fourth Floor Mezzanine, Gym Balcony and Fifth Floor Framing Plans (6-S)revised 6/19/192861Sixth and Seventh Floor Framing Plans (7-S)revised 6/19/192861Eighth and Ninth Floor Framing Plans (8-S)revised 6/19/192861Tenth Floor and Roof Framing Plans (9-S)revised 7/14/192861Details of Swimming Tank (10-S)revised 7/12/192861Mechanical/Electrical Drawings, except as noted4/14/1928ink-on-linen drawings, 29x52 inches, except as notedSeventh Floor Electrical Plan (1-E)3/30/1929pencil-on-vellum drawing, 28x37 inches61Foundation Plan (1-M)revised 11/7/192861Ground Floor Plan (2-M)revised 2/25/192961First Floor Plan (3-M)revised 2/25/192961First Mezzanine Floor Plan (4-M)revised 2/25/192961Second Floor Plan (5-M)revised 2/25/192961Third Floor Plan (6-M)revised 6/11/192861Fourth Floor Plan (7-M)revised 6/11/192861Fourth Floor Mezzanine Plan (8-M)revised 6/11/192861Fifth Floor Plan (9-M)revised 10/8/192861Sixth Floor Plan (10-M)revised 6/11/192861Seventh Floor Plan (11-M)revised 3/26/192961Eighth Floor Plan (12-M)revised 3/15/192961Ninth Floor Plan (13-M)revised 6/11/192861Tenth Floor Plan (14-M)revised 6/11/192861Plan of Pipe Space above Tenth Floor (15-M)revised 6/11/192861Plan of Fan and Machine Rooms (16-M)revised 6/11/192861Heating Riser Diagram (17-M)revised 6/11/192861Heating Riser Diagram and Details (18-M)revised 6/11/192861Machine Room Diagrams (19-M)revised 6/11/192861Machine Room Diagrams (20-M)revised 6/11/192861Plan of Machine Room and Details (21-M)revised 6/11/192861Ventilating Details (22-M)revised 6/11/192861Electrical Riser Diagram (23-M)revised 6/11/192861Fisher Building, New Center Development Corporation, Rental Units, Job No. 1378 Detroit, Michigan1927Construction Drawings, Architectural22 drawings376Fisher Building, New Center Development Corporation, Job No. 1378 Detroit, Michigan1930Construction Drawings, Mechanical17 drawings377Fisher Building, New Center Development Corporation, Job No. 1378 Detroit, MichiganundatedConstruction Drawings, Electrical8 drawings378Fisher Building (Building for New Center Development Corporation), Job No. 1378, Detroit, Michigan1927-1930Construction Drawings by Albert Kahn, Inc., ArchitectsArchitectural Drawings10/27/1927Ink-on-linen drawings with pencil notations, 30x45 to 31x45-1/2 inchesPlot Plan (1)undated111Tunnel Details (1-B)1/12/1927corrected to 12/17/1927111Work Plan (2)corrected to 2/25/1928111Sub-Basement and Foundation Plan, Section "A" (3)corrected to 2/27/1928111Sub-Basement Foundation Plan, Section "B" (4)corrected to 2/25/1928111Basement Plan, Section "A" (5)111Basement Plan, Section "B" (6)corrected to 5/17/1928111First Floor Plan, Section "A" (7)corrected to 2/25/1928111First Floor Plan, Section "B" (8)corrected to 4/13/1928111Second Floor Plan, Section "A" (9)corrected to 2/25/1928111Second Floor Plan of Garage and Shops, Section "B" (10)corrected to 3/17/1928111Third Floor Plan, Section "A" (11)corrected to 2/25/1928111Third and Fourth Floors of Garage and Third Floor of Office Building, Section "B" (12)corrected to 2/25/1928111Fourth Floor Plan, Section "A" (13)corrected to 3/24/1928111Fourth and Fifth Floor Plan, Section "B" (14)corrected to 2/11/1928111Sixth Floor Plan, Section "B," and Sixth, Eighth and Tenth Floors of Garage (15)corrected to 2/25/1928111Typical Fifth to Tenth Floor Plan (16)corrected to 3/24/1928112Seventh to Ninth Floor Plan of Office Building, Section "B," and Eleventh Floor of Garage (17)corrected to 3/12/1928112Tenth Floor Plan, Section "B," and Roof Plan of Garage (18)corrected to 3/12/1928112Eleventh Floor Plan (19)corrected to 3/30/1928112Elevations of Pent House for Elevators 11 to 16 and Eleventh Floor Plan, Section "B" (20)corrected to 3/20/1928112Twelfth and Thirteenth Floor Plans (21)corrected to 4/13/1928112Plans and Sections of Pent House for Elevators 11 to 16 (22)corrected to 2/25/1928112Fourteenth and Fifteenth Floor Plans (23)corrected to 2/25/1928112Sixteenth to Twenty-First Floor Plans (24)corrected to 2/25/1928112Twenty-Second to Twenty-Fifth Floor Plans (25)corrected to 4/13/1928112Twenty-Sixth to Twenty-Eighth Floor Plans (26)corrected to 3/17/1928112West and South Elevations (27)Electrostatic print on mylar, 32x45-3/4 inches112East and North Elevations (28)corrected to 2/24/1928112Sections "A-A," "B-B" and "C-C" (29)113Sections "D-D" and "E-E" (30)corrected 2/25/1928113Sections "F-F" and "G-G" (31)corrected to 2/25/1928113Sections "H-H" and "I-I" (32)corrected to 2/25/1928113Details of Ramps (33)corrected to 4/25/1928113Details of Ramps (34), undatedcorrected to 2/23/1928113Detail of Boulevard Entrance and Southeast Corner of Building (35)113Details of Arcade Entrance on West Elevation, Theatre Entrance on Second Blvd., Office Entrance on Second Blvd. and Theatre Marquise (36)113Details of Ornamental Iron Work (37)corrected to 3/16/1928113Details of Lothrop Avenue Elevation (38)corrected to 2/25/1928113Exterior Details of West Grand Blvd. Elevation (39)corrected to 2/25/1928113Exterior Details of Second Blvd. Elevation (40)113Exterior Details of Eleventh Floor (41)113Exterior Details of North and South Elevations (42)corrected to 12/11/1927113Exterior Details of East Elevation (43)corrected to 3/19/1928113Exterior Details of Upper Part of Grand Blvd. Elevation (44)corrected to 2/25/1928114Exterior Details of Upper Part of Second Blvd. Elevation (45)corrected to 2/25/1928114Details of Tower Roof (46)corrected to 2/25/1928114Details of Stair 1 (47)corrected to 3/24/1928114Details of Elevator Shafts (48)corrected to 3/17/1928114Plan of Elevator Lobbies in Basement and Elevations of Elevator Passages, etc. (49)corrected to 12/11/1927114Plans of Elevator Lobbies and Toilet Rooms, Fifth to Eleventh Floor (50)114

    (date illegible)

    Plans of Elevator Lobbies and Toilet Rooms, Twelfth to Twenty-First Floor (51)corrected to 2/25/1928114Plans of Service Unit, Twenty-Second toTwenty-Eighth Floors (52)corrected to 4/10/1928114Sections of Stairs 2 and 4 (53)corrected to 2/25/1928114Plans of Stair 3 and Elevators, Basement to Third Floors (54)corrected to 2/25/1928114Typical Plan of Stair 3 and Elevators, Fourth to Tenth Floors, and Details of Main Chute, Mail Box and F. A. Intake on Roof (55)corrected to 4/16/1928114Details of Stairs 3 and 6 (56)114

    (date illegible)

    Details of Garage Stairs and Elevators (57)corrected to 4/20/1928114Door Schedule (58)corrected to 5/16/1928114Corridor Elevations (59)corrected to 2/25/1928115Details of Lobby and Corridor (60)corrected to 2/7/1928115Details of Office Finish (61)corrected to 2/25/1928115Toilet Room Elevations (62)corrected to 2/25/1928115Plans of First Floor Arcade and Lobby (63)corrected to 3/16/1928115Plans and Details of Second Floor Arcade (64)corrected to 2/25/1928115Plans and Details of Third Floor Arcade (65)115Details of Theatre Foyer and Lobby (66)corrected to 3/14/1928115Elevations of Arcade # 115 and Galleries #205 & 304 (67)corrected to 2/25/1928115Elevations of Arcade #100 and Galleries #200 & 300 (68), undatedcorrected to 2/25/1928115Elevations and Details of Main Entrance Lobby and Theatre Foyer (69)corrected to 3/16/1928115Details of Arcades (70)corrected to 2/25/1928115Details of Main Stair #2 (71)corrected to 3/16/1928115Details of Elevator Lobbies, First, Second and Third Floors (72)115Details of Foyer and Arcades (73)corrected to 2/4/1928115Plan and Details of Tunnel between G. M. and Fisher Building (82)12/2/1927corrected to 5/21/1928115Details of Ramps (87), undatedcorrected to 2/25/1928115Details of Additions to First Floor of Garage (115)32-1/4x38-1/2 inches115

    (undated due to linen damage)

    Structural Drawings10/27/1927Ink-on-linen drawings with pencil notations, 28-1/2x47-1/2 to 32-3/4x48 inchesDiagram of Wind-Bracing System (5-S)corrected to 11/17/1927116First Floor Framing Plan (6-S)corrected to 8/6/1928116Second Floor Framing Plan (7-S)corrected to 8/6/1928116Third Floor Framing Plan (8-S)corrected to 8/6/1928116Pipe Floor Framing Plan at Fourth Floor Elevation (9-S)corrected to 8/6/1928116Fourth Floor Framing Plan (10-S)corrected to 8/6/1928116Beam Schedule and Typical Floor Plan (11-S)corrected to 1/16/1928116Pipe Floor Framing Plan at Eleventh Floor Elevation (12-S)corrected to 12/27/1927116Eleventh Floor Framing Plan (13-S)corrected to 6/23/1928116Twelfth Floor Framing Plan at Tower and Roof Framing Plan at Main Building (14-S)corrected to 6/23/1928116Thirteenth to Twentieth Floors Framing Plans (15-S)corrected to 4/11/1928116Twenty-First to Twenty-Sixth Floors Framing Plans (16-S)corrected to 2/22/1928116Pipe Floor Framing Plan below Twenty-Second Floor and Twenty-Seventh and Twenty-Eighth Floor Framing Plans (17-S)corrected to 5/14/1928116Tower Roof Framing (18-S)corrected to 6/20/1928117Foundation Plan (19-S)8/3/1927corrected to 11/11/1927117Caisson Details (19A-S)corrected to 11/11/1927117Plan of Basement Walls (21-S)corrected to 12/17/1927117Typical Pier Details (22-S)corrected to 11/2/1927117Key Sheet for Pier Details and Stone Arches at Second Floor (23-S)corrected to 12/17/1927117Eleventh Floor Garage Framing Plan and Ramp Sections (24-S)corrected to 4/4/1928117Garage Roof Plan and Partial Plan, Tenth Floor Office (25-S)corrected to 5/8/1928117Details of Apartment House Underpinning (26-S)9/6/1927corrected to 9/15/1927117Basement Floor Framing Plan (27-S)corrected to 6/14/1928117Details of Spires on Tower (28-S)corrected to 10/13/1927117Details of Tunnel Across Grand Blvd. (30-S)117Roof Framing PlanPencil-on-vellum drawing117

    (undated due to paper damage)

    Structural Drawings (cont.)6 prints (reverse; on vellum; 31x38 to 31x45 inches)10/27/1927Column Sheets (100-S to 105-S)117Mechanical/Electrical Drawings by Albert Kahn Architects and Engineers12/10/1927Ink-on-linen drawings with pencil notations, 32-1/4x48 to 32-1/2x49-1/2 inchesFoundation Plan, Section "A" (1M)revised 8/2/1928118Foundation Plan, Section "B" (2M)revised 8/2/1928118Basement Plan, Section "A" (3M)revised 7/18/1928118Basement Plan, Section "B" (4M)revised 7/18/1928118First Floor Plan, Section "A" (5M)revised 7/18/1928118First Floor Plan, Section "B: (6M)revised 7/18/1928118Second Floor Plan, Section "A" (7M)revised 7/18/1928118Second Floor Plan, Section "B" (8M)revised 7/18/1928118Third Floor Plan, Section "A" (9M)revised 7/18/1928118Plans of Third and Fourth Floors of Garage and Third Floor of Office Building, Section "B" (10M)revised 8/20/1928118Plan of Pipe Space above Third Floor, Section "A" (11M)revised 7/18/1928118Plan of Pipe Space above Third Floor, Section "B," and Details (12M)revised 8/20/1928118Fourth Floor Plan, Section "A" (13M)revised 7/18/1928118Plan of Fifth, Seventh and Ninth Floors of Garage and Fourth and Fifth Floors of Office Building, Section "B" (14M)revised 7/18/1928118Typical Fifth to Tenth Floor Plan (15M)revised 7/18/1928119Plans of Sixth Floor, Section "B," and Sixth, Eighth and Tenth Floors of Garage (16M)revised 7/18/1928119Plans of Seventh, Eighth and Ninth Floors of Office Building, Section "B," and Eleventh Floor of Garage (17M)revised 8/2/1928119Plans of Tenth and Eleventh Floors, Section "B," and Roof of Garage (18M)revised 4/11/1928119Plan of Pipe Space above Tenth Floor, Section "A" (19M)revised 8/27/1928119Plan of Pipe Space above Tenth Floor, Section "B," and Details (20M)revised 8/27/1928119Eleventh Floor Plan, Section "A" (21M)revised 3/2/1928119Plans of Twelfth and Thirteenth Floors (22M)119Plans of Fourteenth and Fifteenth Floors (23M)119Plans of Sixteenth to Twenty-First Floors, including Pipe Space above Twenty-First Floor (24M)119Plans of Twenty-Second to Twenty-Seventh Floors (25M)revised 5/5/1928119Twenty Eighth Floor Plan and Details (26M)revised 9/19/1930119Heating Riser Diagrams (27M-29M)3 drawings (only one revised)revised 8/27/1928119Plans of Machine Room (30M)revised 8/28/19281110Piping Details (31M & 32M)2 drawingsrevised 8/28/19281110Details of Arcade Ventilation (33M)11/10/19271110Details of Vestibule and Lobby Ventilation (34M)11/10/19271110Electrical Plan of Sub-Basement Machine Room and Tunnel (35M)undated1110Basement Electrical Plan, Section A (36M), undatedrevised 4/18/19281110Basement Electrical Plan, Section B (37M), undatedrevised 3/5/19281110First Floor Electrical Plan, Section A (38M), undatedrevised 2/11/19281110First Floor Electrical Plan, Section B (39M), undatedrevised 3/5/19281110Second Floor Electrical Plan, Section A (40M), undatedrevised 7/30/19301110Second Floor Electrical Plan, Section B (41M), undatedrevised 7/30/19301110Third Floor Electrical Plan, Section A (42M), undatedrevised 7/30/19301110Electrical Plan of Third Floor, Section B, and Third and Fourth Floors of Garage (43), undatedrevised 7/30/19301110Fourth Floor Electrical Plan, Section A (44M), undatedrevised 7/30/19301110Mechanical/Electrical Drawings (cont), undatedrevised 7/30/1930Ink-on-linen drawings with pencil notations, 32x48 inchesElectrical Plan of Fourth and Fifth Floors of Section B and Fifth, Seventh and Ninth Floors of Garage (45M)121Electrical Plan of Fifth to Tenth Floors, Inclusive, Section A (46M)121Electrical Plan of Sixth Floor of Section B and Sixth, Eighth and Tenth Floors of Garage (47M)121Electrical Plan of Seventh, Eighth and Ninth Floors of Section B and Eleventh Floor of Garage (48M)121Electrical Plans of Tenth and Eleventh Floors of Section B and Roof of Garage (49M)121Eleventh Floor Electrical Plan, Section A (50M)121Electrical Plans of Twelfth and Thirteenth Floors (51M)121Electrical Plans of Twelfth, Thirteenth, Fourteenth and Fifteenth Floors (52M)121Electrical Plans of Sixteenth to Twenty-First Floors, Inclusive (53M)121Electrical Plans of Twenty-Second to Twenty-Seventh Floors (54M)121Electrical Plans of Fan Room, Machine Room and Twenty-Eighth Floor, and Riser Diagrams of Flood Lighting and Watchman and Fire Alarm Systems (55M)revised 4/18/1928121Lighting and Power Riser Diagrams (56M)revised 4/18/1928121Plans and Sections of Transformer Banks No. 1 & 2 (63M)3/3/1928121Plan and Sections of Transformer Bank No. 3 (64M)3/21/1928121Mechanical Drawings (cont)Ink-on-linen drawings with pencil notations, 32x46 to 31-1/2x50-1/2 inchesFourth Floor Plan of Children's Play Room and Barber Shop (67M)revised 8/8/1928122

    (undated due to linen damage)

    Basement Plan, Section A (68M)4/7/1928revised 9/27/1928122Ventilation Plan of Basement, Section B (69M), undatedrevised 8/13/1928122Plan of Children's Play Room and Barber Shop (70M)undated122Part Plan of Tenth Floor Transformer and Fan Room and Details (75M)7/29/1928revised 8/27/1928122Vent Layout of Eleventh and Twelfth Floor Kitchens (76M)6/21/1928revised 8/27/1928122Eleventh Floor Plan (77M), undatedrevised 7/13/1928122Ventilation Plan of Thirteenth and Fourteenth Floors of Pent House (105M)4/9/1928revised 8/27/1928122Ventilating Unit Schedule (108M)7/15/192824-1/4x31 inches122Proposed Method of Pipe Identification (111M)5/21/192813-1/2x20 inches122
    Mechanical Drawings (cont)Ink-on-linen drawings with pencil notations, 29-1/2x40-1/4 to 30-1/4x40-1/2 inchesPlan at Twenty-Third Floor (Preliminary) (114M)6/9/1928revised 6/25/1928123Plan at Twenty-Fourth Floor (Preliminary) (115M)6/9/1928revised 8/1/1928123Plan at Twenty-Fifth Floor (Preliminary) (116M)6/9/1928revised 9/29/1928123Plan at Twenty-Sixth Floor (Preliminary) (117M)6/9/1928revised 7/1/1928123Plan at Twenty-Seventh Floor (Preliminary) (118M)6/9/1928revised 7/1/1928123Plan at Twenty-Eighth Floor (119M)6/9/1928revised 8/8/1928123Schedule of Louvres and Dampers (127M)undated21-1/2x31-1/2 inches123Layout of Main Switchroom Exhaust (128M)8/3/192833x47-3/4 inches123Plumbing Riser Diagram (134M & 135M)2 drawings (32-3/4x48-3/4 inches)9/19/1930123Mechanical Drawings (cont)Ink and pencil-on-vellum drawingsPlan, Elevations and Details of Fan Unit (59M)undated16-3/4x34-3/4 inches124Details of Cafeteria Supply Unit (62M)2/29/192832x47-1/2 inches124Drainage Plan for Storage Rooms in Theatre Building (66M), undatedrevised 3/16/192823x35 inches124Primary Room and Underground Layout and Manhole Details (87M)undated30-1/2x47-1/2inches124Electrical Plan and Elevations of Basement Barber Shop (78M)undated33-1/2x35-1/2 inches124Detail of Ducts thru' Telegraph Office, Schemes A & B (103M & 104M)2 drawings (25-3/4x29-1/2 & 25-1/2x30 inches)4/6/1928124Garage Offices Lighting Layout (107M)4/11/192832x33-1/2 inches124Basement Cafeteria and Kitchen Layout (110M)undated32-1/2x48-3/4 inches124Ventilation Plan of Pipe Space (122M), undatedrevised 7/31/192832-3/4x48-1/2 inches124Ventilation Plan of Barber Shop, Locker Rooms and Vent Registers (126M), undatedrevised 7/13/192832-1/4x36-3/4 inches124Supply System for Receiving Room (133M)10/2/192824-3/4x34-1/2 inches124Electrical DrawingsundatedInk-on-linen drawings with pencil notations, 31-1/4x49-1/2 to 32x50 inchesElectrical Layout of the Noon-Day Club (1E)8/24/192822-3/4x49-3/4 inches125Riser Diagram for Cove Lighting (2E)125Riser Diagram (3E)125Plan of Cove Lighting of First Floor Lobby 105 and Passage 104 (4E)125Plan of Cove Lighting of First Floor Elevator Lobby 112 and Vestibule 113 (5E)125
    Specifications for Office and Garage Building11/3/1927revised 11/15/1927232
    Congregation Shaarey Zedek, Job No. 1385, Chicago Blvd. & Lawton Avenue, Detroit, Michigan1929-1931Construction DrawingsArchitectural Drawings by Albert Kahn, Inc., Architects, except as noted4/6/1929ink-on-linen drawings, 30x39 inches, except as notedPlot Plan (1)revised 5/13/1930292Excavation Plan (1-A)3/9/1927pencil-on-vellum drawing, 18-1/2x15 inches292Foundation Plan, Wall Sections and Stair Details (2)revised 3/6/1930292Basement Plan and Details of Front Steps (3)revised 3/6/1930292First Floor Plan (4)revised 5/13/1930292Second Floor Plan and Details of Cupboards, Partitions and Typical Classroom Wardrobe (5)revised 3/6/1930292Third Floor Plan and Details of Shower Room and Classroom Wardrobes, etc. (6)revised 3/6/1930292Roof Plan (7)revised 5/13/1930292Chicago Blvd. and Lawton Avenue Elevations (8)revised 5/13/1930292Rochester Avenue, Chicago Blvd. Wing and West Elevations (9)revised 3/6/1930292Sections at "A-A," at Lobby #100 and at Gallery #200 and Miscellaneous Details (10)revised 3/6/1930292Sections at "B-B," "C-C" and "D-D" (11)revised 3/6/1930292Detail of Chicago Blvd. Elevation (12)revised 5/28/1930292Exterior Details of Lawton Avenue and West Elevations and Interior Elevation of Windows (13)revised 5/13/1930292Exterior Details at Lawton and Rochester Avenue Entrances and Double-Hung Windows (14)revised 5/13/1930292Interior Elevations and Sections of Auditorium, Gallery and Lobby #100 (15)revised 5/13/1930293Interior Elevations (16)revised 3/6/1930293Interior Details of Auditorium #114 and Corridors (17)revised 3/6/1930293Details of Stairs #1, 2 & 3 (18)revised 3/6/1930293Details of Stairs #4 & 5 (19)revised 3/6/1930293Miscellaneous Details (20)revised 3/6/1930293Revised Foundation and Plot Plans and Details (21)5/13/1930ink-on-vellum drawings, 29x38 inches293Revised Details of Check Room, Boiler Room and Stack (22)5/13/1930ink-on-vellum drawing, 29x38 inches293Revised First and Second Floor Plans (23)3/6/1930revised 5/13/1930ink-on-vellum drawing, 29x38 inches293Revised Third Floor and Roof Plans (24)3/6/1930revised 5/13/1930ink-on-vellum drawing, 28x37 inches293Revised West and Rochester Avenue Elevations (25)3/6/1930revised 5/13/1930ink-on-vellum drawing, 29x37-1/2 inches293Revised Details of Corridors and Lobby (26)3/6/1930revised 5/13/1930ink-on-vellum drawing, 29x37 inches293Revised Details of Women's Room and Stair #3 (27)3/6/1930ink-on-vellum drawing, 28x37 inches293Structural Drawings by Albert Kahn, Inc., Architects & Engineers, except as noted4/6/1929ink-on-linen drawings, 30-1/4x39 inches, except as notedFirst Floor Framing Plan and Beam Schedule (1-S)revised 3/6/1930294Second Floor Framing Plan and Beam Schedule (2-S)revised 3/6/1930294Third Floor Framing Plan, Beam Schedule and Column and Footing Schedule (3-S)294Third Floor Framing Plan, Beam Schedule and Column and Footing Schedule (3-SA)3/6/1930revised 6/26/1930294Roof Framing Plan and Truss Details (4-S)revised 3/6/1930294Revised First Floor Framing Plan (5-S)3/6/193026-1/2x21/1/4 inches294Revised Second Floor Framing Plan (6)3/6/1930revised 5/8/193030x23-1/2 inches294Roof Framing Plan and Concrete Beam Schedule (7-S)3/6/193028-1/2x16-1/2 inches294Mechanical Drawings by Albert Kahn, Inc., Architects & Engineers4/6/1929ink-on-linen drawings, 30x39 inchesFoundation Plan (1-M)294Basement Plan (2-M)294First Floor Plan (3-M)294Second Floor Plan (4-M)294Third Floor Plan and Duct Details (5-M)294Heating Riser Diagram and Details (6-M)294Ventilating Details (7-M)294Revised Foundation and Basement Plans (8-M)3/18/1930revised 7/31/1930294Revised First and Second Floor Plans (9-M)3/18/1930revised 7/31/1930294Revised Third Floor Plan and Details of Fresh Air Duct Supply (10-M)3/18/1930294Electrical Drawings by Albert Kahn, Inc., Architects & Engineers, except as noted4/23/1929ink-on-linen drawings, 30-1/4x39 inchesBasement Plan and Riser Diagram (1-E)294Basement Plan and Diagram of Power and Lighting Feeders (1-ER)4/17/1930revised 6/25/1930294First Floor Plan (2-E)294First Floor Plan (2-ER)4/17/1930294Second Floor Plan (3-E)294Second Floor Plan (3-ER)4/17/1930revised 8/3/1931294Third Floor Plan (4-E)294Third Floor Plan (4-ER)4/17/1930294Women's Hospital (Detroit), Job No. 1395 Detroit, Michigan1928-1929Construction Drawings, Architectural32 drawings3315Women's Hospital (Detroit), Job No. 1395 Detroit, Michigan1928-1930Construction Drawings, Structural and Mechanical34 drawings3316Women's Hospital (Detroit) New Site for Apartment House, New Transformer Platform and Primary Switching House, Job No. 1395-A, 1395-C, Detroit, Michigan19281930Construction Drawings, Architectural and Electrical3 drawings341Women's Hospital (Detroit) Addition, Job No. 1395-E, Detroit, Michigan1931Construction Drawings, Architectural and Structural22 drawings342Women's Hospital (Detroit) Addition, Job No. 1395-E, Detroit, Michigan1931Construction Drawings, Mechanical and Electrical17 drawings343Women's Hospital (Detroit) Nurses Home Addition, Job No. 1395-F, Detroit, Michigan1931Construction Drawings, Architectural, Structural, Mechanical, and Electrical12 drawings344Women's Hospital (Detroit) Boiler Room Ventilation, Job No. 1395-M, Detroit, Michigan1939Construction Drawings, Mechanical1 drawings345
    Job No. 1400-1476William Livingstone Memorial Lighthouse, Job No. 1400, Belle Isle Park, Detroit, Michigan1929Construction Drawings by Albert Kahn, Inc., Architects144Architectural Drawings3/14/1929Ink and pencil drawings on vellum, 20x31-1/4 to 20x33-1/4 inchesPlot Plan, Roof Plan, Plan at Base and Plan at Top (1)revised 5/14/1929144East and West Elevations (2)revised 8/28/1929144Section "A-A" (3)revised 4/16/1929144Foundation Plan, Plan of Framing at Roof, Elevation of Corner Bay at Top of Marble Shaft and Details (4)revised 5/14/1929144Plot Plan (5)revised 5/14/1929144Structural Drawing3/14/1929Pencil drawing on tracing paper, 19-3/4x31-1/2 inchesAlternate Foundation Plan (1-S)144Parke Davis and Company, Products Development Building, Job No. 1434-BF, Detroit, Michigan1950-1951Construction Drawings, Architectural, Structural, Mechanical, and Electrical14 drawings451Alvan Macauley Residence, Job No. 1435-A, Grosse Pointe Shores, Michigan1929-1930Construction DrawingsArchitectural Drawings by Albert Kahn, Inc., Architects2/19/1929ink-on-linen drawings with pencil notations, 28-1/2x56-3/4 inches, except as notedPlot Plan (1)revised 1/2/193052Basement Plan (2)revised 6/4/192952First Floor Plan (3)revised 10/8/192952Second Floor Plan (4)revised 10/8/192952Attic Plan (5)revised 4/29/192952Roof Plan (6)revised 4/1/192952Elevations (7)revised 4/1/192928-1/2x50-3/4 inches52Exterior Details (8)revised 4/1/192952Sections "A-A," "B-B" and "C-C" and Exterior Details (9)revised 4/29/192952Details of Games Room # 1, Hall # 9 and Miscellaneous Details (10)revised 4/1/192952Interior Details (11)revised 4/1/192952Chamber Details (12)revised 4/1/192952Interior Details (13)revised 4/1/192952Details of Pantry and Kitchen Cupboards (14)revised 4/1/192952Elevations of Rooms 107, 107A, 204 & 211 (15)revised 4/1/192952Details of Bath Rooms (16)revised 4/1/192952Mechanical/Electrical Drawings by Albert Kahn, Inc., Architects & Engineers3/8/1929ink-on-linen drawings with pencil notations, 28-3/4x56-1/2 inchesBasement Plan (1-M)revised 12/28/192952First Floor Plan (2-M)revised 1/8/193052Second Floor Plan (3-M)revised 12/28/192952Attic Floor Plan (4-M)revised 7/29/192952Basement Electrical Plan (1-E)revised 12/18/192952Ford and Chevrolet Assembly Plants Plot Plans1934Plot Plans and Sections by Albert Kahn, Inc., ArchitectsBooklet of ink drawings on tracing paper, 11-1/2x15-1/4 inchesFord Assembly Building, Edgewater, NJ (Job No. 1501)8/28/1934154Ford Assembly Building, Buffalo, NY (Job No. 1568)8/29/1934154Ford Assembly Building, Richmond, CA (Job. No. 1562)8/29/1934154Ford Assembly Building, Seattle, WA (Job. No. 1574)8/29/1934154Ford Assembly Building, Chester, PA (Job No. 1218)8/30/1934154Ford Assembly Building, Charlotte, NC (Job No. 1145)8/30/1934154Ford Assembly Building, Long Beach, CA (Job No. 1347-F)8/29/1934154Ford Assembly Building, Memphis, TN (Job No. 1153)8/30/1934154Ford Assembly Building, Somerville (MA, Job No. 1267)8/30/1934154Ford Assembly Building, Dallas, TX (Job No. 1154)8/30/1934154Ford Assembly Building, Jacksonville, FL (Job No. 1152)8/31/1934154Ford Assembly Building, Louisville, KY (Job No. 1155)8/31/1934154Ford Assembly Building, Norfolk, VA (Job No. 1163)8/30/1934154Ford Assembly Building, Green Island, NY (Job No. 1067)8/31/1934154Ford Assembly Building, New Orleans, LA (Job No. 1073)8/31/1934154Chevrolet Assembly Building, Atlanta, GA (Job No. 1408)8/31/1934154Chevrolet Assembly Building, Kansas City, MO (Job No. 1433)8/31/1834154S. S. Kresge Administration Building, Job No. 1476, Second Boulevard West and Temple Avenue, Detroit, Michigan1929-1930Design Development Drawings by Albert Kahn, Inc., ArchitectsArchitectural Drawingsundatedink-on-linen drawings, 30x53 inchesBasement Floor Plan62First Floor Plan62Second Floor Plan62Third Floor Plan62Fourth Floor Plan62Construction Drawings by Albert Kahn, Inc., ArchitectsArchitectural Drawings, except as noted5/22/1929ink-on-linen drawings, 33-1/2x54-1/2 inchesPlot Plan (1)revised 6/17/192962Foundation Plan (2)revised 6/17/192962Basement Plan (3)revised 3/16/193062First Floor Plan (4)revised 3/11/193062Second Floor Plan (5)revised 3/11/193062Third Floor Plan (6)revised 12/18/192962Fourth Floor Plan (7)revised 11/4/192962Fifth Floor and Roof Plan (8)revised 6/17/192962Plan at Fifth and Sixth Floors and of Tower Roof (9)revised 6/17/192962East, South and North Elevations (10)revised 6/17/192962West Elevation and Longitudinal Section (11)revised 6/17/192962Plan of Pipe Space and Sections "A-A," "B-B" and "D-D" (12)revised 6/17/192962Details of Lower Portion (13)revised 6/17/192962Details of Upper Portion (14)revised 6/17/192962Details of Main Entrance (15)revised 6/17/192962Plan of First Floor Center Portion and Plans at Basement through Fourth Floors (16)revised 12/18/192962Details of Stairs # 3 & 4 (17)revised 9/10/192962Sections through Stairs and Elevators (18)revised 6/17/192962Wall Sections and Miscellaneous Details (19)revised 6/17/192962Interior Details (20)revised 6/17/192962Details of Metal Roofs on Tower and over Main Building (21)revised 6/17/192962Details of Second Floor Offices (22)revised 6/17/192962Details of Mr. Kresge's and Other Offices (23)revised 11/18/192962Details of First Floor and Elevator Lobbies (24)revised 6/17/192962Details of Fourth Floor (25)revised 11/18/192962Detail of Alternate for Tower Roof and Miscellaneous Details (26)6/17/192962Structural Drawingsink-on-linen drawings, 34x55-1/2 inchesFooting Plan (1-S)4/18/1929revised 4/29/192963Column Schedule (2-S)4/18/1929revised 5/17/192963First and Second Floor Framing Plans (3-S)undated63Third and Fourth Floor Framing Plans (4-S)undated63Fifth and Sixth Floors and Roof Framing Plans (5-S)5/5/192963Mechanical Drawings5/29/1929ink-on-linen drawings, 34-1/2x55-3/4 inches, except as notedFoundation Plan (1-M)revised 6/22/192963Basement Floor Plan (2-M)revised 4/4/193063First Floor Plan (3-M)revised 4/4/193063Second Floor Plan (4-M)revised 4/4/193063Third Floor Plan (5-M)revised 4/4/193063Plan of Pipe Space above Third Floor (6-M)revised 4/4/193063Fourth Floor Plan (7-M)revised 11/19/192963Fifth and Sixth Floor Plans and Ventilating Details (8-M)revised 9/4/192963Heating Riser Diagrams (9-M)63Heating Riser Diagram and Details (10-M)63Plan of Machine Room and Isometric Diagrams of Water and Steam Piping (11-M)revised 3/5/193063Diagram of Ventilating Systems (18-M)undated31-1/4x32-1/4 inches63Electrical Drawings, except as noted6/17/1929ink-on-linen drawings, 34x56 inchesBasement Plan (1-E)revised 2/10/193063First Floor Plan (2-E)revised 11/23/192963Second Floor Plan (3-E)revised 2/10/193063Third Floor Plan (4-E)revised 9/19/192963Fourth Floor Plan (5-E)63Fifth Floor and Sixth Floor Machine Room Plans (6-E)revised 8/6/192963Riser Diagrams and Motor Schedule (7-E)revised 8/6/192963Details of Transformer Bank (8-E)6/15/192963Job No. 1501-1585Ford Motor Company, Assembly Building, Job No. 1501 Edgewater, New Jersey1928-1930Construction Drawings, Architectural and Structural50 drawings88Ford Motor Company, Assembly Building, Job No. 1501 Edgewater, New Jersey1929-1930Construction Drawings, Mechanical and Electrical20 drawings89Ford Motor Company, Boiler House, Job No. 1501-A, Edgewater, New Jersey1929-1930Construction Drawings, Architectural, Structural, Mechanical, and Electrical36 drawings379Ford Motor Company, Oil House, Overpass Roadway, Switch House and Substation Platform, Job No. 1501-B, 1501-D, 1501-E, Edgewater, New Jersey1929-1930Construction Drawings, Architectural, Structural, Mechanical, and Electrical13 drawings90Ford Motor Company, Industrial Piping, Pile Clusters, Fender Logs, Pierhead and Bulkhead Lines, Additional Framing for Sign, Dock Repairs, Job No. 1501-F, 1501-K, 1501-L, 1501-M, 1501-P, 1501-R, Edgewater, New Jersey1929-1937Construction Drawings, Architectural, Structural, and Mechanical8 drawings91The Five Year Plan of Economic Development of the U.S.S.R.1929Map of "The Five Year Plan of Economic Development of the U.S.S.R." by John Bartholomew & Son, Ltd., Edinburgh, c192935-1/2x45-1/2 inches186Stalingrad Tractor Plant, Amtorg Trading Corporation, Job Nos. 1503 & 1503-A, B, C, D, E, G & H, Stalingrad, U.S.S.R.1929-1930Construction Drawing by Albert Kahn, Inc., Architects (Job No. 1503)3/25/1930Ink-on-linen drawing, 29x43 inches66Mechanical DrawingLayout and Details of Drinking Water System (1-M)66Stalingrad Tractor Plant Assembly Building by Albert Kahn, Inc., Architects (Job No. 1503-A)Architectural Construction Drawings6/1/1929revised 6/23/1929Ink-on-linen drawings, 28x46-1/2 inches66Plot Plan (1)66Foundation and Footing Plans (2)revised 7/13/192966First Floor Plan and Tunnel Details (3)revised 7/17/192966Roof Plan (4)66Elevations (5)66South Elevations (6)66Sections (7)66Toilet and Locker Room Details (8)66Toilet and Locker Room Details (9)66Monitor Details (10)66Monitor Details (11)66Expansion Joint Details (12)66Door Details (13)66Sump, Roof and Sash Details (14)66Door and Monitor Details (15)66Structural Construction Drawings6/1/1929revised 7/12/1929Ink-on-linen drawings, 28x47 inches67West Half Roof Framing Plan (1-S)67East Half Roof Framing Plan (2-S)67Truss Sections and Details (3-S)67Mezzanine Locker Room Floor Plan and Truss Details (4-S)67Column Schedule, Elevations and Sections (5-S)67Footing Details (6-S)67Truss Sections and Details (7-S)67Anchor Bolt Setting Plan (8-S)6/10/1929revised 7/15/1929Ink and green ink drawing on vellum67Details for Tunnel Wall Reinforcing, etc. (9-S)7/6/1929revised 7/9/1929Pencil-on-vellum drawing67Reinforcing Steel Details, End Walls (10-S)6/29/1929revised 7/10/1929Pencil-on-vellum drawing67Details for Flat Slab Reinforcing, etc. (11-S)3/6/1929Pencil-on-velum drawing67Mechanical Construction Drawings6/15/1929Black and red ink drawings on linen, 28x47 inches68Plot Plan of Tractor Works (1M)68Foundation Plan (West Half) (2M)68Foundation Plan (East Half) (3M)68First Floor Plan (West Half) (4M)68First Floor Plan (East Half) (5M)68Typical Toilet Rooms Plans and Details (6M)68Heating Details (7M)68First Floor (West Half) Sprinkler Plan (8M)68First Floor Plan (East Half) Sprinkler Plan (9M)68Sprinkler Elevations (10M)68Hanger Details (11M)68Electrical Construction Drawings7/19/1929Ink-on-linen drawings, 28x47 inches69Power and Lighting Riser Diagrams (1E)69First Floor Plan, Power Feeder Layout (2E)69First Floor Plan, Switchboard #1 Section (3E)69First Floor Plan, Switchboard #2 Section (4E)69First Floor Plan, Switchboard #3 Section (5E)69First Floor Plan, Switchboard #4 Section (6E)69Motor Schedule, Sheet #1 (7E)69Motor Schedule, Sheet #2 (8E)69First Floor Plan, Lighting Feeders and Typical Lighting (9E)69Lighting Layout--East & West Units (10E)69Lighting Layout--Typical (11E)69Plans and Sections of Transformer Banks #1, 2 & 4 (12E)7/20/192969Plans and Sections of Transformer Bank #3 (13E)69Stalingrad Tractor Plant Foundry Building by Albert Kahn, Inc., Architects (Job No. 1503-B)Architectural Construction Drawings7/15/1929Ink-on-linen drawings, 36x53 inches13Plot Plan (1)13Foundation Plan (2)revised 7/25/192913Details of Trenches, Tunnels and Pits (3)revised 7/25/192913First Floor Plan (4)revised 7/25/192913Charging Floors and Roof Plans (5)revised 7/25/192913Roof Plan and Details of Sand and Material Storage (6)13Elevations (7)revised 7/25/1929Reverse sepia print13Monitor Elevations (8)13Sections thru' Building (9)revised 7/25/1929Reverse sepia print13Sections thru' Building (10)revised 7/25/192913Sections thru' Building (11)13Sections thru' Building (12)revised 7/25/192913Sections thru' Building (13)revised 7/25/192913Roof and Monitor Details (14)revised 7/25/192913Roof and Monitor Details (15)13Roof and Monitor Details (16)13Roof and Monitor Details (17)13Roof and Monitor Details (18)revised 7/25/192913Roof and Monitor Details (19)13Plans of Blower and Charging Floors and Stair Sections (20)13Plans and Details of Offices, Toilets, Locker Rooms, Shower Rooms, Dining Room and Kitchen (21)13Details of Office Portion (22)13Door Details (23)13Plans and Sections of Fan Rooms (24)13Details of Transformer and Fan Rooms, Monitor Roof and Typical Cement Sills (25)13Details of Conveyor Trenches, Elevator Pit and Piers and Depressions (26)revised 7/25/192913Structural Construction Drawings7/1/1929revised 7/18/1929Ink-on-linen drawings, 37-1/2x53 inchesRoof Framing Plan (1-S)14

    (not revised)

    Bottom Chord Plan and Sections (2-S)14

    (not revised)

    Typical Cross-Section "BB" and 4-Ton Crane Section (3-S)14Typical Cross-Section "BB" and Crane Details (4-S)14Sections and Details (5-S)14Floor Framing Plans of Cupola Building (6-S)14Sections and Details (7-S)14Column Footings (8-S)14Footings Plans and Details (9-S)14Plan of Sandbins and Wall Sections (10-S)14Elevations (11-S)revised 7/28/192914Anchor Bolt Setting Plan (12-S)28-1/2x43 inches14

    (not revised)

    Elevations and Sections (13-S)revised 7/26/192914Column Schedule (14-S)14Plan of Monorail Supports and Truss Sections and Details (15-S)14
    Structural Construction Drawings7/6/1929Pencil drawings on vellum and tracing paper, 34x49-3/4 inchesSlab and Bending Schedules and Details of Slab in Bins (16-S)revised 7/22/1929610Foundation Plan (17-S)610

    (undated due to paper damage)

    Details of Footings, Wall Beams and Tunnel Pits (18-S)revised 7/17/1929610Details of Bin Walls (19-S)revised 7/12/1929610Details of Sandbins and Walls (20-S)revised 7/17/1929610Reinforcing Details for Bin Walls (21-S)7/18/1929610Floor Framing Plans for Cupola Building (22-S)7/23/1929610Footings of Cupola and Mezzanine Floor (23-S)revised 7/17/1929610Details of Lintel Beams and Beam Bending (24-S)7/23/1929610Plan and Details of Conveyor Trenches (25-S)revised 7/22/1929610
    Mechanical Construction Drawings7/18/1929Ink-on-linen drawings with blue and red ink revisions, 36x53 inchesFoundation Plan-Plumbing (1-M)14First Floor Plan (2-M)14Plumbing Details (3-M)14First Floor Plan (4-M)14Details of Fan and Exhaust Units (5-M)7/20/192914Ventilating and Exhaust Equipment Schedules and Diagrams of Damper Control and Piping Connections to Vento Heaters (6-M)7/20/192914Heating Details of Offices, Toilets, Locker Rooms, Shower Rooms, Dining Room, Kitchen and Sand Storage Bins (7-M)14Heating Details (8-M)14Detail of Connections to Fan Equipment (9-M)8/17/192914Electrical Construction Drawings7/19/1929Ink-on-linen drawings with red ink revisions, 36x53 inchesFirst Floor Plan-Lights and Power (1E)14Sections, Details and Riser Diagrams (2E)14Plan and Sections of Transformer Bank #7 (3E)28x46-1/2 inches14Plan and Sections of Transformer Bank #6 (4E)28x46-1/2 inches14
    Stalingrad Tractor Plant Forge Shop by Albert Kahn, Inc., Architects (Job No. 1503-C)Architectural Construction Drawings6/1/1929Ink-on-linen drawings, 29-1/2x42 inches611Roof Plan and Key Plan (1)revised 8/8/1929611Foundation and Floor Plans of Heavy Forge Shop and of Die Machine Shop and Storage (2)revised 8/8/1929611Foundation and Floor Plans of First Heat Treat Building (3)revised 7/3/1929611Foundation and Floor Plans of Light Forge and Material Storage Shops (4)revised 8/8/1929611Elevations (5)revised 8/8/1929611Elevations and Details (6)revised 7/3/1929611Sections (7)revised 7/3/1929611Details (8)revised 7/3/1929611Details (9)revised 7/3/1929611Details of Service Buildings # 1, 2 & 3 (10)revised 8/8/1929611Details (11)revised 7/3/1929611Structural Construction Drawings6/1/1929revised 7/3/1929Ink-on-linen drawings with blue ink revisions, 36x53-1/2 inchesElevations (1-S)15Typical Sections (2-S)15Truss Details (3-S)15Footing Details (4-S)15Mechanical Architectural Drawings6/1/1929Ink-on-linen drawings, 29x42 inchesFoundation Plan of Forge Shop (East Half)--Underground Plumbing (1-M)71Foundation Plan of Forge Shop (West Half) and Material Storage Building--Underground Plumbing (2-M)71Floor Plan of Forge Shop (East Half) (3-M)71Floor Plan of Forge Shop (West Half) and Service Building #1 (4-M)71Cross-Sections, Plans of Service Buildings #2 & 3 and Details(5-M)71Electrical Construction Drawings7/19/1929Ink-on-linen drawings, 29x42 inchesRiser Diagrams and Plan of Light and Power Feeders (1-E)71Lighting and Power Layout for First Half of Heat Treat Building (2-E)71Lighting Layout for Light Forge and Material Storage Shops (3-E)71Lighting Layout for Heavy Forge and Die & Machine Shops (4-E)71Power Layout for Light and Heavy Forge Shops and Die and Machine Shop (5-E)71Plans and Sections of Transformer Bank #5 (6-E)29x47 inches71Stalingrad Tractor Plant Pump and Heater Building, Grease Extractor House and Tunnels by Albert Kahn, Inc., Architects (Job No. 1503-D)Architectural Construction DrawingsPencil-on-vellum drawings, 29x41 inchesPlot Plan6/15/192972

    (no number due to paper damage)

    Tunnel Layout (4)6/15/192972Plan, Elevations and Sections of Grease Extractor House and Tunnels (5)7/18/1929revised 9/20/192972
    Structural Construction Drawings, undatedrevised 9/23/1929Pencil-on-vellum drawings, 27-1/2x40-1/2 inchesReinforcing Steel Details (1S)72Reinforcing Steel Details (2S)72Reinforcing Steel Details (3S)72Mechanical/Electrical Construction Drawings of Grease Extractor House and Tunnel8/13/1929revised 9/21/1929Ink-on-linen drawings with blue pencil revisions, 29x42-1/2inchesPlot Plan (1AM)73Plan "A" to "B" and Sections (2AM)73Plans "B" to "C" and "C" to "D" and Sections (3AM)73Plan "D" to "E" and Sections (4AM)73Plan "E" to "F" and "G" to "H" and Sections (5M)73Plan "K" to "L" and Sections (6AM)73Plan "L" to "M" and Sections (7AM)73Tunnel Sections (8AM)73Tunnel Sections (9AM)73Plans "R" to "Q," "N" to "P" and "T" to "S" and Sections (10AM)73Key Plans, Sections and Details (11AM)73Extractor House Plan, Section and Details (12AM)73Plan of Tunnel Lighting for Pump and Heater Buildings (1E)6/10/192973Mechanical Construction Drawings of Power HouseInk-on-linen drawings with blue pencil revisions, 31-1/2x53-1/4 inchesPlan of Hot Water Equipment (13AM)9/9/1929revised 12/31/192915Details of Hot Water Equipment (14AM)9/26/1929revised 2/12/193015
    Stalingrad Tractor Plant Underground Electrical System by Albert Kahn, Inc., Architects (Job No. 1503-E)Electrical Construction DrawingsInk-on-linen drawings, 29x48 inchesPlot Plan (1E)7/18/192974Manhole Details (2E)7/19/192974Stalingrad Tractor Plant Forge Shop by Albert Kahn, Inc., Architects (Job No. 1503-G)Mechanical Construction Drawings7/1/1929revised 8/14/1929Ink-on-linen drawings, 30-1/2x53 inchesPlan and Details of Heavy Forge Shop--Steam and Exhaust Piping (1M)15Plan and Details of Light Forge Shop--Steam and Exhaust Piping (2M)15Details of Steam and Exhaust Headers (3M)15Plans of Heavy and Light Forge Shops--Low Pressure Air (4M)15Plans of Heavy and Light Forge Shops--Fuel Oil, High Pressure Steam and High and Low Pressure Drips (5M)15Plans of Heavy and Light Forge Shops--Lubricating Oil (6M)15Plan of Heavy and Light Forge Shops and Pump Room--Fuel Oil Pump and Tank (7M)15Stalingrad Tractor Plant Laboratory Building by Albert Kahn, Inc., Architects (Job No. 1503-H)Mechanical Construction Drawings8/5/1929Ink-on-linen drawings, 31-3/4x44-1/4 inchesFirst Floor Plan and Details and Heating Riser Diagram (1M)74Second Floor Plan (2M)74
    Hotel for Mr. Henry Ford (Dearborn Inn), Job Nos. 1504 and 1504-A, B, C, E, F & G, Dearborn, Michigan1930-1936Hotel Building (Job No. 1504) by Albert Kahn, Inc., ArchitectsConstruction DrawingsArchitectural Drawingsundatedink-on-linen drawings, 29-1/4x48 inchesPlot Plan (1)3012Foundation, Basement and First Floor Plans (2)3012Second and Third Floor Plans (3)3012Attic and Roof Plans (4)3012Basement and Foundation Plan--Guest Room Part (5)3012First Floor Plan--Guest Room Part (6)3012Basement through Third Floor Plans (7)3012Third Floor Plan (8)3012North and South Elevations (9)3012East and West Elevations and Cross-Section "C-C" (10)3012Cross-Sections "A-A" and "B-B" (11)3012Details of North Elevation (12)3012Details of West Wing and of Penthouse at East End (13)3012Details of Lobby 13 (14)3012Details of Main Dining Room (15)3012Details of General Offices, Main Stair Hall and Private Dining Rooms (16)3012Details of Stairs #1 and 2 and of Cafeteria Room (17)3012Mechanical Drawings1/2/1930ink-on-linen drawings, 29-1/4x48 inchesBasement, Foundation and First Floor Plans, West Half (1-M)3013Foundation Plan, East Half (2-M)3013Basement and Foundation Plan, East Half, and Heating Riser Diagrams (3-M)3013First Floor Plan, East Half (4-M)3013Second and Third Floor Plans, West Half, and Details of Gutter Drains (5-M)3013Second Floor Plan, East Half, and Toilet Room Details (6-M)3013Third Floor Plan, East Half (7-M)3013Pipe Space Plan, East Half, and Domestic Water Riser Diagram (8-M)3013Plans of Attic Space, West Half, and Fan Room (9-M)3013Plan of Basement Machine Room and Details of Piping in Boiler Room (10-M)3013Hotel Building (Job 1504-A) by Albert Kahn, Inc., ArchitectsConstruction DrawingsArchitectural Drawings, except as noted4/16/1930ink-on-linen drawings, 30-1/2x45 inches, except as notedPlot Plan and Door Schedule (1)revised 12/28/1930311Foundation Plan (2)revised 11/26/1930311Basement Plan (3)revised 4/30/1931311First Floor Plan (4)revised 12/30/1930311Second Floor Plan (5)revised 3/2/1931311Third Floor Plan (6)revised 5/28/1930311Attic Floor and Roof Plans and Details of Stack and Trap Door (7)revised 1/9/1931311North and South Elevations and Sections "F-F" and "G-G" (8)revised 1/17/1931311East and West Elevations and Sections "D-D" and "E-E" (9)revised 6/24/1931311East and West Elevations of Court and Sections "A-A," "B-B" and "C-C" (10)revised 1/9/1931311Detail of North Elevation, Center Part (11)revised 1/16/1931311Part South Elevation Showing Main Lobby and Bedroom Wing, West Elevation of Gable End and Miscellaneous Sections (12)revised 5/28/1930311Stair and Elevator Details (13)revised 8/20/1930311Details of Stairs, Kitchen Lift and Barber Shop (14)revised 8/20/1930311Interior Details (15)revised 5/28/1930311Details of Main Lobby (16)revised 1/16/1931311Details of Dining Room and Passage #138 (17)revised 1/2/1931311Basement, First Floor, Second Floor and Third Floor Plans with Room Numbers by Treadway (18)4 drawings (23-3/4x29-1/2 inches)undated311Structural Drawings4/16/1930ink-on-linen drawings, 30-1/4x45 inchesBasement Framing Plan, Footing Details and Column Schedules (1-S)revised 8/16/1930312First Floor Plan and Beam Schedule (2-S)revised 8/16/1930312Second Floor Plan and Beam Schedule (3-S)revised 8/16/1930312Third Floor Plan and Beam Schedule (4-S)revised 5/28/1930312Roof and Attic Plans and Sections (5-S)revised 5/28/1930312Mechanical Drawings by Albert Kahn, Inc., Architects & Engineers, except as noted6/6/1930ink-on-linen drawings, 31-1/4x45 inches, except as notedFoundation Plan (1-M)revised 2/4/1931312Basement Plan (2-M)revised 6/15/1931312First Floor Plan (3-M)revised 5/11/1931312Second and Third Floor and Attic Plans (4-M)revised 8/17/1931312Pipe Space Plan and Domestic Water Riser Diagram (5-M)revised 12/15/1930312Heating Riser Diagrams and Details (6-M)revised 1/9/1931312Boiler and Machine Room Plan and Details (7-M)revised 5/11/1931312Isometric View of Piping in Boiler and Machine Rooms and Details (8-M)revised 11/14/1930312Part Machine Room and Second Floor Plans Showing Proposed Air Cooling Systems for Lunch and Dining Rooms (200-M)11/2/1932pencil-on-vellum drawing, 24-3/4x38-1/2 inches312Electrical Drawings by Albert Kahn, Inc., Architects & Engineers, except as noted6/24/1930ink-on-linen drawings, 30-1/4x45 inchesBasement Plan (1-E)revised 5/22/1931312First Floor Plan (2-E)revised 5/26/1931312Second Floor Plan (3-E)revised 5/22/1931312Third Floor and Attic Plans (4-E)revised 4/6/1931312Layout of Transformer Room (5-ER)7/23/1930revised 9/22/1930312Alterations to Hotel Building for Ford Motor Company (Job No. 1504-B) by Albert Kahn, Inc., ArchitectsConstruction DrawingsArchitectural Drawings5/18/1932ink-on-linen drawings, 30-1/4x40-1/4 inches, except as notedPlot Plan (1)313Foundation and Basement Plan (2)313First Floor Plan and Details (3)revised 8/2/1932313Second Floor Plan (4)revised 8/2/1932313Roof Plan and Sections and Details (5), revised 8/6//1932313Elevations and Exterior Details (6)313Sections "A-A," "C-C" and "D-D" (7)revised 6/1/1932313Section thru' Ballroom and Stair Details (8)revised 8/5/1932313Details of Private Dining Rooms and Second-Floor Serving Room, etc. (9)revised 6/1/1932313Ballroom Details (10)313Alternate Inside Fire Stair Details (11)pencil-on-vellum drawing, 20-1/2x30 inches313Structural Drawing5/5/1932pencil-on-vellum drawing, 29x39-3/4 inchesSteel Framing Plan (1-S)revised 6/7/1932313Mechanical/Electrical Drawings by Albert Kahn, Inc., Architects & Engineers, except as noted5/25/1932ink-on-linen drawings, 30-1/4x40-1/4 inchesPlan of Present Fan and Boiler Rooms (1-M)revised 8/11/1932313First Floor Plan (2-M)revised 6/28/1932313Second Floor Plan (3-M)313Second Floor Plan, Electrical (1-E)6/15/1932revised 8/10/1932313Belvederes for Hotel (Job No. 1504-C) by Albert Kahn, Inc., Architects and EngineersConstruction DrawingArchitectural Drawing7/7/1932pencil-on-vellum drawing, 30-1/4x35-1/4 inchesDetails (1)314Proposed Alterations for Dearborn Inn (Job No. 1504-E) by Albert Kahn, Inc., Architects & EngineersConstruction DrawingsArchitectural Drawingspencil-on-vellum drawingsDetails of Proposed Area for Inn (1)4/5/193515-1/4x22-1/4 inches314Proposed Arrangement of Metal Air Supply Inlet and Plaster Plaques in Lobby (2)4/29/193513x14-1/4 inches314Details of New Linen Room (3)7/13/193510-1/4x23-1/2 inches314Structural Drawing4/11/1935pencil-on-vellum drawing, 17-1/4x30-1/4 inchesBasement, First Story and Mezzanine Ceiling Details (1-S)314Mechanical Drawing4/29/1935pencil-on-vellum drawing, 31x40-1/4 inchesPlan Showing Relocation of Machinery in Boiler Room (100-M)314Alterations in Coffee Shop and Kitchen (Job No. 1504-F) by Albert Kahn, Inc., Architects & EngineersConstruction DrawingsArchitectural Drawing5/8/1935ink and pencil-on-vellum drawing, 14-1/4x33 inchesDetails for Bar and Back-Bar in Coffee Shop (1)314Mechanical Drawing4/7/1935ink and pencil-on-vellum drawing, 24x33-1/2 inchesDetails of Changes in Kitchen Equipment and Coffee Shop Layout (1-M)revised 5/8/1935314Alterations to Air-Conditioning (Job No. 1504-G) by Albert Kahn, Inc., Architects & EngineersConstruction DrawingsStructural Drawings2/4/1936pencil-on-vellum drawings, 20-3/4x29-1/2 inchesDetails of Walkways and Stairs (1-S)314Details of Walkways (2-S)314Details of Stairs and Landing (3-S)314Details of Supports for Walkways (4-S)revised 3/10/1936314United Aircraft Corporation, Pratt and Whitney Division, Airplane Manufacturing Building, Job No. 1509, East Hartford, Connecticut1929Construction Drawings, Architectural32 drawings381United Aircraft Corporation, Pratt and Whitney Division, Airplane Manufacturing Building, Job No. 1509, East Hartford, Connecticut1929-1930Construction Drawings, Structural, Mechanical, and Electrical35 drawings92United Aircraft Corporation, Pratt and Whitney Division, Single Cylinder Dynamometer Building, Extension to Employment Building, New Executive Dining Room, Power House Addition, Job No. 1509-AA, AB, AC, AG, East Hartford, Connecticut1939-1940Construction Drawings, Architectural, Structural, Mechanical, and Electrical35 drawings382United Aircraft Corporation, Pratt and Whitney Division, Water Brake Test House Addition, Cafeteria at South End of Dynamometer Test Building, Single Cylinder Dynamometer Building Addition, Job No. 1509-AH, AK, AM, East Hartford, Connecticut1939-1940Construction Drawings, Architectural, Structural, Mechanical, and Electrical46 drawings383United Aircraft Corporation, Pratt and Whitney Division, Factory Building Addition, Job No. 1509-AO, East Hartford, Connecticut1940Construction Drawings, Architectural, Structural, Mechanical, and Electrical25 drawings384United Aircraft Corporation, Pratt and Whitney Division, Compressor Room Addition to Power House, Primary Additions and Revisions, 16 Foot Production Test Cells, Job No. 1509-AP, AS, AV, East Hartford, Connecticut1940Construction Drawings, Architectural, Structural, Mechanical, and Electrical40 drawings385United Aircraft Corporation, Pratt and Whitney Division, Factory Building Addition, Job No. 1509-AY, East Hartford, Connecticut1940Construction Drawings, Architectural, Structural, Mechanical, and Electrical, Reverse Sepia Prints44 drawings386United Aircraft Corporation, Pratt and Whitney Division, 16 Foot Production Test Houses, Job No. 1509-AZ, East Hartford, Connecticut1940Construction Drawings, Architectural, Structural, Mechanical, and Electrical22 drawings387United Aircraft Corporation, Pratt and Whitney Division, Engineering Building Additions, Job No. 1509-BC, East Hartford, Connecticut1941Construction Drawings, Architectural, Structural, Mechanical, and Electrical, Reverse Sepia Prints18 drawings93United Aircraft Corporation, Pratt and Whitney Division, 16 Foot Production Test Houses, Job No. 1509-BD, East Hartford, Connecticut1941Construction Drawings, Architectural, Structural, Mechanical, and Electrical, Reverse Sepia Prints33 drawings391United Aircraft Corporation, Pratt and Whitney Division, Oil Storage Building Addition, Alteration for Additional Stairway in Addition to Factory, Experimental Hangar Addition, Job No. 1509-BF, BH, BK, East Hartford, Connecticut1941Construction Drawings, Architectural, Structural, Mechanical, and Electrical23 drawings392United Aircraft Corporation, Pratt and Whitney Division, Flight Hangar Addition, Single Cylinder Dynamometer Building Addition, 20 Foot Experimental Test Houses, Job No. 1509-BL, BN, BO, East Hartford, Connecticut1941Construction Drawings, Architectural, Structural, Mechanical, and Electrical34 drawings393United Aircraft Corporation, Pratt and Whitney Division, 24 Foot Experimental Test Houses, Engineering Building Addition, Job No. 1509-BP, BR, East Hartford, Connecticut1941Construction Drawings, Architectural, Structural, Mechanical, and Electrical39 drawings394United Aircraft Corporation, Pratt and Whitney Division, Engineering Building Addition, Reinforcing of Trusses for Conveyors, Job No. 1509-BY, BZ, East Hartford, Connecticut1942Construction Drawings, Architectural, Structural, Mechanical, and Electrical18 drawings395United Aircraft Corporation, Pratt and Whitney Division, Single Cylinder Building Addition, Second Floor of Test Engineer's Office, 24 Foot Dynamometer Experimental Test Cell X-19, Job No. 1509-CA, CB, CC, East Hartford, Connecticut1942-1943Construction Drawings, Architectural, Structural, Mechanical, and Electrical22 drawings396United Aircraft Corporation, Pratt and Whitney Division, Temporary Engineering Building, Extensions to Monorail System, Job No. 1509-CE, CF, East Hartford, Connecticut1942-1943Construction Drawings, Architectural, Structural, Mechanical, and Electrical, Reverse Sepia Prints20 drawings397United Aircraft Corporation, Pratt and Whitney Division, Boiler Plant, Sanitary Sewers, Job No. 1509-CH, CJ, CK, East Hartford, Connecticut1943-1944Construction Drawings, Architectural, Structural, Mechanical, and Electrical29 drawings398United Aircraft Corporation, Pratt and Whitney Division, Supercharger Test Cells, 24 Foot Experimental Test Houses, Control Tower at Airport, Job No. 1509-CL, CM, CO, East Hartford, Connecticut1943-1944Construction Drawings, Architectural, Structural, Mechanical, and Electrical31 drawings399United Aircraft Corporation, Pratt and Whitney Division, Installation Engineering Laboratory Building, Job No. 1509-CQ, East Hartford, Connecticut1944-1945Construction Drawings, Architectural and Structural22 drawings3910United Aircraft Corporation, Pratt and Whitney Division, Installation Engineering Laboratory Building, Job No. 1509-CQ, East Hartford, Connecticut1944-1945Construction Drawings, Mechanical and Electrical34 drawings3911United Aircraft Corporation, Pratt and Whitney Division, Experimental Hangar Addition, Cafeteria Building at Airport, Job No. 1509-CR, CV, East Hartford, Connecticut1943-1945Construction Drawings, Architectural, Structural, Mechanical, and Electrical22 drawings3912United Aircraft Corporation, Pratt and Whitney Division, Eight 18 Foot Test Cells South of Job 1509-BG, Job No. 1509-CW, East Hartford, Connecticut1944-1945Construction Drawings, Architectural and Structural26 drawings401United Aircraft Corporation, Pratt and Whitney Division, Eight 18 Foot Test Cells South of Job 1509-BG, Job No. 1509-CW, East Hartford, Connecticut1944-1945Construction Drawings, Mechanical and Electrical34 drawings402United Aircraft Corporation, Pratt and Whitney Division, Monorails and Hoists for Jobs 1509-AY, BG, CW, New High Pressure Steam Line from Boiler House to Wind Tunnel, Job No. 1509-CX, CY, East Hartford, Connecticut1944-1945Construction Drawings, Architectural and Mechanical6 drawings403United Aircraft Corporation, Pratt and Whitney Division, Tunnels, Thermodynamics Laboratory, Job No. 1509-D, DC, East Hartford, Connecticut1929, 1944-1945Construction Drawings, Architectural, Structural, Mechanical, and Electrical24 drawings404United Aircraft Corporation, Pratt and Whitney Division, Jet Cooling for Eighteen 12 Foot Test Cells, Reconversion of 12 Foot Test Cells 9 and 11 for Jet Propulsion, Engineering Studies in Connection with Proposed Engine Development Laboratory, Job No. 1509-DD, DK, DM, East Hartford, Connecticut1945-1946Construction Drawings, Architectural, Mechanical, and Electrical28 drawings405United Aircraft Corporation, Pratt and Whitney Division, Engine Development Laboratory, Job No. 1509-DO, East Hartford, Connecticut1948-1949Construction Drawings, Architectural25 drawings406United Aircraft Corporation, Pratt and Whitney Division, Engine Development Laboratory, Job No. 1509-DO, East Hartford, Connecticut1948-1950Construction Drawings, Structural31 drawings407United Aircraft Corporation, Pratt and Whitney Division, Engine Development Laboratory, Job No. 1509-DO, East Hartford, Connecticut1948-1949Construction Drawings, Mechanical and Electrical34 drawings408United Aircraft Corporation, Pratt and Whitney Division, Dynamometer and Refrigerating Building, X-Ray Division Addition, Job No. 1509-DP, DQ, East Hartford, Connecticut1946-1947Construction Drawings, Architectural, Structural, Mechanical, and Electrical40 drawings409United Aircraft Corporation, Pratt and Whitney Division, Dynamometer Control, Ventilation of Temporary Engineering Building, Power House Addition, Job No. 1509-DR, DT, DX, East Hartford, Connecticut1947-1950Construction Drawings, Architectural, Structural, Mechanical, and Electrical40 drawings4010United Aircraft Corporation, Pratt and Whitney Division, Research Department Burner Test Rig, Job No. 1509-DS, East Hartford, Connecticut1948-1949Construction Drawings, Architectural, Mechanical, and Electrical23 drawings411United Aircraft Corporation, Pratt and Whitney Division, Eight 20 Foot Test Cells, Carburetor Air Box Building and Revisions to Monorail System to 16 Foot Test Cells, Job No. 1509-EA, East Hartford, Connecticut1951-1952Construction Drawings, Architectural25 drawings412United Aircraft Corporation, Pratt and Whitney Division, Eight 20 Foot Test Cells, Carburetor Air Box Building and Revisions to Monorail System to 16 Foot Test Cells, Job No. 1509-EA, East Hartford, Connecticut1951-1952Construction Drawings, Mechanical35 drawings413United Aircraft Corporation, Pratt and Whitney Division, Eight 20 Foot Test Cells, Carburetor Air Box Building and Revisions to Monorail System to 16 Foot Test Cells, Job No. 1509-EA, East Hartford, Connecticut1951Construction Drawings, Structural and Electrical22 drawings414United Aircraft Corporation, Pratt and Whitney Division, Additions to Cells X-22 to X-25 Inclusive, Willgoos Laboratory Test Cells X-207, X-208, and X-209, Job No. 1509-EB, ED, East Hartford, Connecticut1952-1953Construction Drawings, Architectural, Structural, Mechanical, and Electrical46 drawings415United Aircraft Corporation, Pratt and Whitney Division, Cell X-20 and X-21 Alterations and Additions, Willgoos Laboratory Air Facilities Expansion Exhausters and Compressors, Job No. 1509-EE, EF, EH, East Hartford, Connecticut1952-1953Construction Drawings, Architectural, Structural, and Electrical23 drawings416United Aircraft Corporation, Pratt and Whitney Division, Electrical Work for Refrigeration Compressors, Additions to Preparation Room and Train Shed Adjacent to Cell 67, Addition and Alterations to 24 Foot Test Cells, Ventilation of Basement Areas, Job No. 1509-EJ, EL, EM, EN, East Hartford, Connecticut1953-1954Construction Drawings, Architectural, Structural, Mechanical, and Electrical28 drawings417United Aircraft Corporation, Pratt and Whitney Division, Addition to North Side of Thermodynamics Office Building, Test Cells X-212 and X-213, Job No. 1509-EP, EQ, East Hartford, Connecticut1953-1954Construction Drawings, Architectural, Structural, Mechanical, and Electrical21 drawings418United Aircraft Corporation, Pratt and Whitney Division, Ventilating Stack between Silencers, New Pumping Station, Underground Communication Center, New Soundproofing of Test Cells in North Area, Job No. 1509-ER, EU, EV, EW, East Hartford, Connecticut1953-1955Construction Drawings, Architectural, Structural, Mechanical, and Electrical24 drawings419United Aircraft Corporation, Pratt and Whitney Division, Production Cells 67, 68, 73 Alterations and Additions, Experimental Test Cell X-15 Alterations, Computation Lab and Extensions to Present Buildings, Job No. 1509-EY, EZ, FB, East Hartford, Connecticut1955-1956Construction Drawings, Architectural, Structural, Mechanical, and Electrical45 drawings4110United Aircraft Corporation, Pratt and Whitney Division, Willgoos Laboratory Engine Development Facilities II, Job No. 1509-FC, East Hartford, Connecticut1957-1958Construction Drawings, Architectural22 drawings421United Aircraft Corporation, Pratt and Whitney Division, Willgoos Laboratory Engine Development Facilities II, Job No. 1509-FC, East Hartford, Connecticut1957-1958Construction Drawings, Architectural25 drawings422United Aircraft Corporation, Pratt and Whitney Division, Willgoos Laboratory Engine Development Facilities II, Job No. 1509-FC, East Hartford, Connecticut1957-1958Construction Drawings, Structural28 drawings423United Aircraft Corporation, Pratt and Whitney Division, Willgoos Laboratory Engine Development Facilities II, Job No. 1509-FC, East Hartford, Connecticut1957-1959Construction Drawings, Mechanical and Electrical33 drawings424United Aircraft Corporation, Pratt and Whitney Division, Willgoos Laboratory Fuel Systems Lab, Unloading Dock and Pipe Trestle, New Sanitary Sewer for D.E. Lab and Sea Level Test Cells, Job No. 1509-FD, FE, FF, East Hartford, Connecticut1956-1957Construction Drawings, Architectural, Structural, Mechanical, and Electrical31 drawings425United Aircraft Corporation, Pratt and Whitney Division, Power House Alterations and Additions, Job No. 1509-FH, East Hartford, Connecticut1957Construction Drawings, Architectural, Structural, Mechanical, and Electrical39 drawings426United Aircraft Corporation, Pratt and Whitney Division, Structural Changes for New Compressor, Air Conditioning Work, Test Cell 69, Gas Generator Test Cell X-233, Test Cells X-95 and X-96 Alterations and Additions, Job No. 1509-FK, FL, FO, FS, FT, East Hartford, Connecticut1958-1965Construction Drawings, Architectural, Structural, Mechanical, and Electrical22 drawings427United Aircraft Corporation, Pratt and Whitney Division, Power House South Addition, Test Stand X-18 Alterations, Job No. 1509-FV, FX, East Hartford, Connecticut1966-1967Construction Drawings, Architectural, Structural, Mechanical, and Electrical43 drawings428United Aircraft Corporation, Pratt and Whitney Division, Factory Addition, Job No. 1509-G, East Hartford, Connecticut1936Construction Drawings, Architectural, Structural, Mechanical, and Electrical28 drawings429United Aircraft Corporation, Pratt and Whitney Division, Engine Altitude Test Facility X-218, Job No. 1509-GD, East Hartford, Connecticut1978Construction Drawings, Architectural, Structural, Mechanical, and Electrical, Reverse Sepia Prints87 drawings94United Aircraft Corporation, Pratt and Whitney Division, Office Building Addition, Ventilation of Offices in Experimental Building, Dynamometer Test Building Alterations and Additions, Factory Extension and Craneway, Job No. 1509-H, K, L, M, East Hartford, Connecticut1936Construction Drawings, Architectural, Structural, Mechanical, and Electrical33 drawings4210United Aircraft Corporation, Pratt and Whitney Division, New Test House, Study of Tunnels, Piping, for Future Possible Plant Extensions, Job No. 1509-O, P, East Hartford, Connecticut1937Construction Drawings, Architectural, Structural, and Mechanical22 drawings4211United Aircraft Corporation, Pratt and Whitney Division, Water Brake Test House, Alterations and Additions to Present Factory and Administration Buildings, Carburetor Testing Building, Job No. 1509-R, V, W, East Hartford, Connecticut1937-1939Construction Drawings, Architectural, Structural, Mechanical, and Electrical40 drawings431United Aircraft Corporation, Pratt and Whitney Division, 18 Foot Test Houses, Job No. 1509-X, East Hartford, Connecticut1939-1941Construction Drawings, Architectural, Structural, Mechanical, and Electrical24 drawings432United Aircraft Corporation, Pratt and Whitney Division, 18 and 24 Foot Experimental Test Houses, Job No. 1509-Y, East Hartford, Connecticut1939Construction Drawings, Architectural, Structural, Mechanical, and Electrical25 drawings433United Aircraft Corporation, Pratt and Whitney Division, Third Floor of Engineering Building, Job No. 1509-Z, East Hartford, Connecticut1939Construction Drawings, Architectural, Structural, Mechanical, and Electrical16 drawings434Detroit House of Correction, Administration Building, Visiting and Registration Building, Power House, Job No. 1513 1513-A, Plymouth, Michigan1930Construction Drawings, Architectural, Structural, Mechanical, and Electrical32 drawings78Detroit House of Correction, Cell Block Building, Job No. 1513-B, 1513-D, Plymouth, Michigan1930Construction Drawings, Architectural, Structural, Mechanical, and Electrical20 drawings79Detroit House of Correction, Hospital Workshop and Punishment Cells Building, Job No. 1513-C, Plymouth, Michigan1930Construction Drawings, Architectural, Structural, Mechanical, and Electrical13 drawings80Detroit House of Correction, Auditorium, Dining Room, and Kitchen Building, Factory Building, Job No. 1513-E, 1513-F, Plymouth, Michigan1930Construction Drawings, Architectural, Structural, Mechanical, and Electrical21 drawings81Detroit House of Correction, Power House, Job No. 1513-G, Plymouth, Michigan1930Construction Drawings, Architectural, Structural, and Mechanical23 drawings3418Detroit House of Correction, Institutional Walls, Steam and Return Underground Line from New Power House to Women's Division, Job No. 1513-H, 1513-O, Plymouth, Michigan1930Construction Drawings, Architectural and Mechanical5 drawings82Detroit House of Correction, Dormitories, Revised Plans for Administration and Registration Building, Job No. 1513-J, 1513-K, Plymouth, Michigan1930Construction Drawings, Architectural, Strutural, Mechanical, and Electrical34 drawings351Detroit House of Correction, Revised Plans for Dining Hall and Kitchen, Revised Plans for Cell Block Building, Job No. 1513-L, 1513-M, Plymouth, Michigan1930Construction Drawings, Architectural, Structural, Mechanical, and Electrical28 drawings352Detroit House of Correction, Revised Plans for Boiler House, Tunnel and Tunnel Piping between Power House--New and Old Buildings, Alterations to Present Transformer Bank, Underground Conduit System, Lighting of Grounds, Outside Main Sanitary and Storm Water Sewers, Addition to Underground Secondary Distribution, Job No. 1513-N, 1513-P, 1513-Q, 1513-R, 1513-S, 1513-T, 1513-U, Plymouth, Michigan1930Construction Drawings, Architectural, Structural, Mechanical, and Electrical25 drawings353New York Times, Annex Addition, Job No. 1528, New York, New York1930-1931Construction Drawings by Albert Kahn, Inc.Architectural Drawings10/7/1930Ink-on-linen drawings with pencil notations, 24-1/2x46 inchesPlot Plan (1)revised 2/20/1931158Excavation Plan (1-A)7/17/1930revised 9/27/1930Pencil-on-vellum drawing, 24x44 inches158Plans of Foundation, Sub-Basement and Basement (2)revised 2/20/1931158Plans of Basement Mezzanine, First Floor and First Floor Mezzanine (3)revised 8/7/1931158Plans of Second, Third and Fourth Floors (4)revised 4/1/1931158Plans of Fifth, Sixth and Seventh Floors (5)revised 7/31/1931158Plans of Eighth, Ninth and Tenth Floors (6)revised 3/17/1931158Plans of Eleventh, Twelfth and Thirteenth Floors (7)revised 3/3/1931158Plans of Fourteenth and Fifteenth Floors, Fifteenth Floor Mezzanine, Upper Part of Studio and Roof (8)revised 4/28/1931158West 43rd Street (South) Elevation (9)revised 1/12/1931158North Elevation (10)revised 1/12/1931158West Elevation (11)revised 1/12/1931158Cross-Section at "A-A" (12)revised 10/27/1930158Details of 43rd Street Elevation above Thirteenth Floor (13)revised 1/12/1931158Details of 43rd Street Elevation, Ninth to Twelfth Floors (14)revised 10/27/1930158Details of 43rd Street Elevation, First to Fourth Floors (15)revised 1/12/1931159Detail of Upper Portion of West Elevation (16)revised 2/20/1931159Details of North Elevation, Second to Twelfth Floors (17)revised 1/12/1931159Sections thru' Tower at Stair and Elevator (18)revised 2/20/1931159Details for Photographic Studio (19)revised 11/5/1930159Section of Lower Floors (20)revised 1/12/1931159Details of Stairs #1 & 3, Transformer Vaults and Men's Toilets (21)revised 2/7/1931159Details of First Floor Lobby and Elevators (22)revised 1/12/1931159Details of Stair #2 (23)revised 2/7/1931159Details of Elevator Shaft, Overhead Doors and Miscellaneous (24)revised 12/7/1930159Details of Driveway, Fan Room and Stairs (25)revised 1/12/1931159Details of Metal Partitions, Roller Locker, Trap Door, Women's Toilets and Miscellaneous (26)revised 1/12/1931159Details of Private Offices, Fourteenth Floor (27)revised 4/28/1931159Details of Visitors' Balcony in Press Room (30)1/12/1931Ink-on-vellum drawing, 24x35 inches159Structural Drawings9/20/1930Pencil-on-linen drawings with pencil notations, 24-3/4x46 inchesPlans and Sections of Basement Underpinning (0-S)7/16/1930Pencil-on-vellum drawing, 23-1/2x44 inches1510Schedule of Columns and Bases (1-S)revised 10/22/19301510Schedule and Details of Columns and Bases (2-S)revised 10/22/19301510Framing Plans of Basement and Basement Mezzanine (3-S)revised 11/5/19301510Framing Plans of First Floor, First Floor Mezzanine and Second Floor (4-S)revised 10/31/19301510Framing Plans of Third, Fourth and Fifth Floors (5-S)revised 10/22/19301510Framing Plans of Sixth, Seventh and Eighth Floors (6-S)revised 10/22/19301510Framing Plans of Ninth, Tenth and Eleventh Floors (7-S)revised 10/22/19301510Framing Plans of Twelfth, Thirteenth and Fourteenth Floors (8-S)revised 11/5/19301510Framing Plans of Fifteenth Floor Penthouse and Roof and Sections of Roof (9-S)revised 2/7/19311510Wind Bracing Details (10-S)revised 10/22/19301510Mechanical Drawings10/2/1930Ink-on-linen drawings with pencil notations, 24-3/4x46 inchesPlans of Foundation and Fan Room and Details (1-M)revised 3/5/19311511Plans of Sub-Basement and Basement (2-M)1511Basement Mezzanine Floor Plan (3-M)revised 3/19/19311511Plans of First Floor, First Floor Mezzanine and Second Floor (4-M)revised 1/31/19311511Plans of Third, Fourth and Fifth Floors (5-M)revised 7/21/19311511Plans of Sixth, Seventh and Eighth Floors (6-M)revised 6/1/19311511Plans of Ninth, Tenth and Eleventh Floors (7-M)revised 3/5/19311511Plans of Twelfth and Thirteenth Floors and Fifteenth Floor Pipe Space (8-M)revised 3/5/19311511Plans of Fourteenth and Fifteenth Floors and Fifteenth Floor Mezzanine and Details (9-M)revised 1/31/19311511Heating Riser Diagram (10-M)revised 1/31/19311511Riser Diagram for Stand-Pipe System (11-M)Pencil-on-vellum drawing, 23-3/4x48 inches1511

    (not dated due to vellum damage)

    Electrical Drawings11/25/1930Ink-on-linen drawings with pencil notations, 24-3/4x46 inchesPlot Plan and Plans of Sub-Basement and Basement (1-E)revised 9/4/19311512Plans of Basement Mezzanine, First Floor and First Floor Mezzanine (2-E)revised 4/10/19311512Plans of Second, Third and Fourth Floors (3-E)revised 4/20/19311512Plans of Fifth, Sixth and Seventh Floors (4-E)revised 1/20/19311512Seventh Floor Plan Only (4-ER)undated20x25 inches1512Plans of Eighth, Ninth and Tenth Floors (5-E)revised 4/10/19311512Plans of Eleventh, Twelfth and Thirteenth Floors and Fan Room (6-E)revised 3/6/19311512Plans of Fourteenth and Fifteenth Floors, Fifteenth Floor Mezzanine, Studio and Roof (7-E)revised 4/28/19311512Light and Power Riser Diagrams (8-E)revised 9/4/19311512Details of Secondary Switchboards and Press Panels (9-E)11/28/1930revised 3/10/19311512
    New York Times, Annex Alterations, Job No. 1528-A, New York, New York1931-1932Construction DrawingsArchitectural Drawings by Albert Kahn, Inc.4/15/1931ink-on-linen drawings, 24-3/4x45-3/4 inchesPlot Plan and Door Schedule (1)226Sub-Basement Plan and Schedule of Stairways Extent and Change (2)226Basement Plan (3)revised 11/3/1931226Basement Mezzanine Plan (4)revised 11/3/1931226First Floor Plan and Miscellaneous Details (5)revised 10/16/1931226First Floor Mezzanine Plan and Sections thro' Stair No. 6 and Elevator No. 9 (6)revised 8/8/1931226Second Floor Plan and Folding Door Details (7)revised 9/12/1931226Third Floor Plan (8)revised 9/12/1931226Fourth Floor and Fourth Floor Mezzanine Plans (9)revised 9/12/1931226Fifth Floor Plan (10)revised 10/5/1931226Sixth Floor Plan (11)revised 10/16/1931226Seventh Floor Plan (12)revised 10/16/1931226Eighth Floor Plan (13)revised 10/16/1931226Ninth Floor Plan and Miscellaneous Details (14)revised 10/16/1931226Tenth Floor Plan (15)revised 10/16/1931227Eleventh Floor Plan and Miscellaneous Details (16)revised 7/30/1931227Twelfth Floor Plan (17)revised 9/12/1931227Thirteenth and Fourteenth Floor Plans (18)revised 9/25/1931227Interior Elevations of Second Floor Rooms (19)revised 7/21/1931227Interior Elevations of Third Floor Rooms (20)revised 7/20/1931227Miscellaneous Interior Elevations (21)revised 9/14/1931227Plan and Elevations of Publisher's Dining Rooms, Eleventh Floor (22)revised 7/20/1931227Interior Elevations of Eleventh Floor (23)revised 7/24/1931227Interior Elevations of Serving Rooms (24)227Miscellaneous Interior Elevations (25)revised 7/30/1931227Details of Eleventh and Fourteenth Floor Rooms (26)revised 5/12/1931227Details of Fan Rooms (44)9/25/1931ink and pencil drawing on vellum, 23-1/2x38-1/2 inches227Mechanical Drawings by Albert Kahn, Inc., Architects & Engineers1/13/1931ink-on-linen drawings with pencil notations, 24-3/4x45-1/4 inchesSub-Basement Plan (1-M)228Basement Plan (2-M)228Basement Mezzanine Plan (3-M)228First Floor Plan (4-M)revised 10/22/1931228First Floor Mezzanine Plan (5-M)revised 9/18/1931228Second Floor Plan (6-M)revised 8/7/1931228Third Floor Plan (7-M)revised 10/1/1931228Fourth Floor Plan (8-M)revised 10/1/1931228Fifth Floor Plan (9-M)revised 10/22/1931228Sixth Floor Plan (10-M)revised 10/22/1931228Seventh Floor Plan (11-M)revised 10/22/1931228Eighth Floor Plan (12-M)revised 10/22/1931228Ninth Floor Plan (13-M)revised 10/22/1931228Tenth Floor Plan (14-M)revised 10/22/1931229Eleventh Floor Plan (15-M)revised 10/2/1931229Plan of Eleventh Floor Pipe Space (16-M)revised 10/2/1931229Twelfth Floor Plan (17-M)revised 9/3/1931229Thirteenth and Fourteenth Floor Plans (18-M)revised 9/23/1931229Plans of Fifteenth Floor and Tower Pent House Floors (19-M)undatedpencil-on-vellum drawing, 23-1/2x44-1/2 inches229Plan of Kitchen Layout on Eleventh Floor (20-M)revised 6/8/1931pencil-on-vellum drawing, 23-1/2x44-1/2 inches229Fan Room Details (21-M)4/16/1931pencil-on-vellum drawing, 23-1/2x44-1/2 inches229Sub-Basement Plan (22-M)6/4/1931229Basement Plan (23-M)6/4/1931229Basement Mezzanine Plan (24-M)6/4/1931229Details and Sections (25-M)6/4/1931229Ventilation Details (26-M)6/12/1931229Ventilation Details (27-M)undated229Electrical Drawings by Albert Kahn, Inc., Architects7/13/1931black and yellow ink drawings on linen with pencil notations, 24-1/2x41-1/2 to 25x44 inchesSub-Basement Plan (1-E)2210Basement Plan (2-E)2210Basement Mezzanine Plan (3-E)2210First Floor Plan (4-E)revised 10/22/19312210First Floor Plan (4-ER)revised 1/20/19322210First Floor Mezzanine Plan (5-E)revised 8/7/19312210Second Floor Plan (6-E)revised 8/3/19312210Second Floor Plan (6-ER)revised 1/20/19322210Third Floor Plan (7-E)revised 10/6/19312210Third Floor Plan (7-ER)revised 1/19/19322210Fourth Floor and Fourth Floor Mezzanine Plans (8-E)revised 8/7/19312210Fourth Floor and Fourth Floor Mezzanine Plans (8-ER)revised 1/21/19322210Fifth Floor Plan (9-E)revised 8/7/19312210Fifth Floor Plan (9-ER)revised 1/20/19322210Sixth Floor Plan (10-E)revised 7/21/19312210Sixth Floor Plan (10-ER)revised 1/25/19322210Seventh Floor Plan (11-E)revised 10/24/19312211Eighth Floor Plan (12-E)2211Eighth Floor Plan (12-ER)revised 1/25/19322211Ninth Floor Plan (13-E)2211Ninth Floor Plan (13-ER)revised 1/26/19322211Tenth Floor Plan (14-E)revised 10/22/19312211Tenth Floor Plan (14-ER)revised 1/26/19322211Eleventh Floor Plan (15-E)revised 8/20/19312211Eleventh Floor Plan (15-ER)revised 1/26/19322211Twelfth Floor Plan (16-E)revised 8/7/19312211Twelfth Floor Plan (16-ER)revised 1/26/19322211Thirteenth and Fourteenth Floor Plans (17-E)revised 10/6/19312211Thirteenth and Fourteenth Floor Plans (17-ER)revised 1/19/19322211Autostroy Corporation, Assembly Building, Job No. 1532, Moscow, U.S.S.R.1929Construction Drawings by Albert Kahn, Inc., ArchtitectsArchitectural Drawings9/10/1929revised 9/21/1929Ink-on-linen drawings with pencil notations, 32x49inchesTitle Sheet176Foundation Plan (1)revised 10/16/1929176Foundation Details (2)revised 10/22/1929176First Floor Plan (3)revised 10/22/1929176Second Floor and Roof Plan (4)revised 10/10/1929176Elevations (5)176Cross-Sections thru' Building (6)176Cross-Sections "A-A" and "B-B" and Longitudinal Section Details of Elevated Locker Rooms, Showers, Etc., Adjacent to Offices (7)Reverse sepia print176Exterior Walls and Roof Details (8)176Exterior Walls and Roof Details (9)176Exterior Walls and Roof Details (10)176Plan, Section and Details of Office (11)revised 10/16/1929176Toilet Details (12)176Details of Stairs #1 &2 (13)176Door Details (14)176Door Details (15)176Expansion Joint Details (16)176Details of Elevated Toilet and Locker Rooms (17)176Details of Battery Rooms and Pump Pit (18)10/22/1929176Ann J. Kellogg School, Job No. 1549, Battle Creek, Michigan1930Design Development Architectural Drawings by Albert Kahn, Inc., Architectsundatedink-on-linen drawings, 18x24 inchesFirst Floor Plan (1)319Second Floor Plan (2)319Construction DrawingsArchitectural Drawings by Albert Kahn, Inc., Architects, except as noted3/1/1930ink-on-linen and pencil-on-vellum drawings, 30x46-1/2 inchesPlot Plan (1)4/11/1930revised 6/11/1930319Basement and Foundation Plan and Details of Treatment Pool and Gymnasium (2)revised 7/7/1930319First Floor Plan (3)revised 6/11/1930319Second Floor Plan (4)revised 8/2/1930319Roof Plan and Details of Skylight and Dormer (5)revised 4/11/1930319South, East and West Elevations (6)revised 4/11/1930319North Elevation and Sections (7)revised 8/2/1930319Details of Exterior (8)revised 3/29/1930319Details of Stairs (9)319Elevations of Kindergarten and First Grade Exterior Walls and Miscellaneous Sections (10)revised 3/15/1930319Miscellaneous Details (11)revised 6/11/1930319Case Details (12)revised 6/11/1930319Structural Drawings by Albert Kahn, Inc., Architects3/3/1930ink-on-linen drawings, 30-1/4x46-3/4 inchesFirst Floor Framing Plan and Column and Beam Schedules (1-S)revised 4/23/1930319Second Floor Framing Plan and Beam Schedule (2-S)revised 3/29/1930319Roof Framing Plan and Beam Schedule (3-S)revised 3/29/1930319Mechanical Drawings by Albert Kahn, Inc., Architects & Engineers3/1/1930ink-on-linen drawings, 30-1/4x47 inchesBasement and Foundation Plan (1-M)revised 6/18/1930319First Floor Plan and Typical Cross-Section (2-M)revised 6/27/1930319Second Floor Plan (3-M)revised 6/27/1930319Details (4-M)revised 6/18/1930319Electrical Drawings by Albert Kahn, Inc., Architects & Engineers, except as noted3/1/1930ink-on-linen drawings, 30-1/4x48 inchesBasement Plan and Riser Diagrams (1-E)revised 8/6/1930319First Floor Plan (2-E)revised 11/20/1930319Second Floor Plan (3-E)revised 8/6/1930319Details of Transformer Layout (4-E)4/22/1930319Albert Kahn, Inc., Offices, Job No. 1559, Moscow, U. S. S. R.1930Construction Drawings by Albert Kahn, Inc.Architectural Drawings2/13/1930Blueprints written in Russian, 25-1/2x31 inchesFloor Plan (1)153Floor Plan (2)153Elevations (3)153Details (4)153Structural Drawing8/11/1930Pencil-on-vellum drawing in English, 19x35 inchesFoundation Plans and Sections (100-S)153Autotrust Corporation, Forge Shop, Job No. 1563, Moscow, U.S.S.R.1930Construction Drawings by Albert Kahn, Inc., ArchitectsArchitectural Drawings3/7/1930Ink-on-linen drawings with pencil notations, 32-1/4x53 inchesFoundation, First Floor and Roof Plans (1)34Elevations and Details of Walls, Roof Sump and Monitor (2)Reverse sepia print34Cross-Section thru' Building and Exterior Details (3)34Details of Expansion Joint and Metal Curtains (4)34Structural Drawings3/7/1930Ink-on-linen drawings, 32-1/4x53 inchesPlan and Details of Anchor Bolt Setting (1-S)34Framing Plans and Elevations (2-S)34Cross-Sections and Details (3-S)revised 3/26/193034Cheliatractorstroy Tractor Plant, Job No. 1573, Cheliabinsk, U.S.S.R.1930Construction DrawingsArchitectural Drawing by Albert Kahn, Inc., Architects7/17/1930Ink-on-linen drawing, 29x58-3/4 inchesPlot Plan34Mechanical Drawing by Albert Kahn, Inc., Architects & EngineersundatedInk-on-vellum drawing, 25x33-1/2 inchesFlow Diagram for 10,500 K.W. Power Plant (1-X)182Stalmost Steel Fabricating Plant, Job No. 1579 and 1579-F, Upper Solda Near Nijni Tagil, U.S.S.R.1931Construction Drawings by Albert Kahn, Inc., Architects (Job No. 1579)Structural Drawings1/28/1931revised 2/25/1931Blueprints, 33x48 inchesForge Shop Plans, Elevations and Sections (1-S)177Forge Shop Sections and Details (2-S)177Machine Shop Sections and Details (3-S)177Machine Shop Plans and Sections (4-S)177Erection Shed Plans and Elevations (5-S)177Erection Shed Sections and Details (6-S)177Receiving Yard Half-Roof Framing Plan and Longitudinal Sections (7-S)177Receiving Yard Half-Roof Framing Plan and Longitudinal Sections (8-S)177Structural Drawings1/28/1931revised 2/25/1931Blueprints, 33x48 inches)Receiving Yard Half-Bottom Chord Plan and Longitudinal Sections (9-S)177Receiving Yard Half-Bottom Chord Framing Plan and Longitudinal Sections (10-S)177Receiving Yard Sections and Truss and Column Details (11-S)177Receiving Yard West Elevation, Sections, Truss Details and Column Schedule (12-S)177Receiving Yard Truss Details (13-S)177Receiving Yard Truss Details (14-S)177Shipping Yard Half-Roof and Bottom Chord Plans (15-S)178Shipping Yard Half-Roof and Bottom Chord Plans (16-S)178Shipping Yard Elevation and Sections (17-S)178Shipping Yard Sections, Column Schedule and Details (18-S)178Shipping Yard Sections and Truss Details (19-S)178Shipping Yard Truss Details (20-S)178Shop #2 Top Chord Bracing Plan (21)178Shops #1 & 2 Top Chord Bracing Plan (22)178Bridge ShopTop Chord Bracing Plan, Third Section (23-S)178Shop #2 Bottom Chord and Crane Girder Bracing Plan and Sections (24-S)178Shops #1 & 2 Bottom Chord Plan and Sections (25-S)178Tank and Shop #1 Bottom Chord Girde r Bracing Plan and South Elevation (26-S)178Shop #2 Monitor Framing Plan (27-S)178Shops #1 & 2 Monitor Framing Plan (28-S)178Tank and Shop #1 Monitor Framing Plan and South Elevation of Monitors (29-S)178Bridge Shop Truss Details (30)179Crane Truss Details (31)179Bridge Shop Expansion Joint Truss and Crane Support Details (32-S)179Typical Sections thru' Shops #1 & 2 (33-S)179Typical Sections thru' Shops #1 & 2 (34)179Bridge Shop Column Schedule (35-S)179Shops #1 & 2 Miscellaneous Plans and Details (36-S)179Galvanizing Shed Details (37-S)179Footing Plan (38-S)179Footing Index and Details (39-S)179Footing Schedule (40-S)179Tunnel and Foundation Details (41-S)179Receiving Yard Part Framing Plans and Sections (42-S)3/13/1931179Shipping Yard Part Plans and Sections (43-S)3/13/1931179Transformer Room Framing Details (44-S)4/27/193130-3/4x47-1/2 inches179Plan of Columns 15 and 15-A (Y-1)2/27/193128x41 inches1710Plan of Columns 50 and 50-1/2 (Y-2)2/27/193128-1/2x42 inches1710Typical Footings (Y-3)3/9/193117-1/2x50-1/4 inches1710Typical Footings (Y-4)3/9/193117-1/2x29 inches1710Framing Plan #1 of Transformer Room (Y-5)3/21/193114-1/4x24 inches1710Diagram of Crane Data, II4/14/193111x25-3/4 inches1710Jib Crane Details (1-C)4/15/193116-3/4x34-1/2 inches1710Construction Drawings (Job No. 1579-F)Architectural Drawings by Albert Kahn, Inc., Architects2/5/1931Blueprints, 32-1/2x48 inchesFirst Floor, Balcony and Roof Plans1711

    (not numbered due to paper damage)

    Elevations, Sections and Details1711

    (not numbered due to paper damage)

    Exterior and Expansion Joint Details (3-44)1711Door and Toilet Details (4-44)1711
    Structural Drawings by Albert Kahn, Inc., Architects2/5/1931Blueprints, 32-3/4x38 inchesErection Equipment Shed Sections and Details (1-S)1711Erection Equipment Shed Plans, Sections, and Material and Column Schedules (2-S)1711Erection Equipment Shed Foundation Plan, Sections and Details (3-S)1711Mechanical Drawings by Albert Kahn, Inc., Architects & Engineers2/18/1931Blueprints, 32-3/4x48 inchesFoundation, First Floor and Balcony Floor Plans, (1-M)1711Erection Equipment Shed Floor Plans, Section and Details (2-M)1711Electrical Drawing by Albert Kahn, Inc., Architects & Engineers1 blueprints (32-1/2x48 inches)3/11/1931Lighting and Power Plans and Section (1-E)1711
    Building for New Center Development Corporation (renamed the Albert Kahn Building), Job No. 1585, Detroit, Michigan1930-1931Construction Drawings, Architectural33 drawings354Building for New Center Development Corporation (renamed the Albert Kahn Building), Job No. 1585, Detroit, Michigan1930-1931Construction Drawings, Structural14 drawings355Building for New Center Development Corporation (renamed the Albert Kahn Building), Job No. 1585, Detroit, Michigan1930-1931Construction Drawings, Mechanical16 drawings356Building for New Center Development Corporation (renamed the Albert Kahn Building), Job No. 1585, Detroit, Michigan1930-1931Construction Drawings, Electrical17 drawings357Building for New Center Development Corporation (renamed the Albert Kahn Building), Alterations, Job No. 1585-D, Detroit, Michigan1940Construction Drawings, Architectural, Structural, Mechanical, and Electrical22 drawings358Building for New Center Development Corporation (renamed the Albert Kahn Building), Alterations to New Center Building for Saks Men's Store, Job No. 1585-E, Detroit, Michigan1944-1946Construction Drawings, Architectural and Structural22 drawings359Building for New Center Development Corporation (renamed the Albert Kahn Building), Alterations to New Center Building for Saks Men's Store, Layout of Air Conditioning Systems for Third, Seventh, and Tenth Floor Areas, Alterations to Second Floor and Exterior of the Albert Kahn Building, Job No. 1585-E, 1585-H, 1585-K, Detroit, Michigan1945-194619531994Construction Drawings, Architectural, Mechanical, and Electrical40 drawings3510
    Job No. 1605-1657Samuel Francis Smith Memorial Monument, Job No. 1605, Belle Isle Park, Detroit, Michigan1931Construction Drawings, Architectural2 drawings4414General Motors Corporation Exhibition Building, "A Century of Progress," Chicago World's Fair, Job No. 16141932-1933Design Development Drawing199Architectural Drawingundatedink-on-linen drawing, 16x22/1/4 inchesFirst Floor Plan199Construction Drawings by Albert Kahn, Inc., ArchitectsArchitectural Drawings4/14/1932ink-on-linen drawings with pencil notations, 29x45 inchesPlot Plan (1)revised 5/13/1932199Basement Plan (2)revised 9/6/1932199First Floor Plan (3)revised 8/8/1932199Plan of Upper Part of Exhibit Space and Part of Roof (4)199Roof Plan (5)199Elevations (6)revised 5/13/1932199West Elevation Details (7)revised 5/13/1932199North Elevation Details (8)revised 5/13/1932199East Elevation Details (9)199Section on Line "D-D" (10)revised 5/13/1932199Sections on Lines "E-E" and "F-F" (11)revised 5/13/1932199Basement Plan (12)revised 10/15/1932199Sections (13)199Sections and Details (14)revised 5/13/1932199Plans of First Floor and Mezzanine Stairs and Offices (15)revised 5/13/1932199Roof Details (16)199Roof Details (17)199Details (18)199Details (19)199Sections and Details (20)revised 5/13/1932199Sections and Elevations (23-A)7/1/1932pencil-on-vellum drawing, 27-3/4x42-3/4 inches199Plans and Sections (24-A)7/1/1932pencil-on-vellum drawing, 27-3/4x42-1/2 inches199Chrysler Corporation, Jefferson Avenue Plant, Additions to Machine Shop Building No. 42, Extension to Building No. 21-A, Job No. 1646-AB, AC, Detroit, Michigan1944-1945Construction Drawings, Architectural, Structural, Mechanical, and Electrical47 drawings95Chrysler Corporation, Jefferson Avenue Plant, Personnel Building, Job No. 1646-AD, Detroit, Michigan1945-1946Construction Drawings, Architectural, Structural, Mechanical, and Electrical21 drawings435Chrysler Corporation, Jefferson Avenue Plant, Extension to Buildings 34, 34-A, and 34-B, Alterations and Additions to Buildings 21 and 21-A, Job No. 1646-AE, AF, Detroit, Michigan1944-1946Construction Drawings, Architectural, Structural, Mechanical, and Electrical32 drawings436Chrysler Corporation, Jefferson Avenue Plant, Additions and Alterations to Building 20, Job No. 1646-AG, Detroit, Michigan1945Construction Drawings, Architectural, Structural, Mechanical, and Electrical12 drawings442Chrysler Corporation, Jefferson Avenue Plant, Storm Water Drainage Revision, Loading Dock and Railroad Track, Conveyor Bridge, Building No. 52-B, Job No. 1646-AH, AJ, AO, AP, Detroit, Michigan1944-1946Construction Drawings, Architectural, Structural, Mechanical, and Electrical38 drawings437Chrysler Corporation, Jefferson Avenue Plant, Second Floor in Building No. 39, Oil Unloading Station and Connecting Tunnel, New Truck Bridge between Building Nos. 1 and 51, Alteration to Doors at North Loading Dock, Job No. 1646-AQ, AT, AV, AW, Detroit, Michigan1945-1946Construction Drawings, Architectural, Structural, Mechanical, and Electrical16 drawings438Chrysler Corporation, Jefferson Avenue Plant, Sales Building Alterations, Elevated Toilet Room, Two Bridges between Buildings 1 and 2, Body Trucking Addition to Building 33-A, Job No. 1646-BA, BC, BD, BE, Detroit, Michigan1947Construction Drawings, Architectural, Structural, Mechanical, and Electrical34 drawings439Chrysler Corporation, Jefferson Avenue Plant, Alterations to Second Floor of Building 21, Extension to Conveyor Housing from Building 34 to 1, Changes to Storm Water Drainage for Building 42, Job No. 1646-BF, BG, BJ, Detroit, Michigan1947-1948Construction Drawings, Architectural, Structural, Mechanical, and Electrical10 drawings4310Chrysler Corporation, Jefferson Avenue Plant, Reinforcing First Floor Switch Room Platform, Addition to Building 52-A Elevated Toilet Room, Transfer, Drilling, and Tapping Machines in Building 42, Job No. 1646-BK, BW, BZ, Detroit, Michigan1948-1950Construction Drawings, Architectural, Structural, and Mechanical9 drawings4311Chrysler Corporation, Jefferson Avenue Plant, Two Story Body Paint Building No. 41, Job No. 1646-CE, Detroit, Michigan1954-1955Construction Drawings, Architectural38 drawings96Chrysler Corporation, Jefferson Avenue Plant, Two Story Body Paint Building No. 41, Job No. 1646-CE, Detroit, Michigan1954-1955Construction Drawings, Architectural38 drawings97Chrysler Corporation, Jefferson Avenue Plant, Two Story Body Paint Building No. 41, Job No. 1646-CE, Detroit, Michigan1954-1955Construction Drawings, Structural17 drawings441Chrysler Corporation, Jefferson Avenue Plant, Two Story Body Paint Building No. 41, Job No. 1646-CE, Detroit, Michigan1954-1955Construction Drawings, Mechanical and Electrical61 drawings98Chrysler Corporation, Jefferson Avenue Plant, Court Building 71, Job No. 1646-CG, Detroit, Michigan1954Construction Drawings, Architectural, Structural, Mechanical, and Electrical32 drawings99Chrysler Corporation, Jefferson Avenue Plant, Boiler House Addition, Job No. 1646-CH, Detroit, Michigan1954-1955Construction Drawings, Architectural, Structural, Mechanical, and Electrical50 drawings443Chrysler Corporation, Jefferson Avenue Plant, Removal and Relocation of Second-Story Concrete Columns in Buildings 2, 2B and 3, Body Conveyor Housing on Roof of Buildings 20 and 33, Job No. 1646-CJ, CK, Detroit, Michigan1954-1955Construction Drawings, Architectural, Structural, and Mechanical6 drawings100Chrysler Corporation, Jefferson Avenue Plant, Machine Shop Alterations and Additions, Heat Treat Building Addition, Job No. 1646-D, G, Detroit, Michigan1936Construction Drawings, Architectural, Structural, Mechanical, and Electrical19 drawings444Chrysler Corporation, Jefferson Avenue Plant, Warehouse Building Addition, Service Building, Job No. 1646-H, J, Detroit, Michigan1936Construction Drawings, Architectural, Structural, Mechanical, and Electrical29 drawings445Chrysler Corporation, Jefferson Avenue Plant, Additions to North and South Ends of Machine Shop, Job No. 1646-K, Detroit, Michigan1937Construction Drawings, Architectural, Structural, Mechanical, and Electrical21 drawings446Chrysler Corporation, Kercheval Avenue Plant, Warehouse Building Addition, Service Building Addition, Job No. 1646-M, O, Detroit, Michigan1937Construction Drawings, Architectural, Structural, Mechanical, and Electrical29 drawings447Chrysler Corporation, Jefferson Avenue Plant, Warehouse Building No. 52 South Addition, Building No. 21 Extension, Building No. 21 Alterations, Monorail System for Warehouse Building, Job No. 1646-P, R, W, Z, Detroit, Michigan1937-1942Construction Drawings, Architectural, Structural, Mechanical, and Electrical26 drawings448Imperial Distillers Products Corporation Rectifying Plant, Job No. 1650, East Jefferson Avenue and Connors Lane, Detroit, Michiganca. 1933Construction Drawings by Albert Kahn Engineering CorporationArchitectural/Mechanical Drawingsundatedink-on-linen drawings, 16x21 inchesSite Plan (1)316Basement Plan (2)316First Floor Plan (3)316Second Floor Plan (4)316Third Floor Plan (5)316Fourth Floor Plan (6)316Fifth Floor Plan (7)316Sixth Floor Plan (8)316Seventh Floor Plan (9)316Longitudinal Section (10)316Cross-Section (11)316Details of Boiler and Pump Connections, Gin Stills and Storage Tank (12)316Ford Motor Company "Century of Progress" Exposition Buildings, Job No. 1657, A, B and C, Chicago, Illinois1934Exposition Building (Rotunda) (Job No. 1657)Architectural Construction Drawings by Albert Kahn, Inc., Architects2/10/1934Ink-on-linen drawings with pencil notations, 23-1/2x58-3/4 to 23-3/4x60 inchesPlot Plan (1)revised 2/27/193427Foundation Plan (2)revised 2/27/193427First Floor Plan (3)revised 4/20/193427Balcony Plan (4)revised 3/1/193427Roof Plan (5)revised 2/27/193427East and West Elevations (6)revised 4/25/193427North and South Elevations, Cross-Section on Line "A-A" and Longitudinal Section on Center Line (7)revised 2/27/193427Details of Entrances (8)revised 2/27/193427Typical Cross-Section thru' Main Building and Window Details (9)revised 2/27/193427Sections and Details (10)revised 2/27/193427Details of Stairs and Escalators (11)revised 2/27/193427Plan of Lecture Hall, Wall Sections, Framing Details and Projection Room Details (12)revised 4/5/193427Interior and Exterior Elevations of Court Doors and Windows and Details for Main Entrance and Entrance to Industrial Exhibit (13)revised 4/5/193427Details of Writing Room and Women's Room and Section thru' Historical Exhibition (14)revised 4/5/193427Structural Construction Drawings by Albert Kahn, Inc., ArchitectsInk-on-vellum drawings with pencil notations, 28x56-1/2 inchesRoof Framing Plan (1-S)revised 2/28/193428Balcony Framing Plan (2-S)1/29/1934revised 2/28/193428Footing Plan, South Portion (3-S)2/10/1934revised 2/26/193428Footing Plan, North Portion (4-S)2/10/1934revised 2/26/193428Footing Plan for Museum (5-S)2/20/1934revised 2/26/193420-1/2x30-1/4 inches28Framing at Escalator (6-S)3/20/1934Pencil-on-linen drawing, 17x23-1/2 inches28Mechanical/Electrical Construction Drawings by Albert Kahn, Inc., Architects and EngineersInk-on-linen drawings with pencil notations, 23-1/2x59-1/2 inchesFoundation Plan (1-M)2/1934revised 4/10/193429Section at Foundry Exhaust (1-MX)6/20/1934Pencil-on-vellum drawing, 13-3/4x22 inches29First Floor Plan (2-M)2/21/1934revised 4/10/193429Balcony Floor Plan (3-M)2/21/1934revised 4/5/193429Detail of Conductors at Columns Z-1 to Z-22 and Y-42 to Y-101 and Piping and Coil Arrangement (4-M)2/1934revised 4/5/193429Roof Plan (5-M)3/24/193429East Elevation and Plan of Transformer Room No. 1 (6-M)3/24/193429North, South and West Elevations and Longitudinal and Cross-Sections (7-M)3/24/193429Plan and Section of Globe Pit in Historical Exhibit, Section thru' North End of Building and Details (8-M)3/24/193429Floor Plan of Lecture Hall, Ceiling Plan of Writing Room, Section thru' Historical Exhibit and Details (9-M)2/21/1934revised 3/24/193429Riser Diagram of Switchboard No. 1 and Details of Switchboard Rooms No. 2 & 3 (10-M)3/24/193429Riser Diagram29

    (not numbered or dated due to linen damage)

    Roads of the World Exhibit at Exposition (Job No. 1657-A)Architectural Construction Drawings by Albert Kahn, Inc., ArchitectsPencil-on-tracing paper drawingsSite Plan (1)4/21/193419-1/4x34-3/4 inches1310Details of Roads (2)4/21/193419x34-3/4 inches1310Detail of V.8 to be Painted on Tarvia Track (3)5/7/193417-1/4x27-1/4 inches1310Part Detail of Serpentine at Entrance to Shell (4)5/10/1934Pencil-on-vellum drawing, 13-1/2x25-3/4 inches1310Elevations of China and Germany Signs (5)5/14/193411-3/4x24 inches1310Orchestra Shell at Exposition (Job No. 1657-B)Architectural Construction Drawings by Albert Kahn, Inc, Architects4/20/1934Pencil and ink drawings on tracing paperSite Plan (1)18-3/4x27-1/4 inches1310Elevations and Sections (2)19x27-3/4 inches1310Plans and Elevations (3)Ink and pencil drawing on vellum, 24-1/4x35-1/2 inches1310Half Plan, Cross-Section and Section on Line "X-X" (4)revised 5/14/1934Ink and pencil drawing on vellum, 23-3/4x34 inches1310Details of Light Slot in Arch of Orchestra Shell (5)5/9/193424x31-1/2 inches1310Structural Construction Drawing by Albert Kahn, Inc., Architect4/20/1934Ink-on-vellum drawing, 23-3/4x34 inchesHalf Elevation, Section and Connection Details (1-S)1310Garage at Exposition (Job No. 1657-C)Architectural Construction Drawing by Albert Kahn, Inc., Architects4/12/1934revised 4/20/1934Pencil-on-tracing paper drawing, 16-1/2x36-3/4 inchesSite Plan, Floor Plan and Section "A-A" (1)1310Exposition Building (Job No. 1657-D)Structural Drawing by Albert Kahn, Inc., Architects4/24/1934Pencil and ink drawing on vellum, 18-3/4x27-3/4 inchesDetails of Stack Support-Soy Bean Process (1-S)1310
    Job No. 1706-1743Carillon Tower (now Burton Memorial Tower), University of Michigan, Job No. 1706, Ann Arbor, Michigan1936Construction Drawings by Albert Kahn, Inc., ArchitectsArchitectural Drawings1/8/1936Ink-on-linen drawings with blue ink revisions, 21-1/2x36 inchesPlot Plan (1)revised 7/24/193675Basement and First Floor Plans (2)revised 4/27/193675Second and Third Floor Plans (3)revised 4/27/193675Seventh and Ninth Floor Plans and Details (4)revised 7/3/193675Tenth Floor and Upper Part of Bell Chamber Plans and Details (5)revised 7/24/193675Eleventh Floor and Roof Plans and Details (6)revised 7/3/193675East and North Elevations (7)revised 3/4/1936Original drawing and electrostatic print75Sections "AA" and "BB" (8)revised 3/4/193675Elevation of Lower Floors and Details (9)revised 3/31/193675Elevation of Upper Floors and Details (10)revised 3/31/193675Elevations, Sections and Details (11)revised 7/3/193675Revised Details for Steel Stair (12)3/9/1936revised 4/16/1936Pencil and ink drawing on vellum, 16-1/4x22-1/2 inches75Structural Drawings1/8/1936Pencil-on-vellum drawings with colored ink and pencil revisions, 21-1/2x34-1/2 inches, except as notedFirst, Second and Typical Floor Framing Plans and Details (1-S)76Ninth Floor Framing Plan and Stairs Sections and Details (2-S)76Tenth Floor and Upper Level Bell Chamber Framing Plans and Details (3-S)revised 7/23/193676Eleventh Floor and Roof Framing Plans and Details (4-S)revised 7/23/193676Quarter Plan and Section "AA" (5-S)6/24/193622x33 inches76Detail of Enclosure over New Stairs to Tenth Floor (6-S)7/24/193615-1/4x22-1/4 inches76Plan at Eleventh Floor Stair Opening (7-S)8/29/193617x25-1/4 inches76Proposed Method of Hoisting Bells (100-S)3/30/193622-1/2x30-1/2 inches76Mechanical Drawings1/29/1936Ink-on-linen drawings with pencil and blue ink revisions, 21-1/2x36 inchesBasement and First Floor Plans (1-M)revised 3/30/193677Second and Third Floor Plans and Lighting Riser Diagram (2-M)revised 3/30/193677Fourth and Firth Floor Plans (3-M)revised 3/30/193677Sixth and Seventh Floor Plans (4-M)revised 3/30/193677Eighth and Ninth Floor Plans (5-M)revised 7/24/193677Heating Riser Diagram and Details (6-M)revised 5/21/193677Lobby Heating System (100-M)6/16/1936Pencil-on-vellum drawing, 16-3/4x22-1/4 inches77Supplementary Construction Drawings of Tower (Job No. 1706-A)Architectural DrawingsPencil-on-vellum drawings, 23-1/2x33-3/4 to 24x34-1/2 inchesBasement and First Floor Plans and Column Reinforcing Schedule (1)3/6/1936revised 6/9/193678Elevations of Concrete Walls up to Second Floor Line (2)3/7/1936revised 6/9/193678Framing Plans for Second to Ninth Floors, Inclusive (3)3/10/1936revised 6/16/193678North Elevation, Second to Tenth Floors (4)3/11/1936revised 6/25/193678Plan of Tenth Floor and at Top of Circular Head Windows (5)3/18/1936revised 7/23/193678Elevation of Concrete Structure above Tenth Floor and Details (6)3/16/36revised 8/1/193678Eleventh Floor and Roof Framing [Plans] (7)3/13/1936revised 6/9/193678Part East Elevation above Tenth Floor (8)5/5/1936revised 8/1/193678Burton Memorial Tower Renovation (formerly Carillon Tower), University of Michigan, Quinn Evans Architects, Job No. 1706-B, Ann Arbor, Michigan2000Construction Drawings, Architectural, Structural, Mechanical, and Electrical77 drawings452Chrysler Corporation DeSoto Plant, Welfare and Employment Building, Job No. 1719-A, Wyoming Avenue, Detroit, Michigan1937Construction DrawingsArchitectural Drawings by Albert Kahn, Inc., Architects4/20/1937revised 5/15/1937 except as notedpencil-on-linen drawings, 19x29 inchesPlot Plan and Details of Watchman's Room (1)317Foundation and Basement Plan (2)317Ground Floor Plan (3)revised 7/13/1937317Roof Plan (4)317Elevations and Window and Door Sections (5)317Building Sections and Wall Details (6)317Details of Main Entrance (7)317Details of Vestibule and Toilets (8)317Structural Drawings by Albert Kahn, Inc., Architectspencil-on-vellum drawings, 19x28-1/2 inchesSteel Framing Plan (1-S)4/20/1937revised 5/15/1937317First Floor Plan of Revision of Steel Framing (2-S)6/2/1937317Mechanical Drawings by Albert Kahn, Inc., Architects & Engineers5/11/1937ink-on-linen drawings, 19x29 inches, except as notedFoundation and Basement Plan and Sections (1-M)revised 8/11/1937317First Floor Plan and Details of Heating and Pump Connections (2-M)revised 10/14/1937317Plan and Details of Proposed Revised Fan Room (3-M)6/11/1937pencil-on-vellum drawing, 18-1/2x28 inches317Electrical Drawings by Albert Kahn, Inc., Architects & Engineers5/28/1937revised 7/28/1937ink-on-linen drawings, 19x30 inchesPlot Plan and Part Plan of Basement (1-E)317Ground Floor Plan (2-E)317Chrysler Corporation DeSoto Plant, Third-Story Addition, Job No. 1719-B, Wyoming Avenue, Detroit, Michigan1937Construction DrawingsArchitectural Drawings by Albert Kahn, Inc., Architects, except as noted4/20/1937pencil-on-vellum drawings, 28x48-3/4 inches, except as notedThird Floor Plan (1)revised 6/3/1937318Roof Plan and Details of Expansion Joint (2)revised 5/18/1937318Elevations and Sections (3)revised 5/18/1937318Sections and Typical Wall and Roof Details (4)revised 5/18/1937318Third Floor Plans of Stair and Elevator Towers Nos. 3 & 5 and Sections (5)318Details for New Body Hoist on East Side of Building, Servicing 2nd & 3rd Floors (6)5/12/1937revised 6/3/1937318Details of Fresh Air Intake and Present Roof Fresh Air Supply (7)5/12/1937revised 5/18/193716-1/2x32-1/2 inches318Details of Revised Switchboard and Transformer Rooms (8)6/1/1937revised 6/4/193713-1/2x31-1/4 inches318Plan of New Transformer Slab over First Floor Switch House (9)7/16/193717-3/4x23-1/2 inches318Details of Trenches in Elevator Pits (10)7/31/193712-1/2x24-1/4 inches318Structural Drawings by Albert Kahn, Inc., Architects & Engineers4/20/1937pencil-on-vellum drawings, 28x49 inchesRoof Framing Plan and Column Schedule (1-S)revised 7/8/1937318Truss Details (2-S)revised 6/7/1937318Mechanical Drawing by Albert Kahn, Inc., Architects & Engineers4/26/1937ink-on-linen drawings, 28x49 inchesThird Floor Plan (1-M)revised 7/6/1937318Electrical Drawings by Albert Kahn, Inc., Architects & Engineers28x49 inchesThird Floor Plan (1-E)5/28/1937ink-on-linen drawing318Details of New Transformer Bank and Switchboard Room (2-E)5/29/1937pencil-on-vellum drawing318Lady Esther Manufacturing Building, Job No. 1736-A, Clearing, Illinois1937-1938 and 1944Construction DrawingsArchitectural Drawings by Albert Kahn, Inc., Architects7/31/1937Ink-on-linen drawings with pencil and colored pencil notations, 25-3/4x40-3/4 inchesPlot Plan (1)revised 8/25/1937184Foundation Plan (2)revised 9/23/1937184First Floor Plan (3)revised 8/21/1944184Balcony Floor Plan (4)revised 9/23/1937184Roof Plan (5)revised 8/25/1937184Elevations (6)revised 9/23/1937184Sections, Cross-Sections and Longitudinal Section (7)revised 8/25/1937184First Floor Plan and Section Showing Furred Ceilings (8)revised 8/31/1937184Balcony Plans at Lunch Room and at Offices (9)revised 8/25/1937184Detail of Main Entrance, Section "A-A" and Elevations of Lobby (10)revised 9/9/1937184Details of Main Entrance Door and Vestibule, Main Lobby and Pylon "A" (11)revised 9/23/1937184Typical East and West Wall Section and Details of Monitor Roof and Sashes (12)revised 8/25/1937184Sections and Stair Details (13)revised 8/31/1937184Details of Doors and Depressed Railroad Track (14)8/25/1937184Interior Elevations and Details of Doors and Windows (15)revised 10/25/1937184Section "L-L" thru' Toilets and Details of Ladders over Monitors, Expansion Joints, Flashing in Gunite Walls, and Shower (16)revised 8/25/1937184Details of Scale Pits and Fan Platforms and Louvre Houses (17)revised 8/25/1937184Detail of Receiving Platform Partition and Miscellaneous Details (18)revised 8/25/1937184Structural Drawings by Albert Kahn, Inc., Architects & Engineers7/7/1937Pencil-on-vellum drawings, 23-1/2x40 inchesRoof Framing Plan, Sections and Material Schedule (1-S)revised 8/25/1937185Framing Details and Cross-Section (2-S)revised 8/25/1937185Balcony Framing Plan and Column and Footing Schedule (3-S)revised 9/24/1937185Details of Fan Platforms, Oil Tank Room, Fan and Pump Room and Powder Mixing Platforms (4-S)7/31/1937revised 9/24/1937185Mechanical Drawings by Albert Kahn, Inc., Architects & EngineersundatedInk-on-linen drawings with pencil notations, 25-3/4x40-3/4 inchesFoundation Plan (1-M)revised 10/12/1937185First Floor Plan (2-M)revised 8/31/1937185Balcony Floor Plan (3-M)revised 8/31/1937185First Floor Heating Plan and Details of Coil Connections (4-M)185First Floor Plan and Typical Arrangement of Radiators and Piping-Rouge Department (4-M-Sup)12/30/1944Ink and pencil drawing on vellum, 19-1/4x33 inches185Balcony Ventilation Plan (5-M)185Foundation, First Floor and Fan Room Plans-Office (6-M)185Foundation and First Floor Plans (7-M)10/14/1937Pencil-on-vellum drawing, 25x26-1/2 inches185New Location Detail of Toilet Exhaust Fan (8-M)11/16/1937Pencil drawing on tracing paper, 18x27 inches185Lobby Plan and Section "A-A" (9-M)11/28/1938Pencil-on-vellum drawing, 15-1/2x26-1/2 inches185First Floor Plan and Sections (10-M)Pencil-on-vellum drawing, 25x40-1/2 inches185First Floor Plan and Details (11-M)Pencil-on-vellum drawing, 25x40-1/2 inches185Balcony Sprinkler Plan (100-M)185Details of Fan Platform and Dust Collector Frame (17-P)11/15/1937Ink and pencil drawing on vellum, 23-1/4x33-1/4 inches185Electrical Drawings by Albert Kahn, Inc., Architects & Engineers9/10/1937Black and blue ink drawings on linen with pencil notations, 25-3/4x40-3/4 inchesFirst Floor Plan (1-E)revised 10/12/1937185Balcony Floor Plan (2-E)185Foundation and Office First Floor Plans (3-E)185First Floor Plan (4-E)185First Floor Clock Plan (5-E)revised 10/4/1937Blue ink and pencil drawing on vellum, 24-1/2x38-1/4 inches185Balcony Clock Plan (6-E)revised 10/4/1937Blue ink and pencil drawing on vellum, 24-1/4x38-1/4 inches185Burroughs Adding Machine Company, Factory Building, Job No. 1737, Plymouth, Michigan1936-1937Construction DrawingsArchitectural Drawings by Albert Kahn, Inc., Architects, except as noted11/25/1936ink-on-linen drawings, 29x47-1/2 inches, except as notedPlot Plan and Track Layout (1)revised 4/24/19373111Basement and Foundation Plan and Details of Reservoir and Tunnel (2)revised 1/13/19373111First and Second Floor Plans (3)revised 8/27/19373111Third and Fourth Floor Plans (4)revised 4/24/19373111Fifth Floor Plan and Roof Plan (5)revised 8/27/19373111North, South, East and West Elevations (6)revised 4/24/19373111Details of North, South and West Elevations (7)revised 1/13/19373111East and South Elevations of Center Portion (8)revised 4/24/19373111Cross-Section "H-H" and Details of Tower and Gymnasium Entrance (9)revised 1/13/19373111Basement and First Floor Plans of Center Portion (11)revised 8/27/19373111Second Floor Plan and Typical Floor Plan of Center Portion (12)revised 4/24/19373112Details of Elevator, Machine and Fan Room Floor, Metal Canopy, Tank Room and Loading Dock Door (13)revised 4/24/19373112Sections and Details of Tower, Stairs and Passenger Elevator (14)revised 4/24/19373112Details of Stairs No. 2 & 3 (15)revised 8/27/19373112Part Plan of First Floor, Southwest Corner and Details of Gymnasium and Shower Room (16)revised 8/27/19373112Sections thru' Gymnasium, Balcony, and Kitchen and Handball Court (17)revised 1/13/19373112Details of Roof (18)revised 1/13/19373112Details of Roof (19)revised 1/17/19373112Detail at Fan Roof (20)12/30/1936revised 3/25/1937pencil-on-vellum drawing, 23x33 inches3112Details of Concrete Walk and Driveway Layout (21)8/31/1937pencil-on-vellum drawing, 19-1/2x34 inches3112Detail of Revised Clock, South Elevation of Tower (22)9/10/1937pencil-on-vellum drawing, 24-1/2x26-3/4 inches3112Details of Revised Roof Ladder in Tower (23)11/4/1937pencil-on-vellum drawing, 14-1/2x22-3/4 inches3112Details for New Platform and Safety Cage for Press Tank (24)11/15/1937pencil-on-vellum drawing, 19x22-1/2 inches3112Details of Hospital and Employment Office, Northwest End of Factory Building (55)10/1/1937pencil-on-vellum drawing, 19-1/2x32 inches3112Details of Glazed Hollow Tile and Metal Partitions in Kitchen and Cafeteria (56)10/28/1937revised 12/8/1937pencil-on-vellum drawing, 24-3/4x32 inches3112Structural Drawings by Albert Kahn, Inc., Architects, except as noted11/25/1936ink-on-linen drawings, 29x47-1/2 inches, except as notedSchedules of Columns and Footings (1-S)revised 3/13/19373113First and Second Floor Framing Plans and Schedules of Spandrels and Beams (2-S)revised 4/27/19373113Third Floor and Gym Balcony Framing Plans and Schedules of Spandrels and Beams (3-S)revised 4/27/19373113Fourth and Fifth Floor Framing Plan and Schedules of Spandrels and Beams (4-S)revised 4/27/19373113Roof Framing Plan, Schedules and Details of Tower (5-S)revised 3/13/19373113Details of Tunnel, Spandrels and Footings (6-S)revised 3/13/1937pencil-on-vellum drawing, 27x42-3/4 inches3113Roof Framing Plan, One-Story Portion, and Miscellaneous Sections (7-S)revised 3/13/1937pencil and ink drawing on vellum, 28x46-1/2 inches3113Details of Revised Elevator Trolley Beams (8-S)2/11/1937pencil-on-vellum drawing, 21-1/2x34-1/2 inches3113Mechanical Drawings by Albert Kahn, Inc. Architects & Engineers, except as noted1/18/1937ink-on-linen drawings, 29x47-1/2 inches, except as notedFoundation Plan and Details (1-M)revised 9/7/1937321First Floor Plan (Heating Only) and Details (2-M)revised 4/20/1937321First and Second Floor Plans (Plumbing Only) (3-M)revised 8/18/1937321Third and Fourth Floor Plans (4-M)revised 8/18/1937321Fifth Floor, Tank Room and Machine Room Plans (5-M)revised 9/7/1937321Heating Riser Diagrams and Details of Typical Radiator Connections in Concrete Building (6-M)321Details of Toilet Rooms (7-M)revised 8/18/1937321Details of Toilet Room Ventilation and Fan Room (8-M)revised 2/16/1937321Details of Trunk Storm Sewer (9-M)1/7/1937321Plans of Automatic Sprinklers, First through Fourth Floors (100-M)321Details of Revised Fan Room Showing New Layout (101-M)revised 3/1/1937pencil-on-vellum drawing, 27x37 inches321Details of Sanitary Sewer Outlet (102-M)5/21/1937revised 6/10/1937ink and pencil drawing on vellum, 28x46 inches321Electrical Drawings by Albert Kahn, Inc., Architects & Engineers, except as noted2/10/1937ink-on-linen drawings, 29x47 inches, except as notedPlot Plan, Plan of Basement and Tunnel, and Details of Manholes (1-E)revised 9/8/1937321First and Second Floor Plans (2-E)321First and Second Floor Plans (2-ER)3/10/1937pencil-on-vellum drawing321Part Plan, First Floor (2-ER-1)6/29/1937pencil-on-vellum drawing, 21x28 inches321Third and Fourth Floor Plans (3-E)321Fifth Floor Plan and Plans of Elevator Machine Room and Tank Room (4-E)321Sections "A-A," "B-B" and "C-C" and Details (5-E)321Details of Transformer Platforms and Transite Baffles (6-E)2/11/1937pencil-on-vellum drawing, 21-1/2x33 inches321Burroughs Adding Machine Company, Factory Building Addition, Job No. 1737-B, Plymouth, Michigan1941Construction DrawingsArchitectural Drawings by Albert Kahn, Associated Architects & Engineers, Inc., 7/25/1941 revised 8/7/1941 except as noted7/25/1941revised 8/7/1941ink-on-vellum drawings, 21-1/4x47 inchesPlot Plan (1)322Basement and Foundation Plan and Details of Tunnel and Wall Columns (2)322First Floor Plan (3)322Roof Plan (4)revised 8/13/1941322Elevations (5)322Plan of Wing No. 1 and Sections (6)322Sections and Details of Toilets, Walls and Doors (7)322Elevations of Doors at Railroad and Trucking Platforms and Miscellaneous Details (8)322Details of Scale Pit, Typical Doors, Metal Canopy and Transformer Platform (9)322Details of Tunnel between Present Building and Addition (10)8/7/1941322Structural Drawings by Albert Kahn, Associated Architects & Engineers, Inc.7/25/1941revised 8/7/1941ink-on-vellum drawings, 21x47 inchesColumn and Footing Schedules and Details (1-S)322First Floor Framing Plan, East End, and Beam and Slab Schedules (2-S)322Roof Framing Plan and Beam, Slab and Spandrel Schedules (3-S)322Mechanical Drawings by Albert Kahn, Associated Architects & Engineers, Inc., 8/13/1941 revised 8/20/1941 except as noted8/13/1941revised 8/20/1941ink-on-linen drawings, 21-1/4x47 inchesBasement and Foundation Plan (1-M)323First Floor Plan, Wing No. 3 Plan and Miscellaneous Details (2-M)revised 8/25/1941323Plot Plan, Heating Riser Diagram and Piping Details (3-M)323First Floor Plan for Sprinkler Work (4-M)323Electrical Drawings by Albert Kahn, Associated Architects & Engineers, Inc.8/13/1941ink-on-linen drawings, 21-1/2x47 inchesPlot Plan, Basement Plan and Manhole Details (1-E)323First Floor Plan and Details of Typical Connections (2-E)323Plans of Cable Vault and Transformer Bank No. 1 and Miscellaneous Details (3-E)323Republic Steel Corporation, Strip Mill, Job No. 1743 Rev., Cleveland, Ohio1936-1937Construction Drawings by Albert Kahn, Inc. Architects & EngineersArchitectural Drawings11/30/1936ink-on-linen drawings, 27-3/4x47-3/4 inchesPlot Plan (1)revised 5/25/1937201Hot Mill First Floor Plan, South Elevation and Door Details (2)revised 5/25/1937201Hot Mill First Floor Plan, North Elevation and Door Details (3)revised 3/9/1937201Cold Mill First Floor Plan and Door Details (4)revised 3/23/1937201Hot Mill Roof Plan and West Elevation along "E" Column Line (5)revised 3/23/1937201Hot Mill Roof Plan and East Elevation along "F" Column Line (6)revised 3/9/1937201Cold Mill Roof Plan and North and South Elevations (7)revised 3/23/1937201Hot Mill East Elevation (8)revised 3/9/1937201Hot Mill West Elevation (9)revised 3/9/1937201Cold Mill East and West Elevations (10)revised 2/19/1937201Key Sections of All Buildings (11)revised 2/2/1937201Hot Mill Sections on Line "A-A" and between Monitors (12)revised 12/28/1936201Hot Mill Sections on Line "B-B" and between Monitors (13)revised 2/2/1937201Hot Mill Sections on Line "C-C" and between Monitors (14)revised 2/2/1937201Hot Mill Sections on Line "D-D" and "E-E" (15)revised 1/18/1937201Cold Mill Sections Mill on Lines "A1-A1" and "B1-B1" (16)revised 2/2/1937201Cold Mill Sections on Lines "C1-C1" and "D1-D1" (17)revised 3/23/1937201Cold Mill Sections on Lines "E1-E1," "F1-F1" and "G1-G1" (18)revised 1/18/1937201Typical Wall Sections (19)revised 2/2/1937201Details of Construction (20)revised 3/9/1937201Details of Expansion Joints (21)revised 12/24/1936201Miscellaneous Details in Connection with Walkways (22)pencil-on-vellum drawing, 26x45-1/4 inches201

    (undated due to paper damage)

    Structural Drawings of Cold Mill11/30/1936pencil and ink drawings on vellum and linen, 26-3/4x46 to 27-3/4x47-1/4 inches202Column Schedule (1-S)revised 1/14/1937202Roof Framing Plan, South End (2-S)revised 6/2/1937202Roof Plan, North End, and End Elevations (3-S)revised 1/22/1937202Details of Bottom Chord Bracing (4-S)revised 1/12/1937202Details of Bottom Chord Bracing, North End-Interior Partition (5-S)1/12/1937202Side Wall Elevations on Lines "H," "J," "K," "L" & "M" (6-S)revised 1/18/1937202Cross-Section and Truss Details (7-S)revised 12/16/1936202Cross-Section and Truss Details (8-S)revised 1/18/1937202Anchor Bolt Setting Plan (9-S)12/4/1936revised 5/28/1937202Details of Crane Access Stairs and Walks (10-S)2/16/1937revised 6/9/1937202Details of Crane Access Stairs and Walks (11-S)2/6/1937202Details of Transformer Access Stairs and Walkways (12-S)2/26/1937revised 3/10/1937202Framing Details for Sand Blast Room (13-S)2/16/1937revised 3/25/1937202Structural Drawings of Hot Mill11/30/1936pencil and ink drawings on vellum, tracing paper and linen, 26x46 to 27-3/4x46-1/2 inchesColumn Schedule (101-S)revised 1/30/1937203Column Schedule, Column Details and Crane Clearances Schedule (102-S)revised 1/30/1937203Roof Framing Plan,-Columns 37 to 73 (103-S)revised 12/22/1936203Roof Framing Plan-Columns 1 to 37 (104-S)revised 1/30/1937203Plan Showing Crane Girders and Bottom Chord Bracing-Columns 37 to 73 (105-S)revised 1/13/1937203Plan Showing Crane Girders and Bottom Chord Bracing-Columns 1 to 37 (106-S)revised 1/30/1937203Cross-Section and Truss Details, North End (107-S)revised 2/11/1937203Cross-Section and Truss Details, South End (108-S)revised 1/5/1937203Details of Roof and Crane Trusses and Crane Girder Schedule (109-S)revised 12/28/1936203Side Wall Elevations (110-S)revised 1/18/1937203Side Wall Elevations and Longitudinal Sections (111-S)revised 6/15/1937203End Wall Elevations and Material Schedule (112-S)revised 1/22/1937203Anchor Bolt Setting Plan (113-S)12/4/1936revised 3/2/1937203Details of Crane Trusses (114-S)12/16/1936203Details of Craneway over Scale Pit (115-S)1/15/1937revised 4/14/1937203Details of Crane Access Stairs and Walks (116-S)2/6/1937revised 3/2/1937203Details of Walkways, South End (117-S)2/6/1937revised 2/11/1937203Details of Walkways at Column Line No. 33 (118-S)2/10/1937revised 2/18/1937203Details of Walkways at Column Line No. 33 (119-S)2/10/1937revised 2/18/1937203Diagram of Hot and Cold Mill Crane Access and Lighting, Distribution Platforms, Stairs and Walkways (120-S)2/6/1937203Details of Lighting Distribution Platforms and Walkways (121-S)2/6/1937revised 2/22/1937203Details of Lighting Distribution Platforms and Walkways (122-S)2/6/1937revised 2/22/1937203Details of Crane Access Stairs and Walkways (123-S)2/12/1937203Details of Batch Pickling Building (124-S)undated203
    Job No. 1747-1795Ford Motor Company, Tire Plant, Job No. 1747, Dearborn, Michigan1937-1938Construction Drawings, Architectural33 drawings3511Ford Motor Company, Tire Plant, Job No. 1747, Dearborn, Michigan1937-1938Construction Drawings, Structural and Mechanical32 drawings3512Ford Motor Company, Tire Plant, Job No. 1747, Dearborn, Michigan1937-1938Construction Drawings, Electrical65 drawings83Ford Motor Company, Equipment Foundations, Alterations and Additions to Tire Plant, Job No. 1747-A, 1747-C, Dearborn, Michigan19371943Construction Drawings, Architectural, Structural, and Mechanical76 drawings84Glenn L. Martin Company, Plant Additions, Job Nos. 1752 and 1752-C, Middle River, Baltimore County, Maryland1937-1942Glenn L. Martin Company Plant Addition (Job No. 1752)1937Architectural Construction Drawings by Albert Kahn, Inc., Architects4/14/1937Ink-on-linen drawings with pencil notations, 30-1/4x44 inchesPlot Plan (1)revised 6/24/1937166Underground Plan (2)revised 5/24/1937166Details of Heater Rooms (3)4/5/1937166Details of Underground Work (4)166First Mezzanine and Second Floor Plans (5)revised 9/10/1937166Roof Plan (6)revised 5/24/1937166Elevations (7)revised 10/12/1937Mylar print166West Elevation, Section "E-E" and Partition Details (8)166Section "A-A" (9)Mylar print166Section "B-B" (10)166Section "C-C" (11)166Section "D-D" (12)revised 6/24/1937166Construction Details (13)167Sections thru' East Wall of Existing Building at Monitors (14)167Construction Details (15)167Details of First Aid Group and Stair #4 (16)4/5/1937revised 6/24/1937167Details of Executive Dining Room, Stairs #1 & 3 and Toilet Room #3 (17)revised 9/10/1937167Miscellaneous Details (18)revised 10/12/1937167Miscellaneous Details (19)167Revised Cafeteria Layout (20)Pencil and ink drawing on vellum, 28x39 inches167

    (undated due to vellum damage)

    Revised Cafeteria Layout (21)Pencil and ink drawing on vellum, 27x39 inches167

    (undated due to vellum damage)

    Structural Construction Drawings by Albert Kahn, Inc., Architects & EngineersInk-on-linen drawings, 29-1/2x41-1/4 to 30-3/4x46-1/4 inches168Details of Footings and Grillage and Footing Schedule (1-S)3/24/1937revised 4/27/1937168Roof and Second Floor Framing Plans and Material Schedule (2-S)3/6/1937revised 4/27/1937168Truss Details (3-S)3/6/1937168Cross-Section of Cafeteria Wing and Truss and Column Details (4-S)3/6/1937168East and West Elevations and Typical Elevation of Monitor E-6 (5-S)3/6/1937168Mezzanine Floor Framing Plan, North and South Elevations and Miscellaneous Details (6-S)3/6/1937168Details of Hanger Brackets, Trusses T-1, T-2 and T-3 and Bases for Columns (7-S)3/6/1937168Framing Plan of Bottom Chord of Main Trusses-End Bays and Miscellaneous Sections (9-S)3/17/1937168Details of Counterweight Boxes at Columns (10-S)4/3/1937168Section through Supply Ducts (11-S)revised 4/27/1937168Plan of Floor over Heater Room #1 and Transformer Room and Details of Typical Columns and Footing for Transformer Room (12-S)undated168Plan of Floor over Heater Room #2 and Tunnels and Plan of Floor over Fan Room and Tunnels (13-S)undated168Floor Plan of Heater Rooms #1 and #2 and Sections (14-S)undated168Mechanical Construction Drawings by Albert Kahn, Inc., Architects & Engineers5/12/1937Black and blue ink drawings on linen with pencil notations, 28x40 to 29x44-1/2 inchesFoundation Plan (1-M)revised 7/7/1937169First, Mezzanine and Second Floor Plans (2-M)revised 7/7/1937169First Floor Plan Showing Hot Air Outlets, Return Air Outlets and Location of Heater Rooms (3-M)169Part Plans of First and Second Floors (4-M)revised 4/21/1937169Plans and Sections of Hot Air Outlets at East Wall and at West Columns (5-M)169Plan of Cafeteria on Second Floor (6-M)9/7/193716x44-1/2 inches169Plan of Cafeteria (7-M)revised 10/22/1937Pencil-on-vellum drawing169Plans of Mezzanine and First and Second Floors and Section "A-A" Showing Ducts along Wall and Beams (8-M)11/3/1937Pencil drawing on tracing paper, 28x29 inches169Fuel Oil Piping Drawingsrevised 7/10/1937Pencil-on-vellum drawings169Plot Plan (10-M)169Plans and Sections (11-M)169Plans and Sections (12-M)169Plans and Sections (13-M)169Plans and Sections (13-MA)10/10/1937169Plans, Sections and Elevation (14-M)169Foundation Plan of Compressed Air Piping (15-M)6/7/1937169Plot Plan and Foundation and Basement Plan (16-M)undated169Plans and Sections of Ventilating System under Loading Dock (17-M)Pencil-on-vellum drawing169

    (undated due to vellum damage)

    Plan of Revised Dining Room Ventilation System (18-M)3/3/1942revised 3/7/1942Pencil-on-vellum drawing169Plot Plan (100-M)5/13/1937169Layout of Storm Sewer (101-M)5/13/1937169
    Electrical Construction Drawings by Albert Kahn, Inc., Architects & Engineers5/20/1937Black and blue ink drawings on linen with pencil notations, 28-3/4x42-1/2 inches1610Plot Plan and Plan of Tunnel between Factory and Engineering Buildings (1-E)1610Plan of Heater Rooms, Air Tunnels and Service Trenches in First Floor Slab (2-E)1610First Floor Plan (3-E)1610Plans of Mezzanine, Second Floor and Roof Showing Sash Operator Motors (4-E)revised 10/22/19371610Section "A-A" (5-E)1610Power and Lighting Riser Diagrams and Panel Schedules (6-E)1610Plan of Transformer Bank, Primary and Secondary Switchboards, and Details (7-E)5/18/1937Ink and pencil drawing on vellum, 27-1/4x39-1/2 inches1610Plans of Present Switch House and Welder Transformer Bank in Present Building and Details (8-E)5/25/1937Pencil drawing on vellum, 27-1/4x39-1/2 inches1610Revised Cafeteria Layout, Second Floor (9-E)10/22/193727-3/4x40 inches1610Architectural Construction Drawings by Albert Kahn, Inc., Architects2/21/1939Black and blue ink drawings on linen, 30-1/2x53-1/2 inchesFoundation Plan (1)revised 3/9/193931Basement Floor Plan (2)revised 6/30/193931Plot Plan, Elevations of Basement Walls to First Floor Line and Detail of Hold-Down Anchor (2-A)revised 3/2/193931First Floor Plan (3)revised 6/30/193931Plans of Second Floor, Roof and Walkway (4)revised 3/9/193931Elevations (5)revised 6/30/193931Sections (6)revised 3/2/193931Details of Expansion Joints (7)revised 6/30/193931Sections and Details (8)revised 3/2/193931Sections and Details (9)revised 6/30/193931Sections and Details (10)revised 3/2/193931Details at Two-Story Portion (11)revised 3/2/193931Details at Two-Story Portion (12)revised 6/30/193931Elevator Details (13)revised 3/9/193931Details of Stairs, Toilets and Sewage Pump Pit and Miscellaneous Details (14)revised 3/30/193931Details of Stairs, Ladders and Catwalks (15)revised 3/9/193931Details of Heater Rooms (16)3/2/1939revised 6/30/193931Details of First Aid Room, Assistant Superintendant's Office Above and Fan Platform (16A & 17)revised 6/30/193931Details of Transformer and Switchboard Rooms, Alterations to Present Assembly Building Tunnel and New Hydraulic Hoist (18)revised 6/30/193931Details of Alterations to Fresh Air Intakes, Exhaust Ducts, Etc. (19 & 20)3/9/1939revised 6/30/193931Details of Metal Louvres and Exhaust Duct at Roof North of Elevator and of Hot Air Heating Outlets (21 & 22)3/9/3931Details of Dining Room Unit (23)3/15/1939revised 4/27/193931Miscellaneous Details (24, 26 & 26)3/20/193931Structural Construction Drawings by Albert Kahn, Inc., Architects & Engineers2/9/1939revised 2/21/1939Ink-on-linen drawings with pencil notations, 30x52-3/4 to 30-1/2x55 inchesFooting Plan and Details (1-S)32Column and Flat Slab Schedules and Details (2-S)32First Floor Flat Slab Plan (3-S)revised 3/17/193932Second Floor Framing Plan and Material Schedule (4-S)32Longitudinal Section and Truss Details (5-S)32Elevations and Truss Details (6-S)32Sections and Truss Details (7-S)32Sections and Truss Details (8-S)32Elevations "A-A" through "J-J" and Details of Steel Plate Floor in Service Tunnel (9-S)undated32Mechanical Construction Drawings by Albert Kahn, Inc., Architects & EngineersBlack and blue ink drawings on linen with pencil notations and pencil and ink drawings on vellum, 28x51-3/4 to 30x53 inchesBasement Plan (1-M)2/21/1939revised 6/30/193933First Floor Plan (2-M)2/20/1939revised 6/30/193933Section "A-A" Looking East, Section "B-B" Looking South and Details of Toilet Rooms, Kitchen and Cafeteria (3-M)2/21/1939revised 4/25/193933Basement Floor Plan, Heating and Air Conditioning (5-M)revised 6/30/193933First and Second Floor Plans (6-M)revised 6/30/193933Ventilation Plan of Cafeteria, First Aid Room and Superintendant's Office (7-M)3/1/1939revised 6/30/193933Plot Plan (20-M)3/20/193933Basement Floor Plan (21-M)3/20/1939revised 6/30/193933Transverse Section and Detail of Oil Burners (22-M)3/20/193933Details of Fuel Oil Tanks and Fuel Oil Pump Room (23-M)3/20/193933Structural Details of Oil Storage Tanks (24-M)3/20/193933Plot Plan and Detail of New Storm Sewer (100-M)2/9/1939revised 2/11/193928-1/4x43-3/4 inches33Plot Plan, Second Floor Plan and Sections for Sprinkler Work (101-M)2/17/193933Plan and Section of Typical 25x25-Foot Bay in Basement Showing Typical Sprinkler, Lighting and Heating Ducts (101-MX)2/23/1939Pencil drawing on tracing paper, 20-1/2x22 inches33Basement Floor Plan for Sprinkler Work33

    (not numbered or dated due to vellum damage)

    Plan of Auto Sprinklers at Roof (103-M)2/17/193933Basement Floor Plan Showing Duct and Piping Cross-Overs at Ceiling33

    (not numbered or dated due to vellum damage)

    Plan of Cafeteria Showing Duct and Piping Cross-Overs above Suspended Ceiling (112-M)3/31/193928-1/4x33-1/4 inches33
    Electrical Construction Drawings by Albert Kahn, Inc., Architects & Engineers2/22/1939Black and blue ink drawings on linen with pencil notations, 29-3/4 x52-3/4 inchesPlot Plan, Plan of Tunnel and Manhole Details (1-E)2/13/1939revised 6/30/193933Basement Floor Plan, Lighting (2-E)revised 4/8/193933Basement Floor Plan Showing First Floor Serivce Receptacle Wiring (3-E)revised 3/14/193933First Floor Plan, Lighting (4-E)revised 3/14/193933Second Floor Plan, Sections and Riser Diagrams (5-E)revised 4/8/193933Basement Feeder Plan (6-E)revised 4/8/193933First Floor Feeder Plan (7-E)revised 3/14/193933Plan and Sections of Primary and Secondary Switchboard Roomsrevised 2/24/1939Pencil-on-vellum drawing, 28x52 inches33Plan, Wiring Diagram and Details of Parking Area Lighting (9-E)3/14/193933
    Chrysler Corporation (Dodge), One-Half-Ton Truck Building and Addition, Job No. 1766, 1766-P, Mound Road, Detroit (Warren), Michigan1937-1938 and 1945-1946Factory Building (Building No. 101) by Albert Kahn, Inc., Architects & Engineers (Job. No. 1766)Construction DrawingsArchitectural Drawings, except as noted7/31/1937ink-on-linen and pencil-and-ink-on-vellum drawings, 27-1/2x52-1/2 inches, except as notedPlot Plan (1)8/14/1937revised 10/20/193764Foundation Plan (2)revised 1/31/193864Pit Details (3-P)9/9/1937revised 11/19/193764First Floor Plan (4)revised 11/16/193764Second Floor Plan (5)revised 11/23/193764Roof Plan of Second Floor Portion and Door Details (6)revised 12/31/193764North and West Elevations (7)revised 10/20/193764South and East Elevations (8)revised 10/20/193764Longitudinal and Cross-Sections (9)revised 10/20/193764Details of Employment Department, Hospital and Factory Offices, and "P" Detail Numbers(10)revised 12/13/193764Longitudinal Sections "A-A" (11)revised 8/27/193764Sections "B-B" and "C-C" (12)revised 8/14/193764Sections "D-D" and "E-E" and "F" Detail Numbers (13)revised 8/27/193764Section "F-F" and Door and Ladder Details (14)revised 8/27/193764Sections "G-G," "H-H," "J-J" & "K-K" through Motor Receiving Room (15)revised 9/20/193764Sections "L-L" and "T-T" (16)revised 10/20/193764Sections "M-M" through "Q-Q" & "S-S" and "N" Detail Numbers (17)revised 8/27/193764Sections through Ovens and "C" Detail Numbers (18)revised 8/27/193764Construction Details and "A" Detail Numbers (19)revised 8/27/193764Construction Details and "B" Detail Numbers (20)revised 8/27/193764Construction Details and "E" Detail Numbers (21)revised 8/27/193764Construction Details and "D" Detail Numbers (22)revised 8/27/193764Details of Elevated Toilet Rooms No. 1, 2, 3 & 4 (23)revised 11/1/193764Details of Switchboard and Transformer Rooms No. 1 & 2 (24)revised 8/27/193764Details of Freight and Elevator Stairs and "J" Detail Numbers (25)revised 8/27/193764Details of Offices, Second Floor (26)revised 11/23/193764Details of Office Stairs (27)revised 2/7/193864Details of Offices and Stairs No. 5 and "K" Detail Numbers (28)revised 9/30/193764Details of Doors and "L" Detail Numbers (29)revised 8/27/193764Foundation and Roof Plans (30)8/13/1937revised 11/9/193765First Floor Plan and Elevations (31)8/13/1937revised 11/26/193765Sections "A-A" and "B-B" of Export Building (32)8/13/1937revised 8/27/193765Details of Loading Dock Sections and Corner (33)8/13/1937revised 8/27/193765Details of Overhead Toilet and Door (34)8/13/1937revised 8/27/193765Construction Details (35)8/13/1938revised 8/27/194565Details of Tunnel and Incline (36)8/14/1937revised 8/27/193765Details of Layout of Storage Tanks (37)9/16/1937revised 12/13/193765Details of Main Entrance and "R" Detail Numbers (38)9/30/193765Details of Fan and Heater Platforms (39)9/28/193718x33 inches65Details of Scale Pit, Trenches and Pit for Final Assembly Conveyor No. 9 (40)revised 11/22/193765Details of Conveyor Pits (41)revised 11/19/193765First Floor Plan of Revision and Extension of Present and Future Partitions (42)1/21/193816-1/2x30 inches65Details of Steel Sash Partitions in Receiving Room No. 2, Tool Crib and Office, Second Floor (43)2/15/1938revised 2/17/193825-1/2x37-1/2 inches65Revised Details of Hospital Waiting Rooms, Stairs, New Dark Room and Cashier's Room (45)2/23/1938revised 3/4/193823-1/2x33 inches65Details of Proposed Skylights for Second-Floor Toilet Rooms (47)3/11/193821-3/4x30-1/2 inches65Detail of Opening in Partition between Telephone Equipment and Switchboard Room (48)3/22/193820-1/2x28 inches65Details Showing Removal of Stairs No. 6 and New Floor Slab (49)3/25/193813-1/2x13 inches65Structural Drawings, except as noted7/31/1937ink-on-linen and pencil-on-vellum drawings, 26x51 to 27x52 inchesRoof Framing Plan, West Portion (1-S)65Roof Framing Plan, East Portion (2-S)revised 9/1/193765Floor Framing Plans and Truss Details (3-S)65Longitudinal Section and Truss Details (4-S)65Part Cross-Section and Truss Details (5-S)65Truss Details (6-S)revised 9/1/193765Columns and Footings Schedules and Details (7-S)65Second Floor Framing Plan and Material Schedule (8-S)65Framing Elevations (9-S)65General Roof Plan and Crane Details (12-S)65Column and Truss Details and Footing Schedule for Export Building (13-S)65Mechanical Drawings, except as noted8/24/1937ink-on-linen and pencil-on-vellum drawings, 28x53 inches, except as notedPlot Plan Showing Underground Sprinkler System and Plumbing Outside of Buildings (1-M)revised 9/25/193766Foundation Plan and Details (2-M)revised 12/14/193766First Floor Plan (3-M)revised 12/14/193766Plans of Second Floor and Toilet Rooms and Plan of Employment Dept., Hospital and Factory Offices (4-M)revised 11/22/193766Foundation and First Floor Plans of Export Building and Details (5-M)revised 11/26/193766Plans of First Floor and Offices, Showing Automatic Building Sprinklers (6-M)revised 9/27/193727-3/4x46-1/2 inches66Plan of Second Floor and Sections "X-X" and "Y-Y," Showing Sprinklers (7-M)undated24-1/2x48 inches66First Floor Plan (8-M)9/20/193766Plans of Second Floor and Employment Department, Hospital and Factory Offices (9-M)9/20/193766Plan of Second Floor Offices (10-M)9/20/193766Details of Export and Drive-Away Buildings (11-M)9/20/1937revised 10/11/193766Details of Tunnel and Header Room Piping (12-M)9/20/1937revised 10/11/193766Details of Main Sewer and Water Services (101-M)revised 8/26/193727x50 inches66Electrical Drawings, except as noted8/20/1937ink-on-linen and pencil-on-vellum drawings, 26-1/4x51-3/4 to 28x53 inches, except as notedPlot Plan and Diagram of Time Clock and Program Wiring (1-E)revised 11/8/193766First Floor Plan (2-E), revised 1/28193866Factory Lighting Plan and First and Second Floor Lighting Feeder Diagrams (3-E)revised 12/7/193766Plan at Second Floor Offices (4-E)revised 12/7/193766Plan of Employment Department, Hospital and Factory Offices, Details of Elevator and Section Showing Method of Installing High Bay and Second Floor Factory Lighting Fixtures (5-E)revised 9/29/193766Part Longitudinal Section "A-A" and Sections of Monitor in High Bay and of Low Bay between Trusses (6-E)revised 9/10/193766Power Feeder Diagram and Bus Layout, First Floor Plan (7-E)revised 11/26/193766Power Wiring Diagram, Second Floor Plan (8-E)revised 12/9/193766Manhole Details (9-E)revised 9/29/193766Details of East Transformer Vault (10-E)revised 9/10/193766Details of West Transformer Vault (11-E)revised 9/29/193766Details of Switching Station (12-E)revised 9/10/193766Floor Plan of Export Building and Cross-Section (13-E)revised 1/24/193866Details of Drive-Away Building and Gate House (14-E)9/29/193717-1/4x21-3/4 inches66Addition to Factory Building No. 101 by Albert Kahn Associated Architects & Engineers, Inc. (Job No. 1766-P)Construction DrawingsArchitectural Drawings, except as noted5/15/1945ink-on-linen and pencil-on-vellum drawings, 27-1/2x52-1/2 inches, except as notedPlot Plan (1)revised 12/3/194567Plan of Temporary Parking Lot (1-A)6/11/194519x26 inches67Foundation Plan (2)revised 10/7/194567First Floor Plan (3)revised 2/16/194667Roof Plan and Details (4)revised 1/28/194667North and East Elevations (5)revised 2/16/194667West Elevation and Longitudinal Section "A-A" (6)revised 2/16/194667Sections (7)revised 11/7/194567Longitudinal Section "E-E" (8)revised 5/21/194567Typical Elevation of High and Low Bays on North and East Walls and Sections (9)revised 11/7/194567Sections "N-N" and "P-P" (10)revised 4/28/194567Construction Details (11)revised 4/28/194567Construction Details (12)revised 4/28/194567Details of Doors, West Elevation (13)revised 5/21/194567Details of Doors, East Elevation (14)revised 10/24/194567Details of New Truck Well and Railroad Doors, East End of Present Building (15)revised 11/16/194967Plans and Details of Men's Toilets, Switch Room and Transformer Platform (16)revised 1/28/194667Details of Toilet Rooms Nos. 1, 3, 5, 8, 9 & 10 (17)revised 9/25/194567Details of Men's and Women's Coat Rooms and Vault in Office (18-R)10/17/1945revised 1/24/194667Details of Catwalk Bridges between Present and New Buildings (19)revised 6/19/194567Elevations of Partition at East Trucking Well and Employees' Entrance (20)revised 8/6/194567Details of Bridge over Railroad Tracks (21)revised 8/27/194567Miscellaneous Details (22)revised 2/16/194667Plan, Sections and Details of Conveyor Bridge (23)67Miscellaneous Sections and Details (24)revised 1/24/194667Plan of Parking Layout and Details of Guard House and Fence at West End (25)revised 10/11/194568Second Floor Plan of Office (26)revised 2/16/194668Details of Pits (27)revised 12/19/194568Details of Alterations to Present Conveyor Housing, East End of Present Building (28)revised 6/19/194568Details of Tunnel from New Assembly Building to Military Vehicle Servicing Plant (29)revised 11/16/194568Details of Trestle (30)68Details of Revised Main Entrance, Present Building (31)7/16/1945revised 2/16/194668Details of Revised North Elevation between Columns # 2 & 5 (32)8/6/1945revised 11/16/194568Details of Truck Wells on South Side of Boxing Plant (33)9/21/194568Plan of New Office Layout and Toilet Partitions, Second Floor (34)4/5/194627-1/4x32-1/2 inches68Details of Scale Pits and Car Puller Pit (35)7/25/1945revised 11/16/194568Details of Small Parts Dip and Fire Dump Tanks (36)11/6/1945revised 12/19/194568Roof Plan and Details of Canopy over Loading Docks (37)undated68Details of Vestibule Closure at Columns "A-A-1" to "2-1" (39)1/2/194627-1/4x32-1/4 inches68Details of Vestibule Closures (40)1/21/1946revised 2/21/194627-1/4x37-1/2 inches68Details of Ramp, North Side of Boxing Plant (41)undated14-1/4x33-1/2 inches68Details of Overhead Door and Vestibule at East End of Building (42)2/16/1946revised 2/21/194624x30 inches68Details of New Concrete Railroad Bumper (43)2/18/194616-1/2x28-1/4 inches68Details of Acoustical Ceiling in Foremen's Assembly Room (44)8/26/194628x25-1/2 inches68Details of Alterations and Additions to Present Conveyor Housing at East End of Assembly Building (45)undated28-1/4x32-1/4 inches68Details of New Steel Sash in North Wall of Paint Mixing Room (46)9/17/194614-1/2x34 inches68Details of New Conveyor Opening and New Concrete Slab (47)9/16/1946revised 9/20/194628x25-1/2 inches68Details of Alterations to Conveyor Housing at East End of Assembly Building (48)10/21/104627-1/2x45 inches68Detail of Roof Ventilator Houses (201)7/19/194514-1/4x19-1/2 inches68Details of Location of Louvre Houses and Hatches (202)8/3/194516-1/2x19 inches68Structural Drawings, except as noted5/15/1945ink-on-linen and pencil-and-ink-on vellum drawings, 26-1/2x51-3/4 to 28x53 inches, except as notedColumn and Footing Schedule (1-S)revised 8/6/194565Roof Framing Plan, Wall Framing Elevation, and Truss and Material Schedules (2-S)revised 8/6/194565Longitudinal Sections and Truss Details (3-S)revised 4/28/194565Truss Details (4-S)revised 4/28/194565Floor Framing Plans for Toilet Rooms, Transformer Platforms and Connections to Present Building (5-S)revised 6/19/194565Wall Framing Elevations and Details of Alterations to Present Trusses (6-S)revised 6/19/194565Details of Structural Steel Work in Present Building (7-S)revised 1/29/194665Details of Alterations to Truss T-19 (8-S)1/16/194614x24-1/2 inches65Details of Alterations to Present Conveyor Housing, East End of Building (9-S)undated27x49-1/4 inches65Miscellaneous Details (X-S)undated28x37-3/4 inches65Details of Field Work on Swayframe (SK 101-S)11/16/194511x16-1/4 inches65Mechanical Drawings, except as noted5/10/1945ink-on-linen and pencil-and-ink-on-vellum drawings, 26-1/2x51-3/4 to 28x53 inches, except as notedPlot Plan (1-MR)7/2/1945revised 11/16/194569Foundation Plan, Plumbing (2-M)revised 11/6/194569First Floor Plan, Plumbing (3-M)revised 11/7/194569Details of Toilet Rooms (4-M)revised 3/5/194669First Floor Plan, Heating (5-M)5/12/1945revised 12/6/194569Heating Riser Diagram and Details (6-M)5/12/1945revised 12/6/194569Second Floor Plan, Venting (7-M)5/11/1945revised 1/24/194669Details of Equipment Layout in Fan Rooms # 2 & 3 (8-M)5/11/1945revised 12/6/194569Details of Equipment Layout in Fan Room # 1 (9-M)5/11/1945revised 1/24/194669Plans and Sections of Tunnel Schemes # 1 & 2 and Pipe Trestle Scheme # 3 (10-M)undated69Details of Tunnel Piping (10-M-R)revised 12/6/194569Details of Second Floor Venting (11-M)11/24/1945revised 1/24/194669Plot Plan and First Floor Plan, Fire Protection (100-M)5/11/1945revised 12/27/194569Proposed Plan of Lumber Storage Drainage (200-M)7/2/194569Details of Radiator Connections for Second Floor Offices (201-M)9/17/194521-1/4x33 inches69Electrical Drawings5/21/1945ink-and-pencil-on-vellum drawings, 28x54 inchesUnderground and Switching Station Plans, Sections and Symbols (1-E)revised 9/13/194569Substation Details (2-E)69First Floor Power Plan--West Half (3-E)revised 1/21/194669First Floor Power Plan--East Half (4-E)revised 5/2/194669First Floor Lighting Plan--West Half (5-E)revised 1/21/194669First Floor Lighting Plan--East Half (6-E)revised 2/16/194669Section "A-A," Lighting Panel Schedule and Details (7-E)revised 5/2/194669Plot Plan and Details of Fence Lighting and Toilets (8-E)7/24/1945revised 9/13/194569First Floor Plan, Showing Signal Systems, and Fan Room Plans (9-E)revised 1/24/194669Second Floor Plan, Showing Office Lighting, and First Floor Entrance Plan (10-E)revised 5/2/194669Details of Heating Tunnels, Ramp Enclosure at Column P-64 and Relocated Conveyor Housing (11-E)5/25/1945revised 10/30/194569Chrysler Corporation, Dodge Truck Division, Addition to Building No. 301, Job No. 1766-AB, Detroit, Michigan1950-1951Construction Drawings, Architectural, Structural, Mechanical, and Electrical17 drawings3513Ford Motor Company, Exposition Building, New York World's Fair, Job No. 1783, New York, New York1938-1939Construction DrawingsArchitectural Drawings by Albert Kahn, Inc.3/8/1938ink-on-linen drawings with pencil notations, 30-3/4x39-1/2 inchesPlot Plan (1)revised 3/14/193969Foundation Plan and Details (2)revised 10/18/19382010First Floor Plan (3)revised 3/16/19392010Second Floor Plan (4)revised 12/21/19382010Third Floor Plan (5)revised 10/28/19382010Roof Plan and Door Details (6)revised 4/29/19382010First Floor Plan, Northeast Section (7)revised 8/1/19382010Second Floor Plan, Northeast Section (8)revised 12/21/19382010Third Floor and Roof Plans, Northeast Section (9)revised 4/29/19382010First Floor Plan, Southeast Section (10)revised 10/28/19382010Plans at Second Floor and Upper Roof Ride, Southeast Section (11)revised 12/21/19382010North and West Elevations and Elevations in Patio (12)revised 9/6/19382010South and East Elevations and Elevation in Patio (13)revised 4/14/19382010Sections on Lines "A-A" and "B-B" (14)revised 7/14/19382010Sections on Lines "C-C," "D-D" and "E-E" (15)revised 6/24/19382010Section on Line "F-F" and Details (16)revised 10/28/19382010Sections on Lines "G-G," "H-H" and "J-J" and Details (17)revised 4/29/19382010Sections on Lines "K-K," "L-L" and "K2-K2" thru' Service Wing and Terrace and Details (18)revised 4/14/19382010Sections and Details at Loading Platform (19)revised 4/14/19382010Plan and Details of Pearl Street Station (20)revised 4/29/19382011Section on Line "S-S" and Details (21)revised 6/24/19382011Sections on Lines "T-T" and "U-U" and Details (22)revised 4/29/19382011Plans and Sections of Stairs and Elevator (23)revised 4/29/19382011Plans and Sections of Stairs and Elevator (24)revised 4/29/19382011Details of Pylon and Receiving Room Door (25)revised 6/24/19382011Sections of Pylon in Patio (26)revised 4/29/19382011Details of Patio Arcade Sash (27)revised 4/14/19382011Details of Exhibition Hall (28)revised 4/14/19382011Sections thru' Upper Part of Exhibition Hall and Details of Model Service Station (29)revised 4/14/19382011Details of Orchestra Platform (30)revised 6/24/19382011Details of Main Entrance (31)revised 4/14/19382011Plan of Patio (32)revised 6/24/19382011Details of Exhibition Hall Display Platforms and Islands (33)revised 8/23/19382011Plans and Elevations of Executive's Rooms, Third Floor (34)revised 6/8/19382011Interior Details of Executive's Portion (35)revised 4/29/19382011Details of Doors, Partition and Toilet (36), revised 4/14.19382011Details of Expansion Joints (37)revised 8/30/19382011Details of Lettering over Main Entrance Marquee and Flag Pole (38)revised 4/14/19382011Architectural Drawings by Albert Kahn, Inc., Architects and Engineerspencil drawings on tracing paper and vellumRevised Details of Expansion Joints (39)4/21/193829-1/4x38-1/4 inches2011Details of Glass Screen for Foundry Exhibit in Exhibit Hall (40)6/3/1938revised 11/7/193829x38-1/4 inches2011Plan of Pearl Street Station in New Location and Reflected Ceiling Plan of Greenfield Village (41)6/24/1938revised 1/19/193917x38 inches2011Sections and Details of Pearl Street Station (42)6/24/193817-1/4x38 inches2011Details of Pennant Standards (43)6/30/193824-3/4x19 inches2011Details of Display Windows between Columns # 20 & 68 of Enclosed Arcade (44)7/12/1938revised 8/29/193829-1/2x38-1/2 inches2011Details of Elevator Door Changes (45)7/22/193817-1/2x29-1/4 inches2011Details of Diorama Windows in Greenfield Village Exhibit Room (46)29-3/4x38-1/2 inches2011

    (date illegible)

    Detail of Proposed Valve Guide at Foundry Exhibit Pit (47)7/29/193816-3/4x13 inches2011Detail of Mullion (48)8/18/193811-1/2x9-1/2 inches2011Details of Dining Room Balcony Tile and Tile Base and Step at Executive Lounge Door to Terrace (49)3/26/193823-3/4x34 inches2011Details of Awnings (50)9/12/193824-3/4x28 inches2011Plan and Section at Rail Supports (51)9/14/193821-1/4x43 inches2011Plan and Sections of Pool, Seats, Walk and Curb (52)10/12/1938revised 11/1/193823-1/2x38-1/2 inches2011Section thru' Water Spray Band around Orchestra Pool (53)10/19/193816x14 inches2011Developed Elevation of Science Mural Wall in Entrance Hall (55)10/28/193826-1/4x33-1/4 inches2011Layout of Seat Locations in Ramp Court (56)11/1/193828x38-3/4 inches2011Details of Glass Block at Columns # 106, 129 & 251 (57)11/3/193811x20 inches2011Details of Fan Room No. 1, Air-Conditioning Equipment (58)11/7/1938revised 12/5/193826-1/2x30-3/4 inches2011Revised Details of Glass Screen for Foundry Exhibit in Exhibit Hall (59)11/7/193825x31-1/2 inches2011Details of Observation Opening in Exhibit Hall (60)11/25/193819x25-1/2 inches2011Details of New Curb on North Side of Roof Ride and Flower Box (61)12/8/1938revised 1/20/193915x17 inches2011Details of Spotlight Recess for Three-Phase Map Display (62)12/19/193822-1/2x17-1/2 inches2011Floor Plan of Vestibule (63)12/19/193813x19-1/2 inches2011Details for Speaker Grilles in Exhibit Hall Ceiling (64)12/20/193819-1/2x15-3/4 inches2013Details of Benches on Loading Platform (65)12/23/193825x24 inches2013Plan of Model Service Station (66)12/27/1938revised 2/27/193916-1/2x40 inches2013Details Showing Location of Hammond Organ Loud Speakers in Band Shell (67)2/1/193924-1/2x32-1/2 inches2013Sections of Model Service Station (68)1/11/193917-3/4x39-3/4 inches2013Details of Pond at Southwest Entrance of Entrance Hall (69)1/17/193917x24-1/2 inches2013Layout (Mechanical) and Details of Model Service Station (70)1/19/1939revised 3/1/193916-1/4x38 inches2013Elevation Showing Relocation of Alarm Box and Fire Hose Cabinet on Exterior Wall of Exhibit Hall (71)1/20/193910x15-1/4 inches2013Details of Pump Room for Pond at Southwest End of Entrance Hall (72)1/20/1939revised 2/16/193916-1/4x17-1/2 inches2013Details of Boys' Toilet and Locker Room and Vent Stack at Edison Machine Shop, Greenfield Village (74)3/14/193920-3/4x31-1/2 inches2013Details of Motor Niche and Revolving Motor Display in Exhibit Hall (75)2/10/1939revised 3/1/193927-1/2x37 inches2013Details of New Caterer's Toilet and Locker Room (76)2/23/1939revised 3/10/193918x31-1/4 inches2013Details of Circular Signs on Columns #220-228 in Industrial Hall (77)2/17/193920-1/2x26-1/4 inches2013Details of Cabinets with Speaker in Patio (79)2/19/193912-3/4x11-3/4 inches2013Details of South Wall of Enclosed Display Space (80)2/20/193928-1/2x35-3/4 inches2013Plan of Plowing Field and Details of Rail and Flood Lights (81)24-1/2x37-1/2 inches2013

    (date illegible)

    Plan of Revised Sidewalk Treatment at Front Entrance (82)2/22/193926-1/4x31-1/2 inches2013Details of Cornice Board in Private Offices on Second Floor (83)2/24/193915x23 inches2013Plan of New Slop Sink Closet on Third Floor (84)2/28/193915x19-1/2 inches2013Detail of Wood Strip at Executive Lounge Balcony (Walter Dorwin Teague Drawing No. 179) (85)3/1/193917-1/2x23 inches2013Details of Decorative Glass Panels in Entrance Hall (Walter Dorwin Teague Drawing No. 181) (86)3/8/1939revised 3/20/193917x28-1/2 inches2013Plan and Section of Proposed Television Antenna on Roof of Main Pylon (87)2/2/1939revised 3/13/193917-1/4x27-1/4 inches2013Plan and Details of Transformer Room (88)3/14/1939revised 3/21/193918-1/2x29-1/2 inches2013Details of Canopy for Agricultural Equipment (89)4/6/193917x30 inches2013Detail of New Planting Box on Executive's Terrace (100x)1/31/193914-1/2x21-1/2 inches2013
    Structural Drawings by Albert Kahn, Inc.2/11/1938ink-on-linen drawings and pencil drawings on vellum and tracing paper, 30-1/2x39-1/4 inchesSecond Floor Framing Plan, North Section (1-S)revised 5/16/19382014Second Floor Framing Plan, South Section (2-S)revised 4/14/19382014Second Floor Framing Plan, Northwest Section (3-S)revised 9/8/19382014Third Floor Framing Plan (4-S)revised 4/14/19382014Plan of Roof Framing at 39-Foot Elevation and Column Details (5)revised 8/29/19382014Plan and Details of Roof Framing at 33-Foot Elevation (6-S)revised 5/16/19382014Plan and Details of Roof Framing at 49-Foot Elevation (7-S)revised 4/14/19382014Column Schedule (8-S)revised 4/14/19382014Plans of Ramp Framing at Intermediate and Upper Levels (9-S)revised 8/29/19382014Plan and Sections of Ramp Framing at Lower Level (10-S)revised 5/16/19382014Plan of Ramp Piles and Column Footings (11-S)2/26/1938revised 8/4/19382014Piling Plan at Ramp and Footing Details (12-S)2/26/1938revised 8/12/19282014Details of Ramp and Reinforcing Beams (13-S)revised 5/16/19382014Detail Showing Method of Stiffening Joints at Fin over Main Entrance (101-S)8/16/193814-1/4x21-1/4 inches)2014Details of Roof Framing over Water Cooling Tower (102-S)8/30/193816-3/4x31-1/2 inches2014Details of Framing for Cooling Towers (103-S)9/30/193821x33-1/2 inches2014Detail of Proposed Method of Supporting Flower Boxes and Walkways (106-S)12/2/1938revised 12/9/193814x22 inches2014Plan and Sections of Alternate Design for Refrigerator Foundations (107-S)12/8/193821-1/2x35 inches2014
    General Motors Corporation, Argonaut Realty Division, Exposition Building, New York World's Fair, Job. No. 1784-A, New York, New York1938-1939Construction Drawings by Norman Bel Geddes & Company, Designers, and Albert Kahn, Inc., ArchitectsArchitectural Drawings of General Areas and Map Lobby, Area A8/22/1938ink and pencil drawings on vellum, 29x38-3/4 to 29-1/2x40 inchesPlot Plan (1)revised 9/23/1938211Plan of Area below Map Room and Door Schedule (1-A)revised 1/24/1939211Foundation Plan (2)revised 9/29/1938211Plan of Map Lobby and Sections "A6-A6" and "A13-A13" (2-A)revised 9/29/1938211General Ground Floor Plan (3)revised 10/26/1938211Sections "A3-A3" through "A5-A5," Elevation of Map Wall and Reflected Half-Ceiling Plan (3-A)revised 10/11/1938211General First Floor Plan (4)revised 10/26/1938211Sections "A1-A1" and "A2-A2" and Details of Map Lobby Parapet (4-A)revised 10/1/1938211General Roof Plan (5)revised 10/18/1938211Plan of Unloading Platform and Sections "A10-A10" through "A17-A17" (5-A)revised 9/23/1938211North, South and West Elevations (6)revised 10/11/1938211Section "A20-A20," Cross-Section "A8-A8" and Detail of Ramp Rail in Map Lobby (6-A)revised 10/5/1938211Sections "A18-A18" and "A19-A19" and Cross-Section "A9-A9" (7-A)revised 10/5/1938211Elevations, Section and Details of Letters (7-R)9/15/1938revised 10/20/1938211Typical Details of Letters and Marquee (7-R-1)9/20/1938revised 11/8/1938211Typical Details of Terrace, Bridge, Marquee, Sidewalks and Stucco Walls (8)revised 9/23/1938211Details of Main Entrance Ramps (8-A)revised 9/23/1938211Details of Women's and Men's Toilets (9)revised 2/24/1939211Sections "11-11" through "24-24" (9-A)revised 9/23/1938211Typical Show Window Details, Sections C, E & G (10)revised 9/29/1938211Detail of Railing for Terrace and Ramps, Section thru' Ramp in Areas B, C & D, and Details of Model Sequence Screen and Conveyor Platform (11)revised 10/5/1938211General Plan of Attic Spaces and Details of Smoke Vent Outlets (12)revised 1/24/1939211Detail at Entrance to Map Lobby and Details of Metal Curtains and Sliding Doors between Areas G and F (13)revised 10/5/1938211Plans and Details of Signage Letters (14)9/16/1938revised 10/5/1938211Proposed Track Layout for Locating Diesel Train (52)30-1/2x48 inches211

    (date illegible)

    Details of Intersections at "E-G," "G-C," "C-D" and "D-E" (A)9/19/193825-1/2x33-3/4 inches211Details of Mirrors on Concrete Panels and on Plaster (B)9/19/1938pencil drawing on tracing paper, 17x33-1/2 inches211Details of Alternate Metal Pans and Masonite (C)9/19/1938pencil drawing on tracing paper, 16-3/4x23-1/2 inches211Plans of New Stairs at Sound Control Room (C)1/30/1939pencil drawing on tracing paper, 22-3/4x13-1/2 inches211
    Architectural Drawings of Model Sequence Display and Club Floor, Areas B and C8/22/1938ink and pencil drawings on vellum, 28-3/4x39-1/2 to 29-1/2x40-1/2 inchesGround Floor Plan (1-B&C)revised 12/20/193830x48 inches212First Floor Plan (2-B&C)revised 12/30/193829-1/2x48 inches212Plans of Club Floor and Balcony (3-B&C)revised 6/5/1939212North, South and East Elevations (4-B&C)revised 1/24/1939212Sections "C1-C1" and "C2-C2" (5-B&C)revised 1/24/1939212Sections "B1-B1" and "B2-B2" and Details (6-B&C)revised 1/24/1939212Sections "C3-C3" through "C9-C9" (7-B&C)revised 10/7/1938212Plans at Ground Floor, First Floor, Balcony and Club Floor (8-B&C)revised 9/23/1938212Sections "C10-C10" and "C11-C11" and Details of Doors and Stairs (9-B&C)revised 11/8/1938212Details of Elevators and Stairs No. 2 & 3 and Sections "C14-C14" through "C16-C16" (10-B&C)revised 9/23/1938212Details of Elevator and Roof over Stair No. 1 and Sections "C17-C17" to "C20-C20" and "C30-C30" to "C32-C32" (11-B&C)revised 10/5/1938212Details of Doors and Windows on Club Room Floor (12-B&C)revised 9/23/1938212Plan Showing Column Spacing for Conveyor Layout at Lower Level (13-B&C)revised 9/28/1938ink-on-linen drawing, 36-1/2x45-1/2 inches212Plan Showing Column Spacing for Conveyor Layout at Upper Level (14-B&C)revised 9/23/1938ink-on-linen drawing, 36-1/2x45-1/2 inches212Details of Signage Letters (15-B&C)revised 9/23/1938212Architectural Drawings of Auditorium, Area D8/22/1938ink and pencil drawings on vellum, 29-3/4x38-3/4 to 30x39-3/4 inchesGround Floor Plan (1-D)revised 6/5/1939213First Floor Plan (2-D)revised 3/1/1939213Plans of Attic Space and Roof (3-D)revised 9/29/1938213North and Part-East Elevations and Section "D7-D7" (4-D)revised 9/23/1938213South and West Elevations (5-D)revised 9/29/1938213Sections "D1-D1" and "D2-D2" (6-D)revised 9/29/1938213Sections "D1-D1," "D5-D5," and "D9-D9" and Construction Details (7-D)revised 9/29/1938213Sections "D6-D6" and "D8-D8" and Construction Details (8-D)revised 9/29/1938213Plans at Ground Floor, Stage Floor and at Walkways above Stage, and Sections "D1-D1," "D10-D10," "D11-D11," and "D15-D15" (9-D)revised 9/29/1938213Details of Stairs, Sash at Lounge and Recessed Telephone Booths (10-D)revised 11/11/1938213Plan of Auditorium Seating (11-D)revised 9/23/1938213Revised Plan of Floor Levels in Auditorium (12-D)10/1/1938pencil drawing on tracing paper, 28-1/4x25-1/4 inches213Revised Plan of Auditorium Seating (13-D)10/8/1938pencil and ink drawing on tracing paper, 27-1/2x29 inches213Architectural Drawings of Display Room, Area E8/22/1938ink and pencil drawings on vellum, 29x39-1/2 to 30-1/2x40 inchesGround Floor Plan (1-E)revised 6/5/1939214First Floor Plan (2-E)revised 3/1/1939214Plans of Balcony and Reflected Ceiling (3-E)revised 11/2/1938214Plans of Balcony and Roof (4-E)revised 6/5/1939214North and West Elevations (5-E)revised 9/23/1938214South and East Elevations (6-E)revised 11/2/1938214Sections "E1-E1" through "E3-E3" (7-E)revised 9/23/1938214Details of Stairs (8-E)revised 9/23/1938214Details thro' Balconies and Miscellaneous Sections (9-E)revised 9/23/1938214Sections "A-A" through "D-D," Stair Details, and Details of Car Lift from Ground Floor to First Floor (10-E)revised 9/23/1938214Reflected Ceiling Plan Showing Framing for Display Room and Details Showing Ventilation and Smoke Exhaust Connections (11-E)revised 12/3/1938214Architectural Drawings of Diesel Engine Display, Area F8/22/1938ink and pencil drawings on vellum, 29-3/4x39 to 29-3/4x40 inchesFoundation Plan (1-F)revised 10/11/1938215Ground Floor Plan (2-F)revised 6/5/1939215First Floor Plan (3-F)revised 10/11/1938215North, South and West Elevations (4-F)revised 10/11/1938215Sections "F-1" to "F-4" (5-F)revised 10/11/1938215Plan of Ramp and Sections "F-5" to "F-7" (6-F)revised 10/11/1938215Section thru' Building East of Center Line, Looking East, and Section thru' East and West Walls (7-F)revised 9/23/1938215Miscellaneous Sections (8-F)revised 9/23/1938215Details of Diesel Train Trench and Track and Detail of Entrance Sliding Door (9-F)revised 10/12/1938215Architectural Drawings of Research Display and Traffic Model Sequence, Area G8/22/1938ink and pencil drawings on vellum, 29-3/4x39 inchesGround Floor Plan (1-G)revised 1/11/1939215First Floor Plan (2-G)revised 12/30/1938215Floor Plan at 23-Foot Level (3-G)revised 11/2/1938215North, South and East Elevations (4-G)revised 10/28/1938215Sections "G1-G1" to "G3-G3" (5-G)revised 10/11/1938215Sections thru' North Wall of Division "G" and Details of Circular Showcase (6-G)revised 10/11/1938215Sections "A-A," "B-B," "G-4" and "G-5" and Details of Elevator and Stair No. 1 (7-G)revised 9/23/1938215Plan of Roof, Sections and Details (8-G)revised 9/23/1938215Architectural Drawings of Additions to Exposition Building11/25/1939pencil-on-vellum drawingsDetails of New Glass and Metal Screen between Buildings C & G (1)30-1/2x40-3/4 inches215Details of New Glass and Metal Screen at Diesel Train Entrance of Building F (2)30-1/4x39-1/4 inches215Structural Details of Alternate Footing (1-S)pencil drawing on tracing paper, 24-1/2x35 inches215Mechanical Drawings by Albert Kahn, Inc., Architects & Engineers9/22/1938ink-on-linen drawings with pencil notations, 30-1/2x39-3/4 inchesGround Floor Plan (1-M)revised 1/25/1939216General First Floor Plan (2-M)revised 1/19/1939216General Plan of Attic Space (3-M)revised 10/20/1938216Plan of Club Floor and Details Showing Canopy, Terrace and Sidewalk Drainage (4-M)revised 1/3/1939216Details of Toilets and Miscellaneous Details (5-M)revised 11/21/1938216Riser Diagram of Plumbing and Diagram of Fire Stand Pipe System (6-M)revised 10/20/1938216Preliminary First Floor Plan of Area G (7-M)10/3/1938216Plans of Attic, Service Space and Fan Room, and Typical Section thru' Show Windows in Area G (8-M)10/27/1938revised 11/1/1938216Ground Floor Plan of Area F (9-M)10/27/1938revised 11/1/1938216First Floor Plan of Area F (10-M)10/27/1938revised 11/1/1938216Ground Floor Plan of Area E (11-M)10/27/1938revised 11/1/1938216First Floor Plan of Area E (12-M)10/27/1938revised 11/1/1938216Ground Floor Plan of Area D (13-M)10/27/1938revised 11/1/1938216First Floor Plan of Area D (14-M)10/27/1938revised 11/1/1938216Plan and Sections of Club Floor, Area C (15-M)10/27/1938revised 11/1/1938216Plans of Fresh Air Supply Unit on Lower Level (16-I-M)12/13/1938pencil drawing on tracing paper, 18-3/4x37 inches217Ground Floor Plan of Areas B & C (16-M)10/27/1938revised 12/20/193830-3/4x48-1/4 inches217First Floor Plan of Areas B & C (17-M)10/27/1938revised 12/20/193830-3/4x48-1/4 inches217Ground Floor Plan of Areas A & G (18-M)10/27/1938revised 12/20/193830-1/2x48-1/4 inches217Plans and Details of Fan Room, Area E (19-M)10/27/1938revised 11/1/1938pencil drawing on tracing paper, 29-3/4x38-1/2 inches217Plot Plan Showing Layout of Lawn Sprinklers (20-M)12/14/1938revised 1/25/1939pencil-on-vellum drawing, 30-1/4x39-1/2 inches217Ground Floor Plan of Areas B & C (21-M)12/20/193829-1/2x47-3/4 inches217Ground Floor Plan of Areas A & G (22-M)12/20/1938revised 1/30/193930x47-3/4 inches217First Floor Plan of Areas B & C (23-M)12/30/193830x47-3/4 inches217Details of Low Level Model Sequence Supply Fan Units # 104 & 105 (24-M)1/4/1939pencil drawing on tracing paper, 25-1/4x26 inches217Plan of Fresh Air Supply to Model Sequence--Low Portion and Detail of Duct Space under Conveyor (25-M)1/4/1939pencil drawing on tracing paper, 25-1/2x26 inches217Plan and Details of Supply Fan Unit # 107 for Model Sequence--Low Level (26-M)1/6/1939pencil drawing on tracing paper, 25-1/2x26 inches217Ground Floor Plan of Areas B & C (27-M)1/10/1939revised 1/30/193930x48inches217First Floor Plan of Areas B & C (28-M)1/10/1939revised 4/3/193930x47-3/4 inches217Section "1-1" of Fan Supply Unit # 108 (29-M)1/10/1939pencil drawing on tracing paper, 28-1/4x45 inches217Plans, Elevation and Section of Exhibition Space (30-M)1/17/1939pencil drawing on tracing paper, 25x26 inches217Plot Plan Showing Layout of Lawn Sprinkling Hydrants (31-M)3/7/1939pencil-on-vellum drawing, 29-1/2x39 inches217Ground Floor Plan of Areas A & G (35-M)10/27/193830x47 inches217Details Showing Revised Storm Sewers and Drainage at Street Intersections, and Plan of Service Layout for Inland Manufacturing Division Display Space (100-M)10/6/1938revised 11/21/1938ink and pencil drawing on vellum, 30x38 inches217Electrical Drawings of Areas B & C by Albert Kahn, Inc., Architects & Engineers10/13/1938ink-on-linen drawings with pencil notationsChart of Electrical Symbols (101-EX)9/14/1938revised 10/17/193818x19-1/4 inches218Ground Floor Plan Showing Feeder Layout (BC-1E)revised 1/3/193930-3/4x40 inches218Ground Floor Plan (BC-2E)revised 4/7/193930-1/2x48 inches218First Floor Lighting Plan (BC-3E)revised 4/11/193930-1/2x48 inches218First Floor Plan Showing Junction Boxes (BC-3EX)1/20/1939pencil and ink drawing on tracing paper, 13-1/2x22 inches218Lighting Plans of Club Floor and Balcony (BC-4E)revised 4/11/193930-3/4x40-1/2 inches218Lighting Plan of Balcony (BC-5E)revised 11/11/193830-3/4x40-1/2 inches218Feeder Diagram and Schematic Connection Diagrams for Club and Stores Areas (BC-6E)revised 2/1/193930-1/2x40-3/4 inches218Plan of Map Lobby Showing Location of Fluorescent Light Tubes and Section of Railing at Loading Platform Showing Mounting of Flush Lighting Fixtures (112-EX)12/7/1938revised 12/16/1938pencil-on-vellum drawing, 29-1/4x46-1/2 inches218Diagrams Showing Electrical Loads (EX-200)4/14/1939pencil-on vellum drawing, 24-3/4x36-1/4 inches218Electrical Drawings of Area G by Albert Kahn, Inc., Architects & Engineers10/8/1938ink-on-linen drawings with pencil notationsGround Floor Plan (G-1E)10/4/1938revised 4/7/193930-1/2x40-1/2 inches218First Floor Plan (G-2E)revised 2/13/193930-1/2x40-1/2 inches218Part First Floor Plan Showing Revised Electrical Layout for Frigidaire Exhibit (G-2E-R)1/17/1939revised 1/19/1939pencil-on-vellum drawing, 30-1/2x40-1/2 inches218Lighting Floor Plan at 23-Foot Level (G-3E)revised 11/22/193830-3/4x40-1/2 inches218Feeder Diagram for Section G and Plans of Attic Space and Fan Rooms (G-4E)revised 3/20/193930-1/2x39-1/2 inches218Telephone Riser Diagram and Primary and Secondary Connection Diagram (G-5E)11/21/193831x41 inches218Plan of Transformer and Switchboard Rooms, Elevation of Switchboards No. 1 & 2, and Sections (G-6E)12/6/1938revised 1/6/193930-1/2x48 inches218Schematic Connection Diagrams for Areas D & G (G-7E)11/1/1938revised 1/5/1939pencil-on-vellum drawing, 30-1/2x40-1/4 inches218Primary Feeder Diagram (G-8E)12/15/1938pencil-on-vellum drawing, 22x34-3/4 inches218
    Curtiss-Wright Corporation, Curtiss Aeroplane Division, Dope Room, Stack Shop and Storage Building, Job No. 1785, Tonawanda, New York1938Construction Drawings by Albert Kahn, Inc., Architects & EngineersArchitectural Drawings2/14/1938Black and blue ink drawings on linen with pencil notations, 26-1/4x39 inchesPlot Plan (1)revised 3/1/1938183Foundation Plan of Dope Room Building (2)revised 3/7/1938183First Floor Plan of Dope Room Building (3)revised 3/7/1938183Roof Plan of Dope Room Building (4)revised 3/1/1938183Exterior Elevations of Dope Room Building (5)revised 3/7/1938183Sections and Details of Dope Room, Stack Shop and Storage Building (6)revised 3/1/1938183Foundation Plan of Stack Shop and Storage Building (7)undated183Floor Plan of Stack Shop and Storage Building (8)revised 3/1/1938183Roof Plan of Stack Shop and Storage Building (9)revised 3/1/1938183Elevations, Sections and Door Details of Stack Shop and Storage Building (10)183Detail of Rolling Curtain and Sliding Door to Dope Room (11)3/1/1938Pencil drawing on tracing paper, 17-1/4x28 inches183Structural Drawings2/22/1938revised 3/1/1938Pencil drawings on tracing paper, 23-1/2x35-3/4 to 24x35-1/4 inchesRoof Framing Plan of Dope Room Building, Typical Section and Truss Details (4-S)183Elevations (5-S)183Roof Framing Plan of Stack Shop and Storage Building, Elevations and Transverse Section (6-S)183Mechanical Drawingsrevised 3/19/1938Pencil-on-vellum drawings, 25-1/2x37 inchesPlan of Sprinkler Work for Dope Room Building (1-MR)183Plan of Sprinkler Work for Stack Shop and Storage Building (2-MR)183Buick Motor Division, General Motors Corporation, Service Parts Storage Building, Job No. 1795, Flint, Michigan1938-1939Construction Drawings, Architectural, Structural, Mechanical, and Electrical52 drawings449Buick Motor Division, General Motors Corporation, Fire Station Building No. 55, Incinerator Building No. 56, Underground Water Storage Tank, Car Shipping Building No. 63, Structural Steel for Railroad Dock Addition to East Side of Building No. 44, Oxy-Acetylene House Building No. 13, Job No. 1795-AA, AB, AC, AF, AG, AK, Flint, Michigan1952-1953Construction Drawings, Architectural, Structural, Mechanical, and Electrical21 drawings101Buick Motor Division, General Motors Corporation, Industrial Waste Treatment Plant Building No. 59, Job No. 1795-AD, Flint, Michigan1952Construction Drawings, Architectural and Structural4 drawings102Buick Motor Division, General Motors Corporation, Building No. 20 Addition, Administration Building Addition, Job No. 1795-AN, AP, Flint, Michigan1955-1956Construction Drawings, Architectural, Structural, Mechanical, and Electrical31 drawings4410Buick Motor Division, General Motors Corporation, Building No. 29 Addition, New Elevators and Penthouse for Administration Building, Engine Dynamometer Test Cell Building, Chassis Dynamometer Building, Job No. 1795-AQ, AR, AS, AT, Flint, Michigan1955-1960Construction Drawings, Architectural, Mechanical, and Electrical33 drawings4411Buick Motor Division, General Motors Corporation, Building No. 16-C, Job No. 1795-AU, Flint, Michigan1977Construction Drawings, Architectural, Structural, and Electrical21 drawings4412Buick Motor Division, General Motors Corporation, Building No. 4, Job No. 1795-B, Flint, Michigan1945-1946Construction Drawings, Architectural30 drawings103Buick Motor Division, General Motors Corporation, Building No. 73-A, Extension to Building No. 24, Job No. 1795-J, K, Flint, Michigan1945Construction Drawings, Architectural, Structural, Mechanical, and Electrical19 drawings4413Buick Motor Division, General Motors Corporation, Building No. 41-A, Job No. 1795-M, Flint, Michigan1945Construction Drawings, Architectural, Structural, Mechanical, and Electrical17 drawings104Buick Motor Division, General Motors Corporation, Building No. 36, Job No. 1795-S, Flint, Michigan1950-1951Construction Drawings, Architectural, Structural, Mechanical, and Electrical, Reverse Sepia Prints109 drawings105Buick Motor Division, General Motors Corporation, Building No. 43, Job No. 1795-T, Flint, Michigan1951-1952Construction Drawings, Architectural, Structural, Mechanical, and Electrical, Reverse Sepia Prints82 drawings106Buick Motor Division, General Motors Corporation, Offices of Building No. 44-A, Job No. 1795-V, Flint, Michigan1951-1953Construction Drawings, Architectural, Structural, Mechanical, and Electrical, Reverse Sepia Prints32 drawings107Buick Motor Division, General Motors Corporation, Building No. 44, Job No. 1795-W, Flint, Michigan1951-1953Construction Drawings, Architectural, Structural, Mechanical, and Electrical, Reverse Sepia Prints85 drawings108Buick Motor Division, General Motors Corporation, Boiler House Building No. 45, Master Substation Building No. 46, Tank Farm and Pump House Building No. 47, Job No. 1795-X, Y, Z, Flint, Michigan1951-1952Construction Drawings, Architectural, Structural, Mechanical, and Electrical56 drawings109
    Job No. 1822-1869U.S. Naval Air Station, Seaplane Hanger, Job No. 1822-A, 1822-A&B, Kodiak, Alaska1940Construction Drawings, Architectural, Structural, Mechanical, and Electrical25 drawings3514U.S. Naval Air Station, Landplane Hanger Boiler House, Extension to Dispensary, Job No. 1822-AE, 1822-AF, Kodiak, Alaska1940-1942Construction Drawings, Architectural, Structural, Mechanical, and Electrical26 drawings3515U.S. Naval Air Station, Extension to Recreation Facilities-Enlisted Men, Extension to Bachelor Officers' Quarters, Extension to Mess Hall, Job No. 1822-AG, 1822-AH, 1822-AJ, Kodiak, Alaska1940-1941Construction Drawings, Architectural, Structural, Mechanical, and Electrical28 drawings361U.S. Naval Air Station, Extension to Barracks, Nurses' Quarters, Job No. 1822-AK, 1822-AN, Kodiak, Alaska1940-1941Construction Drawings, Architectural, Structural, Mechanical, and Electrical21 drawings362U.S. Naval Air Station, Barracks, Recreation Facilities-Enlisted Men, Job No. 1822-C, 1822-C&D, 1822-F, Kodiak, Alaska1940Construction Drawings, Architectural, Structural, Mechanical, and Electrical24 drawings363U.S. Naval Air Station, Dispensary, Job No. 1822-G, Kodiak, Alaska1940Construction Drawings, Architectural, Structural, Mechanical, and Electrical, Includes 11 Reverse Sepia Prints17 drawings85U.S. Naval Air Station, Bachelor Officers' Quarters, Job No. 1822-H, Kodiak, Alaska1940Construction Drawings, Architectural, Structural, Mechanical, and Electrical21 drawings364U.S. Naval Air Station, Underground Distribution System, Job No. 1822-U, Kodiak, Alaska1940Construction Drawings, Mechanical and Electrical18 drawings86U.S. Naval Air Station, Torpedo Workshop and Storage, Laundry Building, Mess Hall and Bakery, Job No. 1822-O, 1822-V, 1822-Y, Kodiak, Alaska1940Construction Drawings, Architectural, Structural, Mechanical, and Electrical28 drawings365U.S. Naval Air Station, Administration and Operations Building, Job No. 1822-Z, Kodiak, Alaska1940Construction Drawings, Architectural, Structural, Mechanical, and Electrical19 drawings366Kahn, Dr. Edgar A., Summer Cottage, Job No. 1849, East Delhi Road, Ann Arbor, Michiganca. 1940Construction DrawingsArchitectural Drawingsundatedink and pencil drawings on vellum, 17-3/4x32 inches, except as notedProperty Survey by Harry Raschbacher, R.C.E.1 blueprints (15-1/2x20 inches)January 19403110First and Second Floor Plans (1)3110Plot Plan and Front and Side Elevations (2)3110Side and Rear Elevations (3)3110Cross-Section and Details of Porch Railing, Eaves, Fireplace and Interior Cabinets (4)3110Ethyl Gasoline Corporation, Engineering Research Laboratories, Job No. 1854, Royal Oak Township (Ferndale), Michigan1940-1941Construction DrawingsArchitectural Drawings by Albert Kahn Associated Architects & Engineers, Inc., except as noted11/15/1940ink-on-linen drawings, 24x47 inches, except as notedPlot Plan and Details of Tunnels (1)revised 1/3/1941324Office Wing "A" DrawingsFoundation and Basement Plan and Stair Details (2)revised 2/17/1941324First Floor Plan and Fan Room Details (3)revised 2/17/1941324Second Floor and Roof Plans (4)revised 1/3/1941324South, East and West Elevations (5)324North Elevation and Cross-Sections (6)revised 1/3/1941324Main Entrance and Other Exterior Details (7)324Details of Stairs # 2, 3 & 4 and Toilets (8)revised 2/17/1941324Lobby and Stair Details (9)revised 2/17/1941324Lobby and Miscellaneous Details (10)revised 2/17/1941324Garage Wing "B" DrawingsFoundation and Key Plans and Details of Lift and Canopy (11)revised 1/3/1941324First Floor, Mezzanine and Roof Plans (12)revised 2/17/1941324North, East and West Elevations and Stair Details (13)revised 2/17/1941324Sections and Details (14)324Dynamometer Wing "C" DrawingsFoundation and Roof Plans (16)revised 4/24/1941325First Floor and Mezzanine Plans (17)revised 2/17/1941325North, East and West Elevations and Door and Canopy Details (18)revised 1/3/1941325Sections and Details of Toilet Room, Door Frames and Partitions (19)revised 2/17/1941325Details of Dynamometer Rooms (20)revised 2/17/1941325Details of Dynamometer Rooms (21)revised 2/17/1941325Details of Dynamometer Rooms, Wings "A" & "C" (22)revised 4/9/1941325Details of Chassis Dyn. Room, Cold Room and Motor Generator Room (23)revised 2/17/1941325Details of Chassis Dyn. Room and Cold Room (24)revised 2/17/1941325Details of Fuel and Oil Storage Building "H" (25)revised 12/15/1941325Details of Boiler House at Present, Wing "D" (26)revised 1/3/1941325Details of Tank Field Layout (27)12/9/1940revised 12/14/1940ink and pencil drawing on vellum, 22-1/2x30 inches325Details of Oil Tank Foundations (28)12/19/1940revised 1/3/1941ink and pencil drawing on vellum, 22x29 inches325Sections and Details of Stack and Louvre House (29)2/3/1941pencil-on-vellum drawing, 22-1/2x35 inches325Details of Revised Kitchen and Cafeteria Rooms (30)2/10/1941revised 2/24/1941pencil-on-vellum drawing, 22-1/2x29 inches325Structural Drawings by Albert Kahn Associated Architects & Engineers, Inc., except as noted11/15/1940ink-on-linen drawings, 23-1/2x46-1/2 inches, except as notedOffice Wing "A" DrawingsFooting Plan and Column Schedule (1-S)326First Floor Framing Plan and Spandrel and Beam Schedules (2-S)revised 2/10/1941326Second Floor and Roof Framing Plans (3-S)326Garage Wing "B" DrawingsRoof and Mezzanine Framing Plans (4-S)326Elevations and Details (5-S)326Dynamometer Wing "C" DrawingsRoof and Mezzanine Framing Plans and Column Schedule (6-S)revised 1/25/1941326Elevations and Sections (7-S)revised 1/3/1941326Miscellaneous Details (8-S)revised 2/10/1941326Fuel and Oil Storage Wing "H" DrawingsDetails of Fuel and Oil Storage and Boiler House (9-S)revised 1/3/1941326Details of Remodeling of Trusses (10-S)7/28/1941revised 8/11/1941pencil-on-vellum drawing, 17-1/4x33 inches326Details of Crane Rails in Chassis Dyn. and Cold Rooms, Wing "C" (11-S)9/5/1941pencil-on-vellum drawing, 17x33-1/2 inches326Mechanical Drawings by Albert Kahn Associated Architects & Engineers, Inc., 12/18/1940 revised 4/22/1941 except as notedrevised 4/22/194112/18/1940ink-on-linen drawings, 23-1/2x46-1/2 inchesPlot Plan, All Wings (1-M)327Office Wing "A" DrawingsFoundation and Basement Plan and Details of Pump Room, Cafeteria and Kitchen (2-M)327First Floor Plan and Detail of Typical Radiator Enclosure (3-M)327Second Floor Plan and Details of Toilets (4-M)327Heating Riser Diagram and Details (5-M)327Basement Ventilation, C.F.R Engine Rooms and Other Details (6-M)revised 6/4/1941327Garage Wing "B" DrawingsFoundation Plan and Other Details (7-M)327First Floor and Mezzanine Floor Plans (8-M)327Dynamometer Wing "C" DrawingsFoundation and Basement Plan and Detail of Machine Room (9-M)revised 6/4/1941327Foundation and Basement Plans (10-M)327First Floor Plan and Heating and Ventilation Schedules (11-M)327Miscellaneous Details (12-M)327Miscellaneous Details (13-M)327Fuel and Oil Storage Wing "H" DrawingsFoundation and First Floor Plans (14-M)327Details of Gasoline Piping (15-M)revised 1/24/1941327Tank Field Foundation Plan and Details (16-M)revised 1/24/1941327Boiler House Wing "D" Addition DrawingsFoundation and Boiler Room Plans and Piping Details (17-M)327First Floor Plan and Details, Addition to Chemical Laboratory (18-M)revised 6/4/1941327Electrical Drawings by Albert Kahn Associated Architects & Engineers, Inc.12/30/1940revised 10/29/1941 except as notedink-on-linen and pencil-on-vellum drawings, 22-3/4x46 to 24x47 inchesPlan and Details of Power and Lighting Distribution Systems (1-E)328Details of Electrical Sub-Station (2-E)revised 2/20/1941328Details of Electrical Sub-Station and Motor Generator Room (3-E)revised 3/15/1941328Office Wing "A" Drawings328Basement Plan and Boiler House Plans (4-E)328First Floor Plan and Telephone Riser Diagram (5-E)328Second Floor Plan and Fan Room Plans (6-E)328Garage Wing "B" Drawings328First Floor, Mezzanine Floor and Fuel & Oil Storage Building "H" Floor Plans (7-E)328Dynamometer Wing "C" Drawings328First Floor Plan (8-E)328Plan of Foundations and Connecting Tunnels (9-E)328Power Panel Wiring Diagrams (10-E)328Details for Conduit Work, Dynamometer Wing "C" (11-E)revised 2/27/1941328Plan of Spare Conduit in Basement, Dynamometer Wing "C" (12-E)revised 2/20/1941328Conduit Diagram (13-E)revised 3/15/1941328

    (title incomplete due to paper damage)

    U.S. Navy Yard, Shipfitters' Shop, Electrical Shop, Extension to Building No. 3, Galvanizing Shop, Pipe and Copper Shop, Job No. 1855-A, 1855-B, 1855-C, 1855-D, 1855-E, Pearl Harbor, Hawaii1940Construction Drawings, Architectural and Structural, Reverse Sepia Prints58 drawings87Chrysler Corporation, Assembly Building for Tank Arsenal, Job No. 1867, Warren Township, Michigan1940-1942Construction Drawings by Albert Kahn, Associated Architects & Engineers219Architectural Drawings9/16/1940negative photostatic prints, 24x50 inchesSite Plan (X)undated25-3/4x19-1/2 inches219Construction Progress Schedule (X-1)revised 10/18/194015-3/4x29-1/4 inches219Plot Plan (1)revised 1/6/1941219Detail of Switch Connection to Michigan Central Railroad (1-A)revised 4/31/1941219Plot Plan and Section of Test Track (1-B)10/24/194025x26-1/2 inches219Plot Plan, Elevation and Sections of Test Track (1-C)10/24/1940revised 10/29/194025-1/4x26-1/2 inches219Plot Plan and Section of Test Track (1-D)11/31/194026-1/4x26-3/4 inches219Plot Plan (A)revised 2/27/194230-1/4x40 inches219Foundation Plan (2)revised 1/6/1941219Floor Plan (3)revised 4/23/1941219Roof Plan (4)revised 3/27/1941219South and East Elevations and Cross-Sections "B-B" and "E-E" (5)revised 1/6/1941219North and West Elevations and Longitudinal Sections "A-A" and "F-F" (6)revised 1/6/1941219Cross-Section on Line "C-C" and "D-D" (7)revised 10/9/1940219Cross-Section on Line "E-E" (8)revised 3/27/1941219Longitudinal Section on Line "A-A" (9)revised 10/9/1940219Cross Section on Line "B-B" (10)revised 10/9/1940219Longitudinal Section on Line "F-F" (11)revised 10/9/1940219Details of Columns (12)revised 12/6/1940219Detail Sections (13)revised 1/6/1940219Details of Expansion Joints and Vertical Ladders (14)revised 10/9/1940219Plan of Transformer Platform and Switchboard Room, and Longitudinal Section "X-X" (15)revised 9/28/1949219Details of Transformer Platform and Switchboard Room (16)revised 9/28/1940219Door Details (17)revised 1/6/1941219Door and Bridge Details (18)revised 10/18/1940219Details of Truck Well and Toilets (19)revised 1/8/1942219Architectural Drawings (cont)negative photostatic prints, 23x46-1/4 to 23x48-3/4 inchesPlot Plan Showing Proposed Location of Sprinkler and Storage Tanks with Reference to Future Railroad Track Facilities (5-FL)12/17/194020-1/2x35-1/4 inches2110Revised Framing Plan of Switch Room (100-X)12/24/194017x16-1/2 inches2110Details of Machine Foundations (200)1/9/19412110Details of Machine Foundations (201)1/9/19412110Details of Machine Foundations (202)1/9/19412110Details of Machine Foundations (203)1/9/19412110Details of Machine Foundations (204)1/10/19412110Details of Machine Foundations (205)1/14/19412110Details of Machine Foundations (206)1/28/19412110Details of Machine Foundations (207)1/31/19412110Details of Machine Foundations (208)2/14/19412110Details of Machine Foundations (209)2/7/194118-1/2x34-3/4 inches2110Details of Machine Foundations (210)2/11/194118-1/4x34-1/2 inches2110Details of Foundation Footings for Scale (211)2/11/1941revised 3/31/194118-3/4x34-1/4 inches2110Details of Foundation Footings for Scale (212)2/26/1941revised 3/31/194120x34-1/2 inches2110Details of Footing of Tramrail Cranes (213)2/19/194120x34-1/2 inches2110Main Assembly Line Details (214)2111

    (date illegible)

    Main Assembly Line Details (215)2111

    (date illegible)

    Heat Treat Details (216)2/21/1941revised 4/2/19412111Heat Treat Details (217)3/3/1941revised 4/2/19412111Details of Meter and Pump Houses (218)3/3/1941revised 3/4/194123-1/2x40-3/42111Press Details (219)undated18-1/2x35-3/4 inches2111Details of Oil Handling System (220)3/27/19412111Details of Oil Handling System (221)3/27/1941revised 6/11/19412111Details of Oil Handling System (222)3/27/19412111Details of Ladders and Platforms to Crane Cabs (223)revised 3/31/19412111Details of Ladders and Platforms to Crane Cabs (224)4/3/194123-1/2x20 inches2111Plan of Sidewalks and Pavements (225)revised 7/29/19412111Details of Paint Mixing Room (226)6/11/1941revised 6/17/194122-3/4x40 inches2111Details of Spray Booth Pit (226-A)6/9/194124x39 inches2111Plan of Additional Paving West of Assembly Building (227-Rev)10/2/194123-1/2x31-1/4 inches2111Plan of Revised Track Layout (228)10/2/194131-3/4x42 inches2111
    Structural Drawings9/9/1940negative photostatic prints, 23-1/2x50 inchesRoof Framing Plan (1A-S)2112Bottom Chord Framing Plan (2A-S)revised 10/8/19402112Sections of Trusses and Sway Frames and Details (3A-S)2112Framing Elevations (4A-S)revised 1/6/19412112Column Schedule and Details of Transformer Platform and Switch Room (5A-S)revised 10/3/19402112Footing Plan and Details (6A-S)9/16/19402112Footing Plans and Sections of Storage Reservoir and Tank (7A-S)revised 1/6/194123-1/4x40 inches2112Mechanical Drawingsnegative photostatic prints, 23x47-1/4 to 23-3/4x50 inchesFoundation Plan (1-M)revised 7/24/19422113First Floor Plan (2-M)2 prints (one positive and one negative)revised 3/26/19412113Plan Showing Underground Fire Protection Mains and Miscellaneous Details (3-M)revised 2/11/19412113First Floor Plan (4-M)revised 10/20/19412113Details of Pump Pit No. 1 and Pump Room, Expansion Bend Schedule, and Miscellaneous Details (5-M)revised 10/20/19412113Details of Sewage Treatment Plant (6-M) by Hubbell, Roth & Clark, Consulting Engineersrevised 8/6/194224x38-1/2 inches2113Part Plan and Sections (6-M-A)1/6/194124x18-1/2 inches2113Diagram of Gasoline and Oil Quenching System, Diagram of Propane System, and Miscellaneous Diagrams (7-M)4/7/19412113Plan and Sections "A-A," "B-B" and "C-C" (8-M)6/3/1941revised 6/17/19412113Plan of Heater Room Exhaust Fan (9-M)7/1/1941revised 8/18/194119x33-1/2 inches2113Details of New Cond. Pump and Receiver Connections (15-M)8/2/19412113Plot Plan Showing Sprinkler Storage Reservoir and Gravity Tank, and Boiler House Storm Sewer and Septic Tank (100-M)12/3/1940revised 12/6/194023x32-3/4 inches2113Diagrams of Water System, Schemes # 1 & 2 (101-M)23x34-1/2 inches2113Diagrams of Water System, Schemes # 3 & 4 (102-M)24x33-3/4 inches2113Plan (103-M)12/7/194012x18-1/4 inches2113Plot Plan Showing Water Services, Sewers and Sewer Plant West of Plant (104-M)12/31/1940revised 4/8/194122-1/2x32 inches2113Details of Storm Sewers and Catch Basin (105-M)2113Plot Plan (106-M)2/5/194122-3/4x21-1/4 inches2113Details of Pump and Pump House (200-M)4/24/194121-3/4x30-3/4 inches2113Electrical Drawings10/18/1940negative photostatic prints, 24x50 inchesPlot Plan and Details of Manholes and Underground System (1-E)revised 1/29/19412112One-Line Diagram and Details of Switching Stations (2-E)revised 1/29/19412112Plans and Elevation Showing Layout for Assembly Building Sub-Stations No. 1, 2 & 3 (3-E)revised 1/29/19412112First Floor Plan Showing Power Layout (4-E)revised 8/6/19412112First Floor Lighting Plan (5-E)revised 6/27/19412112Lighting Sections and Riser Diagram and Power Panel Details (6-E)revised 3/10/19412112First Floor Plan Showing Crane Collector, Telephone, Fire Alarm and Dismissal Systems (7-E)12/12/1940revised 3/10/19412112Plan of Propane Building (8-E)undated18x27-1/2 inches2112
    Curtiss-Wright Corporation, Airplane Division, Ventilation for Experimental Department and Additions to Cooling Water System, Alterations to Kitchen in Plant No. 3, Manufacturing and Assembly Plant, Job No. 1869-AB, AC, N, Columbus, Ohio1943-1944Construction Drawings, Architectural, Mechanical, and Electrical8 drawings113
    Job No. 1888-2223Ford Motor Company, Airplane Parts Manufacturing Building (Willow Run Bomber Factory), Job No. 1888-R, Ypsilanti, Michigan1941-1943Construction Drawings by Albert Kahn Associated Architects & Engineers, Inc.Architectural Drawings6/30/1941ink-on-linen drawings with pencil notations and ink and pencil drawings on vellum, 31x64-1/2 to 33-1/2x66-3/4 inchesPlot Plan (1)revised 5/23/194235Site Plan Showing Parking for 26,095 Cars (2)undated32x53-3/4 inches35Foundation Plan and Details (2)revised 11/3/194135Foundation Plan and Details (2-A)revised 7/30/194135First Floor Plan (3)revised 3/10/194235First Floor Plan-Temporary Construction Lighting (3-A)35First Floor Plan (3-B)4/1/1943revised 11/12/194335Mezzanine Floor Plan (4)revised 3/10/194235Mezzanine Floor Plan-Temporary Construction Lighting (4-A)35Mezzanine Floor Plan (4-B)9/28/194335Second Floor Plan (5)revised 11/3/194135Second Floor Plan (5-B)11/27/194335Roof Plan (6)revised 5/4/194235Roof Plan (6-A)revised 7/2/194235Sections (7)revised 7/30/194135Sections (8)revised 7/30/194135Sections (9)revised 11/3/194135Sections (10)revised 11/3/194135East and West Elevations (11)revised 11/3/194135Elevations (12)revised 12/29/194135Elevations (13)revised 8/19/194135Elevation Details (14)revised 8/19/194135Elevation Details (15)35

    (date illegible due to vellum damage)

    Sections (16)revised 9/10/194136"A" Sections (17)revised 9/10/194136Sections (18)revised 8/19/194136Sections and Details (19)revised 3/10/194236Construction Details "A" (20)revised 9/10/194136Construction Details (21)revised 9/10/194136Construction Details (22)revised 9/10/194136Details of Bridges and Ladders (23)revised 7/30/194136Details of Stairs and Toilets (24)revised 9/10/194136Details of Toilets (25)revised 3/10/194236Details of Toilets and Locker Rooms (26)revised 3/10/194236Details of Second Floor Locker Rooms, Partitions and Lunch Room Tables (27)revised 11/3/194136Door Details (28)revised 8/19/194136Details of Stairs # 11, 12, 53 & 54 and Toilet Rooms (29)revised 3/10/194236Details of Crane Platforms and Partition Line "B" (30)revised 9/10/194136Crane Clearance Diagrams and Platform Details (31)2/4/194236Plans and Sections of Stair # 5 and Freight Elevator (32)revised 3/23/194236Plans and Sections of Stairs # 1-4 and Passenger Elevator (33)revised 12/10/194136Miscellaneous Details of Engineering Building (34)10/10/194136Details of Underground Transformer Sub-Stations (35)revised 3/30/194236Details of Expansion Joints (36)revised 9/10/194137Details of Expansion Joints (37)revised 9/10/194137Details of Expansion Joints (38)revised 8/26/194137Plans and Sections of Fan Rooms at Roof (39)revised 5/26/194237Details of Fan Rooms on Col. Lines 15-17 & 28-30 (40)revised 11/3/194137Blackout Details and Details of Hangar Door and Engineering Department (41)7/30/194137Tunnel Details (42)revised 9/9/194137Details of Fan Rooms # 68 & 69 and First Floor Pump Rooms (43)8/19/1941revised 2/24/194237Plans and Sections of Hospital Unit (44)8/25/1941revised 11/11/194237Details of First Aid Units (45)9/3/1941revised 3/23/194237Details of Exterior Bridges and Watch Towers (46)9/2/1941revised 9/30/194137Bridge Details (47)9/2/1941revised 9/30/194137Plans and Sections of Metallurgical, Physical and Chemistry Labs (48)10/4/1941revised 2/26/194237Details of Metallurgical, Physical and Chemistry Labs (49)10/4/1941revised 3/5/194237Laboratory Equipment Details-Metallurgical, Physical and Chemistry Labs (50)10/4/1941revised 2/13/194237Laboratory Equipment Details-Metallurgical, Physical and Chemistry Labs (50-A)10/4/1941revised 1/9/194233x46 inches37Revisions to X-Ray Laboratory-Engineering Building Portion (50-B)12/24/1941revised 5/11/194237Details of Women's Locker Rooms, Toilet Rooms and Lunch Rooms (51)revised 10/6/194137Plans and Details of Main Kitchen and Cafeteria, Second Floor Engineering Building (52)10/10/1941revised 2/24/194237First and Second Floor Plans at Pay-Station and Private Dining Rooms (53)10/10/1941revised 2/24/194237Details of Toilet and Locker Rooms and Pay-Station, Engineering Building (54)10/10/1941revised 2/24/194237Details of Pay-Station, Engineering Building (55)10/10/1941revised 2/24/194237Details of Main Kitchen, Private Dining Rooms, Cafeteria and Toilets (56)10/10/1941revised 12/29/194137
    Architectural Drawings (cont)ink and pencil drawings on vellum and tracing paper, 20x30-3/4 to 31-1/2x46-3/4 inchesDetails for Metal Duct Openings (100)9/18/1941revised 10/20/1941192Details of Openings, Framing, etc., for Ducts from Fan Pits # 1-7 & 9 (104)10/8/1941revised 10/20/1941192Details of Duct Openings at Transfer Bay (105)9/25/1941192Details of Duct Openings at Bridge (106)9/25/1941revised 11/15/1941192Details of Revised Transformer Hatches, Sub-Stations #1-A to 8 (107)9/25/194117-3/4x33 inches192Details of Revised Transformer Hatches, Sub-Stations #9 & 10 (108)9/26/194116x24-1/2 inches192Details of Openings for Ducts from Toilets and Fan Pit #8 (109)10/20/1941revised 1/22/1942192Details of Men's Lunch Rooms, First Floor, Mezzanine and Second Floor (112)revised 11/3/1941192Details of Second Floor Sub-Stations (114)revised 12/29/194119-3/4x23-1/2 inches192Details of Openings for Ducts (115)11/26/1941revised 1/22/1942192Details of Openings for Ducts (116)12/11/1941revised 8/20/1942192Details of Transformer Sub-Station Em-1 (117)11/25/1941192Details of Fan Platforms, Walkways and Openings for Ducts (118)12/11/1941revised 1/28/1942192Details of Gratings and Catch Boxes at Manholes to Tunnels #1-3 (119)12/11/1941192Details of Revised Crane Operator's Platforms-Manufacturing and Receiving Areas (120)12/19/1941revised 2/4/1942192Details of Relocation of Craneway Platforms and Ladders (121)12/19/1941192Details of Manhole for Transformer Oil Drain Tank (121)4/7/1942revised 6/12/194216-1/2x23-1/4 inches192Details of Supports for Roof Obstruction Lights (122)12/12/1941192Details of Jib Cranes, Second Floor Col. Line Q (123)12/18/1941192Plan of Mezzanine Floor Wood Partitions (124)12/8/1941revised 4/18/194218x47 inches193Details of Wood Partitions (125)12/18/1941revised 4/18/194218x43-1/2 inches193Details of Mezzanine Floor Locker Rooms (130)3/10/1942193Details of Mezzanine Floor Locker Rooms (131)3/10/1942revised 4/9/1942193Details of First and Second Floor Locker Rooms (132-133)2 drawings3/10/1942193Detail of Expansion Joint in Ceiling (134)1/21/194218-1/2x18-1/2 inches193Details of Mezzanine Floor Locker Rooms (135)3/10/1942193Plan of Revised Sub-Station #4 (136)2/5/194218-1/2x30 inches193Details of Truck Scale Pit and Scale House (137)7/14/1942revised 9/15/1942193Details of Revised Crane Operator's Platforms, Manufacturing Area (138)revised 2/4/1942193Plan and Sections of Metal Partitions, Second Floor, Engineering Building (139)2/4/1942193Details of Radio and Instrument Rooms (140)3/9/1942revised 11/23/1942193Details of Women's Toilet Rooms # F-19 to F-23 and Men's Toilet Room # M-33 (141)3/10/1942193Plan of Women's Toilet Room # F-21 and Men's Toilet Room # M-31 (142)3/10/1942193Details of Women's Toilet Room # F-22 and Men's Toilet Room # M-32 (143)3/10/1942193Details of Women's Toilet Rooms # F-25 to F-27 (144)3/10/1942193Details of First and Mezzanine Floor Toilet Rooms (145)3/10/1942193Details of First Floor Toilet Rooms # F-29 to F-32 (146)3/10/1942193Details of Toilet Rooms (147)3/10/1942193Details of Revisions Involved in Change from Locker Room to Record Room (148)3/3/1942revised 3/12/1942194Details of Unit Heater Service Walks, Receiving Bay (150)3/4/1942revised 3/11/1942194Details of Unit Heater Service Walks, Shipping Bay (151)3/4/1942revised 3/11/1942194Details of First Aid Units # 5 & 6 (152)3/14/1942revised 5/8/1942194Details of New Door at Cafeteria Dining Room, Second Floor, Engineering Building (153)13x21-1/2 inches194

    (date illegible due to vellum damage)

    Details of Revisions to Hospital (154)revised 4/18/1942194Details of Partition on Tool Design, Locker Room # M-4 (155)3/16/1942revised 11/11/1942194Details of Openings for Ducts (156)3/26/1942194Details of Fan Platforms and Duct Openings (157)3/26/1942194Details of Duct Openings from Radio and Instrument Rooms (158)4/6/1942revised 11/23/1942194Plans and Sections of Pits # 1 & 2 (159)3/26/194215-1/2x26 inches194Details of Concrete Valve Pits (160)4/2/1942revised 4/6/1942194Details of Valve Pits # C-2 & C-3 (161)4/10/1942194Details of New Fan Platform at Col. Line 40 between U & UV, First Floor (162)5/5/1942194Details of Machine Gun Range (164)5/21/1942revised 6/25/1942194Details of Fan Rooms on Col. Line "C" (165)4/18/1942194Details of Valve Pits for Fire-Protection System (167)5/7/1942194Part Plot Plan Showing Fences and Gates (168)5/23/1942revised 8/10/1942194Plans and Section of Spiral Stairway, Engineering Building (169)5/26/1942194Plans and Elevation of Stairs to Mezzanine over F.A. Unit #5 (171)5/29/1942194Details of Additional Doors # 8 and Change in Doors at B-3 (172)6/6/1942195Plot Plan Showing Fences and Gates (173)6/18/1942195Details of Additional Walkways and Platforms over Craneways # 2-5 (174)10/20/1942revised 1/8/1943195Details of Turntable Pit and Machine Room for Compass Calibration of the B-24 (176-178)3 drawings8/10/1942revised 8/20/1942195Details of Revision of Duct and Register Openings in Sub-Stations (179-180)2 drawings8/13/1942revised 10/5/1942195Laboratory Plans, Sections and Details (181)10/5/1942revised 11/11/1942195Details of Platforms for Blackout Sirens (182)10/6/1942195Details of Tunnel, Fan Room T-1 (183)revised 11/18/1942195Details of Addition to Fan Room #35 (184)revised 11/18/1942195Details of New Fan Room #54-A (185)revised 11/18/1942195Details of Temporary Wood Shed over Turntable (186)11/24/194219-1/2x31-1/2 inches195Details of Radio Compass Calibrating Transmitter Housing Post (187)11/30/194220-1/2x17-1/2 inches195Details of Revision of X-Ray Room (189)3/22/194317-1/4x30-1/2 inches195Details of Revised Doors, South Elevation (190)6/30/1943195Details of Salvage Yard, Distribution Center (193)8/28/1943195
    Architectural Drawings (cont)ink-on-linen drawings and pencil-on-vellum drawings, 31x55 to 32-1/2x66-1/4 inchesFoundation Plan, Engineering Building (101)9/18/1941revised 10/6/194138Foundation Plan, Engineering Building (102)9/18/1941revised 9/29/194138Foundation Plan, Engineering Building (103)9/18/1941revised 9/29/194138Details of Craneway Service Walks (126)1/29/1942revised 5/20/194338Details of Craneway Service Walks (127)1/29/1942revised 4/30/194238Details of Craneway Service Walks (128)1/29/1942revised 3/11/194238Details of Craneway Service Walks (129)38

    (date illegible due to vellum damage)

    Details of Payroll Offices (149)3/4/1942revised 4/4/194238Details of Battery Room (163)revised 4/11/194238
    Structural Drawings4/29/1941ink drawings on vellum and linen, 32-1/2x50 inchesColumn Schedule and Footing Plan (1-S1)revised 9/9/1941196Column Schedule and Footing Plan (1-S2)6/28/1941revised 8/18/1941196Details of Bottom Chord Bracing, Crane Girders and Roof Framing (2-S1)revised 10/10/1941196Roof Framing Plan, Second Floor Plan and Details of Bottom Chord Bracing (2-S2)6/28/1941revised 10/10/1941196Framing Plans and Schedule, South of Expansion Line "K" from Columns 19 to 81 (3-S1)6/28/1941revised 11/17/1941196Framing Plan and Beam Schedule, North of Expansion Line "K" from Columns 19 to 81 (3-S2)6/28/1941revised 6/30/1941196Framing Plans, South of Expansion Line "K" & East of Column Line 81 (3-S3)6/28/1941revised 9/25/1941196Framing Plans, North of Expansion Line "K" & East of Column Line 81 (3-S4)6/28/1941revised 6/30/1941196Details of Wall Framing, Bracing and Crane Runways (4-S1)revised 11/17/1941196Details of Wall Framing and Bracing (4-S2)6/28/1941revised 9/25/1941196Details of Trusses and Sway Frames (5-S)revised 6/30/1941196Sections and Details (6-S)revised 6/30/1941196Cross-Section and Truss Details and Schedule (7-S)revised 6/30/1941196Details of Framing for 150-Foot Doors (8-S)6/28/1941revised 10/27/1941196Details of Exterior Bridges and Watch Towers (9-S)9/2/1941revised 9/30/1941196Details of Added and Revised Trusses and Trolley Beam Conn. (SK-101-S)6/28/1941revised 6/30/1941196Details of Vaults and Machine Foundations (SK-102-S)6/4/1941revised 10/4/1941196Details of Men's Toilet Rooms and Mezzanine Storage Space (103-S)2/18/1942revised 3/14/194230-1/4x39-1/4 inches196Mechanical Drawingsink and pencil drawings on vellum and sepia prints, 31x64-1/2 to 32x66 inchesRevisions of Trunk Sewers of Sheet No. 1 (1-MX)10/25/194122x20 inches39Plot Plan (1-M)revised 4/20/194239Foundation Plan (2-M)12/8/194139Aviation Field Drainage Plan (2-Ma)undated34x47-1/2 inches39Plan of Drainage Work, South of Building (2-Mb)1/19/194224x69 inches39Details of First Aid Rooms, Scale and Spray Pits (2-Mc)12/30/194139Foundation Plan, Showing Sprinkler and Plumbing Work Outside of Building Walls (2-Md)12/23/1941revised 6/26/194239First Floor Plan and Details (3-M)undated39Mezzanine Floor Plan and Details (4-M)undated39Second Floor Plan and Details (5-M)undated39Plan of First Floor Engineering Section, Between Column Lines B & M (6-M)revised 1/9/194239Plan of First Floor Engineering Section, Between Column Lines M & X (7-M)revised 12/22/194139Plan of First Floor Engineering Section, Between Column Lines X & ZQ (8-M)revised 10/13/194239Plan of Second Floor Engineering Section, Between Column Lines B & N (9-M)revised 6/5/194239Plan of Second Floor Engineering Section, Between Column Lines N & ZA (10-M)revised 6/5/194239Plan of Second Floor Engineering Section, between Column Lines ZA & ZQ and Locker Room Details (11-M)revised 1/7/194239Toilet Room Details (12-M)undated39Toilet and Locker Room Details (13-M)undated39Toilet and Locker Room Details (13-Ma)undated39Locker Room and First Aid Unit Details (13-Mb)3/17/194239First Floor Plan (14-M)12/8/1941revised 5/22/194239Mezzanine Floor Plan (15-M)12/8/1941revised 5/22/194239Second Floor Plan (16-M)12/8/1941revised 4/24/194239Heating and Ventilating Details (17-M)12/8/1941revised 5/22/194239Details and Plan of Trench under Engineering Section (18-M)12/8/194139Elevation and Section of Typical Support for Heating Coil (20-XM)11/4/194118-3/4x31-1/2 inches39First Floor Plan (20-M)8/14/1941revised 5/4/194240Mezzanine Floor Plan (21-M)8/14/1941revised 5/4/194240Second Floor and Truss Space Plan (22-M)8/14/1941revised 5/4/194240Sections and Details (23-M)8/14/1941revised 2/4/194240Plan and Details of Fan Units 1-26 (24-M)8/14/1941revised 2/4/194240Plan of Fan Units 27-39 (25-M)8/14/1941revised 2/4/194240Plan of Fan Units 40-65 (26-M)8/14/1941revised 2/4/194240Plan of Fan Rooms 66-69 (27-M)8/14/1941revised 1/7/194240Plan of Fan Units 70-80 (28-M)8/14/194140Details of Ventilation for Engineering Lab (29-M)9/14/1941revised 1/10/194240Plan of Toilet Rooms M-1 to M-5 and S-1 to S-5, (30-M)10/9/1941revised 3/3/194240Plan of Fan Units 70-80 (31-M)11/3/1941revised 8/8/194240Plan of Tunnel System and Details of Fan Units 140 & 141 (32-M)11/25/1941revised 12/2/194140Plan of Fan Units 105, 105-A, 106, 112 & 115 (33-M)11/25/1941revised 4/8/194240Plan of Fan Units 107-114 (34-M)11/25/1941revised 3/12/194240Plan of Fan Units 116-121 (35-M)11/25/1941revised 3/19/194240Plan of Toilet Exhaust Units 122-129 (36-M)11/25/1941revised 3/3/194240Plan of Fan Units 130-134 (37-M)11/25/1941revised 3/19/194240Plan of Smoke Exhaust Fan Units and Details (38-M)12/17/194140Plan of Toilet Exhaust Systems (41-M)3/12/1942revised 4/8/194240Plan of Toilet Rooms and First Aid Room (42-M)3/12/1942revised 4/8/194240Plot Plan Showing Settling Basins and Oil Separators (43-M)4/22/1942revised 5/22/194228-1/4x40-1/2 inches40Plans and Sections of Settling Basin and Oil Separator No. 1 (44-M)4/22/1942revised 5/22/194228-3/4x39-1/4 inches40Plans and Sections of Settling Basin and Oil Separator No. 2 (45-M)4/22/1942revised 5/22/194225x38-1/2 inches40Construction Details of Settling Basins and Oil Separators (46-M)4/22/1942revised 5/22/194225x38-1/2 inches40Details of Roof Hatch for Pump Houses-Oil Separator Nos. 1 & 2 (46-XM)6/25/194215-1/2x29-1/2 inches40Details of Air-Conditioning-Radio and Instrument Rooms (47-M)revised 8/12/194231-1/4x41 inches40Plan of Transformer Room Ventilation, First Floor Battery Room and Additions and Revisions to Hospital Area (48-M)3/19/1942revised 5/11/194240Mechanical Drawingspencil drawings on tracing paper and vellum, 22-1/2x34-1/2 to 27x48-3/4 inchesPlan and Sections of Welding and Tool Room Offices (49-M), undatedrevised 4/15/1942197Plan and Section of Office for Maintenance Department (50-M), undatedrevised 5/22/1942197Plans, Section and Piping Diagram of Gauge Inspection Room (51-M), undatedrevised 5/22/1942197Plan, Elevation and Section of Chief Clerk's Office (52-M)3/24/1942revised 5/22/1942197Plan and Section of Five Offices and Conference Room (53-M), undatedrevised 4/15/1942197Plan and Sections of Shipping Record Office (54-M), undatedrevised 4/15/1942197Plans, Elevation, Section and Detail of Property Receiving Office Ventilation (55-M), undatedrevised 4/24/1942197Plan and Sections of Manufacturing Superintendent Clerk and Blue-Print Release Offices (56-M), undatedrevised 4/15/1942197Plan and Sections of Engine Dress-Up and Shipping Offices (57-M), undatedrevised 4/15/1942197Plan and Sections of Outer Wing Department Office (58-M), undatedrevised 4/15/1942197Plan and Section of Industrial Relations Office (59-M), undatedrevised 4/15/1942197Mechanical Drawings (cont)pencil and blue ink drawings on vellum and sepia prints, 30x64 to 32-1/4x66-1/2 inchesPlans and Section of Miscellaneous Small Parts Spray Room and New Dressing and Shower Rooms Ventilation (60-M)5/13/1942revised 6/4/194241Plans and Sections of Revised Sub-Station Ventilation (63-M)7/20/1942revised 8/6/194241Plans and Sections of Tunnel Ventilation (64-M)7/30/1942revised 9/1/194241Plans and Sections of Scale House and Scale Pit (65-M)7/30/194225-1/4x38-1/2 inches41Plan of Paint Lab Ventilation (66-M)10/8/1942revised 12/7/194222-1/4x26-1/2 inches41Plans, Elevation and Section of Tunnel Ventilation (67-M)10/21/1942revised 11/6/194241First Floor Plan and Details (68-M)10/19/194341Plan and Section of Filter Layout for Propeller Area (69-M)2/20/1943revised 5/20/194323x42 inches41Details of Exhaust Ventilating System from Present Air Washer (70-M), undatedrevised 5/24/194332-1/4x36 inches41Plan of Underground Fire Protection Mains (100-M)9/24/194141Plan of Fire Protection Sprinkler System (100-Ma)2/21/1942revised 8/4/194241Plans of Overhead Automatic Sprinkler System9/24/194141

    (number illegible due to paper damage)

    Plan and Sections of Underground Fire Protection Mains (102-M)10/9/194121-1/2x31-1/4 inches41Plan and Details of Equipment Layout of Main Kitchen (300-M)9/16/1941revised 9/29/194119-1/2x41-1/4 inches41Plan of Equipment Layout of Cafeteria Dining Room (301-M)9/4/1941revised 9/16/194119-1/2x52 inches41Plan and Details of Equipment Layout of Kitchens for Private Dining Rooms (302-M)9/5/194119-1/2x41-1/4 inches41Plan and Details of Layout of Services for Main Kitchen (303-M)9/16/1941revised 9/30/194119-1/2x41-1/2 inches41Plan of Services for Cafeteria Dining Room (304-M)9/16/1941revised 9/18/194119-1/2x52 inches41Plan of Services for Private Dining Room Kitchens (305-M)9/16/1941revised 9/18/194119-1/2x41-1/2 inches41
    Electrical Drawingsink and pencil drawings on vellum, 32x61-1/2 to 34x68 inchesPlans of Lighting and Power Layout in Service Tunnel (30-E)8/4/1941revised 2/12/194242Plan of Cubicle Locations in First Floor Manufacturing Area (31-E)8/25/1941revised 6/22/194242Cubicle Details (32-E-1)9/4/194142Cubicle Details (32-E)8/18/1941revised 10/3/194142Key Plan and Schematic Wiring Diagrams of 220 V. and 440 V. Power, 440 V. Welding and 230 V. D.C. (33-E)8/25/1941revised 12/12/194142Schematic One-Line Diagram (under Slab) of General Lighting in Manufacturing Area (34-E-1)10/2/1941revised 11/18/194142Key Plan and Schematic Conduit Diagram for Emergency Lighting and 180 ~ and 240 ~ HiCycle Panels (34-E)8/25/1941revised 3/24/194242Schematic Diagram of Conduit Layout for Low Tension System and 110 V. and 180 ~ HiCycle Receptacles (35-E)8/25/1941revised 3/30/194242Plan of Conduit Layout in Floor Slab for 440 V. Power, 440 V. Welding, 240 V. Power, 250 V. D.C. and Lighting (36-E)8/25/1941revised 11/26/194142Plan of Conduit Layout in Floor Slab for 440 V. Power, 440 V. Welding, 240 V. Power, 250 V. D.C. and General and Emergency Lighting (37-E)8/25/1941revised 11/22/194142Plan of Conduit Layout in Floor Slab for 440 V. Power, 440 V. Welding, 240 V. Power, 250 V. D.C. and Lighting (38-E)8/25/1941revised 11/18/194142Plan of Conduit Layout in Floor Slab for 110 V. and 180 ~ and 240 ~ HiCycle Receptacles and Low Tension (39-E)9/3/1941revised 1/19/194242Plan of Conduit Layout in Floor Slab for 110 V. and 180 ~ and 240 ~ HiCycle Receptacles and Low Tension (40-E)8/25/1941revised 1/19/194242Plan of Conduit Layout in Floor Slab for 110 V. and 180 ~ and 240 ~ HiCycle Receptacles and Low Tension (41-E)9/3/1941revised 1/19/194242Plan of Conduit Layout in Floor Slab for 440 V. Power, 220 V. Power, 250 V. D.C. and 120 V. General and Emergency Lighting (42-E)9/25/1941revised 1/22/194242Plan of Conduit Layout in Floor Slab for 440 V. Power and 120 V. General and Emergency Lighting (43-E)9/30/1941revised 1/22/194242Plan of Conduit Layout in Floor Slab for 440 V. Power and 120 V. General and Emergency Lighting (44-E)10/4/1941revised 1/22/194242Plan of Conduit Layout in Floor Slab for 440 V. Power and 120 V. General and Emergency Lighting (45-E)11/12/1941revised 9/19/194242Plan of Conduit Layout in Floor Slab for 440 V. Power and 120 V. General and Emergency Lighting (46-E)12/2/1941revised 1/22/194242Plan of Conduit Layout in Floor Slab for 440 V. Power and 120 V. General and Emergency Lighting (47-E)12/5/1941revised 2/12/194242Details of Emergency Switchboard (48-E)3/10/194242Plan and Sections of Conduit and Equipment Layout of Transformer Vault EM-1 (48-E-1)3/19/194242Plan and Sections of Conduit and Equipment Layout of Transformer Vault EM-2 (48-E-2)3/10/1942revised 3/20/194242Plan and Sections of Conduit and Equipment Layout of Transformer Vault EM-3 (48-E-3)3/10/1942revised 4/17/194242Plan and Sections of Conduit and Equipment Layout of Transformer Vault EM-4 (48-E-4)3/20/194242Plan of Conduit Layout in Floor Slab for 110 V. and 180 ~ HiCycle Receptacles and Low Tension (49-E)9/25/1941revised 1/19/194242Plan of Conduit Layout in Floor Slab for 110 V. and 180 ~ HiCycle Receptacles and Low Tension (50-E)9/30/1941revised 1/19/194243Plan of Conduit Layout in Floor Slab for 110 V. and 180 ~ HiCycle Receptacles and Low Tension (51-E)10/4/1941revised 1/19/194243Plan of Conduit Layout in Floor Slab for 110 V. and 180 ~ HiCycle Receptacles and Low Tension (52-E)11/11/1941revised 1/19/194243Plan of Conduit Layout in Floor Slab for 110 V. and 180 ~ HiCycle Receptacles and Low Tension (53-E)12/2/1941revised 1/19/194243Plan of Conduit Layout in Floor Slab for 110 V. and 180 ~ HiCycle Receptacles and Low Tension (54-E)12/5/1941revised 3/30/194243Plan of Conduit for Monorail System (55-E)12/17/1941revised 11/16/194243Plan and Sections of Conduit and Equipment Layout of Transformer Vault "Y" (55-E-1)3/21/194243Plan and Sections of Conduit and Transformer Equipment Layout for Monorail Crane (55-E-2)11/16/194243Plan of Panel Locations on First Floor (56-E)revised 2/26/194243Plan of Panel Locations on First Floor (56-E-1)12/5/1941revised 4/14/194243Key Plan and Schematic Wiring Diagram of Three-Phase 480 V. Power and120/208 V. General Lighting (57-E)10/6/1941revised 4/9/194243Key Plan and Schematic Wiring Diagram of Three-Phase 180 ~ HiCycle (58-E)10/9/1941revised 3/30/194243Plan of Panel Locations on Mezzanine Floor (59-E)1/15/1942revised 4/27/194243Plan of Panel Locations on Mezzanine Floor (59-E-1)1/15/1942revised 7/8/194243Plan of Panel Locations on Second Floor (60-E)1/15/1942revised 4/27/194243Plan of Panel Locations on Second Floor (60-E-1)1/15/1942revised 7/6/194243Cubicle Details of First Floor Assembly Area (61-E)11/27/1941revised 4/29/194243Cubicle Details of First Floor Assembly Area (61-E-1)1/12/1942revised 4/29/194243Plans of Building Utility Power in Manufacturing Area (62-E)2/9/1942revised 4/27/194243Plan of Building Utility Power and Roof Ventilation Fans (63-E)3/6/1942revised 4/23/194243Plans and Sections of Conduit Layout for Fan Rooms (64-E)12/1/194243Plans of Conduit Layout for Dark Room and Paint Mix Laboratory (65-E)12/4/194243Details of Conduit Layout in Sub-Station "K" (70-E)12/15/1941revised 3/11/194244Details of Control Conduit and Grounding Plan for Sub-Station "K" (71-E)12/15/1941revised 4/30/194244Details of Power Conduit Layout in Sub-Station "M" (72-E), revised 3/11/94211/5/194144Details of Control Conduits and Grounding Plan for Sub-Station "M" (73-E)1/2/194244Details of Conduit Layout in Sub-Station "N" (74-E)2/26/194244Details of Capacitor Rack in Sub-Stations "A-D" (75-E)2/9/1942revised 2/21/194244Details of Capacitor Rack in Sub-Stations "F-J" (75-E-1)2/9/1942revised 2/21/194244Details of Capacitor Rack in Sub-Station "K" (75-E-2)undated44Details of Capacitor Rack in Sub-Station "M" (75-E-3)2/21/194244Details of Conduit Layout for Capacitors (75-E-4)3/31/194244Details of Transformer and Switchgear Assemblies (78-E)9/15/194144Details of Control Panels for Sub-Stations (79-E)8/29/1941revised 2/23/194244Details of Arrangement of Electrical Equipment Bases in Sub-Stations (80-E)2/13/194244Details of 120/13.8 Kv. Outdoor Sub-Stations No. 1-East and No. 2-West (81-E)10/29/1941revised 8/14/194244Key Plan for Underground Duct System (82-E)12/1/1941revised 5/22/194244Plans of Lighting Layout in Sub-Stations "A-J" (83-E)1/12/194244Cable Routing Schedule (84-E)3/31/1942revised 3/5/1943ink-on-linen drawing44Control Cable Routing Schedule (84-E-1)5/22/1942revised 3/5/1943ink-on-linen drawing44Details of Underground Duct Line to Huron River Pumping Station (85-E)1/6/1942revised 8/30/194344Plans and Sections of Conduit Layout of Oil Separator Nos. 1 & 2 (86-E)5/4/1942revised 5/29/194244Diagram of Control Cable (87-E)undated44Panel and Pull-Box Schedules (88-E)10/28/1941revised 3/25/194244Map of Dual-Power Service from The Detroit Edison Company and Interconnections with Other Sources to Ford Bomber Plant (89-E)undated16-1/2x24 inches44Details of Electrical Conduit and Connections for Compass Calibrating Turntable and Machine Room (120-E)12/21/1942pencil-on-linen drawing45Plans of Lighting and Receptacles between Rows B-C, Columns 19-37 (150E)9/24/1941revised 2/5/194245Plans of Lighting and Receptacles between Rows B-C, Columns 37-59 (151-E)9/24/1941revised 2/5/194245Plans of Lighting and Receptacles between Rows B-C, Columns 59-81 (152-E)12/28/194145Plans of Lighting and Receptacles between Rows B-C, Columns 81-103 (153-E)5/11/194245Plans of Lighting and Receptacles between Rows B-C, Columns 103-125 (154-E)12/31/194145Plans of Lighting and Receptacles between Rows B-C, Columns 125-141 (155-E)12/16/1941revised 12/31/194145Plans of Lighting and Receptacles between Rows J-K, Columns 19-37 (156-E)10/10/1941revised 5/26/194345Plans of Lighting and Receptacles between Rows J-K, Columns 37-59 (157-E)10/10/1941revised 5/4/194245Plans of Lighting and Receptacles between Rows J-K, Columns 59-81 (158-E)10/10/1941revised 1/2/194245Plans of Lighting and Receptacles between Rows J-K, Columns 81-103 (159-E)10/10/1941revised 1/2/194245Plans of Lighting and Receptacles between Rows J-K, Columns 103-125 (160-E)12/15/1941revised 1/3/194245Plans of Lighting and Receptacles between Rows J-K, Columns 125-141 (161-E)12/15/1941revised 1/3/194245Plans of Lighting and Receptacles between Rows P-Q, Columns 19-37 (162-E)undated45Plans of Lighting and Receptacles between Rows P-Q, Columns 37-59 (153-E)undated45Plans of Lighting and Receptacles between Rows P-Q, Columns 59-81 (164-E)11/7/194245Plans of Lighting and Receptacles between Rows P-Q, Columns 81-103 (165-E)1/3/194245Plans of Lighting and Receptacles between Rows P-Q, Columns 103-125 (166-E)1/15/194245Plans of Lighting and Receptacles between Rows P-Q, Columns 125-141 (167-E)1/15/194245Plans of Lighting and Receptacles between Rows TU-UV, Columns 19-37 (168-E)2/5/194245Plans of Lighting and Receptacles between Rows TU-UV, Columns 37-59 (169-E)2/3/194245Plans of Lighting and Receptacles between Rows TU-UV, Columns 59-81 (170-E)2/27/194246Plans of Lighting and Receptacles between Rows TU-UV, Columns 81-103 (171-E)1/19/1942revised 2/29/194246Plans of Lighting and Receptacles between Rows TU-UV, Columns 103-125 (172-E)1/19/1942revised 2/3/194246Plans of Lighting and Receptacles between Rows TU-UV, Columns 125-149-1/2 (173-E)1/19/1942revised 8/4/194246Plans of Lighting and Receptacles between Rows 15 & 17, Columns B-J and between Rows 17 & 19, Columns B-C, J-K, P-Q and TU-UV (174-E)1/20/194246Plans of Lighting and Receptacles between Rows 15 & 17, Columns J-X (175E)5/4/194246Plans of Lighting and Receptacles between Rows 15 & 17, Columns X-ZR (176-E)1/20/194246Lighting Plans of Interior Bridges (177-E)9/25/1941revised 2/4/194246Plans of Lighting and Receptacles between Rows 28 & 30, Columns UV-ZR (178-E)undated46Plans of First and Second Floor, Engineering Building (179-E)undatedink-on-linen drawing46Plan of Revisions to Hospital (179-E-1)undatedink-on-linen drawing46Plans of Hospital and Laboratory, First Floor, Engineering Building (180-E)1/9/1942ink-on-linen drawing46Plans of Main Kitchen and Cafeteria, Second Floor, Engineering Building (181-E)undatedink-on-linen drawing46Plans and Sections of Exterior Bridges and Watch Towers (182-E)1/12/1942ink-on-linen drawing47Plans of Lighting between Rows A & B and Rows 2 & 30, Inclusive (183-E)undated47Plans of Lighting between Rows A & B and Rows 72 & 95, Inclusive (184-E)undated47Plans of Lighting between Rows C-J and K-P and Rows 17 & 59, Inclusive (185-E)12/12/1941revised 1/20/1942ink-on-linen drawing47Plans of Lighting between Rows C-J and K-P and Rows 59 & 103, Inclusive (186-E)12/12/1941ink-on-linen drawing47Plan of Lighting between Rows X & ZR and Rows 3 & 15, Inclusive (187-E)undated47Plan of Lighting between Rows UV & ZR and Rows 17 & 28, Inclusive (188-E)1/20/194247Plan of Lighting between Rows B & X and Rows 3 & 15, Inclusive (189-E)undated47Plans of Lighting between Rows Q & TU and Rows 17 & 103, Inclusive (190-E)12/16/1941revised 1/20/194247Plan of Lighting between Rows Q & TU and Rows 103 & 139, Inclusive (191-E)12/16/194147Plans of Lighting between Rows C-J and K-P and Rows 103 & 141, Inclusive (192-E)12/15/1941ink-on-linen drawing47Plans of Electrical Floor Outlets in Offices, Rows UV-TU and Lights Above (193-E)3/24/1942pencil-on-linen drawing47Plan and Section of Salvage Yard Distribution Center Electrical Layout (195-E)9/1/1943ink-on-linen drawing, 29-1/2x37-1/2 inches47Electrical Conduit Number Schedules7/18/1942ink and pencil schedules on vellum, 31-1/4x65 to 32-3/4x65-3/4 inchesPlot Plan Showing Protective Lighting (240-E)12/13/1941ink-on-linen drawing48Underground Duct-Factory Building, #1-300 (250-E)5/22/1942revised 3/5/194348Underground Duct-Factory Building, #304-600 (251-E)5/22/1942revised 3/5/194348Underground Duct-Factory Building, #601-900 (252-E)5/22/1942revised 3/5/194348Underground Duct-Factory Building, #901-1200 (253-E)5/22/1942revised 3/5/194348Underground Duct-Factory Building, #1201-1500 (254-E)5/22/1942revised 3/5/194348Underground Duct-Factory Building, #1501-1739-A (255-E)5/22/1942revised 3/5/194348Underground Feeder Service, #1739-1838 440 V. Power, 440 V. Welding and 220 V. Power (256-E)48Underground Feeder Service, #1839-1959 180 ~ HiCycle and 220 V. and 440 V. Power (257-E)48#1960-2200 (258-E)5/22/194248#2201-2500 (259-E)5/22/1942revised 3/5/194348Underground Feeder Service, #2501-2800 440 V. Power (260-E)48Underground Feeder Service, #2801-3022 440 V. Power, 250 V. D.C. and 180 ~ HiCycle Receptacles (261-E)48Underground Feeder Service, #3023-3112 180 ~ HiCycle Receptacles and 110 V. Receptacles (262-E)48Underground Feeder Service, #3113-3299 120 V. Receptacles, Sub-Station Lighting, and Low Tension (263-E)48Underground Feeder Service, #3300-3350 440 V. Power (264-E)48Underground Feeder Service, #3351-3401 440 V. Power (265-E)48Underground Feeder Service, #3402-3452 440 V. Power (266-E)48Underground Feeder Service, #3453-3503 440 V. Power (267-E)48Underground Feeder Service, #3504-3554 440 V. Power (268-E)48Underground Feeder Service, #3555-3606 440 V. Power (269-E)48Underground Feeder Service, #3607-3657 440 V. Power (270-E)48Underground Feeder Service, #3658-3708-E, 440 V. Power (271-E)48Underground Feeder Service, #3709-3759 440 V. Power (272-E)revised 11/16/194248Underground Feeder Service, #3760-3877-B, Low Tension (273-E)49Underground Feeder Service, #3878-3979 Low Tension (274-E)49Underground Feeder Service, #3980-4121-A (275-E)49Underground Feeder Service, #4122-4314-B, General Lighting and 180 ~ HiCycle Power (276-E)49#4315-4400 (277-E)5/22/1942revised 3/5/194349Power Conduits-Sub-Stations A-D & M, #4401-4700 (278-E)12/4/1941revised 3/5/194349Power Conduits-Sub-Stations E-K, #4701-5000 (279-E)12/4/1941revised 3/5/194349Underground Feeder Service, #5000-5115-A, 180 ~ HiCycle and General Lighting (280-E)49Underground Feeder Service, #5116-5200 440 V. Power and General Lighting (281-E)49Control Conduits-Sub-Stations E-K, #5201-5500 (282-E)1/17/1942revised 3/5/194349Underground Feeder Service, #6000-6099 180 ~ HiCycle (285-E)49Underground Feeder Service, #6100-6199 110 V. Receptacles (286-E)49Underground Duct-Factory Building, #6501-6800 (288-E)5/22/1942revised 3/5/194349Underground Duct-Factory Building, #6801-7000 (289-E)5/22/1942revised 3/27/194349Feeder Service, #7001-7160 440 V. Power, 220 V. Monorail and Low Tension (290-E)49Feeder Service, #7161-7300 (291-E)49#7301-7500 (292-E)5/22/1942revised 3/5/194349Sub-Station Power, #7501-7800 (293-E)4/8/1942revised 3/5/194349Sub-Station Power, #7801-8100 (294-E)4/8/1942revised 3/5/194349Sub-Station Control, #8401-8700 (296-E)4/8/1942revised 3/5/194349#9301-9600 (299-E)5/22/1942revised 3/5/194349#9601-9900 (300-E)5/22/1942revised 3/5/194349#9901-10,000 (301-E)5/22/1942revised 3/5/194349
    Ford Motor Company, Airfield for Airplane Parts Manufacturing Building (Willow Run Bomber Factory), Job No. 1888-R, Ypsilanti, Michigan1941-1944Construction Drawings by Albert Kahn Associated Architects & Engineers, Inc.Architectural Drawings for Airfieldpencil and ink drawings on vellum and ink drawings on linenPlan of Flying Field (F-1)revised 12/4/194136-1/2x48 inches50Plan of Flying Field (F-1-R)8/28/194136x46-3/4 inches50Details of Runway and Taxiway (2-F)7/18/194123-1/2x36 inches50Details of Runway and Taxiway (2-F-R)undated31-1/2x65-1/4 inches50Details of Runway and Taxiway (3-F)undated31-1/2x65-1/4 inches50Details of Flying Field Construction Shed (4-F)7/23/1941revised 8/7/194114x27-1/4 inches50Location Plan for Airplane Anchor Tie-Downs (5-F)10/2/1941revised 11/27/194116-1/2x54-3/4 inches50Details of Airport Floodlight Transformer Vault (6-F)revised 12/4/194131-1/4x58 inches50Location Plan of Numerals and Wind Tee Circles for Runway Marking (7-F-R)revised 4/10/194235x49-3/4 inches50Plan of Numerals and Wind Tee Circles for Runway Markings (8-F-R)undated39-1/2x46-3/4 inches50Mechanical Drawings for Airfieldpencil-on-vellum drawingsField Drainage Plan (200-M)sepia print, 34x47-1/4 inches50

    (date illegible)

    Details of Manholes #2 and 3 (201-M)9/2/194123-1/4x32-1/2 inches50Details of Manholes "X" (202-M)10/1/194123-1/4x33-1/4 inches50
    Electrical Drawings for Airfieldpencil-on-vellum drawings, 32-1/4x64-3/4 to 33-1/2x67-3/4 inchesDiagram of Flying Field One-Line Wiring (92-E)10/24/1941revised 9/8/194351Plans and Sections of Equipment in Floodlight Transformer Vaults (93-E)5/6/1942revised 9/8/194332x76 inches51Details of Hangar and Factory Building Obstruction Lighting (94-E)10/24/1941revised 5/5/1944ink-on-linen drawing51Details of Flying Field Lighting (95-E)10/24/1941revised 4/10/194251Details of Flying Field Control Desk (96-E)3/8/1943ink-on-linen drawing51Diagram of Three-Line Connection of 2300 V. Vertical Lift Switchgear in Airport Sub-Station (97-E)5/28/1942ink-on-linen drawing51Plans and Sections of Airport Sub-Station (98-E)5/23/194232-1/2x45-1/2 inches51Equipment Location and Underground Details (99-E)11/14/1941revised 9/8/194351Details of Inserts and Conduit in Floodlight Transformer Vaults (100-E)10/24/1941revised 9/8/194351Details of Relay and Circuit Breaker Cabinet for Floodlight Transformer Vaults (101-E)12/1/1941revised 5/13/194251Cable Schedule for Underground Duct System around Flying Field (102-E)2/2/1942revised 4/20/194251Cable Schedule for Underground Duct System around Flying Field (103-E)2/2/1942revised 4/20/194251Conduit Schedule for Airport Hangar Sub-Station6/194232-1/4x72 inches51

    (not numbered due to vellum damage)

    Electrical Drawings (cont)pencil and ink drawings on vellum, 32-3/4x45-3/4 to 33x47-3/4 inchesFlying Field Equipment Schedule (104-E)1/26/1942revised 2/13/1942ink-on-linen drawing198Circuit Chart for Relay Cubicle in Hangar Sub-Station (105-E)5/13/1942revised 9/28/1942198Circuit Chart for Relay Cubicle in Hangar Sub-Station (106-E)9/28/1942198Details of Cubicles for Constant Current Transformers in Hangar Sub-Station (107-E)3/4/1942198Details of Large Power and Control Conduit Installation in Airport Hangar Sub-Station (108-E)3/29/1942198Plan and Details of Control Conduit for Airport Hangar Sub-Station (109E)3/29/1942revised 5/6/1942198Insert and Grounding Plan for First Floor of Hangar Sub-Station (110-E)3/28/1942revised 5/6/1942198Insert Details for Airport Sub-Station-Hangar Building (112-E)3/28/1942revised 5/6/1942198Diagrams of Connections to Relay and Distribution Cabinet Terminals in Flying Field Vaults 1-12 (113-E)5/13/1942198Wind Tee Details and Plan of Obstruction Light Layout around Houses in N.W. Corner of Flying Field (114-E)5/20/1942198Plan and Sections of Constant Current Transformer Cubicles in Airport Sub-Station (115-E)5/6/1942revised 7/7/1942198Diagrams of Control Wire Connections between Control Panels and 2300 V. Switchgear in Airport Sub-Station (116-E)6/8/1942198Schematic Control Diagrams for 2300 V. Switchgear in Airport Sub-Station (117-E)6/8/1942revised 10/30/1942198Wiring Diagrams of Miscellaneous Equipment in Airport Sub-Station (118-E)6/8/1942revised 3/8/1943198Diagrams of Terminal Connections in Auxiliary Relay Cubicle at Airport Sub-Station (119-E)9/28/1942
    Ohio Stamping Plant, Chrysler Corporation, Automotive Body Division, Job No. 2117, Twinsburg, Ohio1956Construction Drawings, Architectural5 drawings112Shaarey Zedek Temple, Congregation Shaarey Zedek, Job No. 2138, Southfield, Michigan1960Construction Drawings, Architectural and Structural60 drawings110Shaarey Zedek Temple, Congregation Shaarey Zedek, Job No. 2138, Southfield, Michigan1960-1962Construction Drawings, Mechanical and Electrical49 drawings111Shaarey Zedek Temple, Congregation Shaarey Zedek, Job No. 2138-A, Southfield, Michigan1960-1964Construction Drawings, Architectural, Structural, Mechanical, and Electrical23 drawings114General Electric, Appliance and Television Group, Appliance Park East, Job No. 2223-A, Columbia, Maryland1969-1972Construction Drawings, Electrical26 drawings455
    Drawing Record Cards1920-1958

    The Drawing Record Cards subseries (3 linear feet, 1920-1958) serves as a complement to the architectural drawings, and contains informational cards relating to the structural drawings for some of Kahn's building projects. The cards in this subseries are arranged in chronological order by job number, and range from the Hiram Walker and Sons office building addition in Walkerville, Ontario, Canada, Job No. 150-L, to the Rehabilitation Institute of Metropolitan Detroit in Detroit, Michigan, Job No. 2113-Q. The information on these cards includes the name of the artist who created the drawing, the sheet number, sheet title, and the start and end dates for each of the structural drawings produced for the building projects listed in this subseries.

    Job No. 150-L -- 201-KZ149Job No. 201-LA -- 391-B149Job No. 403-F -- 641-BX149Job No. 641-CL -- 750-I149Job No. 762-B -- 807149Job No. 808 -- 847-AZ149Job No. 847-BA -- 847-SC149Job No. 847-SD -- 847-XAK149Job No. 847-XAL -- 871-D149Job No. 874-B -- 921149Job No. 923-A -- 985149Job No. 987 -- 1043149Job No. 1047 -- 1077-X149Job No. 1078 -- 1089-BC149Job No. 1089-F -- 1141149Job No. 1142 -- 1154-A149Job No. 1154-D -- 1157-BE149Job No. 1159 -- 1217149Job No. 1218 -- 1267-G149Job No. 1269 -- 1334-F150Job No. 1335 -- 1338-Q150Job No. 1338-R -- 1398150Job No. 1402 -- 1421150Job No. 1422-C -- 1433-Z150Job No. 1434 -- 1496150Job No. 1500 -- 1509-BY150Job No. 1509-CA -- 1513-N150Job No. 1519 -- 1579-F150Job No. 1585-B -- 1646-AY150Job No. 1646-BA -- 1659-AY150Job No. 1659-BA -- 1688150Job No. 1692 -- 1728150Job No. 1728-B -- 1748150Job No. 1750-A -- 1763150Job No. 1765 -- 1784-A150Job No. 1785 -- 1803150Job No. 1804 -- 1820-X150Job No. 1821-A -- 1822-Z150Job No. 1823-A -- 1837-B151Job No. 1840 -- 1859151Job No. 1860-A -- 1867-X151Job No. 1868 -- 1892-T151Job No. 1893-C -- 1905-M151Job No. 1905-N -- 1917-S151Job No. 1918 -- 1939151Job No. 1941-A -- 1950-BY151Job No. 1950-C -- 1966-G151Job No. 1967 -- 1985-B151Job No. 1985-E -- 1988-R151Job No. 1989 -- 2024-Z151Job No. 2026 -- 2057-B151Job No. 2058 -- 2067-Y151Job No. 2068 -- 2076-B151Job No. 2076-D -- 2088-L151Job No. 2090 -- 2095-AQ151Job No. 2095-C -- 2110-H151Job No. 2110-J -- 2113-Q151
    + + + Related Materials +

    The Albert Kahn Family Papers were donated in 2002 by Carol Kahn, daughter of Albert Kahn's son Edgar. Included in this collection are the personal correspondence of Albert and his wife Ernestine, family photographs and a folder of materials related to the community's efforts to "Save Old Main" (1989), University of Michigan Hospital, which her grandfather designed in 1919.

    The William L. Clements Papers and the Marion L. Burton Papers include correspondence and committee minutes associated with Albert Kahn's tenure as Consulting Architect for the University of Michigan in the early 1920s. The letters document his service on the important "Committee of Five," which oversaw the university's Comprehensive Building Program during a time of prolific construction on the Ann Arbor campus.

    The University of Michigan Architectural Drawings Collection contains a number of renderings and drawings of Kahn's buildings, including the Natural Science Building and the Thomas H. Simpson Memorial Institute for Medical Research.

    The University of Michigan Museum of Art Records document two exhibitions related to Kahn's work: "Albert Kahn: An American Architect Abroad" (1996) and "Albert Kahn: Inspiration for the Modern" (2001). The materials associated with the 1996 exhibit include the list of Kahn's travel sketches from trips to Europe in 1891, 1912 and 1924-35, which were hung in the show and are in the permanent collection of the Museum of Art.

    University of Michigan Museum of Art. Images of 273 of Albert Kahn's sketches of European architecture, drawn during his trips of 1891, 1911-1912, 1920, and 1924-1925, are available for online viewing at the website of the University of Michigan Museum of Art. The Museum of Art holds these drawings in its permanent collection.

    +
    +
    +
    diff --git a/sample-ead/bhl/umich-bhl-05100.xml b/sample-ead/bhl/umich-bhl-05100.xml new file mode 100644 index 0000000..e25eba1 --- /dev/null +++ b/sample-ead/bhl/umich-bhl-05100.xml @@ -0,0 +1,63 @@ + + +umich-bhl-05100Finding aid for American Citizens for Justice Records, 1983-2004Finding aid created by Polly Reynolds, August 2005Bentley Historical Library

    2005

    This finding aid was produced using ArchivesSpace on 2021-09-17 13:51:04 -0400.The finding aid is written in English2005-08-31Original encoding from Word 6.0 file using Word macros and Xmetal.2016-11-21Updated Conditions Governing Use Note2021-06-08Added links to digitized content.2021-06-08Revised Extent Note, Processing Information Note and Existence and Location of Copies Note.2021-06-08Added Conditions Governing notes for digitized content.2021-07-02Revised Extent Note, Processing Information Note and Existence and Location of Copies Note.2021-07-02Added links to digitized content.2021-07-02Added Conditions Governing notes for digitized content.2021-07-30Added video recording genre at the collection level.2021-09-16exported
    Bentley Historical Library University of MichiganFinding aid for American Citizens for Justice Records, 1983-2004Finding aid created by Polly Reynolds, August 2005 + + + Bentley Historical Library + + + American Citizens for Justice Records + + American Citizens for Justice. + + 05100 Bd 2 + + 9 linear feet + + + 7 digital audiovisual files + + 1983-2004 + The material is in English + The American Citizens for Justice, (or the Asian American Center for Justice) a Detroit-based Asian American civil rights group, was founded in reaction to the fatal beating of Vincent Chin, a Chinese-American man. The ACJ later evolved into an organization advocating for the rights of Asian-Americans in general. Records consist of meeting minutes, financial reports, correspondence, publications and grants, Vincent Chin related information, legal case files, health project files, as well as topical files. + + +

    The records were deposited by the American Citizens for Justice (donor no. 9614) in June 2005. Additions to the collection deposited in October 2005

    +

    The record group is open to research.

    +

    Copyright has been retained by the American Citizens for Justice. Patrons are responsible for determining the appropriate use or reuse of materials.

    +

    [item], folder, box, American Citizens for Justice Records, Bentley Historical Library, University of Michigan

    +
    +

    The American Citizens for Justice (or the Asian American Center for Justice), a Detroit-based Asian American civil rights group was founded in reaction to the fatal beating of Vincent Chin, a Chinese-American man. On June 19, 1982, while at a club in Detroit for his bachelor party, Chin encountered Ronald Ebens, a Detroit autoworker. According to reports, Ebens verbally harassed Chin, blaming his race for recent U.S. automotive unemployment (mistakenly believing Chin to be Japanese). A fight between the two men broke out, Chin striking Ebens before the men were separated. Ebens and his stepson, Michael Nitz, later deliberately tracked down Chin and attacked him with a baseball bat in front of a fast-food restaurant. Injuries from the attack led to Chin's death four days later.

    Outraged by a judge's lenient sentence for these two men: a $3000 fine and 3 years probation, a group of Asian Pacific Americans formed the American Citizens for Justice on March 30, 1983, with the immediate goal of fighting for a retrial. Consisting of individuals of wide-ranging Asian descent including Chinese, Japanese, Korean, and Filipino, this group represented for the "first time, according to APA advocates and academics, that people who trace their ancestry to different countries in Asia and the Pacific Islands crossed ethnic and socioeconomic lines to fight as a united group of Asian Pacific Americans" (http://www.asianweek.com/061397/feature.html, para. 9). Working with other Asian Pacific American groups, the ACJ gathered support, "staged rallies, organized demonstrations, and launched a massive letter-writing campaign" (para. 23) all in hopes of bringing Chin's killers to justice. In 1984, the two men were brought to trial and Ebens was found guilty and sentenced to 25 years in prison. However, this ruling was later overturned due to a legal technicality. In a 1987 retrial, Ebens and Nitz were found not guilty on all charges.

    The goals of the American Citizens for Justice have extended since the Chin incident, moving beyond the trial to broader aims of educating the public about Asian-American discrimination and helping other victims of racial harassment and injustice. The ACJ advocates for Asian-Pacific Americans in several areas, including law enforcement, legislation, networking, education, and health (ACJ brochure). In addition to offering free legal consultation to victims of racial harassment and discrimination, the ACJ also collaborates with other attorneys and legal groups to monitor and provide advice for anti-Asian incidents throughout the country. Through petitions and letter-writing, the ACJ "works to influence public policy and public institutions for just treatment of APAs" (ACJ brochure). Additionally, the ACJ has been fully involved in public education, sponsoring several workshops and conferences, educating students and others on Asian-American discrimination and culture. Throughout its existence, the ACJ has also been involved in many different projects. In 1989, with a grant from the Michigan Department of Public Health, the ACJ conducted a health needs assessment survey of the Southeast Asian communities of Detroit. The ACJ is still in existence today and continues to advocate for Asian Americans.

    +

    The American Citizens for Justice record group details the administrative functions as well as the activities and goals of the organization. Records consist of meeting minutes, financial reports, correspondence, publications and grants, Vincent Chin related information, legal case files, health project files, as well as topical files.

    This Record group contains the following series: Administrative, Vincent Chin Case and Aftermath, Public Relations, Grants/Funding, Activities, Topical, and Visual Materials.

    + +

    + +

    + Asian Americans -- Michigan. + Asian Americans -- Michigan. + Chinese Americans -- Michigan. + Chinese Americans -- Michigan. + Minorities -- Crimes against -- Michigan. + Digital file formats. + Photographs. + Video recordings. + American Citizens for Justice. + Chin, Vincent. + American Citizens for Justice. +
    + Administrative3 linear feet1982-2003

    The Administrative series (3 linear feet, 1982-2003) details the overall governing and planning structure of the ACJ including constitution and bylaws, executive board meeting minutes and agenda, financial reports and statements, incoming correspondence (1984-2003) and some outgoing correspondence (1988-1990). Meeting minutes and director's reports are especially useful for the background and planning of ACJ projects and to get an overall sense of the ACJ's goals.

    Constitution and by-laws1Executive DirectorDavid Fukuzawa1Joanna Su1Reports3 folders1988-19901Executive BoardForms and procedures1Meeting minutes/agenda21 folders1985-20031Retreats1CommitteesAttorney2Finance2Fundraising2Strategic planning2MembershipMembership form2Membership lists2General meetings14 folders1982-19851987-1999Future speakers2FinanceFinancial statements1987-19942Fundraising2Market plan19892Treasurer's reports198721992-199321993-199421995-19962CorrespondenceIncoming1984-19851987-1988219892199021991219922199321994219953199631997319983199932000320013200232 folders20033Outgoing3 folders1988-19903OtherMiscellaneous and agendas3Rededication programs2 folders19831985-19993Status report19893
    Vincent Chin Case and Aftermath0.5 linear feet1983-1989

    The Vincent Chin Case and Aftermath series (0.5 linear feet, 1983-1989) contains files relating to the Vincent Chin incident and legal case, including clippings and articles, ACJ's involvement with the case (court watch documents, petitions, remembrance services), as well as public reaction, including response letters from viewers of a Phil Donahue show that covered the Chin case in 1983.

    General informationScrapbook of articles and information on Vincent Chin19834Articles and clippings2 folders4ACJ organizing efforts1983-19864Donations19834Film, "Who killed Vincent Chin?"1988-19894Other group involvement/reactions1983-198419874Remembrance services1983-19894Remembrance services, ACJ/Hawaii day of remembrance19864Response letters from Phil Donahue show2 folders19834Run for Justice19854Court caseArticles on court ruling2 folders1983-19874Court watch documents and copies of legal documents1983-198419874Ebens1989-19904Letters from ACJ re: Chin case1983198519894Chin case petition forms, ca.19834
    Public Relations0.3 linear feet1983-2001

    The Public Relations series (0.3 linear feet 1983-2001) includes informational brochures and flyers, press releases, speeches, and newsletters.

    Contact lists19894Flyers/brochures1988-19974General PR1987-1988undated4Press releases1988-19894Speeches1983-19914Support documents4PublicationsNewslettersJustice Update1983-200115 folders1983-199742 folders1998-1999520015Year book19835
    Grants/Funding0.75 linear feet1984-2001

    The Grants/Funding series (0.75 linear feet, 1984-2001) contains ACJ grant proposals submitted to various agencies and foundations (arranged by organization). The proposals are especially useful for information on the background of the ACJ as well as the proposed activities and projects of the organization as well.

    Contacts and funding summaries1989-19905Proposals19845Grants19921994-19955ACJ recipe book19885ANR Pipeline Company19905Bingo files19915The Boehm Foundation19885Buck Dinner19885Bydale Foundation19885Chicago Resource Center19885Chrysler Motors19885Coalition for Human Needs1988-19895Community Foundation for Southeastern Michigan19885Deer Creek Foundation19885Donovan, Leisure, Newton & Irvine Foundation19885Episcopal Diocese of Michigan19885Evangelical Lutheran Church in America19885The Field Foundation19885First of America Bank Fund19885Ford Foundation19885Ford Motor Company1988-19895Funding Exchange/National Community Funds1988-19895General Motors Foundation1988-19895Hughes Memorial Foundation19885Hycliff Foundation, Inc.19885Inacomp Computers1988-19895J. Roderick MacArthur Foundation19885Japan Business Society of Detroit Foundation7 folders1995-20015Joint Foundation Support19895McGregor Fund19905Michigan Bell Foundation19885Michigan Council for the Humanities19885The Needmor Fund19885Norman Foundation19885The Ottinger Foundation19885Presbyterian USA Funding19905Sisters of the Living Word19885United Foundation1988-19895United Methodist Church4 folders1987-19905
    Activities3.25 linear feet1985-2004

    The Activities series (3.25 linear feet, 1985-2004) comprises all of the various activities of the ACJ and has been divided into several subseries: education, health, legal, and other.

    Education

    The Education subseries documents the ACJ's involvement in public education of Asian Pacific Americans, covering issues like discrimination as well as history and culture through conferences and workshops. Many of the files contain handouts and agendas from these various events.

    GeneralAsian American Civil Rights Education project, 1988-895Media project5Workshops/conferencesACJ Youth ConferenceMay 20, 19955September 23, 19955September 13, 19975Cultural Awareness workshop19985"Enhancing Police and Community Trust,"20005Multicultural Immersion Program9 folders1996-20045Miscellaneous5
    Health1989-1990

    The Health subseries contains files relating to the ACJ's involvement in health-related issues. Most of the documents pertain to ACJ's 1989/1990 Southeast Asian Community Health Needs Assessment Project, funded by the Michigan Department of Health.

    Topical filesAMAP (Asian Mutual Assistance Program)6Mental Health Needs and Services for Asian Americans project6MDHEC (Metropolitan Detroit Health Education Council) Conference6Minority Health Issues Committee6Minority HIV RFP6Miscellaneous health-related documents6Reduction in mortality/morbidity in minorities RFP6Refugee Act19806United Community Services6Southeast Asian Community Health Needs Assessment ProjectBackground/researchCommunity survey6Detroit Health Department6Health provider survey questionnaires6Health surveys6Hmong community6Laotian community6Multicultural clinics6Other minority health projects6Refugee health6Refugee mental health6Refugee mutual assistance associations6Refugees in Michigan6Southeast Asians, resources6ProjectContact notes6Financial status reports6Health provider survey questionnaire6Health Task Force6Interview materials6Miscellaneous6Miscellaneous proposals and notes6Proposals and budgets6Proposals and planning6Reports6Status reports6Survey logistics6Survey publications6
    Legal

    The Legal subseries contains case files of ACJ clients as well as documents and correspondence referring to regional and national legal cases that the ACJ followed.

    Attorney client committee intake form7Attorney watch for anti-Asian incidents19897Civil rights project7ACJ case files1989-1990Brown, X. (discrimination INS)7Chou, S. (employment)7Chow, C. (racial harassment and false accusation)7Dick, M. (traffic incident)7Gonzales (medical?)7"Ho, Mr." (immigration problems?)7Huang, J. (employment)7Huie, W. A. (assault)7Jain, J. (employment)7Lee, N. (assault)7Lee, S. (assault)7Mazhar, I. (employment discrimination)7Melton, K. (employment discrimination)7Patel, P. P. (employment discrimination)7Red Dragon Restaurant (discrimination?)7Saxena, R. (employment discrimination)7Schafer family (discrimination)7Tewari et al. (employment discrimination)7Tien, K. (assault)7Wei, M. (employment discrimination)7Young, W. (discrimination)7Zhou, J. (employment)7Other legal casesHuang, L. G. (Massachusetts)19857Isa, Esha (Illinois), 1988-897Loo, Jim (North Carolina)1988-1989Case ruling7Correspondence7Documents7Organizing and fundraising efforts7Probable cause hearing transcript7Lor/Yang (Minnesota)1989-1990Correspondence7Documents7Takahashi (California)19887Yim, C. K. (Michigan)19857
    Topical1985-1994

    The Topical series (1.75 linear feet, 1985-1994) includes ACJ's topical files relating to various issues that the ACJ documented including articles and clippings on Asian-Americans, collected materials from other APA groups, documents on legislation affecting Asian-Americans as well as news articles detailing specific incidents of anti-Asian-American violence and discrimination. This series shows the kinds of issues and ideas that the ACJ wanted to track and also demonstrates the ACJ's broader aims of advocating for Asian Americans in general.

    Articles/clippings4 folders8Anti-Asian Violence Network1984-198519888APA Leader Council19888APASO (Asian Pacific American Student Organization, Michigan State University)1989-19908Asian Americans for Equality8Asian Foundation for Community Development1986-19898Asian Law Caucus1989-19918Asian Pacific Heritage Week198619888Association for Asian American Studies, scattered8Battered women1988-19908Business Advisory Council19888Campus issues1987-19908Chicago Commission on Asian American Affairs1989-19908Civil Rights Act of19908Committee Against Anti-Asian Violence1988-19928Crime victim's rights198519888Cultural Leadership program19958Detroit Chinatown proposal19898Detroit Ecumenical Working Group of Asian Pacific Americans (DEWGAPA)1988-19908Detroit Minority Business Development Center1988-19898Discrimination1986-19948Ecumenical Working Group of Asian Pacific Americans (EWGAPA)1987819888198981990819918199281993919949Study guide1988-19899English only statements19899English proficiency exam at Wayne State University19889Governor's Advisory Commission on Asian-American Affairs1985198719919House Bill no. 4508 (Asian Pacific American Commission)19939House Concurrent Resolution no. 14719899House Resolution no. 442 redress1986-19899House Resolution no. 271219909International Institute of Metropolitan Detroit1988-19919Lakes Area Council for Diversity19959Michigan Department of Civil Rights1988-19909Michigan Victim Alliance1987-19909Midwest APA students1989-19919Model minority1989-19909National Asian Pacific Bar Association (NAPBA)1989-19929National Congressional Conference on Asian-American ViolenceNovember 19899National Network Against Asian-American Violence1990-19939Oberlin College protests19909Roland Hwang files3 folders1992-19949Slurs and stereotypes1988-19909UMASC (University of Michigan Asian Student Coalition)1987-19909University of Michigan1987-19909Wayne State University beatings1988-19909WTVS19889Youth outreach1988-19899
    Visual Materials1986-1996

    The Visual Materials series (0.25 linear feet and 7 digital audiovisual files, 1986-1996 and undated) contains several videotapes, including videos of the ACJ rededication dinner, videos of regional conferences and workshops that the ACJ took part in, and several videos sponsored by the ACJ that promote Asian-American awareness. The photographs are unlabeled, but appear to be from a meeting or workshop. Videotapes were digitized in 2021.

    Photographs of meetings, etc.undated9VideotapesACJ Rededication Dinner2 videotapes19869ACJ Rededication Dinner, Tape 1[05100-1]1 videocassettes (VHS Videotape )April 12, 1986(American Citizens for Justice Rededication Dinner at Troy Hilton Hotel on Saturday April 12, 1986 at 7:00 PM.)9

    [access item]

    (1:55:47)

    ACJ Rededication Dinner, Tape 2[05100-2]1 videocassettes (VHS Videotape )April 12, 1986(American Citizens for Justice Rededication Dinner at Troy Hilton Hotel on Saturday April 12, 1986 at 7:00 PM.)9

    [access item]

    (6:42)

    Asian Pacific American Conference, Lansing Community College19919Asian Pacific American Conference, Lansing Community College, Reel 1 & 2 of 41 videocassettes (VHS Videotape )9[05100-3-1]1991 May 09(Introduction, Margo Lum Smith, President Mid-Michigan Asian Pacific American Association (MAPAA), adressing crowd about history and function of the MAPAA. Other speakers include Dr. M. Valeriana Moeller, Dr. Lloyd Tran, Dr. Antonio Piedo?, Dr. Jeffrey Jones? (dir. of research at Michigan Dept. of Civil Rights))

    [access item]

    Online

    (Duration: 01:16:45)

    Asian Pacific American Conference, Lansing Community College, Reel 3 & 4 of 41 videocassettes (VHS Videotape )9[05100-4-1]1991 May 09(Continued speakers, Dr. Dale D'Mello, Dr. Paul Y Liu. + + Closing Remarks with Rita Bunton, LCC.)

    [access item]

    Online

    (Duration: 1:15:249)

    Solace19969Solace (Dir. Michael Sandoval)1 videocassettes (VHS Videotape )9[05100-5-1]1996(Dramatic film with documentary-inspired monologues and liv-action fictional sequences. Racism, mysticism, slice of life, Vietnamese-Americans living in Rural America. + + Original recording on 16mm film. Project made possible by contributions of the ARTS Foundation of Michigan and the University of Michigan.)

    [access item]

    Online

    (Duration: 26:05)

    Cultural Sensitivity Asian cultures, Rebecca Loundated9Cultural Sensitivity -Asian cultures- Rebecca Lo1 videocassettes (VHS Videotape )9[05100-6-1]Undated(4-part lecture on Cultural Sensitivity and approaches for social services in Asian community in the United States. + + 1. Asian Culture, Historical + 2. Asian-American Cultural Practices + 3. Implications and Applications for Social Service Providers + 4. Health Perceptions, Asian Culture in the context of acculturation (Western/Eastern Medicine) + + Ongoing Q & A Sessions.)

    [access item]

    Online

    (Duration: 01:37:50)

    Asian-American identity (interview project sponsored by the ACJ)undated9Asian-American identity1 videocassettes (VHS Videotape )9[05100-7-1]Undated(Interview project sponsored by the ACJ on Asian-American Identity and Experience. + + Produced by Charles Cheng (also main narrator) featuring student, faculty and staff interviews at Midwestern Universities - University of Michigan, Oberlin College, University of Wisconsin, University of Minnesota.)

    [access item]

    Online

    (Duration: 01:02:32)

    +
    +
    diff --git a/sample-ead/bhl/umich-bhl-2014150.xml b/sample-ead/bhl/umich-bhl-2014150.xml new file mode 100755 index 0000000..9e325b8 --- /dev/null +++ b/sample-ead/bhl/umich-bhl-2014150.xml @@ -0,0 +1,199813 @@ + + + + + umich-bhl-2014150 + + + Finding aid for Carl M. Levin papers, 1938-2015. + Finding aid created by Shae Rafferty and Lilly Carrel, 2015-2018. Updated in July + 2021 by Olga Virakhovskaya. + + + Bentley Historical Library +

    2018

    +
    +
    + + This finding aid was produced using ArchivesSpace on 2021-08-02 12:50:45 + -0400. + The finding aid is written in English + Finding aid prepared using Describing Archives: A Content Standard + (DACS) + + + + 2019-02-26 + 2018-06-15: Original encoding from Word 2007 file using Word macros and Xmetal; First + publication: March 2019. + + + 2019-03-22 + Changes "Conditions Governing Access": The collection is open for research. + + + 2019-06-06 + Corrected folder title in Box 116 + + + 2019-06-26 + Added links to content in the BDML; updated collection-level extent + + + 2019-09-30 + Corrected Conditions Governing Access notes and published archival objects with + digital objects. + + + 2021-07-30 + Updated bio note + + + 2021-09-27 + fixed typo + + +
    + + + Bentley Historical Library University of Michigan + Finding aid for Carl M. Levin papers, 1938-2015. + Finding aid created by Shae Rafferty and Lilly Carrel, 2015-2018. Updated in July 2021 + by Olga Virakhovskaya. + + + + + + Bentley Historical Library + + + Carl M. Levin papers + + Levin, Carl, 1934-2021. + + 2014150 Aa 2 + + 1116.5 linear feet (in 1122 boxes) + + + 1.2 TB (online) + + + 2 archived websites (online) + + 1938-2015 + 1964-2015 + Democratic senator from Michigan, the + longest-serving U.S. senator (served between 1979 and 2015). The collection documents Carl + M. Levin's 36-year career in the U.S. Senate including his service on the Senate Armed + Service Committee, Government and Homeland Security, Subcommittee on Oversight of Government + Management, Permanent Subcommittee on Investigations, Great Lakes Task Force, among other + leadership positions. Papers include correspondence, speeches, writings, newspaper + clippings, legislative and committee files, campaign materials, photographs, audiovisual + materials, and other records documenting his personal life and political career. + The material is in English. + + + +

    The collection is open for research. Access to some born-digital material is restricted + to the reading room of the Bentley Historical Library.

    +
    + +

    Donor(s) have transferred any applicable copyright to the Regents of the University of + Michigan but the collection may contain third-party materials for which copyright was not + transferred. Patrons are responsible for determining the appropriate use or reuse of + materials.

    +
    + +

    Donated by Carl M. Levin (Donor no. 9406) in 13 installments between November 2014 and + February 2016.

    +
    + +

    [item], folder, box, Carl M. Levin papers, Bentley Historical Library, University of + Michigan.

    +

    [item], [URL], Carl M. Levin papers, Bentley Historical Library, University of + Michigan.

    +
    +
    + +

    The collection is arranged into four series: Pre-Congressional Career, Elections and + Campaigns, Congressional Papers, and Post-congressional Career. Each series is further + arranged into subseries, described at the series level.

    +
    + +

    The collection documents the personal life and political career of Carl M. Levin including + his 36-year career as U.S. Senator from Michigan (1979-2015). The papers include school + activities, personal correspondence, materials from Levin's work on the Michigan Civil + Rights Commission and Detroit City Council, and campaign materials such as speeches, + interviews, platform and planning documents, constituent research, candidate research, + financial documents, correspondence, photographs, and audiovisual materials.

    +

    The bulk of papers document Levin's tenure in the U.S. Senate including legislative and + committee files, correspondence, memoranda, briefing books, background information, + schedules, bills, printed materials, press clippings, speeches, writings, photographs, + Levin's archived website, social media, and audiovisual materials.

    +
    + +

    Carl Milton Levin was born in Detroit, Michigan, on June 28, 1934, the youngest son of Bess + Levinson and Saul Levin. His brother is Sander Levin, U.S. Representative for Michigan's 9th + district. Carl Levin attended Detroit public schools, graduating from Central High School in + 1952. He worked briefly as a line worker at a Ford tractor factory when he was 19 years old + and went on to attend Swarthmore College. As a student, Levin was actively involved in + student groups including serving on the student council, the American Student Government + Movement, and Students for Democratic Action (SDA). In 1956, he graduated with a Bachelor of + Arts in political science and went on to attend Harvard Law School. Levin continued his + student activism with SDA at Harvard and graduated with a Juris Doctor in 1959. Upon + graduation, Levin returned to Michigan and worked as an attorney at Grossman, Human and + Gossman from 1959 to 1964, and taught law at the University of Detroit Mercy and Wayne State + University.

    +

    In 1961, Carl Levin married Barbara Halpern, who holds a Bachelor of Arts in mathematics + from the University of Michigan, a Master of Arts in mathematics from Colombia University, + and a Bachelor of Laws from Wayne State University (1977). The Levins have three daughters + -- Kate, Laura, and Erica.

    +

    Carl Levin left private law practice in 1964 to serve as general counsel for the Michigan + Civil Rights Commission until 1967. He also served as special assistant attorney general for + the state of Michigan and chief appellate defender for the city of Detroit (1968-1969). + Levin began his political career in 1969 when he was elected to the Detroit Common Council, + now the Detroit City Council (DCC). He served two four-year terms on the Council, including + as President (1974-1977). During his tenure on DCC, Levin focused on issues such as + discriminatory housing, lending, insurance practices, and redlining.

    +

    In 1978, Carl Levin, a member of the Democratic Party, was elected to the U.S. Senate, + defeating 13-year Republican incumbent Robert P. Griffin. During his tenure in the Senate, + Levin served in many leadership roles including chair of the Permanent Subcommittee on + Investigations of the Homeland Security and Governmental Affairs Committee, chair of the + Senate Armed Services Committee, co-chair of the Senate Auto Caucus, co-chair of the Great + Lakes Task Force, and co-founder and chair of the Subcommittee on Oversight of Government + Management. Among Senator Levin's legislative accomplishments were the Enron investigations, + the Whistleblower Protection Act of 1989, the Dodd-Frank Act of 2010, financial regulation, + campaign finance reform, environmental protections including helping to establish Thunder + Bay National Marine Sanctuary and Keweenaw National Historical Park, early opposition to the + Iraq War of 2003, government ethics and lobbying reform, and appropriations for the U.S. + Military. Levin authored many bills, was noted for his in-depth research and preparation for + committee hearings, and traveled abroad extensively as chair of the Armed Services + Committee.

    +

    After 36 years of service, Carl Levin retired from the Senate on January 3, 2015 as + Michigan's longest serving U.S. Senator. Upon retirement, Levin established the Levin Center + at Wayne State University Law School, where he served as chair and distinguished legislator + in residence. He also took a senior counsel role at Honigman Miller Schwartz and Cohn LLP.

    +

    Carl Levin passed away on July 29, 2021.

    +
    + +

    + +

    + Agriculture -- Michigan. + Automobile industry and trade -- United States. + Bankruptcy -- Michigan -- Detroit. + Civil rights -- United States. + Economic policy -- United States. + Education -- Michigan. + Energy policy -- Michigan. + Financial crises -- United States. + Governmental investigations -- United States. + Iraq War, 2003-2011. + Labor laws and legislation -- United States. + Legislators -- Michigan. + Legislators -- United States. + Michigan -- Politics and government -- 20th century. + National health insurance -- Law and legislation -- United + States. + Police -- Michigan -- Detroit. + Political campaigns -- Michigan. + Political campaigns -- Michigan -- Detroit. + Political campaigns -- United States. + Public welfare -- Law and legislation -- United States. + Social security -- Law and legislation -- United States. + Taxation -- Law and legislation -- United States. + Trade-unions -- Automobile industry workers -- Michigan. + United States -- Foreign relations. + United States -- Politics and government -- 20th century. + Audiocassettes. + Audiotapes. + Digital file formats. + Interviews. + Photographs. + Sound recordings. + Speeches. + Video recordings. + Videocassettes. + Videotapes. + Web sites. + Levin, Barbara H. + Levin, + Carl, 1934-2021. + Levin, Sander, 1931- + Democratic Party (Mich.) + Democratic Party (U.S.) + Detroit (Mich.). City Council. + Michigan Civil Rights Commission. + United States. Congress. Senate. + United States. Congress. Senate. Committee on Armed + Services. + United States. Congress. Senate. Committee on Homeland Security and + Governmental Affairs. Permanent Subcommittee on Investigations. + United States. Congress. Committee on Homeland Security and Governmental Affairs. + Subcommittee on Oversight of Government Management, the Federal Workforce, and the District + of Columbia. +
    + + + + Pre-Congressional Career + 1938-1985 + + +

    The Pre-Congressional Career series is organized into nine subseries: Personal, + Correspondence, Education, Saul R. Levin Foundation, Photographs, Michigan Civil Rights + Commission, Attorney, Lecturer, and Detroit City Council (DCC).

    +

    Records include early school, college, and law school notes and writings; materials + relating to Levin's activities with Students for Democratic Action (SDA); correspondence + from his trip abroad in the 1950s; photographs from childhood and early adult years; + teaching materials; legal files from the Michigan Civil Rights Commission; + correspondence, reports, press clippings, and investigative files from Levin's eight + years of service on the Detroit City Council, including as president (1974-1977).

    +
    + + + Personal + 1946-1978 + + + + Back to Harvard + 1959 + 10 + + + + + Collected ephemera + 3 folders + 1970-1972 + 10 + + + + + Description of the Detroit System + 1955 + 10 + + +

    (Regarding the method of keeping certain books off the newsstands in Detroit.)

    +
    +
    + + + Donation to World University Service -- Indian flood relief + 1956 + 10 + + + + + Investigation of Senators Joseph R. McCarthy and William Benton pursuant to + S.Res.1987 and S.Res.304, (Subcommittee on Privileges and Elections) + 1 Book + 1952 + 10 + + + + + Leader for governor campaign materials + 1954 + 10 + + + + + Notebook + March 1953 + 1 + + + + + Pension fund, (Levin as Chairman of Trustees of the Amalgamated Department + Store and Retail Employees Insurance and Pension Funds) + 1976-1978 + 10 + + + + + Roosevelt School science class balloon project Detroit News + article + December 16, 1946 + 10 + + + + + Sat Riviera Rec boys league (Bowling) + 1948-1949 + 10 + + + + + Trip to England, Israel, Turkey, Greece, Italy, and France + September-December 1962 + 11 + + + + + Trip materials + September-December 1962 + 11 + + + + + UAW-CIO membership card + 11 + + +

    (from work at Ford Motor Co.)

    +
    +
    +
    + + + Correspondence + 1952-1977 + + + + 75 folders + 1952-1959 + 1 + + + + + 65 folders + 1952-1959 + 2 + + + + + 25 folders + 1952-1959 + 3 + + + + + Letters from Europe trip + 1954 + 3 + + + + + Sandy Levin + 1974 + 1977 + 3 + + + + + Miscellaneous + 1962 + 3 + + + + + Miscellaneous + 3 folders + 1968-1971 + 3 + + + + + Olympia pending, (Red Wings hockey -- 50 years at Olympia + celebration) + 1977 + 3 + + + + + Alex Stakow + 1962 + 3 + + + + + Richard Stenn + 1962 + 3 + + + + + Students for Democratic Actions (SDA) + 15 folders + 1952-1959 + 3 + + + + + + Education + 1948-1959 + + + + Young Carl scrapbook -- Jewish holidays and pictures + undated + 4 + + +

    (Possibly Hebrew school related)

    +
    +
    + + + Durfee Middle School -- Durfee Review commencement issue + June + 1948 + 4 + + + + + Central High School + 1949-1952 + + + + Central Student newspapers + + + + May 5 + June 16, 1949 + 4 + + + + + Miscellaneous issues + 1949-1951 + 4 + + + + + + Centralite yearbook + 1951 + 4 + + + + + Graduation + October 1951-January 1952 + 4 + + +

    (Includes prom ticket, diploma, commencement invitation, and some Central Student + newspapers)

    +
    +
    + + + 10 year high school reunion "Then and Now" + 1962 + 1111 + + +

    (Levin helped plan the reunion)

    +
    +
    +
    + + + Wayne University -- Dean's list + 1952 + 4 + + + + + Columbia University admission letters + 1952 + 4 + + + + + Cornell University admissions + 1952 + 4 + + + + + Swarthmore College + 1950-1957 + + + + Americans for Democratic Action (ADA) + + + + 1954 + 4 + + + + + World newspaper + 4 issues + 1952-1955 + 4 + + + + + + Americans for Democratic Action (ADA) and Students for Democratic Action + (SDA) + 1956 + 4 + + + + + College Directory of Students -- fall semester + 1955-1956 + 4 + + + + + Commencement program + 1956 + 4 + + + + + Halcyon yearbook + 1955 + 4 + + +

    (Book)

    +
    +
    + + + Kohler union strikes + 1955-1956 + 4 + + + + + Letters + 1956-1957 + 4 + + + + + Miscellaneous + 3 folders + 1952-1956 + 4 + + + + + Miscellaneous + 1955-1956 + 5 + + + + + Miscellaneous + undated + 5 + + + + + Writings + 5 + + + + + Miscellaneous materials and newspaper clippings + 1952-1953 + 5 + + + + + Philosophy of Education symposium plan + 1955 + 5 + + + + + Publications and news articles + + + + Miscellaneous newspapers + 2 folders + 1953-1954 + 5 + + + + + Miscellaneous + 2 folders + 1954-1956 + 5 + + + + + The Lit + February-May 1954 + 5 + + + + + The Reporter + 1954-1956 + 5 + + + + + Swarthmore Phoenix + 1955-1956 + 6 + + + + + + Schoolwork and notes + + + + Rise of Liberalism + 1954 + 1030 + + + + + Miscellaneous + 1954-1955 + 1030 + + + + + American Lit + 1955 + 1030 + + + + + American Foreign Policy + 1956 + 6 + + + + + Italian-Rome Journal, "Italy Gives Up" translation for + schoolwork + undated + 6 + + + + + undated + 1111 + + + + + + Student Council + + + + 2 folders + 1954-1956 + 6 + + + + + Minutes + February 19, + 1956 + 6 + + + + + Student government handbook and letter regarding Levin's time + commitments + undated + 6 + + + + + + Students for Democratic Action (SDA) + + + + 2 folders + 1956-April 1957 + 6 + + + + + Convention + + + + 1952-1956 + 6 + + + + + 1955 + 6 + + + + + 1955-1956 + 6 + + + + + Workshop + 1956 + 6 + + + + + + Letter to Levin + 1954-1955 + 6 + + + + + Levin notes + undated + 6 + + + + + Literature + 2 folders + 1950-1952 + 6 + + + + + Materials + 1953 + 6 + + + + + Miscellaneous + 1956-1957 + 6 + + + + + National bulletins, (USDA and ADA) + 2 folders + 1955-1956 + 7 + + + + + Photographs from Leonard Lessin + undated + 7 + + + + + Statement with notes + undated + 7 + + + + + + Swarthmore Independent Liberal Student Union + 1956 + 7 + + + + + Audiovisual materials + + + + Students for Democratic Action (SDA) Convention + Sandy-Wechler + 1 audiotape (5 in.) + 1953 + 1106 + + + +
    + + + Harvard Law School + 1957-1959 + + + + Law school papers + + + + Duty of fair representation + 7 + + + + + Labor law + 3 folders + 7 + + + + + 1959 + 7 + + + + + + Letter to Congressman Sidney Yates + October 22, + 1958 + 7 + + + + + Notes and papers + 3 folders + 8 + + + + + Schoolwork + + + + Capital offenses + 1958 + 8 + + + + + Commercial law + undated + 8 + + + + + Constitutional law + 1958 + 8 + + + + + Exam scores + June 1957 + 8 + + + + + Exam scores + June 1958 + 8 + + + + + Problems of trial practice + 1959 + 8 + + + + + + Students for Democratic Action (SDA) + 2 folders + 1957 + 9 + + + +
    + + + Saul R. Levin Foundation + 1957-1985 + + + + 1959-1985 + 9 + + +

    (Includes Recorder Court study and, and Rabbi Groner tribute to Bess Levin)

    +
    +
    + + + Study of Recorder's Court + 1957-1972 + + + + Study #1 IBM print out + 1959 + 9 + + + + + Study #1 important documents + 1957-1959 + 9 + + + + + Publicity study #1 + 1959 + 9 + + + + + Key file study #2 + 1972 + 9 + + + + + Study #2 data sheets + 2 folders + 1970-1971 + 9 + + + + + Study #2 + 1972 + 10 + + + +
    + + + Photographs + 1940-1969 + undated + + + + 1956 + 1026 + + + + + November 1961 + 1026 + + + + + 9B All-Star team, Durfee + 1026 + + + + + Alex Shakow + 1960 + 1026 + + +

    (taken by Renate Bergeman)

    +
    +
    + + + Camp Tamakwa, Sam's Farm + 1948 + 1026 + + + + + Carl at Sandy's Wedding + 1026 + + + + + Carl with motorcycle + 1954 + 1026 + + + + + Convention, trip to W. Va, Labor project Detroit + 1956 + 1026 + + + + + Hockey playoffs TV + 1952 + 1026 + + + + + Hoke's farm + 1948 + 1026 + + + + + Jenny + 1958 + 1026 + + + + + McNulty in front of M.L. #3, Swarthmore College, winter + 1952 + 1026 + + + + + Merrill, Carl, and nieces visit the zoo + July + 1958 + 1026 + + + + + Negatives + 1940s-1960s + + +

    (Primarily negatives of the photographs in this section)

    +
    + + + Negatives + 16 rolls + 1027 + + +

    (In Kodak film canisters)

    +
    +
    + + + Negatives + 10 card boxes + 1027 + + + + + Negatives + 8 envelopes + 1027 + + +
    + + + Senior prom; Sandy, Rob Woodworth, Student government, Chicago; Hockey TV, + Salt Lake City, taken from slide + 1948-1954 + 1026 + + + + + Stevenson campaign + 1956 + 1026 + + + + + Times square + 1026 + + + + + Washington + 1948 + 1026 + + + + + Zoo + 1947 + 1026 + + +
    + + + Michigan Civil Rights Commission + 1963-1972 + + + + Civil rights case + 1967 + 11 + + + + + Civil Rights cases in Michigan + 2 folders + 1967 + 11 + + + + + Civil Rights Commission + 1967 + 11 + + + + + Civil Rights Commission + 2 folders + 1968-1969 + 11 + + + + + Civil Rights Commission and the Detroit Police Department + 1967 + 11 + + + + + Michigan Civil Rights Commission and Digest of Rule 12 Hearing Decisions 70 + (Book) + 1964-1970 July 19 + 11 + + + + + Civil Rights Commission files confidentiality + 1967 + 11 + + + + + Civil Rights Commission + 1965 + 12 + + + + + Civil Rights Commission manual + 1967 + 12 + + + + + Civil Rights Commission Rules, (Booklet) + 1963 + 12 + + + + + Civil Rights guaranteed by the law + 1967 + 12 + + + + + Conflict -- Civil Rights and Civil Liberties + 1966 + 12 + + + + + Contract compliance clause-non-discrimination for all state + contracts + 2 folders + 1965-1967 + 12 + + + + + Cramton Law review article + 1964 + 12 + + + + + Discrimination against whom and use of statistics + 1967 + 12 + + + + + Election and exhaustion of remedies + 1965 + 12 + + + + + Employment + 1967 + 12 + + + + + Federal civil rights laws and orders + 1967 + 12 + + + + + File contents and American law reports-civil rights statute + 1964-1967 + 12 + + + + + Hearing De Novo-appeal procedure + 1965 + 12 + + + + + Pre-hearing injunctive relief + 1966 + 12 + + + + + Hospital discrimination + 1966 + 12 + + + + + Housing cases still to be crossed + 1968 + 12 + + + + + In-service training-orientation speech and suggestions + 1965-1966 + 13 + + + + + From Jipping file + 1966 + 13 + + + + + Jurisdiction over acts of federal officials + 1967 + 13 + + + + + Law review article + 1968 + 13 + + + + + Michigan Civil Rights Act and Housing Commission Act + 1965-1968 + 13 + + + + + Michigan State Highway Department re-location practices + 1966 + 13 + + + + + Non-disclosure of information prior to issuance of complaint + 1967 + 13 + + + + + Walter Nussbaum + 1967 + 13 + + + + + From Thomas Peloso + 1966 + 13 + + + + + Police jurisdiction + 3 folders + 1968 + 13 + + + + + Relocation + 1967 + 14 + + + + + Segregation in schools + 1966-1967 + + + + De facto + 2 folders + 1966-1967 + 14 + + + + + Education information + 1967 + 14 + + + + + + Subpoena powers of commission + 1965-1967 + 14 + + + + + Summary of civil rights guaranteed by law + 1963 + 14 + + + + + Supreme Court Case-Beech Grove Investment Company v. Civil Rights + Commission of the State of Michigan + 1967 + + + + State of Michigan in the Supreme Court/Beech Grove Investment Company v. + Civil Rights Commission of the State of Michigan-printed + 1967 + 14 + + +

    (Book)

    +
    +
    + + + Brief of Civil Rights Commission + 14 + + + + + Supplemental Brief of Civil Rights Commission + 14 + + + + + Appendix + 14 + + +
    + + + Testing -- legality + 1967 + 14 + + + + + Use of executive orders + 1967 + 14 + + +

    (Executive order barring discrimination by licensed real estate brokers)

    +
    +
    + + + Wayne Law civil rights + 1963-1972 + 14 + + + + + William Dietrick -- lawyers handbook + 1967 + 14 + + +

    (Rules governing organization, practice, and procedure)

    +
    +
    +
    + + + Attorney + 1938-1972 + + + + Certificate of admission as Attorney and Counselor -- State of + Michigan + January 1960 + 14 + + + + + Certificate-Attorney and Counsellor of the U.S. Supreme Court + May + 1972 + 1050 + + + + + Legal Aid and Defenders Association + 1938-1972 + + + + Charles Clark Case + + + + 1938 + 14 + + + + + 1969-1972 + 14 + + + + + + Defender file cases + 2 folders + 1967-1969 + 15 + + + + + General file + 16 subfolders + 1968 + 15 + + + + + Pre-emption 63 + 1968 + 15 + + + + + Research + 8 folders + 1960s + 15 + + + + + + + Lecturer + 1965-1980 + + + + University of Detroit Law School + 1969-1977 + + + + Class list + 1969 + 16 + + + + + Teaching materials + 1969 + 16 + + +

    (Civil Rights in Michigan course)

    +
    +
    + + + University of Detroit Bulletin, (Book; Listing of classes including Law + 372) + 1975 + 16 + + + + + Political Science 436-The Modern Metropolis + 1976 + + + + Miscellaneous + 16 + + + + + Modern Metropolis + 1976-1977 + 16 + + + + + Syllabus + 16 + + + + + Week 2 + 16 + + + + + Week 3 + 2 folders + 16 + + + + + Ch.8-Social dilemma + 16 + + + + + + Notes on the public economy + undated + 1975-1976 + 16 + + + + + Problems in Detroit (Fall class week 1) + 1976 + undated + 16 + + + + + Week 4 + 1976 + 16 + + +
    + + + University of Michigan-Law school + 1965-1966 + + + + Race Relations with Professor Robert J. Harris + 1965-1966 + 16 + + + + + + Wayne State University + 1969-1980 + + + + Summer + 1970 + + + + Brief 1 + 16 + + + + + Brief 2 (Civil Rights Commission) + 16 + + + + + Brief 3 (Community Relations v. Jones Realty Company) + 16 + + + + + Brief 4 (Civil Rights Commission) + 16 + + + + + Brief 5 (Lawsuits from State of Michigan and US Attorney's + office + 16 + + + + + Brief 6 (Civil Rights Commission) + 16 + + + + + Brief 7 (City of Detroit) + 16 + + + + + Brief 8 (Civil Rights Commission) + 16 + + + + + Brief 9 + 16 + + + + + Civil rights briefs + 1970 + 17 + + + + + Civil rights clippings + 1969-1970 + 17 + + + + + Index with legal periodicals + 1970 + 17 + + + + + Summer session + June 15-July 25, 1980 + 17 + + + + + Teaching materials + 17 + + + + + + Local Government class teaching notes + 2 folders + 1971 + 17 + + + + + Wayne State Law School civil rights seminar teaching + curriculum + 1970 + 17 + + + +
    + + + Detroit City Council + 1967-1979 + + + + American Arbitration Association-labor + 1974-1978 + 17 + + + + + Anderson Gardens + 1977 + 17 + + + + + Block grants + 13 folders + 1975-1979 + 18 + + + + + Block grants and Detroit's capital agenda + 5 folders + 1975-1979 + 19 + + + + + Bradley v Miliken 1972 -- desegregation schools + 1975-1976 + 19 + + + + + Bussing + 1975 + 19 + + + + + Bussing + 1976 + 19 + + + + + Chapter 6 + 1976 + 19 + + + + + Decriminalization + 1974 + 19 + + + + + Detroit General Hospital sculpture commemorating Levin + 1978 + 19 + + + + + Detroit police + 1977 + 19 + + + + + Financial Information and Control System (FICS) + 1977 + 20 + + + + + Gun control and violence + 1967-1971 + 20 + + + + + Handgun file + 1971 + 20 + + + + + Highlights + 1970-1977 + 20 + + + + + Housing + 1977-1978 + 20 + + +

    (publications including those by Civil Rights Commission and Detroit City + Council)

    +
    +
    + + + Housing and Urban Development (HUD) + 1973-1978 + + + + 1977 + 20 + + + + + City dispute key + 1973-1976 + 20 + + + + + Eviction case + 1977 + 20 + + + + + HUD-Guinnane eviction case + 2 folders + 1977-1978 + 20 + + + + + + Ira Mopkins shooting, (Board of Inquiry report) + 1977 + 21 + + + + + Insurance + 1970-1978 + + + + Argyle Bowl, Inc. lawsuit + 1977 + 21 + + + + + Auto + 1977 + 21 + + + + + Bureau + 1977 + 21 + + + + + Business + 1977 + 21 + + + + + Homeowners' Insurance in Detroit: A study of Redlining Practices and + Discrimination Rates by Detroit City Council President Carl Levin + July 19, 1976 + 21 + + + + + Insurance + 2 folders + 1976-1977 + 21 + + + + + Insurance + 2 folders + 1977 + 21 + + + + + Insurance documents + 21 + + + + + Insurance redlining key file + 1977-1978 + 7 + + + + + Carl Levin's Work on the Detroit City Council -- A sampling + (Book) + 1970-1977 + 21 + + + + + Loans + 1977 + 21 + + + + + Michigan Insurance Bureau hearing + + +

    (In the matter of Homeowners' Rate Filings and Rate Classifications, hearing + officer was John D. Pirich)

    +
    + + + 1976-1977 + 21 + + + + + Answers to Interrogatories + + + + Folder X + 1977 + 22 + + + + + Folder 3 + 1977 + 22 + + + + + Folder 4 + 1977 + 22 + + + + + Folder 5 + 1977 + 23 + + + + + Folder 6 + 1977 + 23 + + + + + Folder 7 + 1977 + 23 + + + + + Folder 8 + 1977 + 24 + + + + + Folder 9 + 1977 + 24 + + + + + Folder 10 + 1977 + 24 + + + + + Folder 11-Miscellaneous + 1977 + 25 + + + + + Folder 12 -- Miscellaneous information and Ratemaking Macomb + meeting + 1977 + 25 + + + + + Folder 13 + 1977 + 25 + + + + + + B&E burn complaints + 1976-1977 + 25 + + + + + Complaints + 2 folders + 1976-1977 + 25 + + + + + Complaints-summary + 1977 + 25 + + + + + Complaints not usable -- Levin notes + 1977 + 25 + + + + + Essential Insurance Act + 1977 + 26 + + + + + For signature + 1977 + 26 + + + + + Hard evidence on redlining + 1977 + 26 + + + + + Homeowners questionnaires + 1977 + 26 + + + + + Phase I + + + + Motions, letters regarding witnesses and procedural matters, + etc. + 1977 + 26 + + + + + Rating territories and miscellaneous information + 2 folders + 1977 + 26 + + + + + Transcripts + 26 + + +

    (all testifying companies, does not include arguments, testimony of Fireman's + Fund and procedural matters discussed, 1977 (Includes list of dates))

    +
    +
    +
    + + + Redlining + 1976 + 27 + + + + + Redlining + 1976-1977 + 27 + + + + + Redlining + 4 folders + 1977 + 27 + + + + + Send letters asking for phone numbers, (prospective + witnesses) + 1977 + 27 + + + + + State of Michigan Department of Commerce Insurance Bureau in the matter + of Homeowners' Rate Filings and Rate Classifications transcript, + 1977(?) + 6 folders + 27 + + + + + Miscellaneous information and writings + 1976-1977 + 1110 + + +
    + + + Miscellaneous + 1977 + 27 + + + + + Mortgages + 1977 + 27 + + + + + Mortgages -- pending + 1977 + 27 + + + + + News clips + 1976-1977 + 27 + + + + + Pending + 1975-1976 + 28 + + + + + Pending + 1976-1977 + 28 + + + + + Redlining + 2 folders + 1975-1977 + 28 + + + + + Redlining + 1977 + 28 + + + + + Redlining ordinance + 1975-1976 + 28 + + + + + Redlining miscellaneous information and writings + 1975 + 1109 + + +
    + + + An Inventory of Local Government Finance and Services in Southeast + Michigan, (Book) + 1971 + 28 + + + + + Levin's teaching materials and Detroit City Council materials + 1976 + 28 + + + + + Media + 1970s + + + + 2 folders + 1975-1976 + 28 + + +

    (TV and newspaper interactions)

    +
    +
    + + + (B) Fair Neighborhood ord. Discussion, inc J. Horey(?); (A) DeHoco Budget + Discussion + 1 audiocassettes + 1972 April 27 + 1972 April 17 + 28 + + + + + [illegible] Helle(?) + 1 audiocassettes + December 28(?) + 1973 December 29 + 28 + + + + + [illegible] on WCAR + 1 audiocassettes + 1971 October 05 + 28 + + + + + [illegible] WJR w gens Pirgim(?) + 1 audiocassettes + 1977 July 31 + 28 + + + + + [illegible]; Regionalism(?) debate [illegible] + 1 audiocassettes + 1974 October 23 + 1976 February + 28 + + + + + BC + 1 audiocassettes + 1973 October 15 + 28 + + + + + CBS Windsor [illegible] Lorgowski(?) + 1 audiocassettes + 1977 September 29 + 28 + + + + + Ch. 4 - Ailun(?) Selick - Carl - re Mobil Oil(?) Credit Cards + 1 audiocassettes + 1977 June 20 + 28 + + + + + Chuck Hadel - J.P. McCarthy Focus Show + 1 audiocassettes + 1977 August 16 + 28 + + + + + De Hoco Discussion + 1 audiocassettes + 1971 November 17 + 28 + + + + + Doug & Winifred Fraser announce WDET-FM 25th Anniversary with Program + Samples + 1 audiocassettes + 1973 May 18 + 28 + + + + + Educators Seminar w gens(?) + 1 audiocassettes + 1976 June 24 + 28 + + + + + FAA Rehab Discussion - [illegible] First [illegible] + 1 audiocassettes + 1973 May 21 + 28 + + + + + Frank Riley wash. Federal Ins. Bureau; Howard Clash(?) - Wash. - Fed Ins + Bureaux(?); Brian Jones - WSV [illegible] + 1 audiocassettes + 1977 May 11 + May 11 + May 11 + 28 + + + + + HVD(?) + 1 audiocassettes + 1973 May 18 + 28 + + + + + Jim Sall Discussion DRVGS(?) Tape #1 + 1 audiocassettes + 1972 March 29 + 28 + + + + + John Stupak Show 11-12 PM Part II; TV appearance Marc Ross, Mary Sundan + & J. Lagorvski(?) + 1 audiocassettes + 1974 October 02 + 28 + + + + + Levin + 1 audiocassettes + undated + 28 + + + + + Levin. Whitbeal(?) Debate + 1 audiocassettes + 1972 August 22 + 28 + + + + + Lois Pincus TV 1/2 hr + 1 audiocassettes + 1978 January 06 + 28 + + + + + Miller + 1 audiocassettes + undated + 28 + + + + + Nuclear Energy w. McCarthy WWJ+WJR + 1 audiocassettes + 1976 November 18 + 28 + + + + + Off the record Regionalism; Donn Shelton, Don Ivey(?) Class + 1 audiocassettes + 1976 December + 28 + + + + + Tape #1 John Stupak + 1 audiocassettes + 1974 October 02 + 28 + + + + + Thorn+Waste(?) Re: MNDC + 1 audiocassettes + 1975 February + 28 + + + + + WDEE + 1 audiocassettes + 1970s + 28 + + + + + WJR Milliker(?) - energy + 1 audiocassettes + 1973 December 24 + 28 + + +
    + + + Miscellaneous City Council + 1976 + 29 + + + + + Miscellaneous + 2 folders + 1975 + 29 + + + + + Miscellaneous + 1977 + 29 + + + + + Miscellaneous + 1977 + 29 + + + + + Miscellaneous news articles + 2 folders + 1976 + 29 + + + + + Misdemeanor study -- Equal Justice Council + February 1970 + 29 + + +

    (Study of misdemeanors in Detroit from September-December 1969)

    +
    +
    + + + National Bank of Detroit loan + June 5, 1978 + 29 + + + + + Neighborhood information exchange + 1977 + 29 + + + + + People of the State of Michigan v. Witting and Bresnahan + 1977 + 29 + + + + + Police + 1971-1975 + 30 + + +

    (Levin's writings)

    +
    +
    + + + Police issues news articles + 1970-1973 + 30 + + + + + President's Task Force Report: The Police DPD City Wide Citizens Police + Council Workshop + 1972 + 30 + + + + + Press + 1970-1978 + + + + Detroit-"Nine Men Who Find Themselves (Wow!) Running + Detroit," + February 28, + 1971 + 30 + + + + + News articles + + + + Highlights + 1970-1977 + 30 + + + + + Housing + + + + HUD policy probe requested + June 1972 + 30 + + + + + Council orders HUD demolition + July 1974 + 30 + + + + + Council votes ban on junk house sales + October 1974 + 30 + + + + + City demolishes homes + October 1975 + 30 + + + + + HUD mess -- private plan + April 1976 + 30 + + + + + Guinnane HUD eviction + December 1977 + 30 + + + + + + Levin + + + + Nine Men Who Have Taken Over the Government of Detroit + February 28, + 1971 + 30 + + + + + They trust him + May 1975 + 30 + + + + + Detroit will miss Levin + January 1977 + 30 + + + + + Levin's leaving but will return + September 1977 + 30 + + + + + Levin setting up Committee + November 1977 + 30 + + + + + Levin ends hectic term + December 1977 + 30 + + + + + Two late news editorials politician of statute and foul a foul, + September + December 1977 + 30 + + + + + Levin opens campaign and Levin enhances senate + February 1978 + 31 + + + + + Levin welcomes chance + February 1978 + 31 + + + + + + Neighborhood budget + May 1977 + 31 + + + + + Redlining + + + + Levin asks redlining probe + February 1976 + 31 + + + + + Red lining credit cards + June 1977 + 31 + + + + + Levin charges insurance discrimination + July 1976 + 31 + + + + + + Romney Ouster + July 1972 + 31 + + + + + + Newspapers + 1970-1972 + 31 + + + + + Miscellaneous news articles + 1975-1977 + 31 + + + + + Press releases -- Not running for Mayor + January 1973 + 31 + + + + + + Prostitution + 1976-1977 + + + + 1976 + 31 + + + + + Pending + 1977 + 32 + + + + + Woodward to 7 mile + 1976-1977 + 32 + + + + + + Public works + 2 folders + 1976-1977 + 32 + + + + + Public works + 1977 + 32 + + + + + Public works -- capital projects + 1977 + 32 + + + + + Regionalism + 2 folders + 1971 + 32 + + + + + Regionalism bill + 1976 + 32 + + + + + Regionalist Papers-MF, (Book) + 1974 + 32 + + + + + Revenue sharing -- census under Council + 1975 + 32 + + + + + Revenue sharing -- federal + 1975 + 32 + + + + + Senator Riegle -- Detroit concerns + 1977 + 32 + + + + + School desegregation and bussing + 1973-1975 + 32 + + + + + Testimonial resolution -- Council President Carl Levin + December 1977 + 1050 + + +

    (Leaving city government)

    +
    +
    + + + Thank you + 1977 + 32 + + + + + Audiovisual materials + + + + 42 - News Conf. Soviet Trip, Salt II Refusnikes, Chrysler + 1 audiocassettes + 1976 September 05 + 1104 + + + + + Radio Tour: Welfare, Lobbying, Budget + 1 audiocassettes + 1972 September 20 + 1096 + + + + + Rizal Day Program at Cobo Hall, Detroit, Mich. Councilman Levin + remarks + 1 audiocassettes + 1972 December 30 + 1095 + + + + + Tape #1. Roll #1. Carl Levin. Detroit. + 1 audiotape (7 in.) + 1978 April 08 + 1102 + + + + + Tape #10. Roll #9. Levin: Interviews + 1 audiotape (5 in.) + 1978 April 12 + 1103 + + + + + Tape #11. Roll #10-11. Levin: Interviews + 1 audiotape (5 in.) + 1978 April 12 + 1103 + + + + + Tape #12. Roll #11-14. Levin: Interviews City & [illegible] - + bulldozer + 1 audiotape (5 in.) + 1978 April 12 + 1103 + + + + + Tape #13. Roll #13. Levin: UAM. Detroit - Interviews + 1 audiotape (7 in.) + 1978 April 13 + 1102 + + + + + Tape #14. Roll #16-17. Levin: interview Forum (/Flint(?)) + 1 audiotape (5 in.) + 1978 April 14 + 1103 + + + + + Tape #15. Roll #18. Levin: on Farm + 1 audiotape (5 in.) + 1978 April 14 + 1103 + + + + + Tape #16. Roll #19. Levin on farn words (?) + 1 audiotape (5 in.) + 1978 April 14 + 1103 + + + + + Tape #17. Roll #21. Levin: Camp. Interviews/- [illegible] Farmers + Market + 1 audiotape (5 in.) + 1978 April 13 + 1103 + + + + + Tape #18. Roll #22. Levin: Detroit (?) + 1 audiotape (5 in.) + 1978 April 15 + 1103 + + + + + Tape #19. Roll #23. Levin: Interviews Cuty/Levin + 1 audiotape (5 in.) + 1978 April 15 + 1103 + + + + + Tape #2. Roll #1. Levin: Interviews. Wayne State Student + Center + 1 audiotape (7.5 ips; 5 in.) + 1978 April 11 + 1103 + + + + + Tape #20. Roll #24. Levin + 1 audiotape (5 in.) + 1978 April 15 + 1103 + + + + + Tape #3. Roll #2. Levin: Student Form + 1 audiotape (5 in.) + 1978 April 11 + 1103 + + + + + Tape #4. Roll #2. Levin - Student Wayne State + 1 audiotape (5 in.) + 1978 April 11 + 1103 + + + + + Tape #5. Roll # 3 = 4. Levin: Interaction. Wayne State + College. + 1 audiotape (5 in.) + 1978 April 11 + 1103 + + + + + Tape #7. Roll #6. Levin: Interviews - City Hall + 1 audiotape (5 in.) + 1978 April 12 + 1103 + + + + + Tape #8. Roll #7. Levin: in [illegible] City Hall + 1 audiotape (5 in.) + 1978 April 12 + 1103 + + + + + Tape #9; Roll #8. Levin: Interviews + 1 audiotape (5 in.) + 1978 April 11 + 1103 + + + + + + Detroit voting precincts + 1972 + 1114 + + +
    +
    + + + Elections and Campaigns + 1957-2014 + + +

    The Elections and Campaigns series is organized chronologically by election beginning + with Carl Levin's run for the Detroit City Council in 1968 through his last + congressional election in 2008.

    +

    Materials include platform and planning documents, background information, voter + polling data, constituent research, candidate research, financial documents, + correspondence, newspaper clippings, press releases, speeches, interviews, debate prep, + photographs, and audiovisual materials. This series also includes documentation of other + candidates Senator Levin campaigned for, including his brother, U.S. Representative + Sander Levin.

    +
    + + + Detroit City Council + 1967-1979 + + + + After election + 2 folders + 1969 + 33 + + + + + Attitudes and opinions toward the upcoming election + 1969 + 33 + + + + + Biographies + 1977 + 33 + + + + + Budget primary + 1969 + 33 + + + + + Certificate of Election + January 2, 1978 + 1050 + + + + + City Council Candidates + 1977 + 33 + + + + + City of Detroit financial outlook, (Bound report) + 1970-1975 + 33 + + + + + City of Detroit -- Labor Relations Bureau + 1969 + 33 + + + + + City of Detroit Office of the Auditor General annual financial report + FY1969 + 33 + + + + + Conferences and institutions + undated + 33 + + + + + Council -- Crockett + 1969 + 33 + + + + + Common Council Fund + 1972-1974 + 33 + + + + + Council lists + 1969 + 33 + + + + + Council miscellaneous + 1969 + 33 + + + + + From Common Council Committee Clerk + December 19, 1969 + 33 + + + + + Common Council Seminar + December 19, 1969 + 33 + + + + + Coordinating Committee -- final election + 1969 + 33 + + + + + Contacts make and greet workers + 1969 + 33 + + + + + Correspondence + 1969-1969 + + + + General election correspondence + 1969 + 33 + + + + + General election thank yous + 1969 + 33 + + + + + June letter and draft + 1969 + 33 + + + + + Legislator letter + 1969 + 33 + + + + + Letters + 1969 + 33 + + + + + Miscellaneous correspondence + November 5-December 31, 1969 + 33 + + + + + Primary thanks for congratulatory notes + 1969 + 33 + + + + + Thank you + 1969 + 33 + + + + + Thank yous -- Congratulations letters + 1969 + 33 + + + + + Things to do as Councilman, (From Councilman Mel Ravitz) + undated + 33 + + + + + + Detroit Bar Association + 1970-1972 + 34 + + + + + Detroit building trades and constitution council list + 1969 + 34 + + + + + Detroit Master Plan -- as amended + July + 1969 + 34 + + + + + Detroit mayoral and city council elections-Correspondence, notes, and + memorabilia + 5 folders + 1973-1974 + 41 + + + + + District meetings + 1973 + 34 + + + + + District organization lists + undated + 34 + + + + + Dome -- language promises + 1969 + 34 + + + + + Election to City Council -- master book + 2 folders + 1969 + 34 + + + + + Election day workers + 1969 + 34 + + + + + Endorser cards + 1969 + 34 + + + + + Endorsements -- general elections + 1969 + 34 + + + + + Financial + 1970-1974 + 34 + + + + + Financing + 1977 + 34 + + + + + Fundraisers + 1969-1979 + + + + Art sales + September 26, + 1969 + 34 + + + + + Poly art party guestbook + August 1, 1969 + 34 + + + + + Cocktail party guestbook + August 7, 1969 + 34 + + + + + 1970s + 34 + + +

    (Includes 2 guestbooks)

    +
    +
    + + + Detroit Science Center + 2 folders + May-August 1975 + 34 + + +
    + + + General Motors + 1970 + 34 + + + + + Morris Gleicher general election + November 1969 + 34 + + + + + Greene + 1969 + 34 + + + + + Key lists on Carl's campaign + 1969 + 34 + + + + + Levin's lawyer list part I + 1969 + 34 + + + + + Levin's close friends Part II + 1969 + 34 + + + + + Lists -- poor peoples campaign + 1969 + 34 + + + + + Material + 1973 + 34 + + + + + MDP open house + 1969 + 34 + + + + + Michigan Democratic politics + 1967-1979 + 35 + + + + + Miscellaneous + 1969 + 35 + + + + + Neighborhood letter + 1969 + 35 + + + + + Press + 1969-1969 + + + + Press release + July 2, 1969 + 35 + + + + + + Primary invite list + 1969 + 35 + + + + + Primary miscellaneous + 1969 + 35 + + + + + Questionnaire + 1969 + 35 + + + + + Re-elect Carl Levin to Council postcards + undated + 35 + + + + + Re-election + 1973 + 35 + + + + + Signs + 1969 + 35 + + + + + Structure of campaign organization -- final + 1969 + 35 + + + + + Structure of city + 1969 + 35 + + + + + Trial Board + 1969 + 35 + + + + + Urban Alliance clergy support + 1969 + 35 + + + + + Volunteers -- miscellaneous lists + 1969 + 36 + + +
    + + + Multi-year Campaign Files + 1970-1996 + + + + Catalogue of old campaign boxes + undated + 36 + + + + + Campaign literature + 1990 + 36 + + +

    (Friends of Carl Levin)

    +
    +
    + + + Middle Class Squeeze Summary + July + 1996 + 36 + + +

    (Also includes some scheduling documents from October 2008)

    +
    +
    + + + Important issues to voters polls + undated + 36 + + + + + R.1.F.1 Debate transcripts + September-December 1990 + 36 + + + + + R.1.F.2 Articles + 2 folders + 1990 + 36 + + + + + R.1.F.3 Cartoons + 1990 + 36 + + + + + R.1.F.4 Campaign-printed material + 1990 + 36 + + + + + R.1.F.5 Campaign funding "N" stuff + 1990 + 36 + + + + + R.1.F.6 Media Consultant Guide + 1985 + 36 + + +

    (Prepared for DSCC)

    +
    +
    + + + R.1.F.8 Anti-Schuette literature + 1990 + 36 + + + + + R.1.F.9 Various polling and voting results, (Demographics) + 1990 + 36 + + + + + R.1.F.10 Wayne County Study + 1990 + 36 + + + + + R.1.F.11 Polling questionnaires + 1990 + 36 + + + + + R.1.F.12 Levin Baseline Poll data book -- Nordhaus Research + 4 folders + May + 1983 + 36 + + + + + R.2.F.1 Presidential campaign + 1988 + 36 + + + + + R.2.F.2 Anti-Schuette material + 1990 + 36 + + + + + R.2.F.3 Dukakis campaign memos + 1988 + 36 + + + + + R.2.F.4 Voting data + 1990 + 1984 + 37 + + + + + R.2.F.5 Levin victory articles + 1990 + 37 + + + + + R.2.F.6 Voter guide-Detroit Free Press + October 31, 1990 + 37 + + + + + R.2.F.7 Levin bio + 1978-1982 + 37 + + +

    (Includes record on Israeli issues)

    +
    +
    + + + R.2.F.8 Inside Michigan Politics news article + 1990 + 37 + + + + + R.2.F.9 Senatorial polling + 1990 + 37 + + + + + R.2.F.10 FEC documents + 1990 + 1984 + 37 + + + + + R.2.F.11 Stanford Stoddard bank application + July + 1994 + 37 + + + + + R.2.F.12 Legal pad on Wayne State Visit, April (?) + 37 + + + + + R.3.F.1 Polls + 3 folders + 1990 + 37 + + + + + R.3.F.2 Analysis of survey + August 1984 + 37 + + + + + R.3.F.3 Analysis of poll + September 30, + 1984 + 37 + + + + + R.3.F.4 Michigan survey and results + October 5, 1984 + 37 + + + + + R.3.F.5 Lousma issue analysis + 1984 + 37 + + + + + R.3.F.6 Results of poll + June + 1984 + 37 + + + + + R.3.F.7 Poll and results + October 30, 1984 + 37 + + + + + R.3.F.8 Michigan survey + August 1984 + 37 + + + + + R.3.F.9 Who is Bill Schuette? + May 2, 1990 + 37 + + + + + R.3.F.10 Polling stuff + 2 folders + 1984 + 1978 + 37 + + + + + R.3.F.11 General + 1990 + 38 + + + + + R.3.F.12 Schuette buys + 1990 + 38 + + + + + R.3.F.13 Negative campaigning -- Schuette + 2 folders + 1989 + 38 + + + + + R.3.F.14 Coordinated campaign + December 1989 + 38 + + + + + R.3.F.15 Public relations and political consulting firms + 1989 + 38 + + + + + R.3.F.16 Budget + 1990 + 38 + + + + + R.3.F.17 Tabular report, (by Hamilton) + September 1984 + 38 + + + + + R.3.F.18 Levin's work on Detroit City Council + 1970-1977 + 38 + + + + + R.3.F.19 Levin's radio ads + undated + 38 + + + + + R.3.F.20 Poll questionnaire + March 1984 + 38 + + + + + R.3.F.21 Levin and Lousma comparison + 1984 + 38 + + + + + R.3.F.22 News clips + 1984 + 38 + + + + + R.3.F.23 Levin's views on issues + 1978 + 38 + + + + + R.3.F.24 Memos + 1984 + 38 + + + + + R.3.F.25 Miscellaneous + 1981-1985 + 38 + + + + + R.4.F.1 Media -- pro-Levin + 1978 + 38 + + + + + R.4.F.2 Anti-Griffin media + 1978 + 38 + + + + + R.4.F.3 Media -- TV + 1978 + 38 + + + + + R.4.F.4 More media + 1978 + 38 + + + + + R.4.F.5 Air Force and defense documents + 1983 + 38 + + + + + R.4.F.6 Pete Dawkins file + 1983 + 38 + + + + + R.4.F.7 DC finance + 1982-1983 + 38 + + + + + R.4.F.8 Direct mail + 1980-1983 + 38 + + + + + R.4.F.9 Media buy + 1978 + 38 + + + + + R.4.F.10 Lousma Research + 1984 + 38 + + + + + R.4.F.11 Strategy + 1984 + 38 + + + + + R.4.F.12 Direct Coter Contract + 1984 + 38 + + + + + R.4.F.13 Administration of Political Campaigning -- case study + 1978 + 38 + + + + + R.4.F.14 1978 Election totals + 1978 + 38 + + + + + R.4.F.15 Finance + 1978 + 38 + + + + + R.4.F.16 Media Consultants + 1983 + 38 + + + + + R.4.F.17 Questionnaires + 1984 + 39 + + + + + R.4.F.18 Information Associates Consulting Group + 1984 + 39 + + + + + R.4.F.19 Impersonator Situation + January 1985 + 39 + + + + + R.4.F.20 Miscellaneous media + 1984 + 39 + + + + + R.4.F.21 Lousma materials + 1984 + 39 + + + + + R.4.F.22 Lousma research + 1984 + 39 + + + + + R.4.F.23 Database + 1985 + 39 + + + + + R.5.F.1 Levin Press Packet + 1990 + 39 + + + + + R.5.F.2 + 1990 + 39 + + + + + R.5.F.3 Carl campaign miscellaneous + 1990 + 39 + + + + + R.5.F.4 Questions regarding campaign rules + 1990 + 39 + + + + + R.5.F.5 Articles and quotes Lousma + 1984 + 39 + + + + + R.5.F.6 Ad stuff + 1984 + 40 + + + + + R.5.F.7 Sander, Levin + 1982 + 40 + + + + + R.5.F.8 Lousma v. Dunn + 1984 + 40 + + + + + R.5.F.9 Levin baseline survey + May + 1983 + 40 + + + + + R.5.F.10 PACS + 1982-1983 + 40 + + + + + R.5.F.11 Stuff + 1978 + 40 + + + + + R.5.F.12 Fundraising + 1983 + 40 + + + + + R.5.F.13 Articles regarding Levin + 1983 + 40 + + + + + R.5.F.14 General-miscellaneous memos + 1984 + 40 + + + + + R.6.F.1 Rating of Levin by Various Groups Part I + 40 + + + + + R.6.F.2 Rating of Levin by Various Groups Part II + 40 + + + + + R.6.F.3 Computer and Database Matters + 41 + + + + + R.6.F.4 Budget I + 1990 + 40 + + + + + R.6.F.5 Budget II + 1990 + 40 + + + + + R.6.F.6 Campaign Handbook + 1990 + 41 + + +
    + + + 1978 + + + + Administrative and office files + 1978-1979 + + + + To Bob S.A. Campaign + October 1978 + 41 + + + + + Calendar and work lists + 1978 + 41 + + + + + Correspondence + 1978 + 41 + + + + + Culley-to go over with Ruth + 1978 + 42 + + + + + Invite lists + 1978 + 42 + + + + + Mailing list + 1978 + 42 + + + + + Parlor Party list for thank yous + 1978 + 42 + + + + + Requests for campaign information + 1978 + 42 + + + + + Schedule and notes + January 10-April 30, 1978 + 42 + + + + + Scheduling sheets -- completed + April 1978 + 42 + + + + + Schedules -- Carl Levin + May 23-August 6, 1978 + 42 + + + + + Thank you letters + 1978 + 42 + + + + + Thank you letters + 1979 + 42 + + + + + Thank you letters post-election + 1978 + 42 + + + + + + Background papers -- Public Issues in Michigan -- House Democrat Research + Staff + 1978 + 42 + + + + + Biography + 1978 + 42 + + + + + Campaign + 2 folders + 1978 + 42 + + + + + Campaign contributions + 1978 + 43 + + + + + Campaign documents + 1978 + 43 + + + + + Campaign letters and speeches + 2 folders + 43 + + + + + Campaign literature + 2 folders + 1978 + 43 + + + + + Campaign strategy + 1978 + 43 + + + + + City Council-Levin's highlights + 1977-1979 + 43 + + + + + Community letters + 1978 + 43 + + + + + Debate and policy-important documents + 1978 + 43 + + + + + Detroit + 1979 + 43 + + + + + Detroit publications + 1976-1978 + 43 + + + + + Driker event + November-December 1977 + 43 + + + + + Election + 1978 + 43 + + + + + Fundraising + 1978-1978 + + + + 3 folders + 1978 + 43 + + + + + Builders fundraiser + 1978 + 43 + + + + + Finance -- big donors + 1978 + 44 + + + + + Mailer + 1978 + 44 + + + + + Special fundraiser + 1978 + 44 + + + + + + Green party + 1978 + 44 + + + + + Griffin + 1978-1978 + + + + Debates + 1978 + 44 + + + + + Opposition research + 1978 + 44 + + + + + Record + 1978 + 44 + + + + + A Record of Distinguished Service Leadership (Booklet) + 44 + + + + + Voting record + 2 folders + 1978 + 44 + + + + + + Issue areas + 1977-1978 + + + + Levin's stance on issues + 1978 + 44 + + + + + Briefing binder + 1978 + 44 + + + + + Arms embargo on Turkey + 1978 + 44 + + + + + Crime + 1978 + 44 + + + + + Defense + + + + 1978 + 44 + + + + + Defense and employment + 1978 + 44 + + + + + Neutron bomb + 1978 + 44 + + + + + + Economy + 1978 + 44 + + + + + Energy and jobs + 1978 + 44 + + + + + Farm bill + 1978 + 44 + + + + + Farmer loans and federal subsidies for Michigan + 1977-1978 + 44 + + + + + Federal regulations and auto industry + 1977-1978 + 44 + + + + + Federal spending-Senator Edmund Muskie + 1978 + 44 + + + + + Financial guarantees + 1978 + 44 + + + + + Health care + 1978 + 44 + + + + + Healthcare Detroit City Council + 1978 + 44 + + + + + Housing and Urban Development (HUD) + 44 + + + + + Inflation + 1978 + 44 + + + + + Insurance-no fault + 1978 + 44 + + + + + Labor + 1977-1978 + 44 + + + + + Legislative veto + 1977 + 44 + + + + + Legislative veto + 1978 + 44 + + + + + Mid-east + 1978 + 44 + + + + + Middle East conflict + 1978 + 44 + + + + + Native Americans + 1978 + 44 + + + + + Nuclear energy-regulation and safety + 1978 + 44 + + + + + Panama Canal + 1978 + 44 + + + + + Petroleum industry entry into coal industry + 1978 + 45 + + + + + Seniors + 1978 + 45 + + + + + Tax credits-investment and employment + 1978 + 45 + + + + + Tax limit + 1978 + 45 + + + + + Tax limitation + 45 + + + + + Urban aid + 1978 + 45 + + + + + Washington + 1978 + 45 + + + + + + Levin position statement on labor law reform + 1978 + 45 + + + + + Levin for Senate ABB, (Campaign contributions and accounting) + 1978 + 45 + + + + + Levin for Senate campaign folder + 1978 + 45 + + +

    (Includes meeting lists, Levin for Senate Committee, financial, fundraisers, + issues, campaign staff, correspondence and memoranda, budget, phones, data, rent, + media, Oakland County, organization, office, print material, poll, volunteers, press + resumes, press releases, survey sheets, etc.)

    +
    +
    + + + Saul R. Levin Memorial Foundation, Inc. -- Report of Study of Recorder's + Court over 20-month period + November 1, 1957-June 30, 1959 + 45 + + + + + Miscellaneous + 1978-1979 + + + + Folder group 1 + 4 folders + 1978 + 45 + + + + + Folder group 2 + 7 folders + 1978 + 46 + + + + + Folder group 3 + 1978 + 46 + + + + + 7 of 12 folders + 1978-1979 + 46 + + +

    (Folders 1 through 7; Folder 4 contains 2 photographs)

    +
    +
    + + + 1978-1979 + 8-12 of 12 folders + 47 + + + + + Campaign materials + 1978 + 47 + + + + + Planning envelope + 1978 + 47 + + +
    + + + Notes folder 1 + 1978 + 47 + + + + + Notes folder 2 + 1978 + 47 + + + + + Parades + 1978 + 47 + + + + + People + 1978-1978 + + + + Mary B. + 1978 + 47 + + +

    (Includes photograph of Levin and notes)

    +
    +
    + + + Ken + 1978 + 47 + + + + + Bob S. + 1978 + 47 + + +
    + + + Polls + 1977-1978 + + + + 1977 + 47 + + + + + April 1978 + 47 + + + + + July 1978 + 47 + + + + + 1978 + 47 + + + + + Newspaper and our polls + 1977-1978 + 47 + + + + + + Press + 1978-1978 + + + + Newspaper clippings + 1978 + 47 + + + + + Theater schedules celebs -- in town + 1978 + 47 + + + + + Trip related information from newspapers + 1978 + 47 + + + + + TV filming -- Council et al. + 1978 + 47 + + + + + U.S. Senate clips + 1978 + 47 + + + + + + Questionnaires -- copies + 1978 + 47 + + + + + Senate + 1978 + 47 + + + + + Senate -- budget + 1978 + 47 + + + + + Slides + 3 slide boxes + April-May 1978 + 1027 + + +

    (Barbara, family, Detroit, and campaigning)

    +
    +
    + + + Speeches + 1978-1978 + + + + 1978 + 47 + + + + + Notes + 1978 + 47 + + + + + Position papers on energy and inflation and speeches + 1978 + 47 + + + + + + U.S. Senate issues + 1977 + 47 + + + + + U.S.S. + 1977 + 47 + + + + + Coleman Young -- PLO + 1978 + 47 + + + + + Audiovisual materials + + + + 1 - News Conf. Hamtramck, tax cut bills pending in Cong. + 1 audiocassettes + 1978 October 06 + 1104 + + + + + 1) welfare; 2) employment; 3) total + 1 videotape + undated + 1098 + + + + + 10 - Levin Campaign Spots -- 1978 + 1 videocassettes (U-matic) + undated + 1062 + + + + + 11 - Levin - 1978 campaign ads + 1 videocassettes (U-matic) + 1978 December 08 + 1059 + + + + + 12 - Griffin's news conf. -- inviting Carter in, meet at + airport + 1 audiocassettes + 1978 October 23 + 1104 + + + + + 13 - Carl w/Vice President Mondale. EMU rally + 1 audiocassettes + 1978 October 20 + 1104 + + + + + 133 - Campaign - '78 spots 3/4" + 1 videocassettes (U-matic) + undated + 1095 + + + + + 14 - V.P Mondale trip, airport, Raliegh House + 1 audiocassettes + 1978 October 19 + 1104 + + + + + 15 - WCHB Interview w/Carl + 1 audiocassettes + 1978 October 19 + 1104 + + + + + 17 - News Conf,. Carl w/defending campaign spots-Griffin + record + 1 audiocassettes + 1978 October 12 + 1104 + + + + + 2 - Detroit Economic Club news conf. Carl/Griffin + 1 audiocassettes + 1978 September 30 + 1104 + + + + + 21 - Griffin - 1st paid TV half-hour Metro Detroit + 1 audiocassettes + undated + 1104 + + + + + 22 - Carl w/Vice President Mondale Henry Ford Comm. Coll. + 1 audiocassettes + 1978 November 06 + 1104 + + + + + 25 - Detroit Free Press Editorial Board debate Carl/Griffin + 1 audiocassettes + 1978 October + 1104 + + + + + 3 - News. Conf. Carl/urging Carter to call for Camp David Summitt on + Inflation + 1 audiocassettes + 1978 September 27 + 1104 + + + + + 4 1/2 Levin: Spots 1,2,6,7,8 + 1 videotape + undated + 1104 + + + + + 5 - Carl addressing Mich. Municipal League + 1 audiocassettes + 1978 September 16 + 1104 + + + + + 6 - Mich. Broadcasters Debate; Carl-Griffin in Gaylord + 1 audiocassettes + 1978 September 15 + 1104 + + + + + 7 - Davison, MI rally + 1 audiocassettes + 1978 September 14 + 1104 + + + + + 8 - News Conf., Carl w/natural gas + 1 audiocassettes + 1978 September 12 + 1104 + + + + + 9 - Carl's Marquette speech + 1 audiocassettes + 1978 September + 1104 + + + + + Carl Levin for Senate Commercials 3:60's Nos. 4, 5, & 6 + 1 audiotape (7.5 ips; 5 in.) + 1978 September 28 + (handwriting: 9/29/78) + 1104 + + + + + Carl Levin. Recorded at Concept. Farm Spot/[illegible] (test on + head) + 1 audiotape (5 in.) + 1978 June 13 + 1103 + + + + + Carl Levin: Levin for Senate Commercial 1:30 Spot + 1 audiotape (7.5 ips; 5 in.) + 1978 November 02 + 1104 + + + + + Carl Levin: Levin for Senate Commercial 2:60s Nos. 7 & 8. Start + 10/31 + 1 audiotape (5 in.) + 1978 October 26 + (handwriting: 10-30-78) + 1104 + + + + + Carl Levin: Levin for Senate. (B) + 1 audiotape (7.5 ips; 5 in.) + 1978 September 29 + 1104 + + + + + Carl w/Sen. Paul Sarbanes Armenian/Greek f-raiser. St. Johns Armenian + Church + 1 audiocassettes + 1978 October 25 + 1104 + + + + + Detroit News Endorsement Interview + 1 audiocassettes + 1978 October 24 + 1104 + + + + + From WILX-TV/WJC)-AM To: Northland Towers West, ATTN: Toby Berkowitz Carl + Levin's Office.: Levin For Senate (Political) c/1 CLFS - #2 (Record); c/2CLFS - #3 + (Tzx cutter) 1294-1297. 2 cuts @30 + 1 videotape (2 in.) + 1978 September 15 + 1091 + + + + + Griffin spots + 1 audiotape (5 in.) + 1978 October 09 + 1104 + + + + + Levin (PoL) For Senate VTR #29. 313. :30. Att: John Kundiff WILX-TV 100 + N. Pennsylvania Lansing, Mich. 48912 + 1 videotape (:30) + 1978 October 30 + 1098 + + + + + Levin (PoL) For Senate: c/1 - #7 - Senior Contrast; c/2 - #9'-11' - + Bureaucracy. 140-141. 2 cuts @ :30. WILX-TV 100 N. Pennsylvania Lansing, Michigan + 48912 Att: John Kundiff + 1 videotape (2 cuts @ :30) + 1978 October 03 + 1104 + + + + + Levin (Political) For Senator CLPO - 1030. 1230. :30. Att: John Cundiff + WILX-TV 100 N. Pennsylvania Lansing, Mich. 48912 + 1 videotape + 1978 September 14 + 1104 + + + + + Levin Campaign 1x:30 For Levin. Shoot Astu(?) WP 9479. VTR. NO: 4-323. + Reel No. 1. Producers color service, inc. + 1 videotape (0:33:00, 2 in.) + 1978 September 12 + 1080 + + + + + Levin For Senate Campaign: Levin Contrasts. Spot 20. Bin #765 :30. + WILX-TV/WJCO-AM P.O. Box 30380 Lansing, Michigan 48909. To: Northland Towers West + 15565 Northland Drive Southfield, MI. 48075. Attn: Toby Berkowitz Carl + Levin's + 1 videotape + 1978 October 13 + 1102 + + + + + Levin For Senate Committee: Levin Spots: Cut 1 (:55); cut 2 (:53); cut 3 + (:60). cue for Carl(?) cuts: "...for senate committee." + 1 audiotape (7.5 ips; 5 in.) + 1978 September 06 + 1104 + + + + + Levin for Senate ID#21 General #1. ID#22 Gen #2[illegible]2 ID#23 Gen. + #3. ID#24 Welfare HBC DUB + 1 videotape (4x :30, 2 in.) + 1978 October 10 + 1091 + + + + + Levin for Senate, Levin Spots #28 Editorials. MASTER + 1 videotape (:30) + 1978 November 02 + 1102 + + + + + Levin For Senate. CLPO Levin Spots #28 Editorials #1212. WILX-TV 100 N. + Pennsylvania Lansing, Mich. 48912. Att: John Kundiff + 1 videotape (:30) + 1978 November 02 + 1102 + + + + + Levin spots -- Nicholas Hood/Geo. Cshberry & Paul + Rosenbaum + 1 audiotape (7.5 ips; 5 in.) + 1978 July 28 + 1104 + + + + + Levin spots. Carl Levin: Carl Levin Campaign 4 cuts + 1 audiotape (7.5 ips; 5 in.) + 1978 July 27 + 1104 + + + + + Levin spots. Carl Levin: Levin for Senate (A) + 1 audiotape (5 in.) + 1978 September 01 + 1104 + + + + + Levin spots: Levin for Senate Commercials + 1 audiotape (5 in.) + 1978 October 26 + 1104 + + + + + Levin Track! Northwest Orient Airlines 012-DCA-4661-6404 + Detroit + 1 audiotape (5 in.) + 1978 September 20 + 1104 + + + + + Master. Levin For Senate Campaign; Levin Contrasts Spot #20 + 1 videotape (1x:30, 2 in.) + 1978 October 18 + 1091 + + + + + News Conf., Flint Carl w/Riegle + 1 audiocassettes + 1978 November 03 + 1104 + + + + + News Conf., pre-inaugural, Detroit + 1 audiocassettes + 1979 January 12 + 1104 + + + + + Press. Carter w/Carl at Flint's IMA auditorium + 1 audiocassettes + 1978 October + 1104 + + + + + Sen. Edward Kennedy spot for Carl + 1 audiotape (7.5 ips; 7 in.) + 1978 + 1103 + + + + + Tape 2 Sen. Kennedy Commercial + 1 audiotape (7.5 ips; 7 in.) + 1978 August - September + 1103 + + + + + title crossed out: Carl Levin. Paul Rosenbaum. 1 :60 + 1 audiocassettes + 1978 October 27 + 1104 + + + + + WILX-TV Att:John Kundiff - Levin for Senate Spot #2. 144 + 1 videotape (:30, 2 in.) + 1978 October 05 + October 02 + 1091 + + + + + WXYZ inc.Levin for Senate Committee. 4/Levin Primary spots + 1 videotape (2 in.) + 1978 + 1091 + + + + + WXYZ-TV Debate Levin/Griffin + 1 audiotape (7 in.) + 1978 + 1092 + + + + + J.W.T. Ford Dealer Awards FPPH + 1 videotape (:30, 2 in.) + 1978 September 30 + 1108 + + + + + Expo '77 Family + 1 videotape (:30, 2 in.) + 1977 June 01 + 1107 + + + + + Dell Books + 1 videotape (:30, 2 in.) + 1978 October 04 + 1107 + + + + + Congressman Bill Scuette Press Conference announcing run for U.S. Senate + in 1990, Lansing + 1 videocassettes (U-Matic) + 1989 September 18 + 1107 + + + + + 122--Levin Library--'78 Campaign spots, clips and debates + 1 videocassettes (VHS) + 1978 October + 1978 December + 1979 January 14 + 1979 January 15 + 1107 + + + + + Election Night Coverage Channel 4 (NBC) + 1 videocassettes (VHS; 0:45:00) + 1978 November 07 + 1107 + + + + + Levin/Griffin Debate, Channel 7 (ABC) and Channel 4 (NBC) + 1 videocassettes (VHS; 0:01:30) + 1978 October 28 + 1978 November + 04 + 1107 + + + +
    + + + 1984 + + + + Key accomplishments + undated + 47 + + + + + Briefing book + undated + 48 + + + + + Briefing material + + + + Barbara Levin's copy + 2 folders + 48 + + + + + Final copy + 2 folders + 48 + + + + + + Budget + December 1984 + 48 + + + + + Calls + undated + 48 + + + + + Campaign, (Notes and letters) + October 1983-June 1984 + 48 + + + + + Campaign planning + 1984 + 48 + + + + + City contacts list + 48 + + + + + Community solicitation letters + 48 + + + + + Debates-letters and articles + 3 folders + 48 + + + + + Debates-Levin notes + 1984-1984 + + + + 1984-Booth + 48 + + + + + 1984-Grand Rapids TV + 48 + + + + + Economics Club + September 17, + 1984 + 48 + + + + + Detroit News + October 9, 1984 + 48 + + + + + November 1, + 1984 + 48 + + + + + + Democratic Convention-San Francisco + 48 + + + + + Election aftermath + November 1984-February 1985 + 48 + + + + + Endorsements + 49 + + + + + Friends of Senator Carl Levin + 1983-1984 + + + + 1983-1984 + 49 + + + + + Reports of receipts and disbursements + July-September 1984 + 49 + + + + + + General + 49 + + + + + Genesee County + October 26, 1984 + 49 + + + + + Information campaign + undated + 49 + + + + + Issue areas + 1983-1985 + + + + Budget + 49 + + + + + Defense + August-October 1984 + 49 + + + + + Deficits + undated + 49 + + + + + Economy + 49 + + + + + Foreign Policy + 49 + + + + + Jewish + 1983-1985 + 49 + + + + + Michigan + 49 + + + + + Michigan interests + 1984 + 49 + + + + + Superfund + 1984 + 49 + + + + + Taxes + 1984 + 49 + + + + + Taxes and Labor + 49 + + + + + + Lansing trip notes + October 10, 1984 + 50 + + + + + Last week fun + October 1984 + 50 + + + + + Levin subject files and notes + 6 subfolders + undated + 50 + + +

    (Six subfolders: Budget-government, Toyota NTU, part prices -- DOD, some justified, + miscellaneous, newspaper endorsements)

    +
    +
    + + + Lousma + 1984-1984 + + + + Flip-flops + 1984 + 50 + + + + + Japan + 1984 + 50 + + + + + Memos and news articles + 1984 + 50 + + + + + Republican candidate-Lousma + 50 + + + + + + Memos and notes + 50 + + + + + Memos and news articles + 50 + + + + + Miscellaneous + undated + 50 + + + + + Owosso Argus press + undated + 50 + + + + + Poll results + 50 + + + + + President + undated + 50 + + + + + Primary-editorials + 53 + + + + + Press + 1983-1984 + + + + Campaign documents + 3 folders + 50 + + + + + Campaign news articles + 3 folders + 50 + + + + + Miscellaneous + 50 + + + + + News articles-campaign + + + + 1983 + 50 + + + + + 2 folders + 1984 + 51 + + + + + 2 folders + January 1984 + 51 + + + + + 4 folders + January-August 1984 + 51 + + + + + 2 folders + February 1984 + 51 + + + + + 2 folders + March 1984 + 51 + + + + + 2 folders + April 1984 + 51 + + + + + 2 folders + May 1984 + 51 + + + + + 2 folders + June 1984 + 52 + + + + + 3 folders + July 1984 + 52 + + + + + 5 folders + August 1984 + 52 + + + + + August-September + 1984 + 52 + + + + + September 1984 + 52 + + + + + September 1-15 + 52 + + + + + October 1-7, 1984 + 52 + + + + + October 5-15 + 52 + + + + + October 16-22 + 52 + + + + + October 23-29, 1984 + 53 + + + + + October 30-31, 1984 + 53 + + + + + 7 folders + November 1984 + 53 + + + + + November 1, + 1984 + 53 + + +

    (election)

    +
    +
    + + + November 7, + 1984 + 53 + + +

    (election)

    +
    +
    + + + November 8 + 53 + + + + + Endorsements + 1984 + 53 + + + + + Endorsements + October-November 1984 + 53 + + + + + Lousma + 53 + + + + + Lousma's sixty-two tax votes + October 1984 + 53 + + + + + Toyota + 1983-1984 + 53 + + +
    + + + News articles and polls + November 1984 + 53 + + + + + Radio transcripts and news clips + 2 folders + August-October 1984 + 53 + + + + + Statewide tour + October 30, + 1984 + 53 + + +
    + + + Schedule-election night + 53 + + + + + Speeches + 2 folders + 1984 + 1029 + + + + + Key speeches + undated + 53 + + + + + Support + 1984-1984 + + + + Contributions + August-October 1984 + 53 + + + + + Contributors and volunteers + 1984 + 53 + + + + + List by county + 1984 + 53 + + + + + + Toyota + undated + 53 + + + + + Audiovisual materials + + + + "Endorsement" - R922 Levin for Senate. Group II Audio + 1 audiocassettes + 1984 + 1072 + + + + + "Levin Vulnerable" says Nat. Review Exec. Editor John MacLaughlin, + NPR/ATC + 1 audiocassettes + 1984 May + 1092 + + + + + 1) SHR, BNER NY Times Gary Hart; 2)MART1 To [illegible] NY Times, Hart - + MI (?) - Lousma - Dunn - [illegible] + 1 audiocassettes + undated + 1058 + + + + + 104 -- Levin -- Bean Soup -- Reception for Winning Michigan + Recipe + 1 videocassettes (U-matic; 0:05:00) + 1984 June 21 + 1079 + + + + + 106 -- Dem. Convention '84 3:00-Pre-speech news conf. package no-first + use (7-16-84); 3:00-Detroit Tiger baseball cap package (7-19-84) + 1 videocassettes (U-matic) + 1984 July 16 + 1984 July 19 + 1076 + + + + + 107 -- Dem. Convention '84 Master Detroit Tiger baseball cap MI + delegation meeting + 1 videocassettes (U-matic) + 1984 July 19 + 1076 + + + + + 109 -- Campaign'84 -- Primary Nite and Plant Gate + 1 videocassettes (U-matic; 4:48) + 1984 August 7/1984 August + 08 + 1059 + + + + + 110 -- Campaign'84 -- MI Freedom Academy Speech, Alpena + 1 videocassettes (U-matic; 9:09) + 1984 August 17 + 1059 + + + + + 113 -- Campaign'84 -- Gaylord Broadcaster's Debate Master 2 of + 2 + 1 videocassettes (U-matic) + 1984 August 24 + 1059 + + + + + 115--Campaign'84--MI Chamber/Commerce - Speech "how Do You Stand, Jack". + Lansing + 1 videocassettes (U-matic; 0:17:35) + 1984 October 03 + 1058 + + + + + 120 Campaign. PBS - Off the Record Lousma/Dunn Debate :30 8-3-84; + WXYZ-TV7 Spotlight on the News/ Lousma:30 8-12-84 + 1 videocassettes (U-matic) + 1984 August 03 + 1984 August 12 + 1106 + + + + + 121 Campaign. Campaign News Spots: PBS Analysis Det Week Review & Off + the Record 8-12 Detroit and Saginaw Primary Coverage Some Satellite + 8-7/8 + 1 videocassettes (U-matic) + August 12 + August 07-08 + 1106 + + + + + 124 -- Levin Library -- Jan - June '84, video record, announcement swing + and satellite stories + 1 videocassettes (VHS) + 1984: 1984 + January + 1984 January 26 + 1984 January 26 + 1984 January 27 + 1984 February 02 + 1984 March + 1984 March + 1984 March 1984 + May + 1984 May 07 + 1984 May 07 + 1984 May 25 + 1984 May 25 + 1984 June 13 + 1984 June + 1065 + + + + + 125 -- Levin Library -- July - Aug'84 primary, GOP debates thru primary + night + 1 videocassettes (VHS) + 1984 August: 1984 July + 29 + 1984 August 03 + 1984 August 12 + 1984 August 12 + 1984 August 12 + 1984 August 07 + 1984 August 08 + 1984 August 08 + 1984 August 08 + August 07 1984 + 1984 August 08 + 1065 + + + + + 126 -- Levin Library -- '84 campaign, spots, clips thru election night + and debates + 1 videocassettes (VHS) + 1984: 1984 August + 20 + 1984 September 06 + 1984 October + 1984 October 03 + 1984 October + 1984 October 29 + 1984 October 29 + 1984 Ocotber 29 + 1984 October 30 + 1984 October 30 + 1984 October 30 + 1984 November 01 + 1984 November 02 + 1984 November 05 + 1984 November 06 + 1984 November 07 + 1984 November 03 + 1984 November 04 + 1984 November 01 + 1984 October 12 + 1065 + + + + + 127 -- Levin Library -- '84 campaign, "Toyota" spot clips + 1 videocassettes (VHS) + 1984 October 29 + 1984 November 02 + 1984 November 05 + 1984 November 06 + 1984 November 06 + 1984 November 07 + 1984 November 04 + 1065 + + + + + 130 - Campaign '84-TV spots, J. Buckley & Associates. 3/4". + Democratic Media Center - Carl Levin for Senate + 1 videocassettes (U-matic) + 1984 September 04 + 1984 September 05 + 1984 September 06 + 1984 September 11 + 1984 October 10 + 1984 October 10 + 1984 October 18 + 1984 October 11 + 1984 October 25 + 1984 November 01 + 1086 + + + + + 132-Campaign'84-primary spots, Connell + 1 videocassettes (U-matic) + 1984 + 1058 + + + + + 135 - Campaign'84 - Lousma in Japan (1) + 1 videocassettes (U-matic) + undated + 1073 + + + + + 1984 Levin-Lousma Debates 1-PBS-If I'm Elected: 40; 2-WXYZ-TV7 + Spotlight:60; 3-WZZM-TV13 GrandRapids:30 + 1 videocassettes (VHS) + 1984 November 03 + 1984 November 04 + 1984 October 12 + 1065 + + + + + 3 Levin Debates + 1 videocassettes (VHS) + 1984 + 1059 + + + + + 3 Lousma Canned Spots--Not Used As of 7-6-84 + 1 audiocassettes + 1984 July 06 + 1103 + + + + + 320 - Cam'84 -- Election Night + 1 audiocassettes + 1984 November 06 + 1094 + + + + + 321 - Cam'84 -- Post Election Victory News Conference + 1 audiocassettes + 1984 November 07 + 1094 + + + + + 88 - Dunn spot, 1-84; WZZM - G.R. Levin - SSD & Lousma annc, 1-26-84; + WZZM G.R. political analysis of senate race; WLUC Marquette SSD-Levin; WDIV + Detroit, grandparents visitation rights 2-2-84; NBC CL-Weinber: ABC-20/20 Levin + and B-1 Bomber + 1 videocassettes (U-matic) + 1984 February 16 + 1984 January + 1984 January 26 + 1984 January 26 + 1984 January 27 + 1984 February 02 + 1984 February 01 + 1984 January + 1059 + + + + + 94 -- 1 - WXYZ-TV 7 Detroit - Levin Profile (Includes Satellite Video) + March '84; -Dunn & Lousma Profiles; -Insta-poll; 2 - WDIV-TV4 Detroit - + Children [illegible] Tigers' Toast Levin Speech March '84; 3 - WXYZ-TV7 Detroit + Spotlight on the News March '84 + 1 videocassettes (U-matic) + 1984 March + 1984 May + 1984 May 07 + May 07 + 1062 + + + + + 98 -- Campaign '84 -- Levin family shoot at home + 1 videocassettes (U-matic) + 1984 + 1062 + + + + + ABC News AFTD15445A Levin Commercial Lousma - Levin Levin + Campaign + 1 videocassettes (U-matic) + undated + 1065 + + + + + ABC News AFTD1544SB Levin Defense Commercial TV AD Levin + Campaign + 1 videocassettes (U-matic) + undated + 1065 + + + + + Basic Image Express 15565 Northland Drive - Southfield, MI 48075 To: + Senator Carl Levin 459 Russel Senate Office Bldg First & "C" Streets, N.E. + Washington, D.C. 20510 Attn: Phil Shandler 202-224-2472. Pre-Convention + Package + 1 videocassettes (U-matic; 4:58) + 1984 July 13 + 1059 + + + + + Cam'84 Health Care Speech Mt. Carmel Hospital + 1 audiocassettes + 1984 August 13 + 1103 + + + + + Cam'84--:60 Lousma Spot/Contrast + 1 audiocassettes + 1984 + 1103 + + + + + Cam'84--Booth Debate 1 of 2 + 1 audiocassettes + 1984 October 23 + 1092 + + + + + Cam'84--Booth Debate 2 of 2 + 1 audiocassettes + 1984 October 23 + 1092 + + + + + Cam'84--Carl on WWJ + 1 audiocassettes + 1984 July 02 + 1103 + + + + + Cam'84--Eco Club Detroit Debate News Conf + 1 audiocassettes + 1984 September 17 + 1103 + + + + + Cam'84--ECO Club Detroit Debate; Charlie Manos News Conf. + 1 audiocassettes + 17-Sep + 1103 + + + + + Cam'84--Levin before Det Press Club + 1 audiocassettes + 1984 August 22 + 1103 + + + + + Cam'84--Levin before Grand Blanc Chamber. Toxics, Lousma, Etc + 1 audiocassettes + 1984 October 20 + 1092 + + + + + Cam'84--Levin on WXYT Detroit + 1 audiocassettes + 1984 October 10 + 1092 + + + + + Cam'84--Levin Primary Night + 1 audiocassettes + 1984 August 07 + 1103 + + + + + Cam'84--Levin/Lousma at Gaylord Broadcasters Conv. + 1 audiocassettes + 1984 August + 1103 + + + + + Cam'84--Lousma on JP McCarthy's Focus WJR-Detroit + 1 audiocassettes + 1984 June 20 + 1103 + + + + + Cam-'84--Lousma on WXYT-Detroit + 1 audiocassettes + 1984 October 10 + 1092 + + + + + Cam'84--Lousma Stumping + 1 audiocassettes + 1984 August 01 + 1103 + + + + + Cam'84--Lousma Tax Spot + 1 audiocassettes + 1984 + 1103 + + + + + Cam'84--MI Municipal League Dearborn + 1 audiocassettes + 1984 September 15 + 1103 + + + + + Cam'84--Off The Record (PBS) w/Secchia + 1 audiocassettes + 1984 September 21 + 1103 + + + + + Cam'84--Redford Chamber-Levin + 1 audiocassettes + 1984 October 24 + 1092 + + + + + Cam'84--Speech before MI Assoc Homebuilders + 1 audiocassettes + 1984 July 28 + 1103 + + + + + Cam'84--Spotlight on the news Debate WXYZ-TV7 Detroit + 1 audiocassettes + 1984 November 01 + 1092 + + + + + Cam'84--Statewide Swing--Marquette, T.C., G.R., Lans, Sag, + (Toyota) + 1 audiocassettes + 1984 October 30 + 1058 + + + + + Cam'84--WZZM-TV13 Debate + 1 audiocassettes + 1984 October 12 + 1092 + + + + + Campaign '84 -- Dem State Conv Speech Detroit Master 2 of 2 + 1 videocassettes (U-matic) + 1984 August 25 + 1086 + + + + + Carl Levin Stone & August 1x30 *Messy Desk* PCS 78374C + 1 videocassettes (U-matic; 0:30:00) + 1984 September 17 + 1073 + + + + + Carl Levin Stone & August 1x30 *Taxes* PCS 78374C + 1 videocassettes (U-matic; 0:30:00) + 1984 September 17 + 1073 + + + + + Carl Levin Stone & August: "Toyota 2". PCS 79444X Producers color + service, inc. Video Communications Division + 1 videocassettes (U-matic; 1x :30) + 1984 October 24 + 1065 + + + + + Carl Levin Stone & August: CLB-1 "Taxes", CLB-2 "Social Security"(?) + Disability M-19900. Producers color service, inc. Video Communications + Division + 1 videocassettes (VHS; 2x :30) + 1984 September 07 + 1065 + + + + + Democratic Convention--S.F. a - News conference; b - Conv wrap + w/WWJ + 1 audiocassettes + 1984 July 16 + 1984 July 19 + 1092 + + + + + Democratic Media Center Levin: 4-30; Levin: 5-30; Levin: 6-30; Levin: + 7-30 Concept Associates, inc + 1 videotape (1 in.) + 1984 July 13 + 1065 + + + + + Democratic Media Center. Carl Levin For Senate. 1984 Campaign + Spots + 1 videocassettes (U-matic) + 1984: 1984 September + 04 + 1984 September 05 + 1984 September 06 + 1984 September 11 + 1984 October 10 + 1984 October 10 + 1984 October 18 + 1984 October 11 + 1984 October 25 + 1984 November 01 + 1073 + + + + + Detroit News Conference + 1 audiocassettes + 1984 July 10 + 1092 + + + + + Gaylord broadcaster's debate Master 1 of 2 + 1 videocassettes + 1984 August 24 + 1106 + + + + + Levin -- Primary Night -- Record vs. Lousma's non-record + 1 videocassettes (U-matic) + 1984 August 07 / 1984 April + 30 + 1073 + + + + + Levin '84 (DUB) #19 Outside Capitol Grounds + 1 videocassettes (U-matic) + undated + 1055 + + + + + Levin For Senate: Social Security + 1 videocassettes (U-matic; :30) + 1984 October 09 + 1065 + + + + + Levin Interviews Ch. 4 And J.P.McCarthy + 1 audiocassettes + 1984 July 02 + 1103 + + + + + Levin Outside Capitol Grounds + 1 videocassettes (U-matic) + 1984 + 1072 + + + + + Levin Radio Testimonials + 1 audiocassettes + 1984 + 1072 + + + + + Levin Stone & August 1x:30 "Lousma Trivia" 79160X + 1 videocassettes (U-matic; 0:00:30/0:00:60) + 1984 October 15 + 1073 + + + + + Levin Stone & August 1x:60 ":60 Lousma" PCS 79118X + 1 videocassettes (U-matic) + 1984 October 12 + 1073 + + + + + Levin Stone & August Levin: 4-30; Levin: 5-30; Levin: 6-30; Levin: + 7-30 77239-X + 1 videocassettes (U-matic) + 1984 July 18 + 1065 + + + + + Levin W. Levin - Primary - Voting - New Conf - MASTER + 1 videocassettes (U-matic) + 1984 August 07 + 1073 + + + + + Levin.136-Campaign'84-Lousma in Japan (2) + 1 videocassettes (U-matic) + undated + 1058 + + + + + Levin.137-Campaign'84-Lousma in Japan No.1; No.2. + 1 audiocassettes + undated + 1058 + + + + + Levin.137-Campaign'84-Lousma in Japan No.3; No. 4 + 1 audiocassettes + undated + 1058 + + + + + Lousma Baseball Spot + 1 audiocassettes + 1984 October 04 + 1103 + + + + + Lousma/Carter-Reagan Levin spot + 1 audiocassettes + 1984 September 26 + 1103 + + + + + Man on Street "Man On Street" (:30); "Barbara Levin" (:30) Levin, J. + Buckley CVC #2316 + 1 videocassettes (U-matic) + 1984 October 11 + 1073 + + + + + Rep Party Anti-Levin Tax Spots + 1 audiocassettes + April '84 + 1095 + + + + + Republican Anti-Blanchard, Levin spot + 1 audiocassettes + 1984 spring. + 1103 + + + +
    + + + 1990 + + + + 1990 elections and Iraqi invasion of Kuwait + 2 folders + July-August 1990 + 53 + + + + + Accomplishments + 1989-1994 + + + + 1989-1994 + 54 + + + + + Levin record + 2 folders + 54 + + + + + + Administrative and Office Files + 1980-1990 + + + + Campaign office lease + 1990 + 54 + + + + + Constituent letters abstract reports + 1980-1990 + 54 + + + + + Index of Elise boxes + 54 + + + + + + Biography and disclosures + 1957-1990 + + + + Awards + 1983-1990 + 54 + + + + + Biography + 1984-1990 + 54 + + + + + City Council years + 1970-1977 + 54 + + + + + Defender's Office in Detroit + 1968-1990 + 54 + + + + + Miscellaneous + 1990 + 54 + + + + + Saul R. Levin Foundation + + + + 1988 + 1972 + 54 + + + + + Recorder's Court study + 1957-1972 + 54 + + + + + + + Call lists for fundraising + October 1990 + 54 + + + + + Campaign binder + 1990 + 54 + + + + + Campaign documents + August-October 1990 + 54 + + + + + Campaign literature and mailings + 2 folders + 1990 + 54 + + + + + Campaign materials + 55 + + + + + Campaign material + 2 folders + 1990 + 54 + + + + + Campaign message + 2 folders + 1990 + 54 + + + + + Campaign resources and Election Day preparation + 55 + + + + + Campaign schedule and additional documents + 1990-1990 + + + + October 28-November 1 + 1990 + 55 + + + + + 3 folders + November 2-6, 1990 + 55 + + + + + + Campaign training binder + 2 folders + 1990 + 55 + + + + + Casework stories + 1979-1989 + 55 + + +

    (Includes memos on state-wide community development successes; K. Smythe)

    +
    +
    + + + Constituency plan binder + 1990 + 55 + + + + + Coordinated Campaign and DSCC + 1990 + 55 + + + + + County profiles, (K. Smythe) + 1990 + + + + A-Ch + 55 + + + + + Ch-H + 55 + + + + + I-L + 55 + + + + + M-N + 55 + + + + + O-Z + 56 + + + + + + Data and analysis-Michigan Focus Groups + June 28-29, 1989 + 56 + + +

    (Mellman & Lazarus)

    +
    +
    + + + Election and miscellaneous + July-August 1990 + 56 + + + + + Three election packets + 1990 + 56 + + + + + Finances + 1990-1990 + + + + Campaign + 1990 + 56 + + + + + Democratic Senatorial Campaign Committee (DSCC) -- expenditures Levin + campaign + 1990 + 56 + + + + + + Friends and supporters binder + 2 folders + May 25, 1990 + 56 + + + + + Friends of Senator Carl Levin + 1990-1990 + + + + 1990 + 56 + + + + + + Get Out the Vote training binder + 56 + + + + + Issue areas + 1970-1996 + + + + Accomplishments + 2 folders + 1979-1990 + 56 + + + + + Attack responses Q&A draft book + 1990 + 56 + + + + + Levin's record-summaries + 1990 + 56 + + + + + Issue areas list and computer codes + 56 + + + + + Issue papers for constituents + 1990 + 56 + + + + + Agriculture + 2 folders + 1979-1990 + 56 + + + + + Americanisms + + + + Ethnic groups + 1990 + 56 + + + + + Family values + 1979-1990 + 56 + + + + + Flags + 1989-1990 + 56 + + + + + Levin's record + 1990 + 56 + + + + + Miscellaneous + 1987-1990 + 56 + + + + + Patriotic statements and events + 1980-1990 + 56 + + + + + Patriotism and volunteerism + 1986-1990 + 56 + + + + + + Animals + + + + Protection + 1981-1990 + 56 + + + + + Seals + 1980-1990 + 56 + + + + + + Arts and humanities + 1979-1990 + 57 + + + + + Athletics + 1980-1990 + 57 + + + + + Auto Industry + + + + General + 1979-1990 + 57 + + + + + Trade + 2 folders + 1980-1990 + 57 + + + + + + Business + + + + Abstracts + 1979-1987 + 57 + + + + + Congressional publications + 1981-1989 + 57 + + + + + Correspondence + 1983-1990 + 57 + + + + + Levin's record + 1983 + 1989-1990 + 57 + + + + + Mass mailings + 1989-1990 + 57 + + + + + Memos + 1990 + 57 + + + + + News articles + 1983-1990 + 57 + + + + + Press release + 1980-1989 + 57 + + + + + Statements + 1982-1989 + 57 + + + + + + Census + 1989 + 57 + + + + + Communications + 1979-1990 + 57 + + + + + Constitutional and Civil Rights + + + + Abortion + 2 folders + 1979 + 57 + + + + + Affirmative action and minority rights + 1979-1990 + 57 + + + + + Busing + 1989-1990 + 1981-1982 + 57 + + + + + Gay and AIDS + 1986-1990 + 57 + + + + + Handicapped and disabled + 1990 + 57 + + + + + Privacy + 1979-1990 + 57 + + + + + School prayer + 1979-1990 + 57 + + + + + + Consumers + 1979-1990 + 57 + + + + + Defense + + + + Arms control + 1979-1989 + 57 + + + + + Authorization bills-Department of Defense (DOD) + 1981-1990 + 57 + + + + + Burden sharing + 1982-1990 + 57 + + + + + Conventional arms and readiness + 1981-1988 + 57 + + + + + ELF and blue green laser + 1981-1984 + 57 + + + + + FSX + 1987-1989 + 57 + + + + + Issue analysis + 1984 + 1989-1990 + 57 + + + + + Legislation and regulations + 1980-1988 + 57 + + + + + Michigan + 1980-1990 + 57 + + + + + Michigan tanks + 1990 + 1983-1984 + 57 + + + + + Miscellaneous + 1979-1990 + 58 + + + + + MX and midgetman + 1981-1990 + 58 + + + + + NATO + 1983 + 1990 + 1988 + 58 + + + + + Spending + 1982-1990 + 58 + + + + + Statements + 1979-1990 + 58 + + + + + Strategic Defense Initiative + 1986-1990 + 58 + + + + + Waste, fraud, and abuse + 1982-1990 + 58 + + + + + + District of Columbia + 1979-1990 + 58 + + + + + Drugs + + + + Boot camps + 1990 + 58 + + + + + Issue analysis + 1989-1990 + 58 + + + + + Legislative record + 2 folders + 1979-1990 + 58 + + + + + Miscellaneous + 1988-1990 + 58 + + + + + Miscellaneous + 1989-1990 + 58 + + + + + National Guard + 1989-1990 + 58 + + + + + Schoolyard drug law + 1982-1990 + 58 + + + + + Significant actions + 1979-1990 + 58 + + + + + Statements + 1979-1990 + 58 + + + + + Votes + 1982-1990 + 58 + + + + + + Economy + 1982 + 58 + + + + + Education + + + + Bilingual education + 1982-1990 + 58 + + + + + Drug education + 1983 + 1989-1990 + 58 + + + + + Excellence in education + 1990 + 58 + + + + + Financial aid + 1982-1990 + 58 + + + + + Issue analysis + 1979-1990 + 58 + + + + + Legislation + 1979-1990 + 58 + + + + + Miscellaneous + 1989-1990 + 58 + + + + + Retired and Senior Volunteer Program tutoring + 1984-1990 + 58 + + + + + Statements + 1979-1990 + 58 + + + + + Vocational education + 1982-1990 + 58 + + + + + Votes + 1979-1990 + 58 + + + + + + Energy and Utilities + + + + Issue analysis + 1978-1990 + 58 + + + + + Home heating oil + 1981 + 1990 + 58 + + + + + Miscellaneous + 1979-1990 + 58 + + + + + Nuclear energy + 1979-1990 + 58 + + + + + + Environment + 1996 + 59 + + + + + Levin's Record on Environment + 1978-1989 + 59 + + + + + Environment I + + + + League of Conservation Voters (LCV) ratings + 59 + + + + + Votes + 59 + + + + + Great Lakes + 59 + + + + + Clean Air + 59 + + + + + Superfund + 59 + + + + + Small Business Administration (SBA) pollution control + 59 + + + + + + Environment II + 4 subfolders + 59 + + +

    (Includes general, news articles, and press releases, memoranda, correspondence, + abstracts and write-ups)

    +
    +
    + + + Ethics + 7 subfolders + 59 + + +

    (Includes analysis, legislation, cases, independent counsel law, miscellaneous, + votes, Riegle and Keating 5 and savings and loan associations)

    +
    +
    + + + Financial Matters I + 2 subfolders + 59 + + +

    (Includes savings and loans and general)

    +
    +
    + + + Fiscal Matters II + 5 subfolders + 59 + + +

    (Includes analysis, budget comments, legislative efforts, various budget and + fiscal issues, and pentagon fiscal matters)

    +
    +
    + + + Fiscal Matters + 60 + + + + + Foreign Policy + + + + Abstracts + 1989 + 60 + + + + + Aid + 1989 + 60 + + + + + Central America + 1989 + 60 + + + + + Eastern Europe + 1989 + 60 + + + + + Human Rights + 1989 + 60 + + + + + Mailings + 1989 + 60 + + + + + Middle East + 1989 + 60 + + + + + Miscellaneous + 1989 + 60 + + + + + Miscellaneous countries + 2 folders + 1989 + 60 + + + + + Nicaragua and Contras + 1989 + 60 + + + + + Panama and Noriega + 1989 + 60 + + + + + Press releases + 1989 + 60 + + + + + Senate voting records + 1989 + 60 + + + + + South Africa record + 1989 + 60 + + + + + Soviet Union + 1989 + 60 + + + + + + Health + + + + Abstracts and write-ups + 1982-1990 + 60 + + + + + Correspondence and newsletters + 1980-1990 + 60 + + + + + Miscellaneous + 1983 + 1988-1990 + 60 + + + + + News articles and press releases + 1984-1990 + 60 + + + + + + Housing + + + + Abstracts + 1980-1989 + 61 + + + + + Congressional publications and statements + 1980-1990 + 61 + + + + + Correspondence + 1981 + 1989-1990 + 61 + + + + + Housing and Urban Development (HUD) scandal + 1987-1990 + 61 + + + + + Memoranda and record + 1970-1990 + 61 + + + + + News articles and press release + 1984-1990 + 61 + + + + + + Immigration + 1979-1990 + 61 + + + + + Insurance + 1990 + 61 + + + + + Labor + + + + Abstracts and write-ups + 1979-1990 + 61 + + + + + Congressional publications + 1982 + 1989-1990 + 61 + + + + + Correspondence and newsletters + 1982-1989 + 61 + + + + + Minimum wage + 1989-1990 + 61 + + + + + News articles and press releases + 1990 + 1983-1984 + 61 + + + + + Parental leave and child care + 1987-1990 + 61 + + + + + Plant closings + 1987-1990 + 61 + + + + + Statements and record + 1979-1990 + 61 + + + + + Unemployment compensation + 1980-1990 + 61 + + + + + + Law Enforcement + + + + Analysis + 1990 + 1984 + 61 + + + + + Criminal procedure + 1979-1985 + 61 + + + + + Death penalty + + + + Abstracts, congressional publications, and write-ups + 1981-1990 + 61 + + + + + Correspondence + 1979-1990 + 61 + + + + + News articles and press releases + 1979-1990 + 61 + + + + + Record + 1990 + 61 + + + + + + Fraud prevention + 1985-1989 + 61 + + + + + Gun control + + + + Congressional publications + 1980-1989 + 61 + + + + + Correspondence-constituent + 1979-1990 + 61 + + + + + Mandatory sentencing + 1982-1984 + 61 + + + + + Memoranda and write-ups + 1989 + 61 + + + + + Press releases + 1983-1990 + 61 + + + + + Voting record + 1990 + 1984-1985 + 61 + + + + + + Legislation and votes + 1979-1990 + 61 + + + + + Miscellaneous + 1984-1990 + 61 + + + + + Terrorism + 1979-1990 + 61 + + + + + Wedtech, (Subcom OGM) + 1987-1990 + 61 + + + + + + Michigan + + + + Congressional Record and legislative record + 1979-1990 + 61 + + + + + Letters + 1983-1990 + 61 + + + + + Memoranda + 1983-1990 + 61 + + + + + Press releases and news articles + 2 folders + 1982-1990 + 61 + + + + + Transcripts + 1982-1987 + 61 + + + + + + Middle Class Squeeze + 1989 + 61 + + + + + Native Americans + 1987-1990 + 61 + + + + + Natural resources + 1979-1990 + 61 + + + + + Parks and Recreation + 1980-1990 + 62 + + + + + Political + + + + Analysis + + + + Legislation + 1990 + 1983-1984 + 62 + + + + + Legislation-enacted + 1979-1990 + 62 + + + + + Legislation-enacted by year + 1979-1989 + 62 + + + + + Senate votes + 1990 + 62 + + + + + Votes + 1979-1990 + 62 + + + + + + Campaigning + + + + Elections and campaign finance + 1979-1990 + 62 + + + + + Levin materials + 1984-1990 + 62 + + + + + Political Action Committee (PAC) contributors + 1990 + 62 + + + + + Polls + 1990 + 62 + + + + + + Committee analysis + 1979-1989 + 62 + + + + + Congressional Record statements and abstracts + 1982-1989 + 62 + + + + + Endorsements + 1990 + 1984 + 62 + + + + + Financial disclosure-Levin's + 1979-1989 + 62 + + + + + Honoraria + 1983-1990 + 62 + + + + + Joint operating agreement-Detroit newspapers + 1988-1990 + 62 + + + + + Miscellaneous + 1983 + 1989-1990 + 62 + + + + + Miscellaneous + 1987-1990 + 62 + + + + + Nominations + 1981-1990 + 62 + + + + + Office expenses, travel, and franking + 1983-1990 + 62 + + + + + Pay raises + 1988-1990 + 62 + + + + + Political debates + May 1990 + 62 + + + + + Press releases-voting record and election + 1989-1990 + 62 + + + + + Regulatory reform + 1980-1983 + 62 + + + + + Statements-administration, individuals, events + 1980-1987 + 62 + + +

    (Includes voting records)

    +
    +
    +
    + + + Postal issues + 1979-1989 + 62 + + + + + Procurement + 1990 + 1983-1984 + 62 + + + + + Public Debt Increases and Gramm-Rudman + 1989 + 63 + + + + + Religious affairs + + + + Legislation + 1979-1990 + 63 + + + + + Miscellaneous + 1980-1990 + 63 + + + + + Non-legislative activities + 1979-1988 + 63 + + + + + Religious freedom + 1980-1990 + 63 + + + + + + Senior citizens + 2 folders + 1980-1990 + 63 + + + + + Social services + + + + Adoption and foster care + 1979-1990 + 63 + + + + + Children + 1985-1990 + 63 + + + + + Hunger + 1979-1990 + 63 + + + + + Miscellaneous + 1980-1990 + 63 + + + + + Social security + 1984-1990 + 63 + + + + + Social security-disability bill + 1981-1984 + 63 + + + + + + State and local relations + 1980-1990 + 63 + + + + + Taxes + + + + Analysis + 1982-1990 + 63 + + + + + Legislation + 1981-1990 + 63 + + + + + Legislation + 1985-1989 + 63 + + + + + Miscellaneous + 1981-1990 + 63 + + + + + Statements + 2 folders + 1979-1990 + 63 + + + + + Votes + 1980-1990 + 63 + + + + + + Technology + 1979 + 1989 + 63 + + + + + Trade + + + + Abstracts and write-ups + 1979-1990 + 63 + + + + + Adjustment assistance + 1981 + 1990 + 63 + + + + + Analysis + 1989-1990 + 63 + + + + + Autos + 1982-1987 + 63 + + + + + Canada free trade + 1987-1989 + 63 + + + + + Competitiveness + 1987-1990 + 63 + + + + + Congressional publications + 1979-1990 + 64 + + + + + Deficit + 1984-1987 + 64 + + + + + Department of Trade + 1983-1986 + 64 + + + + + Export control + 1979 + 64 + + + + + Foreign investments in U.S. + 1989-1990 + 64 + + + + + General Agreement on Tariffs and Trade (GATT) + 1987-1990 + 64 + + + + + Japan-auto amendment + 1984-1988 + 64 + + + + + Japan and South Korea + 1981-1990 + 64 + + + + + Legislation and voting record + 1987-1988 + 64 + + + + + Memoranda + 1990 + 64 + + + + + Press releases and news articles + 1990 + 64 + + + + + Sanctions + 1985-1986 + 64 + + + + + Statements + 1981-1990 + 64 + + + + + Tariffs + 1979-1990 + 64 + + + + + Unfair practices + 1979-1990 + 64 + + + + + + Transportation + + + + Abstracts and write-ups + 1979-1990 + 64 + + + + + Congressional publications + 1979-1990 + 64 + + + + + Memoranda + 1990 + 64 + + + + + Press releases and news articles + 1983-1990 + 64 + + + + + Rail safety + January 1990 + 64 + + + + + Statements and mailings + 1979-1990 + 64 + + + + + + Veterans + + + + Abstracts and congressional publications + 1979-1990 + 64 + + + + + Correspondence + 1987-1990 + 64 + + + + + Levin's record + 1983-1990 + 64 + + + + + Mailings and newsletters + 1983-1987 + 64 + + + + + + Women + 1979-1990 + 64 + + + + + Votes + + + + Congressional Quarterly + + + + 1984 + 64 + + + + + 1985 + 64 + + + + + 1986 + 64 + + + + + 1987 + 64 + + + + + 1988 + 64 + + + + + + Roll call long form + 1979-1989 + 64 + + + + + + Votes database + + + + 1979-1980 + 64 + + + + + 1981-1982 + 64 + + + + + 1983-1984 + 64 + + + + + 1985-1986 + 64 + + + + + 1987-1988 + 64 + + + + + 1989 + 64 + + + +
    + + + Legislative activities + 1979-1990 + + + + 1979-1986 + 64 + + + + + 1987-1990 + 64 + + + + + + Memoranda + October 1990 + 65 + + + + + Miscellaneous + June + 1990 + 65 + + + + + Miscellaneous + July + 1990 + 65 + + + + + Miscellaneous-Odds and ends + 1984-1990 + 65 + + + + + PAC mailings + 1990 + 65 + + + + + Politics and attacks on Levin + 1990 + 65 + + + + + Positions and legislative record + 1990 + 65 + + + + + Press + 1983-1990 + + + + News articles + + + + Campaign + 1990 + 65 + + + + + Jewish Monthly magazine + June-July 1989 + 65 + + + + + Detroit Free Press magazine + October 22, + 1989 + 65 + + + + + + News articles-Subject + + + + Agriculture and environment + 1990 + 65 + + + + + Campaign stories + 1990 + 65 + + + + + Constituents, miscellaneous, health, and education + 1990 + 65 + + + + + Drugs and crime + 1990 + 65 + + + + + Endorsements by and of Levin + + + + 1990 + 1988 + 65 + + + + + 1989-1990 + 65 + + + + + 1990 + 65 + + + + + + Good deeds + 1990 + 65 + + + + + Military and foreign + 1990 + 65 + + + + + Schuette/Duran and Primary + 1990 + 65 + + + + + S&L scandal, ethics, and PACs + 1983 + 1990 + 65 + + + + + + Press releases + 2 folders + 1990 + 65 + + + + + + Public statements + 1982-1989 + + + + 1982 + 65 + + + + + 2 folders + 1983 + 66 + + + + + 2 folders + 1984 + 66 + + + + + 1985 + 66 + + + + + 1986 + 66 + + + + + 1987 + 66 + + + + + 1988 + 66 + + + + + 1989 + 66 + + + + + + Publications + 1979-1990 + + + + Congressional Record statements + + + + 1979-1990 + 66 + + + + + 1979-1980 + 66 + + + + + 1981-1982 + 66 + + + + + 1983-1984 + 66 + + + + + 1985-1986 + 67 + + + + + 1987-1988 + 67 + + + + + 1989-1990 + 67 + + + + + + Mass mailings + + + + 1979 + 67 + + + + + 1980 + 67 + + + + + 1981 + 67 + + + + + 1982 + 67 + + + + + 1983 + 67 + + + + + 1984 + 67 + + + + + 1985 + 67 + + + + + 1986 + 67 + + + + + 1987 + 67 + + + + + 1988 + 67 + + + + + 1989-1990 + 67 + + + + + + + Schuette + 1990-1990 + + + + Research + + + + MI-10 + 67 + + + + + Miscellaneous + 2 folders + 67 + + + + + Opposition + May-June 1990 + 67 + + + + + Schuette + + + + Volume 1 and Volume 2 + 67 + + + + + + Schuette and the Issues + + + + Volume 1 and Volume 2 + 67 + + + + + Volume 3 + 68 + + + + + + + + Swearing in + January 3, 1991 + 68 + + + + + Targeting + 2 folders + 68 + + + + + Targeting + 2 folders + 1990 + 68 + + + + + Audiovisual materials + + + + "I'm Liberal" - Bill Schuette + 1 audiocassettes + 1990 August 07 + 1072 + + + + + "Political Demo" Including Barney Frank; Barney Frank; Les AuCoin; Les + AuCoin; Coleman Young; Coleman Young; Coleman Young; John Kerry; John Kerry; + Madeleine Kunin; Madeleine Kunin; Madeleine Kunin; Mike Dukakis; Mke Dukakis; Mike + Dukakis; Bob Rufo; Barney Frank; Barney Frank; Barney Frank; Lou Hill; Rookie; + Mom; Watt; Jobs; Alive; City Cuts; Memorial; Hardware; This is Vermont; + Leadership; Country Store; Zorba; Record Hop; Bio; Sheriff; One Way; Hands; Smear; + Alka Rizzo + 1 videocassettes (VHS) + undated + 1051 + + + + + 1989 Demo Politics Inc. + 1 videocassettes (VHS) + 1989 June 20 + 1051 + + + + + 1990 COPE Senate Group Video Michigan -- Sen. Carl Levin + 1 videocassettes (VHS; 0:08:50) + 1990 October 01 + 1051 + + + + + AFL-CDO Rally + 1 audiocassettes + 1990 October 10 + 1095 + + + + + Angie Nelson Feed; A+B: GCK to Edmonds, re: media. - save!! + 1 audiocassettes + 1990 August 15 + 1065 + + + + + Art Lewis Call-in WSGW + 1 audiocassettes + 1990 August 24 + 1065 + + + + + BS Capitol AD + 1 videocassettes (VHS) + 1990 October 05 + 1072 + + + + + BS/Saginaw. TUS 12:00 PM News with BS. ATTN: Mary Wood + 1 videocassettes (VHS) + 1990 October 12 + 1072 + + + + + Campaign ad with family + 1 videocassettes (VHS; 0:09:00) + 1989 November 07 + 1107 + + + + + Carl Levin at U of M Tape 2 + 1 videocassettes (U-matic) + 1990 October 30 + 1095 + + + + + Carl Levin Factory/Warehouse Re-Transfer w/ Forklift (Made in U.S.A.). + Struble/Totten + 1 videocassettes (U-matic) + 1990 August 08 + 1106 + + + + + Carl Levin for Senate/7J38A + 1 videocassettes (Betacam) + 1990 August 01 + 1106 + + + + + Carl Levin For Senate: "Enemy Within". TV-19 . + Struble/Totten-MG + 1 videocassettes (U-matic; 1x:30) + 1990 October 10 + 1106 + + + + + Carl Levin Tape #2 + 1 videocassettes (Betacam; 0:24:45) + 1990 May 15 + 1107 + + + + + Carl Levin Tape #6 + 1 videocassettes (Betacam; 0:24:40) + 1990 May 15 + 1107 + + + + + Carl Levin TV-4 11:00 "don't touch this" + 1 videocassettes (VHS) + 1990 November 04 + 1090 + + + + + Ch.7 News B.S. on budget + 1 videocassettes (VHS) + 1990 October 01 + 1090 + + + + + Channel 6 - Lansing 6 & 11 pm + 1 videocassettes (VHS) + 1990 July 02 + 1072 + + + + + CL v BS Debate II (This version recorded by WDIV-TV, live) Levin w. + Schuette + 1 videocassettes (VHS) + 1990 October 13 + 1096 + + + + + Composite Reel + 1 videocassettes (VHS) + 1989 May 26 + 1051 + + + + + Debate II BS-Cl (side A); Monroe edi bd (side B) + 1 audiocassettes (microcassettes) + undated + 1095 + + + + + DSCC Copy of Pryor/Carl Levin on Channel 13 in Grand Rapids + 1 videocassettes (VHS) + 1990 July 30 + 1095 + + + + + From the Desk of Stephen Serkaian: Off-the-Record- MI Press w/Schuette + Pollster Alex Grace + 1 videocassettes (VHS) + 1990 August 03 + 1090 + + + + + GCK intro's CL p +(?) spots to Lansing press + 1 audiocassettes + 1990 July 03 + 1065 + + + + + GCK to Booth/Kellog. Our ads-philosophy + 1 audiocassettes + 1990 July 17 + 1065 + + + + + Interview CBS This Morning for Sen. Carl Levin + 1 videocassettes (U-matic) + 1990 September 04 + 1064 + + + + + Joe Slade White & Co. The Best of 1992 (Political Ads); Contact: Will + Robinson; Phone: (202)544-1590 (c) 1992 By JSW&Co + 1 videocassettes (VHS) + 1992 + 1089 + + + + + Levin Endorsements of State Reps + 1 videocassettes (VHS) + 1990 + 1090 + + + + + Levin for Senate: "Deserves Better". TV-10. Struble/Totten-MG + 1 videocassettes (U-matic; 1x:30) + 1990 August 17 + 1106 + + + + + Levin For Senate: "Endorsement". TV-30. The Media Group + 1 videocassettes (U-matic; 1x:30) + 1990 November 14 + 1106 + + + + + Levin For Senate: 1) "Priorities" TV-11; 2) "Our Kids" TV-12; 3) + "Microchip" TV-13; 4) Hamburger" TV-14; 5) "Mudslinging" DEMO Muenster for Senate; + 6) "For Sale" TV-10. Struble/Totten + 1 videocassettes (U-matic; 6x:30) + 1990 August 23 + 1106 + + + + + Levin for Senate: Schoolyards; Spare Parts (Revised); Portrait; CBS; + Champion (Revised). Struble/Totten + 1 videocassettes (U-matic; 5x:30) + undated + 1106 + + + + + Levin Fraternal Order of Police Endorsement + 1 videocassettes (U-matic) + 1990 September 07 + 1106 + + + + + Levin Re-election Announcement + 1 videocassettes (VHS; approx. 0:13:00) + 1990 May 18 + 1095 + + + + + Levin Schuette Debate II + 1 audiocassettes + 1990 September 06 + 1095 + + + + + Levin/Schuette Debate + 1 videocassettes (U-matic) + 1990 September 06 + 1051 + + + + + Levin/Schuette/Blanchard/Engler (mix). CL varied + 1 videocassettes (VHS) + 1990 October 09 + 1072 + + + + + Levin: CBS Dan Rather & The 24th Infantry - Tanks + 1 videocassettes (VHS; 0:05:00) + 1990 September 06 + 1064 + + + + + Levin-Schuette Debate Part I + 1 audiocassettes + 1990 September 06 + 1095 + + + + + Livonia Franklin High School Remarks + 1 audiocassettes + 1990 May 21 + 1099 + + + + + Michigan Dem. Party - State Convention Flint. Sat Feed, Edit + Master + 1 videocassettes (U-matic) + 1990 September 09 + 1072 + + + + + Michigan's Carl Levin + 1 videocassettes (U-matic; 0:09:00) + 1989 November 07 + 1051 + + + + + News Herald Editorial Board (sideA); Battle Creek enquired Editorial + board (sideB) + 1 audiocassettes (microcassettes) + 1990 October 30 + 1990 October 31 + 1095 + + + + + Off the record; Levin live interviews Ch.7 & 2; Schuette interiews 2 + & 50 + 1 videocassettes (VHS) + 1990 August 10 + 1990 August 07 + 1990 August 07 + 1058 + + + + + Patty Edmonds: Abortion + 1 audiocassettes + 1990 June 13 + 1099 + + + + + Poam Award - Senator Levin. Strubble-Totten Communications + 1 videocassettes (U-matic; aprox. 0:20:00) + 1990 May 21 + 1106 + + + + + Port Huron Times Herald Eddy Bd. + 1 audiocassettes + 1990 October 27 + 1099 + + + + + Radio Conference Call Senator Levin. Moderator: Mr. Willie Blacklow. + Final Radio Conf. Call + 1 audiocassettes + 1990 August 23 + 1091 + + + + + Radio Conference Call Senator Levin. Moderator: Mr. Willie Blacklow. + Final Radio Conf. Call + 1 audiocassettes + 1990 August 29 + 1091 + + + + + Radio Conference Call Senator Levin. Moderator: Mr. Willie Blacklow. + Final Radio Conf. Call + 1 audiocassettes + 1990 November 06 + 1091 + + + + + Radio Conference Call Senator Levin. Moderator: Mr. Willie Blacklow. + Final Radio Conf. Call + 1 audiocassettes + 1990 September 04 + 1091 + + + + + Radio Conference Call Senator Levin. Moderator: Mr. Willie Blacklow. + Final Radio Conf. Call + 1 audiocassettes + 1990 September 24 + 1091 + + + + + Radio Feed - Civil Rights; Oakland Press on Campaign + 1 audiocassettes + 1990 October 23 + 1990 October 24 + 1991 January 15 + 1095 + + + + + Radio TV Reports, Inc. Nine news items from. Please see box for list. Re: + Levin Wins Election. (All Copyrights Reserved by Station) + 1 videocassettes (VHS) + 1990 November 06 + 1085 + + + + + Schuette Ads. Channel to Lansing; Carl at Homeless Walk - 11 + pm + 1 videocassettes (VHS) + 1990 August 10 + (Friday) + 1990 August 11 + (Saturday) + 1090 + + + + + Schuette Vets Memorial Ad; Levin Contrast Ad "Unforgivable" + 1 videocassettes (VHS) + undated + 1090 + + + + + Side A: Det News Ed: Bd - Save!! Bray v. Levin; Side B: Det News Ed: BD - + Save! 1990 incl's separate 1-on-1's + 1 audiocassettes + 1990 October 03 + October 03 + 1065 + + + + + Side A: Road Tape 2 CL/Angie(?) Nelson [some text is crossed out] raw + Tape. Side B: BS + CL, WDET radio Save!! + 1 audiocassettes + 1990 October + 1065 + + + + + Struble - Totten "Levin" Transfer From ECN Original CR#s 1 THRU + 3 + 1 videocassettes (U-matic; 0:10:00) + 1990 September 04 + 1106 + + + + + The Media Group Film transfer Camera Roll 3 "Carl Levin for Re + Election" + 1 videocassettes (U-matic) + 1989 November 01 + 1106 + + + + + TV-2, TV7 5:30-6:00 + 1 videocassettes (VHS) + 1990 July 25 + 1095 + + + + + U.S. Senatorial Debate + 1 videocassettes (U-matic) + taped: 1990 October + 13 + 1092 + + + + + Watch on Washington Channel 35 in GR + 1 videocassettes (VHS) + 1990 October 09 + 1096 + + + + + wbb+Greg Gordon S of L's(?): Brownstein + 1 audiocassettes + 20-Jul + 1065 + + + + + WXYZ-TV-7 6 p.m. Lead Story - Eugene Delgado vs. Helms in support of C.L. + ? + 1 videocassettes (VHS) + 1990 July 24 + 1090 + + + + + Michigan Dial Test + 1 videocassettes (VHS; 0:18:19) + 1990 August 20 + 1107 + + + +
    + + + 1996 + + + + Accomplishments + 1979-August 1996 + 68 + + + + + Accomplishments + 1984-1995 + 68 + + + + + Major legislative accomplishments of Senator Carl Levin + 1979-June 1996 + 68 + + + + + Administrative and Office Files + 1991-1996 + + + + Box inventory, printed file list-Aaron and Elise records + 68 + + + + Elise + 1996 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Files related to Senator Carl Levin legislative record and stances.)

    +
    +
    + + + 1996 + + + + Disk 1 + 1996 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Memoranda, press releases, correspondence, statements, news coverage and + other files from Senator Carl Levin. [Disk 1 of 5])

    +
    +
    + + + Disk 2 + 1996 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Memoranda, biographies, legislative accomplishments and stances, and other + files from Senator Carl Levin. [2 of 5])

    +
    +
    + + + Disk 3 + 1996 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Memoranda, legislative accomplishments and stanes, debate preparation, and + other files from Senator Carl Levin. [3 of 5])

    +
    +
    + + + Disk 4 + 1996 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Memoranda, questionnaires, legislative accomplishments and stances, and + other files from Senator Carl Levin. [Disk 4 of 5])

    +
    +
    + + + Disk 5 + 1996 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Memoranda, statements, and other files from Senator Carl Levin. [Disk 5 of + 5])

    +
    +
    +
    +
    + + + Congratulatory letters + November 6, + 1996 + 68 + + + + + Constituent calls-Meyer agreement + 1996 + 68 + + + + + Correspondence-staff + 1994-1996 + 68 + + + + + Dear Friend letter from Levin, (regarding why he is running for 4th + term) + 1996 + 68 + + + + + Direct mail + + + + AB data and direct mail + 1996 + 68 + + + + + Direct mail background + 1995 + 68 + + + + + Direct mailing letters + 1996 + 68 + + + + + Politics direct mail + 1996 + 68 + + + + + + Letters and endorsements + July 1996 + 68 + + + + + Levin factsheet + 1996 + 68 + + + + + Lists of people + December 1993-January 1994 + 69 + + + + + Memos-political + June 1996 + 69 + + + + + Memos-budget and taxes, (C. Cutolo) + 1993 + 69 + + + + + Schedule log of Michigan visits + 1991-1996 + 69 + + + + + Schedules and events-big event binder + 3 folders + September-October 1996 + 69 + + + + + Staff meetings + 1996 + 69 + + +
    + + + Aftermath + 1996 + 69 + + + + + Bio + 1994 + 69 + + + + + Campaign documents + 2 folders + 1995-1996 + 69 + + +

    (Includes rebuttals, Levin stances on issues, memos, background, etc.)

    +
    +
    + + + Campaign issues + 1996 + 69 + + + + + Campaign funds + 1995-1996 + 69 + + + + + Campaign expenditures + 1995-1996 + 69 + + + + + Campaign literature-Levin + 1996 + 69 + + + + + Campaign materials -- A. Pascale + 2 folders + 1996 + 69 + + +

    (Includes Levin's views, accomplishments, etc. on abortion and trade)

    +
    +
    + + + Campaign strategy + 2 folders + 1995 + 70 + + + + + Coordinated campaign + 1996-1996 + + + + 2 folders + 1996 + 70 + + + + + Michigan Coordinated Campaign banners + 2 folders + October 2-7, 1996 + 70 + + + + + + Data and analysis + 1995-1996 + + + + Statewide January 1995 survey EPIC MRA report poll #25 + January 30, + 1995 + 70 + + + + + Presentation of findings from survey of 800 progressive direct response + donors + February 2-13, 1995 + 70 + + + + + Presentation by Mark Mellman to Friends of Senator Carl Levin Retreat, + (Mellman Group) + December 1995 + 70 + + + + + Focus Group Transcripts-Flint and Detroit, (Mellman Group) + March 12-13, 1996 + 70 + + + + + Michigan Statewide Survey of 603 General Election Voters, (Mellman + Group) + March 23-26, 1996 + 70 + + + + + Presentation of Findings from Focus Groups and a Survey of 600 Michigan + Voters, (Mellman Group) + April 1996 + 70 + + + + + Presentation Report from the Media-PULSE Analysis Session conducted in + the Detroit Media Market, (Mellman Group) + August 8, 1996 + 70 + + + + + Michigan Senate a survey of 600 likely general election voters, (Mellman + Group) + August 17-20, 1996 + 70 + + + + + Presentation of Findings from the Survey of 600 Likely General Election + Voters in Michigan, (Mellman Group) + August 1996 + 70 + + + + + Mellman group polls + 3 folders + August 1996 + 71 + + + + + Michigan Statewide Survey of 600 likely voters, (Mellman + Group) + September 1996 + 71 + + + + + Michigan Senate Tracking Survey of 600 likely voters, (Mellman + Group) + October 14-16, 1996 + 71 + + + + + Michigan Coordinated Campaign Tracker, (Greenberg Research) + October 23-24, 1996 + 71 + + + + + Campaign Tracker, (Greenberg Research, Inc.) + October 1996 + 71 + + + + + Spot Point Tracking + October 1996 + 71 + + +

    (Media Strategies and Research-MSR)

    +
    +
    + + + Focus group transcripts + + + + April + 2 folders + June 1996 + 71 + + + + + + Michigan Senate Nightly Tracking, (Mellman Group) + 7 folders + October 1996 + 71 + + + + + Correspondence and polls + 2 folders + 1996 + 71 + + + + + Polling + 1996 + 71 + + + + + Polling earlier + 1996 + 72 + + +
    + + + Debate + 1996-1996 + + + + 1996 + 72 + + + + + Debate agreement + 72 + + + + + Levin vs Romney transcript + September 30, + 1996 + 72 + + + + + + Districts and cities + 1996-1996 + + + + Breakdown of districts + 2 folders + 1996 + 72 + + + + + County chair surveys and information + 1996 + 72 + + + + + Economic profiles of Michigan cities + 3 folders + 1996 + 72 + + + + + + District plans-field binders + + + + Binder 2 + 2 folders + 72 + + + + + Binder 3 + 2 folders + 72 + + + + + Binder 4 + 2 folders + 72 + + + + + + Endorsements + 1996 + 73 + + + + + Endorsement-potential + 1996 + 73 + + + + + Federal Election Commission (FEC) + 1971-1996 + + + + 1996 + 73 + + + + + Complaints about Federal Election Campaign Act of + 1971 + undated + 73 + + + + + FEC Reports + + + + January 1-March 31, 1996 + 73 + + + + + April 1-June 30, 1996 + 73 + + + + + July 1-17, 1996 + 73 + + + + + July18-September 30 + 1996 + 73 + + + + + October 1-16, 1996 + 73 + + + + + October 17-November 25, 1996 + 73 + + + + + November 26-December 31, 1996 + 73 + + + + + + Itemized disbursements + November 1990 + 73 + + + + + + Field + 1996 + 73 + + + + + Field reports-daily + August-September 1996 + 73 + + + + + Finance Committee + 1996 + 73 + + + + + Finance Committee goals + 1996 + 73 + + + + + Friends of Senator Carl Levin + 1991-1996 + + + + Mailings + + + + Direct mail + 1995-1996 + 73 + + + + + Friends of Senator Carl Levin campaign releases + 1996 + 73 + + + + + Still Friends of Carl Levin + February 7, + 1991 + 73 + + + + + + Media Buys Plans-Michigan Senate General Elections + + +

    (Media Strategies and Research-MSR)

    +
    + + + Presentation of Media Buying Services Media Strategies and + Research + May 26, 1995 + 73 + + + + + Planning guide + 1996 + 73 + + + + + September 2-8, 1996 + 73 + + + + + September 9-15, 1996 + 73 + + + + + September 16-22, 1996 + 73 + + + + + September 23-24, 1996 + 73 + + + + + September 24-29, 1996 + 74 + + + + + September 30-October 6, 1996 + 74 + + + + + October 7-13, 1996 + 74 + + + + + October 8-13, 1996 + 74 + + + + + October 14-20, 1996 + 74 + + + + + October 21-27, 1996 + 74 + + + + + October 28-November 5, 1996 + 74 + + +
    + + + Paraphernalia + 1996 + 74 + + + + + Reports of receipts and reimbursements + 2 folders + 1996 + 74 + + + + + System tape + 1 data cartridges + March 1995 + 74 + + +
    + + + Fundraiser invitations + 1995-1996 + 74 + + + + + Fundraising + 1992-1996 + + + + 2 folders + 1992-1995 + 74 + + + + + Direct mail campaign, (Friends of Senator Carl Levin) + 1996 + 74 + + +

    (Includes letters for both Carl and Sander Levin)

    +
    +
    + + + Fundraising and candidates + 3 folders + October 1995-April 1996 + 75 + + + + + Miscellaneous + May-June 1995 + 75 + + +
    + + + Issues + 1996 + 75 + + + + + Issue areas + 1979-1996 + + + + Education budget and block grants + 1995 + 75 + + + + + Health and Medicare + 1995 + 75 + + + + + Law enforcement + 1996 + 75 + + + + + Levin on the issues + 1979-1996 + 75 + + + + + Levin voting record + 75 + + + + + Levin voting record on individual issues + 1990 + 75 + + + + + Literature issue by issue + 2 folders + 1996 + 75 + + + + + Politics issue by issue + 1996 + 75 + + + + + Tax record information + 1996 + 75 + + + + + Veterans + 1996 + 75 + + + + + Welfare reform + 1995 + 75 + + + + + Women and pro-choice + 3 folders + 76 + + + + + + Levin campaign message + 1996 + 76 + + + + + Levin votes + 1979-1996 + + + + Levin's record on votes + 2 folders + 1996 + 76 + + + + + Multi-year issue index to Senate votes -- Carl Levin, (Bound) + 1979-1991 + 76 + + + + + + Lifetime value of military retired pay + May + 1996 + 76 + + + + + Mechanics and miscellaneous + 76 + + + + + Message + 1996 + 76 + + + + + Mike Murphy-negative ad man for GOP + 1996 + 76 + + + + + Miscellaneous + 1996-1996 + + + + Folder 2 + 1996 + 76 + + + + + Folder group 3 + 2 folders + 1996 + 76 + + + + + Campaign + 1996 + 76 + + + + + Election + 1996 + 76 + + + + + + Miscellaneous campaign information + 1996-1996 + + + + Folder 1, (Much on Jim Nicholson) + 1996 + 76 + + + + + Folder 2 + 1996 + 77 + + + + + Folder 3 + 1996 + 77 + + + + + Folder 4 + 1996 + 77 + + + + + Folder 5 + 1996 + 77 + + + + + + Miscellaneous papers + 1995-1996 + 77 + + + + + Nicholson + 1996-1996 + + + + The Michigan Freedom Plan + 1996 + 77 + + + + + Nicholson ads + 1996 + 77 + + + + + Nicholson information + 2 folders + 1996 + 77 + + + + + + Photographs + 1983-1997 + + + + Photo album -- Carl Levin campaign final two days + 1996 + 1022 + + + + + Levin with Detroit staff members + 1983 + 1022 + + + + + 1991-1996 + + + + Miscellaneous + 3 folders + 1025 + + + + + Carl Levin opeing Christmas cards from kids + 1025 + + + + + Carl Levin with teabags (anti-50% raise) + 1025 + + + + + Electric Car Team + 1025 + + + + + Carl at UAW Trade News Conference (in Capitol) + 1025 + + + + + Clapping at dinner party Muskegon + 1025 + + + + + Rabbi Chaim Moshe Bergstein, Guest Chaplain + 1025 + + + + + Carl Levin with David Pryor and Bernard Schwartz at Kingsmill Resort, + Democratic Senators Retreat + 1025 + + + + + Bosnia Carl Levin in flakjacket + January 1997 + 1025 + + + + + Carl Levin with Bob Stempel and Roger Smith + 1025 + + + + + Carl Levin at Focus Hope + 3 folders + 1992-1993 + 1025 + + + + + Carl with National Council of Jewish Women + March 3, 1992 + 1025 + + + + + Jeddo Farm, Flint Police with Maya + July 30, 1990 + 1025 + + + + + Picnic and family pics announcement Ferndale + May 11, 1990 + 1025 + + + + + Speaking at MI Association of Chiefs of Police Conference Bad + Pictures + 1025 + + + + + U.S. Auto Performance and Motorsports Industry, ribbon cutting with + Chrysler, Sandy and Sen. Ben Nighthorse Campbell + May 15, 1996 + 1025 + + + + + Entrepreneur Club Briefing + May 6, 1996 + 1025 + + + + + Murray Jackson -- on Wayne State U. Board of Governors old + photos + 1025 + + + + + With Peter McPherson at party celebrating pub. Book 2 colors -- + excellent early + July 24, 1996 + 1025 + + + + + Barbara and Arthur Johnson at reception + 1025 + + + + + Trips Abroad and with Military + + + + Carl at Great Lakes Conference in Quebec + May 3-5, 1991 + 1025 + + + + + Color -- Desert Storm Groupshots + January + 1995 + 1025 + + + + + Israeli funeral pics, Air Force Clinton -- none CL + 1025 + + + + + Carl Levin trip -- Israel, China + 1025 + + + + + Pictures of Israel -- only 1 with CL + 1025 + + + + + Carl Levin with military + 1025 + + + + + Trucks -- Macedonia/Serbia border + 1025 + + + + + Carl Levin with Air Force guys + 1025 + + + + + Carl at NATO Supreme HQ-Europe + 1025 + + + + + Carl Levin with Pope + 1025 + + + + + Rouben Shugarian Ambassador Armenia + April + 1996 + 1025 + + + + + Carl Levin taking down Berlin Wall, etc. + 2 envelopes + 1025 + + + + + + Richard Dreyfuss-funny + 1025 + + + + + Carl at lunch for Tony Randall -- Congressional Arts + Caucus,. + July + 1992 + 1025 + + + + + Billy Crystal and Isiah Thomas basketball game + 1025 + + + + + + + Platform topics + 1996-1996 + + + + May-September + 1996 + 77 + + + + + Index of position on campaign issues + 77 + + + + + + Political Action Committee (PAC) list summary + 1996 + 77 + + + + + Press + 1994-1996 + + + + Ads + 1996 + 77 + + + + + Ad schedules + 77 + + + + + Daily communication updates + 1996 + 77 + + + + + Event packet and magazine interview + 1996 + 77 + + + + + General information + 1996 + 77 + + + + + Interviews + October 1996 + 77 + + + + + Letters to the Editor -- education and tax cuts + September-October 1996 + 77 + + +

    (also includes women and other topics Romney attacks Levin on)

    +
    +
    + + + Media + 3 folders + 1996 + 77 + + + + + Media + + + + Carl Levin quick logs + 1996 + 78 + + + + + + News articles + + + + 3 folders + July-December 1995 + 78 + + + + + 1995-1996 + 78 + + + + + January 1996 + 78 + + + + + February 1996 + 78 + + + + + March 1996 + 78 + + + + + April 1996 + 78 + + + + + May 1996 + 78 + + + + + June 1996 + 78 + + + + + 2 folders + July 1996 + 78 + + + + + 2 folders + July-August 1996 + 78 + + + + + 2 folders + August 1-7, 1996 + 79 + + + + + 2 folders + August 11-30, 1996 + 79 + + + + + August 20-September 4, 1996 + 79 + + + + + August 30-September 18, 1996 + 79 + + + + + 2 folders + September 3-October 6, 1996 + 79 + + + + + September 18-October 18, 1996 + 79 + + + + + 2 folders + 1996 + 80 + + + + + Campaign + August-November 1996 + 80 + + + + + Campaign 1996 primary + 1996 + 80 + + + + + Campaign + October 1996 + 80 + + + + + Levin campaign + 1995 + 80 + + + + + Levin campaign -- post primary + 1996 + 80 + + + + + Endorsements and clips + 2 folders + October 18-November 4, 1996 + 80 + + + + + Fundraising + 1994-1996 + 80 + + + + + Fundraising + 2 folders + 1995-1996 + 80 + + +

    (Includes a Friends of Senator Carl Levin receipt disclosure)

    +
    +
    + + + General + 1995-1996 + 80 + + + + + MPRS envelope of Senator Carl Levin press clippings + 1996 + 80 + + + + + Newspaper clippings from election -- Friends of Carl Levin attn.: David + Seldon + 1996 + 81 + + + + + Nicholson, Jim + 2 folders + 1995-1996 + 81 + + + + + Presidential campaign press clips + 1996 + 81 + + + + + Press endorsements + 1996 + 81 + + + + + Romney, Ronna + 1995-1996 + 81 + + + + + Romney + + + + February-October 1996 + 81 + + + + + June-August 1996 + 81 + + + + + + Senate race news articles + 1995 + 81 + + + + + Victory + 1996 + 81 + + +
    + + + Press releases + + + + 1996 + 81 + + + + + + Radio + + + + Database of radio stations and talk radio programs + August-October 1996 + 81 + + + + + Radio actualities + August-October 1996 + 81 + + + + + Radio station schedules + July-September 1996 + 81 + + + + + + TV buys + September-October 1996 + 81 + + + + + Voice-tel, (Audio newsfeed hotline of Senator Carl Levin) + September 26, + 1996 + 81 + + +
    + + + Progressive organizations + 1996 + 81 + + + + + Quick response campaign + 2 folders + 1996 + 81 + + + + + Quick response index + August 1, 1996 + 81 + + + + + Research-Cunningham, Plante and Associates + September 28, + 1995 + 81 + + + + + Romney + 1996 + + + + Ads + July-November 1996 + 81 + + + + + Romney ad buys + October 1-7, 1996 + 82 + + + + + Opposition + 2 folders + 1996 + 82 + + + + + Opposition research + 1996 + 82 + + + + + Tape-partial transcripts + May 16, 1996 + 82 + + + + + Tape #8 Birmingham Women's Club transcripts + undated + 82 + + + + + + Carl Levin speeches for campaign + 1996 + 82 + + + + + Talking points + 1995 + 82 + + + + + Tally + 1996 + 82 + + + + + Telemarketing + 1996 + 82 + + + + + Trigger book -- election talking points + 1996 + 82 + + + + + Webpage + 1996 + 82 + + + + + Audiovisual materials + + + + "Jack Kemp" WEYI Eyewitness News at Eleven WEYI-TV (NBC) Flint + 11:00-11:35 PM 2:26 + 1 videocassettes (U-matic) + 1996 September 02 + 1107 + + + + + 16. Levin @ Flint & Lansing + 1 videocassettes (Video 8, Hi-8) + 1996 May 29 + 1107 + + + + + 17. Levin @ G. Rapids/Macomb + 1 videocassettes (Video 8, Hi-8) + 1996 May 30 + 1107 + + + + + Actualities - Ed.+Tax Cuts, Govt. Spending, FMLA, Ad + 1 audiocassettes + undated + 1106 + + + + + Adam Clymer, NYT CWC + 1 audiocassettes + 1996 September 12 + 1092 + + + + + Carl Levin for Senate: "Crime Counter-Revised" TV-13R. + 1 videocassettes (U-matic) + 1996 October 04 + 1105 + + + + + Carl on XYT + 1 audiocassettes + 1996 August 08 + 1085 + + + + + CineTransfer. Media Group - "Levin for Senate" Tape #9; Time Code Hr: + 9:00. Scene-to-Scene Master from 16mm OCN at 24fps + 1 videocassettes (U-matic) + 1996 July 24 + (transfered) + 1106 + + + + + Economic Club of Detroit - Senatorial Debate + 1 videocassettes (VHS; 1:01:11) + 1996 September 30 + 1057 + + + + + Friends of Senator Carl Levin: "Guns" TV-14; "Extreme" TV-16; "Seniors" + TV-17 + 1 videocassettes (U-matic; 0:00:30 (x3)) + 1996 October 11 + 1105 + + + + + Friends of Senator Carl Levin: "Newspapers". Struble/Oppel/Donovan. + TV-20 + 1 videocassettes (U-matic; 0:30:00) + 1996 October 29 + 1105 + + + + + Friends of Senator Carl Levin: "Opportunity-DSCC" TV-101; "Workers-DSCC" + TV-102; "Junk-DSCC" TV-103; "Reports-DSCC" TV-104. + 1 videocassettes (U-matic) + 1996 September 12 + 1105 + + + + + Healthcare Conference call, Bill Ballenger - WJIM + 1 audiocassettes + 1996 August 21 + 1091 + + + + + Judy Daubenmier interview. AP + 1 audiocassettes + 1996 September 11 + 1092 + + + + + Levin MPA + 1 videocassettes (VHS) + 1996 September 27 (?) + 1085 + + + + + Levin Riley Master + 1 videocassettes (Betacam; 7:04:19) + 1996 July 18 - + air + 1062 + + + + + Levin Romney Debate I + 1 videocassettes (VHS) + 1996 September 29 + 1062 + + + + + Levin/Romney: A Citizens Town Meeting + 1 videocassettes (VHS) + 1996 September 30 + 1107 + + + + + MDP Convention Speech + 1 videocassettes (VHS) + 1995 + 1088 + + + + + Michigan Connection/Sen Levin + 1 videocassettes (Betacam; 29:44:00) + 1996 August + 1087 + + + + + Nicholson + 1 videocassettes (Video 8, Hi-8) + 1996 September 30 + 1996 October 11 + 1107 + + + + + Primary Night Remarks + 1 audiocassettes + 1996 August 06 + 1107 + + + + + Radio Tour - Ken Kass signing + 1 audiocassettes + 1996 August 21 + 1091 + + + + + Romney Negative Radio Spot Sen. Phil Authorhour(?) Show WJIM-AM + Lansin + 1 audiocassettes + 1996 August 02 + 1085 + + + + + Sen Levin's Home Page Lansing(?) Eastern High School WILT-TV 10 + 5P.M. + 1 videocassettes (VHS) + 1996 September 12 + 1057 + + + + + Sen. Levin WILX(?)-TV @ 5 pm. Live from Convention + 1 videocassettes (VHS) + 1996 August 29 + 1107 + + + + + Senator Carl Levin - statement on "Medicare" - LEAD ends 30 sec. Carl + start 39 sec.-1.17 + 1 audiocassettes + 1996 August 14 + 1107 + + + + + Senator Carl Levin: Convention Remarks + 1 videocassettes (Betacam) + 1996 August 28 + 1107 + + + + + Senator Carl Levin's 1996 Kick of Campaign 15. Bell Memorial Hospital + Ishpeming, MI + 1 videocassettes (VHS) + 1996 May 28 + 1107 + + + + + WOOD Ch.8 Noon Carl kicks off campaign in Grand Rapids + 1 videocassettes (VHS) + 1996 May 30 + 1107 + + + +
    + + + 2002 + + + + Accomplishments-Michigan + 1997-2002 + 82 + + + + + Administrative and office files + 2001-2002 + + + + Campaign finances + 2002 + 82 + + + + + Important correspondence + 2001-2002 + 82 + + + + + Leasing information + 2002 + 82 + + + + + Memos + February 6, + 2002 + 82 + + + + + Schedule, January-March + September 19, + 2002 + 82 + + + + + Victory 2002 Election Day briefing packet + 2002 + 82 + + +

    (Includes a photograph)

    +
    +
    + + + Webstuff + July-August 2002 + 82 + + +
    + + + Campaign + 4 subfolders + 2002 + 82 + + + + + Constituencies + 1996 + 82 + + + + + Consultants + 2 folders + 2002 + 82 + + + + + Data and analysis + 1999-2002 + + + + U.S. Senate Michigan 2000-Banners from a survey of 600 likely general + election voters in Michigan + March 2-4, 1999 + 82 + + +

    (Book; Lake Snell Perry Associates)

    +
    +
    + + + Presentation to Senator Carl Levin, (Mellman Group) + June 2002 + 82 + + + + + Levin for Senate Michigan statewide survey, (Mellman Group) + 2 folders + August 27-29, 2002 + 82 + + + + + Findings from a statewide survey of 600 likely voters in Michigan, + (Mellman Group) + September 2002 + 82 + + + + + Polling + 2 folders + 2002 + 83 + + + + + Polling + 2 folders + 83 + + +
    + + + Debate + 2002 + + + + September 2002 + 83 + + + + + Preparation + October 2002 + 83 + + + + + + Democratic National Convention + May-June 2002 + 83 + + + + + Endorsements + 2002 + 83 + + + + + Requests for endorsements + 2002 + 83 + + + + + Fraternal Order of Police completed + July 26, 2002 + 83 + + + + + Friends of Senator Carl Levin + 2002 + + + + AB Data, Ltd agreement + 83 + + + + + Direct mail + 2002 + 83 + + + + + Media Buy Plans-Michigan Senatorial Election + 2 volumes + October 21-November 5, 2002 + 83 + + + + + + Fundraising + 2001-2002 + + + + Fundraising + 2002 + 83 + + + + + Fundraising data + 2001-2002 + 83 + + + + + + Granholm and posthumous plans + September-October 2002 + 83 + + + + + Issue areas + 1997-2002 + + + + Campaign finance reform + November 1997-February 1998 + 83 + + + + + Labor + 83 + + + + + Legal issues + 2000 + 83 + + + + + Levin Session report + 1999 + 83 + + + + + Response summaries + 2002 + 83 + + + + + + Levin literature + 2002 + 83 + + + + + Media + 2001-2002 + + + + College media + October 2001 + 83 + + + + + Cyber rally + October 2002 + 83 + + +

    (Carl Levin and Martin Sheen)

    +
    +
    + + + E-campaign updates + September 2002 + 83 + + + + + Editorial Board meetings + August-October 2002 + 83 + + + + + Media lists + 2002 + 83 + + + + + Media questionnaires + September-October 2002 + 83 + + + + + Questionnaires complete + September-October 2002 + 83 + + + + + Questionnaires-response from Rich received + August-September 2002 + 83 + + + + + Media requests pending + August-October 2002 + 83 + + + + + Media requests done + June-October 2002 + 83 + + + + + Website + 2001 + 83 + + + + + Web news + September 2002 + 83 + + +
    + + + Michigan Democratic Party + April-July 2002 + 83 + + + + + Michigan Democratic Party coordinated campaign + 83 + + + + + Miscellaneous + 2002 + + + + 2 folders + September-October 2002 + 84 + + + + + 3 folders + 2002 + 84 + + + + + + Opponents + 84 + + + + + Petitions + 84 + + + + + Press + 2002-2002 + + + + 2002 + 84 + + + + + News articles + 2002 + 84 + + + + + News articles and likely voter survey + 2002 + 84 + + + + + + Quick response binder, R. Arendberg) + 2002 + 84 + + + + + Quick response index-Carl's positions/votes by subject + 2 folders + 2002 + 84 + + + + + Rocky Raczkowski + 1997-2002 + + + + Email update + September 2002 + 84 + + + + + Opposition + April-September 2002 + 84 + + + + + Voting record + 1997-2002 + 84 + + + + + + Research + 84 + + + + + Redistricting + 84 + + + + + Speeches + 2002 + + + + 2002 + 84 + + + + + TP + 2002 + 84 + + + + + TP + August-September 2002 + 84 + + + + + + Unity + 2002 + 84 + + + + + Audiovisual materials + + + + C. Levin MPA + 1 videocassettes (VHS) + 2002 October 09 + 1105 + + + + + Campaign Profile w/Saah Kellog-Booth & I/V w/NYT on Iraq + Wash + Post + 1 audiocassettes + 2002 September 27 + 1094 + + + + + Carl Levin + 1 videocassettes (Betacam) + 2002 September 28 + 1085 + + + + + Carl Levin for Senate 2002: "Bill of Rights" CLETV01; "Bridge" CLETV02; + "Common Criminal" CLETV03; "Common Criminal" (No GRFX) + 1 videocassettes (Betacam) + 2002 + 1106 + + + + + Carl/Rocky debate. Grand Valley + 1 videocassettes (VHS) + 2002 October 06 + 1076 + + + + + Lawrence Technoloical University presents Detroit Economic Club Luncheon + Talk - A Debate Between Candidates For U.S. Senator: The Honorable Carl Levin (D), + The Honorable Andrew "Rocky" Raczkowski (R) + 1 videocassettes (VHS; 1:00:47) + 2002 October 07 + 1071 + + + + + Levin for Senate Rolls: 1,2,3 + 1 videotape + 2002 September 30 + 1093 + + + + + Levin for Senate Rolls: 4,5 + 1 videotape + 2002 September 30 + 1093 + + + + + Martin Sheen for Carl Levin + 1 videocassettes (VHS) + 2002 September + 1085 + + + + + NARAL + 1 videocassettes (Mini-DV) + 2002 October 14 + 1085 + + + + + Sen. Carl Levin: election remarks. Harriman Communications Center, + Washington, DC + 1 videocassettes (Betacam) + 2002 October 04 + 1071 + + + + + Senator Carl Levin + 1 audiocassettes + 2002 October 27 + 1094 + + + + + UAW President Ron Gettelfinger's Comments Re: Election 2002. Public + Relations 8000 E. Jefferson Ave. Detroit, MI 48214 (313) 926-5291 + 1 videocassettes (Betacam; 1:21) + 2002(?) + 1085 + + + +
    + + + 2008 + + + + Certificate of Election + November 2008 + 84 + + + + + Election night photographs + 2008 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Invitation-election night reception + November 4, 2008 + 84 + + + + + Press + 2008 + + + + Media + + + + APTA press briefing information + 2008 + + +

    (Engineered Machined Products (EMP) Mini Hybrid; data CD)

    +
    +
    + + + Media files, public files, and Avid Project + 2008 + + +
    +
    + + + Audiovisual materials + + + + Carl Levin "Why I'm Running" + 1 videocassettes (Betacam) + 2008 October 16 ? + 1106 + + + + + Carl Levin for Senate 2008: LEVTV10 Move Forward Flint Alpena; LEVTV11 + Move Forward Detroit; TV12 Move For. Grand Rapids; TV13 Move For. Lansing; TV14 + Move For. Marquette; TV15 Move For. Traverse City. TV16 Change Direction Web + Video. + 1 videocassettes (Betacam) + 2008 + 1106 + + + + + Levin for Senate "Moving Forward" + 1 audiocassettes (digital audio tape) + 2008 October 05 + 1093 + + + + + Levin for Senate Rolls: 1,2 + 1 videotape + 2008 October 04/2008 + October 06 + 1093 + + + + + Levin for Senate Rolls: 3,4 + 1 videotape + 2008 October 04/2008 + October 06 + 1093 + + + + + Levin for Senate. Struble + 1 videocassettes (Betacam) + 2008 October 06 + 1069 + + + + + Levin for Senate: Rolls: 5,6 + 1 videotape + 2008 October 04 + 1093 + + + +
    + + + Sander Levin + 1970-1994 + + + + Gubernatorial-1970 + + + + Campaign + 1970 + 84 + + + + + Campaign + June 1970 + 84 + + + + + Election + November 3, + 1970 + 84 + + +

    (Detroit computer print-out)

    +
    +
    +
    + + + Gubernatorial-1974 + 1971-1974 + + + + Board of Ethics correspondence + 1974 + 85 + + + + + Campaign letters + 1973 + 85 + + + + + Central City Lafayette Park East + undated + 85 + + + + + Church + undated + 85 + + + + + Catholic churches-Northeast + 1974 + 85 + + + + + Civil Rights in MI + 2 folders + 1971-1972 + 85 + + + + + Copies of Carl's letters and co-ord. for Sandy's letter + C.C.L.P&E + 1974 + 85 + + + + + Democratic delegates -- City of Detroit + 1974 + 85 + + + + + Detroit area divisions and Milliken on James Damman + undated + 85 + + + + + Donations + 1974 + 85 + + +

    (original folder title Chuck Paurtz)

    +
    +
    + + + Election primary-Wayne County + August 6, 1974 + 85 + + + + + General contributions + 1973 + 85 + + + + + IRS + 1974 + 85 + + + + + Lafayette Park, Central City, and East + 1974 + 85 + + + + + Law offices -- Jaffe, Snider, Raitt, Garrat, and Heuer + 2 folders + 1974 + 85 + + + + + Lawyers for Levin + undated + 85 + + + + + Levin endorsement + 1974 + 85 + + + + + Levin for Governor + 1974 + 85 + + + + + Memoranda and correspondence + May-June 1974 + 85 + + + + + Michigan Democratic Convention documents and draft of Sandy' + address + 1974 + 85 + + + + + Milliken information, news articles, and Carl notes + 1974 + 85 + + + + + Milliken and Sandy campaign and Carl notes + August-September 1974 + 85 + + + + + Miscellaneous + 2 folders + 1973 + 85 + + + + + Miscellaneous + October 1974 + 85 + + + + + Miscellaneous 1 + 1974 + 86 + + +

    (Includes photograph of Sandy)

    +
    +
    + + + Miscellaneous 2 + 1974 + 86 + + + + + Neighborhood letter + 1973 + 86 + + + + + North + undated + 86 + + + + + North East + 1974 + 86 + + + + + North West + 1974 + 86 + + + + + Policies + 2 folders + 1971 + 86 + + + + + Poll + January-April 1972 + 86 + + + + + Press (Detroit) + November 1972 + 86 + + + + + Re-election campaign + + + + BJ list + 1973 + 86 + + + + + DB list + 1973 + 86 + + + + + L list + 1973 + 86 + + + + + + Sander Levin campaign and Hettiger conflict of interest + cover-up + 1974 + 86 + + + + + Schedule and churches + August 4, 1974 + 86 + + + + + Sent mail + 1974 + 86 + + + + + Support for Sandy + 1973-1974 + 86 + + + + + Vietnam Resolution + April 1971 + 86 + + +

    (Detroit City Council)

    +
    +
    +
    + + + Gubernatorial-undated + + + + Chronicle endorsement + undated + 86 + + + + + Eastern market + 86 + + + + + Levin for Governor Committee account + 86 + + + + + Michigan needs Levin account + 86 + + + + + Primary parties + 2 folders + 86 + + + + + + Congressional + 1986-1994 + + + + Campaign + 2 folders + 1994 + 86 + + + + + Miscellaneous + 1994 + 86 + + + + + Post-election analysis, (Mellman) + 1994 + 86 + + + + + Presentation of Findings from Survey Research for the Sander Levin + Congress Campaign (Mellman Group) + 86 + + + + + Reappointment + 1986-1992 + 86 + + + + + Re-districting + 1986-1992 + 86 + + + + + Tax vote + 1994 + 86 + + + +
    + + + Other Candidates + 1970-2014 + + + + Election + 3 folders + 1972 + 87 + + + + + Ed Muskie + 1972 + + + + 1st Congressional district + 87 + + + + + 13th Congressional district + 87 + + + + + 14th Congressional district + 87 + + + + + 16th Congressional district + 87 + + + + + 17th Congressional district + 87 + + + + + Elections + 4 folders + 1972 + 87 + + + + + Black leadership meeting with Myrlie Evers + 1972 + 87 + + + + + Carl Levin -- Muskie issues + 1972 + 87 + + + + + Muskie documents + 3 folders + 1972 + 87 + + + + + Names -- regional sources + 1972 + 87 + + + + + Speeches + 3 folders + 1970s + 87 + + + + + Student lists + 1972 + 87 + + + + + + The Reagan Administration Claims versus the Record + 1984 + 87 + + + + + Election reform + 1986-1992 + 88 + + + + + Political + 2 folders + 1986-1992 + 88 + + + + + Dukakis for President + 1988 + + + + Campaign + 2 folders + 1988 + 88 + + + + + Dukakis and Levin + 1988 + 88 + + + + + Key + September-October 1988 + 88 + + + + + Levin statement and memo on defense + 1988 + 88 + + + + + Miscellaneous + 1988 + 88 + + + + + Presidential + 1988 + 88 + + + + + Speeches + 88 + + + + + + Clinton and campaign reform, Fall + 2 folders + 1992 + 88 + + + + + Riegle for Senate Committee report of Receipts and + Disbursements + 3 folders + 1993 + 89 + + + + + Campaign + 1994 + 93 + + + + + Setting the Record Straight -- False Claims and Facts on President's + Clinton's Record + April 26, 1996 + 89 + + + + + Dole Presidential tax cut + 1996 + 89 + + + + + Michigan education tech workshops, statewide fiber optics, and net + days + 2 folders + 1997 + 89 + + + + + Nationwide primary and caucus dates, strategy plans, Abraham-Fieger, and + State Democratic party info + 2 folders + 1997-1999 + 89 + + + + + Women on the Road + November 16, 1999 + 89 + + + + + Delegate selection plan + 1999 + 89 + + + + + Coordinated campaign, (Michigan) + 2000 + 89 + + + + + Michigan Senate, (Stabenow and Abraham) + 2000 + 89 + + + + + George W. Bush's Blueprint -- Wrong for America, (DNC) + January 2001 + 89 + + + + + 100 Days of Bush, (DNC) + April 2001 + 89 + + + + + Races folder 1 + 2002 + 89 + + + + + Races folder 2 + 2002 + 89 + + +

    (Includes photograph of Bill Clinton)

    +
    +
    + + + Delegate selection process and resumes for Levin regional + representative + 2003 + 89 + + + + + Presidential election + 2004 + + + + Most important + 89 + + + + + Second most important + 90 + + + + + Least important I + 90 + + + + + Least important II + 5 sub-folders + 90 + + + + + Levin speaking notes pertaining to election + 90 + + + + + Levin notes pertaining to election + 2 folders + 90 + + + + + Levin notes and Kerry-Bush debate outline + 90 + + + + + + Campaign + 2006 + 90 + + +

    (Carl's writing)

    +
    +
    + + + General election McCain -- Carl's writings + 4 subfolders + 2008 + 91 + + + + + Campaign-other candidates + 2010 + 91 + + + + + Election -- Medicare Challenge and RNC lawsuit + 2 folders + 2014 + 91 + + +

    (Carl's writing)

    +
    +
    + + + Democratic National Committee (DNC) + 1998-2000 + + + + 1998 + 91 + + + + + Convention + 2000 + 91 + + + + + Michigan Precinct Targeting prepared for Democratic National Committee -- + NCEC Services Inc. + 5 folders + 91 + + + + + + Democratic Senatorial Campaign Committee (DSCC) + 1997-2000 + + + + 2000 + 92 + + + + + Activity + 1998 + 92 + + + + + Event + May 21, 1997 + 92 + + + + + Event -- Michigan + 92 + + + + + Fall dinner + October 21, + 1997 + 92 + + + + + Father Cunningham and DSCC dinner in Chicago, (Focus: HOPE) + July-August 1997 + 92 + + + + + Midwest Leadership lunch + May 20, 2000 + 92 + + + + + Request pending + 1997 + 92 + + + + + Taste of States + April 17, 1997 + 92 + + + + + Taste of States + 1998 + 92 + + + + + + Federal Election Commission (FEC) + 2000 + 92 + + + + + Gordon and Schwenkmeyer + 92 + + + + + House Democrats letter, (Michigan) + November 1999 + 92 + + + + + House Democrats event -- New York + February 2000 + 92 + + + + + Levin + 1997-2000 + + + + Senator Levin attendance record, (Democratic Policy Committee Vote + Information) + January 24-April 14, 2000 + 92 + + + + + Birthday mailing + 2000 + 92 + + + + + Dem meeting + January 9, 1999 + 92 + + + + + Friends of Senator Carl Levin (FOSCL) + 1997 + 92 + + + + + Levin campaign finance disclosure and other people's + elections + April-June 1998 + 92 + + + + + Returned check to contributors, June + December 1998 + 92 + + + + + Www.carllevin.org + May 2000 + 92 + + + + + Senator Levin votes, (Democratic Policy Committee Vote + Information) + 1999 + 92 + + + + + + Levin endorsement/support of other candidates + 1997-2000 + + + + 3 senators event + 1998 + 92 + + + + + Jim Berryman + 92 + + + + + Tom Carper + January 21, + 2000 + 92 + + + + + Carper for Senate event, January + June 2000 + 92 + + + + + Becky Higbie -- Michigan 12th Senate district + 1997 + 92 + + + + + Jeff Jack and Ted Kennedy + January-March 1997 + 92 + + + + + Jeff Jenks + 1998 + 92 + + + + + Dottie Lamm + August 17, 1998 + 92 + + + + + Mary Landrieu + April 16, 1998 + 92 + + + + + Sandy Levin (SML) + 2 folders + 1998 + 92 + + + + + Dennis Moore KS-03 + July 19, 1998 + 92 + + + + + Patty Murray + June 1997 + 92 + + + + + Jay Nixon + 1997-1998 + 92 + + + + + Gary Peters + 1998 + 92 + + + + + Ed Ranger + 1998 + 92 + + + + + Ron Wyden + June 3, 1998 + 92 + + + + + Senate colleagues -- calls and activities + 1998 + 92 + + + + + Stabenow D.C. event with Clinton + March 28, 2000 + 92 + + + + + West Michigan house democrats + July 18, 1998 + 92 + + + + + + Majority + 2000 April 16 + 1999 + 92 + + + + + Michigan + 1991-1994 + 92 + + + + + Michigan Democratic Party (MDP) + 1995-2000 + + + + 1997-1998 + 92 + + + + + Coordinated campaign + 1998 + 92 + + + + + Chair selection + 1995 + 92 + + + + + Finance Committee + 1997 + 92 + + + + + Leadership + 1999-2000 + 92 + + + + + Tipper Gore and MDP + November 6, + 1997 + 92 + + + + + + Miscellaneous files + 1986-2000 + + + + ABD Credit (fundraising) + 93 + + + + + Apple and asparagus + 1986-1992 + 93 + + + + + Defense procurement-Levin file + June-July 1988 + 93 + + + + + History of Campaign Finance Reform + 1996 + 93 + + + + + Payment for Congress + 1999-2000 + 93 + + +

    (Includes information on retirement benefits and congressional pensions)

    +
    +
    + + + Wedtech-Levin file + May 1987-January 1988 + 93 + + + + + Wedtech and Meese resignation + April-July 1988 + 93 + + +
    + + + Photograph -- Carl and Barbara Levin at Democratic National + Convention + 2004 + 93 + + + + + Polls + 1989-2000 + + + + 1989-1995 + 93 + + +

    (Includes some Levin related)

    +
    +
    + + + 1992-1996 + 93 + + +

    (Includes some Levin related)

    +
    +
    + + + Polling earlier + 2000 + 93 + + +
    + + + Audiovisual materials + + + + Sander Levin for Congress "Questions - Revised" + 1 videocassettes (VHS) + 1996 October 25 + 1107 + + + +
    + + + Audiovisual materials + + + + 1 Levin for Senate. 1. General 1 :30; 2. General 2 :30 + 1 videotape (2 in.) + undated + 1103 + + + + + Announcement Coverage: 1. Announcement (12 minute version); 2. TV7; 3. + TV12; 4. TV5; 5. TV13; 6. TV7&4 + 1 videocassettes (VHS) + undated + 1095 + + + + + Anthony - Levin Endorsement + 1 audiocassettes + undated + 1095 + + + + + Caucus For Carl Paid for by Friends of Senator Carl Levin + 1 videocassettes (VHS; 0:25:37) + undated + 1107 + + + + + From WILX-TV/WJC)-AM To: Northland Towers West, ATTN: Toby Berkowitz Carl + Levin's Office. Levin for Senate c/1 - #21-(Gen) :30 766; c/2 - #22 - gen :30 771; + c/3 #23 - (Gen) :30 773; c/4 - #24 - 30 (Welfare) 778 + 1 videotape (2 in.) + undated + 1091 + + + + + Levin Comm.: Levin For Senate2165 West Big Beaver Rd Troy Michigan - + 48084 + 1 videotape (2 in.) + undated + 1091 + + + + + MEA Screening & Endorsement Interview + 1 audiocassettes + undated + 1095 + + + + + musifex inc. Concept "Carl Levin" NARR Revised. Safety + 1 audiotape (7.5 ips; 7 in.) + undated + 1098 + + + + + Statewide Radio Mandate Campaign Media + 1 audiocassettes + undated + 1095 + + + + + To Bob Seltzer - Levin for Senate CTEE Dtroit. Spots # 6,7,8,9: -Tax + Cutter; -Sen 10R Contract; - Sen 10R #2; -Bureacracy + 1 videotape (2 in.) + undated + 1091 + + + + + WXYZ TV INc.To: Levin for Senate 15139 W. 8 mile Rd Detroit, Michigan + 48235 + 1 videotape (0:05:00) + undated + 1098 + + + + + HHH Freezes + 1 film reels (16 mm) + circa 1978 + 1119 + + + + + Group 1 + + + + Headlines + 1 film reels (16 mm) + circa 1978 + 1116 + + + + + Farm + 1 film reels (16 mm) + circa 1978 + 1116 + + + + + + Group 2 + + + + HUD sign + 1 film reels (16 mm) + circa 1978 + 1116 + + + + + Untitled 1 + 1 film reels (16 mm) + circa 1978 + 1116 + + + + + Interview (Fr. Nader) + Farm + 1 audiotape (sound tracks) + circa 1978 + 1116 + + + + + + Group 3 + + + + The Family + 1 film reels (16 mm) + circa 1978 + 1122 + + + + + The Family + 1 audiotape (sound tracks) + circa 1978 + 1122 + + + + + Music Dubs + 1 audiotape (sound tracks) + circa 1978 + 1122 + + + + + Levin Tag + 1 audiotape (sound tracks) + circa 1978 + 1122 + + + + + + Group 4 + + + + New Levin + 1 audiotape (sound tracks) + circa 1978 + 1122 + + + + + Levin Children + 1 audiotape (sound tracks) + circa 1978 + 1122 + + + + + + Group 5 + + + + Guitar + 1 audiotape (sound tracks) + circa 1978 + 1118 + + + + + Untitled 2 + 1 audiotape (sound tracks) + circa 1978 + 1118 + + + + + + Group 6 + + + + Untitled 3 + 1 film reels (16 mm) + circa 1978 + 1116 + + + + + Narr Show McSmith is blind + 1 audiotape (sound tracks) + circa 1978 + 1116 + + + + + Last farm + 1 film reels (16 mm) + circa 1978 + 1116 + + + + + + Group 7 + + + + Reel w Scr Pres + 1 audiotape (sound tracks) + circa 1978 + 1121 + + + + + Houses - stills + 1 film reels (16 mm) + circa 1978 + 1121 + + + + + MS + Dog + 1 film reels (16 mm) + circa 1978 + 1121 + + + + + Levin music + 1 audiotape (sound tracks) + circa 1978 + 1121 + + + + + + Group 8 + + + + The Family + 1 audiotape (sound tracks) + circa 1978 + 1121 + + + + + MS + Dog + 1 audiotape (sound tracks) + circa 1978 + 1121 + + + + + Levin - Demolition + 1 film reels (16 mm) + circa 1978 + 1121 + + + + + EFX + 1 audiotape (sound tracks) + circa 1978 + 1121 + + + + + + Radio - Levin Narr + 1 audiotape (sound tracks) + circa 1978 + 1116 + + + + + Group 9 + + + + Interviews + 1 audiotape (sound tracks) + circa 1978 + 1116 + + + + + Market + 1 audiotape (sound tracks) + circa 1978 + 1116 + + + + + + Levin trims + 1 film reels (16 mm) + circa 1978 + 1116 + + + + + Farmers market + 1 film reels (16 mm) + circa 1978 + 1116 + + + + + Group 10 + + + + Untitled 4 + 1 film reels (16 mm) + circa 1978 + 1120 + + + + + Levin MOS + 1 film reels (16 mm) + circa 1978 + 1120 + + + + + + Sync acts + 1 film reels (16 mm) + circa 1978 + 1116 + + + + + Group 11 + + + + Music + 1 audiotape (sound tracks) + circa 1978 + 1116 + + + + + Levin Narr-Lewman + 1 audiotape (sound tracks) + circa 1978 + 1116 + + + + + Untitled 5 + 1 audiotape (sound tracks) + circa 1978 + 1116 + + + + + + Group 12 + + + + 4 1/2 Levin EFX R HDS + 1 audiotape (sound tracks) + circa 1978 + 1117 + + + + + Untitled 6 + 1 film reels (16 mm) + circa 1978 + 1117 + + + + + Levin outs. + 1 audiotape (sound tracks) + circa 1978 + 1117 + + + + + Untitled 7 + 1 audiotape (sound tracks) + circa 1978 + 1117 + + + + + Untitled 8 + 1 film reels (16 mm) + circa 1978 + 1117 + + + + + + Untitled 9 + 1 film reels (16 mm) + circa 1978 + 1119 + + + + + Untitled 10 + 1 audiotape (sound tracks) + circa 1978 + 1116 + + + + + Interviews + 1 film reels (16 mm) + circa 1978 + 1118 + + + + + Group 13 + + + + Untitled 11 + 1 audiotape (sound tracks) + circa 1978 + 1122 + + + + + Untitled 12 + 1 audiotape (sound tracks) + circa 1978 + 1122 + + + + + + Group 14 + + + + Levin # 10 + 1 film reels (16 mm) + circa 1978 + 1117 + + + + + Levin # 11 + 1 film reels (16 mm) + circa 1978 + 1117 + + + + + Levin # 12 + 1 film reels (16 mm) + circa 1978 + 1117 + + + + + Levin # 13 + 1 film reels (16 mm) + circa 1978 + 1117 + + + + + + Group 15 + + + + Levin # 14 + 1 film reels (16 mm) + circa 1978 + 1117 + + + + + Levin # 17 + 1 film reels (16 mm) + circa 1978 + 1117 + + + + + Levin # 18 + 1 film reels (16 mm) + circa 1978 + 1117 + + + + + Levin # 19 + 1 film reels (16 mm) + circa 1978 + 1117 + + + + + + Group 16 + + + + Levin # 1 + 1 film reels (16 mm) + circa 1978 + 1117 + + + + + Levin # 2 + 1 film reels (16 mm) + circa 1978 + 1117 + + + + + Levin # 3 + 1 film reels (16 mm) + circa 1978 + 1117 + + + + + Levin # 4 + 1 film reels (16 mm) + circa 1978 + 1117 + + + + + Levin # 5 + 1 film reels (16 mm) + circa 1978 + 1117 + + + + + + Group 17 + + + + Levin # 6 + 1 film reels (16 mm) + circa 1978 + 1122 + + + + + Levin # 7 + 1 film reels (16 mm) + circa 1978 + 1122 + + + + + Levin # 8 + 1 film reels (16 mm) + circa 1978 + 1122 + + + + + Levin # 9 + 1 film reels (16 mm) + circa 1978 + 1122 + + + + + + Group 18 + + + + Untitled 13 + 1 film reels (16 mm) + circa 1978 + 1117 + + + + + Untitled 14 + 1 film reels (16 mm) + circa 1978 + 1117 + + + + + + Levin for Senate + 1 film reels (16 mm) + circa 1978 + 1117 + + + + + Group 19 + + + + Levin for Senate + 1 film reels (16 mm) + circa 1978 + 1118 + + + + + Untitled 15 + 1 film reels (16 mm) + circa 1978 + 1118 + + + + + Untitled 16 + 1 film reels (16 mm) + circa 1978 + 1118 + + + + + + Levin # 22 + 1 film reels (16 mm) + circa 1978 + 1122 + + + + + Levin # 21 + 1 film reels (16 mm) + circa 1978 + 1121 + + + + + Levin # 16 + 1 film reels (16 mm) + circa 1978 + 1117 + + + + + A Roll - OKG ECO 4 1/2 Levin Concept Asso. + 1 film reels (16 mm) + circa 1978 + 1117 + + + + + Untitled 17 + 1 film reels (16 mm) + circa 1978 + 1121 + + + + + Levin for Senate + 1 film reels (16 mm) + circa 1978 + 1117 + + + + + Group 20 + + + + Levin # 27 + 1 film reels (16 mm) + circa 1978 + 1118 + + + + + Levin # 28 + 1 film reels (16 mm) + circa 1978 + 1118 + + + + + Levin # 29 + 1 film reels (16 mm) + circa 1978 + 1118 + + + + + + Group 21 + + + + Levin General - Narration - TRX + 1 audiotape (soundtracks) + circa 1978 + 1118 + + + + + Levin General - Syn Voice. 2. - TRX + 1 audiotape (soundtracks) + circa 1978 + 1118 + + + + + + Group 22 + + + + Concept Assoc. Sync + 1 audiotape (soundtracks) + circa 1978 + 1122 + + + + + Concept Assoc. Levin Narr. TRX + 1 audiotape (soundtracks) + circa 1978 + 1122 + + + + + Levin Genral - Music - TRX + 1 audiotape (soundtracks) + circa 1978 + 1122 + + + + + + Group 23 + + + + Spot - Narrator - Levin spot + 1 audiotape (soundtracks) + circa 1978 + 1118 + + + + + Untitled 18 + 1 audiotape (soundtracks) + circa 1978 + 1118 + + + + + Interviews trx + 1 audiotape (soundtracks) + circa 1978 + 1118 + + + + + + Group 24 + + + + Levin C Roll 1 Interviews PIX Prominent Citizens + 1 film reels (16 mm) + circa 1978 + 1118 + + + + + The Bingo Game w/p HDS + 1 audiotape (soundtracks) + circa 1978 + 1118 + + + + + + Group 25 + + + + Levin CR 14, 12 UAW, Speech Sound + 1 audiotape (soundtracks) + circa 1978 + 1119 + + + + + Levin CR 2, 3 Wayne State PIX Students + 1 film reels (16 mm) + circa 1978 + 1119 + + + + + w/p Levin Interviews CR 22-23 + 1 film reels (16 mm) + circa 1978 + 1119 + + + + + + Group 26 + + + + Levin CR 14, 12 UAW Speech Pix + 1 film reels (16 mm) + circa 1978 + 1118 + + + + + Levin C Roll I Interviews PIX Prominent Citizens + 1 audiotape (soundtracks) + circa 1978 + 1118 + + + + + + Group 27 + + + + Levin General - Sync voice - TRX + 1 audiotape (soundtracks) + circa 1978 + 1118 + + + + + Levin General - Music II - TRX + 1 audiotape (soundtracks) + circa 1978 + 1118 + + + + + Levin General - Music I - TRX + 1 audiotape (soundtracks) + circa 1978 + 1118 + + + + + + Group 28 + + + + Tape 1 C Levin + 1 audiotape (soundtracks) + circa 1978 + 1118 + + + + + MOS + 1 film reels (16 mm) + circa 1978 + 1118 + + + + + + Group 29 + + + + Untitled 19 + 1 film reels (16 mm) + circa 1978 + 1118 + + + + + Animation + 1 film reels (16 mm) + circa 1978 + 1118 + + + + + Narrator - Levin + 1 audiotape (soundtracks) + circa 1978 + 1118 + + + + + + Group 30 + + + + Comcept. Asst. Stephens Music TRX + 1 audiotape (soundtracks) + circa 1978 + 1118 + + + + + "Levin" Levin General - TRX + 1 audiotape (soundtracks) + circa 1978 + 1118 + + + + + Untitled 20 + 1 film reels (16 mm) + circa 1978 + 1118 + + + + + + Group 31 + + + + Color Interview Negative + 1 film reels (16 mm) + 1978 June 14 + 1118 + + + + + 4 1/2 Levin Negative Sound Track + 1 film reels (16 mm) + 1978 June 14 + 1118 + + + + + + Group 32 + + + + "Levin" Levin General spot + 1 audiotape (soundtracks) + circa 1978 + 1121 + + + + + Levin Ed. ted + 1 film reels (16 mm) + circa 1978 + 1121 + + + + + + Group 33 + + + + Levin Interviews + 1 audiotape (soundtracks) + circa 1978 + 1119 + + + + + Levin Wayne State Sound Students + 1 audiotape (soundtracks) + circa 1978 + 1119 + + + + + The Bingo Game w/p HDS + 1 film reels (16 mm) + circa 1978 + 1119 + + + + + + ORG Levin + 1 film reels (16 mm) + circa 1978 + 1118 + + + + + Levin # 26 + 1 film reels (16 mm) + circa 1978 + 1120 + + + + + Group 34 + + + + Untitled 21 + 1 film reels (16 mm) + circa 1978 + 1121 + + + + + ECO Orig - 'C' Roll - 4 1/2 Levin + 1 film reels (16 mm) + circa 1978 + 1121 + + + + + Levin Original + 1 film reels (16 mm) + circa 1978 + 1121 + + + + + Sample + 1 film reels (16 mm) + circa 1978 + 1121 + + + + + Levin + 1 film reels (16 mm) + circa 1978 + 1121 + + + + + + Interviews Levin + 1 film reels (16 mm) + circa 1978 + 1121 + + + + + MRS Geneen (1 of 2) + 1 film reels (16 mm) + circa 1978 + 1121 + + + + + MRS Geneen (2 of 2) + 1 audiotape (soundtracks) + circa 1978 + 1121 + + + + + Untitled 22 + 1 film reels (16 mm) + circa 1978 + 1121 + + + + + Untitled 23 + 1 audiotape (soundtracks) + circa 1978 + 1121 + + + + + Fresh stock + 1 audiotape (soundtracks) + circa 1978 + 1117 + + + + + Group 35 + + + + Eco Concept Roll C + 1 film reels (16 mm) + circa 1978 + 1118 + + + + + AA + 1 film reels (16 mm) + circa 1978 + 1118 + + + + + + Group 36 + + + + Levin spots Neg. Trk. + 1 film reels (16 mm) + 1978 July 07 + 1121 + + + + + Levin spots Color orig. + 1 film reels (16 mm) + 1978 July 07 + 1121 + + + + + + Group 37 + + + + Concept Levin Radio "A'' + 1 audiotape (soundtracks) + circa 1978 + 1120 + + + + + Untitled 24 + 1 audiotape (soundtracks) + circa 1978 + 1120 + + + + + Levin Sync TRX + 1 audiotape (soundtracks) + circa 1978 + 1120 + + + + + Levin AL + 1 film reels (16 mm) + circa 1978 + 1120 + + + + + + Group 38 + + + + Carl and students + 1 film reels (16 mm) + circa 1978 + 1120 + + + + + Carl and students + 1 audiotape (soundtracks) + circa 1978 + 1120 + + + + + Sound outs + 1 audiotape (soundtracks) + circa 1978 + 1120 + + + + + Doggie + 1 audiotape (soundtracks) + circa 1978 + 1120 + + + + + + Group 39 + + + + Levin (end - pix) HDS + 1 audiotape (soundtracks) + circa 1978 + 1116 + + + + + Concept Levin Radio "B" + 1 audiotape (soundtracks) + circa 1978 + 1116 + + + + + + Group 40 + + + + Sound Trims Levin HDS + 1 audiotape (soundtracks) + circa 1978 + 1116 + + + + + Test + 1 film reels (16 mm) + circa 1978 + 1116 + + + + + Levin 1 + 1 film reels (16 mm) + circa 1978 + 1116 + + + + + + Group 41 + + + + Levin CR5 McComb College + 1 film reels (16 mm) + circa 1978 + 1119 + + + + + Mom & Sis + 1 film reels (16 mm) + circa 1978 + 1119 + + + + + Mom & Sis + 1 audiotape (soundtracks) + circa 1978 + 1119 + + + + + Gwelber(?) Trims + 1 audiotape (soundtracks) + circa 1978 + 1119 + + + + + Bulldozer + 1 audiotape (soundtracks) + circa 1978 + 1119 + + + + + Dog Story + 1 audiotape (soundtracks) + circa 1978 + 1119 + + + + + Levin + 1 audiotape (soundtracks) + circa 1978 + 1119 + + + + + + Group 42 + + + + Levin Grossman's Pix (1 of 2) + 1 audiotape (soundtracks) + circa 1978 + 1120 + + + + + Levin Grossman's Pix (2 of 2) + 1 film reels (16 mm) + circa 1978 + 1120 + + + + + + Group 43 + + + + Levin Interviews Pix + 1 film reels (16 mm) + circa 1978 + 1116 + + + + + Levin Interviews Sound + 1 film reels (16 mm) + circa 1978 + 1116 + + + + + + Group 44 + + + + Levin + 1 audiotape (soundtracks) + circa 1978 + 1119 + + + + + Bulldozer + 1 audiotape (soundtracks) + circa 1978 + 1119 + + + + + + Group 45 + + + + Ext. Interviews HUD Pix + 1 film reels (16 mm) + circa 1978 + 1120 + + + + + Ext. Interviews HUD Sound + 1 audiotape (soundtracks) + circa 1978 + 1120 + + + + + + Group 46 + + + + Concept Associates trx + 1 audiotape (soundtracks) + circa 1978 + 1119 + + + + + Untitled 25 + 1 film reels (16 mm) + circa 1978 + 1119 + + + + + Old Levin title + 1 film reels (16 mm) + circa 1978 + 1119 + + + + + Concept Associates pic + 1 film reels (16 mm) + circa 1978 + 1119 + + + + + + Untitled 26 + 1 audiotape (soundtracks) + circa 1978 + 1116 + + + + + Levin radio "C" + 1 audiotape (soundtracks) + circa 1978 + 1120 + + + + + Radio - Music - Levin + 1 audiotape (soundtracks) + circa 1978 + 1120 + + + + + Market + 1 film reels (16 mm) + circa 1978 + 1120 + + + + + HDS - Pix - Trims - Levin + 1 film reels (16 mm) + circa 1978 + 1119 + + + + + Music + 1 audiotape (soundtracks) + circa 1978 + 1120 + + + + + Group 47 + + + + Levin Interviews - Suburbs, City Hall Sound + 1 audiotape (soundtracks) + circa 1978 + 1120 + + + + + Levin Interviews - Suburbs, City Hall Pix + 1 film reels (16 mm) + circa 1978 + 1120 + + + + + + Group 48 + + + + Levin Farmer + Land + 1 film reels (16 mm) + circa 1978 + 1119 + + + + + Levin Farmer + Land + 1 audiotape (soundtracks) + circa 1978 + 1119 + + + + + + Group 49 + + + + Levin on Camera + 1 audiotape (soundtracks) + circa 1978 + 1120 + + + + + Outs + 1 audiotape (soundtracks) + circa 1978 + 1120 + + + + + + Group 50 + + + + Levin Voice B HDS + 1 audiotape (soundtracks) + circa 1978 + 1120 + + + + + EFX + 1 audiotape (soundtracks) + circa 1978 + 1120 + + + + + + Group 51 + + + + Outs + 1 audiotape (soundtracks) + circa 1978 + 1122 + + + + + Last 1/2 of Shoot Outs + 1 film reels (16 mm) + circa 1978 + 1122 + + + + + + Wayne State Discussion + 1 film reels (16 mm) + circa 1978 + 1119 + + + + + Levin et al on Camera + 1 film reels (16 mm) + circa 1978 + 1120 + + + + + Wayne State Discussion HDS + 1 audiotape (soundtracks) + circa 1978 + 1119 + + + + + Levin Interview Outs + 1 film reels (16 mm) + circa 1978 + 1119 + + + +
    + + + Congressional Papers + 1964-2015 + + +

    The Congressional Papers series comprises the bulk of the collection and documents Carl + Levin's 36 years in the Senate. This series is organized into sub-subseries + chronologically by senatorial term and then by subject. Sub-subseries include: 1979-1984 + (96-98th Congress), 1985-1990 (99-101st Congress), 1991-1996 (102-104th Congress), + 1997-2002 (105-107th Congress), 2003-2008 (108-110th Congress), 2009-2014 (111-113th + Congress), and Multi-congress. Sub-subseries files are organized by subject and include + physical and digital office records: administrative and office files, records relating + to agriculture, animal protection, the arts, business, civil rights, crime and justice, + Defense and Armed Services Committee, economic policy, education, energy and natural + resources, foreign policy, Government and Governmental Affairs Committee, Government and + Homeland Security, health and human services, housing, human rights, immigration, + industry (including the auto industry), interior, labor, Michigan, photographs + (including photos taken by Senate photographers over the course of Levin's career), + press, speeches, trade, transportation, and veterans.

    +

    The bulk of the records documenting subjects in this series are the personal office + files of Senator Levin and his staff members. This material includes correspondence, + memoranda and office communications, staff files, topical files, schedules, trip + itineraries, background information, briefing books, reports, voting records, + legislative planning meetings, legislative achievements, action files, Levin's writings, + materials related to the official website, social media, newspaper clippings (including + scrapbooks of clippings digitized by his staff), press releases, press conferences, + op-ed articles, photographs, drafts of legislation, bills, speeches, floor statements, + hearings, interviews, annotated copies of printed material (including the Congressional + Record), and audiovisual materials.

    +

    In addition to Senator Levin's personal office files, records of his service on the + following committees is included in his congressional papers: Senate Armed Services + Committee (chairman), Government and Governmental Affairs Committee, Government and + Homeland Security, Subcommittee on Oversight of Government Management + (co-founder/chairman), Permanent Subcommittee on Investigations (chairman), Select + Committee on Intelligence, Committee on Energy and Natural Resources, Small Business and + Entrepreneurship, Great Lakes Task Force, Senate Auto Caucus, among other leadership and + committee positions. Records of his service on the Senate Armed Services Committee and + the Permanent Subcommittee on Investigations, include digital videos of hearings.

    +
    + + + 1979-1984 + + +

    (96th-98th Congress)

    +
    + + + Administrative and Office Files + 1970-1986 + + + + Accomplishments + 112 + + + + 1979 + 112 + + + + + 1981-1985 + 112 + + + + + January 24, + 1983 + 112 + + + + + + Action file-final issue briefs + 3 folders + 1983 + 112 + + + + + Awards-Certificates of appreciation + 1979-1981 + 112 + + + + + Bio + 1977-1981 + 112 + + + + + Case law + 1979 + 112 + + + + + Constituent service hours + + + + 1981 + + + + Miscellaneous + 112 + + + + + November + 112 + + + + + November-Jewish + 112 + + + + + November -- Saginaw + 112 + + + + + December + 112 + + + + + + 12 folders + 1982 + 112 + + + + + 1983 + + + + January + 112 + + + + + February + 112 + + + + + March + 112 + + + + + October-November + 112 + + + + + + + Correspondence + + + + Mail analysis + 1983-1984 + 112 + + + + + Abortion + 1979-1983 + 112 + + + + + ABSCAM + February 1980 + 112 + + + + + Adoption subsidy + 1979-1980 + 112 + + + + + Advisory groups + 1979-1980 + 112 + + + + + Affirmative action + September 1979 + 112 + + +

    (Professor Carl Cohen)

    +
    +
    + + + Airport parking + 1981-1983 + 112 + + + + + Alaska + + + + 1979-1981 + 112 + + +

    (Large map of Alaska just behind folder)

    +
    +
    + + + 2 folders + 1980 + 112 + + + + + Prints + undated + 112 + + +

    (Includes photograph negatives and prints of negatives strips)

    +
    +
    +
    + + + Alcoholism-Michigan Council on Alcohol Problems + 1979 + 112 + + + + + Americans for Democratic Action (ADA) + 1981-1983 + 113 + + + + + Amtrak + September 13, + 1979 + 113 + + + + + Ani-trust + June 5, 1980 + 113 + + + + + Armed Services Committee (SASC) + + + + 1979 + 1984 + 113 + + + + + 1980 + 113 + + + + + Middle East trip + 5 folders + December 1980 + 113 + + + + + 1981 + 113 + + + + + 1982 + 113 + + + + + 1983 + 113 + + + + + + Armenians + 1980 + 113 + + + + + Armenians (in America) + June 1983 + 113 + + + + + Asia + January-February 1979 + 113 + + + + + Auto industry + + + + 1980-1981 + 113 + + + + + 1981 + 113 + + + + + 1982-1983 + 113 + + + + + + Bios for directories + 1981-1985 + 113 + + + + + Biography + 1983 + 113 + + +

    (Includes photographs)

    +
    +
    + + + Bucks-forwarded to relevant departments + 113 + + + + + 1983-1984 + 113 + + + + + Bucks completed-forwarded to relevant departments + 1980-1981 + 113 + + + + + Budget + 1979-1983 + 113 + + + + + Bureaucracy + 1981 + 113 + + + + + Busing-Johnston amendment + 1981 + 113 + + + + + Cambodia + 1980 + 113 + + +

    (Includes prints of photographs)

    +
    +
    + + + Cape Cod + 1981 + 113 + + + + + Census data (Michigan) + 1970-1980 + 114 + + + + + Central Intelligence Agency (CIA) + 1979 + 1983 + 114 + + + + + Certificates and degrees + 1981-1985 + 114 + + + + + Chaplain of House of Representatives + 1981-1985 + 114 + + + + + Chrysler + 3 folders + 1979 + 114 + + + + + Chrysler + 1979-1981 + 114 + + + + + Civil defense + 1980 + 114 + + + + + Civil defense + 1981 + 114 + + + + + CKLW radio station + 1982 + 114 + + + + + Coast Guard + September 20, + 1980 + 114 + + + + + Coast Guard + 1981 + 114 + + + + + Colleagues + + + + 8 folders + 1979 + 114 + + + + + 2 folders + 1979-1980 + 115 + + + + + 9 folders + 1980 + 115 + + + + + 1981 + 116 + + + + + 1982 + 116 + + + + + 1983 + 116 + + + + + 2 folders + 1984 + 1111 + + + + + + Colleges and Universities + + + + Harvard + 1980 + 116 + + + + + Swarthmore College + June 1981 + 116 + + +

    (25th Reunion book)

    +
    +
    + + + Swarthmore College and Alumni Council minutes + 1979-1981 + 116 + + + + + Swarthmore College + 2 folders + 1981-1984 + 1112 + + +
    + + + Committee for 18 + May-June 1983 + 116 + + + + + Committees + + + + Assignments + + + + 1978-1979 + 116 + + + + + 1981 + 1983 + 116 + + + + + + Boren + 1981 + 116 + + + + + Levin's + 1979 + 116 + + + + + + Comprehensive Employment and Training Act (CETA) + July 1979 + 116 + + + + + Congratulations-Election win + 1984 + 116 + + + + + Congressional Alcohol Fuels Caucus + March 12, + 1981 + 116 + + + + + Congressional Record + 1984 + 116 + + + + + Courts-federal appointments, March + June 1979 + 116 + + + + + Crazy Horse memorial and stamp + 3 folders + 1981-1983 + 116 + + +

    (Includes photographs)

    +
    +
    + + + Credit card redlining + 1979 + 116 + + + + + Crime Caucus + January-February 1984 + 117 + + + + + Congressional Record + 1982-1983 + 117 + + + + + de la Torre, Edicio + 1980 + 117 + + +

    (Contains photographs)

    +
    +
    + + + Dearborn-Guide for New Business + 1979 + 117 + + +

    (Printed by the Dearborn Chamber of Commerce; Michigan)

    +
    +
    + + + Defense + + + + Draft + 1980 + 117 + + + + + MX Interim basing-NDAA + 1982 + 117 + + + + + Nuclear Regulatory Commission + 1980 + 117 + + + + + Nuclear war + 1982 + 117 + + + + + + Democratic Convention + 1980 + 117 + + + + + Democratic Convention-San Francisco + June-August 1984 + 117 + + + + + Democratic National Committee + 1981-1983 + 117 + + + + + Democratic National Strategy Council + 1980-1981 + 117 + + + + + Democratic Party issues + 1980-1981 + 117 + + + + + Democratic Senate Campaign Committee + 1983-1984 + 117 + + + + + Department of Defense (DOD) + + + + September 30, + 1981 + 117 + + + + + 1981 + 117 + + + + + + Department of Justice + August-September 1981 + 117 + + + + + Detroit area rapid and mass transportation-SEMTA + April-May 1979 + 117 + + + + + Detroit General Hospital-Carl Levin tribute statue + July-December 1979 + 117 + + + + + Detroit office + 1979-1980 + 117 + + + + + Detroit Riverfront Development + March 1982 + 117 + + + + + Direct elections + June-July 1979 + 117 + + + + + Disaster Assistance + August-September 1980 + 117 + + + + + District of Columbia (D.C.) voting rights-linkage + March 1980 + 117 + + + + + Dow Chemical + 1979 + 117 + + +

    (Midland, Michigan)

    +
    +
    + + + Driker, Eugene letters + 1980 + 117 + + +

    (Detroit, Michigan)

    +
    +
    + + + Drug abuse + June-July 1984 + 117 + + + + + Economic Club of Detroit + 1978-1979 + 117 + + + + + Economy + 1981-1982 + 117 + + + + + Edmund Burke School + 1980-1986 + 117 + + + + + Education + 1979-1981 + 117 + + + + + El Salvador + 1981 + 117 + + + + + Elections-public financing + March-April 1979 + 117 + + + + + Electric cars + 1979 + 117 + + + + + Embassy-Morocco + June 30, 1982 + 117 + + + + + Emergency medical services + January 13, + 1979 + 117 + + +

    (Grand Rapids, Michigan)

    +
    +
    + + + Energy + + + + 2 folders + 1979-1981 + 117 + + + + + 1982-1984 + 117 + + + + + Northeast/Midwest Coalition + August 18, + 1980 + 117 + + + + + + English language amendment + January-February 1983 + 117 + + + + + Environmental Protection Agency + 1979-1983 + 118 + + + + + Environmental Study Conference + 1979 + 1981 + 118 + + + + + Equalization tax + 1980 + 118 + + + + + Escanaba Office, (Michigan) + 1980-1984 + 118 + + + + + Exclusionary rule-4th amendment + 1981 + 118 + + + + + Extremely Low Frequency (ELF) + February 24, + 1983 + 118 + + + + + Endorsements + March 23, + 1981 + 118 + + + + + Federal Reserve letters + 1980-1981 + 118 + + + + + Federal Trade Commission + 1980 + 118 + + + + + Fundraising + 1983 + 118 + + + + + Genocide + 1979 + 118 + + + + + Governmental Affairs Committee (GAC) + + + + 1979-1980 + 118 + + + + + 1981-1984 + 118 + + + + + + Griffin, Robert + January 1979 + 118 + + +

    (Senator; Michigan)

    +
    +
    + + + Haig, Alexander + 1981 + 118 + + +

    (Includes Chile, Watergate, and other special issue summaries)

    +
    +
    + + + Hazardous waste + 1980 + 118 + + + + + Hispanics + 1981 + 118 + + + + + Holocaust + 1979-1980 + 118 + + + + + Hooker Chemical + 1979 + 118 + + + + + Hostages + 1981 + 118 + + + + + House hunting + 1979-1980 + 118 + + + + + Housing + 1980-1981 + 118 + + + + + Housing + 1982-1983 + 118 + + + + + Housing and Urban Development (HUD) + 1978-1980 + 118 + + + + + Human Rights + + + + 1984 + 118 + + + + + Genocide resolution + 1983 + 118 + + + + + + Hurry-up spending + August 1980 + 118 + + + + + Immigration + 1982-1984 + 118 + + + + + Immigration casework + 1979-1981 + 118 + + + + + Inauguration + December 1980-January 1981 + 118 + + + + + Inflation + 1979-1982 + 118 + + + + + Insurance redlining + 1979-1980 + 118 + + + + + Interfaith Hunger Appeal-Levin statement + 1981 + 118 + + + + + Internal Revenue Service (IRS) letters + 1980-1983 + 118 + + + + + Iran + 1979-1980 + 118 + + + + + Ire + January 7, + 1983 + 118 + + + + + Israel and the Jewish community + + + + Golda Meir funeral delegation + 1978-1984 + 118 + + + + + Jewish Community + 1979-1981 + 118 + + + + + Jewish community + 1979-1983 + 118 + + + + + + Japan + 1980-1983 + 119 + + + + + Judiciary + 1979-1984 + 119 + + + + + Kennedy, Cornelia, (Judge) + 2 folders + 1979 + 119 + + + + + Lebanon + 1980-1983 + 119 + + + + + Legal services + March-April 1981 + 119 + + + + + Levin-nice words about Carl + 1983-1984 + 119 + + + + + Lobbying + December 1983 + 119 + + + + + Madrid Conference + May-July 1981 + 119 + + + + + Media + + + + 1978-1982 + 119 + + + + + 1983-1984 + 119 + + + + + + Members of Congress for Peace through Law + + + + 1981 + 119 + + + + + 1982 + 119 + + + + + + Memberships + 2 folders + 1979-1981 + 119 + + + + + Memberships + 1982 + 119 + + + + + Michigan + 1981-1983 + 119 + + + + + Michigan Democratic Party + + + + 1979-1981 + 119 + + + + + March-April 1984 + 119 + + + + + 1982-1983 + 1113 + + + + + + Middle East + + + + 1979-1982 + 119 + + + + + 1982-1984 + 119 + + + + + + Military + 1979-1982 + 119 + + + + + Military academies + + + + 1980-1982 + 120 + + + + + 1983-1984 + 120 + + + + + + Miscellaneous + + + + November 1979 + 120 + + + + + 5 folders + 1980 + 120 + + + + + Folder 1 + 1980-1982 + 120 + + + + + Folder 2 + 1980-1982 + 120 + + + + + 2 folders + December 1980-August 1981 + 120 + + + + + February 1981 + 120 + + + + + May-November 1981 + 120 + + + + + 1981 + 120 + + + + + 1981-1982 + 120 + + + + + 1982 + + + + June-July + 121 + + + + + August + 121 + + + + + September + 121 + + + + + October + 121 + + + + + November + 121 + + + + + December + 121 + + + + + + 2 folders + 1982-1983 + 121 + + + + + 1983 + + + + January + 121 + + + + + February + 121 + + + + + March + 121 + + + + + April + 121 + + + + + May + 121 + + + + + June-July + 121 + + + + + August-September + 121 + + + + + October-December + 121 + + + + + + 2 folders + 1983 + 121 + + + + + 3 folders + 1983 + 121 + + + + + 1984 + + + + January 1984 + 121 + + + + + January-April + 121 + + + + + May-September + 121 + + + + + October-December + 121 + + + + + + 3 folders + 1984 + 121 + + + + + + Moral Majority religious right wing + 1980-1983 + 122 + + + + + Northeast-Midwest Institute + 1981-1982 + 122 + + + + + Nutrition + May 1979 + 122 + + + + + Occupational Safety and Health legislation + 1979 + 122 + + + + + Office of Management and Budget (OMB) + September-October 1981 + 122 + + + + + Officials and offices + 1981 + 122 + + + + + Olympics + 1980 + 122 + + + + + Organization for Rehabilitation through Training (ORT) + Centennial + 1980 + 122 + + + + + Oversight Committee + 1979-1980 + 122 + + + + + Panama Canal + 1979-1980 + 122 + + + + + Perkins, Frances + October 1979 + 122 + + + + + Personal + + + + 1979 + 122 + + + + + January 1979-August 1980 + 122 + + + + + 2 folders + April 1979-August 1980 + 122 + + + + + March-September 1980 + 122 + + + + + 2 folders + 1980 + 122 + + + + + 1981 + 122 + + + + + 1983 + 122 + + +

    (Includes some Levin genealogy)

    +
    +
    +
    + + + Photographs + 6 folders + 1979 + 122 + + +

    (GE, President Carter, Barabara, GM, Riegle

    +
    +
    + + + Photographs + 1984 + 122 + + + + + Po + 1980-1982 + 122 + + + + + Polar Bear veterans + 1983 + 123 + + + + + Polish community + 1979-1984 + 123 + + + + + Political + + + + Arizona + 1982-1984 + 123 + + + + + California + 1982-1984 + 123 + + + + + Connecticut + 1984 + 123 + + + + + Florida + 1983-1984 + 123 + + + + + Illinois + 1983 + 123 + + + + + Kentucky + January 1983 + 123 + + + + + Mary + November 1983 + 123 + + + + + Miscellaneous + 1983-1984 + 123 + + + + + Missouri + 1983-1984 + 123 + + + + + Nebraska + 1983 + 123 + + + + + New York + 1982-1984 + 123 + + + + + + Political supporters-Plaques and Donkeys + 2 folders + 1978-1982 + 123 + + + + + Polybrominated biphenyl + 2 folders + 1978-1980 + 123 + + + + + Prayer breakfast + 1981-1984 + 123 + + + + + President Reagan + 1981-1982 + 123 + + + + + Presidential election + 2 folders + 1979-1980 + 123 + + + + + Presidential election + 1983-1984 + 123 + + + + + POWs/MIAs-Vietnam + 1979 + 123 + + + + + Press + 3 folders + 1979-1981 + 123 + + + + + Public policy + 1981-1982 + 123 + + + + + Public works applications + 2 folders + 1980 + 1976 + 123 + + + + + Reconstruction + 1981-1984 + 123 + + + + + Regulation + 1979-1982 + 123 + + + + + Republican Convention + June-July 1980 + 123 + + + + + Sanders Company-EDA loan + 1979 + 123 + + + + + Sanilac, Michigan + 1979 + 123 + + + + + Seniority (Congressional) + 1979-1980 + 123 + + + + + State of the Union + January 1982 + 124 + + + + + Superbowl XVI-Pontiac Silverdome + January 1982 + 124 + + +

    (Includes photographs of Michiganders)

    +
    +
    + + + Tariff and Reciprocity bill + 1983-1984 + 124 + + + + + Thank yous + + + + 1980-well known + 2 folders + 124 + + + + + 4 folders + 1982 + 124 + + + + + 3 folders + 1983 + 124 + + + + + Organizations + 1980-1985 + 116 + + + + + + Telegrams + 1979-1982 + 116 + + + + + T'Chiyah Congregation + 1979-1983 + 116 + + + + + Terrorism-domestic + March 12, + 1981 + 116 + + + + + Trade + 1983-1984 + 116 + + + + + Transportation + 1980-1983 + 116 + + + + + Treasury + November 8, + 1979 + 116 + + + + + Unemployment benefits + 1983 + 116 + + + + + Utica Packing + January 29, + 1981 + 116 + + + + + Vice Presidents + January 1983 + 116 + + + + + Warren office + 1981 + 1984 + 116 + + + + + Washington workshops + 1981-1984 + 116 + + + + + Waste disposal + 1979 + 125 + + + + + Water and Sewerage (Michigan) + January 1979 + 125 + + + + + White House + 1981-1984 + 125 + + + + + William Rogell golf course (Michigan) + 1979 + 125 + + + + + Williams, Harrison + 1981-1982 + 125 + + + + + Workers compensation + 1979 + 125 + + +

    (Etkin, Johnson, and Korb Inc.)

    +
    +
    + + + Young, Andrew + 1979 + 125 + + + + + Department of State + 1981-1983 + 1112 + + +
    + + + Detroit City Council-sample of Levin's work + 1970-1977 + 125 + + + + + Directories and programs + + + + 3 folders + 1978-1979 + 125 + + + + + 1980-1981 + 125 + + + + + + Financial disclosures-Levin + + + + 1980 + 125 + + + + + 1981 + 125 + + + + + 1984 + 125 + + + + + + Floor statements + January-March 1979 + 125 + + + + + Guest Books + + + + January 1979 + 125 + + + + + August 1980-December 1981 + 125 + + + + + January 1982-March 1983 + 125 + + + + + March 1983-July 1984 + 125 + + + + + + Legislative activity and priorities-Levin + May-July 1983 + 125 + + + + + The Levin Report + 1979-1984 + 125 + + +

    (Includes information on Levin's record, accomplishments, awards, and UDAG and + EDA defense contracting awards; M. Robillard)

    +
    +
    + + + Levin updates to local officials + February 1983 + 125 + + + + + Mass mailings + + + + Business + + + + Licensed professionals + October 1983 + 125 + + + + + Small business + + + + December 1981 + 125 + + + + + 1983-1984 + 125 + + +

    (Carl Levin Report to Michigan and Carl Levin's Small Business Special + Report)

    +
    +
    + + + Levin reports + October 1982 + 125 + + + + + National Federation of Independent Business (NFIB) + 1983 + 125 + + +

    (Levin special report)

    +
    +
    +
    +
    + + + Defense + + + + Anti-military follow-up + 2 folders + 1983 + 125 + + + + + K.I. Sawyer Air Force base + 1983 + 125 + + + + + Navy award dinner + December 1983 + 125 + + + + + Nuclear weapons + October 1982 + 125 + + + + + Procurement conference + + + + Announcement + March-April 1982 + 126 + + + + + October-November 1983 + 126 + + +

    (Sponsored by Levin)

    +
    +
    + + + NFIB list + August 1983 + 126 + + + + + Naval procurement opportunities for Michigan + October 1983 + 126 + + +
    + + + Procurement mailing + December 1982 + 126 + + +
    + + + Economic policy + + + + 594 follow-up + December 1983 + 126 + + +

    (Tuition tax credit)

    +
    +
    + + + Balanced budget newsletter + August 1982 + 126 + + + + + Economy newsletter + March 1982 + 126 + + + + + IRS seizure follow-up + May 1983 + 126 + + + + + Savings and Loans + October 1982 + 126 + + +
    + + + Foreign policy + + + + Armenian joint letter + June 1983 + 126 + + + + + Central America + May 1983 + 126 + + + + + Central Industrial Security Force (CISF) + November 1983 + 126 + + + + + International Monetary Fund (IMF) + November-December 1983 + 126 + + + + + Middle East and oil + March 1982 + 126 + + + + + + Health + + + + Cold weather + October 1982 + 126 + + + + + Levin-Riegle nursing home + April 1982 + 126 + + + + + + Hunger + + + + 1983 + 126 + + + + + Crime + 1982 + 126 + + + + + + Labor + + + + 105 follow-up + March 1983 + 126 + + + + + Auto content + October 1982 + 126 + + + + + Auto workers + February 1983 + 126 + + + + + Blue collar workers + December 1983 + 126 + + + + + CHS + April-May 1983 + 126 + + + + + Newsletter + February-March 1982 + 126 + + + + + Social workers + February 1983 + 126 + + + + + Upper Peninsula jobs + February 1983 + 126 + + + + + + Levin office data update and processing + + + + 1981 + 126 + + + + + May 1983 + 126 + + + + + + Mass mailings + + + + Monthly count by subject + 1982 + 126 + + + + + Monthly count by subject + 1983 + 126 + + + + + Registration + 1980-1983 + 126 + + + + + + Michigan + + + + Chief William Hart -- Congressional Record excerpt + February 9, + 1982 + 126 + + + + + Local officials + February 1983 + 126 + + + + + Local officials and mayors + May 1983 + 126 + + + + + North Country + October-November 1983 + 126 + + + + + A Vision for America-Michigan + October-November 1983 + 126 + + + + + + Newsletters -- statewide + November 1981-January 1982 + 126 + + + + + Veterans + October 1982 + 126 + + +
    + + + Michigan offices + undated + 126 + + + + + Miscellaneous + + + + 1978-1981 + 126 + + + + + 1983 + 126 + + + + + Staffer issue area assignment, memoranda, articles, confirmation, and + report-finance, defense, and adoption + 1979-1980 + 126 + + + + + Top desk information + 1982-1983 + 126 + + + + + + Newsletter-Levin + 1980 + 126 + + + + + Newsletter-Senator Carl Levin's Washington + undated + 126 + + + + + Newspaper clippings + 1980-1983 + + + + Book 1 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Book 2 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Book 3 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Book 4 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Newspapers + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + Jim Pallas reception + 1980-1981 + 153 + + +

    (Includes two pearls)

    +
    +
    + + + Photographs + + + + Gasohol and related pictures + 1980 + 153 + + + + + Photographs and correspondence + 1980-1981 + 153 + + + + + 1982 + 153 + + + + + Stock photographs + undated + 153 + + + + + + Polls-Levin favorability + 1980 + 127 + + + + + Rhetoric + 1984-1986 + 127 + + +

    (Memos, statements, and remarks on multiple topics)

    +
    +
    + + + Schedules + + + + 1984 + 127 + + +

    (Action file)

    +
    +
    + + + Daily + + + + January 1979 + 127 + + + + + 3 folders + May 1979-June 1980 + 127 + + + + + June-November 1980 + 127 + + + + + 2 folders + December 1980-December 1981 + 127 + + + + + 3 folders + January 1982-March 1983 + 128 + + + + + January-July 1983 + 128 + + +

    (2 notebooks in shorthand)

    +
    +
    + + + March-November 1983 + 128 + + + + + 2 folders + May-November 1983 + 128 + + + + + May-November 1984 + 128 + + +
    + + + Travel + July-September 1982 + 128 + + +
    + + + Staff + + + + Assignment monthly reports + December 1978-January 1981 + 128 + + + + + Bios + September 1980 + 128 + + + + + Intern photographs + 1980 + 128 + + +

    (Levin with Mary Jo Sikkema, Penny Dollard, Kate Mullen, and Ronald + O'Rourke)

    +
    +
    + + + Letters from constituents thanking office staff + 1980-1983 + 128 + + +

    (Traverse City office)

    +
    +
    + + + Letter library + + + + Defense + 1983 + 128 + + + + + General editorials + 1981-1982 + 128 + + + + + Medicare and Medicaid + 1981-1982 + 128 + + + + + Miscellaneous constituent letters + 1983 + 128 + + + + + Senior citizens-editorial + 1981-1982 + 128 + + + + + Social security editorials + 1982 + 128 + + + + + Old language + 1983-1984 + 128 + + + + + + Letters waiting for response + 1984 + 128 + + + + + Memoranda + + + + 3 folders + June 1979-December 1979 + 129 + + + + + 1983 + + + + January-July + 129 + + + + + March 28-April 11 + 129 + + + + + August-December + 129 + + + + + + 1984 + + + + January-September + 2 folders + 129 + + + + + September-December + 117 + + + + + + 1985 + + + + January-March + 2 folders + 130 + + + + + March-August + 2 folders + 130 + + + + + + Friday + + + + 3 folders + 1979 + 130 + + + + + 2 folders + January 1979-July 1980 + 130 + + + + + Friday and staff issue area assignment + 2 folders + 1980 + 130 + + + + + 2 folders + 1981 + 130 + + + + + April 8, + 1983 + 130 + + +

    (P. Kyriacopoulos)

    +
    +
    +
    + + + Legislative + 2 folders + January-June 1979 + 130 + + + + + Legislative Assistant + + + + 3 folders + 1980 + 131 + + + + + Jackie Parker (J. Parker) + 1980 + 131 + + + + + 3 folders + 1981 + 131 + + + + + 3 folders + 1982 + 131 + + + + + + Legislative update + 1981 + 131 + + + + + Memos to Levin + 1980-1982 + 132 + + + + + Weekly + 1979 + 132 + + +
    + + + Memos, lists, and issue areas + 1984 + 132 + + + + + Miscellaneous + 2 folders + 1978-1983 + 132 + + + + + Page program + 1979-1984 + 132 + + + + + Staff files + + + + B. Ash + + + + Prisoners of War and Missing in Action correspondence, and meetings + with families, (POW/MIA; Defense) + 1984 + 132 + + + + + Lebanon-Protest demonstration, (Foreign policy) + September 20, + 1982 + 132 + + + + + + B. Seltzer + + + + February-March 1982 + 132 + + + + + April 1982 + 132 + + + + + May 1982 + 132 + + + + + + Stephen Serkaian + + + + Debarment + undated + 1113 + + +

    (business relations, debarment procedures)

    +
    +
    + + + Defense + 1982 + 1113 + + + + + Detroit Free Press piece + January 1981 + 1113 + + +

    (Personal letter by Carl Levin on his arrival in the Senate and the + expectation of the office; J. Crutchfield)

    +
    +
    + + + Detroit schedule + 1980 + 1113 + + + + + Congressional Double Standard (Subcom OGM) + undated + 1113 + + + + + Draft + April-June 1980 + 1113 + + +

    (Documents pertaining to military draft, registration, and selective + service-includes: CRS report & Congressional Digest)

    +
    +
    + + + Dutch TV notes + June 11, 1979 + 1113 + + + + + Extremely Low Frequency (ELF) + October-November 1981 + 1113 + + + + + Environment Impact Study + April 1981 + 1113 + + +

    (report on budget from executive office)

    +
    +
    + + + A Letter to FBI + November 2, 1981 + 1113 + + +

    (Congressman Brodhead)

    +
    +
    + + + Federal Communications Commission (FCC) + + + + 5 folders + 1979-1981 + 1113 + + + + + Fetzer + February 9, 1979 + 1113 + + +

    (Cable-removal of PBS station WTTW)

    +
    +
    + + + LGBT Group Broadcasting rights + Junly-August + 1979 + 1113 + + +
    + + + Fraser Association Auto Letter + September 26, 1979 + 1113 + + +

    (Regarding public transportation)

    +
    +
    + + + FTC Legislative Veto Amendment, fighting bureaucracy + February 1980 + 1113 + + + + + Gasohol + July 1980 + 1113 + + + + + Seafarer- Protections for defendants coming before Federal Grand + Juries + February 14, 1980 + 1113 + + + + + Chinese Letter – Report and order in Docket 20271 + information + undated + 1113 + + +

    (FCC: related to maritime radio frequencies)

    +
    +
    + + + Hazardous waste hearings + August 1979 + 1113 + + + + + Environmental contamination of the Hemlock; Michigan + September 1980 + 1113 + + + + + Independence gas tax + undated + 1113 + + + + + Report by Senator Levin on his first year in Senate + undated + 1113 + + + + + Letter to President-elect Ronald Reagan on Levin trip to the Middle + East + January 6, 1981 + 1113 + + + + + Jewish Historical Society + undated + 1113 + + + + + Labor + 1981-1982 + 1113 + + + + + Kalamazoo tornadoes + May 16, 1980 + 1113 + + + + + Statement by Levin on Agency Accountability Act; GAC + November 15-December 6, 1979 + 1113 + + + + + Regulatory Reform information – veto + + + + March-April 1982 + 1113 + + + + + Point paper on Kasten – Levin-Boren + undated + 1113 + + + + + + Stephen Serkaian - personal + 1979-1980 + 1113 + + + + + Maybank Program + November 4, 1981 + 1113 + + + + + Mecosta County - Advanced Life Support Committee + October 29, 1979 + 1113 + + +

    (Expedition of IRS request)

    +
    +
    + + + Memos received + 1979-1980 + 1113 + + +

    (Received from other offices, and office structure)

    +
    +
    + + + Memos sent + February-August 1979 + 1113 + + + + + MIA and POW + February 29, 1984 + 1113 + + +

    (SASC news release)

    +
    +
    + + + Mideast Trip + July 1982 + 1113 + + +

    (With Sen. Dodd)

    +
    +
    + + + Miscellaneous letters + December 1979-February 1980 + 1113 + + + + + Michigan Democratic Convention Speech + August 24, 1980 + 1113 + + + + + MI Farm Radio Network - lists of various farm radio networks + through the state + August-October 1979 + 1113 + + + + + Ralph Nader, Poletown + April-June 1981 + 1113 + + + + + Navy + 2 folders + 1981-1983 + 1113 + + + + + Networks - Issue Ad Refusal + 1979 + 1113 + + + + + News Conference + + + + Panama Canal + April 26, 1979 + 1113 + + + + + May 9, 1979-July 29, 1981 + 1113 + + + + + + North East-Mid West Coalition + 1983 + 1113 + + +
    +
    + + + Staff resume -- P. Lennon + 1978 + 132 + + +
    + + + Town halls (Michigan) + + + + Alpena and Rogers City + April 1983 + 132 + + + + + Battle Creek + June 1982 + 132 + + + + + Crystal Falls, Midland, and Port Huron + June 1981 + 132 + + + + + Escanaba and Cooks + October 1982 + 132 + + + + + Escanaba and Alpena + June-July 1983 + 132 + + + + + Grand Rapids and Saginaw + June-July 1983 + 132 + + + + + Kalamazoo + May 1982 + 132 + + + + + Macomb and St. Clair + June 1983 + 132 + + + + + Saginaw + + + + December 1980 + 132 + + + + + January 17, + 1981 + 132 + + + + + April 1982 + 132 + + + + + May 1983 + 132 + + + + + + Sault Ste. Marie + March 1983 + 132 + + + + + Township list and mayors + May 1983 + 132 + + + + + + World Series Commemorative Cancellation + 1984 + 1111 + + +

    (Postage. Detroit Tigers)

    +
    +
    +
    + + + Agriculture + 1979-1986 + + + + Action files + + + + 1983 + 94 + + + + + 1984 + 94 + + + + + + FY1980 agriculture appropriations + 228 + + + + + Gleaning bill + 1979 + 228 + + + + + Grain dust, (Subcom OGM) + 1983 + 228 + + + + + Jackie's agriculture amendment + October 30, + 1981 + 228 + + +

    (Levin statement)

    +
    +
    + + + Jackson County farm issues (Michigan) + 1985-1986 + 228 + + + + + Mead + 1981-1982 + 228 + + +
    + + + Animal Protection + 1979-1987 + + + + Action file + 1983 + 94 + + + + + Animal coursing-temporary + 1979 + 239 + + + + + Endangered species + 1979 + 239 + + + + + Adopt a horse memo + 1979 + 239 + + + + + Horse protection-humane society + 1979 + 239 + + + + + Conservation of Northern Pacific Fur Seals + 1981-1985 + 239 + + + + + Seal conservation documents + 1981-1985 + 239 + + + + + North Pacific Fur Seals + 1983 + 239 + + + + + North Pacific Fur Seals + 2 folders + 1984-1985 + 239 + + + + + Kangaroo Protection Act-H.R. 779 + 4 folders + 1985-1987 + 240 + + + + + Trapping on federal lands and steel jaw traps + 1979 + 240 + + + + + United Action for Animals Fund-Elinor Peterson + 1979 + 240 + + + + + + Arts and humanities + 1983-1984 + + + + Action files + + + + 1983 + 94 + + + + + 1984 + 94 + + + + + + + Business + 1979-1984 + + + + Action files + 94 + + + + Consumer affairs + + + + 1979-1983 + 94 + + + + + 1984 + 94 + + + + + + Small business + + + + 1983 + 94 + + + + + 1984 + 94 + + + + + + + Antitrust + + + + S.995 + 1982 + 242 + + + + + S.995 plaintiffs + 1982 + 242 + + + + + Antitrust Contribution bill-S.995 + March-July 1982 + 242 + + + + + Claim reduction principle court cases-research for Thurmond/Laxalt + amendment-S. 995 + 1981 + 242 + + + + + Illinois Brick Co. + June-July 1982 + 242 + + + + + Illinois Brick Co.-S.300 + 1979 + 242 + + + + + Major League Baseball (MLB) exemption + 1981-1983 + 242 + + + + + Memoranda + July-September 1982 + 242 + + + + + Municipal liability-Detroit grocery stores + 2 folders + 1982-1983 + 242 + + + + + Joint ventures-research and development + 2 folders + 1983-1984 + 242 + + + + + Soft Drink Interbrand Competition amendment to S.598 + 1979-1980 + 242 + + + + + + Small Business Committee (SBC) + + + + Export bills + 2 folders + 1980 + 242 + + + + + Hearings + + + + The Impact of Commercial Credit Reporting Practices on Small + Business + + + + 3 folders + October-November 1979 + 242 + + + + + October 31-November 1, 1979 + 243 + + + + + Background + April-October 1979 + 243 + + + + + Correspondence + September-October 1979 + 243 + + + + + Witnesses + 2 folders + October-November 1979 + 243 + + + + + + Impact of Non-tariff Barriers on American Small Business' Ability to + Export to Japan + June 25, + 1980 + 243 + + + + + Regulatory Negotiation, (Subcom OGM and SBC) + July 29, + 1980 + 243 + + + + + + Secondary market Improvements Act-S.2375 + 1984 + 243 + + + + + Small Business Administration (SBA) disaster programs and loans + funding + 1981 + 243 + + + + + + Federal Trade Commission (FTC) + + + + Commercial credit reporting amendment + 1979 + 243 + + + + + Professional jurisdiction + 1982-1983 + 243 + + + + + + Minority business programs + 1980-1983 + 243 + + + + + National Small Business Association award-Levin + 1984 + 243 + + + + + Product liability reform + 1982-1984 + 243 + + + + + Small Business + + + + Small Business Act + + + + Budget + + + + FY1983 + 2 folders + 243 + + + + + FY1984 + 243 + + + + + FY1985 + 243 + + + + + FY1986 + 243 + + + + + + Markup and reconciliations, (SBC) + July-September 1983 + 243 + + + + + Pollution control financing guarantee program, (SBC) + 3 folders + 1980-1983 + 244 + + + + + + Small Business Administration (SBA) + + + + FY1982 budget + 244 + + + + + 8(a) minority business procurement assistance pilot program, + (SBC) + 2 folders + 1981-1984 + 244 + + + + + Disaster loans for MI + August 1980 + 244 + + + + + Disaster relief loans + 2 folders + March-June 1981 + 244 + + + + + Loan programs + 1980 + 244 + + + + + Material presented to Select Committee on Small Business, + (SBC) + June 25, + 1980 + 244 + + + + + Minorities + 1981-1982 + 244 + + + + + Veteran programs + 1980 + 244 + + + + + + Small Business Employee Ownership Act-S.388 + 1979 + 244 + + + + + Small Business Investment Company (SBIC) and Minority Small Business + Investment Company (MSBIC) + 1980-1982 + 244 + + + + + Small Business White House conference + May-December 1979 + 244 + + +

    (Conference held in Detroit in June)

    +
    +
    +
    + + + Tax-Enterprise zone + 1981-1982 + 244 + + + + + Women in business + 1980 + 244 + + +
    + + + Civil Rights + 1977-1986 + + + + Action files + + + + 1983 + 94 + + + + + 1984 + 94 + + + + + + Civil Rights Act amendment-sexual orientation + 1984 + 262 + + + + + Civil Rights Commission + 1983 + 1986 + 262 + + + + + Discrimination + + + + May 1979 + 262 + + + + + Age + June-August 1979 + 262 + + + + + + Equal access to courts + 1977-1978 + 262 + + + + + Equal chance for work-blind + May 1979 + 262 + + + + + Equal opportunities program compilation + August 1978 + 262 + + + + + Equal Rights amendment + 1978-1980 + 262 + + + + + Equal Rights amendment-background and debate + 1983 + 262 + + + + + Grandparent visitation rights + 1981-1985 + + + + 1982-1985 + 262 + + + + + 2 folders + 1983-1985 + 262 + + + + + Constituent letters and articles about Levin's work + 1983 + 262 + + + + + Hearing notes-Select Committee on Aging regarding + grandparents + 1983 + 262 + + + + + Hearing testimonies + 3 folders + 1983-1985 + 262 + + + + + Levin-Dear Colleague, testimony, and bill draft + introduction + 1980-1983 + 262 + + + + + + Hanigan case-Mexican border crossers tortured + 1978-1979 + 262 + + + + + Hate crimes and groups + + + + Ku Klux Klan articles + 1978 + 262 + + + + + Neo-Nazism, articles + 1978 + 262 + + + + + Religious vandalism and bigotry + 3 folders + 1983 + 262 + + + + + + School desegregation + + + + Busing + + + + Floor debate-Congressional Record + September 23, + 1982 + 262 + + + + + Johnston amendment + 1981-1982 + 262 + + + + + Subcommittee of Powers hearing + 2 folders + 1981 + 263 + + + + + Amendments and Levin statement + 1981 + 262 + + + + + Amendments and Levin statement + 2 folders + 1981-1982 + 263 + + + + + + Tax exempt status + 1981-1982 + 263 + + + + + + + Communications + 1979-1984 + + + + Action files + + + + 1983 + 94 + + + + + 1984 + 94 + + + + + + Appropriations for public broadcasting and Detroit Public + Television-FY1981 + 256 + + + + + Cable Telecommunications Act-S.2172 P. Kyriacopoulos + 1982 + 256 + + + + + Communications Act + + + + Anti-smut amendment-S.249 + March 1979 + 256 + + +

    (Thurmond)

    +
    +
    + + + Improved access amendment-S. 2827 + June-August 1980 + 256 + + + + + Revisions + March 1979 + 256 + + +
    + + + Educational FM radio station-Ovid Elsie grant request, + (Michigan) + September 1979 + 256 + + + + + Praise the Lord Television network-FCC subpoena; + 1979-1980 + 256 + + + + + Telephone news articles + 1984 + 256 + + + + + Television alcohol ads-correspondence + April 1979 + 256 + + + + + Television violence-correspondence + February 1979 + 256 + + + + + Very high frequency (VHF) television stations + 1980-1982 + 256 + + +
    + + + Crime and Justice + 1971-1989 + + + + Action files + + + + Crime and criminals + 1979-1983 + 94 + + + + + Crime + 1984 + 94 + + + + + Justice + 1984 + 94 + + + + + + S.995 amendments + 1982 + 265 + + + + + Ad-hoc Juvenile Justice Coalition + 1981 + 265 + + + + + Crime legislation + 1983-1984 + 265 + + + + + Criminal and civil forfeiture + 1982 + 1980 + 265 + + + + + Criminal code reform + 1980-1982 + 265 + + + + + Death Penalty + + + + 6 subfolders + 1978-1983 + 265 + + + + + 2 folders + 1983-1985 + 265 + + + + + 3 folders + 1984-1987 + 265 + + + + + Floor debate materials + 4 folders + 1984 + 265 + + + + + Letters from experts + 1981 + 265 + + + + + Levin floor statement + undated + 265 + + + + + Levin statements and background + 1983 + 1989 + 265 + + + + + Murder rates + 1981-1988 + 266 + + + + + Research + + + + Amnesty International + 1980-1985 + 266 + + + + + Death row + 2 folders + 1980-1983 + 266 + + + + + Haymarket Affair + 1981 + 266 + + + + + Innocents and the media + 1979-1981 + 266 + + + + + Letter to Governor Hunt + January 10, + 1984 + 266 + + + + + Massachusetts + 1981-1982 + 266 + + + + + Massachusetts-Lawyer Johnson + 1983 + 1980 + 266 + + + + + Michigan-Charles Clark + 2 folders + 1980-1985 + 266 + + + + + Murder of prison guards + 1983 + 266 + + + + + New Jersey-Bruno Hauptmann + 1981 + 266 + + + + + New York-Edmund Jackson + 1979-1984 + 266 + + + + + Ohio-Edward Jackson + 1983 + 266 + + + + + Reynolds, Melvin Lee + 1983 + 266 + + + + + South Carolina-Michael Linder + 1982 + 266 + + + + + Sullivan, Robert + 1983 + 266 + + + + + + + Domestic violence + 1978-1980 + 266 + + + + + Exclusionary rule + 3 folders + 1981 + 266 + + + + + Guardian Angels, Feb-July 1981 + 266 + + + + + Gun control + April 5, 1983 + 266 + + + + + Insanity defense + 1982 + 266 + + + + + Legal assistance eligibility regulations + September 1983 + 266 + + + + + Levin and Percy S.Res. for slain civil rights worker Liuzzo + November 1983 + 266 + + + + + Mandatory minimum sentences and firearms + 1971-1981 + 266 + + + + + Michigan Intensive Program Center tour of British prison + 1982 + 267 + + + + + Miscellaneous-Department of Justice mergers, Regnery, and + anti-trust + 5 folders + 1981-1984 + 267 + + + + + National Crime Information Center access + 1983 + 267 + + + + + Parental kidnapping and child snatching + 1977-1980 + 267 + + + + + Parental Kidnapping Prevention Act + November-December 1980 + 267 + + + + + Pen register legislation + 1979 + 267 + + + + + Polygraphs and similar devices-H.R. report number 94-795 + 1976 + 267 + + + + + Polygraphs in private sector, government, and defense + + + + National Security Directive on Polygraphs, (GAC and SASC + hearings) + 2 folders + 1983-1984 + 267 + + + + + News articles + 1985 + 267 + + + + + Scientific studies of polygraphs + 1983-1985 + 267 + + + + + + Prisons + 1979-1981 + 267 + + + + + Privacy acts reports + 1979-1980 + 267 + + + + + Public Safety Officers Benefits Act + December 1980 + 267 + + + + + Rape + 1979 + 267 + + + + + Red Squad-surveillance of Michigan and Detroit police + September 1981 + 267 + + + + + Sentencing-criminal procedure reform + August-September 1980 + 267 + + + + + Societies' League Against Molestation (SLAM) + 1983 + 267 + + + + + Violence against minorities, P. Kyriacopoulos + February-April 1981 + 267 + + + + + + Defense and Armed Services Committee (SASC) + 1954-1989 + + + + Action files + + + + Arms control + + + + 1983 + 94 + + + + + 1984 + 94 + + + + + + Defense + + + + 1979-1982 + 94 + + + + + 2 folders + 1983 + 94 + + + + + 1984 + 94 + + + + + + + Appropriations, authorization, and funding + + + + FY1976-Military construction-Hearings before House Subcommittee of the + Committee on Appropriations Part I + 1 Book + 303 + + + + Hearings before Subcommittee on Seapower and Strategic and Critical + Materials-Title 1 H.R.1150 Part 4 of 5 + 1 Book + 303 + + + + + + FY1978 + + + + Energy Research and Development Administration (ERDA) authorization + legislation-H.R.6566 + 1 Book + 303 + + + + + Hearings-Authorization for military procurement, research and + development, and active duty, selected reserve, and civilian personnel + strengths-authorization (SASC) + Books + + + + Part 6 + 303 + + + + + + + FY1980 + + + + First concurrent resolution on the budget + 1 Book + 303 + + + + + Second concurrent resolution on the budget + 1 Book + 303 + + + + + + Reference material + + + + SALT II reference guide + 1979 + 285 + + + + + + FY1981 + + + + Reagan campaign speech-defense budget trends + 285 + + + + + Defense authorization + + + + Sole source contract limitation provision + 285 + + + + + Supplemental-tanks + April 1981 + 285 + + + + + + Hearings-Military Implications of the Treaty on the limitation of + Strategic Offensive Arms and Protocol Thereto Part 1 + July 1979 + 303 + + + + + + FY1981 and FY1982 funding + 285 + + + + + FY1981 and FY1982 Department of Defense (DOD) summary revised + estimates + 285 + + + + + FY1982 + + + + Reagan defense budget revisions + 285 + + + + + Civilian manpower + 1981 + 285 + + + + + Cut the Pentagon Waste-Levin approach + 3 folders + 1981-1982 + 285 + + + + + Defense authorization + + + + Legislation + 285 + + + + + MX missile + 4 folders + 285 + + + + + Naval operations + 2 folders + February-March 1982 + 286 + + +

    (Subcom Seapower and Force Projection)

    +
    +
    + + + Operations and maintenance amendment + 1981 + 286 + + + + + Sole source contracts amendment + April 1981 + 286 + + +
    + + + Department of Defense (DOD) Authorization Conference + + + + Authorization bill + 286 + + + + + Congressional action on requests and Moynihan statements on + budget + 286 + + + + + Contracting out reports and legislation + 286 + + + + + Contractor debarment and suspension + 286 + + + + + Contracts-Vinson-Trammell act + 286 + + + + + Fighting vehicle system + 286 + + + + + General information and spreadsheets + 286 + + + + + Military families overseas + 286 + + + + + NAVSTAR GPS and LANTIRN + 286 + + + + + Posse Comitatus Act-clarification + 286 + + + + + Procurement, Land Forces conference issues, TACWAR + issues-Roland + 286 + + + + + Select Commission on Voluntary Service Opportunities + 1981-1983 + 286 + + +

    (Contains two notes regarding leak of classified information near FY85 + budget submission)

    +
    +
    + + + Selective Service System exemption from Privacy act of + 1974-S.915 + 286 + + + + + Subcommittee on Manpower report to committee + July 27, + 1981 + 286 + + + + + Subconference on procurement, operation and maintenance budget + revisions + 286 + + +
    + + + Department of Defense (DOD) Appropriations bill + + + + Floor debate and statement + 286 + + + + + Levin and Hollings amendments + 286 + + + + + + General Accounting Office (GAO) + + + + Appropriations, (Defense authorization act) + May 1981 + 286 + + + + + Military finance + 4 folders + January-May 1981 + 286 + + + + + + Hearings-Department of Defense (DOD) Authorization for + Appropriations-S.815 (SASC) + Books + 286 + + + + + Spending articles and notes + 1981 + 286 + + + + + XM1 extended module 1 program + 287 + + +
    + + + FY1983 + + + + Defense budget FY1983 + 3 folders + 302 + + + + + Department of Defense (DOD) budget FY1983 + 302 + + + + + Budget and funding FY1983 + 3 folders + 302 + + + + + Department of Defense Authorization + + + + B1 bomber procurement + 287 + + + + + Blue-green laser funding amendment + 287 + + +

    (Levin)

    +
    +
    + + + ELF project submarines + 287 + + + + + Tactical aircraft + 287 + + +
    + + + Department of Defense (DOD) Appropriations Conference + 2 folders + 303 + + + + + Hearings, (SASC) + 1981-1982 + 287 + + + + + Hearing-GAO questions for Comptroller General Bowsher and David + Jones + February 1982 + 287 + + + + + Military installations by state, FY1981 and FY1982 + 287 + + + + + News articles + January-March 1983 + 287 + + +
    + + + FY1984 + + + + Appropriations-miscellaneous funding requests + 287 + + + + + Budget reform proposals + 2 folders + 287 + + + + + General budget information + 2 folders + 287 + + + + + Cost growth studies-A3 Spinney-Margolis + 2 folders + 287 + + + + + Defense authorization + + + + Air Force posture + 4 folders + 288 + + + + + Alternate fights engines + 288 + + + + + Army + 2 folders + 288 + + + + + Army posture hearing + February 25, + 1983 + 288 + + + + + Defense budget and spending + 288 + + + + + Defense cost + 2 folders + 288 + + +

    (Includes nomination hearing of Vincent Puritano for Assistant Secretary of + Defense)

    +
    +
    + + + Department of Defense (DOD) cut list + 288 + + + + + Military construction + 288 + + + + + Military personnel cost of living + 288 + + + + + Navy posture hearing + 4 folders + 288 + + + + + Notes + 288 + + + + + Overall cuts + 288 + + + + + Subcommittee on Preparedness + 2 folders + 289 + + + + + Subcommittee on Preparedness markup and Levin + amendments + 289 + + + + + Subcommittee on Seapower and Force Projection markup + 289 + + + + + Subcommittee on Strategic Forces + 289 + + + + + Subcommittee on Tactical Warfare markup + 2 folders + 289 + + +
    + + + Department of Energy (DOE) and military + 289 + + + + + Hearing on Theater Nuclear Warfare Issues-in review of Department of + Defense Authorization Bill + March 15, + 1983 + 289 + + +

    (SASC Subcommittee on Strategic and Theater Nuclear Forces)

    +
    +
    + + + Hearings to receive testimony on the MX-Missile-in review of Defense + Authorization bill + 2 folders + 290 + + +

    (SASC; Includes 5 hearings from April 1983)

    +
    +
    + + + Hearing on S.Con.Res.26 a Resolution to approve funding for MX + Missile + 290 + + +

    (SASC; Includes 4 hearings from May 1983)

    +
    +
    + + + House and Senate Appropriations Committees markups (HAC and + SAC) + 290 + + + + + Operation and Maintenance conference-staff agreements + 290 + + +
    + + + FY1985 + + + + Army funding-constituent correspondence + 1984 + 290 + + + + + B1 bombers and ELF alternatives funding + 1983-1984 + 290 + + + + + Reagan defense budget + 290 + + + + + Omnibus Defense Authorization Act of + 1985 + + + + United States Academy of Peace amendment + 290 + + + + + + Subcommittee budget issues including Roland (SASC) + 290 + + + + + + Budget-missile defense systems + 2 folders + 1979 + 290 + + + + + Spending + 1983-1984 + 290 + + +
    + + + Arms control + 1983 + 290 + + + + + Coast Guard funding-Michigan + 1982 + 290 + + + + + Citizens Against Military Injustice (CAMI) + 1983 + 1985 + 291 + + + + + Committee correspondence (SASC) + + + + March 1983-April 1984 + 291 + + + + + Correspondence, memos, and news articles + 2 folders + 1983-1984 + 291 + + + + + + Committee Hearings (SASC) + + + + Navy Aircraft Carrier Service Life Extension (SLEP)-U.S.S. + Saratoga + 2 folders + February-March 1979 + 291 + + + + + Naval petroleum reserves memo, (Subcommittee Preparedness) + November 12, + 1981 + 291 + + + + + Status of the Guard and Reserve-questions + December 1, + 1981 + Subcommittee + Preparedness + 291 + + + + + Military justice system changes, (Subcommittee Military + Personnel) + September 9, + 1982 + 291 + + + + + Levin questions for the record + April 1983 + 291 + + + + + Outside Experts' Views on the Organization of the Defense + Department + September 20, + 1983 + 291 + + + + + OSD and its Relationships with other DoD and Executive Branch + Elements + September 28, + 1983 + 291 + + + + + OJCS and its Relationships with other DOD and Executive Brach + Elements + October 4, + 1983 + 291 + + + + + Organization and Decision Making Procedures of the Defense + Department + 2 folders + November 17, + 1983 + 291 + + + + + OSD and its Relationships with other DoD and Executive Branch + Elements + November 2, + 1983 + 291 + + + + + Organization of Military Unified and Specified Commands and their + Relationship with other DoD and executive Agencies + November 3, + 1983 + 291 + + + + + + Committee votes-Levin and Tower, (SASC) + October 1980 + 291 + + + + + Conference on Disarmament in Europe workshop + January 12, + 1984 + 291 + + + + + Contracts + + + + Contracting out reports and legislation + 1982 + 291 + + + + + Embosograf Corporation + August-September 1984 + 291 + + + + + Lear-Siegler + July 1983 + 291 + + +

    (Grand Rapids, Michigan)

    +
    +
    + + + L&W recuperator plates-M1 tank + August-September 1984 + 291 + + + + + Patent rights-KMS Fusion + 1983 + 291 + + + + + Peter Kiewit Sons' Co. v. U.S. Army Corps of Engineers + 1983 + 291 + + + + + Profit limitation-Vinson-Trammell Act + 1981 + 291 + + + + + R.H. Ruhman Inc. + August-October 1984 + 291 + + + + + Spectronix Automatic Fire Extinguishing (SAFE) + 1982-1983 + 291 + + + + + TARCOM at Selfridge-ELF system + September-November 1980 + 291 + + + + + Teledyne Continental-high mobility multipurpose wheeled vehicle + production + January 1983 + 291 + + +
    + + + Department of Defense (DOD)-Joint Chiefs of Staff + + + + Organization + 1983 + 291 + + + + + Reform + 1983 + 291 + + + + + + Levin notes + 1981 + 292 + + + + + Levin's staff notebooks-Peter D. Lennon, ? (3 notebooks) + 1978-1979 + 292 + + + + + Marine Corps-Academy Board of Visitors + 1984 + 292 + + + + + Maybank amendment + August 1983 + 292 + + + + + Medal of Honor-William J. Tsakanikas-394th I&R Platoon + 1979-1980 + 292 + + + + + Medal of Honor Grove dedication + July-September 1984 + 292 + + + + + Michigan + 1983-1984 + 292 + + + + + Michigan Army Missile Plant (MAMP) and Tank Automotive Material Readiness + (TARCOM) exchange-S.2235 + + + + Appraisal issues + March-April 1980 + 292 + + + + + Committees + February-March 1980 + 292 + + + + + Congressional Record and debate-H.R.6464 + April 1, 1980 + 292 + + + + + Correspondence, memos and news articles + May-June 1980 + 292 + + + + + Department of Defense and markup package + March 1980 + 292 + + + + + Fact sheet and flow chart + February 1980 + 292 + + + + + Floor materials, markup and correspondence + 3 folders + March-April 1980 + 292 + + + + + General Services Administration + March 1980 + 292 + + + + + Industrial base mobilization, (SASC) + January-March 1980 + 292 + + + + + Legislation + January-March 1980 + 292 + + + + + MAMP and TARCOM + 2 folders + February-March 1980 + 292 + + + + + Miscellaneous + 2 folders + November 1979-March 1980 + 292 + + + + + Miscellaneous + March-April 1980 + 292 + + + + + News articles + February-March 1980 + 292 + + + + + Notes and rough drafts + February-March 1980 + 292 + + + + + Plant statistics + March-April 1980 + 292 + + +

    (Includes photographs)

    +
    +
    + + + Precedents + 1954-1980 + 292 + + + + + Reports-SASC and HASC + February-April 1980 + 292 + + + + + Senate and House Armed Services Committees, (SASC and HASC) + February-March 1980 + 293 + + + + + Volkswagen correspondence and information + March-April 1980 + 293 + + + + + Working file-memos, hearing questions, statements + 2 folders + February-April 1980 + 293 + + +
    + + + Military bases and installations + + + + Camp Grayling-Army Light Infantry + May-September 1984 + 293 + + + + + Fort Bliss missing key + 1983-1984 + 293 + + + + + Grayling and McNamara airport operation agreement + July-August 1984 + 293 + + + + + KI Sawyer Air Force Base news articles + 1984 + 293 + + + + + Selfridge Air National Guard Base-Harrison Township + October 1983-February 1984 + 293 + + + + + Wurtsmith Airbase and B1 contracts-news articles + 1984 + 293 + + + + + + Military justice + June 1983 + 293 + + + + + Military personnel + + + + Military manpower and jobs + 1984 + 293 + + + + + Military spouses-Ex-Partners of Servicemen for Equality (Ex.P.O.S.E) + support of S.1613 + 1984 + 293 + + + + + Military spouses-ex-spouse benefits + 1984-1985 + 293 + + + + + News articles + 1981 + 302 + + + + + Pay bill + 3 folders + 1981 + 293 + + + + + Pay increase concept-Levin + July 1979 + 293 + + + + + Pay raise issues + 3 folders + 1979-1982 + 293 + + + + + Survivor benefits plan + 2 folders + February-August 1979 + 293 + + + + + + Military Selective Service Act for financial assistance amendment, + (Senator Hayakawa) + May-July 1982 + 293 + + + + + Miscellaneous, (SASC) + 1984 + 293 + + + + + National Guard + + + + Kincheloe-new units + April-May 1983 + 293 + + + + + Personnel placement policy change-Robert Smith + January-May 1983 + 293 + + + + + + NATO-allied funding increase + 1981 + 293 + + + + + NATO Conventional Arms Control-Balance + 1987-1989 + 303 + + + + + Navy + + + + Five-year shipbuilding program, (SASC) + 1983 + 294 + + + + + Michigan disaster aid + 1982-1985 + 294 + + + + + Seafarer Neutrinos + 1978-1980 + 294 + + +

    (ELF)

    +
    +
    + + + USS Newport News-Muskegon berthing, (Michigan) + 1984 + 294 + + +
    + + + NATO nuclear force development + March 25, 1983 + 294 + + + + + Nuclear weapons information classification + 2 folders + 1979 + 294 + + + + + Nuclear freeze + April 1983 + 294 + + + + + Nuclear waste + January 1983 + 294 + + + + + Panama Canal Treaty implementing legislation (SASC) + + + + H.R.111 amendments + 1979 + 294 + + + + + Accountants report + January 1979 + 294 + + + + + Background and reports for managing the Treaty enabling legislation in + the Senate + September 1977-April 1979 + 294 + + + + + Conference proposals-compromise + 1979 + 294 + + + + + Conference report + + + + Conference report on Panama Canal bill vote, motion to recommit, and + amendments + 1979 + 294 + + + + + Language compliant with treaty + June-September 1979 + 294 + + + + + Notes and report-Levin + September 1979 + 294 + + + + + Statements and Committee mark-up + 1979 + 294 + + + + + + Cost of treaty implementation + 4 folders + 1979 + 294 + + + + + Hearings + + + + Matters Affecting Pending Panama Canal + Legislation-Nicaragua + June 7, + 1979 + 295 + + + + + + Legislation issues + 2 folders + 1979 + 295 + + + + + Miscellaneous + 3 folders + 1979 + 295 + + + + + Panama background info and U.S. policy + 1979 + 295 + + + + + Panama Canal Act of -- H.R.111, S.1024 + 1979 + + + + Background and briefing material + 1979 + 295 + + + + + Committee markup conference H.R.111 + 1979 + 295 + + + + + Conference committee consideration of H.R.111 + September 1979 + 295 + + + + + Cost of Treaty + 1979 + 295 + + + + + Employee provision + May-August 1979 + 295 + + + + + Hearing on S.1024 and H.R.111 + June 26-27, 1979 + + + + Questions + 295 + + + + + Statements + 295 + + + + + + H.R.111 and H.R. 3656 + 2 folders + 1979 + 295 + + + + + Markup + 1979 + 296 + + + + + + Pilots + May-June 1979 + 296 + + + + + Placement assistance for Panama Zone employees + May 1979 + 296 + + + + + Report to Chairman Stennis of Levin visit to the Canal Zone + May 1979 + 296 + + + + + S.1024 + April 1979 + 296 + + + + + S.1024 and H.R.111 + 1979 + 296 + + + + + S.1494 + July 1979 + 296 + + + + + Senate strategy-S.1494 + 2 folders + July 1979 + 296 + + + + + Tolls + 1979 + 296 + + + + + Transfer of functions + January 1979 + 296 + + + + + Transfer of property + June-August 1979 + 296 + + + + + Treaty (possible) violations + June-July 1979 + 296 + + + + + Treaty analysis and legislative materials + 6 folders + 1979 + 296 + + + + + Treaty briefing book + 2 folders + 1979 + 296 + + + + + Treaty legislative materials and notes + 4 folders + 1979 + 297 + + + + + U.S. investment and employees + May-September 1984 + 297 + + + + + U.S. Southern Command-military forces and dependents + 1979 + 297 + + + + + + Press + + + + Defense strategy and nuclear policy under Reagan + 1980-1983 + 297 + + + + + NATO burden sharing + June-July 1984 + 297 + + + + + Reagan defense spending-Levin reaction + January 6, + 1983 + 297 + + + + + Valley Forge Medal of Honor Ceremony-Levin talk + September 1984 + 297 + + + + + + Procurement + + + + 1983 + 297 + + + + + Cost, spending, and modernization + 1983-1984 + 297 + + + + + Federal Procurement and Foreign Trade Conference + April 2, 1981 + 297 + + +

    (Co-sponsored by Riegle, Levin, and Mayor Young)

    +
    +
    + + + Field hearing at TACOM in Warren, (Subcommittee on + Preparedness) + April 1984 + 297 + + + + + General Motors truck engines, (GM) + 1984 + 297 + + + + + Government procurement and Michigan business memo + December 4, + 1981 + 297 + + + + + Michigan + 1980-1985 + 297 + + + + + Procurement Task Force and hearings + 1984 + 297 + + +

    (Includes photograph of Levin and Quayle; SASC)

    +
    +
    + + + Roadwheels-Army + July 5, 1984 + 297 + + +
    + + + ROTC-Undergraduate helicopter pilot training programs + 2 folders + 1979 + 297 + + + + + Strategic Arms and Limitation Treaty (SALT II Treaty) + + + + Amendments + 4 folders + June-December 1979 + 298 + + + + + Background and reports + 1977-1979 + 298 + + + + + Compliance and unilateral statements + July-August 1979 + 298 + + + + + Documents I + + + + Legislation, hearings, and report + 3 folders + 1979 + 298 + + + + + Notes-Levin's + 1979 + 298 + + + + + + Documents II + + + + Concessions and renegotiations + 1979 + 298 + + + + + Congressional Record + July 20, + 1979 + 298 + + + + + Miscellaneous-SALT and ABM + 1979 + 298 + + + + + Need-to-do + 1979 + 298 + + + + + News articles + 1979 + 298 + + + + + News articles-Detroit News + 1979 + 298 + + + + + SALT I Interim Treaty + 1972 + 298 + + + + + Speeches + 1979 + 298 + + + + + Treaty details + 1979 + 299 + + + + + Weapons development + 1979 + 299 + + + + + Weapons-Backfire bomber + 1979 + 299 + + + + + + Documents III + + + + Defense budget linkage + 1979 + 299 + + + + + Europeans + 1979 + 299 + + + + + Jackson amendment + 1979 + 299 + + + + + Missiles + + + + Heavy missiles + 1979 + 299 + + + + + MX + 1979 + 299 + + + + + News articles + 1979 + 299 + + + + + + Senate access to treaty documents + 1979 + 299 + + + + + Soviet treaty attitudes + 1979 + 299 + + + + + + Documents IV-Agreement + 2 folders + 1979 + 299 + + + + + Hearing on military aspect of the SALT II Treaty, (SASC) + July 1979 + 299 + + + + + SALT hearing questions + 3 folders + July-August 1979 + 299 + + + + + Letters regarding SALT II + 1979 + 299 + + + + + Miscellaneous SALT + July-November 1979 + 299 + + +

    (Includes SASC hearing testimony)

    +
    +
    + + + Miscellaneous + 2 folders + 1979-1980 + 300 + + + + + News articles + + + + 1975-1978 + 300 + + + + + 1979 + 300 + + + + + Anti-treaty + January-April 1979 + 300 + + + + + Arms Control Today issues + 1972-1977 + 300 + + + + + From CRS + June-August 1979 + 300 + + + + + Pro-treaty + 1978-1979 + 300 + + + + + + News articles, statements and Brown testimony + July-October 1979 + 300 + + + + + Press releases + July 1979 + 300 + + + + + Reference guide + 2 folders + May-July 1979 + 300 + + + + + Remarks + August-September 1979 + 300 + + + + + Senate SALT working group briefing book + 3 folders + February 1979 + 300 + + + + + SALT I and SALT II + 1979 + 301 + + + + + SALT II press interest group statement + 1979 + 301 + + + + + Senate Strategic Arms Limiation Treaty Working Group briefing + book + 1979 + 301 + + + + + Testimony + + + + July 1979 + 300 + + + + + Joint Chiefs of Staff + July 24, + 1979 + 300 + + + + + Kissinger, Henry, July 31 + August 2, + 1979 + 300 + + + + + Miscellaneous, July 31 + October 1, + 1979 + 300 + + + + + Miscellaneous + 2 folders + May-October 1979 + 301 + + + + + Rowny, E.L. (Lt. Gen.), July 25, August 1 + October 9, + 1979 + 301 + + + + + + Verification + 2 folders + 1979-1980 + 301 + + +
    + + + Soviet Union (USSR) + + + + "The Other Side of the Story: Some military advantages of the U.S. and + our Allies over the USSR and the Warsaw Pact" by Carl Levin + May 1983 + 297 + + + + + Quality of Soviet Union Forces + 2 folders + 1981-1984 + 297 + + + + + Succession of leadership + 2 folders + 1984 + 297 + + + + + + Space defense system + March-December 1983 + 298 + + + + + Trips and Congressional Delegations (CODELs) + + + + Belgium, USSR, Great Britain + August 23-September 1, 1979 + + +

    (CODEL Biden; SALT II)

    +
    + + + Briefing and background + 301 + + + + + European relations-London meetings + 301 + + + + + Planning documents and background + 301 + + + + + SALT II negotiations-Moscow + 301 + + +
    + + + Germany + September 2-3, 1979 + 302 + + +

    (SALT II)

    +
    +
    + + + December 1980-Middle East (CODEL Levin) + 2 folders + 302 + + +
    + + + Weapons and vehicles + + + + B-1 Bomber + 1981-1984 + 302 + + + + + C-17 transport aircraft + March 1983 + 302 + + + + + ELF + + + + Environmental effect + 1981 + 302 + + + + + Program, (Michigan) + 1982-1984 + 302 + + + + + + Fighter engine program + March-July 1982 + 302 + + + + + M-1 tank, (SASC) + 1983 + 302 + + + + + MX missile + April-October 1983 + 302 + + + + + MX missile defense system + 1981 + 302 + + + +
    + + + Economic Policy + 1969-1988 + + + + Action files + + + + Banking + 1983 + 94 + + + + + Budget + + + + 1983 + 94 + + + + + 1984 + 94 + + + + + + Economy + + + + 1979-1983 + 94 + + + + + 1984 + 94 + + + + + + Economy -- unemployment + 1979-1983 + 94 + + + + + Taxes + + + + 1983 + 94 + + + + + 1984 + 94 + + + + + + + H.R.767 + January 1979 + 425 + + +

    (Economic Stabilization Act)

    +
    +
    + + + H.R.1539 (R. Rives) + 1979 + 425 + + + + + S.219, (R. Rives) + 1979 + 425 + + + + + S.737 + 2 folders + 1979-1980 + 425 + + +

    (Security and Freedom Enhancement Act)

    +
    +
    + + + S.1020 (R. Rives) + 1979 + 425 + + + + + S.1132 (R. Rives) + 1979 + 425 + + + + + S.2606 -- Strategic Trade Act + 1980 + 425 + + + + + Administration and Committee acknowledgements, (C. Cutolo) + 1981-1982 + 425 + + + + + Advanced Earned Income Credit Payments + March-July 1979 + 425 + + + + + Advanced Research Projects Agency -- targeted countercyclical aid and + ARFA targeted fiscal assistance + 1979 + 425 + + + + + Bankruptcy and municipality -- Liz Robbins, (C. Cutolo) + 1984-1985 + 425 + + + + + Bankruptcy code reform-S.445 + 3 folders + 1984 + 425 + + + + + Bankruptcy reform, (C. Cutolo) + 1981 + 425 + + + + + Banks + + + + Banking bill, (C. Cutolo) + 2 folders + October 1981-September 1982 + 425 + + + + + Deduction of interest payments by banks on collateral securities, (C. + Cutolo) + 1981-1982 + 425 + + + + + Bank deregulation issue + 1980 + 425 + + + + + Bank Holding Act + 2 folders + 1979-1980 + 426 + + + + + + Budget and tax materials, (R. Rives and C. Cutolo) + 1981-1982 + 426 + + + + + Cash Discount Act-S. 414 + 1981 + 426 + + + + + Charitable contributions deductions, (Moynihan-Packwood bill -- + S.219) + May 1979 + 426 + + + + + Commodity Futures Trading Commission + October-November 1979 + 426 + + + + + Commodity Futures Trading Commission -- user fees, (C. + Cutolo) + 2 folders + 1982 + 426 + + + + + Comptroller of the Currency + May-October 1979 + 426 + + + + + Consumer Credit Protection Act-S.15 + 1979 + + + + S.15 + 1979 + 426 + + + + + Amendment + 2 folders + undated + 426 + + + + + Car insurance practices + 2 folders + 1979 + 426 + + + + + Credit card redlining + + + + 2 folders + 1977-1979 + 426 + + + + + 1979 + 426 + + + + + 1979-1980 + 427 + + + + + Bill preparation + 1979 + 427 + + + + + Memos + 1979 + 427 + + + + + + Credit Scoring and the Equal Credit Opportunity Act-David C. + Hsia + Books + 427 + + + + + Dear Colleague letter-Levin + March 1979 + 427 + + + + + Declined + + + + Diners Club + 1978 + 427 + + + + + Mobil Oil-from Detroit + 1977 + 427 + + + + + + Hearings-Subcommittee on Consumer Affairs on S.15 + + + + June 4, + 1979 + 427 + + + + + June 5, + 1979 + 427 + + + + + Levin opening statement + 1979 + 427 + + + + + Redlining Mobil-pending + 1979 + 427 + + + + + Testimony schedule and summaries + 1979 + 427 + + + + + Testimony-June 4 + 2 folders + 1979 + 427 + + + + + Testimony-June 5 + 1979 + 427 + + + + + Testimony-Credit card redlining-June 5 + 1979 + 427 + + + + + + + Correspondence + + + + Broadhead letters + February-May 1979 + 427 + + + + + Co-sponsored and co-signed Dear Colleague letters, (C. + Cutolo) + 1982 + 427 + + + + + Dear Colleague + April-August 1979 + 427 + + + + + Dear Colleague + 1981-1982 + 427 + + + + + Dear Colleague, (C. Cutolo) + January-May 1983 + 427 + + + + + Kildee letters + January-February 1979 + 427 + + + + + + Cost of Living Adjustment (COLA), (GAC) + 1980 + 427 + + + + + Council on Wage and Price Stability -- authorization + 1981 + 427 + + + + + Credit Control Act + February-March 1979 + 427 + + + + + Credit card redlining + + + + 4 folders + 1977-1979 + 428 + + + + + 2 folders + 1979 + 428 + + + + + 1979-1981 + 428 + + + + + Aldens + 1978-1979 + 428 + + + + + Credit Card Redlining bill -- S.15, (Levin bill) + 1979 + 428 + + + + + Credit Card Redlining bill binder, (S. 15) + 1979 + 428 + + + + + Hearing, questions, and John Quinn + 2 folders + 1979-1980 + 428 + + + + + Michigan -- redlining credit cards and homeowners' insurance + rates + 1979-1980 + 428 + + + + + Redlining + 2 folders + 1975-1977 + 428 + + + + + Redlining -- Mobil + 1977 + 428 + + + + + Zip code bill -- S.678 + October 19, + 1981 + 428 + + +

    (Also includes S.15 from 1979)

    +
    +
    +
    + + + Credit scoring and redlining + + + + Homeowners' Insurance in Detroit: A study of Redlining Practices and + Discriminatory Rates + July 19, 1978 + 429 + + +

    (Publication; Levin; Detroit City Council)

    +
    +
    + + + Zip code amendment + July 1981 + 429 + + +

    (Levin)

    +
    +
    +
    + + + Current economic material, (R. Rives) + 1981 + 429 + + + + + Czech gold, (C. Cutolo) + 1981 + 429 + + + + + Debt ceiling + 1984 + 429 + + + + + Debt collection + May-June 1979 + 429 + + + + + Debt limit + 1979 + 429 + + + + + Democrat's new interest rates bill, (C. Cutolo) + 1982 + 429 + + + + + Economic concepts and proposals, (C. Cutolo) + 2 folders + 1981-1982 + 437 + + + + + Economics general + March-October 1979 + 429 + + + + + Economic graphs + 1979 + 429 + + + + + Economic indicators + 1979 + 429 + + + + + Economic Recovery and the Financing of Social Insurance + May 19, 1977 + Booklet + 429 + + + + + Enterprise zones + 1980 + 429 + + + + + Enterpirze zones, (C. Cutolo) + 1981-1983 + 429 + + + + + Federal Credit Unions + + + + Great Lakes Steelworkers Federal Credit Union and Rouge --Ecorse + Community Federal Credit Union merger + 1982 + 429 + + + + + Loan rates-12% ceiling + 1980 + 429 + + + + + Pontiac co-op + 1979-1980 + 429 + + + + + + Federal Election Committee (FEC) Big Labor scandal and Jim V's + statistics + 1979 + 429 + + + + + Federal Reserve Act amendments + May 24, 1979 + 429 + + + + + Federal Reserve resolution, (C. Cutolo) + January-February 1981 + 429 + + + + + Federal retirees Cost of Living Adjustment (COLA), (C. + Cutolo) + 1982 + 429 + + + + + Federal Trade Commission (FTC) + + + + Consumers, (C. Cutolo) + 1983-1984 + 429 + + + + + Funeral regulation, (G. Wiszynski) + 1983-1984 + 429 + + + + + + Finance Committee tax bills + 1979-1980 + 430 + + + + + Fringe benefits, (R. Rives) + 1979-1981 + 430 + + + + + Gold coins + 1979 + 430 + + + + + Gold standard, (R. Rives) + 1980 + 430 + + + + + Government sponsored lifetime annuities + September-October 1979 + 430 + + + + + Growth Management Council + March 1979 + 430 + + + + + Inflation, (R. Rives and S. Koepke) + 1980 + 430 + + + + + Inflation victims + 1979 + 430 + + + + + Insurance Protection Against Foreclosure in Government-Assisted Home + Mortgage Programs: a study prepared for the Department of Housing and Urban + Development under Section 109 Public Law 90-448, (HUD) + April 24, 1969 + 430 + + + + + Interest rate proposal, (R. Rives) + 1970-1981 + 430 + + + + + International financial institutions, (R. Rives) + 1979-1980 + 430 + + + + + Joint Economic Committee reports, (R. Rives) + 1979 + 430 + + + + + Levin's new economic policy, (C. Cutolo) + 1982-1983 + 430 + + + + + Michigan Knife Company + 1979-1980 + 430 + + +

    (Chipper; R. Rives)

    +
    +
    + + + Miscellaneous-budget, program funding, hearing, (J. Parker) + 2 folders + 1979-1981 + 430 + + + + + Mortgage revenue bonds, (C. Cutolo) + 1979-1982 + 430 + + + + + Multiemployer pension plans amendment, (Eugene Driker; C. + Cutolo) + 1982 + 430 + + + + + National Credit Union Association kick-backs + 1980 + 430 + + + + + National Employment Priorities Act, (R. Rives) + 1979 + 430 + + + + + New Federalism -- Reagan, (C. Cutolo) + 1980-1982 + 431 + + + + + New Federalism hearings, (GAC; C. Cutolo) + 3 folders + 1981-1982 + 431 + + + + + Nominations-Federal Reserve System Board of Governors -- Martha + Seger + 1984 + 1031 + + + + + Pension losers bill, (C. Cutolo) + September 1981-June 1982 + 431 + + + + + Preemptory and usury legislation, (C. Cutolo) + 1981 + 431 + + + + + President's anti-inflation program, (R. Rives) + 1979 + 431 + + + + + Product liability, (R. Rives) + 1978-1979 + 431 + + + + + Productivity, (R. Rives) + 1979 + 431 + + + + + Realtors, (R. Rives) + 1980 + 431 + + + + + Reconstruction Finance Corporation, (R. Rives) + 1980 + 431 + + + + + Regulation Q and Consumer Checking Act, (R. Rives) + 2 folders + 1979 + 431 + + + + + Revenue sharing and severance tax, (R. Rives) + 1980-1981 + 431 + + + + + Sales Representatives Protection Act (SRPA)-S. 1399 + 1981 + 431 + + + + + Savings Act + 1979 + 431 + + +

    (Nelson bill; R. Rives)

    +
    +
    + + + Savings Bond-E series + 1979 + 431 + + + + + Securities dealers, (R. Rives) + 1979 + 431 + + + + + Specialty steel, (R. Rives) + 1979 + 431 + + + + + State economic information -- Michigan, (R. Rives) + 1979 + 431 + + + + + Stock option manipulations, (R. Rives) + 1979 + 431 + + + + + Stockpiling + 1979-1980 + 431 + + + + + Student aid stuff, (C. Cutolo) + 1982 + 431 + + + + + Sub-minimum wage, (C. Cutolo) + February 1983 + 431 + + + + + Susan B. Anthony dollar + 1979 + 431 + + + + + Target fiscal assistance + 1979 + 431 + + + + + Targeting, (C. Cutolo) + 1981 + 432 + + + + + Tax + + + + Administration tax proposals, (C. Cutolo) + 1982 + 432 + + + + + Automobile legislation, (R. Rives) + 1979-1981 + 432 + + + + + Bottle bill-tax exemption and Industrial Development Bonds + (IDB) + 1980 + 432 + + + + + Capital formation-S. 1435 + 1979-1980 + 432 + + + + + Capital gains tax + May 8, 1978 + 432 + + + + + Dividends + + + + Tax deferrals on reinvested dividends-S.3430 + 1979 + 432 + + + + + Tax treatment of dividends + 1979 + 432 + + + + + + Durkin Bill-wood burning stoves + 1979 + 432 + + + + + Economic Recovery Tax Act + 1980 + 432 + + +

    (Kemp-Roth)

    +
    +
    + + + End of the session shit tax bills + 1980-1982 + 432 + + +

    (Includes Member of Congress deductions; C. Cutolo)

    +
    +
    + + + Energy tax credits + 1979 + 432 + + + + + Energy tax credits + May 1980 + 432 + + +

    (Department of the Treasury)

    +
    +
    + + + Excise tax material, (C. Cutolo) + 1979-1982 + 432 + + + + + Flat tax and Bardley's Fair Tax Act, (C. Cutolo) + 1983-1984 + 432 + + + + + Foreign oil and gas taxes, (C. Cutolo) + 1979-1982 + 432 + + + + + Foundation stuff + May 1983 + 432 + + +

    (Council of Michigan Foundations and Council on Foundations ; C. Cutolo)

    +
    +
    + + + General + 1979 + 432 + + + + + Gramm-Rudman bill-conference reconciliation, (C. Cutolo) + 1986-1987 + 432 + + + + + House tax plan impact, (C. Cutolo) + 1985-1986 + 432 + + + + + Income Tax + + + + Disability income exclusion + 1982 + 432 + + + + + Income taxpayer protection act + 1982-1983 + 432 + + +

    (Levin)

    +
    +
    + + + Marriage tax penalty + 1979-1980 + 433 + + + + + Marriage tax penalty + 1984 + 433 + + +
    + + + Independent contractors, (R. Rives) + 1979 + 433 + + + + + Informal commentary on the 1988 Tax bill (C. Cutolo) + 1987-1988 + 433 + + + + + Inheritance tax, (R. Rives) + 1979 + 433 + + + + + Interest tax deduction, (R. Rives) + 1979 + 433 + + + + + Internal Revenue Service (IRS) deposit regulations, (R. + Rives) + 1980 + 433 + + + + + Internal Revenue Service (IRS) late payment penalties, (R. + Rives) + 1979 + 433 + + + + + Internal Revenue Service (IRS) + 1979-1981 + 433 + + + + + Internal Revenue Service (IRS) debt-equity + regulations-S.2610 + 1981-1982 + 433 + + + + + Inventory profits tax, (R. Rives and C. Cutolo) + 1981 + 433 + + + + + Leasing provision of tax bill, (Safe Harbor leasing statements; + SBC) + 1982 + 433 + + + + + Carl returned material, (C. Cutolo) + 2 folders + 1981-1982 + 433 + + + + + Carl's taxes material, (C. Cutolo) + 3 folders + 1985-1986 + 433 + + + + + Carl's taxes material -- 1987 tax bill (C. Cutolo) + 3 folders + 1986 + 433 + + + + + Long's auto value added tax proposal, (anti-recession assistance, + economic stimulus; C. Cutolo) + 1983 + 434 + + + + + Masco Corporation + 1984 + 434 + + +

    (appreciated property dividends; C. Cutolo)

    +
    +
    + + + Miscellaneous taxes + 1980-1982 + 434 + + + + + Money market CDs, (Certificate of deposit) + 1979 + 434 + + + + + New Levin tax bill, (C. Cutolo) + 1987-1988 + 434 + + + + + New tax bill + 1982 + 434 + + +

    (Dole and reconciliation; C. Cutolo)

    +
    +
    + + + Packwood plan, (C. Cutolo) + 1986 + 434 + + + + + Payment in Lieu of Taxes Act-water project + 2 folders + 1983-1984 + 434 + + + + + Phantom taxes + 1981-1984 + 434 + + + + + Poll Results + 1986 + 434 + + +

    (Taxes and revenue; C. Cutolo)

    +
    +
    + + + Postal Service leased motor vehicles exemption-HR. 4064 + 1979 + 434 + + + + + Reagan tax summaries and analyses, (C. Cutolo) + 1984-1985 + 434 + + + + + Severance taxes, (C. Cutolo) + 1981-1982 + 434 + + + + + State tax credits exempted, (R. Rives) + 1981 + 434 + + + + + State tax cut proposals + 1980 + 434 + + +

    (property tax; R. Rives)

    +
    +
    + + + Tax bill (C. Cutolo) + + + + Tax bill + 2 folders + 1982 + 434 + + + + + Tax bill + 1984 + 434 + + + + + Levin and Pearlman -- Michigan regional effects + 1985 + 435 + + + + + Pension pig bill + 1982 + 435 + + +

    (Pension law; C. Cutolo)

    +
    +
    + + + Regional effects on Michigan + 1984-1985 + 435 + + + + + Revising the tax bill + 2 folders + 1983-1984 + 435 + + +

    (Deficit, Reaganomics)

    +
    +
    + + + Special pleadings on 1984 tax bill (J. Callow) + 1983-1984 + 435 + + +
    + + + Tax compliance bill, (C. Cutolo) + 1982 + 435 + + + + + Tax credit for autos, (R. Rives) + 1980 + 435 + + + + + Tax exempt mortgage + + + + Builders association of southeastern Michigan + undated + 435 + + + + + National association of home builders + 1980-1981 + 435 + + + + + Tax exempt bonds + 1979-1980 + 435 + + + + + Tax exempt mortgage + 2 folders + 1980 + 435 + + + + + + Tax rules governing private foundations, (C. Cutolo) + August 1983-February 1984 + 435 + + + + + Taxpayers Bill of Rights Act -- S.955 + April-June 1979 + 435 + + + + + Tax Relief Act of + 2 folders + 1978 + 436 + + + + + Thor Power Tool Co. V. Commissioner of IRS decision + 1980 + 436 + + + + + Truck excise tax, (S. Koepke) + 1980 + 436 + + + + + Value Added Tax 1 + 1979 + 436 + + + + + Value Added Tax 2 + 1979 + 436 + + + + + Windfall Profits Tax-Crude oil + + + + Windfall profits tax + 1979 + 436 + + + + + WPT + 4 folders + 1979 + 436 + + + + + Conference report + 1980 + 436 + + + + + Trucking amendment-aerodynamic fuel-saving devices + 1979 + 436 + + + + + + Withholding, (C. Cutolo) + 3 folders + February-July 1983 + 436 + + + + + World peace tax fund-S.880 + 1979-1983 + 436 + + +
    + + + Unemployment -- Carl returned material, (C. Cutolo) + April-July 1983 + 436 + + + + + Wage and price controls-S.1022 + 1979 + 436 + + +
    + + + Education + 1975-1990 + + + + Action file + 1979-1983 + 95 + + + + + Education + 1990 + 1984 + 483 + + + + + Adult and vocational education + 1982-1984 + 483 + + + + + Affirmative action + 2 folders + 1975-1982 + 483 + + + + + Biomedical Science Center program funding + 483 + + + + + College and University + + + + Black college endowments + 1982-1985 + 483 + + + + + Gallaudet College federal support + February-March 1984 + 483 + + + + + Higher education, historically black colleges, and + handicapped + 1980 + 483 + + + + + Higher Education Act-Title III analysis and appropriations + 1982-1987 + 483 + + + + + Housing loan program-CRS + October 1981 + 483 + + + + + Tuition credits-tax + 1983 + 483 + + + + + + Constituent letters-consolidation of adult basic educational and + vocational grant monies, (Michigan) + April 1982 + 483 + + + + + Department of Defense (DOD)-military dependents + 1982-1983 + 483 + + + + + Discipline in school news articles + January 1984 + 483 + + + + + Dept. of Education Organization act and amendments, (J. + Parker) + 1979 + 483 + + + + + Dept. of Education Organization act conference, (J. Parker) + April-July 1979 + 483 + + + + + Discrimination + + + + Private schools-IRS proposed regulations, (J. Parker) + 1978-1981 + 483 + + + + + Sex and report explaining Title IX + 1983-1984 + 483 + + + + + Tax exemption racist schools + 1982-1983 + 483 + + + + + + Education Assistance Extension Act-S.249 + 1983-1984 + 483 + + + + + Education Consolidation and Improvement act-block grants + 1983 + 483 + + + + + Equal Access Act + 1984-1985 + 483 + + + + + Exchange programs-summer employment and US Information Agency + November 1983 + 483 + + + + + Hatch amendment + 1984-1985 + 483 + + + + + Homeschooling news articles + 1984 + 483 + + + + + Impact aid + 1984-1985 + 483 + + + + + Independent education accounts-articles and memos + January-March 1983 + 483 + + + + + Kellogg Foundation grant making + 1982-1983 + 483 + + + + + Literacy, (J. Parker) + February-April 1980 + 483 + + + + + Merit pay for teachers proposals + 1983 + 483 + + + + + Migrant-program and proposed changes + 1983 + 483 + + + + + Miscellaneous-Congressional Records and articles + 1982 + 483 + + + + + National Communication on Excellence in Education-conditions of schools + and staff + 1983-1984 + 483 + + + + + National Diffusion Network-annual evaluation report on educational + programs + June 1983 + 483 + + + + + National direct student loan programs-new regulations + July-August 1982 + 483 + + + + + National Education Association plan + June 1983 + 483 + + + + + National Institute of Education + 1983 + 483 + + + + + National Science Foundation correspondence + January 1987 + October 1983 + 483 + + + + + Native American + June-July 1983 + 483 + + + + + Pell grants definition + 1982-1986 + 483 + + + + + Religion in school + 484 + + + + Prayer-S.J.Res.212, (1 of 2) + 1984 + 484 + + + + + Prayer-S.J.Res.212, (2 of 2) + 1984 + 484 + + + + + Prayer-Levin statement + March 1984 + 484 + + + + + Prayer vote-recall on Levin and Riegle + 1984 + 484 + + + + + Silent prayer + 1984 + 1986 + 484 + + + + + Ten Commandments posted in Kentucky classrooms-Stone V. + Graham + November 1980 + 484 + + + + + Voluntary school prayer act-S.1742 (Senator Helms) + 2 folders + 1979-1982 + 484 + + + + + + Project on Equal Education Rights (PEER)-State Advisory Board, (J. + Parker) + January 1979 + 484 + + + + + Schools of Choice-Oak Park, P. Kyriacopoulos + October 1981 + 484 + + + + + Senate Youth Scholarships-William Randolph Hearst foundation + August 1983 + 484 + + + + + Senior Citizen Tutorial Volunteer Network Act of + 2 folders + 1981-1983 + 1983 + 484 + + + + + Social Security-student benefits + + + + Debate in Congressional Record + August 20, + 1980 + 484 + + + + + Letters and records + 1982 + 484 + + + + + + Social Security Education funding amendment-S.2655 + June-July 1982 + 484 + + +

    (Senator Ford)

    +
    +
    + + + Technology's influence on school districts articles + 1982-1983 + 484 + + + + + Year of the Teacher 1985-S.J.Res.346 + September 1984 + 484 + + +
    + + + Energy and natural resources + 1957-1988 + + + + Abolishing the Department of Energy (DOE) + 1982 + 492 + + + + + Action files + + + + Energy + + + + 1979-1983 + 95 + + + + + 1984 + 95 + + + + + + Environment + + + + 1979-1982 + 95 + + + + + 1983 + 95 + + + + + 1984 + 95 + + + + + + + Alaska + + +

    (Mostly related to the Alaska Pipeline)

    +
    + + + Arctic Range-National Wildlife Federation photographs + 1980 + 492 + + + + + Alaskan lands + 2 folders + 1980 + 492 + + + + + General Alaska information + 1980 + 492 + + + + + Alaska land issue + 1980-1982 + 492 + + + + + Legislative precedents + 1957-1978 + 492 + + + + + Minerals + 1979 + 492 + + + + + Natural gas pipeline-supporting testimony + 1976-1979 + 492 + + + + + Oil and gas potential-high + 1980 + 492 + + + + + Oil and gas potential-low + 2 folders + 1980 + 492 + + + + + Oil development impacts + 1980 + 492 + + +
    + + + Appropriations -- FY1980 Energy (L. Gustitus) + 492 + + + + + Asset Management Program-Briefing paper for United States Department of + Agriculture Forest Service + March 15, 1983 + 492 + + +

    (USDA; Hiawatha National Forest, Huron-Manistee National Forest, Ottawa National + Forest)

    +
    +
    + + + Bluff Slumping-proceedings of the 1982 workshop + 1 Book + 1982 + 492 + + + + + Bluff Slumping and Stability: A consumer's guide + 1 Book + 1982 + 492 + + + + + Building temperatures restrictions + 1981 + 492 + + + + + Coal severance tax + 2 folders + 1980-1981 + 492 + + + + + Severance Tax + 1981 + 492 + + + + + Consumers Power Company + 1981 + 493 + + + + + Department of Energy compliance, (DOE; Dingell) + 1981-1982 + 493 + + + + + Energy competition + 1979-1980 + 493 + + + + + Entitlements program + 1978 + 493 + + + + + Environmental issues + 7 subfolders + 1979 + 493 + + + + + Environmental issues-bills + 11 subfolders + 1979 + 493 + + + + + Environmental Protection Agency and environment + 1983-1985 + 493 + + +

    (EPA; Michigan)

    +
    +
    + + + Fish + 1979 + 493 + + + + + Garrison diversion issue-North Dakota + 1980-1984 + 493 + + + + + Gasohol + 1980 + 493 + + + + + Gasohol + 1981 + 493 + + + + + Great Lakes + + + + International Field Year for the Great Lakes data + catalog-NOAA + 1 Book + September 1978 + 493 + + + + + Lamprey eel control law news articles + August-October 1984 + 493 + + + + + Legislation, (Michigan) + 1981-1983 + 494 + + + + + Regulation + 3 folders + 1977-1983 + 494 + + + + + Water Resources Act and winter navigation + 2 folders + 1979-1983 + 494 + + + + + Winter navigation + 4 folders + 1979-1984 + 494 + + + + + Winter navigation + 3 folders + 1979-1984 + 495 + + + + + Senator Levin at Sault Ste Marie + 1 audiocassettes + 1979 September 22 + 494 + + + + + + Great Lakes and public works + 5 subfolders + 1981-1985 + 495 + + + + + Great Lakes Regional Basin Commission + July 1982 + 496 + + + + + Hazardous waste + + + + Transportation memo, (Michigan) + May 15, 1981 + 496 + + + + + Report on Hazardous Waste Management and the Implementation of the + Resource Conservation and Recovery Act, (Subcom OGM) + March 1980 + 496 + + + + + + Issue briefs-CRS + 1979 + 496 + + + + + Lake Jason issue in White Lake Township, (Michigan) + 1981 + 496 + + + + + Law of the sea + 1980-1982 + 496 + + + + + Miscellaneous energy reports + 2 folders + 1979-1982 + 496 + + + + + Montreal Protocols + 1982-1983 + 496 + + + + + Natural gas + 2 folders + 1982-1984 + 496 + + + + + Natural gas pricing + 1981-1982 + 496 + + + + + Nominations + + + + Department of Energy Inspector General -- Richards, James + 1981 + 1031 + + +

    (DOE)

    +
    +
    + + + Director of Solar Energy and Energy Conservation Bank-Richard H. + Francis + March 1984 + 1031 + + +

    (Committee on Energy and Natural Resources)

    +
    +
    +
    + + + Non-game bill + 1979 + 496 + + + + + Nuclear power + + + + Companies and commission licensing + 1981-1982 + 496 + + + + + Midland Daily News articles and correspondence, (Michigan) + May-July 1984 + 496 + + + + + Midland nuclear p ower news articles, (Michigan) + April-August 1984 + 496 + + + + + Paul Jacobs and the Nuclear Gang-PBS + April 1979 + 496 + + + + + Nuclear Regulation Commission reauthorization + 1981-1982 + 496 + + + + + Nuclear Regulation Commission reauthorization and Michigan natural + resources + 2 folders + 1981-1983 + 496 + + + + + Plants + + + + Big Rock plant + July 13, + 1981 + 496 + + + + + Clinch River Breeder Reactor financing plan + 1979-1983 + 496 + + + + + Enrico Fermi II + 1981 + 496 + + + + + Midlands + 1981 + 496 + + + + + Palisades + July 1981 + 496 + + + + + + Radiation risks + 1974-1980 + 496 + + + + + + Oil company mergers impact-Committee on Energy and Natural + Resources + 2 folders + March-July 1984 + 497 + + + + + Oil news articles + January 1984 + 497 + + + + + Omnibus water bill-S.1567 + 1985-1986 + 497 + + +

    (Great Lakes)

    +
    +
    + + + Opinion polls + 1981 + 497 + + + + + Pictured Rocks buffer zone bill + August 1983 + 497 + + +

    (Levin, Riegle, and Davis; Michigan)

    +
    +
    + + + Pipeline embargo + 1981 + 497 + + + + + Pollution + 1984 + 497 + + + + + Proliferation + 1982 + 497 + + + + + Public work projects + + + + Background + 1978-1979 + 497 + + + + + Corps of Engineers, (Michigan) + 1980-1982 + 497 + + + + + Dickey-Lincoln hydroelectric project + 1979-1980 + 497 + + + + + Kawkawlin, (Michigan) + 1979-1983 + 497 + + + + + Water resources, (Michigan) + 1979-1984 + 497 + + + + + + Rare II + 3 folders + 1979-1980 + 497 + + +

    (Wilderness; Riegle)

    +
    +
    + + + Rare II, (Michigan) + 3 folders + 1979-1980 + 497 + + + + + Red Run Drain public meeting transcript + 1 Book + March 22, 1979 + 498 + + +

    (Lower Clinton River, Michigan; Army Corps of Engineers study)

    +
    +
    + + + Sand dune mining + 1979 + 498 + + + + + Sand Dunes-Ausable and Manistee Rivers + 2 folders + 1979 + 498 + + + + + Scoping meeting-U.S. Department of Interior (DOI) + 1979 + 498 + + + + + Shoreline erosion St. Joseph area-Army Corps of Engineers, (Steven + Victor) + 1982-1983 + 498 + + + + + Strip mining + 1979-1980 + 498 + + + + + Synthetic Fuel Requirements Administration Act + 2 folders + 1979 + 498 + + + + + Super sewer-Environmental Impact Statement (EIS) meeting + notes + undated + 498 + + + + + Uranium mining in Upper Peninsula + 1980-1981 + 498 + + + + + Waste Disposal Act amendment-S.2432 + 2 folders + 1980-1982 + 498 + + + + + Waste transportation + 1981 + 498 + + + + + Water fluoridation + 1979 + 498 + + + + + Wave energy + 1979-1988 + 498 + + + + + Windfall Profits Tax + 1981 + 498 + + +
    + + + Foreign Policy + 1957-1990 + + + + Action files + + + + Foreign aid + 1979-1990 + 95 + + + + + Foreign relations + + + + 1979-1983 + 95 + + + + + 1981-1983 + 95 + + + + + 1984 + 95 + + + + + + Human rights + 2 folders + 1981-1983 + 95 + + + + + Human Rights + 1984 + 95 + + + + + S.312 -- Vashchenko and Chmykhalov + 1981-1982 + 95 + + + + + South Africa + 1984 + 95 + + + + + + Argentina-human rights + 1979-1982 + 586 + + + + + Armenia-Priest Manuel Yergapian arrest-human rights + 1980-1981 + 586 + + + + + Cambodia/Democratic Kampuchea-human rights + + + + Free and independent + 1982-1989 + 586 + + + + + Levin proposals, S.742 and others-Dept. of State + 2 folders + 1980 + 586 + + + + + Pierce Street Gallery-display of Levin's trip photographs + February 1981 + 586 + + + + + Refugees + 1979 + 586 + + + + + Relief effort + 3 folders + 1980 + 586 + + + + + Relief efforts-food and supplies + 3 folders + 1979-1980 + 586 + + + + + Security assistance + 1979-1980 + 586 + + + + + Senate Foreign Relations Subcommittee on Asian and Pacific + Affairs + 1980 + 633 + + + + + UN seating + 1980 + 586 + + + + + + Central America-human rights + 2 folders + 1982-1984 + 586 + + + + + Central America-Kissinger Commission + 2 folders + 1984 + 587 + + + + + Christian Rescue Effort for the Emancipation of Dissidents (CREED)-human + rights + 1981 + 587 + + +

    (Senator Jepsen is founder)

    +
    +
    + + + Colombia-human rights + 1979-1980 + 587 + + + + + Costa Rica-neutrality + 1983-1985 + 587 + + + + + Cuba + + + + Political prisoners + 1981-1982 + 587 + + + + + Prisoners-American citizens + 4 folders + 1980 + 587 + + + + + Refugees in America + 1980-1981 + 587 + + + + + + Cyprus-Turkey/Greece-human rights + 1984-1985 + 587 + + + + + East Timor-Indonesia-human rights + 3 folders + 1980-1984 + 587 + + + + + El Salvador + + + + Background on security forces and U.S. assistance + 2 folders + 1980-1986 + 587 + + + + + Human rights-murder of U.S. Citizens + 1984 + 587 + + + + + + Ethiopia-human rights-Falasha Jews + 1981-1984 + 587 + + + + + Grenada + + + + 1983 + 587 + + + + + 1983 + 587 + + + + + U.S. citizen departure + 1983-1984 + 587 + + +

    (Foreign built ships used in departure-the Cunard Princess and Cunard Countess + under U.S. flag)

    +
    +
    +
    + + + Guatemala-human rights and military aid + 1983-1984 + 587 + + + + + Helsinki Commission-Madrid Conference of the Commission on Security and + Cooperation in Europe + 2 folders + 1980-1981 + 588 + + + + + Honduras + + + + Father Carney disappearance, (Human rights) + 1984 + 588 + + + + + U.S. military presence + 1984-1986 + 588 + + + + + + Human Rights-Letters to heads of state + 2 folders + 1981-1984 + 588 + + + + + Inter-American Foundation + 1982-1984 + 588 + + + + + International Monetary Fund (IMF) + + + + 1983-1984 + 588 + + + + + Levin statement, Reagan letter, and statistics + 1984 + 588 + + + + + + Iraq-Levin's file + 1979-1980 + 588 + + + + + Northern Ire + 1981 + 588 + + + + + Israel + + + + Issues + 2 folders + 1981-1984 + 588 + + + + + Levin's file + 3 folders + 1979-1980 + 588 + + + + + U.S. relations-Levin's file + 4 folders + 1983-1988 + 588 + + + + + + Japan-defense spending + + + + 8 folders + 1982 + 589 + + + + + 1984 + 589 + + + + + + Japan-U.S. relations + October-November 1983 + 588 + + + + + Latin America-H.J.Res.492 + 1984 + 588 + + + + + Lebanon legislation + 1983 + 588 + + + + + Middle East + + + + 1983-1984 + 589 + + + + + Arms sale to Iran and Iraq + 1984 + 589 + + + + + Airborne Warning and Control System (AWACS) + 1981 + 589 + + + + + Beirut bombing news articles + September 1984 + 589 + + + + + Miscellaneous + 1984 + 589 + + + + + + National Endowment for Democracy + 1983 + 589 + + + + + Persian Gulf + 1983 + 589 + + + + + Philippines-human rights + + + + Correspondence + 1980 + 589 + + + + + Father Edicio de la Torre + 2 folders + 1979 + 589 + + + + + Frank Gould disappearance + 1983 + 589 + + + + + + Poland + + + + Human rights + 1982-1984 + 589 + + + + + News articles + 1984 + 590 + + + + + + Saudi Arabia + 1981-1982 + 590 + + + + + Saudi Arabia-arms sale + + + + Airborne Warning and Control System (AWACS) + + + + 3 folders + 1981 + 590 + + + + + 4 folders + 1981 + 590 + + + + + Electronic surveillance planes + 1981 + 590 + + + + + + American Israel Public Affairs Committee (AIPAC) + 3 folders + 1981 + 590 + + + + + F-15 sale-statements and articles + 1981 + 590 + + + + + History-Levin statements and news clippings + 2 folders + 1981 + 590 + + + + + Letter on role of Carter administration + April 1981 + 590 + + + + + + Somalia + + + + Refugees-human rights + + + + 1980 + 591 + + + + + 1982 + 591 + + + + + + + South Africa + + + + 1981-1990 + 591 + + + + + Mandela freedom resolution-S.R.386 + 2 folders + 1984 + 591 + + + + + Policy issue + 1980 + 591 + + + + + + Soviet Union (USSR) + + + + Espionage + 1981 + 591 + + + + + Grain embargo + 1981 + 591 + + + + + Human rights + + + + Baltics + 1981 + 591 + + + + + Cardinal Mindszenty articles + 1971-1975 + 1957 + 591 + + + + + Christians, Wallenberg, and Romania + 2 folders + 1980-1981 + 591 + + + + + Emigration + + + + Chmykhalov and Vashchenko-S.2890 + 4 folders + 1979-1981 + 591 + + + + + Chmykhalov and Vashchenko families + May-June 1980 + 591 + + + + + Chmykhalov and Vashchenko-S.312 + 2 folders + 1980-1981 + 591 + + + + + Chmykhalovs and Vashchenkos-S.312 and press conference + 1981 + 592 + + + + + Chmykhalov and Vashchenko-Siberian Seven-S. 312 + 2 folders + 1981-1984 + 592 + + + + + + Culture-attitude towards Jews + 1980 + 592 + + + + + Dear Colleague letter-Zanis Skudra + 1979 + 592 + + + + + Donetsk trial-death sentences + 1980 + 592 + + + + + Emigration statistics + 1979-1980 + 592 + + + + + National Conference on Soviet Jewry + + + + Statements-Vanik and Jackson + 1979 + 592 + + + + + Soviet officials + 1981 + 592 + + + + + + Newsletters + + + + National Conference on Soviet Jewry Press Service + 1980-1981 + 592 + + + + + Alert-The Union of Councils for Soviet Jews + 1979-1981 + 592 + + + + + + Press + + + + Newspaper clippings + 1979-1980 + 592 + + + + + TASS interview notes + February 1979 + 592 + + + + + + Prisoners of Conscience + 1980 + 592 + + + + + Soviet citizenship-new law + 1979 + 592 + + + + + Soviet Jewry + + + + 1979 + 592 + + + + + 4 folders + 1979-1985 + 592 + + + + + General + 1981 + 592 + + + + + Information + 2 folders + 1980 + 592 + + + + + International law + 1981 + 592 + + + + + + Visas-Joseph Brodksy case + 1979 + 592 + + + + + + Military spending + 1981 + 592 + + + + + + Trips and Congressional Delegations (CODELs) + + + + Financial disclosures + + + + Miscellaneous + 593 + + + + + April 26-29, 1979 + 593 + + + + + August 22-September 5, 1979 + 593 + + + + + January 11-15, 1980 + 593 + + + + + December 11-22, 1980 + 593 + + + + + July 7-12, 1982 + 593 + + + + + November 27-December 2, 1983 + 593 + + + + + + Miscellaneous + 1979-1981 + 593 + + + + + Soviet Union (USSR) + August 27-30, 1979 + + +

    (London and Brussels to discuss American military power SALT II and Human + Rights CODEL Biden)

    +
    + + + Correspondence + 1979 + 593 + + + + + Letters to Soviet officials + 592 + + + + + Moscow photographs + 592 + + + + + Schedule and Leningrad refuseniks + 592 + + + + + Transcripts, photographs, and letters + 2 folders + 593 + + +
    + + + Thai + January 11-15, 1980 + 593 + + + + + Cambodia/Democratic Kampuchea-human rights + January 18-20, 1980 + + + + Briefing materials + 2 folders + 593 + + + + + Cambodia + + + + DK propaganda + 1979-1980 + 593 + + + + + General trip + 1980 + 633 + + + + + Refugees + 1979-1980 + 633 + + + + + Refugee resolution + 1980 + 593 + + + + + + Indonesia-briefing information + undated + 593 + + + + + Laos-notes and questions + 1980 + 593 + + + + + Malaysia-briefing information and refugees + 1980 + 593 + + + + + Miscellaneous materials + 593 + + + + + Notes and miscellaneous materials + 593 + + + + + Philippines-U.S. military aid + 1979 + 593 + + + + + Schedule and travel arrangements + 593 + + + + + Staff welcome folder + 593 + + +

    (James Crutchfield)

    +
    +
    + + + Thai + 1980 + 633 + + + + + Thai trip-financial + 1980 + 593 + + + + + Vietnam + 1980 + 593 + + +
    + + + Middle East (CODEL Levin) + December 12-22, 1980 + + + + State Department briefing book + 2 folders + 593 + + + + + State Department telegrams + 593 + + + + + Post-trip documents + 1981 + 594 + + +

    (Includes two trip photographs)

    +
    +
    +
    + + + 1980-USSR-Douglas Cahn and Eric Hochstein + 594 + + +

    (Levin staff)

    +
    +
    + + + Israel and Lebanon + July 7-12, 1982 + + + + Briefing folder + 2 folders + 594 + + + + + Background information-news articles and notes + 4 folders + 594 + + + + + Background information-news articles about conflict in + Lebanon + 594 + + + + + Correspondence + 594 + + + + + + Germany and Switzer + November 27-December 3, 1983 + 594 + + +
    + + + Turkey + + + + Aid + 1979-1984 + 594 + + + + + Ambassador and the Ecumenical Patriarchate of + Constantinople + 1983 + 594 + + + + + Human rights + 1984-1986 + 594 + + + + + + United Jewish Appeal-Levin remarks + May 22, 1983 + 594 + + + + + Uruguay + 1982 + 594 + + + + + Geneva, West Germany, Poland, USSR + 2 folders + November 25-December 3, 1983 + 594 + + + + + November 27 -- December 3. -- Germany and Switzer + 1983 + 594 + + +
    + + + Government and Governmental Affairs Committee (GAC) + 1976-1986 + + + + Action files + + + + Candidate questions + 3 folders + 1983 + 95 + + + + + Commendations and congratulations + 1983 + 96 + + + + + Commendations + 1984 + 96 + + + + + Confirmations + + + + 1983 + 96 + + + + + 1984 + 96 + + + + + + Congress, rules, and reform + 1983 + 96 + + + + + Congressional reform + 1984 + 96 + + + + + Federal employees + + + + 1979-1983 + 96 + + + + + 1984 + 96 + + + + + + Judiciary + 1983 + 96 + + + + + Levin's Job Task Force + 1983 + 96 + + + + + Politics + + + + 1983 + 96 + + + + + 1984 + 96 + + + + + + Postal + + + + 1983 + 96 + + + + + 1984 + 96 + + + + + + Public services + 1984 + 96 + + + + + Public works + + + + 1983 + 96 + + + + + 1984 + 96 + + + + + + Reform + + + + 1979-1983 + 96 + + + + + 1984 + 96 + + + + + + Social Security + + + + 1983 + 96 + + + + + 1984 + 96 + + + + + + Special days + + + + 1983 + 96 + + + + + 1984 + 96 + + + + + + + Appropriations and funding + + + + FY1980 appropriations requests + 634 + + + + + FY1980 appropriations + 634 + + + + + FY1980 Labor, Health, Education, and Welfare, (R. Rives) + 1979 + 634 + + + + + FY1982 regular supplemental appropriations bill (C. Cutolo) + 634 + + + + + FY1982 urgent supplemental (C. Cutolo) + 634 + + + + + FY1983 Continuing resolution (C. Cutolo) + 634 + + + + + FY1984 Urgent supplemental appropriations, (C. Cutolo) + June 6, 1984 + 634 + + + + + Kennedy Center authorization, (R. Rives) + 1979 + 634 + + + + + Supplemental appropriations, (R. Rives) + 1979 + 634 + + + + + Appropriations projects + 1980 + 634 + + + + + Year-end continuing resolution, (C. Cutolo) + 1982 + 634 + + + + + Supplemental appropriations bill, (C. Cutolo, J. Callow, and K. + DeKuiper?) + 1983 + 634 + + + + + Sunset Act of 1980 + 1980-1981 + 1112 + + + + + + Balanced budget + 1979 + 634 + + + + + Balanced budget + January-April 1979 + 634 + + + + + Budget + + + + March + May 1980 + 634 + + + + + 1980 + 634 + + + + + 1981 + 634 + + + + + 1982 + 634 + + + + + FY1979 and FY1980 budget + 634 + + + + + FY1980 continuing resolution + 634 + + + + + FY981 + + + + Budget + 634 + + + + + Continuing resolution + 634 + + + + + + FY1982 + + + + Continuing resolution (C. Cutolo) + 634 + + + + + Reagan budget + 635 + + + + + + FY1983 (C. Cutolo) + + + + Budget resolution + 2 folders + 635 + + + + + Budget resolution amendment + 635 + + + + + Reconciliation bill + 635 + + + + + + FY1984 + + + + Budget resolution (C. Cutolo) + 635 + + + + + Information + 635 + + + + + Reconciliation amendments + November 1983 + 635 + + + + + + FY1985 (C. Cutolo) + + + + Budget + 635 + + + + + Budget cuts + 3 folders + 635 + + + + + + Budget models, (C. Cutolo) + 1981 + 635 + + + + + Budget oversight hearing -- reconciliation, (GAC; C. + Cutolo) + 3 folders + 1981-1982 + 636 + + + + + Concurrent resolution + + + + Second + 1979 + 636 + + + + + First concurrent resolution, (budget) + 2 folders + 1979-1980 + 636 + + + + + + Department of Defense (DOD) budget + May-June 1979 + 636 + + +

    (unobliged and unexpended balances; Michigan Selfridge project)

    +
    +
    + + + CRS Issue brief + May 10, 1979 + 636 + + + + + Education reallocation to Michigan + 1980 + 636 + + + + + Effects of Reagan's budget cuts, (C. Cutolo) + 1984 + 636 + + + + + Federal balance of payments + 1979-1981 + 636 + + + + + Federal balanced budget amendment + 1979 + 636 + + + + + Federal budget plan-Mondale + January-May 1984 + 636 + + + + + Internal Revenue Service (IRS) amendment, (C. Cutolo) + 1981-1982 + 636 + + + + + Merged surplus authority, (C. Cutolo) + 1980-1981 + 636 + + + + + Omnibus Reconciliation act of + 1981 + 636 + + + + + Reconciliation + 1980 + 636 + + +

    (Includes Levin statement)

    +
    +
    + + + Second budget resolution FY1981 + 636 + + + + + State and Local Government Fiscal Note Act-S.43 + 1981 + 636 + + + + + Unobligated balances, (C. Cutolo) + 1976-1981 + 636 + + +
    + + + Budget cuts and steel -- Carl's returned material + 1982-1983 + 636 + + +

    (COLA; C. Cutolo)

    +
    +
    + + + Budget and economics + 4 folders + 1980-1981 + 637 + + +

    (Includes a health amendment; R. Rives)

    +
    +
    + + + Black special and executive assistants in the Carter Administration, + ? + 1979-1981 + 637 + + + + + Black voting in the national elections + 1983-1984 + 637 + + + + + Campaign financing + 1979 + 637 + + + + + Central Intelligence Agency (CIA) + 2 folders + November 1979-September 1980 + 637 + + +

    (Contains S.2216)

    +
    +
    + + + Contacts + 1979-1980 + 637 + + + + + Governmental Affairs Committee (GAC) + + + + Subcommittee hearings + + + + Oversight potential hearings-Housing assistance programs, (Subcom + OGM) + 1979-1980 + 637 + + + + + Hearings, (Subcom OGM) + April-June 1980 + 637 + + + + + IRS Summary Collection Policy Impact on Small Business, (Subcom + OGM) + July 31, + 1980 + 637 + + + + + Mail Order Consumer Protection amendments-S.450 + March 2, + 1983 + 637 + + +

    (Subcommittee Civil Service, Post Office, and General Services; P. + Kyriacopoulos)

    +
    +
    +
    + + + Subcommittee on Oversight and Government Management (Sucom OGM; + GAC) + + + + Background and origin + October 1982 + 637 + + + + + Friday memos + 1979-1986 + 637 + + + + + Housing and Urban Development (HUD)-inventory of single family + homes + 1979 + 637 + + + + + Subcommittee creation + January-February 1979 + 637 + + + +
    + + + Information about Carter's White House + 1979-1981 + 637 + + + + + Judiciary + + + + Correspondence + 1979-1980 + 638 + + + + + Grand Jury reform bill + March 1983 + 638 + + +

    (Levin)

    +
    +
    + + + Grand Jury reform legislation + 1979-1986 + 638 + + + + + Reform + 1979 + 638 + + + + + Senator Harrison Williams, Jr.-ABSCAM investigation letters + 1981-1982 + 638 + + +
    + + + Legislative veto-Levin statement + June-July 1983 + 638 + + + + + Miscellaneous + 1979 + 638 + + + + + National holiday-Martin Luther King, Jr. day + 1983-1984 + 638 + + + + + New Federalism-Reagan (GAC) + + + + Hearing + February 4, + 1982 + 638 + + + + + Levin statement + March 11, + 1982 + 638 + + + + + Levin television response + 1981 + 638 + + + + + + Nominations and appointments + + + + Commissioner of Postal Rate Commission-Lee Fritschler + 1979 + 1031 + + + + + Director of Office of Management and Budget (OMB)-David Stockman + hearing, (Subcom OGM) + 1981 + 1031 + + + + + Miscellaneous + 2 folders + 1984-1986 + 638 + + + + + + Office of Management and Budget (OMB)-copies of final rules + amendment + 1984 + 638 + + + + + Passports and Detroit office + June-November 1984 + 638 + + + + + Postal service + + + + Commemorative stamp-William Saroyan + July 1981 + 638 + + + + + Free absentee ballot bill + December 1979 + 638 + + +

    (Levin)

    +
    +
    + + + Postal Rate Commission + February 1980 + 638 + + + + + School district distribution amendment + September 1979 + 638 + + + + + United Parcel Service + 1976-1981 + 638 + + +

    (UPS; Interstate Commerce Commission; J. Callow and R. Rives)

    +
    +
    +
    + + + Procedures for Constitutional Convention-S.3, (Senator Helms) + 1979 + 638 + + + + + Reagan + + + + 1984 + 638 + + + + + Reagan vs. Carter -- Republican file and Reagan issues + 1979-1980 + 639 + + + + + Statements + 1981 + 638 + + + + + + Regulatory reform-S.1080 amendment + 1984 + 638 + + + + + Regulatory Reform Act OMB legislative veto amendment, (Subcom + OGM) + March 1982 + 638 + + + + + Religion and politics-Levin's file + 1980-1981 + 639 + + + + + Senate confirmation process + 1980-1981 + 639 + + + + + Social Security + + + + 1979-1980 + 639 + + + + + Disability + 1979 + 639 + + + + + Disability + 1981-1982 + 639 + + + + + Social security disability + June-July 1982 + 639 + + +

    (Levin and Cohen legislation)

    +
    +
    + + + Hearing on Oversight of Social Security Disability Benefits + Terminations, (Subcom OGM) + May 25, 1982 + 639 + + + + + Minimum benefits + 1981 + 639 + + + + + Reagan administration changes-memos + May 1981 + 639 + + + + + Reform-disability bill + February 1983 + 639 + + +

    (Levin and Cohen)

    +
    +
    + + + Retirement and social security + 1 Book + 639 + + + + + Student benefits + 1981-1982 + 639 + + + + + Student benefits -- S.2107 (Levin bill) + 1982 + 640 + + + + + Tax, (J. Parker) + 1978-1979 + 640 + + + + + Transition benefits for widows + 2 folders + 1981-1983 + 640 + + +
    + + + Social Security student benefits + + + + I + 1982 + 640 + + +

    (Includes S.2150)

    +
    +
    + + + 1982 + 640 + + + + + III + 1982 + 640 + + + + + IV + 1982 + 640 + + + + + V + 1982 + 640 + + + + + VI + 1982 + 640 + + + + + S.2107-Increase the amount of children entitled to child's insurance + benefits under Title I of the Social Security Act + 1982 + 640 + + + + + S.2107-Social Security Student Benefits letters to Dole and the + President + 1982 + 640 + + + + + Draft bills + 1982 + 640 + + + + + Floor statements and colloquy + February 11, + 1982 + April 1, 1981 + 640 + + + + + House Information --Moynihan-Carl's floor statements + 1982 + 640 + + + + + Letter to Chairman Dole + March 24, + 1982 + 640 + + + + + Letter to the President + 1982 + 640 + + + + + Carl's Files + 1982 + 640 + + + + + Carl's Folder on Social Security Student Benefits + 1982 + 640 + + + + + Social Security brochures, telegraphic messages, CRS memos + 1982 + 641 + + + + + Student Financial Aid + 1982 + 641 + + + + + Take to floor + 1982 + 641 + + +
    + + + State of the Union review + January 1984 + 641 + + + + + U.S. Conference of Mayors, (J. Parker) + September 1979-January 1980 + 641 + + + + + Voter registration + 2 folders + 1984-1985 + 641 + + +
    + + + Health and Human Services + 1977-1993 + + + + Action files + + + + Adoption + + + + 1983 + 96 + + + + + 1984 + 96 + + + + + + Health + + + + 1983 + 96 + + + + + 1984 + 96 + + + + + + Senior citizens + + + + 1983 + 96 + + + + + 1984 + 96 + + + + + + Social services + + + + 1983 + 96 + + + + + 1984 + 96 + + + + + + + Adoption + + + + 1979-1984 + 746 + + + + + 2 folders + 1979-1993 + 746 + + + + + Adoption Identification Act + 1979 + 746 + + + + + Memos + 1979-1980 + 746 + + + + + Memos and letters + 1983-1987 + 746 + + + + + Levin legislation + 1979-1985 + 746 + + + + + National Voluntary Reunion Registry + 1980-1984 + 746 + + + + + Social Security Act amendments and adoption information + 2 folders + 1979-1984 + 746 + + + + + Subsidy + 4 folders + 1979-1981 + 746 + + + + + Tax change, (Related to adoption of a special needs or hart-to-place + child) + July 18, 1983 + 746 + + + + + + Appropriations-runaway youth FY1983 + 747 + + + + + Budget FY1981 cuts to HHS and welfare + 747 + + + + + Bureau of Alcohol, Tobacco, and Drugs + 1979-1980 + 747 + + + + + Children-social and welfare services + 1979-1980 + 747 + + + + + Children, youth, and women programs, P. Kyriacopoulos + January-April 1983 + 747 + + + + + Community development grants and fundraising + 1982 + 747 + + + + + Community Reinvestment Act (J. Parker) + + + + 1978 + 747 + + + + + 1979 + 747 + + + + + + Elderly-associations and programs + June-July 1980 + 747 + + + + + Emergency Food and Shelter Program + 1983-1984 + 747 + + + + + Family-women and childcare + 1978 + 747 + + + + + Federal Housing Administration (FHA) financing + 1978-1980 + 747 + + + + + Insurance-Health Care for All Americans Act + 1979 + 748 + + + + + Food labeling and safety + + + + Infant formula + 1979-1981 + 747 + + + + + Infant formula labeling and regulation + 1979 + 747 + + + + + Nutrition + 1980 + 747 + + + + + + Healthcare + + + + Abortion + January 1981 + 747 + + +

    (Includes one document on I-69 highway Michigan)

    +
    +
    + + + Chiropractors + 1979-1980 + 747 + + + + + Federal Drug Administration (FDA) + + + + Medical device testing + 1980 + 747 + + + + + Non-prescription drug products + 1979 + 747 + + + + + Pregnancy-AFP test kits and Benedectin + December 1980-January 1981 + 747 + + + + + Prescription drug regulation reform + 1979-1980 + 747 + + + + + + Foreign medical graduates + 1979 + 747 + + + + + Genetic disease amendment and disease information + 1979 + 747 + + + + + Good Samaritan law-aircrafts + 1978-1979 + 747 + + + + + H-1 nurses and immigration + March-June 1980 + 747 + + + + + Health (Michigan) + 2 folders + 1979 + 747 + + + + + Health Incentives Reform Act + July 1979 + 747 + + +

    (Dear Colleague)

    +
    +
    + + + Levin's Health Advisory Group-Pete Johnson-topics and + issues + April-May 1981 + 747 + + + + + Health, Medicaid, and drugs + 2 folders + 1983-1992 + 747 + + + + + Health planning-antitrust exemption issues + 1980 + 748 + + + + + Health Sciences Promotion Act-S.988 + 1979-1980 + 748 + + + + + HealthPlus insurance-Levin and Riegle + August-September 1984 + 748 + + + + + Hospices (Michigan) + 1980 + 748 + + + + + Hospitals + 1984 + 748 + + + + + Hospitals and Medicaid + 1983 + 748 + + + + + Marijuana-therapeutic + July-September 1980 + 748 + + + + + Medicaid, hospitals, and elderly, (Michigan) + 1981-1986 + 748 + + + + + Medicaid and Medicare + + + + Dental care-elderly + 2 folders + 1979-1983 + 748 + + + + + Hospital reimbursement + April-May 1984 + 748 + + + + + Health Care Financing Administration proposed rules + June-August 1980 + 748 + + + + + Long-term care integration project-Michigan, (J. Parker) + 1979-1980 + 748 + + + + + Payment systems and Michigan hospitals + 3 folders + 1983-1984 + 748 + + + + + Psychological and other services amendment + 3 folders + 1979-1980 + 748 + + +

    (Amendment to Social Security Act)

    +
    +
    +
    + + + Medical conditions + + + + Agoraphobia + December 1979 + 748 + + + + + Amyotrophic Lateral Sclerosis + April-May 1979 + 748 + + + + + Arthritis + 1979-1980 + 748 + + + + + Cancer-general + June 1979 + 748 + + + + + Cancer-Laetrile + 1977-1979 + 748 + + + + + Cancer-nitrates and nitrites + March-April 1979 + 748 + + + + + Cancer-saccharin + June-August 1979 + 749 + + + + + Cerebral Palsy + August 1979 + 749 + + + + + Cystic fibrosis + June 1979 + June 1980 + 749 + + + + + Diabetes + 1979 + 749 + + + + + Digestive diseases + 1979 + 749 + + + + + Diseases-various + April-June 1979 + 749 + + + + + Epilepsy + June-August 1979 + 749 + + + + + Lupus + July 1979 + 749 + + + + + Reyes Syndrome + 1979-1980 + 749 + + + + + + National Abortion Rights Action League + 1980-1981 + 749 + + + + + National Health Service Corps legislation + 1980 + 749 + + + + + Nurse shortages + 2 folders + 1979-1980 + 749 + + + + + Planning and reform + October 1980 + 749 + + + + + Prescription drugs-anti-nausea and morning sickness + 1980 + 749 + + + + + Professional Standards Review Organization letters, + (Michigan) + 1981 + 749 + + + + + Regulations + 1979-1980 + 749 + + +
    + + + Hunger-Special Report DPC + August 4, 1983 + 749 + + + + + Legal Services Corporation hearings-Governmental Affairs Committee, + (GAC) + 1981-1983 + 749 + + + + + Marijuana, (J. Collier) + March 1979 + 749 + + + + + Miscellaneous-Children and elderly, (J. Parker) + January-March 1980 + 749 + + + + + Miscellaneous-Aging, administrative, black staffers, family, foreign + policy, family, health, housing, (J. Parker) + 2 folders + 1980 + 749 + + + + + Older Americans Volunteer program-reauthorization + 1984 + 749 + + + + + Surgeon General nomination-Koop-news article + 1981 + 1031 + + + + + Welfare + 1979-1982 + 749 + + + + + Welfare-reports and publications + 1979 + 749 + + +
    + + + Housing + 1975-1984 + + + + Action file + 1983 + 96 + + + + + Action file + 1984 + 96 + + + + + Appropriations + + + + Housing and Urban Development (HUD), (R. Rives) + 1979 + 781 + + + + + Housing and Urban Development (HUD) + 1981 + 781 + + +

    (Includes Urband Development Action Grant -- UDAG; R. Rives)

    +
    +
    +
    + + + Emergency Homeowners' Relief + + + + Housing rehabilitation letters and memos + 1975 + 781 + + + + + Reports on Home mortgage loan delinquencies and + foreclosures + 2 folders + 1975 + 781 + + + + + + Home Mortgage Disclosure act and Fair Housing act amendments + 1980 + 781 + + + + + Homeless legislation + 2 folders + 1980-1984 + 781 + + + + + Housing and Community Development act + 3 folders + May-September 1980 + 781 + + +

    (Includes list of staffer issue area assignments)

    +
    +
    + + + Housing and Community Development Act-S.1338 + June 1983 + 781 + + +

    (Levin)

    +
    +
    + + + Housing and urban development independent agencies, (R. + Rives) + 1980 + 781 + + + + + Leasing transactions, (H.R.8073 R. Rives) + 1980 + 781 + + + + + Newsletters and articles + 1981-1983 + 781 + + + + + Selected reports Residential Conservation Service (RCS) + evaluation + 1983 + 781 + + + + + Rosslyn high rise and DC skyline + + + + Against + 1979 + 781 + + + + + Miscellaneous + 5 folders + 1979-1980 + 782 + + + + + + Urea Formaldehyde Foam + 2 folders + 1979-1980 + 781 + + + + + Urea Formaldehyde insulation + + + + 1983 + 782 + + + + + 2 folders + 1983 + 782 + + + + + 1984 + 782 + + + +
    + + + Human Rights + 1979-1999 + + + + Armenian Genocide + + + + 3 folders + 1982 + 785 + + + + + 2 folders + 1983 + 785 + + + + + + Articles and correspondence + 1979-1985 + 785 + + + + + Helsinki Conference and USSR + July 1983 + 785 + + + + + Holocaust Center and Jewish community + 1984 + 785 + + + + + Jewish issues-Levin's file + 2 folders + 1980-1981 + 785 + + + + + Rights of Judges and Lawyers + 1980 + 785 + + + + + World War II + + + + Klaus Barbie-Reports and Levin questions + 1983 + 785 + + + + + Holocaust + + + + Anne Frank day + 1985 + 785 + + + + + Holocaust Memorial Council-Auschwitz exhibit Detroit + 1979-1980 + 785 + + + + + Holocaust Museum-signed speech by Elie Wiesel + October 1981 + 785 + + + + + + Wallenberg, Raoul + + + + Investigation + + + + 3 folders + 1979-1981 + 785 + + + + + 4 folders + 1980-1981 + 785 + + + + + + University of Michigan-Raoul Wallenberg lecture + + + + 1980 + 786 + + + + + 1990s + 786 + + + + + Levin Wallenberg Ceremony + 1 videocassettes (U-matic) + 1987 October 08 + 786 + + + + + + + + + Immigration + 1975-1984 + + + + Action files + + + + 1983 + 96 + + + + + 1984 + 96 + + + + + + Amerasian children-S.1698 + 6 folders + 1975-1982 + 791 + + + + + DPC bulletin and illegal immigration + 1983 + 791 + + + + + Detroit passport office closure + 1984 + 791 + + + + + Hispanic citizens and immigration + 1983 + 791 + + + + + Hispanic immigration and casework + 1981-1984 + 791 + + + + + Illegal + 1981 + 791 + + + + + Immigration and Naturalization Service (INS) + 1983-1984 + 791 + + + + + Immigration Reform and Control Act -- S.529 + + + + Amendments + 1983 + 791 + + + + + Asylum + 1983 + 791 + + + + + Discrimination + 1983 + 791 + + + + + Employer sanctions + 1983 + 791 + + + + + + + Industry + 1964-1984 + + + + Auto Industry + + + + Action files + + + + 1983 + 96 + + + + + 1984 + 96 + + + + + + FY1981 -- Chrysler and Williams Advanced Gas Turbine Engine program (R. + Rives) + 794 + + + + + Automotive trade statistics 81 + 1 Booklet + 1964-1980 December + 19 + 794 + + + + + Chrysler + June 1979 + 794 + + +

    (report to shareholders and corporate income tax notes)

    +
    +
    + + + Chrysler Corp. Loan Guarantee Act-S.2094 + + + + 4 folders + 1980 + 1049 + + + + + Committee on Banking, Finance, and Urban Affairs + + + + Economic Development Administration (EDA) assistance + 1979 + 794 + + + + + Employee Stock Ownership Plans + 1979 + 794 + + + + + Miscellaneous + 2 folders + 1979 + 794 + + + + + + Debate + 1979 + 794 + + + + + Hearing and testimony + 4 folders + 1979 + 795 + + + + + Windfall tax for domestic crude oil-EDA assistance for auto + communities-H.R.3919 + 1979 + 795 + + + + + + Domestic and foreign auto industry + 3 folders + 1980 + 795 + + + + + Federal Trade Commission litigation settlement against General + Motors + 1983 + 795 + + + + + GM-Toyota joint venture + 3 folders + 1982-1983 + 795 + + + + + International Trade Commission investigation + 2 folders + September-October 1980 + 795 + + + + + Nissan Motor Company-Light truck assembly plant letter, + (Michigan) + May 12, 1980 + 796 + + + + + Sealed Power Corporation + 1979-1981 + 796 + + +

    (Includes Riegle-Levin legislation; R. Rives)

    +
    +
    + + + United Auto Workers (UAW) speech on inflation + April 8, 1980 + 796 + + + + + U.S. auto industry background and CRS issue brief, P. + Kyriacopoulos + 1980-1983 + 796 + + + + + Volkswagen + 1980 + 796 + + +

    (Michigan plant)

    +
    +
    + + + Smog decree, anti-trust laws and autos – Big Three and Justice + Department + 2 folders + 1979-1981 + 1113 + + +
    + + + Domestic policy review of industrial innovation + 1979-1980 + 796 + + + + + Domestic steel investment + May 1979 + 796 + + + + + Industrial policy + 1983-1984 + 796 + + + + + Plant closings-regulations and energy impact legislation + 1979-1980 + 796 + + + + + Products Liability Act + 1983-1984 + 796 + + +
    + + + Interior + 1973-1984 + + + + Action files -- Native Americans + 96 + + + + 1983 + 96 + + + + + 1984 + 96 + + + + + + Native Americans + 800 + + + + Fishing in Great Lakes and state-tribal compacts + 1979-1980 + 800 + + + + + Fishing rights-Judge Fox + 2 folders + 1979 + 800 + + + + + General + 1983-1984 + 800 + + + + + + RARE II legislation-Roadless area review and evaluation, (U.S. Forest + Service) + March-May 1980 + 800 + + + + + Secretary of the Interior-James Watt + 1983 + 800 + + + + + Sleeping Bear Dunes National Lakeshore + + + + 4 folders + 1973-1984 + 800 + + + + + 1982-1984 + 800 + + + + + Land acquisition-S.1868 + 1984 + 800 + + + + + + + Labor + 1976-1985 + + + + Action files + + + + 1983 + 96 + + + + + 1984 + 96 + + + + + + Amalgamated clothing workers-Levin remarks + October 11, + 1980 + 809 + + +

    (Chicago)

    +
    +
    + + + Child labor law revisions + 1982 + 809 + + + + + Communications, P. Kyriacopoulos + 1981-1983 + 809 + + + + + Communications issues, P. Kyriacopoulos + 1982-1983 + 809 + + + + + Comprehensive Employment and Training Act (CETA), (B. Fogel) + 1979-1980 + 809 + + + + + St. Clair County CETA, (Comprehensive Employment and Training + Act) + August 1981 + 1029 + + + + + Conscientious objection to unions, (B. Fogel) + 1979-1980 + 809 + + + + + Davis Bacon Act reform + 1981 + 809 + + + + + Davis-Bacon workman's compensation + February-March 1979 + 809 + + +

    (S.420 federalize workers compensation; GM and Ford are against)

    +
    +
    + + + Department of Labor, (B. Fogel) + 1979 + 809 + + + + + Displaced Workers Task Force and agenda for job creation news + articles + 1984 + 809 + + +

    (Levin was Chairman)

    +
    +
    + + + Employee benefits and issues, P. Kyriacopoulos + 1983 + 809 + + + + + Employee Retirement Income Security Act, (B. Fogel) + 1979-1980 + 809 + + + + + Employment discrimination + 1980-1983 + 809 + + +

    (Migrant workers, sexual orientation, and veterans; P. Kyriacopoulos)

    +
    +
    + + + Face enterprises + 1981-1982 + 809 + + +

    (Pension plan termination)

    +
    +
    + + + Fair labor standards, (B. Fogel) + 1976-1980 + 809 + + + + + Farm workers, (B. Fogel) + 1979-1980 + 809 + + + + + Federal Labor Standards Act amendment-loggers + 1981-1982 + 809 + + + + + Frances Perkins + 1979 + 809 + + +

    (Department of Labor building -- Levin wants to name after Perkins; B. Fogel)

    +
    +
    + + + Frances Perkins building, (B. Fogel) + 1979 + 809 + + + + + HATCH Act for Federal employees, (B. Fogel) + 1979-1980 + 809 + + + + + Hearings -- Steel plant closing + February 5, + 1980 + 809 + + +

    (Impact of the Closing of U.S. Steel Plants on Small Businesses and Local + Communities -- SBC; B. Fogel)

    +
    +
    + + + Industrial policy and Jobs for Future bill + 1984 + 809 + + + + + Job Training Partnership act-Quayle and Kennedy + 1982 + 809 + + + + + Job training programs + 1982 + 809 + + + + + Jobs bill, (C. Cutolo) + 1983 + 809 + + + + + Labor and pension memos, (B. Fogel) + 1979-1980 + 810 + + + + + Longshoreman's and Harbor Workers Compensation Act-S.1182 P. + Kyriacopoulos + May-September 1981 + 810 + + + + + Harbor Workers Act-developments in U.S Auto Industry, P. + Kyriacopoulos + December 1981 + 810 + + + + + Management and Employee Relations within the Federal Aviation + Administration (FAA) task force report, P. Kyriacopoulos + March 1982 + 810 + + + + + Michigan jobs + 1983 + 810 + + + + + Miscellaneous P. Kyriacopoulos + + + + September 1982-April 1983 + 810 + + + + + March-April 1983 + 810 + + + + + + Occupational Safety and Health Administration (OSHA) (B. + Fogel) + + + + Reform bill + 1979-1980 + 810 + + + + + OSHA and small business + 1979 + 810 + + + + + + Plant closing issues, (B. Fogel) + 1979-1980 + 810 + + + + + Policy for Youth Employment and Training in Michigan by MI Department of + Labor, P. Kyriacopoulos + September 1981 + 810 + + + + + Panama Canal captive tenant employees + 2 folders + 1981-1983 + 810 + + + + + Pension information and legislation, (B. Fogel) + February-April 1984 + 810 + + + + + Retirement Equity Act (REAct)-pension equity for employees and + spouses + 1984 + 810 + + + + + Retirement systems, P. Kyriacopoulos + 1982-1983 + 810 + + + + + Small Business Committee mark-up, (SBC; B. Fogel) + 1979-1980 + 810 + + + + + Task Force on Emergency Human Needs jobs bill recommendations and Levin + amendment + February-March 1983 + 810 + + + + + Technical review amendment, (B. Fogel) + 1980 + 810 + + + + + Trade Adjustment Assistance (TAA) + + + + 1979-1980 + 810 + + +

    (B. Fogel)

    +
    +
    + + + Hearings, (Levin testimony; C. Cutolo) + December 7, + 1981 + 810 + + + + + Trade Act adjustment assistance programs-H.R. 1543 + 2 folders + 1979-1980 + 810 + + +
    + + + Trade, labor, and visas, (Michigan) + 1982-1985 + 811 + + + + + Trade Readjustment Assistance + 811 + + + + Press releases, (Michigan) + June 1980 + + + + + Trade act memo + June 1980 + 811 + + + + + + Unemployed Veterans Job Search Training Experimental Program + act-S.2897 + 1982 + 811 + + + + + Unemployment + + + + P. Kyriacopoulos + March-April 1983 + 811 + + + + + 1984 + 811 + + + + + General unemployment data, (C. Cutolo) + 2 folders + 1982-1983 + 811 + + + + + Health insurance for the unemployed, (C. Cutolo) + 1983 + 811 + + + + + Unemployment compensation + + + + January-June 1982 + 811 + + +

    (C. Cutolo)

    +
    +
    + + + 2 folders + June-October 1982 + 811 + + +

    (C. Cutolo)

    +
    +
    + + + 2 folders + January-June 1983 + 811 + + + + + Folder 1 + July-October 1983 + 811 + + + + + Folder 2 + July-October 1983 + 812 + + +
    + + + Unemployment insurance, (B. Fogel) + 1979-1980 + 812 + + + + + Unemployment and Jobs bill + 2 folders + 1982-1983 + 812 + + +

    (Emergency Unemployment Aid bill; C. Cutolo)

    +
    +
    +
    + + + Workers compensation, (B. Fogel) + 1979 + 812 + + +
    + + + Michigan + 1979-1984 + + + + Accomplishments and projects + 1979-1984 + 816 + + + + + Action files + + + + 1983 + 96 + + + + + Local government + 1984 + 96 + + + + + Frank Kelley at Jeff-Jack + 1 audiocassettes + 1984 March 10 + 96 + + + + + + Autoworld Six Flags racist exhibit (Flint, Michigan) + September-October 1984 + 816 + + + + + Grants and contracts + 2 folders + 1984 + 816 + + + + + Housing-Levin and Riegle news release + 1984 + 816 + + + + + Levin + 1984 + 816 + + +

    (Includes a photograph)

    +
    +
    + + + Miscellaneous + 1983-1984 + 816 + + + + + Niles-First Federal Savings and Loan Association + September 1980 + 816 + + + + + Pontiac-Food Co-Op + May 1980 + 816 + + + + + Projects-health and railroads + 1980 + 816 + + + + + Sand Dunes-Ausable and Manistee Rivers + 2 folders + 1979 + 816 + + + + + Upper Peninsula + + + + Conference call-regional press + October 20, + 1981 + 816 + + + + + Economy + 2 folders + 1980-1984 + 816 + + + + + Press conference and military defense contracts letter + August-September 1982 + 816 + + + + + + Coleman Young + 1979 + 816 + + +
    + + + Patents + 1979-1980 + + + + Independent Patent and Trademark Office-S.2079 + 1980 + 816 + + + + + Uniform patent policy for research and development-S.1215 + 1979 + 816 + + + + + University and Small Business Patent Procedures act-S.414 + 1980 + 816 + + + + + + Press + 1979-1984 + + + + Background on news people, papers, and stations + 1979 + 834 + + + + + Congressional ratings + 1984 + 834 + + + + + Congressional Record excerpts + + + + 1983-Indexes + 834 + + + + + 1984 + + + + January-March + 834 + + + + + April-June + 2 folders + 834 + + + + + July-September + 834 + + + + + October-December + 834 + + + + + Indexes + 834 + + + + + + + Correspondence + 1984 + 834 + + + + + Headlines + 1982 + 834 + + + + + Michigan Magazine + February 13, + 1983 + 834 + + + + + Michigan Press Reading Service (MPRS) + + + + 3 folders + July-December 1983 + 834 + + + + + December 1983 + 834 + + + + + 3 folders + January-June 1984 + 834 + + + + + 16 folders + January-October 1984 + 835 + + + + + + News articles + + + + January-February 1980 + 835 + + + + + 2 folders + 1980-1981 + 835 + + + + + 1982 + 835 + + + + + February-July 1983 + 835 + + + + + 2 folders + 1983 + 836 + + + + + Levin + 1983 + 836 + + +

    (Written by Levin)

    +
    +
    + + + Levin-Carl and Sandy + 1983 + 836 + + + + + Levin + 1984 + 836 + + +

    (About Levin)

    +
    +
    + + + Levin-car thief + January 1984 + 836 + + + + + Levin gets his man -- and car + undated + 1050 + + +

    (Photograph of Levin's car and the news article framed in matting of when Levin + stopped a car thief from stealing his car)

    +
    +
    + + + Auto Theft-Levin + 1984 + 836 + + +
    + + + News articles and speeches + 1984 + 836 + + + + + News summaries from U.S. Senator Carl Levin + March 1979-December 1980 + 836 + + + + + Office subject files + + + + Abortion + + + + 1983 + 836 + + + + + 1984 + 836 + + + + + + Acid rain + 1983 + 836 + + + + + Active + 1983 + 836 + + + + + Adoption + 1983 + 836 + + + + + Afghans + 1983 + 836 + + + + + Africa + 1984 + 836 + + + + + Agent Orange + 1984 + 836 + + + + + Agriculture + + + + 1983 + 836 + + + + + 1984 + 836 + + + + + + Airports + 1984 + 836 + + + + + Americans for Democratic Action (ADA) + + + + 1983 + 836 + + + + + 1984 + 836 + + + + + + Armenians + + + + 1983 + 836 + + + + + 1984 + 836 + + + + + + Autos + + + + 1983 + 836 + + + + + 1984 + 836 + + + + + + B-1 + + + + 1982-1984 + 836 + + + + + 1984 + 836 + + + + + + Bader-Syria + 1984 + 836 + + + + + Batten's disease + 1983 + 836 + + + + + Beans + + + + 1984 + 836 + + + + + + Budget + + + + 1983 + 836 + + + + + 1984 + 836 + + + + + + Business + 1983 + 836 + + + + + Busing + 1983 + 836 + + + + + Buy American + 1983 + 836 + + + + + Casework + 1984 + 837 + + + + + Censorship + 1984 + 837 + + + + + Child Abuse + 1984 + 837 + + + + + Children + 1983 + 837 + + + + + Civil rights + + + + 1983 + 837 + + + + + 1984 + 837 + + + + + + Classified information + 1983 + 837 + + + + + Coins + 1984 + 837 + + + + + Column + 1983 + 837 + + + + + Computers + 1984 + 837 + + + + + Confidence building + 1983 + 837 + + + + + Conservation + 1984 + 837 + + + + + Copper + 1984 + 837 + + + + + Correspondence + 1983 + 837 + + + + + Courts + 1983 + 837 + + + + + Credit Cards + 1984 + 837 + + + + + Death penalty + + + + 1983 + 837 + + + + + 1984 + 837 + + + + + + Defense + + + + 1983 + 837 + + + + + 1984 + 837 + + + + + Burden sharing + 1984 + 837 + + + + + Chart wars + 1983 + 837 + + +

    (Includes "The Other Side of the Story" by Carl Levin)

    +
    +
    + + + Disarmament + + + + 1982-1983 + 837 + + + + + 1984 + 837 + + + + + + Elf + 1983 + 837 + + + + + Michigan + 1984 + 837 + + + + + Non-Michigan + 1983 + 837 + + +
    + + + Deficits + + + + 1983 + 837 + + + + + 1984 + 837 + + + + + + Detroit + 1983 + 837 + + + + + Dioxin + 1983 + 837 + + + + + Disability + + + + 1983 + 837 + + + + + 1984 + 837 + + + + + + Education + + + + 1983 + 837 + + + + + 1984 + 837 + + + + + + Elderly + + + + 1983 + 837 + + + + + 1984 + 837 + + + + + + Election '84 + September-December 1983 + 837 + + + + + Emergency Aid + 1984 + 837 + + + + + End of year spending + 1983 + 837 + + + + + Energy + + + + 1983 + 837 + + + + + 1984 + 837 + + + + + + Ethics + + + + 1983 + 838 + + + + + 1984 + 838 + + + + + + Ethnics + + + + 1983 + 838 + + +

    (Includes a photograph)

    +
    +
    + + + 1984 + 838 + + +
    + + + Exchanges + 1983 + 838 + + + + + Exclusionary rule + 1984 + 838 + + + + + Exports + 1984 + 838 + + + + + Federal Workers + 1984 + 838 + + + + + Finances + 1984 + 838 + + + + + Food + 1984 + 838 + + + + + Great Lakes + 1984 + 838 + + + + + Grayling + 1984 + 838 + + + + + Reagan foreign policy + 1983 + 838 + + + + + Reconstructionism + 1983 + 838 + + + + + Recruiting + 1983 + 838 + + + + + Refuseniks + 1983 + 838 + + + + + Regulation Reform + 1983 + 838 + + + + + Revenue sharing + 1983 + 838 + + + + + Sault St. Marie locks + 1983 + 838 + + + + + School prayer + 1983 + 838 + + + + + Security + September 13, + 1983 + 838 + + +

    (GAC hearing transcript-National Security Decision Directive 84)

    +
    +
    + + + Selfridge + 1983 + 838 + + + + + Senate + 1983-1984 + 838 + + + + + Shipping-Great Lakes + 1983 + 838 + + + + + Social security + 1983 + 838 + + + + + Soviet Jews + 1983 + 838 + + + + + Spare parts + 1983 + 838 + + + + + Speeches + 1983 + 838 + + + + + Tax reform + 1983 + 838 + + + + + Telephones + 1983 + 838 + + + + + Toxic waste + 1983 + 838 + + + + + Trade + 1983 + 838 + + + + + Trips + 1983 + 838 + + + + + Tuition credit + 1983 + 838 + + + + + Unemployment + 1983 + 838 + + + + + United Nations (U.N.) + 1983 + 838 + + + + + UP news conference call + December 16, + 1983 + 838 + + + + + Union + 1983 + 838 + + + + + User fees + 1983 + 838 + + + + + Withholding + 1983 + 838 + + + + + Women + 1983 + 838 + + + + + Wurtsmith Air Force Base + 1983 + 838 + + +
    + + + Photographs + 14 folders + 838 + + +

    (Includes: Atlas Photo Company, trip to Philippines, contact sheets and + negatives, Northern Michigan University, various photos, Detroit City Council, + March of Dimes poster child, head shot-smiling, Levin with child-promo pics, head + shot-Levin talking, head shots-arms crossed and talking with bowl, installation of + art piece, U.S. Senate Youth Program Scholarship, Levin at Capitol)

    +
    +
    + + + Press relations newswire-Detroit + 1979 + 839 + + + + + Press releases + + + + 2 folders + 1979 + 839 + + + + + 3 folders + 1979 + 839 + + + + + January-February 1980 + 839 + + + + + 2 folders + 1980 + 839 + + + + + 3 folders + 1980 + 839 + + + + + 2 folders + 1981 + 839 + + + + + 3 folders + 1981 + 840 + + + + + 3 folders + 1982 + 840 + + + + + 4 folders + 1983 + 840 + + + + + 3 folders + 1984 + 840 + + + + + + Press Secretary-Philip Shandler + 1983-1984 + 840 + + + + + Report to Michigan Levin radio series + + + + September 6, + 1979 + 840 + + + + + Radio station list + December 1980-January 1981 + 840 + + + + + + U.S. Senate Press Secretaries Association and New York trip, (S. + Serkaian) + November 12-14, 1982 + 840 + + +
    + + + Speeches + 1978-1989 + + + + 1979-1984 + + + + A.D.A. (Americans for Democratic Action), Folder 1 + June 23, 1979 + 934 + + + + + A.D.A. File 2 + June 23, 1979 + 934 + + + + + AFL-CIO Economy + 1981 + 934 + + + + + AFL-CIO + 1983 + 934 + + + + + AIM-9L/AWACS + 1981 + 934 + + + + + Arms Control (Central Michigan University) + 1982 + 934 + + + + + Autos + 1980-1982 + 934 + + + + + AWACS + 1981 + 934 + + + + + Balanced Budget (Constitutional Amendment) + May 23, 1979 + 934 + + + + + Capital Punishment + 1981 + 934 + + + + + Children + 1979 + 934 + + + + + Civilian Conservation Corps + May 28, 1983 + 934 + + + + + Defense + 1981 + 934 + + + + + Defense #2 + 1981 + 934 + + + + + Defense + 1981-1982 + 934 + + + + + Defense-Detroit News + April 1982 + 934 + + + + + Defense-Levin Reply, CBS-TV + March 30, + 1983 + 934 + + + + + Defense-Manpower + 1980 + 934 + + + + + Defense-Middle East + 1981 + 1980 + 934 + + + + + Defense-Political + 1980 + 934 + + + + + Defense Registration + 1980 + 934 + + + + + Defense SALT + 1979 + 934 + + + + + Defense SALT + 1980 + 934 + + + + + Democratic Convention (San Francisco) + 1984 + 934 + + + + + Democratic State Convention + August 1982 + 934 + + + + + Democratic Response Reagan's Weekly Radio Address + February 5, + 1983 + 934 + + + + + Economic Club of Detroit + September 17, + 1984 + 934 + + + + + Economy UAW + 1980 + 934 + + + + + Economy (never given?) + 1980 + 934 + + + + + Regional Economy + June 1, 1981 + 934 + + + + + Economy (Reagan) Detroit News + February 1980 + 934 + + + + + Education + 1981 + 934 + + + + + Electoral College + 1979 + 934 + + + + + Energy + 1979 + 934 + + + + + + 2 folders + 1980-1982 + 935 + + + + + Ethnic legislation + undated + 935 + + +

    (Statement; Ethnic legislation for the new decade)

    +
    +
    + + + Ethnics + 1979-1980 + 935 + + + + + Ethnics-Armenians + June 1981 + 935 + + + + + Federal bar association + November 11, + 1986 + 935 + + + + + Ferraro + September 11, + 1984 + 935 + + +

    (Flint, Michigan)

    +
    +
    + + + Ferris State University + May 20, 1989 + 935 + + + + + Free Press + 2 folders + 1981 + 935 + + +

    (Regarding Senate)

    +
    +
    + + + Graduation + + + + 1979 + 935 + + + + + 1980 + 935 + + + + + Graduation speeches and comments + 1980-1989 + 935 + + + + + Holly Sr. High school graduation + June 9, 1989 + 935 + + + + + + Hart Plaza + July 4, 1984 + 935 + + + + + Human Rights + March 1981 + 935 + + + + + Independent Counsel + April 10, 1987 + 935 + + + + + Iran + November 26, + 1979 + 935 + + + + + Israel + June 1981 + 935 + + + + + Israel bonds convention + September 1985 + 935 + + + + + Israel bonds dinner (Detroit) + May 12, 1988 + 935 + + + + + Jeff-Jack + + + + Jeff-Jack dinner + 1982 + 935 + + + + + 1983 + 935 + + + + + 1985 + 935 + + + + + April 19, + 1986 + 935 + + + + + + Jews + + + + 1978 + 935 + + + + + 1980 + 935 + + + + + Camp David + March 1979 + 935 + + + + + Chicago Reconstructionist promises + 1981 + 935 + + + + + Chickens cows and horses, (Miami) + March 4, 1982 + 935 + + + + + Definitive + 1979 + 935 + + + + + Fundraising + April 1981 + 935 + + + + + Jews and Democrats + 1980 + 935 + + + + + Jews ethics + February 1980 + 935 + + + + + Jews (Lubavitch) + undated + 935 + + + + + Jews (New York) after AWACS + December 1981 + 935 + + + + + Shaarey Zedek (Jews) + May 9, 1982 + 935 + + + + + + Haig vote + undated + 936 + + + + + Jordan College Commencement + May 6, 1989 + 936 + + + + + Labor + 1981 + 936 + + + + + Labor Day remarks + 1981 + 936 + + + + + Law + + + + Nature of the Senate + 1980 + 936 + + + + + Grand Jury + undated + 936 + + + + + + Lebanon + + + + August 1, + 1982 + 936 + + +

    (Solidarity with Israel Rally)

    +
    +
    + + + October 12, + 1982 + 936 + + +
    + + + Legislative veto + undated + 936 + + + + + Linkage -- SALT + 1979 + 936 + + + + + Michigan commissioning + September 11, + 1982 + 936 + + + + + Michigan Democratic Committee + February 16, + 1983 + 936 + + + + + Middle East trip + December 1980 + 936 + + + + + Miscellaneous speeches + 1984-1985 + 936 + + + + + Missing in Action (MIA) medal ceremony + September 29, + 1984 + 936 + + + + + MX stuff + 1981 + 936 + + + + + NAACP + 1984 + 936 + + + + + National Association of Retired Citizens + November 11, + 1983 + 936 + + + + + New York Israel Bond Diner + November 2, + 1983 + 936 + + + + + Nuclear Dearborn High School + December 5, + 1983 + 936 + + + + + Nuclear Temple Emanuel + September 24, + 1983 + 936 + + + + + Nuclear energy + 1983 + 936 + + + + + OMB article + 1981 + 936 + + +

    (Reagan executive order)

    +
    +
    + + + Philadelphia remarks + June 1, 1981 + 936 + + + + + Pittsburgh Israel Bond Dinner + October 16, + 1983 + 936 + + + + + Po + 1981 + 936 + + + + + Politics + + + + 1978 + 936 + + + + + Election piece + 1980 + 936 + + + + + Michigan + 1981 + 936 + + + + + Politics and Liberals, (Chicago) + 1980 + 936 + + + + + Politics liberals or progressives, (after June 1981) + undated + 936 + + + + + + Radio response to Reagan + April 10, 1982 + 936 + + + + + SALT -- MX and beyond + November 11, + 1982 + 936 + + + + + Small business + 1981 + 936 + + + + + Solar energy + undated + 936 + + + + + Senate press club + 1978 + 936 + + + + + Miscellaneous + 1981-1985 + 936 + + + + + Tax bill + July 29, 1981 + 936 + + + + + United Jewish Appeal + May 22, 1983 + 936 + + + + + Valley Forge + September 29, + 1984 + 936 + + + + + Vashchenko sand Chmykhalovs + 1981 + 936 + + + + + Wallenberg lecture + 1981 + + + + Wallenberg file 3 + 936 + + + + + Wallenberg file 4 + 936 + + + + + + Speeches and remarks + 1979-1983 + 936 + + + + + Speeches and talking points + + + + 2 folders + 1980 + 936 + + + + + 2 folders + 1984 + 937 + + + + + + Speech notes + 4 folders + 1979-1981 + 937 + + + + + Levin statements + 1979 + 937 + + +
    + + + Trade + 1978-1984 + + + + Action files + + + + 1983 + 97 + + + + + 1984 + 97 + + + + + + Baucus -- Auto usury amendment + June 1980 + 974 + + +

    (Includes Levin statement of support)

    +
    +
    + + + Carbon and Certain Alloy Steel Products, (2 books) + 1984 + 974 + + + + + China -- Most Favored Nation (MFN) + 1979-1980 + 974 + + + + + Crude feathers and down + May 1980 + 974 + + +

    (Tariff treatment)

    +
    +
    + + + Export caucus + 1979 + 974 + + +

    (Senator William V. Roth)

    +
    +
    + + + Export caucus + 1980 + 974 + + + + + Export incentive program -- Export-Import Bank of the United + States + 1980 + 974 + + + + + Export Trading Company Act-S.2718 + 1980 + 974 + + + + + Federal Trade Commission (FTC)-backhauling food distribution + 1978-1980 + 974 + + + + + Ferrous scrap exports + July 1979 + 974 + + + + + International sugar agreement + March 31, 1980 + 974 + + +

    (Democratic Legislative Bulletin)

    +
    +
    + + + International trade + 2 folders + 1979 + 974 + + + + + Japan defense + 1982-February 1983 + 974 + + +

    (Increased defense budget and also auto material; C. Cutolo)

    +
    +
    + + + Japan trade, (B. Fogel) + 2 folders + 1980 + 974 + + + + + Japanese autos + 1979-1980 + 975 + + + + + Leather issues + July 1980 + 975 + + + + + Mexico + 1980 + 975 + + + + + Mushrooms -- import distributions + 1979 + 975 + + +

    (Also includes ammonia)

    +
    +
    + + + Oil import fee vote + May-June 1980 + 975 + + + + + Presidential reorganization resolution + 1979 + + + + General + 975 + + + + + Impact assessments proposal + 975 + + + + + Trade + 975 + + + + + Trade reorganization + 975 + + + + + + Shipping Act memos, (C. Cutolo) + July-November 1982 + 975 + + + + + Steel + + + + Chipper Knife importation legislation, (Michigan) + 1983-1984 + 975 + + + + + Chipper Knife legislation + 1984 + 975 + + + + + Steel caucus-termination of import restraint program + 1979-1980 + 975 + + + + + + Tariff treatment of certain articles-H.R. 3122 + 1979-1980 + 975 + + + + + Trade reorganization-hearing and S.970 + 1981 + 975 + + +

    (GAC hearing June 4, 1981)

    +
    +
    + + + Trigger Price Mechanism (TPM) steel + 1979 + 975 + + + + + Unwrought lead tariff reduction-H.R.6089 + 1979 + 975 + + +
    + + + Transportation + 1978-1985 + + + + Action files + + + + 1983 + 97 + + + + + 1984 + 97 + + + + + + Aviation + + + + Air traffic controller counseling + 1979-1980 + 945 + + + + + Air traffic controller research + 1979-1980 + 945 + + + + + Aircraft Safety and Noise Abatement Act + 1979-1980 + 945 + + + + + Deregulation + 1979-1980 + 945 + + + + + Essential Air Service (EAS) determinations + 1979-1981 + 945 + + + + + FAA maintenance legislation + 1979 + 945 + + + + + FAA policy-Washington Reagan National Airport + April-August 1980 + 945 + + + + + Regulations and safety improvements + 2 folders + 1979-1980 + 945 + + + + + Republic Airlines discontinued service to Northern Michigan + 2 folders + 1981-1984 + 945 + + + + + Trust fund and aircraft safety + 1978-1979 + 945 + + + + + United Airlines reduced service-Muskegon petition + 3 folders + 1980 + 945 + + + + + + Channel and harbor legislation + 2 folders + 1981-1983 + 945 + + + + + Fuel tax and trucks + January 1983 + 946 + + + + + Gas tax + November-December 1982 + 946 + + + + + Handicapped public transportation, August + November 1980 + 946 + + + + + Handicapped transit legislation and reports + 1979 + 946 + + + + + Hazardous materials + 2 folders + 1980-1982 + 946 + + + + + Highways + + + + 1984 + 946 + + + + + I-476 expressway-Blue Route and Swarthmore College + 1979-1984 + 946 + + + + + Laws and programs + 1982 + 946 + + + + + Michigan + 1979 + 946 + + + + + Michigan highway projects + 1983-1984 + 946 + + + + + Surface Transportation Act-Buy America + 1983 + 946 + + + + + Tandem Truck Safety Act of + 1984 + 1983-1984 + 946 + + + + + + Ludington Ferry + 1979-1980 + 946 + + + + + Michigan road projects-priority + 1982-1984 + 946 + + + + + Miscellaneous + January-April 1983 + 946 + + +

    (Motor vehicle, airline deregulation, gasoline tax, etc.; P. Kyriacopoulos)

    +
    +
    + + + Miscellaneous-temporary file + 1984 + 946 + + + + + People Mover-Southeastern Michigan Transportation Authority (SEMTA) + merger + 1979-1980 + 952 + + + + + Rail + + + + 1980 + 952 + + + + + Amtrak + + + + Amtrak information + January 1981 + 952 + + + + + Amtrak information + January 1982 + 952 + + + + + Amtrak news clips + 1979 + 952 + + + + + Amtrak reports + 1978-1979 + 952 + + + + + Emerging corridors + 1979-1980 + 952 + + + + + Grand Rapids to Chicago news articles + August 1984 + 952 + + + + + Lake Shore Limited re-routing + September 1980 + 952 + + + + + Memos + 1979-1980 + 952 + + + + + + Ann Arbor + 1979-1980 + 952 + + + + + Conrail + + + + Canada Southern Railway + 2 folders + 1983-1985 + 952 + + + + + Closing Freight Revenue and Billing Operations in Detroit + July-September 1980 + 952 + + + + + Long Bean and Grain Company issue + 1981 + 952 + + + + + + Retirement and pension issue + 1980 + 952 + + + + + Retirement system + 1979-1980 + 952 + + + + + + Shipping acts + + + + 1981-1982 + 952 + + + + + Bills on common carriers by water in foreign commerce + 1981-1982 + 952 + + + + + + Soo Locks improvement-S.2114 + 1983 + 952 + + +
    + + + Veterans + 1979-1985 + + + + 1983-1984 + 1014 + + +

    (G. Wiszynski)

    +
    +
    + + + Action files + + + + 1983 + 97 + + + + + 1984 + 97 + + + + + + Adjudication procedure bill + 1982-1983 + 1014 + + + + + Allen Park Medical Center + April 1979 + 1014 + + +

    (VA)

    +
    +
    + + + Benefits + + + + Disability 100%-S.995 + 1983 + 1014 + + + + + Education issue-vocational versus 4-year college + 1983-1984 + 1014 + + + + + Education amendment to G.I. bill + 2 folders + 1982-1984 + 1014 + + + + + + Budget cuts + 1984 + 1014 + + + + + Dear Colleague letters + 1979 + 1014 + + + + + Miscellaneous legislation + 1982-1983 + 1014 + + + + + Monte Cassino-2nd Polish Corps in Orchard Lake, MI + 1984 + 1014 + + + + + Pensions + + + + 1980-1984 + 1014 + + + + + Cost of living annuity-1/2 COLA + 1984 + 1014 + + + + + Non-federal-Employment Retirement Security Act (ERISA) + 1981-1984 + 1014 + + + + + Retirement benefits + 1982-1983 + 1014 + + + + + Retirement benefits-catch 22 recomputed + 1982 + 1014 + + + + + + POW/MIA group meeting materials + 1983-1984 + 1014 + + + + + Organization national charter-The Retired Enlisted Association, Inc. + (TREA)-S.524 + 1985 + 1014 + + + + + Veterans Administration (VA)-Traverse City hospital + 1984 + 1014 + + + + + Veteran organizations national charters + 1983-1984 + 1014 + + + + + War memorials + 1980-1983 + 1014 + + +
    + + + Audiovisual materials + + + + #13 Levin's Office Warren Co Interviews. John Pelliccia/Russel + Pardo/Ruza(?) Tolic/ Louis Bergeron(?) Anastasia Volker, Steve Allmacher. + Original + 1 videocassettes (U-matic) + 1983 November 12 + 1055 + + + + + (4) 1 FY '83 DoD Budget SASC + 1 videotape (1 in.) + 1982 February 08 + 1082 + + + + + (45) Social Security Disability Hearing + 1 videocassettes (U-matic) + 1983 June 08 + 1054 + + + + + (49) Levin-Sawyer AFB 1 of 3 ask AF to Delay Deactivation of + Squadron + 1 videocassettes (U-matic) + 1983 June 09 + 1054 + + + + + (5) 2 FY '83 DoD Budget SASC + 1 videotape (1 in.) + 1982 February 08 + 1082 + + + + + (50) Levin-Sawyer AFB 2 of 3 Levin Disappoint - Air Force Proceeds ed No + Concern for Economic Impact + 1 videocassettes (U-matic; 1:42) + 1983 June 16 + 1054 + + + + + (52) Levin Reaction to Supreme Court Leg. Veto Ruling -- NBC, ABC + News + 1 videocassettes (U-matic) + 1983 June 23 + 1054 + + + + + (53) Siberian 7 News Conference Carl - "Focused + Consciousness..." + 1 videocassettes (U-matic) + 1983 July 18 + 1054 + + + + + (54) Levin-Legislative Veto Testimony + 1 videocassettes (U-matic) + 1983 July 20 + 1054 + + + + + (55) Levin -- SASC w/Weinberger -- Tower stops Levin from pressing Cap on + JCS advice re Central Amer exercises + 1 videocassettes (U-matic) + 1983 July 28 + 1054 + + + + + (56) Levin Testimony before Finance Subc. Unemployment Comp-Ext benefits + TUR instead of IUR -- Good Stuff -- **5 Soundbites** + 1 videocassettes (U-matic) + 1983 August 01 + 1054 + + + + + (57) Levin Testimony Before Finance Subc. Master - w/Riegle and St. Sen. + Phil Mastin. Levin -- TUR instead of IUR good stuff -- see soundbite + tape + 1 videocassettes (U-matic) + 1983 August 01 + 1054 + + + + + (58) Soundbites of Levin Testimony before Senate Finance Committee on + Extension of FSC and EB Unemployment programs + 1 videocassettes (U-matic) + 1983 September 16 + 1054 + + + + + (6) - 140 - Defense, SASC budget hearing with Weinberger, satellite + package + 1 videocassettes (U-matic; 3:37) + 1985 February 04 + 1066 + + + + + (60) Levin -- Watt Resignation Reaction + 1 videocassettes (U-matic) + 1983 October 10 + 1054 + + + + + (61) Levin -- Letter Urging Reagan to Negotiate Lower Level of Japanese + Import -- Restrictions + 1 videocassettes (U-matic) + 1983 October 11 + 1054 + + + + + (7) PS 345 MI Fuels Conference End 7/11. WJRT-TV12. To: Carl Levin 3327 + Dirksen Senate Office Bldg. Washington, D.C., 20510 + 1 videotape (:30, 2 in.) + 1980 July 07 + July 11 + 1082 + + + + + 1 New Fedralism Stockman Senate Govt'l Affairs + 1 videotape (1 in.) + 1982 February 04 + 1082 + + + + + 100 -- Social Security Disability Levin touts Senate passage of his SSD + bill 96-0 + 1 videocassettes (U-matic; 0:05:42) + 1984 May 23 + 1076 + + + + + 101 -- Defense -- DOD FY'85 Budget News Conf Levin + Procurement + 1 videocassettes (U-matic; 0:05:35) + 1984 May 25 + 1076 + + + + + 102 -- Defense/Levin News Clips WXYZ-TV7 DOD'85 Auth/Satellite WJBK-TV2 + Joke About SASC Amendment Protecting the Detroit Tigers + 1 videocassettes (U-matic; 0:05:40) + 1984 May 25 or 1984 May + 23 + 1076 + + + + + 103 -- State Dept/Passports -- Michigan Congressional Delegation Meeting + with State Dept on Det. P.P? Problem + 1 videocassettes (U-matic; 5:26) + 1984 June 13 + 1079 + + + + + 105 -- Congress -- End of Session + 1 videocassettes (U-matic; 0:02:40) + 1984 June 29 + 1079 + + + + + 105 - Southgate Town Hall 3 of 3 City Council papers to Amistad + Center + 1 audiocassettes + 1981 March 08 + 1107 + + + + + 106 - Southgate Town Hall 1 & 2 of 3 + 1 audiocassettes + 1981 March 08 + 1104 + + + + + 107 - Livonia Town Hall 3 of 3 + 1 audiocassettes + 1981 March 07 + 1104 + + + + + 117 -- Defense -- SASC Hearing on Defective Missiles + 1 videocassettes (U-matic; 0:04:53) + 1984 October 18 + 1079 + + + + + 118 -- SSD -- Honor Ceremony for Leadership Efforts to Reform + System + 1 videocassettes (U-matic; 0:20:00) + 1984 October 19 + record date: October + 18 + 1076 + + + + + 14 - Levin -- Election night in Detroit WDIV-TV4 analist and Dem party + speech + 1 videocassettes (U-matic) + 1980 November 04 + 1062 + + + + + 15 - 1) Levin -- Grand Rapids war medal presentation to Vietnam vet; 2) + Reagan Budget Cuts Unfair to Midwes (?) - Newscon.; 3) Weinberger - SASC - All + increase - no(?) cuts from waste + 1 videocassettes (U-matic) + 1981 March 06 + 1075 + + + + + 16 - Levin -- Focus: Hope training tape. Industry Mall and Skilled + Machinist training program. Focus: HOPE Video Education ProgramCopy #4. Audio + 2 + 1 videocassettes (U-matic) + 1981 July 18 + 1981 June 26 + 1079 + + + + + 17 - Levin-in PBS' Red Army. Levin Questions Weinberger + 1 videocassettes (U-matic) + 1981 October + 1079 + + + + + 18 - "Pallas" Marx/Handley Prod. + 1 videocassettes (U-matic; 0:12:04) + 1981 October 19 + 1079 + + + + + 18 - Carl's Panax editorial board interview + 1 audiocassettes + 1979 October 10 + 1104 + + + + + 18A -- IRS -- CBS "60 Minutes" IRS/LEVIN segment + 1 videocassettes (U-matic) + 1981 November + 1079 + + + + + 19 - Levin -- SASC ELF Hearing Admiral admits MI has no rights, + vulnerable to attack(?) and sabotage; ABC News 20/20 NM 002 Military + Communications + 1 videocassettes (U-matic; 0:24:40 + ) + 1981 November 03 + 1982 February 01 + 1079 + + + + + 2 New Fedralism Stockman Senate Govt'l Affair + 1 videotape (1 in.) + 1982 February 04 + 1082 + + + + + 20 - #1 - CBS News/Rather, US Marines to Lebanon, Levin Reaction; #2 - + WXYZ-TV Detroit, Power Broker's Report Levin 9 out of 20 + 1 videocassettes (U-matic) + 1982 July 06 + 1982 February 25 + 1079 + + + + + 21 - New Federalism: Winners and Losers. Levin "Report to Michigan" Levin + beats up on Stockman + 1 videocassettes (U-matic; 0:27:40) + 1982 March 11 + 1075 + + + + + 22 - Levin - Close Up Students - Many Issues, Notes inside **Best** "How + I Make Up My Mind When Voting" + 1 videocassettes (U-matic; 0:28:00) + 1982 March 30 + 1075 + + + + + 23 - Social Security Disability: A Program Gone Haywire -- Levin "Report + to Michigan" **Great Clip..."With equal passion, keep people on rolls who should + be on. + 1 videocassettes (U-matic; 0:28:30) + 1982 June 21 + 1075 + + + + + 24 - Levin Mid-East Trip Network News Cuts Beginning 1982 July 06 THRU + 1982 July 13 + 1 videocassettes (U-matic; 3:05; 5:50; 3:40; 7:52; 13:44; + 6:45) + 1982 July 15 + 1982 July 06 + 1982 July 08 + 1982 July 08 + 1982 July 08 + 1982 July 11 + 1982 July 13 + 1079 + + + + + 25 - Levin - ABC Nightline, Middle East Trip. Levin Tells Begin He's + Concerned About Beirut Casualties + 1 videocassettes (U-matic; 0:30:00) + 1982 July 08 + 1075 + + + + + 26 - Levin - David Brinkley Show ABC: Mid-East Trip w/Sen. + Dodd + 1 videocassettes (U-matic) + 1982 July 11 + 1079 + + + + + 27 - Barbara Levin -- Nuke Freeze, NBC Early Today + 1 videocassettes (U-matic) + 1982 October 11 or 1982 + September 25 + 1083 + + + + + 28 - Levin-Reaction to MX Dense Pack nbc overnight + 1 videocassettes (U-matic) + 1982 November 23 + 1083 + + + + + 29 - Levin - SASC MX Hearing w/Weinb(erger) [text missing] "...Not close + window of vulne[text missing] but open window of incredi[text missing]. Good + stuff + 1 videocassettes (U-matic; 0:20:00) + 1982 December 08 or 1982 + December 09 + 1084 + + + + + 3 New Fedralism Stockman Senate Govt'l Affairs Open: 60 Close: 120. Say + Yes Tom :60 :30 + 1 videotape (1 in.) + 1982 February 04 + 1082 + + + + + 30 - MX Cuts SASC Levin/Weinberger + 1 videocassettes (U-matic; 2:49) + 1982 December 08 + 1075 + + + + + 31 - Levin - Testifies for Domestic Content Law + 1 videocassettes (U-matic; 0:27:00) + 1982 December 16 + 1075 + + + + + 32 - #1 - Levin Unemployment Extension/Gas Tax; #2 - Levin Outlook New + Congress - Both cuts 1-4-83 + 1 videocassettes (U-matic) + 1983 January 04 + 1075 + + + + + 33 - Levin: #1 - Defense Cut Clips, ABC, NBC, CBS + 1 videocassettes (U-matic) + 1983 January 11 + 1084 + + + + + 34 - MacNiel-Lehrer PBS Levin-Japanese Trade + 1 videocassettes (U-matic) + 1983 January 18 + 1084 + + + + + 35 - Days of Remembrance Rotunda Ceremony + 1 audiocassettes + 1979 April 24 + 1104 + + + + + 36 - Battle Creek Chamber - Comm; News Conf. B. C. -- Grand + Rapids + 1 audiocassettes + 1979 April 16 + 1104 + + + + + 36 - Levin - Close Up. Week 7 "Current Issues" - "Defense dilemmas: The + Price of Protection" Guests: Senator Carl Levin (D-Michigan), Congressman James + Courter (R-New Jersey), Host: Steve Janger. Good Stuff -- Debate format. Play on + Audio Channel 1 + 1 videocassettes (U-matic) + 1983 March 03 + 1079 + + + + + 37 - Levin Responds to Reagan's Star Wars Speech -- CBS Other + Views + 1 videocassettes (U-matic) + 1983 March 30 + 1084 + + + + + 38 - Levin - Close Up Students - Many Issues + 1 videocassettes (U-matic) + 1983 April + 1075 + + + + + 39 - Levin Reacts to MX Missile Action ABC, CBS News + 1 videocassettes (U-matic; 1:50; 2:55 ) + 1983 April 12 + 1075 + + + + + 4 - (1) Lansing News. Conf.; (2) Lansing Jaycees + 1 audiocassettes + 1979 September 12 + 1979 September 22 + 1104 + + + + + 40 - Levin - SASC w/Weinberger, Schultz + 1 videocassettes (U-matic; 12:00) + 1983 April 20 + 1084 + + + + + 41 - Chart Wars News Conference + 1 videocassettes (U-matic) + 1983 May 06 + 1084 + + + + + 42 - Levin Testimony Urging More Money for Dioxin Study - "We can"t + Afford Not To Know" of Any Peril + 1 videocassettes (U-matic; 7:23) + 1983 May 23 or 1983 May + 22 + 1075 + + + + + 43 - News Conf, -- from London U.S.S.R. Trip--re: SALT II + 1 audiocassettes + 1979 August 30 + 1104 + + + + + 44 - Levin-Sculpture, CBS Morning News + 1 videocassettes (U-matic) + 1983 June 02 + 1083 + + + + + 45 - Panama Canal News Briefing implementing vote day + 1 audiocassettes + 1979 July 26 + 1104 + + + + + 46 - CNN-MI Cancer Fish. Environment + 1 videocassettes (U-matic) + 1983 June 10 + 1083 + + + + + 47 - CNN-MI Cancer Fish. Environment + 1 videocassettes (U-matic) + 1983 June 10 + on + the cassette: May 27 + 1083 + + + + + 48 - CNN-MI Cancer Fish -- Levin Followup. Environment + 1 videocassettes (U-matic; 0:03:42) + 1983 June 30 + 1083 + + + + + 51 - Levin-Sawyer AFB 3 of 3 Wins Reprieve for Squadron + 1 videocassettes (U-matic; :57) + 1983 June 28 + 1084 + + + + + 6 - Social Security Disability: A System Gone Haywire. Levin + 1 videotape (0:28:30, 2 in.) + 1982 June 21 + 1080 + + + + + 61 - Auto Equalization Intro News Conf. + 1 audiocassettes + 1980 June 10 + 1104 + + + + + 63 - PBS Lawmakers -- Segment on SASC Levin Among New Leaders + 1 videocassettes (U-matic; 0:28:00) + 1983 October 21 + 1083 + + + + + 65 - Levin -- Full Testimony before Joint Economic Subc. -- Reagan Must + Tell Japanese What Level of Imports **Good Stuff** + 1 videocassettes (U-matic; 0:19:00) + 1983 October 25 + 1083 + + + + + 66 - Levin -- Reaction of Invasion of Granada + 1 videocassettes (U-matic; 0:01:04) + 1983 October 25 + 1083 + + + + + 67 - Levin -- SASC Second Guessing Hearing on Beirut Bombing Tragedy, + 200+ Marines Killed -- Levin says Security Inadequate + 1 videocassettes (U-matic; 0:36:19) + 1983 November 01 + 1068 + + + + + 67 - News Conf. General + 1 audiocassettes + 1980 February 01 + 1104 + + + + + 68 - 1. *Levin Beats Up on DOD at Gov. Aff. Hearing for 12 1/2 c Allen + Wrench Costing $9,600 -- Great Stuff; 2. Levin Saves 95 Jobs in U.P. + 1 videocassettes (U-matic; 0:05:42) + 1983 November 03 + 1083 + + + + + 68 - News. Conf. w/Hayakawa Cambodian refugees + 1 audiocassettes + 1980 January 22 + 1104 + + + + + 69 -- Defense -Master of 68 + 1 videocassettes (U-matic; 0:30:00) + 1983 November 03 + 1083 + + + + + 69 - Flint Alcohol Conf; Prod & Use of Alcohol Fuels Tape + 2 + 1 audiocassettes + 1980 July 12 + 1104 + + + + + 70 - Flint Alcohol Conf. Prod & Use of Alcohol Fuels Tape + 1 + 1 audiocassettes + 1980 July 12 + 1104 + + + + + 71 - Gasohol Radio Program Flint-Mott C. C. + 1 audiocassettes + 1980 July + 1104 + + + + + 72 - Mondale-Carter trip to Detroit Metro Airport, sides A-B, + 1 audiocassettes + 1980 July 7/8 + 1104 + + + + + 72--ENERGY--Levin/news conf. 40 sec. Levin will oppose natural gas + deregulation bill because too expensive for Michigan consumer + 1 videocassettes (U-matic; 0:02:30) + 1983 October 31 + 1068 + + + + + 73 - Army Manpower Backgrounder News Conf. + 1 audiocassettes + 1980 July 01 + 1104 + + + + + 73--defense--Levin victory / addback $350 million for conv. weapons. + depot maintence/dovetail with #35 + 1 videocassettes (U-matic; 0:01:42) + 1983 November 09 + 1068 + + + + + 74 - Japan/Autos/Def. CNN Interview w/Carl. Senator Carl Levin - from + Take 2 + 1 videocassettes (U-matic) + 1983 November 09 + 1070 + + + + + 74 - News Conf,. Det,. TRA + 1 audiocassettes + 1980 June 29 + 1104 + + + + + 75 -- Japan/Autos/Def Today Show and 20-20 + 1 videocassettes (U-matic; 0:15:30) + 1983 November 10 + 1083 + + + + + 75 - SM. BUS., Jap Non-Tariff Trade Barriers Side 3 of 3 + 1 audiocassettes + 1980 June 26 + 1104 + + + + + 76 - Human Rights - Hearing on Carl's Grandparents Visitation rights bill + **Good stuff** + 1 videocassettes (U-matic; 0:29:00) + 1983 November 15 + 1083 + + + + + 76 - SM. BUS., Jap Non-Tariff Trade Barriers Sides 1 & 2 of + 3 + 1 audiocassettes + 1980 June 26 + 1104 + + + + + 77 - News Conf., Gallery, Army Manpower, with Sen. Hollings + 1 audiocassettes + 1980 June 25 + 1104 + + + + + 78 - Muskegon Town Hall #1 + 1 audiocassettes + 1980 September 06 + 1104 + + + + + 78 UNEMPLOYMENT industrial policy task force new conference w/ Levin, + Riegle, Kennedy and Iacocca + 1 videocassettes (U-matic; 0:18:00) + 1983 November 16 + 1068 + + + + + 79 -- Congress -- Year-ender + 1 videocassettes (U-matic; 0:05:02) + 1983 December 29 + 1083 + + + + + 79 - News Conf. Alaska, Dem. Conv & Politics + 1 audiocassettes + 1980 August 19 + 1104 + + + + + 8 - Sen. Levin. WLUC-TV Senate Recording Studio U.S. Capitol Washington, + D.C. 20510. #793. HBC, DUB + 1 videotape (0:02:58, 2 in.) + 1979 September 05 + 1079 + + + + + 80 -- Congress -- Pre-State of the Union + 1 videocassettes (U-matic; 0:01:19) + 1984 January 25 + 1083 + + + + + 82 -- soc. sec. dis -- Finance Committee hearing on Levin's reform bill, + "with equal passion...good stuff package of satellite + 1 videocassettes (U-matic; 4:09) + 1984 January 26 + 1070 + + + + + 83 - Flint Gasohol conf. Tape 6. Can Alcohol Fuels be + profitable + 1 audiocassettes + 1980 July 12 + 1104 + + + + + 83 - Soc. Sec. Dis. Master of 82, plus previous day's award presentation + to Levin from Penn. Disabled group. P Rop. of Levin office + 1 videocassettes (U-matic) + 1984 January 25 + January 26 + January 24 + 1070 + + + + + 84 - Flint Gasohol conf. Tape 5. Can Alcohol Fuels be + profitable + 1 audiocassettes + 1980 July 12 + 1104 + + + + + 84 -- MISC - Levin in office in reps of Mich. Fed of the Blind for WJIM + Lans'g + 1 videocassettes (U-matic; 5:09) + 1984 January 31 + 1070 + + + + + 85 - Flint Gasohol conf. Tape 4. Fed. Assis for Alcohol Fuels + 1 audiocassettes + 1980 July 12 + 1104 + + + + + 85--Defense/MISC-SASC budget hearing & Scholarship winners from + Lansing and Cadillac + 1 videocassettes (U-matic) + 1984 February 01 + 1068 + + + + + 86 - Flint Gasohol conf. Tape 3. Fed. Assis for Alcohol Fuels + 1 audiocassettes + 1980 July 12 + 1104 + + + + + 86--Reaction to death of Soviet leader Andropov. Soviets + 1 videocassettes (U-matic; 0:01:16) + 1984 February 10 + 1068 + + + + + 87 - Carl at W. B'field Andover H. S. Oct '80 (side A); Interview w/Vince + Wade - WXYZ Carter/hostages (side B) + 1 audiocassettes + 1980 October 27 + 1104 + + + + + 87--unemployment-Interview with Carl and WNEM-TV Saginaw's Mel Serrow on + Flint hearing on displaced workers + 1 videocassettes (U-matic; 0:05:09) + 1984 February 14 + 1068 + + + + + 88 - Interview w/Mike Miller-WXYZ-AM + 1 audiocassettes + 1980 October + 1104 + + + + + 89 - Grand Rapids News Conf,. Victory on Bureaucracy (side A); Lansing -- + MI Retailers Assoc. (side B) + 1 audiocassettes + 1980 October 15 + 1104 + + + + + 89 -- Levin addresses Close-up students: education, school prayer, crime, + capital punishment, Lebanon, abortion, deficit + 1 videocassettes (U-matic; 18:02) + 1984 March 08 + 1070 + + + + + 90 - Anti-Reagan Speech--Det. Ch. of Commerce and News + Conference + 1 audiocassettes + 1980 October 11 + 1104 + + + + + 90 -- Kidney Foundation donor card signing ceremony; soundbite on + deficit + 1 videocassettes (U-matic; 1:45) + 1984 March 09 + 1070 + + + + + 91 - Interview w/J.P. McCarthy Morning Show; ITC Hearing + Testimony + 1 audiocassettes + 1980 October 08 + 1104 + + + + + 91 -- IRS taxpayer bill of rights package + 1 videocassettes (U-matic; 4:00) + 1984 March 19 + 1070 + + + + + 92 - International Trade Commision Testimony + 1 audiocassettes + 1980 October 08 + 1104 + + + + + 92 -- Reaction to Ed. Meese request for special prosecutor + 1 videocassettes (U-matic; 2:00) + 1984 March 22 + 1070 + + + + + 93- Defense Procurement Subc News Conf. Package w/b-Roll of Allen + Wrench + 1 videocassettes (U-matic; 30:08.8) + 1984 March 22 + 1070 + + + + + 95 -- Energy, Committee Hearing on Home Weatherization program + 4:00 + 1 videocassettes (U-matic) + 1984 April 24 + 1070 + + + + + 96 -- Reaganomics/Budget -- Farm Bureau address re: budget + deficit + 1 videocassettes (U-matic) + 1984 April 05 + 1984 May 16 (?) + 1070 + + + + + 97--AUTOS-- Domestic Content hearing, Senate Commerce Committee, + Riegle/Levin cuts + 1 videocassettes (U-matic) + 1984 April 16 + 1068 + + + + + ABC-TV interview on Navy case + 1 audiocassettes + 1981 April 28 + 1104 + + + + + Actualities + 1 audiotape (7 in.) + 1979 June - 1979 December + 1092 + + + + + Actualities + 1 audiotape (7 in.) + 1980 January - 1980 June + 1092 + + + + + Actualities + 1 audiotape (7 in.) + 1979 January 12 - May 25 + 1096 + + + + + ADA Keynote Address + 1 audiocassettes + 1979 June 23 + 1104 + + + + + Adoption amendment hearing + 1 audiocassettes + 1981 July 23 + 1104 + + + + + AFL-CIO Speech + 1 audiocassettes + 1981 August 31 + 1104 + + + + + A-Levin Press Conf/Soviet Shoot-Down of Korean Jetliner. B-Jackson's + Death -- Tank Plant Expansion + 1 audiocassettes + 1983 September 01 + 1983 September 02 + 1103 + + + + + American Agric. Movement meeting w/Carl Dirksen SOB + 1 audiocassettes + 1979 February 07 + 1104 + + + + + Army Mag. interview + 1 audiocassettes + 1983 August 02 + 1983 April 24 + 1103 + + + + + AWACS res. of disapproval news conf. Carl 1 of 50 + 1 audiocassettes + 1981 September 17 + 1104 + + + + + A-WJR, Warren Pierce Show, Lebanon; B-WWWW, Senate Mood, WJR, J.P., SS + Notch + 1 audiocassettes + 1983 September 12 + 1983 September 14 + 1103 + + + + + Battle Creek Town Meeting + 1 audiocassettes + 1982 June 02 + 1103 + + + + + Beruit-Man in Hotel/Street. Carl + 1 audiocassettes + 1982 July + 1103 + + + + + Bill Connell interview with Levin--first round at CL home + 1 audiocassettes + 1983 December 22 + 1103 + + + + + B-News Conf. Lebanon/War Powers Act A-PBS-TV, Jim Dunn Beating up on + Carl + 1 audiocassettes + 1983 September 16' + September 19 + 1103 + + + + + Capitol Cloakroom -- CBS Radio with Sen. Carl Levin + 1 audiocassettes + 1980 May 21 + 1104 + + + + + Carl on WJR's Warren Pierce inauguration and hostages + 1 audiocassettes + 1981 January 21 + 1104 + + + + + CBS Radio's Capitol Cloakroom w/Carl. Saudi arms, auto, ect. + 1 audiocassettes + 1981 April 22 + 1104 + + + + + CBS Radio's Capitol Cloakroom w/Carl. Saudi arms, auto, ect. + 1 audiocassettes + 1981 April 27 + 1104 + + + + + Celebration of Freedom. Ford Aud. Hostages welcoming + 1 audiocassettes + 1981 February 03 + 1104 + + + + + Channel 50 Washington Week Hal Cessna + 1 videocassettes (VHS) + 1980 November 23 + 1057 + + + + + Chrysler hearings, Banking Comm. Carl's statement + 1 audiocassettes + 1979 November 14 + 1104 + + + + + CNN Newsmaker Congress, budget + 1 audiocassettes + 1983 April 24 + 1092 + + + + + CUTS: Kennedy decision not to run gas tax for Mi; Reagan unemploy/news + paper ads, insensative + 1 audiocassettes + 1982 December 01 + 1092 + + + + + D3D026 D.S.C.C. Tape #14 Levin Woods + 1 videocassettes (U-matic) + 1983 September 27 / 1984 + April 23 + 1073 + + + + + Democratic Media Center. Levin Tape. Levin/Master + 1 videocassettes (U-matic) + 1984 August 30 + 1090 + + + + + Detroit Press Club speech. Reagan admin., Haig vote, hostages + 1 audiocassettes + 1981 January 22 + 1104 + + + + + Election Night -- Interviews -- Book Cadillac s. 1-2 + 1 audiocassettes + 1980 November 04 + 1104 + + + + + Election Night WWJ/WXYZ Detroit; Carl analysis + 1 audiocassettes + 1982 November 2 + 1982 November 3 + 1103 + + + + + End of year/new year assessment w/Eileen Cleary, WOTV-Grand + Rapids + 1 audiocassettes + 1983 December 21 + 1103 + + + + + Flint Town Meeting--2 of 2 + 1 audiocassettes + 1981 May 03 + 1104 + + + + + Flint Town Meeting--News Conf. w/Cong. Kildee, then meeting 1 of + 2 + 1 audiocassettes + 1981 May 03 + 1104 + + + + + From Concept Associates, Inc.: To: Ron Stone Levin 4:30. Demo Tape #3 + 3-26 + 1 videocassettes (U-matic) + 1984 April 23 + 1984 October 02 + 1086 + + + + + Haz. Waste Hearings + 1 audiocassettes + 1979 August 01 + 1104 + + + + + HHS ANNC on Soc. Sec. Dis News Conf. + 1 audiocassettes + 1984 April 13 + 1092 + + + + + Interview with Pat Montemurri of Detroit Free Press on + Campaign + 1 audiocassettes + 1984 June 08 + 1092 + + + + + J. P. McCarthy's Focus 9-81 + 1 audiocassettes + 1981 September + 1104 + + + + + J. P. McCarthy's Focus WJR w/Cong. Geo. Crocket + 1 audiocassettes + 1981 August 31 + 1104 + + + + + J.P. Focus/Carl WJR + 1 audiocassettes + 1983 August 09 + 1103 + + + + + J.P. McCarthy's A.M. SHOW "Why I Voted Against Reagan Tax + Cut" + 1 audiocassettes + 1981 July 30 + 1104 + + + + + J.P. McCarthy's Focus + 1 audiocassettes + 1982 June 03 + 1103 + + + + + Jack Lousma Speech before Lansing reserve Officers Assoc. + 1 audiocassettes + 1984 May 19 + 1103 + + + + + Jim Dunn radio interview-Alpena + 1 audiocassettes + 1984 March 02 + 1103 + + + + + Kalamazoo News Conf. at Portage Library + 1 audiocassettes + 1980 September 11 + 1104 + + + + + Kalamazoo Town Meeting + 1 audiocassettes + 1982 June 02 + 1103 + + + + + Kevin Joyce Show-WXYZ Radio Town Halls, GR Vet+Taxes + 1 audiocassettes + 1981 March 06 + 1104 + + + + + Lansing Town Meeting 1 of 2 + 1 audiocassettes + 1982 May 17 + 1982 May 16 + 1103 + + + + + Lansing Town Meeting 2 of 2 + 1 audiocassettes + 1982 May 17 + 1103 + + + + + Lebanese League Speech + 1 audiocassettes + 1982 June 11 + 1103 + + + + + Levin - News Conference on SS Dis. + 1 audiocassettes + 1984 September 18 + October 22 + 1092 + + + + + Levin actualities + 1 audiotape (7 in.) + 1980 December - 1981 February + 1103 + + + + + Levin actualities + 1 audiotape (7 in.) + 1981 June -1982 June + 1103 + + + + + Levin actualities + 1 audiotape (7 in.) + 1981 March-1981 June + 1103 + + + + + Levin actualities + 1 audiotape (7 in.) + 1980 June - 1980 early + December + 1092 + + + + + Levin actualities + 1 audiotape (7 in.) + 1982 June - 1983 June + 1092 + + + + + Levin actualities + 1 audiotape (7 in.) + 1983 June-1983 December + 1092 + + + + + Levin actualities + 1 audiotape (7 in.) + 1984 January - 1984 December + 1092 + + + + + Levin Airport News Conf/Middle East Dulles Airport + 1 audiocassettes + 1982 July 12 + 1103 + + + + + Levin before Close-up students: Educ-School Prayer, Crime, Cap Pun., Leb. + Abortion, Deficit + 1 audiocassettes + 1984 March 09 + 1092 + + + + + Levin Dub (#17) Senate Judiciary + 1 videocassettes (U-matic) + undated + 1055 + + + + + Levin Interview w/Ch. 6 Marquette re Air Force Decision/Delay + Deactivation of squadron at Sawyer + 1 audiocassettes + 1983 July 19 + 1103 + + + + + Levin Interview w/Mary Leonard-Det. News Central America + 1 audiocassettes + 1983 July 29 + 1103 + + + + + Levin Phone Interview w/Freep "Q" + 1 audiocassettes + 1982 July 11 + 1103 + + + + + Levin Press Conf. on Edwin Meese Radio TV-Gallery + 1 audiocassettes + 1984 March 16 + 1092 + + + + + Levin Reaction to Sup Court LEG. VETO + 1 audiocassettes + 1983 June 23 + 1103 + + + + + Levin Spech before Downriver Chamber of Commerce + 1 audiocassettes + 1984 August + 1103 + + + + + Levin Speech before 69th Annv. of Armenian Genocide-Groves High + School + 1 audiocassettes + 1984 April 29 + 1092 + + + + + Levin Subc. Testimony in Suport of Increase EPA Study Funding + 1 audiocassettes + 1983 May 23 + 1092 + + + + + Levin testimony before Dole's Finance Committee on unemployment + compensation + 1 audiocassettes + 1982 July 29 + 1103 + + + + + Levin/Dodd news Conf/D.C. Middle East Trip Findings + 1 audiocassettes + 1982 July 13 + 1103 + + + + + Levin/Dodd News Conf/King David Hotel Jeruselem + 1 audiocassettes + 1982 July 11 + 1103 + + + + + Levin/PBS Latenight w/Dennis Wholey + Unemployment/defense/budget + 1 audiocassettes + 1983 August 08 + 1103 + + + + + Levin/Sen. Mastin testimony Finance Subc. Levin unempl. bill + 1 audiocassettes + 1983 August 01 + 1103 + + + + + Levin/Stockman-Gov. Affairs cuts + 1 audiocassettes + 1982 February 04 + 1103 + + + + + Levin: ABC News Spot; NBC News Spot; XXX (?) Missile Senate Passage + Reaction + 1 videocassettes (U-matic; 1:45; 1:55) + 1983 May 24 + 1983 May 24 + 1084 + + + + + Levin-Dem. Response to Reagan - ABC Radio + 1 audiocassettes + 1982 April 10 + 1103 + + + + + Livonia Town Hall 1 & 2 of 3 + 1 audiocassettes + 1981 March 07 + 1104 + + + + + Local Elected Officials Soo + 1 audiocassettes + 1983 March 26 + 1092 + + + + + Loret Ruppe/not running for Senate + 1 audiocassettes + 1983 November 22 + 1103 + + + + + Macomb County Talk--Defense/selfridge + 1 audiocassettes + 1983 June 01 + 1092 + + + + + Meet the Member - Bio - WMAL + 1 audiocassettes + 1982 November 26 + 1092 + + + + + Meet the Member/Levin + 1 audiocassettes + 1981 September 11 + 1104 + + + + + Michigan Congressional Delegation Meeting with State Dept Passport + Officials + 1 audiocassettes + 1984 June 13 + 1092 + + + + + Michigan Township Assoc.; Dearborn Press Conf. + 1 audiocassettes + 1983 January 26 + 1983 January 26 + 1092 + + + + + Middle East Trip/DC News Conf/Marines to Beirut + 1 audiocassettes + 1982 July 08 + 1982 July 06 + 1103 + + + + + Midland Town Meeting 1 of 2 + 1 audiocassettes + 1981 June 28 + 1104 + + + + + Midland Town Meeting 2 of 2 + 1 audiocassettes + 1981 June 28 + 1104 + + + + + Muskegon Town Hall #2 + 1 audiocassettes + 1980 September 06 + 1104 + + + + + MX Pause Proposal Carl before Foreign Rel. Comm. + 1 audiocassettes + 1983 June 21 + 1103 + + + + + MX Rejport Reaction -- Press gallery + 1 audiocassettes + 1982 November 22 + 1103 + + + + + New Conf Trip to Geneva & Bonn + 1 audiocassettes + 1983 October 03 + 1103 + + + + + News Conf. + 1 audiocassettes + 1983 August 05 + 1103 + + + + + News Conf. -- pre-trip to Thailand Cambodian refegee camps + 1 audiocassettes + 1980 January 04 + 1104 + + + + + News Conf. -- SALT endorsement Chrysler + 1 audiocassettes + 1979 December 07 + 1104 + + + + + News Conf. 10% unemploy; Agriculture Interview T.C. + 1 audiocassettes + 1982 October 08 + 1982 October 22 + 1103 + + + + + News Conf. Carl w/Electric car. anti-trust relaxation + 1 audiocassettes + 1979 April 04 + 1104 + + + + + News Conf. Carter's trip to K.C., Det. that Carl made + 1 audiocassettes + 1979 July 17 + 1104 + + + + + News Conf. Chart Wars MX Reaction + 1 audiocassettes + 1983 May 06 + 1983 April 11 + 1092 + + + + + News Conf. Chrysler bill intro- Carl, Riegle, Eagle-Bayh + 1 audiocassettes + 1979 October 24 + 1104 + + + + + News Conf. D.C. -- Awacs, budget, gun control and grand jury + reform + 1 audiocassettes + 1981 April 10 + 1104 + + + + + News Conf. D.C. - Reagan Cuts II, budget cuts, AWACS + 1 audiocassettes + 1981 September 25 + 1104 + + + + + News Conf. D.C. No Vote on Tax Bill + 1 audiocassettes + 1981 July 29 + 1104 + + + + + News Conf. D.C., IRS, Reg. Neg. Reagan Budget Cuts--Unfair + 1 audiocassettes + 1981 March 03 + 1104 + + + + + News Conf. Det. + 1 audiocassettes + 1981 October 19 + 1103 + + + + + News conf. Det. M. L. King bill, autos, anti-trust + 1 audiocassettes + 1981 January 15 + 1104 + + + + + News Conf. Det. Metro Airport Middle East + 1 audiocassettes + 1983 September 03 + 1983 December 28 + 1103 + + + + + News Conf. Det. Navy Investigation + 1 audiocassettes + 1981 May 26 + 1104 + + + + + News Conf. Det., Chrysler, Iran + 1 audiocassettes + 1979 December 22 + 1104 + + + + + News Conf. Detroit/WSU Europe/Arms Talk Trip, Lebanon + --Grenada + 1 audiocassettes + 1983 December 05 + 1103 + + + + + News Conf. Human Emerg Needs Task Force + 1 audiocassettes + 1983 March 11 + 1092 + + + + + News Conf. independence gas tax + 1 audiocassettes + 1979 March 13 + 1104 + + + + + News Conf. ITC/Unemployment Bill + 1 audiocassettes + 1980 October 06 + 1104 + + + + + News Conf. Leg. Rev., Cambodia, Wint. Nav., Ad. Sub. + 1 audiocassettes + 1979 October 26 + 1104 + + + + + News Conf. Levin W/State Sen. Phil Mastin on Carl's Unemployment + bill + 1 audiocassettes + 1983 August 01 + 1103 + + + + + News Conf. Levin/Boren w/Siberian 7 Liuba & Nadya + Vashchenko + 1 audiocassettes + 1983 July 18 + 1103 + + + + + News Conf. Levin/Detroit DOD summary Reagan LTE/Negotiate Import + restrictions + 1 audiocassettes + 1983 August 09 + 1103 + + + + + News Conf. Levin-Riegle: unemployment comp. bill, VW + 1 audiocassettes + 1980 April 02 + 1104 + + + + + News Conf. M-1 Tank + 1 audiocassettes + 1983 November 01 + 1103 + + + + + News Conf. Marines killed in Beirut + 1 audiocassettes + 1983 October 24 + October 25 + 1103 + + + + + News Conf. Post-Election Morn. + 1 audiocassettes + 1980 November 05 + 1104 + + + + + News Conf. S.S. Disability/Poland + 1 audiocassettes + 1981 December 14 + 1104 + + + + + News Conf. Saudi Arms Sale-Muskie/Brown Letter, Senate + Galleries + 1 audiocassettes + 1981 April 20 + 1104 + + + + + News Conf. Unemploy ext. Amendment galleries, Dick Ryan Det. + News + 1 audiocassettes + 1983 December 16 + 1982 December 21 + 1092 + + + + + News Conf. unemployment + 1 audiocassettes + 1983 January 06 + 1092 + + + + + News Conf. Unemployment + 1 audiocassettes + 1983 March 16 + 1092 + + + + + News Conf., Carl w/Panama - gas rationing + 1 audiocassettes + 1979 May 09 + 1104 + + + + + News Conf., Chrysler, sounds note of caution about plan + 1 audiocassettes + 1979 October 01 + 1104 + + + + + News Conf., Defense Briefing + 1 audiocassettes + 1980 June 13 + 1104 + + + + + News Conf., general + 1 audiocassettes + 1979 June 14 + 1104 + + + + + News Conf., general + 1 audiocassettes + 1979 June 29 + 1104 + + + + + News Conf., Mrs. Slovik with Riegle + 1 audiocassettes + 1979 September 07 + 1104 + + + + + News Conf., Panama Canal, Carl + 1 audiocassettes + 1979 April 26 + 1104 + + + + + News Conf., VW in Sterling HTS + 1 audiocassettes + 1980 February 22 + 1104 + + + + + News Conf., VW, LEG VETO + 1 audiocassettes + 1980 April 22 + 1104 + + + + + News Conf./Det. Reagan Budget + 1 audiocassettes + 1982 May 03 + 1103 + + + + + News Conf./mx, jobs, car imports + 1 audiocassettes + 1982 November 23 + 1103 + + + + + News Conf/Budget Alternative + 1 audiocassettes + 1982 April 17 + 1103 + + + + + News Conf/Detroit + 1 audiocassettes + 1980 June 28(on the cassette) / 1982 June 28 + 1103 + + + + + News Conf/MX-Leg. Veto + 1 audiocassettes + 1982 March 22 + 1103 + + + + + News Conf--Detroit + 1 audiocassettes + 1980 January 20 + 1104 + + + + + News Conference, MI Unemployed, IUR Problem + 1 audiocassettes + 1983 June 17 + 1103 + + + + + News. Conf/Sib 7 + 1 audiocassettes + 1982 May 07 + 1103 + + + + + NPR--MX report reaction + 1 audiocassettes + 1982 November 22 + 1103 + + + + + NPR's Morning Edition Bob Edwards w/Carl: Reagan's Defense speech (Star + Wars) + 1 audiocassettes + 1983 March 24 + 1092 + + + + + NPR's Morning Edition Def. Sp-ending w/Bob Edwards + 1 audiocassettes + 1982 November 18 + 1103 + + + + + Physicians for Social Responsibility. Temple Emanuel + 1 audiocassettes + 1983 September 24 + 1103 + + + + + Pre-Announcement Interview with George Weeks/Det. News + 1 audiocassettes + 1984 May 02 + 1092 + + + + + Pt. Huron Town Meeting 1 of 2 + 1 audiocassettes + 1981 June 13 + 1104 + + + + + Pt. Huron Town Meeting 2 of 2 ***********Good Soc. Sec. + Cut******* + 1 audiocassettes + 1981 June 13 + 1104 + + + + + Pulaski Day Speech + 1 audiocassettes + 1981 October 11 + 1104 + + + + + Reaction to Mondale New Hampshire primary loss + 1 audiocassettes + 1984 February 29 + 1103 + + + + + Reaction to Pres. Reagan's speech on Central American + 1 audiocassettes + 1983 April 28 + 1983 March 24 + 1092 + + + + + Reaganomics/2 yrs. after. Ch. 56 audio dub Carl + 1 audiocassettes + 1983 January 11 + 1092 + + + + + Redford Chamber of Commerce + 1 audiocassettes + 1983 September 26 + 1103 + + + + + Redlining Hearings-Tsongas, Carl, Riegle, Mrs. Selick + 1 audiocassettes + 1979 June 04 + 1104 + + + + + Saginaw Town Hall news conf., side 1 & 2 of 3 + 1 audiocassettes + 1981 January 17 + 1104 + + + + + Saginaw Town Hall news conf., side 3 of 3 + 1 audiocassettes + 1981 January 17 + 1104 + + + + + SASC '83 DOD Budget + 1 audiocassettes + 1982 February 08 + 1103 + + + + + SASC ELF Hearing + 1 audiocassettes + 1981 October 03 + 1104 + + + + + SASC Gives Army More Money + 1 audiocassettes + 1984 February 02 + 1103 + + + + + SASC MX Hearing with Weinberger and Schultz + 1 audiocassettes + 1983 April 20 + 1092 + + + + + SASC Procurement Hearing-Per Ralph White + 1 audiocassettes + 1984 May 16 + 1092 + + + + + SASC, Wienberger B1 - Bomber + 1 audiocassettes + 1981 November 05 + 1103 + + + + + School Prayer + 1 audiocassettes + 1984 March 20 + 1092 + + + + + School Prayer Danforth Capitol Steps Rally + 1 audiocassettes + 13-Mar + 1092 + + + + + Sen Levin #281 + 1 videocassettes (U-matic; 0:28:30) + 1982 March 11 + 1052 + + + + + Sen. Kassebaum News Conf in G.R. says Good Stuff about Carl + 1 audiocassettes + 1983 August + 1103 + + + + + Sen. Levin #695 + 1 videocassettes (U-matic; 0:28:30) + 1982 June 21 + 1052 + + + + + Sen. Levin #695. + 1 videocassettes (U-matic; 28:30:00) + 1982 June 21 + 1055 + + + + + Sen. Levin Opening Remarks Tape 1 18:21 + 1 videocassettes (U-matic; 18:21) + undated + 1055 + + + + + Senator Carl Levin/Jackie Parker CBS - Chanel 9 10:00 a.m. "Morning + Break", Carol Randolph Show + 1 videocassettes (Betacam) + 1984 March 27 + 1086 + + + + + Senator Levin's Message to American Citizens for Justice (Read by Andy + Wong) + 1 videocassettes (VHS) + 1984 March + 1057 + + + + + Siberian 7 hearing + 1 audiocassettes + 1981 November 19 + 1103 + + + + + Siberian 7 News Conf. w/Sen. Simpson + 1 audiocassettes + 1982 February 10 + 1103 + + + + + Speech before Flint HMO's good stuff + 1 audiocassettes + 1983 August 11 + 1103 + + + + + Speech to Machinists + 1 audiocassettes + 1981 October 17 + 1103 + + + + + State Council of Govts. speech. Reagan cuts -- RenCen + 1 audiocassettes + 1981 August 14 + 1104 + + + + + Subc. IRS hearing #1 + 1 audiocassettes + 1980 July 31 + 1104 + + + + + Subc. IRS hearing #2 + 1 audiocassettes + 1980 July 31 + 1104 + + + + + Subc. IRS hearing #3 + 1 audiocassettes + 1980 July 31 + 1104 + + + + + Telephone conversation with Siberian 7 + 1 audiocassettes + 1981 June 25 + 1104 + + + + + Town Meeting/Sault Ste Marie + 1 audiocassettes + 1983 March 26 + 1092 + + + + + Traxler Fundraiser Breakfast and News conf. Saginaw + 1 audiocassettes + 1981 May 18 + 1104 + + + + + UJA Women Address -- White Plains, NY + 1 audiocassettes + 1981 October 05 + 1104 + + + + + Unemployment Extension Cuts; new Congress outlook + 1 audiocassettes + 1982 November 04 + 1103 + + + + + Up Conf Call News Conf + 1 audiocassettes + 1981 October 20 + 1103 + + + + + Up News Conf-Tele + 1 audiocassettes + 1981 November 17 + 1103 + + + + + UP Telephone News Conference + 1 audiocassettes + 1982 September 29 + 1103 + + + + + VAW/CAP Speech + 1 audiocassettes + 1980 April 08 + 1104 + + + + + Wallenberg Speech U of M + 1 audiocassettes + 1981 February 13 + 1104 + + + + + Warren Pierce Show-wjr AWACs + 1 audiocassettes + 1981 October 19 + 1103 + + + + + Warren Pierce Show-WJR Detroit: Beirut, Soviets, New + Hampshire + 1 audiocassettes + 1984 February 27 + 1103 + + + + + Warren Pierce-WJR Lame Duck + 1 audiocassettes + 1982 November 29 + 1092 + + + + + Warren Pierce-WJR MX, Samantha Smith Soviet Trip, Debate Gate, Elections, + Def. Budget, Reagan Program Unfair + 1 audiocassettes + 1983 July 12 + 1103 + + + + + Warren Town Hall 1 & 2 of 3 + 1 audiocassettes + 1981 March 07 + 1104 + + + + + Warren Town Hall 3 of 3 + 1 audiocassettes + 1981 March 07 + 1104 + + + + + Western Michigan Environmental Council + 1 audiocassettes + 1979 April 16 + 1104 + + + + + WJR Focus Interview with J. P. McCarthy Post Election -- + 1 audiocassettes + 1980 November 05 + 1104 + + + + + WMAL "Meet the Member" + 1 audiocassettes + 1980 July 30 + 1100 + + + + + Wurtsmith AFB 1 of 2 + 1 audiocassettes + 1983 July 01 + 1103 + + + + + Wurtsmith AFB 2 of 2 + 1 audiocassettes + 1983 July 01 + 1103 + + + + + WXYZ & WJR Phone Interviews; Reaction to Military Failure in + Iran + 1 audiocassettes + 1980 April 25 + 1104 + + + + + WXYZ Radio interview w/Kevin Joyce/Def. + 1 audiocassettes + 1982 June 01 + 1103 + + + +
    + + + 1985-1990 + + +

    (99th-101st Congress)

    +
    + + + Administrative and Office files + 1979-1999 + + + + Action files + + + + Awards + 1990 + 97 + + + + + Committee analysis + 1990 + 97 + + + + + Co-sponsored bills 99th Congress + 1985-1986 + 97 + + + + + Honoraria + 1990 + 97 + + + + + PACs and contributors + 1990 + 97 + + + + + Statements about individuals, administration, and events + 1990 + 97 + + + + + Vote analysis + 1990 + 97 + + + + + + Action files, 1979-1990 + + +

    (Compiled in 1990 potentially for Levin's 1990 election campaign)

    +
    + + + Accomplishments + 132 + + + + + Agriculture + 132 + + + + + Americanisms + 132 + + +

    (Includes flags, family values, etc.)

    +
    +
    + + + Patriotism and volunteerism + 132 + + + + + Animals + 132 + + + + + Auto Industry + 132 + + +

    (Includes trade related auto industry)

    +
    +
    + + + Arts and humanities + 133 + + + + + Athletics + 133 + + + + + Biographies + 133 + + + + + Biography and disclosures + 133 + + +

    (Includes press releases of committee and task force appointments)

    +
    +
    + + + Business + 133 + + + + + Census + 133 + + + + + Children + 133 + + + + + Constitutional and Civil Rights + 133 + + +

    (Includes abortion, busing, Privacy, school prayer, civil rights, etc.)

    +
    +
    + + + Detroit City Council years + 133 + + + + + Elections -- Clark Durant + 136 + + + + + Native Americans + 133 + + + + + Political III Campaign info + 5 subfolders + 133 + + + + + Postal + 133 + + + + + Procurement Folder 1 + 133 + + + + + Procurement Folder 2 + 133 + + + + + Putting together a record + 134 + + +

    (Includes FEC, financial disclosure, Schuette, campaign research, and Carl's + record)

    +
    +
    + + + Religious affairs + 3 subfolders + 134 + + + + + Resources + 134 + + + + + Senior Citizens + 134 + + + + + Social services + 4 subfolders + 134 + + + + + Technology + 134 + + + + + Trade analysis + 134 + + + + + Trade -- Japan, Korea, and miscellaneous + 134 + + + + + Women + 153 + + +
    + + + Levin's record on variety of issues + 1990 + 153 + + + + + Carl's record -- part 1 + 10 subfolders + 1979-1989 + 156 + + + + + Carl's record -- part 2 + 2 folders + 1979-1989 + 134 + + + + + Awards-Annual Bill of Rights Day meeting award (ACLU) + December 6, + 1984 + 134 + + + + + Correspondence + + + + A + + + + 1985 + 134 + + + + + 1986 + 134 + + + + + 1987 + 134 + + + + + 1987-1989 + 135 + + + + + 1990 + 135 + + + + + + Advisory boards + 1987 + 135 + + + + + AFL-CIO + 1985 + 135 + + + + + Arab-American + 1990 + 135 + + + + + Armed Services Committee (SASC) + + + + 1985 + 135 + + + + + 1985-1986 + 135 + + + + + 1987 + 135 + + + + + 1988 + 135 + + + + + 1988-1989 + 135 + + + + + 1990 + 135 + + + + + + Arms Control Observer Group + July 1989-July 1990 + 135 + + + + + Aspen Institute + November 1989 + 135 + + + + + Auctions + + + + 1985 + 135 + + + + + 1986 + 135 + + + + + 1988 + 135 + + + + + + Auto legislation + 1984-1985 + 135 + + + + + B + + + + 1986 + 135 + + + + + 1987 + 135 + + + + + 1989 + 135 + + + + + 1989-1990 + 135 + + + + + + Baker, James (Secretary of State) + 1988-1989 + 135 + + + + + Blanchard, James (Governor of Michigan) + + + + 1985-1986 + 135 + + + + + 1987-1988 + 135 + + + + + 1988-1990 + 135 + + + + + + Byrd, Robert + 1987-1988 + 135 + + +

    (Majority Leader; Includes a photograph)

    +
    +
    + + + Bucks + + + + 4 folders + 1980-1992 + 136 + + +

    (Includes staff memos, Levin statements, Dear Colleagues, and press + releases)

    +
    +
    + + + 3 folders + 1989-1992 + 136 + + +
    + + + C + + + + 1984-1985 + 136 + + + + + 1985-1986 + 136 + + + + + 1987 + 136 + + + + + 1988-1989 + 136 + + + + + 1990 + 136 + + + + + + Census letters from local governments, (Michigan) + 1990-1992 + 137 + + + + + Chrysler Corporation + + + + 1985-1986 + 137 + + + + + Lee Iacocca + 1986-1988 + 137 + + + + + + Civil Service + 1988-1991 + 137 + + + + + Clean water + 1985 + 137 + + + + + Close Up Foundation + 1987-1990 + 137 + + + + + Colleagues + + + + 1988 + 137 + + + + + 2 folders + 1989 + 137 + + + + + 1990 + 137 + + + + + + Colleges and Universities + + + + 1987-1988 + 137 + + +

    (Michigan)

    +
    +
    + + + November 1988-1989 + 137 + + + + + 1990 + 137 + + + + + Ben-Gurion University + 1985 + 137 + + +
    + + + Congratulations + + + + 1985 + 137 + + + + + 1986 + 137 + + + + + To constituents + 1988 + 138 + + + + + 2 folders + 1990 + 138 + + + + + + Constituents + 1989-1990 + 138 + + + + + Courtesy passes + + + + 1985-1986 + 138 + + + + + December 1987-September 1988 + 138 + + + + + + D + + + + 1984-1985 + 138 + + + + + 1986 + 138 + + + + + 1987 + 138 + + + + + 1988-1989 + 138 + + + + + 1990 + 138 + + + + + + Dear Colleague letters + 1989-1990 + 153 + + +

    (Many topics including trade and transportation)

    +
    +
    + + + Democratic National Committee + + + + 1985 + 138 + + + + + 1987-1988 + 138 + + + + + + Democratic Senatorial Campaign Committee + + + + 1985 + 138 + + + + + 1985-1987 + 138 + + + + + 1988 + 138 + + + + + 1989 + 138 + + + + + + Department of Defense + 1985-1989 + 138 + + + + + Detroit Tigers-Monaghan party + 1987 + 138 + + + + + Dignitaries + 1984-1986 + 138 + + + + + District of Columbia (D.C.) + 1988 + 1991 + 138 + + + + + D.C. issues + 1987 + 138 + + + + + Donations + 1985 + 138 + + + + + Dukakis, Michael (Governor of Massachusetts) + 1987-1988 + 138 + + + + + E + + + + 1985 + 138 + + + + + 1986 + 138 + + + + + 1987 + 138 + + + + + 1988-1989 + 138 + + + + + April-May 1990 + 138 + + + + + + Eagleton, Tom, (Senator) + 1985 + 138 + + + + + Embassies-P.K. Kaul + 1985-1988 + 138 + + + + + Embassy-Israel + June 7, 1987 + 138 + + + + + Embassy letters + December 1988-1999 + 138 + + + + + Energy Conversion Devices, Inc. (ECD) + + + + Folder 1 + 1990 + 138 + + + + + Folder 2, (Michigan; Stanford Ovshinsky) + 1990 + 138 + + + + + + Equal Employment Opportunity Commission + 1987 + 139 + + + + + F + + + + 1985 + 139 + + + + + 1985-1986 + 139 + + + + + 1987 + 139 + + + + + 1989 + 139 + + + + + 1990 + 139 + + + + + + Ford Motor Company + 1989-1990 + 139 + + + + + Ford Motor Company and Henry Ford II + 1985-1988 + 139 + + + + + Anne Frank Detroit Exhibit + 1986 + 139 + + + + + G + + + + 1985 + 139 + + + + + 1986 + 139 + + + + + 1987 + 139 + + + + + 1988-1989 + 139 + + + + + 1990 + 139 + + + + + + General Motors Company, (GM) + 1985-1990 + 139 + + + + + Governmental Affairs Committee (GAC) + + + + 1986-1987 + 139 + + + + + 1988 + 139 + + +

    (Includes committee calendars)

    +
    +
    + + + 1989 + 139 + + + + + Oversight of Governmental Management Subcommittee, (Subcom + OGM) + 1985-1986 + 139 + + +
    + + + Greenberg, Hank + 1986-1998 + 139 + + + + + H + + + + 1984-1985 + 139 + + + + + 1986 + 139 + + + + + 1987 + 139 + + + + + 1988-1990 + 139 + + + + + 1989-1990 + 139 + + + + + + Handal Festival Chorus + 1990-1991 + 140 + + + + + Hart, Gary, (Senator) + January 1981 + 140 + + + + + Haverson, Richard C., (Chaplain of the Senate) + 1986-1988 + 140 + + + + + Honorary chairmanships and memberships + 1988 + 140 + + + + + Huntington's Disease + 1980-1985 + 140 + + + + + I + + + + 1985 + 140 + + + + + 1986 + 140 + + + + + 1987 + 140 + + + + + 1988-1989 + 140 + + + + + 1990 + 140 + + + + + + Intergovernmental Relations Advisory Commission + 1988-1990 + 140 + + + + + Israel and Jewish + + + + 1985-1986 + 140 + + + + + 1987 + 140 + + + + + 1988 + 140 + + + + + 2 folders + October 1988-1989 + 140 + + + + + 2 folders + 1990 + 140 + + + + + Jewish ethics + 1989 + 140 + + + + + Jewish speeches + 1990 + 140 + + + + + + J + + + + 1985 + 140 + + + + + 1986 + 140 + + + + + 1987 + 140 + + + + + 1988-1989 + 140 + + + + + 1990 + 140 + + + + + + Judiciary + 1989-1992 + 140 + + + + + K + + + + 1985 + 141 + + + + + 1986 + 141 + + + + + 1987 + 141 + + + + + 1988-1989 + 141 + + + + + 1990 + 141 + + + + + Karp, Miriam and James + 1986 + 141 + + + + + + L + + + + 1985 + 141 + + + + + 1986 + 141 + + + + + 2 folders + 1987 + 141 + + + + + 1989 + 141 + + + + + 1990 + 141 + + + + + + Lac Vieux + 1984-1986 + 141 + + +

    (Federal Energy Regulatory Commission complaint by Lac Vieux Riparian Owners + Association, Inc.)

    +
    +
    + + + Letters to Levin + 1984-1989 + 141 + + + + + Liberty Weekend + July 3-6, 1986 + 141 + + + + + Luther Place -- Washington D.C. direct mail appeal by Carl + 1984-1986 + 141 + + + + + M + + + + 1984-1985 + 141 + + + + + 1986-1987 + 141 + + + + + 1989 + 141 + + + + + 1990 + 141 + + + + + + Michigan Department of State + 1985-1987 + 142 + + + + + Michigan House of Representatives + 1985 + 1988 + 142 + + + + + Michigan-Miss Blau's 5th Grade Class, (Southfield) + 1990 + 142 + + + + + Michigan officials, companies, and VIPs + 1986-1988 + 142 + + + + + Michigan Senate + 1985-1987 + 142 + + + + + Military academies + 1986-1988 + 142 + + + + + Miscellaneous + + + + May 1985 + 142 + + + + + March 1986 + 142 + + + + + March 1987 + 142 + + + + + August 1987 + 142 + + + + + 1987 + 142 + + + + + March 1988 + 142 + + + + + Folder 1 + 1988 + 142 + + + + + Folder 2 + 1988 + 142 + + + + + May 1989 + 142 + + + + + August 1989 + 142 + + + + + September 1989 + 142 + + + + + 1989-1990 + 142 + + + + + 1990 + + + + July + 142 + + + + + August + 142 + + + + + September + 142 + + + + + November + 142 + + + + + December + 142 + + + + + + + Mitchell, George (Majority Leader) + + + + December 1988-1989 + 142 + + + + + 1990 + 142 + + + + + + Muskegon Jewish Centennial + September 24, + 1988 + 142 + + + + + Muskegon -- Jewish Centennial Sylvia Kaufman + 1988 + 142 + + + + + Mc + + + + 1985 + 142 + + + + + 1989 + 142 + + + + + + N + + + + 1985 + 142 + + + + + 1986 + 142 + + + + + 1987 + 142 + + + + + 1989 + 142 + + + + + 1990 + 142 + + + + + + National Archives Chicago -- Northwest Ordinance Bicentennial + Exhibit) + 1987-1988 + 142 + + + + + Navy + 1987-1990 + 142 + + + + + Nixon, Walter, (Judge, impeachment) + 2 folders + 1989 + 142 + + + + + Nominations + + + + Bell, Robert Holmes, (Judge) + 1987 + 1048 + + + + + Bork, Robert, (Judge) + August-October 1987 + 1048 + + + + + + O + + + + 1985 + 142 + + + + + 1987 + 142 + + + + + 1989 + 142 + + + + + 1990 + 142 + + + + + + Ovshinsky, Stan + + +

    (Energy Conversion Devices, Inc.-ECD)

    +
    + + + 1985-1986 + 143 + + + + + 1987-1989 + 143 + + + + + Superconductivity and amorphous materials + 2 folders + 1988 + 143 + + +
    + + + P + + + + 1987 + 143 + + + + + 1989 + 143 + + + + + 1990 + 143 + + + + + + Pallas, Jim, (Includes stamps) + 1979-1988 + 143 + + + + + Pentagon + 1985 + 143 + + + + + Personal + 1987 + 143 + + + + + Political + + + + 2 folders + 1986 + 143 + + + + + 1987 + 143 + + + + + 1989 + 143 + + + + + Political-position on battleships + 1990 + 143 + + + + + + Postal Issues + 3 folders + 1989-1992 + 143 + + + + + Prisons, (D.C. prison issue and NCPC) + 1986-1987 + 143 + + + + + R + + + + 1986 + 144 + + + + + 1987 + 144 + + + + + 1989 + 144 + + + + + 1990 + 144 + + + + + + Responses to CLSF letter + November 19, + 1986 + 144 + + + + + Responses to CLSF and VIP letter + April 30, + 1987 + 144 + + + + + Answers to Special Report mailed to Lutz file + January 1987 + 144 + + + + + Responses to Year End Report to contributors and volunteers + 1985 + 144 + + + + + Responses to Year End Report + 1988 + 144 + + + + + S + + + + 2 folders + 1987 + 144 + + + + + 1989 + 144 + + + + + 1990 + 144 + + + + + + Sadat Peace Foundation + 1988-1991 + 144 + + + + + Schulman, Gerry + 1988-1990 + 144 + + + + + Shultz, George, (Secretary of State) + 1986-1987 + + + + 1986-1987 + 144 + + + + + 1988 + 144 + + + + + + Social Security + 1990 + 1992 + 144 + + + + + Soviet Union (USSR) + 1989-1992 + 144 + + + + + Space music + 1985 + 145 + + + + + Stamp collecting + + + + 1985-1986 + 145 + + + + + 1986-1987 + 145 + + + + + 1989-1990 + 145 + + + + + + Stern, Sol-Germanium letter + 1985-1986 + 145 + + + + + Strategic Defense Initiative (SDI) + 1985-1986 + 145 + + + + + T + + + + 1987 + 145 + + + + + 1988 + 145 + + + + + 1989 + 145 + + + + + 1990 + 145 + + + + + + Thank yous + + + + Carl + 1990 + 145 + + + + + Colleagues + + + + 1985-1986 + 145 + + + + + 1986 + 145 + + + + + 1987 + 145 + + + + + 1988-1989 + 145 + + + + + 1990 + 145 + + + + + + + U + + + + 1987 + 145 + + + + + 1988-1989 + 145 + + + + + 1990 + 146 + + + + + + Unions-American Federation of Labor and Congress of Industrial + Organizations + 1987-1988 + 146 + + + + + U.S.-Soviet Relations Conference + September 1987-April 1988 + 146 + + + + + V + + + + 1987 + 146 + + + + + 1987-1989 + 146 + + + + + 1990 + 146 + + + + + + W + + + + 1987 + 146 + + + + + 1988 + 146 + + + + + 1989 + 146 + + + + + 1990 + 146 + + + + + + White House + 1988-1989 + 146 + + + + + Adm. Wright, (Great grandson of "Boy Governor") + 1987 + 146 + + + + + WXYZ + 1985-1986 + 146 + + + + + XYZ + + + + 1987 + 146 + + + + + 1988-1989 + 146 + + + + + 1990 + 146 + + + + + + Yarmulkes-military + 1986-1988 + 146 + + + + + Year End Report-Levin's + 1985-1986 + 146 + + + + + Yom Kippur + undated + 146 + + +
    + + + Election campaign preparation -- (J. Parker and C. Cutolo) + 1990 + + + + Clark Durant's campaign -- clippings + 1990 + 146 + + + + + Ethics + 2 folders + 1990 + 146 + + + + + Question and Answer, (Includes campaign strategy) + 1989-1990 + 146 + + + + + Schuette comments and speeches + 1989-1990 + 146 + + + + + Schuette contributions + 1990 + 146 + + + + + Schuette and Dow + 2 folders + 1987-1990 + 146 + + + + + Schuette letters on HUD + 1987 + 147 + + + + + Schuette news articles + 1990 + 147 + + + + + Schuette voting record, sponsorships, and cosponsorships + 1990 + 147 + + + + + Strategy documents + 1990 + 147 + + + + + Tax policy + 1981-1990 + 147 + + + + + Voting records + 1981-1990 + 147 + + + + + + Financial disclosures-Levin + + + + 1984 + 147 + + + + + 1985 + 147 + + + + + 1986 + 147 + + + + + + Guestbooks + + + + 1985-1986 + 147 + + + + + 1986-1987 + 147 + + + + + Senator Levin signing-in reception + January 3, + 1985 + 147 + + + + + + Honorary membership -- National Junior Honor Society of Secondary + Schools + May 9, 1989 + 147 + + + + + Jokes file + 1984-1985 + 147 + + + + + Legislative activities-Levin + + + + 101st Congress + January 3, 1989-November 3, 1990 + 147 + + +

    (Book)

    +
    +
    + + + Co-sponsored bills + 1985-1986 + 147 + + +
    + + + Miscellaneous + + + + 1989-1990 + 147 + + + + + Levin notes and statements + 3 folders + 1981-1989 + 148 + + + + + NDAA Levin provision, correspondence with ABC, assisted rental house + pet ownership, and S.15-redlining + 1987-1991 + 148 + + + + + Sign on to Amici brief-Massachusetts v. Brown + June 24, 1988 + 148 + + + + + + Philatelic Society + 1985-1986 + 148 + + + + + Political, (M. Robillard) + 1984-1987 + 148 + + + + + Prime documents + March 1986-May 1991 + 148 + + + + + Schedules + + + + 1985 + 148 + + + + + 2 folders + 1986 + 148 + + + + + Folder 3 + 1986 + 148 + + + + + Folder 1 + 1987 + 148 + + + + + Folder 2 + 1987 + 148 + + + + + Folder 1 + 1988 + 149 + + + + + Folder 2 + 1988 + 149 + + + + + Folder 1 + 1989 + 149 + + + + + 2 folders + 1989 + 149 + + + + + 3 folders + 1990 + 150 + + + + + Action files + + + + 1985 + 150 + + +

    (Action file)

    +
    +
    + + + 1986 + 150 + + +

    (Action file)

    +
    +
    + + + 1987 + 150 + + +

    (Action file)

    +
    +
    + + + 1988 + 150 + + +

    (Action file)

    +
    +
    + + + 3 folders + 1989 + 150 + + +

    (Action file)

    +
    +
    + + + 4 folders + 1990 + 150 + + +

    (Action file)

    +
    +
    +
    + + + Carl's schedule + 1990 + 151 + + + + + Invitations-want to accept + 1987 + 151 + + +
    + + + SCORPIO reference manual + January 1989 + 151 + + +

    (Congressional Research Service-CRS-automation service)

    +
    +
    + + + Staff + + + + Baum, Naomi + 1982-1989 + 151 + + +

    (Defense, human rights, foreign affairs, and veterans; N. Baum)

    +
    +
    + + + Galen, Helen, (H. Galen) + 1986-1987 + 151 + + + + + Letter library + + + + 1984-1986-Defense, Federal Trade Commission (FTC), Government + regulations, space, and officials + 2 folders + 151 + + + + + 1985-1986-Foreign policy and veterans + 2 folders + 151 + + + + + 1987-Banking, Business, consumers, insurance, patents, and social + security + 151 + + + + + 1987-Defense, foreign policy, human rights, immigration, and + veterans + 2 folders + 151 + + + + + 1988-1989-Defense, foreign policy, and veterans + 151 + + + + + 1988-1989-Foreign policy and human rights + 151 + + + + + + Michigan + + + + 1985-1986 + 152 + + + + + November 1988-1989 + 152 + + + + + 1990 + 152 + + + + + Broder, Ruth (R. Broder) + + + + 1987-1988 + 152 + + + + + October 1988-1989 + 152 + + + + + + + Seltzer, Bob + 1985 + 152 + + +

    (Strategic balance, Jewish issues, and Bud Burns; B. Seltzer)

    +
    +
    + + + Staff files + + + + Camp Grayling letters + 1987 + 1989 + 152 + + +

    (Traverse City office)

    +
    +
    + + + Central America demonstration correspondence, (Foreign policy; B. + Ash) + May 1985 + 152 + + + + + Child care, Nutrition monitoring bill, Chippewa-Ottawa, etc, (J. + Parker) + 1985-1989 + 152 + + + + + Education, civil rights, health and welfare + 1988-1989 + 152 + + + + + Health, social security, and welfare + 1986-1989 + 152 + + + + + Labor, child support, health, and animal protection + 1987 + 152 + + + + + Labor, health, Indian affairs, foreign policy, social security, and + education, (J. Parker) + 1985-1991 + 152 + + + + + Michigan Human Society correspondence, (Animal protection; B. + Ash) + 1984-1986 + 152 + + + + + Miscellaneous, (J. Parker) + 1983-1991 + 152 + + + + + Miscellaneous and Congressional Black Caucus -- 100th Congress, (J. + Parker) + 1984-1987 + 152 + + + + + South Africa, (Foreign policy; B Ash and J. Parker) + 1985 + 152 + + +
    + + + Staff memos + + + + Miscellaneous + 1984-1986 + 152 + + + + + Newsletters, Friday memo, and mad constituent letter + 1986-1989 + 152 + + + + + Thursday memos-the Record, Soviet Jewry, and Middle + East/Israel + 1990 + 152 + + + + + Votes and gossip of last week-Chuck, (C. Cutolo) + April 22, + 1988 + 152 + + + + + + Votes and gossip + 1986 + 152 + + + + + Votes and gossip -- Washington votes update + 1987 + 152 + + + + + Votes and gossip + 1988 + 153 + + + + + Washington + 1990 + 153 + + +
    + + + Telephone logs + October-December 1988 + 153 + + + + + Telephone messages + 3 notebooks + 1987-1989 + 153 + + +
    + + + Agriculture + 1979-1997 + + + + Agriculture accomplishments + 1979-1990 + 228 + + +

    (list created May 10, 1990)

    +
    +
    + + + Action files + + + + 1985 + 97 + + + + + 1986 + 97 + + + + + 1987 + 97 + + + + + 1988 + 97 + + + + + 1989 + 97 + + + + + + Agricultural record + 1985-1992 + 228 + + + + + Asparagus + 1989-1991 + 228 + + + + + Beans + 1986-1992 + 228 + + + + + Blueberries + 1988-1992 + 228 + + + + + Cargo and shipping amendments to Farm Bill + 1985 + 228 + + + + + Cherries-trade and marketing order + 2 folders + 1986-1995 + 228 + + + + + Disaster payments -- amendments to H.R.1157 + 1986-1992 + 228 + + + + + Farm bill + 1990 + + + + Amendments + 228 + + + + + Conservation + 228 + + + + + Trade + 228 + + + + + Dairy + 228 + + + + + Flexibility + 228 + + + + + Oilseed-soybean + 228 + + + + + Pesticides + 228 + + + + + Sugar + 228 + + + + + Wheat + 228 + + + + + + Farm finance + 1984-1990 + 228 + + + + + Farm issue memos + 4 folders + 1985-1997 + 229 + + + + + Haying emergency + 1988 + 1993 + 229 + + + + + Honey + 1985-1993 + 229 + + + + + Levin file + 1985 + 229 + + + + + Thumb trip weekend, (Farm issues; Michigan) + April 27, 1990 + 229 + + +
    + + + Animal protection + 1980-1995 + + + + 1985-1989 + 240 + + + + + 1985 + 1995 + 240 + + + + + 1987-1988 + 240 + + + + + Action files + + + + 1985 + 97 + + + + + 1986 + 97 + + + + + 1987 + 97 + + + + + 1988 + 97 + + + + + + Dairy cattle jaw branding-agriculture + April 1986 + 240 + + + + + Dog fighting + 1985-1986 + 240 + + + + + Endangered species + 1989-1994 + 240 + + + + + Endangered species-General Foundation of Women's Clubs + 1987-1988 + 240 + + + + + Generic Animal Drug Patent Term Restoration Act-S.2843 + 1988 + 240 + + + + + Hearing-Dingell and Johnson Expansion Fund-North Pacific Fur Seal before + House Subcommittee on Fisheries and Wildlife + March 18, 1980 + 240 + + +

    (Book)

    +
    +
    + + + Kangaroos, North Pacific Fur Seals, and Refuge Wildlife Protection act, + (J. Parker) + 1985-1987 + 240 + + + + + Llama importation and North Pacific Fur seal clubbing, (J. + Parker) + 1986-1987 + 240 + + + + + North Pacific Fur seals + 1985 + 240 + + + + + Primates-Silver Spring monkey protection + 1985-1987 + 240 + + + + + Pet protection legislation + 1988 + 240 + + + + + Research subjects and Kangaroo killings + 2 folders + 1985-1986 + 241 + + + + + Rights and medical testing + 1985-1986 + 241 + + +
    + + + Arts and humanities-action files + 1985-1989 + + + + 1985 + 97 + + + + + 1986 + 97 + + + + + 1987 + 97 + + + + + 1988 + 97 + + + + + 1989 + 97 + + + + + + Business + 1981-1991 + + + + Action files + + + + Consumer affairs + + + + Folder 1 + 1986 + 97 + + + + + Folder 2 + 1986 + 97 + + + + + 1989 + 97 + + + + + + Small business + + + + 1985 + 97 + + + + + 1986 + 97 + + + + + 1987 + 97 + + + + + 1988 + 98 + + + + + 1989 + 98 + + + + + 1990 + 98 + + + + + + + Small Business Committee (SBC) + 245 + + + + Subcommittee and administration + 4 folders + 1989-1991 + 245 + + + + + Hearings + + + + Impact of Federal Programs on Small Business Manufacturing, (Subcom + ITP) + March 1, + 1988 + 245 + + + + + Small Business Automation, (Subcom ITP) + March 1, + 1988 + 245 + + + + + Technology upgrading, (Subcom ITP) + 4 folders + June 1987-March 1988 + 245 + + + + + + Markup of reconciliation recommendations + July 1986 + 245 + + + + + Memos and reference material + 1987 + 245 + + + + + Michigan Growth Alliances, (M. Robillard) + 1986 + 245 + + + + + Subcommittee on Innovation, Technology, and Productivity + 1988 + 245 + + + + + + Small business + + + + Exports + March-June 1990 + 246 + + + + + Innovation, Technology, and Productivity memos + 1984-1989 + 246 + + + + + Minority owned + March 1990 + 246 + + + + + Small Business Administration (SBA) + + + + Budget + 1985-1987 + 246 + + + + + Disaster assistance + 1981 + 246 + + + + + Pollution control bond program + 3 folders + 1983-1985 + 246 + + + + + Reauthorization-S.408 + 2 folders + 1985 + 246 + + + + + + + + Civil Rights + 1983-1995 + + + + 1984-1988 + 263 + + + + + 1989-1991 + 263 + + + + + Action files + + + + 1985 + 98 + + + + + 1986 + 98 + + + + + 1987 + 98 + + + + + 1988 + 98 + + + + + 1989 + 98 + + + + + + Civil liberties and rights + 1983-1992 + 263 + + + + + Civil Rights Restoration Act-Grove City bill + 2 folders + 1986-1988 + 263 + + + + + Discrimination + 1995 + 263 + + + + + Discrimination-disabilities and Air Carrier Access act + 1988 + 263 + + + + + Equal opportunity employment + 1988-1991 + 263 + + + + + MLK Commission + 1989 + 263 + + + + + + Communications + 1983-1991 + + + + Action files + + + + 1986 + 98 + + + + + 1987 + 98 + + + + + 1988 + 98 + + + + + 1989 + 98 + + + + + + Blanket license + April 28, 1986 + 256 + + + + + Broadcasting legislation issues-musicians + 1985-1986 + 256 + + + + + Digital Audio Recording bill-S.1623 + 1991 + 256 + + + + + HAM amateur radio operators FCC licensing fee amendment + + + + Part 1 + 6 subfolders + 1989-1991 + 256 + + + + + Part 2 + 2 subfolders + 1988-1990 + 256 + + + + + + Music and television syndication-licensing laws + 1984-1989 + 256 + + + + + National Labor Relations Act-Musicians-S.670 + 1985-1986 + 256 + + + + + Telephone company legislation + 2 folders + 1983-1984 + 256 + + + + + + Crime and Justice + 1971-1993 + + + + Action files + + + + Crime + + + + 1985 + 98 + + + + + Folder 1 + 1986 + 98 + + + + + Folder 2 + 1986 + 98 + + +

    (Including terrorism, handguns, and prisons)

    +
    +
    + + + 1988 + 98 + + + + + 1989 + 98 + + +
    + + + Justice + + + + 1985 + 98 + + + + + 1986 + 98 + + + +
    + + + Asset forfeiture + 1989-1990 + 267 + + + + + Body armor + + + + Background and letters + 2 folders + 1989-1990 + 268 + + + + + Department of Justice inspection report + June 1991 + 268 + + + + + Memos and letters + 1990 + 268 + + + + + Miscellaneous + April-June 1990 + 268 + + + + + Personal Protective Armor Association + + + + Controversy + 2 folders + May 1990 + 268 + + + + + Correspondence and report + 2 folders + 1986-1989 + 268 + + + + + + + Boot camps and federal prison + 1989-1991 + 268 + + + + + CASA program-Biden and Reid + 1989-1990 + 268 + + +

    (Court Appointed Special Advocates; Victims of Child Abuse Act-S.1965)

    +
    +
    + + + Crime bill-S.1241 + 1990-1991 + + + + Amendments + 268 + + + + + Background + 268 + + + + + Bill summaries + 268 + + + + + Conference + 268 + + + + + Memos and statements + 268 + + + + + + Crime Control Act (GAC) + 1990 + + + + Anti-drug foreign assistance + 1988-1989 + 268 + + + + + Bill + 1990 + + + + Crime speeches + 268 + + + + + Democratic policy committee + 268 + + + + + Drugs and prisons + 268 + + + + + MADD + 268 + + + + + Miscellaneous + 2 folders + 268 + + + + + Unanimous consent request draft + 268 + + + + + + Bill amendments + 1990 + + + + Bankruptcy-restitution + 268 + + + + + Kidnapping + 268 + + + + + Life imprisonment-restitution + 268 + + + + + Military prop. + 268 + + + + + Miscellaneous + 2 folders + 268 + + + + + Playground + 269 + + + + + Securities and Loans + 269 + + + + + + Drug forums-Levin + March 1990 + + + + Research and follow-up material + 2 folders + 269 + + + + + Briefing binder + 269 + + + + + + Hearings + + + + Averting alcohol abuse (GAC) + June 21, + 1989 + 269 + + + + + Governors and Mayors on drug plan (GAC) + September 21, + 1989 + 269 + + + + + Anti-Narcotics Efforts in the Andean Region (PSI) + September 26-29, 1989 + 269 + + + + + 1989-D.C. Drugs (GAC) + 269 + + + + + 1989-Role of Department of Defense (DOD) in drug interdictions + (PSI) + + + + FY1990 amendment to enhance National Guard + 269 + + + + + Background + 2 folders + 269 + + + + + Hearing + 3 folders + 269 + + + + + + 1989-Drugs in Public Housing (PSI) + 269 + + + + + Miscellaneous + 1990 + 269 + + + + + + National drug strategy + + + + Drug bill analysis + 1988 + 269 + + + + + Drug control strategy + 1989 + 269 + + + + + Drug control strategy + 1990 + 269 + + + + + Drug funding-Byrd amendment + 1989 + 269 + + + + + General drug briefing + 1989 + 269 + + + + + + National Guard and drug programs + 1989-1990 + + + + National Guard and the government + 270 + + + + + Background on the National Guard + 270 + + + + + Final conference language + 270 + + + + + + Police commission bill and campus crime + 2 folders + 1990 + 270 + + + + + Steroid abuse + 1989-1990 + 270 + + + + + + Death Penalty + + + + 13 subfolders + 1984-1991 + 270 + + + + + 2 folders + 1988 + 270 + + + + + 1988 + 270 + + + + + 2 folders + 1990 + 270 + + + + + Amendments, letters, and information + 1988-1990 + 270 + + + + + 1993 Debate, 1986-1993 (J. Parker) + 2 folders + 1986-1993 + 284 + + + + + Drug related murder penalty legislation + + + + Amendments to Defense Authorization bill + 2 folders + May-June 1988 + 270 + + + + + Amendments to senate drug bill and news articles + 1988-1989 + 271 + + + + + Background information, Congressional Records, notes, and + amendments + May 1988 + 271 + + + + + Background information and notes + June 1988 + 271 + + + + + Bill-S.2455 and Levin statements + May-June 1988 + 271 + + + + + Bill and draft executive calendar + May-June + 1988 + 271 + + + + + Opinions and feedback + June-August + 1988 + 271 + + + + + + Drug related murder-Vasquez case + 1984-1989 + 271 + + + + + Miscellaneous (J. Parker) + + + + 1981-1985 + 284 + + +

    (Includes floor strategy, religious community, law enforcement officials, and + Texas study)

    +
    +
    + + + 1983-1985 + 284 + + +
    + + + News articles + 1990 + 271 + + + + + Levin statement on drug related killings + May 1988 + 271 + + + + + Racial Justice Act + August-September 1990 + 271 + + + + + Specter amendment-Foreign Relations Authorization Act + 1989 + 271 + + +
    + + + Death penalty, drugs, and Levin accomplishments-not just + crime + 1990-1992 + 271 + + + + + Drugs + + + + Hearings-women, children, and drugs, (GAC) + 1989 + 271 + + + + + Legalization + 1988-1989 + 271 + + + + + + Drug offenses + 1985 + 271 + + + + + Levin comments on drugs + 1989-1990 + 271 + + + + + Gun control + + + + 1983-1988 + 271 + + + + + 1984-1986 + 271 + + +

    (C. Cutolo)

    +
    +
    + + + Anti + 1989-1990 + 271 + + + + + Legislation + 2 folders + 1989 + 271 + + + + + Levin file + 1989-1990 + 271 + + + + + Pro + 1988-1990 + 271 + + + + + Semi-automatic weapons + 1989 + 271 + + +
    + + + Hate Crime Statistics Act + 1990 + 271 + + + + + Hearing-Assault weapons, (Subcommittee on the Constitution) + February 10, + 1989 + 271 + + + + + Justice Department lawsuits against Detroit suburbs + 1987 + 271 + + + + + Nomination-Attorney General, Civil Rights Division-William + Lucus + + + + Background + 2 folders + February-July 1989 + 1031 + + + + + Contempt charges + 1976 + 1031 + + + + + Fregin judgement + 1971 + 1031 + + + + + Hearing statements and transcripts + July 19-20, 1989 + 1031 + + + + + + Police Corps + 1990-1991 + 272 + + + + + Polygraph + 1985 + 272 + + + + + Pornography + 2 folders + 1988-1992 + 272 + + + + + Schoolyard drug law-Pauline + 1980-1990 + 272 + + + + + Teamsters-Justice Department + 1987-1988 + 272 + + + + + Teamsters and Justice Department racketeering charge + 1987-1988 + 272 + + + + + Trauma centers, (J. Parker) + 2 folders + 1990-1991 + 272 + + +
    + + + Defense and Armed Services Committee (SASC) + 1972-1998 + + + + Abraham Lincoln war and prominent athletes on active duty + 1987-1988 + 304 + + + + + Action files + + + + Arms control + + + + 1985 + 98 + + + + + 1986 + 98 + + + + + 1987 + 98 + + + + + 1988 + 98 + + + + + 1989 + 98 + + + + + + Defense + + + + 1985 + 98 + + + + + 2 folders + 1986 + 98 + + + + + Folder 3 + 1986 + 98 + + +

    (Including draft, civil, but not arms control)

    +
    +
    + + + 1988 + 98 + + + + + 1989 + 98 + + +
    +
    + + + Appropriations, authorization, and funding + + + + FY1986 + + + + Defense appropriations + + + + Memos (SASC) + 304 + + + + + Miscellaneous + 304 + + + + + + + FY1987 + + + + Conventional defense initiatives + April 1987 + 304 + + +

    (James Webb Secretary of the Navy nomination questions also regarding women + in the military)

    +
    +
    + + + Defense authorization amendment-Major non-NATO allies reporting + change + 304 + + + + + Defense budget + + + + Army posture + 304 + + + + + Army posture and Geneva Summit, (SASC) + 1985-1987 + 304 + + + + + Budget considerations and amendments + 304 + + + + + Strategic Defense Initiative (SDI) + 304 + + + + + + Defense Authorization Act-Booker T. Washington Foundation + letter + January 27, + 1987 + 304 + + +
    + + + FY1988 + + + + Appropriations + + + + Continuation appropriations for FY1988-H.J.Res.395 + October 29, + 1987 + 304 + + +

    (Booklet)

    +
    +
    + + + Continuing Appropriations for FY1988 (P.L.100-202) + December 22, + 1987 + 304 + + + + + Further Continuing Appropriations report + 1988 + 304 + + +

    (House Committee on Appropriations; Booklet)

    +
    +
    + + + Departments of Commerce, Justice, and State, the Judiciary for FY + 1988 report, June 24, 1987 + June 24, + 1987 + 1988 + 304 + + +

    (House Committee on Appropriations)

    +
    +
    + + + Departments of Commerce, Justice, and State, the Judiciary for + FY1988 report + September 25, + 1987 + 304 + + +

    (Senate Committee on Appropriations)

    +
    +
    + + + Appropriations for Department of Commerce, Justice, and State, the + Judiciary for FY1988-H.R.2763 + October 15, + 1987 + 304 + + + + + Hearing transcript-Restructuring of the Strategic Defense + Initiative (SDI) Program + October 6, + 1986 + 304 + + + + + Foreign Operations, export financing, and related programs + appropriations bill FY1989 report + May 19, + 1988 + 304 + + +

    (House Committee on Appropriations; Booklet)

    +
    +
    +
    + + + Defense authorization + + + + Panama Canal Commission change to revolving fund + July-September 1987 + 304 + + + + + Seek Spinner radar suppression + June-September 1988 + 304 + + + + + + Defense authorization bill + + + + Contracting out services concerns of unions memo + May 13, + 1987 + 304 + + + + + Levin amendments + 304 + + + + + Strategic Defense Initiative (SDI) transfer funds + amendments + 304 + + + + + Subcommittee on Readiness and Sustainability priority + appropriations list and budget requests + 304 + + + +
    + + + FY1988-1989 + + + + Air Force amended biennial budget-Construction, family + housing + + +

    (Binders)

    +
    + + + Part I + 2 folders + 304 + + + + + Part II + 2 folders + 304 + + +
    + + + Conventional funding and transfer data + 304 + + + + + Defense authorization bill + + + + Levin amendments, floor speech, and budget resolution + 304 + + + + + Levin statement on Conventional versus strategic forces + 304 + + + + + + National defense authorization and Focus: HOPE + 304 + + + + + Hearings + + + + Funding for authorization amendments, (SASC) + 1986-1987 + 304 + + + + + Authorization markup + February-April 1987 + 305 + + +

    (Subcommittee on Conventional Forces)

    +
    +
    + + + Current Readiness and Sustainability Posture of U.S. Forces and + NDAA request + March 1987 + 305 + + +

    (Subcommittee on Readiness Sustainability and Support)

    +
    +
    +
    +
    + + + FY1989 + + + + Budget-defense appropriations + 305 + + + + + Defense appropriations talking points + 305 + + + + + Defense authorization bill + + + + Base closure and amendments + 305 + + + + + Navy aircraft lease amendment + 305 + + + + + Presidential waiver of contract administration services to non-NATO + allies amendment + 305 + + + + + SDI review and appropriations + 305 + + + + + + + FY1990 + + + + Advanced Target Cuing and Recognition Engine (ATCURE) + funding + 305 + + + + + Budget and SDI funding + 305 + + + + + + FY1990-1991 + + + + Budget hearings and nomination of Richard Cheney to Secretary of + Defense + 1989 + 305 + + + + + + FY1991 + + + + Defense budget markup + 305 + + + + + + Reference materials and miscellaneous + + + + Budget, NATO Burdensharing, and Soviet relations + 1986-1988 + Folder 1 of 2 + 305 + + + + + Budget, NATO Burdensharing, and Soviet relations + 1986-1988 + Folder 2 of 2 + 306 + + + + + GAO testimony Readiness of Army Guard and Reserve Support Forces by + Richard A. Davis + April 13, + 1988 + 306 + + +

    (SASC; Subcom on Readiness, Sustainability and Support and Subcom on Manpower + and Personnel)

    +
    +
    + + + NATO Conventional arms balance and INF Treaty + + + + Beyond the Bean Count mail list + August 1988 + 306 + + + + + FY1988/1989-Conventional Forces and Alliance Defense Subcommittee + authorization bill recommendations, issues, and markup + 306 + + + + + FY1989-Hearings-SDI program compliance with ABM Treaty and INF + Treaty + 1988 + 306 + + + +
    +
    + + + Allied Contributions to the Common Defense report + March 1986 + 306 + + +

    (Written by Caspar W. Weinberger-Secretary of Defense; DOD; burden sharing)

    +
    +
    + + + Coast Guard-funding and changes + 1984-1987 + 306 + + + + + Coast Guard funding + 1985-1988 + 306 + + + + + Committee hearings (SASC) + + + + "Exotic Systems" and the ABM Treaty + November 21, + 1985 + 306 + + + + + Navy Aircraft Carrier + March 12, + 1987 + 306 + + +

    (Subcommittee on Conventional Forces and Subcommittee on Projection Forces and + Regional Defense)

    +
    +
    + + + Conventional Balance-readiness + March 1987 + 306 + + + + + Seawolf submarine + March 1987 + 306 + + +

    (Subcommittee on Force Projection)

    +
    +
    + + + Aircraft carriers + April 17, + 1987 + 306 + + +

    (Subcommittee Conventional Forces and Subcommittee Projection Forces and + Regional Defense)

    +
    +
    + + + Military Balance in Europe-questions + October 20, + 1987 + 307 + + + + + Close Air Support and INF treaty provision questions + 1 Booklet + February-March 1988 + 307 + + + + + Accidental launch protection system-questions + 1 Booklet + March 22, + 1988 + 307 + + + + + Levin questions for the Record + + + + February-April 1987 + 307 + + + + + February-March 1988 + 307 + + + +
    + + + Committee retreat-Crisis in Defense Organization, (SASC) + 2 folders + September-October 1985 + 307 + + + + + Contracts and research + + + + 1985 + 307 + + + + + Commission on Professional and Hospital Activities (CPHA) + 1985-1987 + 307 + + + + + Energy Conversion Devices, Inc. (ECD) + + + + Business with the Military guides + 1988 + Books and + booklets + 307 + + + + + Correspondence + 1985-1987 + 307 + + + + + Levin visit to ECD + August 22, + 1985 + 307 + + + + + Miscellaneous information and contracting proposals + 3 folders + 1985-1987 + 307 + + + + + Solar technology and standing with DARPA + March 1987 + 307 + + + + + + General Dynamics-tanks funding cut + 3 folders + 1988-1989 + 307 + + + + + Huron Casting-M1 track shoes + October-December 1987 + 308 + + + + + Interface Systems, Inc. + November-December 1987 + 308 + + + + + Keweenaw Research Center and Michigan Technological + University + August-November 1989 + 308 + + + + + Michigan + February-July 1989 + 308 + + + + + Prestolite Electric Inc-TACOM + June 1987 + 308 + + + + + Solaka amphibious vehicle + 1988-1989 + 308 + + + + + Spirit of American and Zantop International Airlines + September-December 1987 + 308 + + + + + Top U.S. contractors + 1986 + 308 + + + + + + Correspondence and memos + + + + Department of Defense officials + 1987 + 308 + + + + + Pork letters (Michigan) + + + + 1987 + 308 + + + + + + Procurement + 1985-1986 + 308 + + + + + Staff memos to Carl, (G. Weaver) + February-June 1987 + 308 + + + + + Staff letters sent out, (G. Weaver) + March 1987 + 308 + + + + + Tooth-to-tail ratio memo + February-March 1987 + 308 + + + + + + Department of Defense qualification standards for civilian positions, + 1988 + 308 + + +

    (Nomination questions for General Carlucci; SASC)

    +
    +
    + + + Industrial Modernization Incentives Program, (DOD) + 2 folders + 1987-1988 + 308 + + + + + Iran-Iraq War + + + + Iran Flight 655 + + + + Briefing, hearing, and trip to AEGIS Combat System Center, + July + September 1988 + 308 + + + + + Briefing questions and news articles + July 1988 + 308 + + + + + + Kuwait escort and reflagging of ships + June 1987 + 308 + + + + + Kuwait tanker escort + June-August 1987 + 308 + + + + + U.S.S. Stark attack + May 1987 + 308 + + + + + + Japan + + + + Defense buildup and conventional forces + January-April 1989 + 308 + + + + + Facilities improvement program + June 1987 + 308 + + + + + + Levin accomplishments + 1985-1989 + 308 + + + + + Michigan + + + + Flint River project + 1988 + 308 + + + + + Focus: HOPE Center for Advanced Technologies + 5 folders + 1987-1989 + 309 + + + + + Michigan Energy Resource Research Association (MERRA) + February-July 1987 + 309 + + + + + Upper Peninsula visit-KI Sawyer and Air Force Association + April 1988 + 309 + + + + + + Military bases and installations + + + + Anderson Air Force Base-Rail bird incident, (Guam) + April 4, 1984 + 309 + + + + + Base closings + 1990 + 309 + + + + + Base reuse and conversion + 1991 + 309 + + + + + Bollinger Air Force Base security issues + 1988 + 309 + + + + + Burger wars + February 1986-July 1987 + 309 + + + + + Calumet Air Force Radar Station + + + + October 1987 + 309 + + + + + Closing + 1987-1988 + 309 + + + + + + Camp Grayling Management Advisory Committee report + 1989 + 309 + + +

    (Environmental recommendations)

    +
    +
    + + + Camp Grayling multi-purpose range complex + 2 folders + 1987-1988 + 309 + + + + + Defense Logistics Services Center Battle Creek computers, April and + (Procurement) + November 1987 + 309 + + + + + Detroit Artillery Amory-National Guard + November 20, + 1987 + 309 + + + + + Inventory, (Michigan) + 1987 + 309 + + + + + Selfridge Air National Guard Base-commercial and military + facility + February 1988 + 309 + + + + + TACOM + + + + LEGIS program applicant-Dennis Wend + October-November 1987 + 309 + + + + + Research and development + November 1986-March 1987 + 309 + + + + + + Wurtsmith Military Base closing + 1990-1991 + 309 + + + + + Ypsilanti National Guard Armory + 1987-1988 + 309 + + +
    + + + Military medical malpractice-S.489 + 1985 + 309 + + + + + Military personnel + + + + Feres doctrine legislation-repeal Section K of Federal Tort Claims + Act + 1987 + 309 + + + + + Miscellaneous + 1985 + 309 + + + + + Officer numbers + February-April 1987 + 309 + + + + + Professional athletes in the military, (J. Parker) + 1987 + 309 + + + + + Women in the military legislation, January + May 1987 + 309 + + + + + Yarmulkes during active service + 1987 + 309 + + + + + + Miscellaneous + + + + 1985-1986 + 309 + + +

    (folder 1)

    +
    +
    + + + 1985-1986 + 309 + + +

    (folder 2)

    +
    +
    +
    + + + National Guard + + + + Exon Amendment-Blanchard letter + May 12, 1987 + 310 + + + + + Michigan + 1987-1988 + 310 + + + + + + Navy + + + + Aircraft and aviation + March 1987 + 310 + + + + + Navy League speech + undated + 310 + + + + + Navy-Shipbuilding and minesweeping program budget request, + (SASC) + January 7, + 1987 + 310 + + + + + + Nominations and appointments + + + + Department of Defense official conflict of interest -- Mary Ann + Gilleece + August 1985 + 1031 + + + + + Deputy Secretary of Defense -- Donald Atwood, (SASC) + April 1989 + 1031 + + + + + Secretary of Defense-John Tower, (SASC) + January-March 1989 + 1031 + + + + + Secretary of Defense-John Tower, (SASC) + 2 folders + January-March 1989 + 1031 + + + + + Secretary of Defense-John Tower, (SASC) + February-March 1989 + + + + Draft letter to Counsel to the President, notes, and + questions + 1031 + + + + + Hearing binder, report, and Levin statements + 3 folders + 1032 + + + + + Notes and draft Democratic Committee Member report + 1032 + + + + + Notes and memos + 1032 + + + + + Notes and pre-hearing questions + 1032 + + + + + Notes and statements + January-March 1989 + 1032 + + + + + Report, notes, and letters + 1032 + + + + + + Secretary of the Navy-James H. Webb, Jr. + March-July 1987 + 1032 + + + + + + Nuclear technology, weapons, and treaties + + + + Anti-Ballistic Missile (ABM) treaty + + + + 2 folders + 1985-1986 + 310 + + + + + 3 folders + 1985-1987 + 310 + + + + + 3 folders + 1986 + 310 + + + + + Part 1 + 4 folders + May 11, + 1987 + 311 + + + + + Part 2 + May 11, + 1987 + 311 + + + + + Part 3 + September 9, + 1987 + 311 + + + + + Compliance hearing and statements + 1987-1988 + 311 + + + + + Hearings-ratification + 1972 + 311 + + + + + Levin-Nunn + 1987-1988 + 311 + + + + + National Campaign to Save the ABM Treaty briefing book + 1986 + 311 + + + + + Opinions + 2 folders + 1985-1986 + 311 + + + + + Reinterpretation + 1985-1987 + 311 + + + + + Reinterpretation + 2 folders + 1986-1987 + 311 + + + + + Reinterpretation by administration + 1986-1987 + 312 + + + + + + ABM and SDI interpretation binder + October 1985 + 312 + + + + + Arms control + + + + 1983-1986 + 312 + + + + + 1986-1987 + 312 + + + + + Background + 1985-1986 + 312 + + +

    (Includes a CRS report)

    +
    +
    + + + Defense issue file + 2 folders + 1985-1986 + 312 + + +
    + + + Arms control and Anti-submarine force at Jacksonville + May 1986 + 312 + + + + + Arms Control Study group lunch + January-March 1987 + 312 + + + + + Chemical weapons and testimonies + 2 folders + 1986-1987 + 312 + + + + + Common defense research-allied contribution reports + 4 folders + 1981-1989 + 312 + + + + + Common Security in Europe-Volume 1 Defense of Europe + May 1987 + 313 + + +

    (Book; Foundation for International Security)

    +
    +
    + + + Comprehensive Test Ban Treaty + 3 folders + 1986-1987 + 313 + + + + + Conventional arms balance + + + + Advisory Board amendment + 1987 + 313 + + + + + Beneath the Bean Count the fatal flaws in the IISS and Soviet + Military Power Estimate of the NATO and Warsaw Pact military balance by + Anthony H. Cordesman + 1988 + 313 + + + + + Beyond the Bean Count + + + + Conventional balance data + January-July 1988 + 313 + + + + + Drafts + 2 folders + 1987-1988 + 313 + + + + + Draft + January 20, + 1988 + 313 + + + + + Drafts and charts + 2 folders + 1987-1988 + 313 + + + + + Drafts and responses + 2 folders + 1987-1988 + 313 + + + + + Frist and Second edition + 1988 + 313 + + + + + Miscellaneous + December 1987-October 1988 + 314 + + + + + News articles Paul Davis writings + January-March 1988 + 314 + + + + + Presentation and draft + 1988 + 314 + + + + + Report and research + 1987-1988 + 314 + + + + + Report on arms control by Philip Karber + undated + 314 + + + + + Responses + 1988 + 314 + + + + + + Chemical weapon hearings and Enlisted Association of the National + Guard (EANGUS) priorities + February-March 1987 + 314 + + + + + Conventional Arms Control and balance + 1985-1986 + 314 + + + + + Conventional arms control, balance research, and INF + Treaty + 2 folders + 1987-1988 + 314 + + + + + Conventional arms control, NATO, and INF Treaty briefing + book + 1987 + 315 + + + + + NATO-Conventional Forces + + + + Alliance security report + 1987 + 315 + + + + + Burden sharing + 1987-1988 + 315 + + + + + Burden sharing and Warsaw Pact + 3 folders + 1987 + 315 + + + + + Change in NATO budget and deployment + 3 folders + 1986-1988 + 315 + + + + + Dear Colleague and talking points + April 1988 + 315 + + + + + Defense budget cuts news articles + September-December 1989 + 315 + + + + + Defense budget and weapons reduction + 1988-1989 + 315 + + + + + Funds reduction and disarmament + November-December 1986 + 315 + + + + + Hearing questions-General Rogers + 1988 + 315 + + + + + Hearing schedule and report, (SASC) + 1987-1988 + 315 + + + + + Integrated Brigades + 1988-1989 + 315 + + + + + Medical program + 1987 + 316 + + + + + New Technology for NATO: Implementing follow-on forces attach, + (Office of Technology Assessment) + 1 Book + 1987 + 316 + + + + + Readiness and Sustainability-Soviet Union + 2 folders + 1987 + 316 + + + + + Swiss project and Soviet Union communication + March-June 1986 + 316 + + + + + Weapons quantities in Europe + 1987-1988 + 316 + + + + + + + Department of Energy + + + + Defense facilities and nuclear arms sites + 1987-1989 + 316 + + +

    (Includes Glenn's Nuclear Protections and Safety Act-S.1085)

    +
    +
    + + + Nuclear production, (HASC) + April-July 1989 + 316 + + + + + Nuclear production and weapons, (SASC and GAC) + 1988-1989 + 316 + + + + + Oversight bills-Glenn and Wirth + 2 folders + 1989 + 316 + + +
    + + + Intermediate Range Nuclear Forces (INF) Treaty + + + + INF Treaty + 3 folders + 1987-1988 + 317 + + + + + Background + 3 folders + 1987-1988 + 316 + + + + + Binder, (SASC) + 2 folders + March 1988 + 318 + + + + + INF Treaty briefing book for the U.S. Senate + May 1998 + 318 + + +

    (Senator Proxmire's binder)

    +
    +
    + + + Conventional forces + 3 folders + 1987 + 318 + + + + + Hearing briefing book + 2 folders + 1987-1988 + 318 + + + + + Hearing questions and analysis + February 22-25, 1988 + 318 + + + + + Miscellaneous + 4 folders + 1987-1988 + 318 + + +

    (Includes February 25 SASC hearing testimonies)

    +
    +
    + + + Reports, (SASC) + 1987-1988 + 318 + + + + + Subcommittee on Conventional Forces + 2 folders + 1986-1987 + 318 + + +

    (Includes document regarding the origin of the Subcommittee and its + jurisdiction)

    +
    +
    +
    + + + New production reactors-tritium + March 1989 + 318 + + + + + Nuclear Proliferation + + + + Hearings and background, (GAC) + May 18, + 1989 + 318 + + + + + Legislation + 1989 + 318 + + + + + + Nuclear waste cleanup, (SASC) + February-May 1989 + 319 + + + + + Plutonium Control Act + 1989 + 319 + + + + + Scowcroft Commission report memo + April 19, + 1987 + 319 + + + + + Soviet compliance with arms treaties + 1986-1987 + 319 + + + + + Special Isotope Separation plant program, (HASC) + February-March 1989 + 319 + + + + + Strategic Arms Reduction Treaty (START) + + + + Implications and ratification + 1987-1988 + 319 + + + + + + Strategic Defense Initiative (SDI) + + + + 1987 + 319 + + + + + Administration statements + 1985-1988 + 319 + + + + + Background and hearing excerpts + 1987 + 319 + + + + + Battle management software + 1985 + 319 + + + + + Correspondence-German ambassador concerns + May 1987 + 319 + + + + + Correspondence and memos + May-September 1987 + 319 + + + + + Countermeasures-Red Team + May 1986 + 319 + + + + + Debate + 3 folders + 1991 + 319 + + + + + Draft report language-development and testing restriction + 1988 + 319 + + + + + Enclosure + March 1985 + 319 + + + + + Hearing, (SASC) + 1987 + 319 + + + + + Hearings and reports + 1985-1987 + 319 + + + + + Information and transfer + 1987 + 319 + + + + + Levin + 1986 + 319 + + + + + Levin Nunn amendment language + 1987 + 319 + + + + + Pre-reinterpretation testimonies + 1985 + 319 + + + + + Reports on progress + 1986-1988 + 319 + + + + + Stars Wars, (SASC) + 1985-1986 + 319 + + + + + U.S. military strategy and Subcommittee on Conventional Forces and + Alliance Defense + 1986-1987 + 319 + + + + + + Testing + April 1986 + 319 + + + + + Weapons-Midgetman + 4 folders + 1986-1987 + 320 + + +

    (Small Intercontinental Ballistic Missile)

    +
    +
    +
    + + + Panama and Panama Canal, (D. Lewis) + 1984-1989 + 320 + + + + + Reports + + + + North Atlantic Assembly and Subcommittee on Conventional Defense, + (SASC) + 1987 + 320 + + + + + Summaries of reports received by the Committee, (SASC) + 1987 + 320 + + + + + + Procurement and revolving door + + + + Autos to Japan + 1984 + 320 + + + + + Carlucci initiatives + 1981 + 320 + + +

    (DOD acquisition process improvement)

    +
    +
    + + + Contract types + 1981 + 1985 + 320 + + + + + Department of Defense (DOD) + + + + 1987 + 320 + + + + + Contracting totals + 1983 + 320 + + + + + Labor employee costs + 1983-1985 + 320 + + + + + Management reform + 1981 + 320 + + + + + + Dual awards -- sub-contracts + 1986 + 320 + + + + + Government contracts + January 1983 + 320 + + + + + Hearings -- Acquisition, (SASC) + March-April 1986 + 320 + + + + + Miscellaneous + + + + Folder 1 + 6 subfolders + 1986-1990 + 320 + + + + + Folder 2 + 8 subfolders + 1985-1986 + 320 + + + + + Folder 3 + 6 subfolders + 1985-1986 + 321 + + + + + Folder 4 + 1986 + 321 + + + + + + Overhead negotiation example + 1983 + 321 + + + + + Subcommittee on Acquisition agenda, (SASC) + June 1985 + 321 + + +
    + + + Soviet Union + + + + Geneva Summit + + + + News articles + November 1985 + 321 + + + + + + Military reforms + August 1988 + 321 + + + + + Soviet and US strategies + + + + Battle Creek Federal Center + 1987-1988 + 321 + + + + + News article and reports + 1986 + 321 + + + + + U.S. Air Force Airlift Master Plan and First report of the Commission + Merchant Marine and Defense + 1983 + 1987 + 321 + + + + + + + Task Force on Inventory Management report + June 10, 1987 + 321 + + + + + Value engineering + + + + Miscellaneous + 1986-1989 + 321 + + + + + Reports, memos and talking points + 1986-1987 + 321 + + + + + + Weapons and Vehicles + + + + Anti-tactical ballistic missile defense issues + 1987 + 321 + + + + + Armor and anti-armor balance + April-August 1988 + 321 + + +

    (Subcommittee Conventional Forces)

    +
    +
    + + + Armored fighting vehicles briefing + March 17, + 1987 + 321 + + + + + Army trucks + October 1987 + 321 + + + + + B1 bomber system deficiencies + 1987-1988 + 321 + + + + + F-4D and F-16 air defense + 1987 + 321 + + + + + M1s + + + + Block 2 + 3 folders + 1989 + 321 + + + + + Block 3-modernization + 1989 + 310 + + + + + Block 3-Saudi Arabia sale + 1989 + 310 + + + + + Procurement-General Dynamics M1 tank + 2 folders + 1987-1989 + 310 + + + + + M-1 tank photograph with Levin and U.S. Army Chief of + Staff + undated + 1050 + + +

    (Includes 2 photographs)

    +
    +
    + + + M1A1 tank sale-Egypt + 1987-1988 + 319 + + +
    + + + M88A2 recovery vehicle + September-October 1987 + 319 + + + + + National Institute of Total Quality Management and National Center for + Manufacturing Sciences + 3 folders + 1990 + 306 + + + + + Tank ammo letter + March 14, + 1988 + 306 + + + + + Tanks funding + 1987-1988 + 306 + + + + + Tank barriers West Germany + 1986-1988 + 306 + + + + + Titan missiles + September 1988 + 306 + + + + + Trident II D5 missile submarine + 1986-1987 + 306 + + +
    +
    + + + Economic Policy + 1979-1990 + + + + Action files + + + + 1989 + 99 + + + + + Banking + + + + 1986 + 99 + + + + + 1987 + 99 + + + + + 1988 + 99 + + + + + 1989 + 99 + + + + + + Budget + + + + 1985 + 99 + + + + + 2 folders + 1986 + 99 + + + + + 1987 + 99 + + + + + 1988 + 99 + + + + + 1989 + 99 + + + + + 1990 + 99 + + + + + + Consumer affairs + + + + 1985 + 99 + + + + + + Economy + + + + 1985 + 99 + + + + + 1986 + 99 + + +

    (Including unemployment, revenue sharing, and jobs task force)

    +
    +
    + + + 1988 + 99 + + + + + 1990 + 99 + + +
    + + + Financial matters + 1979-1990 + 99 + + + + + Fiscal matters + + + + 1982-1989 + 99 + + + + + Legislation efforts + 1983-1990 + 99 + + + + + Public debt increases and Gramm Rudman + 1979-1989 + 99 + + + + + + Taxes + + + + 1985 + 99 + + + + + 3 folders + 1986 + 99 + + + + + 1987 + 99 + + + + + 1988 + 99 + + + + + 1989 + 99 + + + + + 1990 + 99 + + + +
    + + + Anti-trust (D. Rosenblum) + 438 + + + + Beer Baron bill -- Malt Beverage Inter-brand Competition + Act + 2 folders + 1981-1987 + 438 + + + + + Federal Trade Commission (FTC) anti-trust (Michigan) + 1983-1987 + 438 + + + + + Sports Franchise bill, (Danforth-Eagleton -- S.59) + 1986 + 438 + + + + + + Banks + + + + Levin savings and loan record + 3 folders + 1990 + 438 + + + + + Savings and loan issues memos + July-August 1990 + 438 + + + + + + Detroit Pension Office closure, (C. Cutolo and L. Gustitus) + 1984-1985 + 438 + + + + + General revenue sharing responses + 1985 + + + + Opening, no dates, and March + 3 folders) + 438 + + + + + A-L, April + 4 folders) + 438 + + + + + M-Z, April + 4 folders) + 438 + + + + + May and August + 438 + + + + + + Nomination-Office of Thrift Supervision-Tim Ryan + April 1990 + 1032 + + + + + Resolution on non-revenue neutrality + 1986 + 438 + + +

    (Tax reform money to lower deficit; C. Cutolo)

    +
    +
    + + + Tax (C. Cutolo) + + + + CTANS -- Tax exempt bond issue, (Sandy Levin) + 1987 + 438 + + + + + General Dynamics type tax deferral + 1985 + 439 + + + + + Impact of new Packwood tax plan + 1986 + 439 + + + + + Individual Retirement Account (IRA) plus (Capital gains) + 1989-1990 + 439 + + + + + Macomb Humane Society IRS letter + 1985 + 439 + + + + + Minimum tax resolution + 1984-1985 + 439 + + + + + New W-4 forms + 3 folders + 1987 + 439 + + +

    (Includes Levin testimony)

    +
    +
    + + + Section 89 -- IRS + 2 folders + 1989 + 439 + + + + + Section 89 IRS hearings, (SBC) + 1989 + 439 + + + + + Section 2036 -- IRS (Estate freeze small business) + 1989 + 439 + + + + + Symms-Levin withholding bill, (IRS; installment taxes) + 1988 + 439 + + + + + Tax bill and individual income tax reform + 1986-1988 + 439 + + + + + Tax bill loophole material, (C. Cutolo ) + 2 folders + 1986 + 439 + + +
    +
    + + + Education + 1985-1995 + + + + 1988-1991 + folders 1-2 of 3 + 484 + + + + + 1988-1991 + folder 3 of 3 + 484 + + +

    (J. Parker)

    +
    +
    + + + 2 folders + 1988-1995 + 484 + + + + + Action files + + + + 1985 + 100 + + + + + 1986 + 100 + + +

    (folder 1)

    +
    +
    + + + 1986 + 100 + + +

    (folder 2)

    +
    +
    + + + 1988 + 100 + + + + + 1989 + 100 + + + + + 2 folders + 1990 + 100 + + +
    + + + Amendments, accomplishments, and appropriations + 2 folders + 1994 + 1990 + 484 + + + + + Appropriation letters-state colleges + 1987 + 485 + + + + + Asbestos in schools + 1986-1987 + 485 + + + + + Budget-Cost Principles for Educational Institutions circular + June 1986 + 485 + + + + + Community colleges + 1985 + 485 + + + + + CRS reports + 1986-1987 + 485 + + + + + Equal opportunity in higher education + 1987-1988 + 485 + + + + + Higher education budget + 1985-1986 + 485 + + + + + Inner-city discrimination and adult education + 1987 + 485 + + + + + Intergenerational Education Volunteer Network Act + 1985-1986 + 485 + + + + + Issues-College program funding, Michigan schools, Native American + schools, (J. Parker) + 1989 + 485 + + + + + Library funding and legislation + 1988 + 485 + + + + + Miscellaneous + 1987 + 485 + + + + + Student loan defaults + 1989 + 485 + + + + + Student speech-S.1484 + 1991 + 485 + + +

    (Freedom of Speech on Campus Act)

    +
    +
    + + + Teacher competency test + 1985-1986 + 485 + + + + + University of Michigan -- Center for International Peace and Security + Studies proposal + 1986-1988 + 485 + + + + + Upward Bound program-Howard University + June-July 1987 + 485 + + + + + Vocational Education-Job Training Partnership act annual + report + 1987 + 485 + + +
    + + + Energy and natural resources + 1978-1998 + + + + Action files + + + + Energy + + + + 1985 + 100 + + + + + Folder 1 + 1986 + 100 + + + + + Folder 2 + 1986 + 100 + + + + + 1988 + 100 + + + + + 1989 + 100 + + + + + Analysis + 1978 + 1984 + 100 + + + + + Home heating oil + 1990 + 100 + + + + + Nuclear energy + 1981-1990 + 100 + + + + + + Environment + + + + 1985 + 100 + + + + + 3 folders + 1986 + 100 + + + + + 2 folders + 1986 + 100 + + + + + 2 folders + 1988 + 100 + + + + + 3 folders + 1989 + 101 + + + + + Clean air + 1990 + 101 + + + + + Great Lakes + 1990 + 101 + + + + + League of Conservation Voters ratings + 1979-1990 + 101 + + + + + Low-active radioactive waste + 1990 + 101 + + + + + Miscellaneous + 1990 + 101 + + + + + Superfund + 1979-1990 + 101 + + + + + Voting records + 1979-1988 + 101 + + + + + + + Air pollution and paper mills letters and research + 1989-1996 + 499 + + + + + Air quality-Michigan + 1986-1993 + 499 + + + + + Air toxins and the Great Lakes + 2 folders + 1985-1993 + 499 + + + + + Allied Ethanol and Fuel Corporation, Ltd. + 1985-1988 + 499 + + + + + Auto + + + + Auto engines and energy + 1989-1990 + 499 + + + + + Clean air tailpipe, (S.1630) + 2 folders + January 1990 + 499 + + + + + Electric vehicle brochures + 2 folders + 1992-1993 + 499 + + + + + Government position on new CAFE legislation -- autos + background + 2 folders + 1989 + 499 + + + + + + Below cost timber + 1986-1993 + 499 + + + + + Bottle bill-S. 932 + 1989-1992 + 499 + + + + + Charlevoix water problem + 1990 + 499 + + + + + Clean Air Act + + + + Acid rain + 2 folders + 1986-1989 + 499 + + + + + Alternative fuels + 1989-1990 + 499 + + + + + Air toxics + 2 folders + 1989-1990 + 500 + + + + + Potential amendments + 2 folders + 1990 + 500 + + + + + Buses and trucks + 1989-1990 + 500 + + + + + Charts + 1990 + 500 + + + + + Chlorofluorocarbons (CFCs) + 1989-1990 + 500 + + + + + Clean Air Act and Levin news articles + 2 folders + 1990 + 500 + + + + + Correspondence-official and agencies + 1989-1990 + 500 + + + + + Evaporative emissions + 1989-1990 + 500 + + + + + Levin's file on the Clean Air Act + 1988-1990 + 500 + + + + + Levin statements on Clean Air Act + 1989-1990 + 500 + + + + + Memos + 2 folders + 1988-1990 + 500 + + + + + President Bush's Clean Air bill + 1989 + 500 + + + + + Radionuclides + 1990 + 500 + + + + + Retrofitting and clunkers + 1989-1990 + 500 + + + + + Tier II cost data + 1989 + 500 + + + + + Tier II emissions costs and benefits + 1989-1990 + 500 + + + + + + Clean air + 2 folders + 1989-1998 + 500 + + + + + Clean coal + 1989-1990 + 501 + + + + + Clean water + 1987-1993 + 501 + + + + + Closure of National Weather Service stations, (D. Rosenblum) + October-November 1988 + 501 + + + + + Coastal barriers legislation + 2 folders + 1990 + 501 + + + + + Coastal Barrier Resources System to the Great Lakes-units, maps and + comments + 1989 + + + + 1 of 2 + 38 subfolders + 501 + + + + + 2 of 2 + 35 subfolders + 501 + + + + + + Combined Sewer Overflow (CSO) + 1990-1992 + 501 + + + + + Consumer Energy + 1990-1992 + 501 + + +

    (Consumers Power/CMS Energy)

    +
    +
    + + + Crystal River + 1989-1993 + 501 + + + + + Dart Container Corporation and plastics + 1992 + 501 + + + + + Degradable plastics internal memos, letters, and research + 1988-1990 + 501 + + + + + Dioxin contamination risk assessment -- Midland (Michigan) + 2 folders + 1987-1988 + 502 + + + + + Dioxin reduction + 1983-1990 + 502 + + + + + Dow Chemical + 1992-1993 + 502 + + + + + Dredging + 1980-1991 + 502 + + + + + Drought (Michigan), e + 1988-1989 + 502 + + + + + Drought legislation-aid + 1988 + 502 + + + + + Earth Day + 1990 + 502 + + + + + Electromagnetic fields + 1986-1995 + 502 + + + + + Energy and environment thank you letters to Carl Levin + 1989-1990 + 502 + + + + + Energy Conservation Program + 1984-1994 + 502 + + + + + Energy management and efficiency in government + 1988-1992 + 502 + + + + + Energy policy + 1984-1992 + 502 + + + + + Environmental press clips + 1986-1988 + 503 + + + + + Environmental technology + 1991-1994 + 503 + + + + + Epidemiological studies, Great Lakes and International Joint + Commission + 1984-1989 + 503 + + + + + Ethanol production + 1987-1988 + 503 + + + + + Federal facilities and environmental law + 1989-1991 + 503 + + + + + Floods (Michigan) + 2 folders + 1986 + 503 + + + + + Forest issues primitive acreage + 1988 + 503 + + + + + Forest roads + 1990-1991 + 503 + + + + + Global warming + 2 folders + 1989-1992 + 503 + + + + + Great Lakes Environmental Action Program (Great LEAP) + 1989-1990 + 503 + + + + + Great Lakes-Field hearing Grand Rapids -- Toxic Threats to Great + Lakes + 1989 + 503 + + +

    (PSI; Carl's writings)

    +
    +
    + + + Great Lakes forest fire protection + 1985-1986 + 503 + + + + + Great Lakes hearings (Subcom OGM) + + + + Oversight of the EPA and the Great Lakes Water Quality + Agreement-Michigan briefing book + 2 folders + April 28, + 1989 + 503 + + + + + Oversight of the EPA and the Great Lakes Water Quality + Agreement-Wisconsin + May 23, 1989 + 503 + + + + + Oversight of Oil Spill Protections for the Great Lakes + September 6, + 1989 + 503 + + + + + Oversight of U.S. Progress under the Great Lakes Water Quality + Agreement (Deputy Administrator Habicht) + June 13, 1990 + 503 + + + + + + Great Lakes-lighthouses + 1987-1988 + 504 + + + + + Great Lakes National Program Office (GLNPO), Great Lakes Atmospheric + Deposition (GLAD), Great Lakes Atmospheric Inputs and Sources (GLAIS) + 1982-1992 + 504 + + + + + Great Lakes Spill Prevention, Control, and Countermeasures (SPCC) program + and Millennium Pipeline + 2 folders + 1990 + 504 + + + + + Great Lakes Task Force (GLTF) -- letters and memos + + + + 1987-1988 + 504 + + +

    (Includes meeting agenda)

    +
    +
    + + + 1989 + 504 + + + + + 1990 + 504 + + +
    + + + Great Lakes Water Quality Agreement (GLWQA) + + + + 1989-1990 + 504 + + + + + Hearings, (GAC) + 1989-1990 + 504 + + + + + + Hazardous waste + + + + Material + 1988-1990 + 504 + + + + + Operations and emergency response, (OHSA) + 1989 + 504 + + + + + + Hydropower + 1984-1993 + 504 + + + + + Incineration + 1989-1996 + 504 + + + + + Interstate waste memos, press, letters, bills, resolutions, + amendments + 2 folders; 7 subfolders + 1987-1998 + 505 + + + + + Lake levels + 1986-1988 + 504 + + + + + Leaking underground storage tanks + 1987-1989 + 505 + + + + + Low-level radioactive waste storage + 2 folders + 1989-1998 + 505 + + + + + Medical waste + 2 folders + 1988 + 506 + + + + + Methanol fuel + 1987-1989 + 506 + + + + + Michigan environmental files + + + + Folder 1 + 26 subfolders + 1989-1992 + 506 + + + + + Folder 2 + 14 subfolders + 1986-1992 + 506 + + + + + + Michigan Wilderness Act + 508 + + + + Background and maps + 2 folders + 1985-1986 + 508 + + + + + Carl Levin notes + 1985 + 508 + + + + + Correspondence-businesses and organizations + 1985 + 508 + + + + + General Wilderness + 2 folders + 1985 + 508 + + + + + Legislation + 5 folders + 1985-1987 + 508 + + + + + News and memos + 1985 + 508 + + + + + Positions + 1985 + 508 + + + + + + Miscellaneous energy files + 8 subfolders + 1988-1992 + 507 + + + + + Nuclear power + + + + Big Rock Point + 1990 + 507 + + + + + Fermi II power plant + 1985-1988 + 507 + + + + + + Outer Continental Shelf -- 8(g) problem + 1985 + 507 + + +

    (Includes Ocean and Coastal Resources Management Development Act -- S.800)

    +
    +
    + + + Regulatory reform and the environment internal memos, letters and + press + 1996-1998 + 507 + + + + + Reserve Mining Company dumping in Lake Superior + 1984 + 507 + + + + + Risk and health analysis for environmental policy letters and + research + 2 folders + 1990-1997 + 507 + + + + + Rural development + 1989-1990 + 507 + + + + + Rural electrification administration + 1990-1993 + 507 + + + + + Strategic Petroleum Reserve (SPR) + 1990 + 507 + + + + + Superconducting supercollider + + + + 1987-1988 + 507 + + + + + 1988-1993 + 507 + + + + + + Superfund reauthorization of + 1986 + 507 + + + + + Tongass Timber Reform Act + 1989-1990 + 507 + + + + + U.S. Coast Guard oil and hazardous materials, (Great Lakes) + 1989 + 507 + + + + + Uranium enrichment + 1987-1989 + 507 + + + + + Water Resources Development Act (WRDA) + 1990 + 507 + + + + + 1987 Wilderness Bill-Upper Peninsula forests and Byers Lake, + 1986-1987 + 1986-1987 + 507 + + + + + Wind + 1990-1992 + 507 + + +
    + + + Foreign Policy + 1979-1996 + + + + Action files + + + + 3 folders + 1986 + 101 + + + + + 1987 + 101 + + + + + 1988 + 101 + + + + + 1989 + 101 + + + + + 1990 + 101 + + + + + Africa-Angola and Namibia + 1987 + 102 + + + + + Arms Control + 2 folders + 1980-1989 + 102 + + + + + Asia + 1990 + 102 + + + + + Central America + + + + 1983-1990 + 102 + + + + + 1990 + 102 + + + + + + Human Rights + + + + 1979-1989 + 102 + + + + + 2 folders + 1985 + 102 + + + + + 2 folders + 1986 + 102 + + + + + 3 folders + 1987 + 102 + + + + + 2 folders + 1988 + 102 + + + + + 2 folders + 1989 + 102 + + + + + 1990 + 102 + + + + + + Iraq and Kuwait + 1990 + 103 + + + + + Middle East + + + + 2 folders + 1979-1990 + 103 + + + + + 1987 + 103 + + + + + 1988 + 103 + + + + + 1989 + 103 + + + + + 1990 + 103 + + + + + + Miscellaneous + + + + 1979-1988 + 103 + + + + + 1983-1990 + 103 + + + + + + Nicaragua and Contras + 1984-1990 + 103 + + + + + Panama + 1979-1989 + 103 + + + + + Panama and Noriega + 1979-1980 + 1989-1990 + 103 + + + + + South Africa + + + + 1985 + 103 + + + + + 1986 + 103 + + + + + 1987 + 103 + + + + + 2 folders + 1988 + 103 + + + + + 1988 + 103 + + + + + 1989 + 103 + + + + + 1990 + 103 + + + + + 1990 + 103 + + + + + Apartheid + February 1990 + 103 + + + + + Levin record + 1984-1991 + 103 + + + + + + Soviet Union + 1990 + 1979-1983 + 103 + + + + + + Afghanistan, Czechoslovakia, and Hungary-human rights + 1986-1987 + 595 + + + + + Africa + + + + Angola, Ethiopia, Somalia, South Africa, and Tanzania + 1982-1983 + 595 + + + + + Miscellaneous and South Africa + 2 folders + 1984-1991 + 595 + + + + + Mozambique massacre and Levin's South Africa speech, (J. + Parker) + 1987 + 595 + + + + + Politics and human rights + 1985-1987 + 595 + + + + + Southern + 1987 + 595 + + + + + + Appropriations-Foreign operations bill FY1991 + + + + Egypt amendment (Samy Wassef) + 4 folders + 595 + + + + + Egypt debt + 595 + + + + + + Armenia + 1988-1991 + 595 + + + + + Armenian leaders photographs + 1988 + 595 + + +

    (Alex Manoogian, Arthur Mardigian, and maybe Very Rev. Fr. Bishop Paren + Avedikian)

    +
    +
    + + + Australia and New Zealand-Nuclear weapons and trade issues + 1985-1987 + 595 + + + + + Austria-President Kurt Waldheim war crimes + 1986-1987 + 595 + + + + + Bosnia-Yugoslavia case of Pjeter Ivesaj and Most Favored Nation (MFN) + status + 1986 + 595 + + + + + Caribbean Basin Initiative (CBI) + 1989 + 595 + + + + + Chile-human rights + 1985-1988 + 595 + + + + + China-human rights and Tibet + 1987-1988 + 595 + + + + + Cyprus + + + + 1989-1991 + 595 + + + + + Foreign aid + 1983-1988 + 595 + + + + + + Czechoslovakia-trade + 1990 + 595 + + + + + East Timor + + + + Human rights + 2 folders + 1985-1988 + 595 + + + + + Portuguese government positions + 1988-1989 + 595 + + + + + + Eastern Europe + 1987-1988 + 595 + + + + + Egypt + + + + Coptic Christians + 1979-1985 + 595 + + + + + Debt + September-October 1990 + 597 + + + + + + El Salvador + + + + 1981 + 1990-1991 + 597 + + + + + July 1989 + 597 + + + + + 1989 + 597 + + + + + 1989-1990 + 596 + + + + + 1989-1991 + 596 + + + + + February 1990 + 596 + + + + + Fall + 1990 + 596 + + + + + 1990-1991 + 596 + + + + + U.S. military aid + 1989-1991 + 596 + + + + + + El Salvador/Nicaragua Refugee Protection bill-Moakley and + Doconicini + 1987 + 596 + + + + + Ethiopia + + + + March 1990 + 596 + + + + + Background and human rights + 1986-1987 + 596 + + + + + Jews + 1985-1988 + 596 + + + + + + Foreign aid legislation + 1985-1987 + 596 + + + + + Guatemala-human rights + 1985-1987 + 596 + + + + + Haiti + + + + Constitution + 1987 + 596 + + + + + Human rights support legislation + 1987-1988 + 596 + + + + + + Helsinki Commission, (Human rights) + 1985-1988 + 596 + + + + + Honduras + + + + 1988 + 596 + + + + + Father James Carney disappearance-human rights + 1983-1985 + 1049 + + + + + + Iceland + + + + Carl's writings on Reagan and Gorbachev Summit + 1986 + 596 + + + + + + Iran + + + + Arms and the Middle East, (Oliver North) + 1986-1987 + 596 + + + + + Hostages + 1986 + 596 + + + + + Sale of TOW missiles + December 1986-June 1987 + 596 + + + + + + Iraq + + + + Invasion of Kuwait + August 1990 + 596 + + + + + Iraq war statements + 1990-1991 + 596 + + + + + + Ireland + + + + Friends of Ireland St. Patrick's Day statement + 1988 + 597 + + + + + Human rights + 1984-1986 + 597 + + + + + Gerry Adams visa + 1984-1986 + 597 + + + + + IRA-Joe Doherty extradition + 2 folders + 1989-1991 + 597 + + + + + US-UK extradition treaty + 2 folders + 1985-1986 + 597 + + + + + + Israel + + + + 1985-1988 + 597 + + + + + 2 folders + 1988-1996 + 597 + + + + + 40th Anniversary-Levin statement + April 1988 + 597 + + + + + Levin's file + 1988 + 597 + + + + + Palestinian Liberation Organization (PLO) + 1988 + 597 + + + + + + Jackson-Vanik + 1989 + 597 + + + + + Japan-wildlife habitat destruction for Navy airfield + 1985-1986 + 597 + + + + + Jordan + + + + Arms sale + 1985-1987 + 597 + + + + + West bank development plan + 1987 + 598 + + + + + + Korea-human rights + 1986-1988 + 598 + + + + + Kuwait arms sales-U.S. F-18s + 1988 + 598 + + + + + Latin American press freedom + June 27, 1984 + 598 + + + + + Lebanon + 1987-1989 + 598 + + + + + Malaysia and Singapore + 1988 + 598 + + + + + Middle East and Israel + + + + Jewish issues + 2 folders + 1986-1990 + 598 + + + + + Middle East stalemate + 1988 + 598 + + + + + Miscellaneous + 3 folders + 1990 + 598 + + + + + Palestine Liberation Organization (PLO) + 1990 + 598 + + + + + Syrian Jews and Iraq invading Kuwait + 1990 + 598 + + + + + + Miscellaneous-Southern Africa, Rome, and Mexico + 2 folders + 1988 + 598 + + + + + Morocco-human rights + 1986-1987 + 598 + + + + + Most Favored Nations (MFN) + 1985-1988 + 598 + + + + + National Endowment for Democracy + + + + Grants + 1985 + 598 + + + + + Levin statement on funding + 1986 + 598 + + + + + + Nicaragua + 599 + + + + 4 folders + 1984-1987 + 599 + + + + + Psychological Operations in Guerrila Warfare + 1984 + 598 + + + + + Contras + + + + Summer + 1988 + 598 + + + + + Amendment, (Representative Boland) + February 1984 + 599 + + + + + Amendment-humanitarian aid definition, (Levin and Senator + Inouye) + 1984 + 599 + + + + + Amendments, votes, and statements + 1985-1989 + 599 + + + + + Background information + + + + Briefing book on Central America + 1987 + 599 + + + + + Central America legislative history + 1985 + 599 + + + + + Central American policy law violations + 599 + + + + + Intelligence Committee preliminary report + 1987 + 599 + + + + + Le Penca investigation + 599 + + + + + Sandinistas + 1984-1986 + 599 + + + + + U.S. Central American relations-Contradora + 599 + + + + + + Congressional Records, April, June + September 1989 + 599 + + + + + Contra agreement + March-April 1989 + 599 + + + + + Contradora Act-draft and reports + 1983-1986 + 599 + + + + + Funding decisions + 1986-1987 + 599 + + + + + Funding legislation + 2 folders + 1984 + 599 + + + + + Memos + 1984 + 600 + + + + + Reagan on Contras + 1984-1986 + 600 + + + + + Statement-Levin + August 12, + 1986 + 600 + + + + + Statements-Levin + 1983-1986 + 600 + + + + + U.S. military activity + 1984-1985 + 600 + + + + + + Customs issue-Americans returning from Nicaragua article by Anthony + Lewis + 1986 + 600 + + + + + Hearing of Unified Commanders-Gorman testimony + February 27, + 1985 + 600 + + + + + International Court of Justice-U.S. and Nicaragua-compulsory + jurisdiction issue + 1984-1985 + 600 + + + + + International Court-Nicaragua V United States of America-withdrawal + from trial proceedings + 1985-1986 + 600 + + + + + Kissinger Commission-report and analysis + 1984-1985 + 600 + + + + + Peace plan + August 1987 + 600 + + + + + Sandinistas anti-Semitism + 1986-1987 + 600 + + + + + U.S. policy toward Nicaragua + 1981-1987 + 600 + + + + + + Nicaragua and El Salvador-legislation for study on conditions of + refugees-S.458 + 1989 + 600 + + + + + Nominations and appointments + + + + Ambassador to Norway-Loret Ruppe + August 1984 + 1032 + + + + + Ambassador to Spain-Joseph Zappala + 1989 + 1032 + + + + + + Palestine-American Federation of Ramallah and George Saba + 1982 + 600 + + + + + Persian Gulf-military presence + 1987-1988 + 600 + + + + + Philippines-human rights and trade + 1984-1987 + 600 + + + + + Poland + + + + Constituent meetings + 1991 + 600 + + + + + Foundation for the Development of Polish Agriculture + 1988 + 600 + + + + + Human rights-political prisoners + 1986-1988 + 600 + + + + + Krzyzowski, Marian + July 1991 + 600 + + + + + Levin press releases + 1981 + 600 + + + + + Levin statement in Congressional Record-polish translation + February 1994 + 600 + + + + + Miscellaneous + 1988 + 600 + + + + + News articles + 1985 + 1988 + 600 + + + + + North American Study Center for Polish Affairs-Studium + 1987 + 600 + + + + + Overseas Private Investment Corporation (OPIC) and + Poland-S.2802 + + + + American Federation of Labor (AFL)-Congress of Industrial + Organizations (CIO) + 1988 + 600 + + + + + Amendment bill + 1988-1989 + 600 + + + + + OPIC and hearing for S.2006 + 1988 + 600 + + + + + Existing legislation and debate + 1988 + 600 + + + + + Levin amendment reactions + 1988 + 600 + + + + + Polish American Congress on Levin legislation + 1988 + 600 + + + + + Rockefeller Project + undated + 600 + + + + + Roundtable agreement + 1989 + 600 + + + + + Roundtable agreement news articles-S.823 + 1989 + 600 + + + + + Walesa and Solidarnosc News + 1988 + 600 + + + + + + Polish Permanent Resident Adjustment Act-martial law and human + rights + 1987 + 600 + + + + + Rubin Berman Solidarity bank + 1990 + 600 + + + + + Walesa nomination for International Integrity award and editions of + Solidarity News + 1986-1987 + 600 + + + + + + Portugal-human rights + 1985-1987 + 600 + + + + + Romania and Hungary-human rights + 1986-1988 + 600 + + + + + Saudi Arabia arms sale-Chinese missiles + 1986-1988 + 601 + + + + + South Africa + + + + 1986-1991(J. Parker) + 2 folders + 601 + + + + + 1986-1992 + 601 + + + + + 1987-1988 + 601 + + +

    (J. Parker)

    +
    +
    + + + 1987-1991 + 601 + + + + + 1987-1992 + 601 + + + + + Anti-Apartheid Awareness Week + March-May 1987 + 601 + + + + + Apartheid and human rights + 2 folders + 1984-1987 + 601 + + + + + Correspondence and memos + 1984-1985 + 601 + + + + + Equality-Mamelodi incident + 1985 + 601 + + + + + Israel + 1984-1987 + 601 + + + + + Mandela + + + + 1986-1992 + 601 + + + + + 1988 + 601 + + + + + + Legislation-Levin and Proxmire + 1984 + 601 + + + + + Pre-empt state and local action + 1983-1985 + 601 + + + + + Sanctions and restrictive laws + 2 folders + 1986 + 601 + + +
    + + + Soviet Union (USSR) + + + + Congressional Soviet Christian Adoption Program + 1985-1988 + 601 + + + + + Emigration-Abe Stolar + 1980-1987 + 601 + + + + + Jewish groups on Soviet Union issues + 1985-1986 + 601 + + + + + Jews + + + + Emigration + 1987 + 601 + + + + + Issues + 1988 + 602 + + + + + Jackson-Vanik amendment + 1983-1987 + 602 + + + + + Refugee status issue + 1988 + 602 + + + + + United Nations Summit + 1988 + 602 + + + + + + Korean Airlines (KAL) Flight 007 + + + + Congressional correspondence + 1988-1991 + 602 + + + + + Court case + 2 folders + 1988-1991 + 602 + + + + + Memos + 1989-1991 + 602 + + + + + + Most favored nation (MFN) status and Jewish emigration + 1985-1988 + 602 + + + + + Presence in Afghanistan + 1986-1988 + 602 + + + + + Refusenik photographs + 1987 + 602 + + + + + Sakharov, Andrei, (Human rights) + 1980-1986 + 602 + + + + + U.S. relations + 1985-1988 + 602 + + + + + + Syria-human rights + 1986 + 602 + + + + + Taiwan + + + + Dr. Hong Chi-Chang arrest + 1988 + 602 + + + + + Human rights + 1986-1989 + 602 + + + + + + Terrorist training, (Michigan) + April-June 1986 + 602 + + + + + Third world debt crisis and international banking + 1986-1988 + 602 + + + + + Tibet-human rights + 1987-1988 + 603 + + + + + Trips and Congressional Delegations (CODELs) + + + + Financial disclosures + + + + April 14-16, 1985 + 602 + + + + + August 26-30, 1985 + 602 + + + + + February 6-17, 1986 + 602 + + + + + April 2-6, 1986 + 602 + + + + + December 6-17, 1986 + 602 + + + + + January 14-18, 1987 + 602 + + + + + August 12-16, 1987 + 602 + + + + + August 19-25, 1987 + 602 + + + + + January 12-16, 1988 + 602 + + + + + February 5-14, 1988 + 602 + + + + + March 7-12, 1988 + 602 + + + + + January 7-14, 1989 + 602 + + + + + June 27-30, 1989 + 602 + + + + + 1989 + 602 + + + + + + April 1985-Honduras, Panama, Nicaragua (CODEL Leahy) + + + + Briefing binder + 2 folders + 603 + + + + + Nicaragua (folder 1) + 603 + + + + + Nicaragua (folder 2) + 603 + + + + + + 1986-Mexico-personal trip + 2 folders + 603 + + + + + Australia, New Zealand, and Philippines + February 6-17, 1986 + + + + Australia + 603 + + +

    (Carl's writings)

    +
    +
    + + + New Zealand + 603 + + +

    (Carl's writings)

    +
    +
    + + + Philippines + 603 + + +

    (Carl's writings)

    +
    +
    + + + Philippine election trip + 2 folders + 603 + + +
    + + + Bermuda-Aspen Institute + April 2-6, 1986 + 603 + + +

    (Carl's writings)

    +
    +
    + + + Bermuda-Aspen Institute + 2 folders + April 2-6, 1986 + 604 + + +

    (U.S. and Soviet relations; Carl's writings)

    +
    +
    + + + Nicaragua, El Salvador, and Honduras-Democratic Policy Staff (CODEL + D'Amato) + July 5-16, 1986 + 604 + + + + + Middle East and London + December 5-18, 1986 + 604 + + +

    (Carl's writings)

    +
    +
    + + + Middle East trip photo book + December 1986 + 604 + + + + + 1986-USSR-Dr. Hamburg and Carnegie Corp attempted trip + 604 + + +

    (Carl's writings)

    +
    +
    + + + Jamaica-Aspen Institute + January 14-18, 1987 + 604 + + +

    (Carl's writings)

    +
    +
    + + + Switzerland-Aspen Institute + August 12-16, 1987 + 604 + + +

    (Carl's writings)

    +
    +
    + + + Jamaica + January 12-16, 1988 + 604 + + +

    (Carl's writings)

    +
    +
    + + + Wherkunde Conference-Munich, Geneva, Vienna, Brussels, + Warsaw + February 5-14, 1988 + 604 + + +

    (Carl's writings)

    +
    +
    + + + Po + February 11-14, 1988 + 604 + + + + + USSR + March 7-12, 1988 + + + + Briefing materials + 604 + + + + + Carl's writings (1 of 2) + 605 + + + + + Carl's writings (2 of 2) + 605 + + + + + + Korea, Japan, and Pacific Command Hawaii + January 6-13, 1989 + 605 + + +

    (Carl's writings)

    +
    +
    + + + Geneva and Vienna-Arms Control Observer Group + June 27-30, 1989 + 605 + + +

    (Carl's writings)

    +
    +
    + + + Germany, Czechoslovakia, Bulgaria-personal trip + December 20-30, 1989 + 605 + + +

    (Carl's writings)

    +
    +
    + + + Saudi Arabia, Bahrain, Egypt + August 31-September 3, 1990 + 605 + + +

    (Carl's writings)

    +
    +
    + + + New Mexico, Arizona, Utah-personal trip + December 17-27, 1990 + 605 + + +

    (Carl's writings)

    +
    +
    + + + March 1988-Vladivostok, USSR souvenirs + 605 + + +
    + + + Ukraine-human rights-Sailor Miroslav Medvid asylum + 2 folders + 1985 + 606 + + + + + United Nations funding + 1986-1987 + 605 + + + + + World hunger + 1985-1988 + 605 + + +
    + + + Government and Governmental Affairs Committee (GAC) + 1968-1996 + + + + Action files + + + + Commendations + + + + 1985 + 103 + + + + + 1986 + 104 + + + + + 1987 + 104 + + + + + 1988 + 104 + + + + + 1989 + 104 + + + + + + Confirmations + + + + 1985 + 104 + + + + + 2 folders + 1986 + 104 + + + + + 1989 + 104 + + + + + + Congress + + + + 1985 + 104 + + + + + Senate Resolutions + 2 folders + 1985 + 104 + + + + + 3 folders + 1986 + 104 + + + + + 2 folders + 1986 + 104 + + + + + 1988 + 104 + + + + + 1989 + 104 + + + + + + District of Columbia + + + + 1985 + 104 + + + + + 1986 + 104 + + + + + + Ethics + + + + Analysis + 1979-1990 + 104 + + + + + Cases + 1985-1988 + 104 + + + + + Legislation + 1983-1990 + 104 + + + + + Independent Counsel law + 1987-1990 + 104 + + + + + Miscellaneous + 1983-1990 + 104 + + + + + Riegle and Keating + 1983-1990 + 104 + + + + + Voting records + 1979 + 1988-1990 + 104 + + + + + + Federal employees + + + + 1985 + 105 + + + + + 1986 + 105 + + +

    (Including financial disclusres)

    +
    +
    + + + 1986 + 105 + + + + + 1988 + 105 + + +
    + + + Fundraising + + + + 1986 + 105 + + + + + 1987 + 105 + + + + + 1988 + 105 + + + + + 1989 + 105 + + + + + + Judiciary + + + + 1987 + 105 + + + + + 1988 + 105 + + + + + 1989 + 105 + + + + + 1990 + 105 + + + + + + Nominations + + + + 1989 + 105 + + + + + 1990 + 105 + + + + + + Parks and Recreation + 1990 + 105 + + + + + Political Action Committees (PAC) + + + + 1986 + 105 + + + + + 1988 + 105 + + + + + + Politics + + + + 1985 + 105 + + + + + 1986 + 105 + + + + + 1987 + 105 + + +

    (Including election reform)

    +
    +
    + + + 1989 + 105 + + + + + 1990 + 105 + + +
    + + + Postal + + + + 1985 + 105 + + + + + 1986 + 105 + + + + + 1987 + 105 + + + + + 1990 + 105 + + + + + + Public service + + + + 1985 + 105 + + + + + 1986 + 105 + + + + + 1988 + 105 + + + + + 1989 + 105 + + + + + + Public works + + + + 1985 + 105 + + + + + 1986 + 105 + + + + + 1987 + 105 + + + + + 1988 + 105 + + + + + 1989 + 105 + + + + + 1990 + 105 + + + + + + Regulatory reform + 1990 + 105 + + + + + Reform + + + + 3 folders + 1986 + 105 + + + + + 1987 + 105 + + + + + 1988 + 105 + + + + + 1989 + 105 + + + + + 1990 + 105 + + + + + + Social Security + + + + 1985 + 105 + + + + + 1986 + 105 + + + + + 1988 + 105 + + + + + 1989 + 105 + + + + + 1990 + 105 + + + + + + Special days + + + + 1985 + 105 + + + + + 2 folders + 1986 + 106 + + + + + 2 folders + 1987 + 106 + + + + + 1988 + 106 + + + + + 1989 + 106 + + + +
    + + + Appropriations and funding + + + + FY1987 supplemental -- H.R.1827 (C. Cutolo) + 641 + + + + + FY1988 Conference initiated appropriation items CRS report (C. + Cutolo) + 641 + + + + + D.C. metro authorization + 1990 + 641 + + +

    (National Capital Transportation amendments of 1989 special funding to extend + D.C. Metrorail -- S.612)

    +
    +
    +
    + + + Budget + + + + FY1987 budget (C. Cutolo) + 641 + + + + + Budget and miscellaneous news articles + 1987-1988 + 641 + + + + + Gramm-Rudman-Hollings + + + + Chiles Budget Reform Task Force + June-July 1987 + 641 + + + + + Defense + 1985 + 641 + + + + + Fix compromises, (GAC) + 3 folders + 1986-1987 + 641 + + + + + Law and compliance + 2 folders + 1985-1986 + 641 + + + + + Levin + October-November 1985 + 641 + + + + + Levin-Debt limit extension conference + 3 folders + October 1985 + 642 + + + + + Levin newsletter + December 1985 + 642 + + + + + Levin notes on Democratic Leadership amendment and + deficit + October 1985 + 642 + + + + + Programs-project and activities + 2 folders + October-December 1985 + 642 + + +

    (Levin amendment)

    +
    +
    + + + Sequestration FY86 + 642 + + +
    + + + Letters about budget deficit, (C. Cutolo) + 1986 + 642 + + + + + Levin folder on budget FY88 + 642 + + +
    + + + Census + + + + Census employee issues pay equity and unemployment + compensation + 1990 + 642 + + + + + Count overseas + 1990 + 642 + + + + + Mosbacher's decision not to adjust the census number + 1991 + 642 + + + + + Nomination for Census Bureau Director -- Dr. Barbara Everitt Bryant, + (GAC) + April-July 1990 + 642 + + + + + Proposed changes to the questionnaire + 1987-1990 + 642 + + + + + Staff memos and Carl notes, (GAC) + 1990-1991 + 642 + + + + + The undercount bill and omitting illegal aliens + 1991 + 642 + + + + + Useful undercount background information + 1989-1990 + 642 + + + + + + Customs management problems and disposition of forfeited property, (J. + Parker) + 1988-1991 + 642 + + + + + District of Columbia (D.C.) + + + + D.C. City Council and statehood, (J. Parker) + 1987-1991 + 642 + + + + + D.C. statehood + 1989-1992 + 642 + + + + + + Election-Dukakis for President, (Jewish) + 1988 + 642 + + + + + Ethics + + + + Ethics Task Force, (gifts; L. Gustitus) + 3 subfolders + 1989 + 642 + + + + + Ethics Task Force, (Gifts, travel, etc.) + 5 subfolders + 1989-1990 + 643 + + + + + John McKean ethics violations while on Postal Board of + Governors + 1984-1987 + 643 + + + + + + Extradition treaties, 1983, 1986 (D. Rosenblum) + 1983-1986 + 643 + + + + + Federal employees-Civil service pay reform, (K. Dekuiper and A. Giles; + GAC) + 4 subfolders + 1986-1990 + 643 + + + + + Freedom of Information Act (FOIA), (D. Rosenblum) + 1986-1987 + 643 + + + + + Governmental Affairs Committee materials (GAC) + + + + Committee hearings (GAC) + + + + 1990-Drugs in Michigan (PSI) + 6 subfolders + 643 + + + + + + Committee legislative record, (GAC and subcom OGM) + 4 folders + 1983-1991 + 643 + + + + + Subcommittee on Oversight and Government Management (Subcom + OGM) + + + + Correspondence-Business and government agencies + 1986-1994 + 643 + + + + + Ethics-Wedtech investigation + + + + Chinn + 1986-1994 + 643 + + + + + Meese + 1986-1988 + 643 + + +

    (Levin's file)

    +
    +
    +
    + + + Hearings (P. Levine) + + + + DOD management of inside information in the acquisition + process + February 24, + 1989 + 643 + + +

    (Oversight of DODs Management of Inside Information in Acquisition + Process)

    +
    +
    + + + May 16 and June 1, 1989-DOD purchase of Non Developmental Items + (NDI) + 643 + + +

    (Oversight of DoD's Inadequate use of off-the-shelf items)

    +
    +
    + + + Civilian agencies' purchase of non-developmental items + (NDI) + April 26, + 1990 + 644 + + +

    (S.1957 Bill to Increase the Purchase of Commercial Products by Civilian + Agencies)

    +
    +
    +
    + + + Legislative record and priorities + 3 folders + 1988-1996 + 644 + + + + + Memos + + + + 3 folders + 1983-1988 + 644 + + +

    (L. Gustitus and Levin)

    +
    +
    + + + 1983-1989 + 644 + + +

    (from L. Gustitus)

    +
    +
    + + + Kay Dekuiper, (K. Dekuiper) + 1988-1991 + 644 + + + + + Miscellaneous + 2 folders + 1988-1990 + 644 + + + + + Shreier, (DOD reorgranization) + 1985-1986 + 644 + + + + + Uhlfelder + 1987-1988 + 644 + + +
    + + + Staff files (P. Levine) + + + + CAFE materials-statement, background issues, and memos on + S.1224 + September 1990 + 644 + + +

    (S.1224 the Motor Vehicle Fuel Efficiency Act of 1990)

    +
    +
    + + + Clean Air projects and electric cars vs CAFE standards-memos, point + papers, research + 1989-1990 + 644 + + + + + CAFE miles per gallon standards debate, news clips from + 1990-1991 + 644 + + + + + Ralph White -- government procurement and contracting, (R. White + ) + 6 subfolders + 1983-1985 + 644 + + +
    +
    +
    + + + Integrity in Post Employment Act -- S.237 (L. Gustitus) + + + + File 1 + 1987-1989 + 645 + + + + + File 2 + 1986-1988 + 645 + + + + + File 3 + 1987-1988 + 645 + + + + + + Judicial + + + + Bankruptcy judges legislation, (D. Rosenblum) + 1986-1988 + 645 + + + + + Federal courts -- judicial selection + 1986-1988 + 645 + + +

    (Nixon administration; D. Rosenblum)

    +
    +
    + + + Impeachment of Harry Claiborne + 2 folders + 1986 + 645 + + + + + Judicial selection + 3 folders + 1985-1986 + 645 + + + + + Supreme Court Jenkins case-court ordered taxes + 1990 + 646 + + +
    + + + Miscellaneous and fair employment in Congress, (J. Parker) + 1988 + 646 + + + + + National Commission on Judicial Discipline and Removal + 1989-1993 + 646 + + + + + Nominations and appointments + + + + Archivist of the United States -- John Agresto, (GAC) + September 1986 + 1032 + + + + + Office of Management and Budget (OMB)-Director + + + + Richard G. Darman, (GAC) + 2 folders + January 1989 + 1032 + + + + + James C. Miller III, (GAC) + September 1985 + 1032 + + + + + + Office of Management and Budget (OMB) Deputy Director-William M. + Diefenderfer III, (GAC) + May 1989 + 1032 + + + + + Deputy Secretary of State -- Lawrence Eagleburger + March 1989 + 1032 + + + + + U.S. Court of Appeals-6th District-Richard Suhrheinrich + 1990 + 1032 + + + + + U.S. Court of Appeals-7th Circuit-Daniel Manion + 2 folders + May-July 1986 + 1033 + + + + + U.S. Court of Appeals-District of Columbia-Douglas H. + Ginsburg + 1987 + 1033 + + + + + U.S. District Court-Eastern Michigan + + + + Cleland, Robert + February-May 1990 + 1033 + + + + + Edmunds, Nancy + 1991 + 1033 + + + + + Gadola, Paul V., II + 2 folders + 1987-1988 + 1033 + + + + + Rosen, Gerald and James Stewart + November 1989 + 1033 + + + + + + U.S. District Court-Western Michigan + + + + Bell, Robert + 1986-1987 + 1033 + + + + + Bell, Robert Holmes + 1987 + 1033 + + + + + McKeague, David + September-November 1991 + 1033 + + + + + Quist, Gordon + 1992 + 1033 + + + + + + United States Postal Service Board of Governors-Frederic V. Malek, , + (GAC) + August 1988 + March 1982 + 1033 + + + + + U.S. Supreme Court + + + + Bork, Robert + + + + 1987 + 1-5 of 6 + folders + 1033 + + + + + 6 of 6 folders + 1987 + 1034 + + + + + Background + 2 folders + 1987 + 1034 + + + + + Hearings before the Senate Committee on the Judiciary + 3 books + September 1987 + 1034 + + + + + Report of the Senate Committee on the Judiciary + October 1987 + 1034 + + +

    (Book)

    +
    +
    +
    + + + Kennedy, Anthony + 1987 + 1034 + + + + + Rehnquist, William (Chief Justice) + + + + 3 folders + 1986 + 1034 + + + + + Articles and speeches + 1970-1986 + 1034 + + + + + Background and Levin notes + 1986 + 1034 + + + + + Miscellaneous + 1986 + 1034 + + + + + Questions submitted by Levin + 1986 + 1034 + + + + + Role of the Senate + 1986 + 1034 + + + + + School desegregation + 1968-1986 + 1034 + + + + + Separate but equal issues + 1971 + 1986 + 1035 + + + + + Tatum v. Laird recusal + 1971 + 1986 + 1035 + + + + + Vermont property + 1974 + 1986 + 1035 + + + + + Voter harassment + 1986 + 1035 + + + + + + Scalia, Antonin + 1986 + 1035 + + + + + Souter, David + 3 folders + 1990 + 1035 + + +
    +
    + + + Office of Management and Budget (OMB) Deputy Director Wright ethics + conflict + + + + 1985 + 646 + + + + + 1985-1986 + 646 + + + + + April-May-1986 + 646 + + + + + Hearing, (GAC) + 2 folders + November 5, + 1985 + 646 + + + + + + Pension vote-Oliver North + October-November 1989 + 646 + + + + + Postal service -- zip codes, (OGM; A. Giles) + 1986-1987 + 646 + + + + + Presidential line item veto, (C. Cutolo) + 1985 + 646 + + + + + Senate Black Legislative Staff Caucus (SBLSC) (J. Parker) + + + + 1984-1990 + 646 + + +

    (Includes a letter from Levin to Aretha Franklin)

    +
    +
    + + + 2 folders + 1986-1990 + 646 + + + + + 1987-1988 + 646 + + + + + Folder 1 + 1987-1989 + 646 + + + + + 1987-1992 + 646 + + + + + 1988-1991 + 646 + + + + + African Americans in the US Senate and Jackie Parker-Chair + 1990 + 646 + + + + + Aretha Franklin + 1989 + 646 + + + + + Drugs crack and cocaine forum + 1989 + 646 + + + + + File of Jackie Parker, (J. Parker) + 7 subfolders + 1983-1991 + 647 + + + + + Invited speaker-Detective John St. Valentine Brown Jr. on + drugs + 1988 + 647 + + + + + Legislative issues-South Africa and minority hiring + 1984-1992 + 647 + + + + + Minorities in government + 1988-1990 + 647 + + + + + Miscellaneous-Martin Luther King Jr holiday, Aretha Franklin, Jackie's + testimony before Governmental Affairs Committee about Congressional employee + black underrepresentation, and other, (GAC) + 1988-1989 + 647 + + +
    + + + Social Security + + + + Social security attorney fees legislation, (J. Parker) + 1987 + 647 + + + + + + Standing Rules, Orders, Laws, and Resolutions Affecting the Business of + the United States Senate + 1 book + 1989 + 647 + + +
    + + + Health and Human Services + 1980-2010 + + + + Action files + + + + Adoption + 1985 + 106 + + + + + Adoption-co-sponsored bills + 1987 + 106 + + + + + Health + + + + 2 folders + 1985 + 106 + + + + + 1986 + 106 + + + + + 1987 + 106 + + +

    (Including Medicare and Medicaid)

    +
    +
    + + + 1988 + 106 + + + + + 1989 + 106 + + + + + 1990 + 106 + + +
    + + + Senior citizens + + + + 1985 + 106 + + + + + 1987 + 106 + + +

    (Including nutrition, day care, and grandparent visits)

    +
    +
    + + + 1988 + 106 + + + + + 1989 + 106 + + + + + 1990 + 106 + + +
    + + + Social services + + + + 1985 + 106 + + + + + 1986 + 106 + + + + + 1987 + 106 + + +

    (Including food stamps)

    +
    +
    + + + 1989 + 106 + + + + + 1990 + 106 + + +
    +
    + + + Adoption + + + + 1987-1988 + 750 + + + + + 1987-1989 + 750 + + + + + Adoption and families, (J. Parker) + 1987-1988 + 750 + + + + + Congressional Record + August 1989 + 750 + + + + + Legislation + 1980-1988 + 750 + + + + + Letters and cosponsors + 1988 + 750 + + + + + Letters and testimonies + 1985-1994 + 750 + + + + + National Voluntary Reunion Registry + + + + 1987-1989 + 750 + + + + + 1987-1994 + 750 + + + + + 1988 + 750 + + + + + 1988-1991 + 750 + + + + + 1988-1993 + 750 + + + + + 3 folders + 1988-1994 + 750 + + + + + Demonstration program bill S. 2010 -- Humphrey, 1988 + 1988-2010 + 750 + + + + + S.2010 + 1988-1991 + 750 + + + + + + News articles and letters + 2 folders + 1987-2002 + 750 + + + + + + Aging-Older Americans Act amendments + 1988 + 750 + + + + + Appropriations bill-Labor, Health and Human Services, and Education and + Related Agencies + + + + House committee on Appropriations + July 30, 1987 + 750 + + +

    (Booklet)

    +
    +
    + + + Senate Committee on Appropriations + October 1, + 1987 + 750 + + +

    (Booklet)

    +
    +
    + + + H.R.3058 for Fiscal Year + 1988 October 14 + 1987 + 750 + + +

    (Booklet)

    +
    +
    +
    + + + Children and Youth + + + + 1988-1993 + 750 + + + + + Child hunger meetings + February-March 1988 + 750 + + + + + + Family Security Act-S.1511 (J. Parker) + 1988 + 750 + + + + + Food safety and labeling + + + + Food, Drug and Cosmetic Act-tropical fats, (J. Parker) + January 1988 + 750 + + + + + Hearing-Health and Nutrition Claims in Food Advertising and Labeling, + (GAC) + June 25, 1990 + 750 + + + + + Nutrition Labeling and Education act and Kellogg cereal + 1989-1993 + 751 + + + + + Psyllium and Kellogg cereal + 1989-1990 + 751 + + + + + + Healthcare + + + + 3 folders + 1987-1988 + 751 + + + + + February-April 1988 + 751 + + + + + Cost and technology + 1989-1993 + 751 + + + + + Medicare and welfare-articles and reports + 2 folders + 1984-1990 + 751 + + + + + Medicare reimbursement and Catastrophic Loss Prevention Act (J. + Parker) + 1987 + 751 + + + + + Medicare reimbursement-prospective payment title and Michigan + hospitals, (J. Parker) + 1981-1984 + 751 + + + + + Medicaid Home and Community Quality Services Act-testimony + August 1988 + 751 + + + + + Medicaid-Primary Mental Health Clinic Sponsor program, + (Michigan) + 1985 + 751 + + + + + Mental health care and Medicare reimbursement-Michigan + 1987-1989 + 751 + + + + + Reform and Medicare + 4 folders + 1987-1993 + 751 + + + + + Residential care and Chafee family living amendments, (J. + Parker) + 1986 + 751 + + + + + + Liz's Place + 1990 + 751 + + +

    (Women's shelter funding; C. Cutolo)

    +
    +
    + + + Reform-consolidation of health and human services + 1986 + 751 + + +

    (Marked as very important)

    +
    +
    + + + Welfare + + + + Children + 1988 + 751 + + + + + Homeless and housing + 1987 + 751 + + + + + Homeless-urgent relief, (J. Parker) + 1987-1988 + 751 + + + + + Housing and labor + 1987-1988 + 751 + + + +
    + + + Housing + 1985-1991 + + + + Action file + + + + 1985 + 106 + + + + + 1986 + 106 + + + + + 1987 + 106 + + + + + 1988 + 106 + + + + + 1989 + 106 + + + + + 1990 + 106 + + + + + + Asbestos and General Services Administration (GSA) policies + 2 folders + 1990-1991 + 782 + + +

    (Edward Rosenberg; Michigan)

    +
    +
    +
    + + + Human Rights + 1983-1990 + + + + Anti-Semitism + 1986-1988 + 786 + + + + + Armenian Genocide + + + + 3 folders + 1983-1985 + 786 + + +

    (Folder 3 contains photograph slides)

    +
    +
    + + + Briefing book on the American Genocide Resolution + 2 folders + 1988 + 786 + + + + + S.J.Res.212 and background legislation + 5 folders + 1990 + 787 + + +
    + + + Detroit Holocaust Memorial Center + 1984-1985 + 787 + + + + + Genocide Convention + 1985 + 787 + + + + + New York Holocaust Museum + 1987-1988 + 787 + + + + + Wiesel recommendation for Nobel Peace Prize + 1984-1986 + 787 + + +
    + + + Immigration + 1985-2000 + + + + Action files + + + + 1985 + 106 + + + + + 1986 + 106 + + + + + 1987 + 106 + + + + + 1988 + 106 + + + + + 1989 + 106 + + + + + 1990 + 106 + + + + + + Congressional record statements + 1985-1986 + 792 + + + + + Coordinated Interagency Partnership Regulating International Students + (CIPRIS) + 2000 + 792 + + + + + Deportation-Detroit Redwings player Bob Probert + 1990-1991 + 792 + + + + + Detroit immigration office closure + 1985 + 792 + + + + + H-1 visas + 1985-1987 + 792 + + + + + Immigration bill-S.1200 + 1985 + + + + Amendments + 1985 + 792 + + + + + Amendments and employer sanctions + 4 folders + 792 + + + + + Amendment-Levin + 792 + + + + + Concerns about employer discrimination + 792 + + + + + + Immigration Reform Bill + 1985-1986 + 792 + + + + + Immigration Reform and Control Act and employer sanctions + 1987-1991 + 792 + + + + + Office of Special Investigations-Karl Linnas, (USSR) + 1986-1987 + 792 + + + + + Private bill-Hyong Cha Kim Kay + 1986-1988 + 792 + + + + + + Industry + 1985-1988 + + + + Auto Industry-Action files + + + + 1985 + 106 + + + + + 1987 + 106 + + + + + + Michigan + + + + Machine tool industry + 1985-1988 + 796 + + + + + Manufacturing clause to Copyright Act + 1986-1987 + 796 + + + + + Pasta plants + 1986-1987 + 796 + + + + + + + Interior + 1985-1993 + + + + Action files-Native Americans + + + + 1985 + 107 + + + + + 1986 + 107 + + + + + 1987 + 107 + + + + + 1988 + 107 + + + + + 1989 + 107 + + + + + 1990 + 107 + + + + + + American Indian Business Development Consortium meeting with Jackie + Parker, (J. Parker) + 1987 + 800 + + + + + Grand Island federal status + 1985-1990 + 800 + + + + + Native Americans + + + + Appropriations, casinos, and schools + 1990-1993 + 800 + + + + + Business development, housing, and Lac Vieux Desert Band of Chippewa, + (J. Parker) + 1987 + 800 + + + + + Fishing, (J. Parker) + October-November 1987 + 800 + + + + + Fishing and fish hatchery + March 1988 + 800 + + + + + Saginaw Chippewa tribe-Indian Claims Commission, (J. + Parker) + 1989 + 800 + + + + + Ste. Marie Chippewa meeting, March 21 + 1990 + 800 + + + + + Tribal recognition-Lac Vieux Desert band-Chippewa + April-June 1987 + 800 + + + + + + + Labor + 1985-1993 + + + + Action files + + + + 1985 + 107 + + + + + 1986 + 107 + + + + + 1987 + 107 + + + + + 1988 + 107 + + + + + 1989 + 107 + + + + + 1990 + 107 + + + + + + Hearing-Oversight of U.S. Position in GATT Negotiations Affecting + American Manufacturing Jobs, September 26, 1990, 1986 (Subcom. OGM) + September 26, + 1990 + 1986 + 812 + + + + + Manufacturing Jobs Act + 1989-1992 + 812 + + + + + Michigan migrant workers + 1993 + 812 + + + + + + Michigan + 1985-1992 + + + + Action files + + + + 1985 + 107 + + + + + 1986 + 107 + + + + + 1987 + 107 + + + + + 1988 + 107 + + + + + 1989 + 107 + + + + + 1990 + 107 + + + + + + Artists + 1987 + 816 + + +

    (Photographs from People magazine exhibit at the DIA-Michigan People; M. + Robillard)

    +
    +
    + + + Gypsy Moth infestation + 1989-1992 + 816 + + + + + Sesquicentennial celebration, (M. Robillard) + 1987 + 816 + + +
    + + + Press + 1980-1995 + + + + Clippings abstract report + 1987 + 841 + + + + + Congressional Record excerpts + + + + 1985 + + + + January-March + 841 + + + + + April-June + 841 + + + + + July-September + 841 + + + + + October-December + 841 + + + + + Indexes + 841 + + + + + Indexes + 841 + + + + + + 1986 + + + + January-December + 10 folders + 841 + + + + + Speeches + 841 + + + + + + 1987 + + + + January-March + 841 + + + + + April-May + 2 folders + 841 + + + + + June-August + 841 + + + + + Indexes + 841 + + + + + + 1988 + + + + January-March + 842 + + + + + April-June + 842 + + + + + Indexes + 842 + + + + + + 1989 + + + + January-March + 842 + + + + + April-June + 842 + + + + + July-September + 842 + + + + + October-December + 842 + + + + + Indexes + 842 + + + + + + + Correspondence + + + + 2 folders + 1985 + 842 + + + + + 1986 + 842 + + + + + 1987 + 842 + + + + + 1988-1993 + 842 + + + + + + Detroit News and Detroit Free Press Joint Operating Agreement + 6 folders + 1986-1988 + 842 + + + + + Direct mailings + 1981-1983 + 843 + + + + + Michigan Press Reading Service (MPRS) articles + + + + 1986 + + + + January + 843 + + + + + February + 2 folders + 843 + + + + + April + 843 + + + + + May + 843 + + + + + June + 843 + + + + + + 1987 + + + + January + 843 + + + + + February + 843 + + + + + March + 843 + + + + + April + 843 + + + + + May + 843 + + + + + June + 843 + + + + + July + 843 + + + + + August + 843 + + + + + September + 843 + + + + + October + 2 folders + 843 + + + + + November + 843 + + + + + December + 843 + + + + + + 1988 + + + + January + 844 + + + + + February + 844 + + + + + April + 844 + + + + + May + 844 + + + + + June + 844 + + + + + July + 844 + + + + + August + 844 + + + + + September + 844 + + + + + October + 844 + + + + + November + 844 + + + + + December + 844 + + + + + + 1988-1990 + 844 + + + + + 1989 + + + + January + 2 folders + 844 + + + + + February + 844 + + + + + March + 844 + + + + + April + 844 + + + + + May + 844 + + + + + June + 844 + + + + + July + 2 folders + 844 + + + + + August + 2 folders + 844 + + + + + September + Folder 1 of 2 + 844 + + + + + September + Folder 2 of 2 + 845 + + + + + October + 2 folders + 845 + + + + + November + 2 folders + 845 + + + + + December + 845 + + + + + + 1990 + + + + January) + 3 folders + 845 + + + + + February + 2 folders + 845 + + + + + March + 3 folders + 845 + + + + + April + 1 of 2 folders + 845 + + + + + April + 2 of 2 folders + 846 + + + + + May + 10 folders + 846 + + + + + May + 2 folders + 846 + + + + + June + 10 subfolders + 846 + + + + + July + 10 subfolders + 847 + + + + + July + 847 + + + + + August + 10 subfolders + 847 + + + + + September + 2 folders + 847 + + + + + October + 10 subfolders + 848 + + + + + October + 2 folders + 848 + + + + + November + 2 folders + 848 + + + + + December + 2 folders + 848 + + + + + + + Miscellaneous clips + 1990 + 848 + + + + + News articles + + + + 1990 + + + + Miscellaneous + 848 + + + + + May + 848 + + + + + June + 848 + + + + + July + 849 + + + + + Augus + 2 folders + 849 + + + + + September + 2 folders + 849 + + + + + October + 2 folders + 849 + + + + + November + 850 + + + + + + Articles + 1981-1982 + 850 + + + + + Drug war and Department of Defense (DOD) clips + 1989-1990 + 850 + + +

    (Includes prison boot camp, drugs, Subcom OGM and PSI, etc.)

    +
    +
    + + + Ethics and Ham radio license fee and tax clips + 1988-1989 + 850 + + + + + Grants, (Michigan) + 1986-1990 + 850 + + + + + In Challenge to Reagan, Senate Votes to Restrict SDI + Testing + September 18, + 1987 + 850 + + +

    (Washington Post)

    +
    +
    + + + Levin + 1980-1983 + 850 + + + + + Miscellaneous + 1987-1990 + 850 + + + + + Pentagon, Perot, and Trade Readjustment Allowance (TRA) + clips + 1988-1989 + 850 + + +

    (Includes Pentagon procurement and waste, Perot -- Postal service contract, and + TRA)

    +
    +
    + + + Political clips + 1982-1984 + 850 + + + + + Whistleblower clips + 1988-1989 + 850 + + +
    + + + News articles-National + + + + 3 folders + 1984-1985 + 850 + + + + + 2 folders + 1986 + 851 + + + + + 2 folders + 1987 + 851 + + + + + 2 folders + 1988 + 851 + + + + + 1989 + 851 + + + + + 1990 + 851 + + + + + + News articles and speeches + + +

    (Written by Levin and staff)

    +
    + + + 2 folders + 1986 + 851 + + + + + 1987 + 851 + + +
    + + + Office files + + + + Office bets on Wright + May 1989 + 851 + + +

    (Bets on when Speaker of the House Wright would resign)

    +
    +
    +
    + + + Office subject files (P. Shandler -- Press Secretary files) + + + + ABM Treaty + + + + 1986 + 851 + + + + + 1987 + 851 + + + + + + Abortion + 1985 + 852 + + + + + Adoption Reunification bill + 1984 + 852 + + + + + Adoption + + + + 1985 + 852 + + + + + 1986-1987 + 852 + + + + + + Africa aid + 1985 + 852 + + +

    (South African human rights, news clips, resolutions, briefings, remarks, + economic sanctions)

    +
    +
    + + + Africa + 1986-1987 + 852 + + + + + Agriculture + + + + 1985 + 852 + + + + + 1986 + 852 + + + + + 1987 + 852 + + + + + + AIDS + 1987 + 852 + + + + + Air service + 1985 + 852 + + + + + Airlines + 1987 + 852 + + + + + Alliances-New Zea + 1985 + 852 + + + + + Animals + 1986 + 852 + + + + + Arabs + 1985 + 852 + + +

    (bombing of American-Arab Anti-Discrimination Committee)

    +
    +
    + + + Archives + 1986-1987 + 852 + + + + + Arctic Islands + 1988 + 852 + + + + + Armenians Holocaust Remembrance Article + 1985 + 852 + + +

    (Senator Levin introduced bill to commemorate it, Levin and Congressional + delegate cancels Soviet Union meeting)

    +
    +
    + + + Arms Control + + + + 1985 + 852 + + +

    (Incudes efforts by universities)

    +
    +
    + + + 1985-1994 + 852 + + + + + 1986 + 852 + + + + + 1987 + 852 + + +
    + + + Articles authored by Levin and speeches, proceedings and debate + transcripts + 1985 + 852 + + + + + Atwood, Donald-Deputy Secretary of Defense + 1989 + 852 + + + + + Autos + + + + 1985 + 852 + + + + + 1986 + 852 + + + + + 1987 + 852 + + + + + + Aviation + 1986 + 852 + + + + + B-1 and B-2 Bomber + + + + 1988-1989 + 852 + + + + + 1988-1994 + 852 + + + + + + Banks + 1987 + 852 + + + + + Bean Count Report + + + + January 1988 + 852 + + + + + Revised edition + 1988 + 852 + + + + + + Senator Lloyd Bensten,-VP nominee + 1988 + 853 + + + + + Beverages-deposits + 1985 + 853 + + + + + Bovee columns + 1988-1989 + 853 + + + + + Broadcasting + + + + 1985 + 853 + + + + + 1986 + 853 + + + + + 1987 + 853 + + + + + + Budget + + + + 1985 + 853 + + + + + 1986 + 853 + + + + + 1987 + 853 + + + + + 1988 + 853 + + + + + 1989 + 853 + + + + + 1990 + 853 + + + + + + Bullet proof vests + 1990 + 853 + + + + + Bush + 1989-1992 + 853 + + + + + Bush speech on Nuclear arms reductions + September 27, + 1991 + 853 + + + + + Business + + + + 1986 + 853 + + + + + 1987 + 853 + + + + + + Busing + November 1989 + 853 + + + + + Campaign reform + 1989-1993 + 853 + + + + + Canada + 1987-1993 + 853 + + + + + Census bill + 1990 + 853 + + + + + Cheney, Richard, Secretary of Defense, (DOD) + March 1989 + 853 + + + + + Children + 1985 + 853 + + +

    (Includes foster program, missing children campaign)

    +
    +
    + + + Children and childcare + 1988-1992 + 853 + + + + + Childcare + 1989 + 853 + + + + + Civil Rights + + + + 1985 + 853 + + + + + 1986 + 853 + + + + + 1987 + 853 + + + + + + Civil Rights bill + 1988-1992 + 853 + + + + + Civil Service + 1986-1987 + 853 + + + + + Clean Air Act reauthorization + 1990 + 853 + + + + + Clinkscales + 1986 + 854 + + + + + Columns + 1988-1991 + 854 + + + + + Communications + 1987 + 854 + + + + + Computer data base + June 1989 + 854 + + +

    (Media/Office database for Office of Senator Carl Levin rough draft briefing + book)

    +
    +
    + + + Computer Matching + 1987 + 854 + + + + + Congress + 1989-1992 + 854 + + + + + Conrail + 1986 + 854 + + + + + Conservation + 1985 + 854 + + + + + Continuing Resolution, 1988-CRS study on add-ons + 854 + + + + + Copper + 1987 + 854 + + + + + Courts + + + + 1985 + 854 + + +

    (opposing Kozinski nomination)

    +
    +
    + + + 1986 + 854 + + + + + 1987 + 854 + + +
    + + + Death penalty news clips about Levin's opposition + 1985 + 854 + + + + + Death Penalty + 1986-1987 + 854 + + + + + Defectors-Edward O'Malley statement + 1985 + 854 + + + + + Defense + + + + 1985 + 854 + + + + + 1986 + 854 + + + + + 1987 + 854 + + + + + Air Force fax machines + July 1990 + 854 + + + + + Carriers + 1987 + 854 + + + + + Contingency fees-NDAA amendment FY1991 + 854 + + + + + Conventional + 1987 + 854 + + + + + Department of Defense (DOD) organ procurement + 2 folders + 1986 + 854 + + + + + Extremely low frequency (ELF) antenna for Michigan base + 1985 + 854 + + + + + Inventory control + 1987 + 854 + + + + + M1-A1 tank + 1989-1990 + 854 + + + + + Michigan + + + + 1985 + 854 + + + + + 1986 + 854 + + + + + 1987 + 854 + + + + + 1987-1988 + 854 + + + + + 1989-1990 + 854 + + + + + + National Guard in drug war + 1989-1990 + 855 + + + + + Nominations + + + + Darman-Office of Management and Budget (OMB) Director, + (Nomination) + 1989 + 1035 + + + + + Gadola, Paul, (Nomination) + 1988 + 1035 + + + + + Souter, (Nomination) + 1990 + 1035 + + + + + + Non-Michigan + + + + 1988 + 855 + + + + + 1989 + 855 + + + + + 1990 + 855 + + + + + + Williams International + June 1989 + 855 + + + + + + Democratic Party platform + 1988 + 855 + + + + + Democratic Convention + 1988 + 855 + + + + + Disasters + + + + General + 1988-1989 + 855 + + + + + Train wreck in Freeland CSX/Dow Corning + July 1989 + 855 + + + + + + Diversion of Great Lakes water + July 1988 + 855 + + + + + Domestic violence + April 7, 1988 + 855 + + + + + Drugs + 1986 + 855 + + + + + Drug forums, (Michigan) + February 1990 + 855 + + + + + Dukakis + + + + General + 1988 + 855 + + + + + Levin for Attorney General + 1988 + 855 + + + + + + East Timor + 1986 + 855 + + + + + Eastern Europe breakup of Soviet Union + 1989-1991 + 855 + + + + + Economic Competitiveness + September 1986 + 855 + + + + + Economic Development Investment Board + 1989-1991 + 855 + + + + + Economy-national + 1988-1992 + 855 + + + + + Editorials + + + + 1985 + 855 + + + + + Anti-Levin, Detroit news only + 1987-1991 + 855 + + + + + Anti-Levin + 1988-1992 + 855 + + + + + Pro-Levin, pre + 1986-1988 + 1989 + 855 + + + + + Pro-Levin + 1989-1990 + 855 + + + + + + Education + + + + 1985 + 855 + + +

    (Finnish and Japanese exchange program, articles, speeches)

    +
    +
    + + + 1986 + 855 + + + + + 1987 + 855 + + +
    + + + El Salvador + July 7, 1988 + 855 + + + + + Elderly + 1986 + 855 + + + + + Ellis Is + 1982-1986 + 855 + + + + + Ellis Island Project + + + + 4 folders + 1986 + 855 + + + + + 2 folders + 1987 + 856 + + + + + + Emergency food and shelter + + + + 1986 + 856 + + + + + 1987 + 856 + + + + + + Employment + 1986-1987 + 856 + + + + + Energy + + + + 1985 + 856 + + + + + 1986 + 856 + + + + + 1987 + 856 + + + + + + Environment + + + + 1985 + 856 + + + + + 1986 + 856 + + + + + 1987 + 856 + + + + + 1988-1992 + 856 + + + + + + Ethics + + + + 1985 + 856 + + +

    (Includes Pentagon policies)

    +
    +
    + + + 1986 + 856 + + + + + 1986-1987 + 856 + + + + + 1987 + 856 + + + + + Deaver, Michael, (White House aide) + January 1988 + 856 + + + + + Post-employment lobbying restriction bill + 1988-1989 + 856 + + +
    + + + Ethics and Ethics bill + 2 folders + 1988-1992 + 1989 + 856 + + + + + Families Against Cancer + 1986-1991 + 856 + + + + + FDR Memorial + 1987 + 856 + + + + + Federal Trade Commission (FTC) + 1987-1989 + 856 + + + + + Federalism + 1982 + 856 + + + + + Flag desecration amendment + 1989-1990 + 856 + + + + + Finance + + + + 1986 + 856 + + + + + 1987 + 856 + + + + + + Finances + 1985 + 856 + + +

    (Includes PAC reforms)

    +
    +
    + + + Finances-personal disclosure + 1989-1992 + 856 + + +

    (Levin disclosure)

    +
    +
    + + + Focus: HOPE + + + + 1986 + 856 + + + + + 1987-1993 + 856 + + + + + + Food poisoning + 1987 + 856 + + + + + Foreign policy + 1987-1991 + 856 + + + + + Foreign Tax Equity Act + 1990 + 856 + + + + + Foster care + 1987 + 856 + + + + + Foster care bill, (Levin statement) + October 2, + 1990 + 856 + + + + + Franking, (Mail) + 1987-1989 + 856 + + + + + Fraud + + + + 1985 + 857 + + +

    (Includes bill sponsored by Levin, news clips)

    +
    +
    + + + 1986 + 857 + + +
    + + + Genocide treaty + + + + 1985 + 857 + + +

    (U.N. sponsored Genocide Treaty)

    +
    +
    + + + 1986 + 857 + + +
    + + + Gorbachev + 1988 + 857 + + + + + Governmental Affairs Committee, (GAC) + 1987 + 857 + + + + + Grand Jury + 1985 + 857 + + +

    (statement in support of Grand Jury reform)

    +
    +
    + + + Grants, (Michigan) + 1988-1993 + 857 + + + + + C. Boyden Gray-White House Counsel and ethics office head + 1989 + 857 + + + + + Great Lakes + + + + 1985 + 857 + + + + + 1986 + 857 + + + + + 1987 + 857 + + + + + Clean-up bill + September 1989 + 857 + + + + + Diversion + 1988 + 857 + + + + + Oil spill + 1989-1990 + 857 + + + + + + Greenhouse effect + 1988-1989 + 857 + + + + + Grove City-Civil Rights, (Michigan) + March 1988 + 857 + + + + + Guns + + + + 1985 + 857 + + +

    (Gun Control Law S.49)

    +
    +
    + + + 1986-1987 + 857 + + +
    + + + Ham radio operator's registration fee + October-November 1989 + 857 + + + + + Hart, Phil + 1987 + 857 + + + + + Judge Hastings impeachment + October 1989 + 857 + + + + + Headlines + + + + 1986 + 857 + + + + + 1987 + 857 + + + + + 1989-1993 + 857 + + + + + + Health + + + + 1985 + 857 + + +

    (military requirements for health)

    +
    +
    + + + 1986 + 857 + + + + + 1987 + 857 + + +
    + + + Highways + + + + 1986 + 857 + + + + + 1987 + 857 + + + + + + Home heating oil + January-March 1990 + 857 + + + + + Homeless + + + + 1986 + 857 + + + + + 1987 + 857 + + + + + + Honoraria + 1988-1989 + 857 + + +

    (Includes Levin non-accept)

    +
    +
    + + + Hospitals + + + + 1986 + 857 + + + + + 1987 + 857 + + + + + + Housing + + + + 1985 + 857 + + +

    (homeless issues, grants)

    +
    +
    + + + 1986 + 857 + + + + + 1987 + 857 + + +
    + + + Human Rights + + + + 1986 + 857 + + + + + 1987 + 857 + + + + + + Hunger + + + + 1985 + 857 + + +

    (school food programs)

    +
    +
    + + + 1987 + 857 + + +
    + + + Iacocca, Lee + + + + 1985 + 857 + + + + + 1986 + 857 + + + + + + Immigration + + + + 1985 + 857 + + + + + 1986 + 857 + + + + + 1987 + 857 + + + + + + Independent Counsel + + + + 1987 + 857 + + + + + 1988-1992 + 858 + + + + + Hearing + 1987 + 858 + + + + + + Indians (Native Americans) + + + + 1985 + 858 + + + + + 1987 + 858 + + + + + + Individual Retirement Account (IRA) + 1986 + 858 + + + + + Industrial policy + 1985 + 858 + + + + + Insurance + 1987 + 858 + + + + + Intermediate-range Nuclear Forces (INF) + + + + 1987 + 858 + + + + + 1987-1988 + 858 + + + + + + Internal Revenue Service (IRS) + + + + 1987 + 858 + + + + + 1987-1988 + 858 + + + + + + Interview comments + 1988-1990 + 858 + + + + + Iran-Contra + 1987 + 858 + + + + + Iron + 1986 + 858 + + + + + Jazz for Life + 1986 + 858 + + + + + Jewish + + + + 1984-1986 + 858 + + + + + 1986 + 858 + + + + + 1986-1987 + 858 + + + + + Israel-Shultz letter + March-April 1988 + 858 + + + + + + Jews-Soviet + + + + 1986 + 858 + + + + + 1987 + 858 + + + + + + Job training + 1987 + 858 + + + + + Joint Operating Agreement (JOA)-Detroit Free Press and Detroit + News + 1988 + 858 + + + + + Korean airlines + 1990 + 858 + + + + + Kozinski, Alex (Judge) + 1985 + 858 + + + + + Labor + 1987 + 858 + + + + + Labor-workers right to know + 1988-1995 + 858 + + + + + Latin America + + + + 1985 + 858 + + + + + 1986 + 858 + + + + + 1987 + 858 + + + + + + Legislative achievements + 1985 + 859 + + + + + Legislative veto + 1985 + 859 + + + + + Levin + + + + 1985 + 859 + + + + + 1986 + 859 + + + + + 1987 + 859 + + + + + Barbara + 1984-1992 + 859 + + + + + Carl profile + 1989-1990 + 859 + + + + + Family + 1987-1995 + 859 + + + + + General campaign + 1990 + 859 + + + + + Michigan + + + + 1985 + 859 + + + + + 1986 + 859 + + + + + 1987 + 859 + + + + + + No to presidential + 1987 + 859 + + + + + + Legislative veto + 1986-1987 + 859 + + + + + Letters to the editor-pro-CL + 1987-1991 + 859 + + + + + Liability + 1986 + 859 + + + + + Libya + 1989 + 859 + + + + + Lobbying + 1987 + 859 + + + + + Lucas, William-Justice Department Civil Rights Division + head + 1989 + 859 + + + + + M1A1 tank + 1987-1988 + 859 + + + + + Mail + + + + 1985 + 859 + + + + + 1986 + 859 + + + + + 1990 + 1988 + 859 + + + + + + Majority leader race in Senate + 1988 + 859 + + + + + Mandela + 1990 + 859 + + + + + Media + + + + 2 folders + 1983-1993 + 859 + + + + + 1986 + 859 + + + + + 1987 + 859 + + + + + + Medical Waste bill, (Levin) + 1988 + 859 + + + + + Medicare including catastrophic + 1988-1990 + 859 + + + + + Meese, Edwin + + + + General + 1988 + 860 + + + + + Justice Department OPR report + January 1989 + 860 + + + + + McKay report/Meese resignation + July 1988 + 860 + + + + + Meese-Chinn investments study + 1987-1988 + 860 + + + + + OGE investigation + 1988 + 860 + + + + + + Memos + January 1985 + 860 + + + + + Michigan + + + + 1984-1985 + 860 + + + + + 1985 + 860 + + + + + 1986 + 860 + + + + + 1987 + 860 + + + + + + Michigan Democrats + 1987-1992 + 860 + + + + + Michigan Employment Security Commission (MESC) + March 1990 + 860 + + + + + Michigan federal money projects + 1988-1990 + 860 + + + + + Mideast + + + + 1985 + 860 + + + + + 1986 + 860 + + + + + 1987 + 860 + + + + + + Mideast Peace-Palestinians + 1988-1993 + 860 + + + + + Military exchanges + 1983-1985 + 860 + + + + + Minimum wage + + + + 1987 + 860 + + + + + 1989 + 860 + + + + + + Miscellaneous + + + + 1987 + 860 + + + + + 1988 + 860 + + + + + 1989-1990 + 860 + + + + + + MX Missile + 2 folders + 1989-1990 + 860 + + + + + National Center for Manufacturing Sciences (NCMS), (Ann Arbor, + Michigan) + 1990 + 860 + + + + + National Federation of Independent Business (NFIB) + July-August 1990 + 860 + + + + + Negotiated Rule Making Act-S.1504 (GAC) + 1988 + 860 + + + + + Newport Apartments, (Macomb County, Michigan) + 1990 + 860 + + + + + Newsletters-Levin + + + + 1985-1988 + 860 + + + + + 1987 + 860 + + + + + + Nicaragua-Contra + 1987-1989 + 860 + + + + + Nicaragua countdown + 1987 + 860 + + + + + North, Col. Oliver + 1989 + 861 + + + + + Nuclear non-proliferation + 1985 + 861 + + + + + Nuclear waste + + + + 1986 + 861 + + + + + 1987 + 861 + + + + + Low level dump + 1989-1990 + 861 + + + + + + Nunn for Vice President + 1988 + 861 + + + + + Office of Federal Procurement Policy + 1989 + 861 + + + + + OMB + 1986 + 861 + + + + + Oil prices + August 1990 + 861 + + + + + Oversight of Government Management Subcommittee (Subcom + OGM) + + + + Biological chemical warfare research lab safety + July 1988 + 861 + + + + + Computer Matching and Privacy Act + September 1988 + 861 + + + + + Hearings + + + + Ethics in Government Act 10th anniversary + April 12, + 1988 + 861 + + + + + Office of Government ethics reauthorization hearing + April 13, + 1988 + 861 + + + + + Federal Advisory Committee Act noncompliance at strategic + defense + April 19, + 1988 + 861 + + + + + Postal Service's Contract with Perot Systems Corporation; August + 10 + 1988 + 861 + + + + + Great Lakes pollution + April 28, + 1989 + 861 + + + + + Department of Defense off the shelf purchases, (DOD) + May 16, + 1989 + 861 + + + + + The Federal Role in Promoting and Using Special Alternative + Incarceration, January 29 + March 1, + 1990 + 861 + + + + + Oversight of Agency Ethics Programs + June 5, + 1990 + 861 + + + + + Oversight of U.S. Progress Under the Great Lakes Water Quality + Agreement + June 13, + 1990 + 861 + + + + + General agreement on tariffs and trade and job loss + September 26, + 1990 + 861 + + + + + Korean black market + October 19, + 1989 + 861 + + + + + + Medical lab testing + March-June 1988 + 861 + + + + + Wedtech scandal + 1987 + 861 + + + + + + Oil + August 3, + 1990 + 861 + + +

    (Iraq invasion of Kuwait)

    +
    +
    + + + Op-Eds authored by Levin + 2 folders + 1988-1992 + 861 + + + + + Panama + 1989 + 861 + + + + + Parks Perks + 1992-1994 + 861 + + +

    (For government officials; Levin at Brinkerhoff in Grand Teton 1988 and + 1991)

    +
    +
    + + + Passports + 1984 + 861 + + + + + Paulsen-Transkei + 1987 + 862 + + +

    (Reverend Casimir Paulsen freed from South Africa-Transkei)

    +
    +
    + + + Pay raise Reagan proposal + 1989 + 862 + + +

    (Levin opinion)

    +
    +
    + + + Peace dividend + July 1990 + 862 + + + + + Pensions + + + + 1986 + 862 + + + + + 1987 + 862 + + + + + + Pentecostals + + + + 1981-1985 + 862 + + +

    (Includes photographs; Vashchenko and Chmykhalov families)

    +
    +
    + + + 1985-1986 + 862 + + +

    (Vashchenko family)

    +
    +
    +
    + + + Perot, Ross + 1988-1992 + 862 + + + + + Persian Gulf + April-July 1988 + 862 + + + + + Philippines + 1986 + 862 + + + + + Photographs + 2 folders + 1987-1994 + 862 + + + + + Pictured Rocks National Lakeshore scenic drive + 1988-1989 + 862 + + + + + Plant closing notification + July-August 1988 + 862 + + + + + Po + 1988-1989 + 862 + + + + + Police + 1985 + 862 + + + + + Politics + + + + 1984-1985 + 862 + + + + + 1985 + 862 + + + + + 1986 + 862 + + + + + 1987 + 862 + + + + + + Postal + 2 folders + 1986-1987 + 862 + + + + + Postal-temporary file + 1988-1992 + 862 + + +

    (Includes GAO report)

    +
    +
    + + + Poverty + 1985-1987 + 862 + + + + + Colin Powell as Ronald Reagan National Security Advisor + December 1987 + 862 + + +

    (Post-SDI Summit)

    +
    +
    + + + Prayer in school + 1986-1987 + 862 + + + + + Presidential + 1992 + 862 + + + + + Presidential primary system reform + January 1988 + 862 + + + + + Press Corps + 1988-1993 + 862 + + + + + Prison + 1986-1987 + 862 + + + + + Procurement + + + + 1985 + 862 + + + + + 1986 + 862 + + + + + 1987 + 862 + + + + + Kickbacks, (Subcom OGM related) + 1986 + 863 + + + + + Kickbacks hearing + 1986 + June 11, + 1986 + 863 + + +

    (Subcom OGM-"DOD Subcontractor Kickbacks: Industry Personnel Practices")

    +
    +
    + + + Kickbacks + 1987 + 863 + + +
    + + + Quayle-Vice President + 1988-1993 + 863 + + + + + Ratings + + + + 1986 + 863 + + + + + 1987 + 863 + + + + + + Michael Reagan adoption + March 1989 + 863 + + + + + Reagan, Ronald + + + + General + 1988 + 863 + + + + + Radio response to defense bill-Levin + July 30, + 1988 + 863 + + + + + + Refuseniks + 1988 + 863 + + + + + Regulation + 1985 + 863 + + + + + Revenue sharing + 1986 + 863 + + + + + Riegle, Don + 1993-1994 + 863 + + + + + Ruppe, Loret + 1988 + 863 + + + + + Rural Partnership Act + 1989 + 863 + + + + + Salaries + 1986-1987 + 863 + + + + + Seals-Alaska, (animal protection) + 1985 + 863 + + + + + Senate + + + + 1985 + 863 + + + + + 1986 + 863 + + + + + 1987 + 863 + + + + + + Skeds + + + + 1988 + 863 + + + + + 1989 + 863 + + + + + 1990 + 863 + + + + + + Small Business + + + + 1985 + 863 + + + + + 1987 + 863 + + + + + Geo Spectra + 1987 + 863 + + + + + + Small Business subcommittee (SBC) + + + + Impact of Federal Programs on Small Business Manufacturing, use of + advanced technologies + March 1, + 1988 + 863 + + + + + Finding Hi-tech Workers + December 19, + 1989 + 863 + + + + + International auto parts trade, (Subcom on Innovation, Technology and + productivity) + April 20, + 1990 + 863 + + + + + + Social Security + + + + 1985 + 863 + + + + + 1986-1987 + 863 + + + + + + South Africa + 1988 + 863 + + + + + Space + 1986 + 863 + + + + + Speed limit + 1987 + 863 + + + + + Spying, (PSI) + 1985 + 863 + + + + + Staff + + + + 1985 + 863 + + + + + 1986 + 863 + + + + + 1987 + 863 + + + + + + Staff memos + 1988 + 863 + + + + + USS Stark + 1987 + 863 + + + + + Strategic Defense Initiative (SDI) + + + + 1986 + 863 + + + + + 1987 + 863 + + + + + + Strategic Defense Initiative (SDI) star wars + 1987-1988 + 863 + + + + + Super collider + 1988 + 863 + + + + + Taxes + + + + 1985 + 863 + + + + + 2 folders + 1986 + 864 + + + + + 1987 + 864 + + + + + IRS legislation + 1980-1987 + 864 + + + + + "Reform" bill + 1986-1991 + 864 + + + + + Section 89 of tax code, (Levin leads opposition) + 1989 + 864 + + + + + Symms-Levin bill + 1988 + 864 + + + + + + Tax payer bill of right + 1988 + 864 + + + + + Tax payer rights + 1987 + 864 + + + + + Terrorism + 1986 + 864 + + + + + Toxins-ban on mailing + 1990 + 1988 + 864 + + + + + Trade + + + + 1985 + 864 + + + + + 1986 + 864 + + + + + 1987 + 864 + + + + + Bill + 1988-1991 + 864 + + + + + Bush trip to Japan + December 1991-January 1992 + 864 + + + + + + Trade Readjustment Allowance + 1988-1990 + 864 + + + + + Transportation + 1987 + 864 + + + + + Transportation-highways + 1989-1990 + 864 + + + + + Trips + + + + 1985 + 864 + + + + + 1986-1987 + 864 + + + + + General + 1989 + 864 + + + + + Philippines + 1986 + 864 + + + + + European + February 5-15, 1988 + 864 + + + + + Russia + March 9-12, 1988 + 864 + + + + + Korea-Japan + January 7, + 1989 + 864 + + + + + Geneva and Vienna + June 1989 + 864 + + + + + Mideast + August 31-September 3, 1990 + 864 + + + + + + Tutoring + 1985 + 865 + + + + + Ukrainians + 1985 + 865 + + + + + Unemployment + 1985 + 865 + + + + + Unions + + + + 1985 + 865 + + + + + 1986 + 865 + + + + + + Urban Development Action Grant (UDAG) + 1986-1987 + 865 + + + + + U.S. aid grants and contracts + 1985 + 865 + + + + + USSR, (Soviet Union) + 1985 + 865 + + + + + Vaccine-injury legislation + 1990 + 865 + + + + + Value engineering + 1987 + 865 + + + + + Value engineering subcommittee report + October 1987 + 865 + + + + + Veterans + 1985 + 865 + + + + + Veterans + 1986-1987 + 865 + + + + + Video Display Terminals (VDT) + 1986 + 865 + + + + + War powers + 1987 + 865 + + + + + War Powers Act + October 1987 + 865 + + + + + Wedtech + 1986-1987 + 865 + + + + + Whistleblowers + + + + 1986 + 865 + + + + + 1987 + 865 + + + + + + Whistleblower Act + 1987-1989 + 865 + + + + + Wiener, Rick + 1988-1993 + 865 + + + + + Wilderness + + + + 1985 + 865 + + + + + 1986 + 865 + + + + + 1987 + 865 + + + + + + Wilderness bill-CL + October-December 1987 + 865 + + + + + Wire + 1989-1992 + 865 + + + + + Wurstmith Air Force Base + 1989-1992 + 865 + + + + + Zebra mussels + 1990 + 865 + + +
    + + + Press releases + + + + 2 folders + 1985 + 865 + + + + + 2 folders + 1986 + 865 + + + + + 3 folders + 1987 + 866 + + + + + 2 folders + 1988 + 866 + + + + + May-December 1988 + 866 + + + + + 2 folders + 1989 + 866 + + + + + 2 folders + 1990 + 866 + + + + + + Radio press conferences + 1989-1990 + 866 + + + + + Receipts and reimbursements -- W. Blacklow + 1990 + 866 + + + + + Television-Insiders View + 1985 + 866 + + + + + Transcripts + 1986-1987 + 866 + + + + + Transcripts-This Week with David Brinkley + January 11, + 1987 + 866 + + +
    + + + Speeches and events + 1982-1991 + + + + 1985-1987 + + + + AIPAC California + December 1988 + 937 + + + + + Alliance for Justice + May 12, 1986 + 937 + + + + + American Institute of Aeronautics and Astronautics annual + meeting + April 29, + 1987 + 937 + + + + + American Jewish Committee + May 14, 1986 + 937 + + + + + Anne Frank Exhibit + September 24, + 1988 + 937 + + + + + Armenian Genocide + April 28, + 1985 + 937 + + + + + Beth Shalom Synagogue + November 29, + 1986 + 937 + + + + + Busing + undated + 937 + + + + + Death + undated + 937 + + + + + Defense-Bomber + undated + 937 + + + + + Democratic Convention (State) + February 10, + 1985 + 937 + + + + + Democratic State Convention + August 24, + 1986 + 937 + + + + + Detroit Council of Orthodox Rabbis + March 23, + 1986 + 937 + + + + + Detroit Economic Club + September 1987 + 937 + + + + + Edmund Burke School + June 1, 1986 + 937 + + + + + Environment + undated + 937 + + + + + + Events + + + + Notes + 2 folders + 1985-1987 + 938 + + + + + Notes and news articles + 1987-1990 + 938 + + + + + Notes and memos + 1989-1990 + 938 + + + + + + Fight for Freedom Dinner + April 27, 1986 + 938 + + + + + General remarks + 938 + + + + + Levin notes when meets people and speeches + 1989-1991 + 938 + + + + + Carl's speech material including Reagan quotes, (C. Cutolo) + 1986-1989 + 938 + + + + + MARCOs, Huntington Woods, Newsweek magazine + 1986 + 938 + + +

    (Cuts in Federal program)

    +
    +
    + + + Michigan defense speeches + 1985 + 938 + + + + + Miscellaneous + + + + 2 folders + 1989-1990 + 938 + + + + + 1991 + 938 + + + + + Materials including Great Lakes education + 938 + + + + + + MX missile statement + March 19, 1985 + 939 + + + + + National Association of Towns and Townships + September 9, + 1988 + 939 + + + + + New Citizens -- Westin Hotel + July 3, 1986 + 939 + + + + + Political issues-news articles and staff notes + 1985-1986 + 939 + + + + + Political and social meetings + 1982-1986 + 939 + + + + + Political meetings and notes + 1989-1990 + 939 + + + + + Star Wars + 1986 + 939 + + + + + Thou shall make no law abridging freedom of speech + 939 + + + + + University of Detroit + May 15, 1986 + 939 + + + + + University of Detroit Law Review + April 10, 1987 + 939 + + + + + University of Michigan Law School + 2 folders + May 11, 1985 + 939 + + + + + Vietnam Memorial Dedication Lenawee City + July 27, 1985 + 939 + + + + + Wayne County Community College + June 9, 1985 + 939 + + +
    + + + Trade + 1982-1992 + + + + Action files + + + + 1985 + 107 + + + + + 2 folders + 1987 + 107 + + + + + 2 folders + 1987 + 107 + + + + + 1988 + 107 + + + + + 1989 + 107 + + + + + 1990 + 107 + + + + + + Administration statements + 1985-1986 + 975 + + + + + Agricultural exports + 1986-1988 + 975 + + + + + Avtek-start-up contracting company + December 1991 + 975 + + + + + Auto + + + + Auto barriers amendment + 1987-1988 + 975 + + + + + Auto Industry + 1986-1987 + 975 + + + + + Mazda, Nissan, and Toyota + 1990-1991 + 975 + + + + + + Brazil-Non-rubber footwear + 1985-1988 + 976 + + + + + Computerized Machine Tools, Inc. and Israel + 1989-1990 + 976 + + + + + Copper Trade bill + 1987-1988 + 976 + + + + + Correspondence + 1990 + 976 + + + + + Customs searches at Canadian border + 1984-1987 + 976 + + + + + Fair trade-Boone Pickens and Koito Manufacturing + 1990-1991 + 976 + + + + + Floral-imported roses + 1986-1987 + 976 + + + + + Foreign Direct Investment (FDI) + + + + Disclosure Amendment + 1987 + 976 + + + + + Reporting + 1985-1987 + 976 + + + + + + Free Trade Agreement (FTA) + + + + Canada-United States + 5 folders + 1985-1988 + 976 + + + + + Canada-United States + 9 subfolders + 1986-1988 + 977 + + +

    (Includes a GAC hearing May 9, 1988)

    +
    +
    + + + Canada-United States + 14 folders + 1987-1988 + 977 + + + + + Canada-United States final text + December 9, + 1987 + 977 + + + + + Canada-United States and Michigan + 1986-1988 + 977 + + + + + Hearing, (GAC) + May 9, 1988 + 977 + + + + + Canada free trade hearings, (Subcom OGM?) + August 1989 + 977 + + +
    + + + Governor's Rights bill under 301-S.19, (Levin Sponsor) + 1989-1990 + 977 + + + + + Hearing on Trade Policy briefing binder, (Finance Committee) + April 8, 1987 + 977 + + + + + Industrial design protection, (H.R.1790 and S.1506) + 1991-1992 + 978 + + + + + International competitiveness + + + + Anti-discrimination and Trade Deficit Reduction Act of -- + S.1037 + 1987 + 978 + + + + + Democratic Policy Committee meeting + February 1987 + 978 + + + + + Fair Trade Act of 1987-S.331 + 978 + + + + + Legislation + 1983-1987 + 978 + + + + + Section 201 + 1985-1987 + 978 + + + + + Section 301 and unfair trade + 1988 + 978 + + + + + Trade data + March-April 1987 + 978 + + + + + Trade Deficit Reduction proposal + 1983-1986 + 978 + + + + + + Iron Ore industry + 1985-1987 + 978 + + + + + Japan + + + + Agriculture + 1988 + 978 + + + + + Agricultural Barriers + 1988 + 978 + + + + + Airport construction + 1986-1987 + 978 + + + + + Kansai airport + 1991 + 978 + + + + + Auto + 2 folders + 1982-1988 + 978 + + + + + Auto section 310 resolution + 1990 + 978 + + + + + Hearing-U.S. Japan Auto Parts Trade + April 20, + 1990 + 978 + + +

    (Includes Levin statement; Subcommittee on Innovation, Technology, and + Productivity)

    +
    +
    +
    + + + Korea + + + + 1986-1988 + 978 + + + + + 2 folders + 1988-1990 + 978 + + + + + 2 folders + 1990 + 978 + + + + + Bob LaRussa on Korea + 1989-1990 + 978 + + + + + + Legislation + + + + Cosponsored + 1990 + 978 + + + + + House bills + 1986 + 978 + + + + + Miscellaneous + 1990 + 978 + + + + + Senate bills + 1985-1987 + 979 + + + + + + Market Oriented, Sector Specific (MOSS) talks-auto parts + 2 folders + 1987 + 979 + + + + + Meat inspections-FDA + 1988-1991 + 979 + + + + + Miscellaneous industries + 1985-1988 + 979 + + + + + Miscellaneous trade and custom issues + 1987-1988 + 979 + + + + + Omnibus Trade and Competitiveness Act + 1987-1988 + 979 + + + + + Product standards letter to Secretary of Commerce Mosbacher + 1989 + 979 + + + + + Protection against price fixing + 1987-1992 + 1983 + 979 + + + + + Sentencing guidelines amendments + 1987 + 979 + + + + + Soviet fur embargo + 1987 + 979 + + + + + Steel + + + + Chipper Knife + 1989-1990 + 979 + + + + + Steel industry + 3 folders + 1982-1988 + 980 + + + + + Voluntary restraint agreement (VRA) + 1989 + 980 + + + + + + Taiwan trade + 1987-1988 + 980 + + + + + Textile industry + 1985-1987 + 980 + + + + + Textile trade-S.2411 + 1990-1991 + 980 + + + + + Toshiba-Kongsberg + 1987 + 980 + + + + + Trade Adjustment Assistance Program changes + 1985-1987 + 980 + + + + + Trade Reorganization bill + 2 folders + 1989-1992 + 980 + + +

    (Glenn bill and Roth Trade reorganization bill)

    +
    +
    + + + Trade with Europe + March 1987 + 980 + + + + + Unfair Labor Practices + 1988-1989 + 980 + + +
    + + + Transportation + 1980-1996 + + + + Action files + + + + 1985 + 107 + + + + + 1987 + 107 + + + + + 1988 + 107 + + + + + 1989 + 107 + + + + + 2 folders + 1990 + 107 + + + + + Legislation analysis + 1990 + 107 + + + + + Rail safety + 1990 + 107 + + + + + + Appropriations + + + + FY1990 + 947 + + + + + FY1991 + 947 + + + + + + Auto documents and correspondence + 3 folders + 1980-1985 + 947 + + + + + Auto jobs GAO report, (A. Pascale) + 1990 + 947 + + + + + Aviation + + + + Airport grants + 1985-1987 + 947 + + + + + FAA-fleet modernization + July 1985 + 947 + + + + + Michigan aviation, (D. Rosenblum) + 1987 + 947 + + + + + Northwest Airlines acquisition, (NWA) + 1989 + 947 + + + + + Northwest-Republic airlines merger, (NWA) + 1986-1987 + 947 + + + + + + Drunk driving + 1988 + 947 + + + + + Highway billboards + 2 folders + 1986-1991 + 947 + + + + + Highway funding and reauthorization + 1985-1987 + 947 + + + + + Highway legislation + 1983-1988 + 947 + + + + + Highway safety + 2 folders + 1984-1994 + 947 + + + + + Interstate H-3 exemption + 1986 + 948 + + + + + Mass transit, (D. Rosenblum) + 1985-1987 + 948 + + + + + Miscellaneous, (Michigan) + 1985-1987 + 948 + + + + + Rail + + + + Amtrak-funding legislation and correspondence + 1985-1987 + 948 + + +

    (Levin co-sponsor)

    +
    +
    + + + Conrail + 1986 + 948 + + + + + Conrail sale + 3 folders + 1984-1986 + 948 + + + + + Conrail sale + 1986 + 948 + + + + + Morgan Stanley proposal to purchase the US Government's 85% interest in + Conrail + September 3, + 1985 + 948 + + + + + Railroad internal memos, letters and research, (Michigan) + 3 folders + 1985-1996 + 948 + + + + + Railroads, (D. Rosenblum) + 1983-1987 + 948 + + + + + Southern Michigan Railroad Society, Inc. + 1985-1986 + 948 + + + + + Staggers act + 1985-1987 + 948 + + +
    + + + Speed limits-55 miles per hour + 1984-1988 + 948 + + + + + Zilwaukee Bridge + 1988 + 948 + + +
    + + + Veterans + 1983-1990 + + + + Action files + + + + 2 folders + 1985 + 108 + + + + + 2 folders + 1987 + 108 + + + + + 1988 + 108 + + + + + 1989 + 108 + + + + + 1990 + 108 + + + + + + Agent Orange legislation + 1988 + 1014 + + + + + Budget-programs + 1985-1986 + 1014 + + + + + Disability compensation-revision + 1985-1986 + 1014 + + + + + Job training + 1983-1988 + 1014 + + + + + Meetings with veteran organizations + 1987-1988 + 1014 + + + + + Memorials and monuments + 1985-1987 + 1014 + + + + + Miscellaneous issues + 1985-1988 + 1015 + + +

    (Incarcerated veterans, mental health, and appropriations)

    +
    +
    + + + National women veterans recognition week legislation + 1985-1988 + 1015 + + + + + Newsletters and speeches + 1985-1988 + 1015 + + + + + Post-traumatic stress disorder + 1986-1987 + 1015 + + + + + Radiation exposure legislation + 1986-1988 + 1015 + + + + + Thank-you from Michigan veterans + 1987 + 1015 + + + + + Veterans Affairs (VA) + + + + S.533-elevate to cabinet level department + 1987-1988 + 1015 + + + + + Education benefits + 1987-1988 + 1015 + + + + + Home loan guarantee program-issues and changes + 1985-1988 + 1015 + + + + + Judicial review process for decisions + 1987-1988 + 1015 + + + + + Medical centers + + + + Allen Park and Battle Creek, (D. Guglielmo) + 1988-1990 + 1015 + + + + + Centers + 1987 + 1015 + + + + + Facilities in Michigan + 1985-1988 + 1015 + + + + + Toledo outpatient clinic + 1985 + 1015 + + + + + + Prosthetics policy + 1983-1987 + 1015 + + + + + Travel reimbursement + 1986-1987 + 1015 + + + +
    + + + Audiovisual materials + + + + "Baxter Corporate Community School" CBS Evening News WBBM-TV/CBS Network + 6:00 PM + 1 videocassettes (VHS; 0:05:14) + 1989 November 01 + 1064 + + + + + "Carl Levin" Film Xfer 16mm to 3/4 w/ LATC visable & TC on CH + 2 + 1 videocassettes (U-matic; 0:24:40) + 1990 May 15 + 1060 + + + + + "Carl Levin" Film Xfer 16mm to 3/4 w/ LATC, visable & TC on CH + 2 + 1 videocassettes (U-matic; 0:24:40) + 1990 May 15 + 1060 + + + + + "Carl Levin" Film Xfer 16mm to 3/4 w/ LATC, visable & TC on CH + 2 + 1 videocassettes (U-matic; 0:24:30) + 1990 May 15 + 1060 + + + + + "Carl Levin" Film Xfer 16mm to 3/4 w/ LATC, visable & TC on CH + 2 + 1 videocassettes (U-matic) + 1990 May 21 + 1060 + + + + + "The Day After" - Tower. 1). Mich Public Radio; 2). Knight Ridder Mark + Thompson; Nunn, MTP. Topic: Tower + 1 audiocassettes + 1989 February 24 + 1989 February 26 + 1097 + + + + + "WETA cassette" public boadcasting in the nation's capital: M/L P6M + Dub + 1 videocassettes (VHS) + 1987 March 26 + 1987 April 16 + 1090 + + + + + #6 Wedtech Aubrey Rogers/SBA + 1 videocassettes (U-matic) + undated + 1105 + + + + + (1) - 147 -- Defense - MX vote reaction, w/Riegle + 1 videocassettes (U-matic; 1:45) + 1985 March 19 + 1066 + + + + + (10) - 143 - Autos - Levin gallery news conf., reacts to Reagan not + asking Japan to continue auto export quotas + 1 videocassettes (U-matic) + 1985 March 01 + 1066 + + + + + (11) - 144 - Agriculture, Capitol farm bill rally, master + 1 videocassettes (U-matic) + 1985 March 06 + 1066 + + + + + (13) - 146 -- DEFENSE - Revolving Door - Oversite subc., C-Span + recording + 1 videocassettes (VHS) + 1985 March 19 + 1066 + + + + + (14) - 148 -- Unemployment - FSC Labor Dept. Rally + 1 videocassettes (U-matic; 4:00) + 1985 March 20 / 1984 August + 30 + 1066 + + + + + (2) - 151 - Soviets - canceled trip, NBC Japan/Trade - Japanese + announcement ABC, CBS, NBC McNeil/Lehrer Japan + 1 videocassettes (U-matic) + 1985 April 08 + 1985 April 09 + 1985 April 09 + 1066 + + + + + (3) - 150 -- Baseball -- World Series payoff with Cranston and + Eagleton + 1 videocassettes (U-matic; 5:00) + 1985 April 01 + 1066 + + + + + (4) - 138 - Levin Library - Swearing-in + 1 videocassettes (U-matic) + 1985 January 03 / 1984 + April 30 + 1066 + + + + + (5) - 139 - Defense, SASC budget hearing with Weinberger, master + tape + 1 videocassettes (U-matic) + 1985 February 04 + 1984 August 30 + 1066 + + + + + (7) - 141 -- Defense - SASC Hearing, Levin gets Shultz to Conceed that + SDI Deployment would require U.S. to negotiate changes in ABM treaty with + Soviets + 1 videocassettes (U-matic; 8:30) + 1985 February 26 / 1984 + August 30 + 1066 + + + + + (8) - 149 -- Unemployment - Autos, Danforth Res. FSC, Japanese exports, + VRA + 1 videocassettes (U-matic; 4:51) + 1985 March 29 + 1066 + + + + + (9) -142 - Small Business,, committee hearing with Stockman/proposal to + abolish SBA Satellite feed, master, C-SPAN feed, NBC, ABC clips + 1 videocassettes (U-matic) + 1985 February 28 + 1066 + + + + + 000-038: CL pc, Shamir meeting comments only + 1 audiocassettes + 1988 March 15 + March 14 + 1096 + + + + + 1 of 1. Levin Clean Air + 1 videocassettes (U-matic) + 1990 March 01 + 1092 + + + + + 1 Side: CNN interview - 1987 (?) Topics: Tax reform, INF, Conv. Forces, + Humorous - disagree w/wife. Levin Family, city council experience and Fighting + bureaucracy; Another Side: 1987 (?) Interview on Iran contra, Fed. budget + reductions + 1 audiocassettes + 1987 + 1096 + + + + + 1. 60 Minutes (Pentagon & $35B Storage) Levin "1998" is crossed out; + 2. Alan Keyes Dean Brown (Terrorism); 3. MacNeil Lehrer Who will replace Byrd? + Sen. Maj leader + 1 videocassettes (VHS) + undated + 1055 + + + + + 1. Brian Gruley - D. News; 2. Watch on Washington - Ed. 3. Abortion feed; + 4. East Germ. + 1 audiocassettes + 1989 November 09 + 1989 November 06 + 1099 + + + + + 1. CL satellite feed on 2. OPIC 3. OPIC/nPoN + 1 audiocassettes + 1989 April 13 + 1097 + + + + + 1. Print Conf. Call on White House Briefing; 2. Mike Clements on + Powell + 1 audiocassettes + 1990 August 28 + 1990 October 29 + 1099 + + + + + 1. Radio Show; 2. CL w/Tim on Meese, Ind. Counsel + 1 audiocassettes + 1988 August 12 + 1100 + + + + + 1. Senator Levin Floor Speeches. June19th 1986 Exchange continues on Tape + 2 + 1 videocassettes (VHS) + 1986 June 03 thru 1986 June + 19 + 1057 + + + + + 1/2 Way Through to end - Gordon on w/Mike Clements. Poll + results + 1 audiocassettes + 1989 April 24 + 1097 + + + + + 152 -- Central American Trip news conference, opposes aid to Contras + (4) + 1 videocassettes (U-matic; 0:04:48) + 1985 April 17 + 1077 + + + + + 153 -- Bitburg, Budget, In-studio reaction to Bitburg controversy and '86 + budget (5) + 1 videocassettes (U-matic; 0:02:30) + 1985 May 03 + 1077 + + + + + 154 -- BITBURG, SENIORS, news conference followup to visit and senior + tutors (6) + 1 videocassettes (U-matic; 0:07:15) + 1985 May 06 + 1077 + + + + + 155 -- DEFENSE, Revolving Door hearing in SASC (7) + 1 videocassettes (U-matic; 0:05:00) + 1985 May 21 + 1077 + + + + + 156 -- Defense, Star Wars, MacNeil/Lehrer (8) + 1 videocassettes (U-matic) + 1985 June 03 + 1984 August 30 + 1077 + + + + + 157 -- TAX REFORM, SBA hearing on how Reagan proposal hurts two wage + earner family in MIch. (6) + 1 videocassettes (U-matic; 0:05:15) + 1985 June 12 + 1077 + + + + + 158 -- SEALS, Levin testimony before Foreign Rel. Comm. against treaty. + (10) + 1 videocassettes (U-matic; 0:04:30) + 1985 June 14 + 1077 + + + + + 159 -- TRADE -- news conf. on Levin's Dept. of Trade bill (11); MISC + Footage - MI Abrams Tank on Test Track; - End of Line manufacturing + scenes. + 1 videocassettes (U-matic; 0:02:55) + 1985 June 26 + 1077 + + + + + 160 -- UPPER PENINSULA -- Levin's new Soo Lock legislation + 1 videocassettes (U-matic; 1:30) + 1985 July 11 + 1077 + + + + + 161 -- CAPITAL PUNISHMENT -- CBS news story, with Levin, on capital + punishment for spys (2) + 1 videocassettes (U-matic) + 1985 July 22 + 1077 + + + + + 162 -- DEFENSE -- MacNiel/Lehrer segment, w/Levin, on defense procurement + (13) + 1 videocassettes (U-matic) + 1985 July 26 + 1984 August 30 (?) + 1077 + + + + + 163 -- Budget, S. Africa, news conf. + 1 videocassettes (U-matic; 0:03:37) + 1985 August 02 + 1077 + + + + + 164 -- ARMS CONTROL, post-Geneva trip news conf., nuke non-prolif treaty + (3) + 1 videocassettes (U-matic; 0:05:00) + 1985 September 04 + 1077 + + + + + 165 -- S.Africa -- Levin studio shot of Live at 5 with Bill Bonds + WXYZ-TV7 Detroit, sanctions vote + 1 videocassettes (U-matic) + 1985 September 11 + 1983 November 11(?) + 1071 + + + + + 165-A -- S. Africa -- air check, live interview with Bill Bonds, WXYZ-TV + Detroit + 1 videocassettes (U-matic) + 1985 September 11 + 1071 + + + + + 166 -- DEFENSE -- NBC story on response to Reagan's Star Wars summit + position + 1 videocassettes (U-matic) + 1985 September 18 + 1983 September 27 + 1071 + + + + + 167 -- Gramm-Rudman, news conference on his vote in favor and his + amendment + 1 videocassettes (U-matic; 0:05:00) + 1985 October 09 + 1071 + + + + + 168 -- TERRORISM - U.S. captures boat hijackers " I feel damn good" about + it. 10-11-85; + 1 videocassettes (U-matic) + 1985 October 11 + 1983 November 12 June + 13 + October 11 + 1983 October 05 + 1985 April 17 + 1071 + + + + + 169 -- U.P. -- introduces Wilderness legislation; Democratic Media Center + Levin Tape 3 30 Aug 1984 + 1 videocassettes (U-matic) + 1985 October 11 + 1984 August 30 + June 13 + 1071 + + + + + 170 -- DEFENSE -- Levin on CBS in SASC hearing re defense + reorganization + 1 videocassettes (U-matic) + 1985 October 16 + October 09 + 1071 + + + + + 171 -- TRADE - Response to Nakasone UN speech, "Japan biggest + protectionist country in world" + 1 videocassettes (U-matic) + 1985 October 24 + 1071 + + + + + 172 -- DEFENSE -- Carl on Phil Donahue Show Star Wars + 1 videocassettes (U-matic) + 1985 October 25 + 1069 + + + + + 174 -- Defense -- SASC, Carl gets Weinberger to admit he opposes + Gramm-Rudman; Democratic Media Center 10/9/84 #8 @ 8:01:00 Barbara(?) Levin for + Carl Levin Producer: Jill Buckley + 1 videocassettes (U-matic) + 1985 November 14 + 1984 October 09 + 1071 + + + + + 175 -- GRAMM-RUDMAN -- news conf. on bill's final passage "Truth or + Consequences Act of 1985"; Democratic Media Center "Polish Vets + Levin" Buckley. + *Note: Time code mot in sequence; time code reads 0:00:00, shot between tapes + 8+9 + 1 videocassettes (U-matic) + 1985 December 11 or 1985 + December 12 + 1984 October 07 + 1071 + + + + + 176 -- AGRICULTURE -- apples as X-mas gift MI #2 Levin 8; Democratic + Media Center 9/10/84 Carl Levin Producer: Buckley t/c 8:00:00 Allen + Wrench + 1 videocassettes (U-matic) + 1985 December 12 + 1984 September 10 + 1984 October 07 + 1071 + + + + + 177 -- PACS -- Boren - Levin PAC amendment 12-3-85; + 1 videocassettes (U-matic; 0:02:15) + 1985 December 03 + 1071 + + + + + 179 -- GRAMM-RUDMAN/ARMS CONTROL -- year end news conference; Democratic + Media Center - Levin 1 people in mall 7 Oct. 1984 Tape 14 Buckley + 1 videocassettes (U-matic) + 1985 December 20 + 1984 October 07 + 1984 October 07 + 1071 + + + + + 180--Whistleblower Legislation + 1 videocassettes (U-matic) + 1986 January 22 + 1089 + + + + + 183 -- DEFENSE -- NBC clip of Levin/Weinberger in SASC hearing on '87 + budget + 1 videocassettes (U-matic) + 1986 February 05 + 1086 + + + + + 184 -- PHILIPPINES - news conf at Andrews AFB (2-16-86) after visit there + "Marcos should step down" + GMA (ABC) + 1 videocassettes (U-matic) + 1986 February 16 + 1986 February 17 + (1984 October 21?) + 1086 + + + + + 185 -- Philippines -- news conf, Marcos steps down + 1 videocassettes (U-matic) + 1986 February 25 / 1983 + November + 1055 + + + + + 187 -- DEFICIT REDUCTION -- National Association of Counties speech on + how to reduce the deficit relative to tax reform revenues + 1 videocassettes (U-matic) + 1986 March 03 / 1986 March + 03 / 1984 October 07 + 1086 + + + + + 188 -- DEFENSE -- SASC news conf on Joint Chiefs + reorganization + 1 videocassettes (U-matic) + 1986 March 06 + 1086 + + + + + 2. Sen Levin Floor Speeches + 1 videocassettes (VHS) + June 19 thru July + 28 + 1057 + + + + + 322 - Levin - State of the Union Triangle Response + 1 audiocassettes + 1985 February 06 + 1094 + + + + + 323 - Levin, Press Conf., Lansing, Reagan Budget, Farm Trip, + Autos + 1 audiocassettes + 1985 February 13 + 1094 + + + + + 324 - Levin Interviewed by Sen. Pryor Farm Trip + 1 audiocassettes + 1985 February 19 + 1094 + + + + + 325 - Levin Brothers, Farm News Conference, (post Trip), CL/Japanese + Autos + 1 audiocassettes + 1985 February 21 + 1094 + + + + + 327 - Levin Speaks to the American Jewish Congress + 1 audiocassettes + 1985 March 03 + 1094 + + + + + 329 - News Conference, Revolving door, MX reaction + 1 audiocassettes + 1985 March 19 + 1094 + + + + + 330 - Labor Department/FSC Rally + 1 audiocassettes + 1985 March 20 + 1094 + + + + + 331 - Japanese Auto Export Reaction + 1 audiocassettes + 1985 March 27 + 1094 + + + + + 332 - News Conf/Soviet trip canceled + 1 audiocassettes + 1985 April 08 + 1094 + + + + + 334 - News Conf/Japanese trade announcement + 1 audiocassettes + 1985 April 09 + March 25 + 1094 + + + + + 336 - Close Up Students + 1 audiocassettes + 1985 May 01 + 1094 + + + + + 338 - Levin Nitewatch CBS, Military Exchange + 1 audiocassettes + 1985 May 15 + 1094 + + + + + 339 - Revolving Door News Conference + 1 audiocassettes + 1985 May 22 + 1094 + + + + + 340 - UP Trip, TV13 WNMU Show + 1 audiocassettes + 1985 May 31 + 1094 + + + + + 341 - UP Trip, TV6, WLUC Show + 1 audiocassettes + 1985 May 31 or May + 30 + 1094 + + + + + 342 - Detroit News Conference + 1 audiocassettes + 1985 June 10 + 1094 + + + + + 343 - Levin Radio Show for MI Stations, Tax Reform, Water + Projects + 1 audiocassettes + 1985 June 14 + 1985 July 30 + 1094 + + + + + 344 - News Conference on Dept. of Trade Bill w/Sens. Roth, Eagleton & + Levin + 1 audiocassettes + 1985 June 26 + 1094 + + + + + 345 - Revolving Door News Conf. + 1 audiocassettes + 1985 July 26 + 1094 + + + + + 346 - Radio Show, Taxes, Wilderness, Hostages + 1 audiocassettes + 1985 July 26 or June + 26 + 1094 + + + + + 347 - Telephone News Conf., + 1 audiocassettes + 1985 August 01 + 1094 + + + + + 348 - Testimony, Pres. Dem. Primary Commission Detroit + 1 audiocassettes + 1985 August 10 + 1094 + + + + + 349 - Grand Rapids Trip Interviews + 1 audiocassettes + 1985 August 13 + 1094 + + + + + 350 - Grand Rapids Trip Interviews + 1 audiocassettes + 1985 August 13 + 1094 + + + + + 351 - News Conf., Lansing, + 1 audiocassettes + 1985 August 14 + 1094 + + + + + 352 - Lansing trip + 1 audiocassettes + 1985 August 14 + 1094 + + + + + 353 - Lansing trip + 1 audiocassettes + 1985 August 14 + 1094 + + + + + 355 - Superfund Interview + 1 audiocassettes + 1985 September 18 + 1094 + + + + + 356 - Warren Pierce, WJR, Deficit, Filibuster + 1 audiocassettes + 1985 October 07 + 1094 + + + + + 358 - News Conf., Capture of terrorists on Egyptian airliner + 1 audiocassettes + 1985 October 11 + 1094 + + + + + 359 - NPR's Morning Edition on Alex Kozinski + 1 audiocassettes + 1985 May 15 + 1094 + + + + + 360 - NPR's Morning Edition on Alex Kosinski + 1 audiocassettes + 1985 November 13 + 1094 + + + + + 364 - Audio/Spotlight on the News WXYZ-TV7 Issues of the Day + 1 audiocassettes + 1985 December 17 + 1094 + + + + + 365 - Tax Reform Interview, (DC) WDIV-TV4 DET + 1 audiocassettes + 1985 December 18 + 1094 + + + + + 366 - News Conf. Year Ender, Trade Statement New Zeeland Letter, Taxes, + GRM-RUD Accomplishments + 1 audiocassettes + 1985 December 20 + 1094 + + + + + 367 - New year news conf, Detroit + 1 audiocassettes + 1986 January 06 + 1094 + + + + + 369 - News Conf, Levin's deficit reduction tax poll + 1 audiocassettes + 1986 January 23 + 1094 + + + + + 370 - Levin's Democratic response to President's radio + address + 1 audiocassettes + 1986 January 25 + 1094 + + + + + 373 - Library Tape: 1) Wilderness Hearing; 2) Levin on Tax reform, floor + speech + gallery Q+A. Made: Oct 15, 1986 + 1 audiocassettes + 1986 October 02 + 1986 May 21 + Made: 1986 October + 15 + 1094 + + + + + 374 - Library Tape: 1) Monroe Newsweek intv; 2) TV in Senate intv; 3) + Riegle/Levin w/Bonds. + 1 audiocassettes + 1986 August 03 + 1986 June 24 + Tape Made: 1986 October + 15 + 1094 + + + + + 375 - Library Tape: Time span: April, June, July 1986 + 1 audiocassettes + 1986 June 20 + 1986 July 16 + 1986 April 10 + 1986 April 08 + made: 1986 October + 15 + 1094 + + + + + 376 - Library Tape: Time span: April May June + 1 audiocassettes + 1986 May 06 + 1986 May 07 + 1986 June 02 + 1986 May 01 + 1986 April 08. Made: 1986 + October 15 + 1094 + + + + + 377 - Library Tape: 1) Philippines News Conf. Day after return to office; + 2) DSCC News Conf. Detroit, Call on Libya + 1 audiocassettes + 1986 February 17 + 1986 March 24 + 1094 + + + + + 378 - Library Tape: 1) Philippines - news conf. after return Andrews AFB; + 2) Levin on Gramm - Rudman + TV in Senate VAW/GM Officials + 1 audiocassettes + 1986 February 16 + 1986 February 24 + made: 1986 October + 15 + 1094 + + + + + 379 - Library Tape: Time span + subj. matter: Feb. '86 + U.S. Trade + Policy speech at GMI + 1 audiocassettes + 1986 February 25 + Made: 1986 October + 15 + 1094 + + + + + 381 - Library Tape: Original tape. Kuzinsky Hearing + 1 audiocassettes + 1985 April 01 + 1094 + + + + + 382 - Library Tape: 1) Sen. Levin NAOC at Wash. Hilton; 2) INN Interview; + 3) Levin/Packwood Colloquay + 1 audiocassettes + 1986 March 03 + 1986 June 24 + 1986 June 04 + 1094 + + + + + 383 - Library Tape: 1) Levin-Bradley Exchange (raw feed); 2) + Levin-Bradley Exchange; 3) Tax Reform feed + 1 audiocassettes + 1986 June 19 + 1986 June 19 + 1986 June 20. Tape made: + 1986 October 15 + 1094 + + + + + 384 - Library Tape: 1) Tax Reform News Conf.; 2) Levin on tax + winners/losers; 3) Levin w/interview on Libya; 4) Levin on Contras + 1 audiocassettes + 1986 June 23 + 1986 June 23 + 1986 June 10 + 1986 April 14 + 1986 March 27. Tape made: + 1986 October 15 + 1094 + + + + + 385 - Library Tape:Speech before the Bay City Rotary on tax reform and + Q+A. Tape - original + 1 audiocassettes + 1986 July 02 + 1094 + + + + + 386 - Library Tape: 1) MI Farm Bureau; 2) Kickbacks (NYT); 3) Benac + Interview Kickbacks; 4) WBRN Grand Rapids; 5) Tax Reform; 4) Arab lobby; 6) Levin + on Libya + 1 audiocassettes + 1986 April 11 + 1986 September 08 + 1986 August 01 + 1986 March 25 + 1094 + + + + + 387 - Library Tape: Time span: April, June, July, August, Sept. + '86 + 1 audiocassettes + 1986 September 30 + 1986 June 23 + 1986 August 12 + 1986 June 23 + 1986 July 30 + 1986 July 10 + 1986 July 30 + 1986 August 08 + 1986 April 02 + 1986 April 07 + Tape made: 1986 October + 15 + 1094 + + + + + 388 - Library Tape: Time span: Sept. + Oct. '86 + 1 audiocassettes + 1986 September 08 + 1986 October 03 + 1986 October 03 + 1986 September 30 + 1986 October 01. Made: Oct. + 15 + 1986 + 1094 + + + + + 389 - Library Tape: 1) Levin Satellite Feed, Mich. Tech. Council; 2) + Welcome Home Pjeter Ivezaj + 1 audiocassettes + 1986 October 10 + 1986 October 15 + 1094 + + + + + 390 - Detroit Press Conf; Warren Pierce/Trade React; React RR Sp.; + Meese + 1 audiocassettes + 1986 October 20 + 1987 February 19 + 1987 March 04 + 1986 December 02 + 1094 + + + + + 391. Library Tape: 1) USS Stark/Reflagging 5-21-87; 2) Hart Building DGD; + 3) Inter. Warren Pierce + 1 audiocassettes + 1987 May 21 + 1096 + + + + + 392. Nunn's Floor Speech on ABM Treaty + 1 audiocassettes + 1987 March 11 + 1096 + + + + + 393. McNeil/Lehrer ABM/SDI Interview /c Cokie Roberts + 1 audiocassettes + 1987 March 24 + 1096 + + + + + 394. Speech to Physicians for Social Responsibility - Detroit. Lion + Recording Services + 1 audiocassettes + 1987 March 28 + 1096 + + + + + 395. Detroit News Conf + 1 audiocassettes + 1987 May 27 + 1987 June 15 + 1096 + + + + + 396. Interview Luther Jackson 1987. CL Talks to National Conf on Soviet + Jewry; CL on Floor - Homeless Amendment + 1 audiocassettes + 1987 March 08 + 1987 March 09 + 1096 + + + + + 397. NPR - Morning Edition - Levin on ABM Treaty + 1 audiocassettes + 1986 December 02 + 1096 + + + + + 398. Speech to Harvard Business Club of Detroit. + 1 audiocassettes + 1987 February 07 + 1096 + + + + + 399. DOD Organ Trans. Press Conf; NPA "Morning Edition" on DOD org. + Trans + 1 audiocassettes + 1987 August 13 + 1987 August 19 + 1096 + + + + + 400. Detroit Press Conf "Arms for Hostages" + 1 audiocassettes + 1986 November 10 + 1096 + + + + + 401. "All Things Considered" ABM Treaty + 1 audiocassettes + 1987 February 09 + 1096 + + + + + 402. WXYZ Spotlight Riegle/Levin + 1 audiocassettes + 1987 May 20 + May 22 + 1096 + + + + + 404. IV - BoB Lewis + 1 audiocassettes + 1987 January 22 + 1987 April 29 + 1987 April 30 + 1096 + + + + + 405. AIAA Def. Keynote + 1 audiocassettes + 1987 April 29 + 1096 + + + + + 406. IV with Mary McGrory (ABM) + 1 audiocassettes + 1987 February 18 + 1096 + + + + + 407. IV. w/Bruce Van Voorst of Time on Sofaer/[illegible]; CL/Weinberger + Exchange on Carriers + 1 audiocassettes + 1987 March 18 + 1987 January 12 + 1096 + + + + + 408. Inv/w Melissa Healy of US News ABM; Inv. w/Greenberger WSJ on + Sofaer + 1 audiocassettes + 1987 February 10 + 1096 + + + + + 409. "WGMS" "Capital Commentary"; CL IV on CNN - Indep. + Counsel + 1 audiocassettes + 1987 May 28 + 1096 + + + + + 410. McNeil-Lehrer Show w/Carl, Rep.Courter on ABM. + 1 audiocassettes + 1987 February 10 + 1096 + + + + + 412. Actuality/comments on Reagan address to nation on Iran + 1 audiocassettes + 1986 November 20 + 1096 + + + + + 413. Levin IV with Hal Cessna. + 1 audiocassettes + 1987 January 30 + 1096 + + + + + 415. IV with Richard Wolf (Gannett) on Wedtech + 1 audiocassettes + undated + 1096 + + + + + 416. IV with Janet Moore (CBS) Defense-sharing/Trade + 1 audiocassettes + 1987 March 06 + 1096 + + + + + 417. IV with ABC's Nightline on Wedtech + 1 audiocassettes + 1987 August 06 + 1987 July 29 + 1096 + + + + + 418. IV w/Michael Gordon (NYT) + 1 audiocassettes + 1987 February 27 + 1096 + + + + + 419. Iran/Arms/Hostages A=Channel 4-Live; B= Channel 2 Live. + 1 audiocassettes + 1986 November 14 + 1096 + + + + + 421. Press Conf MI-Reflagging; React to Highway Bill + 1 audiocassettes + 1987 March 27 + 1987 June 30 + 1096 + + + + + 423. Statement Following Passage of FY'88 DoD Auth in SASC; Gary + Hart/Campaign Ends + 1 audiocassettes + 1985 May 05 (1987 May + 05) + 1987 May 08 + 1096 + + + + + 424. IV w/Leslie Maitland (NYT) on Independent Counsel + 1 audiocassettes + 1987 March 06 + 1096 + + + + + 425. Reaction to S.O. Union; George Bush + 1 audiocassettes + 1987 January 27 + 1986 December 03 + 1096 + + + + + 5:00 p.m. News Channel(?) Friday. Bill Bonds. Played(?) again on 11 PM + News Channel (?) + 1 videocassettes (VHS) + 1989 November 10 + 1064 + + + + + ABC Brinkley + 1 videocassettes (VHS) + 1987 January 11 + 1067 + + + + + ABC Morning News Death Penalty/Former Justice Powell (Anti-Death Penalty) + Speech before American Bar Assoc. Conference + 1 videocassettes (VHS; 0:02:00) + 1988 August 08 + 1067 + + + + + ABC Net Pentagon sleaze + 1 videocassettes (VHS) + 1988 June 30 + 1067 + + + + + ABC News - Bush Statement on Ethics, CL reply + 1 videocassettes (VHS) + 1989 January 26 + 1090 + + + + + ABC News DPT ABC News Federal Compensation System + 1 videocassettes (VHS) + 1990(?) July + 1052 + + + + + ABC News Special: Defense Contractors + 1 videocassettes (VHS) + 1988 December 01 + 1067 + + + + + Ability Fair Trade Act + 1 audiocassettes + 1989 January 20 + 1100 + + + + + Andrea Mitchell Tower: Coflict of interest; Sun World New-Pay + Raise + 1 audiocassettes + 1989 February 06 + 1989 February 07 + 1097 + + + + + Arafat Speech 1 of 2 + 1 audiocassettes + 1988 December 13 + 1100 + + + + + Arafat Speech 2 of 2 + 1 audiocassettes + 1988 December 13 + 1100 + + + + + Assault Weapons Ban + 1 audiocassettes + 1990 May 23 + May 24 + 1099 + + + + + Auburn Hills, Rot. Lunch + 1 audiocassettes + 1989 December 18 + 1100 + + + + + Barbara Levin :30 Anti-Drug/ :30 Bicentennial PSAs + 1 audiotape (5 in.) + 1987 June + 1090 + + + + + Barbara Levin 2 P.S.A. + 1 videotape (2x :30, 1 in.) + 1987 June 30 + 1089 + + + + + Bill Bonds - Iran/Arms/Hostages + 1 videocassettes (U-matic) + 11/14 (on the record + paper) + 1092 + + + + + Bork Feed + interview w/OPI on D.C.; War Powers Act Post Newsweek and + Feed; ABC IND Counsel IV. + 1 audiocassettes + 1987 October 02 + 1987 June 10 + 1987 October 09 + 1987 October 14 + 1097 + + + + + Bork Statement; React to RR's signing G-R; Taxpayers Bill of + Rights + 1 audiocassettes + 1987 October 02 + 1987 September 29 + 1987 October 02 + 1097 + + + + + C. Levin Colonial Mold Tour + 1 videocassettes (U-matic) + 1990 April 10 + 1051 + + + + + C. Levin: Floor Statements + 1 videocassettes (VHS) + 1990 + 1064 + + + + + C. Levin: Misc. + 1 videocassettes (VHS) + 1990 + 1064 + + + + + C. Levin: National News + 1 videocassettes (VHS) + 1990 + 1064 + + + + + C. Levin: Satellite Feeds + 1 videocassettes (VHS) + 1990 + 1064 + + + + + C. Levin: State News + 1 videocassettes (VHS) + 1990 + 1064 + + + + + Calumet Nat'l Park + 1 audiocassettes + 1988 August 05 + 1988 December 30 + 1099 + + + + + Calumet Tape: Shot. #7 + 1 videocassettes (VHS) + 1989 August 19 + 1051 + + + + + Capitol Report WCMU-TV + 1 audiocassettes + 1989 March 22 + 1989 March 22 + 1989 March 26 + 1099 + + + + + Carl @ Rochester Adams H.S. + 1 audiocassettes + 1989 December 18 + 1095 + + + + + Carl Levin Floor Statement + 1 videocassettes (VHS) + 1989 October 06 + 1071 + + + + + Carl Levin GR WOTV 6:00 pm News + 1 videocassettes (VHS) + 1989 December 19 + 1064 + + + + + Carl Levin on INF with Post-Newsweek (Channel 4); CBS - Respond to + Reagan, "Arm Control" + 1 audiocassettes + 1987 August (?) 29 + 1987 September 18 + 1097 + + + + + Carl Levin Visit 2:50. Carl Levin Raw Footage/ #6 + 1 videocassettes (VHS) + 1989 August 14 + 1051 + + + + + Carl Levin visits Focus: HOPE + 1 videocassettes (VHS; 0:02:50) + 1989 August 14 + 1073 + + + + + Carl Levin/Pope John Paul II + 1 videocassettes (U-matic) + 1987 + 1107 + + + + + Carl Levin: Bill Bonds "Up Front" segment Topic: USS Vincennes / Armed + Services hearing + 1 videocassettes (VHS) + 1988 September + 1065 + + + + + Carl talks on economics [illegible] official + 1 audiocassettes + 1987 October 31 + 1097 + + + + + Carl talks to [illegible] + 1 audiocassettes + 1988 November 24 + 1097 + + + + + Carl. WLNS-TV6, live + 1 videocassettes (VHS; 0:05:30) + 1990 January 16 + 1064 + + + + + Carl's Reaction to Noriega Surrender. Channel 12 WJRT (Flint) 6:00 + + 11:00 PM News + 1 videocassettes (VHS) + 1990 January 04 + 1064 + + + + + Carl's Speech - Renaissance Health Care, Inc. Luncheon + 1 audiocassettes + 1989 November 28 + 1100 + + + + + Catastrophic Health Care Press Conf. Audio Dub Prom DPC + 1 audiocassettes + 1989 May 31 + 1097 + + + + + CBS (on 57) IV biological A. Warfare research + 1 audiocassettes + 1987 March 09 + 1097 + + + + + CBS Evening News. Bill Plante/ Star Wars + 1 videocassettes (U-matic; 1:53:00) + 1987 December 30 + 1088 + + + + + CBS Morning News Sat. Feed 8/31/90; Sat. Feed 9/4/90 + 1 videocassettes (VHS) + 1990 August 31 + 1990 September 04 + 1064 + + + + + CBS Morning News: Persian Gulf satellite Feed + 1 videocassettes (VHS) + 1990 September 10 + 1064 + + + + + CBS News Tower: -Problem Drinking; -Womanizer. Bush: -Ethics. Pay Raise. + Tower story you requested + 1 videocassettes (VHS) + 1989 February 02 + 1064 + + + + + CBS News: CL questioning Tower's foreign contracting for British + Aerospace + 1 videocassettes (VHS; 0:28:00) + 1989 February 09 + 1090 + + + + + CBS News: Whistleblower protection to be aired weekend of + 3-11-89 + 1 audiocassettes + 1989 March 09 + 1097 + + + + + Cherry Growers + 1 audiocassettes + 1990 April 14 + 1100 + + + + + CL - [illegible] - Control report 11-18-87; John Holusha NYT-VRAS CL on + DoDauth conf [illegible] - 11-19-87 + 1 audiocassettes + 1987 November 18 + 1987 November 19 + 1097 + + + + + CL - Israel Bonds Dinner + 1 audiocassettes + 1988 September 11 + 1097 + + + + + CL @ TV 12 News GMI. FOP + 1 videocassettes (VHS) + 1990 March 22 + 1095 + + + + + CL addresses MI Farm Bureau (folo'd GMA appearence). Loc: + D.C. + 1 audiocassettes + 1989 March 16 + 1097 + + + + + CL and Wright on OMB + 1 audiocassettes + 1987 June 24 + 1097 + + + + + CL Floor Statement on SDI/Bush + 1 audiocassettes + 1988 September 08 + 1988 September 09 + 1099 + + + + + CL Gulf War, Weapons + 1 audiocassettes + 1989 September 06 + 1100 + + + + + CL in Sen. Chamber: Trade Bill + 1 audiocassettes + 1988 April 27 + 1097 + + + + + CL Int. w/WHSB + 1 audiocassettes + 1989 December 04 + 1100 + + + + + CL iv w/P. Towel on objectives of Cov. Subcommittee + 1 audiocassettes + 1987 March 11 + 1097 + + + + + CL on "Face the Nation" (Ethics) + 1 videocassettes (VHS) + 1988 January 03 + 1067 + + + + + CL on 40th Anniv. of Israel + 1 audiocassettes + 1988 April 21 + 1097 + + + + + CL on budget impasse;(?) Ch. 2, Taped + 1 videocassettes (VHS) + 1990 October 07 + 1072 + + + + + CL on Ed Meese + 1 audiocassettes + 1988 March 29 + 1100 + + + + + CL on Jim Abbott; B1 Bomber Interview + 1 audiocassettes + 1988 September 29 + 1988 October 04 + 1097 + + + + + CL on Michigan Primary + 1 audiocassettes + 1988 March 23 + 1988 March 24 + 1099 + + + + + CL on Mitchell - Senate Majority Race + 1 audiocassettes + 1988 November 29 + 1097 + + + + + CL on WXYZ-TV Live to Tape - Tanks, Medical Waste + 1 audiocassettes + 1988 October 12 + 1100 + + + + + CL P.C. on Great Lakes spills + 1 audiocassettes + 1990 April 19 + 1099 + + + + + CL Press Conf.: Meese resignation + 1 videocassettes (VHS) + 1988 July 05 + 1067 + + + + + Cl Radio Conf. Call + 1 audiocassettes + 1988 April 29 + 1988 May 27 + 1097 + + + + + CL reax to '89 Def. Bill; CL reax to Veto Plant Closing Bill + 1 audiocassettes + 1989 + 1100 + + + + + CL reax to Bush/ Panama situation + 1 audiocassettes + 1989 May 11 + 1097 + + + + + CL reax to Libyan planes shot down by US F-14's (from video) + 1 audiocassettes + 1989 January 04 + 1097 + + + + + CL reax to troops sent to Honduras + 1 audiocassettes + 1988 March 17 + 1097 + + + + + CL testifies to SASC on Conventional balance + 1 audiocassettes + 1987 January 27 + 1097 + + + + + CL to AP/Flesher Re: Death Penalty; CL - Chaffee Amend. + 1 audiocassettes + 1989 October 26 + 1100 + + + + + Clean Air Radio Inrv's Budget Reax + 1 audiocassettes + 1990 March 01 + 1990 January 30 + 1099 + + + + + CNN Ed Meese + 1 audiocassettes + 1988 July 06 + 1100 + + + + + Cnn interview on adoption registry; CL on Bentson/Quayle Debate; NPR on + def budget + 1 audiocassettes + 1988 September 30 + 1988 October 05 + 1988 October 07 + 1097 + + + + + CNN Interview. Ethics in Gov-T + 1 audiocassettes + 1988 September 16 + 1097 + + + + + CNN inv. on desert warfare + 1 audiocassettes + 1990 September 14 + 1099 + + + + + CNN Newsmakers: Defense spending Interview + 1 audiocassettes + 1990 July 17 + 1990 July 13 + 1099 + + + + + CNN Persian Gulf Crisis. Carl Levin + 1 videocassettes (VHS) + 1990 October 23 + 1090 + + + + + Complete Levin Coverage. Compiled by Dave Anderson + 1 videocassettes (VHS) + 1990 March - 1990 May + 1064 + + + + + Concept Associates "Political Demo 1989" + 1 videocassettes (VHS) + 1989 + 1051 + + + + + Copper Country Today + 1 audiocassettes + 1989 July 31 + 1100 + + + + + Corunna disaster relief; Duke v. Bush debate reax + 1 audiocassettes + 1988 September 23 + 1988 September 25 + 1097 + + + + + Cox - Levin Sun. 1 - on[illegible] Motaga + 1 videocassettes (VHS; 0:28:04) + 1988 June 01 + 1090 + + + + + Cross Fire Brentar, Naz: Ties + 1 videocassettes (VHS) + 1988 September 14 + 1067 + + + + + Crossfire on Bush. panel + 1 audiocassettes + 1988 September 14 + 1100 + + + + + D. L.'s Meese Tape + 1 videocassettes (VHS) + undated + 1057 + + + + + Det. News Interview; Press Briefing + 1 audiocassettes + 1988 October 21 + 1097 + + + + + Detroit Eco. Speech; Intv. w/Mike Thorp WTRX Flint + 1 audiocassettes + 1987 September 14 + 1987 October 16 + 1099 + + + + + Detroit Free Press - Tax Bill of Rights. Reporter: Dennis Niemic, phoner; + Whestle briefing with print reporters day of bill'd passage + 1 audiocassettes + 1989 March 15 + 1989 March 16 + 1097 + + + + + Detroit News Conference: Meese, Israel, PLO, Hart, Simon, Dukakis, Press + Primary, Israel, Nicaragua; Bork nomination, Kuwait Reflagging, Reagan Arms + Control + 1 audiocassettes + 1987 December 23 + 1097 + + + + + Donna Cassata Aftermath of Tower: legis. agenda + 1 audiocassettes + 1989 March 31 + 1097 + + + + + Dreyfuss Law Live + 1 audiocassettes + 1990 July 03 + 1095 + + + + + Drought/Perot/Postal + 1 audiocassettes + 1988 June 22 + 1100 + + + + + Dub Feed + Statement CL on Tower For Willie + 1 videocassettes (VHS) + 1989 March 02 + 1065 + + + + + Duk. Levin statement. Master: A B + C + 1 videocassettes (U-matic) + 1988 August 12 + 1090 + + + + + Ed; Bd. Petosky News Review + 1 audiocassettes + 1990 May 30 + 1099 + + + + + Edited audio from video interview on Stealth Tanks Tea Bag + 1 audiocassettes + 1989 January 06 + 1097 + + + + + Ethics/Pay Raise + 1 audiocassettes + 1989 November 16 + 1100 + + + + + Excerpts fr. Adoption; INF Treaty, Wilson/Sun World News + 1 audiocassettes + 1988 January 27 + 1988 May 25 + 1099 + + + + + Failed Noriega Coup: Armed Services briefing. Sen. Carl Levin (also + available on VHS) + 1 videocassettes (U-matic) + 1989 October 06 + 1090 + + + + + Final edition 1. Pay Raise; 2. Honorarium; 3. Tanks; 4. Stealth. Airport + Service bite: Jackson - WKHM; Iron Mt. - WJNR; Iron. Mt. + 1 audiocassettes + 1989 January 09 + 1989 January 17 + 1097 + + + + + Final vote: Tower (CL Sen. Floor Speech); CL to M. Allen/ Mining Journal. + Phoner, re: KI Sawyer + Stealth + 1 audiocassettes + 1989 March 09 + 1097 + + + + + First Tuesday: 1989 Demo Reel + 1 videocassettes (VHS) + 1989 + 1090 + + + + + Flint Chamber of Commerce + 1 audiocassettes + 1988 April 07 + 1097 + + + + + Floor Statement. CL on Tower nomination + 1 videocassettes (VHS) + 1989 March 02 + 1090 + + + + + Floor Statement: NCAA Championship, + 1 audiocassettes + 1989 April 04 + 1097 + + + + + Floor Statements/C. Levin + 1 videocassettes (VHS) + 1989 + 1051 + + + + + From Morning Edition DoD [illegible] + 1 audiocassettes + 1987 August 14 + 1097 + + + + + Front Lines. WOTV - Grand Rapids, Channel 8 - Drug Legalization. CL + refused invu invite + 1 videocassettes (VHS) + 1989 November + 1090 + + + + + Georgo Mitchell Newsmaker Luncheon + 1 videocassettes (VHS) + 1989 December 01 + 1071 + + + + + GMA inter: MEESE + 1 audiocassettes + 1988 July 06 + 1097 + + + + + Gorbachev UN visit; CL/David Broder + 1 audiocassettes + 1988 December 07 + 1991 December 04 + 1099 + + + + + Gordon Kerr - NYTimes + 1 audiocassettes + 1988 March 24 + 1097 + + + + + Gov Affairs Hearing -"Indep. Counsel" + 1 videocassettes (VHS) + 1987 March 19 + 1067 + + + + + Grand Rapids Focus Group. Men + 1 videocassettes (VHS) + 1989 June 29 + 1058 + + + + + Grand Rapids Focus Group. Women + 1 videocassettes (VHS) + 1989 June 29 + 1058 + + + + + Great Lakes Hearing Audio + 1 audiocassettes + 1990 June 13 + 1990 August 07 + 1099 + + + + + Great Lakes' Watch on Washington. Topic: Bush and the + Environment + 1 videocassettes (VHS; 0:27:30) + 1989 August + 1051 + + + + + Greg Weaver and Ted Douglas - Detroit News + 1 audiocassettes + 1988 September 08 + 1097 + + + + + H. Ross Perot interview - Re: Persian Gulf Crisis on the "MacNeil Lehrer + News Hour" + 1 videocassettes (VHS; 0:11:00) + 1990 December 06 + 1064 + + + + + Helen Dewar/WP CL on Pentagon Scandal + 1 audiocassettes + 1988 June 21 + June 29 + 1099 + + + + + Inauguration Day: CL reax WWJ; sate. feed. WNEN/Saginaw; + WLIX/Lansing + 1 audiocassettes + 1989 January 20 + 1097 + + + + + INF Treaty - Arms Control/Strategic Weapons; eV UP Dewar on arms + treaties + 1 audiocassettes + 1987 November 30 + November 24 + 1097 + + + + + Int. w/Mary Sue Detloff - Calumet + 1 audiocassettes + 1988 August 08 + 1100 + + + + + Interview: Ch. 50 - Minimum Wage, James Quello; Calumet Copper Country, + 1) Rotunda-taped statement; 2) CL on 15+100 days (Det News 4/21/84); 3) Gordon and + Mike Clements on poll 4-24-89 + 1 audiocassettes + 1989 April 11 + 1989 April 20 + 1097 + + + + + Interview: U.S. Senator Carl Levin Trenton High School + 1 videocassettes (VHS) + 1989 December 05 + 1064 + + + + + IPA the Editing House: Political Media & Strategy. Axelrod & + Associates + 1 videocassettes (VHS; 0:14:43) + 1989 April 05 + 1051 + + + + + Iuri/Wallenberg + 1 videocassettes (U-matic) + 1987 October 08 + 1090 + + + + + iv by Bill Nell for Rick Smith on ABM Treaty + 1 audiocassettes + 1987 February 09 + 1097 + + + + + IV w/Ch.4 - Summit; IV w/Bush; CL vs Quagle on INF McNeil - + Lehrer + 1 audiocassettes + December 03 + December 04 + 1987 December 09 + 1097 + + + + + IV w/Ch.50 + 1 audiocassettes + 1987 November 15 + 1097 + + + + + IV w/Soviet TV before Summit + 1 videocassettes (VHS) + 1987 + 1089 + + + + + iv with Bill Bonds; Farm Asst. Actuality + 1 audiocassettes + 1987 January 12 + 1987 January 27 + 1097 + + + + + iv with NPR on ABM + 1 audiocassettes + 1986 December 01 + 1097 + + + + + iv with Tim Bovee + 1 audiocassettes + 1987 September 11 + 1097 + + + + + J.P. McCarthy on Tower; WWJ - Middays: Tower, etc + 1 audiocassettes + 1989 February 27 + 1989 March 13 + 1097 + + + + + Jack Naudi. GR Press Ed. Writer on Saudi Video + 1 audiocassettes + 1990 September 12 + 1990 January 26 + 1099 + + + + + JOA approved; Drought Bill + 1 audiocassettes + 1988 August 08 + 1988 July 28 + 1097 + + + + + Kalamazoo Air Show - Soviet/Blue Angels Exchange + 1 videocassettes (VHS) + 1990 July 08 + 1076 + + + + + LA Times interv. + 1 audiocassettes + 1988 July 22 + 1100 + + + + + Lawrence Institute of Technology: Detroit Economic Club. Sen. Carl + Levin + 1 videocassettes (VHS) + 1987 September 14 + 1090 + + + + + Legalize Drugs TV-50. Carl for Macomb County + 1 videocassettes (VHS) + 1989 December 20 + 1090 + + + + + Levin - D'Amato - Wilson Sen Fl. debate over death penalty. Ciquore(?) + 000-1820 + 1 videocassettes (VHS; 1:14:00) + 1988 June 08 + 1067 + + + + + Levin - Gov't Affairs: 3/4" Tapes 1 THRU 5. 26415 O SRS. + 1 videocassettes (VHS; 1:55:00) + 1987 July 09 + 1076 + + + + + Levin - Gov't Affairs: 3/4" Tapes 6 THRU 8. 26415 O SRS + 1 videocassettes (VHS; 1:00:00) + 1987 July 09 + 1076 + + + + + Levin #3 Kirklark (?) Hearing + 1 videocassettes (U-matic) + 11-Jun + 1088 + + + + + Levin #4 C443 Bridge Findings + 1 videocassettes (U-matic) + 1990 January 18 + 1052 + + + + + Levin iv with George Weeks on Weinberger + 1 audiocassettes + 1987 January 12 + 1097 + + + + + Levin Mich B of Ed Q+A + 1 videocassettes (Betacam) + 28-Jan + 1086 + + + + + Levin News Conf + 1 audiocassettes + 1986 November 25 + 1097 + + + + + Levin Post Election News Conf + 1 audiocassettes + 1986 November 05 + 1097 + + + + + Levin Trade Speech + 1 videocassettes (U-matic; 0:05:41) + 1990 April 11 + 1072 + + + + + Levin wedtec hrng out at 10:19 A + 1 videocassettes (U-matic) + 1987 September 09 + 1105 + + + + + Levin WedTech Hrng Tape #1 out at 9:55A + 1 videocassettes (U-matic) + 1987 September 09 + 1105 + + + + + Levin wedtech PYATT Tape #1 cuts + 1 videocassettes (U-matic) + 30-Sep + 1105 + + + + + Levin Wedtech Pyatt Tape #2 + 1 videocassettes (U-matic) + 30-Sep + 1105 + + + + + Levin Wedtech Tape #3 + 1 videocassettes (U-matic) + 30-Sep + 1105 + + + + + Levin/Nunn Amendment. Floor Debate 5-13-87 begins 3 minutes in. Floor + Debate 5-14-87 begins 15 minutes in 5-15-87 30 min. in + 1 videocassettes (VHS) + 1987 May 13 + 1987 May 14 + 1987 May 14(/15?) + 1067 + + + + + Levin: CBS Evening News 'Super 301'/Japan Trade (CL+Specter) featuring + Levin. 27468 SRS + 1 videocassettes (VHS; 0:04:00) + 1990 April 27 + 1076 + + + + + Levin: NBC News + 1 videocassettes (VHS; 0:22:30) + 1990 September 05 + 1990 September 06 + 1064 + + + + + Levin: News Conf. + 1 videocassettes (U-matic) + 1986 June 16 + 1090 + + + + + Levin: News Segments + 1 videocassettes (VHS) + 1990 April 03 + 1095 + + + + + Levin: PSA - Drugs/Kids + 1 videocassettes (VHS) + 1990 May 09 + 1064 + + + + + Levin: State Office Video & Audio + 1 videocassettes (U-matic) + 1985 July 31 + 1086 + + + + + Levin: The Sai Story. 26808 SRS + 1 videocassettes (U-matic; 0:09:10) + 1990 March 01 + 1075 + + + + + Levin: WLNS-TV6 Lansing - Trape Teasen + Story + 1 videocassettes (VHS) + 1986 January 20 + 1088 + + + + + Levin-Riegle Interview with Bill Bonds - Channel 7 Live at + Five + 1 videocassettes (VHS) + 1986 June 24 + 1057 + + + + + Levin's comments on Persian Gulf + 1 audiocassettes + 1987 September 18 + 1987 September 22 + 1097 + + + + + Library Levin: Iacocca/Ken Bode; Carl's "ought" G-R Statement; CBS + Evening News Tax Reform (Repeated); M.S. - PSA; Nightwatch (CBS) Levin/Danfort; + Don't Rush Tax Reform Conf. Approval + 1 videocassettes (VHS) + 1986 July 24 + 1986 June 24 + 1986 June 24 + July 28 + 1057 + + + + + Live at 5 WXYZ (Bill Bonds); IV with Nat. Jour. (OMB) + 1 audiocassettes + 1989 May 18 + 1989 September 19 + 1987 January 31 + 1097 + + + + + Live-to-Tape INVUs on Budget and Lives + 1 videocassettes (VHS) + 1990 October 09 + 1064 + + + + + Lobbying reform/ gift ban passage + 1 audiocassettes + 1985 July + 1100 + + + + + MacNeil/Lehrer CL & Meese + 1 videocassettes (VHS) + 1988 July 07 + 1067 + + + + + MacNeil/Lehrer Topic: FSX, includes CL's Floor Statement + 1 videocassettes (VHS) + 1989 May 16 + 1064 + + + + + MacNeil/Lehrer Topic: Tower Nomination inc. CL floor + statement + 1 videocassettes (VHS) + 1989 March 02 + 1064 + + + + + MacNeil/Lehrer: -Richard Dorman confirmation hearing "walk like a duck, + quack like a duck, than it is a duck." - CL questions Darman Bush's intention on + using Taxes + 1 videocassettes (VHS) + 1989 January 19 + 1064 + + + + + Master Wedtech Video + 1 videocassettes (U-matic) + 1988 May + 1105 + + + + + McNeil-Lehrer Show; US-Canadian + 1 audiocassettes + 1988 September 15 + 1097 + + + + + McNeil-Lehrer: Oversight/Hud Scandal + 1 videocassettes (VHS) + 1989 October 09 + 1064 + + + + + Media Conf. Call- Mixed Media + 1 audiocassettes + 1989 July 17 + December 07 + 1990 December 28 + 1099 + + + + + Media Conf. Call Radio & Newspaper + 1 audiocassettes + 1989 June 15 + 1100 + + + + + Media Group "Carl Levin" 16 mm Sync Xfer + 1 videocassettes (U-matic) + 1990 May 18 + 1060 + + + + + Media Phone Interviews + 1 audiocassettes + 1986 April 21 + 1097 + + + + + Meese Press Conf. + 1 audiocassettes + 1988 July 05 + 1988 July 06 + 1099 + + + + + Meese: Today Show Interview; JP McCarthy Interview - Persian Gulf, WWCK + Vets Fundraiser + 1 audiocassettes + 1988 July 06 + 1988 July 07 + 1097 + + + + + Meeting w/Monroe Supervisors, Mayors (side 2); Souther Wayne County + Chamber of Commerce (side 1) + 1 audiocassettes + 1990 January 08 + 1990 January 08 + 1097 + + + + + MI Farm Radio Network + 1 audiocassettes + 1988 June 20 + 1100 + + + + + Mich. at risk + 1 videocassettes (VHS) + 1989 + 1072 + + + + + Michigan Farm Bureau Speech + 1 videocassettes (VHS) + 1990 March 29 + 1095 + + + + + Midland Chamber + 1 audiocassettes + 1987 October 19 + 1097 + + + + + Midland Dem. Dinner + 1 audiocassettes + 1990 January 05 + 1100 + + + + + Misc. C. Levin + 1 videocassettes (VHS) + 1989 + 1051 + + + + + MX Coverage Kel's Copy + 1 videocassettes (VHS) + 1989 November 29 + 1090 + + + + + National Journal on Radio 20 Minute pre-pilot (P) 1987 Radio Show + Company + 1 audiocassettes + 1987 March 06 + 1085 + + + + + National News C. Levin + 1 videocassettes (VHS) + 1989 + 1051 + + + + + Nat'l Guard Speech Detroit. #8 + 1 videocassettes (VHS) + 1989 September 23 + 1051 + + + + + NBC - trade pact. NY Canada; Intrview w/McCarthy - Stand(?) + 1 audiocassettes + 1988 January 06 + 1097 + + + + + NBC News: Barbara Bush Interview -Liberal comment- + 1 videocassettes (VHS) + 1989 November 15 + 1058 + + + + + Network News Broadcasts: Tower + 1 videocassettes (VHS) + 1989 February 23 + 1989 February 24 + 1064 + + + + + Network News: 1. ABC - No CL, Tower; 2. NBC - CL floor statement on + Tower; 3. CBS - No CL, Tower + 1 videocassettes (VHS) + 1989 March 02 + 1090 + + + + + News Conf Europe/Poland + 1 audiocassettes + 1988 February 22 + 1097 + + + + + News Conf on [illegible] balance + 1 audiocassettes + 1988 January 20 + 1097 + + + + + News Conf Saginaw (Gulf) + 1 audiocassettes + 1987 October 19 + 1097 + + + + + Nightline/Wedtech piece + 1 videocassettes (VHS) + 1987 December 22 + 1105 + + + + + Nightline; Defense spending; interview unedited + 1 audiocassettes + 1988 November 21 + 1097 + + + + + Nunn; CL on NBC Topic: Tower; Interviews: 1. S & L, 2. Trade, 3. + Burden Sharing (from our audiotape) + 1 audiocassettes + 1989 February 22 + 1989 January 26 + 1097 + + + + + NY Times Interview: David Johnston + 1 audiocassettes + 1988 April 13 + 1097 + + + + + Off the Record + 1 videocassettes (VHS) + 1990 April 13 + 1064 + + + + + Opening Remarks Macomb County Drug Forum + 1 audiocassettes + 1990 February 13 + December 16 - 1992 December + 17 + 1101 + + + + + P.A.C. 45th Anniversary at PNA. Master 2 HRS + 1 videocassettes (VHS; 2:00:00) + 1989 October 01 + 1051 + + + + + Pentagon briefing on Stark + 1 audiocassettes + 1987 May 18 + 1097 + + + + + Pet payoff: Washington, D.C. Sen. Levin, Sen. Wirth + 1 videocassettes (U-matic) + 1990 July 20 + 1095 + + + + + Post-Newsweek - SCOTVS Sentiments about someone on phone; Levin: + Interview about Gindesburgh's use of marijuana + 1 audiocassettes + 1987 November 09 + 1097 + + + + + Pres. Iran Arms/Hostages Press Conf; Radio/TV Gallery + 1 audiocassettes + November 14 + November 11 + 1097 + + + + + Press Conf. - Carlucci: Base closings + 1 audiocassettes + 1989 January 05 + 1097 + + + + + Press Conf. Levin (1) P.C. - yr. ender (incl. Riegle). + 1 videocassettes (U-matic) + 1989 November 30 + 1064 + + + + + Press Conf: Great Lakes Dumping + 1 audiocassettes + 1988 September 12 + 1988 September 15 + 1099 + + + + + Prince William Sound, Pre Spill Wildlife, Oiled Wildlife Capture, Bird + & Mammal Rehab, Greenpeace Action. - Video Labs Corporation + 1 videocassettes (U-matic) + 1989 April 06 + 1075 + + + + + Radio Address + 1 audiocassettes + 1988 July 30 + 1100 + + + + + Radio Conference Call WSOO, WBRN, WXOX, WUOM, WCUZ + 1 audiocassettes + 1989 March 10 + 1097 + + + + + Radio Show + 1 audiocassettes + 1988 September 23 + 1100 + + + + + React to Veto Override Vote; Mi. Farm Bur. Brkfs Remarks + 1 audiocassettes + 1987 April 01 + 1987 April 02 + 1097 + + + + + Reaction to Shuttle explosion + 1 audiocassettes + 1986 January 28 (?) + 1094 + + + + + Reagan Veto of DoD Authorization Bill + 1 audiocassettes + 1988 August 03 + 1097 + + + + + Reax to Bush Refusal to debate (E. Lansing) camp & wood Cable TV reg + bill + 1 audiocassettes + 1988 September 22 + 1100 + + + + + S.W.C.C.C. Legislative Forum Breakfast Senator Carl Levin + 1 videocassettes (VHS) + 1990 January 08 + 1057 + + + + + Sat. Interv. Evaluation of 100th congress + 1 audiocassettes + 1988 October 21 + 1100 + + + + + Satelite Feeds C. Levin + 1 videocassettes (VHS) + 1989 + 1051 + + + + + Satellite Feed: Tower; Floor Statement; Whistleblower Agreement + briefing + 1 audiocassettes + 1989 February 24 + 1989 March 02 + 1989 March 07 + 1097 + + + + + Sen Carl Levin Nightwatch. Crew Kanner + 1 videocassettes (U-matic) + 1986 June 25 + 1072 + + + + + Sen Levin 89/90 + 1 videocassettes (VHS) + 1989 December 20 + 1051 + + + + + Sen Levin CBS Spot Tax Reform 2:20 + 1 videocassettes (U-matic; 2:20) + 1986 June 24 + 1072 + + + + + Sen Levin w/ Hal Sessna + 1 audiocassettes + 1987 July 30 + 1096 + + + + + Sen. Carl Levin - Alpena Community College + 1 videocassettes (VHS) + 1988 May 04 + 1067 + + + + + Sen. Carl Levin - Failed Noriega Coup(?) (3/4" Also + Available) + 1 videocassettes (VHS) + taped: 1989 October + 06 + 1071 + + + + + Sen. Carl Levin at Chuck & Sally Chalgian's COPY -- Gordon + Kerr's + 1 videocassettes (VHS) + 1989 July + 1072 + + + + + Sen. Levin - Macomb County Prosecutors Assoc. Luncheon + 1 audiocassettes + 1989 December 04 + 1095 + + + + + Sen. Levin - Press Conf. Tape 1. Super 301 + 1 videocassettes (U-matic) + 1990 April 27 + 1095 + + + + + Sen. Levin - Wedtech Scandal investigation + 1 videocassettes (VHS) + undated + 1069 + + + + + Sen. Levin Floor Statement + 1 audiocassettes + 1988 June 09 + 1988 July 12 + 1097 + + + + + Sen. Levin on "Reflections" - East Detroit Cable Show + 1 videocassettes (VHS) + 1989 December 04 + 1071 + + + + + Sen. Levin on I.N.F. Senate Radio/TV Gallery; IV w/CBS on Wedtech. Ford's + death + 1 audiocassettes + 1987 September 18 + 1987 September 29 + 1096 + + + + + Sen. Levin. ABC News - Independent Counsel Report. Meese Story; CBS + Michigan Beach Erosion + 1 videocassettes (VHS) + 1988 June 13 + 1067 + + + + + Sen. Levin: Gloria Mayorga/Channel 50 + 1 videocassettes (VHS) + 1988 August 12 - + rec + 1067 + + + + + Sen. Levin: The S.A.I. Story + 1 videocassettes (VHS; 0:22:00) + 1990 January 08 + 1064 + + + + + Senate Bicentennial Commemoration. #3 + 1 videocassettes (VHS) + 1989 April 06 + 1051 + + + + + Senator Carl Levin -- Insider's View + 1 videocassettes (U-matic; 10:00) + 1985 August 02 + 1086 + + + + + Senator Carl Levin: House Party @ Sheriff Hackels + 1 videocassettes (VHS) + 1989 November 13 + 1071 + + + + + Senator Carl Levin: Visit to Flint Michigan, Atherton East Public + Housing. (Tenkai Library Case) + 1 videocassettes (VHS; 1:17:00) + 1989 November + 1989 December 01 + 1989 May 08 + 1051 + + + + + Senator Levin - WZZM, Ch. 13, Grand Rapids. Topic: Drugs + 1 videocassettes (VHS) + 1989 August 15 + 1064 + + + + + Senator Levin Feed Library. #1 + 1 videocassettes (VHS) + 1987 January 06 (?) + 1051 + + + + + Small Bus, I, I&P Sub(?) Hearing on GEO Spec. + 1 videocassettes (VHS) + 1987 April 07 + 1067 + + + + + Speech - Nat'l Ass. of Towns and Townships + 1 audiocassettes + 1988 September 09 + 1097 + + + + + Speech to Conv. Def. Alliance Flint + 1 audiocassettes + 1988 June 02 + 1100 + + + + + Speech to Dow Chemical Workers, Q & A + 1 audiocassettes + 1988 January 22 + 1988 January 21 + 1099 + + + + + Spotlight News w/Carl About Summit + 1 videocassettes (VHS) + 1990 May 12 + 1072 + + + + + Spotlight on News + 1 audiocassettes + 1988 January + 1099 + + + + + Spotlight on the News + 1 audiocassettes + 1988 January 10 + 1097 + + + + + State News C. Levin + 1 videocassettes (VHS) + 1989 + 1051 + + + + + State of Union Reax + 1 audiocassettes + 1988 January 25 + 1097 + + + + + Statements from Carls U.P. Visit + 1 audiocassettes + 1988 May 02 + 1100 + + + + + Stealth Bomber - K.I. Sawyer Base; CL reax to Ethics Bill Veto (ABC + Radio); + 1 audiocassettes + 1988 November 22 + 1988 November 23 + 1097 + + + + + Struble - Totten "Senator Levin" negative transfer camera rolls + 1,2,9 + 1 videocassettes (U-matic; 0:21:00) + undated + 1060 + + + + + Struble - Totten "Senator Levin" Negative Transfer camera rolls + 3&4. + 1 videocassettes (U-matic; 0:17:00) + undated + 1060 + + + + + Struble - Totten "Senator Levin" negative transfer camera rolls + 5&6 + 1 videocassettes (U-matic; 0:18:00) + undated + 1060 + + + + + Struble - Totten "Senator Levin" negative transfer camera rolls + 7&8 + 1 videocassettes (U-matic; 16:30:00) + undated + 1060 + + + + + Struble & Totten "Senator Carl Levin" negative transfer C.R. + 1,2,3 + 1 videocassettes (U-matic; 0:28:30) + undated + 1060 + + + + + Struble & Totten "Senator Carl Levin" negative transfer C.R. 2 Redo + Takes 2&3 + 1 videocassettes (U-matic; 0:10:00) + undated + 1060 + + + + + Struble & Totten "Senator Carl Levin" negative transfer c.r. + 4,5,6,7 + 1 videocassettes (U-matic; 0:31:00) + undated + 1060 + + + + + Struble Totten - Presentation Reel. The Media Group + 1 videocassettes (VHS) + 1989 April 03 + 1058 + + + + + Struble Totten Communications 1989 Demo Reel + 1 videocassettes (VHS; 0:17:15) + 1989 + 1051 + + + + + Sunday CBS Wkend News CL, on Korea Troop Reductions/Burden - + sharing + 1 videocassettes (VHS) + 1989 October 15 + 1064 + + + + + Super 301 Reax Press Conf. Spector/Levin + 1 audiocassettes + 1990 April 27 + 1099 + + + + + Swearing - in Session; Whistleblower - Senate Gallery; Libyan jet + situation + 1 audiocassettes + 1989 January 03 + 1989 January 03 + 1989 January 04 + 1097 + + + + + Tank Plant B-Roll + 1 videocassettes (U-matic; 0:01:30) + 1990 + 1052 + + + + + Tape #1 Levin Kickback Hearing(?) + 1 videocassettes (U-matic) + 11-Jun + 1055 + + + + + Tape #2 Levin Kickback Hearing + 1 videocassettes (U-matic) + 11-Jun + 1055 + + + + + Tape #3 Levin Wedtch Hrng out at 11:00 A + 1 videocassettes (U-matic) + 1987 September 09 + 1105 + + + + + Tape #4 Levin wedtech Templeman SBA out at 11:35 A + 1 videocassettes (U-matic) + 9-Sep + 1105 + + + + + Tape #5 Levin Wedtech + 1 videocassettes (U-matic) + September 09 + 1105 + + + + + Taxpayer's Bill of Rights (w/Sen. Pryor) + 1 audiocassettes + 1988 October 07 + 1100 + + + + + This Week with David Brinkley - ABC + 1 videocassettes (VHS) + 1986 November 25 + 1088 + + + + + Tiger Baseball Quote; Farm Bur. Speech-Feed Bite + 1 audiocassettes + 1987 April 03 + 1987 April 02 + 1097 + + + + + Today Show - Transfer; Nightline w/Carl; Brinkley + 1 videocassettes (VHS) + 1988 July 31 + 1067 + + + + + Tower Can React. (on Indep. Counsel at end) + 1 audiocassettes + 1987 February 26 + 1097 + + + + + Tower Floor cut + 1 audiocassettes + 1989 March 02 + 1097 + + + + + Tpe #4 Levin Wedtech PYATT + 1 videocassettes (U-matic) + September 30 + 1105 + + + + + Trade Bill Override VOTE; NBC Interview - MEESE + 1 audiocassettes + 1988 June 09 + 1988 June 13 + 1099 + + + + + Trade Deficit Reax (Raw Tape) + 1 audiocassettes + 1990 May 17 + 1099 + + + + + Trav. City Law EnF. + 1 audiocassettes + 1990 March 13 + 1100 + + + + + TV interv. WXYZ WNEM + 1 audiocassettes + 1988 July 13 + 1100 + + + + + US Canandian Free Trade + 1 audiocassettes + 1988 May 09 + 1988 May 27 + 1099 + + + + + US/Canadian Free Trade intv. w/Sun World News + 1 audiocassettes + 1988 September 20 + 1100 + + + + + USSR Trip; IV w/Lucien (?) Warren + 1 audiocassettes + 1987 November 18 + 1097 + + + + + Veto of Trade Bill CL Reax + 1 audiocassettes + 1988 May 24 + 1100 + + + + + Warner/Carlucci; Elizabeth Drew: Re: Meet the Press + 1 audiocassettes + 1988 June 15 + 1988 July 08 + 1097 + + + + + Washington Independent News. 2 - Levin + 1 videocassettes (U-matic) + 1988 August 10 + 1088 + + + + + WB Gallery Conf. + 1 audiocassettes + 1988 October 27 + 1097 + + + + + WBKB TV Channel 11 1390 Bagley Street Alpena, Michigan 49707. Levin Int. + On Meese + 1 videocassettes (U-matic) + 1988 May 04 + 1067 + + + + + Wedetch/Video "Mixed" Master (TOT) Jack Mitchell #442 Hart Bld + (224-3682) + 1 videocassettes (U-matic) + undated + 1105 + + + + + Wedtech Video Master. Jack Mitchell Senate Oversight Subcommittee #442 + Hart Building (224-3682) + 1 videocassettes (VHS; 7:15) + undated + 1085 + + + + + Weekly /Daily Conf. Call + 1 audiocassettes + 1989 February 10 + 1097 + + + + + Weekly Conf. Call; Rdio Conf. Call + 1 audiocassettes + 1989 April 21 + 1097 + + + + + Weekly Newspapers + 1 audiocassettes + 1988 October 27 + 1100 + + + + + Weekly Paper Conf. Call + 1 audiocassettes + 1988 September 15 + 1097 + + + + + Weicker Public Wittnesses + 1 audiocassettes + 1988 May 26 + 1100 + + + + + Whistleblower Protection Act; CL w/D. Watson WWJ Whistles, Drug + bill + 1 audiocassettes + 1988 October 11 + 1988 October 12 + 1099 + + + + + Whistleblower Signing Ceremony + 1 videocassettes (U-matic) + 1989 April 10 + 1064 + + + + + WJR - Inauguration; Intetview w/ Sander + 1 audiocassettes + 1989 January 19 + 1097 + + + + + WJR JP McCarthy, Bill Schuette + 1 audiocassettes + 1989 November 21 + 1095 + + + + + WKJC: Tawas City, Public Affairs Show Wurtsmith and the MX + 1 audiocassettes + 1989 March 22 + 1097 + + + + + Women's Fundraiser + 1 audiocassettes + 1989 November 28 + 1072 + + + + + Wurtsmith - MX missile/ response to Myles, Radio Statement + 1 audiocassettes + 1989 March 10 + 1097 + + + + + Wurtsmith AFB; C+S - Levin + A. Stolar (phone) + 1 audiocassettes + 1988 June 24 + 1988 December 30 + 1097 + + + + + WWJ + WCXI Int. + 1 audiocassettes + 1990 May 21 + 1099 + + + + + WWJ Medical Waste Interview + 1 audiocassettes + 1988 October 13 + 1100 + + + + + WWJ Radio interview (Paul Snider); WJE Int. Warren; Post on + Procurement + 1 audiocassettes + 1989 May 17 + 1989 May 18 + 1989 May 18 + 1099 + + + + + WXYZ -Bill Bonds Libyan planes + 1 audiocassettes + 1989 January 04 + 1097 + + + + + WXYZ. ABC in Detroit - Dub - Bonds Commentary 5 pm + 1 videocassettes (U-matic) + 1986 April 18 + 1088 + + + + + WXYZ-Ch.7 Bill Bonds. Tanks + 1 videocassettes (VHS) + 1988 October 14 + 1090 + + + + + Year End Press Conference + 1 audiocassettes + 1988 October 21 + 1100 + + + + + Carl Levin visit to SMS + 1 videocassettes (VHS) + 1990 April 10 + 1990 July 30 + 1107 + + + + + Levin generic union speech + 1 videocassettes (U-Matic; 0:08:35) + 1990 April 20 + 1107 + + + +
    + + + 1991-1996 + + +

    (102nd-104th Congress)

    +
    + + + Administrative and Office files + 1979-2003 + + + + Achievements + 1990 + 153 + + + + + Action files + + + + Black hole + 1998 + 1995 + 108 + + + + + Commemoratives + + + + 1992 + 108 + + + + + 1993 + 108 + + + + + 1994 + 108 + + + + + 1995 + 108 + + + + + + Index + 1979-1992 + 108 + + + + + Kennedy Center + 1994-1998 + 108 + + + + + National Geographic proposals + 1992-1993 + 108 + + + + + + Action files (compiled in 1996 potentially related to Levin's 1996 + election campaign) + 1996 + + + + Levin record -- Schoolyard drug laws, crime and punishment, tax + provisions, pension reform, etc. + 1996 + 153 + + + + + Miscellaneous + 1979-1996 + 153 + + +

    (Includes Levin salary, stock options, record on Congressional pay raises, net + worth, congressional pensions, questionnaires, and statistics)

    +
    +
    +
    + + + Levin's legislative record + 1996 + 154 + + + + + Major legislative accomplishments 1979-present + August 1996 + 154 + + + + + Awards + + + + Alma College honorary degree + undated + 154 + + + + + Arms Control Leadership + January 1996 + 154 + + + + + 1990-1994 + 154 + + + + + + Books + + + + Congressional Ceremony to Welcome His Holiness the Dalai Lama of + Tibet + 154 + + + + + State of the World + 1992 + 154 + + +

    (Note thanking Levin for co-sponsoring UNCED from brother Sandy)

    +
    +
    +
    + + + Carl's writings + + + + 4 folders + 1992 + 154 + + + + + 4 folders + 1993 + 154 + + + + + 4 folders + 1994 + 154 + + + + + 4 folders + 1995 + 154 + + + + + 4 folders + 1996 + 154 + + + + + Miscellaneous subjects + August-October 1993 + 155 + + +

    (Includes Clinton's Health Care Reform, redlining, etc.)

    +
    +
    + + + Miscellaneous subjects + April-May 1994 + 155 + + +
    + + + Correspondence (H. Galen) + + + + A + + + + 1991 + 155 + + + + + 1992 + 155 + + + + + 1993 + 155 + + + + + 1994 + 155 + + + + + 1994-1995 + 155 + + + + + 1996 + 155 + + + + + + Air Force + + + + 1987-1991 + 155 + + + + + 1993-1996 + 155 + + + + + + Armed Services Committee (SASC) + + + + 1991 + 155 + + + + + 1992 + 155 + + + + + 1993 + 155 + + + + + 1994 + 155 + + + + + 1995 + 155 + + + + + 1996 + 155 + + + + + Subcommittee + undated + 1987 + 155 + + + + + + Arms Control Observer Group + + + + 1991 + 155 + + + + + 1992 + 1995 + 155 + + + + + + Army + + + + 1987-1991 + 155 + + + + + 1992-1994 + 155 + + + + + + Aspen Institute + 1991-1992 + 155 + + + + + Attorney General + + + + 1986-1993 + 155 + + + + + 1993-1995 + 155 + + + + + + Auctions + + + + 1990-1991 + 155 + + + + + 1995 + 155 + + + + + + B + + + + 1991 + 155 + + + + + 1992 + 155 + + +

    (Includes a photograph)

    +
    +
    + + + 1994 + 155 + + + + + 1994-1995 + 155 + + + + + 1993 + 155 + + + + + 1994-1996 + 155 + + +
    + + + Barr, David + 1985-1991 + 155 + + +

    (Sculptor from Michigan)

    +
    +
    + + + Base closings + 1988 + 155 + + +

    (Military/Defense)

    +
    +
    + + + Bilder, Anna + 1991 + 1996 + 155 + + +

    (Regarding Wallenberg)

    +
    +
    + + + C + + + + 1991 + 156 + + + + + 1992 + 156 + + + + + 1993 + 156 + + + + + 1994 + 156 + + + + + 1995 + 156 + + + + + 1995-1996 + 156 + + + + + + Chaplain + + + + 1992-1994 + 156 + + + + + 1995-1996 + 156 + + +

    (Ogilvie)

    +
    +
    +
    + + + Chrysler + + + + 1989-1991 + 156 + + + + + 1991-1996 + 156 + + + + + + Clinton, Hilary + 1993 + 156 + + + + + Close-up foundation + 1993 + 156 + + + + + Colleagues + + + + 1990-1991 + 156 + + + + + 1990-1991 + 156 + + + + + 1992 + 156 + + + + + 1993 + 156 + + + + + Thank you + 1993 + 156 + + + + + 1995 + 156 + + + + + 1996 + 156 + + + + + + Colleges and Universities + + + + 1991 + 156 + + + + + 1992 + 157 + + + + + 1992-1994 + 157 + + + + + 1994-1995 + 157 + + + + + 1996 + 157 + + + + + + Congratulations + + + + 1991 + 157 + + + + + 1992 + 157 + + + + + 1993 + 157 + + + + + 1996 + 157 + + + + + + D + + + + 1991 + 157 + + + + + 1992 + 157 + + + + + 1993 + 157 + + + + + 1994 + 157 + + + + + 1995 + 157 + + + + + 1996 + 157 + + + + + + Daschle + 1994-1997 + 157 + + +

    (Minority Leader)

    +
    +
    + + + Democratic Conference-Jamestown, VA + April 1993 + 157 + + + + + Democratic National Committee + 1995-1996 + 157 + + + + + Democratic Senatorial Campaign Committee + + + + 1991-1994 + 157 + + + + + 1995-1996 + 157 + + + + + + Democratic Steering Committee + + + + 1992-1993 + 157 + + + + + 1993-1997 + 157 + + + + + + Department of Defense + + + + 1990-1991 + 157 + + + + + 1995-1996 + 157 + + + + + + Detroit sports + 1990-1992 + 157 + + + + + Dole, Bob + 1995-1997 + 157 + + +

    (Majority Leader)

    +
    +
    + + + Driker, Eugene + + + + 1990-1991 + 157 + + + + + 1993 + 157 + + + + + 1995 + 157 + + +

    (Includes photographs)

    +
    +
    +
    + + + E + + + + 1991 + 157 + + + + + 1992 + 157 + + + + + 1993 + 157 + + + + + 1994 + 157 + + + + + 1994-1995 + 157 + + + + + 1996 + 157 + + + + + + Egyptian-Israeli Peace Treaty invitation + March 1979 + 157 + + + + + Embassies + + + + 1990-1991 + 158 + + + + + 1991-1992 + 158 + + + + + 1994 + 158 + + + + + 1995-1996 + 158 + + + + + + Energy Conversion Devices (ECD) + 1991-1996 + 158 + + +

    (Contains some discussion of Barbara's part-time work)

    +
    +
    + + + F + + + + 1991 + 158 + + + + + 1992 + 158 + + + + + 1993 + 158 + + + + + 1994 + 158 + + + + + 1994-1995 + 158 + + +

    (Includes photograph)

    +
    +
    + + + 1995-1996 + 158 + + +

    (Includes photograph)

    +
    +
    +
    + + + Focus: HOPE caricature + undated + 158 + + + + + Ford Motor Company + + + + 1991 + 158 + + + + + 1993 + 158 + + + + + + Fraser, Doug + 1985-1991 + 158 + + + + + G + + + + 1991 + 158 + + + + + 1992 + 158 + + + + + 1993 + 158 + + + + + 1994 + 158 + + + + + 1994-1995 + 158 + + + + + 1996 + 158 + + + + + + General Motors Company (GM) + + + + 1991 + 158 + + + + + 1992-1996 + 158 + + + + + + Gore, Al + + +

    (Vice President)

    +
    + + + 1993 + 158 + + + + + 1995 + 158 + + + + + 1996 + 158 + + +
    + + + Gore, Tipper + 1995-1996 + 158 + + + + + Governmental Affairs Committee (GAC) + + + + 1990-1991 + 158 + + + + + 1992 + 158 + + + + + 1993 + 158 + + + + + 1995 + 158 + + + + + 1996 + 158 + + + + + + H + + + + 1991 + 158 + + + + + 1992 + 158 + + + + + 1993 + 158 + + + + + 1994 + 158 + + + + + 1994-1995 + 158 + + +

    (Includes photographs)

    +
    +
    + + + 1996 + 158 + + +
    + + + Holocaust Museum + 1993-1995 + 158 + + + + + Honorary chairmanship-Michigan Head Injury Alliance + 1992 + 158 + + + + + I + + + + 1991 + 159 + + + + + 1992 + 159 + + + + + 1993 + 159 + + + + + 1994 + 159 + + + + + 1995 + 159 + + + + + 1995-1996 + 159 + + + + + + Israel and Jewish + + + + 1988-1991 + 159 + + + + + 1992 + 159 + + + + + 1993 + 159 + + + + + 1993-1994 + 159 + + + + + 1995 + 159 + + + + + 1995-1996 + 159 + + +

    (Includes photographs of Lubavitch Foundation of Michigan groundbreaking in + West Bloomfield)

    +
    +
    +
    + + + J + + + + 1991 + 159 + + + + + 1992 + 159 + + + + + 1994 + 159 + + + + + 1994-1995 + 159 + + + + + 1996 + 159 + + +

    (Includes two photographs)

    +
    +
    +
    + + + Joint Chiefs of Staff + 1985-1992 + 159 + + + + + Johnson, Magic + November 1991 + 159 + + + + + Judicial merit selection + 1994-1996 + 159 + + + + + K + + + + 1991 + 159 + + + + + 1992 + 159 + + + + + 1993 + 159 + + + + + 1994 + 159 + + + + + 1994-1995 + 159 + + + + + 1996 + 159 + + + + + + Kozlow, Richard + 1985 + 159 + + + + + L + + + + 1991 + 159 + + + + + 1992 + 159 + + + + + 1993 + 159 + + + + + 1994 + 159 + + + + + 1994-1995 + 159 + + + + + 1996 + 159 + + + + + + Library of Congress + + + + 1993 + 160 + + + + + 1995 + 160 + + + + + + M + + + + 1991 + 160 + + + + + 1992 + 160 + + + + + 1993 + 160 + + + + + 1994 + 160 + + + + + 1995 + 160 + + + + + 1995-1996 + 160 + + + + + + Manoogian + 1988-1996 + 160 + + + + + Memberships + 1992-1994 + 160 + + + + + Michigan House of Representatives + 1991-1995 + 160 + + + + + Michigan Senate + 1989-1995 + 160 + + + + + Miscellaneous + + + + 1990-1991 + 160 + + + + + Folder 1 + 1991-1993 + 160 + + + + + Folder 2 + 1991-1993 + 160 + + + + + 1991 + + + + January + 160 + + + + + February + 160 + + + + + March + 160 + + + + + April + 160 + + + + + May + 160 + + + + + June + 160 + + + + + July + 160 + + + + + August + 160 + + + + + September + 160 + + + + + October + 160 + + + + + November + 160 + + + + + December + 160 + + + + + + 1992 + + + + January + 160 + + + + + February + 160 + + + + + March + 160 + + + + + April + 160 + + + + + May + 160 + + + + + June + 160 + + + + + July + 160 + + + + + August + 160 + + + + + September + 160 + + + + + October + 160 + + + + + November + 160 + + + + + December + 160 + + + + + + 1993 + + + + January + 160 + + + + + April + 160 + + + + + June + 160 + + + + + July + 160 + + + + + August + 160 + + + + + September + 160 + + + + + October + 160 + + + + + November + 160 + + + + + December + 160 + + + + + + 1993 + 160 + + + + + 1994 + + + + January + 161 + + + + + February + 161 + + + + + March + 161 + + + + + April + 161 + + + + + May + 161 + + + + + June + 161 + + + + + July + 161 + + + + + August + 161 + + + + + September + 161 + + + + + November + 161 + + + + + + 1994 + 161 + + + + + 3 folders + 1994 + 161 + + + + + 2 folders + 1995-1996 + 161 + + + + + Folder 1 + 3 folders + 1996-1997 + 161 + + + + + Personal + 1995 + 161 + + + + + + Mitchell, George + + +

    (Majority Leader)

    +
    + + + 1991-1992 + 161 + + + + + 1993 + 161 + + +
    + + + Mc + + + + 1990-1996 + 161 + + + + + + N + + + + 1991 + 161 + + + + + 1992 + 161 + + + + + 1993 + 161 + + + + + 1994 + 161 + + + + + 1995 + 161 + + + + + 1996 + 161 + + + + + + National Prayer Breakfast + 1988-1995 + 162 + + + + + Navy + 1993-1996 + 162 + + + + + Nominations + 1989-1991 + 162 + + + + + Nominees + 1993 + 162 + + + + + O + + + + 1991 + 162 + + + + + 1992 + 162 + + + + + 1993 + 162 + + + + + 1994 + 162 + + + + + 1995 + 162 + + + + + 1996 + 162 + + + + + + P + + + + 1991 + 162 + + + + + 1992 + 162 + + + + + 1993 + 162 + + + + + 1994 + 162 + + + + + 1994-1995 + 162 + + + + + 1996 + 162 + + + + + + Packwood, Bob + November 1993 + 162 + + +

    (Senator)

    +
    +
    + + + Pages + 1987-1992 + 162 + + + + + Pallas, Jim + December 1992 + 162 + + +

    (E Pluribus Unum printed circuit board)

    +
    +
    + + + Political-re-election + 1990-1991 + 162 + + + + + Postal service + 1991-1995 + 162 + + + + + Q + + + + 1991 + 162 + + + + + 1995 + 162 + + + + + + R + + + + 1991 + 162 + + + + + 1992 + 162 + + + + + 1993 + 162 + + + + + 1994 + 162 + + + + + 1995 + 162 + + + + + 1995-1996 + 162 + + + + + + Recommendations + 1993-1994 + 162 + + + + + Recommendations -- general + 1993 + 162 + + + + + Recommendations to Governor Engler + 1991 + 162 + + + + + Requests for money + 1992 + 162 + + + + + S + + + + 1991 + 162 + + + + + 1992 + 162 + + + + + 1993 + 162 + + + + + 1994 + 162 + + + + + 1994-1995 + 163 + + + + + 1995-1996 + 163 + + + + + + Senate Steering Committee + 1990-1992 + 163 + + + + + Sergeant at Arms + 1989-1995 + 163 + + + + + Science Olympiad + 1993-1994 + 163 + + + + + Smithsonian-Tesla, (Dexter teacher John W. Wagner) + 1989-1991 + 163 + + + + + Sports + 1985-1996 + 163 + + + + + Stamp collecting + 1991 + 163 + + + + + T + + + + 1991 + 163 + + + + + 1992 + 163 + + + + + 1993 + 163 + + + + + 1994 + 163 + + + + + 1994-1995 + 163 + + + + + 1995-1996 + 163 + + + + + + Taubman-A. Alfred and Company + 1990-1996 + 163 + + + + + Thank yous-Carl + + + + 1995 + 163 + + + + + 1996 + 163 + + + + + + U + + + + 1991 + 163 + + + + + 1992 + 163 + + + + + 1993 + 163 + + + + + 1994 + 163 + + + + + 1995 + 163 + + + + + 1996 + 163 + + + + + + U.S.-USSR exchange visits + 1993 + 163 + + + + + V + + + + 1991 + 164 + + + + + 1992 + 164 + + + + + 1993 + 164 + + + + + 1994 + 164 + + + + + 1995 + 164 + + + + + + VIP + 1993-1994 + 164 + + +

    (Includes military bases, embassies, GAC, Democratic National Committee, Hilary + Clinton, defense, colleagues, and Cabinet)

    +
    +
    + + + VIP + 1992-2003 + 164 + + +

    (Includes Detroit Symphony, Al Gore, White House, colleagues, SASC, State + Department, Sandy Levin, political, George Mitchell)

    +
    +
    + + + W + + + + 1991 + 164 + + + + + 1992 + 164 + + + + + 1993 + 164 + + + + + 1994 + 164 + + + + + 1995 + 164 + + + + + 1996 + 164 + + + + + + Walled Lake-Certificate of Appreciation + March 1992 + 164 + + + + + White House + + + + 1990-1992 + 165 + + + + + 1993-1995 + 165 + + + + + 1996 + 165 + + + + + Cabinet + 1993 + 165 + + + + + Cabinet + 1995-1996 + 165 + + + + + Endorsements + 1996-1997 + 165 + + + + + Invitations and endorsements + + + + 1993 + 165 + + + + + 1994 + 165 + + + + + 1995-1996 + 165 + + +

    (Includes a photograph)

    +
    +
    +
    + + + Invitations and meetings + 1995-1996 + 165 + + + + + Job endorsements + 1995-1996 + 165 + + + + + Job recommendations + 1993 + 165 + + + + + Job recommendations + 1996-1997 + 165 + + + + + Miscellaneous + 1993 + 165 + + + + + Howard Paster + 1993 + 165 + + + + + Responses + 1994-1996 + 165 + + +
    + + + Willow Run + 1992 + 165 + + + + + Y + 1995 + 165 + + + + + XYZ + 1993 + 165 + + +
    + + + Correspondence, memos, and schedules + + + + 1991-1995 + 165 + + + + + July-September 1995 + 165 + + + + + August-September 1995 + 165 + + + + + 2 folders + September 1995 + 165 + + + + + Detroit trip schedule + May 12-15, 1995 + 1113 + + + + + + Field offices -- Newspaper strike + 1996 + 166 + + + + + FOIA documents-FBI + 1993 + 166 + + + + + Jewish + 2 folders + 1990-1993 + 166 + + + + + Legislative Activities-Levin + + + + 102nd Congress + January 3, 1991-January 5, 1993 + 166 + + + + + 103rd Congress + January 5, 1993-January 8, 1994 + 166 + + + + + + Legislative priorities + 1995-1996 + 166 + + + + + Mail and mail problems + 1987-1992 + 166 + + + + + Mail problems + 1991-1992 + 166 + + + + + Miscellaneous + + + + 1994-1995 + 166 + + + + + Education, health care, Wallenberg, NAACP, invitations, Congressional + Black Caucus Foundation (CBCF) + 3 folders + 1996-1997 + 166 + + + + + Jackie Parker, (J. Parker) + 2 folders + 1995-1996 + 166 + + + + + + Schedules + + + + Folder 1 + 1991 + 167 + + + + + Folder group 2 + 2 folders + 1991 + 167 + + + + + Folder group 1 + 3 folders + 1992 + 167 + + + + + Folder group 2 + 4 folders + 1992 + 167 + + + + + Folder 1 + 1993 + 167 + + + + + Folder group 2 + 2 folders + 1993 + 168 + + + + + 2 folders + 1994 + 168 + + + + + 1995 + 168 + + + + + 1996 + 168 + + + + + Action files + + + + 4 folders + 1991 + 169 + + +

    (Action file)

    +
    +
    + + + 3 folders + 1993 + 169 + + +

    (Action file)

    +
    +
    + + + 1994 + 169 + + +

    (Action file)

    +
    +
    + + + 1995 + 169 + + +

    (Action file)

    +
    +
    +
    + + + Invitation acceptances + 12 folders + January-December 1993 + 170 + + + + + Invitation miscellaneous + 1993 + 170 + + + + + List of Carl's Michigan visits + 1991-1995 + 170 + + +

    (Visited 80 of 83 counties; Traverse City office)

    +
    +
    + + + Michigan visits + 2 folders + 1991-1995 + 170 + + + + + Schedule log + 1991-1996 + 170 + + +
    + + + Schedules and administrative material + May-August 1995 + 170 + + + + + Senate and political paid accounts + + + + 3 folders + January-June 1991 + 170 + + + + + 4 folders + July-December 1991 + 170 + + + + + + Staff + + + + Broder, Ruth + + +

    (Michigan; R. Broder)

    +
    + + + 1989-1992 + 170 + + + + + 1992 + 170 + + + + + 1993 + 170 + + + + + 1994 + 170 + + +
    + + + Cutolo, Chuck + 1994-1996 + 170 + + +

    (Includes a photograph; C. Cutolo)

    +
    +
    + + + Foreign trips authorization letters to Ethics Committee + 1994-1996 + 171 + + + + + Legislative Director-R. Arenberg + + + + 2 folders + 1994 + 171 + + + + + 6 folders + 1995 + 171 + + + + + 5 folders + 1996 + 171 + + + + + + Letter library-1979-1994 + + + + Binder items #1-110 + 2 folders + 171 + + + + + Binder items #111-199 + 2 folders + 172 + + + + + Binder items #200-300 + 3 folders + 172 + + + + + Binder items #301-450 + 4 folders + 172 + + + + + Binder items #451-529 + 3 folders + 172 + + + + + Binder items #530-651 + 3 folders + 172 + + + + + Binder items #652-740 + 3 folders + 173 + + + + + Binder items #741-799 + 2 folders + 173 + + + + + Binder items #800-930 + 4 folders + 173 + + + + + Binder items #931-1054 + 4 folders + 173 + + + + + Binder items #1055-1150 + 3 folders + 173 + + + + + Binder items #1151-1275 + 3 folders + 174 + + + + + Binder items #1276-1400 + 3 folders + 174 + + + + + Binder items #1401-1497 + 2 folders + 174 + + + + + Binder items #1499-1631 + 3 folders + 174 + + + + + Binder items #1632-1882 + 2 folders + 174 + + + + + Binder items #1883-1940 + 175 + + + + + + Letter library-subject + + + + Agriculture, energy, and environment + 1989-1995 + 175 + + + + + Government reform, communications, budget, and taxes + 1988-1990 + 175 + + + + + Labor, health and human services + 2 folders + 1982-1994 + 175 + + + + + Medicare and Medicaid + 1988-1990 + 175 + + + + + Miscellaneous + 1981-1990 + 176 + + + + + + Memos from J. Parker to Carl Levin + 1992-1993 + 176 + + + + + Memos from R. Arenberg to Carl regarding legislation + December 1994 + 176 + + + + + Memos from R. Arenberg to Carl and statements + 2 folders + 1995 + 176 + + + + + Michigan staff + + + + 1991 + 176 + + + + + 1993 + 176 + + + + + + Miscellaneous + + + + 1995 + 176 + + +

    (Includes flag desecration, income and taxes, McConnell, etc.)

    +
    +
    + + + 1995 + 176 + + + + + Adoption, animal protection, budget, education + 1986-1995 + 176 + + + + + Adoption, education, and welfare + 1993-1995 + 176 + + + + + Adoption, medical marijuana, mental health, organ transplants, and + welfare reform + 2 folders + 1996 + 176 + + + + + Health, human services, and welfare + 1993-1995 + 176 + + + + + Health research, welfare, and news articles + 1995 + 176 + + + + + Medicare, Social Security Income, and Welfare + 1995 + 176 + + +
    + + + Positive notes + 1988-1996 + 176 + + + + + Washington staff + + + + 1990-1992 + 176 + + + + + 1993 + 176 + + + + + 1994-1996 + 176 + + + +
    +
    + + + Agriculture + 1981-1996 + + + + Action files + + + + 1992 + 108 + + + + + 1993 + 108 + + + + + 1994 + 108 + + + + + 1995 + 108 + + + + + 1996 + 108 + + + + + + Levin record + 1981-1994 + 229 + + + + + Agriculture and international trade + 1989-1996 + 229 + + + + + Biotechnology and genetic modification + 1990-1992 + 229 + + + + + Cherries to Japan + January-April 1993 + 229 + + + + + Cherry marketing, (C. Miller) + 1993-1994 + 229 + + + + + Corn disaster relief + 1992-1993 + 229 + + + + + Disaster assistance + 1994-1996 + 229 + + + + + Exports + 1990-1993 + 229 + + + + + Farm finances -- farm credit, (J Hekhuis) + 1991-1996 + 229 + + + + + National Forests-Huron, Manistee, and Ottawa + 2 folders + 1985-1993 + 230 + + + + + North American Free Trade Act (NAFTA) + + + + Dairy issues -- U.S. and Canada trade dispute + September-October 1996 + 230 + + + + + Tomatoes + December 1995-January 1996 + 230 + + + + + + Peanut legislation history + 1981-1995 + 230 + + + + + Range + 1993-1996 + 230 + + + + + Soybean facts and legislation + 1986-1996 + 230 + + + + + Timber below cost + 1992-1993 + 230 + + + + + Timber and state forests + 1989-1994 + 230 + + + + + + Animal Protection + 1991-2001 + + + + 1992 + 241 + + + + + July-September 1995 + 241 + + + + + Action file + 1991-1992 + 108 + + + + + Action file + 1995 + 108 + + + + + Captive Exotic Animal Protection act letters-H.R.1202 + March 28, 1995 + 241 + + + + + Endangered species, (C. Miller, B. VanDyke, and K. Meier) + 3 folders + 1995-2001 + 241 + + + + + Llama importation-Camelids of Delaware, Inc. + June 1995 + 241 + + + + + Mink industry amendment-eliminate subsidy, (Deutch and Shays) + August 1995 + 241 + + + + + Wildlife refuge + 1993-1996 + 241 + + + + + + Arts and humanities-action files + 1992-1995 + + + + September 14, + 1992 + 108 + + + + + 1994 + 108 + + + + + 1995 + 108 + + + + + + Business + 1991-1998 + + + + Action files-small business + + + + 1993 + 108 + + + + + 1994 + 108 + + + + + 1995 + 108 + + + + + 1996 + 108 + + + + + + Americans with Disabilities Business Development act + 1994-1995 + 246 + + + + + Antitrust-Baseball strike and negotiations + 1994-1996 + 246 + + + + + Small Business Committee (SBC) + + + + Hearing ideas-Subcommittee Innovation, Manufacturing and + Technology + July-August 1994 + 246 + + + + + Hearing memo-Environmental Compliance Tools for Small + Business + March-April 1998 + 246 + + + + + Industrial innovation debate over government policy + 2 folders + 1991-1992 + 246 + + + + + Nominations and committee organization + November 1992-1994 + 246 + + + + + Organizational meeting + January 1995 + 246 + + + + + Subcommittee on Innovation, Technology, Productivity + 1992 + 246 + + + + + + Nomination-Deputy Administrator of the Small Business Association (SBA) + -- Hochberg, Fred + 1998 + 1040 + + + + + Small business + + + + Advanced Technology Program success stories, (Michigan) + February 1996 + 246 + + + + + Applied Technology Center + January-February 1993 + 246 + + +

    (Grand Rapids, Michigan)

    +
    +
    + + + Disaster assistance, (Michigan) + July-September 1997 + 247 + + + + + Federal labs + December 10, + 1992 + 247 + + + + + Franchising and related legislation + May 1995 + 247 + + + + + Midwest Manufacturing Technology Center + 1991-1996 + 247 + + + + + Miscellaneous + May-June 1996 + 247 + + + + + National Association of Manufacturers letter, (A. Pascale) + 1996 + 247 + + + + + Service Corps of Retired Executives + 1994 + 247 + + + + + Small Business Administration (SBA) + + + + 7(a) loan program + + + + Amendment + 2 folders + 1993-1994 + 247 + + + + + Hearing, (SBC) + May 18, + 1995 + 247 + + + + + Markup, (SBC) + June-September 1995 + 247 + + + + + + Crane's Detroit interview-Levin + January-February 1995 + 247 + + + + + Defense Conversion Assistance Act + June 1994-July 1995 + 247 + + + + + Minority definition-Hasidic Jew + October 1995-February 1996 + 247 + + + + + Reauthorization + July-August 1994 + 247 + + + + + Town hall meetings + July-September 1993 + 247 + + + + + + Small Business Innovation Research (SBIR) program + 2 folders + 1991-1992 + 247 + + + + + Small Business Innovation Research (SBIR)-MERRA + December 1993-February 1994 + 247 + + + + + Small Business Investment Company Improvement Act markup + 1995-1996 + 247 + + +

    (7a)

    +
    +
    + + + Technology + + + + 1993 + 1997 + 248 + + + + + 1993-1998 + 248 + + + + + + Upper Peninsula Development Banks + 1993-1996 + 248 + + + + + White House small business conference + 2 folders + March-June 1994 + 248 + + + + + Women + May-October 1996 + 248 + + +
    +
    + + + Civil Rights + 1991-1997 + + + + Action files + + + + June-August 1992 + 108 + + + + + 1993 + 108 + + + + + 1995 + 108 + + + + + 1996 + 108 + + + + + + Affirmative action + May-June 1995 + 263 + + + + + Discrimination in the National Guard and ethnic tension in + communities + May 1995 + 263 + + + + + Civil Rights Act + + + + S.2104 + 4 folders + 1991 + 263 + + + + + Sexual Orientation + 1991-1993 + 264 + + + + + + Equal employment rights + 1993-1995 + 264 + + + + + Immigration questions, (A. Pascale) + November 21, + 1994 + 264 + + + + + Justice for Wards Cove Workers amendment + 1992 + 264 + + + + + Minority issues + 1992-1997 + 264 + + + + + Religious Freedom Restoration Act + 1992-1994 + 264 + + + + + Sexual orientation + 1994 + 264 + + + + + + Communications + 1991-2001 + + + + Action files + + + + June 10, 1992 + 108 + + + + + 1993 + 108 + + + + + 1994 + 108 + + + + + 1995 + 108 + + + + + 2 folders + 1996 + 108 + + + + + + Alcohol advertising on TV, July 1996-May 1997 + 257 + + + + + AT&T alarm issue, (A. Pascale) + 1993-1995 + 257 + + + + + Long distance AT&T, (A. Pascale) + 1995 + 257 + + + + + Broadcasting and disclaimers, (A. Pascale) + 1993-1994 + 257 + + + + + Cable TV, (A. Pascale) + 1995-1999 + 257 + + + + + Cable Television Consumer Protection and Competition Act of + 3 folders + 1992 + 257 + + + + + Cable television deregulation + 1992-1994 + 257 + + + + + Canadian broadcast tax + October 1995-May 1996 + 257 + + + + + Censorship of the internet in Germany and DOLE + 1995-1996 + 257 + + + + + Department of Justice (DOJ) concerns over telecommunication reform + bill + 1995 + 257 + + + + + Exon amendment on internet obscenity + 1995 + 257 + + + + + Exon -- Obscenity, (A. Pascale) + 1996-1997 + 257 + + + + + HDTV -- spectrum, (A. Pascale) + 1996 + 257 + + + + + Local exchange infrastructure modernization, (A. Pascale) + 1992-1994 + 257 + + + + + Michigan Cable TV Association, (A. Pascale) + 1995 + 257 + + + + + Modifications of the Final Judgment (MFJ), (C. Miller) + 1991 + 257 + + + + + Music licensing, (A. Pascale) + 1995-1998 + 257 + + + + + Nomination to Broadcasting Board of Governors-Jeff Hirschberg + 2001 + 257 + + + + + Performance rights, (sound recordings) (A. Pascale) + 1995 + 257 + + + + + Radio spectrum auction, (A. Pascale) + 1993-1995 + 257 + + + + + Small Business spectrum auction, (A. Pascale) + 1994 + 257 + + + + + Telecommunications -- memos and articles, (A. Pascale) + 1995 + 257 + + + + + Telecommunications Act (A. Pascale) + + + + Boxer-Levin cable TV amendment to 1995 Telecom Act (failed) + 1995 + 257 + + + + + Conference report -- Carl's file + 1995-1996 + 258 + + + + + Telecommunications bill -- statements and memos, (S.652) + 1995 + 258 + + + + + Telecom report + 1995-1996 + 258 + + + + + Telecom Act summary + 1995-1996 + 258 + + + + + + Telecommunications bill implementation and passage + 2 folders + 1993-1996 + 258 + + + + + Telecommunications-Modified Final Judgment (MFI) restrictions + 1991 + 258 + + +

    (Michigan Bell and Baby Bells)

    +
    +
    + + + Telephone Association + February 1993-March 1994 + 258 + + + + + Television violence hearings + + + + Hearing-Violent Video Games + December 9, + 1993 + 258 + + + + + Levin bills on TV commercials + 1992-1996 + 258 + + + + + Levin hearing statement + June 8, 1993 + 258 + + + + + Levin hearing statement + October 20, + 1993 + 258 + + + + + Levin's record + December 1995 + 258 + + + + + Memos + 1993 + 258 + + + + + Presidential Commission on TV Violence and Children + Act-H.R.2609 + January-February 1995 + 258 + + + + + + Universal service, (A. Pascale) + 1996 + 258 + + +
    + + + Crime and Justice + 1983-1996 + + + + Action files-Crime + + + + 1992 + 108 + + + + + 1993 + 108 + + + + + 1994 + 108 + + + + + 1995 + 108 + + + + + + Automated Fingerprint identification system (AFIS) + 4 folders + 1993-1995 + 272 + + + + + Black church resolution + 1996 + 272 + + + + + Car theft bill + 1992 + 272 + + + + + Civil Provisions of the Racketeering Influenced and Corrupt Organizations + Act (RICO) + 1988-1992 + 272 + + + + + Crime bill conference report + 1994 + 272 + + + + + Death Penalty + + + + 2 folders + 1991-1993 + 273 + + + + + 3 folders + 1993 + 273 + + + + + 1993-1995 + 273 + + + + + 1994-1995 + 273 + + + + + Incarceration and the penalty + 1993-1994 + 273 + + + + + Innocence + 1995 + 273 + + + + + Legislative and voting history-Levin + December 1995 + 273 + + + + + News articles + February 1995 + 273 + + + + + Background information, voting history, and statements + 1992-1995 + 273 + + + + + + Drugs + + + + Drugs and Housing + 1991 + 273 + + + + + Mandatory minimum drug sentence + 1993-1996 + 273 + + + + + Newport Housing + 1992 + 273 + + + + + Prison mandatory sentencing + 1990-1992 + 273 + + + + + Schoolyard drug law-Levin + 1986-1990 + 273 + + + + + + Espionage for Israel case-Johnathon Pollard + 1993 + 273 + + + + + Federal Prison Industries (FPI) + + + + 3 folders + 1990-1991 + 273 + + + + + Federal Prison Industries (FPI) + 2 folders + 1993-1994 + 274 + + + + + UNICOR materials + 1990-1991 + 274 + + + + + + Genesee County Court + 1995 + 274 + + + + + Gun Violence Protection Act-Metzenbaum + 1994 + 274 + + + + + Hate crimes + 1994 + 274 + + + + + Juvenile Detention Center Ottawa County + 1993 + 274 + + + + + Legal Service Corporation reauthorization + 1983 + 1992 + 274 + + + + + Melvindale Department of Justice Suit + 1993 + 274 + + + + + Money laundering-Panama + January 1991 + 274 + + + + + Nominations + + + + Justice Department Civil Rights Division-Lani Guinier + 1993 + 1035 + + + + + U.S. Drug Czar + + + + Bob Martinez + 1991 + 1035 + + + + + + + Sports betting federal ban support-S.474 + 1990-1992 + 274 + + + + + Victim's rights legislation + April-July 1996 + 274 + + + + + Violent Crime Control and Law Enforcement Act of + 1994 + + + + American federation of police + 1990-1992 + 274 + + + + + Carl's file on habeas corpus-specter amendment + 1993 + + + + Civil justice reform + 274 + + + + + Congressional Record excerpts + 274 + + + + + Federal prison industries + 274 + + + + + Habeas background + 274 + + + + + Memos + 274 + + + + + Notes + 274 + + + + + + Crime bill + + + + 2 folders + 1993-1994 + 274 + + + + + 104th Congress + 1995-1996 + 274 + + + + + Conference + 2 folders + 1993 + 274 + + + + + Conference report + 1994 + + + + Notes and summary + 274 + + + + + Mandatory minimums + 274 + + + + + River rouge cops + 274 + + + + + Violence against women + 2 folders + 274 + + + + + Conference + 274 + + + + + + + Drugs + + + + Comparative international drug policy + 1994 + 274 + + + + + Drug treatment provision + 1993-1994 + 274 + + + + + DARE-National drug abuse resistance education day + 2 folders + 1993-1994 + 274 + + + + + Federal drug testing regulations + 1989-1991 + 275 + + + + + Grants + + + + Byrne memorial-multijurisdictional drug trafficking control + programs + 1994 + 275 + + + + + Rural drugs + 1992 + 275 + + + + + + Upper Peninsula problem with Methcathinone + 2 folders + 1993-1994 + 275 + + + + + + Guns + + + + Assault weapons ban + 1993-1995 + 275 + + + + + Brady handgun violence prevention act-1993 + 2 folders + 1993-1994 + 275 + + + + + Bullet ban + 1995 + 275 + + + + + Gun proposals-insurance and licensing + 1994 + 275 + + + + + National Rifle Association (NRA) letter + 1994-1995 + 275 + + + + + + Implementations-community police + 2 folders + 1994-1995 + 275 + + + + + National associations of police organizations (NAPO) + 1992-1995 + 275 + + + + + + + Defense and Armed Services Committee (SASC) + 1980-1999 + + + + Accomplishments-Levin + 1989-1995 + 322 + + + + + Action files + + + + 1992 + 108 + + + + + 2 folders + 1993 + 108 + + + + + 1994 + 108 + + + + + 1995 + 108 + + + + + 1996 + 108 + + + + + Arms control + + + + November 5, + 1992 + 109 + + + + + 1993 + 109 + + + + + 1995 + 109 + + + + + + + Air Force + 2 folders + 1991-1992 + 322 + + + + + Arms transfers policy and trade + 2 folders + 1994-1996 + 322 + + + + + Authorization, appropriations and funding + + + + FY1991-1994 miscellaneous + 5 folders + 322 + + + + + FY1992 + + + + Defense budget + 323 + + + + + Defense budget cuts + 323 + + + + + Department of Defense (DOD) authorization + + + + Amendment-Army Corps of Engineers reorganization + 323 + + + + + Focus: HOPE Center for Advanced Technology (CAT) + 323 + + + + + + Department of Defene (DOD) authorization conference + + + + Base closure property transfer-Breaux and Johnston + amendment + September-November 1991 + 323 + + + + + Conference + 323 + + + + + + Environmental Research Institute of Michigan (ERIM)-Interferometric + Synthetic Aperture Radar (IFSAR) funding + 323 + + + + + Markup-Conventional Forces conference panel + + + + Opening session + September 16, + 1991 + 323 + + + + + Meeting + September 24, + 1991 + 323 + + + + + + President rescission package + 323 + + + + + Senator Sasser budget + 323 + + + + + Weapons, funding and markups + 2 folders + 323 + + + + + + FY1992-1993 + + + + B-2 Bombers + + + + Appropriations and background + 323 + + + + + Briefing and news articles + 323 + + + + + Concurrency issues and subcommittee markup + 323 + + + + + Conference + 323 + + + + + Floor folder + 323 + + + + + Hearing, (SASC) + June 19, + 1991 + 323 + + + + + Markup-B-2 issues and amendments + 323 + + + + + Preparation + 2 folders + 324 + + + + + Rand Corporation briefing studies + July 1991 + 324 + + + + + Rand Corporation briefing and amendments + July-August 1991 + 324 + + + + + Warranty costs-Secretary of Air Force Donald Rice + June 1991 + 324 + + + + + + Hearing-National Guard, (Subcommittee on Manpower and + Personnel) + April 30, + 1992 + 324 + + + + + Naitonal Defense Authorization Act + + + + MX Rail Garrison amendment + 1988-1991 + 324 + + + + + Short Range Attack Missile (SRAM) amendment + June-July 1991 + 324 + + + + + + + FY1993 + + + + Administration defense budget requests + 2 folders + 324 + + + + + AIPAC Defense authorization agenda notebook + 324 + + + + + Alternative defense budget project + + + + Bush cuts + 324 + + + + + General + 324 + + + + + Levin-overview + 324 + + + + + Manpower + 324 + + + + + NATO-Europe + 324 + + + + + Recruiting + 2 folders + 324 + + + + + Rescissions + 324 + + + + + Tables, graphs, and memos + 324 + + + + + + B-2 Bombers + + + + Aircraft carrier funding + 1992 + 325 + + + + + Amendment-S.3114 + 325 + + + + + Amendment, memos, and charts + 325 + + +

    (Carl's file)

    +
    +
    + + + Amendment, memos, and statement + 325 + + + + + Dear Colleague-Leahy and Levin-amendment to stop program funding at + current level + August 6, + 1992 + 325 + + + + + Floor-program questions and Rice statement + 325 + + + + + General Accounting Office-funding and procurement + decisions + 325 + + + + + Hearing on B-2 program-talking points, questions, Levin statement, + (SASC) + June 17, + 1992 + 325 + + + + + Hearing on B-2 Program-Secretary Rice + June 17, + 1992 + 325 + + +

    (Carl's file; SASC)

    +
    +
    + + + Levin opinion, background, and questions + 325 + + + + + Levin question and answer with Secretary Rice + 325 + + + + + Miscellaneous + 3 folders + 325 + + + + + New contract with Northrup-rise in cost + 325 + + + + + Meeting and hearing notes + May-July 1992 + 325 + + + + + Rescission + 325 + + + + + Stealth performance issue and testing + 325 + + + + + Warranty-contractor requirements + 325 + + + + + Warranty contract, (Subcom OGM) + 1991-1992 + 325 + + +
    + + + Budget alternatives + 325 + + + + + Conventional Forces Panel conference session + September 21, + 1992 + 325 + + + + + Defense Authorization bill markup + + + + General + 3 folders + 326 + + + + + Subcommittee on Conventional Forces and Alliance + Defense + 326 + + + + + + Defense budget + 326 + + + + + Defense funding and nuclear weapons + 2 folders + 326 + + +

    (Includes hearing on START August 5, 1992 and some markup)

    +
    +
    + + + Defense planning guide-Pentagon + March-November 1992 + 326 + + + + + Focus: HOPE funding + 326 + + + + + Committee hearings + 2 folders + January-June 1992 + 326 + + + + + Levin-defense budget information + 326 + + + + + Member requests + 326 + + + + + Michigan trip for industrial technology + July 6-7, 1992 + 326 + + + + + Seawolf Submarine amendments + 1992-1993 + 326 + + + + + STARBASE and Advanced Automotive Development funding + 326 + + + + + Strategic Defense Initiative (SDI) + + + + Amendment-Sasser + August-September 1992 + 326 + + + + + Floor folder + 2 folders + 326 + + + + + Funding and strategy + 2 folders + 327 + + + + + Hearing-Subcommittee on Strategic Forces and Nuclear + Deterrence + + + + April 9, + 1992 + 327 + + + + + May 20, + 1992 + 327 + + + + + Miscellaneous + 1991-1992 + 327 + + + + + + Markup and Subcommittee on Conventional Forces + January-June 1992 + 327 + + + + + Markup, hearing questions, and amendments + April-July 1992 + 327 + + + + + + Tanks and TARDEC amendments + 327 + + +
    + + + FY1994 + + + + B-2 Bomber amendmen (SASC)t + 2 folders + 327 + + + + + Budget-Powell and Aspin statements before Committee, + (SASC) + March-April 1993 + 327 + + + + + Defense funding and markups + 7 subfolders + 327 + + + + + Department of Defense (DOD) bill votes + September 14, + 1993 + 327 + + + + + Focus: HOPE Center for Advanced Technology (CAT) funding + 327 + + + + + Markup, conference, and budget + 5 folders + 328 + + + + + Off-loading amendment + 328 + + + + + + FY1995 + + + + Bottom up review of Department of Defense (DOD) results, + (BUR) + 3 folders + 1993-1994 + 328 + + + + + Defense budget-Peacekeeping + April-June 1994 + 328 + + + + + Defense budget project conference-Levin keynote speech + April 1994 + 328 + + + + + Focus: HOPE Center for Advanced Technology (CAT) funding + 328 + + + + + National Defense Authorization Act-burden sharing + amendment + 328 + + + + + Supplemental defense bill and rescissions + 2 folders + January-April 1995 + 328 + + + + + Supplemental appropriations-B-2 Bombers + 328 + + + + + + FY1995 and FY1996 + + + + Authorization, appropriations and supplementals + 4 folders + 329 + + + + + STARBASE youth programs + 329 + + + + + + FY1995 FY1996 and FY1997-defense budgets + 329 + + + + + FY1996 + + + + Antiballistic Missile Treaty (ABM) and Missile Defense + Act + 2 folders + 1995 + 329 + + + + + Antiballistic Missile Treaty (ABM) + + + + Amendments and hearing on BMD and ABM Treaty on May 4, + 1995 + 1995 January-June + 329 + + + + + AMB and TMD amendments and treaty compatibility + 1993-1995 + 329 + + + + + Background on missile defense and SASC provisions + 329 + + + + + Missile Defense Act of 1995-Levin substitute amendment and + provisions + August-September 1995 + 329 + + + + + Provisions, language, and notes + 2 folders + 329 + + + + + + B-2 funding + 329 + + + + + B-2 Bombers information and Subcommittee on Strategic Forces and + Nuclear Deterrence hearing-May 18 + 1995 + 329 + + +

    (SASC; Subcom Forces and Nuclear Deterrence)

    +
    +
    + + + Ballistic Missile Defense Act of language (BMD) + 1995 + 330 + + + + + Ballistic Missile Defense Act of language (BMD) + 2 folders + 1995 + 330 + + + + + Civilian Marksmanship Program-Lautenberg amendment + 330 + + + + + Defense appropriations + + + + Budget fun facts + 330 + + + + + Conference + 330 + + + + + Department of Defense (DOD) veto + 330 + + + + + Posture hearings (SASC) + 330 + + + + + Markup (SASC) + 330 + + + + + Perry and Shalikashvili + March 5, + 1996 + 330 + + + + + Pork + 330 + + + + + Reprogramming and rescission + 330 + + + + + + Defense appropriations-Residual value + + + + Negotiations with Europe, 5 + 2 folders + March 1994-June 1999 + 330 + + + + + Overseas basing + 1993-1994 + 330 + + + + + + Defense authorization Levin amendment-Chemical Weapons Convention and + START II Treaty + 330 + + + + + Defense authorization bill + + + + Authorization floor statement + 330 + + + + + Markup (SASC) + 330 + + + + + Contingency operations funding + 330 + + + + + Foreign command and UN operational control + 330 + + + + + Defense Modernization Account (DMA) + 330 + + + + + Authorization conference + 330 + + + + + Administration views + 331 + + + + + Hearing on budget-Perry and Shalikashvili + February 9, + 1995 + 331 + + + + + + Defense Authorization Conference + 4 folders + 331 + + + + + Defense authorization markup (SASC) + + + + Amendments + August 1995 + 331 + + + + + B-2 Bombers + June-October 1995 + 331 + + + + + B-2 Bombers-Air Force + September 1995 + 331 + + + + + Conference + 2 folders + September-October 1995 + 331 + + + + + Conference-DOD appeal + September 1995 + 331 + + + + + Conference issues + September 1995 + 331 + + + + + Conference memo-Democrats meeting + November 1995 + 331 + + + + + Conference talking points + 331 + + + + + Electronic Commerce Resource Center (ECRC) program + funding + September 1995 + 331 + + + + + Missile defense-strategic markup + June 1995 + 331 + + + + + Missile defense, August + 331 + + + + + National Guard + 331 + + + + + Notepad + August 3-4, 1995 + 331 + + + + + Notes and amendments (Subcommittee on Seapower) + 331 + + + + + Programs + 331 + + + + + Subcommittee on Airland Forces + June-September + 1995 + 331 + + + + + + Defense authorization markup in SASC + 331 + + + + + Defense authorization-miscellaneous + 2 folders + 332 + + + + + Defense authorization bill schedule and request letters + 332 + + + + + Defense budget + 332 + + + + + Department of Defense (DOD) appropriations conference + 332 + + + + + Department of Defense (DOD) authorization-missile defense + 11 subfolders + 1996 + 332 + + + + + Department of Defense overhead budget amendments + + + + Budgeting and accounting for overhead-Levin + 332 + + + + + Naval petroleum reserves + 332 + + + + + Readiness preservation authority + 332 + + + + + + Focus: HOPE funding + 332 + + + + + Hearing testimony-Henry Kissinger national security and defense, + (SASC) + February 2, + 1995 + 333 + + + + + Markups + June-July 1995 + 333 + + + + + Military readiness-Army and Navy + 6 subfolders + 1994-1995 + 333 + + + + + National Automotive Center amendment + 333 + + + + + Nuclear posture review + 3 folders + 1994-1995 + 333 + + + + + Nuclear stockpile + + + + Hearings, (Subcommittee on Strategic Forces) + 1995-1996 + 333 + + + + + Tritium + June-August 1995 + 333 + + + + + + TACOM and TARDEC + 333 + + + + + Tank funding and treaties + 333 + + +
    + + + FY1997 + + + + Anti-Ballistic Missile Treaty and START Treaty + 333 + + + + + Defense authorization and Anti-Ballistic Missile Treaty-Carl's + file + 333 + + +

    (Also some education, welfare, healthcare)

    +
    +
    + + + Defense authorization conference + 333 + + + + + Defense authorization-Working file-correspondence, meeting, and + memos + 4 folders + 333 + + + + + Defense posture review + March 21, + 1996 + 334 + + + + + Department of Defense (DOD) budget + 334 + + +
    + + + B-2 funding provisions-unclassified + 2 folders + 1991-1993 + 334 + + + + + Department of Energy (DOE) + + + + FY1992 and FY1994-Defense programs + 334 + + + + + FY1994 Budget overview waste management + 334 + + + + + + Michigan Biotechnology Institute appropriations + 1992-1995 + 334 + + +

    (DOD)

    +
    +
    + + + Miscellaneous + + +

    (FY1994 FY1995 and FY1997)

    +
    + + + Base force reductions + 1992 + 334 + + + + + Base force Cheney fight + 1992 + 334 + + + + + Budget alternatives and cuts + 1993 + 334 + + +
    + + + Miscellaneous FY1992-FY1995 + + + + 2 folders + 1992-1994 + 334 + + + + + Base Force + January-May 1992 + 334 + + + + + Defense authorization bill letter and Korea-U.S. Patriot missiles + chronology + March-July 1994 + 334 + + + + + Defense memos and news articles + January 1994 + 334 + + + + + + Miscellaneous conference (SASC) + + + + Deutch, John M. + March 1994 + 1035 + + +

    (Nomination hearing Director CIA)

    +
    +
    + + + Perry, Bill J. + 1991-1993 + 334 + + +

    (Deputy Secretary of Defense)

    +
    +
    + + + Lake, Tony + March 9, + 1994 + 334 + + +

    (Assistant to the President for National Security Affairs meeting)

    +
    +
    + + + Commander in Chiefs + February 14, + 1995 + 334 + + +

    (SASC meeting to receive unified Commanders' testimony)

    +
    +
    + + + Press releases and markup notes Subcommittee Coalition + Defense + 1994-1995 + 334 + + +
    + + + Nuclear weapons deterrence and facilities-FY1992 and FY1993 + 3 subfolders + 334 + + + + + Reprogramming and funding issues -- Lake Shore Inc., (M. Della Pia and + R. Fieldhouse) + 3 folders + 1994-1995 + 335 + + + + + Spending and military budget + 1991-1997 + 335 + + +
    + + + Air Force + + + + Ground Wave Emergency Network (GWEN) and Grand Traverse County, + (Michigan) + 2 folders + 1989-1990 + 335 + + + + + Reports and SASC nomination hearings + 1993-1994 + 1035 + + + + + Space and missile orientation course + October 1992 + 335 + + + + + + Armed Services-roles, missions, and functions + 1993-1995 + 335 + + + + + Army + + + + 70th Reserve Division, (D. Lewis) + 1995 + 335 + + + + + Benoit case + 1992-1995 + 335 + + + + + Inventory management + February 20, + 1996 + 335 + + + + + Issues-meetings, visits, and hearing on modernization before + Subcommittee on Coalition Defense and Reinforcing Forces, (SASC) + 1992-1996 + 335 + + + + + Modernization meeting with Decker + March 1994 + 335 + + + + + + Biological Weapons Convention (BWC) + 1991-1994 + 335 + + + + + Command, control, and communications programs (C3) + 1991 + 335 + + + + + House Armed Services Committee-Les Aspin + + + + Center for Advanced Technologies (CAT) Focus: HOPE + February 18-19, 1993 + 335 + + + + + Meeting notes-cancelled + 335 + + + + + Questions for Aspin memo + February 18, + 1993 + 335 + + + + + STARBASE program + February 1, + 1993 + 335 + + + + + Talking points + 1993 + 335 + + + + + TARDEC/National Automotive Center hearing questions + 1993 + 335 + + + + + Working dinner + November 1991 + 335 + + + + + Wurtsmith talking points + February 19, + 1993 + 335 + + + + + + Committee administrative files-calendars, roster, etc., + (SASC) + 1991-1994 + 335 + + + + + Committee correspondence (SASC) + + + + Reliance on National Guard + 1998 + 1995 + 336 + + + + + + Committee hearings + + + + Defense Commissary Agency (Subcom OGM) + August 6, + 1992 + 336 + + + + + Nuclear Non-proliferation (GAC) + March 14, + 1995 + 336 + + + + + Department of Defense's (DOD) Vulnerability to Information + Warfare-Levin statement (Subcom PSI) + May 22, 1996 + 336 + + + + + + Committee hearings (SASC) + + + + Procurement Integrity Act (Subcom OGM; P. Levine) + February 26, + 1991 + 336 + + + + + Defense Environmental Restoration Account (DERA) (Subcommittee + Readiness) + June 21, 1991 + 336 + + + + + Conventional Armed Forces in Europe + November 13, + 1991 + 336 + + + + + Department of Defense Inventory: Why does the Pentagon buy so much? + (Subcom OGM; P. Levine) + March 11, + 1992 + 336 + + + + + Military base closures (Subcommittee Readiness, Sustainability, and + Support) + April 29, + 1992 + 336 + + + + + Department of Defense (DOD) environmental programs + May 12, 1992 + 336 + + +

    (BRAC; Subcommittee Readiness, Sustainability and Support)

    +
    +
    + + + April and June 1992-North Atlantic Treaty Organization and U.S. + Troops + 336 + + +

    (SASC and Subcommittee Conventional Forces; 3 hearings)

    +
    +
    + + + Impact of the Defense Build-Down on the Ability of the U.S. Industrial + and Technology Base to Meet National Security Requirements, in review of + S.2629 + 2 folders + June 6, 1992 + 336 + + + + + Meeting the Equipment Requirement of Future Conventional Forces + briefing book + June 16, 1992 + 336 + + + + + B-2 bomber, (SASC) + 2 folders + June 29, 1993 + 336 + + + + + Worldwide Threat to the United States and its Interests + Abroad + January 17, + 1995 + Folder 1 of 2 + 336 + + + + + Worldwide Threat to the United States and its Interests + Abroad + January 17, + 1995 + Folder 2 of 2 + 336 + + + + + Tactical Air Command (TACAIR) modernization (Subcommittee on Airland + Forces) + March 29, + 1995 + 336 + + + + + Department of Energy + May 16, 1995 + 336 + + + + + START II + May 17, 1995 + 336 + + + + + Counterproliferation-background information and witness + statements + 1993-1995 + 336 + + + + + Defense Industrial Base + 1992-1993 + 336 + + + + + Department of Defense counter drug operations + 1992 + 1995 + 337 + + + + + Federal emergency response and Federal Emergency Management Agency + (FEMA) + 4 folders + 1992-1994 + 337 + + + + + Memos and statements + 1994-1995 + 337 + + + + + Readiness + 1993 + 1995 + 337 + + + + + Simulation, May 21 + 1992 + February 1994 + 337 + + +
    + + + Committee leadership (SASC) + + + + Levin record and possible Chairman + October-December 1995 + 337 + + + + + Levin statements, remarks, and press releases + 1982-1987 + 337 + + + + + Levin views and markup-Nuclear + 1990-1995 + 337 + + + + + Nunn + September-October 1995 + 337 + + + + + Press preparation + October-November 1995 + 337 + + + + + Votes on NDAA + 1989-1995 + 337 + + + + + Voting record + 1981-1995 + 337 + + + + + + Committee materials (SASC) + + + + Committee organization + 1993-1995 + 337 + + + + + Hearings and Thursday memos + 1992-1995 + 337 + + + + + Plan for legislative issues + November 1992-March 1994 + 337 + + + + + + Conference on Security and Cooperation in Europe (CSCE) + 1992-1994 + 337 + + + + + Contracts and research + + + + Active Matrix Liquid Crystal Displays and Defense Production + Act + 1992-1994 + 337 + + + + + Advanced Research Projects Agency (ARPA)-technology and + enhancement + 1992-1994 + 338 + + + + + Bates Shoe Company, (Rockford, MI) + 1992-1995 + 374 + + + + + Cruise missiles-Tomahawk Missile Program + September 1994 + 338 + + + + + Cybernet Systems Corporation-Small business innovation research + (SBIR) + 1991-1993 + 338 + + + + + Dow Chemical Company + 1993-1995 + 338 + + + + + Electric vehicles-Department of Defense (DOD) + 1992-1994 + 338 + + + + + Enstrom Helicopter Corporation and Bell, (Menominee, MI) + 1992-1993 + 374 + + + + + Environmental Research Institute of Michigan (ERIM) + + + + 2 folders + 1991-1993 + 338 + + + + + Open skies plane + 1993-1994 + 338 + + + + + + Electric, hybrid, and alternative fuel vehicles-Department of Defense + (DOD) + 1992-1994 + 338 + + + + + Flat panel display initiative + 3 folders + 1994-1995 + 338 + + + + + General Dynamics land systems division + 2 folders + 1992-1995 + 338 + + + + + Industrial Technology Institute-STEP + 1992-1994 + 338 + + + + + Israel and Department of Defense (DOD) missile + collaboration + 1992-1993 + 338 + + + + + KMS Fusion, Inc. (Ann Arbor, Michigan) + + + + 2 folders + 1989-1992 + 338 + + + + + 1991-1993 + 338 + + + + + + Lake Shore, Inc., (Iron Mountain, Michigan) + 2 folders + 1993-January 1994 + 339 + + + + + LTV missile division acquisition, (Lockheed Martin) + May-August 1992 + 339 + + + + + MERRA + 2 folders + 1989-1993 + 339 + + + + + Miscellaneous projects + 1993-1995 + 339 + + + + + National Breast Cancer Coalition-DOD funding for research + May 1995 + 339 + + + + + Optical Imaging Systems, Inc. (OIS) (ECD; Michigan; + Ovshinsky) + + + + 2 folders + 1991-1992 + 339 + + + + + Company information + 1995 + 339 + + + + + Flat panel display + + + + 3 folders + 1991-1995 + 339 + + + + + 1992-1993 + 339 + + + + + + + Procurement Technical Assistance Center (PTAC) + 1995 + 339 + + + + + Science and technology funding information + 1995 + 339 + + + + + Science and technology research and contracts + 2 folders + 1992-1993 + 339 + + + + + Sparton Electronics (Jackson, Michigan) + January-May 1994 + 340 + + + + + Sparton Defense Electronics Corporation-Sonobuoys + 2 folders + 1988-1992 + 340 + + + + + Strohtech and Combat Casualty Care + 1991-1992 + 340 + + + + + Tank Automotive Research Development and Engineering Center + (TARDEC) + + + + 1992-1996 + 340 + + +

    (Includes a floppy disk)

    +
    + + + TARDEC Tech Transfer Manual + 1983-1994 + Online + + +
    + + + 4 folders + 1993-1994 + 340 + + + + + 1994-1995 + 340 + + +

    (Includes TACOM)

    +
    +
    +
    + + + Technology Reinvestment Project (TRP), (SASC) + 4 folders + 1994-1995 + 340 + + + + + Teledyne Continental Motors + 1992-1993 + 340 + + + + + Triada + 1992-1993 + 340 + + + + + Triada and Digital Data Systems + 1994 + 341 + + + + + University of Michigan + 1993-1995 + 341 + + + + + Western Michigan University (WMU) aviation grant + October 1994 + 341 + + + + + Williams International + 1991-1993 + 341 + + + + + Zenith desktop + 1992-1993 + 341 + + +

    (Zenith Data Systems, Air Force; D. Lewis)

    +
    +
    +
    + + + Conventional Forces in Europe Treaty (CFE) + + + + Background, Dear Colleague, and news articles + 1991 + 341 + + + + + Background, statements, and testimony + 1991 + 341 + + + + + Hearing statements and CRS issue briefs + 1991-1992 + 341 + + + + + Hearing and statements + 2 folders + 1991 + 341 + + + + + Hearing questions + November 1991 + 341 + + + + + + Conversion + 2 folders + 1992-1993 + 341 + + + + + Defense conversion funding + 1992-1993 + 341 + + + + + Defense Conversion Task Force + + + + Background and notes + 1991-1992 + 341 + + + + + Briefing + 1991 + 341 + + + + + Defense conversion adjustment + 2 folders + 1991-1992 + 341 + + + + + Defense economic adjustment program + 1991-1992 + 325 + + + + + Hearing-Adequacies of Programs for Civilian Employees and Local + Communities Affected by Base Closing and Realignment + February 20, + 1992 + 342 + + +

    (GAC subcommittee on Federal Services, Post Office, and Civil Service)

    +
    +
    + + + Levin talking points and year-end report + September-December 1992 + 342 + + +

    (Senate Defense and Economic Transition Task Force)

    +
    +
    +
    + + + Defense Enterprise Fund, (Nunn-Lugar) + September 1994 + 342 + + + + + Defense Finance and Accounting Service (DFAS), (MI) + 1992-1994 + 342 + + + + + Defense Information Systems Agency (DISA) + 1993 + 342 + + + + + Defense Reutilization and Marketing Service (DRMS) + + + + 1994-1996 + 342 + + + + + Battle Creek + 5 subfolders + 1993-1996 + 342 + + + + + + Department of Defense (DOD) + + + + Ant-deficiency Act Violation Program -- briefing and U.S. + Codes + 1994 + 342 + + + + + Bottom up review, (BUR) + 1994-1995 + 342 + + + + + Resource Recovery and Recycling Program + December 1993 + 342 + + +

    (GAO results of Subcom OGM inquiry into possible misuse and unaccountability of + funds)

    +
    +
    +
    + + + Department of Energy-Issues + 1991-1995 + 342 + + + + + Focus: HOPE Center for Advanced Technologies (CAT) + + + + Advanced Technology Program proposal + 1995 + 342 + + + + + Appropriation requests + 1992-1993 + 342 + + + + + Department of Defense and G-7 + 3 folders + 1989-1994 + 342 + + + + + Education + 1991-1993 + 343 + + + + + Father Cunningham + August 1999 + 343 + + + + + Funding + 2 folders + 1995-1997 + 343 + + + + + Grand Opening + 1992-1993 + 343 + + + + + History + 2 folders + 1991-1993 + 343 + + + + + Letters of commendation + 1991-1993 + 343 + + + + + MacNeil-Lehrer correspondence + 1992-1993 + 343 + + + + + Miscellaneous + 1996-1999 + 343 + + + + + Project description and objectives + 1994 + 343 + + + + + Press + + + + 3 folders + 1991-1993 + 343 + + + + + 2 folders + 1992-1993 + 343 + + + + + + Visits + + + + Ron Brown and Colin Powell + 1993 + 343 + + + + + President Clinton and Father Cunningham + March 1994 + 343 + + + + + + + Fort Custer industrial park expansion, (Battle Creek, MI) + 1994 + 374 + + + + + Ground Wave Emergency Network (GWEN) Sites + March 1994 + 343 + + + + + Industrial base/complex + + + + Contracting with defense depots or private sector + 1993 + 343 + + + + + Funding + 1991-1995 + 343 + + + + + + Intelligence Committee-budget and questions for SASC hearing with CIA + Director + 1992-1995 + 343 + + + + + Marine Corps + + + + Meeting with Director of Expeditionary Warfare Jim Jones and + information packets + 1994-1995 + 343 + + + + + + McCain writings + 2 folders + 1994-1995 + 343 + + + + + Meeting memos and notes + 1992-1995 + 344 + + + + + Military bases and installations + + + + Air National Guard cuts, base closures, and Alpena Combat Readiness + Training Center + 1994-1996 + 344 + + + + + Base closure, civilian reuse, and meetings + June-October 1993 + 344 + + + + + Base Force + 1991-1992 + 344 + + + + + Base Realignment and Closure Commission (BRAC) + + + + 1994-1995 + 344 + + + + + Commission and Tank Automotive Command (TACOM), + (Michigan) + 1991-1993 + 344 + + + + + Commission confirmation hearings, (SASC) + January-February 1993 + 344 + + + + + Commission recommendations and proceeding transcripts + 2 folders + March-July 1995 + 344 + + + + + Delay + January 1995 + 344 + + + + + Department of Defense Base Closure and Realignment Report + March 1995 + 344 + + + + + Detroit Arsenal Tank Plant (DATP) + 1995 + 344 + + + + + Detroit Arsenal Tank Plant, regional hearing, and commission + recommendations + 3 folders + April-October 1995 + 344 + + + + + Hearing in Chicago and Michigan witnesses + 1995 + 344 + + + + + Results + 1993-1996 + 344 + + + + + Selfridge Air National Guard Base and Chicago regional + hearing + March-April 1995 + 344 + + + + + Selfridge and Detroit Arsenal Tank Plant-Levin's file + 1995 + 345 + + + + + State impacts + 1993-1994 + 345 + + + + + + Base restructuring and closure + 5 folders + 1992-1993 + 345 + + + + + Battle Creek issue and funding, (D. Lewis) + 2 folders + 1993-1995 + 345 + + + + + Battle Creek Federal Center + April-June 1993 + 345 + + + + + Battle Creek Federal Center-save the center + July 1993 + 345 + + + + + Camp Grayling Michigan National Guard Training Center, ((D. + Lewis) + 2 folders + 1989-1994 + 345 + + + + + Camp Grayling Multi-Purpose Range Complex (MPRC) + 2 folders + 1990-1991 + 345 + + + + + Camp Grayling Multi-purpose range complex (MPRC), (D. + Lewis) + 1991-1994 + 345 + + + + + Coast Guard station closings + + + + Budget FY96 + 346 + + + + + Budget proposal + May-June 1995 + 346 + + + + + Meeting with Peschel-Michigan bases + November 1995 + 346 + + + + + Michigan bases + July-October 1995 + 346 + + + + + Michigan stations + 2 folders + 1995-1996 + 346 + + + + + Muskegon and Manistee bases-Levin file + January 1996 + August 1995 + 346 + + + + + Reorganization and base consolidation, (Michigan) + 2 folders + June 1995-January + 1995 + 346 + + + + + Reorganization + January-May 1996 + 346 + + + + + + Detroit Naval Air Facility-possible closure + March-April 1993 + 346 + + + + + Ft. Dettrick lab proposal-vaccine manufacturing + April-May 1994 + 346 + + + + + KI Sawyer + 1988-1992 + 346 + + + + + KI Sawyer, (D. Lewis and R. Forrester) + 1994 + 346 + + + + + KI Sawyer-closure and reuse (BRAC; Michigan) + + + + Pre-legislation + 1983-1992 + 346 + + + + + Base Reuse Plan-Greiner Consultant Team + 5 folders + March 27, + 1995 + 346 + + + + + Charts-BRAC + 1988 + 1991 + 347 + + + + + Closing documents + + + + January-April 1993 + 347 + + + + + 2 folders + March-June 1993 + 347 + + + + + + Closing + 4 subfolders + 1993-1995 + 347 + + + + + Closing + 2 folders + 1993-1996 + 347 + + + + + Closure grant for involuntary separation + November 1994-February 1995 + 347 + + + + + Conversion + 1993-1995 + 347 + + +

    (Also SBC markup of S.1830)

    +
    +
    + + + Conversion -- leases, (D. Lewis and R. Forrester) + 3 folders + March 1995 + 347 + + + + + Conversion + 1996 + 347 + + + + + Conversion, 1996, 1998 (M. Della Pia, R. Forrester, and R. + Fieldhouse) + 1996-1998 + 348 + + + + + Correspondence-Undersecretary of the Air Force Rudy + DeLeon + March-May 1996 + 348 + + + + + Dislocated Worker Programs-U.S. Department of Labor + 1993 + 348 + + + + + Economic Development Administration grant + December 1995-May 1996 + 348 + + + + + Fort Ord example + March-April 1996 + 348 + + + + + Hearing and follow-up, (BRAC) + 2 folders + March-June 1993 + 348 + + + + + KI Sawyer and re-use, (D. Lewis) + 3 folders + 1993 + 348 + + + + + Levin's file + 3 folders + 1993 + 348 + + + + + Meetings + March-May 1993 + 348 + + + + + News articles and letters + 2 folders + March 1993 + 348 + + + + + Rapcon radar surveillance operation, (D. Lewis and R. + Forrester) + 1994 + 348 + + + + + Record of Decision + April 1996 + 348 + + + + + Restoration clause + October 1995-March 1996 + + + + + Markup, conference, and budget + 5 folders + 328 + + + + + Off-loading amendment + 328 + + +
    + + + FY1995 + + + + Bottom up review of Department of Defense (DOD) results, + (BUR) + 3 folders + 1993-1994 + + + + + Defense budget-Peacekeeping + April-June 1994 + 328 + + + + + Defense budget project conference-Levin keynote speech + April 1994 + 328 + + + + + Focus: HOPE Center for Advanced Technology (CAT) funding + 328 + + + + + National Defense Authorization Act-burden sharing + amendment + 328 + + + + + Supplemental defense bill and rescissions + 2 folders + January-April 1995 + 328 + + + + + Supplemental appropriations-B-2 Bombers + + + + + + FY1995 and FY1996 + + + + Authorization, appropriations and supplementals + 4 folders + 329 + + + + + STARBASE youth programs + 329 + + + + + + FY1995 FY1996 and FY1997-defense budgets + 329 + + + + + FY1996 + + + + Antiballistic Missile Treaty (ABM) and Missile Defense + Act + 2 folders + 1995 + 329 + + + + + Antiballistic Missile Treaty (ABM) + + + + Amendments and hearing on BMD and ABM Treaty on May 4, + 1995 + 1995 January-June + 329 + + + + + AMB and TMD amendments and treaty compatibility + 1993-1995 + 329 + + + + + Background on missile defense and SASC provisions + 329 + + + + + Missile Defense Act of 1995-Levin substitute amendment and + provisions + August-September 1995 + 329 + + + + + Provisions, language, and notes + 2 folders + 329 + + + + + + B-2 funding + 329 + + + + + B-2 Bombers information and Subcommittee on Strategic Forces and + Nuclear Deterrence hearing-May 18 + 1995 + 329 + + +

    (SASC; Subcom Forces and Nuclear Deterrence)

    +
    +
    + + + Ballistic Missile Defense Act of language (BMD) + 1995 + 330 + + + + + Ballistic Missile Defense Act of language (BMD) + 2 folders + 1995 + 330 + + + + + Civilian Marksmanship Program-Lautenberg amendment + 330 + + + + + Defense appropriations + + + + Budget fun facts + 330 + + + + + Conference + 330 + + + + + Department of Defense (DOD) veto + 330 + + + + + Posture hearings (SASC) + 330 + + + + + Markup (SASC) + 330 + + + + + Perry and Shalikashvili + March 5, + 1996 + 330 + + + + + Pork + 330 + + + + + Reprogramming and rescission + 330 + + + + + + Defense appropriations-Residual value + + + + Negotiations with Europe, 5 + 2 folders + March 1994-June 1999 + 330 + + + + + Overseas basing + 1993-1994 + 330 + + + + + + Defense authorization Levin amendment-Chemical Weapons Convention and + START II Treaty + 330 + + + + + Defense authorization bill + + + + Authorization floor statement + 330 + + + + + Markup (SASC) + 330 + + + + + Contingency operations funding + 330 + + + + + Foreign command and UN operational control + 330 + + + + + Defense Modernization Account (DMA) + 330 + + + + + Authorization conference + 330 + + + + + Administration views + 331 + + + + + Hearing on budget-Perry and Shalikashvili + February 9, + 1995 + 331 + + + + + + Defense Authorization Conference + 4 folders + 331 + + + + + Defense authorization markup (SASC) + + + + Amendments + August 1995 + 331 + + + + + B-2 Bombers + June-October 1995 + 331 + + + + + B-2 Bombers-Air Force + September 1995 + 331 + + + + + Conference + 2 folders + September-October 1995 + 331 + + + + + Conference-DOD appeal + September 1995 + 331 + + + + + Conference issues + September 1995 + 331 + + + + + Conference memo-Democrats meeting + November 1995 + 331 + + + + + Conference talking points + 331 + + + + + Electronic Commerce Resource Center (ECRC) program + funding + September 1995 + 331 + + + + + Missile defense-strategic markup + June 1995 + 331 + + + + + Missile defense, August + 331 + + + + + National Guard + 331 + + + + + Notepad + August 3-4, 1995 + 331 + + + + + Notes and amendments (Subcommittee on Seapower) + 331 + + + + + Programs + 331 + + + + + Subcommittee on Airland Forces + June-September + 1995 + 331 + + + + + + Defense authorization markup in SASC + 331 + + + + + Defense authorization-miscellaneous + 2 folders + 332 + + + + + Defense authorization bill schedule and request letters + 332 + + + + + Defense budget + 332 + + + + + Department of Defense (DOD) appropriations conference + 332 + + + + + Department of Defense (DOD) authorization-missile defense + 11 subfolders + 1996 + 332 + + + + + Department of Defense overhead budget amendments + + + + Budgeting and accounting for overhead-Levin + 332 + + + + + Naval petroleum reserves + 332 + + + + + Readiness preservation authority + 332 + + + + + + Focus: HOPE funding + + + + + Hearing testimony-Henry Kissinger national security and defense, + (SASC) + February 2, + 1995 + 333 + + + + + Markups + June-July 1995 + 333 + + + + + Military readiness-Army and Navy + 6 subfolders + 1994-1995 + 333 + + + + + National Automotive Center amendment + 333 + + + + + Nuclear posture review + 3 folders + 1994-1995 + 333 + + + + + Nuclear stockpile + + + + Hearings, (Subcommittee on Strategic Forces) + 1995-1996 + 333 + + + + + Tritium + June-August 1995 + 333 + + + + + + TACOM and TARDEC + 333 + + + + + Tank funding and treaties + 333 + + +
    + + + FY1997 + + + + Anti-Ballistic Missile Treaty and START Treaty + 333 + + + + + Defense authorization and Anti-Ballistic Missile Treaty-Carl's + file + 333 + + +

    (Also some education, welfare, healthcare)

    +
    +
    + + + Defense authorization conference + 333 + + + + + Defense authorization-Working file-correspondence, meeting, and + memos + 4 folders + 333 + + + + + Defense posture review + March 21, + 1996 + 334 + + + + + Department of Defense (DOD) budget + 334 + + +
    + + + B-2 funding provisions-unclassified + 2 folders + 1991-1993 + 334 + + + + + Department of Energy (DOE) + + + + FY1992 and FY1994-Defense programs + 334 + + + + + FY1994 Budget overview waste management + 334 + + + + + + Michigan Biotechnology Institute appropriations + 1992-1995 + 334 + + +

    (DOD)

    +
    +
    + + + Miscellaneous + + +

    (FY1994 FY1995 and FY1997)

    +
    + + + Base force reductions + 1992 + 334 + + + + + Base force Cheney fight + 1992 + 334 + + + + + Budget alternatives and cuts + 1993 + 334 + + +
    + + + Miscellaneous FY1992-FY1995 + + + + 2 folders + 1992-1994 + 334 + + + + + Base Force + January-May 1992 + 334 + + + + + Defense authorization bill letter and Korea-U.S. Patriot missiles + chronology + March-July 1994 + 334 + + + + + Defense memos and news articles + January 1994 + 334 + + + + + + Miscellaneous conference (SASC) + + + + Deutch, John M. + March 1994 + 1035 + + +

    (Nomination hearing Director CIA)

    +
    +
    + + + Perry, Bill J. + 1991-1993 + 334 + + +

    (Deputy Secretary of Defense)

    +
    +
    + + + Lake, Tony + March 9, + 1994 + 334 + + +

    (Assistant to the President for National Security Affairs meeting)

    +
    +
    + + + Commander in Chiefs + February 14, + 1995 + 334 + + +

    (SASC meeting to receive unified Commanders' testimony)

    +
    +
    + + + Press releases and markup notes Subcommittee Coalition + Defense + 1994-1995 + 334 + + +
    + + + Nuclear weapons deterrence and facilities-FY1992 and FY1993 + 3 subfolders + 334 + + + + + Reprogramming and funding issues -- Lake Shore Inc., (M. Della Pia and + R. Fieldhouse) + 3 folders + 1994-1995 + 335 + + + + + Spending and military budget + 1991-1997 + 335 + + +
    + + + Military bases and installations + + + + Air National Guard cuts, base closures, and Alpena Combat Readiness + Training Center + 1994-1996 + 344 + + + + + Base closure, civilian reuse, and meetings + June-October 1993 + 344 + + + + + Base Force + 1991-1992 + 344 + + + + + Base Realignment and Closure Commission (BRAC) + + + + 1994-1995 + 344 + + + + + Commission and Tank Automotive Command (TACOM), + (Michigan) + 1991-1993 + 344 + + + + + Commission confirmation hearings, (SASC) + January-February 1993 + 344 + + + + + Commission recommendations and proceeding transcripts + 2 folders + March-July 1995 + 344 + + + + + Delay + January 1995 + 344 + + + + + Department of Defense Base Closure and Realignment Report + March 1995 + 344 + + + + + Detroit Arsenal Tank Plant (DATP) + 1995 + 344 + + + + + Detroit Arsenal Tank Plant, regional hearing, and commission + recommendations + 3 folders + April-October 1995 + 344 + + + + + Hearing in Chicago and Michigan witnesses + 1995 + 344 + + + + + Results + 1993-1996 + 344 + + + + + Selfridge Air National Guard Base and Chicago regional + hearing + March-April 1995 + 344 + + + + + Selfridge and Detroit Arsenal Tank Plant-Levin's file + 1995 + 345 + + + + + State impacts + 1993-1994 + 345 + + + + + + Base restructuring and closure + 5 folders + 1992-1993 + 345 + + + + + Battle Creek issue and funding, (D. Lewis) + 2 folders + 1993-1995 + 345 + + + + + Battle Creek Federal Center + April-June 1993 + 345 + + + + + Battle Creek Federal Center-save the center + July 1993 + 345 + + + + + Camp Grayling Michigan National Guard Training Center, ((D. + Lewis) + 2 folders + 1989-1994 + 345 + + + + + Camp Grayling Multi-Purpose Range Complex (MPRC) + 2 folders + 1990-1991 + 345 + + + + + Camp Grayling Multi-purpose range complex (MPRC), (D. + Lewis) + 1991-1994 + 345 + + + + + Coast Guard station closings + + + + Budget FY96 + 346 + + + + + Budget proposal + May-June 1995 + 346 + + + + + Meeting with Peschel-Michigan bases + November 1995 + 346 + + + + + Michigan bases + July-October 1995 + 346 + + + + + Michigan stations + 2 folders + 1995-1996 + 346 + + + + + Muskegon and Manistee bases-Levin file + January 1996 + August 1995 + 346 + + + + + Reorganization and base consolidation, (Michigan) + 2 folders + June 1995-January + 1995 + 346 + + + + + Reorganization + January-May 1996 + 346 + + + + + + Detroit Naval Air Facility-possible closure + March-April 1993 + 346 + + + + + Ft. Dettrick lab proposal-vaccine manufacturing + April-May 1994 + 346 + + + + + KI Sawyer + 1988-1992 + 346 + + + + + KI Sawyer, (D. Lewis and R. Forrester) + 1994 + 346 + + + + + KI Sawyer-closure and reuse (BRAC; Michigan) + + + + Pre-legislation + 1983-1992 + 346 + + + + + Base Reuse Plan-Greiner Consultant Team + 5 folders + March 27, + 1995 + 346 + + + + + Charts-BRAC + 1988 + 1991 + 347 + + + + + Closing documents + + + + January-April 1993 + 347 + + + + + 2 folders + March-June 1993 + 347 + + + + + + Closing + 4 subfolders + 1993-1995 + 347 + + + + + Closing + 2 folders + 1993-1996 + 347 + + + + + Closure grant for involuntary separation + November 1994-February 1995 + 347 + + + + + Conversion + 1993-1995 + 347 + + +

    (Also SBC markup of S.1830)

    +
    +
    + + + Conversion -- leases, (D. Lewis and R. Forrester) + 3 folders + March 1995 + 347 + + + + + Conversion + 1996 + 347 + + + + + Conversion, 1996, 1998 (M. Della Pia, R. Forrester, and R. + Fieldhouse) + 1996-1998 + 348 + + + + + Correspondence-Undersecretary of the Air Force Rudy + DeLeon + March-May 1996 + 348 + + + + + Dislocated Worker Programs-U.S. Department of Labor + 1993 + 348 + + + + + Economic Development Administration grant + December 1995-May 1996 + 348 + + + + + Fort Ord example + March-April 1996 + 348 + + + + + Hearing and follow-up, (BRAC) + 2 folders + March-June 1993 + 348 + + + + + KI Sawyer and re-use, (D. Lewis) + 3 folders + 1993 + 348 + + + + + Levin's file + 3 folders + 1993 + 348 + + + + + Meetings + March-May 1993 + 348 + + + + + News articles and letters + 2 folders + March 1993 + 348 + + + + + Rapcon radar surveillance operation, (D. Lewis and R. + Forrester) + 1994 + 348 + + + + + Record of Decision + April 1996 + 348 + + + + + Restoration clause + October 1995-March 1996 + + + + + Re-use, (D. Lewis) + 1994-1995 + 349 + + +
    + + + KI Sawyer and Wurtsmith -- conversion agencies, (D. Lewis) + 1994 + 349 + + + + + Michigan defense conversion letters + June-July 1992 + 349 + + + + + Novak base closure disposal + 1993 + 349 + + + + + Phelps-Collins Air National Guard Base, (D. Lewis) + 1991-1995 + 349 + + + + + Selfridge Air National Guard Base + 1992-1993 + 349 + + +

    (Michigan Red Devils sticker and patch)

    +
    +
    + + + Selfridge closing, (BRAC) + 1995-1996 + 349 + + + + + Tank Automotive Command (TACOM) (R. Fieldhouse) + + + + 2 folders + 1991 + 349 + + + + + TACOM and Computer Methods Corporation (CMC) + 1992-1993 + 349 + + + + + Overview + 1990 + 349 + + + + + Propulsion division + 2 folders + 1991 + 349 + + + + + Reduction-in-force + 1990-1991 + 349 + + + + + TACOM and Reduction in Force (RIF), (SASC) + 1992-1995 + 349 + + + + + TACOM and TARDEC + 2 folders + 1992-1993 + 349 + + + + + Vision 2000 restructuring plan + March 1991 + 350 + + + + + + Tank Automotive Research Development and Engineering Center (TARDEC) + (R.Fieldhouse) + + + + 1992 and 1994(SASC) + 1992-1994 + 350 + + + + + Automotive Partnership Initiative, Automotive Research Center (ARC), + and TARDEC, (SASC) + 2 folders + 1993-1994 + 350 + + + + + TARDEC and National Automotive Center (NAC) + 2 folders + 1993 + 350 + + + + + University Commissioning Ceremony + August 31, + 1992 + 350 + + + + + + Wurtsmith Air Force Base + + + + 1991-1993 + 350 + + +

    (BRAC)

    +
    +
    + + + Re-use, (D. Lewis) + 2 folders + 1991-1995 + 350 + + + + + Property issues, (D. Lewis) + 2 folders + 1994-1995 + 350 + + + + + Seminar + August 13, + 1991 + 351 + + +
    +
    + + + Military construction -- Michigan + + + + 1991-1995 + 351 + + + + + 1995 + 351 + + + + + + Military health + + + + Abortions + June 1995 + 351 + + + + + Abortion and HIV + 1996 + 351 + + + + + DOD health system, abortion, and hearings, (SASC) + 1992-1995 + 351 + + + + + Grand Rapids Combat Support Hospital reorganization + September 1991 + 351 + + +

    (MEDFORCE 2000)

    +
    +
    + + + Military Health Services System + 1994-1995 + 351 + + + + + Organ donor and transplant programs-DOD + 1993 + 351 + + + + + Organ donors-Department of Defense (DOD) + 1987 + 1993 + 351 + + + + + Organ transplant answers to CIA, (SASC) + September 1992 + 351 + + + + + Psychologist and drugs-Department of Defense + 1995 + 351 + + +
    + + + Military foreign relations + 2 folders + 1992-1995 + 351 + + + + + Military mobility-studies and reports + 1991-1994 + 351 + + + + + Military personnel + + + + Civilian-military integration + 1994-1995 + 351 + + + + + Manpower and sexual orientation + 1992-1993 + 351 + + + + + Readiness, housing, quality of life + 1995 + 351 + + +

    (Includes some hearing testimonies)

    +
    +
    + + + Women-position creation + 1994 + 351 + + +
    + + + Military readiness, (SASC) + 1994-1995 + 351 + + + + + Military recruiting and ads, (R.Fieldhouse) + 1991-1992 + 351 + + + + + Militia + + + + Hearing-House Committee + June 11, 1995 + 351 + + + + + Hearing-The Militia Movement in the United States + June 15, 1995 + 351 + + +

    (Levin speaks at hearing; Subcommittee on Terrorism, Technology, and Government + Information; Michigan)

    +
    +
    + + + Memos and background + 1995 + 352 + + + + + Michigan Emergency Volunteers + 1993-1995 + 352 + + + + + Michigan Militia + + + + May 1995 + 352 + + + + + Information and memos + April 1995 + 352 + + + + + Members and correspondence + 1990-1993 + 352 + + + + + + News articles + + + + 1994-1995 + 352 + + + + + Articles and Free Militia Field Manual Section 1 + 1994-1995 + 352 + + + + + Articles and memos + 1995-1996 + 352 + + + + + Michigan + 1994-1995 + 352 + + + + + Michigan militias information + 1995 + 352 + + + + + Upper Peninsula-Michigan Militia + 1994-1995 + 352 + + + + + + Notes, (Michigan) + 1995 + 352 + + + + + Oklahoma City, Michigan Militia, and unprotected school buses of + military dependent children in Saudi Arabia, and other + 1995-1996 + 352 + + +
    + + + Miscellaneous Michigan defense issues, (D. Lewis) + 1992-1995 + 352 + + + + + Missile defense bill-GOP + 1996 + 352 + + + + + National Guard + + + + Guards and reserves + 1991-1992 + 352 + + + + + Michigan, (D. Lewis) + 1993-1995 + 352 + + + + + Michigan Army National Guard binder + 1992-1993 + 352 + + + + + Redistribution of guard and reserve units + February-June 1992 + 352 + + + + + + National Medal of Technology-Dr. Sam Williams + October 1994 + 352 + + + + + National security strategy and Contract with America + 1994-1996 + 352 + + + + + National strategy and speeches + 1992 + 1995 + 352 + + + + + Navy + 353 + + + + Aviation and new technology + 2 folders + 1991-1994 + 353 + + + + + Meetings with Chief of Naval Operations-Adm. Boorda, + (Peacekeeping) + 1994-1995 + 353 + + + + + Project ELF, (D. Lewis) + 1995 + 353 + + + + + Reports-naval forces cost and technology development + 2 folders + 1991-1995 + 353 + + + + + Vincennes Incident-Iran, (SASC) + July 1992 + 353 + + + + + + NATO + + + + July-December 1993 + 353 + + + + + Authorization bill amendment, (Senator McConnell) + January 1994 + 353 + + + + + Conference on Security and Cooperation in Europe (CSCE) + summit + October-December 1994 + 353 + + + + + Hearings (SASC) + + + + 1992-1993-NATO hearings + 353 + + + + + NATO's Future (Subcommittee on Coalition Defense and Reinforcing + Forces) + 2 folders + June 18, + 1993 + 353 + + + + + NATO Summit and Future of European Security (Subcommittee on + Coalition Defense and Reinforcing Forces) + February 1, + 1994 + 353 + + + + + NATO's Future (Subcommittee on Coalition Defense and Reinforcing + Forces) + February 23, + 1994 + + + + Binder + 353 + + + + + Materials + 353 + + + + + + April 5, + 1994 + 353 + + +

    (Subcommittee Airland Forces)

    +
    +
    +
    +
    + + + NATO expansion + 6 folders + 1994-1995 + 353 + + + + + Nominations-Appointment and Retirement + + + + Miscellaneous confirmation hearings (SASC) + + + + 1992 + 1048 + + + + + 1993 + 1048 + + + + + + Questions for Fraser, Lilley, and Reis + November 1991 + 1048 + + + + + Assistant Secretary of Air Force-Rodney Coleman + February-April 1994 + 1048 + + + + + Army Chief of Staff-Gen. Reimer + April-May 1995 + 1048 + + + + + Ballistic Missile Defense Organization Director-Lt. Gen. Malcolm + O'Neil + 2 folders + 1993-1994 + 1048 + + + + + Department of Defense (DOD) nominees + 3 folders + 1993-1994 + 1048 + + + + + Deputy Secretary of Defense-John White + June 1995 + 1048 + + + + + Joint Chiefs of Staff Chairman-John Shaliksashvili + + + + September 1995 + 1035 + + +

    (Reconfirmation)

    +
    +
    + + + September-October 1995 + 1048 + + +
    + + + Joint Chiefs of Staff Vice Chairman-Adm. David Jeremiah + 1992-1993 + 1048 + + +

    (Contains information on the organization of DOD)

    +
    +
    + + + Assistant Secretary of Defense-Morton Halperin + October-November 1994 + 1035 + + + + + Deputy under Secretary of Defense for Policy nomination-Libby, + Scooter + 1992 + 1048 + + + + + Deputy Secretary of Defense and Under Secretary of Defense for + Acquisition-John Deutch + 2 folders + 1993-1995 + 1031 + + + + + Secretary of Defense-Les Aspin + 1035 + + + + Chairman of HASC + 1992-1993 + 1035 + + + + + Correspondence with Levin + January-February 1992 + 1035 + + + + + Hearing + January 1993 + 1035 + + + + + + Secretary of Defense-Adm. Bobby Inman + December 1993-January 1994 + 1035 + + + + + Secretary of Defense-William Perry + + + + 2 folders + January-March 1994 + 1036 + + + + + Confirmation hearing and advance questions + February 1994 + 1036 + + + + + Meeting memos and attachments-peace operations + 1994 + 1036 + + + + + Meeting + August 1994 + 1036 + + + + + + Under Secretary of Defense for Acquisition and Technology-Paul + Kaminski + September 1994 + 1036 + + + + + Defense Science Board-Dr. Lee, (Keweenaw Research Center) + 1991-1993 + 1036 + + + + + Assistant Secretary of the Navy for Research, Development and + Acquisition-John W. Douglass + September 1995 + 1036 + + + + + Lt. Gen. Buster Glosson-retirement + 355 + + + + 2 folders + 1992-1993 + 355 + + + + + 2 folders + March-September 1994 + 352 + + + + + + Adm. Frank B. Kelso retirement + April 1994 + 354 + + + + + Cdr. Robert Strumpf + March 1996 + 354 + + +
    + + + Nuclear + + + + Anti-ballistic Missile Treaty (ABM) + + + + Amendment-Levin + July-August 1991 + 354 + + + + + Amendment-Levin and Nunn + 1987 + 354 + + + + + Amendment and statements + 1987-1988 + 354 + + + + + Richard Fieldhouse + 1995 + 354 + + + + + + Anti-ballistic Missile Treaty and Related issues briefing + book + 1987 + 354 + + + + + ABM and Strategic Arms Reduction Treaty (START) + 1995 + 354 + + +

    (Mention of STARBASE program)

    +
    +
    + + + Anti-ballistic Missile (ABM) and Strategic Defense Initiative + (SDI) + 1985-1988 + 354 + + + + + Arms control + + + + 1991-1995 + 354 + + + + + Arms Control and Disarmament Agency (ACDA) + 1993-1996 + 354 + + + + + Briefing information and letters + 2 folders + 1992-1996 + 354 + + + + + Senate Arms Control Observer Group + 1994-1996 + 355 + + + + + Senate Arms Control Observer Group briefing on Conventional Forces in + Europe Treaty and military strength, (CFE) + 1995 + 355 + + + + + + Arms cuts US and Russia + 2 folders + 1991 + 1036 + + +

    (Includes SASC hearing materials from nomination of Gen. Colin Powell for + reappointment as Chairman of Joint Chiefs of Staff)

    +
    +
    + + + Ballistic Missile Defense (BMD) + + + + Hearings, (SASC) + January-May 1995 + 355 + + + + + + Chemical Weapons Convention (CWC) + + + + 2 folders + 1991-1995 + 355 + + + + + 3 folders + 1992-1994 + 355 + + + + + Background and hearing materials + 1994-1995 + 355 + + + + + Riot control agents + May 1995 + 355 + + + + + + Citizens for the Safe Disposal of Chemical Weapons (COSAD) + February-June 1995 + 355 + + + + + Comprehensive Test Ban Treaty + 2 folders + 1992-1995 + 355 + + + + + Comprehensive Test Ban Treaty negotiations + 1993-1994 + 355 + + + + + Countries + + + + European nuclear systems-Committee on Foreign Affairs + hearings + 1982-1984 + 355 + + + + + France-nuclear weapons + 1991-1995 + 355 + + + + + India and Pakistan nuclear program + 1993-1996 + 355 + + + + + Foreign nuclear powers and relations + 1993-1995 + 355 + + + + + Iraq and Iran nuclear weapons and weapons of mass + destruction + 1991-1995 + 356 + + + + + Japan-importation of plutonium + 1992 + 356 + + + + + New Zealand-foreign policy review and nuclear ship ban + 1992-1994 + 356 + + + + + Russia + + + + Cooperative threat reduction and dismantlement + 2 folders + 1991-1995 + 356 + + + + + Dismantle weapons funding + 1994 + 1991 + 356 + + + + + Military update + April 1994 + 356 + + + + + Nuclear scientists + 1992-1994 + 356 + + + + + Nuclear weapons and plutonium + 1991-1994 + 356 + + + + + + Ukraine + 1993 + 356 + + + + + + Department of Energy (DOE) + + + + 1993 + 356 + + + + + Cleanup + 1992 + 356 + + + + + Department and Secretary Hazel O'Leary + 1994 + 356 + + +

    (Includes hearing questions, testimony, memos, letters)

    +
    +
    + + + Nuclear plant and waste clean-up expense + 1990-1992 + 356 + + + + + Nuclear weapons complex configuration study, (SASC) + 2 folders + 1989-1992 + 356 + + + + + Single Integration Operations Plan (SIOP) + 1991 + 356 + + +
    + + + Ground Wave Emergency Network (GWEN) + 1991-1993 + 356 + + + + + Hanford Reservation and environmental management memos and + reports + July-August 1995 + 356 + + + + + Hearings + + + + Department of Energy, (Subcommittee Strategic Forces and Nuclear + Deterrence) + June 12, + 1991 + 356 + + + + + Department of Energy's nuclear weapons complex reconfiguration study, + (GAC) + February 25, + 1991 + 357 + + + + + Department of Energy cleanup + May 13, + 1993 + 357 + + +

    (Grumbly-nominee for Assistant Secretary of Energy for Environmental + Restoration and Waste Management)

    +
    +
    + + + Department of Energy (DOE) and nuclear weapons + June 1993 + 357 + + +

    (Subcommittee Nuclear Deterrence, Arms Control and Defense Intelligence)

    +
    +
    +
    + + + International Investment in Democracy plan amendments and + statements + 2 folders + 1991-1992 + 357 + + + + + Meetings + + + + Atomic Energy Act study planning meeting + June 1992 + 357 + + +

    (Natural Resources Defense Council)

    +
    +
    + + + Nuclear Weapons Complex strategy meeting, January8-9 + 1993 + 357 + + +
    + + + Missile Defense Agency (MDA) compromise + 1995 + 357 + + + + + NATO-nuclear strategy + 1990-1993 + 357 + + + + + Nevada nuclear test site + 3 folders + July 14, 1992 + 357 + + +

    (Subcommittee on Strategic Forces and Nuclear Deterrence trip)

    +
    +
    + + + New production reactors + + + + Amendment-S.2884 + 1990 + 357 + + + + + 1989-1994 + 357 + + + + + Budget reduction + May-December 1991 + 357 + + + + + Cancellation + May-September 1992 + 357 + + + + + Department of Energy warhead requirements memo + October 21, + 1991 + 357 + + + + + Funding + May-October 1991 + 357 + + + + + Hearings + + + + Department of Energy, nuclear dismantlement, and new production + reactor + February 25, + 1992 + 357 + + + + + Laboratories and Assistant to Secretary of Defense Atomic + Energy-Barker, (Subcom SFND) + 2 folders + March 27, + 1992 + 357 + + + + + + Levin on tritium + 1991 + 357 + + + + + Program + 1989-1990 + 357 + + + + + Program + May 1991-February 1992 + 357 + + + + + Reactor restart + 1991-1992 + 357 + + + + + The Tides Foundation meeting on reactor at Savannah River Plant + site + October 1991 + 357 + + + + + Tritium + + + + 1991 + 358 + + +

    (Subcom SFND)

    +
    +
    + + + April-June 1991 + 358 + + + + + January-May 1992 + 358 + + + + + Declassification + 1991-January 1992 + 358 + + +
    +
    + + + Non-proliferation materials + 3 folders + 1992-1993 + 358 + + + + + Non-Proliferation Treaty (NPT)-review conference and hearing on future + of treaty, (GAC) + 1995 + 358 + + + + + North Korea Agreed Framework + + + + 1994-1995 + 358 + + + + + Agreement and SASC hearings, (R.Fieldhouse) + 2 folders + 1994-1995 + 1049 + + + + + Meeting with William Taylor about nuclear program and trip + reports + 1992-1993 + 358 + + + + + North and South Korea talks + 3 folders + 1992-1994 + 1036 + + +

    (Includes SASC hearing on North Korea and nomination hearing memos on Lt. + Gen. Gary Luck for CINC US Forces in Korea, UN Command, and Combined Forces + Command; Lt. Gen. Wayne Downing to be CINC US Special Operations Command)

    +
    +
    + + + South Korea + 1995 + 358 + + +
    + + + Nuclear clean up-Department of Energy + 2 folders + 1996 + 358 + + + + + Nuclear forces + 3 folders + 1991-1995 + 358 + + + + + Nuclear posture review + 2 folders + 1992-1995 + 358 + + + + + Nuclear safety and visit to Pantext plant + 1991-1994 + 358 + + + + + Nuclear weapons complex + April 1993 + 358 + + + + + Counterproliferation-testimony of Deputy Assistant Secretary of Defense + for Counterprolfieration Policy, 1992, 1995 (SASC) + 1992-1995 + 359 + + + + + Proliferation + + + + 4 folders + 1991-1992 + 359 + + + + + 1992-1993 + 359 + + + + + 3 folders + 1993-1995 + 359 + + + + + + Drawdown and non-proliferation + 1991-1993 + 359 + + + + + Non-proliferation and arms control + 1991-1993 + 359 + + + + + Radiation + + + + Department of Energy data release + 1989-1992 + 359 + + + + + Human experiments World War II and Cold War + 1993-1995 + 359 + + + + + + Rocky Flats nuclear weapons plant re-opening + 1991-1993 + 359 + + + + + Smuggling and hearing on proliferation, (PSI) + 1994-1996 + 359 + + + + + Strategic Defense Initiative (SDI) + + + + Conference + October 1991 + 359 + + + + + Floor statement + 1987-1992 + 359 + + +

    (ABM Treaty amendments)

    +
    +
    + + + Language + July 1991 + 359 + + + + + Requirements and missile amendments + July 1991 + 359 + + +

    (ABM and Missile Defense Act)

    +
    +
    +
    + + + Strategic Defense Initiative (SDI) and Anti-Ballistic Missile Treaty + (ABM) + 1991-1993 + 360 + + + + + START Treaty + + + + Briefing and background information + 1991-1995 + 360 + + + + + Hearings on U.S.-Russian reduction of arms, (SASC) + June-July 1992 + 360 + + + + + Military implications + 2 folders + 1991-1992 + 360 + + +

    (Includes hearing testimony)

    +
    +
    + + + Nuke cuts-Memos and Senate Foreign Relations Committee hearings, + (SASC) + 2 folders + June-July 1992 + 360 + + + + + Ratifying resolution + 1991-1992 + 360 + + +

    (SASC review and reports)

    +
    +
    +
    + + + Strategic Arms Reduction Treaty II (START II), (SASC; R. + Fieldhouse) + 1992-1993 + 360 + + + + + START II Treaty-Chemical Weapons Convention (CWC) + + + + Memo-opponent statements and responses + March 18, + 1996 + 360 + + + + + Senate treaty ratification + December 1995-January 1996 + 360 + + + + + Floor + 1995 + 360 + + + + + Completed review of military implication of START I, II, and + ratification, (SASC) + 1992-1995 + 360 + + + + + Admiral Boorda of U.S. Navy + February-September 1995 + 360 + + + + + Delays and amendments + 2 folders + 1995 + 360 + + + + + + Testing + + + + 3 folders + 1991-1994 + 361 + + + + + Comprehensive test ban moratorium extension + 1995 + 361 + + + + + Exon amendment + 1995 + 361 + + + + + International + 1995 + 361 + + + + + Letter-Levin and Simon + 1995 + 361 + + + + + Subcritical tests + 1995 + 361 + + + + + + Weapons + + + + Dismantlement + 1994 + 361 + + + + + Intercontinental Ballistic Missiles (ICBMS) + 1990-1993 + 361 + + + + + Short range attack missile-tactical (SRAM-T) + 1991 + 361 + + + + + Warheads + 1991-1992 + 361 + + + + + Warhead dismantlement + 2 folders + 1991-1992 + 361 + + + + + Warhead production + 1991-1992 + 361 + + + + + + Weapon safety and security information request + 1980 + 361 + + +

    (Documents provided from 1970s)

    +
    +
    +
    + + + Office of Science and Technology Policy-press release Ford Motor Company + and Levin meeting + 1994 + 361 + + + + + Peacekeeping + + + + Boutros Boutros-Ghali agenda for peace + 1992 + 361 + + + + + Burden-sharing initiatives + March 1989-March 1990 + 361 + + + + + Clinton administration + + + + Levin op-ed in Christian Science Monitor + May 1994 + 361 + + + + + Policy + 1994-1995 + 361 + + + + + Policy of reforming multinational peacekeeping operations + October 1993-May 1994 + 361 + + + + + + Committee on Appropriations hearings FY1995 + 361 + + + + + Committee work (SASC) + + + + Subcommittee on Coalition Defense and Reinforcing Forces activity, + (Subcom CDRF) + 1993 + 361 + + + + + Hearings + + + + United Nations (UN) Peacekeeping + 1992 + 361 + + + + + United Nations (UN) Peacekeeping, (GAC) + June 9, + 1992 + 361 + + + + + United Nations (UN) Peacekeeping, (SASC) + 1992 + 362 + + + + + Material + 1993 + 362 + + + + + Material, (Subcom CDRF) + 1993 + 362 + + + + + Issues Concerning International Peacekeeping and Peace Enforcement, + (Subcom CDRF) + July 14, + 1993 + + + + Meetings and testimony + 362 + + + + + UN and NATO + 362 + + + + + + United Nations Peace Operations, (Subcom CDRF) + May 12, + 1994 + 362 + + + + + Department of Defense Briefing on the Situation in + Rwanda + July 25, + 1994 + 362 + + + + + Peacekeeping Operations, (Subcommittee Airland Forces) + 2 folders + May 3, + 1995 + 362 + + + + + + Miscellaneous + 1993-1994 + 362 + + + + + + Peacekeeping conference and international funding + 1992-1994 + 362 + + + + + Defense issues + 1994 + 362 + + + + + Dole Peace Powers Act + 1994 + 362 + + + + + Factsheets and polling + February-May 1995 + 362 + + + + + Global cooperation initiative + 1993 + 362 + + + + + Hearings + + + + International Peacekeeping and Peace Enforcement, (Subcom + CDRF) + July 14, + 1993 + 362 + + + + + Policy and Plans for Multinational Peace Operations, (Subcom + CDRF) + April 13, + 1994 + 362 + + + + + United Nations Peace Enforcement Opportunities and Challenges, + (Subcom CDRF) + May 12, + 1994 + 362 + + + + + + International enforcement + 1993-1994 + 362 + + + + + Joint training and exercises + + + + 1994-1995 + 362 + + + + + Government accountability project + 3 folders + 1994 + 363 + + + + + Peacekeeping simulation center + October 1993-February 1994 + 362 + + + + + United States and Russia + 1994-1996 + 363 + + + + + + Levin article on peacekeeping bill and funding + February 1995 + 363 + + + + + Levin's file + 2 folders + 1994 + 363 + + + + + Meeting with Department of Defense (DOD) Comptroller John + Hamre + 1994 + 363 + + + + + Multi-national peacekeeping + 1993-1997 + 363 + + +

    (Includes Subcom CDRF hearings and Ranger Raid report)

    +
    +
    + + + Nickels amendment + 1993 + 363 + + + + + Pacific-Australia and Asia meeting + October 1993 + 363 + + + + + Peace Powers Act-S.5 + January-March 1995 + 363 + + + + + Peace, Prosperity, and Democracy Act-S.1856 + 1994 + 363 + + + + + Simon bill + 1992 + 363 + + + + + United Nations (UN) + + + + 1992-1993 + 363 + + +

    (Includes a GAC hearing report June 9, 1992)

    +
    +
    + + + Biden resolution + 1992-1993 + 363 + + + + + Council for a Livable World meeting strategy session + February 11, + 1994 + 363 + + + + + Foreign com + 1994 + 363 + + + + + Funding and costs-Levin amendment + 1992 + 363 + + + + + Funding, budget requests and arrears + August 1993-April 1994 + 363 + + + + + International disaster assistance + 2 folders + 1995 + 364 + + + + + International security + 1992 + 364 + + + + + Issue book on Peacekeeping and the UN-key issues facing the United + States in a post-cold war world + July 1995 + 364 + + + + + Management + 1993 + 364 + + + + + Meeting with Albright and UN visit + July 1993 + 364 + + + + + Peace enforcement resolution + 1992 + 364 + + + + + Peace operations funding + 1994 + 364 + + + + + Peacekeeping + 1992 + 364 + + + + + Peacekeeping report and Department of Defense (DOD) authorization + FY1993 + 364 + + + + + Planning meeting + June 1995 + 364 + + + + + Publications + 1992-1994 + 364 + + + + + Reform, dues, and US spending on nuclear weapons + 3 folders + 1996 + 364 + + + + + Role of U.S. forces under UN + 3 folders + 1993-1996 + 364 + + + + + Stand-by Forces Initiative + April-May 1994 + 364 + + + + + Testimony + 1993 + 364 + + + + + UN Peacekeeping, (D. Lewis) + 3 folders + 1992-1995 + 364 + + + + + U.S. combat forces under foreign com + September 1993-April 1994 + 365 + + +
    +
    + + + Pentagon renovation + 1992-1993 + 365 + + +

    (Includes a list of Subcommittee on Readiness issues of interest July 1992)

    +
    +
    + + + Procurement + + + + News articles and memos, (SASC) + 1995-1997 + 365 + + + + + Offloading, (Subcom OGM) + 1994 + 365 + + + + + Reform + 2 folders + 1993-1997 + 365 + + +

    (Includes Subcom OGM testimony from offloading hearings)

    +
    +
    +
    + + + Russia + + + + Aid, (SASC) + 3 folders + 1991-1994 + 365 + + + + + Aid information + 1994-1995 + 365 + + + + + Defense conversion + 1992-1994 + 365 + + +

    (Includes SASC trip summaries)

    +
    +
    + + + Military + 1991-1993 + 365 + + + + + Military conversion and nuclear control + + + + Aid + April-May 1992 + 365 + + + + + Aid-floor + 1992 + 365 + + + + + Hearing-Former Soviet Union, (SASC) + February 3, + 1993 + 365 + + + + + Hearing-Nuclear Plant Conversion memo, (SASC) + February 24, + 1993 + 365 + + + + + Miscellaneous, (SASC) + 1991-1993 + 365 + + + + + Moscow Summit documents + 1994 + 365 + + + + + Press releases + December 1991 + 366 + + + + + Soviet command and control of nuclear weapons + December 1991-January 1992 + 366 + + + + + Soviet nukes + 1991-January 1992 + 366 + + + + + Soviet Resolution-Levin and Dole + November-December 1991 + 366 + + + + + Yeltsin Crisis + March 1993 + 366 + + + + + + Moscow Summit and Keiv + May 1995 + 366 + + +
    + + + Selective Service Program + 1993-1995 + 366 + + + + + Sexual Orientation and the Military-Lifting the ban on Gays in the + Military opinions + 1993 + 366 + + +

    (Clinton, Levin, and Nunn)

    +
    +
    + + + Sexual Orientation and the Military (SASC) + + + + 4 folders + 1991-1992 + 366 + + + + + Analyses + + + + Professor Charles Moskos' Views on the Elimination of the Ban on + Openly Gay Service members and news articles + March + 1993 + 366 + + + + + Sheridan Group on Military Policies with Regard to Gays and + Lesbians + 1993 + 366 + + +

    (Frank D. Pond analysis)

    +
    +
    +
    + + + Campaign for Military Service for the Hearings on Lifting the Ban on + Gays and Lesbians in the U.S. Armed Forces + 1993 + + + + Binder 1 + 2 folders + 366 + + + + + Binder 2 + 366 + + + + + + Colloquy + 1993 + 366 + + + + + Don't Ask Don't Tell colloquy-Levin and Nunn, (DADT) + July-December 1993 + 366 + + + + + Don't Ask Don't Tell implementation, (DADT ) + 2 folders + 1993-1994 + 367 + + + + + Don't Ask Don't Tell implementation question (DADT) + + + + Court cases + 1994 + 367 + + + + + Hearing memos, final regulations, and news articles + 1994 + 367 + + + + + News articles-Sexual harassment in military + 1994-1995 + 367 + + + + + + Hearings + + + + Hearing preparation and memos + 2 folders + January-May 1993 + 367 + + + + + March and May 1993-Military Policy Concerning the Service of Gay Men + and Lesbians in the Armed Forces + 2 folders + 367 + + + + + March 29 and 31 + 1993 + 367 + + + + + Homosexuals in the military and Unit Cohesion + March 31, + 1993 + 367 + + + + + Testimony and memos, March 31 + April + 1993 + 367 + + + + + April 29, + 1993 + 367 + + + + + May 7, 1993 + 367 + + + + + May 11, + 1993 + 367 + + + + + July 20, + 1993 + 367 + + + + + Letters + 1993 + 367 + + + + + Notepad + 1993 + 367 + + + + + + Legislation and amendments + April-August 1993 + 368 + + + + + Miscellaneous + 2 folders + 1993 + 368 + + +

    (Includes colloquy, conference report language for Defense authorization act, + and hearing memos)

    +
    +
    + + + Miscellaneous + 2 folders + 1993 + 368 + + + + + New policy + 1993 + 368 + + + + + New policy amendment + 1993 + 368 + + + + + Policy reports, news articles, and language + May-August 1993 + 368 + + + + + Press Clips + 2 folders + 1993 + 368 + + + + + Memos, notes, and research + March 1993 + 368 + + + + + Regulations and Directives Pertinent to Gays in the + Military + 1986-1993 + 368 + + +

    (DOD 1332 and 1350)

    +
    +
    + + + Reports and studies + 3 folders + 1992-1993 + 368 + + + + + Statements + + + + Carl Levin + 1993 + 368 + + + + + Groups/Organizations and meeting with Vice Adm. Lawrence + 3 folders + 1992-1993 + 369 + + + + + Others + 1993 + 369 + + + +
    + + + Somalia-U.S. Ranger Raid + + +

    (SASC; D. Lewis)

    +
    + + + 2 folders + 1993-1995 + 369 + + + + + Aftermath + + + + October 1993 + 369 + + + + + 2 folders + 1993-1994 + 369 + + + + + + Clinton meeting with parents memo, May 19, 1994(D. Lewis; R. + Debobes) + 369 + + + + + Hearings + January-July 1993 + 369 + + + + + Hearing and CODEL Levin and Warner + December 1993 + 369 + + + + + Hearing-U.S. Military Operations in Somalia during United Nations + Operations in Somalia + May 12, 1994 + 369 + + + + + Hearing on Somalia + July 21, 1994 + 369 + + + + + Investigation memo and transcript of panel 1 + May 12, 1994 + 370 + + + + + Report, (D. Lewis; R. Debobes) + March-April 1995 + 370 + + + + + Report-drafting + March 19, + 1995 + 370 + + + + + Report on Ranger raid (Levin and Warner; SASC) + + + + Chronology + 1994 + 370 + + + + + Levin commentary + 1995 + 370 + + + + + Working folder 1 + 2 folders + 1994-1995 + 370 + + + + + Working folder 2 + 2 folders + 1994-1995 + 370 + + + + + Working file + 1995 + 370 + + + + + + Somalia mission background + March-April 1995 + 370 + + + + + Statements, report, and testimony + 2 folders + 1993-1995 + 370 + + + + + Tax relief to U.S. troops + December 1993-March 1994 + 370 + + +
    + + + Special Operations, (SASC; R. Fieldhouse) + 2 folders + 1993-1994 + 370 + + + + + Speeches-Levin + + + + 1992-1995 + 370 + + + + + Western Michigan University + March 23, + 1991 + 370 + + + + + National War College + January 27, + 1992 + 370 + + + + + Center for Naval Analyses + April 30, + 1992 + 370 + + + + + + Staff-R. Fieldhouse notebook + + + + August 10-October 10, 1995 + 371 + + + + + October 10-November 14, 1995 + 371 + + + + + + State defense forces + October-December 1988 + 371 + + + + + Supercomputer dumping-National Science Foundation + June-July 1996 + 371 + + + + + Tactical Air Command (TAC AIR) + 1992-1995 + 371 + + +

    (SASC; R. Fieldhouse)

    +
    +
    + + + Terrorism-Levin statements + 1992-1995 + 371 + + + + + United States Strategic Command (STRATCOM) + 1991-1995 + 371 + + +

    (SASC; R. Fieldhouse)

    +
    +
    + + + Victory Day anniversary at Elbe River + 2 folders + 1995 + 371 + + + + + War Powers Resolution + 2 folders + 1993-1994 + 371 + + + + + Weapons, technology, and vehicles + + + + Advanced Field Artillery System (AFAS) and Future Armored Resupply + Vehicle (FARV) + 1994-1995 + 371 + + + + + Aircrafts and modernization + 1991-1994 + 371 + + + + + Air Force and Navy fighter planes, (SASC; R. Fieldhouse) + 2 folders + 1993-1994 + 371 + + + + + Arms sale code of conduct legislation + 1994-1995 + 371 + + + + + B-1 and B-2 + 2 folders + 1993-1995 + 371 + + + + + B-1 bomber + 2 folders + May-June 1993 + 371 + + + + + B-2 bomber + + + + Conference legislation, letters, and news articles + 1994 + 371 + + + + + Congressional record + September 18, + 1992 + 371 + + + + + Cost and opposition + 1995-1996 + 371 + + + + + Floor amendment FY1995 + 2 folders + 372 + + + + + Funding and letters + 1994 + 372 + + + + + Funding debate + 2 folders + 1991-1994 + 372 + + +

    (Includes Levin's statement at June 17, 1992 hearing)

    +
    +
    + + + Funding opinions + 1992 + 372 + + + + + Hearing, (SASC) + June 19, + 1991 + 372 + + + + + Status of testing FY94 + 372 + + + + + Unclassified B-2 information book + 1991 + 372 + + + + + Warranty issues + 1991-1992 + 372 + + +
    + + + C-17, (Air Force) + 1992-1995 + 372 + + + + + Development + 1992-1995 + 372 + + + + + F-22 + 3 folders + 1992-1995 + 372 + + + + + F-22-question and answer with SASC and Secretary of Defense, + February + September + 1995 + 372 + + + + + LAV-105 + 1991-1993 + 372 + + + + + Milstar-military communications satellite program + 1994 + 372 + + + + + Mines-moratorium legislation + 1993-1994 + 372 + + + + + Missiles + 1992-1994 + 372 + + + + + Missile proliferation, (D. Lewis) + 1990-1991 + 373 + + + + + Missile proliferation + 1992-1995 + 373 + + +

    (Includes defense authorization bills)

    +
    +
    + + + Multiple launch rocket system (MLRS), (Levin's writing) + July 1992 + 373 + + + + + Seawolf submarine, (Navy) + 2 folders + 1992-1995 + 373 + + + + + Submarines -- general, (SASC; R. Fieldhouse) + 1994-1996 + 373 + + + + + Tanks + + + + 1992-1993 + 373 + + +

    (R.Fieldhouse)

    +
    +
    + + + 3 folders + 1994-1995 + 373 + + +

    (General Dynamics)

    +
    +
    + + + Foreign use and sale + 1992 + 373 + + + + + Funding + 2 folders + 1991-1992 + 373 + + + + + General, (SASC; R. Fieldhouse) + 1994-1995 + 373 + + + + + Rescissions + June-September 1992 + 373 + + + + + Sale to other countries and upgrade + 1993 + 373 + + + + + Upgrade + 1992 + 374 + + +
    + + + Tank gun mounts, (SASC; R. Fieldhouse) + 1993-1996 + 374 + + + + + Trident II missile, (R.Fieldhouse) + 2 folders + 1992-1993 + 374 + + + + + Trident missile funding + 1994-1995 + 374 + + + + + Unmanned aerial vehicles (UAV) + 1993-1995 + 374 + + +
    + + + Youth education program-STARBASE at Selfridge Air National Guard + Base + + +

    (Science and Technology Academics Reinforcing Basic Aviation and Space + Education)

    +
    + + + 1992 + 374 + + + + + 1992-1994 + 374 + + + + + 1992-1994 + 374 + + +

    (SASC; R. Fieldhouse)

    +
    +
    + + + Funding + 1995 + 374 + + +
    +
    + + + Economic Policy + 1988-1998 + + + + Action files + + + + Banking + + + + 1992 + 109 + + + + + 1994 + 109 + + + + + 1995 + 109 + + + + + + Budget + + + + 1991 + 109 + + + + + July 27, + 1992 + 109 + + + + + 1993 + 109 + + + + + 1995 + 109 + + + + + 1996 + 109 + + + + + + Economy + + + + 1992 + 109 + + + + + 1993 + 109 + + + + + 1994 + 109 + + + + + 1995 + 109 + + + + + + Taxes + + + + 1993 + 109 + + + + + 1994 + 109 + + + + + 1995 + 109 + + + + + 1996 + 109 + + + + + + + Adjustments to the Consumer Price Index, (dynamic scoring) + 2 folders + 1994-1995 + 440 + + + + + Banks + + + + Dollar coin + 1995 + 440 + + + + + Resolution Trust Corporation Funding Act, (Savings and loan + bailout) + February 1991 + 440 + + + + + + Commerce + + + + Committee report, (GAC) + 1995 + 440 + + + + + Department of Commerce dismantling -- CEO meetings + June-July 1995 + 440 + + + + + Dismantling the Department of Commerce (E. Bean) + + + + FY1996 appropriations + 2 folders + 440 + + + + + FY1997 appropriations + 440 + + + + + Bill analysis + 1995 + 440 + + + + + Commerce Committee in Senate + August 1995 + 440 + + + + + Dismantling bill -- Abraham + May-June 1995 + 440 + + + + + Dismantling bill -- House + June-July 1995 + 440 + + + + + Government 2000 Commission + September 1995 + 440 + + + + + Hearings, (GAC) + 3 folders + July 1995 + 440 + + + + + Letters for Commerce + 1995 + 440 + + + + + Levin speeches and articles + 1995-1996 + 440 + + + + + Michigan and Levin on Department of Commerce issue + July-August 1995 + 440 + + + + + Michigan impact + June-August 1995 + 440 + + + + + NIST/MEP Small Business Development Centers, (Manufacturing Extension + Partnership) + 1997-1998 + 440 + + + + + News articles + 1995 + 440 + + + + + Press event + August 7, + 1995 + 440 + + + + + + Dismantling bill + 1995 + 441 + + + + + Economic Development Administration (EDA) + 1995 + 441 + + + + + Great Lakes Environmental Research Laboratory (GLERL) + 1995 + 441 + + + + + High-tech generally + 1995-1996 + 441 + + + + + ITA, AD-CUD and EACs + 1995 + 441 + + + + + Letters from Michigan + 1995-1996 + 441 + + + + + Markup, (GAC) + 1995 + 441 + + + + + National Institute of Standards and Technology (NIST) + 1995 + 441 + + + + + National Oceanic and Atmospheric Administration (NOAA) + 1995-1996 + 441 + + + + + National Weather Service and NOAA + 1995 + 441 + + + + + Telecommunications + 1995 + 441 + + + + + Trade + 1995-1996 + 441 + + + + + Transferred functions and other + 1995 + 441 + + + + + + Department of Commerce (DOC) + 1995 + 441 + + + + + Enterprise zones (EZ) and enterprise communities (EC) (D. + Guglielmo) + + + + 2 folders + 1994 + 441 + + + + + 1994-1995 + 442 + + + + + + Export-Import Bank + 1995-1996 + 442 + + + + + Federal Home Loan Bank of Indianapolis folder + 1996 + 442 + + + + + Government Shutdown Prevention Act-S.228 + February-March 1997 + 442 + + + + + Insurance company overview -- Michigan + 1992-1995 + 442 + + + + + Michigan college tuition, (D. Guglielmo) + 1996 + 442 + + + + + Nomination -- Federal Deposit Insurance Commission (FDIC) Chair-Ricki + Tiger + 1994 + 1036 + + + + + Securities Exchange Commission (SEC) footnotes + 1995 + 442 + + + + + Securities -- work file + 1995-1996 + 442 + + + + + Stock options, (D. Guglielmo and E. Bean) + 1992-1994 + 442 + + + + + Tax (D. Guglielmo) + + + + Contract with America -- GOP tax proposal + 4 subfolders + 1995 + 442 + + + + + Dorgan's international tax bills + 1993-1995 + 442 + + + + + Earned income tax credit + 1996 + 442 + + + + + Gas tax + 1996-1997 + 442 + + + + + Hearing -- IRS + March 1996 + 442 + + + + + Internal tax issues -- S.482, (D. Guglielmo and C. Cutolo) + 1988-1996 + 443 + + + + + International taxation, (D. Guglielmo and P. Levine) + 1994-1996 + 443 + + + + + Luxury tax, (auto) + 1992-1996 + 443 + + + + + + Taxes-miscellaneous + 1992 + 443 + + + + + + Education + 1988-2000 + + + + Action files + + + + 1992 + 109 + + + + + 1993 + 109 + + + + + 1994 + 109 + + + + + 1995 + 109 + + + + + 1996 + 109 + + + + + + 1991-1994 + 485 + + + + + 1993-1997 + 1028 + + + + + 1994 + 485 + + + + + 1994-1995 + 485 + + + + + January-March + 1995 + 485 + + + + + 2 folders + March-September 1995 + 485 + + + + + June-August 1995 + 485 + + + + + 1995 + 485 + + + + + Affirmative Action and education + 1995 + 485 + + + + + Budget and reform + 1994-1996 + 486 + + + + + Budget reconciliation funding cuts + 1994-1995 + 486 + + + + + College and Universities + + + + Amendment-prevent loan termination at schools with minority and + disadvantaged students (Levin) + 3 folders + 1991-1994 + 486 + + + + + Funding-Michigan colleges + 1995 + 486 + + + + + Hearing-Rising Cost of College Tuition and Effectiveness of Government + Financial Aid, (GAC) + February 9-10, 2000 + + + + Background information and Levin opening statement + 486 + + + + + Background information and testimonies + 3 folders + 486 + + + + + Background information and witness bios + 486 + + + + + + Historically Black Colleges and Universities bill + 1994 + 486 + + + + + Michigan Partnership for New Education and education + funding + 2 folders + 1992-1994 + 486 + + + + + Student loans + 2 folders + 1995 + 486 + + + + + Student loans-CRS reports, (J. Parker) + 1994-1995 + 486 + + + + + + Jordan College-accreditation and student aid (J. Parker) + + + + 3 folders + 1989-1991 + 487 + + + + + 3 folders + 1991-1992 + 487 + + + + + 2 folders + 1991-1994 + 487 + + + + + 1991-1995 + 487 + + + + + 2 folders + 1992-1993 + 487 + + + + + 1994 + 487 + + + + + February 1994 + 1028 + + + + + 1994-1995 + 487 + + + + + Department of Education Investigation + 2 folders + 1994 + 488 + + + + + Information + 1994 + 1028 + + + + + + Continuing resolution memos + 2 folders + 1996 + 488 + + + + + Department of Education (DOE) statement + 1996 + 1028 + + + + + Discrimination complaint in Allen Park School District and Presidential + Scholars booklet + 1995 + 487 + + + + + Elementary and secondary + 1994-1995 + 487 + + + + + Elementary and secondary amendments and Chess in schools + 1994 + 487 + + + + + Excellent education memos + 1995-1996 + 1028 + + + + + Funding + 1996 + 488 + + + + + Funding, grants, and scholarships + 1996 + 488 + + + + + Grants, loans, and funding + 3 folders + 1995 + 488 + + + + + Levin legislation + 1993-1996 + 1028 + + + + + Military dependents + 1995 + 488 + + + + + Oscada area schools-water and sewer system upgrade + March 1997 + 488 + + + + + Policy + 2 folders + 1991-1994 + 488 + + + + + Programs + 1994-1995 + 489 + + + + + Reagan era and Goals 2000 Educate America Act + 1989-1994 + 489 + + + + + Senior citizens tutoring disadvantaged children amendment + 1994-1995 + 489 + + +

    (Levin)

    +
    +
    + + + Senior Tutorial Program and Levin legislative accomplishments + 1988-1989 + 489 + + + + + Title 1 data and Goals + 2000 + 1996 + 489 + + +
    + + + Energy and natural resources + 1980-2001 + + + + Action files + + + + Energy + + + + 1992 + 109 + + + + + 1993 + 109 + + + + + 1994 + 109 + + + + + 1995 + 109 + + + + + + Environment + + + + 2 folders + 1992 + 109 + + + + + 1993 + 109 + + + + + 1994 + 109 + + + + + 1995 + 109 + + + + + + + Environmental record + 1984-1994 + 509 + + + + + Air miscellaneous, (C. Miller) + 1995 + 509 + + + + + Alaska lands and oil + 2 folders + 1980-1994 + 509 + + + + + Arctic National Wildlife Refuge (ANWR) + 1991-1995 + 509 + + + + + Alternative fuel for federal fleets + 2 folders + 1991-1993 + 509 + + + + + Appropriations + + + + FY1990-FY1995-Consortium for International Earth Science Information + Network (CIESIN) + 2 folders + 509 + + + + + FY1991 -- Environment, energy, agriculture, and interior + 510 + + + + + FY1992 -- Environment, Great Lakes, and interior + 510 + + + + + + Army Corps of Engineers + + + + New Baltimore Army Corps of Engineers + 1995-1999 + 510 + + + + + Restructuring + + + + 1991-1993 + 510 + + + + + 1993 + 510 + + + + + + + Auto + + + + Alternative Fuel Vehicles (AFV) + + + + California electric vehicle politics + 1993-1994 + 510 + + + + + Carl's electric vehicle and AFV initiatives + 9 subfolders + 1993-1994 + 510 + + + + + Carl's notes + 1992-1994 + 510 + + + + + Memos + 1993-1994 + 510 + + +

    (Includes car photos from European electronic vehicle trip January 18-22, + 1994)

    +
    +
    + + + Partnership for a New Generation of Vehicles (PNGV) + 1993-1994 + 510 + + + + + Procurement and data + 1992-1993 + 510 + + + + + TARDEC and National Automotive Center (NAC) + 1992-1993 + 510 + + + + + Tech visits + 1993-1994 + 510 + + +
    + + + Alternative fuel vehicles (AFV) commercialization, technology, and + emissions + 2 folders + 1992-1994 + 527 + + + + + Electric Vehicles (EV) + + + + Administrative + 1993 + 511 + + + + + Advanced Research Project Agency (ARPA) + 1993 + 511 + + + + + Battery technology and consortium + 1992-1993 + 511 + + + + + Correspondence + 1992-1993 + 511 + + + + + Environmental Protection Agency (EPA) + 1993 + 511 + + + + + Great Lakes Region Consortium + 1992-1993 + 511 + + + + + General Motors (GM) + 1993 + 511 + + + + + Foreign manufacturers + 1993 + 511 + + + + + Laws and regulations + 1992 + 511 + + + + + Memos + 1993 + 511 + + + + + Press + 1992-1993 + 511 + + + + + + Onboard vapor refueling recovery + 1993 + 511 + + + + + Partnership for a New Generation of Vehicles (PNGV) + 2 folders + 1993-1996 + 511 + + +
    + + + Bay City Center for Ecology Research and Training (CERT) + 2 folders + 1995-1999 + 511 + + + + + Bay City Environmental Protection Agency (EPA) Supercomputer + 1996-1998 + 511 + + + + + Beaver Basin Rim Road Pictured Rocks National Lakeshore -- final + environmental impact statement (EIS) + 1996 + 511 + + + + + Bioremediation at Michigan Air Force bases + 1993 + 511 + + + + + Brownfields + 1996-1998 + 512 + + + + + Chlorine + 1993 + 512 + + + + + Chlorine + 1994 + 512 + + + + + Clean Air Act + + + + Amendments -- CFC labeling + 1993 + 512 + + +

    (Chlorofluorocarbons)

    +
    +
    + + + Hazardous material transportation + 2 folders; 8 subfolders + 1990-1996 + 512 + + + + + Ozone + 3 folders; 8 subfolders + 1989-1996 + 512 + + +

    (Includes testimony and a witness list so hearing related)

    +
    +
    +
    + + + Clean Air Act and ozone + 1990-1997 + 513 + + + + + Clean water -- background statistics and needs assessment + 1992-1994 + 513 + + + + + Combined sewer overflows (CSO) + + + + 1994-1998 + 513 + + + + + 1995 + 513 + + + + + + Consortium for International Earth Science Information Network (CIESIN) + binder -- Response to Questions from Senator Carl Levin on the Occasion of his + visit + July 7, 1993 + 513 + + + + + Contaminated sediments + 1993-2000 + 513 + + + + + Contaminated sediments and superfund + 2 folders + 1989-1996 + 513 + + + + + Contaminated Sediments Reauthorization Act-assessment and remediation-S. + 540 + 1995 + 513 + + + + + Copper Range Company + 1995-1997 + 513 + + + + + Crystal River + 1995-2000 + 513 + + + + + Crystal River, logging, and Sleeping Bear Dunes + 1995-1998 + 513 + + + + + Energy bill + 7 subfolders + 1992 + 513 + + + + + Environmental protection + 1994-1998 + 514 + + + + + Environmental Protection Agency (EPA) ozone standards and ambient air + quality + 5 folders + 1995-1997 + 514 + + + + + Federal Center for Ecology Research and Training (CERT) -- Bay + City + 1995-1997 + 514 + + + + + Fish advisories and health + 1988-1993 + 514 + + + + + Fishing -- Lampreys + 1988-1996 + 514 + + + + + Flooding and insurance + 1990-1994 + 514 + + + + + Floraculture and Floratrade + 1990-1992 + 514 + + + + + Reformulated gasoline -- ethanol + 1994 + 514 + + + + + Gayheart landside + 2 folders + 1985-1997 + 514 + + + + + Great Lakes + + + + 1993-1998 + 515 + + + + + Annual Report of Great Lakes Commission and Northeast-Midwest Senate + Coalition letters + 1991 + 515 + + + + + Chlorine and Great Lakes + 1996 + 515 + + + + + Clean air deposition + 1989-1993 + 515 + + + + + Clean water amendments of + 1993 + 515 + + + + + Diversion + 1992-1998 + 515 + + + + + Fish advisories + 2 folders + 1996-2001 + 515 + + + + + International Joint Commission hearing, (Subcom OGM) + 1988-1998 + 515 + + + + + Invasive species in Great Lakes + 1994-1997 + 515 + + + + + Lake Superior + 1994-1995 + 515 + + + + + Manistique and Grand Marais Harbors and Environmental Protection Agency + (EPA) + 1993-1995 + 515 + + + + + Oil spills work file + 1989-1996 + 515 + + + + + Towing vessels pilotage + 1995-1997 + 515 + + + + + + Great Lakes files + + + + Air toxics + 1988-1996 + 516 + + + + + Air toxics legislation + 2 folders + 1991 + 516 + + + + + Army Corps and Great Lakes Environmental Action Program (Great + LEAP) + 1989-1990 + 516 + + + + + U.S.-Canada dialogue + 1991 + 516 + + + + + Canada issues + 1987-1994 + 516 + + + + + Canadian laws + 1985-1992 + 516 + + + + + Car plates + 1992-1996 + 516 + + + + + Chemicals + 1989-1995 + 516 + + + + + Chlorine + 1994-1995 + 516 + + + + + Clean water enforcement + 1993 + 516 + + + + + Coast Guard, (Subcom OGM) + 1989 + 516 + + + + + Combined sewer overflows + 1987-1990 + 516 + + + + + Confined disposal facilities + 1988-1989 + 516 + + + + + Correspondence-letters from database regarding Great Lakes + 1989 + 516 + + +

    (Letter library)

    +
    +
    + + + Detroit + 1994-1996 + 516 + + + + + Detroit River + 1989-1994 + 516 + + + + + Fish + 1989-1996 + 516 + + + + + Fish and Wildlife Service + 1989-1990 + 516 + + + + + Great Lakes Air Deposition (GLAD) + 1987-1991 + 516 + + + + + Great Lakes bill final passage + 1990 + 516 + + + + + Great Lakes Council of Great Lake Industries + 1991 + 517 + + + + + Great Lakes International Surveillance Plan (GLISP) and Environmental + Monitoring and Assessment Program (EMAP) + 1986-1990 + 517 + + + + + Great legacy Areas + 1991-1994 + 517 + + + + + Health effects + 1989-1995 + 517 + + + + + Hearings-Great Lakes + 1989-1994 + 517 + + + + + Hearing-Legal Pollution of the Great Lakes, (Subcom OGM) + October 4, + 1991 + 517 + + + + + Human health study + 1992-1993 + 517 + + + + + Information and statistics + 2 folders + 1989-1993 + 517 + + + + + International Joint Commission (IJC) + + + + 1989-1994 + 517 + + + + + Meeting + 1995 + 518 + + + + + Biennial meetings + 1995-1996 + 518 + + + + + + Lake Erie + 1990-1993 + 518 + + + + + Lake Management Programs + 1989-1998 + 518 + + + + + Lake Michigan + 1989-1996 + 518 + + + + + Lake Michigan Lake Management Plan (LAMP) + 1989-1994 + 518 + + + + + Lake Ontario + 1988-1996 + 518 + + + + + Lake Superior + 1990-1995 + 518 + + + + + Lake Superior Lake Management Plan (LAMP) and bi-national + program + 1991-1994 + 518 + + + + + Levin's Great Lakes Critical Programs Act bill introduction, + (S.1646) + 1989-1990 + 518 + + + + + Kalamazoo River + 1989-1995 + 518 + + + + + Manistique + 1993-1995 + 518 + + + + + Maritime issues + 1990-1993 + 518 + + + + + Mercury + 1994-1997 + 518 + + + + + Muskegon + 1989 + 518 + + + + + National Pollutant Discharge Elimination System (NPDES) + 1988-1992 + 518 + + + + + National Program Office (GLNPO) + 1988-1990 + 518 + + + + + NAFTA + 1991-1997 + 518 + + + + + Nonpoint pollution + 1988-1994 + 518 + + + + + Paper mills + 1989-1996 + 518 + + + + + Pesticides + 1988-1993 + 519 + + + + + Pollution prevention challenge + 1991-1994 + 519 + + +

    (Includes a 1991 agreement between Michigan DNR and Ford, Chrysler, and GM)

    +
    +
    + + + Press + 1989-1991 + 519 + + + + + Protection fund + 1988-1995 + 519 + + +

    (Reports)

    +
    +
    + + + Remedial Action Plan (RAP) + + + + 2 folders + 1995 + 519 + + +

    (Also includes biennial water quality reports from 1989, 1991 and 1993)

    +
    +
    + + + Deadlines + 1990-1995 + 519 + + + + + Funding + 1989-1993 + 519 + + + + + General + 1992-1994 + 519 + + + + + Michigan + 1991-1994 + 519 + + + + + Overview + 1987-1998 + 519 + + + + + Particular Sites-non-Michigan + 1988-1991 + 519 + + + + + Work file + 1991-1995 + 519 + + +
    + + + Saginaw + 1990-1991 + 519 + + + + + St. Clair River-1990-1996 + 519 + + + + + Saint Mary's River + 1988-1993 + 519 + + + + + Sea lampreys + 1989-1996 + 519 + + + + + Sediments and dredging + 1989-2001 + 520 + + +

    (Includes S.1646 Levin bill)

    +
    +
    + + + Sediment cleanup demo projects + 1989-1992 + 520 + + + + + Contaminated sediments regulations and rules + 1988-1994 + 520 + + + + + Senator Mitchell's Oil Spill bill + 1990 + 520 + + + + + Soo lock + 1989 + 520 + + + + + Spill Response Center + 1991-1995 + 520 + + + + + Toxic releases and polluters + 1989-1996 + 520 + + + + + Work file 1 + 1988-1992 + 520 + + + + + Zebra mussels + 1990-1991 + 520 + + + + + Zebra mussels + 3 folders + 1990-1997 + 520 + + + + + Zero discharge + 1989-1992 + 520 + + +
    + + + Great Lakes Commission + 1991-1994 + 520 + + + + + Great Lakes-Crisp Point Lighthouse + 1997 + 520 + + +

    (Army National Guard Engineers)

    +
    +
    + + + Great Lakes Critical Programs Act + + + + Legislation + 1989-1991 + 521 + + + + + Litigation + 1990 + 521 + + + + + Regulation summaries + 1989 + 521 + + + + + Water quality guidance + 1994-1996 + 521 + + + + + Water quality standards + 1990-1993 + 521 + + + + + Water quality standards moratorium + 1995 + 521 + + + + + + Great Lakes Initiative (GLI) + 1989-1995 + 521 + + + + + Great Lakes Initiative (GLI) files + + + + 104th Congress + 1993-1994 + 521 + + + + + 1997 + 521 + + + + + Articles and speeches + 1992-1996 + 521 + + + + + Articles mentioning or written by Levin + 1991-1995 + 521 + + + + + Background and technical issues + 1991-1995 + 521 + + + + + Christy Bach-Director of Council of Great Lakes Governors + 1995-1996 + 521 + + + + + Cities analysis-Michigan Municipal League + 1993-1996 + 521 + + + + + Detroit + 1992-1996 + 521 + + + + + Detroit concerns + 1995-1996 + 521 + + + + + Draft + 2 folders + 1993 + 521 + + + + + Economic health not hurt by environmental regulations + 1991-1994 + 521 + + + + + Great Lakes Initiative and environmental analysis + 1990-1993 + 521 + + + + + Environmental Protection Agency (EPA) + 1992-1993 + 521 + + + + + Final regulations + 1995 + 522 + + + + + Funding + 1995-1996 + 522 + + + + + Great Lakes Governors + 1992-1995 + 522 + + + + + Governor's DRI-McGraw Hill study + 1993-1995 + 522 + + + + + House Great Lakes Initiative (GLI) matters + 1995 + 522 + + + + + Industry analysis + 1993 + 522 + + + + + Intake credits + 1995-1996 + 522 + + + + + Lawsuit + 1991-1997 + 522 + + + + + Michigan + 1993-1996 + 522 + + + + + Great Lakes Initiative and Michigan analysis + 1993-1995 + 522 + + + + + Michigan companies + 1992-1996 + 522 + + + + + Michigan Mayors + 1995-1996 + 522 + + + + + Non-Michigan Mayors + 1993-1996 + 522 + + + + + Minnesota + 1995-1996 + 522 + + + + + Miscellaneous + 1989-1991 + 522 + + + + + New York + 1994-1996 + 522 + + + + + Office of Management and Budget (OMB) + 1998 + 522 + + + + + Ohio + 1992-1996 + 522 + + + + + Point papers + 1995 + 522 + + + + + Regulatory reform bills + 1995-1996 + 522 + + + + + Round 2 + 1992-1994 + 522 + + + + + Senate Great Lakes Initiative (GLI) matters + 1994-1995 + 522 + + + + + Southeast Michigan + 1994 + 522 + + + + + State disparities in rules + 1989-1993 + 522 + + + + + State support + 1991-1995 + 523 + + + + + Wisconsin + 1995-1996 + 523 + + + + + Work file + 1990-1996 + 523 + + + + + + Great Lakes-NPDES discharges hearing, (GAC) + 1991 + 523 + + + + + Great Lakes Sediment Control Act of 1993-S.75 + 1990-1993 + 523 + + + + + Great Lakes Task Force (GLTF) + + + + 1987-1993 + 523 + + + + + Letters and memos + + + + 1992 + 523 + + + + + 1993 + 523 + + + + + 1994 + 523 + + + + + 2 folders + 1995 + 523 + + + + + 2 folders + 1996 + 523 + + + + + + + Great Lakes Toxics Reductions Initiative + 1993 + 523 + + + + + Green government, (C. Miller) + 2 folders; 11 subfolders + 1991-1992 + 523 + + + + + Green government-hearing on Federal Purchasing Practices and the + Environment, (Subcom OGM; C. Miller ) + 8 subfolders + November 8, + 1991 + 524 + + + + + Hazardous waste + + + + Identification + 1993 + 524 + + + + + Injection wells + 1995-1996 + 524 + + + + + + Heating fuel prices GAO investigation + 1990-1993 + 524 + + + + + Heating fuels price and supply + 1996 + 524 + + + + + Heating fuel price increase investigation + 3 folders + 1990-1992 + 524 + + + + + Homestead and Sleeping Bear Dunes + 1993 + 524 + + + + + Injection wells + 1992-1993 + 524 + + + + + International Chemical, Inc. dumping of toxins into St Clair + area + 1996 + 524 + + + + + Inspection and Maintenance programs -- EPA + 1991-1992 + 524 + + + + + Interstate Transportation of Solid Waste Act + 1995 + 524 + + + + + Interstate Transportation of Solid Waste Act-S.534 + 1995-1996 + 524 + + + + + Land and Water Conservation Fund + 1992-1993 + 524 + + + + + Land disposal restrictions + 1995-1996 + 524 + + + + + Large lakes research lab + 1993 + 524 + + + + + Lead + 1991-1993 + 524 + + + + + Lower Ecorse Creek Dump -- public health assessment (Wyandotte, + Michigan) + November 29, + 1995 + 525 + + + + + Michigan Scenic Rivers Act + 2 folders + 1990-1991 + 525 + + + + + Michigan wetlands + 3 folders + 1991-1997 + 525 + + + + + Oil windfall profits tax history + 1996 + 525 + + + + + Omnibus parks and Utah wilderness bill-H.R.1296 + 1996 + 525 + + + + + Michigan forests + 1993-1994 + 525 + + + + + Michigan's remedial action plans + 1991-1996 + 525 + + + + + Military Base Closure and Realignment waste cleanup, (BRAC) + 6 subfolders + 1991-1996 + 525 + + + + + Municipal solid waste + 1993-1996 + 525 + + + + + National biological survey + 1993-1994 + 525 + + + + + Natural gas + 1998 + 1988-1989 + 525 + + + + + North American Free Trade Agreement (NAFTA) related environmental + issues + June 1992 + 525 + + + + + Nuclear waste storage + 2 folders + 1994-1998 + 526 + + + + + Oil spill prevention + 1989-1992 + 525 + + + + + Paper-manufacturing process and executive order + 1993 + 525 + + + + + Payments in Lieu of Taxes + 1984-1998 + 526 + + + + + Payment in Lieu of Taxes (PILT) + 1993-1997 + 526 + + + + + Petoskey Drinking Water, (Michigan) + 2 folders + 1991-1996 + 526 + + + + + Pipeline safety -- S.1505 + May-August 1996 + 526 + + + + + PVS Chemicals-environment impact issues, (Michigan) + 2 folders + 1995 + 526 + + + + + Rainforests + 1998 + 1991 + 526 + + + + + Resource Conservation and Recovery Act (RCRA) + 1996-1997 + 526 + + + + + Resource Conservation and Recovery Act (RCRA) reform + 1996-1998 + 526 + + + + + Romulus deep disposal well + 1993-1995 + 526 + + + + + Rouge River + 1994 + 1989-1990 + 526 + + + + + Rouge River Project + 2 folders + 1989-1998 + 526 + + +

    (Rouge River National Wet Weather Demonstration Project; Michigan)

    +
    +
    + + + Safe drinking water + 3 folders + 1993-1996 + 526 + + + + + Safe Drinking Water Act + 1995-1997 + 526 + + + + + Southeast Michigan Initiative + 1993-1994 + 526 + + + + + Storm water runoff + 1994 + 527 + + + + + Superfund + + + + Cooper School + 1992-1993 + 527 + + + + + General policy + 1994-1995 + 527 + + + + + Herman Brown superfund site + 1992-1996 + 527 + + + + + Kalamazoo River superfund + 1996-1998 + 527 + + + + + Legislation + 1994-1996 + 527 + + + + + South Macomb Disposal Authority (SMDA) superfund site + 1995-1997 + 527 + + + + + Manistique + 1993-1994 + 527 + + + + + Metamora Landfill superfund site + 1991 + 527 + + + + + Toxic release inventory + 1995 + 527 + + + + + Trade and technology hearing-superfunds + 1991-1993 + 527 + + + + + + Thunder Bay Marine Sanctuary + 1994-2001 + 527 + + + + + Timber + 1993-1996 + 527 + + + + + Van Buren Township -- Polychorinate Biphenyl (PCB) + 1996 + 527 + + + + + Water control + 1993 + 527 + + + + + Water Resources Development Act (WRDA) + + + + 1991-1992 + 527 + + + + + 1994-1996 + 527 + + + + + + Wet + 1993-1997 + 527 + + + + + Wolverine Power Supply Cooperative + 1996-1997 + 527 + + +
    + + + Foreign Policy + 1980-1999 + + + + Action files + + + + 1993 + 109 + + + + + 1994 + 109 + + + + + 1995 + 109 + + + + + 1996 + 109 + + + + + Bosnia + + + + 1993 + 109 + + + + + 1994 + 109 + + + + + 1995 + 109 + + + + + 1996 + 109 + + + + + + Central America + + + + March 26, + 1992 + 109 + + + + + 1993 + 109 + + + + + + Human rights + + + + 1992 + 109 + + + + + 1993 + 109 + + + + + 1994 + 109 + + + + + 1995 + 109 + + + + + 1996 + 109 + + + + + + Iraq-Kuwait + 1993 + 109 + + + + + Middle East + + + + 1992 + 109 + + + + + 1993 + 109 + + + + + 1994 + 109 + + + + + 1995 + 109 + + + + + 1996 + 109 + + + + + + South Africa + 1994 + 109 + + + + + USSR and Baltics + + + + 1992 + 110 + + + + + 1993 + 110 + + + + + 1994 + 110 + + + + + 1995 + 110 + + + + + 1996 + 110 + + + + + + + Africa + + + + 1994-1995 + 606 + + + + + 1995 + 606 + + +

    (folder 1)

    +
    +
    + + + 1995 + 606 + + +

    (folder 2)

    +
    +
    + + + Miscellaneous and legislation for commission to investigate slavery and + effects on racism + 1993-1995 + 606 + + + + + South Africa and Rwanda + 1994 + 606 + + + + + South Africa, Sudan, and African Roundtable + 1993 + 606 + + +
    + + + Albania + + + + 1994-1996 + 606 + + + + + Albania Enterprise Fund + March 1994 + 606 + + + + + Father Simon Jubani visit + June 19, 1991 + 606 + + + + + Foreign operations amendment + June 1994 + 606 + + + + + Greek minority and Helsinki Commission + 1990-1991 + 606 + + + + + Miscellaneous + 1993-1995 + 606 + + + + + Omonia group + 1994-1995 + 606 + + + + + + Appropriations-foreign operations + July-December 1994 + 606 + + + + + Armenia + + + + 1989-1995 + 606 + + + + + May 1991 + 606 + + + + + Appropriations FY1992 + 606 + + + + + Blockade and genocide resolution + 1989-1990 + 606 + + + + + Blockades and need for aid + 1993-1994 + 606 + + + + + Dole amendment + 1989 + 606 + + + + + Financial assistance amendments + 1990 + 606 + + + + + Four wheel drive + September 1989 + 606 + + + + + Genocide resolution + 1989 + 606 + + + + + Health minister visit + June 12, 1991 + 606 + + + + + Levin and Dole resolution + May 17, 1991 + 606 + + + + + Levin and Dole resolution on foreign assistance + July 24, 1991 + 606 + + + + + Miscellaneous + 2 folders + 1987-1996 + 606 + + + + + Miscellaneous issues, 1989-1993 + 606 + + +

    (Includes photographs)

    +
    +
    + + + Referendum, April + July 1991 + 606 + + + + + Rugs + 1983-1984 + 1994-1995 + 606 + + +

    (Includes photographs)

    +
    +
    + + + Armenian rug, (Once given to Calvin Coolidge, Embassy wants to use the + rug for a reception on Capitol Hill) + April 1995 + 1028 + + + + + State Department authorization + July 1989 + 606 + + +
    + + + American Center for International Leadership award dinner and National + Endowment for Democracy Fifth World Conference on Democracy agenda + May 1995 + 606 + + + + + Argentine Israel Mutual Association (AMIA) bombing-S.Con.Res. + July 1994 + 606 + + + + + Arms sales + + + + 1993-1994 + 606 + + + + + Saudi Arabia patriot missile trailers + 1993-1994 + 606 + + + + + + Baltic nations + + + + Panama and Nicaragua emergency supplemental Lithuanian + amendments + April-May 1990 + + + + + Democratic independence + 2 folders + 1987-1990 + 607 + + + + + Latvia + + + + 1993-1994 + 607 + + + + + 1994 + 607 + + + + + + Letters + August 1991 + 607 + + + + + Soviet troops + 1991-1994 + 607 + + + + + + Belarus + 1992-1994 + 607 + + + + + Bosnia and Yugoslavia + + + + 1993-1996 + 2 folders + 607 + + + + + Arms embargo-Max Kampelman + 1993-1994 + 607 + + + + + Cease fire agreement + 1995 + 607 + + + + + Concentration camp detainee-Alija Lujinovic testimony, + (SASC) + August 12, + 1992 + 607 + + + + + Conflict (D. Lewis) + + + + Arms embargo + May-June 1994 + 607 + + + + + Bosnia peace plan + 1995-1996 + 607 + + + + + Briefing and draft embargo legislation + April-June 1995 + 607 + + + + + CRS reports and issue briefs + February 1996 + 607 + + + + + Dayton Peace Treaty-Proximity Peace Talks + November 1-21, 1995 + 607 + + + + + Hearings + January-June 1995 + 607 + + + + + Hearing-Perry and Shalikashvili + June 7, + 1995 + 607 + + + + + Levin + 1995-1996 + 607 + + + + + Memos and news articles, (SASC) + 1993-1994 + 607 + + + + + Memos, news articles, and resolutions, (SASC) + 1994-1995 + 607 + + + + + News articles and notes + September-December 1994 + 608 + + + + + Republic of Bosnia and Herzegovina government, (SASC; D. + Lewis) + 2 folders + 1994-1995 + 608 + + + + + UN resolutions on former Yugoslavia + November 1995 + 608 + + + + + Yugoslavia facts and chronology + 1995 + 608 + + + + + + Conflict-NATO peacekeeping (D. Lewis) + + + + Lessons of Yugoslavia + 1991-1993 + 608 + + + + + Letter to President Clinton-sanctions against Serbs + 1993 + 608 + + + + + Airstrikes arrangements + June 1993-April 1994 + 608 + + + + + Air strikes and Boutros Boutros Ghali + January 1994 + 608 + + + + + Air support + March-April 1994 + 608 + + + + + Serbia sanctions + 1994-1996 + 608 + + + + + Croatia + 1995 + 608 + + + + + Miscellaneous + 1995 + 608 + + + + + Congressional authorization for troops to NATO + 1995 + 608 + + + + + Congressional authorization-Bosnia + 2 folders + 1995 + 608 + + + + + Michigan-Peace bomb art project + 1995 + 608 + + +

    (Angie Maxey)

    +
    +
    + + + Michigan-National Guard and medical forces to NATO + 1995-1996 + 608 + + + + + Arm and train + 1995-1996 + 608 + + + + + Serbian Unity Congress-war crimes + 1995-1996 + 608 + + + + + Landmines + 1996 + 608 + + + + + Implementation Force (IFOR) + + + + Residual forces + 1996 + 608 + + + + + Russia + 1996 + 608 + + + + + Withdrawal + September 1996 + 608 + + + + + + Levin statement + November 15, + 1996 + 608 + + + + + Tax relief for U.S. forces + 1996 + 608 + + + + + War atrocities-Commando Solo + 1993-1996 + 608 + + +
    + + + Department of Defense (DOD) funding requests FY1996 + 609 + + + + + Dobroslav, Paraga-free political prisoners + 2 folders + 1990-1993 + 609 + + + + + Dole legislation-S. 21 vote + April-June 1995 + 609 + + + + + Hearings + + +

    (SASC; D. Lewis)

    +
    + + + October-November 1995 + 609 + + + + + December 6, + 1995 + 609 + + +
    + + + Iran arms purchase + 1996 + 609 + + + + + Kosovo + 1995-1996 + 609 + + + + + Kosovo province-Albanians + 1989 + 609 + + + + + Miscellaneous-articles, notes, letters + 1995 + 609 + + + + + National Defense Authorization Act amendment FY1995 + June-August 1994 + 609 + + +

    (NDAA)

    +
    +
    + + + No-fly zone + January 1993 + 609 + + + + + No-fly zone enforcement letter + January 1993 + 609 + + + + + Notes + December 1996 + 609 + + + + + Opinions and statements + + + + Clinton, Bill + November-December 1995 + 609 + + + + + Levin, Sander + 1995 + 609 + + + + + U.S. Leadership-Dept. of State + November 1995 + 609 + + + + + + Peacekeeping and talks in Bosnia + November 1995 + 609 + + + + + Refugee amendment + 1993-1994 + 609 + + + + + Resolution to terminate the arms embargo + October 1994 + 609 + + + + + Serb sanctions-amendments in Department of Defense (DOD) authorization + bill + 4 folders + 1993 + 610 + + + + + United Nations Security Council stop ethnic cleansing amendment-S.3348 + (Levin) + September 1992 + 609 + + + + + U.S. forces + 1993-1995 + 609 + + + + + U.S. relations + February-April 1993 + 609 + + + + + War crimes + + + + Gravesites-evidence + 1996 + 609 + + + + + Tribunal + + + + 1992-1995 + 610 + + + + + 1994-1996 + 610 + + + + + + + Yugoslavia + 9 subfolders + 1991-1994 + 1028 + + +

    (Includes a photograph; D. Lewis)

    +
    +
    + + + Yugoslavia-Croatia + 2 folders + 1991-1992 + 610 + + + + + Yugoslavia-human rights + 1991 + 610 + + +
    + + + Brazil-human rights + May-June 1992 + 610 + + + + + Burma (Myanmar)-human rights + 1990-1994 + 610 + + + + + Budapest Journalism Program-University of Mary + 1995 + 610 + + + + + Cambodia, (D. Lewis) + 1990-1992 + 1028 + + + + + Canada + + + + 1991-1995 + 610 + + + + + Defense project and procurement + 1994 + 610 + + + + + + China + + + + Human rights + + + + Meeting with Liz King-Association of Chinese Americans + 1989-1990 + 610 + + + + + Political prisoners and refugees to Tibet + February 1993 + 610 + + + + + Tibet + 1990-1993 + 610 + + + + + + Military technology development + June-July 1995 + 610 + + + + + Most Favored Nation (MFN) status + + + + 1991 + 610 + + + + + 1992 + 610 + + + + + 2 folders + 1996 + 611 + + + + + + Most Favored Nation, political prisoners, Wei Jingsheng for Nobel Peace + Prize, and Olympic Committee, (MFN) + 1989-1995 + 611 + + + + + + Cold War + + + + End + 1990-1991 + 611 + + + + + Post-era policy + 1992 + 611 + + + + + + Cuba + 1992-1994 + 611 + + + + + Helms and Cuba policy + 1995 + 1028 + + + + + Cyprus + + + + 1994-1999 + 611 + + + + + S. 1329 + March 1994 + 611 + + + + + + Czechoslovakia-Kmart + July 1991 + 611 + + + + + East Timor + + + + Human rights + 1991-1996 + 611 + + + + + Letters + 1991-1996 + 611 + + + + + + Egypt + 1993-1995 + 611 + + + + + El Salvador + + + + 1991 + 611 + + + + + Dodd and Leady amendment to S.1352 + 2 folders + July 1991 + 611 + + + + + + Greece and Turkey + 1986-1994 + 611 + + + + + Guatemala + 1992-1994 + 611 + + + + + Haiti + + + + 2 folders + 1992-1994 + 611 + + + + + 1993-1994 + 611 + + + + + + Hungary human rights + 1981-1993 + 611 + + + + + India + 1980-1995 + 611 + + + + + Iran + + + + 1990-1993 + 611 + + + + + Baha'i -- human rights + + + + 1985-1988 + 611 + + + + + 1990 + 611 + + + + + + Contra + 3 folders + 1992-1993 + 1028 + + + + + Contra scandal-Hasenfus compensation + April-June 1993 + 611 + + + + + Human rights + 3 folders + 1995-1998 + 612 + + + + + + Iraq + + + + 2 folders + 1991-1994 + 612 + + + + + 1993-1997 + 612 + + + + + Bombing of nuclear reactor + 1981 + 612 + + + + + Deddeh, Wadie-California state senator + 1993 + 612 + + + + + Humanitarian relief + July 1991 + 612 + + + + + Humanitarian and military action + 1991-1995 + 612 + + + + + Kurds + 1991-1994 + 612 + + + + + Oil and food program + 3 folders + 1994-1996 + 612 + + + + + Sanctions + February 1992 + 612 + + + + + Sanctions + 1993-1994 + 1028 + + +

    (Includes a floppy disk; D. Lewis)

    +
    + + + Iraq (Partial), JWS + 1993 February 25 - 1994 November 16 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Memorandums to Senator Carl Levin from + John on: Sanctions against Iraq (October 28,1994); Iraqi sanctions are hurting + the Kurds (March 14,1994); 1993 military strikes against Iraq (July 7, 1993), + Iraqi sanction and meeting with Paul Vincent, 2:30pm, Thursday 2/25/93 + (February 25, 1993); IRAQ: legal authorization for January 1993 military + action (March 24, 1993); and Sanctions against Iraq (November 16, 1994).)

    +
    +
    +
    + + + Sanctions + 1994-1995 + 612 + + + + + Vincent, Paul + 1992-1993 + 612 + + +
    + + + Ire + 1993 + 612 + + + + + Israel + + + + Americans for a Safe Israel + 1995 + 1028 + + + + + Jerusalem Embassy relocation, (S.1322) + 1995 + 1028 + + + + + Israel-Netanyahu delegation + July 1996 + 612 + + + + + + Japan + + + + 1994 + 1997 + 612 + + + + + "A Japan that can Say 'No'"-The new U.S.-Japan Relations Card by Akio + Morita and Shintaro Ishihara + 1989 + 612 + + + + + + Jewish genealogical societies + 1993-1994 + 612 + + + + + Kenya + 1991 + 612 + + + + + Korean Peninsula Energy Development Organization agreement with North + Korea + December 15, + 1995 + 612 + + + + + Lebanon + + + + 2 folders + 1991-1994 + 612 + + + + + General Michel Aoun + 1993 + 612 + + + + + + Legislation-McConnell Levin hegemony amendment + March 1994 + 612 + + + + + Macedonia + + + + 2 folders + 1992-1993 + 613 + + + + + 1993-1995 + 613 + + + + + 1994 + 613 + + + + + + Middle East and Israel + + + + Anti-Israel + 1991-1993 + 613 + + + + + Golan Heights-U.S. Forces + 1994-1995 + 613 + + + + + + Nominations and appointments + + + + Ambassador to Switzerland-M. Larry Lawrence + 1994 + 1036 + + + + + Assistant Secretary of State for European and Canadian Affairs-John + Komblum + May 1996 + 1036 + + +

    (Questions regarding Bosnia, Russia, and Turkey)

    +
    +
    + + + Deputy Secretary of State-Strobe Talbott + 1994 + 1036 + + +
    + + + North Korea + 1994 + 613 + + + + + Pakistan + + + + Missiles and Missile Technology Control Act + July-August 1995 + 613 + + + + + Missiles + 1995-1996 + 613 + + + + + + Russia + + + + 1993 + 613 + + + + + Aid-Gerber baby food + 1992-1994 + 613 + + + + + Demilitarization-congressional roundtable + December 1991 + 613 + + + + + Korean Airlines-American Association for Families of KAL 007 + Victims + 1996 + 614 + + + + + + Serbian Unity Congress-Michigan Chapter + 2 folders + 1995 + 613 + + + + + South Africa + + + + Antiapartheid letters to Presidents + July 1991 + 613 + + + + + Elections briefing-Gay McDougall + February-March 1994 + 613 + + + + + + Taiwan + 1994-1996 + 613 + + + + + Trips and Congressional Delegations (CODELs) + + + + Germany + March 31-April 4, 1991 + 613 + + +

    (Carl's writings)

    +
    +
    + + + Turkey, Iraq, and Kuwait + April 25-29, 1991 + + +

    (Carl's writings)

    +
    + + + Trip and Iraq War + 4 folders + 613 + + + + + Trip materials and background + 5 folders + 614 + + +
    + + + Po + 3 folders + August 15-23, 1991 + 614 + + +

    (Personal; Soviet coup; includes a medal)

    +
    +
    + + + Budapest-Aspen Institute + August 24-31, 1991 + 614 + + +

    (Carl's writings)

    +
    +
    + + + Russia, Ukraine, and Kazakhstan (CODEL Exon; SASC) + January 14-21, 1992 + + + + Carl's writings + 615 + + + + + Memos, reports, and letters + 615 + + +

    (Includes a photograph)

    +
    +
    + + + Trip materials + 2 folders + 615 + + +
    + + + Austria-Aspen Institute and personal trip + August 16-27, 1992 + 615 + + +

    (Carl's writings)

    +
    +
    + + + World Tour + November 28-December 15, 1992 + + +

    (CODEL Boren)

    +
    + + + Briefing binder + + + + Volume 1 + 3 folders + 615 + + + + + Volume 2 + 2 folders + 615 + + + + + + China + 615 + + +

    (Carl's writings)

    +
    +
    + + + China-human rights + 1991-1993 + 616 + + + + + India + 616 + + +

    (Carl's writings)

    +
    +
    + + + Miscellaneous + 616 + + +

    (Carl's writings)

    +
    +
    + + + Pakistan + 616 + + +

    (Carl's writings)

    +
    +
    + + + Somalia + 616 + + +

    (Carl's writings)

    +
    +
    + + + Syria and Israel + 616 + + +

    (Carl's writings)

    +
    +
    + + + Trip preparation + 2 folders + 616 + + +
    + + + Balkans (CODEL Levin) + May 31-June 4, 1993 + + + + Biden report and David Lewis notes on NATO + April-June 1993 + 616 + + + + + Bosnia, human rights, and SASC hearings + 4 folders + 1992-1993 + 616 + + + + + Briefing information + May 1993 + 616 + + + + + Brussels, Croatia, Albania, Macedonia, and Naples + 616 + + + + + Miscellaneous + 616 + + + + + Joint Action Plan for Bosnia and talking points on Gays in the + Military + May 28, + 1993 + 616 + + + + + Italy + May-June 1993 + 1049 + + + + + Planning + April-May 1993 + 617 + + + + + Post-trip + June 1993 + 617 + + + + + Trip report + June 1993 + 617 + + + + + Trip report and thank yous + June 1993 + 617 + + + + + + London, Paris, Bonn, Brussels, Naples, Addis Ababa, Mogadishu, and + Frankfurt + December 6-15, 1993 + + +

    (CODEL Levin-Warner)

    +
    + + + European security, NATO, and USS Ranger raid + 2 folders + 617 + + + + + Trip folder + 617 + + +
    + + + Korea-Nuclear (CODEL Levin; attempted) + July 9-12, 1994 + + + + Failed trip + 617 + + + + + Talking points and miscellaneous information on Koreas + 1993-1994 + 617 + + +

    (Includes SASC nomination memos for Lt. Gen. Joe Ashy, Vice Adm. Richard + Macke, Maj. Gen. Charles Wilhelm, and Maj. Gen. Paul Blackwell)

    +
    +
    + + + Trip folder + 617 + + + + + Trip materials + 3 folders + 617 + + + + + Trip planning + 617 + + +
    + + + Haiti + October 1-2, 1994 + + +

    (CODEL Dodd-Warner)

    +
    + + + Briefing book + 617 + + + + + Levin statement + 617 + + + + + Trip folder + 617 + + + + + Trip materials + 2 folders + 617 + + +
    + + + November 1994-Korea-Nuclear (CODEL Levin) + 617 + + + + + Japan-auto parts (Levin staff) + November-December 1996 + + + + Auto parts and trade + 2 folders + 1994-1996 + 617 + + + + + Auto Parts Advisory Committee reports + 1993-1996 + 618 + + + + + Briefing material + 618 + + + + + Levin no go + 618 + + + + + Planning materials + 618 + + + + + Trade imbalance negotiations + 1993-1994 + 618 + + + + + + December 1996-New Zealand + 618 + + +
    + + + Ukraine-land and resource management partnership, (Michigan) + 1995-1996 + 618 + + + + + Vietnam + July 11, 1995 + 618 + + +
    + + + Government and Governmental Affairs Committee (GAC) + 1891-2001 + + + + Action files + + + + Congress + + + + September 24, + 1992 + 110 + + + + + 1993 + 110 + + + + + 1994 + 110 + + + + + 1995 + 110 + + + + + 1996 + 110 + + + + + + Federal employment + September 1992 + 110 + + + + + Federal employees + 1995 + 110 + + + + + Judiciary + + + + January 1992 + 110 + + + + + 1993 + 110 + + + + + 1994 + 110 + + + + + 1995 + 110 + + + + + 1996 + 110 + + + + + + Politics + July 5, 1992 + 110 + + + + + Politics + 1994 + 110 + + + + + Politics and PACs + 1993 + 110 + + + + + Politics and fundraising + 1994 + 110 + + + + + Postal + + + + 1995 + 110 + + + + + 1996 + 110 + + + + + + Public works + + + + 1992 + 110 + + + + + 1993 + 110 + + + + + 1994 + 110 + + + + + 1995 + 110 + + + + + 1996 + 110 + + + + + + Reform + + + + 1992 + 110 + + + + + 1993 + 110 + + + + + 1994 + 110 + + + + + 1995 + 110 + + + + + 1996 + 110 + + + + + + Social Security + + + + 1993 + 110 + + + + + 1996 + 110 + + + + + + + Advisory Commission on Intergovernmental Relations (ACIR), (Oversight of + Commission; K. Dekuiper) + 2 folders + 1989-1995 + 647 + + + + + Affirmative Action, bias, and racism in government + 1992-1995 + 647 + + + + + Appropriations and funding + + + + FY1994 miscellaneous + 8 subfolders + 647 + + +

    (Includes transportation, interior, agriculture, VA-HUD, Commerce, Great Lakes, + Energy and water, environment; C. Miller)

    +
    +
    + + + FY1995 Miscellaneous + 7 subfolders + 647 + + +

    (Includes agriculture, commerce, energy and water, interior, transportation, + VA-HUD)

    +
    +
    + + + FY1995 and FY1999-supplemental and rescissions (D.C.) + 648 + + + + + FY1996 Levin project + 648 + + + + + FY1996 Omnibus-Agriculture, Commerce, Energy and Water, Great Lakes, + Interior, Transportation, Veterans Affairs, and Housing and Urban + Development + 10 subfolders + 1995 + 1030 + + + + + FY1997 + 648 + + +

    (Includes: Supplemental, commerce, agriculture, Great Lakes, interior, + transportation, and veterans affairs-housing and urban development VA-HUD)

    +
    +
    + + + Administrative Conference of the U.S. appropriations and shutdown, (L. + Gustitus) + 1993-1995 + 648 + + + + + Local Flexibility Act federal money and grants -- S.88, (L. Gustitus or + T. James) + 7 subfolders + 1996 + 648 + + +
    + + + Balanced budget + + + + Amendment folder 1 + February 1995 + 648 + + + + + Amendment folder 2 + February 1995 + 648 + + + + + Amendment + 1995 + 648 + + + + + Amendment impact on Michigan + February 1995 + 648 + + + + + Amendment and states, (D. Guglielmo) + 2 folders + November 1997-January + 1997 + 648 + + + + + Amendment press clips and hearing transcript, (Committee on + Judiciary) + 1994-1995 + 649 + + + + + Amendment substitute + January-February 1995 + 649 + + + + + Debate -- Carl's file, (D. Guglielmo) + 2 folders + 1992-1994 + 649 + + + + + Domenici and Dorgan bill + 1995 + 649 + + + + + Levin file + 6 subfolders + 1995 + 649 + + + + + Presidential balanced budget proposal + January 12, + 1996 + 650 + + + + + Proposal, vote counts, and statement + December 1994-February 1995 + 650 + + + + + + Budget + + + + Levin file + 1996 + 650 + + + + + Budget process + 1993-1995 + 650 + + + + + Budget project and process + November 1994 + 650 + + + + + Customs for reconciliation + July 1996 + 650 + + + + + Debt ceiling notes + January 1996 + 650 + + + + + Democratic Policy Committee talking points on Republican budget and tax + cuts + March 1995 + 650 + + + + + Flat tax proposal, (D. Guglielmo) + 1995-1996 + 650 + + + + + Flint Job Corps Center + 1995 + 650 + + + + + Radio memos and talking points + 1995 + 650 + + + + + Reconciliation + 1995 + 650 + + + + + Requests and appropriations + 1996 + 650 + + + + + Resolution and balanced budget + April-October 1995 + 650 + + + + + Resolution markup and votes-Budget Committee + May 1995 + 650 + + + + + Right to Know materials on balanced budget amendment + 1995 + 650 + + + + + Senate budget materials, (D. Lewis) + 1996 + 650 + + + + + + Budget and taxes + October 1995 + 650 + + + + + Black staffers-news articles + 1991 + 1995 + 650 + + + + + Campaign finance reform -- Carl's files + + + + Campaign spending + 1993 + 650 + + + + + Draft proposal and election information + 1986-1992 + 650 + + + + + Proposal summary + 1992 + 650 + + + + + + Clinton accomplishments + February 27, + 1996 + 650 + + + + + Cloture votes in 103rd Congress + 1994 + 650 + + + + + Commemorative coin bill-FDR, (J. Parker) + 1994 + 650 + + + + + Community service and budget + May 1995 + 650 + + + + + Comprehensive Congressional Reform act and lobbying-S.10, January1995 + (Senator Daschle) + 651 + + + + + Democratic leader race in Senate, (Daschle) + 1994 + 651 + + + + + Ethics + + + + Packwood subpoena refusal + October-November 1993 + 651 + + + + + Abraham Sofaer and ethics influencing the State Department + September 1993 + 651 + + + + + + Federal employees + + + + Bonus bill + 8 subfolders + 1993-1994 + 651 + + +

    (Levin bill to ban bonuses to political appointees; K. Dekuiper)

    +
    +
    + + + Combined Federal Campaign (CFC) and Office of Personnel Management + (OPM) changes + 1983-1988 + 651 + + + + + Drugs and federal employees + 1986-1987 + 651 + + + + + Federal Employees Equal Employment Opportunity Commission (EEOC), (K. + Dekuiper) + 1992-1994 + 651 + + + + + Federal protective officers + 1989-1994 + 651 + + + + + Hatch Act, (GAC hearing and markup) + 1993-1994 + 651 + + + + + National Guard Civilian Technicians + 1985-1990 + 651 + + + + + Quick reference-civil service issues, (K. Dekuiper) + 3 subfolders + 1993-1994 + 651 + + +
    + + + Federal Ombudsman Offices, (L. Gustitus or T. James) + 1996 + 651 + + + + + Federal Register + November 1994 + 651 + + + + + Governmental Affairs Committee materials (GAC) + + + + Committee documents -- Gustitus + 3 folders + 1994 + 651 + + + + Gustitus, 1 of 1 + 1994 + + +

    [access item]

    +
    +
    + Online +
    + +

    (1991-1996 (102nd-104th Congress). Files of staff member, Linda Gustitus. + [Disk 1 of 1])

    +
    +
    + + + Governmental Affairs, Gustit + + + + Part 1 + + + + 1 of 8 + 1994 + + +

    [access item]

    +
    +
    + Online +
    + +

    (1991-1996 (102nd-104th Congress). Governmental Affairs files of staff + member, Linda Gustitus. [Part 1, Disk 1 of 8])

    +
    +
    + + + 2 of 8 + 1994 + + +

    [access item]

    +
    +
    + Online +
    + +

    (1991-1996 (102nd-104th Congress). Governmental Affairs files of staff + member, Linda Gustitus. [Part 1, Disk 2 of 8])

    +
    +
    + + + 3 of 8 + 1994 + + +

    [access item]

    +
    +
    + Online +
    + +

    (1991-1996 (102nd-104th Congress). Governmental Affairs files of staff + member, Linda Gustitus. [Part 1, Disk 3 of 8])

    +
    +
    + + + 4 of 8 + 1994 + + +

    [access item]

    +
    +
    + Online +
    + +

    (1991-1996 (102nd-104th Congress). Governmental Affairs files of staff + member, Linda Gustitus. [Part 1, Disk 4 of 8])

    +
    +
    + + + 5 of 8 + 1994 + + +

    [access item]

    +
    +
    + Online +
    + +

    (1991-1996 (102nd-104th Congress). Governmental Affairs files of staff + member, Linda Gustitus. [Part 1, Disk 5 of 8])

    +
    +
    + + + 6 of 8 + 1994 + + +

    [access item]

    +
    +
    + Online +
    + +

    (1991-1996 (102nd-104th Congress). Governmental Affairs files of staff + member, Linda Gustitus. [Part 1, Disk 6 of 8])

    +
    +
    + + + 7 of 8 + 1994 + + +

    [access item]

    +
    +
    + Online +
    + +

    (1991-1996 (102nd-104th Congress). Governmental Affairs files of staff + member, Linda Gustitus. [Part 1, Disk 7 of 8])

    +
    +
    + + + 8 of 8 + 1994 + + +

    [access item]

    +
    +
    + Online +
    + +

    (1991-1996 (102nd-104th Congress). Governmental Affairs files of staff + member, Linda Gustitus. [Part 1, Disk 8 of 8])

    +
    +
    +
    + + + Part 2 + + + + 1 of 8 + 1994 + + +

    [access item]

    +
    +
    + Online +
    + +

    (1991-1996 (102nd-104th Congress). Governmental Affairs files of staff + member, Linda Gustitus. [Part 2, Disk 1 of 8])

    +
    +
    + + + 2 of 8 + 1994 + + +

    [access item]

    +
    +
    + Online +
    + +

    (1991-1996 (102nd-104th Congress). Governmental Affairs files of staff + member, Linda Gustitus. [Part 2, Disk 2 of 8])

    +
    +
    + + + 3 of 8 + 1994 + + +

    [access item]

    +
    +
    + Online +
    + +

    (1991-1996 (102nd-104th Congress). Governmental Affairs files of staff + member, Linda Gustitus. [Part 2, Disk 3 of 8])

    +
    +
    + + + 4 of 8 + 1994 + + +

    [access item]

    +
    +
    + Online +
    + +

    (1991-1996 (102nd-104th Congress). Governmental Affairs files of staff + member, Linda Gustitus. [Part 2, Disk 4 of 8])

    +
    +
    + + + 5 of 8 + 1994 + + +

    [access item]

    +
    +
    + Online +
    + +

    (1991-1996 (102nd-104th Congress). Governmental Affairs files of staff + member, Linda Gustitus. [Part 2, Disk 5 of 8])

    +
    +
    + + + 6 of 8 + 1994 + + +

    [access item]

    +
    +
    + Online +
    + +

    (1991-1996 (102nd-104th Congress). Governmental Affairs files of staff + member, Linda Gustitus. [Part 2, Disk 6 of 8])

    +
    +
    + + + 7 of 8 + 1994 + + +

    [access item]

    +
    +
    + Online +
    + +

    (1991-1996 (102nd-104th Congress). Governmental Affairs files of staff + member, Linda Gustitus. [Part 2, Disk 7 of 8])

    +
    +
    + + + 8 of 8 + 1994 + + +

    [access item]

    +
    +
    + Online +
    + +

    (1991-1996 (102nd-104th Congress). Governmental Affairs files of staff + member, Linda Gustitus. [Part 2, Disk 8 of 8])

    +
    +
    +
    +
    +
    + + + Committee hearings + + + + Procurement Integrity in Government, (Sucom OGMDC: P. + Levine) + February 26, + 1991 + 651 + + + + + Department of Defense (DOD) inventory wasteful ordering + April 23, + 1991 + 651 + + +

    (Wasteful Ordering Practices in the DOD Supply System; Subcom OGMDC; P. + Levine)

    +
    +
    + + + Japan and Ban on Rice, (Subcom OGMDC) + May 8, 1991 + 651 + + + + + Lobbying Regulation Act, Juuly 16 + 2 folders + 1991 + 652 + + +

    (Oversight of Legislative and Executive Branch Lobbying Disclosure; Subcom + OGMDC; P. Levine)

    +
    +
    + + + Will Jobs be America's Biggest Export Under NAFTA?, April 1, + 1993(Subcom OGMDC) + 2 folders + 652 + + +

    (Binder 1)

    +
    +
    + + + Will Jobs be America's Biggest Export Under NAFTA?, (Subcom + OGMDC) + April 1, + 1993 + 652 + + +

    (Binder 2)

    +
    +
    + + + North American Free Trade Agreement and Oversight of Federal Trade + Data: What We Don't Know Could Hurt Us, (Subcom OGMDC) + April 1993 + 652 + + + + + Oversight of Federal Trade Data: What We Don't Know Could Hurt Us, + (Subcom OGMDC) + April 28, + 1993 + 652 + + + + + Off-loading in government contracting + July 30, + 1993 + 652 + + +

    (Off-loading: The Multimillion Dollar Loophole in Government Contracting; + Subcom OGMDC; P. Levine)

    +
    +
    + + + NAFTA Job Claims: Truth in Statistics?, (GAC) + November 10, + 1993 + 652 + + + + + Oversight of U.S.-Japan Auto Parts Framework Negotiations: What's + Needed to Get Results, (Subcom OGMDC) + 2 folders + February 3, + 1994 + 652 + + + + + Oversight of EPA's Implementation of the Nonattainment provisions of + the Clean Air Act in the Lake Michigan Region + July 25, + 1994 + 652 + + +

    (Muskegon air issue; Subcom OGMDC)

    +
    +
    +
    + + + Committee memos + + + + Cohen investigation and miscommunication + 1993-1995 + 652 + + + + + Strack, Barbara, (B. Strack) + 1989-1994 + + + + + + Subcommittee on Oversight of Government Management and District of + Columbia files (Subcom OGMDC) + + + + Assessment and Control International-issues + 1991-1995 + 653 + + + + + Defense reutilization and marketing service (DRMS)-Battle + Creek + 2 subfolders + 1992-1995 + 653 + + +

    (Battle Creek Federal Center)

    +
    +
    + + + District of Columbia (D.C.) + + + + BNA Washington, Inc. Real Property Tax Deferral Temporary Amendment + Act of + 1996 + 653 + + + + + Budget Issues, FY1997 + 653 + + + + + Control Board members + 1997 + 653 + + + + + Department of Corrections improvements + 1996 + + + + + Financial Management System recommendation + 1996 + 653 + + + + + Government insolvency-control board + June 1995 + 653 + + + + + Jefferson Amendment to tax bill-schools + June 1997 + 653 + + + + + Lottery Board + 1996 + 653 + + + + + Metered taxicabs + 1993-1996 + 653 + + + + + S.294 markup-Murder of on-duty D.C. police officer + 1997 + 653 + + + + + Taxicab-news articles + 1992 + 1996-1997 + 653 + + + + + + Ethics + + + + 1990-1991 + 653 + + + + + Presidents + 1992-1995 + 653 + + + +
    +
    + + + Independent Counsel authorization acts + 1987-1994 + 653 + + + + + Judicial merit selection + 1992-1993 + 653 + + + + + Legislation statements and correspondence and tax voting + records + 2000-2001 + 653 + + + + + Legislative priorities and Pataki's choice budget chief + 1994-1995 + 653 + + + + + Legislative veto -- items from old files + 1980-1996 + 653 + + + + + Carl Levin FBI FOIA request + 1990-1992 + 654 + + + + + Line-item Veto + + + + Case law + + + + Chadha v INS + 1983 + 654 + + + + + Federalist, 1787-1788 + 654 + + + + + Miscellaneous + 1891-1993 + 654 + + + + + + CRS issue briefs + + + + 1994 + 1996 + 654 + + + + + 2 folders + 1994-1998 + 654 + + + + + October 1994-March 1995 + 654 + + + + + + Hearings + + + + Subcommittee on the Constitution of the Committee on the + Judiciary + June 14-15, 1994 + 654 + + + + + Transcript of proceedings of the Committee on the Budget + October 5, + 1994 + 654 + + + + + Subcommittee on the Constitution of the Committee on the Judiciary, + Federalism, and Property Rights + 2 folders + January 24, + 1995 + 654 + + + + + Testimony + January-February 1995 + 654 + + + + + + Hearings and Committee reports + 1995-1996 + 654 + + + + + Impoundment history + 1971-1995 + 654 + + + + + Line Item Veto Act + 1994-1996 + 654 + + + + + Memos + November 1996-January 1997 + 654 + + + + + Reports and summary + 1996 + 654 + + + + + Resolution + 2 folders + 1994-1997 + 654 + + + + + + Lobbying and gifts + + + + ABA Lobbying Disclosure Working Group proposed exemptions to S.349, + ? + 2 folders + 1996 + 655 + + + + + General lobbying + 2 folders + 1990 + 655 + + + + + Handbook for entertaining and lobbying public officials + 3 folders + 1994 + 655 + + + + + Hearings-Subcom OGM + + + + Foreign Agents Registration Act + June 20, + 1991 + 655 + + + + + Lobbying Disclosure Act hearing notebook + March 26, + 1992 + 655 + + + + + + House and Senate Gift Rules -- Lobbying Disclosure Act, ? (Winston and + Strawn; Conference) + 1996 + 655 + + + + + Hubbard, Allen + 1991-1992 + 655 + + + + + Lobbying bill + + + + 1988-1994 + 655 + + + + + 1991-1993 + 655 + + + + + 1992-1994 + 655 + + + + + Sport Utility Vehicle case and ATVs + 1991 + 655 + + + + + + Lobbying disclosure + 1990-1993 + 655 + + + + + Lobbying Disclosure Act -- S.349 + + + + Floor debate notebook + 3 folders + 1993 + 656 + + + + + 1994 + 656 + + + + + Floor notebook for conference report + 2 folders + 1994 + 656 + + + + + + Lobbying Disclosure Act (P. Levine and L. Gustitus) + + + + 1995 + 656 + + + + + Part 1 + 2 folders + 1995 + 1996-1997 + 656 + + + + + Part 2 + 12 subfolders + 1993-1995 + 1995 + 656 + + + + + Amendment-gifts reform + 3 subfolders + 1993 + 1995 + 656 + + + + + Astroturf and grass roots lobbying + 7 subfolders + 1994-1996 + 657 + + + + + Contingency fees + 1985-1994 + 657 + + + + + Floor materials + 8 subfolders + 1993-1996 + 657 + + +

    (GAC; Includes Conference report, Committee report to accompany S.1935 + hearing on S.885)

    +
    +
    + + + Grass roots interviews + January-February 1996 + 657 + + + + + Summaries + 3 subfolders + 1995-1996 + 657 + + +
    + + + Lobbying expense reported on tax returns + 1993 + 657 + + + + + Lobbying-technical corrections, (Ethics Reform Act) + 1989-1991 + 657 + + + + + Reform + 2 folders + 1994-1995 + 657 + + + + + Reform-Levin + + + + 2 folders + 1994-1995 + 657 + + + + + Congressional Record + September 29, + 1994 + 657 + + + + + + Senate and House gift rules and lobbying disclosure act of 1995-Defense + Industry Initiative on Business Ethics and Conduct seminar + 3 folders + January 18, + 1996 + 658 + + + + + State lobbying laws and Arkansas' + 1993 + 658 + + +
    + + + Mansfield Act-agency fellows to Japan, (S.587; K. Dekuiper) + 1992-1993 + 658 + + + + + Miscellaneous-legislative priorities, reform, Black Legislative Caucus, + and page of Levin schedule + 1992-1995 + 658 + + + + + National Rifle Association (NRA) letter-retraction + May 1995 + 658 + + + + + Nominations and appointments + + + + Archivist of the United States -- John Carlin, (GAC) + May 1995 + 1036 + + + + + Director of Central Intelligence-Robert Gates, (CIA) + 1991 + 1036 + + + + + Secretary of Commerce confirmation papers -- Ron Brown + January 1993 + 1037 + + + + + European Union Ambassador -- Dick D'Amato + February 1996 + 1037 + + + + + Federal Emergency Management Agency (FEMA) Director-James Lee Witt, + (GAC) + March-May 1993 + 1037 + + + + + Judge issues + 1990-1993 + 1037 + + + + + Office of Management and Budget (OMB) + + + + Deputy Director for Management -- Sally Katzen + September 15, + 1999 + 1037 + + + + + Director -- Leon Panetta + 1992 + 1037 + + + + + + U.S. Attorney for East and West + 2 folders + 1992-1993 + 1037 + + + + + U.S. Attorney General-Reno, Janet + 1993 + 1037 + + + + + Merit selection committee for U.S. Attorney General Western District of + Michigan + 1993 + 1037 + + + + + U.S. Court of Appeals-6th Circuit + + + + Letters + 1993-1994 + 1037 + + + + + Memos and notes + 1993-1994 + 1037 + + + + + Questionnaires + 1992-1993 + 1037 + + + + + Smietanka, John + 1992 + 1037 + + + + + Smietanka, John A. + September 28, + 1992 + 1037 + + + + + Vacancies and nominations + 2 folders + 1994-1996 + 1037 + + + + + + U.S. Court of Appeals-11th Circuit-Ed Carnes + + + + 2 folders + May-June 1992 + 1037 + + + + + May-August 1992 + 1038 + + + + + May-September 1992 + 1038 + + + + + GAO and ABA + June 1992 + 1038 + + + + + Hearing materials + April 1992 + 1038 + + + + + Letters and materials from Carnes + 2 folders + May-December 1992 + 1038 + + + + + Memos and notes + May-June 1992 + 1038 + + + + + Miscellaneous + April-July 1992 + 1038 + + + + + Press + May-July 1992 + 1038 + + + + + + U.S. Court of Appeals 11th Circuit-Ed Carnes + 1992 + 1038 + + + + + U.S. District Court Eastern Michigan + 1993 + + + + Citizens Merit Selection Committee + 1993 + 1996 + 1038 + + + + + Judicial Nominations file-Carl's + 4 folders + 1038 + + + + + Borman, Paul + 2 folders + 1038 + + + + + Edwards, Sharon Lee + 2 folders + 1038 + + + + + Green, Saul A. + 1039 + + + + + Gurewitz, Harold + 2 folders + 1039 + + + + + Hood, Denise Page + 1039 + + + + + Kaufman, Richard C. + 2 folders + 1039 + + + + + Kelly, Marilyn Jean + 1039 + + + + + + U.S. District Court Western Michigan-Ben Gibson + September-October 1995 + 1039 + + + + + U.S. Marshal for East and West Michigan + 4 folders + 1992-1993 + 1039 + + + + + U.S. Supreme Court + + + + Breyer, Stephen + 1994 + 1039 + + + + + Ginsburg, Ruth Bader + 1993 + 1039 + + + + + Thomas, Clarence + + + + Background, statements, and notes + 1991 + 1039 + + + + + Levin's folder + 2 folders + 1991 + 1040 + + + + + Sexual harassment allegation concerns + October 1991 + 1040 + + + + + + + U.S. Surgeon General -- Henry Foster + February-May 1995 + 1040 + + + + + + Offloading investigation (Subcom OGM) + + + + Audit follow up + 1993 + 658 + + + + + Computer Science Corporation (CSC) offloading with Marine + Corps. + 1993 + 1030 + + + + + Department of Energy offloading + 1993 + 658 + + + + + Key documents + 4 subfolders + 1993 + 658 + + + + + Off-loading follow up + 2 subfolders + 1993 + 658 + + + + + Other agencies offloading -- EPA, Volpe, CIA, and Library of + Congress + 4 subfolders + 1993 + 658 + + + + + Tennessee Valley Authority (TVA) DOD offloading + 1993-1994 + 659 + + + + + + Postal Service + + + + Explosive mailings + July 1993 + 659 + + +

    (Death penalty amendment)

    +
    +
    + + + Post office investigation + 10 folders + 1991 + 659 + + +

    (1-10 of 15 folders)

    +
    +
    + + + Post office investigation + 5 folders + 1991 + 660 + + +

    (11-15 of 15 folders)

    +
    +
    + + + 1994 Reconciliation information (Postal service employee and management + relations; GAC budget reconciliation) + May-August 1993 + 660 + + + + + Royal Oak Post Office (GAC) + + + + File 1 + 11 subfolders + 1992-1994 + 660 + + + + + File 2 + 8 subfolders + 1991-1994 + 660 + + + + + + United States Postal Services management and Thomas McIlvane (Subcom + OGM; K. Dekuiper) + + + + November 1991-March 1992 + 660 + + + + + Jim Capizzo, (Pennsylvania) + 1992 + 660 + + + + + Detroit division Postmaster + 1991 + 660 + + + + + Ken Harris material, (Farmington Postmaster; Presilla and + Horne) + 1992 + 661 + + + + + Post office disclosure releases, (Permission to release name to any + congressional investigation, GAO, and USPS) + 1992 + 661 + + + + + Royal Oak exhibits and investigation + 3 folders + 1988-1991 + 661 + + + + + Royal Oak staff labor + 1992 + 661 + + + +
    + + + Presidential succession, (R. Arenberg) + October 1994 + 661 + + + + + Regulatory Reform + + + + Accounting + 1996-1997 + 661 + + + + + Administration + 1995-1996 + 661 + + + + + Bad regulations + 1991-1996 + 661 + + + + + Comprehensive Regulatory Reform Act-S.343 + + + + Administration positions + July-August 1995 + 661 + + + + + Affirmative defense + October 1995 + 661 + + + + + Agency review and petition process + June-July 1995 + 661 + + + + + Agency testimony and rule review + May-June 1995 + 661 + + + + + Amendments + 1995 + 661 + + + + + Amendments-Hutchinson and Domenici + 1995 + 661 + + + + + Amendments-Levin + 1995 + 661 + + + + + Amendments-Small business compliance + July 1995 + 662 + + + + + Committee report, (GAC) + 1995 + 662 + + + + + Correspondence + June-July 1995 + 662 + + + + + Correspondence with members + June-July 1995 + 662 + + + + + Cost + March-July 1995 + 662 + + + + + Examples + July 1995 + 662 + + + + + Judicial review + July 1995 + 662 + + + + + Legislation problems + June-July 1995 + 662 + + + + + Legislative veto + undated + 662 + + + + + Levin statement on Glenn-Chafee substitute + undated + 662 + + + + + Memos and notes + June-July 1996 + 662 + + + + + Miscellaneous + April-July 1995 + 662 + + + + + Proposed modifications to Dole-Johnson amendment + August 1995 + 662 + + + + + + Corporation comments + April-October 1995 + 662 + + + + + Corporation letters + 1995-1997 + 662 + + +

    (Includes GM)

    +
    +
    + + + Cost benefit decision criteria + + + + 1995-1996 + 662 + + + + + Court cases + 1976-1995 + 662 + + + + + Notes + January 1996 + 662 + + + + + + Dole-Johnston + 1995 + 662 + + + + + Groups + 1995-1997 + 662 + + + + + Miscellaneous + 1995-1996 + 662 + + + + + Miscellaneous + 1995-1997 + 662 + + + + + Myths + 1995 + 662 + + + + + Notes and memos + 1996-1997 + 662 + + + + + Ozone standard and nonattainment areas + 1993-1995 + 662 + + + + + Private Property Rights Implementation Act-H.R.1534 + 1997 + 662 + + + + + Proposed language + 1993-1995 + 662 + + + + + Regulatory Improvement Act + 1996-1997 + 662 + + + + + Regulatory Reform Act-S.1080 + 1981-1984 + 662 + + + + + Regulatory Reform Act-S.291, (GAC) + March-April 1995 + 662 + + + + + Risk assessment + 1995-1996 + 662 + + + + + Small Business Board + 1996-1997 + 662 + + + + + Small Business Regulatory Enforcement Fairness Act-S942 + 1996 + 662 + + + + + Talking points and legislation + 1995-1996 + 663 + + +
    + + + Regulatory reform and labor (GAC) + + + + Competitiveness Council + 1991-1992 + 663 + + + + + Competitiveness Council + 1991-1993 + 663 + + + + + Dole-Johnson amendment -- S.343, (Comprehensive Regulatory + Reform) + 1995 + 663 + + + + + MacRae hearing, (OMB, OSHA, and suspension of worker safety + rule) + 1992 + 663 + + + + + Miscellaneous + 1980-1992 + 663 + + + + + Occupational Safety and Health Administration Standard (OSHA), + (MacRae) + 1992-1995 + 663 + + + + + Regulatory Right to Know Act -- S.59 + 1999 + 663 + + + + + + Republican Contract with America program + 1994 + 663 + + + + + Senate Black Legislative Staff Caucus (SBLSC) (J. Parker) + + + + 1991-1995 + 663 + + + + + 1992-1996 + 663 + + + + + August-September + 1994 + 663 + + + + + 1995 + 663 + + + + + African American news and Attorney General for Civil Rights + nomination-Lani Guiner + 2 folders + 1991-1994 + 1040 + + + + + Annual legislative weekend and crime bill civil liberty + violations + 1991-1994 + 664 + + + + + Conference talking points and emergency meeting with Institute for + Policy Research and Education (IPRE) for research agenda + 1994-1995 + 664 + + + + + Fellow placement with Subcommittee on Oversight of Government + Management, (Subcom OGM) + 1994 + 664 + + + + + Jackie Parker biographical information and event + announcements + 1995 + 664 + + + + + Jackie Parker file-New York African American burial ground disruption + and Smithsonian museum + 1992 + 664 + + + + + Members list and civil rights legislation + 1989 + 664 + + + + + Minority jobs in government + April-June 1993 + 664 + + + + + + Social security amendment-S.2615 + April 10, 1992 + 664 + + + + + Social Security card fraud + 1991-1994 + 664 + + + + + Unfunded mandates + + + + 1994-1995 + 664 + + +

    (H. Keller)

    +
    +
    + + + Letters regarding mandates and S.1 + 2 folders + 1994-January 1995 + 664 + + + + + Levin's file-S.993 + 21 subfolders + 1993-1995 + 664 + + + + + Hearings + + + + Hearing testimony, February + April 1994 + 664 + + + + + News articles + 1994 + 664 + + + + + CBO materials + 1994 + 664 + + + + + Statements and talking points + 1994-1995 + 664 + + + + + Questions on S.1 + January 1995 + 664 + + + + + Internal memos, (S.1) + November 1994-January 1995 + 664 + + + + + Background and research + 1994-1995 + 665 + + + + + + Studies, reports, and markup + 3 subfolders + 1994 + 665 + + +

    (Includes GAC markup of S.1604-Federal Mandate Accountability and Reform + Act)

    +
    +
    + + + Follow-up + 1996-1998 + 665 + + +
    +
    + + + Health and Human Services + 1989-1997 + + + + Action files + + + + Health + + + + 1992 + 110 + + + + + 1993 + 110 + + + + + 1994 + 110 + + + + + 1995 + 110 + + + + + 1996 + 110 + + + + + + Senior citizens + + + + 1994 + 110 + + + + + 1995 + 110 + + + + + 1996 + 110 + + + + + + Social services + + + + 1993 + 110 + + + + + 1995 + 110 + + + + + 1996 + 110 + + + + + + + Adoption + + + + 1989-1994 + 752 + + + + + 1991-1994 + 752 + + + + + 1991-1995 + 752 + + + + + 1991-1995 + 752 + + + + + 1991-1996 + 752 + + + + + Adoption and Family Reinforcement Act + 1994 + 752 + + + + + Legislation and reunion registry + 1994 + 752 + + + + + National Defense Authorization Act benefits and Fairness for Adopting + Families Act + 1995 + 752 + + + + + National Voluntary Reunion Registry + + + + 1991 + 752 + + + + + 1992 + 752 + + + + + 1993 + 752 + + + + + 1993-1994 + 752 + + + + + March-April 1994 + 752 + + + + + March-October + 1994 + 752 + + + + + 1994 + 752 + + + + + 1994-1995 + 752 + + + + + Constituent letters and legislation + 2 folders + 1994-1995 + 752 + + + + + Alan W. Strasser paper + 1992-1993 + 752 + + + + + + + Appropriations and funding + + + + FY1995-Labor-HHS-Education + 752 + + + + + FY1996-Labor-HHS-Education letters + 752 + + + + + FY1996 Medicare cuts + 1028 + + + + + + Children and Youth + + + + Abuse and neglect-Subcommittee of Oversight on Government Management, + (Subcom OGM) + February 1991 + 752 + + + + + Childcare + April-June 1995 + 752 + + + + + Children and families + 1995 + 752 + + + + + Head start and uninsured children + 1995-1996 + 752 + + + + + Programs funding + 1995 + 752 + + + + + Welfare + 2 folders + 1994-1995 + 753 + + + + + Youth at risk + August 1995 + 753 + + + + + Youth services + 1994-1995 + 753 + + + + + + Community Service and Development + + + + July-August 1995 + 753 + + + + + Work and community development and housing legislation + 2 folders + 1995 + 753 + + + + + + Family + + + + Family Privacy Protection Act + + + + Amendments-Levin and Cohen + April 1996 + 753 + + + + + Bill and substitute amendment + 1995-1996 + 753 + + + + + Committee report H.R.1271 + August 1996 + 753 + + + + + Congressional Budget Office (CBO) cost estimates + May 2, 1996 + 753 + + + + + Hearing statement draft on H.R.1271 (GAC) + November 9, + 1995 + 753 + + + + + Hearing testimony + 1995-April 1996 + 753 + + + + + Post-hearing questions + December 1995 + 753 + + + + + Letters + November 1995-April 1996 + 753 + + + + + Administration letters and testimony + November 1995 + 753 + + + + + Letters-Michigan + November 1995-April 1996 + 753 + + + + + Media briefing + June 19, + 1996 + 753 + + + + + Memos + November 1995-April 1996 + 753 + + + + + Regulations + November 1995 + 753 + + + + + Senators references to surveys + January-June 1996 + 753 + + + + + State laws + 1995-1996 + 753 + + + + + Surveys and regulations + November 1995-February 1996 + 753 + + + + + Talking points and memos + November 1995-April 1996 + 753 + + + + + Teen drug use and pediatrician letters + 1995-1996 + 753 + + + + + + Health and family testimonies + 1995 + 753 + + +

    (House Ways and Means Committee)

    +
    +
    + + + Hearing-Tax provisions for the American family, January 17 + 1995 + 753 + + +

    (House Ways and Means Committee)

    +
    +
    +
    + + + Healthcare + + + + 2 folders + 1992-1994 + 753 + + + + + 2 folders + 1993 + 754 + + + + + 1994 + 754 + + + + + May-June 1995 + 754 + + + + + 1996 + 754 + + + + + African American Prescription for Health Summit + May 1993 + 754 + + + + + AIDS articles + 1993 + 754 + + + + + Breast cancer-mammography and FDA regulations + 1996 + 754 + + + + + Clinton healthcare plan questionnaire + 1994 + 754 + + + + + Cylcotron for cancer patients funding-proton therapy + 1992-1993 + 754 + + + + + Congressional briefing book + 1994 + 754 + + + + + Correspondence + + + + Mental illness + June 1995 + 754 + + + + + Nice + May-July 1995 + 754 + + + + + + Emergency rooms and trauma centers + 1991 + 754 + + + + + General-articles, letters, and statements + 3 folders + 1994-1997 + 754 + + + + + Health concerns-AIDS and breast implants + May-June 1995 + 754 + + + + + Health insurance memos and legislation + 1995-1996 + 754 + + + + + Health Security Act binder + 2 folders + 1993 + 754 + + + + + Health Security Act briefing book + 1993 + 755 + + + + Executive, Plan, and Policy summaries + 755 + + + + + Statements of Support + 755 + + + + + + Issues-abortion, child immunization, breast implants, Medicare, and + Michigan Medical Society + 1990-1995 + 755 + + + + + Issues and funding + 2 folders + 1991-1994 + 755 + + + + + Levin files + + + + 4 folders + 1994 + 755 + + + + + Blue Cross Blue Shield and insurance + 2 folders + 1993-1994 + 755 + + + + + Clinton health bill + 1993-1994 + 755 + + + + + PD-25 + 1994 + 755 + + + + + + Managed care and Stark law + 1996 + 755 + + + + + Managed care and Medicare-Dr. Farb + 1996 + 755 + + + + + Medicaid and Medicare + + + + 1995 + 755 + + + + + 3 folders + 1995 + 756 + + + + + Guide for Congressional Staff + 1993 + 756 + + + + + Funding reduction-budget bill + 2 folders + 1995 + 756 + + + + + Memos, letters, and news articles + 1991 + 756 + + +

    (Kay's file)

    +
    +
    + + + Medicare + 4 folders + 1994-1995 + 756 + + + + + Medicare and other + 1995 + 756 + + + + + Medicare and other health budget initiatives + 4 folders + 1995 + 756 + + + + + Reform-Labor-HHS-Education appropriations + 3 folders + 1995 + 757 + + + + + Solvency of Medicare-statements, memos, and reports, (J. + Parker) + 3 folders + 1992-1995 + 757 + + +
    + + + Michigan Hospital Association briefing book + 1994 + 757 + + + + + Million dollar Medicare challenge + 1995 + 1028 + + +

    (Balanced budget)

    +
    +
    + + + Nursing homes and elderly care-testimonies and reports, (J. + Parker) + 1993-1995 + 757 + + + + + Organ donation and transplant + 1996-1997 + 757 + + + + + Presentations and workshops-Regional Health Council and African + American health + 1993 + 757 + + + + + Reform + + + + 2 folders + 1990-1995 + 757 + + + + + 2 folders + 1994 + 758 + + + + + 1994 + 758 + + + + + 3 folders + 1994-1995 + 758 + + + + + 4 folders + 1994-1995 + 758 + + + + + Clinton plan + 1994-1996 + 758 + + + + + Funding and budget + 3 folders + 1994-1995 + 759 + + + + + General + 2 folders + 1994 + 759 + + + + + General-talking points, articles, and memos + 2 folders + 1996-1997 + 759 + + + + + Healthcare and abortion + 1994-1995 + 759 + + + + + Hospitals-articles, letters, and statements + 1991-1997 + 759 + + + + + Medicaid, teaching, and other + 2 folders + 1995 + 759 + + + + + Medicare reform bill + 1996 + 759 + + + + + Mitchell and Levin legislation + 1994 + 759 + + + + + Mitchell Plan and defense related health care + 2 folders + 1994 + 760 + + + + + Reform and children health legislation + 3 folders + 1994-1995 + 760 + + + + + Substance abuse treatment and children health reform + August-September 1994 + 760 + + + + + + Reports and letters + 4 folders + 1994 + 760 + + + + + Smoking-lung and heart problems + June-July 1995 + 760 + + + + + Trauma bill + 1991-1993 + 760 + + + + + Trauma Care bill + 1991-1992 + 760 + + +
    + + + Substance abuse treatment + + + + Alcohol and drug abuse + 1993-1997 + 760 + + + + + Alcohol, Drug Abuse, and Mental Health Administration (ADAMHA) + programs + 1991-1992 + 760 + + + + + Articles, background information, and memos + 2 folders + 1994 + 760 + + + + + Crack inhibitors + 1989 + 760 + + + + + Drug blocker + 3 folders + 1994-1995 + 761 + + + + + Drug blocker-National Institute on Drug Abuse-notepad + February 1995 + 761 + + + + + Drug treatment, (J. Parker) + 1994 + 763 + + + + + Drug treatment and hospitals, (J. Parker) + 1989-1991 + 761 + + + + + Information and research + 1989 + 761 + + + + + Medication development-Biden legislation + 1990 + 761 + + + + + Medication and National Institute of Drug Abuse + 3 folders + 1994 + 761 + + + + + Office of Substance Abuse Services-block grants + April-June 1991 + 761 + + + + + Pharmaceutical research + 1994-1995 + 761 + + + + + Prevention and treatment + 1991-1994 + 761 + + + + + Prevention and treatment block grants + 1994 + 761 + + + + + Treatment + 1994 + 761 + + + + + + Welfare reform + + + + 4 folders + 1994-1995 + 761 + + + + + 3 folders + October 1994-September 1995 + 762 + + + + + 4 folders + 1995 + 762 + + + + + April-August 1995 + 762 + + + + + 2 folders + June-August + 1995 + 762 + + + + + August 1995 + 762 + + + + + 1995-1996 + 762 + + + + + 4 folders + 1996-1997 + 762 + + + + + Amendments-Levin, (J. Parker) + 1995 + 763 + + + + + Bill amendments + September 1995 + 763 + + + + + Briefing information + 1995 + 763 + + + + + Child Support Tax Equity Act-S.2514 + 1992 + 763 + + + + + Children + 4 folders + 1995 + 763 + + + + + Children and families + 1994 + 763 + + + + + Children and welfare + 1990-1995 + 763 + + + + + Children's services and reform + 1991-1995 + 763 + + + + + Dole-Equal Opportunity Act + + + + 2 folders + 1995 + 763 + + + + + Affirmative action + 1995-1996 + 763 + + + + + Anti-affirmative action + 1995 + 763 + + + + + Anti-affirmative action + June-August 1995 + 763 + + + + + + Dole reform proposal amendments + August 1995 + 763 + + + + + Family + 1995 + 763 + + + + + Families + 1993-1994 + 763 + + + + + Food stamps + September 1995 + 763 + + + + + Food stamps, child health insurance, and college + 1995-1997 + 763 + + + + + Goals, options, and tradeoffs-Congressional Staff Forums + 2 folders + February 13, + 1995 + March 24, + 1995 + 763 + + + + + Housing and labor + 1991-1995 + 764 + + + + + Job placement bonus amendment and immigration policy + September 1995 + 764 + + + + + Legislation in reconciliation bill-letter to Dole + June 1995 + 764 + + + + + Michigan waivers + 1996 + 764 + + + + + Personal Responsibility Act + + + + Act and support for AmeriCorps + 1995 + 764 + + + + + Amendments + January-March 1996 + 764 + + + + + + Welfare and human services + June-July 1995 + 764 + + + + + Workforce Development Act + + + + Amendments and community colleges + 1995-1997 + 764 + + + + + Amendments and memos + 2 folders + 1995 + 764 + + + + + Community colleges + 1995-1996 + 764 + + + + + + Working Americans Opportunity act-Daschle + 1994-1995 + 764 + + + +
    + + + Homeland Security + 1990-1996 + + + + Detroit-Ontario border, (Northern border) + 1990-1992 + 788 + + + + + Homeland Security + 1995 + 788 + + + + + Immigration + + + + Action files + + + + 1992 + 110 + + + + + 1994 + 110 + + + + + 1995 + 110 + + + + + 1996 + 110 + + + + + + Alien terrorists-Simpson amendment to Crime bill + 1991 + 788 + + + + + Arab-American resolution-S. Con. Res. 12 Simon and Hatch + 2 folders + 1991 + 788 + + + + + Immigration bill-articles and memos + 1995-1996 + 788 + + + + + + + Housing + 1991-1996 + + + + Actions files + + + + 1991 + 110 + + + + + 1992 + 110 + + + + + 1993 + 110 + + + + + 1994 + 110 + + + + + 1995 + 110 + + + + + 1996 + 110 + + + + + + + Industry-Manufacturing Task Force + 4 subfolders + 1996 + 796 + + + + + Interior + 1987-1999 + + + + Action files-Indian affairs + + +

    (Native American affairs)

    +
    + + + 1992 + 110 + + + + + 1993 + 110 + + + + + 1994 + 110 + + + + + 1995 + 110 + + + + + 1996 + 110 + + +
    + + + Appropriations FY1997 + 800 + + + + + Ellis Island National Monument Family History Center + 1991-1994 + 800 + + + + + Homestead and Sleeping Bear Dunes + 1996-1998 + 800 + + + + + Keweenaw Historic National Park + 2 folders + 1987-1995 + 801 + + + + + Native Americans + + + + Child welfare act reform + 1995-1996 + 801 + + + + + Chippewa + + + + Bad River-White Pine train blockade + 1996 + 801 + + + + + Saginaw + 1996 + 801 + + + + + Sault Ste Marie + + + + Miscellaneous + 1992-1996 + 801 + + + + + K.I. Sawyer air force base + 1994-1995 + 801 + + + + + + Swan Creek Black River-federal recognition + 1995-1997 + 801 + + + + + + Gaming + + + + Casino sites-impact and public opinion + 1992-1997 + 801 + + + + + Casinos + 1996 + 801 + + + + + Gambling impact study commission, (GAC) + 1995-1996 + 801 + + + + + Gambling impact study commission-legislation, (GAC) + 1995-1996 + 801 + + + + + Greektown casino + 2 folders + 1995-1996 + 801 + + + + + Indian Gaming Act and Crazy Horse progress + 1994 + 1993 + 802 + + + + + Pokagon casino + 1996 + 802 + + + + + Tax + 1995-1996 + 802 + + + + + + Grand Marais Harbor break wall + 2 folders + 1991-1996 + 802 + + + + + Keweenaw Bay community dispute + 2 folders + 1995-1997 + 802 + + + + + Little Traverse Band of Odawa-meeting with Tribal Chairman + 1995 + 802 + + + + + Miscellaneous + 3 folders + 1995-1997 + 802 + + + + + Ottawa-Grand River + 1994 + 802 + + + + + Peltier, Leonard-Oglala Sioux + 1991 + 802 + + + + + Tribe recognition + 1994 + 802 + + + + + Tribe recognition and White House signing + September 1994 + 802 + + + + + Tribal recognition-Little Traverse Bay bands of Odawa and Little River + band of Ottawa + May 1994 + 802 + + + + + + North Country Trail (Michigan) + + + + 2 folders + 1991-1995 + 802 + + +

    (Traverse City office)

    +
    +
    + + + Appropriations law history + 1991-1992 + 803 + + + + + Background and maps + 2 folders + 1992 + 803 + + + + + Carl's file + 1990-1991 + 803 + + + + + Carl Levin visits + 1991-1993 + 803 + + + + + Clips and media + 1991-1993 + 803 + + +

    (News clips of Levin)

    +
    +
    + + + Correspondence + 1991-1994 + 803 + + + + + Legal issues + 1993 + 803 + + + + + Memos and statements + 1991-1993 + 803 + + +
    + + + Pictured Rocks letters, research and internal memos + 2 folders + 1996-1998 + 803 + + + + + Presidio bill + 1994-1995 + 803 + + + + + State and National parks + 1994-1999 + 803 + + +
    + + + Labor + 1982-1997 + + + + Action files + + + + 1992 + 110 + + + + + 1993 + 110 + + + + + 1994 + 110 + + + + + 1995 + 110 + + + + + 1996 + 110 + + + + + + Federal Unemployment Tax Act + December 1991-May 1992 + 812 + + + + + Occupational Safety and Health Administration (OSHA) + + + + Editorials + April-September 1996 + 812 + + + + + Ergonomics rules + 1996-1997 + 812 + + + + + Funding issues + 1996 + 812 + + + + + MiOSHA-St. Clair County Comprehensive Employment and Training + Act + 1990-1996 + 812 + + + + + Reform-S.1423 + November 1995-March 1996 + 812 + + + + + Shwayder Company + October 1996 + 812 + + +

    (Birmingham based company, Michigan)

    +
    +
    +
    + + + Trade Adjustment Assistance (TAA) + + + + TAA Michigan + 2 folders + 1993 + 812 + + + + + TAA program + 1990 + 812 + + + + + + Unemployment Benefit Program-extension of benefits + legislation + 1991-1992 + 813 + + + + + Unemployment compensation + + + + 1993 + 813 + + +

    (Includes Emergency Unemployment Compensation)

    +
    +
    + + + Initiatives + 1982-1991 + 813 + + +
    + + + Unemployment insurance administration + 2 folders + 1991 + 813 + + +

    (Includes Departments of Labor, Health, and Human Services, and Education + Appropriation Bill 1992-Senate)

    +
    +
    +
    + + + Michigan + 1989-1998 + + + + Action files + + + + 1992 + 110 + + + + + 1993 + 110 + + + + + 1994 + 110 + + + + + 1995 + 110 + + + + + 1996 + 110 + + + + + + Theodore Levin building in Detroit + 1994 + 816 + + + + + Lighthouse transfers + + + + 1996 + 816 + + + + + Whitefish Point + 2 folders + 1991-1996 + 816 + + + + + Whitefish Point transfer from Coast Guard, (C. Miller) + 1996 + 816 + + + + + + Michigan Militia + + + + 1995 + 817 + + + + + Army extremists + 1995 + 817 + + + + + Binder + 1995 + 817 + + + + + Lake County + 1995-1996 + 817 + + + + + Possible amendments and memos + 1995 + 817 + + + + + Memos + 1995 + 817 + + + + + + Southeast Michigan greenways + 1992-1994 + 817 + + + + + Tiger Stadium + 1989-1994 + 817 + + + + + Traverse City land transfer, (Coast Guard) + 1994-1998 + 817 + + + + + + Press + 1979-2002 + + + + Congressional Record excerpts + + + + 1992 + + + + January-March + 110 + + + + + April-June + 110 + + + + + July-September + 110 + + + + + October-December + 110 + + + + + Indexes + 110 + + + + + + 1995 + + + + January-March + 110 + + + + + April-June + 110 + + + + + July-September + 110 + + + + + Index + 110 + + + + + + + Interview -- Directorship, (The SEC is a Roadblock) + 1992 + 867 + + + + + Magazine-Upside, (Cutting the Entrepreneur's Lifeline) + November 1993 + 867 + + + + + Michigan Press Reading Service (MPRS) articles + + + + 1991 + + + + January + 867 + + + + + February + 867 + + + + + March + 867 + + + + + April + 867 + + + + + May + 867 + + + + + June + 867 + + + + + July + 867 + + + + + August + 867 + + + + + September + 867 + + + + + October + 867 + + + + + November + 867 + + + + + December + 867 + + + + + + 1992 + + + + January + 867 + + + + + February + 867 + + + + + April + 867 + + + + + May + 867 + + + + + September + 867 + + + + + October + 867 + + + + + November + 867 + + + + + + 1993 + + + + January + 868 + + + + + February + 868 + + + + + March + 868 + + + + + April + 868 + + + + + May + 868 + + + + + June + 868 + + + + + July + 868 + + + + + August + 868 + + + + + September + 868 + + + + + October + 868 + + + + + November + 868 + + + + + December + 868 + + + + + + 1994 + + + + January + 868 + + + + + February + 868 + + + + + March + 868 + + + + + April + 868 + + + + + May + 868 + + + + + June + 869 + + + + + July + 869 + + + + + August + 869 + + + + + September + 2 folders + 869 + + + + + October + 869 + + + + + November + 869 + + + + + December + 869 + + + + + + 1995 + + + + January + 869 + + + + + February + 869 + + + + + March + 869 + + + + + April + 870 + + + + + May + 870 + + + + + June + 2 folders + 870 + + + + + July + 870 + + + + + August + 870 + + + + + October-November + 870 + + + + + November + 870 + + + + + December + 870 + + + + + + 1996 + + + + January + 870 + + + + + February + 870 + + + + + March + 870 + + + + + April + 870 + + + + + May + 871 + + + + + June + 2 folders + 871 + + + + + July + 2 folders + 871 + + + + + August + 3 folders + 871 + + + + + September + 2 folders + 871 + + + + + October + 2 folders + 871 + + + + + November + 872 + + + + + December + 872 + + + + + + + National Journal's Congress Daily-publication + June-July 1995 + 872 + + + + + News articles + 1991-1994 + 872 + + + + + News articles-National + + + + 1991 + 872 + + + + + 2 folders + 1992 + 872 + + + + + 1993 + 872 + + + + + 2 folders + 1994 + 872 + + + + + 1995 + 872 + + + + + + News articles abstract reports + + + + 1991 + 111 + + + + + 1993 + 111 + + + + + 1995 + 111 + + + + + 1995 + 111 + + + + + + News clipping index report + 1991 + 111 + + + + + Office files + + + + Michigan media list by counties + 1994 + 872 + + +

    (Gale Directory of Publications and Broadcast Media)

    +
    +
    + + + Michigan print media list + 1990s + 873 + + + + + Michigan radio list + 1994 + 873 + + + + + Michigan TV lists + 1996 + 873 + + + + + Office action plans + January-April 1996 + 873 + + +
    + + + Office subject files + + + + Accomplishments (T. Andringa) + + + + 3 folders + 1979-1990 + 873 + + + + + 1995 + 873 + + + + + + Agriculture + 1991 + 873 + + + + + Animals + 1991 + 873 + + + + + Arms control + 1991 + 873 + + + + + Arts + 1991 + 873 + + + + + Autos + 1989-1994 + 873 + + + + + Banking + 1991 + 873 + + + + + Beaver Island, (Michigan) + August-September 1991 + 873 + + + + + Bosnia + + + + June-August 1992 + 873 + + + + + Alija Lujinovic + August-September 1992 + 873 + + +

    (Detention camp; Includes 3 photographs of a man)

    +
    +
    +
    + + + Budget + + + + 2 folders + 1991 + 873 + + + + + 1993 + 873 + + + + + 1994 + 873 + + + + + FYs + 1990-1994 + 873 + + + + + + Cable TV bill and veto override + October 1992 + 873 + + + + + Campaign 1990-follow up + 1991-1992 + 873 + + + + + Campaign-Michigan Senate race + 1994 + 873 + + + + + Campaign and election + + + + Campaign 1996 opinion piece press clips + 1995-1996 + 873 + + + + + Election day clips + November 1996 + 873 + + + + + Levin campaign profile and endorsement clips + 1996 + 873 + + + + + Michigan Democratic Convention and National Democratic + Convention + 1996 + 874 + + + + + Michigan GOP Convention press clips + August-September 1996 + 874 + + + + + Post-election analysis press clips + 1996 + 874 + + + + + Senate race polls + 1996 + 874 + + + + + + CEO runaway pay + + + + Corporate Pay Responsibility Act and testimonies + 1991 + 874 + + + + + Hearings + + + + The SEC and the Issue of Runaway Executive Pay, (Subcom + OGM) + May 15, + 1991 + 874 + + + + + Testimonies, (Subcom OGM) + May 15, + 1991 + 874 + + + + + Stealth Compensation of Corporate Executives Federal Treatment of + Stock Options, (Subcom OGM) + January 31, + 1992 + 874 + + + + + + General + 1991-1993 + 874 + + + + + Levin against + 1991-1994 + 874 + + + + + + Child abuse + 1992 + 874 + + +

    (Includes GAO report)

    +
    +
    + + + Civil Rights (T. Andringa) + + + + 1991 + 874 + + + + + 1995-1996 + 874 + + + + + Disabled/ADA + 1994 + 1997 + 874 + + + + + Flag + 1995-1996 + 874 + + + + + Line-item veto + 1995-1997 + 874 + + + + + Gay rights + 1996 + 874 + + + + + Religion + 1992-1995 + 874 + + + + + + Clinton inauguration + January 1993 + 874 + + + + + Commemoratives + 1991 + 874 + + + + + Communications + 1991 + 874 + + + + + Conference calls + 1989-1992 + 874 + + + + + Confirmations/nominations + 1991 + 874 + + + + + Congress + 1991 + 874 + + + + + Congressional Record + 1991 + + + + January-March + 874 + + + + + April-June + 874 + + + + + July-September + 875 + + + + + October-December + 875 + + + + + Index + 875 + + + + + + Consumer + + + + Sweepstakes, (PSI) + 2 folders + 1998-1999 + 875 + + + + + Tort reform + 1995-1996 + 875 + + + + + + Consumer Affairs + 1991 + 875 + + + + + Crime (T. Andringa) + + + + 1990-1994 + 875 + + + + + 1991 + 875 + + + + + 1993-1996 + 875 + + + + + 2 folders + 1996 + 875 + + + + + Crime bill + 1994 + 875 + + + + + Drugs + 1996-1997 + 875 + + + + + Drugs, education, and prevention + 2 folders + 1994-1997 + 875 + + + + + Drugs and Violence: Criminal Justice System in Crisis, (Detroit; + PSI) + March 1990 + 875 + + + + + Drug treatment + 1996-1997 + 875 + + + + + Funding + 1996 + 876 + + + + + Gun control + 1993-1997 + 876 + + + + + Gun control -- National Rifle Association (NRA) + 1995 + 876 + + + + + Impact of drugs on criminal justice system, (PSI) + March 19, + 1990 + 876 + + + + + Prisons + 1995-1997 + 876 + + + + + Sentencing and death penalty + 1995-1999 + 876 + + + + + Terrorism + 1995-1996 + 876 + + + + + Terrorism -- Michigan Militia + 1995-1996 + 876 + + + + + Michigan Militia + 1995 + 876 + + + + + + Darenberger, Dave + July 1990 + 876 + + +

    (Senator)

    +
    +
    + + + Defense + + + + Levin record + 1995-1997 + 876 + + + + + 1991 + 876 + + + + + FY1995 authorization + 876 + + + + + Authorization + 1996 + 876 + + + + + Burden sharing + 1989-1995 + 876 + + + + + CNA speech + April 1992 + 876 + + + + + Finance center relocation + 1992-1993 + 876 + + + + + General non-Michigan + 1993 + 876 + + + + + General non-Michigan + 1994 + 876 + + + + + M1-A1 tank + 1991-1992 + 876 + + + + + Michigan + + + + 1991-1992 + 876 + + + + + 1993-1994 + 876 + + + + + Defense Finance and Accounting Services (DFAS) in + Saginaw + 1993 + 876 + + + + + + National Guard and Civil Air Patrol + 1991-1997 + 877 + + + + + National missile defense + 1998-1999 + 877 + + + + + Non-Michigan + + + + 1991 + 877 + + + + + 1992 + 877 + + + + + + Personnel and pay + 1996-1999 + 877 + + + + + United Nations (UN) + 1994-1996 + 877 + + + + + Weapons and conventional forces, (Subcom Conventional Forces + hearings) + May 1994 + 877 + + + + + Weapons -- chemical and biological + 1995-1997 + 877 + + +

    (Includes Chemical Weapons Convention)

    +
    +
    + + + Weapons -- strategic and nuclear + 1994-1997 + 877 + + +
    + + + Detroit Free Press + 1991-1992 + 877 + + + + + Disasters + 1990-1992 + 877 + + + + + District of Columbia (D.C.) + + + + District of Columbia + 1991 + 877 + + + + + D.C. + 1995-1996 + 877 + + + + + + Drugs + 1989-1992 + 877 + + + + + Economy + + + + Economy + 1991 + 877 + + + + + Jobs + 1994-1997 + 877 + + + + + Michigan + 1996 + 877 + + + + + Statistics + 1993-1996 + 877 + + + + + + Editorials pro-Levin + 1991-1992 + 877 + + + + + Education + + + + 1990-1992 + 877 + + + + + 1991 + 878 + + + + + 104th Congress + 1995-1996 + 878 + + + + + 3 folders + 1996 + 878 + + + + + Clips + 1993 + 878 + + + + + Clips + 1994 + 878 + + + + + Clips + 1995 + 878 + + + + + Clips + 1996 + 878 + + + + + Education general + 2 folders + 1993-1997 + 878 + + + + + Elementary and secondary goals + 1993-1997 + 878 + + + + + Elementary and secondary school to work + 1994-1997 + 878 + + + + + Internet technology event, (Levin on-line chat with students and + technology grants in Michigan) + 1996 + 878 + + + + + Levin statements + 1996 + 878 + + + + + Memos and press releases + 2 folders + 1996 + 878 + + + + + + Energy and natural resources + + + + Air -- West Michigan ozone + 2 folders + 1994-1997 + 879 + + + + + Conservation + 1994 + 1992 + 879 + + + + + Corporate Average Fuel Economy (CAFE) air and gas + 1996-1997 + 879 + + + + + Energy + 1991 + 879 + + + + + Environment + + + + 1990-1992 + 879 + + + + + 1991 + 879 + + + + + General X2 + 1993-1997 + 879 + + + + + + Environmental Protection Agency (EPA) + 1993-1997 + 879 + + + + + Great Lakes -- exotic species + 1994-1997 + 879 + + + + + Hazardous waste + 1994-1997 + 879 + + + + + Land use + 1995-1997 + 879 + + + + + Land use -- solid waste management + 1994-1997 + 879 + + + + + Radiation exposure + 1994 + 879 + + + + + Water + 1994-1997 + 879 + + + + + Water -- Great Lakes + 2 folders + 1993-1997 + 879 + + + + + Water -- Great Lakes and Zebra Mussels + 1994-1995 + 880 + + + + + + Ethics (T. Andringa) + + + + Independent Counsel-clips + 1993-1996 + 880 + + + + + Independent Counsel-Starr + 2 folders + 1994-1996 + 880 + + + + + Independent Counsel-travel office + 1995-1996 + 880 + + + + + Independent Counsel-Whitewater + 2 folders + 1994-1996 + 880 + + + + + Independent Counsel Law + 1993-1996 + 880 + + + + + Lobby disclosure and archives + 1987-1997 + 880 + + + + + Lobby reform + 1993-1994 + 880 + + + + + Lobby reform + 3 folders + 1995-1996 + 880 + + + + + Lobby reform clips + 2 folders + 1994-1997 + 880 + + + + + + Family medical leave bill + September 1992 + 881 + + + + + Federal government + + + + Federal Employees + 1991 + 881 + + + + + Federal government employees + 1993-1994 + 881 + + + + + Inspector General + 1995 + 881 + + + + + Ethics + 1993 + 881 + + + + + Reform + 1993-1997 + 881 + + + + + Regulation + 1995-1997 + 881 + + + + + Regulatory reform 104th Congress + 2 folders + 1995-1996 + 881 + + + + + Regulatory reform + 1997-1998 + 881 + + + + + Regulation, moratorium + 1994-1995 + 881 + + + + + Nominations + 1993-1997 + 881 + + + + + + Federal unemployment tax payments-Michigan + January 1992 + 881 + + + + + Financial + + + + General + 1990-1995 + 881 + + + + + Securities + 1994 + 881 + + + + + + Foreign Aid -- General + 1993 + 881 + + + + + Foreign Policy + + + + Central America + 1991 + 881 + + + + + General + 1991 + 881 + + + + + Human Rights + 1991 + 881 + + + + + Iraq Kuwait + 1991 + 881 + + + + + Middle East + 1991 + 881 + + + + + South Africa + 1991 + 881 + + + + + USSR-Baltics + 1991 + 881 + + + + + + Foreign Tax Equity Act + 1990 + 882 + + +

    (Levin Bill)

    +
    +
    + + + Friends official list + 1993 + 882 + + + + + Gas prices-Iraq + August 1990 + 882 + + +

    (Troops to Saudi Arabia)

    +
    +
    + + + Government Reform + 1991 + 882 + + + + + Governmental Affairs Committee (GAC) + + + + Permanent Subcommittee on Investigations hearing on Informational + Warfare, (Levin statement before PSI on DOD's Vulnerability to Information + Warfare; PSI) + May 22, + 1996 + 882 + + + + + Subcommittee on Oversight of Government Management (Subcom + OGM) + + + + GAO report on defense inventory + February 1991 + 882 + + + + + Gemstone scam, (International Consumer Fraud: Can Consumers be + Protected?) + October 1993 + 882 + + + + + GIFTS Rule, (Lautenberg bill, S.885 A Bill to Modify Congressional + Restrictions on Gifts) + July 19, + 1993 + 882 + + + + + Hearings + + + + Wasteful Ordering Practices in the Department of Defense Supply + System + April 23, + 1991 + 882 + + + + + Oversight of the U.S. Trade Policy with Japan + May 8, + 1991 + 882 + + + + + Lax Federal Enforcement of the Antidumping and Countervailing + Duty Program + June 13, + 1991 + 882 + + + + + Foreign lobbying + June 20, + 1991 + 882 + + + + + Domestic Lobbying Registration + July 16, + 1991 + 882 + + + + + Executive Branch Lobbying Registration + September 25, + 1991 + 882 + + + + + Buy Green + November 8, + 1991 + 882 + + + + + School nutrition hearing + November 14, + 1991 + 882 + + + + + Department of Defense inventories Overstocks + December 5, + 1991 + 882 + + + + + DOD Inventories + March 11, + 1992 + 882 + + + + + UN Peacekeeping + June 9, + 1992 + 882 + + + + + Oversight of the Defense Commissary Agency + August 6, + 1992 + 882 + + + + + + Jet Propulsion Labs and GAO report + April-May 1994 + 882 + + + + + Lobbying Disclosure Act-S.2279 + March 1992 + 882 + + + + + Lobbying Disclosure Act -- S.349, (Levin sponsor) + 1993 + 882 + + + + + Lobbying disclosure general info + 1991-1992 + 882 + + + + + Lobbying disclosure -- general information + 1993 + 882 + + + + + Lobbying Restriction bill + 1988-1989 + 882 + + + + + Report on Federal Research Labs + July 8, + 1992 + 882 + + + + + Report on Great Lakes Pollution + October 1991 + 882 + + + + + Various stuff + 1991-1996 + 882 + + + + + Walsh report-Iran Contra (Subcom OGM) + 1994 + 882 + + + + + + + Great Lakes pollution + 2 folders + 1990-1992 + 882 + + + + + Gun control + 1991 + 882 + + + + + Headlines + + + + Good + 1995-1996 + 882 + + + + + Subjects + 1990-1996 + 883 + + + + + + Highlights and Lowlights + 1993-1994 + 883 + + +

    (Publication-Editor Evelyn Davis)

    +
    +
    + + + Human interest stories, (Levin involved) + 1990-1996 + 883 + + + + + Iacocca, Lee + June 1992 + 883 + + + + + Inauguration + 1993 + 883 + + + + + Inside Michigan Politics newsletter + November 1992 + 883 + + +

    (Ballenger)

    +
    +
    + + + Independent Counsel + + + + Brown + 1993-1994 + 883 + + + + + Oversight of Government Management Subcommittee, (Subcom + OGM) + August 11, + 1992 + 883 + + + + + + Indians, (Native Americans) + 1990-1991 + 883 + + + + + Iran-Contra + 1993-1994 + 883 + + + + + Iraq + + + + 2 folders + 1990-1993 + 883 + + + + + Kurds + 1991 + 883 + + + + + Newsmaker Sunday + December 9, + 1990 + 883 + + + + + + JFK assassination + May 1992 + 883 + + + + + Dr. Kevorkian and Physician Assisted Suicide + December 1993 + 883 + + + + + Keweenaw Park, (Levin bill) + 1991-1992 + 883 + + + + + KI Sawyer + 1988-1993 + 883 + + + + + Kuwait -- end boycott of U.S. firms doing business with + Israel + 1991 + 883 + + + + + Labor + + + + Detroit newspaper strike + 1995 + 883 + + + + + Family leave + 1996-1997 + 883 + + + + + General + 1994-1995 + 883 + + + + + Joint Operations Agreement (JOA) Detroit + 1994 + 883 + + + + + Minimum wage + 2 folders + 1995-1996 + 883 + + + + + Retraining + 1995 + 883 + + + + + Safety and health + 1995-1996 + 883 + + + + + Unemployment compensation + 1990-1994 + 883 + + + + + + Letters to the editor + + + + Anti-CL + 1990-1992 + 883 + + + + + Levin authored + 1990-1992 + 883 + + + + + Michigan + 1990-1995 + 883 + + + + + Neutral + 1993-1994 + 883 + + + + + + Levin + + + + Clips with photographs of Carl Levin + 1992-1994 + 884 + + + + + Daniel + 1991-1992 + 884 + + + + + Joe + 1992 + 884 + + + + + Sander + 1991-1993 + 884 + + + + + + Levin personal + + + + Bio + 1991-1996 + 884 + + + + + Financial + 2 folders + 1986-1998 + 884 + + + + + Profile + 1996-1997 + 884 + + + + + Quotes + 1990-1994 + 884 + + + + + Ratings + 1987-1996 + 884 + + + + + Staff + 1993-1997 + 884 + + + + + Taxes and ethics + 1987-1993 + 884 + + + + + Trips + 1991-1997 + 884 + + + + + + Levin remarks-obits and tributes + 1996 + 884 + + + + + Low Income Home Energy Assistance Program (LIHEAP) + 1995-1997 + 884 + + + + + M1A1 Tank-Quayle v Levin + August 1992 + 884 + + + + + Mail order tax bill, (Small Business Committee (SBC) hearing) + Interstate Sales Tax Collection on April 13, 1994) + 1993-1994 + 884 + + + + + Medicare + 1995 + 884 + + + + + Memos + 1992-1993 + 884 + + + + + Michigan Economic Development Corp local + 1992 + 884 + + + + + Miscellaneous + + + + 1991 + 884 + + + + + 1992 + 884 + + + + + Press clippings + 1993 + 884 + + + + + Press office + 1994 + 884 + + + + + + Moynihan social security plan + 1991 + 884 + + + + + Muer disappearance of sailboat at sea, (Detroit Restauranteur + disappeared off Florida coast -- Chuck Muer) + March 1993 + 884 + + + + + Muskegon Teledyne Project + 1991-1992 + 884 + + + + + NATO + 1992-1994 + 884 + + + + + Nomination clips and background information -- Leon Panetta + 1993 + 884 + + + + + Nominations-judiciary + + + + 1993-1997 + 884 + + + + + + North Country Trail + 1991-1992 + 884 + + + + + Pensions background information + 1995 + 885 + + + + + Phoners + 1992-1993 + 885 + + + + + Political + February 1995 + 885 + + + + + Politics + + + + Clinton + 2 folders + 1993-1997 + 885 + + + + + Clinton impeachment + 2 folders + 1999 + 885 + + + + + Clinton State of the Union + 1996 + 885 + + + + + Clinton State of the Union + 1997 + 885 + + + + + Democrats agenda + 1995-1996 + 885 + + + + + Democrats Michigan Democratic Party (MDP) + 1994-1996 + 885 + + + + + GOP attack + 1995-1996 + 885 + + + + + GOP Contract with America + 2 folders + 1995 + 885 + + + + + GOP Bob Dole + 1996 + 885 + + + + + GOP Newt Gingrich + 1994-1996 + 885 + + + + + Levin miscellaneous + 2 folders + 1991-1996 + 885 + + + + + Michigan Democrats + 1994-1997 + 885 + + + + + Michigan politics + 1994-1997 + 885 + + + + + Michigan primary and New Hampshire primary + 2 folders + 1999-2002 + 886 + + + + + Polls + 1994 + 886 + + + + + Polls + 1995 + 886 + + + + + Polls + 1996 + 886 + + + + + Polls non-campaign 104th + 1991-1996 + 886 + + + + + Senate Leadership + 1997 + 886 + + +

    (Includes GAC and SASC Committee assignment and issue agenda)

    +
    +
    + + + Skupin for Senate + 2001 + 886 + + + + + State of the Union + 1993-1994 + 886 + + + + + State of the Union + 1995 + 886 + + +
    + + + Polls-Levin commissioned on taxes + 1991-1992 + 886 + + + + + Postal + + + + Employees + 1994-1997 + 886 + + + + + Stamps + 1986-1997 + 886 + + + + + + Prescription drug background information + 1994 + 886 + + + + + Presidential race and budget deficit + June 3-4, 1993 + 886 + + + + + Press + + + + Cable show pilot + 1996 + 886 + + + + + Columns 103rd Congress, (Column by Carl Levin) + 1993-1994 + 886 + + + + + Columns 104th Congress, (Column by Carl Levin) + 1995-1996 + 886 + + + + + Columns and materials, (Column by Carl Levin) + 1995-1996 + 887 + + + + + Editorial board history + 1991-1997 + 887 + + + + + Editorial board prep + 1993 + 887 + + + + + Editorial letters pro-Carl Levin + 1988-1995 + 887 + + + + + Editorials favorable + 1991-1994 + 887 + + + + + Editorials and letters anti-Carl Levin + 1993-1994 + 887 + + + + + Editorials anti-Carl Levin, (Mostly 1993-1995) + 1993-2001 + 887 + + + + + Editorial letters by Carl Levin + 1993-1994 + 887 + + + + + Lists + 1991-1997 + 887 + + + + + Michigan lists + 1987 + 1995 + 887 + + + + + Michigan radio + 1992-1997 + 887 + + + + + Michigan TV, 1986, 1993-1996 (Levin TV appearances) + 1986-1996 + 887 + + + + + Press packet + 1987-1993 + 887 + + + + + PR tools + 1996-1997 + 887 + + + + + PR memos + 1994-1997 + 887 + + + + + Speeches materials + 1981-1997 + 887 + + + + + + Prisoners of War-Missing in Action, (POW/MIA) + 1990-1991 + 887 + + + + + Public lands + 1992-1996 + 887 + + + + + Public works + 1994-1997 + 887 + + +

    (Including the FDR memorial)

    +
    +
    + + + Raisin Bran and WIC, Kellogg's battle + 1991-1992 + 888 + + + + + Ratings + 1988-1992 + 888 + + + + + Redistricting in Michigan + 1991-1992 + 888 + + + + + Regulatory reform and state data on development of safety + standards + 1994 + 888 + + + + + Savings and loans + + + + Campaign contributions + 1990 + 888 + + + + + Crisis + 1990 + 888 + + + + + Sunbelt bill + 1990 + 888 + + +

    (Levin, Kasten, Cohen)

    +
    +
    +
    + + + Schuette post-election + 1990-1994 + 888 + + + + + Secchia + 1989-1992 + 888 + + + + + Selfridge Air National Guard + 1987-1993 + 888 + + + + + Senate Race + 1994 + 888 + + + + + Seniors + 1993-1997 + 888 + + + + + Skeds + + + + Appearing in print + 1988-1989 + 888 + + + + + 1993-1994 + 888 + + + + + + Small Business subcommittee-Japan auto parts trade + June 20, 1991 + 888 + + + + + Small business technology + 1991-1992 + 888 + + + + + Sniders political columns, (Newsletter and columns by Carl + Levin) + December 1992 + 888 + + + + + Social security + 1989-1993 + 888 + + + + + Social services + + + + Children + 1993-1997 + 888 + + + + + Children and adoption + 1994-1998 + 888 + + + + + Homeless + 1994 + 888 + + + + + Nutrition + 1995 + 1999 + 888 + + + + + Volunteerism + 1995-1997 + 888 + + + + + Welfare + 1995-1996 + 888 + + + + + + Speech phrases and materials + 1989-1995 + 888 + + + + + Sports + 1988-1993 + 888 + + + + + Staff -- Carl Levin + 1989-1993 + 888 + + + + + Stamps + 1986-1995 + 888 + + + + + State, federal, and local relations + + + + Hearing-Impact of Unfunded Federal Mandates on State and Local + Government, (GAC) + November 3, + 1993 + 889 + + + + + Unfunded mandates + 2 folders + 1995 + 889 + + + + + + Taxes + + + + 1993 + 889 + + + + + 2 folders + 1996 + 889 + + + + + Earned income tax credit + 1997 + 889 + + + + + Energy + 1993 + 889 + + + + + Flat tax reform + September 1996 + 889 + + + + + IRS + 1995 + 889 + + + + + Tax Relief bill + 1991 + 889 + + +

    (Levin)

    +
    +
    + + + Tax bill + 1992 + 889 + + +
    + + + Technology + + + + Focus: HOPE + 2 folders + 1993-1997 + 889 + + + + + NASA budget and procurement + 1993-1997 + 889 + + + + + Research + 1995-1997 + 889 + + + + + + Term limits + 1990-1992 + 889 + + + + + Thomas and SCOTUS -- Levin statements, (Nomination of Clarence + Thomas) + 1991 + 889 + + + + + Toxic waste + 1991 + 889 + + + + + Trade + + + + 1991-1997 + 889 + + + + + June-October 1992 + 890 + + + + + Apple dumping + 1998-1999 + 890 + + + + + Auto + 1994-1998 + 890 + + + + + Auto parts + 1993-1996 + 890 + + + + + GATT + 1994 + 890 + + + + + General + 1987-1992 + 890 + + + + + Japan + 1995-1996 + 890 + + + + + Japan trade event + January 1998 + 890 + + + + + NAFTA + 1989-1994 + 890 + + + + + NAFTA + 2 folders + 1993 + 890 + + + + + NAFTA + 1993-1996 + 890 + + + + + NAFTA hearings, (Subcom OGM) + 2 folders + March-April 1993 + 890 + + + + + Sanctions + 1995 + 890 + + + + + Super 301 + 1998-1999 + 891 + + + + + Unfair practices + 2 folders + 1995-1996 + 891 + + + + + + Transportation + + + + Air + 1994-1996 + 891 + + + + + Air-FAA, (Subcom OGM) + 1995-1996 + 891 + + + + + Highways, (C. Miller) + 1996-1997 + 891 + + + + + Highway funding ISTEA + 1998 + 2001 + 891 + + + + + Maritime + 1994 + 1997 + 891 + + +

    (Includes OGM hearing information October 12, 1994)

    +
    +
    + + + Mass transit + 1994-1996 + 891 + + + + + Transportation highways + 1991-1993 + 891 + + + + + Highways + 2 folders + 1995-1997 + 891 + + +
    + + + Trips + + + + Quebec + May 3-5, 1991 + 891 + + +

    (Great Lakes)

    +
    +
    + + + Germany and Belgium + April 1-4, 1991 + 891 + + + + + Turkey, Iraq, Kuwait + April 26, + 1991 + 891 + + + + + Poland and Hungary + August 1991 + 891 + + + + + USSR + January 14, + 1992 + 891 + + + + + China, Pakistan, Middle East, Somalia + December 1992 + 891 + + +
    + + + Unemployment benefits + 1991 + 891 + + + + + Upjohn/Ansaid + October 1992 + 891 + + + + + Urban aid + 1993-1994 + 891 + + +

    (Includes 21st Annual Congressional Black Caucus Legislative weekend Levin and + Riegle meeting invitation)

    +
    +
    + + + USSR-former + 1991-1992 + 891 + + + + + Vanity license plates + May 15, 1991 + 891 + + + + + Veterans -- POW and MIA, (W. Blacklow) + 1989-1996 + 891 + + + + + Veterans + 1993-1996 + 891 + + + + + Votes, (Levin and Riegle votes) + 1988-1995 + 891 + + + + + Welfare reform + 3 folders + 1994-1996 + 892 + + + + + Welfare reform-Levin + 1995-1996 + 892 + + + + + Wild and Scenic Rivers bill + 1991-1992 + 892 + + + + + Wilderness bill + 1991 + 892 + + +
    + + + Press releases + + + + 2 folders + 1991 + 892 + + + + + 2 folders + 1993 + 892 + + + + + 3 folders + 1994 + 892 + + + + + 1995 + 1-2 of 4 folders + 892 + + + + + 1995 + 3-4 of 4 folders + 893 + + + + + 4 folders + 1996 + 893 + + + + + July 3, 1996 + August 2, + 1994 + 893 + + + + + + Radio press conferences + 1991-1994 + 866 + + + + + Radio spots + + + + 19 folders + 1995 + 893 + + + + + 21 folders + 1996 + 893 + + + + + + Radio tour information and talking points + July 1995-March 1996 + 893 + + +
    + + + Speeches + 1996-1996 + + + + Detroit Economic Club speech background + March 11, 1996 + 939 + + +

    (Jobs and trade)

    +
    +
    + + + Miscellaneous talking points + 1996 + 939 + + + + + Economic Club speech final and memo briefing + April 1, 1996 + 1114 + + + + + Health speech notes + 1996 + 1114 + + +
    + + + Trade + 1982-1999 + + + + Action files + + + + 1993 + 111 + + + + + 1994 + 111 + + + + + 1995 + 111 + + + + + 1996 + 111 + + + + + + Aid for Trade Act + 1990-1992 + 981 + + + + + Auto + + + + 105th Congress + 1994-1997 + 981 + + + + + Auto Caucus-CEO lunch + April 25, + 1996 + 981 + + + + + Automotive strategy + 1995 + 981 + + + + + Automotive timeline proposal, Fall + 1996 + 981 + + + + + Big 3 sales to Mexico claims + 1993-1994 + 981 + + + + + Bill-S.2145 + 1991-1992 + 981 + + + + + Comparative auto pricing + 1996-1997 + 981 + + + + + Industry + 3 subfolders + 1991-1992 + 981 + + + + + Industry breakfast, (Auto Parts Task Force) + September 6, + 1996 + 981 + + + + + Michigan Delegation auto meeting with Administration + 2 folders + 1993 + 981 + + + + + Minivan dumping + 1991-1992 + 981 + + + + + Multi-Purpose Vehicle (MPV) + + + + 3 folders + 1992-1994 + 981 + + + + + Briefing book + 3 folders + 1992 + 981 + + + + + Classification + 1989-1992 + 982 + + + + + Classification letter + 1992-1994 + 982 + + + + + + Parts companies + March-April 1995 + 982 + + + + + Parts meeting-September 29 + 1997 + 982 + + + + + Quality + 1992 + 982 + + + + + Specialized certified garages + February 1997 + 982 + + + + + Voluntary Export Restraint (VER) + 2 folders + 1991-1993 + 982 + + + + + + Certification idea + 1995 + 982 + + + + + China trade + 1992-1993 + 982 + + +

    (human rights issues)

    +
    +
    + + + Coalition of Coalitions for strengthening trade laws + 1991 + 982 + + + + + Conference call + undated + 982 + + + + + Correspondence + + + + 11 folders + 1995 + 982 + + +

    (No January)

    +
    +
    + + + 9 folders + 1996 + 982 + + +

    (No March, June, or August)

    +
    +
    +
    + + + Customs Modernization Act + 1993 + 982 + + + + + Dowagiac-Modine + 1993 + 982 + + + + + Duty drawback, (A. Pascale) + 1995-1996 + 982 + + + + + Engineers -- manufacturing trends + 1993 + 982 + + + + + Foreign investment + + + + Government procurement practices for Europe review + February 1992 + 982 + + + + + McDonald Douglas Corporation-Taiwan + November 1991-February 1992 + 982 + + + + + United States + 1987-1992 + 982 + + + + + + Foreign Trade Zone (FTZ) + 1990-1992 + 982 + + + + + Foreign Trade Zone (FTZ) letter-Nissan + 1992-1993 + 982 + + + + + Fraunhofer and University of Michigan + January-April 1994 + 982 + + + + + Free Trade Agreement (FTA) + + + + U.S.-Canada implementation + 1989-1992 + 983 + + + + + U.S.-Mexico + 1990-1991 + 983 + + + + + + GATT and FTA-fast track + 1991 + 983 + + + + + General Agreement on Tariffs and Trade (GATT) + + + + 2 folders + 1994 + 983 + + + + + October-November 1994 + 983 + + + + + Eastern Europe and GATT + 1994 + 983 + + + + + General + 1996-1998 + 983 + + + + + Memos and letters + 3 folders + 1994 + 983 + + + + + Patent issue + 1995 + 984 + + + + + Uruguay round + + + + 2 folders + 1990-1992 + 984 + + + + + Background + 1989-1992 + 984 + + + + + Hearing-U.S. Position in GATT Negotiations Affecting American + Manufacturing Jobs, (Subcom OGM) + September 26, + 1990 + 984 + + + + + + Uruguay round-fast track + 1990-1994 + 984 + + + + + + Hearings + + + + Manufacturing + 6 folders + 1992 + 984 + + + + + Trade Agreement Compliance Act (TACA) + 1990-1991 + 984 + + + + + Trade circumvention + 1992 + 984 + + +

    (Possible hearing)

    +
    +
    +
    + + + Hearings-financial and trade + + + + U.S. Japan Auto Parts + June 20, 1991 + 984 + + +

    (SBC Subcommittee Innovation, Technology, and Productivity)

    +
    +
    + + + Japanese Trade Concessions + January 23, + 1992 + 984 + + +

    (Committee on Finance)

    +
    +
    + + + Trade Policy and Legislation + July 22, 1992 + 984 + + +

    (Committee on Finance)

    +
    +
    + + + Background + 1991 + 984 + + + + + Notes and memos + May-June 1991 + 984 + + +
    + + + Importers lobby + 1993 + 985 + + + + + Iraq embargo + 1990-1992 + 985 + + + + + Japan + + + + 1991 + 985 + + + + + Action plan + 1994 + 985 + + + + + Auto + + + + Ambassador Mondale + June 1994 + 985 + + + + + Auto monitoring office, (U.S.-Japan Automotive Agreement) + 1995-1996 + 985 + + + + + Auto parts + + + + 1990-1993 + 985 + + + + + 1991-1992 + 985 + + + + + 2 folders + 1992-1993 + 985 + + + + + Auto parts and Jeff Garten + 1993-1994 + 985 + + + + + Content numbers, (NAFTA) + September 1995 + 985 + + + + + Critical parts list + June 1995 + 985 + + + + + Meeting + January 1994 + 985 + + + + + Office memos and letters + 1993 + 985 + + + + + Pricing + 1994-1996 + 985 + + + + + Second auto and parts letter + 1993-1995 + 985 + + + + + + Auto Parts Task Force chronology Northeast-Midwest + Institute + 1993-1995 + 985 + + + + + Auto Parts Task Force Kaptur and Specter + June-July 1994 + 985 + + + + + Auto trade relations-reference quotes and statements + 2 folders + 1995 + 985 + + + + + Early meetings + 1993 + 985 + + + + + Honda audit + 1991-1992 + 985 + + + + + Letters + 1993-1995 + 985 + + + + + Lobbying Japan Auto Parts Industries Association (JAPIA) + May 1994 + 985 + + + + + Section 301 auto parts investigations + December 1994 + 985 + + + + + Shaken Inspection translation + April 1993 + 985 + + + + + U.S. Japan Agreement on Auto and Auto Parts + + + + Framework final and talking points + 1993-1995 + 1109 + + + + + Carl's auto agreement material + 1995 + 1109 + + + + + Final signed agreement + September 6, 1995 + 1109 + + + + + Monitoring office + 1995-1996 + 1109 + + + + + Mid-term framework revision + April 1996 + 1109 + + + + + Annual final report + October 1996 + 1109 + + + + + Senate resolution + 1996 + 1109 + + + + + + + Bush trip-Presidential Delegation + 2 folders + 1992 + 985 + + + + + Charts + 1994 + 986 + + + + + CNN Crossfire trade + March 3, 1994 + 986 + + + + + Federal Express air cargo + 1995 + 986 + + + + + Framework deal and Section 301 + October-December 1994 + 986 + + + + + Framework recommendations + 1993 + 986 + + + + + Framework Strategy + 1994-1995 + 986 + + + + + Framework-U.S. and Japan + 1994 + 986 + + + + + Generalized system of preferences (GSM) + August 1996 + 986 + + + + + Gingrich on Japanese trade + July 1995 + 986 + + + + + Hearings + + + + Oversight of U.S. Trade Policy with Japan (Subcom OGM) + May 8, 1991 + 986 + + + + + U.S.-Japan auto parts + June 20, + 1991 + 986 + + +

    (Auto Parts Advisory Committee)

    +
    +
    + + + Framework, (SBC and Subcom OGM) + 6 subfolders + 1993-1994 + 986 + + + + + Rice + 2 folders + 1991-1994 + 986 + + +

    (Subcom OGM hearing Oversight of U.S. Trade Policy with Japan, May 8, + 1991)

    +
    +
    +
    + + + Industry Effort and leadership + April-May 1995 + 986 + + + + + Other industries + March-June 1995 + 986 + + + + + Keiretsu + + + + 2 folders + 1989-1992 + 987 + + + + + Anti-trust + 1990-1993 + 987 + + + + + Keiretsu and anti-trust law + 2 folders + 1990-1994 + 987 + + + + + Hearing + October 16, + 1991 + 987 + + +

    (Senate Committee on Finance)

    +
    +
    +
    + + + Kodak + 1996-1998 + 987 + + + + + Kodak World Trade Organization + April-June 1998 + 987 + + + + + Letter to editor of Washington Post + May 31, 1995 + 987 + + + + + Levin briefing book + 1994 + 987 + + + + + Manufacturing statistics + 1994-1997 + 987 + + + + + Meeting memos drafts + January 1994 + 987 + + + + + Moss report-auto study + 1994 + 987 + + + + + Moss talks + 2 folders + 1990-1994 + 987 + + + + + Plants moved overseas statistics + 1993 + 1996 + 987 + + +

    (Includes Subcom OGM hearing April 1993)

    +
    +
    + + + Price survey-Commerce Department + 1991 + 987 + + + + + Propaganda + 2 folders + 1992-1998 + 987 + + + + + Quality of U.S. suppliers + November 1994 + 987 + + + + + Secretary of Commerce Ron Brown letter, (A. Pascale) + 1992-1993 + 987 + + + + + Semi-conductor agreement, March + July 1996 + 987 + + + + + Trade rhetoric + 1990-1995 + 987 + + + + + Transplant issues + 1993-1999 + 988 + + + + + Trip + January 1998 + + + + Ambassador Tom Foley meeting + October 1997 + 988 + + + + + Auto parts letters and news articles + March-April 1998 + 988 + + + + + Background data for briefing book + 988 + + + + + Charts + 988 + + + + + Memos and faxes + 988 + + + + + Notes + 988 + + + + + Parts pricing reports + 988 + + + + + Press ideas + 988 + + + + + Review with Carl + 988 + + + + + Thank you letters + 988 + + + + + Trip material + 988 + + + + + + U.S. Japan trade issues + 2 folders + 1989-1991 + 988 + + +

    (Includes auto, GAC, OGM, SBC, and Auto Advisory Committee)

    +
    +
    +
    + + + Joint suppliers meeting + June 14, 1995 + 988 + + + + + Korea-auto + 1994-1997 + 988 + + + + + Manufacturing Task Force + 1987-1993 + 988 + + + + + Mexico + + + + Mexico peso crisis + 1995 + 989 + + + + + Transportation security-Eugene Driker + 1992 + 989 + + + + + + Michigan Center for Defense Conversion proposal-University of Michigan + retraining grant + 1993 + 989 + + + + + Michigan job loss-auto and Mexico + 1992 + 989 + + + + + Miscellaneous + 1992 + 989 + + + + + Nominations-Tarullo Assistant Secretary for Economic and Business Affairs + and Barshefsky for Deputy Trade Representative + 1993 + 1040 + + + + + North American Free Trade Agreement (NAFTA) + + + + 1991-1993 + + + + Factories opened in Mexico, (A. Pascale) + 1991-1992 + + + + Cadillac Rubber + 989 + + + + + Atlas Inc. + 989 + + + + + Atron + 989 + + + + + Otis Elevator + 989 + + + + + GE + 989 + + + + + + Maquiladoras and shelters, (A. Pascale) + 1992 + 989 + + + + + Michigan trade, (A. Pascale) + 1992-1993 + 989 + + + + + Michigan trade events-Levin (A. Pascale) + + + + Events + 1990-1992 + 989 + + + + + Meeting preparation + 1989 + 989 + + + + + News articles + 1992 + 989 + + + + + + NAFTA hearing preparation (A. Pascale) + + + + Statistics and data + 5 subfolders + 1993 + 989 + + + + + Studies + 1992-1993 + 989 + + + + + + Trade reciprocity-S.144, (A. Pascale) + 1982-1983 + 989 + + + + + + 9 folders + 1992-1993 + 990 + + + + + 8 folders + 1993 + 990 + + +

    (Includes "NAFTA Math It Doesn't Add Up" pamphlet created by Carl Levin)

    +
    +
    + + + Fall + 6 folders + 1993 + 990 + + + + + 1994-1995 + 991 + + + + + Auto parts and Mexico + + + + Auto + 1991-1994 + 991 + + + + + Big 3 Mexico + 1993-1994 + 991 + + + + + GM-Big 3 Mexico + 1993 + 991 + + + + + Clinton letter + January 1992 + 991 + + + + + Coalition and United Auto Workers (UAW) + 1992-1993 + 991 + + + + + Mexican auto production + 1992-1994 + 991 + + + + + + Auto sector + 1991-1992 + 991 + + + + + Auto testimony + 14 subfolders + 1992-1993 + 991 + + + + + Briefing books + 2 folders + 1993 + 991 + + + + + Export-import data + 12 folders + 1992-1994 + 992 + + + + + Field hearing-Flint + October 24, + 1993 + 992 + + + + + Hearing backup documents-Job numbers + 1993 + 992 + + + + + Hearing memos + + + + January-March 1993 + 992 + + + + + 1993 + 992 + + + + + + Hearing miscellaneous + 2 folders; 22 subfolders + 1993 + 993 + + + + + Hearings and witness testimony + 11 folders + 1992-1993 + 993 + + + + + Industry response + 3 folders + 1992-1993 + 993 + + + + + Memos and notes + 1991 + 994 + + + + + Mexican lobbying + 1993 + 994 + + + + + Part 1 + + + + Clinton + 1992 + 994 + + + + + Clinton letter + August 1993 + 994 + + + + + CRS briefing + February 1993 + 994 + + + + + Cost + November 1993 + 994 + + + + + Dairy + November 1993 + 994 + + + + + Deals + 1994 + 994 + + + + + Dispute resolution + undated + 994 + + + + + Environment + 1992 + 994 + + + + + European Community + 2 folders + 1992-1993 + 994 + + + + + Glass tariffs + 1993 + 994 + + + + + Hills testimony + September 1992 + 994 + + + + + Hills letter + September 1992 + 994 + + + + + + Part 2 + + + + Administration statements and Mexican press + 1992-1993 + 994 + + + + + Advisory Committee reports + September 1992 + 994 + + + + + Environmental Impact Statement + 2 folders + 1993 + 994 + + + + + Engler-Mexico + 1993 + 994 + + + + + Human rights + June 1993 + 994 + + + +
    + + + NAFTA post-fast track + + + + 2 folders + 1991-1992 + 994 + + + + + Riegle resolution + 1991-1992 + 994 + + + + + Right resolution + 1991-1992 + 994 + + + + + Worker dislocation + 1991-1992 + 994 + + + + + + Post-NAFTA analysis + 3 folders + 1995-1997 + 994 + + + + + Notes + 1995 + 995 + + + + + Plant closings + 1990 + 995 + + +

    (Some Michigan)

    +
    +
    + + + Press + + + + June 19, 22 + 1995 + 995 + + + + + News articles + 1995 + 995 + + + + + Press conference-Japan auto talks + January 14, + 1995 + 995 + + + + + Press releases + 1995 + 995 + + + + + + Republicans + May 1995 + 995 + + + + + Secretary of Commerce letter + October 1997 + 995 + + + + + Secretary of State Albright letter + February 19, + 1997 + 995 + + + + + Secretary of Treasury Rubin meeting + May 1997 + 995 + + + + + Rubin meeting + 1997 + 995 + + +

    (Meeting with Rubin May 1997 and meeting with Barshefsky July 1997)

    +
    +
    + + + Semiconductors letters to Editor and Op/Eds + 1992-1995 + 995 + + + + + Save American Jobs Act + 1991-1992 + 995 + + + + + Staff memos + + + + Alison Pascal + 2 folders + 1992 + 995 + + + + + Various staff + 3 folders + 1991-1993 + 995 + + + + + + Structural Impediments Initiative (SII) + 1990 + 995 + + + + + Super 301 + + + + Amendment-S.301 + 1991-1992 + 995 + + + + + Amendment-S.301 + 1993 + 995 + + + + + Daschle-Levin + 1991-1992 + 995 + + + + + Enhancer, 1991-1992 + 995 + + + + + Fair Trade Enforcement Act with Daschle + 2 folders + 1990-1993 + 996 + + + + + Tough Trade bill + 5 subfolders + 1989-1992 + 996 + + + + + + Trade and environment + 1990-1991 + 996 + + + + + Trade initiatives + 1990-1991 + 996 + + + + + Trade sanctions + 2 folders + 1995 + 996 + + + + + Trade and Technology Act + 1989-1992 + 996 + + + + + Tyson and Sperling meetings + 1993 + 996 + + + + + U.S. Trade Representative Kantor Michigan visit + 2 folders + January 8, 1996 + 996 + + + + + Wabash-United Technology Automotive + 1993 + 1991 + 997 + + + + + World Trade Center Michigan + 1994-1995 + 997 + + + + + Worker retraining + 3 folders + 1993-1994 + 997 + + +

    (Includes NAFTA, Trade Adjustment Assistance, dislocated workers, etc.)

    +
    +
    +
    + + + Transportation + 1987-2000 + + + + Action files + + + + 1993 + 111 + + + + + 1994 + 111 + + + + + 1995 + 111 + + + + + 2 folders + 1996 + 111 + + + + + + Airbag rules and legislation + 1991 + 948 + + + + + Appropriations and funding + + + + FY1993 transportation, agriculture, and technology + 948 + + + + + FY1996 + 948 + + + + + FY1996 appropriations (Great Lakes and transportation) (A. + Pascale) + 948 + + + + + FY1997 + 948 + + + + + Intermodal Surface Transportation Efficiency Act (ISTEA) Highway + bill + + + + Amendments + 1991 + 948 + + + + + Conference report + 1991 + 948 + + + + + Donor state group + 1991 + 948 + + + + + Implementation of ISTEA + 5 subfolders + 1991 + 949 + + + + + Memos to Carl, notes, and statements + 1991 + 949 + + + + + Michigan projects -- justification for ISTEA + 1991 + 949 + + + + + + Moynihan funding for Brooklyn Courthouse + 1991-1992 + 949 + + + + + + Aviation + + + + Air traffic controllers, (A. Pascale) + 1994-1996 + 949 + + + + + Airport Noise-Detroit, (DTW; C. Miller) + 5 subfolders + 1990-1991 + 949 + + + + + American International Airways (AIA), (A. Pascale) + 1996-1997 + 949 + + + + + Completed casework + 1999 + 949 + + + + + Detroit Metro Airport expansion, (Flight pattern change; A. + Pascale) + 1988-1996 + 949 + + + + + Federal Aviation Administration (FAA) + + + + FAA acquisition reform + 1995 + 950 + + + + + FAA reform, (A. Pascale) + 1996 + 950 + + + + + FAA tower, (A. Pascale) + 1993-1995 + 950 + + + + + + Marquette flight service station memos and correspondence, (A. + Pascale) + 4 subfolders + 1987-1991 + 950 + + + + + Marquette XFSS + 2 folders + 1990-1997 + 950 + + +

    (Auxiliary Flight Service Station) (A. Pascale))

    +
    +
    + + + Northwest Airlines (A. Pascale) + + + + Detroit-London route + 1991-1995 + 950 + + + + + Japan + 1996 + 950 + + + + + Rome route delegation letter + 1996 + 950 + + + + + + Northwest Airlines and China + + + + Dan Tarullo meeting White House + March 27, + 1996 + 950 + + + + + Detroit-China non-stop flight + February-April 1995 + 950 + + +

    (Dave Camp)

    +
    +
    +
    + + + RAPCON amendment + 1994 + 950 + + + + + RAPCON -- KI Sawyer + 1994 + 950 + + + + + University of Michigan stadium flights, (A. Pascale) + 1995 + 950 + + + + + Western Great Lakes Pilots Association, (A. Pascale) + 1995-1996 + 950 + + + + + Western Michigan University (WMU) School of Aviation Science, (A. + Pascale) + 1993-1995 + 951 + + +
    + + + Auto + + + + American Automotive Performance and Motorsports Industry + Event + May 15, 1996 + 951 + + + + + Auto labeling contact + 1992-1997 + 951 + + + + + Auto Parts Advisory Committee (APAC) + + + + Auto parts trade with Japan and Auto Parts Task Force + May 1991-March 1992 + 951 + + + + + Framework + March-May 1993 + 951 + + + + + + The Big Three + 1995 + 951 + + + + + GM pickup recall -- gas tank placement + 1993 + 951 + + +

    (Includes photographs; General Motors)

    +
    +
    + + + GM response to National Highway Traffic and Safety Administration + (NHTSA) materials regarding safety of pickup trucks + 1993 + 951 + + +

    (Evaluation of the Safety of GM 1973-1987 C/K/Pickup Trucks Parts I and II; + General Motors)

    +
    +
    + + + Old auto parts contacts + 1990-1993 + 951 + + + + + USA Motors -- Prague briefing, (J. Levin) + June 2000 + 951 + + +
    + + + Committee on Environment and Public Works (EPW) highway hearing, (P. + Abernathy) + 1991 + 951 + + + + + Direct User Access Terminal (DUAT) Weather, (A. Pascale) + August 1993 + 951 + + + + + Great Lakes, (A. Pascale) + 1994-1996 + 951 + + + + + Highway funds for scenic drive + 1995-1996 + 951 + + + + + Infrastructure Investment Amendment to 1992 Tax Bill (C. + Miller) + 2 folders + 1991-1992 + 951 + + + + + Maritime reform, (A. Pascale) + 1994 + 952 + + + + + Maritime Security Act, (A. Pascale) + 1995-1996 + 952 + + + + + Maritime shipping, (A. Pascale) + 1992-1996 + 952 + + + + + Michigan + 1992 + 952 + + + + + National highway traffic safety administration + (NHTSA)-reauthorization + 1995 + 952 + + + + + Ports -- Great Lakes, (A. Pascale) + March 1996 + 952 + + + + + Rail + + + + Grand Trunk Western Railroad Company tunnel, (Michigan) + 1992 + 952 + + + + + + High speed rail + 1993 + 952 + + + + + Soo Locks funding, 1993(Michigan) + 2 folders + 952 + + +
    + + + Veterans + 1991-1996 + + + + Action files + + + + 1991 + 111 + + + + + 1993 + 111 + + + + + 1994 + 111 + + + + + 1995 + 111 + + + + + 1996 + 111 + + + + + + Michigan + 1992 + 1015 + + + + + Military retirement and veteran's compensation-CRS report + April 1995 + 1015 + + + + + Radiation + + + + Correspondence, June + September 1994 + 1015 + + + + + Drosnin, Michael + January 1994 + 1015 + + + + + Hearing-Human Subject Radiation Experiments, January 25 and + (GAC) + November 3, + 1994 + 1015 + + + + + Memos + 1994 + 1015 + + + + + Miscellaneous + February-March 1994 + 1015 + + + + + Notes + January-June 1994 + 1015 + + + + + Statutes and regulations + 1994 + 1015 + + + + + Uranium shells -- Gulf War veterans + January-May 1993 + 1015 + + + + + + Veterans Affairs (VA)-Outpatient Clinic in Yale + August 1995-November 1996 + + + + + + Audiovisual materials + + + + "Caucus for Carl" VHS dub: same audio all channels Harriman + Communications Center, Washington, DC + 1 videocassettes (VHS; 0:25:37) + 1995 January 26 + 1084 + + + + + "The Next Moonshot" Teaming for National Competitiveness + Conference. + 1 videocassettes (VHS; 0:18:18) + 1992 January 22-24 + 1081 + + + + + 1) Assault Weapons Q+A; 2) NAFTA Flr. Stat. + 1 audiocassettes + 1993 November 16 + 1099 + + + + + 1) Open Door - MI Press Brief. + 1 audiocassettes + 1995 September 19 + 1100 + + + + + 1. CL dpts for Bosnia; 2. CL on NAFTA: Dowagiac; 3. CL on NAFTA: + Flint + 1 audiocassettes + 1993 May 27 + 1099 + + + + + 1. CL to Free P. Israel/US Loan Guarantees; 2. CL on B-2 to + NYT + 1 audiocassettes + 1991 August 21 + 1991 September 19 + 1991 September 20 + 1101 + + + + + 1. Lobby Reform; 2. Highway Bill - No Vote; Gr. Lakes 3. Steen release; + 4. CEO Bills; 5. Ukraine(?) + 1 audiocassettes + 1991 November + 1991 December 03 + 1101 + + + + + 1992 Forestry Tour for Congressional Aides Chequamegon National Forest, + WI. Sponsored by Lake States Federal Timber Purchasers Committee + 1 videocassettes (VHS) + 1992 + 1057 + + + + + 1992 Year Ender WWJ Radio/AP Detroit/Macomb + 1 audiocassettes + 1992 October 06 + 1992 October 13 + 1101 + + + + + 1992 Yr-ender (off TV Feed) + 1 audiocassettes + 1992 October 06 + 1101 + + + + + 1993 Satellite Feeds Tape K + 1 videocassettes (VHS) + 1993 + 1088 + + + + + 1996 Floor Statements - Tape 5 + 1 videocassettes (VHS) + 1996 May 14 + 1996 May 21 + 1996 May 23 + 1996 June 04 + 1062 + + + + + 1st Presbyterian Church of D'BRN CL + 1 audiocassettes + 1991 September 22 + 1101 + + + + + 1st Pro-NAFTA spot. GMMB&A, Inc + 1 videocassettes (U-matic; :30) + 1993 October 21 + 1072 + + + + + 2 SASC Coalition Defense Army Modernization 2 of 2 + 1 audiocassettes + 1994 May 03 + 1097 + + + + + 2) MI Press Briefing + 1 audiocassettes + 1995 September 19 + 1100 + + + + + 30673 O Levin 60 Minute segment SRS + 1 videocassettes (VHS; 0:13:00) + 1995 February 06 + 1105 + + + + + 6:00 News WILX - CL + Condell + 1 videocassettes (VHS) + 1991 December 09 + 1076 + + + + + 60 Minutes - Defense Medical Logistics + 1 videocassettes (VHS) + 1991 September + 1105 + + + + + A: Acquisition Reform CQ; B: Lobby Reform USIA-TV + 1 audiocassettes + 1994 March 29 + 1097 + + + + + Actuality - Floor Statement + Bush/NRA + 1 audiocassettes + 1995 May 11 + 1101 + + + + + Actuality - good econ numbers + 1 audiocassettes + 1996 August 01 + 1091 + + + + + Actuality - Head Start + 1 audiocassettes + 1996 September 09 + 1091 + + + + + Actuality - min wage HC reform/bipartisanship!! + 1 audiocassettes + 1996 August 02 + 1091 + + + + + Actuality - Saddam as tyrant + 1 audiocassettes + 1996 September 04 + 1100 + + + + + Actuality COPS Domestic Violence Novi + 1 audiocassettes + 1996 October 18 + 1098 + + + + + Actuality: Land Transfer. CR vote + 1 audiocassettes + 1996 September 30 + 1091 + + + + + Actuality: MAP, Kuwait contract in Macomb + 1 audiocassettes + 1996 October 03 + 1996 October 07 + 1091 + + + + + Actuality: on Welfare Conference letter; Radio Tour-Part II + 1 audiocassettes + 1996 July 25 + 1996 July 19 + 1100 + + + + + Actuality: Postal Hearing + 1 audiocassettes + 1994 November 30 + 1097 + + + + + Actuality: Riley Education Tech. Grant + 1 audiocassettes + 1996 October 02 + 1091 + + + + + AFL-CIO "Bad Deal". Greer, Margolis, Mitchell, Burns + + Associates + 1 videocassettes (Betacam; :30) + 1993 October 20 + 1072 + + + + + Alija Lujinovic Press Briefing + 1 audiocassettes + 1992 August 12 + 1097 + + + + + AP/Lobby Reform Signing + 1 audiocassettes + 1995 December 19 + 1100 + + + + + April 19 - OK City Anniversary + 1 audiocassettes + 1996 April 18 + 1100 + + + + + Armed Forces Journal Interview + 1 audiocassettes + 1993 April 26 + 1099 + + + + + Armed Services Hearing on Bosnia CL's Q+A + 1 audiocassettes + 1995 October 17 + 1100 + + + + + Aspin/Inman Reax + 1 audiocassettes + 1993 December 15 + 1099 + + + + + Audio from Carl on Focus: HOPE Grant + 1 audiocassettes + 1995 March 23 + 1101 + + + + + Auto Caucus Radio Calls + 1 audiocassettes + 1996 April 25 + 1100 + + + + + Auto mgmnt. bkfst UAW/Sten. Hts. + 1 audiocassettes + 1995 May 23 + 1101 + + + + + Auto Parts Hearing (Tape 2) + 1 audiocassettes + 1994 February 03 + 1099 + + + + + Auto Parts Hearing (Tape 3) + 1 audiocassettes + 1994 February 03 + 1099 + + + + + Auto parts Hearing OGM + 1 videocassettes (VHS) + 1994 February 03 + 1088 + + + + + Autoparts Hearing Preview Teleconference + 1 audiocassettes + 1994 February 02 + 1099 + + + + + B2 Press Breakfast + 1 audiocassettes + 1992 July 29 + 1992 July 31 + 1101 + + + + + B-2/Primetime Live. National Security News Service [+address] + 1 videocassettes (VHS) + 1991 June 27 + 1081 + + + + + Base Closings; gays/military lobbying bill. WJBK-TV+WJR/J.F. + MCC + 1 audiocassettes + 1993 May 13 + 1099 + + + + + Base Closure Briefing - High School Part I + 1 videocassettes (VHS) + 1991 August 13 + 1058 + + + + + Base Closure Briefing - High School Part II + 1 videocassettes (VHS) + 1991 August 13 + 1058 + + + + + Base Closure Reax + 1 audiocassettes + 1995 June 23 + 1100 + + + + + Base Closure: Sawyer WNMU + 1 audiocassettes + 1991 April 05 + 1993 March 12 + 1099 + + + + + Battle Creek Enquirer BC Fed Ctr./Straw Ltr. + 1 audiocassettes + 1994 July 20 + 1097 + + + + + Battle Creek Inquirer(?) base closing + 1 audiocassettes + 1994 May 20 + 1097 + + + + + Big East Champ SYR/GTown + Indiana/Purdue 2:15-3:15 + 1 videocassettes (VHS) + 1992 March 15 + 1105 + + + + + Bill Bonds interview Whitewater, Tiger Stadium + 1 audiocassettes + 1994 March 24 + 1097 + + + + + Bob Estill Copley News Sen. Dixon + 1 audiocassettes + 1992 February 25 + 1101 + + + + + Borislav Herak Trial for Bosnian War Crimes + 1 videocassettes (VHS) + 1993 March 13 + 1089 + + + + + Bosnian Arms Embargo + 1 audiocassettes + 1995 July 26 + 1100 + + + + + BRAC statement for Selfridge Tank Plant + 1 audiocassettes + 1995 June 12 + 1101 + + + + + Brian Thompson/Conus interview: Balanced budget & Bosnia + 1 audiocassettes + 1994 February 28 + 1099 + + + + + Briefing w. Mich Delegation Tape 2 + 1 audiocassettes + 1995 January 09 + 1101 + + + + + Briefing w. Michigan Reporters: AP, Det News, Free Press, Gannett, + Newhouse + 1 audiocassettes + 1995 February 21 + 1101 + + + + + Budget - Bosnia WJR-GNS + 1 audiocassettes + 1995 October 26 + 1100 + + + + + Budget FY98 + 1 audiocassettes + 1996 February 06 + 1098 + + + + + Budget Shutdown Print Conf. Call. Radio drive[illegible] + 1 audiocassettes + 1995 November 14 + 1100 + + + + + Bush Address to Detroit economic club + 1 audiocassettes + 1992 September 10 + 1101 + + + + + BusWK - Duncan - JAMA + 1 audiocassettes + 1995 June 06 + 1101 + + + + + C. L. re: Sen Hart/Hart Book Reception + 1 audiocassettes + 1996 June 19 + 1100 + + + + + C.A.T. Opening 1993 Tapes 1-4 + 1 videocassettes (VHS) + 1993 + 1085 + + + + + Carl + Sandy Press Conf. Autoparts trade sanctions + 1 audiocassettes + 1995 May 10 + 1101 + + + + + Carl and Pope John Paul II at Detroit Metro Airport + 1 videocassettes (VHS; 0:02:17) + 1992 + 1089 + + + + + Carl and Sandy/ Clinton on US-Japan Trade; Kantor + 1 audiocassettes + 1996 April 12 + 1100 + + + + + Carl Levin NAFTA Math + 1 videocassettes (Betacam) + undated + 1055 + + + + + Carl Levin NAFTA Math #1 Dub: Keep in D.C. + 1 videocassettes (VHS) + 1993 November 01 + 1057 + + + + + Carl Levin on Trade Talk. 1/9/92 - Ch.7; 1/10/92 - Ch.4 + 1 videocassettes (VHS) + 1992 January 09 + 1992 January 10 + 1089 + + + + + Carl Levin: Channel50 10pm; Channel 50 10pm Re: Uncommited vote; Chan. 7 + 5pm + 1 videocassettes (VHS) + 1992 March 13 + 1992 March 16 + 1992 May 20 + 1089 + + + + + Carl on Healthcare/recess Universal Cariage Coalition Press + Conf. + 1 audiocassettes + 1994 August 25 + 1097 + + + + + Carl on NCT + 1 videocassettes (VHS) + 1992 May + 1057 + + + + + Carl on TV2 Health Care/ Whitewater + 1 videocassettes (VHS) + 1994 April 04 + 1087 + + + + + Carl testifying before House-Lobby Reform + 1 videocassettes (VHS) + 1995 + 1084 + + + + + Carl w. Cops + 1 audiocassettes + 1994 August 26 + 1097 + + + + + CAT Press Conference Carl Levin's Interview/Presentation + hour+(?) + 1 videocassettes (VHS) + 1992 June 03 + 1089 + + + + + CEISIN interview + 1 audiocassettes + 1993 September 23 + 1099 + + + + + CEO Pay D. Ryan interview Det. News + 1 audiocassettes + 1992 January 29 + 1992 February 20 + 1101 + + + + + CFA's Steve Brobeck on Carl + 1 audiocassettes + 1995 June 20 + 1100 + + + + + Ch 2/Det; CL on Military/Gays; Super 301 Radio Feed; Bosnia Reax to + Christopher + 1 audiocassettes + 1992 January 13 + 1993 January 20 + 1993 January 25 + 1993 January 25 + 1993 February 05 + 1993 February 12 + 1099 + + + + + Ch on CEO; CL Tax bill amend. Save! + 1 audiocassettes + 1992 March 12 + 1992 March 12 + 1101 + + + + + Ch. 2 News + 1 videocassettes (VHS) + 1992 January 10 + 1089 + + + + + Ch. 6 Lansing Carl on Home Health Care 11:00 PM News [some text is + crossed] + 1 videocassettes (VHS) + 1994 July 06 + 1087 + + + + + Ch. 7 Special on Militia cued to Carl segment + 1 videocassettes (VHS) + 1995 April 26 + 1084 + + + + + Chan 7/Chan 50 + 1 videocassettes (VHS) + 1996 August 21(?) + 1073 + + + + + Channel 4 - Detroit 5:00 PM + 11:00 PM News Smyth + 1 videocassettes (VHS) + 1991 January 14 + 1076 + + + + + Channel 6 - Lansing - 11:00 pm Coverage of Working Session M(?) Tech + [illegible] Ed. + 1 videocassettes (VHS) + undated + 1055 + + + + + Cherry Actuality + 1 audiocassettes + 1996 September 05 + 1091 + + + + + Cherry Marketing Order + 1 audiocassettes + 1996 May 24 + 1100 + + + + + Cheryl Silver interview + 1 audiocassettes + 1995 May 15 + 1101 + + + + + Childrens Health Uplink DUB + 1 audiocassettes + 1996 January 27 + 1098 + + + + + Christian Science Monitor START2/CWC; Bill Bonds + 1 audiocassettes + 1995 September 06 + 1100 + + + + + Christie(/Christy?) Harlen(?)/WSJ Interview on Stock Options + 1 audiocassettes + 1994 March 01 + 1099 + + + + + Chrysler Corporation. "In the Spotlight Washingtoon Group". Ross Roy + Communications + 1 videocassettes (VHS; 0:05:00) + 1995 October 18 + 1084 + + + + + Church Arson WH Ceremony Amdt + 1 audiocassettes + 1996 July 10 + 1100 + + + + + Civil Rights Floor Statement + 1 audiocassettes + 1991 October 30 + 1101 + + + + + CL - Joint Subcomm. Hearing on NATO (Tape 1 of 3) + 1 audiocassettes + 1994 February 23 + 1099 + + + + + CL & Lautenberg on Gifts Ban (CL hearing) + 1 audiocassettes + 1993 July 19 + 1099 + + + + + CL @ Press Conf. EPA + Great Lakes Pesticides + 1 videocassettes (VHS) + 1993 March 31 + 1085 + + + + + CL @ White House Reform; Hagner on FOB/W. HSE + 1 audiocassettes + 1992 February 03 + 1993 March 19 + 1099 + + + + + CL at Deficit Reduction Challenge to Candidates P.C. + 1 audiocassettes + 1992 June 04 + 1101 + + + + + CL at White House Clean Cars + 1 audiocassettes + 1993 September 29 + 1099 + + + + + CL at White House on Trade and Autos + 1 audiocassettes + 1993 May 19 + 1099 + + + + + CL Budget Reax Sat Feed + 1 audiocassettes + 1994 February 07 + 1099 + + + + + CL Budget Reduction Bill + 1 audiocassettes + 1993 June 25 + 1099 + + + + + CL Chairs hearing Vance, Goulding Testimony. Hearing: UN CL, chairing + #1 + 1 audiocassettes + 1992 June 09 + 1101 + + + + + CL Conrad Floor Statement + Mitchell + 1 audiocassettes + 1992 April 02 + 1101 + + + + + CL Convention Delegate Response + 1 audiocassettes + 1992 March 13 + 1101 + + + + + CL Floor Speech on Balanced Budget Resolution + Pres. Debate + 1 audiocassettes + 1992 June 17 + 1101 + + + + + CL Floor Speech On Somalia + 1 audiocassettes + 1993 July 16 + 1099 + + + + + CL Floor Speech on State of Union/Budget Honesty + 1 audiocassettes + 1993 February 18 + 1099 + + + + + CL Floor Statement + 1 audiocassettes + 1992 June 04 + 1101 + + + + + CL Floor Statement + 1 audiocassettes + 1992 June 23 + 1101 + + + + + CL Floor Statement Bosnia + 1 audiocassettes + 1992 August 04 + 1101 + + + + + CL Floor Statement Death Penalty + 1 audiocassettes + 1992 July 30 + 1101 + + + + + CL Floor Statement DoD inventory waste + 1 audiocassettes + 1992 May 05 + 1101 + + + + + CL FUTA Tax - WGBO; CL NYT Alison Cowan + 1 audiocassettes + 1992 January 27 + 1992 January 27 + 1101 + + + + + CL in Grand Haven + 1 videocassettes (VHS) + 1992 April 24 + 1089 + + + + + CL int. w/ PJ McCarthy/WJR and Mark Avay(?) WAAM(?) Somalia - + Haiti + 1 audiocassettes + 1993 October 14 + 1099 + + + + + CL Int. w/WOOD Whitewater (Indep. Counsel) + 1 videocassettes (VHS) + 1994 January 05 + 1087 + + + + + CL Interview + 1 audiocassettes + 1991 April 11 + 1099 + + + + + CL interview on National Auto Ctr. with Lou Mieczko, Det. + News + 1 audiocassettes + 1993 October 26 + 1099 + + + + + CL Interview WHSB-fm Alpena + 1 audiocassettes + 1993 April 19 + 1099 + + + + + CL Joint Subcomm Hearing on NATO (Tape 3 of 3) + 1 audiocassettes + undated + 1099 + + + + + CL Live - Ch. 25 Sag. Moscow/Yeltzen attacks opposition + 1 audiocassettes + 1993 October 04 + 1099 + + + + + CL on ABM/Armed Services 1. Gelman w. Post; 2. Schmitt NYT; 3. Mower + A.P.; 4. Pastor WSJ + 1 audiocassettes + 1991 July 16 + 1991 July 18 + 1099 + + + + + CL on Clinton's New For. Policy Team w/Ryan Det. N. + 1 audiocassettes + 1992 December 22 + 1101 + + + + + CL on CNBC CEO Pay Hearing II + 1 audiocassettes + 1992 January 31 + 1101 + + + + + CL on Denny McLain WXYT: Budget Plan + 1 audiocassettes + 1993 August 06 + 1099 + + + + + CL on Front & Center Channel 8 WOOD? + 1 videocassettes (VHS) + undated + 1085 + + + + + CL on independent Counsel AP interview + 1 audiocassettes + 1994 January 13 + 1099 + + + + + CL on KI Sawyer + 1 audiocassettes + 1992 August 04 + 1993 June 25 + 1099 + + + + + CL on Riegle Quiting + 1 audiocassettes + 1993 September 28 + 1099 + + + + + CL on Rush Limbaugh Lobby Reform (tape 1) + 1 audiocassettes + 1994 September 30 + 1097 + + + + + CL on Rush Limbaugh Lobby Reform (tape 2) + 1 audiocassettes + 1994 September 30 + 1097 + + + + + CL on Trade with Japan, Reax to Bush Trip/Flint City Hall + 1 audiocassettes + 1991 January 09 + 1099 + + + + + CL on USSR, nukes AP Mutual + 1 audiocassettes + 1991 December 26 + 1101 + + + + + CL on WDET + 1 audiocassettes + 1993 August 03 + 1099 + + + + + CL on WGGL/WCCY/WOLF Radio on Keemenden + 1 audiocassettes + 1992 October 02 + 1101 + + + + + CL on WWJ + 1 audiocassettes + 1992 April 13 + 1101 + + + + + CL P.C. on Trip to Russia + 1 audiocassettes + 1992 January 21 + 1101 + + + + + CL PC on Balkans Trip (35 min) + 1 audiocassettes + 1993 June 07 + 1099 + + + + + CL Press Conf. Year ender + 1 audiocassettes + 1991 December 04 + 1101 + + + + + CL radio actuality Bush Economic Club Challenge + 1 audiocassettes + 1992 September 09 + 1101 + + + + + CL Radio Conf. Call + 1 audiocassettes + 1991 June 07 + 1991 June 10 + 1099 + + + + + CL Reax to Pres Debate + 1 audiocassettes + 1992(/1993?) October 15 + 1099 + + + + + CL Reax to Veep Debate + 1 audiocassettes + 1992 October 13 + 1101 + + + + + CL Reax. to trade wars + 1 audiocassettes + 1994 February 14 + 1099 + + + + + CL Tape Library Tape #2 + 1 videocassettes (VHS) + 1993 March 04 - 1993 + December 06: 1993 March 04 + 1993 April 09 + 1993 April 09 + 1993 April 14 + 1993 May 12 + 1993 June 27 + 1993 July 06 + 1993 July 16 + 1993 July 29 + 1993 August 02 + 1993 August 12 + 1993 August 13 + 1993 August 03 + 1993 August 24 + 1993 August 27 + 1993 September 17 + 1993 September 17 + 1993 November 13 + 1993 November 14 + 1993 November 09 + 1993 November 15 + 1993 December 06 + 1993 December 01 + 1085 + + + + + CL Tape Library: 5/25/93-11/24/93 Senate Business + 1 videocassettes (VHS) + 1993 May 25 - 1993 November + 241993 May 25 + 1993 July 02 + 1993 May 28 + 1993 September 15 + 1993 October 04 + 1993 October 06 + 1993 October 27 + 1993 November 05 + 1993 November 09 + 1993 November 16 + 1993 November 24 + 1993 November 24 + 1085 + + + + + CL teleconference on Nafta Reporters + 1 audiocassettes + 1993 October 19 + 1099 + + + + + CL Testifies on S.301 Trade Discrimination + 1 audiocassettes + 1993 June 14 + 1099 + + + + + CL to AP re: Saddam's WDrawl Proposal + 1 audiocassettes + 1991 February 15 + 1099 + + + + + CL to Birnbaum/WSJ, re: CEO Pan + 1 audiocassettes + 1992 January 13/1992 + November 03 + 1101 + + + + + CL to CBS on Indep. Counsel + 1 audiocassettes + 1993 November 18 + 1099 + + + + + CL to KS/Freep: Best + Worst in 102nd Congress; CL reax to Bush veto of + Family Leave Bill; CL laments Indep. Counsel - No Sen. Action + 1 audiocassettes + 1992 October 01 + 1992 September 24 + 1992 September 29 + 1101 + + + + + CL to NYT Soviet Aid; 4th D. Democratic Dinner + 1 audiocassettes + 1991 November 08 + 1989 October 27 + 1101 + + + + + CL to W. Post: lobbying regis. reform, CL writing new law + 1 audiocassettes + 1991 November 22 + 1101 + + + + + CL Trade S.301 Complete Testimony + 1 audiocassettes + 1993 June 14 + 1099 + + + + + CL v. London, Commerce Dept. Nafta Hearing (1 of 2) + 1 audiocassettes + 1993 November 10 + 1099 + + + + + CL v. London, Commerce Dept. Nafta Hearing (2 of 2) + 1 audiocassettes + 1993 November 10 + 1099 + + + + + CL w/Chad Selweski Macomb Daily News (Lobbying Reform) + 1 audiocassettes + 1993 March 05 + 1099 + + + + + CL w/New Yorker (Marc Singer) Kimberlin; Floor Statement: + Bosnia + 1 audiocassettes + 1992 September 11 + 1992 August 04 + 1101 + + + + + CL/Simon Floor Statements K. Conrad Tribute + 1 audiocassettes + 1992 April 02 + 1101 + + + + + CL/SL/Dorgan anti-Nafta P. Conf. (complete) + 1 audiocassettes + 1993 September 14 + 1099 + + + + + CL: Joint Subcommittee Hearing on NATO (2 of 3) + 1 audiocassettes + 1994 February 23 + 1099 + + + + + Clergy Conference Call + 1 audiocassettes + 1996 June 27 + 1996 June 05 + 1100 + + + + + Cleveland Plain Dealer: on Tardec/US Car Expo. Sharing + Technologies + 1 audiocassettes + 1993 March 01 + 1099 + + + + + Closeup Talk - Edu. cuts + 1 audiocassettes + 1996 February 28 + 1100 + + + + + CNA Speech New Approaches to [illegible] National (?) + Security + 1 videocassettes (VHS) + 1992 April 30 + 1089 + + + + + CNN CL on CEO Pay Bill + 1 videocassettes (VHS) + 1991 June 11 + 1076 + + + + + College Paper Conf. Call + 1 audiocassettes + 1996 September 06 + 1091 + + + + + Competitiveness Council PC with Glenn + Q&A then + Statement + 1 audiocassettes + 1992 August 06 + 1099 + + + + + Conf. Call on sanctions target anncmnt. + 1 audiocassettes + 1995 May 16 + 1101 + + + + + Conference Call on West MI Ozone w. AP, Detroit News, + Newhouse + 1 audiocassettes + 1995 February 07 + 1101 + + + + + Conference Call; - Int. w. WJR on Empowerment Zones + 1 audiocassettes + 1994 December 20 + 1097 + + + + + Congress Daily Ed. Bd. + 1 audiocassettes + 1993 February 19 + 1099 + + + + + Conus, AP, WWJ Crime bill + 1 audiocassettes + 1994 August 22 + 1097 + + + + + Councilman Nick Hood intvw - WCHB + 1 audiocassettes + 1996 July 03 + 1100 + + + + + Cox Broadcasting: Congress preview Human Radiation Testing: + hearing + 1 audiocassettes + 1994 January 25 + 1099 + + + + + Cox interview Bosnia airstrike + 1 audiocassettes + 1994 August 05 + 1097 + + + + + CQ Interview Lobby Disclosure + 1 audiocassettes + 1994 January 18 + 1099 + + + + + CR education amend. floor stmnt. + 1 audiocassettes + 1996 March 12 + 1100 + + + + + CRADA Signing Ceremony + 1 audiocassettes + 1993 November 09 + 1099 + + + + + Cranbrook Kids rescued, w CL help Frank Kelley/Prop B: 60 + radio + 1 audiocassettes + 1993 March 16 + 1099 + + + + + Crossfire "Turning Up the Heat" Yoshi Tsurumi and Sen. Carl + Levin + 1 videocassettes (VHS) + 1994 March 03 + 1087 + + + + + C-SPAN on Defense Auth. Bill. O'Brien on Brothers Levin + 1 audiocassettes + 1996 May 23 + 1100 + + + + + Dad on "Brinkley". This week with David Brinkley Resignation of Aspen + Levin + 1 videocassettes (VHS) + 1993 December 19 + 1993 + 1055 + + + + + Dailies Press Conf. + 1 audiocassettes + 1992 November 23 + 1101 + + + + + David Lewis Carl's Speech at WMU + 1 audiocassettes + 1992 March 23 + 1101 + + + + + David Silverberg SASC; O'Brien + 1 audiocassettes + 1995 October 17 + 1995 October 20 + 1100 + + + + + Debt Limit Presser + 1 audiocassettes + 1996 February 27 + 1100 + + + + + Dec. 1995 Interviews + 1 audiocassettes + 1995 December 01 + 1100 + + + + + Defense Budget Project Speech + 1 audiocassettes + 1994 April 12 + 1097 + + + + + Defense Daily intvw. (Sheila Foote) + 1 audiocassettes + 1996 November 20 + 1098 + + + + + Defense Presser on Nat'l Missile Def. + 1 audiocassettes + 1996 April 18 + 1100 + + + + + Defense Writers brownbag + 1 audiocassettes + 1996 December 02 + 1098 + + + + + Defense Writers Group + 1 audiocassettes + 1995 November 09 + 1100 + + + + + Dem Edu Presser + 1 audiocassettes + 1996 March 05 + 1100 + + + + + Dem Hi Tech Forum McPherson + 1 audiocassettes + 1996 June 19 + 1100 + + + + + Democratic Budget Priorities + 1 videocassettes (VHS) + 1995 (?) + 1088 + + + + + Det. PC on Bush Japan Trip CL to WSJ on CEOs + 1 audiocassettes + 1992 January 09 + 1991 December 10 + 1992 January 09 + 1101 + + + + + Detroit Economic Club Speech + 1 audiocassettes + 1996 April 01 + 1100 + + + + + Detroit Free Press; Matt Davis Jordan College + 1 audiocassettes + 1994 May 18 + 1097 + + + + + Dick Armey: edu cuts reax, Gas Tax + 1 audiocassettes + 1996 May 08 + 1100 + + + + + Dick Ryan. US - Japan trade + 1 audiocassettes + 1995 June 20 + 1100 + + + + + Direct Loan Press Conf. + 1 audiocassettes + 1995 November 02 + 1100 + + + + + Dole Resignation Reax + 1 audiocassettes + 1996 May 15 + 1100 + + + + + Don Rigg's Show - Balanced Budget, Bosnia, Jap. Trade + 1 audiocassettes + 1994 March 02 + 1099 + + + + + Drug Blocker Amend. + 1 audiocassettes + 1996 May 21 + 1100 + + + + + Drug Free Schools (day of resc. Veto) + 1 audiocassettes + 1995 June 07 + 1101 + + + + + Edu. Conf. Call + 1 audiocassettes + 1996 April 26 + 1100 + + + + + Edu. Conf. Call - Q+A + Call + 1 audiocassettes + 1996 April 26 + 1100 + + + + + Education - failure of edu amend. in Senate. [illegible] + 1 audiocassettes + 1996 May + 1100 + + + + + Education Press Conf. + 1 audiocassettes + 1996 June 26 + 1100 + + + + + Education/Student loans conf. Call + 1 audiocassettes + 1995 October 20 + 1100 + + + + + Edutech Internet Event. Actuality + 1 audiocassettes + 1996 September 12 + 1091 + + + + + Electric Van Reax to Transportation Bill + 1 audiocassettes + 1991 June 11 + 1099 + + + + + Emergency Cdme Room Act; CEO Pay Bill. Unistar Radio Feed + 1 audiocassettes + 1991 May 24 + 1991 June 04 + 1991 June 04 + 1096 + + + + + Eric Engberg/CBS Ken Starr + 1 audiocassettes + 1994 August 20 + 1994 August 10 + 1097 + + + + + Events on 4/22/94 & 4/26/94 + 1 audiocassettes + 1994 April 22 + 1994 April 22 + 1994 April 26 + 1097 + + + + + Face the Nation + 1 videocassettes (VHS) + 1992 December 27 + 1089 + + + + + Fair Trade Enforcement Actuality + 1 audiocassettes + 1992 May 21 + 1101 + + + + + Father Cunningham and President Clinton Channel #7 + 1 videocassettes (VHS) + undated + 1101 + + + + + Flint TV-12 5 & 11 p.m. Local Newscasts Saginaw TV-5 6 + p.m. + 1 videocassettes (VHS) + 1996 August 14 - 1996 August 16 + 1058 + + + + + Floor Speech CEO Stock Option, Pay + 1 audiocassettes + 1992 January 23 + 1101 + + + + + Floor Statement + 1 audiocassettes + 1991 October 22 + 1101 + + + + + Floor Statement Bush/NRA + 1 audiocassettes + 1995 May 11 + 1101 + + + + + Floor Statement on Health Care Bill + 1 videocassettes (VHS) + 1994 + 1057 + + + + + Floor Statement on Line - item Veto (used as Radio Actuality + 3/24/95) + 1 audiocassettes + 1995 March 23 + 1101 + + + + + Floor Statements Tape L + 1 videocassettes (VHS) + 1993 + 1085 + + + + + Foodex 91 Japan: News Segments with Translation/U.S. Rice. 10555 + SRS + 1 videocassettes (VHS; 0:05:30) + 1991 May 07 + 1076 + + + + + FY97 Budget Reax + 1 audiocassettes + 1996 March 19 + 1100 + + + + + G.R. Ethics Speech + 1 audiocassettes + 1992 March 22 + 1091 + + + + + GAO Defense Medical Logistics (United States General Accounting + Office) + 1 videocassettes (VHS; 0:09:45) + 1991 September + 1105 + + + + + Gays in Military CL hearing + 1 audiocassettes + 1993 March 29 + 1099 + + + + + GCK & CL Blanchard - Canada; Hoffman-LSJ-Clinton report + card + 1 audiocassettes + 1993 May 27 + 1993 May 21 + 1099 + + + + + Gephardt Press Conf. From CNN + 1 videocassettes (VHS) + 1991 December 20 + 1076 + + + + + Gift & Lobby Reform + 1 audiocassettes + 1995 July 21 + 1100 + + + + + Gift Ban Legislation Briefing + 1 audiocassettes + 1994 April 26 + 1097 + + + + + GIFT Ban Magner/Parker interviews + 1 audiocassettes + 1994 May 11 + 1097 + + + + + Gift Ban Press Conf. + 1 audiocassettes + 1995 July 28 + 1100 + + + + + Gil Gross Bal Bud: Sen Craig/Levin/Simon 10 pm + 1 audiocassettes + 1994 March 01 + 1099 + + + + + Glenn-Chafee-Levin Reg Reform Statement + 1 audiocassettes + 1995 July 18 + 1100 + + + + + GLI at Grand Rapids + 1 audiocassettes + 1995 June 17 + 1100 + + + + + GNS - Negotiate. Taxes; Midland Daily - Bosnia Negotiate + 1 audiocassettes + 1995 November 22 + 1100 + + + + + GOP Medicare Spot WDIV-4 Detroit + 1 videocassettes (VHS) + 1995 September 20 + 1084 + + + + + Gov't Shutdown + 1 audiocassettes + 1995 November 14 + November 17(?) + 1098 + + + + + Gov't Shutdown Day 3 CR + 1 audiocassettes + 1995 November 16 + 1100 + + + + + Gulf War Protestors in Levin's GR office + 1 videocassettes (VHS) + 1993 + 1085 + + + + + Health Care Hearing (1 of 2) + 1 audiocassettes + 1991 December 12 + 1101 + + + + + Health Care Hearing (2 of 2) + 1 audiocassettes + 1991 December 12 + 1101 + + + + + Health Care Press Conf. Call + 1 audiocassettes + 1994 August 09 + 1097 + + + + + Healthcare Reax + 1 audiocassettes + 1993 September 22 + 1099 + + + + + Hearing on Int'l Telemarketing Fraud + 1 audiocassettes + 1993 October 15 + 1099 + + + + + Homestead Land Swamp Intvw. + 1 audiocassettes + 1996 May 13 + 1100 + + + + + Includes Whistle Stop Tour Aug. 27th Newscasts; ABC TV-12 Flint 5 & + 11 p.m.; CBS TV-5 Saginaw 6 p.m. + 1 videocassettes (VHS) + 1996 August 26 - 1996 August 30 + August 27 + October 23 + 1058 + + + + + Independent Counsel Press Conf. CL & Cohen + 1 audiocassettes + 1993 November 18 + 1099 + + + + + Independent Counsel Reform National Journal Phone w/Kirk + Victor + 1 audiocassettes + 1996 January 08 + 1098 + + + + + Int. w. AP on Lobby Reform + 1 audiocassettes + 1994 September 29 + 1097 + + + + + Int. w. George Weeks, Det. News re Michigan Dems + 1 audiocassettes + 1994 December 12 + 1097 + + + + + Int. w. Ken Ostrow, LA Times Starr Reax + 1 audiocassettes + 1994 August 18 + 1097 + + + + + Int. w. Ted Roelofs GR Press re middle class + 1 audiocassettes + 1995 March 02 + 1101 + + + + + Int. w. WEYI, Flint. re meeting w. Mayor Stanley + 1 audiocassettes + 1995 January 25 + 1101 + + + + + Int. w. WWJ re Reports Elimination + 1 audiocassettes + 1995 March 07 + 1101 + + + + + Interview at Conus for WXYZ-TV Ch.7 Detroit on Empowerment + Zone + 1 videocassettes (VHS) + 1994 December 20 + 1087 + + + + + Interview on 1st day/gift ban with WWJ-AM + 1 audiocassettes + 1995 January 04 + 1101 + + + + + Interview on Lobby Reform WKZO - radio, Kalamazoo + 1 audiocassettes + 1994 September 28 + 1097 + + + + + Interview on SBA w. Crain's Detroit Business + 1 audiocassettes + 1995 January 31 + 1101 + + + + + Interview on WXYT re 96 w. Joe Wade Formicola & Chuck + Moss + 1 audiocassettes + 1995 February 21 + 1101 + + + + + Interview w. Jack Hall WCHT/WGLQ "Delta Rendezvous" + 1 audiocassettes + 1995 January 10 + 1101 + + + + + Interview w. Jack Hall, WGLQ Escanaba "Delta Rendezvous" + 1 audiocassettes + 1995 March 07 + 1101 + + + + + Interview w. Jennifer Finer at Jewish News + 1 audiocassettes + 1995 February 24 + 1101 + + + + + Interview w. JP McCarthy WJR re BB Amend. + 1 audiocassettes + 1995 February 28 + 1101 + + + + + Interview w. L. Zagaroli & M. Magner - 103rd Wrap-up + 1 audiocassettes + 1994 October 12 + 1097 + + + + + Interview w. Medill (WLNS-TV) on 100 Days of "Contract" + 1 audiocassettes + 1995 April 06 + 1101 + + + + + Interview w. MI Public Radio on Browner Meeting + 1 audiocassettes + 1995 February 08 + 1101 + + + + + Interview w. MI Radio News on lobby reform + 1 audiocassettes + 1994 September 30 + 1097 + + + + + Interview w. Pat Towell, CQ on Missile Defense + 1 audiocassettes + 1995 March 24 + 1101 + + + + + Interview w. Suzanne Thelen WLNS-TV Lansing + 1 audiocassettes + 1995 January 04 + 1101 + + + + + Interview with Booth Papers Personal health care history + 1 audiocassettes + 1994 April 13 + 1097 + + + + + Interview with Brian Tumulty (ONS) on Reg Reform + 1 audiocassettes + 1996 March 29 + 1100 + + + + + Interview with Wash Post re Fiske replacement + 1 audiocassettes + 1994 August 05 + 1097 + + + + + Interviews on Clinton Econ/Budget Bill + 1 audiocassettes + 1993 August 03 + 1099 + + + + + Interviews w. J. P. McCarthy WJR & Gary Allen, WOOD + 1 audiocassettes + 1995 February 08 + 1101 + + + + + Intro. I.C. bill + 1 audiocassettes + 1993 January 21 + 1099 + + + + + Iraq Invasion/US bombing reax. actuality + 1 audiocassettes + 1996 September 03 + 1091 + + + + + Jack Cushman NYT - Reg Reform + 1 audiocassettes + 1996 March 08 + 1100 + + + + + Jama TV Clips + 1 videocassettes (VHS; 0:10:51) + 1996 May 21-1996 May 24 + 1059 + + + + + Jerry Linenger (P) 1997 National Public Radio (R) + 1 audiocassettes + 1997 + 1092 + + + + + Jim Drinkard interview Lobby reform. House passage + 1 audiocassettes + 1994 March 25 + 1097 + + + + + Jim Nicholson - WTCM - Ron Jolly Show + 1 audiocassettes + 1995 November 07 + 1100 + + + + + Job Corps Floor Statement + 1 audiocassettes + 1995 October 10 + 1100 + + + + + Job Corps is saved statement w/Dale + Dan Kildee + 1 audiocassettes + 1995 May 12 + 1101 + + + + + John Diamond - Star Wars. Kellogg - Financial Discl. + 1 audiocassettes + 1996 June 13 + 1100 + + + + + John Diamond. SASC. + 1 audiocassettes + 1995 November 11 + 1100 + + + + + John Housman. Muskegon Chronicle Coast Grand air Faculty + 1 audiocassettes + 1996 July 12 + 1100 + + + + + Joint Press Conference with Bosnian P.M. + 1 audiocassettes + 1994 February 23 + 1099 + + + + + JP Focus Show WJR Radio + 1 audiocassettes + 1991 December 18 + 1101 + + + + + JP McCarthy Show CL on State of the Union + 1 audiocassettes + 1994 January 26 + 1099 + + + + + Kathy McShea - WOOD TV-8 6 PM broadcast. Carl at the GR Calder Arts + Festival + 1 videocassettes (VHS) + 1994 June 03 + 1057 + + + + + Kellogg interview + 1 audiocassettes + 1996 July 10 + 1100 + + + + + Kellogg interview + 1 audiocassettes + 1996 March 15 + 1100 + + + + + KI Sawyer - EDA Announcement Conf. Call + 1 audiocassettes + 1996 October 08 + 1091 + + + + + Kids Dream Field Basketball Fundraiser Ferndale H.S. Sen + Levin + 1 videocassettes (VHS) + 1993 October 09 + 1085 + + + + + KRC Promo + 1 videocassettes (VHS) + 1991 + 1081 + + + + + K-Z00 Peace Rally - remarks + 1 audiocassettes + 1995 May 22 (?) + 1101 + + + + + Lansing - Channel 6. 6:00 pm News + 1 videocassettes (VHS) + 1994 August 29 + 1087 + + + + + Late Term Abortion The Truth + 1 videocassettes (VHS) + 1996 + 1057 + + + + + Laura Parker Interview Brother's Levin (Tape 1) + 1 audiocassettes + 1994 February 04 + 1099 + + + + + Laura Parker interview Brother's Levin (Tape 2) + 1 audiocassettes + 1994 February 04 + 1994 February 09 + 1099 + + + + + Laura Parker Interview Tape 3 + 1 audiocassettes + 1994 February 09 + 1099 + + + + + Lawrence Technological University Presents the Economic Club of Detroit + Luncheon Talk Carl Levin U.S. Michigan Senator + 1 videocassettes (VHS; 0:53:58) + 1996 April 01 + 1062 + + + + + Levin - News Tape TV6 7:00 News on Welfare Reform + 1 videocassettes (VHS) + 1995 January 25 + 1084 + + + + + Levin & Cohen House Passes Senate Lobby Reform + 1 videocassettes (Betacam) + 1995 November 29 + 1086 + + + + + Levin 1992 + 1 videocassettes (VHS) + 1992 January 10 + 1992 January 22 + 1992 January 28 + 1992 February 26 + 1992 March 05 + 1992 March 19 + 1992 March 26 + 1992 May 19 + 1992 May 21 + 1992 June 04 + 1992 June 19 + 1992 July 02 + 1992 July 22 + 1992 September 24 + 1992 October 06 + 1992 December 16 + 1089 + + + + + Levin '91 + 1 videocassettes (VHS) + 1991 + 1076 + + + + + Levin '91: 1/10; 1/12, 1/29, 3/6, 3/21. 4/17, 4/23, 4/29, 5/8, 5/15, + 5/21, 6/11, 6/27, 9/24, 9/26. 10/4, 10/15, 10/16, 11/25 (incl. + 'lives') + 1 videocassettes (VHS) + 1991 January 10 + 1991 January 12 + 1991 January 29 + 1991 March 06 + 1991 March 21 + 1991 April 17 + 1991 April 23 + 1991 April 29 + 1991 May 08 + 1991 May 15 + 1991 May 21 + 1991 June 11 + 1991 June 27 + 1991 September 24 + 1991 September 26 + 1991 October 04 + 1991 October 15 + 1991 October 16 + 1991 November 25 + 1991 January 21. + 1076 + + + + + Levin '93 + 1 videocassettes (VHS) + 1993 February 04 + 1993 February 05 + 1993 February 17 + 1993 February 19 + 1993 March 11 + 1993 March 31 + 1993 April 01 + 1993 May 19 + 1993 May 25 + 1993 June 07 + 1993 June 08 + 1993 June 30 + 1993 July 20 + 1993 July 27 + 1993 August 03 + 1993 September 14 + 1993 September 15 + 1993 September 22 + 1993 October 15 + 1993 October 20 + 1993 November 09 + 1993 November 10 + 1993 November 16 + 1993 November 17 + 1993 November 30 + 1993 December 06 + 1993 December 15 + 1085 + + + + + Levin at Procurement Reform Hearing Gov Aff/SASC + 1 audiocassettes + 1994 February 24 + 1099 + + + + + Levin Floor Statement + 1 audiocassettes + 1992 January 30 + 1101 + + + + + Levin Floor Statement Fair Trade Enforcement Act + 1 audiocassettes + 1992 May 21 + 1101 + + + + + Levin Glenn Regulatory Reform P.C. + 1 videocassettes (Betacam) + 29-Mar + 1055 + + + + + Levin greeting to Gen. County Dems + 1 audiocassettes + 1995 September 23 + 1100 + + + + + Levin Lobby Reform Bill Signing Ceremony White House + 1 videocassettes (Betacam) + 1995 December 19 + 1086 + + + + + Levin on Arms Control Vote + 1 audiocassettes + 1995 August 03 + 1100 + + + + + Levin on incinerator trash burning + 1 videocassettes (VHS) + 1994 (?) + 1088 + + + + + Levin on MIssile Def. nmd(?) + 1 audiocassettes + 1996 June 04 + 1100 + + + + + Levin PBA Answer Economic Club Debate + 1 audiocassettes + Fall 1996 + 1092 + + + + + Levin Puts IRS on Hotseat + 1 audiocassettes + 1996 March 26 + 1100 + + + + + Levin Radio Calls. Radio Tour + 1 audiocassettes + 1996 October 03 + 1091 + + + + + Levin Satellite Tour Crime, Health, '96 WXYZ, WILX, WNEM + 1 audiocassettes + 1994 August 25 + 1097 + + + + + Levin UPLINKS 1994 - mid 1995 + s:/wpshr/pres/library/VNRlibr.94 + 1 videocassettes (VHS) + 1994 - mid 1995: 1994 + January 25 + 1994 January 27 + 1994 February 03 + 1994 February 04 + 1994 February 7 + 1994 February 11 + 1994 March 22 + 1994 May 11 + 1994 June 10 + 1994 June 21 + 1994 June 29 + 1994 June 30 + 1994 July 12 + 1994 August 02 + 1994 August 10 + 1994 August 24 + 1994 September 22 + 1995: 1995 January + 05 + 1995 January 24 + 1995 February 07 + 1995 February 08 + 1995 February 09 + 1995 February 28 + 1995 March 02 + 1995 March 07 + 1995 March 13 + 1995 March 27 + 1995 March 29 + 1995 March 29 + 1995 April 06 + 1995 May 09 + 1995 May 10 + 1995 May 11 + 1995 May 17 + 1995 May 22 + 1995 May 23 + 1995 May 23 + 1995 May 25 + 1995 June 07 + 1084 + + + + + Levin Uplinks 1996 - mid 1996 s:/wphr/pres/library/VNRlibr.96 + 1 videocassettes (VHS) + Title sticker is attahed on + top of another title sticker. 1996 - mid 1996: 1996: January 05 + January 23 + January 24 + February 14 + February 20 + February 27 + February 28 + March 07 + March 12 + March 19 + March 26 + March 26 + March 28 + April 10 + April 12 + April 19 + April 23 + April 26 + May 03 + May 06 + May 08 + May 15 + May 21 + May 23 + May 24 + June 04 + June 06 + June 11 + June 13 + June 14 + June 19 + June 20 + June 20 + 1062 + + + + + Levin UPLINKS mid 1995 - 1995 + s:/wpshr/pres/library/VNRlibr.95 + 1 videocassettes (VHS) + Mid 1995 - 1995: 1995 June + 12 + 1993 June 13 + 1995 June 15 + 1995 June 20 + 1995 June 21 + 1995 June 22 + 1995 June 23 + 1995 July 11 + 1995 July 18 + 1995 July 24 + 1995 July 25 + 1995 July 26 + 1995 July 28 + 1995 August 02 + 1995 August 03 + 1995 August 14 + 1995 September 06 + 1995 September 07 + 1995 Septeber 14 + 1995 September 15 + 1995 September 19 + 1995 September 26 + 1995 September 28 + 1995 October 09 + 1995 October 26 + 1995 November 06 + 1995 November 14 + 1995 November 16 + 1995 November 29 + 1995 December 19 + 1084 + + + + + Levin Visit to Allen Elementary School (Amendment to [illegible] 2000) + Intergenerational Mentoring. Ch. 6 Lansing. [some text is crossed out] + 1 videocassettes (VHS) + 1994 February + 1087 + + + + + Levin White House Ch.1, Ch,1 Cam Mic. 1 of + 1 videocassettes (Betacam) + 1996 April 12 + 1062 + + + + + Levin/STW Forum + 1 audiocassettes + 1996 March 07 + 1100 + + + + + Levin: "North Country Trail Association" Video. SRS 39583 O + 1 videocassettes (Betacam; 9:04) + 1996 August 19 + 1086 + + + + + Levin: 1991 Floor Statements Tape B. SRS 22406 O + 1 videocassettes (VHS; 1:41:00) + 1993 July 13 + 1085 + + + + + Levin: 1991 Misc. Tape C. 3. 22406 O. SRS + 1 videocassettes (VHS; 0:05:00) + 1993 July 13 + 1076 + + + + + Levin: 1991 National. Tape D. (5). 22406 O. SRS + 1 videocassettes (VHS; 0:10:00) + 1993 July 13 + 1992 December 16 (on the + box) + 1076 + + + + + Levin: 1992 Floor Statements. SRS 22406 O + 1 videocassettes (VHS; 0:32:00) + 1993 July 13 + 1992 + 1085 + + + + + Levin: 1992 Local. Tape E. SRS 22406 O + 1 videocassettes (VHS; 0:20:00) + 1993 July 13 + 1085 + + + + + Levin: 1992 Misc. Tape H. SRS 22406 O + 1 videocassettes (VHS; 0:52:00) + 1993 July 13 + 1085 + + + + + Levin: 1992 National Tape F. SRS 22406 O + 1 videocassettes (VHS; 0:50:00) + 1993 July 13 + 1085 + + + + + Levin: 1992 Satellite Feeds Tape G. SRS 22406 O + 1 videocassettes (VHS; 0:19:00) + 1993 July 13 + 1992 + 1085 + + + + + Levin: 1995 Tape Library. Tape 1. SRS 35738 O + 1 videocassettes (VHS; 1:52:00) + 1995 + 1088 + + + + + Levin: 1995 Tape Library. Tape 2. SRS 35738 O. + 1 videocassettes (VHS; 1:46:00) + 1995 + 1088 + + + + + Levin: 1995 Tape Library. Tape 4. SRS 35738 O + 1 videocassettes (VHS; 1:15:00) + 1995 + 1088 + + + + + Levin: 1995 Tape Library. Tape 5. SRS 35738 O + 1 videocassettes (VHS; 1:48:00) + 1995 + 1088 + + + + + Levin: 1995 Tape Library. Tape 6. SRS 35738 O + 1 videocassettes (VHS; 1:03:00) + 1995 + 1088 + + + + + Levin: 60 Minutes Seg. RE: Adoption. SRS 14488 + 1 videocassettes (VHS; 0:15:00) + 1992 January 12 + 1052 + + + + + Levin: 90210 12/19/91 Adoption Reunion. SRS 14297 + 1 videocassettes (VHS; 1:30:00) + 1991 December 19 + 1052 + + + + + Levin: ABC Good Morning America Petagon Spending. SRS 15518 + 1 videocassettes (VHS; 0:01:30) + 1992 March 12 + 1052 + + + + + Levin: ABC News (Navy Tankers Segment). SRS 29545 O + 1 videocassettes (VHS; 0:01:45) + 1994 October 24 + 1087 + + + + + Levin: ABC News Gift Bans. SRS 33842 O + 1 videocassettes (VHS; 0:02:34) + 1995 July 28 + 1084 + + + + + Levin: ABC News Segment on Tennessee (01/05/95). SRS 30140 O + 1 videocassettes (VHS; 0:05:30) + 1995 January 05 + 1995 January 06 + 1084 + + + + + Levin: ABC Nightline - Budget Deficit. SRS 16821 + 1 audiocassettes + 1992 June 03 + 1099 + + + + + Levin: ABC Nightline. SRS 23008 O + 1 videocassettes (VHS; 0:22:00) + 1993 August 03 + 1052 + + + + + Levin: ABC Nightline. SRS 36377 O + 1 videocassettes (VHS; 0:30:00) + 1996 January 03 + 1086 + + + + + Levin: ABC Prime Time Live. SRS 29213 O + 1 videocassettes (VHS; 1:00:00) + 1994 September 29 + 1087 + + + + + Levin: Adoption Reunions. SRS 14531 + 1 videocassettes (VHS; 0:28:30) + 1992 January 17 + 1052 + + + + + Levin: Armed Services Cmt. 09:30 to 15:30. SRS 21400 O + 1 videocassettes (VHS; 5:30:00) + 1993 May 11 + 1095 + + + + + Levin: Armed Services CMTE Hearing (Q&A). SRS 35906 O + 1 videocassettes (Betacam; 0:09:40) + 1995 December 06 + 1088 + + + + + Levin: Armed Services CMTE Hearing. SRS 35731 O + 1 videocassettes (Betacam; 0:09:20 apprx) + 1995 November 28 + 1086 + + + + + Levin: Armed Services Cmte. Save SRS 18079 + 1 videocassettes (VHS; 1:10:00) + 1992 August 12 - on the cassette + 1992 March 20 - on the + box + 1089 + + + + + Levin: Armed Services Hearing. Coalition Defense Subttee PeaceKeeping. + SRS 27309 O + 1 videocassettes (VHS; 2:06:12) + 1994 May 12 + 1088 + + + + + Levin: Armed Services Hearing. Tape 1 (Gays in Military (1 pt 1)). SRS + 20639 OC + 1 videocassettes (VHS) + 1993 March 29 + 1095 + + + + + Levin: Armed Services Hearing. Tape 2 (Gays in Military (1 pt 2)) SRS + 20639 OC + 1 videocassettes (VHS) + 1993 March 29 + 1095 + + + + + Levin: Auto Car Parts Hearing Sat Feed. SRS + 1 videocassettes (Betacam; 0:05:00) + 1991 June 20 + 1068 + + + + + Levin: Base Closure + 1 audiocassettes + 1993 June 15 + 1099 + + + + + Levin: Bosnia Nightline 2 Parts SRS 19066 O + 1 videocassettes (VHS; 0:44:00) + 1992 November 10 + 1992 November + 11 + 1089 + + + + + Levin: CBS 48 Hours SRS 16031 + 1 videocassettes (VHS; 1:00:00) + 1992 April 15 + 1052 + + + + + Levin: CBS Gift Ban - 5/5/94 & Jet Propulsion 5/11/94; ABC&CBS + Gift Ban (5/11/94). SRS 27300 O + 1 videocassettes (VHS; 0:09:00) + 1994 May 12 + 1994 May 05 + 1994 May 11 + 1994 May 11 + 1087 + + + + + Levin: CBS News/Postal Hearing 11-30-94. SRS 29866 O + 1 videocassettes (VHS; 0:02:00) + 1994 December 02 + 1994 November 30 + 1087 + + + + + Levin: CBS Nightly News "Freedom of Religion". SRS 29564 O + 1 videocassettes (VHS; 0:04:30) + 1994 October 31 + 1087 + + + + + Levin: CBS Sunday Morning Seg. Warpowers press conf. SRS 24188 + O + 1 videocassettes (VHS; 0:10:00) + 1993 October 25 + 1085 + + + + + Levin: CBS This Morning. SRS 15600 + 1 videocassettes (VHS; 0:06:00) + 1992 March 17 + 1089 + + + + + Levin: Civil Rights statemnet (Edit & Unedited). Satelite. 13485 + SRS + 1 videocassettes (VHS; 0:13:30) + 1991 October 30 + 1076 + + + + + Levin: Clinton Town Meeting: WXYZ Detroit. CNN. SRS- 19955 O + 1 videocassettes (VHS; 0:56:00) + 1993 February 10 + 1085 + + + + + Levin: Clinton Welfare Speech 6/14/94 Tape 1. SRS 26909 O + 1 videocassettes (Betacam; 0:20:00) + 1994 June 24 + 1994 June 14 + 1068 + + + + + Levin: Clinton Welfare Speech 6/14/94 Tape 2. SRS 26909 O + 1 videocassettes (Betacam; 0:20:00) + 1994 June 24 + 1994 June 14 + 1068 + + + + + Levin: Compilation 11620 SRS. Tape #1. Gulf + 1 videocassettes (VHS; 6:00:00) + 1991 July 08 + 1076 + + + + + Levin: Compilation 11620 SRS. Tape #2 + 1 videocassettes (VHS; 5:15:00) + 1991 July 08 + 1076 + + + + + Levin: Compilation. SRS 28910 O + 1 videocassettes (VHS; 0:54:00) + Copy Date: 1994 August + 26 + 1087 + + + + + Levin: Connie Chung - Eye to Eye Story on Adoption. SRS 23959 + O + 1 videocassettes (VHS; 1:00:00) + 1993 October 14 + 1085 + + + + + Levin: Crossfire. Independent Counsel Law w/DiGenova. SRS 40446 + 0 + 1 videocassettes (VHS; 0:28:00) + 1996 November 23 + 1086 + + + + + Levin: C-SPAN 1 (1:00-2:30). Kennedy Speech. SRS 30258 O + 1 videocassettes (VHS; 1:30:00) + 1995 January 11 + 1088 + + + + + Levin: F/S from 7/14. SRS 28102 O + 1 videocassettes (VHS; 0:11:43) + 1994 July 15 + July 14 + 1087 + + + + + Levin: Floor Coverage on Lobbying Bill 5/4-5/6/93. SRS 21251 + O + 1 videocassettes (VHS; 5:25:00) + 1993 May 12. 1993(?) May 04 - 1993 May 06 + 1089 + + + + + Levin: Floor Coverage. Tape 1. SRS 27157 O + 1 videocassettes (VHS; 4:05:00) + 1994 May 04 + 1088 + + + + + Levin: Floor Coverage. Tape 2. SRS 27157 O + 1 videocassettes (VHS; 6:00:00) + 1994 May 05 + 1088 + + + + + Levin: Floor Coverage. Tape 3. SRS 27157 O + 1 videocassettes (VHS; 6:00:00) + 1994 May 09 + 1087 + + + + + Levin: Floor Coverage. Tape 4 SRS 27157 O + 1 videocassettes (VHS; 2:40:00) + 1994 May 09 + 1088 + + + + + Levin: Floor Debate on Gift Ban Tape #1. SRS 34268 O + 1 videocassettes (Betacam; 1:30:00) + 1995 July 28 + 1086 + + + + + Levin: Floor Debate on Gift Ban Tape #2. SRS 34268 O + 1 videocassettes (Betacam; 1:00:00) + 1995 July 28 + 1086 + + + + + Levin: Floor Statement -- International Invest in CIS. SRS + 1 videocassettes (Betacam; 0:15:00) + 1992 February 07 + 1089 + + + + + Levin: Floor Statement (2 parts) (08/13/94). SRS 28732 O + 1 videocassettes (VHS; 0:20:30) + 1994 August 15 + 1994 August 13 + 1058 + + + + + Levin: Floor Statement (7/27) School Prayer. SRS 28282 O + 1 videocassettes (VHS; 0:10:10) + 1994 July 28 + 1994 July 27 + 1057 + + + + + Levin: Floor Statement (8/18). SRS 28800 O + 1 videocassettes (VHS; 0:09:00) + 1994 August 19 + 1087 + + + + + Levin: Floor Statement (B-2 Bomber) & Letter Graphic. SRS 27918 + O + 1 videocassettes (Betacam; 0:05:00) + copy date: 1994 July + 01 + 1068 + + + + + Levin: Floor Statement 12/13,18,19/95. SRS 36224 O + 1 videocassettes (VHS; 1:01:28) + 1995 December 21 + 1995 December 13 + 1995 December + 18 + 1995 December 19 + 1084 + + + + + Levin: Floor Statement 27173 O + 1 audiocassettes + 1994 May 05 + 1097 + + + + + Levin: Floor Statement 3/28/95. SRS 31700 O + 1 videocassettes (Betacam; 0:08:00) + 1995 March 29 + 1995 March 28 + 1086 + + + + + Levin: Floor Statement 36841 O + 1 videocassettes (Betacam; 0:15:43) + 1996 February 20 + 1062 + + + + + Levin: Floor Statement 6-27-91 & 10-30-91. SRS 23353 O + 1 videocassettes (VHS; 0:10:00) + 1993 September 15 + 1991 June 27 + 1991 October 30 + 1085 + + + + + Levin: Floor Statement OMB Letter to Labor Dept. SRS 15637 + 1 videocassettes (Betacam; 0:05:30) + 1992 March 18 + 1089 + + + + + Levin: Floor Statement. Reg Reform SRS 33685 O + 1 videocassettes (VHS; 0:07:41) + 1995 July 20 + 1084 + + + + + Levin: Floor Statement. SRS 28671 + 1 videocassettes (VHS; 0:15:00) + 1994 August 13 + 1057 + + + + + Levin: Floor Statement. SRS 29141 O + 1 videocassettes (VHS; 0:02:00) + 1994 September 23 + 1057 + + + + + Levin: Floor Statement. Unfunded mandates. SRS 30526 O + 1 videocassettes (VHS; 1:30:00) + 1995 January 24 + 1088 + + + + + Levin: Floor Statements (6/30-7/1). SRS 27914 O + 1 videocassettes (VHS; 1:04:00) + 1994 July 06 + June 30 - July + 01 + 1087 + + + + + Levin: Floor Statements (VAR Days Throughout July). 4 [illegible]. reg + reform SRS 33826 O + 1 videocassettes (VHS; 1:52:00) + 1995 August 01 + 1088 + + + + + Levin: Floor Statements 2-7-92; 3-18-92, 6-12-92. SRS 23353 + 1 videocassettes (VHS; 0:37:00) + 1993 September 15 + 1992 February 07 + 1992 March 18 + 1992 June 12 + 1085 + + + + + Levin: Floor Statements. 1.Yogoslavia Resolution; 2. Teasury Dept. on SEC + (Robson). SRS 17008 + 1 videocassettes (Betacam; 0:18:00) + 1992 June 12 + 1089 + + + + + Levin: Floor Statements: U. S. Auto Parts (6/27/91); Civil Rights + (10/30/91). 24375 O SRS + 1 videocassettes (VHS; 11:00) + 1991 June 27 + 1991 October 30 + 1076 + + + + + Levin: Foodex '91. 10310 + 1 videocassettes (VHS; 0:30:00) + 1991 April 19 + 1076 + + + + + Levin: Fox 10 o'clock News. SRS 16912 + 1 videocassettes (VHS; 1:00:00) + 1992 June 09 + 1058 + + + + + Levin: Gov Affairs Cmte Hearing/Open State/Q+A, Congressional Coverage + 6/29. SRS 27875 O + 1 videocassettes (VHS; 0:13:30) + 1994 July 01 + June 29 + 1057 + + + + + Levin: Gov. Affairs Hearing Segments + 1 audiocassettes + 1995 February 22 + 1101 + + + + + Levin: Gov. Affairs Hearing Segments + 1 audiocassettes + 1995 February 23 + 1101 + + + + + Levin: Governmental Affairs Hearing. SRS 14844 + 1 videocassettes (VHS; 2:30:00) + 1992 January 31 + 1089 + + + + + Levin: Gov't Affairs Cmte, Arthur Limon & Sam Dash. SRS 21447 + O + 1 videocassettes (VHS; 2:15:00) + 1993 May 14 + 1089 + + + + + Levin: Gov't Affairs Cmte, Arthur Limon & Sam Dash. SRS 21447 O Tape + 1 of 3 + 1 audiocassettes + 1993 May 14 + 1099 + + + + + Levin: Gov't Affairs Cmte, Arthur Limon & Sam Dash. SRS 21447 O Tape + 2 of 3 + 1 audiocassettes + 1993 May 14 + 1099 + + + + + Levin: Gov't Affairs Cmte. Arthur Limon & Sam Dash Tape 3 of 3. SRS + 21447 O + 1 audiocassettes + 1993 May 14 + 1099 + + + + + Levin: Graphics For Feed. SRS 32340 O + 1 videocassettes (Betacam; 00:01:00; 0:03:22) + 1995 May 09 + 1995 May 23 + 1088 + + + + + Levin: Inside Politics (Gift Ban Only). SRS 27317 O + 1 videocassettes (VHS; 0:04:00) + 1994 May 12 + 1087 + + + + + Levin: Mac/Lehr Gays in the Military Segment. SRS 20787 O + 1 videocassettes (VHS; 0:20:00) + 1993 March 31 + 1095 + + + + + Levin: MacNeil/Lehrer Seg. On W.W.W. 9/4. SRS 34263 O + 1 videocassettes (VHS; 0:10:16) + 1995 September 05 + September 04 + 1084 + + + + + Levin: Minimum Wage + 1 audiocassettes + 1996 July 09 + 1100 + + + + + Levin: NBC Dateline. SRS 28127 O + 1 videocassettes (VHS; 0:58:00) + 1994 July 19 + 1087 + + + + + Levin: NBC News & MacNeil/Lehrer (Lobby Reform Segs.). SRS 29372 + 0 + 1 videocassettes (VHS; 0:21:00) + 1994 October 06 + 1087 + + + + + Levin: NBC News: Government Spending/Waste Segment. SRS 20270 + O + 1 audiocassettes + 1993 March 03 + 1099 + + + + + Levin: News. Conf. SRS 33209 O + 1 videocassettes (Betacam; 0:06:00) + 1995 June 28 + 1086 + + + + + Levin: Nightline 5-4-92. SRS 16318 + 1 videocassettes (VHS; 1:00:00) + 1992 May 05 + 1992 May 04 + 1052 + + + + + Levin: Nightline. SRS 21401 O + 1 videocassettes (VHS; 30:00:00) + 1993 May 11 + 1095 + + + + + Levin: Nightline; Brinkley. Aspin resignation. SRS 25244 O + 1 videocassettes (VHS; 1:13:00) + 1993 December 15 + 1993 December 19 + 1085 + + + + + Levin: North Country Trail Tape One. SRS 21377 O + 1 videocassettes (VHS; 1:07:00) + 1993 May 10 + 1085 + + + + + Levin: North Country Trail Tape One. SRS 21865 O + 1 audiocassettes + 1993 June 10 + 1099 + + + + + Levin: North Country Trail Tape Three. SRS 21377 O + 1 videocassettes (VHS; 0:56:00) + 1993 May 10 + 1085 + + + + + Levin: North Country Trail Tape Three. SRS 21865 O + 1 audiocassettes + 1993 June 10 + 1099 + + + + + Levin: North Country Trail Tape Two. SRS 21377 O + 1 videocassettes (VHS; 0:56:00) + 1993 May 10 + 1085 + + + + + Levin: North Country Trail Tape Two. SRS 21865 O + 1 audiocassettes + 1993 June 10 + 1099 + + + + + Levin: Old Senate Chamber, Swearing in Reenactment. 30075 SRS + 1 videocassettes (VHS; 1:00:00) + 1991 January 25 + 1076 + + + + + Levin: OSHA Training Tape re federal leg. affecting workers. SRS 34646 + O + 1 videocassettes (VHS; 0:09:04) + 1995 September 26 + 1084 + + + + + Levin: Ozone Bill Q&A/Interview with WOOD-AM. 28360 O + 1 audiocassettes + 1994 August 03 + 1097 + + + + + Levin: Phil Hart Book Reception (Raw Footage) 6/19/96. SRS 39485 + O + 1 videocassettes (VHS; 0:24:36) + 1996 August 07 + 1996 June 19 + 1062 + + + + + Levin: Press Briefing Regarding Persian Gulf. 30096 SRS + 1 videocassettes (VHS; 0:04:07) + 1991 January 17 + 1076 + + + + + Levin: Sat Feed/NAFTA II Trade SRS 21187 + 1 audiocassettes + 1993 April 28 + 1099 + + + + + Levin: Sat. Feed on Russian Conflict. SRS 23668 O + 1 audiocassettes + 1993 October 04 + 1099 + + + + + Levin: Sat. Master. SRS 21717 O. TRT: 0:04:43 + 1 audiocassettes + 1993 May 28 + 1099 + + + + + Levin: SBC Nightline: CL + 5 on Deficit (Pres') Race SRS + 16821 + 1 videocassettes (VHS; 0:30:00) + 1992 June 03 + 1089 + + + + + Levin: Senate Floor Coverage (5:56 PM to End). SRS 29325 O + 1 videocassettes (VHS; 1:09:00) + 1994 September 30 + 1087 + + + + + Levin: Senate Floor Coverage, Swearing-in Ceremony. 30075 SRS + 1 videocassettes (VHS; 0:35:20) + 1991 January 25 + 1076 + + + + + Levin: Senate Floor Statement about Bosnia. SRS 21845 O + 1 audiocassettes + 1993 June 09 + 1099 + + + + + Levin: Senate Floor Statement. SRS 23799 O + 1 audiocassettes + 1993 October 06 + 1099 + + + + + Levin: Senate Floor Stmnts. 16:00 Hrs. SRS 26827 O + 1 videocassettes (VHS; 0:10:00) + 1994 June 16 + 1057 + + + + + Levin: Senate Floot Statement. SRS 29336 O + 1 audiocassettes + 1994 October 03 + 1097 + + + + + Levin: Senator at Children's Hospital. SRS 30143 O + 1 videocassettes (VHS; 0:04:15) + 1995 January 06 + 1056 + + + + + Levin: Trade Reports II. CBS Face of the Nation. SRS 15771 + 1 videocassettes (VHS; 0:26:00) + 1992 March 30 + 1058 + + + + + Levin: Unemployment Benefit. 20328 O SRS-DV 30-sec + 1 audiocassettes + 1993 March 04 + 1099 + + + + + Levin: WOOD TV Interview on Ozone. SRS 28164 O + 1 videocassettes (VHS; 0:02:30) + 1994 July 22 + 1057 + + + + + Levin-Cohen Presser; Lobby Reform Victory + 1 audiocassettes + 1995 November 29 + 1100 + + + + + Levin's Welfare interview w/Kathy Daschle exerpts also (From + floor) + 1 audiocassettes + 1995 August 14 + 1100 + + + + + Lisa Zagarolli AP interview w/CL on Michigan Clout + 1 audiocassettes + 1994 January 27/1993 + January 27 + 1099 + + + + + Lisa Zagarolli Bosnia P.M. visit Balanced Budget reax + 1 audiocassettes + 1994 February 23 + 1099 + + + + + Live Ch13/GR Battle Creek DoD Ctr. Saved + 1 audiocassettes + 1993 June 27 + 1099 + + + + + Live int. w. Marc Avery, WAAM Radio + 1 audiocassettes + 1994 August 10 + 1097 + + + + + Lobby Reform Deadline + 1 audiocassettes + 1996 February 14 + 1100 + + + + + Lobby Reform Ed. Writers, etc. II + 1 audiocassettes + 1995 November 30 + 1100 + + + + + Lobby Reform Victory + 1 audiocassettes + 1995 July 25 + 1100 + + + + + Lobby Reform Victory. Ed. Writers, etc. I + 1 audiocassettes + 1995 November 30 + 1100 + + + + + Lobbying Electric Cars to Magner + 1 audiocassettes + 1993 March 15 + 1993 March 12 + 1099 + + + + + M1/M1A1 Tank Remote Control Device + 1 videocassettes (VHS) + undated + 1081 + + + + + MacNeil/Lehrer Focus: HOPE + 1 videocassettes (VHS; 0:13:30) + 1992 + 1076 + + + + + Macomb Daily Ed Bd + 1 audiocassettes + 1994 January 04 + 1099 + + + + + Mailbag Open Bumpers. Cable show Levin + 1 videocassettes (Betacam) + 1996 August 02 + 1062 + + + + + Marge Gorge: Ward's Automotive World - US Japan Trade + 1 audiocassettes + 1992 February 06 + 1101 + + + + + Medicare 50-State Speakout + 1 audiocassettes + 1995 October 19 + 1100 + + + + + Medicare/Budget Comment KPM'S to CL + 1 audiocassettes + 1995 May 22 + 1101 + + + + + Meeting w/Peace Activists Subj: Iraq + 1 audiocassettes + 1993 July 07 + 1099 + + + + + Metro Times interview + 1 audiocassettes + 1993 August 09 + 1099 + + + + + MI militia Press Conference + 1 audiocassettes + 1995 June 15 + 1100 + + + + + MI Public Radio Intvw. Line Item veto + 1 audiocassettes + 1997 January 06 + 1098 + + + + + Michael Winepart, Jordan College. NYT. + 1 audiocassettes + 1994 January 05 + 1099 + + + + + Michigan Connection - A Public Affairs Program brought to you by U.S. + Senator Carl Levin + 1 videocassettes (Betacam) + 1996 November + 1087 + + + + + Michigan militia + 1 audiocassettes + 1995 June 15 + 1100 + + + + + Middle East Peace Signing + 1 audiocassettes + 1995 September 28 + 1100 + + + + + Mike Magnen(?) - Booth.; Lovi Montgomery F.P. + 1 audiocassettes + 1994 November 09 + November 09 + 1085 + + + + + Mike Magner/Auto Parts interview + 1 audiocassettes + 1994 August 16 + 1097 + + + + + Mike Tackett Ch. Trib Ethics Lobbying; AP Special Prosecutor; NPR + Lobbying Reform, Camp Ref. + 1 audiocassettes + 1992 November 13 + 1992 November 17 + 1992 November 18 + 1101 + + + + + Min wage Press Conf. (Reich) + 1 audiocassettes + 1996 October 01 + 1091 + + + + + Minimum Wage Hike Vote + 1 audiocassettes + 1996 March 27 + 1100 + + + + + Minivan Dumping Actuality Raw Footage + 1 audiocassettes + 1992 May 20 + 1101 + + + + + MIPR - on CG; WGVU - on budget + 1 audiocassettes + 1995 November 01 + 1995 October 31 + 1100 + + + + + Mobsters (91-08052 NY 30 WPIX 08/01/91 06:34P); Childs Play 2 (90-12103 + NY 30 WPIX 10/23/90 09:39P) + 1 videocassettes (VHS) + 1991 August 01 + 1990 October 23 + 1105 + + + + + Moment Magazine Michael Hoffmann + 1 audiocassettes + 1992 November 24 + 1101 + + + + + Morton Kondracke re: Bosnia + 1 audiocassettes + 1995 November 14 + 1100 + + + + + Mott Community College Forum NAFTA 1 of 2 + 1 audiocassettes + 1993 October 24 + 1099 + + + + + MSBA Breakfast CL on Clinton Budget + 1 audiocassettes + 1994 February 08 + 1099 + + + + + NAFTA hearings + 1 videocassettes (VHS) + 1993 April 01 + 1085 + + + + + NAFTA Q & A Court Decision, Live Sat. WBB & CL + 1 audiocassettes + 1993 June 30 + 1099 + + + + + NAM Breakfast Mtg. Lobbying, CEO Pay + 1 audiocassettes + 1992 February 19 + 1101 + + + + + National News - MASTER Tape J + 1 videocassettes (VHS) + 1993 + 1085 + + + + + NBC News Pakistan Story + 1 audiocassettes + 1992 December 02 + 1992 December 03 + 1101 + + + + + New York Times: Clinton/ethics bill + 1 audiocassettes + 1992 November 03 + 1993 May 06 + 1099 + + + + + New Yorker Mag on Starr + 1 audiocassettes + 1996 April 02 + 1100 + + + + + Newscasts Ch 12 Flint 5 & 11 p.m.; Ch 5 Saginaw 6 p.m. + 1 videocassettes (VHS) + 1996 August 05 - 1996 August 07 + September 23 - September + 25 + 1058 + + + + + Newscasts Ch-12 Flint 5 & 11 p.m.; Ch-5 Saginaw 6 p.m. + 1 videocassettes (VHS) + 1996 August 21 - 1996 August 22 + October 15 - October + 18 + 1058 + + + + + Newscasts Flint Ch-12 5 p.m. & 11 p.m. Sag Ch-5 6 p.m.; Hilary + Clinton in Flint + 1 videocassettes (VHS) + 1996 August 12 - 1996 August 14 + October 07 - October + 08 + 1058 + + + + + Newscasts WJRT-TV-12 5 p.m. & 11 p.m., WNEM-TV-5 6 p.m. + 1 videocassettes (VHS) + August 23 - August + 26 + October 09 - October + 12 + 1058 + + + + + NewsTalk Television Patrick Halpin Segment. (c) 1995, Multimedia Talk + Channel, Inc. + 1 videocassettes (VHS) + 1995 June 14 + 1084 + + + + + Newsweek interview Clinton Foreign Policy + 1 audiocassettes + 1993 September 30 + 1099 + + + + + November 1995 Interviews: MI Public radio - budget; Bill Bonds/Cox on + Bosnia + 1 audiocassettes + 1995 November 20 + 1995 November 27 + 1100 + + + + + NPR ALL Things Considered CL Visit to Secret Atomic Cities + 1 audiocassettes + 1992 January 28 + 1101 + + + + + NPR 'Talk of the Nation' F. Wertheimer hits CL/lobbying bill + 93 + 1 audiocassettes + 1993(?) + 1099 + + + + + NYC - CL on GORE at VEEP CL on Bush out of gas + 1 audiocassettes + 1992 July 15 + 1101 + + + + + NYT/Dorothy Samuels + 1 audiocassettes + 1995 December 01 + 1100 + + + + + O'Brien AP interview + 1 audiocassettes + 1996 September 24 or 1996 September 21? + 1091 + + + + + Off-Air News - Senator Levin Press Conference: WWMT Channel 3 News; WUHQ + Channel 41 News; WOOD Channel 8 News. Duplicate + 1 videocassettes (VHS) + 1996 June 22 + 1085 + + + + + Offloading Statement Gov'tl Aff. Hearing/Bowsher + 1 audiocassettes + 1994 January 27 + 1099 + + + + + OM 91764 ADATS for LOS-FH Briefing cleared for Public Release. + Presentations and Communication. Martin Marietta - Video Tape Center. + 1 videocassettes (VHS) + 1991 April 01 + 1081 + + + + + One on One with Bill O'Keefe. Comcast Cablevision + 1 videocassettes (VHS) + 1994 January 04 + 1087 + + + + + Opendoor for regional press + 1 audiocassettes + 1996 February 02 + 1098 + + + + + Operation Expand K.I. Sawyer Sen. Carl Levin + 1 videocassettes (VHS; 0:08:00) + 1993 March + 1085 + + + + + Organ Donor Presser. Levin, Dorgan + 1 audiocassettes + 1996 April 23 + 1100 + + + + + Pad+Pencil - MI Press Corps + 1 audiocassettes + 1995 June 30 + 1100 + + + + + Pat Robertson + Gary Bauer - "700" Club. Talking about Lobby + Reform + 1 videocassettes (VHS) + 1994 October 04 + 1088 + + + + + Pat Towell re Bosnia, Zaire + 1 audiocassettes + 1996 November 14 + 1098 + + + + + Pat Towell. SASC + 1 audiocassettes + 1995 November 11 + 1100 + + + + + Pat Towell/CQ Interview on Defense Outlook + 1 audiocassettes + 1994 January 14 + 1099 + + + + + Patrick Slogan Newsday - Somalia + 1 audiocassettes + 1995 September 23 + 1100 + + + + + PBS Nightly Business Report CEO Pay + 1 audiocassettes + 1992 January 31 + 1101 + + + + + Pentagon Supplies Levin on 60 Minutes + 1 videocassettes (VHS) + 1992 January + 1055 + + + + + Perry/Defense Outlook AP Reporter - J. Diamond + 1 audiocassettes + 1994 January 24 + 1099 + + + + + Persian Gulf Radio Feed; CL MI News Network + 1 audiocassettes + 1991 January 17 + 1991 January 18 + 1099 + + + + + Phil Hart Master Levin Cable Show + 1 videocassettes (Betacam; 5:05:14) + 1996 July + 1062 + + + + + Pontiac Exp. Asst. Office Opening + 1 audiocassettes + 1995 September 07 + 1100 + + + + + Post Vote Press Conference Gift Ban Legislation + 1 audiocassettes + 1994 May 11 + 1097 + + + + + Pres Conference Levin/Kantor on Japan/Super 301 + 1 audiocassettes + 1994 August 18 + 1097 + + + + + Pres. Clinton on Sen Levin "What Works" Conf. + 1 videocassettes (VHS) + 1994 February 02 + 1076 + + + + + Presentation of Arms Control Award + 1 audiocassettes + 1996 February 01 + 1100 + + + + + Press [illegible] of Det Ed. + 1 audiocassettes + 1995 November 20 + 1098 + + + + + Press Bkfst on lobbying bill 2 of 2 + 1 audiocassettes + 1993 May 04 + 1099 + + + + + Press Breakfast on lobbying bill (1 of 2) + 1 audiocassettes + 1993 May 04 + 1099 + + + + + Press Briefing Lobby Reform + 1 audiocassettes + 1992 November 24 + 1101 + + + + + Press Briefing w. Mich. Delegation Tape 1 + 1 audiocassettes + 1995 January 09 + 1101 + + + + + Press Calls + 1 audiocassettes + 1995 November 21 + 1100 + + + + + Press Conference on Gift Ban Amendment w. Wellstone + 1 audiocassettes + 1995 January 04 + 1101 + + + + + Press Conference w. Bryant on lobby reform + 1 audiocassettes + 1994 October 06 + 1097 + + + + + Press Conference w. Bryant on Lobby reform + 1 audiocassettes + 1994 October 06 + 1097 + + + + + Press Conference w. Mitchell on Lobby Reform + 1 audiocassettes + 1994 October 06 + 1097 + + + + + Press Conference/Commerce Department Honorable John D. Dingell (Raw + Footage) + 1 videocassettes (VHS; 1:22:00) + 1995 August 07 + 1084 + + + + + Presser w/Bryan & Glenn on Def Authorization + 1 audiocassettes + 1995 December 13 + 1100 + + + + + Prison Industries bill + 1 audiocassettes + 1996 May 23 + 1100 + + + + + Procurement Tech Assistance Grants Conf. Call + 1 audiocassettes + 1996 September 19 + 1091 + + + + + PSA CL - Riegle - Rep. Davis. Wurtsmith seminar + 1 audiocassettes + 1991 August 09 + 1101 + + + + + Radar for U.P. Bud Seargant Mining Journal + 1 audiocassettes + 1994 June 17 + 1097 + + + + + Radio Actuality COPS funding for MI + 1 audiocassettes + 1995 February 07 + 1101 + + + + + Radio Actuality on 1st Day of 104th Congress + 1 audiocassettes + 1995 January 04 + 1101 + + + + + Radio Actuality on Browner Meeting + 1 audiocassettes + 1995 February 08 + 1101 + + + + + Radio Actuality on Defeat of Gift Ban Amendment + 1 audiocassettes + 1995 January 06 + 1101 + + + + + Radio Actuality on Gift Ban Amendment + 1 audiocassettes + 1995 January 05 + 1101 + + + + + Radio Actuality on Regulatory Moratorium + 1 audiocassettes + 1995 March 28 + 1101 + + + + + Radio Actuality on signing of Cong. Accountability + 1 audiocassettes + 1995 January 23 + 1101 + + + + + Radio Actuality: Kissinger on N. Korea + 1 audiocassettes + 1995 February 02 + 1101 + + + + + Radio Conf Call Healthcare & Small Business + 1 audiocassettes + 1994 March 22 + 1097 + + + + + Radio Conference Call + 1 audiocassettes + 1994 June 20 + 1097 + + + + + Radio Conference Call on Lobby Reform + 1 audiocassettes + 1994 September 26 + 1097 + + + + + Radio Conference Call: Gifts Kevorkian, Bosnia, G. Lakes + 1 audiocassettes + 1994 May 02 + 1097 + + + + + Radio Feed '96 Announcement + 1 audiocassettes + 1995 February 20 + 1101 + + + + + Radio Feed from Ozone Hearing + 1 audiocassettes + 25-Jul + 1097 + + + + + Radio Feed on Battle Creek Federal Center + 1 audiocassettes + 1995 February 28 + 1101 + + + + + Radio Feed on Crime Bill + 1 audiocassettes + 1994 August 30 + 1097 + + + + + Radio feed on Daschle as Min. Leader + 1 audiocassettes + 1994 December 02 + 1097 + + + + + Radio Feed on Daschle's Balanced Budget Bill + 1 audiocassettes + 1995 March 09 + 1101 + + + + + Radio Feed on Dole Delaying BBA vote + 1 audiocassettes + 1995 March 01 + 1101 + + + + + Radio Feed on Keeping BRAC funds for base clean-up + 1 audiocassettes + 1995 February 27 + 1101 + + + + + Radio Interviews - WJML, WWJ, WKAR, WGGL, WMPX, WMUK + 1 audiocassettes + 1995 January 19 + 1101 + + + + + Radio Press Conf. (WCEN, WATZ, WHAK) WUMU + 1 audiocassettes + 1992 February 21 + 1101 + + + + + Radio Press Conference Gifts, Bosnia + 1 audiocassettes + 1994 May 13 + 1097 + + + + + Radio Tour + 1 audiocassettes + 1995 December 20 + 1100 + + + + + Radio Tour + 1 audiocassettes + 1995 May 03 + 1101 + + + + + Radio Tour + 1 audiocassettes + 1995 May 03 + 1995 April 04 + 1101 + + + + + Radio Tour + 1 audiocassettes + 1995 May 17 + 1101 + + + + + Radio Tour + 1 audiocassettes + 1995 November 15 + 1100 + + + + + Radio Tour + 1 audiocassettes + 1995 October 25 + 1098 + + + + + Radio Tour + 1 audiocassettes + 1995 September 13 + 1100 + + + + + Radio Tour + 1 audiocassettes + 1996 April 17 + 1098 + + + + + Radio Tour + 1 audiocassettes + 1996 April 24 + 1100 + + + + + Radio Tour + 1 audiocassettes + 1996 February 01 + 1100 + + + + + Radio Tour + 1 audiocassettes + 1996 February 06 + 1100 + + + + + Radio Tour + 1 audiocassettes + 1996 February 28 + 1996 March 01 + 1100 + + + + + Radio Tour + 1 audiocassettes + 1996 June 05 + 1100 + + + + + Radio Tour + 1 audiocassettes + 1996 June 26 + 1100 + + + + + Radio Tour + 1 audiocassettes + 1996 May 08 + 1100 + + + + + Radio Tour + 1 audiocassettes + 1996 May 15 + 1100 + + + + + Radio Tour + 1 audiocassettes + 1996 September 13 + 1091 + + + + + Radio Tour + 1 audiocassettes + 1996 September 25 + 1091 + + + + + Radio Tour - A + 1 audiocassettes + 1996 July 19 + 1100 + + + + + Radio Tour - Church Burning Hart. tech R+D + 1 audiocassettes + 1996 June 19 + June 20 + 1100 + + + + + Radio Tour (Iraq) + 1 audiocassettes + 1996 September 04 + 1091 + + + + + Radio Tour Cont. + 1 audiocassettes + 1995 May 17 + 1101 + + + + + Radio Tour: AIP Bejing Route, Gas Tax, min wg. + 1 audiocassettes + 1996 May 01 + 1098 + + + + + Radio Tour: Assault weapons, budget, GM strike + 1 audiocassettes + 1996 March 21 + 1100 + + + + + Radio Tour: Bosnia, Budget + 1 audiocassettes + 1995 November 29 + 1100 + + + + + Radio Tour: Bosnia, Lob ref., Reg. Waco. + 1 audiocassettes + 1995 July 19 + 1100 + + + + + Radio Tour: Budget - (loans, medicare) + 1 audiocassettes + 1995 October 25 + 1995 September 20 + 1995 September 28 + 1098 + + + + + Radio Tour: Budget, CG, Trade, Presid. Politics + 1 audiocassettes + 1995 May 24 + 1101 + + + + + Radio Tour: Budget, medicare, etc. + 1 audiocassettes + 1995 September 27 + 1098 + + + + + Radio Tour: Budget/Shutdown III? COPS, D.C., M.E. + 1 audiocassettes + 1996 March 14 + 1100 + + + + + Radio Tour: Dole. Bud. Res + 1 audiocassettes + 1996 June 11 + 1100 + + + + + Radio Tour: Environ., Coast Guard, [illegible], Lob/Gift, + Bosnia + 1 audiocassettes + 1995 August 02 + 1100 + + + + + Radio Tour: Foster, GLI, Lobby, Trade + 1 audiocassettes + 1995 June 21 + 1100 + + + + + Radio Tour: Gas tax; min wage; budget; welfare + 1 audiocassettes + 1996 May 22 + 1100 + + + + + Radio Tour: Iraq, Agnew, Trade, edu + 1 audiocassettes + 1996 September 18 + 1091 + + + + + Radio Tour: med, Education, Bosnia, Nunn + 1 audiocassettes + 1995 October 11 + 1100 + + + + + Radio Tour: medicare, Budget, Bosnia, Term lim, "March" + 1 audiocassettes + 1995 October 18 + 1100 + + + + + Radio Tour: NH Primaries, Education, budget. Dave Letterman + 1 audiocassettes + 1996 February 22 + 1100 + + + + + Radio Tour: NRA, Japan, Budget (GOP) + 1 audiocassettes + 1995 May 10 + 1101 + + + + + Radio Tour: Super Jr. Tues/Education, CR, Israel, Cuba, + Telecom. + 1 audiocassettes + 1996 March 06 + 1100 + + + + + Radio Tour: TARDEC, Welfare, Commerce, medic. + 1 audiocassettes + 1995 August 09 + 1100 + + + + + Radio Tour: Trade Agreement/Budget + 1 audiocassettes + 1995 June 29 + 1100 + + + + + Radio Tour: Trade, min wage. K-K HC bin + 1 audiocassettes + 1996 April 17 + 1100 + + + + + Radio Tour: Vietnam, Bosnia, Def. Bill + 1 audiocassettes + 1995 July 12 + 1100 + + + + + Radio Tour: welfare, terrorism, waste + 1 audiocassettes + 1996 July 31 + 1091 + + + + + Raw Audio Cut: Feed on GM, Trade, Economy + 1 audiocassettes + 1992 February 26 + 1101 + + + + + Reality check on the budget + 1 videocassettes (VHS) + 1995 June 29 + 1088 + + + + + Reax to Clinton Press Conference + 1 audiocassettes + 1994 August 03 + 1097 + + + + + Reax to NATO Announcement on Bosnia + 1 audiocassettes + 1994 February 09 + 1099 + + + + + Red Wings Congrats; Foster Interview w/Good Day USA + 1 audiocassettes + 1995 June 15 + June 22 + 1101 + + + + + Reg Reform Briefing + 1 audiocassettes + 1995 July 14 + 1100 + + + + + Regional Open Door + 1 audiocassettes + 1995 April 10 + 1101 + + + + + Remarks on KI Sawyer Resolution to WLUC-TV & Thomson + Newsp. + 1 audiocassettes + 1995 March 24 + 1101 + + + + + Richard Burke NYT Gift Ban interview/FDR + 1 audiocassettes + 1994 May 11 + 1097 + + + + + Riegle: CNN Newsmaker Sat., NBC News Sun. SRS (A) 14479 + 1 videocassettes (VHS; 1:00:00) + 1992 January 13 + 1089 + + + + + Romeo Ramblings with Lois Appel, Guest. Senator Carl Levin + 1 videocassettes (VHS; 0:30:25) + 1991 December 06 + 1076 + + + + + Royal Oak Post Office; Muskegon Coast Guard + 1 audiocassettes + 1996 July 11 + 1996 July 11 + 1100 + + + + + Safe Kids Address; Budget, Istook, Reg Reform + 1 audiocassettes + 1995 November 14 + 1100 + + + + + SASC Bosnia/Yugoslavia Hrg. + 1 audiocassettes + 1992 July + 1101 + + + + + SASC Coalition Defense Army Modernization 1 of 2 + 1 audiocassettes + 1994 May 03 + 1097 + + + + + SASC Hearing Clinton Peacekeeping Policy 2 of 2 + 1 audiocassettes + 1994 April 13 + 1097 + + + + + SASC Hrg. Kissinger (Korea etc) + 1 audiocassettes + 1995 February 02 + 1101 + + + + + SASC-subcttee Hearing Clinton Peace Keeping Policy 1 of 2 + 1 audiocassettes + 1994 April 13 + 1097 + + + + + Sat. Feed - Clinton Speech on his Eco. Budget Bill + 1 audiocassettes + 1993 August 03 + 1099 + + + + + Sat. Feed/Somalia Press Conf. + 1 audiocassettes + 1993 December 15 + 1099 + + + + + Saudi Hearing SASC; Minimum Wage Sat feed + 1 audiocassettes + 1996 July 09 + 1100 + + + + + Sen . Levin: SD 226. 10AM TV Violence. 0000. Senate Recording Studio + (202)224-4977 + 1 audiocassettes + 1993 June 08 + 1099 + + + + + Sen Carl Levin at Lawrence Tech Univ.: Hybrid Electric + Vehicle + 1 videocassettes (U-matic; 0:14:00) + 1993 July 06 + 1052 + + + + + Sen Levin Pro-NAFTA AD. Grunwald, Eskew + 1 videocassettes (VHS; 0:00:30) + 1993 November 10 + 1072 + + + + + Sen Levin Studio Shoot - Wrap Around's Tape #1 + 1 videocassettes (Betacam) + 1995(/1996) January + 25 + 1062 + + + + + Sen Levin: Great Lakes Water Initiative + 1 videocassettes (U-matic; 0:13:10) + 1993 July 02 + 1052 + + + + + Sen. Binghaman on SASC - Alb. Journal + 1 audiocassettes + 1995 October 23 + 1100 + + + + + Sen. Carl Levin (Great Lakes Initiative) + 1 videocassettes (VHS) + 1996 April 03 + 1062 + + + + + Sen. Levin - Duncan Floor Statement + 1 audiocassettes + 1995 May 17 + 1101 + + + + + Sen. Levin. Tribute to Ron (Rob) Brown + 1 audiocassettes + 1996 April 10 + 1100 + + + + + Sen. Levin: COPS Conf. Call + 1 audiocassettes + 1996 March 27 + 1100 + + + + + Senate Approp. DoD Inventories + 1 audiocassettes + 1992 February 19 + 1101 + + + + + Senator Carl Levin VHS transfers, Harriman Communications Center, + Washington, DC + 1 videocassettes (Betacam) + 1996 January 24 + 1062 + + + + + Senator Levin - Address to: Ottawa Dems, Address to: Grand Rapids Dems. + Harriman Communications Center + 1 videocassettes (VHS; 0:11:00) + 1992 September 25 + 1072 + + + + + Senator Levines Office: Katy McShea + 1 audiocassettes + 1994 March 07 + 1097 + + + + + Senator Levines Office: Ms. Kathy McShea + 1 audiocassettes + 1994 April 14 + 1097 + + + + + Side A: Carl & Sandy on J.P. congratulating him on 30 years; Side B: + Int w/NY Times Re: Jordan College + 1 audiocassettes + 1994 December 08 + 1994 January 05 + 1099 + + + + + Society of American Engineers. speech: Partners for Progress + 1 audiocassettes + 1994 March 29 + 1097 + + + + + Solid Waste + 1 audiocassettes + 1996 July 27 + 1100 + + + + + Somalia Trip Briefing Glass Ceiling - Women's payscale (CL + staff) + 1 audiocassettes + 1993 December 15 + 1099 + + + + + Sound of Video Uplink EPA/Browner Press conf on Glakes + 1 audiocassettes + 1993 March 31 + 1099 + + + + + Southern Wayne County Chamber Bkfst. + 1 audiocassettes + 1992 September 14 + 1101 + + + + + Spotlight #4/4053 Air NAFTA + 1 videocassettes (VHS) + 1993 November 14 + 1085 + + + + + Stan Crock. Business WK Lobby. Gift & CFR + 1 audiocassettes + 1995 December 05 + 1100 + + + + + Stanley Cup Payoff. CL. Lautenberg. Bradley + 1 audiocassettes + 1995 June 27 + 1100 + + + + + State of the Union React Sat Feed + 1 audiocassettes + 1994 January 25 + 1099 + + + + + State of the Union Reax + 1 audiocassettes + 1995 January 24 + 1101 + + + + + State of Union Radio Tour + 1 audiocassettes + 1996 January 24 + 1100 + + + + + State of Union Reax + 1 audiocassettes + 1993 February 17 + 1099 + + + + + State of Union/ Bob Vitale on the UP + 1 audiocassettes + 1996 January 23 + 1996 February 15 + 1100 + + + + + State Party Convention Speech + 1 audiocassettes + 1993 February 07 + 1099 + + + + + Step-up interview for Brinkley on Indep. Counsel Law + 1 audiocassettes + 1995 March 17 + 1101 + + + + + Steve Greenhouse, NYT Budget Deficit + 1 audiocassettes + 1992 March 18 + 1101 + + + + + Stock Options Briefing FASB Proposal (1 of 2) + 1 audiocassettes + 1994 March 03 + 1097 + + + + + Stock Options Briefing FASB Proposal (2 of 2) + 1 audiocassettes + 1994 March 03 + 1097 + + + + + Student Briefing on Edu Victory + 1 audiocassettes + 1996 March 13 + 1100 + + + + + Tape 2 - 1996 Archives + 1 videocassettes (VHS) + undated + 1062 + + + + + Taped Speech to MI Water Environment Association on Great Lakes + Initiative + 1 audiocassettes + 1993 July 07 + 1099 + + + + + Tart Cherries Rx; Co-passes Senate; Clinton's nuke test ban + 'rx + 1 audiocassettes + 1995 July 14 + 1995 August 10 + August 11 + 1098 + + + + + Teleconference + 1 audiocassettes + 1991 December 18 + 1101 + + + + + Teleconference + 1 audiocassettes + 1991 November 01 + 1101 + + + + + Teleconference + 1 audiocassettes + 1991 November 06 + 1101 + + + + + Teleconference + 1 audiocassettes + 1992 August 10 + 1099 + + + + + Teleconference + 1 audiocassettes + 1992 February 21 + 1101 + + + + + Teleconference + 1 audiocassettes + 1992 June 05 + 1101 + + + + + Teleconference + 1 audiocassettes + 1992 November 24 + 1101 + + + + + Teleconference + 1 audiocassettes + 1993 May 28 + 1099 + + + + + Teleconference: CL Reax to failed US Japan Trade Summit + 1 audiocassettes + 1994 February 11 + 1099 + + + + + Teleconference: Levin on Letter to Clinton on Jap. Trade + 1 audiocassettes + 1994 February 18 + 1099 + + + + + Tim Malloy MI Primary. line vote + 1 audiocassettes + 1992 March 18 + 1101 + + + + + Today Show. Crystal Rivel seg. 10/29/91 Correspondent: Rick Davis. + Producer: Sam Hurst + 1 videocassettes (VHS) + 1992 March 16 + 1991 October 29 + 1076 + + + + + Tom Diemer PD + 1 audiocassettes + 1995 July 21 + 1100 + + + + + Torch Lake/Engler/Manistique Prison + 1 videocassettes (VHS) + 1992 September + 1057 + + + + + Tumulty office holder's Acct + 1 audiocassettes + 1996 October 01 + 1091 + + + + + TV 6 News - 6 pm News - Levin FAA Amend. for KIS Top Story Fast Forward + THRU Natl News, TV 6 Extra (7 pm) to 11 pm News @ Mid-way - Same Story + 1 videocassettes (VHS) + 1994 June 16 + 1057 + + + + + TV Uplink on Unfunded Mandates (not sent) + 1 audiocassettes + 1995 January 05 + 1101 + + + + + U.S./Japan Trade, Levin/Mondale + 1 audiocassettes + 1994 June 10 + 1097 + + + + + UN Hearing Continued + 1 audiocassettes + 1992 June 09 + 1099 + + + + + Unemployment Bill Full Speech + 1 audiocassettes + 1992 June 19 + 1101 + + + + + Unfunded Mandates + 1 audiocassettes + 1993 November 03 + 1099 + + + + + Unfunded Mandates presser w. Levin & Lieberman + 1 audiocassettes + 1995 January 12 + 1101 + + + + + United States Senator Carl Levin CNN (7/15) CBS (7/16) + 1 videocassettes (VHS) + June 15 + June 16 + 1052 + + + + + UofM Hockey at WH + 1 audiocassettes + 1996 May 06 + 1100 + + + + + Uplink & Radio Actuality from Great Lakes Initiative Press + Conf. + 1 audiocassettes + 1995 March 13 + 1101 + + + + + Uplink & Radio Feed on Bal Budg. Amend Defeat + 1 audiocassettes + 1995 March 02 + 1101 + + + + + Uplink/Radio feed on Welfare Reform + 1 audiocassettes + 1995 January 25 + 1101 + + + + + US Japan Auto Trade, Janet Fix (Freep) - Auto Trade Yuri (AP) + 1 audiocassettes + 1996 September 13 + 1092 + + + + + US/Japan Trade Foreign Rel. Hrg + 1 audiocassettes + 1995 June 13 + 1101 + + + + + USTR Hearing + 1 audiocassettes + 1995 June 08 + 1101 + + + + + Violence in Television hearing + 1 audiocassettes + 1993 October 20 + 1107 + + + + + Vonda C Grant ("Plagiarism") Patent Laws and Inventors; Cont. on side "B" + of (Radio Interview) + 1 audiocassettes + 1993 September 09 + 1098 + + + + + VS Autoparts Hearing + 1 audiocassettes + 1994 February 03 + 1099 + + + + + WAAM-NAFTA-autos + 1 audiocassettes + 1993 May 27 + 1099 + + + + + Walsh Iran/Contra Report Reax Teleconference + 1 audiocassettes + 1994 January 18 + 1099 + + + + + War Powers Act Review Press Conf. + 1 audiocassettes + 1993 October 22 + 1099 + + + + + War+Pieces + 1 videocassettes (VHS) + undated + 1081 + + + + + Washington Post. Bradley Graham/SASC markup + 1 audiocassettes + 1996 May 02 + 1096 + + + + + WCHB Radio interview + 1 audiocassettes + 1995 March 19 + 1101 + + + + + WDET Detroit Focus: Hope + 1 audiocassettes + 1992 May 26 + 1101 + + + + + WDIV/Air Force Academy + 1 audiocassettes + 1996 March 01 + 1100 + + + + + Weekly Press Conf. + 1 audiocassettes + 1991 November 06 + 1101 + + + + + Weekly Radio Conference Call WKNW, WSGW, WOOD, WXYT, WHFB, + WKHM + 1 audiocassettes + 1995 January 11 + 1101 + + + + + Weekly Radio Interviews + 1 audiocassettes + 1995 February 01 + 1101 + + + + + Weekly Radio Interviews + 1 audiocassettes + 1995 February 08 + 1101 + + + + + Weekly Radio Interviews + 1 audiocassettes + 1995 February 15 + 1101 + + + + + Weekly Radio Interviews + 1 audiocassettes + 1995 March 01 + 1101 + + + + + Weekly Radio Interviews + 1 audiocassettes + 1995 March 09 + 1101 + + + + + Weekly Radio Interviews + 1 audiocassettes + 1995 March 15 + 1101 + + + + + Weekly Radio Interviews + 1 audiocassettes + 1995 March 22 + 1101 + + + + + Weekly Radio Interviews - WIOG/WSGW, WSOO, WOOD, WMTE + 1 audiocassettes + 1995 March 29 + 1101 + + + + + Weekly Radio Interviews w. WWJ, WMUK, MI NewsNet, WOOD, WJR + 1 audiocassettes + 1995 April 05 + 1101 + + + + + Weekly Radio State of Union Reax + 1 audiocassettes + 1995 January 25 + 1101 + + + + + Weekly Teleconf. + 1 audiocassettes + 1991 November 06 + 1991 October 03(?) + 1101 + + + + + Welfare Reform Presser + 1 audiocassettes + 1995 December 21 + 1100 + + + + + Welfare Reform psg Press Conf. Call + 1 audiocassettes + 1996 July 23 + 1100 + + + + + Welfare Reform Statement + 1 audiocassettes + 1995 September 14 + 1100 + + + + + Welfare Reform, Lori Montgomery + 1 audiocassettes + 1996 August 02 + 1091 + + + + + Welfare vote + 1 audiocassettes + 1995 September 19 + 1100 + + + + + Welfare Work Requirement + 1 audiocassettes + 1996 July 22 + 1100 + + + + + West Mich Ozone + 1 audiocassettes + 1996 June 14 + 1100 + + + + + WH Travel Billy Dab - legal fees + 1 videocassettes (VHS) + 1996 + 1062 + + + + + WJIM ANJF(?) Levin Spot & Discussion + 1 audiocassettes + 1996 September 19 + 1107 + + + + + WJR - Focus + 1 audiocassettes + 1993 December 22 + 1099 + + + + + WJR - J.P. McCarthy GATT + 1 audiocassettes + 1994 December 01 + 1097 + + + + + WJR News 11:15 AM 3:00 Random Acts of Kindness. RTV + 1 audiocassettes + 1996 March 22 + 1085 + + + + + WJR Radio/Detroit, The Morning Show. Top Ten List/Sen. Levin + 1 audiocassettes + 1996 February 22 + 1085 + + + + + WJR Warren Price Show + 1 audiocassettes + 1993 August 09 + 1991 June 18 + 1099 + + + + + WKXM, Scottsdale, AZ Levin on Mideast, Bosnia + 1 audiocassettes + 1994 March 05 + 1097 + + + + + WKZO, Ch2 Det. Great Lakes Media Battle Creek, Iraq Missile + Hit + 1 audiocassettes + 1993 June 28 + 1099 + + + + + WMUK - CL on Aspin/Inman + 1 audiocassettes + 1993 December 16 + 1099 + + + + + WMZN Polish Radio Int. + 1 audiocassettes + 1994 January 04/1994 January 14(?) + 1099 + + + + + WODJ: Radiothon for Children's Assessment Ctr. + 1 audiocassettes + 1993 February 16 + 1099 + + + + + WOOD Channel 8 + 1 videocassettes (VHS) + 1995 + 1084 + + + + + WOOD-TV Channel 8 6+11 pm. 6:00 - Carl on School to Work; 11:00 - + Haiti + 1 videocassettes (VHS) + 1994 July 16 + 1057 + + + + + WOTV Channel 41 News Report Re:Cress Case. (Battle Creek) + 1 videocassettes (VHS; 0:05:00) + 1996 + 1095 + + + + + WQLV Am 1500 Joel Hudson Show; waste + 1 audiocassettes + 1992 June 29 + 1101 + + + + + WSGW Radio Art Lewis Show + 1 audiocassettes + 1993 January 05 + 1099 + + + + + WSJ Paztor: F-22 + 1 audiocassettes + 1992 March 03 + 1101 + + + + + WSNQ Gaylord + 1 audiocassettes + 1991 December 19 + 1101 + + + + + WTAG-MA: Anti-terrorism (Atlanta, Saudi) + 1 audiocassettes + 1996 July 30 + 1091 + + + + + WTCM Traverse City + 1 audiocassettes + 1991 December 20 + 1101 + + + + + WWJ 950 Detroit Bloomfield + 1 audiocassettes + 1991 October 02 + 1096 + + + + + WXYT - CEO Pay; WWJ-CEO Pay. M1 Tank, DoD inventory + 1 audiocassettes + 1992 January 30 + 1101 + + + + + WXYT "Joe Wade Formicola" on Empowerment Zone + 1 audiocassettes + 1994 August 21 + 1097 + + + + + WXYZ on Helms + 1 videocassettes (VHS) + 1994 November 22 + 1057 + + + + + WXYZ TV Special on Militia; WDIV/WLNS Terrorism/militia + 1 audiocassettes + 1995 April 26 + 1995 April 27 + 1101 + + + + + WXYZ-TV Detroit Spotlight on the News - U.S./Japan Trade War - Rep. S. + Levin & Prof. G. Saxonhouse + 1 videocassettes (VHS) + 1994 January + 1096 + + + + + WZZM-TV Carl's Crime bill press conference + 1 videocassettes (VHS) + 1994 August 29 + 1087 + + + + + Year-ender + 1 audiocassettes + 1996 October 01 + 1091 + + + + + Yearender 1993 + 1 audiocassettes + 1993 + 1099 + + + + + Year-ender 1995 + 1 audiocassettes + 1995 December 18 + 1100 + + + + + Democratic Convention + 1 videocassettes (VHS) + 1992 + 1107 + + + +
    + + + 1997-2002 + + +

    (105th-107th Congress)

    +
    + + + Administrative and Office Files + 1985-2003 + + + + Action files + + + + Self-addiction case -- Dr. Neal Sakwa + 1997 + 111 + + + + + Tulane Amistad Research Center -- Levin archive, (Civil + rights) + 1999-2002 + 111 + + + + + + Armed Services Committee (SASC; H. Galen) + + + + 1997 + 177 + + + + + 1998 + 177 + + + + + 1999 + 177 + + + + + 2000 + 177 + + + + + 2001 + 177 + + + + + 2001-2002 + 177 + + + + + Appointment requests + 1997 + 177 + + + + + VIP Letters + 1997-2001 + 177 + + + + + + Carl's writings + + + + 4 folders + 1997 + 177 + + + + + 3 folders + 1998 + 177 + + + + + 2 folders + 1999 + 177 + + + + + undated + 177 + + + + + + Casework + + + + April 1997-January 1999 + 177 + + + + + June-August 1997 + 177 + + + + + + Correspondence + + + + A + + + + 1996-1997 + 177 + + + + + 1998 + 177 + + + + + 2000 + 177 + + + + + 2001-2002 + 177 + + + + + + Adoption + 1998 + 177 + + + + + The American Israel Public Affairs Committee (AIPAC) + 2000 + 2002 + 177 + + + + + Air Force + 1997-1998 + 177 + + + + + Air Force + 2000 + 2002 + 177 + + + + + American Israel Public Affairs Committee (AIPAC) + 1995-1998 + 177 + + + + + American Israel Public Affairs Council + 1999-2000 + 177 + + + + + Arab Americans + October 5, + 1999 + 177 + + + + + Arms Control Observer Group + 1996-1997 + 177 + + + + + Army + 1997-1998 + 177 + + + + + Aspen Institute + + + + 1999-2002 + 177 + + + + + 2001 + 177 + + + + + + Attorney General + 1995-1997 + 177 + + + + + Auctions + + + + 1997 + 177 + + + + + 2000 + 177 + + + + + 2000-2001 + 177 + + + + + 2001-2002 + 177 + + + + + + B + + + + 1997 + 178 + + + + + 1998 + 178 + + + + + 1999 + 178 + + + + + 2000 + 178 + + + + + 2001 + 178 + + + + + 2002 + 178 + + + + + + Barr, David + 1999 + 178 + + + + + Beaver Is + 1991 + 178 + + + + + C + + + + 1996-1997 + 178 + + + + + 1998 + 178 + + + + + 1999 + 178 + + + + + 2000 + 178 + + + + + 2001 + 178 + + + + + 2001-2002 + 178 + + + + + + Capitol Historical Society + 1987-1996 + 178 + + + + + Carter Center + 1985-1996 + 178 + + + + + Chaplain + + + + 1998-2001 + 178 + + + + + November 18 + 178 + + + + + + Chrysler + + + + 1996-1998 + 178 + + +

    (Includes a photograph)

    +
    +
    + + + 1998-2001 + 178 + + + + + Daimler-Chrysler + March-May 2002 + 178 + + +
    + + + Clinton, Hillary Rodham + 1995-2000 + 178 + + + + + Central Intelligence Agency (CIA) + 1998 + 178 + + + + + Cohn, Avern (Judge) + + + + 1989-1997 + 178 + + + + + 1998 + 178 + + + + + 1997-1999 + 178 + + + + + 2001 + 178 + + + + + + Colleagues + + + + 1997 + 178 + + + + + 1998 + 178 + + + + + 1999 + 178 + + + + + 2000 + 178 + + + + + December 2000-2001 + 179 + + + + + 2000-2002 + 179 + + + + + + Colleges and Universities + + + + 1997 + 179 + + + + + 1998 + 179 + + + + + 1999 + 179 + + + + + 2000 + 179 + + + + + 2001 + 179 + + + + + 2002 + 179 + + + + + + Congratulations + + + + 1998 + 179 + + + + + 1999 + 179 + + + + + December 1999-2000 + 179 + + + + + Election + 1998-2000 + 179 + + + + + 2001 + 179 + + + + + + Congratulations and thank you -- re-election + 2002 + 179 + + + + + Courtesy passes + + + + 2000-2001 + 179 + + + + + 2002 + 179 + + + + + + D + + + + 1997 + 179 + + + + + 1998 + 179 + + + + + 1999 + 179 + + + + + 2000 + 179 + + + + + 2001 + 179 + + + + + 2002 + 179 + + + + + + Daschle, Tom + 1999 + 180 + + +

    (Majority Leader)

    +
    +
    + + + Delayed mail + 2001-2002 + 180 + + +

    (delayed because of anthrax scare)

    +
    +
    + + + Democratic National Committee + 2002 + 180 + + + + + Democratic Senatorial Campaign Committee + + + + 1997-1999 + 180 + + + + + 2000 + 180 + + + + + + Democratic Steering and Coordination Committee + 2000-2001 + 180 + + + + + Department of Defense (DOD) + + + + 1997-1998 + 180 + + + + + 1999 + 180 + + + + + 1999-2000 + 180 + + + + + 2000-2002 + 180 + + + + + + Detroit 300 + 1999 + 180 + + + + + Detroit Riverfront + July 2001 + 180 + + + + + Driker, Eugene + 1995-1999 + 180 + + + + + E + + + + 1998 + 180 + + + + + 1999 + 180 + + + + + 2000-2001 + 180 + + + + + 2001-2002 + 180 + + + + + + Education technology meeting memo + 1998 + 180 + + + + + Embassies + + + + 1997 + 180 + + + + + 1999 + 180 + + + + + 2000 + 180 + + + + + 2001 + 180 + + +

    (Includes photograph)

    +
    +
    + + + 2001-2002 + 180 + + +
    + + + Energy Conversion Devices (ECD) + 1996-1999 + 180 + + + + + F + + + + 1997 + 180 + + + + + 1998 + 180 + + + + + 1999 + 180 + + + + + 2000 + 180 + + + + + 2001 + 180 + + + + + 2002 + 180 + + + + + + Federal Bureau of Investigation (FBI) + 2001-2002 + 180 + + + + + Focus: HOPE + 1997-1998 + 180 + + +

    (Includes photographs)

    +
    +
    + + + Focus Hope + 1999-2000 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Ford Motor Company + + + + 1995-1998 + 180 + + + + + 1999-2001 + 180 + + + + + + Foreign languages + 1989-2001 + 180 + + + + + G + + + + 1997 + 180 + + + + + 1998 + 180 + + + + + 1999 + 180 + + + + + 1999-2001 + 180 + + + + + 2002 + 180 + + + + + + General Motors + 1998-2001 + 180 + + +

    (GM)

    +
    +
    + + + Gore, Al + + +

    (Vice President)

    +
    + + + 1998-1999 + 181 + + + + + 1999-2000 + 181 + + +

    (Includes photograph)

    +
    +
    +
    + + + Gore, Tipper + 1998 + 181 + + + + + Guardian Industries + 1994-2000 + 181 + + + + + H + + + + 1996-1997 + 181 + + + + + 1998 + 181 + + + + + 1999 + 181 + + + + + 1999-2001 + 181 + + + + + 2002 + 181 + + + + + + Hemelin, David + 1998-2000 + 181 + + + + + Honorary chairmanships + 2000 + 181 + + + + + Honorary chairmanships and memberships + 1997 + 181 + + + + + I + + + + 1998 + 181 + + + + + 1999 + 181 + + + + + 2001-2002 + 181 + + + + + + Independent Counsel + 1998-1999 + 181 + + + + + Intelligence Committee + March 1, 1999 + 181 + + +

    (SSCI)

    +
    +
    + + + Israel and Jewish + + + + 1997 + 181 + + + + + 1998 + 181 + + + + + 1999 + 181 + + + + + 2000 + 181 + + + + + 2000-2001 + 181 + + + + + 2002 + 181 + + + + + + J + + + + 1997 + 181 + + + + + 1998 + 181 + + + + + 1999 + 181 + + + + + 2000 + 181 + + + + + 2001-2002 + 181 + + + + + + Jewish Cemetery -- Mubark + 2002 + 181 + + + + + Judicial selection + + + + District Court + 1997-1998 + 181 + + + + + District Court process + 1998-1999 + 181 + + + + + + Judiciary + + + + November 1996-1997 + 181 + + + + + 1998 + 181 + + + + + 1999 + 181 + + + + + 2000-2001 + 181 + + + + + + Joint Chiefs of Staff + 1996-2000 + 182 + + + + + K + + + + 1997 + 182 + + +

    (Includes photographs)

    +
    +
    + + + 1998 + 182 + + + + + 1999 + 182 + + + + + 1999-2000 + 182 + + + + + 2001 + 182 + + + + + 2001-2002 + 182 + + +
    + + + Klein, Emery + + + + 1998-1999 + 182 + + + + + 1999-2001 + 182 + + + + + + L + + + + 1997 + 182 + + + + + 1998 + 182 + + + + + 1999 + 182 + + + + + 2000-2001 + 182 + + + + + 2001-2002 + 182 + + + + + + Legal + 1997 + 182 + + + + + Legal defense funds + 1999 + 182 + + + + + Carl letters + 2002-2003 + 182 + + + + + Library of Congress + + + + 1994-2001 + 182 + + + + + 1999-2002 + 182 + + + + + + Lott, Trent + 1998-1999 + 182 + + +

    (Majority Leader)

    +
    +
    + + + M + + + + 1997 + 182 + + + + + 1998 + 182 + + + + + 1999 + 182 + + + + + 1999-2001 + 182 + + + + + 2002 + 182 + + + + + + Macedonia + 1998-2001 + 182 + + + + + Majority Leader + 2001-2002 + 182 + + + + + Michigan House of Representatives + 1997 + 182 + + + + + Michigan Senate + 1997-2002 + 182 + + + + + Military-foreign invitations + 2000 + 182 + + + + + Miscellaneous + + + + July 1997 + 182 + + + + + September 1997 + 182 + + + + + 1998 + 182 + + + + + 1999 + 182 + + + + + 2000 + 182 + + + + + July-December 2000 + 182 + + + + + 2 folders + 2001 + 183 + + + + + + Miscellaneous issues -- letters of support + 4 folders + 2001-2003 + 183 + + + + + Mc + 1998 + 183 + + + + + N + + + + 1996-1997 + 183 + + + + + 1998 + 183 + + + + + 1999 + 183 + + + + + 1999-2002 + 183 + + + + + + Navy + + + + 1997-1998 + 183 + + + + + 1999-2002 + 183 + + + + + + O + + + + 1997-1998 + 183 + + + + + 1999 + 183 + + + + + 2002 + 183 + + + + + + P + + + + 1997 + 183 + + + + + 1998 + 183 + + + + + 1999 + 183 + + + + + 1999-2001 + 183 + + + + + 2002 + 183 + + + + + + Pages + + + + 1997-2001 + 183 + + + + + 2001-2002 + 183 + + + + + + Panama Invasion of 1989 news stories + 1989-1991 + 183 + + + + + Personal-miscellaneous + 2001-2002 + 183 + + + + + Polish Cable TV project + 1990-2001 + 183 + + + + + Political + + + + 1998 + 183 + + + + + 1999 + 183 + + + + + 1999-2000 + 183 + + + + + 2001 + 184 + + + + + 2002 + 184 + + + + + + Postal service + + + + 1997-1998 + 184 + + + + + 1999-2002 + 184 + + + + + + Q + 1999 + 184 + + + + + R + + + + 1994 + 1997 + 184 + + + + + 1998 + 184 + + + + + 1999 + 184 + + + + + 1999-2001 + 184 + + + + + 2002 + 184 + + + + + + Red Wings + 1998 + 2003 + 184 + + + + + Republicans + 1999 + 184 + + + + + Russia + 1998-2002 + 184 + + + + + S + + + + 1997 + 184 + + + + + 1998 + 184 + + + + + 1999 + 184 + + + + + 1999-2000 + 184 + + + + + 2001 + 184 + + + + + 2002 + 184 + + + + + + Shaugnessy time capsule from + 2001 + 184 + + +

    (Just after September 11, 2001 attacks, Ms. Rose Shaughnessy's Roseville, + Michigan pre-school class made patriotic art projects and included three + photographs of the children for a time capsule)

    +
    +
    + + + Stamp collecting + 1992-1999 + 184 + + + + + State Department + + + + 1997 + 184 + + + + + 1998-2000 + 184 + + + + + 1995-1996 + 1113 + + + + + + Supreme Court + 1997-2001 + 184 + + + + + T + + + + 1997 + 1995 + 184 + + + + + 1998 + 184 + + + + + 1999 + 184 + + + + + 1999 + 184 + + + + + 2001 + 184 + + + + + 2002 + 184 + + + + + + Thank yous -- Carl + 1998-1999 + 184 + + + + + Tina-contributions + 2001-2002 + 184 + + + + + Tritten, Bob + 1986-1993 + 184 + + +

    (District Extension Horticultural and Marketing Agent)

    +
    +
    + + + U + + + + 1998 + 184 + + + + + 2001-2002 + 184 + + + + + + V + + + + 1997-1998 + 184 + + + + + 1999 + 184 + + + + + 2000-2001 + 184 + + + + + 2002 + 184 + + +

    (Includes September 18 and 21, 1987 Chuck votes and gossip memos-Levin missed + some votes because of a leg infection)

    +
    +
    +
    + + + VIP + 1997-1998 + 184 + + +

    (Includes Gore, Bill Clinton, Madeleine Albright, JFK Jr)

    +
    +
    + + + W + + + + 1997 + 185 + + + + + 1998 + 185 + + + + + 1999 + 185 + + + + + 1999-2001 + 185 + + + + + 2002 + 185 + + + + + + Wellstone, Paul + October 2002 + 185 + + + + + White House + + + + Cabinet + + + + 1997 + 185 + + + + + 1998 + 185 + + + + + 1999 + 185 + + + + + 1999-2000 + 185 + + + + + 2001 + 185 + + + + + 2002 + 185 + + + + + + Children's Health Act of 2000-H.R.4365 + October 2000 + 185 + + + + + Endorsements + 1998-2000 + 185 + + + + + Invitations and meetings + 1998-1999 + 185 + + + + + Invitations and meetings + 2000 + 185 + + + + + Miscellaneous + + + + 1997 + 185 + + + + + 1998-1999 + 185 + + + + + 1999-2001 + 185 + + + + + 2001-2006 + 1114 + + +

    (Includes photographs with President George W. Bush)

    +
    +
    +
    + + + Responses + 1997-2000 + 185 + + +
    + + + Winter Olympics + 2002 + 185 + + + + + Y + + + + 1998 + 185 + + + + + 2002 + 185 + + + + + + X and Z + 1999-2002 + 185 + + +
    + + + Field office-Detroit + + + + Correspondence-Henry Frenkel + 1995 + 185 + + + + + McNamara building and GSA problems + 1995 + 1049 + + + + + Memos-Joe Dresner + November 1995 + 185 + + + + + + Field offices + + + + Invitations for Carl Levin's Birthday Party, (Detroit + office) + July 1999 + 185 + + + + + Legal rulings + 1997 + 185 + + + + + Yearend mailing + 1999 + 185 + + + + + + Governmental Affairs Committee (GAC; H. Galen) + + + + 1997 + 185 + + + + + 1999 + 185 + + + + + 2000 + 185 + + + + + 2001 + 185 + + + + + 2001-2002 + 185 + + + + + + Guest books + + + + May 1996-April 1998 + 185 + + + + + April 1998-April 2002 + 186 + + + + + June 1999-August 2000 + 186 + + + + + + InterTrac creation + 2002-2003 + 186 + + + + + Issues from other offices, (Science and technology funding) + 2000 + 186 + + + + + Legislative Activities-106th Congress + January 6, 1999-August 28, 2000 + 186 + + + + + Polls + 1997-1998 + 186 + + + + + Schedules + + + + 1997 + 186 + + + + + 1998 + 186 + + + + + 1999 + 186 + + + + + 6 folders + 2000 + 187 + + + + + 2000 + 187 + + + + + 2001 + 187 + + + + + 26 folders + 2001 + + + + January-May + 5 folders + 187 + + + + + March 1-4 + 188 + + + + + May + 2 folders + 188 + + + + + June + 2 folders + 188 + + + + + July + 4 folders + 188 + + + + + August + 6 folders + 188 + + + + + September + 3 folders + 188 + + + + + Day of Infamy + September 11, + 2001 + 188 + + + + + October) + 3 folders + 188 + + + + + November + 2 folders + 188 + + + + + December + 2 folders + 188 + + + + + + 3 folders + 2002 + 189 + + + + + 2002 + + + + January + 4 folders + 189 + + + + + February + 3 folders + 189 + + + + + March 16-17 + 189 + + + + + March 22-30 + 189 + + + + + April + 3 folders + 189 + + + + + May + 4 folders + 189 + + + + + June + 4 folders + 189 + + + + + July + 3 folders + 190 + + + + + August + 6 folders + 190 + + + + + September + 5 folders + 190 + + + + + October + 2 folders + 190 + + + + + October + 4 folders + 190 + + + + + November 22-25 + 190 + + + + + December + 3 folders + 190 + + + + + + + Senate committee appointments + 2001-2002 + 190 + + + + + Staff + + + + Cutolo, Chuck, (C. Cutolo) + 1997-2001 + 190 + + + + + Dear Colleague and official letters + + + + Burns, Kane + 1998-2000 + 191 + + +

    (Defense and foreign policy; K. Burns)

    +
    +
    + + + Hekhuis, Jeremy, (Agriculture; J. Hekhuis) + May-June 2000 + 191 + + + + + Miller, Chris + 5 folders + 1995-1999 + 191 + + +

    (Environment, transportation, and agriculture; C. Miller)

    +
    +
    + + + Pascale, Alison + 3 folders + 1999-2000 + 191 + + +

    (Telecommunication, trade, transportation, Coast Guard, and Smart Growth; A. + Pascale)

    +
    +
    +
    + + + Drafted for Carl + + + + 1995-1997 + 191 + + +

    (Subcommittee on OGM)

    +
    +
    + + + 1999-2000 + 191 + + +

    (Trade and veterans)

    +
    +
    + + + Burns, Kane + 2 folders + 1998-2000 + 191 + + +

    (Mainly Defense, foreign policy, and human rights; K. Burns)

    +
    +
    + + + Cohen, Ilona + 2 folders + 1998-2000 + 192 + + +

    (Mainly Immigration and guns)

    +
    +
    + + + Guglielmo, Dan + 2 folders + 1995-1998 + 192 + + +

    (Mainly Housing and taxes; D/ Guglielmo)

    +
    +
    + + + Gustitus, Linda + 1996-2000 + 192 + + +

    (Permanent Subcommittee on Investigations -- PSI; L. Gustitus)

    +
    +
    + + + Hekhuis, Jeremy + 2000 + 192 + + +

    (Mainly agriculture, foreign policy, and veterans; J. Hekhuis)

    +
    +
    + + + Meier, Kaye + 1999-2000 + 192 + + +

    (Mainly energy and environment; K. Meier)

    +
    +
    + + + Miscellaneous + 2 folders + 1997-2000 + 192 + + + + + Stuber, Laura + 2000 + 192 + + +

    (Mainly Education and health; L. Stuber)

    +
    +
    + + + Sturtevant, Rochelle (R. Sturtevant) + + + + 3 folders + 1996-2000 + 192 + + +

    (Mainly Great Lakes Task Force and appropriations)

    +
    +
    + + + 1999-2000 + 192 + + +

    (Great Lakes Task Force-GLTF)

    +
    +
    +
    + + + Van Dyke, Brennan + 1999-2000 + 192 + + +

    (Mainly energy and environment; B. Van Dyke)

    +
    +
    + + + Weber, Bill + 1999-2000 + 192 + + +

    (Mainly tax issues; B. Weber)

    +
    +
    +
    + + + Illegal Drugs, Health Care, Government, Foreign Policy + 1998 + 193 + + + + + Intern projects + + + + January-June 1998 + 193 + + + + + May-August 1998 + 193 + + + + + + Intern projects and responses to constituents + 2 folders + 2000-2001 + 193 + + + + + Legislative Director files-R. Arenberg + + + + 3 folders + 1997 + 193 + + + + + 1998 + 193 + + + + + 5 folders + 1999 + 193 + + + + + 3 folders + January-June 2000 + 194 + + + + + 3 folders + July-December 2000 + 194 + + + + + 5 folders + 2001 + 194 + + + + + + Letter library + 2001 + + + + Abortion and women's issues + 194 + + + + + Agriculture + 194 + + + + + Animal protection + 194 + + + + + Arts, civil service, small business + 195 + + + + + Banking + 195 + + + + + Budget and economy + 195 + + + + + Communications + 195 + + + + + Education + 2 folders + 195 + + + + + Energy + 195 + + + + + Environment + 3 folders + 195 + + + + + General + 195 + + + + + Government, political, and congressional reform + 2 folders + 195 + + + + + Healthcare + 2 folders + 195 + + + + + Housing + 195 + + + + + Human services and welfare + 195 + + + + + Immigration + 195 + + + + + Judiciary + 195 + + + + + Labor + 195 + + + + + Medicaid and Medicare + 195 + + + + + Miscellaneous + 2 folders + 196 + + + + + Native Americans and historic preservation + 196 + + + + + Postal + 196 + + + + + Social security and seniors + 196 + + + + + Special requests + 196 + + + + + Tax + 196 + + + + + Trade + 196 + + + + + Transportation + 196 + + + + + + Michigan staff + + + + 2 folders + 1997 + 196 + + + + + 2001 + 196 + + + + + 2002 + 196 + + + + + + Miscellaneous items from Carl to T. Henseler + + + + September 2002 + 196 + + + + + December 2002 + 196 + + + + + + Office policy manual, job performance, and professional + development + July 2000 + January 1999 + 196 + + + + + Washington staff + + + + 1999-2000 + 196 + + + + + 2002 + 196 + + + + + + Wilbur, Chuck (Michigan) + + + + 1999-2001 + 196 + + + + + 2000 + 196 + + + + + 2001-2002 + 196 + + + +
    +
    + + + Agriculture + 1980-2004 + + + + Agriculture accomplishments FY2002 + 230 + + + + + Agricultural Research Service (ARS) facility (J Hekhuis) + + + + 2000 + 230 + + + + + East Lansing + 2000 + 230 + + + + + + Agriculture security + 2001-2003 + 230 + + + + + Alaska public lands-S. 744, (University of Alaska; J. + Hekhuis) + 1999 + 230 + + + + + America's second harvest -- use of senate caucus room, (J. + Hekhuis) + 2001 + 230 + + + + + Analysis of Agriculture and food sector in Michigan economy and budget, + (J. Hekhuis) + 2002 + 230 + + + + + Antibiotics and beef + 2001 + 230 + + + + + Apples (J Hekhuis) + + + + Apples assistance + 2001 + 230 + + + + + Apples bonus purchase program + 2001 + 230 + + + + + Apples bonus purchase program + 2002 + 230 + + + + + Apple growers and Congressional Record support + 2000 + 230 + + + + + Apple juice concentration letter + 2002 + 230 + + + + + Apple juice dumping letter + May 2, 2002 + 230 + + +

    (Stabenow and Levin)

    +
    +
    + + + Apple juice concentrate dumping case + 2003 + 230 + + + + + Five a day for health + September-November 2001 + 230 + + +
    + + + Appropriations + + + + FY1999 + 231 + + + + + FY2001 Apple amendment -- H.R. 4461 + 231 + + +

    (Includes photographs of crop damage)

    +
    +
    + + + FY2001 Appropriations background + 231 + + + + + FY2001 Cooperative Extension Service and Agricultural Experiment + Station + 231 + + + + + FY2001 Cooperative State Research, Education and Extension Services + (CREES) + 231 + + + + + FY2001 Scab initiative letter to Kohl + 231 + + + + + FY2002 + 231 + + + + + FY2002 Agriculture conservation program + 231 + + + + + FY2002 American Farm Bureau Federation (AFB)-apple assistant support + letter, clips, amendment + 231 + + + + + FY2002 Apples + 231 + + + + + FY2002 Apple assistance -- S. 1018 + 231 + + +

    (Levin is sponsor)

    +
    +
    + + + FY2002 Budget letter to Pete Domenioi + 231 + + + + + FY2002 Disasters (J. Hekhuis) + 231 + + + + + FY2003 Altarum and food aid program + 1998 + 231 + + + + + FY2003-Payment in Lieu of Taxes (PILT) letter + 231 + + + + + Amendments + 2001 + 231 + + + + + Bovine tuberculosis letter + 1999 + 231 + + + + + National forests roadless initiative + 4 subfolders + 2000-2001 + 231 + + +
    + + + Asparagus (J Hekhuis) + + + + 2001 + 231 + + + + + Asparagus bonus purchases request to USDA + 2002 + 231 + + + + + + Beans (J Hekhuis) + + + + Beans + 2001 + 231 + + + + + National Dry Bean Council position paper and appropriations + 2000 + 231 + + + + + White beans + 2000 + 231 + + + + + + Beef -- Michigan Cattleman's Association and Beef Business Bulletin, (J + Hekhuis) + 2002 + 231 + + + + + Beet growers + 2001 + 231 + + + + + Beginning farmers program -- land contract, FSA proposal, farm security + and rural investment act of (J Hekhuis) + 2002 + 231 + + + + + Blueberries, (J Hekhuis) + 1999-2002 + 231 + + + + + Bovine tuberculosis + 2000-2001 + 231 + + + + + Bovine tuburculosis in Michigan + 2002 + 231 + + + + + Brzoznowski Letter on U.S. Department of Agriculture (USDA) resolution, + (J Hekhuis) + 2001 + 235 + + + + + Michigan State Univeristy (MSU) biomass research-letter on background + land support of project, (J Hekhuis) + 2000 + 235 + + + + + Carbon Storage Tax Incentive Act-forests and soil + May 2000 + 235 + + + + + Capital Christmas tree, (J Hekhuis) + February 2002 + 235 + + + + + Christmas tree in Capital -- plan for tree to be from Michigan, (J + Hekhuis) + 2001 + 235 + + + + + Carbon sequestion and global climate change (Ari Levi; S.2450 J. + Hekhuis) + 238 + + + + + Carbon sequestion on cropland, (J Hekhuis) + 2000 + 238 + + + + + Champion trees (J Hekhuis) + + + + 1997-2001 + 238 + + + + + 2001 + 238 + + + + + Champion tree project + 2002 + 238 + + + + + + Cherry (J Hekhuis) + + + + Cherry bonus purchase + 2002 + 238 + + + + + Disaster (Traverse City) + 2002 + 238 + + + + + Cherry grant support, (USDA) + 2002 + 238 + + + + + Cherry marketing board, (USDA) + 2001 + 238 + + + + + Cherry marketing order + + + + 1997-1998 + 238 + + + + + Letter to Secretary of Agriculture Veneman + 2002 + 238 + + + + + + Cherry purchase (USDA) + + + + 1997 + 232 + + + + + 1999 + 232 + + + + + 2000 + 232 + + + + + 2001 + 232 + + + + + + Trade -- Michigan Agricultural Coopeartive Marketing Association + (MACMA) tart cherry purchase + 1998 + 232 + + + + + + Agriculture commodity organization contact, (Michigan; J. + Hekhuis) + 2001 + 232 + + + + + Commodity Supplemental Food Program (CSFP) (J Hekhuis) + + + + Information of proposed changed + December 2001 + 232 + + + + + Letter to Secretary Veneman + 2002 + 232 + + + + + National CSFP Association legislative agenda + 2001 + 232 + + + + + + Concentrated Animal Feeding Operation (CAFO) + + + + 1999-2004 + 232 + + + + + Clips on Michigan livestock operations, (J Hekhuis) + 2001 + 232 + + + + + + Concentration issues in farm bill, (J Hekhuis) + 2002 + 232 + + + + + Conservation, (J Hekhuis) + 2001 + 232 + + + + + Conservation Reserve Program (CRP) + + + + Expansion-S.1691 + March-April 2000 + 232 + + + + + Tax Fairness Act-S.2344 + April 2000 + 232 + + + + + Tax Fairness Reintroduction-S. 315, (J Hekhuis) + 2001 + 232 + + + + + + Consolidation, (J Hekhuis) + January 2001 + 232 + + + + + Contacts + 1995-2002 + 232 + + +

    (Includes legislative priorities; J. Hekhuis)

    +
    +
    + + + Co-ops (J Hekhuis) + + + + September 2000 + 232 + + + + + NCBA, sugar beets, turkey, beans + 2001 + 232 + + + + + Co-op issues, summer camp, national rural cooperative and business + equity fund act + 2002 + 232 + + + + + + Corn, (Michigan Corn Growers Association; J. Hekhuis) + 2000 + 232 + + + + + Correspondence (J Hekhuis) + + + + Agricultural letters and National Missile Defense (NMD) + system + 1999-2000 + 232 + + + + + Secretary of Agriculture + 2000-2001 + 232 + + + + + Dear Colleagues + 2000 + 232 + + + + + + Country of origin labeling -- S.280 + 2001 + 232 + + +

    (COOL)

    +
    +
    + + + Crop insurance (J Hekhuis) + + + + 1996 + 232 + + +

    (USDA)

    +
    +
    + + + S.1580 and H.R.2559 + 1999 + 232 + + + + + Agriculture Risk Protection Act + 2000 + 232 + + +

    (Levin includes 6 million for TB eradication)

    +
    +
    + + + S.2551 and H.R.2559 + April 2000 + 232 + + +
    + + + Dairy (J Hekhuis) + + + + American Goat Dairy Association; + 2001 + 232 + + + + + Dairy compacts + 2001 + 232 + + + + + Milk and Dairy + 7 subfolders + 1990-2001 + 232 + + +

    (Includes dairy compacts, dairy general, milk PR, and MPC S. 847)

    +
    +
    + + + Federal Milk Marketing Orders (FMMO) + + + + Dairy farmers against H.R.1402 + 1999 + 232 + + + + + Reform + 1999 + 232 + + +

    (Reports and final decision on the 19D=96 farm bill)

    +
    +
    + + + Ultrafiltered milk + June 2000 + 232 + + +
    +
    + + + Disaster, (Michigan; S.2800 J. Hekhuis) + 2002 + 233 + + + + + Disaster declarations, (J Hekhuis) + 2000 + 233 + + + + + Economic stimulus, (J Hekhuis) + 2002 + 233 + + + + + Emergency Agricultural Assistance Act + 2001 + 233 + + + + + The Emergency Food Assistance Program (TEFAP) funding + September 2000 + 233 + + + + + Emergency Watershed Program -- NRCS, (Upper Peninsula; J. + Hekhuis) + 2002 + 233 + + + + + Ethanol (J Hekhuis) + + + + E-85 grant application Levin letter of support + 2001 + 233 + + + + + Energy balance of corn ethanol revisited + 2002 + 233 + + + + + Farm Bureau letter opposed S.517 + 2002 + 233 + + + + + Feinstein amendment to S.517 + March 2002 + 233 + + + + + Johnson letter support S.517 on the nation's fuel supply + 2002 + 233 + + + + + Levin record + 1980-1999 + 233 + + + + + Michigan Department of Agriculture letter of support grant + application + 2002 + 233 + + + + + Ethanol plant, (Caro, Michigan) + 2002 + 233 + + + + + Production sugar catalyst + March 2001 + 233 + + + + + Senate Energy bill -- S.517 + 2002 + 233 + + + + + + Exports -- assistant update quarterly report + 1997 + 233 + + + + + Farm bill, (J Hekhuis) + 1990 + 233 + + + + + Farm Bill, (J Hekhuis) + 3 folders + 1996 + 233 + + + + + Farm bill, (J Hekhuis) + 2001 + 233 + + + + + Farm bill + + + + Amendments + + + + Apple market-Baucus + February 2002 + 233 + + + + + Canadian waste + December 2001 + 233 + + + + + Commodity Supplemental Food Program-Levin + 2001 + 233 + + + + + Concentrated animal feedlot operation-Wellstone + December 2001 + 233 + + + + + Federal State Market Improvement Program (FSIMP) + 2000-2001 + 233 + + + + + Levin amendments + July-August 2001 + 233 + + + + + Michigan Technological University (MTU) carbon sequestration + program + December 2001 + 233 + + + + + Miscellaneous + November 2001 + 233 + + + + + Miscellaneous + November-December 2001 + 233 + + + + + Miscellaneous and agriculture in colleges + December 2001 + 233 + + + + + Organic cost share certification program funding + 2000-2001 + 233 + + + + + Polar Bear, (Levin amendment) + December 2001 + 233 + + + + + Rural development-Clayton + 2001 + 233 + + + + + Sugar, (Feinstein) + undated + 233 + + + + + + Conservation Assistance and Regional Equity Act, 2001(Senators + Leahy-Reid) + 233 + + + + + Fairness to Africa + May 2002 + 233 + + + + + Farm price supports + September 2001 + 233 + + + + + Letters + August-October 2001 + 233 + + + + + Markup and background + 2 folders + 2001 + 233 + + + + + Memos and background + 2001 + 234 + + + + + NPR debate on subsidies + October 2001 + 234 + + + + + Nutrition letter + October 2001 + 234 + + + + + Overview + 2001-2002 + 234 + + + + + Reports and pamphlets + 2001 + 234 + + + + + Seniors Nutrition + October 2001 + 234 + + + + + + Talking points + April 2002 + 234 + + + + + Farm casework, (J Hekhuis) + 2000 + 234 + + + + + Farm equity -- S.165, (J Hekhuis) + 2001 + 234 + + + + + Farm mediation -- S.2147 (USDA; J. Hekhuis) + 2000 + 234 + + + + + Farmland protection -- S.333, (J Hekhuis) + 2001 + 234 + + + + + Federal payments, (J Hekhuis) + 2001 + 234 + + + + + Food and Drug Administration (FDA) letter from Stabenow office, (J + Hekhuis) + March 2001 + 234 + + + + + Food uniformity -- S.1155 (J Hekhuis) + 2000 + 234 + + + + + Forests (J Hekhuis) + + + + Forest issues + November 1999-January 2000 + 234 + + + + + General material + 2000-2001 + 234 + + + + + Michigan facts + 2001-2002 + 234 + + + + + National Forest Service system + 1999-2000 + 234 + + + + + North Central Research Station (NCRS), (USDA Forest + Service) + 2001 + 234 + + + + + Ottawa National Forest land acquisition + 2001 + 234 + + + + + + Forest Service-funding for programs + May 2001 + 234 + + + + + Genetically Modified Foods (GMOs) (J Hekhuis) + + + + 1998-1999 + 234 + + + + + 2000 + 234 + + + + + + Grapes (J Hekhuis) + + + + Labrusca + 2001-2002 + 234 + + + + + Welch's, (Weather issues-Michigan) + 2001-2002 + 234 + + + + + + Great Lakes oil + February-March 2002 + 234 + + +

    (Application of Agro Management's bio-based lubricant AMG2000 trials on USPS + fleets in Great Lakes region)

    +
    +
    + + + Hemp + 1997 + 234 + + + + + Hemp, (J Hekhuis) + 2001 + 234 + + + + + High risk insecticides, (B. VanDyke) + 1997-1999 + 234 + + + + + Honey, (J Hekhuis) + 2000 + 234 + + + + + Honey-China + 1997 + 234 + + + + + Hunger policy, (J Hekhuis) + 2000-2001 + 234 + + + + + Inspector General letter to request crop forecast investigation, (USDA; + J. Hekhuis) + April 2002 + 234 + + + + + Invasive plants factbook, (J Hekhuis) + 1998 + 234 + + + + + Kellogg (J Hekhuis) + + + + Keebler + October-November 2000 + 234 + + + + + Raisin Bran and WIC + 1999-2000 + 234 + + + + + Raisins -- iron + 1999 + 234 + + + + + Special Supplemental Nutrition Program for Women, Infants, and Children + (WIC)-Kellogg's Raisin Bran + 3 folders + 1999-2000 + 235 + + + + + Trade adjustment assistance (TAA) + 1999-2000 + 235 + + + + + + MeadWestvaco Corporation, (J Hekhuis) + January 2002 + 235 + + + + + Meat-country of origin labeling + 2001 + 235 + + +

    (COOL: Also, federal and state inspection; J. Hekhuis)

    +
    +
    + + + Michigan agriculture statistics, (J Hekhuis) + 1999-2000 + 235 + + + + + Michigan Biotechnology Institute international, (J Hekhuis) + 2002 + 235 + + + + + Michigan Farm Bureau meeting with Wood + April 2001 + 235 + + + + + Michigan State University (MSU) (J Hekhuis) + + + + Michigan Agricultural Experiment Station + 2001 + 235 + + + + + National Food Safety and Toxicology Center + 1999-2001 + 235 + + + + + + Michigan Technological University (MTU) school of forestry, (J + Hekhuis) + 2001-2002 + 235 + + + + + Migrant farmers, (Michigan; J. Hekhuis) + July 2000 + 235 + + + + + Miscellaneous, (J Hekhuis) + 1994-1997 + 235 + + + + + National Farmers Union (NFU), (J Hekhuis) + September 1999 + 235 + + + + + National Grange, (J Hekhuis) + 2001 + 235 + + + + + National Peach Council letters and concerns + 2000 + 235 + + + + + National Renderers Association + 2001 + 235 + + +

    (Also information about Darling International Inc.; J. Hekhuis)

    +
    +
    + + + National Research Conservation Service + 1999-2000 + 235 + + + + + National Rural Development Partnership, (J Hekhuis) + October 2001 + 235 + + + + + Natural resources conservation service, (Michigan report; J. + Hekhuis) + 2000 + 235 + + + + + Non-insured crop disaster assistance fact sheet, (J Hekhuis) + 2002 + 235 + + + + + Northern lakes economic alliance, (J Hekhuis) + 2002 + 235 + + + + + Packers and Stockyards Act ranches amendment-S.1738 + April 2000 + 235 + + + + + Pesticide harmonization bill + 2002 + 235 + + + + + Pesticides in schools, (J Hekhuis) + 1998-1999 + 235 + + + + + Pine shoot beetle + 1992-1995 + 235 + + +

    (Michigan pine trees -- Christmas tree industry J. Hekhuis)

    +
    +
    + + + Pork + + + + Pork issues + 1999 + 235 + + + + + Michigan Pork Producers Association appropriation requests, + FY01 + 235 + + + + + Pork-Pseudorabies legislation and appropriations + 1989-1997 + 235 + + + + + + Potato + + + + Michigan Potato Industry Commission and National Potato + Council + 2001 + 235 + + + + + Potato industry, (J Hekhuis) + 1990-1992 + 235 + + + + + + Quality loss program + June 2001 + 235 + + + + + Regulatory Openness and Fairness Act, (J Hekhuis) + 1999 + 235 + + + + + Replanting tax credit + May 2001 + 235 + + + + + Resources conservation and development-Michigan + 2000-2001 + 235 + + + + + Roadless area, (J Hekhuis) + 1999 + 235 + + + + + Roadless area, logging, and National Parks and Forests, (J + Hekhuis) + 2 folders + 2000 + 236 + + + + + Secure Rural Schools and Community Self Determination + Act-S.1608 + 2000 + 236 + + + + + Securing a Future for Independent Agriculture Act + 2001 + 236 + + + + + Senate produce caucus + 2000 + 236 + + + + + Senior Nutrition Act + 2002 + 236 + + + + + Santemp-open border trade proposals + 2001 + 236 + + + + + Soybean + + + + Michigan Soybean Association request letter of support + 2000 + 236 + + + + + Soybean conservation letter + 1989-1998 + 236 + + + + + United Soybean Board annual report, FY2000 + 236 + + + + + + Sugar industry + + + + Lifesavers move to Canada + 2002 + 236 + + + + + Michigan + 2000-2002 + 236 + + + + + Molasses + 1999-2000 + 236 + + + + + Prices + 2 folders + 1987-1994 + 236 + + + + + Prices and emergency economic assistance + 2001-2002 + 236 + + + + + Sugar beet price drop + 2000 + 236 + + + + + + Taxes + + + + Farmer and rancher fair contribution + 1999-2000 + 236 + + + + + Farmer and rancher self-employment taxes + April 2000 + 236 + + + + + + Tree loss assistance program + 2000-2001 + 236 + + + + + Turkey legislation + 1999 + 236 + + + + + U.S. Department of Agriculture (USDA) field structure proposals and + Michigan closures of rural economic and community development + 1994-1995 + 236 + + + + + U.S. Federal Organic Food Production Act + 1995-1996 + 236 + + + + + World Trade Organization (WTO) + 1999-2000 + 236 + + +
    + + + Animal Protection + 1996-2003 + + + + 1996-1999 + 241 + + + + + Animal Health Protection Act + 2002 + 1029 + + + + + Arctic National Wildlife Refuge (ANWR) + 2001-2003 + 241 + + + + + Canadian seal hunt + 1998 + 241 + + + + + CRS memo on Punishing Depictions of Animal Cruelty-H.R.1887 + November 1999 + 241 + + + + + International Whaling Commission + 2002 + 241 + + + + + NASA chimpanzees-divestiture by Air Force + 1998-1999 + 241 + + + + + Steel jaw trap + 1997 + 241 + + + + + Teaming with Wildlife (TWW) + 1998 + 241 + + + + + + Business + 1989-2006 + + + + Anti-trust review of Detroit Edison (DTE) and MichCon merger + 2000 + 248 + + + + + Appropriations-FY1999 Commerce + 248 + + + + + Small Business Committee (SBC) + + + + SBC attendance + 1998-2000 + 254 + + + + + Small business wrap-up, February-December 200 + 254 + + + + + Organizational meeting + February 5, + 1999 + 254 + + + + + Hearings + + + + Small Business Innovation Research (SBIR) Program + June 4, + 1998 + 254 + + + + + FY2000 budget + March 16, + 1999 + 254 + + + + + The SBA Fiscal year 2003 Budget and Other Matters (A. + Pascale) + February 27, + 2002 + 254 + + + + + + Markup + + + + Historically Underutilized Business (HUB) Zone markup, + April-1997-October 2000 (8(a) + 254 + + + + + Meeting with markup + July 15, + 1999 + 254 + + +

    (Includes veterans, SBREFA, and advocacy)

    +
    +
    + + + Women's Business Center (WBC) SBIR markup + July-September 1999 + 254 + + + + + S.1594 and other matters + July 26, + 2000 + 254 + + +

    (Kerry new markets initiative legislation; A. Pascale)

    +
    +
    + + + Confirmation hearing and markup, (Confirmation hearing for SBA + Administrator Hector Barreto, markup for SBIC and STTR bills) + July 19, + 2001 + 254 + + +
    + + + Military reservists -- Carl's amendment + April-July 1999 + 254 + + +

    (Military Reservists Business Relief Act; also includes nomination of SBA + Inspector General Phyllis K. Fong)

    +
    +
    +
    + + + Mike George (Melody Dairy Company) + + + + FBI and Small Business Association (SBA) letters, (A. + Pascale) + February 2002-May 2003 + 248 + + + + + Small business issue, (A. Pascale) + 2001-2003 + 248 + + + + + + Michael George and Metro-Detroit Investment Corporation + + + + Court documents + November-December 1997 + 248 + + + + + Criminal allegations + 2 folders + December 11, + 1996 + 248 + + + + + Sentencing + November 1997-April 1998 + 248 + + + + + + Great Lakes low water levels bill + 2000-2006 + 248 + + +

    (Levin bill; Small Business Drought Relief Act -- S.2734 A. Pascale)

    +
    +
    + + + Low water levels -- Small Business Administration loans + 2000-2001 + 248 + + +

    (Great Lakes; A. Pascale)

    +
    +
    + + + Microloan and Northern Initiatives, (A. Pascale) + 1993-2001 + 249 + + + + + Small business + + + + Congressional Record + 1989-1995 + 249 + + + + + Federal prison industries + May-July 1999 + 249 + + + + + Micro loans + 1998 + 249 + + + + + Small Business Administration (SBA) + + + + Budget request FY1999 + 249 + + + + + Hearing-President's Fiscal Year 1999 Budget Request for the Small + Business Administration (SBC) + March 18, + 1998 + 249 + + + + + Disaster loans + October-November 2000 + 249 + + + + + Lending -- minority + November 1998-January 1999 + 249 + + + + + Tibbetts Awards, (A. Pascale) + 1998-2000 + 249 + + + + + Tibbetts Award -- technology, (A. Pascale) + 2001 + 249 + + + + + Y2K Year SBA + 2000 + July 1997-March 1999 + 249 + + + + + 8 (a) Minority business development + 1994 + 2002 + 1114 + + + + + + Small Business bill + 5 subfolders + 1998-1999 + 249 + + + + + Small Business Development Centers, (A. Pascale) + 1993-2001 + 249 + + + + + Small Business Energy Emergency Relief Amendment, (S.295) + February 2001 + 249 + + + + + Small Business Innovation Research (SBIR) + + + + Complaints + June-July 1999 + 249 + + + + + Final passage, July-2000-January 2001 (S.2392 + reauthorization) + 249 + + + + + GAO report + June 1999 + 249 + + + + + Geographic distribution + June-September 1998 + 254 + + + + + + Markup, (Reauthorization bill; SBC) + 2 folders + September 1999-March 2000 + + + + MERRA and SBIR + March 1997 + June 1998 + 249 + + + + + Old file + 2 folders + 1990-1998 + 249 + + + + + + Reauthorization FY2000 + 2 folders + April-July 1999 + 254 + + +

    (includes Levin mentoring amendment))

    +
    + + + Reauthorization markup and mentoring program amendment + 2 folders + March 2000 + June-July 1999 + 254 + + + + + Reports + 1999-2000 + 254 + + + + + Roundtable + August 1999 + 254 + + + + + Volunteer Mentoring Program --S.1425 (Levin-Kerry bill) + July-August 1999 + 250 + + +
    + + + Small Business Investment Companies (A. Pascale) + + + + 1987-1998 + 250 + + + + + FY1999 funding + 250 + + + + + + Small Business Paperwork Reduction Act -- S.1378 (GAC + hearing) + 1999 + 254 + + + + + Small Business Regulatory Enforcement Fairness Act (SBREFA) + April-July 1997 + 250 + + + + + Small business resolution, (A. Pascale) + 2001 + 250 + + + + + Small Business Technology Transfer (STTR) Program Reauthorization Act, + (A. Pascale) + 2001 + 250 + + + + + Technology Week + June-July 1998 + 250 + + + + + Warren Chamber of Commerce small business remarks -- Brownfields, + (Levin remarks; A. Pascale) + October 24, + 2002 + 250 + + +
    + + + Women + + + + National Women's Business Council + 2 folders + 1997-2001 + 250 + + + + + Women's Business Centers Act of + 1997-2005 + 1997 + 250 + + +

    (Levin is a cosponsor; A. Pascale)

    +
    +
    + + + Women's business owners, (A. Pascale) + May-December 1998 + 250 + + +
    +
    + + + Communications + 1986-2005 + + + + Ameritech and SBC merger + 1997-1999 + 259 + + + + + Broadband internet access + 1999-2002 + 259 + + + + + Census Bureau Issues -- request for legislation + 1997-2001 + 259 + + + + + Copyright Arbitration Royalty Panel (CARP) -- satellite + broadcasts + 1997-1998 + 259 + + + + + Digital divide + 2000-2002 + 259 + + + + + Digital signature legislation + 2000 + 259 + + + + + Distilled spirits advertising + 1997 + 259 + + + + + Domain names + 1999 + 259 + + + + + E-rate, (A. Pascale) + 1997-1998 + 259 + + + + + Federal Communications Commission (FCC) + + + + Alpine licenses, (A. Pascale) + 2002 + 259 + + + + + Letter on behalf of Kelly Fenton TV station, (Kelley + Enterprises) + 1998 + 259 + + + + + FCC zoning of cellular, radio, and TV towers, (A. Pascale) + 1997-1999 + 259 + + + + + + Local government + 1995-2000 + 259 + + + + + Low powered TV + 2001 + 259 + + + + + Michigan Municipal League + 1996-1998 + 259 + + + + + NextWave + 1999-2001 + 259 + + + + + Northpoint Technology Ltd. casework + April-June 1999 + 259 + + + + + Pay phones + 1998-2001 + 259 + + + + + Public TV and broadcasting + 1994-1999 + 259 + + + + + Right-of-way and franchise -- S.1822 + 1994-2002 + 259 + + + + + Rural telephone, (A. Pascale) + 1995-2001 + 259 + + + + + Satellite loan guarantee -- S.2097 (A. Pascale) + 2000 + 259 + + + + + Satellite television, (A. Pascale) + 1986-1997 + 259 + + + + + Slamming and spam, (GAC and Subcom PSI; A. Pascale) + 1998-1999 + 259 + + + + + Telecon -- right-of-way issues + 1997-1999 + 259 + + + + + Traverse Bay school + March 1997 + 259 + + +

    (Telecommunications and information infrastructure assistance program grant + application; A. Pascale)

    +
    +
    + + + Troy case, (FCC decision; A. Pascale) + 1997 + 259 + + + + + TV violence, (A. Pascale) + 1995-1999 + 259 + + + + + TV violence hearing + 2001 + 259 + + + + + Universal service, (A. Pascale) + 1999-2000 + 259 + + + + + Universal Service Fund (USF) (A. Pascale) + + + + E-rate initiative press + 1997-1998 + 260 + + + + + E-rate letters + June 1998-June 1999 + 260 + + + + + E-rate memos and letters + September 1997-June 1998 + 260 + + + + + Efforts to limit USF, (Dingell) + December 1997-July 1998 + 260 + + + + + Federal Communications Commission (FCC) meeting + October 16, + 1997 + 260 + + + + + Letters + September-December 1997 + 260 + + + + + Michigan USF e-rate application + 1998-2005 + 260 + + + + + Technology and education -- Michigan charts + 1994-1998 + 260 + + + + + + Wireless communications 911 GM and Ford + 1999 + 260 + + +
    + + + Crime and Justice + 1990-2002 + + + + Appropriations-Commerce, Justice, and State + + + + FY2000 + 2 folders + 275 + + + + + FY2001 + + + + CJS and Michigan + 3 folders + 275 + + + + + CRS report + 276 + + + + + Fremont postal employees, (Michigan) + December 2001 + 276 + + + + + House Full Committee Report on bill + 276 + + + + + + FY2002-Memos and letters + 276 + + + + + + Buell Elementary shooting + 2001 + 276 + + + + + Civil Asset Forfeiture Reform Act + 1999 + 276 + + + + + Civil Rights Protection Act-S.121 + 2000 + 276 + + + + + Community Oriented Policing Services (COPS) + 2 folders + 1999-2000 + 276 + + + + + Correctional education + 1999-2000 + 276 + + + + + Crime Victims Assistance Act + 1997 + 276 + + + + + Crime Victims' Rights Constitutional Amendment Report + April 4, 2000 + 276 + + + + + Death Penalty + + + + Allen, Wanda Jean + 2001 + 276 + + + + + Articles and attendance sheet + 1990-2000 + 276 + + + + + + Defenders services + 1998-1999 + 276 + + + + + Defender services salaries + 1998-1999 + 276 + + + + + Domestic violence prevention funds, (Michigan) + 2001 + 276 + + + + + Drug courts grant for Michigan + 2000-2001 + 276 + + + + + Drugs-U.S. and other countries' studies + 1997 + 276 + + + + + Drugs and ADAM program + 1999-2000 + 276 + + + + + Encryption + 1996-1997 + 276 + + + + + Flag desecration + 2 folders + 1997-2000 + 276 + + + + + Grants and funding, (Michigan) + 1999 + 276 + + + + + Gun control + + + + 1998-2000 + 276 + + + + + 1999-2000 + 277 + + + + + Juvenile justice + 1999-2000 + 277 + + + + + Legislation + 1999-2000 + 277 + + + + + Levin-Schumer amendment + May 1999 + 277 + + + + + News articles and amendments + 2000 + 277 + + + + + + Gun safety + 2000 + 277 + + + + + Gun safety and miscellaneous + 1997-2000 + 277 + + + + + Gun show loophole + 2001 + 277 + + +

    (Includes talking points and speeches)

    +
    +
    + + + Guns and youth + 1999 + 277 + + + + + Guns and youth violence + + + + Amendments + + + + March-May 1999 + 277 + + + + + April-May 1999 + 277 + + + + + + Background and Levin statements + 1999 + 277 + + + + + Gun violence in Michigan + 1997 + 1999 + 277 + + + + + Gun violence statistics in Michigan and New York + 1998-1999 + 277 + + + + + Handgun control + 2 folders + 1999 + 277 + + + + + Juvenile justice + 1999 + 277 + + + + + Littleton, Colorado + May 1999 + 277 + + + + + Miscellaneous + 2 folders + 1990 + 277 + + + + + News articles and letter + March 1990 + 277 + + + + + President's initiative-Youth Gun Crime Enforcement Act + 1999 + 277 + + + + + + Hate crimes + + + + Amendments and letters + 2 folders + 2000 + 278 + + + + + Amendments and talking points + 2000 + 278 + + + + + + Hate crimes and human rights + 2 folders + 1999-2000 + 278 + + + + + Hate Crimes Prevention Act -- S.1529 (Cosponsor) + 1997-1998 + 278 + + + + + Hearing -- Ecstasy Use Rises + July 30, 2001 + 278 + + + + + Internet privacy and the Privacy Commission Act-S.3040 + 2000 + 278 + + + + + Juvenile justice + 1999 + 278 + + +

    (Also includes social security, Medicare, and budget)

    +
    +
    + + + Juvenile justice legislation-S.10 + 1996-1997 + 278 + + + + + Juvenile justice and gun safety legislation + 2 folders + 1999-2000 + 278 + + + + + Michigan Legal Services Corporation + + + + Reconfiguration + 2001-2002 + 278 + + + + + + Military Armor Piercing Ammunition Resale Limitation Act + 1999-2000 + 278 + + + + + Million Mom + March + 2000 + 278 + + + + + Miscellaneous + 1999-2000 + 278 + + + + + Nominations-Assistant Attorney General for Civil Rights Division-Bill + Lann Lee + + + + March + July 1999 + 1040 + + + + + Lee and John Ashcraft + 2 folders + 1999-2002 + 1040 + + + + + + National Police Athletic League youth Enrichment Act + 1999-2000 + 1040 + + + + + Pilots with guns legislation + 2002 + 1040 + + + + + Racial profiling + + + + 1999-2000 + 1040 + + + + + March-April 2001 + 1040 + + + + + Airport profiling + 2 folders + 1999-2000 + 279 + + + + + Wen Ho Lee + October 2000 + 279 + + + + + + Religious Liberty Protection Act + 1999-2000 + 279 + + + + + Secret evidence + + + + Current law + 1999 + 279 + + + + + Levin notes + 1999 + 279 + + + + + Michigan + 1999 + 279 + + + + + Miscellaneous + 3 folders + 1999 + 279 + + + + + Public Law + 1999 + 279 + + + + + + Secret Evidence Repeal Act-H.R.2121 + 5 folders + 1999 + 280 + + + + + Shall issue-concealed carry, (Michigan) + 4 folders + 1999-2000 + 279 + + + + + Susan Rosenberg parolee decision + March 1998 + 279 + + + + + U.S. Marshals Service Asset Forfeiture Program-Milford, + (Michigan) + 2002 + 279 + + + + + Victims' Bill of Rights + 2 folders + 1998-2000 + 279 + + + + + Victim's rights + 1997-2000 + 279 + + + + + Violence Against Women Act (VAWA) II + 2 folders + 1999-2000 + 280 + + + + + Waco reinvestigation into events + 3 folders + 1999 + 280 + + + + + Washtenaw County Grant + 2000 + 280 + + + + + Women's issues + 1999-2000 + 280 + + + + + Youth, violence, and media legislation + 1998-1999 + 280 + + +
    + + + Defense and Armed Services Committee (SASC) + 1993-2004 + + + + 364th Infantry Unit + 2001 + 375 + + + + + Aircraft Owners and Pilots Association (AOPA) + June 2002 + 375 + + + + + Air Force-Sexual harassment cases, (K. Burns) + 1997 + 375 + + + + + Army + + + + 2Lt Harvey Bos-search for remains + 2000 + 375 + + + + + Lt. Col. Carlson discrimination case, (K. Burns) + 1994-1997 + 375 + + + + + Memos + 2001-2003 + 375 + + + + + + Army Corps of Engineers committee review, (SASC) + 2 folders + 2000 + 375 + + + + + Authorization, appropriations and funding + + + + FY1990-2003-Michigan military construction + 375 + + + + + FY1998 + + + + Michigan defense + 2 folders + 375 + + + + + Michigan military construction + 375 + + + + + + FY1999-Department of Defense (DOD) research funding + 375 + + + + + FY2001-Hybrid Vehicles authorization language + 375 + + + + + FY2002 + + + + Michigan items + 375 + + + + + Michigan National Guard requests + 2 folders + 375 + + + + + Department of Defense (DOD) authorization + + + + ACR Industries + 375 + + + + + American Defense International, Inc. (ADI) (Grand Rapids, + Michigan) + 375 + + + + + Appropriation letters, memos, and background (Michigan) + 375 + + + + + Ardesta, Inc. (Ann Arbor, Michigan) + 375 + + + + + Budget letters, memos, and background + 375 + + + + + Canola oil (Farm bill; USPS) + 375 + + + + + Civil War cannons (Michigan) + 375 + + + + + Electro-Optics Technologies (Ann Arbor, Michigan) + 375 + + + + + Environmental Research Institute of Michigan (ERIM) and Defense + Sustainment Consortium + 375 + + + + + Equitable Engineering (Troy, Michigan) + 375 + + + + + Flat panel display (FPD) + 375 + + + + + Full Operational Capacity (FOC) + 375 + + + + + General Michigan defense contractors news articles + November 2000 + 375 + + + + + Handilabs + 375 + + + + + Henry Ford Health System (HFHS) and Tripler Army Medical + Center + 377 + + + + + Integrated Sensing Systems, Inc. (ISSYS) (Ann Arbor, + Michigan) + 375 + + + + + Intermec Technologies Corporation + 375 + + + + + ITT Industries-Michigan National Guard Project + 375 + + + + + Kaiser Optical Systems, Inc. (Ann Arbor, Michigan) + 375 + + + + + Litton Life Support-on-board oxygen generation system + 375 + + + + + Lyonhurst, Inc. (Auburn Hills, Michigan) + 375 + + + + + Malden Mills (Polartec fleece) + 375 + + + + + Michigan miscellaneous + 375 + + +

    (Includes photograph of Levin at Fastening and Joining Research Institute + at Oakland University)

    +
    +
    + + + Microelectromechanical Systems Technology -- MEMS + 376 + + + + + Military Construction + 376 + + + + + Miscellaneous + 376 + + +

    (Michigan National Guard, Oakland University, Dow Corning, sonobuoys, + etc.)

    +
    +
    + + + NeoGen Corporation + 376 + + + + + Oakland University-auto research + 376 + + +

    (Product Development and Manufacturing Center)

    +
    +
    + + + Phoenix Design Technologies, Inc. + 377 + + +

    (Electric vehicles)

    +
    +
    + + + Procyon Technologies-Scot Life Support Systems + 376 + + + + + S. Main Company (Wixom, Michigan) + 376 + + + + + TARDEC water quality project (Warren, Michigan) + 376 + + + + + Technology, research, and development funding + 376 + + + + + University of Michigan-Mustards Consortium (Mustard + gas) + 376 + + + + + University of Michigan-Dearborn + 376 + + +

    (Institute for Advanced Vehicle Systems)

    +
    +
    + + + U.S. and Israel joint projects agenda + 376 + + + + + Vector Research + 376 + + +

    (Modeling and simulation in healthcare management and military health + system)

    +
    +
    + + + Watersorb-floodwater bags (Traverse City, Michigan) + 376 + + +
    +
    + + + FY2002 supplemental requests + + + + IIT Research Institute + 376 + + +

    (Homeland Security supplemental appropriations)

    +
    +
    + + + Metal Matrix + 376 + + +
    + + + FY2002-2003-National Automotive Center (NAC) appropriation + priorities + 376 + + + + + FY2003 + + + + Department of Defense (DOD) appropriations + 376 + + + + + Homeland Security and Michigan Business authorization press release + talking points + 376 + + + + + + FY2003 appropriation requests + + + + AAR Cadillac + 376 + + +

    (Includes a floppy disk)

    +
    +
    + + + Altarum Institute + + + + Objective force + 2 folders + 376 + + + + + PEO ammunition + 2 folders + 376 + + + + + + American Soybean Association + 376 + + + + + Army Hybrid + 376 + + +

    (Electric vehicle improvements)

    +
    +
    + + + Automobile hybrids + 376 + + + + + Automotive Research Center (ARC) + 376 + + + + + Automotive Research Center (ARC)-NAC University automotive research + coalitions + 376 + + + + + Ayres, 2002-water quality and military treatment + options-MEMS + 376 + + +

    (Microelectrical Mechanical Systems; Delphi Automotive Systems partnership + with Wayne State on the Water Quality Testing Device)

    +
    +
    + + + BAE Systems + 376 + + + + + Central Michigan University-Nanotechnology + 376 + + + + + Detroit Edison fuel cells + 376 + + + + + Dow Thin Film + 376 + + + + + Eastern Michigan University-Advanced coatings research + 376 + + + + + Eaton (aerospace) + 376 + + + + + Electronic Display Research + 376 + + + + + Extended Cold Weather Clothing System + 376 + + +

    (Polartec)

    +
    +
    + + + Fuel cell-Preston and Gates law firm + 376 + + + + + Fuel Cell-Selfridge + 376 + + + + + Israel Ministry of Defense + 376 + + +

    (US-Israel Strategic Defense Cooperation)

    +
    +
    + + + Medical Simulation + 2002 + 376 + + +

    (Michigan Medical Modeling, Simulation, Training and Preparedness Center; + Altarum and Umich Med school)

    +
    +
    + + + Michigan Air National Guard Requests-military + construction + 376 + + + + + Michigan Technological University-Nanotech + 376 + + + + + Miscellaneous + 2 folders + 376 + + + + + Mustard gas + 376 + + +

    (Mustard Gas Treatment Signal Transduction Interruption Methodology + Antioxidant Liposomes; Umich)

    +
    +
    + + + National Automotive Center (NAC) Fuel Cell report + March-May 2002 + 376 + + +

    (TACOM-TARDEC NAC report on Defense and Industry Fuel Cell partnership)

    +
    +
    + + + National Center for Manufacturing Sciences + 376 + + +

    (Commercial Technologies for Maintenance Activities program)

    +
    +
    + + + Navy Sea Cadets Corps + 376 + + +

    (Includes floppy disk)

    +
    + + + Dear Chairman Letter + 2002 + + +

    [access item]

    +
    +
    + Online +
    + +

    (1997-2002 (105th-107th Congress). Template letter of support for the + appropriation of two million dollars for the U.S. Naval Sea Cadet Corps to + be included in the Fiscal Year 2003 Defense Appropriation Bill in Title + II.)

    +
    +
    +
    + + + Oldenberg Lake Shore + 376 + + +

    (Defense Business Unit-US Army Modular Causeway System program)

    +
    +
    + + + Photovoltaic + 376 + + + + + Textron Inc. + 376 + + +

    (MV-22 Osprey Tiltrotor)

    +
    +
    + + + University of Michigan Department of Defense + Authorization + 376 + + + + + University of Michigan fuel cell briefing + 2002 + 376 + + +

    (Includes CD)

    +
    +
    + + + University of Michigan Dearborn-Institute for Advanced Vehicle + Systems rapid prototyping initiative + 376 + + + + + Veridian + 376 + + + + + Victory Systems unmanned air vehicles + 376 + + +
    + + + Oakland Community College-Combined Regional Emergency Services + Training + February 2002 + 377 + + + + + Press releases-Michigan projects + 1997-2000 + 377 + + + + + U.S.-Israel military cooperation, FY + 1998 + 1999 + 377 + + + + + US-Israel military appropriation discussion + 2002-2004 + 377 + + +
    + + + Coast Guard + + + + Escanaba, (A. Pascale) + 2002 + 377 + + + + + Muskegon Coast Guard facility closure, (A. Pascale) + 2001 + 377 + + + + + + Committee correspondence, memos, and statements + + + + 2000 + + + + January + 377 + + + + + February + 2 folders + 377 + + + + + March + 2 folders + 377 + + + + + April + 2 folders + 377 + + + + + May + 2 folders + 377 + + + + + June + 377 + + + + + July + 377 + + + + + August + 377 + + + + + September + 2 folders + 378 + + + + + October + 378 + + + + + November + 378 + + + + + December + 378 + + + + + + 2001 + + + + January + 2 folders + 378 + + + + + February + 378 + + + + + March + 2 folders + 378 + + + + + April + 2 folders + 378 + + + + + May + 2 folders + 378 + + + + + June + 3 folders + 378 + + + + + July + 2 folders + 379 + + + + + August + 379 + + + + + September + 379 + + + + + October + 2 folders + 379 + + + + + November + 2 folders + 379 + + + + + December + 379 + + + + + + 2002 + + + + January + 379 + + + + + February + 2 folders + 379 + + + + + March + 2 folders + 379 + + + + + April + 2 folders + 379 + + + + + May + 2 folders + 379 + + + + + June + 2 folders + 380 + + + + + July + 2 folders + 380 + + + + + August + 380 + + + + + September + 380 + + + + + October + 380 + + + + + November + 380 + + + + + December + 380 + + + + + + + Contracts and research + + + + AAR Cadillac reimbursement + October 2000-January 2001 + 380 + + + + + Allan Tool and Machine Co., 1999-20002 + 380 + + + + + Allan Tool and Machine Co. and Wilcox Industries + 1999-2000 + 380 + + + + + Alternative fuel + 2000 + 380 + + + + + Arcadia Brewing Company + April-September 1997 + 380 + + + + + Arcadia Brewing + 2002 + 380 + + + + + Arris International + 2000 + 380 + + + + + Automotive Research Center (ARC) reception Levin remarks + March 13, + 2001 + 380 + + + + + Automotive Research Center (ARC) University of Michigan + 1997-1998 + 380 + + + + + AV Technology LLC + + + + 1997 + 380 + + + + + Export license to Turkey + 2 folders + 1998-1999 + 380 + + + + + Kuwaiti National Guard + 1996-1997 + 380 + + + + + + Avon Rubber and Plastics Inc. + 2001 + 380 + + + + + Ballard + 2003 + 380 + + + + + Carrom + May-June 2002 + 381 + + + + + Central Michigan University (CMU) nanotechnology research + 2002 + 381 + + + + + Continuous Acquisition and life Cycle Support (CALS) program contract + awards + 1998-1999 + 381 + + +

    (AMI Engineering)

    +
    +
    + + + CMS Energy + 1998-2000 + 381 + + + + + D&D Innovations Inc. + February-March 2002 + 381 + + + + + Delphi Automotive Systems + 2001-2002 + 381 + + + + + Denlin Corp + 2001-2002 + 381 + + + + + Department of Defense (DOD)-Fibromyalgia + 2002 + 381 + + + + + Department of Defense (DOD)-Osteoporosis + 2002 + 381 + + + + + Department of Defense (DOD)-Tuberous Sclerosis + 2002 + 381 + + + + + Detroit Diesel + February-April 1998 + 381 + + + + + Liz Robbins information request on biotech company Diversa + 2001 + 381 + + + + + Eastwood Custom Homes, Inc + 1999 + 381 + + + + + Engineered Machined Products, Inc (EMP) + 2002 + 381 + + + + + Energy Conversion Devices, Inc (ECD) + 2001-2002 + 381 + + + + + Environmental Research Institute of Michigan (ERIM) + + + + May-June 1997 + 381 + + + + + 1997-1999 + 381 + + + + + + Environmental Technologies Group Inc. and TACOM + June 1997 + 381 + + + + + Focus: Hope + 2001-2002 + 381 + + + + + Fulgham Machine Tools + 2003 + 381 + + + + + General Dynamics + 1998-1999 + 382 + + + + + General Dynamics LAV vehicles + 2000 + 382 + + + + + Green Tree, Inc-smokeless nitrocellulose + 1998-2001 + 382 + + + + + GMA Cover Corp. + 1997 + 382 + + + + + Hamlin, Inc + 1997 + 382 + + + + + Henry Ford Health System (HFHS) + 1999 + 382 + + + + + Infinity Technology Inc. + 2001-2002 + 382 + + + + + Intrepid World Communication Meetings + 2001 + 382 + + + + + JASON Foundation for Education + 1999 + 382 + + + + + Knight Enterprises Inc. + 2002 + 377 + + + + + Michigan Biological Products Institute (MBPI) + 1996-1997 + 382 + + + + + Michigan companies and Department of Defense (DOD) + 2 folders + 1997-1998 + 382 + + + + + Michigan defense contractors + 1998-2000 + 382 + + + + + Michigan interests and Department of Defense + 1999-2001 + 382 + + + + + Michigan State University (MSU) Rare Isotope Accelerator + (RIA) + 2002 + 382 + + + + + Michigan State University (MSU) research + August-November 2001 + 382 + + + + + Moldite Corporation + 2001 + 382 + + + + + Munro and Associates + 2002 + 382 + + + + + National Automotive Center (NAC)-Automotive Research Center (ARC) + university consortium + March 1999 + 382 + + + + + National Automotive Center (NAC) and TARDEC + 6 subfolders + 1998-1999 + 383 + + + + + Nuclear and non-nuclear fabrication in Center Line, + (Michigan) + October 2000 + 383 + + + + + National Rotorcraft Technology Center (NRTC) at the University of + Michigan + August-September 2000 + 383 + + + + + Oakland University-Fastening and Joining Research Institute + (FAJRI) + 2 folders + March 2002-May 2003 + 383 + + + + + Oldenberg Lake Shore, Inc., (TACOM) + 1999-2001 + 383 + + + + + Oldenburg + 2002 + 383 + + + + + Optical Imaging Systems (OIS) flat panel display, (ECD) + 1999 + 383 + + + + + Optometrics, Inc. + 1998-2001 + 383 + + + + + Procurement Technical Assistance Center (PTAC) + 2001 + 383 + + + + + S Main Company + June 2002 + 383 + + + + + Safe Hands cream + January-February 2002 + 383 + + + + + Satellite Services, Inc. + June 2002 + 383 + + + + + SCOT Technologies + 2001 + 383 + + + + + TACOM + 1997 + 1999 + 383 + + + + + Thermopol-blood storage + 2003 + 383 + + + + + Thermotron + 2001 + 383 + + + + + University of Michigan-Medical Readiness Trainer facility + 2000 + 383 + + + + + University of Michigan research-Automotive Research Center + (ARC) + 2000-2004 + 383 + + + + + Williams International-Small Aircraft Transportation System + (SATS) + 1997-2000 + 383 + + +
    + + + Correspondence-miscellaneous + + + + 2002 + 384 + + + + + 2002-2004 + 384 + + + + + + Defense Logistics Agency consolidation + April-June 2002 + 384 + + +

    (Battle Creek, Michigan)

    +
    +
    + + + Department of Defense (DOD) + + + + Recycling + January 2002 + 384 + + + + + + Detroit Symphony Army + 2002 + 384 + + + + + Detroit visit + March 1997 + 384 + + + + + Fort Custer National Cemetery, Ceremonial Rifles + 1997-1999 + 385 + + + + + Iraq-Carl's writings + + + + 1 Debate on use of force + 2002 + 385 + + + + + 1 Iraq Joint Resolution, drafts, notes + 2002 + 385 + + + + + 2 Themes, Iraq involvement + 2002 + 385 + + + + + 3 Carl's Notes for TV Shows, Caucus, White House regarding + Iraq + 2002 + 385 + + + + + 7 Polls about Iraq invasion and Bush + 2002 + 385 + + + + + 8 Miscellaneous clippings, regarding Iraq invasion + 2002 + 385 + + + + + 9 Miscellaneous Iraq folder, statements, clippings, background + information + 2002 + 385 + + + + + 12 Talk show transcripts of other officials regarding Iraq + 2002 + 385 + + +

    (Rumsfeld, Powel, Rice)

    +
    +
    + + + 14 Military considerations, clippings + 2002 + 385 + + +
    + + + JASON Project + 2 folders + 1997-1998 + 385 + + + + + MGM Windtalkers premiere + 2001 + 385 + + + + + Michigan + + + + Air shows + 1997-2002 + 385 + + + + + Pontiac-Junior ROTC + 2001 + 385 + + + + + Saginaw Chippewa housing-Operation Walking Shield + 2001 + 385 + + + + + + Michigan Millennium Project + 2000 + 385 + + + + + Michigan procurement conference + 2002 + 385 + + + + + Michigan Procurement Conference + 2002 + 385 + + + + + Michigan POW Refugio Teran burial and Vandenburg speech + 2002 + 385 + + + + + Military bases and installations + + + + Alpena-Kadena Instrumental Training System (AKITS) + 1998-2001 + 385 + + + + + Base Realignment and Closure (BRAC) + 2002-2003 + 385 + + + + + Battle Creek Defense Logistics Agency + April-May 2002 + 385 + + + + + Battle Creek Federal Center + + + + 1998-1999 + 385 + + + + + 2001-2002 + 385 + + + + + 2002-2003 + 385 + + + + + + Calumet Armory + 2001-2002 + 386 + + + + + Coast Guard station closing-Muskegon + 1999 + 386 + + + + + Defense Fuels Supply Point in Escanaba transfer to Bureau of Indian + Affairs + 2 folders + 2001-2004 + 386 + + + + + Department of Homeland Security Facility-Grayling and + Alpena + + + + Homeland security + 1999-2003 + 386 + + + + + Training briefing book + August 5, + 2003 + 386 + + + + + + Funding for Michigan bases + 1997-1998 + 386 + + + + + Hart-Dole-Inouye Federal Center and Dole + 2002-2003 + 386 + + + + + Kincheloe Air Force Base + 2002 + 386 + + + + + KI Sawyer Air Force Base + + + + 1984-1985 + 1995-2004 + 386 + + + + + 1997-1999 + 386 + + + + + Base Realignment and Closure (BRAC) + 2 folders + 1999 + 386 + + + + + Implementation + 5 subfolders + 1996-2001 + 387 + + + + + SAGE building use + 2001-2002 + 387 + + + + + + Non-defense base conversion + 1999-2001 + 387 + + + + + Selfridge Air Force Base + + + + 1993-2001 + 387 + + + + + Health Clinic + 2002-2003 + 387 + + + + + KC-135s + 2000 + 387 + + + + + Reserve refueling wing + January 23, + 2002 + 387 + + + + + + Shiawassee-Army National Guard Readiness Center + 2002 + 387 + + + + + TACOM-deed transfer + 2001 + 387 + + + + + TARDEC building 7 relocation + 2002 + 387 + + + + + Wurtsmith Air Force Base + + + + Closure, (BRAC) + 2 folders + 1998-1999 + 387 + + + + + Wastewater treatment plant land transfer + August-September 2000 + 387 + + +

    (Transfer between Oscoda Township and U.S. Forest Service)

    +
    +
    +
    +
    + + + Military health + + + + Anthrax vaccine immunization program, (K. Burns) + 2 folders + 1999 + 387 + + + + + Dr. Mudd -- removal of conviction + 2 folders + 1996-2000 + 387 + + +

    (Helped John Wilkes Booth; K. Burns)

    +
    +
    + + + Neurotoxins information, (K. Burns) + 1996-1998 + 387 + + + + + Vector Research Inc. model for healthcare delivery, (DOD) + 1999-2000 + 377 + + +
    + + + Military voting rights + December 2000 + 388 + + + + + National Guard-Michigan + + + + Army National Guard Aviation Transformation and + Modernization + 2001 + 388 + + + + + Discrimination + 1995-1999 + 388 + + + + + Meeting memos + 2 folders + 1997-2004 + 388 + + + + + Minority Active and Retired Military Improvement Committee + (MARMIC)-discrimination + 1995-1999 + 388 + + + + + Military construction + 2002 + 388 + + + + + Northern border + 2002 + 388 + + + + + Operation Noble Eagle + 2001 + 388 + + + + + + National Guard-Weapons of Mass Destruction Civil Support + Teams + + +

    (WMD-CST)

    +
    + + + July-September 2000 + 388 + + + + + 2001 + 388 + + +
    + + + National Missile Defense (NMD) + + + + Anti-Ballistic Missile (ABM) + + + + Debate, FY1997 + 388 + + + + + Defense authorization bill + 1995-1996 + 388 + + + + + Funding requests FY02 + 388 + + + + + Joint statements by U.S. and Russia + March 1997 + June 1999 + 388 + + + + + Levin notes + September 2001 + 388 + + + + + News articles and notes + 2001 + 388 + + + + + Markup notes + 2 folders + 2001 + 388 + + +

    (Defense authorization)

    +
    +
    + + + Notes + August 1998 + 388 + + + + + U.S. proposal + April 2000 + 388 + + + + + Violation-Cochran + 1999-2000 + 388 + + +
    + + + Anti-Ballistic Missile Treaty + + +

    (ABM)

    +
    + + + November 1999 + 388 + + + + + Background and charts + May 1999 + 389 + + + + + Compliance + July 2001 + 389 + + + + + Conference on the legal status of the treaty-Levin speech + May-August 2000 + 389 + + + + + Letter to the President + May 10, + 2000 + 389 + + + + + Memos and letters + 1997-1998 + 389 + + + + + Miscellaneous information + October 1998 + 389 + + +
    + + + Arms Control Association talk + March 31, + 2000 + 389 + + + + + Correspondence with Berger + October-November 1998 + 389 + + + + + Correspondence + 1999-2000 + 389 + + + + + Council on Foreign Relations debate + + + + Anti-ballistic missiles + September 17, + 1998 + 389 + + + + + Anti-ballistic missile Levin talking points + September 1998 + 389 + + + + + Levin remarks + February 17, + 2000 + 389 + + + + + Transcript + February 17, + 2000 + 389 + + + + + + Current issues + June 4, 2001 + 389 + + + + + Hearing transcript + July 24, 2001 + 389 + + +

    (Senate Foreign Relations Committee)

    +
    +
    + + + Hearing with Secretary Cohen + July 24, 2000 + + + + Dugout-Daschle meeting + June 2000 + 389 + + + + + Daschle meeting notes + July 18, + 2000 + 389 + + + + + News articles, letters, and notes + April-July 2000 + 389 + + + + + + Hearing + July 25, 2000 + 389 + + + + + Hearing, deployment timeline, and Stamp Out Breast Cancer + Act + July 2000 + 389 + + + + + Letter to the President + December 1999 + 389 + + + + + Letter-Lott to Berger regarding letter to President + April 2000 + 389 + + + + + Letters and meeting memos + March-May 2000 + 389 + + + + + Levin's China article + 4 folders + 2000 + 389 + + + + + Levin materials on ballistic missile defense + + + + 1998-2001 + 389 + + + + + June-September 2001 + 389 + + + + + + Levin speech at National Missile Defense Symposium + June 27, 2000 + 389 + + + + + Levin statement on $1.3 billion amendment + September 2001 + 389 + + + + + Levin statements + June-July 2000 + 389 + + + + + Levin statement-Helms + April-May 2000 + 389 + + + + + Levin statements and draft article + June-August 2000 + 389 + + + + + Meeting with Albright and Berger + June 1999 + 389 + + + + + Meeting with Albright, Berger, and Cohen + June 1999 + 389 + + + + + Meeting with John Hamre + June 8, 1999 + 389 + + + + + Meetings + July-November 1999 + 389 + + + + + Meeting with Sandy Berger, Strobe Talbott, and Walt Slocombe + memo + February 7, + 2000 + 389 + + + + + Meeting with Lt. Gen. Ron Kadish + March 9, 2000 + 382 + + + + + Meetings with Strobe Talbott, April + June 2000 + 382 + + + + + Meetings with Skelton and Cohen + July 26, 2000 + 382 + + + + + Memo on military construction + April 28, + 2000 + 382 + + +

    (President budget request)

    +
    +
    + + + Miscellaneous + 1998-1999 + 382 + + + + + Miscellaneous + 1999-2000 + 382 + + + + + National Defense Authorization Act Levin-Nunn-Warner-Cohen compromise, + FY96 + 383 + + + + + National Missile Defense Act-S.257 + + +

    (NMD)

    +
    + + + Amendments + March 1999 + 383 + + + + + Levin file + March 1999 + 383 + + + + + Statement + February-May 1999 + 383 + + +
    + + + News articles, letters, and transcript + 2000 + 383 + + + + + New articles and notes + 3 folders + February-April 2000 + 386 + + + + + News articles and notes + June-July 2001 + 386 + + + + + Phone call with Michael Gordon + May 23, 2000 + 386 + + + + + President + + + + Democratic Issues Conference + May 2000 + 386 + + + + + Draft floor statement on Helms speech on ABM and NMB + April 28, + 2000 + 386 + + + + + News articles and notes + 2 folders + 2000 + 386 + + + + + Notes-NMD, ABM Treaty and START III + April-May 2000 + 381 + + + + + + Presidential Medal of Honor + 2000 + 381 + + + + + Proliferation talking points + February-April 2001 + 381 + + + + + STARBASE program + 2000-2002 + 381 + + + + + START III and anti-ballistic missile + + + + March-September 1999 + 381 + + + + + September-October 1999 + 381 + + + + + + Updates and Presidential joint statements + 1999-2000 + 376 + + + + + Welch report + 1998 + 376 + + + + + Work file + 2000 + 376 + + +
    + + + Navy-USS Kalamazoo + 1998 + 376 + + + + + US Naval Academy-Jewish Memorial Chapel + 2001-2002 + 376 + + + + + Select Committee on Intelligence-Press releases + June 1997 + 376 + + +

    (SSCI)

    +
    +
    + + + Uniform Code of Military Justice-sodomy + June 2001 + 376 + + + + + USS Kalamazoo + March 2001 + 376 + + + + + Weapons, technology, and vehicles-Desert Raider attack + vehicle + 2000 + 376 + + +

    (Marine Corps)

    +
    +
    +
    + + + Economic Policy + 1986-2003 + + + + Banks + + + + Bank fees + 1998 + 444 + + + + + Community Reinvestment Act + 2 folders + 1995-1998 + 444 + + + + + Community Reinvestment Act, (Gramm-Leach Act; T. Henseler) + 2002 + 444 + + + + + Credit card fees + 6 subfolders + 2001 + 444 + + +

    (Levin bill -- S.539; T. Henseler and I. Cohen)

    +
    +
    + + + Credit unions + 2 folders + 1995-1997 + 444 + + + + + Credit union -- common bond -- H.R.1151 + 3 subfolders + 1997-1998 + 444 + + + + + Credit unions and taxes + 1997-1998 + 444 + + + + + Credit Unions generally, (T. Henseler) + 2001-2003 + 444 + + + + + Dort Federal Credit Union, (T. Henseler) + 2001 + 444 + + + + + Employee Stock Ownership Plans (ESOPs) + 1996 + 444 + + + + + Federal vs State + 1996-1997 + 444 + + + + + Financial Accounting Standards Board (FASB), (T. Henseler) + 2001 + 444 + + + + + Insurance issues + 1996-1997 + 444 + + + + + Michigan banking + 2 folders + 1994-1997 + 444 + + + + + Michigan banking cases + 1996-1998 + 445 + + + + + Michigan contacts + 1995-1998 + 445 + + + + + Miscellaneous banking documents, (T. Henseler) + 2002-2003 + 445 + + + + + Pulte Savings and Loan Exemption, (Detroit, Michigan) + 1996 + 445 + + + + + Securities issues and Glass-Steagall Act + 1995-1998 + 445 + + + + + Working files + 8 subfolders + 1994-2000 + 445 + + +

    (Includes background and facts, BIF-SAIF, federal regulatory performance, + Miscellaneous, and securities and loans goodwill issues)

    +
    +
    +
    + + + Banking and Modernization bill-H.R.10 + 1998 + 445 + + + + + Bankruptcy (I. Cohen) + + + + 107th Congress + 7 subfolders + 2001-2002 + 445 + + +

    (Includes cramdowns and other reform)

    +
    +
    + + + Amendment to close loophole in bankruptcy courts for gun + makers + 1999-2000 + 445 + + + + + Bankruptcy bill + 5 subfolders + 1999-2000 + 446 + + +

    (Includes gun industry, drunk driving, and automatic stay)

    +
    +
    + + + Carl's binder on gun maker loophole amendment to bankruptcy + bill + 2000 + 446 + + + + + Carl's file on bankruptcy bill, (S.625) + 1999-2000 + 446 + + + + + Carl's file on cramdowns + 1999 + 446 + + +
    + + + Bankruptcy Reform Act + 3 folders + 2000 + 446 + + + + + Capital gains, (D. Guglielmo) + 2 folders + 1993-1997 + 446 + + + + + Commerce-Federal Research Investment Act-S.296 + 1999 + 446 + + + + + Committee hearings + + + + Private Banking and Money Laundering: A Case Study of Opportunities and + Vulnerabilitites (PSI) + November 9-10, 1999 + + + + Correspondence + 446 + + + + + Press + 446 + + + + + Statement-Carl Levin + 446 + + + + + Witness-Anthony "Tony" Giraldi + 5 folders + 1999-2000 + 481 + + + + + Witnesses + 446 + + + + + Working files (folder 1) + 481 + + + + + Working files (folder 2) + 481 + + + + + Private banks Citibank (L. Gustitus) + 3 subfolders + 447 + + + + + Hearing statements + 446 + + + + + Work file + 481 + + + + + + The Role of U.S. Correspondent Banking in International Money + Laundering (PSI) + March 1, 2001 + + + + Levin questions for witnesses + 447 + + + + + Levin statements for press + 447 + + + + + + Retirement Insecurity: 401(k) Crisis at Enron, (GAC) + February 5, + 2002 + 447 + + + + + The Role of the Board of Directors in Enron's Collapse + (PSI) + May 7, 2002 + + + + Committee print (Book; Subcom PSI) + 447 + + + + + Exhibits + 447 + + + + + Working file + 481 + + + + + + Oversight of Investment Banks' Response to the Lessons of Enron + (PSI) + December 11, + 2002 + 447 + + + + + Enron-Corporate Governance 3rd edition by Robert Monks and Nell + Minow + December 2003 + 447 + + + + Third Edition Corporate Governance + 2003 + + +

    [access item]

    +
    +
    + Online +
    + +

    (1997-2002 (105th-107th Congress). Corporate Governance 3rd Edition from + Blackwell Publishing on the Permanent Subcommittee on Investigations (PSI) + investigation on the collapse of Enron.)

    +
    +
    +
    + + + Money laundering -- letter to Michael A. Fitzpatrick + June 15, 2000 + 447 + + +

    (Chairman and Managing Director of Hanover Bank; PSI investigation information + request)

    +
    +
    +
    + + + Consumer confidence, (T. Henseler) + 2001-2002 + 447 + + + + + Coverdell Education Savings Accounts, (D. Guglielmo and B. + Weber) + 2 folders + 1997-2000 + 447 + + + + + Dear Colleagues (T. Henseler) + 2001-2003 + 447 + + + + + Economic stimulus, (T. Henseler) + 13 subfolders + 2001-2002 + 447 + + + + + Economic stimulus + + + + Amendments to economic stimulus + January 2002 + 448 + + + + + House activity + 2001 + 448 + + + + + Third House bill + 2002 + 448 + + + + + Fourth House bill + 2002 + 448 + + + + + Levin floor speech draft + February 6, + 2002 + 448 + + + + + Senate Democrat proposals + 2001 + 448 + + + + + Unemployment insurance and health insurance + 2001-2002 + 448 + + + + + + Education technology, (B. Weber) + 1998-2000 + 448 + + + + + Enron + + + + Carl's writings + 3 folders + 2002 + 448 + + + + + Employee Stock Ownership Plans, 401(k), in the wake of + Enron + 2 folders + 1997-2002 + 449 + + +

    (ESOP; Includes February 5, 2002 GAC hearing)

    +
    +
    + + + Employee Stock Ownership Plan and post-Enron reform, (ESOP) + 2 folders + April-August 2002 + 449 + + +
    + + + Federal Agency Child Care, (T. Henseler) + September 2001 + 449 + + + + + Federal Stafford loan interest rates, (Student loands; T. + Henseler) + 2001 + 449 + + + + + Financial Services Modernization Act, S.900 + + + + Community Reinvestment Act (CRA) + 1999 + 449 + + + + + Levin and Schumer amendment + 1999 + 449 + + + + + + Income inequality, (T. Henseler) + 2001-2002 + 449 + + + + + Insurance + + + + 1995-1998 + 449 + + + + + Clinton life insurance proposals + 1998-1999 + 449 + + + + + Company Owned Life Insurance (COLI) + September 5, + 2002 + 449 + + + + + + Interest rates, (B. Weber) + 2000 + 449 + + + + + K-Mart bankruptcy, (T. Henseler) + 2002 + 449 + + + + + Carl Levin to-do file, (T. Henseler) + 2001 + 449 + + + + + Michigan economy + 2000-2001 + 449 + + +

    (Auto industry, SNEI rating,etc.; B. Weber)

    +
    +
    + + + Michigan unemployment, (T. Henseler) + 2001-2002 + 449 + + + + + Miscellaneous (T. Henseler) + + + + General commentary and articles + 2001-2002 + 449 + + + + + Michigan generally + May-June 2001 + 449 + + + + + + Per-capita income, (T. Henseler) + December 2001 + 449 + + + + + Private Securities Litigation Reform Act, (T. Henseler) + 2002 + 449 + + + + + Restoring Earnings Lift Individuals and Empower Families Act -- + Congressional Record, (B. Weber) + May 17, 2001 + 450 + + + + + Sarbanes letter regarding Section 8 + 2002-2003 + 450 + + + + + Securities and Exchange Commission (SEC) + + + + Correspondence + July 2000 + 450 + + + + + Rule change letter + 2000 + 450 + + + + + SEC-Levitt-Bear Stearns + 1998-1999 + 450 + + + + + + Small Order Execution System (SOES), (D. Guglielmo) + 1997 + 450 + + + + + Stock options (D. Guglielmo) + + + + S.576 + 1997-1998 + 450 + + + + + Opponents of S.576 + 1997-1998 + 450 + + + + + Companies expensing options + 2000-2003 + 450 + + + + + Financial Accounting Standards Board (FASB) on stock options, (D. + Guglielmo and B. Weber) + 1999-2000 + 450 + + + + + Financial Accoutning Standards Board (FASB) and CRS + information + 1995-1997 + 450 + + + + + Joint tax tables + 1997 + 1995 + 450 + + + + + Option exemption -- S.2323 (B. Weber) + 2000 + 450 + + + + + Press articles + + + + 2 folders + 1997 + 450 + + + + + 1998 + 450 + + + + + 1999 + 450 + + + + + 2000-2001 + 450 + + +

    (B. Weber)

    +
    +
    +
    + + + Press packets -- S.576 + 1997 + 450 + + + + + Studies + 1997-1998 + 451 + + + + + Warren Buffet and stock options + 1991-2000 + 451 + + +
    + + + Tax (D. Guglielmo) + + + + Tax exemption -- New Hampshire residents working in Main naval + yard + 1990-1999 + 451 + + + + + Historical tax information + 1986-2001 + 451 + + +

    (Includes op-ed on why Levin was one of the three Senators to vote against the + Senate tax bill in 1986 D. Guglielmo and P. Shandler)

    +
    +
    + + + Internal Revenue Service Reform Act of 1997 (IRS) + 1998 July-September + 451 + + + + + Internet taxes + 1998 + 451 + + + + + Tax exempt stadium bonds + 2 folders + 1996-1997 + 451 + + +

    (Moynihan's stadium bond bill)

    +
    +
    + + + Transfer pricing + 1999 + 451 + + + + + Wealth and tax burden data + 1998-1999 + 451 + + +
    + + + Tax (B. Weber) + + + + Adoption credit + 2000 + 451 + + + + + Advanced pricing agreement and the Bureau of National Affairs + case + 1999 + 451 + + + + + Alternative fuel credit + 2000 + 451 + + + + + Alternative fuel vehicle (AFV) + 2001 + 451 + + + + + Alternative fuel vehicle (AFV) amendment + 2001 + 451 + + + + + Biomass tax credit + 1999-2000 + 451 + + + + + Bond fairness and electric deregulation + 1999-2000 + 451 + + + + + BR bill, minimum wage, and tax cuts + 2000 + 451 + + + + + Bush vs. Gore tax cuts + 1999-2000 + 451 + + + + + Child and dependent tax credit + 2000 + 451 + + + + + Conference report tax bill -- H.R.2614 + 2000 + 451 + + + + + Consolidated Appropriations Act -- H.R.4577 + 2001 + 452 + + + + + Council of Michigan Foundations + 1997-2001 + 452 + + + + + Education tax cuts + 2001 + 452 + + + + + Estate tax articles + 1999-2000 + 452 + + + + + Kravitz -- FOC on estate tax + 2001 + 452 + + + + + More estate tax documents + 2000 + 452 + + + + + Excise taxes + 1997 + 452 + + + + + Extenders -- taxes + 1999 + 452 + + + + + Foreign sales corporation statute + 2000 + 452 + + + + + Frey Foundation + 2000 + 452 + + + + + Gas tax + 2000 + 452 + + + + + General Motors + 1999 + 452 + + + + + General Motors acceptance corporation and lease law changes + 2000 + 452 + + + + + Gephardt's 10% tax bracket plan + 1999 + 452 + + + + + Healthcare provisions, 1999 + 452 + + + + + Individual development accounts + 2000 + 452 + + + + + Individual Retirement Account (IRA) charitable rollover + 2000 + 452 + + + + + Internal Revenue Service (IRS) complaints + 2000-2001 + 452 + + + + + Internal Revenue Service Reform Act, (IRS) + 1998 + 452 + + + + + Internet taxation + 2000-2001 + 452 + + + + + Marriage penalty + 1997 + 452 + + + + + Marriage penalty tax bill -- H.R.4810 + 2000 + 452 + + + + + Michigan Catastrophic Claims Association + 2000 + 452 + + + + + Michigan tax data + 1999 + 452 + + + + + News articles on tax loopholes + 2000 + 452 + + + + + Pensions and individual retirement accounts (IRA) + 2001 + 452 + + + + + Phone excise tax + 2000 + 452 + + + + + Printed Circuit Investment Act + 1999 + 452 + + + + + Reconciliation tax bill amendments + 2001 + 452 + + + + + Reconciliations tax cut FY2002 + 452 + + + + + Research and development tax credit + 2001 + 452 + + + + + Tax burden + 1999-2001 + 452 + + + + + Tax exempt entities + 1999 + 452 + + + + + Tax legislation + 2000 + 452 + + + + + Tax letters signed by Carl + 2000 + 452 + + + + + Tax rates and tax burden, (D. Guglielmo and B. Weber) + 1999-2001 + 452 + + + + + Tax reading file, (CRS) + 1999 + 452 + + + + + Tickets to Work Act -- H.R.1180 + 1999 + 452 + + + + + + Tax (T. Henseler) + + + + Alternative minimum tax (AMT) and incentive stock option + (ISO) + 2001 + 452 + + + + + Appliance tax credit -- S.686 + 2001-2002 + 452 + + + + + Archery taxes + 2001 + 452 + + + + + Capital gains + September-October 2001 + 452 + + + + + Charity Aid, Recovery, and Empowerment (CARE) Act + 2002 + 453 + + + + + Economic substance + August 2002 + 453 + + + + + Energy tax issues + 2001-2002 + 453 + + + + + Freeze upper bracket tax cut, (R. Arenberg and T. Henseler) + 2001-2002 + 453 + + + + + Internal Revenue Service (IRS) foreign bank account disclosure + regulations + October 2001 + 453 + + + + + Carl's tax and budget miscellaneous items, (R. Arenberg and B. + Weber) + 2000-2001 + 453 + + + + + Miscellaneous tax information + 2001 + 453 + + +

    (Also includes Levin tax vote information from 1979-2001)

    +
    +
    + + + New market tax credits + 2002-2003 + 453 + + + + + Oakland County + 2001 + 453 + + + + + Oldsmobile dealers, (auto) + 2001-2002 + 453 + + + + + Pension reform + 2002 + 453 + + + + + Private foundation income, (excise tax) + 2001-2002 + 453 + + + + + Special occupancy tax, (S.808) + 2001-2002 + 453 + + + + + Tax cut generally, (P.L.107-16) + 2001-2002 + 453 + + + + + Welfare to work and work opportunity tax credit + 2002 + 453 + + +
    + + + Tax havens + + + + Bermuda Incorp. -- S.2050 + 2002 + 453 + + + + + Generally, (T. Henseler) + 2002 + 453 + + + + + + Terrorism Risk Insurance Act (TRIA) + 2001 + 453 + + +
    + + + Education + 1996-2003 + + + + 1997-1998 + 489 + + + + + 1999-2001 + 489 + + + + + Budget resolution and conference-Education and Human services + FY1997 + 489 + + + + + Carl's markings + 2 folders + 1997 + 489 + + + + + Charter schools + 1998-1999 + 489 + + + + + Consortium for Outstanding Achievement in Teaching with Technology + (COATT) + 55 folders + 1997-2001 + 490 + + + + + Education: 2000 funding + 1998 + 490 + + + + + Education flexibility partnerships amendment + January-March 1999 + 490 + + + + + Funding + 2 folders + 2001-2002 + 491 + + + + + Grand Valley State University International Center and Michigan + Alternative and Renewable Energy Center (MAREC) + 1997 + 2003 + 489 + + + + + Issues + 1997-2001 + 489 + + + + + NASA + + + + Video conferences with school + January-February 2001 + 489 + + + + + Space Grant College and Fellowship program + 1999 + 2002 + 489 + + + + + Third generation launch vehicle-University Research and Education + Technology Institute (URETI), (Umich) + January 29, + 2002 + 489 + + + + + + Policy, funding, and cheese head statement + 2 folders + 1996-1997 + 491 + + + + + Technology + 1997 + 491 + + + + + Technology and Next Generation Internet amendment + 1998 + 491 + + + + + Technology in our schools: a working session with Levin, + (Michigan) + February 1998 + 491 + + + + + Technology Innovation Challenge grant program-Challenge + Michigan + 1998 + 491 + + + + + University of Michigan affirmative action case + 2 folders + 2001 + 491 + + + + + Consortium for Outstanding Achievement in Teaching with Technology + (COATT) + 1997-2001 + 1114 + + +

    (51 folders)

    +
    +
    +
    + + + Energy and natural resources + 1982-2005 + + + + American Heritage Rivers + 1997 + 528 + + + + + American Heritage River Initiative + 2 folders + 2000-2003 + 528 + + + + + Appropriations + + + + FY1998 and FY1999 U.S. Army Corps of Engineers Detroit district + activities + 528 + + + + + FY1999 Energy and water + 528 + + + + + FY1999 Great Lakes + 528 + + + + + FY1999 Requests Great Lakes Task Force + 528 + + + + + FY2000 Energy and water, Army Corps of Engineers + 528 + + + + + FY2000 Requests Great Lakes Task Force + 528 + + + + + FY2000 Transportation + 528 + + + + + FY2000 Veterans Affairs and Housing and Urban Development + (VA-HUD) + 528 + + + + + FY2000 Riders, miscellaneous + 528 + + + + + FY2001 + 528 + + + + + FY2001 Environmental riders, Great Lakes funding + 528 + + + + + FY2001 Requests Great Lakes Task Force + 528 + + + + + FY2001 Transportation + 2 folders + 528 + + + + + FY2001 Veterans Affairs and Housing and Urban Development + (VA-HUD) + 529 + + + + + FY2001 VA-HUD contaminated sediment + 529 + + + + + FY2002 requests Great Lakes Task Force + 529 + + + + + FY2003 + 529 + + + + + FY2003 Energy and water + 2 folders + 529 + + + + + FY2003 Energy and water + 529 + + + + + FY2003 Environmental Protection Agency (EPA) + 529 + + + + + Interior, energy, environment, and commerce + 1995-1998 + 529 + + + + + Anti-environmental riders + 1999 + 529 + + + + + CAFE standards freeze-rider in transportation + appropriations + 2000 + 529 + + + + + Interior riders research and letters + 2001 + 530 + + + + + Veterans Affairs and Housing and Urban Development riders + 2 folders + 2001 + 530 + + +

    (VA-HUD; Environmental requests)

    +
    +
    + + + Great Lakes Initiative (GLI) monitoring files, (A. Jones) + 2002-2003 + 530 + + + + + Water Resources Development Act (WRDA) + + + + 1998 + 530 + + + + + Language + 1999 + 530 + + + + + Memos, language, and letters + 2000 + 530 + + + +
    + + + Asbestos ban + 2003-2004 + 530 + + + + + Auto + + + + Advanced technology + 2000-2001 + 530 + + +

    (Carl's writing)

    +
    +
    + + + Alternative fuel vehicles (AFV) + 2 folders + 1991-1994 + 2000-2001 + 530 + + + + + Low Emission Vehicle Standards Phase II (LEV II), Clean Air Act, and + cleaner vehicles + 1999 + 530 + + + + + Off-road and snowmobile emissions + 2000-2004 + 530 + + + + + Tax incentive legislation for highly fuel efficient vehicles -- + S.2685 + 2000-2001 + 530 + + + + + Tier 2 automobile and light truck emissions standards and + regulations + 2000-2002 + 530 + + +
    + + + Biomass power + 2002-2003 + 530 + + + + + Bottle bill and curbside recycling + 1993 + 1997 + 530 + + + + + Brownfield background information and hazardous substances + 1998-2000 + 531 + + + + + Brownfield Program information + 2 folders + 2001 + 531 + + + + + Brownfield redevelopment + 2 folders + 2000 + 531 + + + + + Brownfields research and letters + 1999-2000 + 531 + + + + + Canada air issues + 2000 + 531 + + + + + Canada air regulations + 2000-2001 + 531 + + + + + Canadian trash, (K. Meier and R. Moy) + 2 folders + 2001-2002 + 531 + + + + + Case law + 2000-2002 + 531 + + + + + Environmental justice cases + 2000-2002 + 531 + + + + + Children's environmental issues + 2000-2001 + 531 + + + + + Clean air + 2000-2001 + 531 + + + + + Clean air and Clean Air Act chronology research + 1999 + 531 + + + + + Clean beaches + 2000-2002 + 532 + + + + + Clean Cities + 2000-2001 + 532 + + + + + Clean water, (Michigan and Great Lakes) + 2001-2002 + 532 + + + + + Climate change + 1997 + 532 + + + + + Climate change including Lieberman and McCain legislation, Kyoto and + S.Res.98, Daschle bill + 2 folders + 2003 + 532 + + +

    (Some but not all pertaining to auto companies)

    +
    +
    + + + Climate change research and letter + 1999-2000 + 532 + + + + + CMS Energy Corp. + 2002-2003 + 532 + + + + + Coal and utility waste hazardous classification + 2000-2001 + 532 + + + + + Combined sewer overflow (CSO) + 4 folders + 1998 + 532 + + + + + Committee hearings + + + + Restructuring Energy Industries + June 13, 2001 + 532 + + +

    (Economic Issues Associated with the Restructuring of Energy Industry; GAC)

    +
    +
    + + + Role of FERC in Energy Industries + 3 folders + June 20, 2001 + 533 + + +

    (The Role of the Federal Regulatory Commission Associated with the + Restructuring of Energy Industries; GAC)

    +
    +
    + + + Enron Corporations Collapse + 3 folders + January 29, + 2002 + 533 + + +

    (Senate Committee on Energy and Natural Resources)

    +
    +
    +
    + + + Commonwealth Edison (ComEd) + 2003 + 533 + + + + + Contaminated sediments + 1998 + 533 + + + + + Corporate Average Fuel Economy (CAFE) + + + + 2002 + + + + I + 16 subfolders + 533 + + + + + II + 14 subfolders + 533 + + + + + III + 9 subfolders + 533 + + + + + IV + 8 subfolders + 533 + + + + + V + 7 subfolders + 533 + + + + + VI vehicle purchase possible amendment + 533 + + + + + VII Baucus meeting + 533 + + + + + + Autos + 3 subfolders + 2002 + 534 + + +

    (Carl's file)

    +
    +
    + + + CAFE program + 2001 + 534 + + + + + Correspondence, media, charts and tables, memos, and + background + 7 subfolders + 1991-1999 + 534 + + + + + Effectiveness and Impact of Corporate Average Fuel Economy + Standards + 2 books + 2002 + 534 + + +

    (National Research Council book with notes inside and some documents)

    +
    +
    + + + Fight in Department of Transportation appropriations bill + FY2000 + 534 + + + + + Carl's floor binder + 4 folders + 2002 + 534 + + +

    (Energy and CAFE)

    +
    +
    + + + Memos and correspondence, (Carl's file) + 1999-2000 + 535 + + + + + Notes on car statistics + 2000 + 535 + + +
    + + + CAFE and energy bill + 2002 + + + + Bingaman energy bill + 14 subfolders + 535 + + + + + Cafe information + 535 + + + + + Cafe information for press + 7 subfolders + 535 + + + + + Energy bill letters + 8 subfolders + 535 + + + + + Fuel and energy + 535 + + + + + Fuel economy + 535 + + + + + Levin-Bond + 14 subfolders + 535 + + + + + Levin-Bond approach to fuel economy + 12 subfolders + 536 + + + + + Tax provisions + 8 subfolders + 536 + + + + + + Conservation and Reinvestment Act + 1999-2000 + 536 + + + + + DDT and Persistent Organic Pollutants (POPs) and Animals-La Plata + projects + 2000 + 1029 + + + + + Democratic Policy Committee vote information -- issues, environment + senate record, (Book) + 2000 + 536 + + + + + Detroit Edison and Michigan power + 2000-2001 + 536 + + + + + Detroit flood plain + 2001 + 536 + + + + + Dioxin cleanup by Dow in Mid + 2002-2003 + 536 + + + + + Dioxin risks of exposure + 2000 + 536 + + + + + Domestic production + 2001-2003 + 536 + + + + + Dredging and water levels + 2000-2001 + 536 + + + + + Earth Day + 2000 + 536 + + + + + Earth Day + 2001 + 536 + + + + + Edison Sault + 1999 + 536 + + + + + Electricity issues + 2003 + 535 + + + + + Electricity restructuring + 2000 + 535 + + + + + Emissions and CAFE + 1999 + 536 + + + + + Energy bill + 2003 + + + + Amendments + 3 folders + 536 + + + + + General, tax, and electricity + 5 folders + 537 + + + + + + Energy binder + 4 folders + 2001 + 537 + + + + + Energy efficiency + + + + Appliance efficiency + 2000-2002 + 536 + + + + + Energy Star + 2003 + 536 + + + + + Federal government + 2001-2003 + 536 + + + + + Tax credits + 2000-2001 + 537 + + + + + + Energy Policy Act of 2002 Democratic Policy Committee briefing binder, + 2002 + 2002 + 537 + + + + + Energy storage + 2001 + 537 + + + + + Energy Task Force -- GAO access case + 3 folders + 2001-2003 + 537 + + + + + Energy Tax Incentive Act + 2002 + 538 + + + + + Enron-energy task force + 2 folders + 2002 + 538 + + + + + Environment and security + 1997 + 538 + + + + + Environmental infrastructure -- combined sewer system and wastewater + treatment + 4 folders + 2002 + 538 + + + + + Environmental Protection Agency (EPA) + + + + Delegated authority to Michigan + 2002-2003 + 538 + + + + + Great Lakes programs + 1999-2000 + 538 + + + + + Letters + 1999-2000 + 538 + + + + + Ozone designation + 3 folders + 1999-2000 + 538 + + + + + Risk management + November 6, + 1998 + 538 + + + + + + Ethanol + 1998-2003 + 538 + + + + + Farming -- agriculture emissions + 2001 + 538 + + + + + Federal Energy Regulatory Commission (FERC) + 2001 + 538 + + + + + Fish and Wildlife Service overhead + 2001-2002 + 538 + + + + + Fisheries + 2000 + 538 + + + + + Flood assistance, (Michigan) + 2 folders + 2002-2003 + 538 + + + + + Flood damage remediation, (Michigan) + 1997-2000 + 538 + + + + + Flood damage remediation -- mainly Upper Peninsula, + (Michigan) + 3 folders + 2003-2004 + 538 + + + + + Fuel cell projects + 2003 + 539 + + + + + Gas prices -- general + 2001-2003 + 539 + + + + + Gas tax + + + + 2000 + 539 + + + + + 2003 + 539 + + + + + + Global warming + + + + Charts and data + 1997 + 539 + + + + + Correspondence + 1997-1998 + 539 + + + + + Forestry and sinks + 1998 + 539 + + + + + Legislation + 1997 + 539 + + + + + Memos and statements + 1996-1997 + 539 + + + + + State Department and Kyoto Protocol + 1997 + 539 + + + + + Statistics-pollution, miscellaneous, and motor vehicle + 5 subfolders + 1989-1993 + 539 + + + + + Studies and analyses + 1997 + 539 + + + + + White House policy material + 1997 + 539 + + + + + + Governor elect Granholm + 2002-2003 + 539 + + + + + Great Lakes + + + + Contaminated sediment -- obstacles to cleanup in Michigan + 2000 + 539 + + +

    (Great Lakes and Kalamazoo River)

    +
    +
    + + + Contaminated sediment sites -- Point Mouillee + 2001-2003 + 539 + + + + + Lake Champlain as a Great Lake-S.927 + 1998 + 539 + + + + + Lake St. Clair-designation and funding + 2000-2003 + 539 + + + + + Lake St. Clair as sixth lake + 2002 + 539 + + + + + Mackinaw ice breaker replacement + 2000 + 539 + + + + + Ontonagon wave attenuation + 1998 + 539 + + + + + Perrier bottling plant + 2001 + 540 + + + + + Persistent organic pollutants (POPs) + 1999-2000 + 540 + + + + + Persistant organic pollutants + 2001 + 540 + + + + + Pipelines + 2001-2003 + 540 + + + + + Slant drilling + 2001-2004 + 540 + + + + + Soo Locks automation + 2004-2005 + 540 + + + + + Support for creation of Great Lakes joint research center in Ann + Arbor + 2001-2003 + 540 + + +
    + + + Great Lakes Basin Soil Erosion and Sediment Control Program memos, draft + language, and correspondence + 2001 + 540 + + + + + Great Lakes Commission provincial membership + 1998-1999 + 540 + + + + + Great Lakes Critical Programs Act, (GLI) + 2002-2004 + 540 + + + + + Great Lakes Fish and Wildlife Act reauthorization + 1998 + 540 + + + + + Great Lakes Initiative (GLI) + 1990-2001 + 540 + + + + + Great Lakes Legacy Act -- S.2544 GAO report + 2 folders + 2002 + 540 + + + + + Great Lakes Task Force (GLTF) + + + + 2 folders + 2001-2003 + 540 + + + + + Letters and memos + + + + 2 folders + 1997 + 541 + + + + + 1998 + 541 + + + + + 1999 + 541 + + +

    (Includes meeting agendas)

    +
    +
    +
    + + + Diversion of Great Lakes + 1998-2004 + 541 + + + + + Protecting the Great Lakes from threats + 1999-2002 + 541 + + +
    + + + Annex 2001-Great Lakes water diversion + 2 folders + 1999-2001 + 541 + + + + + Great Lakes water diversion + 2 folders + 1999-2004 + 541 + + + + + Great Lakes water levels + 1997 + 541 + + + + + Great Lakes Water Quality Agreement Assessment research, + letters + 1999 + 541 + + + + + Great Lakes and the World Trade Organization (WTO) + 1999 + 541 + + +

    (Published by Taxpayers for Common Sense)

    +
    +
    + + + Great Waters Program + 1997-1999 + 541 + + + + + Groundwater + 2 folders + 2001 + 541 + + + + + Hazardous Substances Research Consortium contaminated + substances + 1999 + 541 + + + + + HAZE rule, regional haze control and retrofitting of power + plants + 2001 + 541 + + + + + Hydro electric + 2003 + 541 + + + + + Hydrogen sulfide gas releases, (Michigan) + 1997-1998 + 541 + + + + + Kingsford meeting -- Methane + September 1997 + 541 + + + + + Kyoto Protocol and its effects + 2 folders + 1999-2001 + 542 + + +

    (Includes a CD)

    +
    + + + Potential Economic Impacts of the Kyoto Climate Change Protocol on + Black and Hispanics in the U.S. + 2000 June + + +

    [access item]

    +
    +
    + Online +
    + +

    (1997-2002 (105th-107th Congress). Report on how the Kyoto Climate Change + Protocol would disproportionately threaten the economic well-being of Blacks and + Hispanics in the United States. Study sponsored by the A. Philip Randolph + Institute (APRI), the Labor Council for Latin American Advancement (LCLAA), the + Latin American Management Association (LAMA), The National Black Chamber of + Commerce (NBCC), The National Institute For Latino Development (NILD), and the + U.S. Hispanic Chamber of Commerce (USHCC). Analysis conducted by Management + Information Services, Inc. (MISI).)

    +
    +
    +
    + + + Land withdrawal Defense Authorization internal memos, research, letters, + (S.1059) + 1999 + 542 + + + + + Lead poisoning and clean up + 2001-2003 + 542 + + + + + Low Income Home Energy Assistance Program (LIHEAP) + 1997 + 542 + + + + + Low Income Home Energy Assistance Program (LIHEAP) + 2001-2003 + 542 + + + + + Low sulfur fuel + 2001-2002 + 542 + + + + + Macomb County NPDES watershed permit annual report + 2003-2004 + 542 + + +

    (National Pollutant Discharge Elimination System; Includes a CD)

    +
    + + + Macomb County, Outfall Inventory, 2004 NPDES Phase 2, Annual + Report + 2004 + + +

    [access item]

    +
    +
    + Online +
    + +

    (1997-2002 (105th-107th Congress). Files with data tables pertaining to Bear + Creek, the Macomb County Health Department, the Macomb County Public Works + Office, and the Road Commission of Macomb County.)

    +
    +
    +
    + + + Manistee hydrogen sulfide (H2S) releases + 1997 + 2001 + 542 + + + + + Mercury + 2004 + 2001 + 542 + + + + + Mercury in autos and non-air + 2001 + 542 + + + + + Methyl Tertiary-Butyl Ether (MTBE) + 2000 + 542 + + + + + Michigan electricity restructuring + 2000-2002 + 542 + + + + + Michigan electric issues + 1997-2000 + 542 + + + + + Michigan polluted water + 2000-2001 + 542 + + + + + Mining + 2 folders + 2001-2002 + 542 + + + + + Miscellaneous + 2001-2002 + 542 + + + + + Mixing zones + 2000-2001 + 543 + + + + + Mosquito control + 2002-2003 + 543 + + + + + National Ambient Air Quality Standard -- 8 hour zone + 3 folders + 2003-2004 + 543 + + + + + National Invasive Species Act (NISA) reauthorization + 2002 + 543 + + + + + National Oceanic Atmospheric Administration (NOAA) protected + areas-Thunder Bay + 2000-2002 + 543 + + + + + National Pollutant Discharge Elimination System (NPDES) Phase + 2 + 2002-2003 + 543 + + + + + Natural gas + 2001-2003 + 543 + + + + + New Source Review (NSR) final rule + 2 folders + 2002-2003 + 543 + + + + + Nitrogen Oxides (NOx) State Implementation plans (SIPs) call + + + + 2000 + 543 + + + + + Growth projections + 2001 + 543 + + + + + + Nomination -- Secretary of the Department of Energy -- Abraham, + Spencer + 2001-2002 + 1040 + + + + + Non-point source pollution + 2001-2003 + 543 + + + + + Nuclear + + + + Bruce Nuclear Complex, (K. Meier) + 2002 + 543 + + + + + Miscellaneous, (K. Meier) + 1997-2002 + 543 + + + + + Plutonium + 2000 + 2003 + 543 + + + + + Nuclear waste -- Yucca Mountain + 2001-2002 + 543 + + + + + Yucca Mountain nuclear waste site (K. Meier) + + + + Congressional Records excerpts and history of support, 1982, 1987 + (Dingell, Michigan) + 4 folders + 1982-1987 + 543 + + + + + Environmental questions and information + 4 folders + 2002 + 544 + + + + + Issues and safety concerns + 2002 + 544 + + + + + Michigan environmental groups + 2002 + 544 + + + + + Nuclear storage information and legislative history + 2002-2003 + 544 + + + + + Support + 2002 + 544 + + + + + Support and opposition + 2002 + 544 + + + + + Transportation and information, 1995-20002 (Great Lakes ) + 2 folders + 544 + + + + + Yucca Mountain Project folder + 2002 + 544 + + +

    (Includes a CD; DOE information)

    +
    +
    + + + Yucca Mountain Siting Resolution -- S.J.Res.34, July + recess + 2002 + 544 + + +
    +
    + + + Nuclear power + 2001-2003 + 544 + + + + + Nuclear power plants + + + + 2001 + 544 + + + + + Hanford Reactor + 1997-2003 + 544 + + + + + + Outer Continental Shelf internal memos, letters and research + 1999 + 544 + + + + + Ozone Standard -- 8 hr + 2000-2002 + 544 + + + + + Parks and Recreation + 2001-2003 + 544 + + + + + Persistent bioaccumulative toxic chemicals, PCBs, and + pesticides + 1999-2000 + 544 + + + + + Persistent Organic Pollutants (POPs) and Great Lakes air + deposition + 2000-2001 + 544 + + + + + Pesticide use + 2001 + 544 + + + + + Pipeline safety + 2 folders + 2000-2001 + 545 + + + + + Trade -- pipeline + 2001-2002 + 545 + + +

    (Natural gas pipeline -- effect of NAFTA on metal used for pipeline)

    +
    +
    + + + Polychlorinated biphenyls (PCBs) toxic cleanup-St Clair + Shores + 2000-2003 + 545 + + + + + Price fixing and oil company profits + 2001 + 545 + + + + + Recycling and Jeffords bill + 2 folders + 2000-2003 + 545 + + + + + Regulatory Improvement Act, (Levin-Thompson) + June 1997 + 545 + + + + + Renewable Portfolio Standard + + + + Impact of a 10% renewable portfolio standard + 2002 + 545 + + + + + Michigan Renewable Energy Program proposal + 2000 + 2002 + 545 + + +

    (Submitted by Executive Secretary Division Michigan Public Service Commission + Department to Consumer and Industry Services)

    +
    +
    +
    + + + Sewage and water quality + 2000-2001 + 545 + + + + + Strategic Petroleum Reserve (SPR) + 3 folders + 2000-2003 + 545 + + + + + Superfund-Albion + 1997 + 545 + + + + + Superfund amendments + 1996-1997 + 545 + + +

    (Includes some information about contaminated sediments)

    +
    +
    + + + Superfund Program Completion letters, research and statement -- + S.1090 + 1999 + 545 + + + + + Superfund sites clean-up + 2 folders + 1999-2004 + 545 + + + + + Superfund sites -- Michigan + 2000-2002 + 545 + + + + + Tap water-arsenic + 2001-2003 + 546 + + + + + Total maximum daily load (TMDL) and Environmental Protection Agency + (EPA) + 3 folders + 2000-2001 + 546 + + + + + Toxic Release Inventory + 2000-2001 + 546 + + + + + Trade and the environment letters and research + 1999 + 546 + + + + + Transported emissions, (EPA nonattainment) + 6 folders + 2002-2004 + 546 + + + + + Underground storage tanks + 1998 + 546 + + + + + Underground storage tanks + 2000-2001 + 546 + + + + + Upper Peninsula land conservancy + 2002 + 546 + + + + + Utility emissions + 3 folders + 2001-2002 + 546 + + + + + Viking refrigeration + 2000-2001 + 546 + + + + + Waste Trade Act + 1999-2000 + 547 + + + + + Water Resources Development Act (WRDA) + + + + 2001-2002 + 547 + + +

    (Includes some GLTF; A. Yates)

    +
    +
    + + + Contaminated sediment, Great Lakes Basin Program, and Michigan + projects + 2 folders + 1998 + 547 + + + + + Contaminated sediments amendment + 2000 + 547 + + + + + Diversions language + 2000 + 547 + + + + + Legislation -- contaminated sediments amendment + 1998 + 547 + + +
    + + + Wetlands + 2000-2004 + 547 + + + + + Whistleblower and Environmental Protection Agency (EPA) and law + enforcement concerns casework + 2 folders + 2001-2003 + 547 + + + + + Wildfires + 2000 + 547 + + + + + Willing seller legislation + + + + Hearings + 2002-2003 + 548 + + + + + Property rights + 3 folders + 2001-2003 + 548 + + + + + + World Trade Organization (WTO) Ministerial Conference -- Seattle and + Garrison Diversion research + 1999 + 548 + + + + + World water use + 2002-2003 + 548 + + + + + World Wildlife Fund and toxic release inventory + 1999-2000 + 548 + + +
    + + + Foreign Policy + 1982-2004 + + + + AIDS + + + + Budget amendment FY02 + 618 + + + + + Children + 2003 + 618 + + + + + Dear Colleague and survey regarding international efforts + March 2002 + 618 + + + + + + Afghanistan + + + + Background + 2001 + 618 + + + + + Letter to President + May 2002 + 618 + + + + + Memo on Operations + January 2002 + 618 + + + + + Memos and news articles + September 2001-January 2002 + 618 + + + + + + Albania-acting Ambassador Elizabeth Shelton + September 2002 + 618 + + + + + Anti-Semitism + + + + Al-Qaeda news articles + September 2001 + 618 + + + + + Europe-talking points and news articles + 2002 + 618 + + + + + Europe and Middle East media-letter to Bush + 2002 + 618 + + + + + Saudi Arabia-Textbooks with no Israel in American schools + 2003 + 618 + + + + + + Appropriations and funding + + + + Foreign Operations + + + + FY1998 + 2 folders + 618 + + + + + FY2000 Conference + 618 + + + + + FY2001 + 618 + + + + + FY2002 + 618 + + + + + FY2002 and FY2003 + 618 + + + + + + Foreign affairs funding + February 2002 + 618 + + + + + International affairs budget increase, FY2004 + 618 + + + + + + Arab-America + + + + Alliance for International Educational and Cultural + Exchange + February 2002 + 618 + + + + + Arab American Institute Dinner + 2001 + 618 + + + + + U.S.-Arab Economic Forum + May 2002 + 2003 + 618 + + + + + + Armenia + + + + Armenian Assembly of America + 2001-2004 + 618 + + + + + Blockades and restrictions + 2 folders + 1999-2001 + 618 + + + + + Blockades lifting letter to President Bush + 2002 + 618 + + + + + Church in Israel land dispute + 2002 + 618 + + + + + Foreign operations revision + 2001 + 618 + + + + + Israeli Ambassador statements on Genocide + 2002 + 619 + + + + + Levin's work and Genocide background + 1990-2001 + 619 + + + + + Macedonian conflict + 2001 + 619 + + + + + Michigan community + 2001 + 619 + + + + + Qualified Industrial Zones-Turkey + 2002 + 619 + + + + + + Azerbaijan + + + + Nagorno Karabakh Republic (NKR) + 2002 + 619 + + + + + Parliamentary election + 2000-2001 + 619 + + + + + + Balkans-Stability Pact + August 2000 + 619 + + + + + Baltic nations + + + + Baltic Freedom Caucus + 2001 + 619 + + + + + Senate resolution-10th anniversary + May 2001 + 619 + + + + + + Belarus-Jewish population + 2003-2004 + 619 + + + + + Burma (Myanmar)-sanctions + + + + 2000-2001 + 619 + + + + + 2003 + 619 + + + + + + Camp David Papers and excessive force, (Human rights) + 2001 + 619 + + + + + Canada-International Joint Commission + 2001 + 619 + + + + + China + + + + Most Favored Nation (MFN) status + 2 folders + 1997 + 619 + + + + + EP3E airplane accident + 2001 + 619 + + + + + Falun Gong + + + + Activity in the U.S. and founder nominated for Nobel Peace + Prize + 2000 + 619 + + + + + Presence in China and U.S. + July 2003 + 619 + + + + + + Normal Trade Relations (NTR) + 1997-1999 + 619 + + + + + + Clean Diamonds Act + 2001 + 619 + + + + + Colombia + + + + Legislation + 2000-2002 + 619 + + + + + Miscellaneous + 1997-2001 + 619 + + + + + + Cyprus-Human rights-S.Con.Res.28 + 2001 + 619 + + + + + Cuba + + + + 2001-2002 + 619 + + + + + Embargo + 2001 + 619 + + + + + U.S. policy + 2002 + 619 + + + + + + Czechoslovakia-Velvet revolution 10th anniversary remarks + 1999 + 619 + + + + + Egypt + + + + Coptic Christians, (Human rights) + January-March 2000 + 619 + + + + + Human rights + 2000-2001 + 619 + + + + + Iraq and Egypt news articles + 2002 + 619 + + + + + Jews + + + + Jewish sites and relics + 2002-2003 + 619 + + + + + Media-anti-Semitism + 2000-2002 + 620 + + + + + Media-anti-Semitic TV show "Horseman without a Horse," + 2002 + 620 + + + + + + Meeting-American Chamber of Commerce in Egypt + November 2001 + 620 + + + + + Meeting-Egyptian delegation, (SASC) + January 2002 + 620 + + + + + Military aid requests and missiles + 2 folders + 2001-2002 + 620 + + + + + U.S.-Egypt relations background + 2001-2002 + 620 + + + + + + Eritrea, (War on Terrorism) + 2002 + 620 + + + + + Ethiopia-Human rights-U.S. national arrested + 2001-2002 + 620 + + + + + Germany-Consulate General in Detroit-possible closing + 1 of 2 + 1999 + 620 + + + + + Germany-Consulate General in Detroit-possible closing + 2 of 2 + 1999 + 620 + + + + + Greece + + + + Greek Independence Day-S.J.Res. + March 25, + 2001 + 620 + + + + + National Coordinated Effort of Hellenes (CEH) Freedom Award + dinner + 2001 + 620 + + + + + + Guatemala (Human rights) + + + + Murder of Sister Barbara Ford + 2001 + 620 + + + + + Murder of Sister Barbara Ford and other Americans + 2001 + 620 + + + + + Sister Barbara Ford + 2001 + 620 + + + + + + Human rights letters + 1996 + 620 + + + + + Hungary-Gold Train and litigation, (Holocaust) + 2 folders + 2001-2004 + 620 + + + + + Indonesia and East Timor + September 2000 + 620 + + + + + International attitude study-Pew Research Center + 2001-2002 + 620 + + + + + International Criminal Court (ICC)-George Soros + 2001 + 620 + + + + + International development-World Bank + 1997 + 620 + + + + + International Monetary Fund (IMF)-Asia crisis + 1998 + 620 + + + + + Iran + + + + Azar Nafisi background + 2003 + 620 + + + + + Islamic Republic of Iran and nuclear weapons-S.Res.81 + 1999 + 620 + + + + + Jewish community leader human rights + 2 folders + 1998-2000 + 620 + + + + + Wyden resolution, (Wyden and Brownbeck) + 2002 + 620 + + + + + + Iran Libya Sanctions Act + 2001 + 620 + + + + + Iraq + + + + Aid-food and medicine + 2001-2002 + 620 + + + + + Current situation + August 1995 + 620 + + + + + Initiative 911 + November 2001-January 2002 + 620 + + + + + Invasion of Kuwait-Joint Resolution to authorize use of US + Forces + 2002 + 620 + + + + + Iraqi-American Friendship Federation-letters, memos, and background + information + 1998-2002 + 620 + + + + + Update, (SASC) + 1998-2000 + 620 + + + + + + Irish American Unity Conference (IAUC) + 2000-2001 + 620 + + + + + Israel + + + + 1995-2000 + + + + + 1996-2000 + 621 + + + + + April 1998 + 621 + + + + + Ambassador to America meeting + September 1996 + 621 + + + + + American Israel Public Affairs Committee (AIPAC) + + + + Background and meetings + 2002-2004 + 621 + + + + + Counter-bomb robots request + 2001-2002 + 621 + + + + + General + March 2001 + 621 + + + + + Mack, Fred + April 2002 + 621 + + + + + + Chabad-Lubavitch background + 2000 + 621 + + + + + Embassy events + 2000-2001 + 621 + + + + + Harpoon II missiles-U.S. sale to Egypt + 2001 + 621 + + + + + Harpoon Enhancement Program-block 2 missiles + 2 folders + 2002-2003 + 621 + + + + + Housing and community development + 2000 + 621 + + +

    (Includes Secretary of Housing and Urban Development, Andrew Cuomo, visit to + Israel and photographs)

    +
    +
    + + + 5th International Conference of Jewish Ministers and Members of + Parliament + January 1998 + 621 + + + + + Intifada-attacks on Gaza strip and Israel + 2002 + 621 + + + + + Israel Policy Forum + 1998 + 621 + + + + + Jerusalem Embassy + 2 folders + 1999 + 621 + + + + + Jewish issues + 2 folders + 1998-2000 + 621 + + + + + Lutheran World Federation tax dispute, (SASC) + 2001 + 621 + + + + + Magen David Adom Society and the Red Cross + 2001 + 621 + + + + + Meeting with Bob Asher + February 2002 + 621 + + + + + Meeting with Hadassah-Women's Zionist Organization of + America + 2 folders + 2002 + 621 + + + + + Miscellaneous + 2000-2003 + 621 + + + + + PANIM + 2002 + 621 + + + + + Peace Now settlements + 2001 + 621 + + + + + Position papers + 2001 + 621 + + + + + Prison transfer-Zory Romano + 2001 + 622 + + + + + Rumors-Mohammed Atta + 2001 + 622 + + + + + Solidarity with Israel, S.Res.247 + 2002 + 622 + + + + + Spy-Jonathan Pollard + 2000 + 622 + + + + + Supplemental emergency aid, FY2001 + 622 + + + + + Women's International Zionist Organization and Hadassah + 2001 + 622 + + + + + Wye River agreement + 1999 + 622 + + + + + Maj. Gen. Amos Yaron Canadian diplomatic accreditation + issue + 1982-2001 + 622 + + +
    + + + Italy Frank Stella appointment to Ambassador + 2000-2001 + 622 + + + + + Jackson-Vanik amendment + March 1997 + 622 + + + + + Jackson-Vanik and Most Favored Nation (MFN) + 1997-1998 + 622 + + + + + Japan and South Korea-Dear Colleague about FIFA and child labor + concerns + May 2002 + 622 + + + + + Japanese Imperial Army Disclosure Act of + 1999 + 622 + + + + + Kosovo + 1999-2000 + 622 + + + + + Latin America + + + + Felix Dominici Ambassadorial appointment + 1997 + 622 + + + + + Latin America-religion + January 2002 + 622 + + + + + + Lebanon + + + + 1997 + 622 + + + + + 1997-2000 + 622 + + + + + 2000-2001 + 622 + + + + + + Legislation + + + + Death on the high seas act + 2000 + 622 + + +

    (Levin co-sponsored)

    +
    +
    + + + Debt relief for poor countries act of + 1999 + 622 + + +

    (Levin co-sponsored)

    +
    +
    + + + Dingell Middle East House Resolution + 2001 + 622 + + + + + Drug certification procedure suspension-Dodd S.219 + 2001 + 622 + + +
    + + + Levin votes + 1999-2002 + 622 + + + + + Libya + May-June 1997 + 622 + + + + + Lithuania + 2001-2002 + 622 + + + + + Macedonia + + + + Macedonian American Friendship Association + July-August 2001 + 622 + + + + + Vice Prime Minister Tupurkovski + 2000 + 622 + + + + + + Mauritania, (Israel) + 2000 + 622 + + + + + Mexico + 1997 + 1999 + 622 + + + + + Middle East + + + + Media + 2002 + 622 + + + + + Mosler, Warren + 2001 + 622 + + +

    (Writer)

    +
    +
    + + + News articles-Levin + 2001 + 622 + + + + + Sadat Peace Foundation + 1997-2000 + 622 + + +
    + + + Middle East Children's Health Summit, (Umich) + 2000 + 622 + + + + + Middle East, North Africa, and Israel + 2001 + 622 + + + + + Middle East Peace agreement + 2001 + 622 + + + + + Middle East Peace process + 1995-1999 + 622 + + + + + Middle East Peace resolution, (Senator Feinstein) + 2001 + 622 + + + + + Miscellaneous-funding, trade, and visas + 2000-2001 + 622 + + + + + Morocco + 1998 + 622 + + + + + Multinational Force and Observers (MFO) + + + + Cheney trip + 2002 + 622 + + + + + U.S. forces + 2001-2002 + 622 + + + + + + National Endowment for Democracy + + + + 1997 + 623 + + + + + 1999 + 623 + + + + + + Nobel Prize-Saburo Ienaga + 2001 + 623 + + + + + Palestine + + + + Arafat speeches and Camp David peace proposal + 2000-2002 + 623 + + + + + Arms smuggling + 2002 + 623 + + + + + Zachary Baumel MIA + 2001 + 623 + + + + + Bethlehem 2000 project + 1999 + 623 + + + + + Business Committee for Peace and Reform meeting + 2003 + 623 + + + + + Dear Colleague condemning Palestinian terrorism + February 2002 + 623 + + + + + Fenians + 2002 + 623 + + + + + Gaza + 1999-2000 + 623 + + + + + Media + 2001-2002 + 623 + + + + + Mitchell report + 1999-2001 + 623 + + + + + Palestinian Authority (PA) + + + + Arms + 2002 + 623 + + + + + Terrorism + 2002 + 623 + + + + + + Statehood + 3 folders + 2000 + 623 + + + + + Textbooks + 2000-2001 + 623 + + + + + + Peace groups and Levin + 2002 + 623 + + + + + Peru-Lori Berenson, (Human Rights) + 1999 + 623 + + + + + Qatar + + + + 2000 + 623 + + +

    (Israel)

    +
    +
    + + + 2002-2003 + 623 + + +
    + + + Russia + + + + 1997-2000 + 623 + + + + + Anti-Semitism + + + + 1998-1999 + 623 + + + + + 1999-2000 + 623 + + + + + + Center for Citizens Initiatives + 2001 + 624 + + + + + Center for Citizens Initiatives support + 2001-2002 + 624 + + + + + Jackson-Vanik repeal + 2001-2002 + 624 + + + + + Media-Independent newspapers, TV, and radio shutdown + 2000-2001 + 624 + + + + + + Seeds of Peace + + + + 1999 + 2003 + 624 + + + + + Israeli-Arab understanding program + 2000 + 624 + + + + + + Serbia + + + + Aid + 1999 + 624 + + + + + Albania, Kosovo, and Yugoslavia + 1999-2000 + 624 + + + + + + Serbia and Kosovo + 1998-2002 + 624 + + + + + Slovakia Ambassador-Ron Wiser, (Michigan) + October 2001 + 624 + + + + + Syria-Death of President + March-June 2000 + 624 + + + + + Taiwan + April-May 2001 + 624 + + + + + Tibetan Policy Act-S.852, (Co-sponsor) + May 2001 + 624 + + + + + Trips and Congressional Delegations (CODELs) + + + + Belgium, Germany, Bosnia, Croatia, and Serbia (CODEL Levin with + Reed) + January 9-16, 1997 + + + + Belgium, Bosnia, Serbia, and Croatia (SASC) + 624 + + + + + Photograph album + 624 + + + + + Serbia and Bosnia + 624 + + + + + + Tokyo, Japan-auto parts (Briefing book) + January 13-14, 1997 + 624 + + + + + Zurich, Barcelona, Cyprus, Lebanon, Turkey, Greece, and + Sarajevo + 2 folders + May 23-June 2, 1997 + 624 + + +

    (SASC; Barcelona is the Aspen Institute conference on Relations between the + U.S. and Russia; Includes photographs)

    +
    +
    + + + Switzerland, Bosnia, and Israel (CODEL Levin with Reed) + January 1-8, 1998 + + + + Bosnia and Israel + 624 + + + + + Israel-peace process + 2 folders + 624 + + + + + Trip materials + 624 + + + + + + Japan, North Korea, and South Korea (CODEL Levin; SASC) + January 12-19, 1998 + + + + North and South Korea + folder 1 of 3 + 624 + + + + + North and South Korea + folders 2 and 3 + of3 + 624 + + + + + Trip materials + 625 + + + + + + Wehrkunde Conference in Munich (CODEL McCain-Lieberman; + SASC) + February 6-8, 1998 + 625 + + + + + Middle East-transcripts (Secretary of Defense Cohen) + February 8-13, 1998 + + + + Germany, Saudi Arabia, Kuwait, Bahrain, Qatar, United Arab Emirates + (UAE), Oman, and Russia + 4 folders + 625 + + + + + Saudi Arabia, Kuwait, Bahraign, Oman, United Arab Emirates (UAE), + Moscow + 2 folders + 625 + + +

    (Includes photographs)

    +
    +
    + + + Transcripts + 625 + + +
    + + + Brussels, Armenia, Bosnia, Turkey, and Russia + November 9-20, 1998 + + +

    (CODEL Levin; SASC)

    +
    + + + Trip materials + November 9-20, 1998 + 625 + + + + + Trip materials + November 10-15, 1998 + 625 + + + + + Turkey + 626 + + + + + Turkey-briefing and human rights + 626 + + +
    + + + Ukraine and Russia + 3 folders + November 15-21, 1998 + 625 + + +

    (CODEL Lugar; SASC)

    +
    +
    + + + Kosovo trip with Secretary of Defense Cohen + April 7-8, 1999 + 625 + + +

    (CODEL Cohen; Includes photographs)

    +
    +
    + + + Germany, Italy, Macedonia, Albania, Belgium + April 16-18, 1999 + 626 + + +

    (Leadership CODEL; Includes photographs)

    +
    +
    + + + Macedonia and Kosovo (CODEL Levin; Includes photographs) + July 5-8, 1999 + 626 + + + + + Macedonia and Kosovo (CODEL Levin; SASC) + July 5-8, 1999 + 626 + + + + + Kosovo (CODEL Levin; SASC) + July 8-9, 1999 + 626 + + + + + Berlin-Aspen Institute Conference + August 15-24, 1999 + 626 + + +

    (Includes a photograph of Carl and Barbara)

    +
    +
    + + + Israel and Jordan + January 7-20, 2000 + 626 + + +

    (Personal vacation with Carl, Barbara, and Erica Levin)

    +
    +
    + + + Moscow and London (CODEL Cochran) + 1 of 2 folders + April 16-20, 2000 + 626 + + + + + Moscow and London (CODEL Cochran; SASC) + 21 of 2 folders + April 16-20, 2000 + 626 + + + + + Colombia and Ecuador (CODEL Levin) + February 23-25, 2001 + 626 + + + + + Colombia and Ecuador (CODEL Levin; SASC) + 2 folders + February 23-25, 2001 + 626 + + + + + Afghanistan, Uzbekistan, Oman, Saudi Arabia, Bosnia-Herzegovina, and + Hungary-(CODEL Levin-Warner) + November 18-25, 2001 + + + + Afghanistan + 626 + + + + + Trip materials + 1049 + + + + + Other trip materials + 626 + + + + + + North Korea nuclear background and briefing + 2002-2003 + 626 + + +

    (Levin and Reed; Carl's writings)

    +
    +
    +
    + + + Turkey + + + + 1999 + 2003 + 626 + + + + + Commercially Based Tactical Truck (COMBATT) program, (Ford Motor + Co.) + December 2001 + 626 + + + + + GM vehicles to Turkish government + 1998-2002 + 626 + + + + + + Ukraine + + + + 1999-2003 + 626 + + + + + 2000-2004 + 626 + + + + + Chernobyl 10th anniversary and relief fund + 1996 + 626 + + + + + Elections + July 2002 + 627 + + + + + Environmental Research Institute of Michigan (ERIM) and Ukraine Land + Resource Management Center + December 2000-March 2001 + 627 + + + + + Jackson-Vanik and Permanent Normal trade relations + 2002-2003 + 627 + + + + + Normal trade relations (NTR) + 2002 + 627 + + + + + Permanent Most Favored Nation (MFN) + 1999 + 627 + + + + + Power of one grant + January 2002 + 627 + + + + + President investigation, meeting notes, and crime reports + 2 folders + 1995-2001 + 627 + + +

    (Includes photograph)

    +
    +
    + + + Reports and Ukrainian Weekly newspaper + August-September 1996 + 627 + + + + + World Mission non-profit, (Michigan) + 1997 + 627 + + + + + Ukrainian Famine 65th anniversary + August 1998 + 627 + + + + + Ukrainian independence 5th anniversary + September 6, + 1996 + 627 + + + + + Ukrainian Weekly newspaper + September-October 1996 + October 25, + 1998 + 627 + + + + + Virtual East-West Network for Engineering and Technology (VIEWNET), + (Umich and MSU) + 1997-1998 + 627 + + +
    + + + United Arab Emirates (UAE)-CMS Energy-contract award, + (Michigan) + 2001 + 627 + + + + + United Nations-Convention of Elimination of all Discrimination against + Women (CEDAW) + 1993 + 627 + + + + + U.S. Foreign Military training, trade, and aid programs-congressional + briefing + May 2002 + 627 + + + + + U.S. Institute of Peace Board nomination-Daniel Pipes + 2001-2003 + 627 + + + + + U.S. Speaker Program-Dr. Ramanathan + September-October 2001 + 627 + + + + + USAID purchase of foreign autos + 2001-2002 + 627 + + + + + Yemen bombing leads + October 2000 + 627 + + + + + India earthquake and anniversary + 1999-2001 + 1115 + + +
    + + + Government and Governmental Affairs Committee (GAC) + 1918-2005 + + + + Appropriations and funding + + + + FY1998 + 690 + + +

    (Includes transportation, interior, labor, agriculture, defense, veterans + affairs-housing and urban development VA-HUD)

    +
    +
    + + + FY1999 miscellaneous + 690 + + + + + FY1999 supplemental appropriations bill + 690 + + +

    (emergency supplemental; B. Weber)

    +
    +
    + + + FY2000 + 690 + + +

    (Includes Interior, Great Lakes, agriculture, and subcommittee letters)

    +
    +
    + + + FY2000 omnibus appropriations bill + 690 + + +

    (Includes Levins statement; B. Weber)

    +
    +
    + + + FY2002 Carl's file + 690 + + + + + FY2002 Michigan + 690 + + + + + FY2002 VA-HUD EDI requests Michigan + 690 + + + + + FY2003 + 2 folders + 690 + + + + + FY2003 omnibus + 690 + + + + + FY2003 omnibus appropriations + 691 + + + + + Detroit Diesel and Buy America provisions in appropriations + act + 2003 + 691 + + + + + Letters + 2000-2002 + 691 + + + + + Revenue sharing + 2002 + 691 + + +
    + + + Budget + + + + FY1999 budget resolution (B. Weber) + 691 + + + + + FY2000 (B. Weber) + + + + Charts, memos, and articles + 7 subfolders + 691 + + + + + GOP budget resolution + 691 + + + + + Tax cut + 6 subfolders + 691 + + + + + + FY2001 + + + + Budget resolution (B. Weber) + 691 + + + + + + FY2002 + + + + Budget and tax cuts (B. Weber) + 691 + + + + + Budget and tax debate (D. Guglielmo) + 13 subfolders + 692 + + + + + Budget articles and charts (T. Henseler) + 692 + + + + + Budget memos and articles (T. Henseler) + 692 + + + + + Budget resolution (B. Weber) + 692 + + + + + + FY2003 (T. Henseler) + + + + Budget resolutions (R. Arenberg) + 692 + + + + + Congressional Budget Office (CBO) estimates + January 2002 + 692 + + + + + Miscellaneous budget information to Carl + 692 + + + + + Office of Management and Budget (OMB) mid-session review + 692 + + + + + Proposed administration budget cuts + 692 + + + + + + Balanced budget amendment and floor statements + 2 folders + 1997 + 692 + + + + + Biennial budgeting -- governmental affairs, GAC; B. Weber ) + 5 subfolders + 1999-2000 + 693 + + + + + Budget amendments + 2001 + 693 + + + + + Budget chart research, (B. Weber) + 2000 + 693 + + + + + Budget reconciliation Carl's file, (B. Weber) + June-July 1997 + 693 + + + + + Budget reconciliation Child tax credit, (B. Weber) + July 1997 + 693 + + + + + Budget reconciliation conference report + 1997 + 693 + + +

    (Clinton balanced budget and tax cut; B. Weber)

    +
    +
    + + + Clinton veto Republican budget and balanced budget plan, (B. + Weber) + 2 folders + December 1999 + 693 + + + + + Expedited rescissions bill + April-May 1998 + 693 + + + + + Carl's budget remarks, (B. Weber) + 2001 + 693 + + + + + Miscellaneous items on Bush budget, (T. Henseler) + 2002 + 693 + + + + + National debt, (B. Weber) + 6 subfolders + 2000-2001 + 693 + + + + + President Bush budget and performance integration, (T. + Henseler) + June 2002 + 693 + + + + + Process generally + 2001-2002 + 693 + + +
    + + + Baseball strike + 1995 + 693 + + + + + Campaign Finance Reform + + + + Correspondence + + + + 1996-2000 + 666 + + + + + Mondale, Kassebaum, and Baker + September 1997 + 666 + + + + + + Current relevant laws + 1999 + 666 + + + + + Data + + + + Charts and data + 1994-1999 + 666 + + + + + Financial + 1999 + 666 + + + + + Surveys and polls + 1997-1998 + 666 + + + + + + Democratic National Committee + 1997-2001 + 666 + + + + + Federal Election Committee (FEC) nomination of Bradley + Smith + 1999-2000 + 666 + + + + + Granny D (a.k.a. Doris Haddock) + 1999-2000 + 666 + + +

    (Contains some photographs)

    +
    +
    + + + Investigation on Illegal or improper activities in connection with the + 1996 federal election campaign -- Chronologies and Casts + 1997 + 666 + + + + + Legislation + + + + Amendments + 1999 + 666 + + + + + Amendments floor notebook + 1998 + 666 + + + + + Bipartisan Campaign Reform Act of 1997-S.25 b(Senators + McCain-Feingold) + + + + 1997 + 666 + + + + + 3 folders + September 1997 + 666 + + + + + 2 folders + July-September 1998 + 666 + + + + + Snow-Jeffords amendment + 1999 + 667 + + + + + + Bipartisan Campaign Reform Act of 1999-S.26 + 667 + + + + + Bipartisan Campaign Reform Act-floor folder (Senators + McCain-Feingold) + + + + Amendments and legislation + + + + 2 folders + 2001 + 667 + + + + + 2 folders + January-June 2001 + 667 + + + + + February-June 2001 + 667 + + + + + Coordination language + 2001 + 667 + + + + + Hagel bill + March 2001 + 667 + + + + + Millionaire + March 2001 + 667 + + + + + Millionaire + 4 folders + March 2001 + 667 + + + + + Possible + March 2001 + 667 + + + + + Snowe-Jeffords + 1998 + 2001 + 667 + + + + + Snowe-Jeffords + March 2001 + 667 + + + + + State party, (Levin) + June 2001 + 667 + + + + + + Constitutionality-soft money ban + February 2001 + 667 + + + + + Miscellaneous + 2 folders + January-June 1997 + 667 + + + + + Data + March 2001 + 667 + + + + + Election reform talking points + March 2001 + 667 + + + + + Floor proceedings + 1997-2001 + 667 + + + + + Legal permanent residents + March 1998 + 668 + + + + + Levin floor statement + March 2001 + 668 + + + + + Miscellaneous + 1998 + 2001 + 668 + + + + + News articles and notes + 2000-2001 + 668 + + + + + Severability + 2001 + 668 + + + + + + Campaign Finance Reform Act of 1997-S.25 + 668 + + + + + Code of Federal Regulations bill + 1997 + 668 + + + + + Congressional Election Campaign Spending Limit and Reform + Act-S.11 + + + + Daschle + 2 folders + December 1996-January 1997 + 668 + + + + + Levin + January-May 1997 + 668 + + + + + + Enforcement amendment, (Levin) + December 1996 + 668 + + + + + Establish a Commission on Campaign Finance Reform + 1997-1998 + 668 + + + + + Establish a Select Commission to Advise on Reforming + Elections-H.R.141 + 1997 + 668 + + + + + Federal Election Campaign Act amendment-H.R.417 + 1999 + 668 + + + + + Federal Election Campaign Act amendment-S.1593 + 1999 + 668 + + + + + Federal Election Campaign laws-reference + 1994-1998 + 668 + + + + + Filibuster CFR bill + 2 folders + undated + 668 + + + + + Grassroots funds + February 1997 + 668 + + + + + Hollings amendment-S.J.Res.18 + 1995-1997 + 668 + + + + + Noble amendment-soft money loophole + 1998 + 668 + + + + + + Levin files + + + + Bipartisan Campaign Reform Act-S.21 + 2001 + 668 + + + + + Case law research + 2001 + 668 + + + + + Charts and graphs + March 2001 + 668 + + + + + Congressional record + March 20, + 2001 + 668 + + + + + House debate transcript + September 14, + 1999 + 668 + + + + + Memos and notes + March-June 2001 + 668 + + + + + Newspaper articles + 2000-2001 + 668 + + + + + Press releases, January + March 2001 + 668 + + + + + Supreme Court documents + December 2000 + 668 + + + + + Talking points and floor statements + 2001 + 669 + + + + + + Levin statements + + + + 1997-1999 + 669 + + + + + + Memos + 1997-1999 + 669 + + + + + McCain-Feingold campaign finance reform -- Carl's folder, (E. + Bean) + 2001 + 669 + + + + + Miscellaneous + 1997-1999 + 669 + + + + + Miscellaneous staff files + + + + Bipartisan Campaign Reform Act-S.1593 + 1999 + 669 + + + + + Campaign limits chart + June 1996 + 669 + + + + + Coordination language + February-March 2001 + 669 + + + + + Correspondence and memos from organizations + January-March 2001 + 669 + + + + + Michigan Campaign Finance Network forum + February 3, + 2001 + 669 + + + + + News articles + 2001 + 669 + + + + + Paycheck protection + + + + 1997 + 669 + + + + + 1998-2001 + 669 + + + + + 2001 + 669 + + + + + + Previous bill-S.26 + 1999 + 669 + + + + + + News articles + 2000 + 669 + + + + + News articles + 2000-2001 + 669 + + + + + Notes + 1997-1998 + 669 + + + + + Republican finance abuses + 2 folders + 1994-1997 + 669 + + + + + Republican National Convention fundraising + 1997 + 669 + + + + + Rick Roberts -- Colonial Mold, (A. Pascale) + 1997-1998 + 669 + + +
    + + + Campaign finance reform materials (GAC) + 3 subfolders + 1997 + 670 + + + + + Campaign Finance Reform (PSI) + + + + Month 1 through 3 (GAC) + January-March 1997 + 670 + + +

    (Carl's writing)

    +
    +
    + + + Background and information gathered + + + + Air Force + December 1996-April 1997 + 670 + + + + + Alexander Foundation + 1995-1997 + 670 + + + + + Allocations + 1997 + 670 + + + + + Amway and GOP TV-news articles + 1995-1997 + 670 + + + + + Buying access rhetoric + 1996-1997 + 670 + + +

    (Carl's writing)

    +
    +
    + + + GOP sale of access + January-May 1997 + 670 + + +

    (Carl's writing)

    +
    +
    + + + Case law + 5 folders + 1975-1998 + 670 + + + + + Chapters + + + + Overview-definitions and limits + 1995-1997 + 671 + + + + + Republican National Convention and Independent groups + 2 folders + 1994 + 1997 + 671 + + + + + + Chronologies + January-May 1997 + 671 + + + + + Corporations + May 1996-May 1997 + 671 + + + + + Compliance + June 1997 + 671 + + + + + Delay + August-September 1998 + 671 + + + + + Document destruction + 2 folders + 1997-1998 + 671 + + +

    (Folder 2 includes photographs)

    +
    +
    + + + Empire Sanitary Landfill Inc., (Senator Dole) + 1997 + 671 + + + + + Export-import bank and Blockbuster Video deal + January-February 1997 + 671 + + + + + Family Television, Inc. + 1985 + 1995 + 671 + + + + + Federal Election Committee (FEC) + + + + California Articulation Number System + December 1996-October 1997 + 671 + + + + + Decisions + 2 folders + August-September 1996 + 671 + + + + + General Election Legal and Accounting Compliance + (GELAC) + 1996 + 671 + + + + + Materials + 2 folders + 1993-1996 + 671 + + + + + McConnell amendments + June-July 1998 + 671 + + + + + RECORD articles + + + + Associations, May + July 1996 + 671 + + + + + Bundling + August 1996 + 671 + + + + + + Tally complaints + 4 folders + April-November 1997 + 671 + + + + + Term limits + + + + June-September 1998 + 672 + + + + + Miscellaneous, January + July 1998 + 672 + + + + + News articles + June-October 1998 + 672 + + + + + Working file + June-October 1998 + 672 + + + + + + + Foreign + + + + Asia + April 1997 + 672 + + + + + China + March-June 1997 + 672 + + + + + China Ocean Shipping Company (COSCO) + + + + March-May 1997 + 672 + + + + + March 1997-May 1998 + 672 + + + + + + Contributions + December 1996-October 1998 + 672 + + + + + Council on Foreign Relations report + October 1996-1997 + 672 + + + + + Embassies and foreign leaders + 1990-1993 + 672 + + + + + Heritage Foundation + 1995-1996 + 672 + + + + + India + 1996-July 1997 + 672 + + + + + Jesse Helms Center Foundation + + + + 2 folders + 1990-1996 + 672 + + + + + 2 folders + 1994-1997 + 672 + + + + + + Republicans and Democrats abroad + April 1997 + 672 + + + + + Republican contributions + 1997-January 1998 + 672 + + + + + Taiwan + April-May 1997 + 672 + + + + + + Important statistics + 1997-1998 + 672 + + + + + Handouts + 1991-1996 + 672 + + + + + House coercions + 2 folders + 1994-1997 + 672 + + + + + Hudson casino opposition-Babbitt + 1995-1997 + 672 + + + + + Immunity + May-June 1997 + 672 + + + + + Issue ads + + + + Briefing on soft money use + 5 folders + 1998 + 673 + + + + + FEC Audit + November-December + 1998 + 673 + + + + + Independent expenditures + February 1997 + 673 + + + + + Issue versus candidate ads + 4 folders + 1996-1998 + 673 + + + + + Mailings + September 1996-October 1997 + 673 + + + + + Michigan regulations + September 1998 + 673 + + + + + Miscellaneous + 2 folders + 1996-1997 + 673 + + +

    (Includes some pages of a confidential transcript of Ambrous Young-June 24, + 1997)

    +
    +
    + + + Party money + + + + Amicus brief-Levin, McCain and Feingold + 2 folders + July-August 1998 + 673 + + + + + News articles and memos + April-July 1998 + 674 + + + +
    + + + Key 1 to office + June-July 1997 + 674 + + +

    (Foreign money possible cases; Carl's writing)

    +
    +
    + + + Key -- notes, letters, summaries, and clips + March-August 1997 + 674 + + +

    (Carl's writing)

    +
    +
    + + + Key quotes + March 1997-January 1998 + 674 + + + + + Legal Defense Fund + February-June 1997 + 674 + + + + + Levin campaign Political Action Committee (PAC) contributions-news + articles + September 1996-March 1997 + 674 + + + + + Levin and Michigan issues + March 1997 + 674 + + + + + Lobbyists write bills-news articles + December 1995-April 1997 + 674 + + + + + Main clean money option + 1996-1998 + 674 + + + + + Michigan law + September 1996-June 1998 + 674 + + + + + Money transfers + August 1996-June 1997 + 674 + + + + + National Conventions-Democrat and Republican + 1994-1997 + 674 + + + + + National Policy Forum (NPF) + April-August 1997 + 674 + + + + + Persons of interest + + + + Beck + 2 folders + 1997 + 674 + + + + + Burton, Dan + + + + March-June 1997 + 674 + + + + + 2 folders + April-June 1997 + 674 + + + + + + Fireman, Simon + + + + Dole Presidential campaign + 2 folders + May-July 1997 + 674 + + + + + Working file + July 1997 + 674 + + + + + + Gore-Hsi Lai Temple event + 1996-1998 + 674 + + + + + Huang, (Levin's writing) + July 1997 + + + + Huang and Levin connection + February 1997 + 674 + + + + + + Huang, Lum, and Trie + October 1996-January 1997 + 674 + + + + + Kim, Jay C. (Representative) + + + + August-September 1997 + 675 + + + + + Illegal campaign contributions + 2 folders + 1994-1997 + 675 + + + + + Working file + January-September 1997 + 675 + + + + + + Kojima, Michael + + + + March-July 1997 + 675 + + + + + Ex-wives + 1992-1993 + 675 + + + + + Favors + 1992-1993 + April 1997 + 675 + + + + + Foreign funds + 1992-1997 + 675 + + + + + Fundraising and contributions + 1990-1997 + 675 + + + + + International Marketing Bureau, Lmt. + 1991-1997 + 675 + + + + + Letters to Embassies + April-June 1997 + 675 + + + + + Litigation + 2 folders + 1992-1994 + 675 + + + + + News articles + 1992-1996 + 675 + + + + + Working file + 1997 + 675 + + + + + + Sioeng, Ted + + + + 1995 + 675 + + +

    (Timeline of donations)

    +
    +
    + + + May-July 1997 + 675 + + + + + News articles and depositions + April-September 1997 + 675 + + +

    (Includes confidential deposition transcripts of John R. Bolton-July 10 + and 15, 1997 Joseph R. Gaylord-September 16, 1997 and Stephen M. + Kinney-September 23, 1997)

    +
    +
    +
    + + + Tamraz + July 1997 + 675 + + +

    (Carl's writing)

    +
    +
    + + + Trie, Charlie (Yah Lin) + + + + June-July 1997 + 675 + + + + + Documents + 1993-July 1998 + 675 + + + + + U.S. Trade Representative Commission + + + + December 1995-1996 + 675 + + + + + Depositions + 1997 + 675 + + +

    (Includes a confidential deposition transcript of Bruce R. Lindsey-July + 1, 1997)

    +
    +
    +
    + + + U.S.-Pacific Trade and Investment Policy Commission + + + + Document review + September 1995-March 1997 + 675 + + + + + Report and contributions + 1995-April 1997 + 675 + + + + + + Waves records + 1993-1996 + 676 + + +
    + + + Wang Jun + March-April 1997 + 676 + + +

    (Carl's writing)

    +
    +
    + + + Yoo, Yung Soo + + + + Asian-American political donors + 1989-1997 + 676 + + + + + Conviction and Koreagate + 1997 + April 1987 + 676 + + + + + Fundraising + 1990-1995 + 676 + + + + + Immigration and Naturalization Service (INS) and + Slattery + November 1996-April 1997 + 676 + + + + + New York and New Jersey campaigns + 1995-1997 + 676 + + + + + News articles, April June 1997 + 676 + + + + + Working file + April 1997 + 676 + + + + + + Yoo and D'Amoto + March-April 1997 + 676 + + + + + Young Bros + June 1997 + 676 + + +

    (Young Brothers Development Company and company lawyer Benton Brecker; + Carl's writing)

    +
    +
    +
    + + + Phone calls + 1984-1997 + 676 + + + + + Players + December 1996-February 1997 + 676 + + + + + Political Action Committees (PAC) + + + + April-May 1997 + 676 + + + + + Armey's policy innovation + 1988-January 1997 + 676 + + + + + Citizens for Reform + 1996-1997 + 676 + + + + + Citizens for the Republic + 1996-1997 + 676 + + + + + Coercing + 1995-1998 + 676 + + + + + Conservative + February 1997-June 1999 + 676 + + + + + Conservative Campaign Fund + 1979-1996 + 676 + + + + + Judicial Watch + July 1994-May 1998 + 676 + + + + + Laundering + March-April 1997 + 676 + + + + + News articles + 1996 + 676 + + + + + News articles + November 1996 + January 1997 + 676 + + + + + Republican + April 1997 + 676 + + + + + + Press + + + + Leaks-news articles + June 1997 + 676 + + + + + Talk shows + 1996-1997 + 676 + + + + + + Project Relief + 1995-1997 + 676 + + + + + Quid Pro Quos + March-August 1997 + 676 + + + + + Regulations and statutes + February-September 1997 + 676 + + + + + Republican examples-news articles + 1992-1997 + 676 + + + + + Republican misuse of soft money + September 1995-January 1997 + 676 + + + + + Republican National Convention 1996 campaign, 1997 + 1996-1997 + 677 + + +

    (Carl's writing)

    +
    +
    + + + Republican Quid Pro Quo for Big Donors + July 3, + 1997 + 677 + + + + + Selling access + 4 folders + 1984-1997 + 677 + + + + + Selling Access book + 3 folders + February 1997 + 677 + + + + + Sikh issues + 1995-July 1997 + 677 + + + + + Ski trips for Congressmen + January 1997 + 677 + + + + + Soft money + 2 folders + July-December 1998 + 677 + + + + + Tax + + + + Corporate tax reductions + January-March 1997 + 677 + + + + + Internal Revenue Service (IRS) audits + March 1997 + 677 + + + + + Issues + 1996-1998 + 677 + + + + + + Tax exempts including Gingrich + January-February 1997 + 677 + + +

    (Carl's writing)

    +
    +
    + + + Tax-exempt-501 (c)(3)&(4) + + + + October 1996-April 1997 + 678 + + + + + The American Cause + 1977-1997 + 678 + + + + + Americans for Tax Reform + June-December 1997 + 678 + + + + + Americans for Tax Reform + + + + Anti-tax PAC + September 1996-April 1997 + 678 + + + + + Foreign Agents Registration Act + August 1996-April 1997 + 678 + + + + + General + 1994-March 1997 + 678 + + + + + Lobbying disclosure + 1996-1997 + 678 + + + + + News articles + 2 folders + 1992-1997 + 678 + + + + + Norquist + October 1996-June 1997 + 678 + + + + + Norquist activities + August-September 1999 + 678 + + + + + Pledges + 1994-1995 + 678 + + + + + Tax filings + 1994-1996 + 678 + + + + + Working file + November 1997-February 1998 + 678 + + + + + + Better America Foundation + 1993-1997 + 678 + + + + + The Christian Coalition + + + + July-August 1997 + 678 + + + + + 1997-1998 + 678 + + + + + + Citizens for a Sound Economy + 1995-1997 + 678 + + + + + Democratic nonprofits + October 1996-February 1997 + 678 + + + + + Freedom Alliance + 2 folders + 1990-1996 + 678 + + + + + Gingrich + 2 folders + November 1996-February 1997 + 679 + + + + + Law + + + + 2 folders + 1994-May 1997 + 679 + + + + + December 1996-1998 + 679 + + + + + + Nonprofits + May 1991 + 679 + + + + + Nonprofits + September 1996-February 1997 + 679 + + + + + Regulations + 2 folders + 1995-1996 + 679 + + + + + Triad Management + + + + September 1996-June 1998 + 679 + + + + + October 1997 + 679 + + + + + Citizens for the Republic Education Fund + 1996-1997 + 679 + + + + + Coalition for our Children's Future + 1995-1997 + 679 + + + + + + Working file + 1997 + 679 + + + + + + Team 100 + February-April 1997 + 679 + + + + + Term limits + + + + Correspondence + June-September 1998 + 679 + + + + + House of Representatives + June-July 1998 + 679 + + + + + + Veterans Affairs Consumers office + January 1997 + 679 + + + + + Videotapes + October 1997 + 679 + + + + + Voting guides + July 1996-January 1997 + 679 + + + + + White House + + + + July 1997 + 679 + + + + + Baker and Ickes + 1982-1992 + 679 + + + + + Bush and Reagan + 1997 + 679 + + + + + Bush, Nixon, Reagan + November 1996-April 1997 + 680 + + + + + Bush pardons + 1989-1997 + 680 + + + + + Clinton and Helms + March-May 1997 + 680 + + + + + Elliot, James + 1997 + 1992 + 680 + + + + + Meddoff, R. Warren + September-October 1997 + 680 + + + + + Overnights + February 1997 + 680 + + + + + Presidents dinner + 1991-1992 + 680 + + + + + Reagan and Bush timelines + 1997 + 680 + + +

    (Carl's writing)

    +
    +
    + + + Tamraz, Roger + June-October 1997 + 680 + + +
    + + + White House and Congress + January-March 1997 + 680 + + + + + White House and Democratic National Committee + February-July 1997 + 680 + + +
    + + + Committee correspondence + 2 folders + 1997 + 680 + + + + + Committee Democrats (GAC) + + + + Letter and notes + June 18, + 1997 + 680 + + + + + Photographs + 1997 + 680 + + + + + + Committee scope and budget (GAC) + + + + January-March 1997 + 680 + + + + + 2 folders + January-October 1997 + 680 + + + + + February-August 1997 + 680 + + + + + Investigation outline + June 27, + 1997 + 681 + + + + + Investigative outline + June 27, + 1997 + 681 + + + + + + Findings-China Plan + + + + February-March 1998 + 681 + + + + + Memos and notes + July-September 1997 + 681 + + + + + + Hearings + + + + Americans for Tax Reform + + + + Articles of incorporation + March 31, + 1993 + 681 + + + + + Campaign activity + 1994-1997 + 681 + + + + + Fundraising + 1994-1996 + 681 + + + + + Key documents + 2 folders + 1994-1997 + 681 + + + + + Norquist statements-CNN + April 9, + 1997 + 681 + + + + + Federal Election Campaign Act violation + 5 folders + 1994-1997 + 681 + + + + + + Babbitt, Bruce (Secretary of the Interior) + + + + Levin statement, strategy, and depositions + 2 folders + September-November 1997 + 681 + + +

    (Includes confidential deposition transcripts of David Anderson-September + 26, Michael Anderson-September 19, 1997, 1997 Ada Deer-September 19, 1997 + Paul Eckstein-September 30, 1997 Jennifer O'Connor-October 6, 1997 Heather + Sibbison-September 26, 1997 and George Tallchief Skibine-November 17, + 1997)

    +
    +
    +
    + + + Barbour statements and contradictions + June-September 1997 + 681 + + +

    (Includes confidential deposition transcript of Haley R. Barbour-July 19, + 1997 Benton Becker-June 3, 1997 Richard Richards-June 10, 1997 someone else + from July 23, 1997)

    +
    +
    + + + Berger, Sandy + + + + Hearing binder + September 11, + 1997 + 681 + + + + + Questions + September 1997 + 681 + + + + + + Briefing books-documents + + + + Book 1 + 4 folders + 1997 + 682 + + + + + Book 2 + 3 folders + 1995-1996 + 682 + + + + + Book 3 + 3 folders + 1996-1997 + 682 + + + + + Book 4 + 2 folders + 1997 + 682 + + + + + + Briefing books-Levin's + + + + Levin notebook Part 1 + 3 folders + 1992-July 1997 + 682 + + + + + Levin notebook Part 2 + 3 folders + 1992-July 1997 + 683 + + + + + Memoranda addressing specific allegations of illegalities and + improprieties + June 1997 + 683 + + + + + Witness memoranda + 2 folders + July 2, + 1997 + 683 + + + + + + Campaign Finance Reform + September 23-25, 1997 + 683 + + + + + Committee deposition log + 4 folders + May-October 1997 + 683 + + +

    (Includes confidential transcripts and hearing statements; GAC)

    +
    +
    + + + Democratic National Committee contributions + April-August 1997 + 683 + + +

    (Includes confidential deposition transcript of Evan Ryan from August 7, + 1997)

    +
    +
    + + + Depositions + + + + April-September 1997 + 683 + + +

    (Includes confidential transcript of Donald Fowler, Evan Ryan, and Rawlein + G. Soberano)

    +
    +
    + + + 4 folders + July 1997 + 683 + + + + + 4 folders + September 1997 + 684 + + +

    (Includes a confidential transcript on September 4th)

    +
    +
    +
    + + + Dole campaign and Republican National Committee (RNC) coordination + binder + October 1997 + 684 + + + + + Fireman + + + + Briefing book + July 1997 + 684 + + + + + Case + July 1997 + 684 + + + + + + Fowler, Donald + + + + Deposition + 1981-September 1997 + 684 + + + + + Depositions and questions, May + September 1997 + 684 + + +

    (Includes a few pages of confidential deposition transcript from May 21, + 1997)

    +
    +
    + + + Exhibit book 1 + 2 folders + May 1997 + 684 + + + + + Exhibit book 2 + 2 folders + May 1997 + 684 + + + + + Strategy + 1995-1997 + 684 + + +
    + + + Gore, Al + + + + Exhibits and documents + 4 folders + 1996-1997 + 684 + + +

    (Includes some 'Committee Access' documents and confidential deposition + transcripts of Lisa Berg-July 29, 1997 Yi Chu-August 7, 1997 Jacqueline + Dycke-August 8, 1997 Venerable Man-Ho-August 6, 1997 Ellen Luaghlin + Ochs-August 1, 1997 Ladan Manteghi-August 26, 1997 and David M. Strauss-June + 30, 1997)

    +
    +
    + + + Phone calls + 1995-1997 + 684 + + +
    + + + Hsi Lai Temple + June-September 1997 + 685 + + +

    (Gore; Includes confidential deposition transcript of Yi Chu, Venerable + Man-Ho, Ladan Manteghi, and Kimberly H. Tilley)

    +
    +
    + + + Huang, John + + + + Background + 3 folders + July 1997 + 685 + + + + + Briefing book + 3 folders + May-July 1997 + 685 + + +

    (Includes confidential deposition transcripts of Paul Buskirk-June 3, 1997 + Gary Christopherson-June 4, 1997 Jeffrey Garten-June 3, 1997 Robert P. + Gallagher-May 30, 1997 Paula V. Greene-July 2, 1997 Alan Neuschatz-May 22, + 1997 David J. Rothkopf-June 2, 1997 and Janice Stewart-May 16, 1997)

    +
    +
    + + + Briefing book-Department of Commerce + 4 folders + July 1997 + 685 + + +

    (Includes a confidential deposition transcript of Paula V. Greene-July 2, + 1997)

    +
    +
    + + + Exhibits + 1994 + 1997-1998 + 685 + + + + + Investigation and deposition requests + May-June 1997 + 685 + + + + + Lippo + 1994-1997 + 685 + + +

    (Includes confidential deposition transcripts of Mark W. Gobmyer-May 8, + 1997 Oaula V. Greene-July 2, 1997 Alan Neuschatz-May 22, 1997 and Janice H. + Stewart-May 16, 1997)

    +
    +
    + + + Lippo-witnesses + 3 folders + April-July 1997 + 685 + + +

    (Includes confidential deposition transcript of Harold Arthur-April 25, + 1997 James Per Lee-May 2, 1997 and David Sugita-May 16, 1997)

    +
    +
    + + + Soberano, Rawlein G. + May 13, + 1997 + 685 + + +

    (This is a confidential deposition transcript)

    +
    +
    +
    + + + Hudson Casino (Babbitt) + + + + Hearing binder + 4 folders + October 30, + 1997 + 686 + + + + + Hearing materials + October 30, + 1997 + 686 + + + + + + Kojima, Michael + + + + Banks + 1992-1993 + 686 + + + + + Contribution exhibits + 1992 + 686 + + + + + Depositions + April-July 1993 + 686 + + + + + Documents + 1991-1992 + 686 + + + + + FBI detailees work product + May-June 1997 + 686 + + + + + Independent Counsel request + 1992-1997 + 686 + + + + + Key documents + 2 folders + 1990-1997 + 686 + + + + + Lippobank + 1992 + 686 + + + + + President's Dinner and trust + 1992-1994 + 686 + + + + + Topanga + 1987-1992 + 686 + + + + + + Levin charts and materials + 1997 + 686 + + + + + Levin materials + + + + Benton Brecker + July 1997 + 686 + + +

    (Includes confidential deposition transcript of Haley R. Barbour)

    +
    +
    + + + Hearing preparation binder + March-September 1997 + 686 + + + + + Immunity requests + June 1997 + 686 + + + + + Memos, notes, and statements + June 1997 + 686 + + + + + Miscellaneous + 1997 + 686 + + + + + Notes + undated + 686 + + +
    + + + Meddoff, R. Warren + + + + 3 folders + 1995-1997 + 686 + + +

    (Includes confidential deposition transcripts for Donald R. Fowler-May 21, + 1997 Harold Ickes-June 27, 1997 and R. Warren Meddoff-August 19, 1997)

    +
    +
    + + + Deposition and questions + August 19, + 1997 + 687 + + +

    (Deposition transcript is confidential)

    +
    +
    + + + Ickes, Harold + + + + June-October 1997 + 687 + + +

    (Includes confidential deposition transcript)

    +
    +
    + + + September 1997 + 687 + + + + + Questions and strategy + September-October 1997 + 687 + + +
    +
    + + + Michael Mitoma and David Strauss + August-September 1997 + 687 + + + + + Minority investigation-Levin staff briefing book + 2 folders + June 1997 + 687 + + + + + National Policy Forum (NPF) + + + + Chinese contributions + April-July 1997 + 687 + + + + + Depositions + 2 folders + June-July 1997 + 687 + + +

    (Includes confidential deposition transcripts of Haley R. Barbour-July 19, + 1997 Michael E. Baroody-June 26 and July 20, 1997 John R. Bolton-July 10 and + 15, 1997 Benton Brecker-June 3, 1997 Scott Reed-July 11, 1997Richard + Richards-June 10 and 19, 1997 Fred Volcansek-July 21, 1997 Ambrous + Young-June 24, 1997)

    +
    +
    + + + Exhibit books + + + + Volume 1 + 2 folders + 1979-1995 + 687 + + + + + Volume 2 + 2 folders + 1995-1997 + 687 + + + + + + Fundraising + October 1993-May 1997 + 687 + + + + + Key documents + June-July 1997 + 687 + + +

    (Includes a confidential deposition transcript of John R. Bolton-July 15, + 1997 and GAC hearing testimony)

    +
    +
    + + + Loan + 2 folders + 1994-1996 + 687 + + + + + News articles + April-June 1997 + 688 + + + + + Operations + May 1993-February 1997 + 688 + + + + + Policy councils list and summary report, 1994(?) + 688 + + + + + Republican National Convention + June 1993-April 1997 + 688 + + + + + Working file + June 1997-June 1998 + 688 + + + + + Young Brothers Development + May 1997 + 688 + + +
    + + + Sandler, Joe + + + + Deposition and materials + 2 folders + 1997 + 688 + + +

    (Carl's writings; Includes confidential deposition transcripts of Joseph E. + Sandler May and August 1997)

    +
    +
    + + + Document index + 3 folders + 1994-1997 + 688 + + + + + Coordination questions and Trevor Potter testimony + May 1997-January 1998 + 688 + + + + + Office of the Vice President + 2 folders + undated + 688 + + + + + Questions, statement, and strategy + September 10, + 1997 + 689 + + +
    + + + Sullivan, Richard + + +

    (DNC Finance Director)

    +
    + + + Exhibit book + 3 folders + June 1997 + 689 + + + + + New Richard Sullivan documents + 2 folders + 1997 + 689 + + +

    (Mostly Democratic National Committee exhibits; Carl's writings)

    +
    +
    + + + Statement and notes + October 1997 + 689 + + +
    + + + Teamsters + + + + Hearing + October 10, + 1997 + 689 + + + + + Strategy + October 1997 + 689 + + + + + + Triad Management and Coalition for our Children's Future + hearing + 3 folders + September 23-25, 1997 + 689 + + +

    (Includes confidential deposition transcripts of Gary Andres-August 18, + 1997Kenneth F. Boehm-September 4, 1997 Padraic J. Buckley-September 4, 1997 + Anna Lee Malenick Evans-August 19, 1997 Sarah Fehrer-August 21, 1997 Peter T. + Flaherty-August 22, 1997 Carolyn Malenick-September 16, 1997 Mary Jane + McClement-September 9, 1997 Robert P. Odell-September 5, 1997 Meredith + O'Rourke-September 3, 1997 John Simms-September 10, 1997 and Dirk Van + Dongen-September 4, 1997)

    +
    +
    + + + Trie, Charlie + + +

    (Yah Lin)

    +
    + + + Advisory Council documents + 1995-1997 + 689 + + + + + Background + 2 folders + July 1997 + 715 + + + + + Briefing book-Levin's + July 1997 + 715 + + + + + Trie chapter + 2 folders + 1997 + 715 + + +

    (Includes confidential deposition transcript of David Mercer-May 27, 1997 + and Ernest Green-June 18, 1997)

    +
    +
    + + + Presidential Legal Expense Trust (PLET) + + + + Briefing book-Levin + July 1997 + 715 + + + + + Document book + 3 folders + 1996-1997 + 715 + + +

    (Includes confidential deposition transcripts of Loren Berger-June 23, + 1997 Michael H. Cardozo-May 7-8, 1997 Zhi Hua Dong-June 17, 1997 Terry F. + Lenzer-June 23, 1997 and Sally A. Schwartz-May6-7, 1997)

    +
    +
    + + + Documents-majority + 2 folders + 1996 + 715 + + +
    +
    + + + Videotape hearings + August-October 1997 + 715 + + +

    (Carl's writing)

    +
    +
    + + + Videotape reliability + + + + 3 folders + October 1997 + 715 + + + + + Deposition and exhibits + 5 folders + 716 + + +

    (Includes confidential deposition transcripts of Lanny A. Breuer-October + 17, 1997 Charles Kenneth Campbell-October 21, 1997 Stephen Goodin-October + 21, 1997 Michael X. Imbroscio-October 17, 1997 Charles McGrath-October 20, + 1997 Charles F.C. Ruff-October 27, 1997 Steven Smith-October 10, 1997 + Colonel Joseph J. Simmons-October 16, 1997 Alan P. Sullivan-October 16, 1997 + David Turley-October 20, 1997 and James VanKeuren-October 20, 1997)

    +
    +
    +
    + + + White House coffees + 3 folders + September 16, + 1997 + 716 + + +

    (Includes confidential deposition transcripts for Robert Belfer-September 6, + 1997 Beth Dozoretz-September 2, 1997 and Clark S. Wallace Jr.-August 27, + 1997)

    +
    +
    + + + Witness information + May-July 1997 + 716 + + +

    (Includes confidential deposition transcripts of William W. Ginsberg-June 17, + 1997 and Timothy J. Hauser-May 22, 1997)

    +
    +
    + + + Witnesses list and transcripts + July-September 1997 + 716 + + + + + Work files + + + + 1997 + 716 + + + + + September-October 1998 + 716 + + + +
    + + + Independent Counsel + + + + 2 folders + 1996-1998 + 680 + + + + + Appointment for investigation + November-December 1997 + 716 + + + + + Correspondence-appointment + October 1996-December 1997 + 716 + + + + + Bills + March-July 1998 + 716 + + + + + News articles and notes + November-December 1997 + 716 + + + + + Notes and Levin statement + September-October 1997 + 716 + + + + + + Investigative procedures + January-April 1997 + 716 + + + + + Miscellaneous news articles and notes + 1997 + 716 + + +

    (Carl's writing)

    +
    +
    + + + News articles and notes + 2 folders + September 1997 + 716 + + + + + Statements + + + + Committee statements and Congressional Record + 1997 + 717 + + + + + Leadership + December 1996-November 1997 + 717 + + + + + Levin + 1997 + 717 + + + + + Thompson + 1997 + 717 + + + + + Thompson + January-March 1997 + 717 + + + + + + Subpoenas + + + + 2 folders + December 1996-June 1997 + 717 + + + + + March-July 1997 + 717 + + +

    (GAC)

    +
    + +

    (Carl's writing)

    +
    +
    + + + 2 folders + July 1997 + 717 + + + + + July 1997 + 717 + + + + + American Federation of Labor and Congress of Industrial Organizations + (AFL-CIO) + + + + June-July 1997 + 717 + + + + + August-September 1997 + 717 + + + + + + Americans for Tax Reform + May-June 1997 + 717 + + + + + Battles + January-June 1997 + 717 + + + + + Core 4 + 2 folders + February-April 1997 + 717 + + + + + Immunity and procedures, (GAC) + July 1997 + 717 + + +

    (Carl's writing)

    +
    +
    + + + Majority + February-June 1997 + 717 + + + + + Majority + June 1997 + 717 + + + + + National Policy Foundation (NPF) + April-June 1997 + 717 + + + + + Tax exempt foundations + 2 folders + January-April 1997 + 717 + + +
    + + + Suspension of committee hearings + September-November 1997 + 717 + + +
    + + + Campaign spending -- Newbury-Ford Michigan Senate election scandal of + 97 + 1918 February 19 + 693 + + + + + Census + + + + Ancestry questions -- retain on long form + March 1997 + 693 + + + + + Bills in the 105th Congress + 1997 + 693 + + + + + General concerns about sampling in 2000 census + 1997 + 693 + + + + + Hearing, (GAC) + July 30, 1998 + 693 + + + + + Census hearings + 1998-2001 + 693 + + + + + Hearing, markup, and meeting, (GAC) + 1998 + 693 + + + + + Hearing preparation and statement, (GAC) + July 30, 1998 + 693 + + + + + Intercensal adjustment + 1991-1992 + 693 + + + + + Letters from groups about sampling + May-June 1997 + 694 + + + + + Marital status and short form vote + September 15, + 1999 + 694 + + + + + Memos, Carl notes, and talking points + 1997-1998 + 694 + + + + + Michigan specific information + 1990-1991 + 694 + + + + + Notes and concerns + 2000 + 694 + + + + + Prewitt confirmation questions census, (GAC) + 1998 + 694 + + + + + Prewitt and Supreme Court challenge + 1998 + 694 + + + + + Sampling debate and disaster supplemental affairs bill + 1997 + 694 + + + + + + Civil Service reform + 1994-1998 + 694 + + + + + Thomas Edison Commemorative Coin Act + 1997 + 694 + + + + + Commemorative legislation-respect month + 1993-2003 + 694 + + + + + Committee hearings + + + + Role of U.S. Correspondent Banking in International Money + Laundering + March 1-6, + 2001 + + + + Part 1 + 03:07:48 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 2 + 03:08:29 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 3 + 02:15:10 + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + What Is the U.S. Position on Offshore Tax Havens? + July 18, 2001 + 02:56:53 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + The Role of the Board of Directors in Enron's Collapse + May 7, 2002 + 18:06:02 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + The Role of the Financial Institutions in Enron's Collapse + July 23-30, + 2002 + + + + Part 1 + 05:37:57 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 2 + 17:47:19 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 3 + 03:38:35 + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + Oversight of Investment Banks' Response to the Lessons of + Enron + December 11, + 2002 + + + + Part 1 + 05:22:13 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 2 + 17:52:16 + + +

    [access item]

    +
    +
    + Online +
    +
    +
    +
    + + + Governmental Affairs Committee materials (GAC) + + + + Committee business meeting + July 24, 2002 + 694 + + + + + Committee correspondence + + + + Business and government agencies + + + + 1999 + 694 + + +

    (PSI)

    +
    +
    +
    + + + Memos-Ken Saccoccia + January-April 2001 + 694 + + + + + Miscellaneous cases, (GAC and Subcom OGM) + 1991-1994 + 694 + + +
    + + + Committee hearings + + + + Tissue banks, (PSI) + May 24, + 2001 + 694 + + +

    (Also includes GAC markup of Intelligence Reform Act September 2004 L. + Stuber)

    +
    +
    + + + Cross border fraud + June 15, + 2001 + 694 + + +

    (Cross-Border Fraud: Scams Know No Boundaries; PSI; L. Stuber)

    +
    +
    + + + Legislative Options to Strengthen Homeland Defense, (GAC) + October 12, + 2001 + 695 + + + + + Review of INS Policy on Releasing Illegal Aliens Pending Deportation, + (PSI) + November 13, + 2001 + + + + Background information + 9 folders + 695 + + + + + Border patrol + 695 + + + + + Customs-border inspection + 695 + + + + + Hearing preparation + 695 + + + + + Meeting notes + 695 + + + + + Memos + 695 + + + + + Press release + 695 + + + + + Whistleblower Mark Hall and retaliatory action + 695 + + + + + + The Local Role in Homeland Security, (GAC) + December 11, + 2001 + 695 + + + + + Gas Prices: How are they Really Set?, (PSI) + April 30, + 2002 + 695 + + + + + Creation of a Department of Homeland Security folder 1, + (GAC) + June 20, + 2002 + 695 + + + + + Creation of Department of Homeland Security folder 2 + June 20, + 2002 + 696 + + +

    (President Bush's Proposal to Create a Department of Homeland Security; GAC; + L. Stuber)

    +
    +
    + + + Homeland Security and the Intelligence Community, June 20 and 27, + (GAC) + 2002 + 696 + + +
    + + + Committee markup-Department of Homeland Security bill + markup + May 21, 2002 + 696 + + +

    (National Homeland Security and Combating Terrorism Act -- S.2452 GAC; L. + Stuber)

    +
    +
    + + + Subcommittee on Oversight of Government Management and District of + Columbia files (Subcom OGMDC) + + + + Correspondence -- chronological file, (E. Bean) + 1995-1999 + 696 + + + + + Internal Revenue Service (IRS) management and + restructuring + 1997 + 696 + + + + + Whistleblower-Bachan Aerospace Corporation + 1990-1991 + 696 + + +

    (Ken Kramer)

    +
    +
    +
    +
    + + + Election advertisements, articles, and voter turnout + 3 folders + 2000 + 696 + + + + + Faith based government aid + + + + Background + 2 folders + 2000-2002 + 696 + + + + + Interest groups + 2001 + 696 + + + + + Memos and talking points + 2001 + 696 + + + + + News articles + 2001 + 696 + + + + + + Federal employees + + + + Federal Erroneous Retirement Coverage Corrections + Act-S.1232 + June-August 1999 + 696 + + + + + Federal workers and civil service + 1997-2003 + 696 + + +

    (Includes a CD)

    +
    +
    + + + Organ Donor Leave Act + 1997-2000 + 696 + + + + + Staffing levels and Department of Defense (DOD) exemption + 1994-1998 + 696 + + +
    + + + Federal law enforcement agents pay raise + 2001-2003 + 697 + + + + + Federal procurement + July 2000 + 697 + + + + + Federal Reports Elimination Act + + + + Administrative notes, legislation, and committee report, + (GAC) + 1998 + 697 + + + + + Committee responses + + + + May 1996 + 697 + + + + + 2 folders + May 1997 + 697 + + + + + + Draft legislation + 4 folders + 1997 + 697 + + + + + Federal Reports Elimination and Sunset Act-S.790 + 4 folders + 1995 + 697 + + + + + Letter + April 26, + 1996 + 697 + + + + + Letter from Levin and Cohen, (Subcom OGM) + June 24, 1994 + 697 + + + + + Markup S.1364 (GAC) + 3 folders + 1997-1998 + 697 + + + + + Memos and action to be taken, April + June 1996 + 697 + + + + + U.S. codes and public laws + 2 folders + 1997 + 697 + + + + + + Federalism and preemption + + + + Correspondence and legislation, (GAC) + 2 folders + 1999-2000 + 697 + + + + + Development of S.1214 + April-June 1999 + 697 + + + + + Executive orders -- federalism + 1999 + 697 + + + + + Federalism Accountability Act and Federalism hearing + 2 folders + 1999 + 697 + + + + + Federalism Accountability Act hearing and markup -- S.1214 + 1999 + 698 + + +

    (Includes hearing on the State of Federalism May 5, 1999 and markup on other + legislation; GAC)

    +
    +
    + + + Hearing on federalism legislation, (GAC) + July 1999 + 698 + + + + + Legislation + June-July 1999 + 698 + + + + + Literature + 1999 + 698 + + + + + National Conference of State Legislatures and federalism + speech + 2000 + 698 + + + + + National Conference of State Legislatures-materials and talking + points + February 2000 + 698 + + + + + Preemption and the 10th Amendment -- S.1629 + 2 folders + 1989-1996 + 698 + + + + + Preemption bills -- earlier Congress + 8 subfolders + 1991-1999 + 698 + + +
    + + + Gas and oil prices + + + + Anti-trust and mergers + 2001 + 698 + + + + + Case law + 2000-2001 + 698 + + + + + Emails and letters, (PSI) + 2001 + 698 + + + + + Meeting notes, (PSI) + 2001 + 698 + + + + + Memos, statements, and press releases + 1990 + 2000-2001 + 698 + + + + + News articles + 2 folders + 2001 + 699 + + + + + Profit information, (PSI) + 2001 + 699 + + + + + Reports-part 1 + 2 folders + 2000-2001 + 699 + + + + + Reports-part 2 + 2 folders + 2000-2001 + 1993 + 699 + + + + + Gas price investigation + + + + 5 folders + 2000 + 699 + + + + + 2001 + 1-5 of 8 + folders + 699 + + + + + 2001 + 6-8 of 8 + folders + 700 + + + + + + Gas Price investigation-PSI + + + + Antitrust and profit + 2001 + 700 + + + + + Charts and briefings + 2001 + 700 + + + + + Correspondence + 2001 + 700 + + + + + Data + 2001 + 700 + + + + + Hearing notebooks + + + + Gas Prices: How are They Really Set? + April 30, + 2002 + 700 + + + + + Gas Prices: How are They Really Set? + May 2, + 2002 + 700 + + + + + + Memo + 2001 + 700 + + + + + To-do + 2001 + 700 + + + + + + + Immigration + + + + Agricultural workers + 2000 + 700 + + + + + Anti-atrocity Alien Deportation Act + 1999 + 700 + + + + + Anti-Atrocity Alien Deportation Act + 2001 + 700 + + + + + Balch Institute-digitize ship passenger lists + August 1999-October 2000 + 700 + + + + + Coordinated Interagency Partnership Regulating International Students + (CIPRIS) redoing student visa requirements + 2001 + 700 + + + + + Detention beds and expedited removal + 2001 + 700 + + + + + Eritrean refugees + 1999 + 700 + + + + + Gonzalez, Elian + 2000 + 700 + + + + + H-1B visas + 1999-2000 + 700 + + + + + H-1B visas -- highly skilled workers + 2002 + 700 + + + + + H-2A visas + 1998-1999 + 700 + + + + + Hmong veterans + 2000 + 700 + + + + + Immigration catch and release, (PSI; J. Bryan and (K. + Meier) + 2 folders + 2001 + 700 + + + + + Immigration fairness + 2000 + 700 + + + + + Immigration fairness restoration + 2002 + 700 + + + + + Immigration and Nationality Act section 245(i) expansion-S.778, + (Senator Kennedy) + April-September 2001 + 700 + + + + + Immigration and Naturalization Services (INS) + + + + Premium processing + 2001 + 700 + + + + + Restructuring-Immigration Reform, Accountability, and Security + Enhancement Act-S.2444 + 2002 + 700 + + + + + + Legal Immigration Family Equity Act (LIFE Act) + 2001 + 701 + + + + + Memos + 1996-2004 + 701 + + + + + National Crime Information Center (NCIC) deportees and racial + profiling + 2001-2002 + 701 + + + + + Naturalization issue-Imad Hamad + 2001 + 701 + + + + + NAFTA provisions + 2001 + 701 + + + + + News articles + 2001 + 701 + + + + + Numerical limits + 2000 + 701 + + + + + Part-time students + 2002 + 701 + + + + + Refugee Protection Act + 2000 + 701 + + + + + + Impeachment -- Clinton (Closely linked to Independent Counsel + files) + + + + December 1998-January 1999 + 701 + + + + + 3 folders + January 1999 + 701 + + + + + House impeachment transcript + November 19, + 1998 + 701 + + + + + Impeachment Inquiry: William Jefferson Clinton, President of the United + States -- Hearing on Impeachment Inquiry Pursuant to H.Res.581: Appearance of + the Independent Counsel, (House Committee of the Judiciary; Committee print + No.66; Book) + November 19, + 1998 + 701 + + + + + Impeachment voting records + 1986-1999 + 701 + + + + + In the Senate of the United States Sitting as a Court of Impeachment + regarding Impeachment of President William Jefferson Clinton-Materials sent by + the Office of Independent Counsel to the Committee + 2 folders + September 29, + 1998 + 701 + + + + + Key files + + + + Call witnesses + December 1998-January 1999 + 702 + + + + + Censure + November 1998-February 1999 + 702 + + + + + Final sentences + December 1998-January 1999 + 702 + + + + + Grand Jury proceeding transcript-Vancouver and bear + August 1998 + 702 + + + + + Levin Congressional Record statement + February 12, + 1999 + 702 + + + + + Levin and Gerald Ford correspondence + December 1998 + 702 + + + + + Levin notes and statements + + + + December 1998-February 1999 + 702 + + + + + 2 folders + January-February 1999 + 702 + + + + + + News articles + + + + January 1999 + 702 + + + + + Depositions + 702 + + + + + Findings of fact + January-February 1999 + 702 + + + + + Op-eds + February 1999 + 702 + + + + + + Proposals + + + + Levin-Specter on unanimous consent + January 1999 + 702 + + + + + Lott + January 1999 + 702 + + + + + + Resolutions and motions + December 1998-January 1999 + 702 + + + + + + Carl's writings + + + + Background + 4 folders + 1999 + 702 + + + + + Background on impeachment-CRS + 1998 + 702 + + + + + Final miscellaneous + 1998-1999 + folders 1-3 of + 5 + 702 + + + + + Final miscellaneous + 1998-1999 + folders 4-5 of + 5 + 703 + + + + + White House exhibits + 2 folders + January 1999 + 703 + + + + + + Miscellaneous + + + + Levin questions and background + 3 folders + January 1999 + 703 + + + + + Levin statement, Biden statement, background, and Grand Jury + transcripts + 3 folders + August 1998-February 1999 + 703 + + + + + Senate report, notes, articles, and background + 2 folders + 1998 + 703 + + + + + + Resolution of Censure drafts + 1998-2000 + 703 + + + + + Side-by-side analysis of the House and Clinton Trial briefs on + impeachment + January 14, + 1999 + 703 + + + + + Trial Memorandum of President William Jefferson Clinton + 2 folders + January 13, + 1999 + 703 + + + + + Tripp immunity + + + + Memos and news articles + December 1999-February 2000 + 703 + + + + + Testimony and memos + 2 folders + January-August 2000 + 704 + + + + + + + Independent Counsel reform and reauthorization + + + + Court documents + 1994-1999 + 704 + + + + + Court records access-Thompson letters + 1997-1998 + 704 + + + + + Coverage and trigger history + 1979-1992 + 704 + + + + + Exchanges with Donald Smaltz and Starr + 1996-1997 + 704 + + + + + Exchange with Special Division + 1994 + 1998 + 704 + + + + + Independent Counsel bills + + + + 2 folders + 1992-1993 + 704 + + + + + 1994 + 704 + + + + + 1999-2001 + 704 + + + + + + Independent Counsel Reauthorization Act-1999 + + + + 1999-2001 + 704 + + + + + Congressional Records + 1975-1976 + 1998 + 704 + + + + + Correspondence + + + + 1994-1999 + 704 + + + + + 1998-2000 + 704 + + + + + + GAO financial audits + 1996-2000 + 705 + + + + + Independent Counsel file index + undated + 705 + + + + + Miscellaneous + 1997 + 705 + + + + + Notes and memos + 1996-1999 + 705 + + + + + Pleadings + 1994-1998 + 705 + + + + + Press releases + 1997-1999 + 705 + + + + + Research + 1994-2000 + 705 + + + + + Special Counsel Act-S.1427 (Senator Thompson) + July 1999 + 705 + + + + + Talking points + 1998-1999 + 705 + + + + + + Law files + + + + Letters and comments + 1999 + 705 + + + + + Memos + 1999 + 705 + + + + + Reference + 1999 + 705 + + + + + + Law review + 1987-1999 + 705 + + + + + Miscellaneous-Levin's file + 1999-2001 + 705 + + + + + Notes + November 1998-March 1999 + 705 + + + + + Reauthorization + + + + Background, phone calls, and talking points + 2 folders + September-October 1997 + 705 + + + + + Background, memos, notes and talking points + 2 folders + 1997-1998 + 705 + + + + + Correspondence + 1996-1997 + 705 + + + + + Current Independent Counsel-Starr + 1994-1997 + 705 + + + + + Hearing, (Subcom OGM) + March 19-20, 1987 + 705 + + + + + Hearings + 1993 + 1999 + 705 + + +

    (GAC and House Subcommittee on Commercial and Administrative Law)

    +
    +
    + + + Hearing testimony on the future of the Independent Counsel Act, + (GAC) + 3 folders + February-April 1999 + 706 + + + + + Independent Counsel questions and responses + 3 folders + November 1996-1997 + 706 + + + + + Judge Johnson's Opinions + 1998 + 706 + + + + + Levin's debate folder + October 1987 + 706 + + + + + Resolution-S.J.Res.22 + March 1997 + 706 + + +
    + + + Regulations + July-October 1999 + 706 + + + + + Termination reports + 1998 + 1995 + 706 + + + + + Weinberger + 1998 + 1992 + 706 + + +
    + + + Independent Counsel Statute and Kenneth Starr (PSI) + + + + Barrett investigation into Cisneros + 1995-1999 + 706 + + + + + Dash, Samuel + March 1999 + 706 + + +

    (Witness in March 24, 1999 hearing)

    +
    +
    + + + Department of Justice guidelines and reauthorization of + statute + 1998 + 706 + + + + + Hearing-April 14, (PSI) + 1999 + 706 + + + + + Testimony + 706 + + + + + Impeachment + December 1998-April 1999 + 707 + + + + + Improper use of jurisdiction + + + + Levin floor statement on Starr and notes + September 1998 + 707 + + + + + Levin news articles, memos and notes on Starr + September 1998 + 707 + + + + + News articles and notes + + + + August 1998 + 707 + + + + + August 20-26, 1998 + 707 + + + + + 2 folders + September 1998 + 707 + + + + + + Statement drafts + September 1998 + 707 + + + + + + Investigations + + + + Campaign finance irregularities + 1996 + 707 + + + + + Clinton impeachment + + + + Clinton, Lewinsky, and Jones + 2 folders + 1998-1999 + 707 + + + + + Lewinsky book and news articles + February-March 1999 + 707 + + + + + Miscellaneous + 2 folders + 1998 + 707 + + + + + + Whitewater Development Corporation files + 1999 + 707 + + + + + Whitewater-Susan McDougal + 1997 + 707 + + + + + Whitewater and independent counsel law violation-Robert Ray + report + 2000-2001 + 707 + + + + + + Law + 1998 + 708 + + + + + Law reform + 1998 + 708 + + + + + Levin and Starr + + + + Constituent letters on Clinton + September 1998 + 708 + + + + + News articles, notes, and letter to Attorney General, + March + October 1998 + 708 + + + + + Statements on Starr + January 1999 + October 1998 + 708 + + + + + + Lewinsky and reauthorization (Starr) + + + + ABC News transcript on reform + February-March 1999 + 708 + + + + + Excerpt of Starr report regarding December 11th + undated + 708 + + + + + Miscellaneous + March-April 1999 + 708 + + + + + News articles and notes + February-March 1999 + 708 + + + + + Possible overstep of Independent Counsel powers + undated + 708 + + + + + Post-hearing questions from House Committee on Judiciary + December 1998-March 1999 + 708 + + + + + + Smaltz, April + 2 folders + June 1997 + 708 + + + + + Starr and Clinton impeachment-Levin's file + January 1999 + 708 + + + + + Starr television appearances + April 1999 + 708 + + + + + Statements + October 1998-April 1999 + 708 + + + + + Travel costs + 1995-1996 + 708 + + + + + Use of Grand Jury + 1998 + 708 + + +
    + + + Inspector General Office legislation + 1989-1999 + 708 + + + + + Internal Revenue Service (IRS) + 1996 + 708 + + + + + Judiciary-Miscellaneous + 2 folders + 1998-2000 + 708 + + + + + Line Item Veto + + + + Expedited rescission alternative + 1998 + 708 + + + + + Federal court suit-members of Congress + January 1997 + 708 + + +

    (Includes Levin)

    +
    +
    + + + Supreme Court + 2 folders + 1997-1998 + 709 + + +
    + + + Lobbying Disclosure Act + + + + Technical corrections + 1997 + 709 + + + + + Technical corrections follow-up + 1997-1999 + 709 + + + + + + Michigan flow of funds, (Federal government; (K. Meier) + 2002 + 709 + + + + + Miscellaneous + 1999-2001 + 709 + + + + + New Hampshire -- Iowa Democratic National Committee (DNC) + 1999-2000 + 709 + + + + + Nominations and appointments + + + + Michigan judicial nominees + 1997-1998 + 1040 + + + + + Miscellaneous + 1999 + 1040 + + +

    (Also includes a telegram from the Department of State regarding Levin's + inquiry about a constituent's refugee family members -- Iraq)

    +
    +
    + + + Office of Management and Budget (OMB) Deputy Director -- Sean O'Keefe, + (GAC; B. Weber) + February 2001 + 1040 + + + + + Office of Special Counsel-Elaine Kaplan + 2002-2003 + 1040 + + + + + U.S. Attorney General -- John Ashcroft + + + + 1999-2001 + 1040 + + + + + 2 folders + 2001 + 1041 + + + + + + U.S. Attorney for Eastern Michigan-Jeff Collins + September-October 2001 + 1041 + + + + + U.S. Court of Appeals-6th Circuit + + + + Holds + 8 folders + 2000-2004 + 1041 + + + + + Judicial Advisory Committee + 2001-2004 + 1041 + + + + + Lewis, Kathleen + 1999 + 1041 + + + + + Miscellaneous + 1999-2000 + 1041 + + + + + Non-Michigan + 2001-2002 + 1042 + + + + + Unfair treatment + 2001 + 2003 + 1042 + + + + + Voting records and issues + 1968-2004 + 1042 + + + + + White, Helene + 2 folders + 1997 + 1042 + + + + + + U.S. Court of Appeals-11th Circuit-William Pryor + June-August 2003 + 1042 + + + + + U.S. Court of Appeals-DC-Miguel Estrada + January-March 2003 + 1042 + + + + + U.S. District Court Eastern Michigan + + + + Lawson, David + 2 folders + 1999-2000 + 1042 + + + + + Lax, Jerold + February-April 1997 + 1042 + + + + + Memo + 1997 + 1042 + + + + + Pepe, Steven + January-April 1997 + 1042 + + + + + Roberts, Victoria + January-April 1997 + 1042 + + + + + Steeh, George III + March-April 1997 + 1042 + + + + + Stevens, Cynthia + March 1997 + 1042 + + + + + Tarnow, Art + March 1997 + 1042 + + + + + William, Richard + January 1997 + 1042 + + + + + + U.S. District Court for Western Michigan -- Margaret-Mary + Chiara + 2001 + 1042 + + + + + U.S. District Court for Utah -- Paul Cassell + May 2002 + 1042 + + + + + U.S. District Judge Michigan-Fred L. Borchard + March 2001 + 1042 + + +
    + + + Office of Management and Budget (OMB)-Shelby amendment disclosure of data + developed with federal grants + April-June 1999 + 709 + + + + + Office of Special Counsel + + + + Hearings on oversight, (Subcom OGM) + May 2005 + 709 + + + + + Reorganization + 2004-2005 + 709 + + + + + Sexual orientation policy + + + + Scott Bloch letter + February-March 2004 + 709 + + + + + Michael Levine case + 2004-2005 + 709 + + + + + + + Political + 1997 + 709 + + +

    (Includes a photograph of Carl and Barbara)

    +
    +
    + + + Post-office Community Partnership Act, (Co-sponsor) + 2001 + 709 + + + + + Postal Service + + + + Daimler-Chrysler truck protest + 2000 + 709 + + + + + Free matter for the blind + 2000 + 709 + + + + + Labor relations + 1994-1997 + 710 + + + + + Michigan facilities + 1997-2004 + 710 + + + + + Miscellaneous + 1999-2000 + 710 + + + + + Nonprofit rates + 2000 + 710 + + + + + Postal Service and Commercial Mail Receiving Agencies (CMRA) + legislation, (GAC) + 2 folders + 1998-1999 + 710 + + + + + Postmasters Fairness and Rights Act + 1999-2002 + 710 + + + + + Stamps + + + + Detroit 300 + 2000-2001 + 710 + + + + + Ramadan + 2000 + 710 + + + + + Semi-postal + 2000 + 710 + + + + + Semi-postal-breast cancer research + + + + 2 folders + 1999-2000 + 710 + + + + + H.R.22 + 1998-2000 + 710 + + + + + Angels on Track Foundation + 1998-1999 + 710 + + + + + Fed-ex and USPS alliance + 2000-2001 + 710 + + + + + + + + Product Liability Reform Act of + 1998 + 710 + + + + + Property rights + + + + Property rights legislation + 1997 + 710 + + + + + Takings of private property bill + 1997 + 710 + + + + + Takings legislation -- property rights and governmental + legislation + 2002 + 710 + + + + + + Regulatory Reform + + + + Legislation + 2 folders + 1997-1999 + + + + + Levin-Thompson Regulatory Improvement Act, (H. Keller) + June 1997 + 711 + + + + + Miscellaneous + 2 folders + 1997-2001 + 711 + + + + + Regulatory Improvement Act-S.746 + + + + Hearing book, (GAC) + April 21, + 1999 + 711 + + + + + Markup + March-May 1999 + 711 + + + + + + Regulatory Improvement Act-S.981 + + + + Background + 1996-1997 + 711 + + + + + Background and letters + 2 folders + 1997-1999 + 711 + + + + + Comparisons + 1997-1998 + 711 + + + + + Exemptions and pesticides + 1998-1999 + 711 + + + + + Floor statements and colloquy + 1997-1998 + 711 + + + + + Hearing, (GAC) + September 12, + 1997 + 711 + + + + + Hearing testimony, (GAC) + February 24, + 1998 + 711 + + + + + Key letters + March-July 1998 + 711 + + + + + Language and summaries + 1995-1998 + 711 + + + + + Letters + + + + Levin + 1997-1998 + 711 + + + + + Opposition + August 1997-July 1998 + 711 + + + + + Support + 1997 + 711 + + + + + Support + January-March 1998 + 711 + + + + + + Levin statements + 1997-1998 + 712 + + + + + Lott's Federal Regulatory Risk Assessment Act + March 1998 + 712 + + + + + Memos + 1997-1998 + 712 + + + + + Miscellaneous + 1997-1998 + 712 + + + + + News articles + 1997-1998 + 712 + + + + + Other regulatory legislation + June-July 1999 + 712 + + + + + Peer review + 1998-1999 + 712 + + + + + Press + June 1998 + 712 + + + + + Risk + 1997-1998 + 712 + + + + + Securities and Exchange Commission (SEC) + June-September 1997 + 712 + + + + + Specific examples + 1997-1998 + 712 + + + + + Statutes + 2 folders + 1993-1997 + 712 + + + + + Suggested changes + 1997-1998 + 712 + + + + + Talking points + September 1998 + 712 + + + + + Views and opinions + 1995-1998 + 712 + + + + + + Truth in Regulating Act-S.1244 + 1999 + 712 + + + + + + Rosie the Riveter Monument + 2002 + 712 + + + + + Shell companies bill background and notes + 2000 + 712 + + + + + Social Security + + + + Adjustment + November 2002 + 712 + + + + + Bush's social security policy, (B. Weber) + April-September 2000 + 712 + + + + + Earnings test repeal, March and (B. Weber) + June 2000 + 712 + + + + + Lock-box proposal, (B. Weber) + June-November 1999 + 712 + + + + + More lock-box stuff, (B. Weber) + September 1999 + 712 + + + + + Long-term funding, (B. Weber) + May 2001 + 712 + + + + + Privacy + 2000 + 712 + + + + + Privatization + 2002 + 712 + + + + + Privatization and reform + 2 folders + 2001-2002 + 745 + + + + + Privatization of social security, (T. Henseler) + 2001-2002 + 712 + + + + + Sperling freeze top rates proposal, (T. Henseler) + September-October 2001 + 712 + + + + + Social security tax on benefits repeal + July 2000 + 712 + + +

    (Social Security Benefits Tax Relief Act; B. Weber)

    +
    +
    +
    + + + Sweepstakes (PSI) + + + + Big 4 responses to Levin-Collins letter + January-February 1999 + 712 + + + + + Examples + 1999 + 713 + + + + + Hearings + + + + Deceptive Mailings and Sweepstakes Promotions, (PSI) + May 8, 1999 + + + + Bills + 713 + + + + + Direct Marketing Association (DMA) + 713 + + + + + Memos + 713 + + + + + Notes + 713 + + + + + Press + 713 + + + + + Questions + 713 + + + + + Video: Deceptive Mailings and Sweepstakes Promotions + March 9, + 1999 + 03:09:27 + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + Hearing + July 20, + 1999 + 713 + + +
    + + + Legislation + 1999 + + + + Bill-House of Representatives + 713 + + + + + Bill-opinions on requirements + 713 + + + + + Clear and Conspicuous amendment + 713 + + + + + Constituent letters + 713 + + + + + Information gathering + 2 folders + 713 + + + + + Miscellaneous + 713 + + + + + S.335 Deceptive Mail Prevention and Enforcement Act + 713 + + + + + + Mark-up + 2 binders + May 20, 1999 + 713 + + + + + Miscellaneous + 2 folders + 1999-2000 + 713 + + + + + Reader's Digest mailings-issues + 1999-2000 + 713 + + + + + Reduction in fake + 2000-2001 + 714 + + + + + Time Inc. information + 1999 + 714 + + +
    + + + Unilateralism + 2002 + 714 + + +

    (Carl's writing)

    +
    +
    + + + Whistleblower + + + + Appeals process + 1997-2001 + 714 + + + + + Bill reintroduction + 2001-2003 + 714 + + + + + Whistleblower Protection Act amendment-S.995 + + + + Background + 3 folders + 2001 + 714 + + + + + Hearing before Subcommittee on International Security, Proliferation, + and Federal Services, (GAC) + 3 folders + July 25, + 2001 + 714 + + + + + + White v Lachance amicus brief and anti-gag language + 1998-2000 + 714 + + + +
    + + + Health and Human Services + 1987-2003 + + + + Adoption + + + + 1987-1997 + 764 + + + + + 1997-2000 + 764 + + + + + 2000 + 764 + + + + + 2000-2001 + 764 + + + + + Articles and correspondence + 1998-1999 + 764 + + + + + Legislation and meeting + 1997 + 764 + + + + + National Voluntary Reunion Registry + + + + 1997-1998 + 764 + + + + + Hearing on S.1487 (House Ways and Means Committee) + 2 folders + June 11, + 1998 + 764 + + + + + Hearing testimonies and letters + June 11, + 1998 + 764 + + + + + Miscellaneous and hearing before Ways and Means Committee + 2 folders + 1997-2000 + 764 + + + + + Potential issues and answers + 1998 + 765 + + + + + Utah and national registry + May-July 1998 + 765 + + + + + + Safe Adoptions and Family Environment (SAFE) act + 1995-1997 + 765 + + + + + + Drug policy reform-CODEL Levin trip to Bosnia, Tel Aviv, and + Zurich + January 1-9, 1998 + 765 + + + + + Healthcare + + + + Abortion + 2001 + 765 + + + + + Action file + 1997 + 765 + + +

    (Includes a photograph)

    +
    +
    + + + AIDS reports and memos + 1999 + 765 + + + + + Biomedical research and drug prices + October 1997 + 765 + + + + + Butterworth-Blodgett hospital merger (Grand Rapids, + Michigan) + + + + 2 folders + April-September 1997 + 765 + + + + + 3 folders + September-October 1997 + 765 + + + + + + Cancer-Herceptin breast cancer drug memo + September 1998 + 765 + + + + + Cancer research funding and legislation-breast, cervical, and + ovarian + 2000-2002 + 765 + + + + + Clinical laboratory improvement amendments + 3 folders + 1997-1999 + 765 + + + + + Consolidated health centers program + March 2000 + 765 + + + + + Correspondence-Carl's friends + September 1997-September 1998 + 765 + + + + + Dentists + November 2000 + 765 + + + + + Drug pricing + 1999-2000 + 765 + + + + + Family Medical Leave Act + 2000-2001 + 765 + + + + + Federal employee health benefits plan + 2 folders + 1998-1999 + 765 + + + + + Federal health centers-Safety Net Preservation Act + 1998-2000 + 766 + + + + + Genetic testing + 1995-2000 + 766 + + + + + Health and insurance agenda, plans, and proposals + October 1999-February 2000 + 766 + + + + + Health Care Financing Administration + + + + Litigation-Waksburg + October 1999 + 766 + + + + + Prospective payment system + 2001 + 766 + + + + + + Health professionals shortage areas + 1998-1999 + 766 + + + + + Hill-Burton Act, (Michigan) + 2 folders + 1997-2001 + 766 + + + + + Home healthcare + + + + 1999-2000 + 766 + + + + + Outcome and Assessment Information Set (OASIS) + regulations + April-May 2000 + 766 + + + + + + Human genome + 1999-2000 + 766 + + + + + Immunizations + 2000 + 766 + + + + + Infant milk formula-Perrigo, (Michigan) + 1999 + 766 + + + + + Insurance-Consolidated Omnibus Budget Reconciliation Act press + release + September 1997 + 766 + + + + + Issues + 1996-2001 + 766 + + + + + Long term care + + + + Federal employees + March-May 2000 + 766 + + + + + Long Term Care Security Act + 2 folders + 2000 + 766 + + + + + Long Term Care Security Act hearing + May 15, + 2000 + 766 + + + + + President's proposal + January-March 1999 + 766 + + + + + + Lyme disease + January 2001 + 766 + + + + + Managed care + May 1998 + 766 + + + + + Medicaid + + + + General + 2000-2002 + 766 + + + + + Funding and policy + 2000-2001 + 766 + + + + + Prescription drug pricing, (J. Hill) + 2000-2001 + 766 + + + + + Prescription drug pricing policies + July 2001 + 766 + + + + + Schools + 5 folders + 2000 + 766 + + + + + State upper payment limits + 2000 + 767 + + + + + Waivers + 2000-2002 + 767 + + + + + + Medicaid and Medicare termination at Heartland Manor + 3 folders + 1998-1999 + 767 + + + + + Medicare + + + + Arbor Hospice Section 405 cap, (J. Hill) + 2001 + 767 + + + + + Balanced budget + July 2000 + 767 + + + + + Haley Barbour + 2 folders + 2000 + 767 + + + + + Bipartisan Medicare Commission + 2 folders + 1999 + 767 + + + + + Choice program + September 1998 + 767 + + + + + Competitive bidding and Medicare fraud hearing notes, + (PSI) + January 1998 + 767 + + + + + False Claims Act + May 1998 + 767 + + + + + Geo reclassification (J. Hill) + + + + 2001 + 767 + + + + + Bay + 2002 + 767 + + + + + Hillsdale + 2002 + 767 + + + + + Foote + 2003 + 767 + + + + + + Hearing-Medicare Fraud Prevention: Improving the Medicare Enrollment + Process, (PSI) + January 29, + 1998 + 767 + + + + + Hospital reimbursement metropolitan statistical area, + (Michigan) + 2001 + 768 + + + + + Maternal fetal + 2000 + 768 + + + + + Medical education funding and Medicare + 2000-2002 + 768 + + + + + Medicare Education and Regulatory Fairness Act + November 2001 + 768 + + + + + Medicare Payment Advisory Commission appointees + 1999 + 768 + + + + + Mental healthcare, (Michigan) + 2000 + 768 + + + + + Metropolitan statistical area wage index, (Michigan) + 1998-2000 + 768 + + + + + Nursing home bed reduction-Jewish rehab center, + (Michigan) + September 1999 + 768 + + + + + Practice expense + 1997-2001 + 768 + + + + + Prescription Drug and Medicare Improvement Act + 2003 + 768 + + + + + Prescription drug proposals + 2 folders + 1998-2000 + 768 + + + + + Reimbursement + 2000 + 768 + + + + + + Medical marijuana -- Dr. DeChemy + 1997 + 768 + + + + + Michigan Medigap plans + December 1998 + 768 + + + + + Mitchell Health bill + 1998 + + + + Title III-IV + 2 folders + 768 + + + + + Title VII-XI + 2 folders + 768 + + + + + + Nomination-National Heart, Lung and Blood Advisory Council-Dr. Ananda + Prasad + 1999-2002 + 768 + + + + + Nursing homes -- Heartland Manor at Carriage Town (Flint) + + + + Informal Deficiency Dispute Resolution + + + + Hearing at Kansas City + November 19, + 1999 + 768 + + + + + Request I + 1999 + 768 + + + + + Request II + 1999 + 769 + + + + + Request III + 1998-1999 + 769 + + + + + Report on Heartland Manor, III + 1999 + 769 + + + + + + Settlement agreement + December 1999 + 769 + + + + + + Office and performance evaluation + 2000 + 769 + + + + + Organ allocation final rule -- Carl's notes + 1998 + 769 + + + + + Organ donation + 1998-2000 + 769 + + + + + Organ donation awareness and events + 1997 + 769 + + + + + Organ and tissue transplant + 1998-2000 + 769 + + + + + Organ transplant-immunosuppressive drugs + 1997-2000 + 769 + + + + + Overhaul-comprehensive and universal insurance + 2 folders + 1991-2001 + 769 + + + + + Patient's Bill of Rights + + + + 1997-2000 + 769 + + + + + 1998-1999 + 1-4 of 7 + folders + 770 + + + + + 1998-1999 + 5-7 of 7 + folders + 770 + + + + + 2001 + 770 + + + + + Background, memos, and news articles + 3 folders + 1998 + 770 + + + + + GOP v. Democrat provisions + 1999 + 770 + + + + + Legislation + 3 folders + 2000 + 770 + + + + + + Peripheral Vascular Disease + 1999-2000 + 770 + + + + + Prescription drug hearing-Drug Safety and Pricing + June 13, 2000 + 770 + + + + + Prescription drug legislation + 2000-2001 + 770 + + + + + Prescription Drug Pricing Anti-discrimination Act, (Levin + bill) + 3 folders + 2000 + 771 + + + + + Prescription drugs recesses events + 2000-2001 + 770 + + + + + Residency program-Balanced Budget Act, (Michigan) + 1998-2000 + 770 + + + + + Rural health center issues, (Michigan) + 1999-2000 + 771 + + + + + Social Security and Medicare Protection pledge + 1999-2000 + 771 + + + + + State Children's Health Insurance Program-Michigan child + 2000-2001 + 771 + + + + + Universal health coverage + October 25-27, 1998 + 771 + + +
    + + + Miscellaneous-Adoption, medical marijuana, and organ donation + April-June 1997 + 771 + + + + + Substance abuse treatment + + + + Anti-addiction, (J. Parker) + 1994-1999 + 771 + + + + + Anti-addiction interdiction, treatment, and research, (Carl + file) + 1998 + 771 + + + + + Buprenorphine, (J. Parker) + 1998 + 771 + + + + + Urgent! Buprenorphine, (Levin amendment; J. Parker) + 1998 + 771 + + + + + Buprenorphine + 2000 + 771 + + + + + Drug blocker + January 2000 + 771 + + + + + Drug forum, (J. Parker) + 1997 + 771 + + + + + Drug forum -- today stuff, (Levin-Kerrey; J. Parker) + 1997 + 771 + + + + + Drug use -- National Institute on Drug Abuse (NIDA), (J. + Parker) + 1997 + 771 + + + + + General McCaffrey drug policy office, 1997 + 772 + + +

    (Executive Office of the President -- Office of National Drug Control; J. + Parker)

    +
    +
    + + + General McCaffrey, (J. Parker) + 1998 + 772 + + + + + Letters and news articles + 2000 + 772 + + + + + News articles and information + 1998-1999 + 772 + + + + + Pharmaceutical research + 1997 + 772 + + + + + Pharmaceutical research and forum + 1996-1997 + 772 + + + + + Senate drug forum on anti-addiction research, (Levin) + 3 folders + May 1997 + 772 + + + + + Senate drug forum on anti-addiction research and other, + (Levin) + May 1997 + 772 + + +
    + + + Welfare + + + + Food stamps and welfare-articles and correspondence + 1999 + 772 + + + + + Housing and welfare + 2001 + 772 + + + + + Impact on Michigan memos + 1997 + 772 + + + + + Reform + April-May 1997 + 772 + + + + + Reform bill-community service amendment + 1997 + 772 + + + + + Welfare to work grants + 1998 + 772 + + + + + Workforce Development Act-community colleges + 1995-1996 + 772 + + + +
    + + + Homeland Security + 1997-2004 + + + + Appropriations and funding (A. Pascale) + + + + FY2002 customs staffing Port of Detroit + 788 + + + + + FY2002 supplemental + 788 + + + + + FY2002 -- Treasury postal -- customs northern border + initiative + 788 + + + + + FY2003 border funding + 788 + + + + + FY2003-Commerce, Justice, and State -- immigration (DTW) + 788 + + + + + Department of Defense (DOD) supplemental + 2001 + 788 + + + + + Customs reauthorization + October 2001 + 788 + + + + + Customs Immigration and Naturalization Service border + appropriations + 2002 + 788 + + + + + Northern border appropriations letters + November 2004 + March 2002 + 788 + + + + + + Border patrol + 1999-2000 + 788 + + + + + Canadian border + 2 folders + 1997-2000 + 788 + + + + + China, (SSCI; SASC) + May-September 1999 + 790 + + + + + Department of Homeland Security and hate crimes bill + 2002-2003 + 788 + + + + + Federal Protective Service (FPS) + 2001 + 788 + + + + + Intelligence reorganization + 2002 + 788 + + +

    (Carl's writings)

    +
    +
    + + + National Guard staffing borders, (A. Pascale) + 2001-2002 + 788 + + + + + NEXUS, (A. Pascale) + November 2002 + 788 + + + + + Northern border (A. Pascale) + + + + Ambassador Bridge + March-October 2001 + 788 + + + + + Border funding and staffing + 2002 + 788 + + + + + Border lobby meeting + October 2001 + 788 + + + + + Border security bill + 2002 + 788 + + + + + Border stations in Sault Ste. Marie bid -- GSA + 2002 + 788 + + + + + Canadian action plan + 2002 + 788 + + + + + Carl's Soo meeting on homeland security + August 17, + 2002 + 788 + + + + + Coast Guard + + + + Charlevoix Acacia vessel + 2002 + 788 + + + + + Tricare budget + 2002 + 788 + + + + + + Northern border conference call + February-March 2002 + 789 + + + + + Detroit border updates + December 2002-March 2003 + 789 + + + + + Detroit Chamber letter -- Bridge language + December 2002-March 2003 + 789 + + + + + Detroit Customs staffing + May-July 1998 + 789 + + + + + General Services Administration bridge + July 2002-April 2003 + 789 + + + + + Immigration and Naturalization Services (INS) FY 2001 and Customs + Staffing + March 2000-March 2001 + 789 + + + + + Letters post 9/11 + 2001 + 789 + + + + + Border letters + 2002 + 789 + + + + + Levin testimony + October 3, + 2001 + 789 + + +

    (Subcommittee Treasury, Postal, and General Government hearing)

    +
    +
    + + + Local law enforcement reimbursement + 2001-2002 + 789 + + + + + Notes and memos + 2001-2002 + 789 + + + + + Reverse inspection language -- Treasury and Postal + July-December 2002 + 789 + + + + + Statistics and charts + 2001-2003 + 789 + + +
    + + + Northern border staffing, (J. Bryan) + 2002 + 789 + + + + + Preclearance bills + 2002-2003 + 789 + + + + + Rail + 2001-2002 + 789 + + + + + 2 folders + September 11, + 2001 + 789 + + +

    (Levin's file of post 9/11 notes, memos, etc.)

    +
    +
    + + + September 11th, ((J. Bryan + 6 subfolders + September-October 2001 + 789 + + + + + September 11 attacks + 6 subfolders + 2001 + 789 + + + + + September 11th aftermath + + + + Attorney General Ashcroft and Department of Justice (DOJ) + excesses + 2002 + 790 + + +

    (Carl's writings)

    +
    +
    + + + FBI issues and anti-terrorism post 9/11 + 2001-2002 + 790 + + + + + Flight 93 passengers-S.1434 + October 2001 + 790 + + + + + Joint Inquiry into the Intelligence Community Activities Before and + After the Terrorist Attacks of September 11, 2001 -- Report of the U.S. Senate + Select Committee on Intelligence and U.S. House Permanent Select Committee on + Intelligence + December 2002 + 790 + + +

    (S.Rept.No.107-351/H.Rept.No.107-792 Committee print and Levin notes and + memos)

    +
    +
    + + + Questioning of 5000 people and INS registration + 2001-2003 + 790 + + + + + Pre-9/11 intelligence failures + September-October 2002 + 790 + + +

    (Includes Levin preparation and notes for hearings regarding CIA and FBI + failings; SSCI; Carl's writings)

    +
    +
    + + + Screw-ups + 2001-2002 + 790 + + +
    + + + 9/11 civil liberties (FISA laws and enemy combatant + designation) + 2002 + 790 + + + + + Immigration Baucus amendment – expatriation tax + 1997 + 1114 + + +
    + + + Housing + 1998-2003 + + + + Affordable housing trust fund bill, (Cosponsor) + June 2001 + 782 + + + + + Appropriations and funding + + + + HUD appropriations + 5 subfolders + 1999-2003 + 782 + + +

    (Includes FY2000 Hamtramck Housing Commission funding, Benton Harbor, Muskegon, + earmarks for VA-HUD bill 1999 R. Carter?)

    +
    +
    + + + FY2000-FY2001 HUD Carl's letters + 783 + + + + + FY2000-FY2001 HUD constituent requests + 783 + + + + + FY2002 $250 million shortfall + 783 + + + + + FY2002 Agency appropriations faxes + 783 + + + + + FY2002 HUD-Science and technology funding request + 783 + + + + + FY2002-FY2004 VA-HUD + 783 + + + + + FY2003 VA-HUD brownfield redevelopmen + 783 + + + + + FY2003 VA-HUD section 8 voucher issue + 783 + + + + + Community Development Block Grant + 1999-2002 + 783 + + + + + Fair housing grant Detroit + 2000 + 783 + + + + + Fair Housing Initiatives -- Hetzel HUD letter, (WSU grant) + 1999 + 783 + + + + + Letters concerning program appropriations + March-May 2001 + 783 + + + + + Letters to the conferees + August-September 2001 + 783 + + +
    + + + Combined Federal Campaign (CFC) application for Covenant + House + 2002 + 783 + + + + + Community builders + 2000 + 783 + + + + + Community Character Act + 2001 + 783 + + +

    (Co-sponsor)

    +
    +
    + + + Corporation for supportive housing + July 2001 + 783 + + + + + Detroit + 2000-2001 + 783 + + + + + Detroit 300 + 2001 + 783 + + + + + Federal Home Loan Bank + 1999-2000 + 783 + + + + + Lee Gonzales, (Assistant Treasurer of Genesee County -- implementation of + P.A.123, Property Tax Reversion Law) + 2001 + 783 + + + + + Heartside Ministries + September 1999 + 783 + + + + + Hope VI grant -- Saginaw + 2001 + 783 + + + + + Houses the Senate built, (Habitat for Humanity initiative for Senators + and their families to help with construction of homes) + February 2001 + 783 + + + + + Housing discrimination lawsuits, (compiled by Fair Housing Center of + Metropolitan Detroit) + June 26, 1999 + 783 + + + + + Low Income Tax Credit Award luncheon + May 14, 2002 + Includes 3 + photographs + 783 + + + + + Saginaw Upward Bound -- Dr. Raul Salazar + 1998 + 783 + + + + + Wayne County + 1999-2000 + 783 + + + + + Wayne County -- HUD home recapture + 1999-2000 + 783 + + +
    + + + Human Rights + 1993-2002 + + + + American victims abroad + 1997-1998 + 787 + + + + + Anti-Semitism + 4 folders + 1993-1994 + 2001-2002 + 787 + + + + + Holocaust Victims Restitution Act-S.1876 + 2002 + 787 + + +

    (Co-sponsor)

    +
    +
    + + + Pension for Holocaust loss of health-Isaac Pann + 2001 + 787 + + + + + Swedish-Russian working group in the fate of Raoul Wallenberg research + project + + + + 1996 + 787 + + + + + 1997 + 787 + + + + + 1998-1999 + 787 + + + + + Department of State + 1996 + 787 + + + + + + Torture victims + July 2001 + 787 + + + + + UN Human Rights Commission senate resolution, (Co-sponsor) + May 2001 + 787 + + +
    + + + Industry + 1995-2001 + + + + Auto industry economy, (B. Weber) + 2000 + 796 + + + + + Commerce -- Manufacturing Extension Partnerships (MEP) + 2 folders + 1995-1998 + 796 + + + + + Economic Development Initiatives (EDI) Pontiac and Flint + 1999 + 796 + + + + + NIST Advanced Technology Program (ATP), (B. Weber) + 1997-2000 + 796 + + + + + Research and Development high tech + 1996 + 796 + + +

    (Includes labor and defense; B. Weber)

    +
    +
    + + + Unemployment + May 2001 + 796 + + +

    (Includes auto industry; B. Weber)

    +
    +
    +
    + + + Interior + 1996-2004 + + + + Appropriations + + + + FY1998 -- Bryan amendment and forest service roads (Levin + statement) + 803 + + + + + FY1999 + 803 + + + + + FY2001 + 803 + + + + + FY2002 + 2 folders + 804 + + + + + FY2003 + 804 + + + + + + Automobile National Heritage Area + 1998-2001 + 804 + + + + + Ellis Island restoration + 1997-2000 + 804 + + + + + H-58 Road Commission meeting + December 1997 + 804 + + + + + Isle Royale National Park + 1997-1998 + 804 + + + + + Keweenaw and Isle Royale National Parks + 1999-2001 + 804 + + + + + Keweenaw National Park brochures and photographs + 1997-2002 + 804 + + + + + Mount Rushmore campaign-No more faces ever + May 11, 1999 + 804 + + + + + Munising lighthouse transfer, (A. Pascale) + 2002 + 804 + + + + + Native Americans + + + + Burt Lake Ottawa and Chippewa + March 1998 + 804 + + + + + Casino projects + 1997-2002 + 804 + + +

    (Includes projects of the Potawatomi)

    +
    +
    + + + Gaming + + + + Anti-gaming-casinos and college sports + 1997-2000 + 804 + + + + + Attorney General's opinion + October 1997 + 804 + + + + + Bay Mills plans for Pontiac + October-November 1999 + 804 + + + + + Detroit casino news articles + 1998-1999 + 804 + + + + + Indian Gaming Regulatory Act + 1996-1998 + 804 + + + + + + Grand Traverse Band Ottawa and Chippewa + 2000 + 804 + + + + + Indian Health Services + 2001 + 804 + + + + + Miscellaneous + 1999-2000 + 804 + + +

    (Not all Michigan)

    +
    +
    + + + Ottawa-Grand River and Little River + January 2000 + 804 + + + + + Saginaw Chippewa + 1999-2004 + 804 + + + + + Saginaw Chippewa enrollment and election documentation + 1998-1999 + 804 + + +
    + + + North Country Trail construction + 2 folders + 2002-2004 + 804 + + + + + Pictured Rocks + 1997 + 804 + + + + + Saint Helena Island National Scenic Area Act + 1999-2000 + 805 + + + + + Sleeping Bear Dunes National Lakeshore + + + + 2000-2002 + 805 + + + + + 2001-2003 + 805 + + + + + Barratt Property + 1999 + 805 + + + + + Boundary changes + 2002-2003 + 805 + + + + + Crystal River land acquisition + 2002-2003 + 805 + + + + + Land acquisition and adjacent + 2002-2003 + 805 + + +

    (Traverse City office)

    +
    +
    + + + Leaseholders + 3 folders + 1997-1999 + 805 + + +
    +
    + + + Labor + 1993-2005 + + + + Davis-Bacon + 1993-1999 + 813 + + + + + Electrolux plant closure, (Jobs to Mexico) + 2002-2004 + 813 + + + + + Equal Employment Opportunity charge processing procedures + undated + 813 + + + + + Ergonomics + 3 folders + 1999-2001 + 813 + + + + + Family Friendly Workplace Act + 1995-1997 + 813 + + + + + Fair Labor Standards Act background and amendments + March 1996 + March 2001 + 813 + + + + + Gender wage gap and pay equity + 1998-1999 + 813 + + + + + Keweenaw Union endorsement request + 1999 + 813 + + + + + Minimum wage statistics + 1996-1997 + 813 + + + + + Nominations + + + + Employee Retirement Income Security Act (ERISA) Advisory Council on + Employee Welfare and Pension Benefits-Carl Camden, (Michigan) + 1999-2000 + 1042 + + + + + Solicitor of the Department of Labor-Eugene Scalia + September-October 2001 + 1042 + + + + + + Occupational Safety and Health Administration criminal + penalties + 1996-2000 + 813 + + + + + Organized labor amendments + 1999-2000 + 813 + + + + + Organized labor legislation + 2001 + 813 + + + + + Part-time and temporary workers legislation + 1994 + 813 + + + + + Pensions + + + + Budget reconciliation legislation provisions + October-November 1995 + 813 + + + + + Miscellaneous provisions + March-July 1996 + 813 + + + + + Reform proposals + 1999-2001 + 813 + + + + + Retirement Security and Savings Act of 2000-H.R.1102 + + + + September-October 2000 + 813 + + + + + Clinton + 1996-2000 + 813 + + + + + Legislation and tax credit + September 2000 + 813 + + + + + + + Project labor agreements + April 1997 + 813 + + + + + Railroad Labor Act and strike avoidance + July 1996 + 813 + + + + + Replacement workers-Workplace Fairness Act, (Co-sponsor) + 1994-1995 + 814 + + + + + Right to work + March 1996 + 814 + + + + + Service Contract Act-Department of Labor (DOL) + 1995 + 814 + + + + + Teamsters + 1995-1996 + 814 + + + + + Trade Adjustment Assistance (TAA) + + + + Appropriations letter FY2005 + 814 + + + + + Firms + 2 folders + 1995-2005 + 814 + + + + + Reauthorization + 2001 + 814 + + + + + + Union issues-Sawyer Lumber, (Michigan) + October 1999 + 814 + + + + + Wages, (Michigan) + May 1998 + 814 + + + + + Work incentives legislation + 1998-1999 + 814 + + + + + Work Investment Partnership and labor issues + 1998-1999 + 814 + + + + + Youth Opportunity Grant Detroit press release, (Michigan) + March 1999 + 814 + + + + + + Michigan + 1996-2003 + + + + Appropriations FYs2000-2006 + 817 + + + + + Appropriations -- Marquette office + + + + 2001 + 817 + + + + + 2002 + 817 + + + + + + Appropriations requests + + + + FY1999 Defense funding requests + 5 folders + 818 + + + + + Michigan funding + 2 folders + 2001-2003 + 818 + + + + + Michigan budget + 2002-2003 + 818 + + + + + + Arab-American Community + + + + Community and Harkin amendment + September 2001 + 818 + + + + + Community-news articles + 2000-2002 + 818 + + + + + Levin letter to community leaders + September 2001 + 818 + + + + + + Certificate of appreciation from Detroit + August 30, 2000 + 818 + + + + + Chinese Association of Greater Detroit and Clinton trip + 1998-2002 + 818 + + + + + Coast Guard station -- Manistee + 2000 + 818 + + + + + Detroit 300th anniversary + February 2001 + 818 + + + + + Detroit Riverfront development + 2000-2002 + 818 + + + + + Disaster aid + + + + Federal Emergency Management Agency (FEMA) disaster relief + 1997-1999 + 818 + + + + + Storm-Central Michigan + May 31, 1998 + 818 + + + + + Storm-July 2, 1997 storm and 2001 snowstorms + 2 folders + 1997-2001 + 818 + + + + + + Grand Rapids Christian High School Symphony String Orchestra, (Selected + to participate in 53rd Annual Midwest International Band and Orchestra + Clinic) + September 1999 + 818 + + + + + Grand Traverse County and Cherry Cap airport + 2000 + 818 + + + + + Ernie Harwell resolution, (MLB broadcaster for Detroit + Tigers) + September 11, + 2002 + 818 + + + + + Indo-American Democratic Caucus + 2002 + 818 + + + + + Lighthouses + + + + Lighthouse legislation Carl initiative 106th Congress + 1998-2001 + 818 + + + + + Lighthouse preservation and other property + 1998-2002 + 818 + + + + + Lighthouse transfers + 1996-1997 + 818 + + + + + Munising Range Lighthouse boundary change + 2002 + 819 + + + + + Ontonogan lighthouse + 1998-2000 + 819 + + + + + + Michigan State University basketball team visit the White + House + 2000 + 819 + + + + + Nomination for National Medal of Arts -- David DiChiera (Michigan Opera + House) + 1996-1998 + 819 + + + + + Rouge River Gateway master plan, (Wayne County, Michigan) + July 2001 + 1050 + + + + + Saginaw park program + 2001 + 819 + + + + + Schematic design for the Ford Center for Environmental and Conservation + Education + August 2001 + 1050 + + + + + South Fox Island land exchange + 2000-2001 + 819 + + + + + Tiger Stadium re-use + 1997-1998 + 819 + + + + + Tiger stadium + 2000-2001 + 819 + + + + + + Press + 1994-2002 + + + + Levin office-newspaper column + + + + 2000 + 894 + + + + + 2001 + 894 + + + + + 2 folders + 2002 + 894 + + + + + + Media + + + + Emery King WDIV-TV-profile of Levin + November 6, + 2001 + + + + Emery King Profile of Sen. Levin + 2001 November 06 + + +

    [access item]

    +
    +
    + Online +
    + +

    (1997-2002 (105th-107th Congress). Profile of Senator Carl Levin by Emery + King on Local 4 News, WDIV-TV.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    +
    + + + Michigan media -- dailies, television, and radio + 1999 + 894 + + + + + Michigan Press Reading Service (MPRS) + + + + January 1997 + 894 + + + + + February 1997 + 894 + + + + + 2 folders + March 1997 + 894 + + + + + April-May 1997 + 894 + + + + + June-July 1997 + 894 + + + + + August-September 1997 + 894 + + + + + October-November 1997 + 894 + + + + + November 1997 + 894 + + + + + December 1997 + 894 + + + + + 11 folders + January-Demcember + 1998 + 895 + + +

    (No April)

    +
    +
    + + + 1998-Miscellaneous + 895 + + + + + 12 folders + January-December 1999 + 896 + + + + + 11 folders + January-December 2000 + 897 + + + + + January 2001 + 897 + + + + + 6 folders + January-June 2001 + 897 + + + + + 7 folders + July-December 2001 + 898 + + + + + 5 folders + January-May 2002 + 898 + + +
    + + + Miscellaneous + 3 folders + 1998-2002 + 899 + + +

    (Contains an award for "100% Voting Record for America's Family Farmers and + Ranchers-105th Congress")

    +
    +
    + + + News articles + + + + Adoption registry + December 1997 + 899 + + + + + Campaign finance investigation + 1997 + 899 + + + + + Miscellaneous press clips + 1997 + 899 + + + + + + News articles-national + + + + 1997 + 899 + + + + + 1998 + 899 + + + + + 1999 + 899 + + + + + 2000 + 899 + + + + + 2001 + + + + January-June + 899 + + + + + July-December + 899 + + + + + + 3 folders + 2002 + 900 + + + + + + Office subject files + + + + America Reads + 1997 + 900 + + + + + Base closing + 1997 + 900 + + + + + Budget FY1988 background information and press releases + 900 + + + + + Campaign financing + 1996-1997 + 900 + + + + + Campaign financing hearings and 1996 elections + 2 folders + 1996-1997 + 900 + + + + + Defense background information and press releases + 900 + + + + + Democratic Policy Committee briefing material + 1997 + 900 + + + + + Democratic Policy Committee Michigan briefing + January-April 1997 + 900 + + + + + Education + + + + 1997 + 900 + + + + + Consortium for Outstanding Achievement in Teaching with Technology + (COATT) + 1999 + 900 + + + + + Higher education + 4 folders + 1994-1997 + 900 + + + + + Net day and education technology + 1997-2000 + 900 + + + + + + Educational technology + 1997 + 900 + + + + + Election + 2002 + 901 + + + + + Focus: HOPE + 1997 + 901 + + + + + Money laundering private banking investigation + 5 subfolders + 1999-2001 + 901 + + +

    (Includes PSI hearings)

    +
    +
    + + + NATO enlargement, (press clips, background, and speech + drafts) + 1998 + 901 + + + + + NATO enlargement speech + 1998 + 901 + + + + + Press + + + + Op-eds 105th Congress, 1997(Written by Carl Levin) + 901 + + + + + Op-eds 106th Congress, (Written by Carl Levin) + 1998-2000 + 901 + + + + + Op-eds 107th Congress, (Written by Carl Levin) + 2001 + 901 + + + + + Speeches, Econ Club speeches + May 18, + 1998 + May 5, 1999 + 901 + + + + + + Regulatory reform + 1997-1998 + 901 + + + + + Roads and road financing + 1997 + 901 + + + + + Smart Growth Task Force urban sprawl + 1998-1999 + 901 + + +
    + + + Press releases + + + + 3 folders + 1997 + 902 + + + + + 2 folders + 1998 + 902 + + + + + 3 folders + 1999 + 902 + + + + + 2 folders + 2000 + 902 + + + + + 4 folders + 2001 + 902 + + + + + 4 folders + 2002 + 903 + + + + + Grants + + + + 2000 + 903 + + + + + 2001 + 903 + + + + + 2002 + 903 + + + + + + + Radio tour schedules + + + + 1997 + 903 + + + + + 1998 + 903 + + + + + 1999 + 903 + + + + + 2000 + 903 + + + + + 2001 + 903 + + + + + 2002 + 903 + + + + + + Radio spots + + + + 19 folders + 1997 + 904 + + + + + 7 folders + 1998 + 904 + + + + + 16 folders + 1999 + 904 + + + + + 17 folders + 2000 + 904 + + + + + 3 folders + 2001 + 904 + + + + + + Radio tour schedules + 3 folders + 2000-2002 + 904 + + +
    + + + Smart Growth + 1998-2005 + + + + Smart growth 107th Congress + 1999-2001 + 932 + + + + + American Planning Association Award + December 2001 + 932 + + + + + Better America bonds + 1999-2000 + 932 + + + + + Brownfields 1 + 1999-2000 + 932 + + + + + Brownfields 2 + 2001-2005 + 932 + + + + + Brownfields economic development initiative + 2000-2001 + 932 + + + + + Budget amendment + April 2000 + 932 + + + + + CARA legislation + September 1999 + 932 + + + + + Economic Club of Detroit -- Carl's remarks + 1999 + 932 + + + + + EPW hearing on Smart Growth, (Committee on Environment and Public + Works) + March 6, 2002 + 932 + + + + + Government Accountability Office (GAO) + + + + GAO report + 2 folders + 2000-2002 + 932 + + + + + 3rd GAO report + 2000 + 932 + + + + + + Housing and Urban Development (HUD) + + + + HUD brownfields + 2002 + 932 + + + + + HUD conference -- Levin remarks, (Bridging the divide) + December 1999 + 932 + + + + + + New Urbanism briefing -- Senate Smart Growth + 1999 + 932 + + + + + Op/ed + May 1999 + 932 + + + + + Small Business Association (SBA) smart growth letter + 2000-2001 + 932 + + + + + Smart Growth Task Force + 7 subfolders + 1998-2000 + 932 + + + + + Sprawl legislation + 1999-2001 + 932 + + + + + Sprawl memos and statements + 1998-1999 + 933 + + + + + Sprawl projects -- Michigan grants + 1999 + 933 + + + + + USPS location hearing + October 7, 1999 + 933 + + + + + Urban sprawl + 1998-1999 + 933 + + + + + + Speeches + 1998-2000 + + + + Japanese auto exports press conference + January 14, + 1998 + 939 + + + + + Jewish Home and Aging Services -- Congregation Shaarey Zadek + November 2000 + 939 + + + + + + Trade + 1989-2005 + + + + Africa + 1999-2000 + 997 + + + + + African Growth and Opportunity Act + + + + 2 folders + 1999 + 997 + + + + + Amendments + 1999 + 997 + + + + + + Agriculture and food + + + + European Union-Banana and beef World Trade Organization (WTO) + dispute + 1999-2000 + 997 + + + + + Heartland Inc. appeals ruling + October 2001 + 997 + + + + + Produce labeling-imports + 1997-1999 + 997 + + + + + Stuffed molasses sugar, (Heartland Inc.) + 3 folders + 1999-2000 + 997 + + + + + + Agricultural Policy Advisory Committee (APAC) + + + + 1995-1999 + 997 + + + + + New agreement recommendations + 2 folders + June 2000 + 997 + + + + + Reauthorization + 2 folders + 1998 + 1995 + 997 + + + + + Recommendations + October 13, + 1999 + 998 + + + + + Recommendations + 2000 + 998 + + + + + + Amendment ideas for Carl Levin + 2002 + 998 + + + + + Amendments-non-Levin + 2002 + 998 + + + + + Trade amendments + 2002 + 998 + + + + + Andean Trade Preference Expansion Act bill + undated + 998 + + + + + Asia-Pacific Economic Cooperation (APEC), (A. Pascale) + 1997 + 998 + + + + + Australian leather case-Eagle Ottawa + 1999-2000 + 998 + + + + + Auto + + + + Alliance and auto companies markup + 2000 + 998 + + + + + American Automotive Leasing Association numbers + February 1, + 2001 + 998 + + +

    (American Automobile Labeling Act)

    +
    +
    + + + Auto Caucus + + + + 2002 + 998 + + + + + Briefing, Spring + 2002 + 998 + + + + + Membership + 1999 + 998 + + + + + + Auto parts + + + + Aftermarket brake petition + January-February 1997 + 998 + + + + + Data-U.S. Trade Representative + 2 folders + 1993-2000 + 998 + + + + + Deficit data + 1992-1994 + 998 + + + + + + Auto sector statistics + October 2000 + 998 + + + + + Auto trade and Japan-Democratic platform + July 2000 + 998 + + + + + Automotive briefing + March 31, + 1999 + 998 + + + + + Chrysler and Chile customs dispute letter + 2002 + 998 + + + + + Joint Automotive Supplier Council directory information + 1996 + 998 + + + + + Levin amendment #3420 + 2002 + 998 + + + + + Market access amendment statement + 2002 + 998 + + + + + Michigan auto parts companies and employment + 1994-2001 + 998 + + + + + Motor vehicle manufacturer facilities by state + August 1989 + 998 + + + + + Big 3 Quality – JD Power and Associates survey + 1997-1998 + 1109 + + + + + Foreign import penetration + 2000 + 1109 + + + + + Global Automotive Aftermarket Symposium – Dearborn + April 2000 + 1109 + + + + + Japan + + + + Auto parts material + May 1999 + 1109 + + + + + Auto parts remarks – memos + 1998 + 1109 + + + + + Auto parts retail store – Carl's efforts in Japan + March-April 1998 + 1109 + + + + + Parts retailer meeting + September 1997 + 1109 + + + + + Auto parts Super 301 - Secretary Rubin + May-July 1998 + 1109 + + + + + Levin-Specter Auto Parts Task Force letter + December 2000-2001 + 1109 + + + + + Trade Deficit Review Commission – Levin statement + February 24, 2000 + 1109 + + + + + U.S. Japan Agreement on Auto and Auto Parts + + + + Semi-annual report + April-June 1997 + 1109 + + + + + 4th Semi-annual framework report + December 1997 + 1109 + + + + + Framework report + June-August 1998 + 1109 + + + + + Monitoring report + June 1999 + 1109 + + + + + + Weak Yen + 2000 + 1109 + + + +
    + + + Baucus-Grassley bill + 2002 + 998 + + + + + Baucus-Grassley bill background + 2002 + 998 + + + + + Baucus-Grassley and Jordan bills-Free Trade Agreement (FTA) and expansion + of international trade + 2002 + 998 + + + + + Bissell-special legislation and Tariff Bill + 2000 + 998 + + + + + Canada + + + + Durum wheat + 1994-2002 + 998 + + + + + Softwood lumber letters + 1997-2001 + 999 + + + + + + Caribbean Basin Initiative (CBI) conference report + 1999-2000 + 999 + + + + + China + + + + Agriculture-apple juice concentrate dumping + 2 folders + 1998-2001 + 999 + + + + + Auto + 1996-1997 + 999 + + + + + Auto industry policy + 1996-1998 + 999 + + + + + Break dumping case + 1996 + 999 + + + + + China Commission + + +

    (Congressional-Executive Commission on the People's Republic of China)

    +
    + + + Hearing + April 11, + 2002 + 999 + + +

    (Human rights and PNTR)

    +
    +
    + + + Commission report + 3 folders + 2002 + 999 + + +
    + + + Hearing + 2 folders + 2002 + 999 + + + + + China trip briefing material + 1999 + 999 + + + + + Intellectual property (IPR) + 1996-1997 + 999 + + + + + World Trade Organization (WTO) + + + + 2 folders + 1999 + 999 + + + + + Possible amendments + 2 folders + 2000 + 999 + + + + + China and World Trade Organization (WTO) + 1999 + 1114 + + +

    (A. Pascale)

    +
    +
    +
    +
    + + + Consuming Industries Trade Action Coalition (CITAC) + June 2001 + 1000 + + + + + Correspondence + + + + 23 folders + 1997 + 1000 + + +

    (No September)

    +
    +
    + + + 13 folders + 1998 + 1000 + + + + + 2 folders + 1999 + 1000 + + +

    (January and February)

    +
    +
    +
    + + + Cuba + 1995-1998 + 1000 + + + + + Data and statistics + February 2002 + 1000 + + + + + Dumping + 1998-1999 + 1000 + + + + + Duty and tax-free sale of gas + 2000-2001 + 1000 + + + + + Eastern Europe auto tariff + 2 folders + 1998-1999 + 1000 + + + + + European Union tariff + July 1997 + 1000 + + + + + Fast track + + + + August-October 1997 + 1000 + + + + + Deal + 2001-2002 + 1000 + + + + + Documents on fast track-TPA + 2002 + 1001 + + + + + Durbin amendment + 2002 + 1001 + + + + + Fast Track Conference Report + 2001-2002 + 1001 + + + + + Investment Model in the Fast Track bill-Chapter 11 + 2002 + 1001 + + + + + Levin's file + January-February 2002 + 1001 + + + + + Sandy Levin + 2 folders + 2002 + 1001 + + + + + + Fast Track and North American Free Trade Agreement (NAFTA), (A. + Pascale) + 10 subfolders + 1997 + 1001 + + + + + Floral + 1996-1998 + 1001 + + + + + Flat glass + + + + Bowles-flat glass and Super 301 + 1998 + 1001 + + + + + Guardian Industries Corp-flat glass + + + + Justice Department-antitrust action against Japan + March-May 1999 + 1001 + + + + + Letter to Bush; + 1998 + 1001 + + + + + + Flat Glass US-Japan agreement + 1994-2000 + 1001 + + + + + + Foreign Sales Corporation (FSC) and Extraterritorial Income (ETI) + bill + 2004 + 1001 + + + + + Jordan Free Trade Agreement (FTA) implementation issues + 2002 + 1001 + + + + + Hand tools -- Made in USA, (A. Pascale) + 2 folders + 1997 + 1001 + + + + + International Monetary Fund (IMF) amendments + + + + Levin + 2 folders + 1998 + 1002 + + + + + Market Opening Link + February-March 1998 + 1002 + + + + + + Japan summit and U.S. Japan auto trade + 2001 + 1002 + + + + + Japanese port sanctions + October-November 1997 + 1002 + + + + + Korea + + + + FY2000 + 1002 + + + + + Auto + 2000 + 1002 + + + + + Auto-Memorandum of Understanding (MOU) + October 1998 + 1002 + + + + + Korean resolution on automotive trade + 2001 + 1002 + + + + + President Roh Moo Hyun + 2003 + 1002 + + + + + Research + 1997-2000 + 1002 + + + + + Super 301 Levin material + 1997-1998 + 1002 + + + + + Super 301 petition-auto + 1995-1998 + 1002 + + + + + + Kuwait Ambassador + March 1997 + 1002 + + +

    (Michigan companies business project in Kuwait)

    +
    +
    + + + Levin amendment and memos + 2002 + 1002 + + + + + Levin's materials + 1998-1999 + 1002 + + + + + Levin material on trade bill and amendments + 2 folders + 2001-2002 + 1002 + + + + + Levin trade file + 2 folders + 1999-2000 + 1002 + + + + + Sandy Levin senate material + 2002 + 1002 + + + + + Manufacturing Extension Partnership (MEP) letters + 2000 + 1002 + + + + + Memos + 1997-1998 + 1002 + + + + + Memos and Levin amendments + 1999 + 1003 + + + + + Memos and op-ed + 1998-1999 + 1003 + + + + + Mexico dry bean importation problem + 1999-2001 + 1003 + + + + + Michigan employment statistics + 1999-2002 + 1003 + + + + + Miscellaneous + 2002 + 1003 + + + + + Miscellaneous tariff bill + 2 folders + 2004 + 1003 + + + + + National Association of Manufacturers letters + 1996-2000 + 1003 + + + + + North American Free Trade Agreement (NAFTA) + + + + Copper range transitional adjustment assistance (TAA) + 2 folders + 1999-2000 + 1003 + + + + + Michigan fund + 2002-2005 + 1003 + + + + + Trade Adjustment Assistance (TAA) funds + 2002-2004 + 1003 + + + + + + NAFTA and TAA + 2002 + 1003 + + + + + Permanent Normal Trade Relations (PNTR) + + + + Amendments + 2000 + 1003 + + + + + China + + + + Auto market research + 2 folders + 2000 + 1003 + + + + + Bill-Senate floor + 2000 + 1003 + + + + + China Commission-Sandy Levin's idea + 2000 + 1003 + + + + + Compliance + 2000 + 1003 + + + + + CRS reports on China WTO accession + 2000 + 1003 + + + + + Human Rights report + 1999 + 1003 + + + + + Levin's file + 2000 + 1003 + + + + + Levin WTO bilateral amendments + 2000 + 1003 + + + + + Tariff comparison charts + 2000 + 1003 + + + + + WTO memos and letters + 2 folders + 1999-2000 + 1003 + + + + + + Republic of Georgia + August-October 2000 + 1003 + + + + + United Auto Workers + 2000 + 1004 + + + + + + Role of Congress in trade bills-amendments + 2002 + 1004 + + + + + Secretary Daley meeting in Detroit + January 8, 1998 + 1004 + + + + + Secretary Evans meeting + 2001 + 1004 + + + + + Secretary Evans follow-up letter + 2001 + 1004 + + + + + Steel + + + + Administrations steel program + 1999 + 1004 + + + + + Bills + 2 folders + 1999-2000 + 1004 + + + + + Buy U.S. steel energy bill + 2002 + 1004 + + + + + Cleveland Cliffs Inc. press release + November 2001-March 2002 + 1004 + + + + + Emergency Steel Loan Guarantee + December 2001 + 1004 + + +

    (Includes a letter regarding anti-terrorism bill -- H.R.3162 from October + 2001)

    +
    +
    + + + Exclusions + 2 folders + 2002-2004 + 1004 + + + + + Iron ore parity bill + 2001 + 1004 + + + + + Iron ore trade action -- Section 232 + 2 folders + 2001 + 1004 + + + + + Iron Ore working group + October 2000-March 2001 + 1004 + + + + + Carl's steel file + February-May 2001 + 1004 + + + + + Michigan steel + May-October 2001 + 1004 + + + + + Op-eds + January 2002 + 1004 + + + + + Radio interview + July 2001 + 1004 + + + + + Remarks and talking points + 1999-2002 + 1004 + + + + + Section 201 + + + + Action + 2001 + 1004 + + + + + Injury ruling + October 22, + 2001 + 1004 + + + + + International Trade Committee (ITC) hearing + 4 folders + 2001 + 1004 + + + + + International Trade Commission (ITC) remedy + 2001-2002 + 1004 + + + + + Letters + August-September 1999 + 1005 + + + + + Letters + February-March 1999 + 1005 + + + + + Letters + May-August 1999 + 1005 + + + + + Remedy Presidential determination + 2002 + 1005 + + + + + Steel resolution + October 2000 + 1005 + + + + + + Section 232 International Trade Committee (ITC) field + hearing + July 2001 + 1005 + + + + + Steel dumping casework, (R. Broder) + 1993-1998 + 1005 + + + + + Steel exemption letter, (Section 201) + January 2002 + 1005 + + + + + Steel industry legacy costs + January 2002 + 1005 + + + + + Steel Loan Guarantee program + 1999 + 1005 + + + + + Wellstone Steel Loan Guarantee bill + December 2001 + 1005 + + +
    + + + Super 301 + + + + Background + 1990-1998 + 1005 + + + + + 1994 + 1005 + + + + + Testimony + June 8, 1995 + 1005 + + + + + 104th Congress + 1995-1996 + 1005 + + + + + History + January-March 1998 + 1005 + + + + + Reauthorization + 1998 + 1005 + + + + + Report + 2000 + 1005 + + + + + Watch list + 1999 + 1005 + + + + + + Super 301 and GATT + 1994-1995 + 1005 + + + + + Super 301 China sanctions-intellectual property rights, (IPR) + 1995 + 1005 + + + + + Taiwan and SC Johnson + 2001 + 1005 + + + + + Tengam Michigan magnet company duty provision in miscellaneous tariff + bill + 2002-2003 + 1005 + + + + + Trade Act Section 201-Steel bill Sandy Levin + 1999-2000 + 1005 + + + + + Trade bills + 2002 + 1005 + + + + + Trade deficit numbers + 2 folders + 1993-2001 + 1005 + + + + + Wire producers + 1993-2000 + 1005 + + + + + World Trade Organization (WTO) Ministerial-Seattle + 2 folders + 1999 + 1005 + + + + + Burma - Union of Myanmar + 2000-2001 + 1109 + + + + + Indonesia – World Trade Organization (WTO) ruling on national car + program + 1998 + 1109 + + + + + Post-NAFTA + 1998-2001 + 1109 + + + + + U.S. and Foreign Commercial Service (FCS) + 2001 + 1109 + + +
    + + + Transportation + 1985-2006 + + + + Appropriations and funding + + + + FY1999 + 973 + + + + + FY1999 Coast Guard Authority (Michigan) + 16 subfolders + 973 + + + + + FY2000 + 973 + + + + + FY2000 airport grants + 973 + + + + + FY2000 transportation appropriations -- H.R.2084 + 953 + + + + + FY2001 + 953 + + + + + FY2001 transportation final + 2 folders + 953 + + + + + FY2002 + 953 + + + + + FY2002 + + + + Airport appropriations (Chippewa, Kent County, Otsego County, + Pellston) + 953 + + + + + Airport funding + 953 + + + + + Airport grants + 953 + + + + + Airport letter + 953 + + + + + Airports + 953 + + + + + Auto museum + 953 + + + + + Battle Creek control tower + 953 + + + + + Blue Water + 953 + + + + + Borders and corridors + 953 + + + + + Bus funding -- NEXTEA-21 + 953 + + + + + Capital Area Transportation Authority (CATA) Lansing + 953 + + + + + Detroit Department of Transportation -- Woodward Corridor + study + 953 + + + + + Detroit Metro Airport (DTW) + 953 + + + + + Detroit Parks and Recreation + 953 + + + + + Final + 953 + + + + + Final conference report + 2 folders + 953 + + + + + Flint mass transit + 953 + + + + + Grand Rapids + 953 + + + + + Grand Valley State -- electric buses + 953 + + + + + Henry Ford Museum -- Great American Road + 953 + + + + + Kalamazoo metro transit system + 953 + + + + + Lansing control tower + 953 + + + + + Livingston County Airport + 953 + + + + + Ludington mass transportation authority + 953 + + + + + Michigan Department of Transportation (MDOT) + 953 + + + + + Michigan Department of Transportation lists + 953 + + + + + Michigan Public Transit Association + 953 + + + + + Michigan Tech aggregate + 953 + + + + + Miscellaneous + 953 + + + + + Muskegon transit request and Coast Guard + 953 + + + + + NAFTA and Mexico trucking + 953 + + + + + NAFTA case + 953 + + + + + Oakland County International Airport + 953 + + + + + Request letter, chart, and memo + 953 + + + + + Sault Ste. Marie + 953 + + + + + Senate passage transportation appropriations + 953 + + + + + SMART + 953 + + + + + Statewide earmark + 953 + + + + + Traverse City Bay Area Transportation Authority (and + Marquette) + 953 + + + + + Traverse City Cherry Capital + 953 + + + + + Troy airport mistake + 953 + + + + + Wayne County earmarks -- ITS (Intelligent Transportation + Society) + 954 + + + + + Wayne State Urban Transportation Center (WSU) + 954 + + + + + + FY2002 conference priorities, (A. Pascale) + August-September 2001 + 954 + + + + + FY2003 transportation projects part 1(Michigan) + 10 subfolders + 954 + + + + + FY2003 transportation projects part 2 (Michigan) + 28 subfolders + 954 + + + + + Coast Guard reauthorization + + + + Coast Guard authorization + 1995-1998 + 954 + + + + + Coast Guard authorization request, (Lighthouse amendment) + March 1999 + 954 + + + + + Colloquy and statement -- Columbus Vessel + October 1998 + 954 + + + + + MV Columbus and Jones Act -- dredging + 1998-2000 + 954 + + + + + + National Economic Crossroads Transportation Efficiency Act + (NEXTEA) + 9 subfolders + 1997-1998 + 954 + + + + + Appropriations constituent confirmation letter + 2001 + 955 + + + + + Statewide funding requests for transportation projects + January-March 2002 + 955 + + + + + Priorities + undated + 955 + + + + + Transportation Equity Act for the 21st Century (TEA 21) + + + + TEA-21 + 2 folders; 13 subfolders + 1997-1998 + 955 + + + + + TEA-21 funding + 3 folders + 2000 + 955 + + + + + Information on the original bill + 1999-2000 + 955 + + + + + + + Auto + + + + Airbag regulations + 1996-1997 + 955 + + + + + Airbag regulations + 1999-2000 + 955 + + + + + Auto caucus + 1995-1997 + 955 + + + + + Car safety + 2000-2001 + 955 + + + + + Drunk driving + 1999-2001 + 956 + + + + + Notice on proposed rulemaking (NPRM) and tighter emission control on + cars + 1999 + 956 + + +

    (EPA)

    +
    +
    + + + Tire recall -- Ford and Firestone + 2 folders + 2000 + 956 + + +
    + + + Aviation + + + + Airline mergers + 2000 + 956 + + + + + Airport Improvement Program (AIP) + 2 folders + 1994-2002 + 956 + + + + + Airport security -- TSA's no-fly and selectee lists + 2003 + 956 + + + + + Battle Creek flight station + 2 folders + 1995-1996 + 956 + + + + + Cherry City Airport Traverse City radar + 2 folders + 1995-2001 + 956 + + + + + Detroit Metro Airport Authority + 2002 + 956 + + + + + DHL + 2001 + 956 + + + + + Excise tax + 1995-1997 + 956 + + + + + Federal Aviation Administration (FAA) reauthorization + 2 folders + November 1999 + 956 + + + + + Gaylord + 1993 + 956 + + + + + Manistee Airport + 1996 + 956 + + + + + Northwest Airlines (A. Pascale) + + + + Detroit to Beijing route -- Carl helped + 2 folders + 1995-2000 + 956 + + + + + Japan + 3 folders + 1997-1998 + 956 + + + + + Labor dispute and Russia + 1998 + 956 + + + + + Labor issues + 2001 + 957 + + + + + + Secretary Slater request for Evergreen Airlines letter + 2002 + 957 + + + + + Spirit Airlines flight Detroit-Reagan National Airport + 2002-2004 + 957 + + + + + + Canadian National-Grand Trunk Western railroad sale + 1994-1995 + 957 + + + + + Detroit and Michigan issues and funding + 2000 + 957 + + + + + Detroit meto rail + 2000 + 957 + + + + + Detroit region transit, February-August 2001, May 2006 (A. + Pascale) + May 2006 + February-August 2001 + 957 + + + + + Engineered machine products, (A. Pascale) + April 1999-December 2000 + 957 + + + + + I-375 + January-February 2001 + 957 + + +

    (Federal Highway Administration for City of Birmingham; A. Pascale)

    +
    +
    + + + Imported slippers tariff classification + 2002 + 957 + + + + + Letters to agencies, (C. Karwacki) + 2002 + 957 + + + + + Marine + + + + Alpena Ferry + 1995-1996 + 957 + + + + + Cargo preference + 2 folders + 1985-1996 + 957 + + + + + Jones Act + 1996-1999 + 957 + + + + + Mackinaw cutter, (Coast Guard) + 1988-2000 + 957 + + + + + Mackinaw cutter -- decommissioning + 1999-2002 + 957 + + + + + Marinette Marine + 1993-1998 + 957 + + + + + National Maritime Heritage Act + 1993-1996 + 957 + + + + + Tub boat -- Great Lakes + 1995-1996 + 957 + + + + + Tug transfer, (defense authorization) + 1996 + 957 + + + + + Waiver language, (Columbus Jones Act waiver) + 1999 + 957 + + + + + + Michigan-Canada tunnels + 2000 + 957 + + + + + Motor vehicle arbitration, J. Bryan) + 2001 + 957 + + + + + Rail + + + + Amtrak and competition + 2000 + 957 + + + + + Metro-Detroit rail project + 2 folders + 1999-2001 + 958 + + + + + Railroad stops, (A. Pascale) + December 2000-July 2001 + 958 + + + + + + Roads -- Michigan Road Builders Association + 2000-2001 + 958 + + + + + Rural planning + 2001-2003 + 958 + + + + + Snow removal + 2000-2001 + 958 + + + + + Welfare to work transportation + 2000 + 958 + + +
    + + + Veterans + 1987-2002 + + + + Appropriations FY1999 VA-HUD + 1015 + + + + + American Field Service Recognition Act-S.1767 + July 2002 + 1015 + + +

    (Co-sponsor)

    +
    +
    + + + Critical issues + 2002 + 1015 + + + + + Hearing-tobacco related illness + May-July 1998 + 1015 + + +

    (VA Committee)

    +
    +
    + + + Honoring Indian veterans-S.Con.Res.137 + September 2000 + 1015 + + +

    (Levin)

    +
    +
    + + + Hmong Army requests for recognition-S.890 + April-July 1999 + 1015 + + + + + Jewish war veterans bill-H.R.606 + 2 folders + February 2001 + 1015 + + + + + Legislation + 2002 + 1015 + + + + + Levin letters + 1996-2000 + 1015 + + + + + Levin voting history + 2001-2002 + 1015 + + +

    (Includes Veterans of Foreign wars magazine)

    +
    +
    + + + Medical Research Service + November-December 1999 + 1015 + + + + + Memorial Day + 2002 + 1015 + + + + + Mobility issues and independent budget, FY03 + 1015 + + + + + National cemetery in Detroit plans + July 1999-March 2000 + 1015 + + + + + National League of Families POW/MIA requests and concerns + 1999-2000 + 1015 + + + + + Persian Gulf Illness, (GAC) + 1999 + 1016 + + + + + Secret Medal of Honor-Joseph Albers + 2002 + 1016 + + + + + Stupak Veterans Affairs Act-S.1810 + April-November 2000 + 1016 + + + + + Tuskegee Airmen tribute + 2002 + 1016 + + +

    (Includes Turkey/America issues)

    +
    +
    + + + Veterans Affairs (VA) + + + + 1998-2000 + 1016 + + + + + Background + 2000 + 1016 + + + + + Budget-veterans group letters, FY01-FY02 + 1016 + + + + + Budget, legislation, and health + 1999-2000 + 1016 + + + + + Capital Asset Realignment for Enhanced Services (CARES) + November 2002 + 1016 + + + + + Department of Veterans Affairs reports + 1995-2000 + 1016 + + + + + Express Smart Card proposal + August 2001 + 1016 + + +

    (Includes note on Imad Hamad naturalization)

    +
    +
    + + + Groups on budget proposals and legislative update + 2002 + 1016 + + + + + Healthcare funding and VISN II information, FY03 + 1016 + + + + + Medical Centers + + + + Allen Park + September-October 2000 + 1016 + + + + + Ann Arbor-Hepatitis C Field-based Resource Center + October 2001 + 1016 + + + + + Detroit + 1987-2002 + 1016 + + + + + Dingell VA Medical Center and Byrd National Technology Transfer + Center + 2000-2002 + 1016 + + + + + Iron Mountain letters + December 1999-February 2000 + 1016 + + + + + Iron Mountain + February 2002 + 1016 + + + + + Southeast Michigan + March 1996 + March 1999 + 1016 + + + + + Traverse City-outpatient clinic + December 2000 + 1016 + + + + + + Miscellaneous + 1999-2000 + 1016 + + + + + Research funding, FY02 + 1016 + + + + + Research-medical and prosthetic appropriations, FY02 + 1016 + + + + + Research, FY03 + 1016 + + +
    + + + Veterans History Project + 2001 + 1016 + + + + + Veterans Integrated Service Network + September-December 1999 + 1016 + + + + + Veterans memorabilia park proposal for Detroit + 2001 + 1016 + + + + + Vietnam Veterans Education Center-S.281 + February 2001 + 1016 + + + + + World War II memorial proposal for Washington, DC-H.R.1696 + May 2001 + 1016 + + + + + World War II project + 2001-2002 + 1016 + + +
    + + + Audiovisual materials + + + + The President of the United States William Jefferson Clinton - Highlights + of the Presidential Address and his visit to the 89th Michigan + Legislature + 1 videocassettes (VHS; 0:42:18) + 1997 March 06 + 1105 + + + + + "Diner Show" America, Good Morning + 1 audiocassettes + 2000 June 14 + 1096 + + + + + "Hardball" - Carl Levin & Condoleezza Rice; "Inside Politics" - Carl + Levin and Richard Armitage Re Military readiness. + 1 videocassettes (VHS) + 2000 August 22 + 1069 + + + + + "Senator Carl Levin on Kids and Smoking" Newsbeat at 5 WDIV-TV (NBC) + Detroit 5:00-6:00 PM. Video Monitoring Services of America, L.P. + 1 videocassettes (VHS; 0:01:54) + 1998 June 30 + 1063 + + + + + "Senator Levin Re: Tobacco Settlement" NBC Nightly News NBC-TV Network. + 6:30-7:00 PM. Video Monitoring Services of America, L.P. + 1 videocassettes (VHS; 0:01:59) + 1998 May 09 + 1063 + + + + + "Sweepstakes" World News Tonight ABC-TV Network 6:30-7:00 PM + 1 videocassettes (VHS; 0:02:33) + 1998 September 01 + 1055 + + + + + (1) Radio Tour: Swearins in day/Newt + 1 audiocassettes + 1997 January 07 + 1098 + + + + + (A) NYT John Sullivan Borders Patrol/Border issues; Ellun Ferguson - + Gannett Saudi Arabia; NPR. Chris Arnold Stock options; (B) Newsweek - Stock + Options; Nyt - Adam Clymer - Enron; Brad Graham, Wash Post Nuclear Posture + review + 1 audiocassettes + 2001 December 07 + 2002 February 01 + 2002 February 08 + 2002 February 08 + 2002 February 12 + 1102 + + + + + 1) Ch.3 WWMT 5 pm news COATT story - with Carl video; 2) Ch.3 WWMT 5:30 + pm news no COATT; 3) Ch. 3 WWMT 6 pm news COATT story - no Carl mention; 4). Ch.3 + WWMT 11 pm news no COATT story + 1 videocassettes (VHS) + 1999 June 03 + 1999 June 03 + 1999 June 03 + 1999 June 03 + 1062 + + + + + 1) WWMT - Ch.3 6 pm Carl at Albion College - Iraq; 2) WOTV - Ch. 41 11 pm + Carl at Albion College. -don't rewind - tape is set at 1st story + 1 videocassettes (VHS) + 1998 February 17 + 1998 February 17 + 1997(/1998?) October 17 + 1064 + + + + + 1) WZZM Ch.13 noon - Carl top story; 2) WOOD Ch.8 5pm + 5:30 - no Carl; + 3) WOOD Ch.8 6pm Carl top story; 4) WOOD Ch.8 11pm Carl second story + 1 videocassettes (VHS) + 1998 June 29 + 1055 + + + + + 1. Prescription Drugs - Levin Battle Creek 1. WWMT; 2. WOTV; 3. + WXMI + 1 videocassettes (VHS) + 2000 July 06 + 2000 July 07 + 1069 + + + + + 1. Sen. Levin on Senate Floor. Crime Victims Constitution; 2. CNN -21s+ + Classroom Inside Politics + 1 videocassettes (VHS) + 2000 May 24 + 1069 + + + + + 10-17-97 - don't rewind WOTV - Ch 41 Battle Creek 11pm - Carl's education + tech. meeting + 1 videocassettes (VHS) + 1997 October 17 + 1998 February 17 + 1055 + + + + + 1997 Video Library - tape #1 + 1 videocassettes (VHS) + 1997: 1997 January + 04 + 1997 January 21 + 1997 January 22 + 1997 January 22 + 1997 February 04 + 1997 February 11 + 1997 February 12 + 1997 February 12 + 1997 March 02 + 1997 February 18 + 1997 March 05 + 1997 March 10 + 1997 March 11 + 1997 March 12 + 1997 March 12 + 1997 March 18 + 1997 March 18 + 1997 March 19 + 1997 March 31 + 1997 April 11 + 1997 April 15 + 1997 April 16 + 1997 April 17 + 1059 + + + + + 1997 Video Library - Tape #2 + 1 videocassettes (VHS) + 1997: 1997 January + 04 + 1997 January 21 + 1997 January 22 + 1997 January 22 + 1997 February 04 + 1997 February 11 + 1997 February 12 + 1997 February 12 + 1997 March 02 + 1997 February 18 + 1997 March 05 + 1997 March 10 + 1997 March 11 + 1997 March 12 + 1997 March 12 + 1997 March 18 + 1997 March 18 + 1997 March 19 + 1997 March 31 + 1997 April 11 + 1997 April 15 + 1997 April 16 + 1997 April 17 + 1059 + + + + + 5/17 I/V w/CNN re A) Bush trip to Europe & Russia; nuclear treaty; + FBI Phoenix memo 5/22/02 I/V w/Steve; A) Labaton NYT re politics of Stock options + 5/23/02 I/V w/Deb Price; AoB) Det News re unfinished Senate business. + 1 audiocassettes + May 17 + 2002 May 22 + 2002 May 23 + 1094 + + + + + 60 Minutes II "The Missiliers" + 1 videocassettes (VHS) + 2000 February 08 + 1064 + + + + + A Day in the Life of - Chan 7 + 1 videocassettes (VHS) + 2002 February 11 + 1078 + + + + + A) National Guard Review I/V w/Zac Northop; Ralph Ward Corporate Board + magazine Re: accting reform bill, stock options; MSNBC I/V re President's Stmt + that Senate is not interested in National Security; Iraq Resolution + 1 audiocassettes + 2002 July 11 + 2002 July 25 + 2002 September 25 + 1094 + + + + + A) Tom Hamburger WSJ Share holders Bill of Rights; Jules Wit cover Balt + Sun. War Powers Act & Iraq; WUOM - IV w/Samilton Re Homeland Security Dept; + Brad Graham, Wash POst re missile defense; B) Social Security Press Conference; + Levin - Crusader; NBC News interview re 1st strike policy + 1 audiocassettes + 2002 May 02 + 2002 May 17 + 2002 June 07 + 2002 June 11 + 2002 June 13 + 2002 June 13 + 2002 June 14 + 1094 + + + + + A: Interview with The Hill - Jack Friedly - China Plan/CFR; B: Interview + w/GR Press - Ed Golder - Lake Champlain + 1 audiocassettes + 1998 March 10 + 1998 March 13 + 1092 + + + + + A: Legal Times - Lobby disclosure; B: NYTimes - Iraq Eric + Schmidt + 1 audiocassettes + 1998 December 16 + 1092 + + + + + ABC "This Week" Carl Levin + Gov Tom Ridge (PA) + 1 videocassettes (VHS) + 2000 October 22 + 1069 + + + + + ABC Haley Barbar Interview + 1 audiocassettes + 1997 April 17 + 1098 + + + + + ABC Nightline National Missile Defense + 1 videocassettes (VHS) + 2001 July 24 + 1095 + + + + + ABC World News Tonight, NBC Nightly News, CBS Evening News, The Newshour + - Carl Levin - Paul Wolfowitz + 1 videocassettes (VHS) + 2001 July 12 + 1095 + + + + + Adam Clymer, NYT - Oleg Chernov Tony Capaccio - Bloomberg - Bush 6.mo Deb + Price Det. News - Bush 6 mo. foreign Policy + 1 audiocassettes + 2001 August 03 + 1096 + + + + + AEI-Brookings briefing on Reg Ref + 1 audiocassettes + 1997 July 14 + 1092 + + + + + Alpena. Tart Cherries. Sarah Kellog - Chicago - intvw + 1 audiocassettes + 1998 August 01 + 1996 July 26 + 1091 + + + + + American Jewish Committee present Daniel Levin Human Rights Medallion + Award. Fairmont Hotel, 200 N. Columbus Drive, Chicago + 1 videocassettes (VHS) + 2001 June 18 + 1056 + + + + + Andy ("Rocky") Raczkowski WBCK 9:30 AM 9:20am-9:55am + 1 audiocassettes + 2002 January 30 + 1085 + + + + + AP - gas prices, WWJ - marriage penalty; WJR - marriage penalty, AR + Firebloght + 1 audiocassettes + 2000 July 21 + 2000 June 19 + 2000 July 18 + 2000 July 19 + 1096 + + + + + AP interview re: Albright Mideast letter + 1 audiocassettes + 1998 April 03 + 1092 + + + + + AP Jordan College AP/USA Today CFR + 1 audiocassettes + 1997 May 13 + 1098 + + + + + AP Mich. Cathy Hoffman Pres. Primary + 1 audiocassettes + 1999 May 14 + 1098 + + + + + AP Nedra Pickier Re: Mark Hall - INS Whistleblower(?) Jim Dao/NYT re: + NMD + 1 audiocassettes + 2001 November 15 + 1096 + + + + + AP reporter Laurie Kellman on I.C. Law + 1 audiocassettes + 1999 February 22 + 1098 + + + + + April-June 2002 Levin news appearences/interviews + 1 videocassettes (VHS) + 2002 April 11 + 2002 April 29 + 2002 April 29 + 2002 April 30 + 2002 April 30 + 2002 June 12 + 1067 + + + + + B. Bradley NPR on I.C. Law + 1 audiocassettes + 1999 February 23 + 1098 + + + + + B2 Bomber Int. w/MiK (NBC) + 1 audiocassettes + 1997 August 11 + 1092 + + + + + Bill Miller - catalog ctr Battle Creek Fed Ctr + 1 audiocassettes + 1997 March 18 + 1098 + + + + + Brad Graham Kosovo + 1 audiocassettes + 1999 February 03 + 1092 + + + + + Brian Tumeltey Impeachment + 1 audiocassettes + 1998 December 18 + 1092 + + + + + Brian Tumulty, GNS QDR + 1 audiocassettes + 1997 May 21 + 1098 + + + + + Briefing w/MI Reporters re: PSI hrg on Border security + 1 audiocassettes + 2001 November 09 + 1096 + + + + + BUP Press Conf. + 1 audiocassettes + 2002 October 09 + 1094 + + + + + Carl - Chan 7: 3/18/02 Border Petrol/INS; 3/27/02 Border Petrol/INS; + 4/29/02 5:00 Dialogue on Freedon(?) 11:00 Gas Price Investigation; 5/16/02 - + Pres/terrorist notice + 1 videocassettes (VHS) + 2002 March 18 + 2002 March 27 + 2002 April 29 + 2002 May 16 + 1073 + + + + + Carl - Fox 2 News - Bin Laden (Tacom event)/Chan 7 - Border [illegible]; + Senator Carl Levin Focus:Hope + 1 videocassettes (VHS; 8:57) + 2001 December 10 + 2002 January 08 + 1991 + 1067 + + + + + Carl - WDIV 5:00 & 11:00 News + 1 videocassettes (VHS) + 2001 November 06 + 1056 + + + + + Carl interview w/WWJ on Base Closures + 1 audiocassettes + 1997 May 19 + 1092 + + + + + Carl Levin Auto Parts Shopping + 1 videocassettes (VHS) + 1997 December 31 + 1073 + + + + + Carl Levin TC City Hall Campaign Fin Ref. Rich Robinson + 1 videocassettes (VHS) + 2001 March 11 + 2002 February 12 + 2002 June 05 + 1056 + + + + + Carl Levin: Radio Tour. Million Mom March + 1 audiocassettes + 2000 May 10 + 1096 + + + + + Carl Meets w/Million Mom March 1.WZZM; 2. WXMI; 3. WOOD TV + 1 videocassettes (VHS) + 2000 April 24 + 1069 + + + + + Carl on Flashpoint w/Derin(?) Scillian WDIV + 1 videocassettes (VHS) + 2001 January 07 + 1056 + + + + + Carl on Larry King Iraq w/ Warner(?) + 1 videocassettes (VHS) + 1998 February 16 + 1063 + + + + + Carl on Late Edition/CNN w/Warner on Mid. East/USS Cole + 1 videocassettes (VHS) + 2000 October 15 + 1069 + + + + + Carl's Press Conf + 1 audiocassettes + 1999 February 15 + 1092 + + + + + Carpe Diem 2000 Undergraduate Commencement Ceremony. Seize the day, Seize + the future, For God, for the world, for yourself. Anderws University Berrien + Springs, MI 49104 Undergraduate Graduation Service (c) 2000 Student Activities + Production (c) International Learning Systems, Ltd + 1 videocassettes (VHS) + 2000 June 04 + 1052 + + + + + CBS - Evening News. For. Money - '92 GOP\Bush Camp. + 1 videocassettes (VHS) + 1997 July 07 + 1063 + + + + + CBS Evening News - Carl at JFK Jr. Funeral (?) Tape set to + Carl + 1 videocassettes (VHS) + 1999 July 23 + 1087 + + + + + CBS' Face the Nation + 1 videocassettes (VHS) + 2002 August 04 + 1066 + + + + + CBS TV I/V Re end of ABM Treaty; CNN I/V Re Missile defense; Telephone + I/V w/WLUC-TV 6 Marquette Re Bush Speech on Corp. Governance + 1 audiocassettes + 2002 June 07 + 2002 June 12 + 2002 July 09 + 1094 + + + + + CFR briefing w/natural Press in Print Gallery + 1 audiocassettes + 1999 October 19 + 1098 + + + + + CFR Hearings - NPR; Voting Record - [illegible]P + 1 audiocassettes + 1997 February 07 + 1098 + + + + + Ch. 4 News NBC Nightly News re: China, US Spy Plane. + 1 videocassettes (VHS) + 2001 April 02 + 1081 + + + + + Ch. 41 WOTV News 6 pm - COATT story with Carl video 11 pm - no COATT + story + 1 videocassettes (VHS) + 1999 June 03 + 1062 + + + + + Ch10 @ 11 p.m. -Sep. LevinJoins President Clinton @ Super Bowl; Ch 8 GR @ + 5 -Levin & Upton(?) Give State of Union Preview + 1 videocassettes (VHS) + 1997 December(?) 26 + 1997 February 31(?) + 1063 + + + + + Chan 4 News 5/6: 11 + 1 videocassettes (VHS) + 2002 November 08 + 1058 + + + + + Channel 12 Gas Prices Gun Control issues *Levin + 1 videocassettes (VHS) + 2000 March 16 + 1069 + + + + + Chenevoix (/Charlevoix?) Elementary School Traverse City Area, MI + [illegible] School Footage + 1 videocassettes (VHS) + undated + 1059 + + + + + CL Briefing w/MI Reporters on Impeachment + 1 audiocassettes + 1999 January 27 + 1098 + + + + + CL Conference Call on Kosovo with MI. nat'l reporters + 1 audiocassettes + 1999 April 19 + 1999 April 08 + 1098 + + + + + CL conference call w/MI political reporters re: Dem Caucus + 1 audiocassettes + 1999 July 26 + 1098 + + + + + CL interview w/AP John Diamond on Bosnia + 1 audiocassettes + 1997 September 05 + 1092 + + + + + CL interview w/Drinkard (AP) on ATR + 1 audiocassettes + 1997 November 09 + 1092 + + + + + CL on Fox News Channel on Impeachment; CL on CNN - impeachment/SOTU; CL + on CNN - impeachment; CNN on impeachment; Fox News Channel + 1 videocassettes (VHS) + 1999 January 16 + 1999 January 20 + 1999 January 23 + 1999 January 28 + January 28 + 1087 + + + + + CL on Nat. Missile Defense in Gallery + 1 audiocassettes + 1999 March 15 + 1098 + + + + + CL Speech @ Granny D Rally on Capitol steps + 1 audiocassettes + 2000 February 29 + 1096 + + + + + Cliff Krauss NYT Pentagon Budget + 1 audiocassettes + 1997 January 27 + 1098 + + + + + CNN - Levin - Warner; CNN - Late Edition, Levin, Warner and + others + 1 videocassettes (VHS) + 2001 September 14 + 2001 September 16 + 1056 + + + + + CNN Larry King LIVE Senators Levin & Domenici; Senators Levin & + Kay Bailey Hutchison + 1 videocassettes (VHS) + 2000 December 01 + 2000 December 06 + 2000 December 03 + 1069 + + + + + CNN Sen Levin & Gov Engler with Judy Woodruff before 2nd Presidential + debate + 1 videocassettes (VHS) + 2000 October 11 + 1069 + + + + + CNN Story on money Laundering; MSNBC - Levin & Warner on Hardball Re + trip to Central Asia; CNN - Larry King Live - Levin &Warner Re bin Laden + videotape, mil. tribunals; CNN - late Edition w/Sen John Keil(?) bin Laden + videotape; CNN I/V w/Lieberman re Ehron; ABC "This Week" re Ehron + 1 videocassettes (VHS) + 2001 November + 2001 November 27 + 2001 November 27 + 2001 December 10 + 2001 December 16 + 2002 January 02 + 2002 January 13 + 1067 + + + + + Comcast Cable Communications, Inc.: Comcast Newsmakers Interview w/Carl + Levin + 1 videocassettes (VHS; 0:05:00) + 2002 July 02 + 1067 + + + + + Commando Solo Brief + 1 audiocassettes + 1997 July 30 + 1092 + + + + + Conf Call w/Mich reporters re gas price report; I/V w/John Fiallea(?) - + WSJ - Gas prices + 1 audiocassettes + 2002 April 29 + 1102 + + + + + Conf. w/Mich. reporters Re: Antrax on Capitol Hill + 1 audiocassettes + 2001 October 17 + 1096 + + + + + Conference call on Impeachment w/MI Reporters + 1 audiocassettes + 1999 January 08 + 1098 + + + + + Conference Call w/MI Reporters Re: Afghanistan + 1 audiocassettes + 2001 October 08 + 1096 + + + + + Conference call w/Reporters from Kosovo + 1 audiocassettes + 1999 July 06 + 1098 + + + + + Conference Call with Reporters on MI Dem Caucus + 1 audiocassettes + 1999 June 24 + 1098 + + + + + Conference Call with reporters re: Middle East trip + 1 audiocassettes + 1998 February 14 + 1092 + + + + + Conrad: 12/14 - News Conference DUB. Bet Payoff - ND Senators and + Michigan Senators. SRS. 65370 + 1 videocassettes (VHS; 0:20:00) + 2001 December 14 + 1056 + + + + + Cubrimiento Por Noticieros Locales De Las Visitas De Codels Souder, + McGovern, McCain, Levin and Taylor + 1 videocassettes (VHS) + 2001 February 16 - 2001 February 25 + 1068 + + + + + CWC final passage Gore, Daschle, Levin et al (Levin @ 274) + 1 audiocassettes + 1997 April 24 + 1092 + + + + + D.C. City Streets - Need repair. Problem for Mayor Williams NBC + News + 1 videocassettes (VHS) + 2000 March + 1069 + + + + + Daimler Chrysler DCTV News. Ref: N091799. + 1 videocassettes (VHS) + 1999 September 17 + 1069 + + + + + Dan Morgan - Wash. Post - Indep. Counsel interview + 1 audiocassettes + 1999 March 01 + 1098 + + + + + Deb Price - Det. News Cont. Bush Foreign Policy + 1 audiocassettes + 2001 August 03 + 1096 + + + + + Defense News Phil Finegan + 1 audiocassettes + 1997 July 28 + 1092 + + + + + Defense Week Press Breakfast + 1 audiocassettes + 2002 June 10 + 1094 + + + + + Defense Week Press Breakfast. Hon.Levin + 1 videocassettes (VHS) + 2002 June 10 + 1067 + + + + + Defense Writers Group + 1 audiocassettes + 1997 February 18 + 1098 + + + + + Democratic Victory 2000 DNC-25-30 "Fatherhood-Generic" + 1 videocassettes (VHS; 0:00:30) + 2000 June 14 + 1069 + + + + + Det News re: Judges; Economists re: $ laundering; Rick Pluta re: Abraham. + WDET re: transportation $ + 1 audiocassettes + 2001 February 14 + 2001 March 09 + 2001 January 17 + 2001 January 18 + 1096 + + + + + Detroit News Interview re: Father Cunningham; Int. w/Fortune Magazine re: + Stock options + 1 audiocassettes + 1997 May 15 + 1098 + + + + + Dick Ryan (F.P.) + Paul Egen (Lansing Jour.) Senate impeachment + process + 1 audiocassettes + 1998 December 21 + 1092 + + + + + Dick Ryan Detroit News CWC + 1 audiocassettes + 1997 April 11 + 1098 + + + + + DNA Testing in Tomas Cress Case WOTV + 1 videocassettes (VHS) + 2000 June 13 + 1069 + + + + + DoD Auth. Press Conference. Conf. Rept + 1 audiocassettes + 1998 September 18 + 1092 + + + + + DoD Authoriz. Briefing + 1 audiocassettes + 1997 June 13 + 1092 + + + + + DoD Committe Report Press Briefing + 1 audiocassettes + 1997 October 24 + 1092 + + + + + Donna(?) Canada CQ CFR Investigations + 1 audiocassettes + 1997 March 20 + 1098 + + + + + DPC "Cease Fire" Hearing + 1 videocassettes (VHS) + 2000 May 14 + 1081 + + + + + DPC feed following Impeach. votes on motions to dismiss & to Depose + Witnesses + 1 audiocassettes + 1999 January 27 + 1092 + + + + + Economic Club of Detroit Speech + 1 audiocassettes + 2002 March 19 + 1094 + + + + + Eliza Newlin Carney National Journal + 1 audiocassettes + 1997 April 20 + 1098 + + + + + Elizabeth Birch in Studio Emily's List Location Shoot dub. Harriman + Communications Center, Washington, DC + 1 videocassettes (VHS) + dub 2002 October + 29 + 1085 + + + + + Emil literacy tutoring call + 1 audiocassettes + 1997 February 18 + 1098 + + + + + Emory King report on Carl Levin + 1 videocassettes (VHS; 0:09:00) + 2001 Novemver 06 + (Aired) + 2001 December 18 + 1105 + + + + + End-of-Session Press Briefing with MI Reporters + 1 audiocassettes + 1999 November 19 + 1098 + + + + + Enron Hearing w/Merrill Lynch + 1 videocassettes (VHS) + 2002 July 30 + 1053 + + + + + Eric Schmidt - NY Times on Warner WJR-Rosa Parks Gold Medal + 1 audiocassettes + 1999 March 04 + 1098 + + + + + Eric Schmidt NYTimes Tom Raum(?) AP NMD + 1 audiocassettes + 1999 March 12 + 1098 + + + + + Face the Nation Stakeout (NBC, FOX, CSPAN) + 1 audiocassettes + 1997 January 16 + 1098 + + + + + Fisher Communications Seattle 206-404-4013 [illegible] CNN + 1 videocassettes (VHS) + On the box 2001 + in the document: 2001 May + 29 + on + the cassette: 2001 April 08 + 1081 + + + + + Fox 2 News - Border Crossings + 1 videocassettes (VHS) + 2001 November 05 + 1056 + + + + + Fox 2 News TV Response to Bush in Joint Session of Congress + 1 audiocassettes + 2001 September 20 - 2001 September 21 + 1096 + + + + + Fox 2-12:00 Border Reverse Inspection + 1 videocassettes (VHS) + 2002 January 08 + 1067 + + + + + Fox News Sunday + 1 videocassettes (VHS) + 1998 June 07 + 1063 + + + + + Fox News Sunday + 1 videocassettes (VHS) + 2001 September 30 + 1056 + + + + + Fox News Sunday + 1 videocassettes (VHS) + 2003 January 05 + 1078 + + + + + Fox Sunday CFR Hearings + 1 videocassettes (VHS) + 1997 February 01 + 1057 + + + + + Free Press I/V w/Ruby Bailey + 1 audiocassettes + 2002 September 26 + 1102 + + + + + Free Press Interview w/Melanie Eversley on Lake Champlain (A) + 1 audiocassettes + 1998 March 16 + 1092 + + + + + Free Press Re: South Fox Isl. Amat + 1 audiocassettes + 2001 July 16 + 1096 + + + + + FS Detroit Children. Stuck options, Enron hearings + 1 videocassettes (VHS) + 2002 June 28 - 2002 July + 30: 2002 June 28 + 2002 July 15 + 2002 July 15 + July 21 + July 22 + July 22 + 2002 July 23 + July 23 + July 23 + July 23 + 2002 July 23 + 2002 July 30 + 2002 July 30 + 1066 + + + + + FTN "Face The Nation" Sen. Levin, Reid, Leahy, Bingaman re: Senate + Control + 1 videocassettes (VHS) + 2001 June 03 + 1081 + + + + + Gas Prices TV6 (Marquette)/ Flooding Enron/ Ontonagon/ From Levin + Escanaba office + 1 videocassettes (VHS) + 2002 April 29 + 1067 + + + + + GLI Conference Call + 1 audiocassettes + 1997 March 24 + 1098 + + + + + Governmental Affairs - Special Investigations CA-23: Cal Dooley (D) VS. + Trice Harvey (R) Citizens for Reform - Dalton Media Studios + 1 videocassettes (VHS; 0:30) + 2001 (?) + 1053 + + + + + Governmental Affairs Committee Hearing. Tape 1 of 1. 10:00A to + 12:20P + 1 videocassettes (VHS) + 2001 March 06 + 1053 + + + + + Governmental Affairs Special Investigation Tape 1 of + 1[corrected] + 1 videocassettes (VHS; 10:00 to 13:05) + 1997 October 23 + 1063 + + + + + Gov't Affairs #1. Gas Price Hearing Oil Execs. + 1 audiocassettes + 2002 April 30 + 1094 + + + + + Gov't Affairs #2. Gas Price Hearing Oil Execs. + 1 audiocassettes + 2002 April 30 + 1094 + + + + + Gov't Affairs #3. Gas Price Hearing Oil Execs. + 1 audiocassettes + 2002 April 30 + 1094 + + + + + Gov't Affairs Hearing on S. 207 + 1 audiocassettes + 1997 February 13 + 1098 + + + + + Gov't Affairs Hearing on S.207 + 1 audiocassettes + 1997 February 13 + 1098 + + + + + Gov't Affairs Org. Hrg + 1 audiocassettes + 1997 January 30 + 1098 + + + + + GR-Press re: CFR, Freep Ede(?) Bd re: Judges, ES Dlonne re + CFR + 1 audiocassettes + 2001 March 21 + 2001 April 24 + 2001 March 14 + 1096 + + + + + Guy Gugliotta WPost Brothers Act + 1 audiocassettes + 1997 March 18 + 1098 + + + + + HKO Media Excerpts from: The White House Conference on Global Change UFS + 98-3364 + 1 videocassettes (VHS; 0:02:08) + 1998 February 02 + 1055 + + + + + HKO Media, Inc. - Highlights From: EV Global Motors & Energy + Conversion Devices Press Conference and Tour UFS 98-3370 + 1 videocassettes (VHS; 0:04:41) + 1998 February 10 + 1055 + + + + + Hope Happenings. Major General Roy E. Beauchamp and U.S. Senator Carl + Levin Focus: HOPE visit. Focus: HOPE Video Education + 1 videocassettes (VHS; 6:22) + 1997 December 01 + 1058 + + + + + I/V w/John Flesher-AP Traverse City Re Mtg with Secy Erans re Iron ore + industry + 1 audiocassettes + 2001 April 26 + 1096 + + + + + I/V w/Matt Wald NYT Re Gas Prices; I/V w/Ken Bredemeier re gas + prices + 1 audiocassettes + 2002 April 29 + 1102 + + + + + I/V w/Sag. News Re: CMU's Nanotechnology Research + 1 audiocassettes + 2002 November 20 + 1094 + + + + + I/V w/Thom Shaker, NYT, William Chen, VOA, Michael Gordon, NYT, Tyrone + Bynum, BP + Mindy Finn Re: ABM, money laundering, Hoon, Waterbury + 1 audiocassettes + 2001 October 25 + 2001 October 30 + October 30 + November 06 + 2001 November 26 + 1096 + + + + + I/V w/Vernon Loeb Re: BRAC + ABM Treaty + 1 audiocassettes + 2001 July 27 + 1096 + + + + + I/Vs Post Joint Session of Congress + 1 audiocassettes + 2001 September 20 + 1096 + + + + + Impeachment Mtg w/MI reporters + 1 audiocassettes + 1999 February 12 + 1098 + + + + + Impeachment Mtg w/MI Reporters + 1 audiocassettes + 1999 January 14 + December 29 + 1098 + + + + + Impeachment Press Conference. Senator Carl Levin: Senator Levin's press + conference on the House's vote to impeach President Clinton and ensuing action in + the Senate. Democratic Technology & Communications Committee Senator Tom + Daschle, Democratic Leader Senator Jay Rockefeller, Chairman + 1 audiocassettes + 1998 December 21 + 1092 + + + + + interview - Guy Guggliou - W.P. - China missiles + 1 audiocassettes + 1998 June 02 + 1092 + + + + + Interview Kirk Victor - Nat. Jour. Wash Post interview w/Terry + Neal + 1 audiocassettes + 1999 January 11 + 1099 + + + + + Interview on CFR w/GR Press + 1 audiocassettes + 1997 May 13 + 1098 + + + + + Interview Steve Meyers NY Times BRAC + 1 audiocassettes + 1998 May 12 + 1092 + + + + + Interview w/Bill Hammer on CNN American Morning. re: Pres. speech on + Iraq + 1 videocassettes (VHS) + 2002 October 08 + 1081 + + + + + Interview w/Jim Drinkard - AP Lobby Disclosure + 1 audiocassettes + 1998 January 27 + 1092 + + + + + Interviews re: terrorist attacks + 1 audiocassettes + 2001 September 13 + 2001 September 18 + 1096 + + + + + Iraq/Impeachment - WWJ, NYT, WJR, AP + 1 audiocassettes + 1998 December 17 - 1998 December 18 + 1092 + + + + + Ivan Schneider - $ Landering Tech mag. - Ellyn Ferguson re: trip to Afgh. + Bob Semple - NYT - Re: CFR debate + 1 audiocassettes + 2001 March 23 + 2001 November 26 + 2001 March 23 + 1096 + + + + + John Brodir, NYT Big Reform Outlook + 1 audiocassettes + 1997 January 17 + 1098 + + + + + John Martin Gulf Illness - Indpt. Counsel + 1 audiocassettes + 1997 February 25 + 1098 + + + + + Kent Intermediate School District K.I.D.S. Interactive Network - Levin to + Godwin Interactive Via K.I.D.S. Network + 1 videocassettes (VHS; 0:27:00) + 1998 September 09 + (recorded) + 1063 + + + + + KXAM-AZ Radio Interview + 1 audiocassettes + 1997 April 07 + 1098 + + + + + Kzoo Gazette - Re: Budget, Janet FCX; Freep - Re: $ laundering; GWeeks - + Re: budget; LSJ - re Pres. budget + 1 audiocassettes + 2001 March 26 + 2001 March 27 + 2001 September 21 + 1096 + + + + + Larry King Live Sen Levin & Gov John Engler + 1 videocassettes (VHS) + 2000 October 30 + 1069 + + + + + Larry King Live. Sen. Carl Levin + 1 videocassettes (VHS) + 1998 December 17 + 1063 + + + + + Lawrence Technological University presents Economic Club of Detroit + Luncheon Talk - The Honorable Carl Levin U.S. Senator from Michigan "Inside the + Beltway Versus Outside the Box" Can Washington Find New Answers to Old + Questions" + 1 videocassettes (VHS; 0:56:40) + 2001 May 14 + 1095 + + + + + Lawrence Technological University presents The Economic Club of Detroit + Luncheon Talk - The Honorable Carl Levin U.S. Senator from Michigan "An Era of + Opportunity: Will Washington Blow It?" + 1 videocassettes (VHS; 0:55:00) + 2000 May 01 + 1095 + + + + + Lawrence Technological University presents The Economic Club of Detroit + Luncheon Talk - The Honorable Carl Levin U.S. Senator from Michigan "Post Deficit, + Post Cold War, Seize the Moment" + 1 videocassettes (VHS; 0:57:37) + 1999 May 03 + 1095 + + + + + Lawrence Technological University presents The Economic Club of Detroit + Luncheon Talk - The Honorable Carl Levin United States Senator from Michigan + "False Profits and Broken Dreams: The ABC's of Enron" + 1 videocassettes (VHS; 0:55:58) + 2002 April 22 + 1095 + + + + + Lawrence Technological University presents The Economic Club of Detroit + Luncheon Talk - The Honorable Carl Levin United States Senator from Michigan "Six + Ways to Keep the Economy Humming" + 1 videocassettes (VHS; 0:53:10) + 1998 May 18 + 1095 + + + + + Levin Conference Call w/MI reporters from Qatar + 1 audiocassettes + 1998 February 10 + 1092 + + + + + Levin C-SPAN 2 (Enron Hearing) Tape 2 of 2. SRS + 1 videocassettes (VHS; 3:24:00) + 2002 December 11 + 1053 + + + + + Levin East Elementary School WXMI-17 10:00pm(?) + 1 videocassettes (VHS) + 1999 February 16 + 1999 February 17 + 1999 February 17 + 1062 + + + + + Levin Floor Statement Re: CAFE Amendment + 1 videocassettes (VHS) + 2002 March 12 + 1053 + + + + + Levin Governmental Affairs, PSI Maj. Cmte Hearing. Gas price hearing. + SRS + 1 videocassettes (VHS; 3:00:00) + 2002 May 02 + 1053 + + + + + Levin interview re: Independent Counsel Press Conference on Food + Safety + 1 audiocassettes + 1998 January 29 + 1092 + + + + + Levin interview w/Carol; Stevens, Detroit News Dem + Subpeonas/CFR + 1 audiocassettes + 1997 March 02 + 1098 + + + + + Levin Interview w/John Harwood - WSJ Independent Counsel - + Starr + 1 audiocassettes + 1998 January 27 + 1092 + + + + + Levin interview with David Abil, [illegible] Week + 1 audiocassettes + 1999 November 29 + 1092 + + + + + Levin interview with NYT on Ralston(?) candidacy for NATO + commander + 1 audiocassettes + 1999 July 30 + 1098 + + + + + Levin on ABC'S "This Week" with Richard Perle Re USS Greenville Submarine + Accident [after CNN's Evans & Novak] + 1 videocassettes (VHS) + 2001 February 18 + 1056 + + + + + Levin Uplinks mid 1996-1997 s:/wpshr/pres/library/VNRlibr.97 + DUB + 1 videocassettes (VHS) + 1996: 1996 June + 26 + 1996 July 09 + 1996 July 10 + 1996 July 18 + 1996 July 23 + 1996 July 26 + 1996 July 30 + 1996 August 01 + 1996 August 02 + 1996 August 21 + 1996 September 04 + 1996 September 12 + 1996 September 19 + 1996 September 26 + 1996 October 01. 1997: 1997 + January 07 + 1997 January 20 + 1997 January 24 + 1997 January 27 + 1997 January 28 + 1997 Februaru 03 + 1997 February 04 + 1997 February 06 + 1997 February 27 + 1997 March 13 + 1997 March 18 + 1997 April 10 + 1997 April 22 + 1997 April 29 + 1997 May 01 + 1997 May 02 + 1997 May 09 + 1059 + + + + + Levin/Warner Press Conf. after Passge of Def. Ant. Bill + 1 videocassettes (Betacam) + 2001 December 12 + 1068 + + + + + Levin: 01/11 - PBS Newshour. SRS JOB#: 59984 + 1 videocassettes (VHS; 0:55:00) + January 11 + 2001 January 12 + 1056 + + + + + Levin: 01/18 Energy Hearing. 60066 SRS + 1 videocassettes (VHS; 3:30 (APPX.)) + 2001 January 19 + January 18 + 1053 + + + + + Levin: 2/15 NBC News Re USS Greenville. SRS 60505 + 1 videocassettes (VHS; 0:30:00) + February 15 + 2001 February 16 + 1056 + + + + + Levin: 5/16 - Armed Services Hearing 2:30P Rumsfeld, Wolowitz. + Aleenridge(?). Gen Shinseki. Re Crusader SRS 67792 + 1 videocassettes (VHS; 5:17:00) + 2002 May 16 + 1053 + + + + + Levin: 5/7 Governmental Affairs Cmte. The Role of the Board of Directors + in The Collapse of Enron. SRS 67543 + 1 videocassettes (VHS; 3:00:00) + 2002 May 07 + 1053 + + + + + Levin: 50th Anniversary of Indian Independence. SRS 44313 O + 1 videocassettes (VHS; 0:04:36) + 1997 August 04 + 1063 + + + + + Levin: 60 Minutes. SRS + 1 videocassettes (VHS; 0:44:40) + 1999 July 25 + 1081 + + + + + Levin: 60 Minutes. SRS 59990 Gilbert Levine? + 1 videocassettes (VHS; 1:00:00) + 2001 January 16 + 1052 + + + + + Levin: 8/5 Late Edition. SRS 63336 + 1 videocassettes (VHS; 1:00:00) + 2001 August 06 + 1056 + + + + + Levin: A Working Session, SRS 48094 O + 1 videocassettes (VHS; 3:00) + 1998 May 13 (Dub + Date) + 1063 + + + + + Levin: ABC & CBS Evening News. Re Gas Price hearings. SRS + 1 videocassettes (VHS; 1:00:00) + 2002 April 29 + 1067 + + + + + Levin: ABC News Segment (Jones Nomination). SRS 49217 0 + 1 videocassettes (VHS; 2:00) + 1998 July 22 + 1063 + + + + + Levin: ABC News Special - Tampering with Nature - John Strussel. + SRS + 1 videocassettes (VHS; 1:00:00) + 2001 June 29 + 1081 + + + + + Levin: ABC World News. SRS JOB#: 59900 + 1 videocassettes (VHS; 0:30:00) + 2001 January 08 + 1056 + + + + + Levin: Armed Services Confirmation Hearing Tape 1 of 2. SRS + 1 videocassettes (VHS; 6:00:00) + 2001 January 11 + 1053 + + + + + Levin: Armed Services Confirmation Hearing Tape 2 of 2. SRS + 1 videocassettes (VHS; 0:06:00) + 2001 January 11 + 1053 + + + + + Levin: Armed Services Hearing Q&A. SRS 41473 0 + 1 videocassettes (Betacam; 0:13:23) + 1997 February 27 + 1059 + + + + + Levin: Armed Services Q & A Segment. SRS 41129 0 + 1 videocassettes (Betacam; 0:21:00) + 1997 February 04 + 1059 + + + + + Levin: Armed Services Q&A (Tape 2). SRS 41473 O + 1 videocassettes (Betacam; 22:00) + 1997 February 27 + 1059 + + + + + Levin: CBS 60 Minutes 2. SRS + 1 videocassettes (VHS; 0:30:00) + 2000 December 18 + 1069 + + + + + Levin: CBS Face The Nation. SRS + 1 videocassettes (VHS; 1:00:00) + 1999 January 31 + 1087 + + + + + Levin: CBS News "Japanesse Dead Beat Dad". SRS 43869 O + 1 videocassettes (VHS; 0:05:40) + 1997 July 07 + 1065 + + + + + Levin: CBS News Gov't Affairs Seg. SRS 44231 O + 1 videocassettes (VHS; 2:10) + 1997 July 24 + 1063 + + + + + Levin: CNBC Hardball Re space based weapons. SRS 61761 + 1 videocassettes (VHS; 1:00:00) + 2001 May 08 + 1056 + + + + + Levin: CNN 7PM-8PM Special Report with Wolf Blitzer. Job #: + 59631 + 1 videocassettes (VHS; 1:00:00) + 2000 December 03 + 1069 + + + + + Levin: CNN Larry King. SRS + 1 videocassettes (VHS; 1:00:00) + 2001 November 27 + 1056 + + + + + Levin: CNN Late Edition Re Senate Shift. SRS 62111 + 1 videocassettes (VHS; 1:00:00) + 2001 May 27 + 1056 + + + + + Levin: Compiled G.A.S.I. Levin Segments. SRS 45602 O + 1 videocassettes (VHS; 0:22:00) + 1997 September 25 + 1057 + + + + + Levin: Computer Klubhouse. SRS 50850 0 + 1 videocassettes (VHS; 0:02:15) + 1999 January 20 + 1062 + + + + + Levin: C-SPAN 2 (Enron Hearing) Tape 1 of 2. PSI hrg - oversight of + Investment Banks Response to the Lessons of Enron. SRS + 1 videocassettes (VHS; 2:00:00) + 2002 December 11 + 1053 + + + + + Levin: DUB of 11/26 News Conference. SRS + 1 videocassettes (VHS; 0:44:00) + 2001 November 26 + 1053 + + + + + Levin: Education Technology. SRS 46206 O + 1 videocassettes (Betacam; 2:30) + 1997 December 30 + 1059 + + + + + Levin: Face the Nation. SRS 43941 O + 1 videocassettes (VHS; 0:30:00) + 1997 July 16 + 1063 + + + + + Levin: Floor Statement 7/9/97. SRS 43864 O + 1 videocassettes (VHS; 0:27:30) + 1997 July 10 + 1997 July 09 + 1059 + + + + + Levin: Floor Statements - Federal Prison Industry. SRS 43876 + O + 1 videocassettes (Betacam; 13:00) + 1997 July 09 + 1059 + + + + + Levin: Floor Statements - Federal Prison Industry. SRS 43876 + O + 1 videocassettes (VHS; 13:00) + 1997 July 09 + 1059 + + + + + Levin: Floor Tribute - Suzy Joyce. SRS + 1 videocassettes (VHS; 0:04:30) + 2001 June 14 + 1053 + + + + + Levin: Gift of Life PSA. SRS 41073 0 + 1 videocassettes (Betacam; 0:00:30) + 1997 February 11 + 1059 + + + + + Levin: Gov. Affairs Cmt. Q&A 7/24. SRS 44118 O + 1 audiocassettes + 1997 July 24 + 1997 July 25 + 1092 + + + + + Levin: Governmental Affairs Hearing. PSI The Role of Financial + Institutions in The Collapse of Enron. SRS + 1 videocassettes (VHS; 3:30:00) + 2002 July 30 + 1053 + + + + + Levin: Governmental Affairs PSI Hearing. SRS + 1 videocassettes (VHS; 3:10:00) + 2001 March 02 + 1053 + + + + + Levin: Governmental Affairs Subcommittee Hearing. Master. SRS. + 60685 + 1 videocassettes (VHS; 3:15:00) + 2001 March 01 + 1053 + + + + + Levin: Governmental Affairs Sub-Committee Hearing. PSI-Juvenile Diabetes + Hearing. SRS + 1 videocassettes (VHS; 3:00:00) + 2001 June 26 + 1053 + + + + + Levin: Governmental Affairs, PSI Hearing. Gas price hearing. + SRS + 1 videocassettes (VHS; 4:16:00) + 2002 April 30 + 1053 + + + + + Levin: Gov't Affairs Committee (Levin Statements). SRS 45015 + O + 1 videocassettes (VHS; 25:30:00) + 1997 September 12 + 1063 + + + + + Levin: Hardball. SRS + 1 videocassettes (VHS; 1:00:00) + 2001 November 27 + 1056 + + + + + Levin: High School Q/A. Airport High School Carleton. MI Monroe County. + SRS + 1 videocassettes (VHS; 0:30:00) + 2001 May 25 + 1056 + + + + + Levin: Inside Politics 4:11-4:41. SRS 43322 O + 1 videocassettes (VHS; 0:30:00) + 1997 June 06 + 1063 + + + + + Levin: Late Edition - 6/25/00 CNN Job#: 57889 SRS + 1 videocassettes (VHS; 0:42:00) + 2000 June 25 + 2000 June 26 + 1069 + + + + + Levin: Late Edition Segment with Sen Levin. SRS + 1 videocassettes (VHS; 0:05:00 APPRX) + 2001 November 04 + 1056 + + + + + Levin: Late Edition. Levin & Arlen Specter Re KBI intelligence + failures. SRS 67891 + 1 videocassettes (VHS; 1:00:00) + 2002 May 28 + 1067 + + + + + Levin: Late Edition. Re: Iraq, Homeland Security, election. SRS + 70152 + 1 videocassettes (VHS; 1:00:00) + 2002 November 12 + 1066 + + + + + Levin: Late Edition. w/Sen Warner Re: China Incident - US Spy plane. SRS + 61068 + 1 videocassettes (VHS; 1:00:00) + 2001 April 08 + 1081 + + + + + Levin: Lautenberg Amendment to S.254, the Juvenile Justice Bill (VP Gore + Tie Breaker). SRS + 1 videocassettes (VHS; 20:00 APX) + 1999 May 18 + 1062 + + + + + Levin: Levin & Sessions Floor Statement 10/08/98. SRS 50059 + O + 1 videocassettes (VHS; 0:51:21) + 1998 October 08 + Dub Date: 1998 October + 09 + 1063 + + + + + Levin: Levin-Glenn. SRS 50181 0 + 1 videocassettes (Betacam; 0:14:54) + 1998 October 23 + 1063 + + + + + Levin: Live Satellite. Satel. I/V w/Michgan TV Station Re: Bin Laden + tape + 1 videocassettes (VHS; 0:05:00) + 2001 December 13 + 1056 + + + + + Levin: Meet the Press. Levin & Rick Santorum Re Iraq, economy, Sen. + Lott. SRS + 1 videocassettes (VHS; 1:00:00) + 2002 December 15 + 1053 + + + + + Levin: Meet the Press. Re Iraq. SRS 69134 + 1 videocassettes (VHS; 0:48:00) + 2002 August 11 + 1067 + + + + + Levin: NBC Dateline - Sweepstakes Story. SRS + 1 videocassettes (VHS; 1:00:00) + 1999 July 21 + 1087 + + + + + Levin: NBC Today Show Segment. Border Patrol Whistleblowers - Mark Hall. + Bob Lindemann. SRS + 1 videocassettes (VHS; 0:05:30) + 2002 March 25 + 1067 + + + + + Levin: News Hour Segment. SRS 43088 O + 1 videocassettes (VHS; 0:14:30) + 1997 May 20 + 1063 + + + + + Levin: News Hour. Levin and Fred Thompson. Re FBI intelligence failures, + Independent Commission. SRS 67892 + 1 videocassettes (VHS; 1:00:00) + 2002 May 28 + 1067 + + + + + Levin: News Hour. Re SASC Chairmanship. Switch from Republican to + Democrat. SRS 62267 + 1 videocassettes (VHS; 1:00:00) + 2001 June 12 + 1056 + + + + + Levin: Nightly Business Report. Re SASC Chairmanship PSI gas + investigation. SRS 62213 + 1 videocassettes (VHS; 0:30:00) + 2001 June 06 + 1056 + + + + + Levin: PBS Frontline 9:00 PM - 11:00 AM "The Clinton Years" (No Levin + I/V) SRS JOB#: 59990 + 1 videocassettes (VHS; 2:00:00) + 2001 January 16 + 1056 + + + + + Levin: PBS News Hour. Levin & Sen Lugar re Iraq. SRS + 1 videocassettes (VHS; 1:00:00) + 2002 December 10 + 1066 + + + + + Levin: PBS Newshour. SRS + 1 videocassettes (VHS; 1:00:00) + 2001 October 10 + 1056 + + + + + Levin: Pictel. Videoconference with 3 Southwest Michigan High Schools - + Eauclaire, Lake Shore and Dowagiac HS. Job#: 57103. SRS + 1 videocassettes (VHS; 0:45:00) + 2000 May 15 + 1069 + + + + + Levin: Pictel. Videoconference with Benton Harbor HS, Buchanan HS and + Eau(/Eav?) Claire HS. SRS 60731 + 1 videocassettes (VHS; 0:40:00) + 2001 March 09 + 1056 + + + + + Levin: Portage Public Schools. SRS 44313 O + 1 videocassettes (VHS; 0:02:04) + 1997 August 04 + 1057 + + + + + Levin: Press Conference "Auto Parts". SRS 46548 0 + 1 videocassettes (VHS; 1:00:00) + 1998 February 04 + 1085 + + + + + Levin: Press Conference. SASC - DOD auth. bill press conference w/Warner. + SRS + 1 videocassettes (VHS; 0:22:00) + 2002 November 13 + 1067 + + + + + Levin: PSAS. SRS 41506 0 + 1 videocassettes (Betacam; 4x30 seconds) + 1997 February 28 + 1059 + + + + + Levin: Q&A SRS + 1 videocassettes (VHS; 0:23:25) + 1999 October 13 + 1069 + + + + + Levin: RTV-Gallery, Ch 1 - Primary. M. Long, Digital 1 of 1. + 23:00 + 1 videocassettes (Betacam) + 2002 November 13 + 1064 + + + + + Levin: Satellite Feed. I/V w/Emery King of WDIV-TV Re UN Iraq resolution. + SRS + 1 videocassettes (VHS; 0:15:00) + 2002 November 08 + 1067 + + + + + Levin: Sen. Floor Coverage 10/10/02 12:00 PM - 4:00 PM. Iraq re solution + debate. SRS + 1 videocassettes (VHS; 4:00:00) + 2002 November 12 + 1066 + + + + + Levin: Senate Floor From 5P until 11PM. Iraq resolution debate. SRS + 70039 + 1 videocassettes (VHS; 6:00:00) + 2002 October 09 + 1067 + + + + + Levin: Senate Floor Speech Re judicial nominations + 1 videocassettes (VHS) + 2000 October 03 + 1069 + + + + + Levin: Swearing-In & Re-Enactment. SRS 40721 O + 1 videocassettes (VHS; 0:28:00) + 1997 January 07 + 1063 + + + + + Levin: This Week. Levin and Sen. Jon Kul Re: North Korea. SRS + 70843 + 1 videocassettes (VHS; 1:00:00) + 2002 December 29 + 1053 + + + + + Levin: Trial of Borislav Herak. SRS 40739 O + 1 videocassettes (VHS; 1:26:00) + 1997 January 07 + 1057 + + + + + Levin: Voodoo Economics + 1 videocassettes (DVCPro) + 1999 August 06 + 1095 + + + + + Levin: Yellowtail AD. SRS + 1 videocassettes (VHS; 0:30) + 1997 September 23 + 1065 + + + + + Levin-Grassley Press Conference. Money Laundering + 1 audiocassettes + 2001 October 10 + 1096 + + + + + Lifetyle Magazine Profile + 1 audiocassettes + 1997 March 06 + 1098 + + + + + Lindsey Sobel. The Hill Brothers Levin int. + 1 audiocassettes + 1997 March 13 + 1098 + + + + + Line Item Veto Interviews Post, CQ + 1 audiocassettes + 1997 January 02 - 1997 January 03 + 1098 + + + + + Lisa Zagarolli Det News QDR + 1 audiocassettes + 1997 May 19 + 1098 + + + + + Live interview w/wPHM John Hill Re US-China Spy plane + incident + 1 audiocassettes + 2001 April 06 + 1096 + + + + + Lou Dobbs Moneyline - Re Enron Hearing; News Hour - I/V w/Gwen Ifil. + Levin & Susan Collins - Re Ehron hrg; Taped replay of all the evening news + broadcasts (some had coverage of hrg, some did not). Also taped replay of News + Hour; CNN - Novak, Hunt & Shields. Re Iraq, Corp. responsibility; CBS Face The + Nation - Levin and Chuck Hagel; CNN "Wolf Blitzer Reports" - Levin & Hagel Re + Iraq + 1 videocassettes (VHS) + 2002 July 30 + 2002 July 30 + 2002 July 30 + 2002 August 03 + 2002 August 04 + 2002 September 04 + 1067 + + + + + LSJ interview on VP Gore; Freep interview on Hank Greenberg + 1 audiocassettes + 2000 March 06 + 2000 March 10 + 1096 + + + + + Madison School District, Madison Heights, Michigan - School Construction + Initiative + 1 videocassettes (VHS) + undated + 1059 + + + + + Meet The Press + 1 videocassettes (VHS) + 1999 December 19 + 1105 + + + + + MI Daily interview on literacy tutoring + Actu. 314 - Drug $ for + Detroit + 1 audiocassettes + 1997 February 24 + 1098 + + + + + MI Tom Cress - DNA Case - Hearing WOTV + 1 videocassettes (VHS) + 2001 December 05 + 1081 + + + + + Mich Board of Education Levin remarks + 1 videocassettes (VHS) + 1997 January 28 + 1063 + + + + + Mich Press Briefing + 1 audiocassettes + 2002 January 15 + 1094 + + + + + Mich. Reporters Press Conference + 1 audiocassettes + 1999 January 22 + 1092 + + + + + Michigan - Battleground state - Levin - Fox News + 1 videocassettes (VHS; 0:42:00) + 2000 October 27 + 1069 + + + + + Michigan Local Broadcast News Clips Featuring Carl + 1 videocassettes (VHS) + 1997 August 06 - 1998 July + 01: 1997 August 06 + 1997 August 13 + 1997 august 14 + 1997 October 15 + 1997 October 15 + 1997 October 17 + 1998 February 17 + 1998 February 17 + 1998 February 18 + 1998 February 23 + 1998 June 29 + 1998 June 29 + 1998 June 29 + 1998 June 26 + 1998 July 01 + 1998 July 01 + 1063 + + + + + Michigan Reporters & Levin + 1 audiocassettes + 2002 June 28 + 1094 + + + + + Mimi Han. USA Today, Re Security guard background check bill; WLNS-TV + Lansing Re Mid-Mich Guard - Reserve in Washington; WKZO-Am Kalamazoo Re end of + year in review; Kathy Gray - Freep(?) Re Gove's announcement he's not running for + president + 1 audiocassettes + 2002 December 09 + 2002 December 11 + 2002 December 12 + 2002 December 16 + 1094 + + + + + Mitch Albom Show. Re Elian Gonzalez + 1 audiocassettes + 2000 April 25 + 1096 + + + + + MSNBC Brian WMS The News Boydan Gray Newshour + 1 videocassettes (VHS) + 1997 March 06 + 1063 + + + + + MSNBC Mitch Alborn Show & Ashcroft nomination + 1 videocassettes (VHS) + 2001 February 02 + 1056 + + + + + MSNBC: Sniper Rifles with T. Diaz + 1 videocassettes (VHS) + 2001 May + 1096 + + + + + Nat'l Journal. Newlin-Carney CFR - Tax Exempts + 1 audiocassettes + 1997 July 29 + 1092 + + + + + NBC Nightly News: Levin interview re civilians on submarines - USS + Greenville accident [C-SPAN speech by Clinton at beginning of tape] + 1 videocassettes (VHS) + 2001 February 15 + 1056 + + + + + NBC Today Show w/Levin and Warner re Iraq; NBC Nightly News Re offshore + banks; CNN Moneyline re Bush speech to UN about Iraq; Fox Sunday Morning Show Re + Iraq resolution; MSNBC Taped I/V re Iraq resolution; News Hour - w/Levin & + Bunning. Re Iraq resolution; CNN Moneyline (No Carl I/V) - Story on Harvey Pitt; + CNN Moneyline - Re Homeland Security bill + 1 videocassettes (VHS) + 2002 September 19 + 2002 March 08 + 2002 September 12 + 2002 September 22 + 2002 September 25 + 2002 October 04 + 2002 October 31 + 2002 November 25 + 1067 + + + + + News interviews w/Carl Levin + 1 videocassettes (VHS) + 2001 May - 2001 October: + 2001 May 25 + 2001 May 30 + 2001 July 23 + 2001 September 21 + 2001 September 26 + 2001 October 09 + 2001 October 10 + 1053 + + + + + News re: gas prices (Fox 17, WZZM 13, WOOD TV) + 1 videocassettes (VHS) + 2001 May 29 + 1081 + + + + + News Tape 11 pm Ch.8 WOOD-TV Carl on Peru Shootdown + 1 videocassettes (VHS) + 2001 April 24 + 1081 + + + + + Newshour Re: Yemen/USS Cole Carl & Warner + 1 videocassettes (VHS) + 2000 October 19 + 1069 + + + + + Newsmakers at the Club - CFR + 1 audiocassettes + 1997 April 26 + 1098 + + + + + Nightline - CFR AP-CFR Invest. + 1 audiocassettes + 1997 March 12 + 1098 + + + + + NMD - Kosovo - IC - Medicare - Adoption - Judges - CTBT - Press calls + 3/99-10/99 + 1 audiocassettes + 1999 March - 1999 October: + 1999 March 19 + March 19 + 1999 March 26 + 1999 April 14 + 1999 June 24 + 1999 July 01 + September 21 + September 24 + October 06 + 1098 + + + + + NMD Press Conf. + 1 audiocassettes + 1999 February 19 + 1098 + + + + + Nolan Fihley Re Brac + 1 audiocassettes + 2001 August 02 + 1096 + + + + + NPR - Nina Totenberg Judicial nominations + 1 audiocassettes + 2001 April 24 + 1096 + + + + + NPR "The World" Re: Money Laundering; Macomb Daily Re: Money Laundering; + USA Today Re: War in Afghanistan + 1 audiocassettes + 2001 March 01 + 2001 March 05 + 2001 March 05 + 2001 March 06 + October 26 + 1096 + + + + + NPR All Things Concidered + 1 audiocassettes + 2001 September 14 + 1096 + + + + + NPR Digital Sound of the Future. Tape Number: VHS-N + 1 videocassettes (VHS; 0:05:00) + 1999 May 28 + 1087 + + + + + NPR I/V w/Alberto Gonzales + 1 audiocassettes + 2002 June 04 + 1094 + + + + + NPR interview re: I.C. statute; Post & Reuters re: Yemen/USS + COLE + 1 audiocassettes + 2000 April 06 + 2000 October 18 + 1096 + + + + + NPR interview with Martha re: Ralston + 1 audiocassettes + 1997 June 10 + 1092 + + + + + NPR on tax exempts + 1 audiocassettes + 1997 April 10 + 1098 + + + + + NPR Overby(?) Young Brothers + 1 audiocassettes + 1997 May 08 + 1098 + + + + + NPR USSC Line Item Veto + 1 audiocassettes + 1998 June 25 + 1092 + + + + + NYT call on Sec Cohen/DoD approp.(?) + 1 audiocassettes + 1999 October 27 + 1098 + + + + + NYTimes Frank Bruni impeachment + 1 audiocassettes + 1999 January 05 + 1098 + + + + + NYTimes Peter Mass on NMD + 1 audiocassettes + 1999 May 04 + 1098 + + + + + On this tape: 1) WOOD TV 8 noon Carl education story; 2) WOOD TV 8 5 pm + no Carl; 3) WZZM TV 13 5:30 pm no Carl; 4) WOOD TV-8 6 pm Carl edu. story + 'different than at noon; 5) WOOD TV 8 11 pm no Carl + 1 videocassettes (VHS) + 1997 October 15 + 1055 + + + + + On this Tape: WZZM Ch13 6 pm: Carl at West Ottawa H.S. - Iraq + 1 videocassettes (VHS) + 1998 February 18 + 1055 + + + + + Pat Towell - CQ Defense Budget + 1 audiocassettes + 1997 April 13 + 1098 + + + + + Paul Richter LAT Cohen tenure + 1 audiocassettes + 1997 June 20 + 1092 + + + + + Paul W. Smith - WJR re gas prices 4/30/2002 (A); 4/30/2002Jayne(?) + O'Donnell - USA Today Re gas prices + 1 audiocassettes + 2002 April 30 + 1102 + + + + + Perss Conference w/John Warner re letter to Bush re rise in anti-semitism + - All Side A. Side B - I/V w/Alison Mitchell - NYT - Same issue + 1 audiocassettes + 2002 April 26 + 1102 + + + + + Post-State of Union Comments + 1 audiocassettes + 1999 January 19 + 1098 + + + + + Pre-Recess Press Briefing e/Mich reporters + 1 audiocassettes + 2000 July 28 + 1096 + + + + + President Clinton Remarks at Breslin Center, Michigan State University, + Jan 9 2001 & Franklin D. Roosevelt Wheel Chair Statue Dedication 2 hours Jan + 10 2001 + 1 videocassettes (VHS) + 2001 January 09 + 2001 January 10 + 1052 + + + + + Press Briefing on CFR with MI reporters + 1 audiocassettes + 1999 October 18 + 1999 October 12 + 1098 + + + + + Press Conf Chan 4; Ch 62(?) + 1 audiocassettes + 2002 May 28 + 1094 + + + + + Press Conf w/Mich Press Re Jeffords' Party Switch, SASC + 1 audiocassettes + 2001 May 24 + 1096 + + + + + Press Conf. Levin Fitzgerald. Re: Stock option bill + 1 audiocassettes + 2002 February 13 + 1094 + + + + + Press Conf. Re: Levin - Bond Legislation Re: CAFE + 1 audiocassettes + 2002 March 12 + 1094 + + + + + Press Conf. w/MI Reporters + 1 audiocassettes + 1999 August 06 + 1098 + + + + + Press Conference Dub. Senator Carl Levin. Dub of a transcription tape + from 10.30.97 press conference. Democratic Technology & Communications + Committee Senator Tom Daschle, Democratic Leader Snator Jay Rockefeller, + Chairman + 1 audiocassettes + 1997 October 30 + 1092 + + + + + Press Conference on Bosnia Trip: Senators Carl Levin and Jack Reed. + Senators Levin and Reed review their recent trip to Bosnia and Israel and offer + their thoughts on the U.S. military presence in Bosnia and the peace process. + Democratic Technology & Communications Committee. Senator Tom Daschle, + Democratic Leader Senator Jay Rockefeller, Chairman + 1 audiocassettes + 1998 January 08 + 1092 + + + + + Press. Conf. Scope/Govtl Affairs + 1 audiocassettes + 1997 March 07 + 1098 + + + + + PSI hearing - What is the US Position on Offshore Tax Havens? Witnesses: + Secr/ of Treasury Paul O'Neill, Manhattan DA Robert Morgenthau(?), Sheldon Cohen, + Donald Alexander + 1 videocassettes (VHS) + 2001 July 18 + 1053 + + + + + PSI hrg Enron Investment Banks Oversight of Investment Banks Response to + Lessons of Enron + 1 videocassettes (VHS) + 2002 December 11 + 1053 + + + + + PSI hrg on Border Patrol + 1 videocassettes (VHS) + 2001 November 13 + 1053 + + + + + PSI/Levin: Governmental Affairs, PSI Committee Hearing Tape 2 of 2. The + Role of Financial Institutions in Enron's Collapse. SRS + 1 videocassettes (VHS; 4:00:00) + 2002 July 23 + 1053 + + + + + PSI/Sen. Levin: Governmental Affairs, PSI Committee Hearing Tape 1 of 2. + The Role of Financial Institutions in Enron's Collapse. SRS + 1 videocassettes (VHS; 6:00:00) + 2002 July 23 + 1053 + + + + + Public Education PSA's (11 Versions) + 1 videocassettes (VHS; 0:09:30 (11x:30)) + 1998 September 10 + 1063 + + + + + PWE Public Hearing Tape 1 of 2 + 1 audiocassettes + 1999 May 11 + 1096 + + + + + PWE Public Hearing Tape 2 of 2 + 1 audiocassettes + 1999 May 11 + 1096 + + + + + Radio Interviews - Inauguration - WJR, WJIM + 1 audiocassettes + January 20 + 1997 January 21 + 1098 + + + + + Radio Interviews - WDET-Fm; - WOOD-Am + 1 audiocassettes + 2000 December 06 + 2000 December 05 + 1096 + + + + + Radio Intvw; Children Health Care Coverage Act Ted Efaw Show + 1 audiocassettes + 1997 January 30 + 1098 + + + + + Radio Tour + 1 audiocassettes + 1997 March 19 + 1098 + + + + + Radio Tour + 1 audiocassettes + 1999 November 03 + 1098 + + + + + Radio Tour + 1 audiocassettes + 1999 November 18 + 1098 + + + + + Radio Tour - Stock Options, CWC, FDR, Nuke Waste + 1 audiocassettes + 1997 April 18 + 1997 April 16 + 1098 + + + + + Radio Tour Antrax, anti-terrorism bill + 1 audiocassettes + 2001 October 25 + 1096 + + + + + Radio Tour Enron Hearings + 1 audiocassettes + 2002 July 26 + 1094 + + + + + Radio Tour FDA approval of buprenorphine(?), Iraq resolution + 1 audiocassettes + 2002 October 09 + 1094 + + + + + Radio Tour Hate Crimes Homeland Sec. + 1 audiocassettes + 2002 June 21 + 1094 + + + + + Radio Tour Homeland Security + 1 audiocassettes + 2002 June 12 + 1094 + + + + + Radio Tour Impeachment + 1 audiocassettes + 1999 January 14 + 1098 + + + + + Radio Tour Impeachment trial + 1 audiocassettes + 1999 February 03 + 1098 + + + + + Radio Tour Prescription Drug Coverage under Medicare + 1 audiocassettes + 2002 June 26 + 1094 + + + + + Radio Tour Re Last Presidential Debate + 1 audiocassettes + 2000 October 18 + 1096 + + + + + Radio Tour Re: FAC hearing, SASC hearing + 1 audiocassettes + 2001 February 05 + 1096 + + + + + Radio Tour SASC Persian Gulf War Syndrome(?) + 1 audiocassettes + 1997 February 27 + 1098 + + + + + Radio Tour Sweepstakes - 2000 Sen. Race + 1 audiocassettes + 1999 March 10 + 1098 + + + + + Radio Tour. Budget - tobacco + 1 audiocassettes + 1998 April 01 + 1092 + + + + + Radio Tour. Enron Reform Bill + 1 audiocassettes + 2002 July 09 + 1094 + + + + + Radio Tour. Hate Crimes Homeland Security + 1 audiocassettes + 2002 June 21 + 1094 + + + + + Radio Tour. Prescription Drugs Coverage + 1 audiocassettes + 2002 July 17 + 1094 + + + + + Radio Tour. Re intell hrgs on pre 9/11 failures, Iraq + 1 audiocassettes + 2002 September 25 + 1094 + + + + + Radio Tour. Re Iraq resolution + 1 audiocassettes + 2002 October 02 + 1094 + + + + + Radio Tour. Re Iraq; Intell hrg + 1 audiocassettes + 2002 September 18 + 1094 + + + + + Radio Tour. Re one year anniv. of Sept 11. 2001 + 1 audiocassettes + 2002 September 11 + 1094 + + + + + Radio Tour. Rosa Parks, guns, COATT + 1 audiocassettes + 1999 June 16 + 1098 + + + + + Radio Tour: Bosnia, Cohen, Gingrich, Abortion + 1 audiocassettes + 1997 January 22 + 1098 + + + + + Radio Tour: Unemployment + Compensation extension + 1 audiocassettes + 2002 October 16 + 1094 + + + + + Ratcliff Strategies 2001 Demo Reel + 1 videocassettes (VHS; 0:16:52) + 2001 July 09 + 1053 + + + + + Reax to Scope vote + 1 audiocassettes + 1997 March 11 + 1098 + + + + + Reg Reform Press Conf. w/Thompson + 1 audiocassettes + 1998 February 04 + 1092 + + + + + Rocky, MI GOP Convention, Detroit + 1 videocassettes (VHS) + 2002 August 24 + 1071 + + + + + Rogu Lowenstien WSJ stock options + 1 audiocassettes + 1997 June 25 + 1092 + + + + + Rowley - Gov Affairs; Disaster Aid - Tornado + 1 audiocassettes + 1997 July 08 + 1997 July 11 + 1092 + + + + + Ruby Bailey, Det Free Press re Enron hrg (A); Jeff Birnbarm re Stock + options bill Fortune magazine (A) & (B) + 1 audiocassettes + 2002 May 01 + 1094 + + + + + Ruth Marcus - Side A - indpt c.; Pat Towell - side B - CQ + 1 audiocassettes + 1997 February 26 + 1098 + + + + + Saginaw Education Television. Saginaw Public Schools: Buildings Repair + (Salina Elementary) requested by Sen. Carl Levin + 1 videocassettes (VHS; 0:07:00) + 1997 + 1059 + + + + + SASC Markup - Vernon Loeb, W Post, Esther Schroder, - LAT; Det news Re: + terrorist attack, Mitch Albom(?) - Attacks + 1 audiocassettes + 2001 September 05 + 2001 September 04 + 1096 + + + + + SASC Press Conf. + 1 audiocassettes + 2002 May 10 + 1094 + + + + + SASC role Det. News + 1 audiocassettes + 1997 March 14 + 1098 + + + + + Sat Feed Swearing in Day (Family. Gingrich. bipartisan + spirit) + 1 audiocassettes + 1997 January 07 + 1098 + + + + + Save Medicare - The High Cost of Prescription Drugs: A Bitter + Pill + 1 videocassettes (VHS) + 1999 August 06 + 1062 + + + + + Sen Levin Pakistan Presser R/TV(?) Gallery + 1 videocassettes (Betacam) + 2001 November 26 + 1068 + + + + + Sen Levin: Armed Services Hrg OS Q+A + 1 videocassettes (DVCPro) + 2001 January 11 + 1095 + + + + + Sen Levin: Radio Tour Capitol Holiday Tree + Economic Stimulus + Pkg. + 1 audiocassettes + 2001 December 05 + 1096 + + + + + Sen. Carl Levin Floor Statement + 1 audiocassettes + 1997 January 21 + 1997 January 22 + 1098 + + + + + Sen. Carl Levin: Radio Tour + 1 audiocassettes + 2000 April 05 + 1096 + + + + + Sen. Carl Levin: Radio Tour. Re Jeffords' party Switch - Dem + Senate + 1 audiocassettes + 2001 May 25 + 1096 + + + + + Sen. Levin - NPR All Things Considered + 1 audiocassettes + 2001 September 12 + 1096 + + + + + Sen. Levin Actuality - Chemical Weapons Vote + 1 audiocassettes + 1997 April 18 + 1098 + + + + + Sen. Levin Conference Call. Radio Tour + 1 audiocassettes + 1997 January 29 + 1098 + + + + + Sen. Levin Edison Conference Call + 1 audiocassettes + 1997 February 11 + 1098 + + + + + Sen. Levin Gen. Stump -MNG Award + 1 videocassettes (VHS) + 2001 March 17 + 1081 + + + + + Sen. Levin Govt Affairs Tape 1. Gas Price Hearing St. Attorneys + General/Economists + 1 audiocassettes + 2002 May 02 + 1094 + + + + + Sen. Levin Govt Affairs Tape 2. Gas Price Hearing #2.St. Attorneys + General/Economists + 1 audiocassettes + 2002 May 02 + 1094 + + + + + Sen. Levin Mitch Albom Show. NPR - Neil Conan, Re: U.S. Military Action + in Afghanistan + 1 audiocassettes + 2001 October 09 + 1096 + + + + + Sen. Levin radio tour + 1 audiocassettes + 1999 August 04 + 1098 + + + + + Sen. Levin radio tour + 1 audiocassettes + 1999 July 28 + 1098 + + + + + Sen. Levin Radio Tour + 1 audiocassettes + 1999 October 07 + 1098 + + + + + Sen. Levin Radio Tour + 1 audiocassettes + 1999 October 13 + 1098 + + + + + Sen. Levin Radio Tour + 1 audiocassettes + 1999 October 19 + 1098 + + + + + Sen. Levin Radio Tour + 1 audiocassettes + 1999 September 22 + 1098 + + + + + Sen. Levin Radio Tour + 1 audiocassettes + 1999 May 12 + 1098 + + + + + Sen. Levin Radio Tour CWC, FDR, Roads, TEA(2) + 1 audiocassettes + 1997 April 23 + 1098 + + + + + Sen. Levin Radio Tour Guns, Chinese Espionage + 1 audiocassettes + 1999 May 26 + 1098 + + + + + Sen. Levin Radio Tour Independent Counsel Statute + Dr Mudd + 1 audiocassettes + 1999 February 24 + 1098 + + + + + Sen. Levin Radio Tour. Gas Prices II + 1 audiocassettes + 2002 May 15 + 1094 + + + + + Sen. Levin Radio Tour. Homeland security + 1 audiocassettes + 2002 May 23 + 1094 + + + + + Sen. Levin Radio Tour. Impeachment Trial + 1 audiocassettes + 1999 January 06 + 1098 + + + + + Sen. Levin Radio Tour. Teleconference + 1 audiocassettes + 1997 February 12 + 1098 + + + + + Sen. Levin RTV Gallery 2PM + 1 audiocassettes + 1997 May 22 + 1098 + + + + + Sen. Levin Sat Feed. B.C. Fed Center Announcement + 1 audiocassettes + 1997 March 18 + 1098 + + + + + Sen. Levin sd-342 Radio Tour.Gas Price Hearing #3 St. Attorneys + General/Economists + 1 audiocassettes + 2002 May 02 + 1094 + + + + + Sen. Levin Teleconference. + 1 audiocassettes + 1997 March 13 + 1997 March 12 + 1098 + + + + + Sen. Levin WXYZ - Channel 7 Detroit + 1 audiocassettes + 2001 September 12 + 1096 + + + + + Sen. Levin. Radio Tour CFR, BBA + 1 audiocassettes + 1997 March 05 + 1098 + + + + + Sen. Levin. Radio Tour IC Bill, Dem Caucus, Medicare + 1 audiocassettes + 1999 June 30 + 1098 + + + + + Sen. Levin. Radio Tour TEA(2), FDR, CFR, Roads + 1 audiocassettes + 1997 April 30 + 1098 + + + + + Sen. Levin. Radio Tour. Impeachment, St of Union + 1 audiocassettes + 1999 January 20 + 1098 + + + + + Sen. Levin: ABC Good Morning America (7:30 - 8:00 AM). SRS + 1 videocassettes (VHS; 0:30:00) + 1999 January 25 + 1087 + + + + + Sen. Levin: ABC News (Republican Fundraising) NBC 41325 O. + 2:00 + 1 audiocassettes + 1997 February 20 + 1092 + + + + + Sen. Levin: CBS Face The Nation. SRS + 1 videocassettes (VHS; 0:28:00) + 1999 May 30 + 1087 + + + + + Sen. Levin: CBS News. SRS 45450 O + 1 videocassettes (VHS; 0:29:00) + 1997 October 09 + 1063 + + + + + Sen. Levin: FDR Actuality + 1 audiocassettes + 1997 April 09 + 1098 + + + + + Sen. Levin: Gov't Affairs Statements (10:20 & 11:17). SRS 45004 + O + 1 videocassettes (VHS; 25:00:00) + 1997 September 24 + 1063 + + + + + Sen. Levin: NBC Meet the Press. SRS + 1 videocassettes (VHS; 0:59:00) + 1999 February 28 + 1086 + + + + + Sen. Levin: NBC Meet the Press. SRS + 1 videocassettes (VHS; 0:58:00) + 1999 January 24 + 1086 + + + + + Sen. Levin: Press Conf. Re Trip to Central Asia + 1 audiocassettes + 2001 November 26 + 1096 + + + + + Sen. Levin: Press Conference + 1 audiocassettes + 1997 June 05 + 1092 + + + + + Sen. Levin: PSI Hearing Opening Statement. SRS + 1 videocassettes (Betacam; 0:04:00) + 1998 July 23 + 1063 + + + + + Sen. Levin: Radio Tour + 1 audiocassettes + 1997 July 09 + 1092 + + + + + Sen. Levin: Radio Tour + 1 audiocassettes + 1997 June 18 + 1092 + + + + + Sen. Levin: Radio Tour + 1 audiocassettes + 1997 November 06 + 1092 + + + + + Sen. Levin: Radio Tour + 1 audiocassettes + 1998 February 25 + 1092 + + + + + Sen. Levin: Radio Tour + 1 audiocassettes + 1998 June 10 + 1092 + + + + + Sen. Levin: Radio Tour + 1 audiocassettes + 1999 July 14 + 1098 + + + + + Sen. Levin: Radio Tour + 1 audiocassettes + 1999 September 15 + 1098 + + + + + Sen. Levin: Radio Tour + 1 audiocassettes + 2000 February 02 + 1096 + + + + + Sen. Levin: Radio Tour + 1 audiocassettes + 2000 February 09 + 1096 + + + + + Sen. Levin: Radio Tour + 1 audiocassettes + 2000 January 28 + 1096 + + + + + Sen. Levin: Radio Tour + 1 audiocassettes + 2000 March 22 + 1096 + + + + + Sen. Levin: Radio Tour - SOU + 1 audiocassettes + 1997 February 05 + 1098 + + + + + Sen. Levin: Radio Tour - technology training amendment + 1 audiocassettes + 1998 April 22 + 1092 + + + + + Sen. Levin: Radio Tour Antrax, anti-terrorism bill + 1 audiocassettes + 2001 November 01 + 1096 + + + + + Sen. Levin: Radio Tour CFR + 1 audiocassettes + 1997 October 08 + 1092 + + + + + Sen. Levin: Radio Tour Prescription drugs, Firestone recall + 1 audiocassettes + 2000 September 07 + 1096 + + + + + Sen. Levin: Radio Tour. - Roads, Mtg w/Butler re: Iraq + 1 audiocassettes + 1998 March 04 + 1998 March 05 + 1092 + + + + + Sen. Levin: Radio Tour. Afghanistan, holiday tree, Football bet, + ITC + 1 audiocassettes + 2001 December 14 + 1096 + + + + + Sen. Levin: Radio Tour. Airline Security Bill + 1 audiocassettes + 2001 November 07 + 1096 + + + + + Sen. Levin: Radio Tour. Budget Resolution; Gas Prices + 1 audiocassettes + 2001 May 09 + 1096 + + + + + Sen. Levin: Radio Tour. Budget, CFR + 1 audiocassettes + 2001 March 28 + 1096 + + + + + Sen. Levin: Radio Tour. Bush Tax Cut Plan/Dem alternative + 1 audiocassettes + 2000 March 07 + 2001 March 07 + 1096 + + + + + Sen. Levin: Radio Tour. Cam D. Finance Reform, Ashcraft + nom(?) + 1 audiocassettes + 2001 February 01 + 1096 + + + + + Sen. Levin: Radio Tour. Campaign Finance Reform + 1 audiocassettes + 2001 April 04 + 1096 + + + + + Sen. Levin: Radio Tour. Campaign Finance Reform + 1 audiocassettes + 2001 March 16 + 1096 + + + + + Sen. Levin: Radio Tour. CFR, Educ Tech + 1 audiocassettes + 1997 October 01 + 1092 + + + + + Sen. Levin: Radio Tour. Drilling in The Great Lakes + 1 audiocassettes + 2001 July 25 + 1096 + + + + + Sen. Levin: Radio Tour. Elian Gonzalez + 1 audiocassettes + 2000 April 26 + 1096 + + + + + Sen. Levin: Radio Tour. Gas Price Hearings + 1 audiocassettes + 2002 May 01 + 1094 + + + + + Sen. Levin: Radio Tour. Gas Prices - GAO investigation + 1 audiocassettes + 2001 May 16 + 1096 + + + + + Sen. Levin: Radio Tour. Great Lake Champlain, ISTEAII, NATO, + IRS + 1 audiocassettes + 1998 March 18 + 1099 + + + + + Sen. Levin: Radio Tour. Great Lakes Legacy Act; Iraq; Homeland + Security + 1 audiocassettes + 2002 November 13 + 1094 + + + + + Sen. Levin: Radio Tour. Highway Agreement, tobacco + 1 audiocassettes + 1998 May 20 + 1092 + + + + + Sen. Levin: Radio Tour. HMO Reform, Fire(?) blight + 1 audiocassettes + 1998 July 22 + 1092 + + + + + Sen. Levin: Radio Tour. Inaccurate Prescription Drug Ad in + Mich. + 1 audiocassettes + 2000 October 26 + 1096 + + + + + Sen. Levin: Radio Tour. India, Food safety, skemming(?) + 1 audiocassettes + 1998 May 13 + 1092 + + + + + Sen. Levin: Radio Tour. Intel. Failures + 1 audiocassettes + 2002 June 06 + 1094 + + + + + Sen. Levin: Radio Tour. Iron [illegible] - mtg w/Commerce Secy + Evans + 1 audiocassettes + 2001 April 25 + 1096 + + + + + Sen. Levin: Radio Tour. IRS Reform - Food Safety + 1 audiocassettes + 1998 July 09 + 1092 + + + + + Sen. Levin: Radio Tour. Judicial nominations + 1 audiocassettes + 2000 September 14 + 1096 + + + + + Sen. Levin: Radio Tour. Lake Champlain Highway money + 1 audiocassettes + 1998 March 25 + 1092 + + + + + Sen. Levin: Radio Tour. Lighthouses, Senate missed + opportunities + 1 audiocassettes + 2000 October 11 + 1096 + + + + + Sen. Levin: Radio Tour. -MI Talk Radio - Pro-Vote petition drive; -CAFE + Standards, election reform; -Pro-voks Petition Radio Tour + 1 audiocassettes + February 25 + February 28 + February 04 + 2002 February 28 + 1094 + + + + + Sen. Levin: Radio Tour. Patients Bill of Rights + 1 audiocassettes + 2001 June 20 + 1096 + + + + + Sen. Levin: Radio Tour. PSI hearing on INS Policy + 1 audiocassettes + 2001 November 14 + 1096 + + + + + Sen. Levin: Radio Tour. Re 1st presidential debate + 1 audiocassettes + 2000 October 04 + 1096 + + + + + Sen. Levin: Radio Tour. Re DoD Authorization bill + 1 audiocassettes + 2000 June 07 + 1096 + + + + + Sen. Levin: Radio Tour. Re ESEA reauthorization + 1 audiocassettes + 2001 May 04 + 1096 + + + + + Sen. Levin: Radio Tour. Re Gas Prices + 1 audiocassettes + 2000 June 28 + 1096 + + + + + Sen. Levin: Radio Tour. Re Passage of Homeland Security bill + 1 audiocassettes + 2002 November 20 + 1094 + + + + + Sen. Levin: Radio Tour. Re Patients Bill of Rights + 1 audiocassettes + 2001 June 29 + 1096 + + + + + Sen. Levin: Radio Tour. Re Section 527 loophole + 1 audiocassettes + 2000 May 17 + 1096 + + + + + Sen. Levin: Radio Tour. Re Stem Cell Research + 1 audiocassettes + 2001 July 20 + 1096 + + + + + Sen. Levin: Radio Tour. Re Tax Cuts + 1 audiocassettes + 2001 February 16 + 1096 + + + + + Sen. Levin: Radio Tour. Re taxbill, gas prices, Jeffords' + Switch + 1 audiocassettes + 2001 May 23 + 1096 + + + + + Sen. Levin: Radio Tour. Re: Afghanistan, Bush's decision on Sted(?) + im. + 1 audiocassettes + 2002 March 06 + 1094 + + + + + Sen. Levin: Radio Tour. Re: Border Security + Middle East + 1 audiocassettes + 2002 April 17 + 1094 + + + + + Sen. Levin: Radio Tour. Re: Buprenorphine + 1 audiocassettes + 2000 September 28 + 1096 + + + + + Sen. Levin: Radio Tour. Re: CAFE + 1 audiocassettes + 2002 March 15 + 1094 + + + + + Sen. Levin: Radio Tour. Re: Campaign Finance Reform + 1 audiocassettes + 2002 March 20 + 1094 + + + + + Sen. Levin: Radio Tour. Re: Campain Finance + Stock option + DoD(?) + 1 audiocassettes + 2002 February 14 + 1094 + + + + + Sen. Levin: Radio Tour. Re: Commerce Dept(?) Sect 232 Field(?) + Hearing + 1 audiocassettes + 2001 July 13 + 1096 + + + + + Sen. Levin: Radio Tour. Re: GAC hearing on Enron + 1 audiocassettes + 2002 January 24 + 1094 + + + + + Sen. Levin: Radio Tour. Re: Gas Prices + 1 audiocassettes + 2000 July 12 + 1096 + + + + + Sen. Levin: Radio Tour. Re: Gas Prices + 1 audiocassettes + 2000 June 21 + 1096 + + + + + Sen. Levin: Radio Tour. Re: Homeland Security, Iraq + 1 audiocassettes + 2002 September 04 + 1094 + + + + + Sen. Levin: Radio Tour. Re: PSI Gas Hearings + 1 audiocassettes + 2002 April 10 + 1094 + + + + + Sen. Levin: Radio Tour. Re: Share holders' Bill of Rights + 1 audiocassettes + 2002 April 24 + 1094 + + + + + Sen. Levin: Radio Tour. Re: State of the Union + 1 audiocassettes + 2002 January 30 + 1094 + + + + + Sen. Levin: Radio Tour. Red WMQS Victory! + 1 audiocassettes + 1998 June 17 + 1092 + + + + + Sen. Levin: Radio Tour. Roads, CFR, fast track + 1 audiocassettes + 1997 September 17 + 1092 + + + + + Sen. Levin: Radio Tour. Rx to Bush budget speech, tax cut + plan + 1 audiocassettes + 2001 February 28 + 1096 + + + + + Sen. Levin: Radio Tour. Shift in Senate, Gas Price + Investigation + 1 audiocassettes + 2001 June 06 + 1096 + + + + + Sen. Levin: Radio Tour. UP - Steel Sect 232 investigation; Senate + shift + 1 audiocassettes + 2001 June 13 + 1096 + + + + + Sen. Levin: Radio Tour. UP stations re Stcel(?) dumping + 1 audiocassettes + 2001 February 07 + 1096 + + + + + Sen. Levin: Radio TV Gallery. Glenn Levin [illegible] re + Thompson/Subpoenas + 1 audiocassettes + 1997 June 05 + 1092 + + + + + Sen. Levin: Senate Floor Statement (Kosovo) For 3:30 PM Feed. + SRS + 1 videocassettes (Betacam) + 1999 March 23 + 1062 + + + + + Sen. Levin: Statement. Press Conf. Int'l Trade Commission rec. on Steel + tariffs + 1 audiocassettes + 2001 December 12 / 2001 + December 11 + 1096 + + + + + Sen. Levin: Teleconference. Radio Tour - North Country Trail, + Arcadia + 1 audiocassettes + 1997 June 04 + 1092 + + + + + Senate Democratic Education Technology Forum: The Public-Private + Partnership. Democratic Technology & Communications Committee. United States + Senate + 1 videocassettes (VHS; 0:01:06) + 1997 October 01 + 1059 + + + + + Senator Carl Levin Faith Based Summit Conference + 1 videocassettes (VHS) + 1998 June 16 + 1063 + + + + + Senator Carl Levin Floor Speech + 1 videocassettes (VHS) + 2000 April 05 + 1081 + + + + + Senator Carl Levin interview with Senator John Glenn. Tape 1 + 1 videocassettes (Betacam) + 1998 September 29 + 1063 + + + + + Senator Carl Levin WOOD TV 8 50th Anniversary :30 Historical + Vignette + 1 videocassettes (VHS; :30) + 1999 November 19 + 1062 + + + + + Senator Carl Levin: Local News Segments. SRS 64771 + 1 videocassettes (VHS; 0:09:00) + 2001 November 13 + 1058 + + + + + Senator Carl Levin's Press Conference "Auto Parts" incl. Price Comparison + in the auditorium of U.S. Embassy Tokyo. NTSC (English version). Channel - 1 + English; Channel - 2 Floor Sound. Mater + 1 videocassettes (Betacam) + 1998 January 14 + 1063 + + + + + Senator Levin CH 10 "First Michigan" + 1 videocassettes (VHS) + 2001 March 17 + 1081 + + + + + Senator Levin Defense Spending P.C. + 1 videocassettes (VHS) + 2002 May 10 + 1067 + + + + + Senator Levin in Grand Rapids + 1 videocassettes (VHS) + 1997 August 13 + 1071 + + + + + Senator Levin on MSNBC - Regards - Karin Weinberg MSNBC Producer + 201.394.1065 + 1 videocassettes (VHS) + 1999 January 16 + 1086 + + + + + Senators Stabenow & Levin Ernie Harwell Senate Resolution. Harriman + Communications Center, Wash., DC. + 1 videocassettes (VHS) + 2002 September 13 + 1095 + + + + + Service For Judith Lowe Knopper - The IRA Kaufman Chapel, + Inc. + 1 audiocassettes + 1998 November 01 + 1102 + + + + + Sheila Foote - NMD + 1 audiocassettes + 1999 March 19 + 1098 + + + + + Side A: WSJ on Stock options; Side B: Impeachment + 1 audiocassettes + 1999 February 05 + 1999 February 06 + 1098 + + + + + Skupin - Fox News Channel + 1 videocassettes (VHS) + 2001 June 26 + 1056 + + + + + SOTU reacts + 1 audiocassettes + 2002 January 29 + 1094 + + + + + Sperling Breakfast. Senator Carl Levin + 1 audiocassettes + 1998 July 10 + 1092 + + + + + Spotlight/Levin Bosnia Ch 7 Detroit + 1 videocassettes (VHS) + 1997 August 14 + 1055 + + + + + Starr Quote from CBS News - Re: Lewinsky Ct.(?) order + 1 audiocassettes + 1999 January 24 + 1099 + + + + + State of the Union + 1 audiocassettes + 1997 February 04 + 1098 + + + + + State of Union reacts (Independent counsel comments) + 1 audiocassettes + 1998 January 27 + 1092 + + + + + Swearing in reception (Gore, O'Brien Interview Kennedy + remarks) + 1 audiocassettes + 1997 January 07 + 1092 + + + + + Tape is set to Carl's story. WOOD TV-8 6 pm - Carl's sweepstakes hearing + WOOD 11 pm - no Carl + 1 videocassettes (VHS) + 1998 September 01 + 1055 + + + + + The American Bar Association Dialogue on Freedom Cooley High School + Detroit, MI + 1 videocassettes (VHS) + 2002 May 06 + 1071 + + + + + The Cameron Knowles Show WSGW Saginaw "Tax Cuts" + 1 audiocassettes + 2001 March 14 + 1096 + + + + + The News Hour w/Jim Lehrer, Sen Carl Levin & Dep Sec Sef Paul + Wolfowitz re natural missile defense + 1 videocassettes (VHS) + 2001 July 12 + 1056 + + + + + The News Hour with Jim Lehrer + 1 videocassettes (VHS; 0:54:10) + 1998 June 10 + 1055 + + + + + The newshour with Jim Lehrer "Changing Chairmanship" - SASC - Levin & + Warner + 1 videocassettes (VHS) + 2001 June 12 + 1064 + + + + + The Role of the Financial Institutions in Enron's Collapse. PSI + hearing + 1 videocassettes (VHS) + 2002 July 23 + 1053 + + + + + This Week, Campaign Finance + 1 videocassettes (VHS) + 1997 March 02 + 1057 + + + + + Tony Capaccio Def News/Commando Solo + 1 audiocassettes + 1997 August 01 + 1092 + + + + + Tribute to Jerry Linenger Astronaut Summit(?) '97 + 1 videocassettes (Betacam) + 1997 July 23 + 1059 + + + + + TV interviews [some day time show at beginning of tape] 8/5/02 NBC + Nightly News - Re Iraq [two showings] [9/11/2002 - Called SRS and ordered ABC + Nightline for 9/4/02 and NBC Nightly News on 9/5/02. Can get Those tapes after Nov + 5. 2002] [1 line is crossed out] 9/5/2002 NBC Nightly News Re Iraq + 1 videocassettes (VHS) + 2002 September 05 + 2002 September 11 + 2002 September 05 + 1067 + + + + + Various Committee hearings + 1 videocassettes (VHS) + 2001 December - 2002 April: + 2001 December 12 + 2002 January 24 + 2002 January 29 + 2002 February 12 + 2002 April 18 + 1053 + + + + + Various Floor Speeches + 1 videocassettes (VHS) + 2002 October 04 to 2003 + July 15: 2002 October 04 + 2002 October 16 + 2003 January 09 + 2003 July 15 + 1081 + + + + + Various Interviews (1) Sept. 2003 + 1 videocassettes (VHS) + 2003 September + 1053 + + + + + Various TV interviews w/Carl Levin + 1 videocassettes (VHS) + 2002 December - January + 2003: 2002 December 10 + 2002 December 11 + 2002 December 15 + 2003 January 07 + 2003 January 12 + 2003 January 15 + 2003 January 28 + 1081 + + + + + VOA interview + 1 audiocassettes + 1999 April 24 + 1098 + + + + + W. Post Edi Bd re: NMD + 1 audiocassettes + 2001 April(?) 02 + 2001 April 15 + 2001 September 10 + 1096 + + + + + WACO Debate-Levin Fox News Network + 1 videocassettes (VHS) + 1999 spring? + 1069 + + + + + Warren Pierce Radio Show Ind Couns - Iraq - Asia Trip + 1 audiocassettes + 1998 February 02 + 1092 + + + + + Wash Post - interview w/Walter Pincus DoD Conf Report + 1 audiocassettes + 1999 August 06/1999 August + 16 + 1098 + + + + + WCRZ, WWCK, MI Talk Radio Terrorist Attacks + 1 audiocassettes + 14-Sep + 1096 + + + + + WDIV Detroit. Flashpoint + 1 videocassettes (VHS) + 2001 January 17 + 1056 + + + + + WJR - Paul W. US Strikes in Afghanistan + 1 audiocassettes + 2001 October 09 + 1096 + + + + + WJR - Paul W. WGVU - Steve Ruba Dr. Mudd + 1 audiocassettes + 1999 February 23 + 1098 + + + + + WJR Interview Iraq, Bush Economic Summit + 1 audiocassettes + 2002 September 13 + 1094 + + + + + WJR Terrorist Attacks + 1 audiocassettes + 2001 September 14 + 1096 + + + + + WJR, WJBK, WWJ, WTC + Pentagon Attacks + 1 audiocassettes + 2001 September 12 + 1096 + + + + + WKXO-Am Kalamazoo - Dave Jaconette Re antrax in Senate, war on terrorism; + Dave Scott - Michigan Talk Radio re reverse inspections; "Good Day, USA" w/Doug + Stephan & Ellen Ratner re Enron; Laurie Lounsbury - Mich Talk Radio Network Re + Enron; Deb Price - DeNaur re Econ Stim PLan; Art Lewis WSGW-Am (Saginaw) Several + issues - CFR, Pro-voters, Afghanistan; WWJ Re fuel standards + 1 audiocassettes + 2001 October 16 + 2002 January 10 + 2002 January 10 + 2002 January 10 + 2002 January 15 + 2002 March 04 + 2002 March 13 + 1096 + + + + + WKZO(?) Womens Business Apple Juice Dump, Cops, Budget + 1 audiocassettes + 1999 November 18 + 1098 + + + + + WNEM-TV5 broadcast Carl: Garrett Russell Event + 1 videocassettes (VHS) + 1997 August 14 + 1063 + + + + + WOOD Ch8 6 pm Carl in GR for budget cut - story 13 on Amway tax cuts. To: + Tara; Fr: Paul + 1 videocassettes (VHS) + 1997 August 06 + 1055 + + + + + WOOD Radio Kosovo, guns + 1 audiocassettes + 1999 May 16 + 1092 + + + + + WOOD TV Ch.8 re: Senate Control; WWMT Ch.3 - Response to Bush visit in + Kalamazoo + 1 videocassettes (VHS) + 2001 May 25 + 2001 March 27 + 1081 + + + + + WOOD TV-8 11 PM News Levin remarks SOTU + 1 videocassettes (VHS) + 2000 January 27 + 1069 + + + + + WOOD TV-8 11pm Carl Re: State of the Union + 1 videocassettes (VHS) + 2002 January 29 + 1067 + + + + + WOOD TV-8 6pm; WXMF Fox-17 10pm; TV-8 11pm - no Carl + 1 videocassettes (VHS) + 2001 December 15 + 2001 December 15 + 2001 December 15 + 2001 December 28 + 1056 + + + + + WOOD-AM Corp. Reform, PSI hearing, Enron Homeland Security, w/Rich + James(?) + 1 audiocassettes + 2002 July 26 + 1102 + + + + + WOOD-TV 8 w/Larry Nienhaus Re: Clinton Budget prop + 1 videocassettes (VHS) + 2000 + 1069 + + + + + WOOD-TV, Ch.8 5+5:30 pm news no Carl at 5. Carl on at 5:30 talking about + Kosovo, Carl in town for medicare perscription drug event + 1 videocassettes (VHS) + 1999 July 09 + 1062 + + + + + WOOD-TV, WZZM-TV, WXMI-TV + 1 videocassettes (VHS) + 2000 November 17 + 2000 November 18 + 1069 + + + + + WOOD-TV8 Carl interviewed on Iraq 5:30 pm news - Carl; 6:00 - news - + Carl; 11:00 pm news - no Carl + 1 videocassettes (VHS) + 2002 October 11 + 1067 + + + + + WOTV 41 Carl Levin Presents William Avery a Purple Heart, 2 Stories 6:00 + & 11:00 News + 1 videocassettes (VHS) + 2001 April 09 + 1081 + + + + + WOTV Ch. 41 6+11pm Battle Creek anti-smoking event - Carl's story on both + broadcasts + 1 videocassettes (VHS) + 1998 July 01 + 1055 + + + + + WP - Brad Graham Intvw on Bosnia + 1 audiocassettes + 1997 January 19 + 1098 + + + + + WP. Bradley Graham QDR - A; NYT. Phil Sheenan Cohen - QDR-B + 1 audiocassettes + 1997 May 16 + 1098 + + + + + WPost interview on I.C. Statute + 1 audiocassettes + 1998 October 09 + 1092 + + + + + WSJ Interview w/Yochi. Re: Bankruptcy cram dorm(?) + 1 audiocassettes + 2000 April 11 + 1096 + + + + + WWMT 3 CL Augusta Aemory Opening SAC Question, PSI Gas + Comment + 1 videocassettes (VHS) + 2001 June 18 + 1056 + + + + + WWMT Ch.3 5:00, 5:30, 6:00 + 11:00 pm news; Bush in Kalamazoo; Carl on at + 5:30, 6 pm + 11 pm + 1 videocassettes (VHS) + 2001 March 27 + 1081 + + + + + WXMI Fox News Ch.17 - 10 pm - Tape is set to Carl's gun control + statement + 1 videocassettes (VHS) + 1999 May 06 + 1087 + + + + + WXYZ-TV CH7 Detroit interview re Bush briefing in Aug 2001 re hijacking + [illegible] + 1 audiocassettes + 2002 May 16 + 1102 + + + + + WXYZ-TV Detroit DUB Border Patrol Whistleblowers + 1 videocassettes (VHS) + 2001 November 16 + 1056 + + + + + WZZM - TV 13 6PM - Carl's GR education event + 1 videocassettes (VHS) + 1997 October 15 + 1055 + + + + + WZZM (Grand Rapids) gas Story + 1 videocassettes (VHS) + 2000 June 14 + 1069 + + + + + WZZM TV 13 5:30 pm - no Carl, 6pm - Carl Sweepstakes(?) story (tape is + set here); 11 pm - Extensive Sweepstakes story + 1 videocassettes (VHS) + 1999 December 16 + 1087 + + + + + WZZM TV-13 11pm Re: Carl on the State of the Union + 1 videocassettes (VHS) + 2002 January 29 + 1067 + + + + + WZZM TV-13 6+11 PM News Levin visits Census Story on both + broadcasts + 1 videocassettes (VHS) + 2000 March 12 + 1069 + + + + + Year-end Press Briefing w/MI Reporters + 1 audiocassettes + 2000 October 27 + 1096 + + + +
    + + + 2003-2008 + + +

    (108th-110th Congress)

    +
    + + + Administrative and Office Files + 1998-2009 + + + + Action file -- Historical marker for Harrington Hotel + 2004-2005 + 111 + + + + + Accomplishments FY2007 (A. Pascale) + 197 + + + + + 70th Birthday staff memory book + 2004 + 197 + + + + + Correspondence-Pilot project report: InterTrace by + ComputerWorks + May 2003 + 197 + + +

    (New constituent correspondence management system)

    +
    +
    + + + Correspondence + + + + Air Force + 2004 + 2006 + 197 + + + + + American Task Force on Palestine + 2006 + 197 + + + + + Army + 2003-2006 + 197 + + +

    (Includes two photographs of Levin with Francis Harvey)

    +
    +
    + + + Auction items + 2006-2007 + 197 + + + + + Berlin, Jerry -- eulogy + May-June 2003 + 197 + + + + + C + 2005 + 2003 + 197 + + +

    (Includes a photograph)

    +
    +
    + + + Colleagues + + + + 2003 + 197 + + +

    (Includes a photograph of Carl and Barbara)

    +
    +
    + + + 2 folders + 2003-2005 + 197 + + + + + 2004 + 197 + + +

    (Includes photographs)

    +
    +
    +
    + + + Department of Defense (DOD) + 2005 + 197 + + + + + Department of State + 2001-2006 + 197 + + + + + Driker, Eugene + 2008 + 1998-2004 + 197 + + + + + Enron + January 2007 + 197 + + + + + Federal agencies and Departments + June 2007-October 2009 + 197 + + + + + Ford Motor Co. + February 2007 + 197 + + + + + Forged embassy letters + September-October 2002 + 197 + + +

    (Letters sent on close copy of Levin stationary to Ambassadors around the + world)

    +
    +
    + + + G + 2003-2004 + 197 + + + + + Granholm, Jennifer + 2006-2008 + 197 + + +

    (Governor of Michigan)

    +
    +
    + + + Hart-Dole-Inouye Federal Center + 2002-2004 + 197 + + + + + Iraq -- Michael Granoff + February 8, + 2007 + 197 + + + + + King, Larry + November 29, + 2006 + 197 + + + + + Korb, Jack L. + July 2008 + 197 + + + + + Letters of support + 2003-2006 + 197 + + + + + Mc + 2003 + 197 + + + + + Mazda 6 at Flat Rock Plant + July 23, 2008 + 197 + + +

    (congrats on Mazda Ford plant)

    +
    +
    + + + Michigan Department of Transportation (MDOT) + April 2007 + 197 + + + + + Michigan State University (MSU) + 2005 + 197 + + + + + Microsoft + October 2006 + 197 + + + + + Minister of Defense HE Field Marshall Mohamed Hussein + Tantawi + March 10, + 2006 + 197 + + + + + Miscellaneous + + + + September 2006-January 2007 + 197 + + + + + 2009 + 2007 + 197 + + + + + + N + 2005-2006 + 197 + + + + + Navy + 2005-2006 + 197 + + + + + O + 2003-2006 + 198 + + + + + P + 2003-2008 + 198 + + + + Our Polish Story - Family, Faith And Fortitude: Detroit's Polish + Heritage + 2007 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + + +

    [access part 4]

    +
    +
    + + +

    [access part 5]

    +
    +
    + + +

    [access part 6]

    +
    +
    + + +

    [access part 7]

    +
    +
    + + +

    [access part 8]

    +
    +
    + + +

    [access part 9]

    +
    +
    + + +

    [access part 10]

    +
    +
    + + +

    [access part 11]

    +
    +
    + + +

    [access part 12]

    +
    +
    + + +

    [access part 13]

    +
    +
    + + +

    [access part 14]

    +
    +
    + + +

    [access part 15]

    +
    +
    + + +

    [access part 16]

    +
    +
    + + +

    [access part 17]

    +
    +
    + + +

    [access part 18]

    +
    +
    + + +

    [access part 19]

    +
    +
    + + +

    [access part 20]

    +
    +
    + + +

    [access part 21]

    +
    +
    + + +

    [access part 22]

    +
    +
    + + +

    [access part 23]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Documentary on the Polish community in + Detroit.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + Political + 2004-2005 + 198 + + +

    (Includes a photograph)

    +
    +
    + + + Robbins, Todd + 2003 + 198 + + + + + S + 2002-2006 + 198 + + + + + Stamp collecting + 2000-2005 + 198 + + + + + Stem Cell ballot initiative + 2008 + 198 + + + + + T + 2003-2006 + 198 + + + + + Taubman, Robert + 2003-2006 + 198 + + + + + Tax exemption letters + 2006 + 198 + + + + + Thank you + 2 folders + 2005 + 198 + + +

    (Includes photographs)

    +
    +
    + + + University of Michigan + + + + 2003-2004 + 198 + + +

    (Levin guest lecturer)

    +
    +
    + + + Affirmative Action + 2003-2004 + 198 + + + + + School of Business, (Levin guest lecturer) + 2004 + 198 + + +
    + + + V + 2003-2004 + 198 + + + + + W + 2004-2006 + 198 + + + + + Waren, Philip, (Century International Arms Inc.) + 2003-2004 + 198 + + + + + Wasserman, Benny + 2004 + 198 + + +

    (Levin notes onPresidents: The Teenage Years . + This book was later published as President's Were + Teenagers Too and Levin wrote the Foreword)

    +
    +
    + + + White House -- Karl Rove stamps + May 9, 2006 + 198 + + +

    (Deputy Chief of Staff and Senior Advisor)

    +
    +
    + + + X and Z + 2003 + 198 + + +
    + + + Democratic National Convention + July-August 2004 + 198 + + +

    (Includes a photograph)

    +
    +
    + + + Guestbooks + + + + January 2005-May 2007 + 198 + + + + + 2007-2008 + 198 + + + + + + Levin's legislative activity summaries + 2003-2006 + 199 + + + + + Levin's legislative record + 2 folders + 2008 + 199 + + + + + Schedules + + + + Michigan + 2 folders + October 2002-June 2004 + 199 + + + + + 2003 + + + + January + 3 folders + 199 + + + + + February + 3 folders + 199 + + + + + March + 3 folders + 199 + + + + + April + 3 folders + 199 + + + + + May + 6 folders + 200 + + + + + June + 3 folders + 200 + + + + + July + 4 folders + 200 + + + + + August + 2 folders + 200 + + + + + September + 3 folders + 200 + + + + + October + 4 folders + 200 + + + + + November + 2 folders + 200 + + + + + December + 5 folders + 200 + + + + + + 2004 + + + + January + 4 folders + 200 + + + + + February + 4 folders + 200 + + + + + March + 2 folders + 200 + + + + + April + 4 folders + 201 + + + + + May + 6 folders + 201 + + + + + June + 4 folders + 201 + + + + + July + 3 folders + 201 + + + + + August + 6 folders + 201 + + + + + September + 5 folders + 201 + + + + + October + 2 folders + 201 + + + + + October + 7 folders + 202 + + + + + November + 3 folders + 202 + + + + + December + 2 folders + 202 + + + + + + 2005 + + + + January + 3 folders + 202 + + + + + February + 3 folders + 202 + + + + + March + 3 folders + 202 + + + + + April + 4 folders + 202 + + + + + May + 3 folders + 202 + + + + + May + 2 folders + 202 + + + + + June + 4 folders + 202 + + + + + July + 3 folders + 203 + + + + + August + 3 folders + 203 + + + + + September + 4 folders + 203 + + + + + October + 4 folders + 203 + + + + + November + 4 folders + 203 + + + + + December + 3 folders + 203 + + + + + + 2006 + + + + January + 4 folders + 203 + + + + + February + 5 folders + 203 + + + + + March 3-6 + 203 + + + + + April + 2 folders + 203 + + + + + May + 4 folders + 204 + + + + + June + 2 folders + 204 + + + + + July + 5 folders + 204 + + + + + August + 4 folders + 204 + + + + + September + 4 folders + 204 + + + + + October + 7 folders + 205 + + + + + October-Andy Levin schedule + 205 + + + + + November + 4 folders + 205 + + + + + December 14-15 + 205 + + + + + + 2007 + + + + January + 2 folders + 205 + + + + + January + 2 folders + 205 + + + + + February + 3 folders + 205 + + + + + March + 4 folders + 205 + + + + + April + 4 folders + 205 + + + + + May + 3 folders + 205 + + + + + June + 3 folders + 206 + + + + + July + 5 folders + 206 + + + + + August + 2 folders + 206 + + + + + September + 4 folders + 206 + + + + + October + 3 folders + 206 + + + + + November + 4 folders + 206 + + + + + November 2-5 + 206 + + + + + December + 2 folders + 206 + + + + + + 2008 + + + + January + 3 folders + 206 + + + + + February + 4 folders + 207 + + + + + March + 2 folders + 207 + + + + + April + 2 folders + 207 + + + + + May + 4 folders + 207 + + + + + June + 4 folders + 207 + + + + + July + 3 folders + 207 + + + + + August + 5 folders + 207 + + + + + September + 4 folders + 207 + + + + + October + 3 folders + 208 + + + + + October + 6 folders + 208 + + + + + November + 3 folders + 208 + + + + + December 15 + 208 + + + + + + Daily + + + + September 2003-2004 + 208 + + + + + January-September 2005 + 208 + + + + + + Invitation acceptances + + + + Michigan acceptances + + + + January-August 2005 + 208 + + + + + September-December 2005 + 209 + + + + + + Washington D.C. acceptances + 10 folders + January-December 2005 + 209 + + + + + + + Staff files + + + + Arenberg, Rich (Legislative Director; R. Arenberg) + + + + 6 folders + 2002 + 209 + + + + + 4 folders + 2003 + 210 + + + + + 4 folders + January-June 2004 + 210 + + + + + 5 folders + July-December 2004 + 210 + + + + + 5 folders + January-April 2005 + 211 + + + + + 5 folders + May-June 2005 + 211 + + + + + 4 folders + July-December 2005 + 211 + + + + + 5 folders + January-May 2006 + 212 + + + + + 5 folders + June-September 2006 + 212 + + + + + 5 folders + October-December 2006 + 212 + + + + + 4 folders + January-April 2007 + 213 + + + + + 3 folders + May-July 2007 + 213 + + + + + 3 folders + August-December 2007 + 213 + + + + + 5 folders + January-June 2008 + 214 + + + + + 3 folders + July-December 2008 + 214 + + + + + + Ben B. + 2012-2014 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Includes legislative aid files on veterans, immigration, armed services, + drugs, and campaign finance.)

    +
    +
    + + + Cash, Evan + 2005 + 214 + + +

    (Includes Medicare, agriculture, Tiger Stadium, etc.; E. Cash)

    +
    +
    + + + Danielson, Jack + 2009-2014 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Legislative Director and Chief of Staff for Levin. Meeting notes, legislative + agenda and priorities, memos, draft statements, talking points on issues + including American Jobs Act, auto, the filibuster, health care, taxes, and + veterans.)

    +
    +
    + + + Ethanol articles and plants, (Michigan industry; energy; C. + Somers) + 2006-2007 + 214 + + + + + Everett, Tim + 2009-2014 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Letters, memos, and draft statements including health care, post office, jobs, + energy, economic policy, and labor.)

    +
    +
    + + + Fellows + 2003-2008 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Topics include smart growth, transportation, and energy and natural + resources.)

    +
    +
    + + + Gellasch, Tyler + 2009-2013 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Counsel to Levin. Topics include Permanent Subcommittee on Investigations + (PSI), financial regulation, bankruptcy, tax issues, debt ceiling, and the auto + industry.)

    +
    +
    + + + Heckart, Robert + 2013-2014 + + + + Part 1 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 2 + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + Kapustij, Carolyn + 2003-2008 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Primarily materials related to Medicare.)

    +
    +
    + + + Keller, Heidi + 2013-2014 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Files of Fellow working on topics such as NOAA, Great Lakes, energy issues, + and appropriations 2013-2015. Also includes LA staff issue assignments.)

    +
    +
    + + + Kiby, Dia + 2010-2012 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Letters, memos, and meeting notes. Legislative correspondent for a variety of + topics including the environment, agriculture, energy and natural resources, + Great Lakes, and senate black legislative staff caucus.)

    +
    +
    + + + Memos + 2007-2008 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Updates on various issue areas including census, financial, medical, + adoption.)

    +
    +
    + + + Molly Moeser + 21 subfolders + 2002-2004 + 214 + + +

    (Miscellaneous but includes travel expense reports, speaking requests, event + attendance, and honorary committees; M. Moeser)

    +
    +
    + + + Muchanic, Christine + 2011-2014 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Includes memos, draft statements, and other background materials on various + topics including automotive, energy and natural resources, NASA, science and + technology, and regulatory reform.)

    +
    +
    + + + R. Moy correspondence + 2004-2005 + 215 + + + + + Noblet, Mike, (M. Noblet) + 2004-2006 + 215 + + +
    +
    + + + Agriculture + 1991-2009 + + + + Agriculture, 1996-1997, 2002-2007 (J. Mulinex) + 1996-2007 + 237 + + + + + MSU-Ammonia Fiber Expansion (AFEX) project, (M.L. Wagner) + 2007-2008 + 237 + + + + + Appropriations + + + + FY2005 (K. Sybenga) + 237 + + + + + Emerald Ash Borer + + + + EAB and backup docs, (J Hekhuis) + 2002 + 237 + + + + + 2003 + 237 + + +

    (H. Keller)

    +
    +
    + + + 2004 + 237 + + +
    +
    + + + Beef-Carbon monoxide and beef (E. Cash) + 7 subfolders + 2006-2007 + 237 + + + + + Commodity Supplemental Food Program (CSFP), (J Hekhuis) + 2002-2005 + 237 + + + + + Conservation Reserve Program IRS issue resolution + January-April 2007 + 237 + + + + + Country of origin labeling (COOL) implementation, (USDA) + September 2008 + 237 + + + + + Disaster relief + November 2005 + 237 + + + + + Ethanol (M.L. Wagner) + + + + American Manufacturing Initiative (AMI) + 2007 + 237 + + + + + E85 ethanol + 2007 + 237 + + + + + Ethanol production + 2006-2007 + 237 + + + + + + Farm bill, (K. Sybenga) + 2007 + 237 + + + + + Farm bill + + + + Part 1 + 18 subfolders + 2007 + 237 + + + + + Part 2 + 13 subfolders + 2007 + 237 + + + + + Title summaries + 2007 + 238 + + + + + + Food Protection Training Institute + May 2009 + 238 + + +

    (Stabenow; K. Sybenga)

    +
    +
    + + + Memos to Carl, 1991-1998, 2003-2006 (J Hekhuis) + 1991-2006 + 238 + + + + + Michigan sugar + July 2007 + 238 + + + + + Michigan Sugar Company + 2005 + 238 + + + + + New Era Canning Company + January-March 2009 + 238 + + +

    (food recall, FDA)

    +
    +
    + + + Nominations -- Secretary of Agriculture + + + + Johanns, (J Hekhuis) + 2005 + 1042 + + + + + Schafer + October-November 2007 + 1042 + + + + + + Poultry slaughter, (K. Sybenga) + 2007 + 238 + + + + + Specialty crops, (K. Sybenga) + 2004 + 238 + + +
    + + + Animal protection-Detroit International Wildlife Refuge + 2003 + 241 + + + + + Business + 2003-2008 + + + + Advanced Technology Program (ATP) + + +

    (Technology Innovation Program -- TIP-succeeds this program; A. Pascale)

    +
    + + + FY2007 budget amendment ATP + 250 + + + + + FY2007 ATP Senate floor + 250 + + + + + FY2008 ATP letter + 250 + + +

    (appropriations in CJS)

    +
    +
    + + + FY2008 ATP and Technology Innovation Program (TIP) conference + appropriations + 250 + + + + + Amendment small business + 2004 + 2006-2007 + 250 + + +

    (Levin amendments)

    +
    +
    + + + Coburn vote America competes + 2007 + 250 + + + + + Event Dearborn + April 2007 + 250 + + +

    (Proposers' Conference with ATP Director Stanley)

    +
    +
    + + + Event Michigan + February 2007 + 250 + + +

    (Includes ECD-GM joint program)

    +
    +
    + + + Levin ATP amendment to America Competes Act + April-May 2007 + 250 + + + + + Meeting + January-March 2007 + 250 + + + + + Michigan consortium to receive ATP grant + October 2007 + 250 + + + + + ATP at National Institute of Standards and Technology + (NIST) + 2005-2006 + 250 + + + + + New ATP data small business + 2003-2007 + 251 + + + + + Votes and funding + 2008 + 251 + + +

    (Includes 1997, 2005 and 2007 votes)

    +
    +
    +
    + + + Small Business and Entrepreneurship Committee (SBC) + + + + Hearings + + + + SBA reauthorization markup hearing briefing folder, (FY2004 Small + Business Intermediary Lending Pilot Program) + 2003 + 254 + + + + + Reauthorization briefing folder + June 4, + 2003 + 254 + + +

    (6 year reauthorization issue; A. Pascale)

    +
    +
    + + + The Impact of Hurricane Katrina on Small Business, (A. + Pascale) + September 22, + 2005 + 254 + + + + + Hurricane Katrina + November 2005 + 255 + + + + + Strengthening Hurricane Recovery Efforts for Small Businesses, (A. + Pascale) + November 8, + 2005 + 255 + + + + + The Reauthorization of SBA's Finance and Entrepreneurial Development + Programs + April 26, + 2006 + 255 + + +

    (Small Business Investment Companies; A. Pascale)

    +
    +
    + + + Sarbanes-Oxley and Small Business: Addressing Proposed Regulatory + Changes and their Impact on Capital Markets + April 18, + 2007 + 255 + + + + + Small Business Act budget hearing + 2007 + 255 + + + + + Women's small business issues and greater access to federal + contracts + 2 folders + January 30, + 2008 + 255 + + +

    ("Holding the Small Business Administration Accountable: Women's Contracting + and Lender Oversight"; includes Committee membership list)

    +
    +
    +
    + + + Markup (A. Pascale) + + + + Small Business Administration (SBA) Reauthorization Roundtable credit + programs -- Levin statement + April 30-May 1, 2003 + 255 + + + + + Small business reauthorization FY2004-FY2006 + July 10, + 2003 + 255 + + + + + Small Business Administration (SBA) reauthorization markup -- Levin + intermediary lending amendment + July 27, + 2006 + 255 + + +

    (Intermediary Lending Pilot Program)

    +
    +
    + + + SBIR reauthorization bill + July 2008 + 255 + + + + + Small Business Revitalization Act bill + 2 folders + March 2004-November 2007 + 255 + + +
    +
    + + + Intermediary Lending Pilot Program + + +

    (Levin amendment; A. Pascale)

    +
    + + + Intermediary lending programs + June-July 2003 + 251 + + + + + Northern Initiatives intermediary lending proposal + June-July 2003 + 251 + + +
    + + + Manufacturing Extension Partnership (MEP) program (A. + Pascale) + + + + FY2008 MEP amendment + 251 + + +

    (supplemental appropriations)

    +
    +
    + + + MEP + 2005 + 2007 + 251 + + +

    (Includes ATP phase-out talking points)

    +
    +
    + + + MEP and SBA manufacturing Michigan event + January-March 2007 + 251 + + +
    + + + Small business + + + + Carl's intermediary lending bill background and notes + June-July 2003 + 251 + + + + + Small business activities + 2 folders + 2007 + 251 + + + + + Small Business Administration (SBA) (A. Pascale) + + + + 7a loan stop + January 2004 + 251 + + +

    (When Bush stopped lending)

    +
    +
    + + + SBIR program + October-December 2003 + 251 + + +
    + + + Assessment of Small Business Innovation Research (SBIR) program and + reauthorization + 2 folders + July 2007-June 2008 + 251 + + +

    (National Research Council; A. Pascale)

    +
    +
    +
    + + + Technology Innovation Program (TIP) + + +

    (Successor program to ATP; A. Pascale)

    +
    + + + FY2007 TIP appropriations letter + 251 + + + + + FY2009 TIP appropriations letter + 251 + + +
    +
    + + + Civil rights + 1995-2006 + + + + Affirmative action, 1995, 2001, 2005-2006 (K. Meier) + 1995-2006 + 264 + + + + + + Communications + 1993-2008 + + + + Amateur Radio Act, (T. Hensler and E. Glass) + September 2003 + 260 + + + + + Broadcasters + 1993-2005 + 260 + + + + + Cable + 2001-2005 + 260 + + + + + Cell phone records, (A. Pascale) + 2006 + 260 + + + + + E-mail spam + 2003 + 260 + + + + + Federal Communications Commission (FCC) + + + + Local telecom decision + 2003 + 260 + + + + + Media ownership rule, (A. Pascale) + 2008 + 260 + + + + + Ownership + June 2, 2003 + 260 + + + + + Ownership rules, (E. Glass) + January 14, + 2003 + 260 + + + + + Proceedings, (A. Pascale) + 2004 + 260 + + + + + + Indecent airwaves and the internet + 1998-2005 + 260 + + + + + Intelligence bill -- H.R.10 + 2004 + 260 + + +

    (Public safety use of television channels)

    +
    +
    + + + Internet gambling, (A. Pascale) + 2006 + 260 + + + + + Internet tax moratorium + 2004 + 260 + + + + + Internet tax moratorium, (A. Pascale) + 2007 + 260 + + + + + Local phone competition + 2004-2005 + 260 + + + + + Low power radio -- proposal + 1999-2005 + 260 + + + + + Metro Act, (A. Pascale) + 2006 + 260 + + + + + Net neutrality -- telecommunications, (A. Pascale) + 2006 + 260 + + + + + Satellite Home Viewer Improvement Act, September 24, YEAR + 260 + + + + + SBC and former Secretary Daley meeting + 2003 + 260 + + + + + Training for Realtime Writers Act -- S.480, (A. Pascale and E. + Glass) + September 24, + 2003 + 260 + + +
    + + + Crime and Justice + 1999-2009 + + + + Bureau of Prisons + 2003 + 281 + + + + + Class action fairness, J. Bryan) + 1999-2003 + 282 + + + + + Class action legislation, (J. Bryan and K. Meier) + 2003-2005 + 281 + + + + + Death penalty -- Kennedy v. Louisiana, (K. Meier) + 2005-2008 + 281 + + + + + Fairness Act-Kennedy Civil Rights bill + March 2004 + 281 + + + + + FBI-Sephardic translators + 2003-2004 + 281 + + + + + Federal flag legislation, (K. Meier) + 2007 + 281 + + + + + Fingerprints, (Michigan, FBI, and DOJ; J. Bryan) + 2002-2003 + 281 + + + + + Flag burning Q amendment, (K. Meier) + 2004-2008 + 281 + + + + + Gun control support letters + 2003 + 281 + + + + + Gun immunity + 2005 + 281 + + +

    (Includes Levin amendments)

    +
    +
    + + + Gun immunity-Protection of Lawful Commerce in Arms Act-S.1805 + 2 folders + 2003-2004 + 281 + + + + + Gun legislation memos + 1999-2005 + 281 + + + + + Gun legislation memos + 2007-2009 + 281 + + + + + Gun manufacturer liability, J. Bryan) + 2004 + 281 + + + + + Pen guns + 2003-2004 + 281 + + + + + 22 Prison abuse + 2003-2005 + 281 + + +

    (Carl's writing)

    +
    +
    + + + Prison abuse + 2004 + 282 + + +

    (Carl's writing)

    +
    +
    + + + Safety Valve Fairness Act + 3 folders + 2002-2005 + 282 + + + + + Security and background checks, (J. Bryan) + 6 subfolders + 2001-2003 + 282 + + +
    + + + Defense and Armed Services Committee (SASC) + 2001-2009 + + + + Alliance of Automobile Manufacturers event-Clean Diesel + October 2003 + 390 + + + + + Appropriations, authorizations, and funding + + + + FY2004 appropriation requests + + + + Dow Chemical + 390 + + +

    (Microcrystalline Silicon Flexible Electronics)

    +
    +
    + + + Litening Pods + 390 + + +

    (Air National Guard Threat Emitter simulators for training ranges in Alpena + and Savannah)

    +
    +
    + + + Michigan National Guard + 390 + + + + + Mobile Parts Hospital + 390 + + + + + Mott Community College + 390 + + + + + Oasis + 390 + + +

    (Abrams Tank training devices)

    +
    +
    + + + Smiths Aerospace + 390 + + + + + University of Michigan Dearborn + 390 + + +

    (Institute for Advanced Vehicle Systems-development of technology and tool + for rapid prototyping; TACOM-UmichD)

    +
    +
    +
    + + + FY2006 National Defense Authorization Act bill + 3 folders + 390 + + +
    + + + Committee correspondence, memos, and statements + + + + 2003 + + + + January + 390 + + + + + February + 390 + + + + + March + 2 folders + 390 + + + + + April + 390 + + + + + May + 2 folders + 390 + + + + + June + 2 folders + 390 + + + + + July + 2 folders + 390 + + + + + August + 390 + + + + + September + 390 + + + + + October + 2 folders + 391 + + + + + November + 391 + + + + + December + 391 + + + + + + 2004 + + + + January + 391 + + + + + February + 391 + + + + + March + 391 + + + + + April + 391 + + + + + May + 391 + + + + + June + 391 + + + + + July + 391 + + + + + August + 391 + + + + + September + 391 + + + + + October + 391 + + + + + November + 391 + + + + + December + 391 + + + + + + 2005 + + + + January + 2 folders + 391 + + + + + February + 391 + + + + + March + 391 + + + + + April + 392 + + +

    (Photograph of Levin and General Bryan Doug Brown-U.S. Army Commander)

    +
    +
    + + + May + 2 folders + 392 + + + + + June + 2 folders + 392 + + + + + July + 2 folders + 392 + + + + + August + 392 + + + + + September + 392 + + + + + November + 392 + + + + + December + 392 + + +
    + + + 2006 + + + + January + 392 + + + + + February + 3 folders + 392 + + + + + March + 3 folders + 393 + + + + + April + 393 + + + + + May + 3 folders + 393 + + + + + June + 2 folders + 393 + + + + + July + 393 + + + + + August + 393 + + + + + September + 2 folders + 393 + + + + + October + 393 + + + + + November + 2 folders + 394 + + + + + December + 394 + + + + + + 2007 + + + + January + 394 + + + + + February + 2 folders + 394 + + + + + March + 2 folders + 394 + + + + + April + 2 folders + 394 + + + + + May + 2 folders + 394 + + + + + June + 394 + + + + + July + 2 folders + 394 + + + + + August + 2 folders + 395 + + + + + September + 395 + + + + + October + 395 + + + + + November + 395 + + + + + December + 2 folders + 395 + + + + + + 2008 + + + + January + 2 folders + 395 + + + + + February + 3 folders + 395 + + + + + March + 2 folders + 395 + + + + + April + 3 folders + 395 + + + + + May + 2 folders + 396 + + + + + June + 3 folders + 396 + + + + + July + 3 folders + 396 + + + + + August + 396 + + + + + September + 2 folders + 396 + + + + + October + 396 + + + + + November + 396 + + + + + December + 396 + + + + + + Opening statement for full committee markup (R. Debobes) + 2 folders + 396 + + + + + Status of certain Office of Legal Counsel opinions issued in aftermath + of the terrorist attacks of + September 11, + 2001 + 2008-2009 + 409 + + +
    + + + Committee hearings + + + + SASC hearings + 409 + + + + To receive testimony on Iraq + January 12, + 2007 + + + + Part 1 + 04:01:14 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Part 2 + 00:33:24 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    +
    + + + Nomination + January 23, + 2007 + + + + Part 1 + 04:01:14 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Part 2 + 00:13:44 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    +
    + + + The Administration's Recently Announced Strategy + January 25, + 2007 + + + + Part 1 + 04:01:14 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Part 2 + 00:10:13 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    +
    + + + Nomination of Admiral William J. Fallon + January 30, + 2007 + 02:59:17 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + The Nomination of General George W. Casey, Jr., USA + February 1, + 2007 + + + + Part 1 + 04:01:14 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Part 2 + 00:09:16 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    +
    + + + 2008 Budget Request + February 6, + 2007 + + + + Part 1 + 04:01:14 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Part 2 + 00:05:13 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    +
    + + + Department of Defense Inspector General's Report + February 9, + 2007 + 02:40:03 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open/closed session)

    +
    +
    + + + Current and Future Readiness of the Army and Marine Corps + February 15, + 2007 + 03:14:14 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Worldwide Threats to the National Security of the United + States + February 27, + 2007 + 03:17:41 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Afghanistan + March 1, + 2007 + 03:53:23 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Walter Reed Army Medical Center + March 6, + 2007 + + + + Part 1 + 04:01:00 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Part 2 + 00:07:17 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    +
    + + + Nominations + March 8, + 2007 + 01:48:09 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Defense Authorization Request + March 15, + 2007 + 03:17:30 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Authorization Request for Fiscal Year 2008 + March 20, + 2007 + 02:21:15 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Defense Authorization Request for Fiscal Year 2008 + March 22, + 2007 + 01:58:39 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Current and Future Worldwide Threats + March 27, + 2007 + 02:05:20 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Posture of the Department of the Navy + March 29, + 2007 + 03:00:34 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nuclear Nonproliferation Programs + April 11, + 2007 + 02:05:03 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Joint Hearing + April 12, + 2007 + 03:33:15 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Whether the Army and Marine Corps are Properly Sized + April 17, + 2007 + 03:19:37 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Readiness Impact of Quality of Life and Family Support + Programs + April 18, + 2007 + 03:06:17 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Logistics Civil Augmentation Program + April 19, + 2007 + 03:42:54 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    + +

    Access to this material is restricted to the reading room of the Bentley + Historical Library.

    +
    +
    + + + United States Pacific Command, United States Forces Korea, and United + States Special Operations Command + April 24, + 2007 + 02:45:25 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    + +

    Access to this material is restricted to the reading room of the Bentley + Historical Library.

    +
    +
    + + + Language Technology and Training + April 25, + 2007 + 01:20:06 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Unlawful Enemy Combatants + April 26, + 2007 + 03:43:13 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + United States Central Command + May 3, 2007 + 02:41:01 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + United States European Command + May 17, + 2007 + 01:32:50 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nomination + June 7, + 2007 + 02:51:40 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations + June 12, + 2007 + 01:38:26 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Dignified Treatment of Wounded Warriors Act + June 14, + 2007 + 02:04:01 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nomination + June 19, + 2007 + 02:27:52 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations + July 31, + 2007 + 03:29:38 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open/closed session)

    +
    +
    + + + Iraqi Security Forces Independent Assessment Commission + September 6, + 2007 + 03:50:58 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Assessment of 18 Iraq Benchmarks + September 7, + 2007 + 02:45:39 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Progress Made + September 11, + 2007 + 05:24:24 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations + September 27, + 2007 + 01:44:21 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations + October 4, + 2007 + 01:48:39 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + To receive testimony on the state of the United States + Army + November 15, + 2007 + + + + Part 1 + 02:09:06 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Part 2 + 00:59:03 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    +
    + + + Nominations + December 18, + 2007 + 01:26:52 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + DoD Authorization Request for 2009 + February 6, + 2008 + 02:47:05 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + National Guard and Reserves + February 7, + 2008 + 02:42:08 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Improvements Implemented and Planned by the Department of + Defense + February 13, + 2008 + 02:40:09 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Strategy in Afghanistan + February 14, + 2008 + 02:35:04 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Testimony on the Department of the Army + February 26, + 2008 + 03:04:16 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Current and Future Worldwide Threats + February 27, + 2008 + 02:50:46 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Current and Future Worldwide Threats + February 27, + 2008 + 01:59:30 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Department of the Navy + February 28, + 2008 + 03:14:58 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + United States Central Command and the United States Special + Operations + March 4, + 2008 + 03:04:38 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open/closed session)

    +
    +
    + + + U.S. Southern Command and U.S. Northern Command + March 6, + 2008 + 02:23:07 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    + +

    Access to this material is restricted to the reading room of the Bentley + Historical Library.

    +
    +
    + + + United States Pacific Command and United States Forces + Korea + March 11, + 2008 + 02:15:46 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Technologies to Combat Weapons of Mass Destruction + March 12, + 2008 + 00:57:37 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Cooperative Threat Reduction Program + April 2, + 2008 + 01:29:28 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations + April 3, + 2008 + 01:48:57 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Government of Iraq + April 3, 2008 April 8, + 2008 + 04:01:14 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Situation in Iraq + April 9, + 2008 + 03:00:07 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    + +

    Access to this material is restricted to the reading room of the Bentley + Historical Library.

    +
    +
    + + + U.S. Military Presence in Iraq + April 10, + 2008 + 03:07:56 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    + +

    Access to this material is restricted to the reading room of the Bentley + Historical Library.

    +
    +
    + + + Nominations + May 22, + 2008 + 02:49:41 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Weapons Systems + June 3, + 2008 + 02:19:09 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Aggressive Interrogation Techniques + June 17, + 2008 + + + + Part 1 + 04:01:14 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Part 2 + 03:53:05 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    +
    + + + Nominations + June 26, + 2008 + 01:37:26 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Situation in Iraq and Afghanistan + September 23, + 2008 + 02:55:07 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Survival Evasion Resistance and Escape + September 23, 2008 + September 25, 2008 + 01:53:17 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    +
    + + + Situation in Iraq and Afghanistan + September 23, + 2008 + 396 + + +
    + + + Contracts and research (Michigan) + + + + AutoMATS, (SASC) + June 2004 + 409 + + + + + Bosk wedge clutch assembly + May-June 2004 + 409 + + + + + Century Engineered Materials Inc. + 2004 + 397 + + + + + Kettering University + 2004 + 397 + + + + + National Automotive Center (NAC) meeting, (Focus: HOPE) + 2004 + 397 + + + + + Oakland University intelligent ground vehicle competition + May-June 2003 + 397 + + + + + T/J Technologies and the Big 3 + 2003 + 397 + + + + + + Inquiry into the treatment of Detainees in U.S. custody + + + + Background and notes + + + + 2 folders + 2002-2009 + 397 + + + + + 2 folders + 2007-2009 + 397 + + + + + + CIA Director Panetta hearing questions + February 5, + 2009 + 397 + + +

    (SSCI)

    +
    +
    + + + Detainees in U.S. Custody-Iraq + 3 folders + 2005-2006 + 398 + + +

    (Carl's writing; SASC; folders indicate there is a Part 4 it was not found with + these three)

    +
    +
    + + + Detainees 3 of 4 Linda's torture conference + June 2006 + 397 + + +

    (Carl's writing)

    +
    +
    + + + Document and information requests, (J. Bryan) + 20 subfolders + 2003-2008 + 397 + + + + + Hearing (J. Bryan files) + + + + Committee report + 2008-2009 + 397 + + +

    (Carl's writing)

    +
    +
    + + + Detainee treatment report release + 2009 + 397 + + +

    (Carl's writing)

    +
    +
    + + + Key documents + 2 folders + June 2008 + 397 + + + + + Long-term Detention Operations, (SSCI; J. Bryan) + October 16, + 2008 + 397 + + + + + News articles and notes, J. Bryan) + 2008 + 397 + + + + + News articles and Secretary of Defense letter, (J. Bryan) + June-July 2008 + 397 + + + + + Proposed redactions for declassification + 2 folders + 2008 + 409 + + + + + Survival Evasion Resistance Escape (SERE) Techniques for + Interrogations in Iraq J. Bryan) + September 25, + 2008 + + + + Hearing + 398 + + + + + Key documents + 12 folders + 398 + + + + + Working file + 398 + + + +
    + + + Miscellaneous correspondence and news articles with Chairman Levin + notes, (J. Bryan) + 2 folders + 2008 + 399 + + + + + Review of the FBI's involvement in, and observations, at detainee + interrogations at Guantanamo Bay, Afghanistan, and Iraq report + 2008 + 398 + + +

    (Includes miscellaneous correspondence and notes; J. Bryan)

    +
    +
    +
    + + + Interview on Michigan defense funding-Detroit News + July 2004 + 399 + + + + + Iraq + + + + SASC Iraq amendments + 2007 + 399 + + + + + Levin legislative proposals to change course in Iraq + 399 + + + + + Statements on Iraq -- Carl + 2004-2006 + 399 + + + + + + Iraq-Carl's writings + + + + Director of Central Intelligence tenet + 2003 + 399 + + + + + Intel issues + + + + Hearing on worldwide threats, Rumsfeld, press appearance, and + notes + 2003-2005 + 399 + + + + + Al-Libi memos, CIA press, Intelligence committee, WMD, Czech + delegation meeting, and notes + 2003-2005 + 400 + + + + + + WMD search after war began and Bush comments + 2003-2005 + 400 + + + + + Iraq war intelligence statement drafts + August 2004 + 409 + + + + + 1 Iraq issues before war including UN inspections + 2 folders + 2003 + 400 + + + + + 2 Issues during war + 2003-2004 + 400 + + + + + 3 Issues post war + 2 folders + 2003-2004 + 401 + + + + + C Iraq refugees + 2007-2008 + 401 + + + + + D Notes for TV hearings, press conferences, meetings, and + speeches + 2006-2007 + 401 + + + + + E Key documents Iraq + 2 folders + 2006-2007 + 402 + + +

    (Includes legislation, supplemental funding, etc.)

    +
    +
    + + + 7 Feith Unit + 2003-2007 + 401 + + +

    (Document dispute)

    +
    +
    + + + 8 Notes for TV + 2003-2006 + 402 + + + + + 9 My public comments-clips and speeches + 2003-2005 + 402 + + + + + 10 Bigger role for UN + 2003-2005 + 403 + + + + + 11 New administration pitch + 2003-2005 + 403 + + + + + 12 Reconstruction-supplemental requests + 2003 + 403 + + + + + 13 Bush Doctrine Including cocky rhetoric + 2003-2004 + 403 + + + + + 14 Iraq miscellaneous + 2003 + 403 + + + + + 15 Contracting-including Halliburton + 2005 + 403 + + + + + 16 Kay report, Duelfer report + 2002-2005 + 403 + + + + + 17 Joe Wilson-Intelligence leaks + 2002 + 403 + + + + + 18 SASC inquiry + 2004 + 403 + + + + + 19 Most current notes, clips, rhetoric, hearing + preparations + 2003-2005 + 403 + + + + + 20 9/11 commission, terrorism neglected SH-instead of UBL + 2004 + 404 + + + + + 21 Iraqi Army-disband reconstitute + 2005 + 404 + + + + + 23 Tenet Resignation + 2004 + 404 + + + + + 24 CIA + 2004 + 404 + + + + + 25 Interim government + 2005 + 404 + + + + + 26 Key documents + + + + Wolfowitz hearing + June 25, + 2004 + 404 + + + + + Atta al-Qaeda-Saddam ties + 2004 + 404 + + + + + General + 2004 + 404 + + + + + + 27 January 2005 Iraq election + 2005 + 404 + + +

    ("see also 3, 21, 25")

    +
    +
    + + + 28 Iraq's forces, will-power and capability + 2005 + 405 + + +

    ("see also 3, 21, 25")

    +
    +
    + + + 29 Missing high explosives + 2004 + 405 + + + + + 30 Armor for US vehicles and troops + 2004-2005 + 405 + + + + + 31 Exit strategy-invitation to stay to end of occupation + 405 + + + + + 32 NIE on Iraq early + 2006 + 405 + + + + + 33 Iraq + 2002 + + + + Hearings including NIE for CIA + 2002 + 405 + + + + + Hearing questions U.S. Policy in Iraq + September 23, + 2002 + 405 + + + + + Writings and statements including drafts + 405 + + + + + Earlier resolutions + 405 + + + + + Saddam response-"only if attacked" then C+B + 405 + + + + + Al Qaeda Link + 405 + + + + + + 34 U.S. Military issues-recruiting/retention, casualties, force + strength + 2005 + 405 + + + + + 35 Relationship between Iraq and Terror Attacks-London bombings, + terrorist recruitment/training + 2005 + 405 + + + + + 36 Democratic plan for Iraq + 2005 + 405 + + + + + 37 Key players in Iraq-Alawi, Chalabi, al-Jaarafi etc. + 2005 + 405 + + + + + 38 Sectarianism + 2005 + 405 + + + + + 1 and earlier-Troop cut predications, artificial timetables, + reconciliation conference, Iraq amendment + November-December 2005 + 405 + + + + + 2 Iraq Election, Constitution reform, Shia-Sunni Rift, Samarra bombing, + militias + January-February 2006 + 405 + + + + + 3 Need for a government of national unity, sectarian conflict, Jill + Carroll, Iraqi police problems + March 2006 + 406 + + + + + 4 Maliki, Shiite militias, possibility of civil war, generals call for + Rumsfeld resignation, Levin-Collins-Reed amendment + April-May 2006 + 406 + + + + + 5 Maliki's reconciliation and dialogue plan, Levin-Reed amendment, + Israel-Hezbollah Conflict + June-July 2006 + 406 + + + + + 6 Debate over Civil War, Baghdad security, Iraq War hurting GWoT, + Federalism law, questions about Maliki's leadership + August-September 2006 + 406 + + + + + 7 Democrats take control of congress, Malliki's 24 Point Reconciliation + Plan, British Troops Plan Withdrawal, Need for a Change in Course + October-November 2006 + 406 + + + + + 8 Iraq study group report, Hussein Execution, Iranian Influence in + Iraq, Gates Nomination + December 2006 + 1042 + + + + + 9 + January 2007 + 407 + + + + + 10 + February-March 2007 + 407 + + + + + 11 + April-May 2007 + 407 + + + + + 12-June-July 2007 + 407 + + + + + 13 Part one-older + 2008 + 407 + + + + + 13 Part two-newer + 2008 + 408 + + + + + 14-Limited drawdown discussions, Iraq security force training, surge + security successes, lack of political progress, Petraeus testimony, Jones + Commission-September 2007 + 408 + + + + + 15-Blackwater shootings, private security rules, Kurdish oil deals, + reduced violence, military sales to Iraq-October-November 2007 + 408 + + + + + 16-Sadr militia truce, Maliki ineffectiveness, opposition to additional + troop cuts + December 2007-January 2008 + 408 + + + + + 17-Elections law, Sons of Iraq, oil funds for reconstruction, oil field + development-February-March 2008 + 408 + + +
    + + + Iraq-key documents and trips + + +

    (Carl's writing)

    +
    + + + 2007 + 408 + + +

    (SASC)

    +
    +
    + + + 2008 + 409 + + +

    (SASC)

    +
    +
    +
    + + + Iraq-key documents and Sunni withdrawal from government + August 2007 + 409 + + +

    (Carl's writing)

    +
    +
    + + + Iraq pre-war intelligence + 2006 + 409 + + +

    (Carl's writing; SSCI and SASC)

    +
    +
    + + + Military bases and installations-Base Realignment and Closure + (BRAC) + + + + Governor material and strategy + 2003-2005 + 409 + + + + + Selfridge meeting + February 2004 + 409 + + + + + Selfridge and TACOM news articles + June 2004 + 409 + + + + + TACOM + 2003 + 409 + + + + + + Military health-Family and Medical Leave Act extension + November-December 2007 + 409 + + + + + Military personnel-Leave accrual for civilian personnel memo + May 2008 + 409 + + + + + Nomination-Secretary of Defense-Robert M. Gates + December 5, + 2006 + 1043 + + +

    (Carl's writing)

    +
    +
    + + + Senate Select Committee on Intelligence (SSCI) + + + + Levin statements + September 2006 + 409 + + + + + Phase II intelligence review + 2 folders + 2006 + 409 + + + + SASC hearings + + + + January-February 2007 + + + + + March 2007 + + + + + April-June 2007 + + + + Joint Veterans and Armed Services Committee Hearing + 2007 April 12 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Joint hearing with Armed Services + Committee on Defense and Veterans' Affairs, on April 12, 2007, 9:30 am - + 12:58 pm, on Department of Defense and Veterans' Affairs departments' + disability ratings systems. Witnesses: Hon. Gordon R. England; Hon. David + S. C. Chu; Hon. Daniel L. Cooper; Hon. Preston M. Geren, III; Dr. Gerald + Cross; Lt. Gen. James Terry Scott, USA.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Witness lists + April-June + 2007 + + +
    + + + July-October 2007 + + + + + February 2008 + + +

    (9 DVDs)

    +
    +
    + + + March-April 2008 + + +

    (8 DVDs)

    +
    +
    + + + May-July 2008 + + +

    (6 DVDs)

    +
    +
    + + + Witness lists + 2007-2008 + + +
    +
    + + + Phase II report talking points + September 8, + 2006 + 409 + + + + + Prewar intelligence-administration misstatements + September 2006-May 2007 + 409 + + + + + Review of prewar intelligence in Iraq-commentary + 2004-2005 + 409 + + +
    +
    + + + Economic Policy + 1979-2009 + + + + Active financing exception, (T. Henseler and J. Davis) + 2002-2005 + 454 + + + + + Auto companies (J. Davis) + + + + Autos -- S.3715 + 2008 + 454 + + + + + Auto + December 2008 + 454 + + + + + Auto Industry Emergency Bridge Loan Act + + + + December 2008 + 454 + + + + + Replenishment fund + 2008 + 454 + + + + + + Bankruptcy, (CRS report -- Financial Options for the Detroit 3 + Automakers) + December 2, + 2008 + 454 + + + + + Prepackaged bankruptcy, (Big 3) + undated + 454 + + + + + Credit Reform Act, (Federal Credit Reform: Implementation of the + changed budgetary treatment of direct loans and loan guarantees) + June 24, 2008 + 454 + + + + + Plans, (Ford, GM, and Chrysler) + December 2008 + 454 + + + + + Scoring issues + November 2008 + 454 + + + + + Treasury bond request + November 2008 + 454 + + + + + + Bankruptcy bill, (J. Davis) + March 2005 + 454 + + + + + Bankruptcy bill and credit card information + 2005 + 454 + + + + + Bayh bankruptcy reform bill, (J. Davis and K. Meier) + 2006 + 454 + + + + + Banks + + + + Bailout and recovery -- auto finance companies colloquy, (Dingell; J. + Davis) + September-October 2008 + 454 + + + + + Bear Sterns buyout, (J. Davis) + March-April 2008 + 454 + + + + + Bond issue, (J. Davis and A. Ellerbee) + March 2008 + 454 + + + + + Citizens First BanCorp -- Emergency Economic Stabilization Act (EESA) + application, (J. Davis) + November 2008-January 2009 + 454 + + + + + Federal deposit insurance reform + 2002-2003 + 454 + + + + + First accounts program + July 8, 2004 + 454 + + + + + Foreclosure and Prevention Act and Carl's roundtables, (J. Davis and R. + Arenberg) + 2008 + 454 + + + + + Industrial Loan Companies (ILCs), (J. Davis) + 2007 + 454 + + + + + Industrial Loan Companies (ILCs), (J. Davis) + 2008 + 454 + + + + + Letters to Fed regarding subprime mortgage markets, (K. Sybenga and K. + Glandon) + 2007 + 454 + + + + + Michigan Trust Bank -- Stoddard, (J. Davis) + 2007 + 454 + + + + + Paramount Bank + 2008-2009 + 454 + + + + + Real estate brokerage, (T. Henseler and J. Davis) + 2001-2005 + 454 + + + + + Reserve fund money markets, (J. Davis) + 2008 + 454 + + + + + + Banks real estate powers + 2003-2005 + 454 + + + + + Bush Administration economy figures, (Joint Economic Committee Democrats + fact sheet) + August 2003 + 454 + + + + + Charity Aid, Recovery, and Empowerment (CARE) Act and Securities and + Exchange Commission (SEC) civil enforcement, (Levin SEC civil enforcement + provisions; T. Henseler and J. Davis) + 2003 + 454 + + + + + Committee hearings (PSI) + + + + Tax Shelters: Role of Accountants, Lawyers, and Financial + Professionals + November 20, + 2003 + 454 + + + + + Money Laundering and Foreign Corruption: Enforcement and Effectiveness + of the Patriot Act + 2 folders + July 15, 2004 + 454 + + + + + Tax Haven Abuses: Enablers, Tools and Secrecy + August 1, + 2006 + 454 + + + + + Credit Card Practices: Fees, Interest Rates, and Grace + Periods + March 7, 2007 + 454 + + + + + Credit card practices (PSI; J. Davis) + March 7, 2007 + 454 + + + + + Executive Stock Options: Should the Internal Revenue Service and + Stockholder be Given Different Information? 1 + 2 folders + June 5, 2007 + 454 + + + + + Executive Stock Options: Should the Internal Revenue Service and + Stockholder be Given Different Information? 2 + June 5, 2007 + 482 + + + + + Excessive Speculation in the Natural Gas Market-Day 1 + June 25, 2007 + 454 + + + + + Excessive Speculation in the Natural Gas Market-Day 2 + July 9, 2007 + 482 + + + + + Credit Card Practices: Unfair Interest Rates Increases + December 4, + 2007 + 482 + + + + + Crude Oil Speculation + December 11, + 2007 + 482 + + + + + Tax Haven Banks and U.S. Tax Compliance + 2 folders + July 25, 2008 + 454 + + + + + Payroll Tax Abuse: Businesses owe billions and what needs to be done + about it (J. Davis; PSI) + July 29, 2008 + 454 + + + + + Payroll Tax Abuse: businesses owe billions and what needs to be done + about it + 2 folders + July 29, 2008 + 455 + + + + + Dividend Tax Abuse: How Offshore Entities Dodge Taxes on U.S. Stock + Dividends + September 11, + 2008 + 455 + + + + + Tax shelter spaghetti charts + undated + 455 + + +

    (PSI hearing exhibit -- Enron and JP Morgan)

    +
    +
    +
    + + + Community Development Financial Institutions (CDFIs) + 2002-2008 + 455 + + + + + Community Reinvestment Act, (J. Davis) + 2004-2005 + 455 + + + + + Contracting authority + September-October 2008 + 455 + + +

    (Includes draft colloquy with Senator Dodd; J. Davis)

    +
    +
    + + + Corporate Patent Enforcement Act, (Levin statement) + 2003 + 455 + + + + + Credit card bill + 4 subfolders + 2008 + 455 + + + + + Credit Counseling -- Green Path + 2004 + 2006 + 455 + + + + + Dividends, (T. Henseler) + 2003 + 455 + + + + + Dodd-Frank Federal Housing Administration expansion, (J. + Davis) + 2008 + 455 + + + + + Economic substance + 2 folders + 2005 + 455 + + + + + Emergency Economic Stabilization Act (EESA) (J. Davis) + + + + October 2008 + 455 + + + + + Auto amendment + November 2008 + 455 + + + + + EESA and autos, (J. Davis) + 2008 + 455 + + + + + Executive compensation in EESA + 2008 + 455 + + + + + Language + 2008 + 455 + + + + + + Fair Credit Reporting Act, (T. Henseler and E. Glass) + June 2003 + 455 + + + + + Financial bailouts, (J. Davis) + 2008 + 455 + + + + + Foreign corrupt practices, oil revenues, and PSI meeting with NGOs, (J. + Davis) + September 2004 + 482 + + + + + Government Settlement Transparency Act -- S.936, (T. Henseler and E. + Glass) + April 29, 2003 + 455 + + + + + Housing and mortgages (J. Davis) + + + + Housing and Economic Recovery Act (HERA) -- H.R.3221 + June 2008 + 455 + + + + + Mortgages, (OFIS letter on nationwide mortgage licensing + system) + 2007 + 455 + + + + + Mortgage legislation ideas + 2007 + 455 + + + + + Mortgages -- P.L.110-289, (A. Ellerbee and J. Davis) + 2008 + 455 + + + + + Mortgages + 2008 + 455 + + + + + Reed bill -- S.1386 + 2007 + 455 + + + + + TE bonds + 2008 + 455 + + + + + + Income (J. Davis) + + + + Manufacturing jobs charts + 2004-2005 + 456 + + + + + Mean and median income, (J. Davis and R. Arenberg) + 2006 + 456 + + + + + Wages in new jobs, lost jobs, and wage inequality + 2004 + 456 + + + + + Warren on 2000, 2008 family budget short fall and other median + income + 2005-2007 + 456 + + + + + + Insurance + + + + AIG, (Includes Bermuda reinsurance) + May 2005 + 456 + + + + + Annuities, (E. Glass) + 2003 + 456 + + + + + Flood insurance + 2008 + 456 + + + + + Insurance + 2004 + 456 + + + + + Insurance brokerage hearing + November 16, + 2004 + 456 + + +

    (Oversight hearing on Insurance Brokerage Practices, Including Potential + Conflicts of Interest and the Adequacy of the Current Regulatory Framework -- + GAC Subcom on Financial Management and the Budget and International + Security)

    +
    +
    + + + Life insurance foreign travel discrimination + 2005 + 456 + + + + + Life insurance in President tax reform panel + 2005 + 456 + + + + + National Flood Insurance Program (NFIP) + 2005 + 456 + + + + + Tax insurance activities, (Associated Builders and + Contractors) + 2004 + 456 + + + + + Terrorism insurance, (T. Henseler and J. Davis) + 2001-2007 + 456 + + + + + Terrorism insurance + undated + 456 + + + + + Unemployment insurance + 2001 + 456 + + + + + Unemployment insurance, (Press release) + January 2003 + 456 + + +
    + + + Interest on Lawyers Trust Accounts (IOLTA) -- Federal Deposit Insurance + Corporation (FDIC) guarantee + November 2008 + 456 + + + + + Lautenberg terrorist sanctions amendment, (J. Davis) + 2005 + 456 + + + + + Carl Levin letters, (T. Henseler) + 2003 + 456 + + + + + Marshall Commemorative Coin Act -- S.1531 (E. Glass) + September 2003 + 456 + + + + + Meeting notes, (T. Henseler) + 2003 + 456 + + + + + Memos to Carl, (J. Davis, A. Ellerbee, K. Sybenga) + 2007-2008 + 456 + + + + + Money markets, (Prepared by Henry Ford Health System; Reserve Fund and + congressional relief package to help hospitals; J. Davis) + September 2008 + 456 + + + + + Mortgage and foreclosures memos, (A. Ellerbee and J. Davis) + 2008 + 456 + + + + + Mutual Fund Reform Act-S.2059 + + + + 12b-1 distributor fees + March 2004-June 2005 + 456 + + + + + Background + 2 folders + September-November 2003 + 456 + + + + + Bill comparisons + March 2004 + 456 + + + + + Bill comparisons and reports + 2003-2004 + 456 + + + + + Brokerage firms + February-March + 2004 + 456 + + + + + Fitzgerald, Levin, and Collins bill + January-February 2004 + 456 + + + + + Independent directors + January-March 2004 + 456 + + + + + Investment Company Act section 15 amendment + April 2004 + 456 + + + + + Hearing, (GAC) + January 21, + 2004 + 456 + + + + + Hearing, (Banking Committee) + 2 folders + March 31, + 2004 + 456 + + + + + Hearing statement before Subcommittee on Financial Management, the + Budget, and International Security + January-February 2004 + 456 + + + + + Late trading and market timing + 2004-July 2005 + 456 + + + + + Notes-Julie Davis, (Levin staffer) + March 2004 + 456 + + + + + Press and bill summaries + February 2004 + 456 + + + + + Regulation and testimony + 2003-2004 + 457 + + + + + Soft dollars + February-June 2004 + 457 + + + + + + Nomination-Federal Reserve Chair -- Ben Bernake, (J. Davis) + 2006 + 1043 + + + + + Organisation for Economic Co-operation and Development (OECD) + + + + FY2007 funding + 457 + + + + + Senate CJS appropriations, (J. Davis) + 2004 + 457 + + + + + + Overview of tax and budget -- Legislative assistant issues, (T. + Henseler) + 2 folders + 2003 + 457 + + + + + Overview of tax and budget -- Legislative assistant issues, (J. + Davis) + 2 folders + 2004 + 457 + + + + + Paygo + 2007 + 457 + + +

    (Resorting Fiscal Discipline Act; Carl's writing)

    +
    +
    + + + Pensions (J. Davis) + + + + Delta lump sum + 2006 + 457 + + + + + YWCA pension fix + 2006 + 457 + + + + + + Pensions, retirement savings, and savings accounts (J. Davis) + + + + 18 folders + 2003-2007 + 457 + + + + + Pensions + 20 subfolders + 2005-2006 + 457 + + +

    (Includes Levin-Voinovich letter, auto, Delphi, airline, S.1783 H.R.2830 H.R.4, + etc.)

    +
    +
    +
    + + + Predatory lending + 2003 + 457 + + + + + Professional employer organizations, (NAPEO meeting; T. + Henseler) + May 21, 2003 + 457 + + + + + Progressive Democrat meetings, (A. Ellerbee) + May 2008 + 457 + + + + + Real estate + + + + Community Choice in Real Estate -- S.98, (T. Henseler) + May 15, 2003 + 457 + + + + + Office of the Comptroller of the Currency (OCC) and real estate, (J. + Davis) + 2006 + 457 + + + + + Realtors, (J. Davis) + 2004-2006 + 457 + + + + + + Real Estate Investment Trusts (REITs) -- thrift savings plan, (J. + Davis) + 2005-2006 + 457 + + + + + Senate compromise extenders + September 2008 + 458 + + +

    (Includes Levin statement; J. Davis)

    +
    +
    + + + Small business-General Services Administration (GSA) misclassifications, + (T. Henseler) + July 2002 + 458 + + + + + Speculation and gas prices + 2008 + 458 + + +

    (Carl's writings)

    +
    +
    + + + Stimulus, (K. Sybenga) + 2008 + 458 + + + + + Stock options + 2 folders + 2004-2008 + 482 + + +

    (Includes GAC hearing materials; J. Davis and E. Bean)

    +
    +
    + + + Stock options letter, (Employee stock option accounting) + February-March 2003 + 458 + + + + + 2003 taxes Bush investment income (Carl's writing) + February 2003 + 458 + + + + + Tax (T. Henseler) + + + + Argument pro-progressive tax + 2003 + 458 + + + + + Auditor independence bill + 2003 + 458 + + + + + Broadband expensing -- S.160 + 2003 + 458 + + + + + Bush economic team + 2003 + 458 + + + + + Bush job losses + 2003 + 458 + + + + + Bush tax cuts miscellaneous + 2001 + 458 + + + + + CEO pay, (PSI) + April 2003 + 458 + + + + + Charity Aid, Recovery, and Empowerment (CARE) Act + + + + Foundation administrations expenses + 2003 + 458 + + + + + T. Henseler memos + 2002-2003 + 458 + + + + + Securities and Exchange Commission (SEC) enforcement + April 2003 + 458 + + + + + + Dividend reduction + 2003 + 458 + + + + + Estate tax + 2 folders + 2003 + 458 + + + + + Estate tax -- Carl Levin position talking points + undated + 458 + + + + + Finance Committee economic stimulus material + 2003 + 458 + + + + + Financial accounting standards board (FASB) and Securities and Exchange + Commission (SEC) + February 11, + 2002 + 458 + + + + + Flat tax letter regarding studies, (E. Glass and T. + Hensler) + 2003 + 458 + + + + + Government Settlement Transparency Act + 2003 + 458 + + + + + Homeland security corporate inversion amendment + 2003 + 458 + + + + + Insurance -- foreign owned companies + undated + 458 + + + + + International accounting standards board (IASB) stock option + proposal + 2001 + 2003 + 458 + + + + + Internet tax -- S.1567 + October 26, + 2001 + 458 + + + + + Internet taxation + 2 folders + 2001-2003 + 458 + + + + + Non-Bush stimulus proposals + December 2002-February 2003 + 458 + + + + + Pension reform + 2003 + 458 + + + + + Progressive income tax + 2003 + 458 + + + + + Puerto Rico repatriation + 2003 + 458 + + + + + Securities and Exchange Commission (SEC) enforcement -- + S.183 + 2003 + 458 + + +

    (Levin sponsor)

    +
    +
    + + + State and federal taxes -- federal taxes and % of total taxes, (T. + Hensler and E. Glass) + June 2003 + 458 + + + + + Stock options + 2003 + 458 + + + + + Stock option loophole + 2002-2003 + 458 + + + + + Stock option corporate amendment + 2003 + 458 + + +

    (Corporate alternative minimum tax)

    +
    +
    + + + Tax cut + + + + Democrats briefing book + 2003 + 458 + + + + + Jobs and Growth Tax Relief Reconciliation Act Summaries + 2003 + 459 + + + + + Carl Levin statement + 2001-2002 + 459 + + + + + Carl Levin statements and press + 2003 + 459 + + + + + Schedules + 1996-2003 + 459 + + + + + + Taxes reconcile #2 + 2003 + 459 + + +

    (Includes talking points)

    +
    +
    + + + Woodward Avenue historic tax credit + 2002-2003 + 459 + + +
    + + + Tax -- J. Davis + + + + Amway 1997 tax break research (J. Davis) + 2006 + 459 + + + + + Auditor independence bill, (Levin bill; K. Long) + 2003-2004 + 459 + + + + + Auto tax issues + 12 subfolders + 2006 + 459 + + + + + Alternative Minimum Tax (AMT) for individuals + 2004-2006 + 459 + + + + + Bush tax reform + 2005 + 459 + + + + + CARE Act amendments + 2003 + 459 + + + + + Child tax credit + 2003 + 459 + + + + + Civil Rights Tax Relief Act + 5 subfolders + 2005-2007 + 459 + + + + + Company owned life insurance (COLI) + 2003 + 459 + + + + + Cost sharing regulations + 2006 + 459 + + + + + Credit counseling -- Randy Sills proposal to help enforcement + management plan + 2004 + 482 + + + + + Deduct of state and local taxes + 2004-2005 + 459 + + + + + Depreciation acceleration, (T. Hensler and J. Davis) + 2003 + 459 + + + + + Earned Income Tax Credit (EITC), (T. Hensler and J. Davis) + 5 subfolders + 2003-2006 + 459 + + + + + Estate tax + 4 subfolders + 2005 + 2009 + 460 + + + + + Estate tax + June 2006 + 460 + + + + + Expiring tax cuts -- DIVs and cap gains + 2006-2007 + 460 + + + + + Flat and fair tax + 3 subfolders + 2002-2009 + 460 + + + + + Financial Account Standards Board (FASB) comment letter on uncertain + tax positions + 2004-2005 + 460 + + + + + Foreign sales corporations (FSC) and extraterritorial income (ETI) -- + internal tax provision of JOBS bill + 9 subfolders + 2003-2004 + 460 + + + + + Foreign Sales Corporation (FSC) and Extraterritorial Income + (ETI) + 13 subfolders + 2004 + 460 + + + + + GAO studies -- foreign and domestic controlled companies that did not + pay tax, (Levin-Dorgan) + 2004 + 461 + + + + + GAO study -- Auditors providing tax services, (PSI) + 2004 + 461 + + + + + Group legal services plans + 2001-2007 + 461 + + + + + Groups that support tax legislation + undated + 461 + + + + + Hurricane Katrina tax breaks + 2005 + 461 + + + + + Tax option post Katrina + 2005 + 461 + + + + + Internal Revenue Service (IRS) + + + + Code 120 group legal services plans + 2001 + 461 + + + + + Enforcement + 2005 + 461 + + + + + + International tax -- Dow's position + 2006-2007 + 461 + + + + + Internet tax + 2003 + 461 + + + + + Internet tax + 3 subfolders + 2004-2008 + 461 + + +

    (Includes S.150 and S.34)

    +
    +
    + + + Katrina 6104, 2003-2005 (IRS U.S. Code rules for disclosure to + Congress) + 2003-2005 + 461 + + + + + Kerry tax plan + 2004 + 461 + + + + + Memos -- Dorgan runway plants and IRAs for combat pay + 2005 + 461 + + + + + Michigan and IRS initiative to combat tax schemes + 2004 + 461 + + + + + Miscellaneous tax + 23 subfolders + 2003-2009 + 461 + + + + + Miscellaneous tax issues, (J. Davis and T. Gellasch) + 2004-2009 + 461 + + + + + Oil companies-Texaco, Chevron, and Indonesian government to escape U.S. + tax + 2003-2004 + 461 + + +

    (Letter from Professors Gramlich and Wheeler; evasion)

    +
    +
    + + + Problems with tax cuts + 2003-2005 + 461 + + + + + Real Estates Investment Trusts (RETIs) + 2005 + 461 + + + + + Repatriation tax holiday + 2003-2006 + 462 + + + + + Savings for Working Families Act -- S.871, (Cosponsor) + 2007-2008 + 462 + + + + + State online taxes + 2003 + 462 + + + + + State tax incentives -- economic development + 2004-2006 + 462 + + + + + Securities rule 144, (J. Davis) + 3 subfolders + 2005-2006 + 462 + + + + + Subsidiary law + 2005 + 462 + + + + + Synfuels section 29 + 2003 + 462 + + + + + Tax civil rights and Tax Fairness Act + 2001-2003 + 462 + + + + + Tax cut -- working families + 2004 + 462 + + + + + Tax cuts pay for themselves + 2006 + 462 + + + + + Tax evasion + + + + Bermuda Reinsurance information, (tax haven) + 2003 + 462 + + + + + Check the box + 7 subfolders + 2000-2003 + 462 + + +

    (Includes Subpart F)

    +
    +
    + + + International Comparison of Corporate tax rates + 2004-2006 + 462 + + + + + Legislation + 15 subfolders + 2005-2006 + 463 + + +

    (Includes Baucus bill, cost sharing regulations, fuel and hybrid cars, Energy + bill amendment, check the box, Save American Manufacturing Initiative, etc.; + Dingell))

    +
    +
    + + + OECD model treaty arbitration -- Germany and Belgium + treaties + 5 subfolders + 2006-2007 + 463 + + +
    + + + Tax gap + 6 subfolders + 2005-2006 + 463 + + + + + Tax lien bill -- S.1124 (Levin bill) + 2007 + 463 + + + + + Tax reconciliation conference report + 2006 + 463 + + + + + Tax reporting of subs, parent, foreign, and domestic + 2005 + 2008 + 463 + + + + + Taxation of social security + 2003-2005 + 463 + + + + + Taxpayer info + March 2006 + 463 + + + + + Two tax systems and tax cuts + 2004 + 463 + + + + + Tobacco excise tax + 2007-2008 + 2003 + 463 + + + + + Unfunded Mandates Reform Act in the internet tax debate + 2003-2004 + 463 + + + + + Windfall profits tax, (J. Davis) + 2005-2007 + 463 + + + + + WorldCom and KMPG + 2003-2005 + 463 + + + + + U.S. airways pre-65 health care tax credit + January 2006 + 463 + + + + + Vehicle donations, (Jumpstart Our Business Strength bill -- + H.R.4520) + 2005 + 463 + + + + + Withholding on state and local government contractors + 2005-2008 + 463 + + + + + Wyden tax reform + 2005 + 463 + + +
    + + + Tax havens + + + + 5 subfolders + 2002-2006 + 464 + + +

    (Includes PSI hearing booklet -- What is the U.S. Position on Offshore Tax + Havens? July 18, 2001 -- S.Hrg.107-152)

    +
    +
    + + + Amendment to Highway bill, (Tax shelter provision; J. + Davis) + 2004 + 467 + + + + + Baucus-Grassley tax haven bill -- S.1937 + 2003 + 464 + + + + + Bermuda reinsurance tax + 2007 + 464 + + + + + Bermuda reinsurance tax 2 + 2000-2003 + 464 + + + + + Chirelstein letter, (Professor of Law Marvin Chirelstein -- opinion on + tax shelter reform proposals; J. Davis) + March 29, + 2004 + 467 + + + + + Collins GAO report, (J. Davis) + 2004 + 464 + + + + + Competitiveness, (T. Hensler) + 2003 + 464 + + + + + District of Columbia Bar Continue Legal Education Taxation Institute -- + Attacking Tax Shelters: What Happened and What's Next? + 2005 + 464 + + + + + Earned income tax credit (EITC) tax shelter amendment to + appropriations + 2003 + 464 + + + + + Edward's 2008 plan on tax havens + 2008 + 464 + + + + + GAO fed contractors: subsidiaries in tax havens, (J. Davis) + 2003 + 467 + + + + + Hearing-Levin testimony before the Senate Committee on Finance-Tax + Shelters: Who's Buying, Who's Selling, and What's the Government Doing About + it? + October 21, + 2003 + 464 + + +

    (Auditor Independence and Tax Shelters Act)

    +
    +
    + + + Inversion + + + + Accenture, (T. Hensler and J. Davis) + 4 subfolders + 2002-2005 + 464 + + + + + Appropriations contract bans, (J. Davis) + 2007 + 464 + + + + + Contract Ban Inversion bill -- not introduced, (J. Davis) + 2003 + 464 + + + + + Corporate inversions + 2003 + 464 + + + + + Inversion amendments, Fall + 2002 + 464 + + +

    (tax havens -- drafts of corporate inversion amendments; T. Henseler)

    +
    +
    + + + Inversion reconciliation amendments, (T. Henseler) + 2003 + 464 + + + + + Inversions, DHS, Accenture, (Levin inversion amendment to Homeland + Security appropriations; T. Henseler and J. Davis) + 2003-2004 + 464 + + + + + Inverters -- Homeland appropriations amendment, (Levin + amendment) + undated + 464 + + + + + Reid-Levin corporate inversion bill + 2 folders + 2003 + 464 + + +

    (Corporate Patriot Enforcement Act; T. Henseler)

    +
    +
    + + + Representative Neal -- Corporate Inversion bill + 2003 + 465 + + +

    (identical to Reid-Levin; T. Henseler)

    +
    +
    +
    + + + Kerry tax haven bill, (T. Henseler) + 2003 + 465 + + + + + Levin legislation + + + + Auditor and tax shelter services + 2 folders + 2003 + 477 + + +

    (Tax Shelter Auditor Independence Act -- Levin sponsor; T. Henseler)

    +
    +
    + + + Big Levin tax haven bill, (Tax Haven and Tax Shelter Reform + Act) + July 16, + 2003 + 465 + + + + + Draft Levin legislation + 2003 + 465 + + + + + Comparison of Levin bill Senate PSC and final FSC tax shelter + provisions + 2004 + 465 + + + + + Levin-Coleman FSC amendment, (S.1637) + 6 subfolders + 2004 + 465 + + + + + Levin-Coleman tax shelter bill working file -- S.2310 (J. + Davis) + 10 subfolders + 2004 + 465 + + + + + Markup drafts of Levin-Coleman Tax Shelter Tax Haven bill, (J. + Davis) + 3 folders + 2004 + 465 + + + + + Markups of Levin-Coleman Tax Shelter Tax Haven bill -- S.1565 (J. + Davis) + 2005 + 465 + + + + + Levin-Coleman tax shelter tax haven reform act + 11 subfolders + 2005-2006 + + + + Folder 1 of 2 + 465 + + + + + Folder 2 of 2 + 465 + + + + + + Dorgan and Levin tax haven bill -- S.779 and S.396 + 2005-2008 + 466 + + + + + Levin-Coleman-Obama Stop Tax Haven Abuse Act -- S.681, (J. + Davis) + 7 subfolders + 2007 + 466 + + +
    + + + Carl Levin tax haven file + 2006 + 466 + + +

    (Carl's writing)

    +
    +
    + + + Offshoring, (evasion) + May 2004 + 466 + + + + + Proposed change + 2002 + 466 + + + + + Representative Doggett bills, (T. Henseler) + 2001-2002 + 466 + + + + + Subpart F, (T. Henlser and E. Bean) + 2002-2003 + 466 + + + + + Subpart F note and memos + 2002-2003 + 466 + + + + + SUTA dumping -- tax shelter, (State Unemployment Tax Act) + 2004 + 466 + + + + + Tax haven abuses legislation -- PSI + 14 subfolders + 2006 + 466 + + +

    (Includes August 1, 2006 PSI hearing transcript)

    +
    +
    + + + Tax havens and corporate inversion + 2004 + 2006 + 466 + + + + + Tax havens including PSI, hearing, Subpart F, shelters, and + inversions + 2006 + 466 + + +

    (Carl's writing)

    +
    +
    + + + Tax record + 3 folders + 1979-1996 + 467 + + +

    (Carl's writing)

    +
    +
    + + + Tax shelters + 5 subfolders + 2003-2004 + 467 + + +

    (Includes speeches)

    +
    +
    + + + Tax shelter information + 2002 + 467 + + + + + Tax shelter penalties + 2003 + 467 + + + + + Thomas bill -- H.R.5905 (T. Henseler) + 2002 + 467 + + + + + Transfer pricing + 2002-2003 + 467 + + + + + Transfer pricing, (Summary of phone call with Scott Newlon) + January 14, + 2003 + 467 + + + + + Scott Newlon -- transfer pricing, (T. Henseler) + 2003 + 467 + + + + + Professor Avi Yonah + 2002 + 467 + + +
    + + + Tax shelter amendment to tax reconciliation bill -- S.2020 (Levin bill, + for FY2006) + 2005 + 467 + + + + + Transfer pricing, (J. Davis and M. Brown) + 2005 + 467 + + + + + Troubled Asset Relief Program (TARP) + + + + 2008 + 467 + + +

    (J. Davis)

    +
    +
    + + + Oversight of troubled asset relief program (TARP), (J. + Davis) + December 2008-January 2009 + 467 + + +
    + + + Two Americas + 2004 + 467 + + + + + Website edits -- budget, taxes, and the economy + 2003 + 467 + + + + + Fair Credit Reporting Act (FCRA) (J. Davis) + 5 subfolders + 2003 + 1110 + + + + + Manufacturers tax credit bill + 2005-2006 + 1110 + + +
    + + + Education -- Alpena Community College grant request, (Traverse City + office) + May + 2003 + 491 + + + + + Energy and natural resources + 1979-2014 + + + + Appropriations and funding + + + + FY2002-FY2004 Energy and water requests + 4 folders + 549 + + + + + FY2002-FY2004 Environmental Protection Agency + 4 folders + 549 + + +

    (EPA; VA-HUD funding priorities)

    +
    +
    + + + FY2004 + 1030 + + + + + FY2004 -- Energy and water + 549 + + + + + FY2004-Environmental Protection Agency (EPA) omnibus + 549 + + + + + FY2005 Defense Michigan projects + 4 subfolders + 549 + + + + + FY2005-Great Lakes + 549 + + + + + FY2006 Conversion tax credit and hydrogen report + 8 subfolders + 549 + + +

    (Advanced technology vehicles, ethanol, etc.)

    +
    +
    + + + FY2006 Department of Defense (DOD) appropriations -- Michigan projects + auto + 19 subfolders + 550 + + + + + FY2006-Energy and water + 2 folders + 550 + + + + + FY2006 Energy and water (A. Yates) + 550 + + + + + FY2006-environmental + 550 + + + + + FY2006-Great Lakes + 550 + + + + + FY2007 (K. Sybenga) + 550 + + + + + FY2007 Energy and water (A. Yates) + 550 + + + + + FY2007 Great Lakes (J. Mulinex) + 550 + + + + + FY2007 CJS -- Great Lakes (J. Mulinex) + 550 + + + + + FY2008 + 9 subfolders + 550 + + +

    (Includes energy and water, interior, NOAA, CJS, etc.; A. Yates and M.L. + Wagner)

    +
    +
    + + + FY2008 Interior appropriations (A. Yates) + 1030 + + + + + FY2009 CJS (J. Mulinex) + 2 folders + 550 + + + + + FY2009 Dear Colleague -- environment funding (A. Yates) + 2 folders + 550 + + + + + FY2009-Energy and water + 551 + + + + + FY2009 Great Lakes and NOAA (J. Mulinex) + 551 + + + + + FY2009 Interior -- Michigan coast and Great Lakes (J. + Mulinex) + 551 + + + + + FY2009-2010 Defense appropriations for Michigan projects -- Research + and development, energy, technology, auto, manufacturing and vehicle + related + 13 subfolders + 551 + + + + + Requests for Michigan projects, (A. Yates) + 2006 + 551 + + +
    + + + Alternative energy programs including ethanol, biodiesel, and + hydrogen + 2006 + 551 + + +

    (Carl's writing)

    +
    +
    + + + Auto + + + + Advanced Technology Vehicles (ATV) + + + + 2002-2003 + 551 + + + + + 2004-2010 + 551 + + + + + 2005 + 551 + + +

    (Includes a CD and a printed photograph of Stan Ovshinsky and Levin; Carl + file)

    +
    + + + Carl Levin and Stan Ovshinsky + undated + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Photographs of Senator Carl Levin and + Stanford R. Ovshinsky with a Hydrogen Hybrid car with Ovonic Solid H2 + Storage.)

    +
    +
    +
    +
    + + + Advanced Technology Vehicle Manufacturing Loan Program -- Section + 136 + + + + 18 folders + 2008 + 551 + + + + + Bailout + 22 subfolders + September-October 2008 + 552 + + + + + Bailout + 22 subfolders + September-November 2008 + 552 + + + + + Tax amendment vehicles + 2 folders + 2005 + 552 + + + + + + American Manufacturing Initiative, (A. Pascale) + 2007 + 1030 + + + + + American Manufacturing Initiative (AMI) part 1 + 4 subfolders + 2007 + 553 + + + + + American Manufacturing Initiative (AMI) part 2 + 13 subfolders + 2007 + 553 + + + + + American Manufacturing Initiative (AMI) 2 part 1 + 6 subfolders + 2007 + 553 + + + + + American Manufacturing Initiative (AMI) 2 part 2 + 9 subfolders + 2007 + 553 + + + + + Apollo and CAFE + 15 subfolders + 2005-2006 + 553 + + + + + Apollo ethanol + 7 subfolders + 2005 + 553 + + + + + Apollo manufacturing initiative + 13 subfolders + 2006 + 553 + + + + + Big 3 and POTUS + 9 subfolders + November 2006 + 553 + + + + + Ethanol + 10 subfolders + 2005 + 553 + + + + + Fuel cells, (M.L. Wagner) + 2002-2003 + 554 + + + + + Fuel economy and Big 3 + 4 subfolders + 2006 + 554 + + + + + Manufacturing initiative + 25 subfolders + 2006 + 554 + + + + + Manufacturing initiative + 3 subfolders + 2007 + 554 + + + + + Oil savings Cantwell colloquy + 7 subfolders + 2005 + 554 + + +
    + + + Bus programs, (Clean bus) + 2003 + 554 + + + + + Canadian trash, (K. Sybenga) + 2005 + 554 + + + + + Canadian trash, (A. Yates) + 2005-2006 + 554 + + + + + Clean air-small engine regulations Feinstein and California + amendment + 2003 + 554 + + + + + Clean Diesel Act Senate companion, (Dingell) + 2003 + 554 + + + + + Clean water and wetlands + 2001-2006 + 554 + + + + + Climate (A. Yates) + + + + Carl's papers on Lieberman-Warner-Biel climate + 5 subfolders + 2007-2008 + 555 + + + + + Carl's memos and education materials + 2008-2009 + 555 + + + + + + Climate change + 2 folders + 2003-2004 + 555 + + + + + Climate change, (A. Yates) + 2005 + 555 + + + + + Conservation Security Program, (K. Sybenga) + 2004 + 555 + + + + + Corporate Average Fuel Economy (CAFE) + + + + 2002-2003 + + + + I + 7 subfolders + 555 + + + + + II + 19 subfolders + 555 + + + + + + 2003 + + + + I + 14 subfolders + 555 + + + + + II + 11 subfolders + 556 + + + + + III + 20 subfolders + 556 + + + + + IV + 15 subfolders + 556 + + + + + + 2005 + + + + I + 7 subfolders + 556 + + + + + II + 6 subfolders + 556 + + + + + + 2007 + + + + I + 9 subfolders + 556 + + + + + II drafts + 21 subfolders + 557 + + + + + III + 18 subfolders + 557 + + + + + IV + 14 subfolders + 557 + + + + + V drafts + 8 subfolders + 557 + + + + + VI + 22 subfolders + 557 + + + + + VII + 12 subfolders + 557 + + + + + VIII + 7 subfolders + 558 + + + + + IX + 24 subfolders + 558 + + + + + + Bond-Levin + 7 subfolders + 2002-2005 + 558 + + + + + CAFE and energy bill binder + 2003 + 558 + + + + + Feinstein amendment + 2003 + 558 + + + + + Floor book, (M.L. Wagner) + 3 folders + July 28, 2003 + 558 + + + + + Legislation and information binder, (M.L. Wagner) + 2003 + 558 + + + + + Rule changes, (M.L. Wagner) + 2 folders + 2005 + 558 + + + + + Tax files, (Carl file) + 5 subfolders + 2003 + 558 + + + + + Taxes + 9 subfolders + 2003 + 559 + + + + + Vehicle comparison charts, (Bond-Levin) + 23 subfolders + 2005 + 559 + + + + + + Corporate Average Fuel Economy (CAFE) file + 2007 + 559 + + +

    (Carl's writing)

    +
    +
    + + + Emerald Ash Borer (invasive species) + + + + 2003 + 559 + + +

    (J Hekhuis)

    +
    +
    + + + 2007 + 559 + + +

    (K. Sybenga)

    +
    +
    +
    + + + Endangered Species Act, (A. Yates) + 2005 + 559 + + + + + Endangered species + + + + Kirtland's Warbler, (A. Yates) + 2005 + 559 + + + + + Mourning Dove, (K. Sybenga) + 2006 + 559 + + + + + + Senate energy bill, (Bond-Levin) + 2003 + 559 + + + + + Energy bill, (A. Yates) + 7 subfolders + 2005 + 559 + + + + + Energy bill + 14 subfolders + 2005 + 560 + + + + + Energy bill, (M.L. Wagner) + 2007 + 560 + + + + + Energy bill -- Hydrogen Commission + 7 subfolders + 2005 + 560 + + + + + Energy bill and west Michigan ozone + 2004-2005 + 560 + + +

    (Carl's writing)

    +
    +
    + + + Energy compromise + September 2008 + 560 + + +

    (Carl's writing)

    +
    +
    + + + Energy tax + 2003 + 560 + + + + + Environmental Disposal Systems, Inc (EDS) + 2003-2004 + 560 + + + + + Environmental Protection Agency (EPA) + 2004 + 560 + + + + + Environmental Protection Agency (EPA) non-attainment -- Oakland County PM + 2.5 designation + 4 folders + 2005 + 560 + + + + + Ethanol plant in Caro, Michigan, (J Hekhuis) + 2003 + 560 + + + + + Fisheries + 1991-2005 + 560 + + + + + Forestry + 2005 + 560 + + + + + Great Lakes + + + + Cargo residue + 1997-2005 + 560 + + + + + Coast Guard (A. Pascale) + + + + Bramble + 2003-2004 + 1030 + + + + + Ice breaking + 2006 + 1030 + + + + + Pilots + 2003-2005 + 1030 + + + + + + Garrison diversion project + 2 folders + 2000-2005 + 560 + + + + + General + 1996-2003 + 561 + + + + + Invasive species + + + + 1996-2009 + 561 + + + + + 2007-2008 + 561 + + + + + Action plans + 1991-2005 + 561 + + + + + Asian carp + 1996-2009 + 561 + + + + + Ballast regulation + 1996-2001 + 561 + + + + + Ballast water + 2002 + 561 + + + + + Clean Water Act + 1998-2008 + 561 + + + + + GAO report + 2003 + 561 + + + + + Great ships + 2006 + 561 + + + + + Great Lakes + 2000-2008 + 561 + + + + + Harbor user fees + 1992-2000 + 561 + + + + + Hearings + 2006 + 561 + + + + + Inouye-Stevens + 2005 + 561 + + + + + International Joint Commission (IJC) + 1999-2007 + 561 + + + + + International Joint Commission (IJC) + 2001-2007 + 561 + + + + + Lacey Act + 2005-2007 + 561 + + + + + Legislation + 2007-2008 + 561 + + + + + Michigan + 2001-2007 + 561 + + + + + Michigan suit + 2007 + 561 + + + + + National Aquatic Invasive Species Act (NAISA) + 2002-2008 + 561 + + + + + NAISA endorsements + 2002-2005 + 561 + + + + + + Issues for briefing and Hall of States meeting agenda + 2006 + 561 + + + + + Water issues, (J. Mulinex) + 2008 + 561 + + + + + + Great Lakes Academy + 1999 + 561 + + + + + Great Lakes Center Pfizer facility -- Great Lakes research, (K. + Sybenga) + 2007 + 1030 + + + + + Great Lakes Maritime Academy, (A. Pascale) + 1998-2005 + 1030 + + + + + Great Lakes Fish and Wildlife Restoration Act + 2006 + 561 + + + + + Great Lakes Initiative (GLI) + 2004-2008 + 1989 + 561 + + + + + Great Lakes Joint Ventures + 1999 + 561 + + + + + Great Lakes National Program Office (GLNPO) + 1996-1997 + 561 + + + + + Great Lakes Science Center + 2002-2008 + 561 + + + + + Great Lakes Task Force + 1997-2001 + 2006-2007 + 561 + + + + + Great Lakes Water Quality Agreement + 2007 + 561 + + + + + Hearing -- FEMA's Response to the 2004 Florida Hurricanes: A disaster for + taxpayers? (HSGAC) + May 18, 2005 + + + + Background and preparation (K. Meier amd R. Moy) + 561 + + + + + Exhibit book (E. Bean) + 561 + + + + + + International Maritime Organization + 2003-2005 + 561 + + + + + Interstate trash, (K. Meier amd R. Moy) + 2005 + 562 + + + + + Invasive species + 2004 + 562 + + + + + John Glenn Great Lakes Basin program + 2004-2005 + 562 + + + + + Carl Levin's notes on memos and letters, (A. Yates) + 2004-2014 + 562 + + + + + Manufacturing-Apollo program file + 2005-2006 + 562 + + +

    (America's dependency on foreign oil; Carl's writing)

    +
    +
    + + + Mercury + 3 folders + 2000-2004 + 562 + + + + + Michigan Biotechnology Institute (MBI) + + +

    (Partnered with MSU; M.L. Wagner)

    +
    + + + AFEX biofuels + + + + 2006-2013 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + 7 subfolders + 2007 + 562 + + + + + 7 subfolders + 2008 + 562 + + +
    + + + Update + October 2008 + 563 + + +
    + + + Michigan law review -- The Death of Poletown, (A. Yates) + 2005 + 563 + + + + + Michigan project-Hamilton Dam project and Assistant Secretary of the Army + Darcy nomination and visit, (Michigan; A. Yates) + 2007-2009 + 1043 + + + + + Michigan projects + 12 subfolders + 2005-2014 + 563 + + + + + Michigan projects + 18 subfolders + 2006-2014 + 563 + + + + + Michigan State University (MSU) -- isotopes + + + + Rare Isotope Accelerator (RIA), (J Hekhuis) + 2003 + 563 + + + + + Rare Isotope Accelerator (RIA) + 23 subfolders + 2005-2006 + 563 + + + + + 2 subfolders + 2008 + 563 + + + + + Facility for Rare Isotope Beams (FRIB) pre-decision + 9 subfolders + 2008 + 563 + + + + + Rare isotopes + July 2008 + 563 + + + + + + Miscellaneous Michigan environmental projects + 2000-2004 + 564 + + + + + Nominations -- Environmental Protection Agency (EPA) + Administrator + + + + Leavitt + 2003 + 1043 + + + + + Selection and nominee + 2003 + 1043 + + + + + + Press -- news release ideas + April-May 2005 + 564 + + +

    (Memos about Michigan)

    +
    +
    + + + Press releases from David Lyles files + 1979 + 564 + + +

    (Includes environment and energy, auto, adoption, etc.; D. Lyles)

    +
    +
    + + + Seaman Mineral Museum + + + + 2002-2003 + 564 + + +

    (K. Meier)

    +
    +
    + + + 2002-2004 + 564 + + +

    (K. Meier)

    +
    +
    + + + 2002-2005 + 564 + + +

    (Carl's writings)

    +
    +
    +
    + + + Upper Peninsula mining + 2005 + 564 + + + + + Upper Peninsula mining-copper and gold, (K. Sybenga) + 2005 + 564 + + + + + Water Resources Development Act (WRDA) + + + + 3 folders + 2004 + 2002 + 564 + + + + + 2006 + 564 + + +

    (A. Yates)

    +
    +
    + + + 2007 + 564 + + +

    (A. Yates)

    +
    +
    + + + Army Corps of Engineers rearrangement + 2 folders + 2002-2004 + 564 + + +
    +
    + + + Foreign Policy + 2002-2010 + + + + Levin's record on foreign policy + 2 folders + 2003-2008 + 627 + + + + + Afghanistan and Pakistan + 2008 + 628 + + +

    (Carl's writing; "backup less important")

    +
    +
    + + + Albania + + + + Background and U.S. aid + 2003 + 628 + + + + + National Albanian American Council + 2004 + 628 + + + + + + K) Albanian asylum case + 2007 + 628 + + +

    (Levin's writing)

    +
    +
    + + + Anti-Semitism + + + + Moran, Jim + March 2003 + 628 + + + + + Organization for Security and Cooperation in Europe (OSCE) + + + + S.Con.Res.7 + 2003 + 628 + + +

    (Levin is sponsor)

    +
    +
    + + + Efforts and success + July 2004 + 628 + + + + + Letters on Anti-Semitism + March 2004 + 628 + + +
    +
    + + + Arab-America + + + + Arab Community Center for Economic and Social Services grant + (MI) + 2003 + 628 + + + + + Global Conference on U.S.-Arab relations, (Michigan) + May 2003 + 628 + + + + + Introduction for Muthanna Al-Hanooti + June 2004 + 628 + + + + + U.S.-Arab Economic Forum + 2003 + 628 + + + + + + Armenia-meeting with Edgar Hagopian + April 2004 + 628 + + + + + Cuba-staff communications (SASC) + + + + Cuba travel ban + July 26, 2002 + 628 + + + + + Dorgan-Commando Solo + 2004 + 628 + + + + + USAID + 2008 + 2010 + 628 + + + + + + Egypt + + + + Gaza weapons smuggling tunnels + 2004 + 628 + + + + + Israel relations + 2004 + 628 + + + + + Letter to President Bush-President Mubarak's visit and human rights + concerns + March 2004 + 628 + + + + + Letter from President Mubarak-Levin's work and human rights + May 2004 + 628 + + + + + Letter to Ambassador Fahmy-U.S. Commission on International Religious + Freedom visit to Egypt + July 2004 + 628 + + + + + + India-Senate Friends of India Caucus + April 2004 + 628 + + + + + R) Iran + 2007-2008 + 628 + + +

    (Carl's writing)

    +
    +
    + + + Iraq + + + + Armed Services Committee inquiry into objectivity and credibility of + U.S. intelligence prior to Iraq War-press release + June 11, 2003 + 628 + + + + + Chaldeans + + + + Amendments + + + + S.2611 + May-June 2006 + 628 + + + + + Asylum change + March-April 2006 + 628 + + + + + Possible + 2005 + 628 + + + + + Specter-Lautenberg + 2005-2006 + 628 + + + + + + Asylum statutes + 2005 + 628 + + + + + Jubilee Campaign + 2006 + 628 + + + + + Kennedy hearing-refugees + January 16, + 2007 + 628 + + + + + Memos + + + + Minority community leaders + 2005-2006 + 628 + + + + + State department-Iraqi Christian meeting + May 11, + 2006 + 628 + + + + + Rep. Candice Miller questions at HASC hearing + November 20, + 2006 + 628 + + + + + + Miscellaneous + 2005-2006 + 628 + + + + + Miscellaneous + 2007 + 628 + + + + + Support material + 2005-2006 + 628 + + + + + + Coalition Provisional Authority-L. Paul Bremer III + December 2003 + 628 + + +

    (Israel)

    +
    +
    + + + Cost of post-Saddam Iraq letter-Hilary Clinton + February 2003 + 628 + + + + + Kurds-Barham Salih-letters, memos, and background + information + 2003-2004 + 628 + + + + + Kurdish Human Rights Watch-letters, memos, and background + information + 2003 + 628 + + + + + Loan guarantees + 2003 + 628 + + + + + Religious minorities-staff communications (SASC) + + + + Miscellaneous + 2004-2007 + 628 + + + + + Humanitarian of the Year award-Chaldean Chamber of + Commerce + April 13, + 2007 + 628 + + + + + Meeting with Deputy UN High Commissioner for Refugees + July 26, + 2007 + 628 + + + + + Meeting with the Chaldean Assyrian Syrian Council of + America + April 14, + 2008 + 628 + + + + + Interview with Robert Marcarelli + July 2008 + 628 + + + + + + Trip report-Frank Wolf + May 2003 + 629 + + +
    + + + Israel + + + + Aid and settlements + 2003 + 629 + + + + + American Israel Public Affairs Committee (AIPAC) + + + + International Court of Justice (ICJ) on security fence + 2003-2004 + 629 + + + + + Iran-Group of Eight Summit + June 2004 + 629 + + + + + Resolution on Mid-East peace process, (Co-sponsor) + 2004 + 629 + + + + + Scorecards for Levin and Kerry + 2004 + 629 + + + + + + Detroit Jewish Community Council + January 2003 + 629 + + + + + The Disengagement Plan-Prime Minister Sharon + 2004 + 629 + + + + + Disproportionate force + 2003 + 629 + + + + + Elections-Cabinet + 2003 + 629 + + + + + Memos-Israel officials, (SASC) + 2003-2004 + 629 + + + + + Shuster, David-U.S. citizen in Argentine prison + April 2004 + 629 + + + + + Staff communications (SASC) + + + + Memos + 2006 + 629 + + + + + Jewish Members Meeting with Foreign Minister Tzipi Livni September + 13 + 2006 + 629 + + + + + Meeting with Israeli Minister of Defense Amir Peretz + March 9, + 2007 + 629 + + + + + Meeting with Michigan AIPAC Members March 12 + 2007 + 629 + + + + + Nelson (FL)/Ensign letter re: U.S. Policy toward the new Palestinian + Unity Government March 21 + 2007 + 629 + + + + + Democratic Steering Committee Meeting June 19 + 2007 + 629 + + + + + Meeting with Israeli Minister of Defense Ehud Barak October + 17 + 2007 + 629 + + + + + Senator Dodd's letter re: the Annapolis conference December + 20 + 2007 + 629 + + + + + Floor statement on Israeli-Palestinian web start-up June + 18 + 2008 + 629 + + + + + + Statements-John Kerry + 2004 + 629 + + + + + Target: Israeli Children, (Book) + September 2003 + 629 + + + + + + Israel, Jewish, Mubarak + 2006 + 629 + + +

    (Carl's writings)

    +
    +
    + + + Middle East-staff communications (SASC) + + + + News articles + 2002-2004 + 629 + + + + + News articles and letters + 2002 + 629 + + + + + News articles and memos + 2002 + 629 + + +

    (Includes Simon Wisenthal Center digital hate CD)

    +
    + + + Digital Hate 2002 + 2002 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Digital Hate 2002, an Internet report and + analysis, compiled by the Simon Wiesenthal Center. Presents a number of + websites that actually enlist online, potential suicide bombers, (Iran and + Gaza). Other sites in English and Arabic present FATWAS that validate and + promote homicide bombers. Also included in this report are hate games + including KABOOM, in which you play a suicide bomber, as well as websites on 5 + continents promoting racism, antisemitism, terrorism, Holocaust denial.)

    +
    +
    +
    +
    + + + Nomination -- Ambassador to Slovenia -- Yousif Ghafari + April 8, 2008 + 1043 + + + + + L) North Korea + 2006-2007 + 629 + + +

    (Carl's writing)

    +
    +
    + + + Palestine Liberation Army (PLA)-Abu Mazen + 2003 + 629 + + + + + Rabbinical Assembly + 2003 + 629 + + +

    (Includes a photograph)

    +
    +
    + + + Russia-National Council of Soviet Jewry + 2004 + 629 + + + + + Sweden-sister ship purchase + 2003 + 629 + + + + + Syria Ambassador meeting + April 2004 + 629 + + + + + Trips and CODELs + + + + Italy, Qatar, Pakistan, Afghanistan, Kuwait, Jordan, Turkey, United + Kingdom (CODEL Warner; SASC) + February 15-22, 2003 + + + + Briefing book + 629 + + + + + Kuwait and Afghanistan + 629 + + + + + Trip materials + 629 + + + + + + June 2003-Ukraine scheduling memo + 629 + + + + + Qatar, Kuwait, and Iraq (CODEL Warner) + 2 folders + June 28-July 3, 2003 + 629 + + + + + Qatar, Kuwait, Iraq, Crete (CODEL Warner) + June 28-July 3, 2003 + Includes + photographs + 629 + + + + + Israel, Jordan, Syria, Qatar, Kuwait, Iraq, Belgium (CODEL + Levin) + 2 folders + March 13-18, 2004 + 629 + + + + + Kuwait, Iraq, Belgium, Luxembourg, United Kingdom (CODEL Warner; + Includes a CD and two photographs) + December 11-18, 2004 + 629 + + + + CODEL Warner's Visit to the Benelux + 2004 December 15-16 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Photographs of Congressional Delegation + (CODEL) Warner's Visit to the Benelux, Belgium and Luxembourg, on December + 15-16, 2004. Photographs by Dan R. Wilson.)

    +
    +
    +
    + + + Kuwait, Iraq, Belgium, and London (CODEL Warner) + December 11-18, 2004 + 629 + + + + + Israel, Iraq, Jordan (CODEL Levin) + March 28-April 13, 2005 + 630 + + + + + Jordan and Iraq (CODEL Levin) + July 3-7, 2005 + 630 + + + + + Jordan and Iraq (CODEL Levin) + July 3-7, 2005 + 630 + + + + + Italy, Pakistan, Afghanistan, Kuwait, Iraq, Turkey, and England (CODEL + Levin-Warner) + March 18-25, 2006 + + + + Senator Levin Visit to Balad Air Base, Iraq + March 22, + 2006 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Photographs of Senator Carl Levin's visit + to Balad Air Base, Iraq.)

    +
    +
    + + + Photograph CD letter + March 30, + 2006 + 630 + + + + + Trip documents + 630 + + +
    + + + Jordan, Iraq, Israel (CODEL Warner; Includes photographs) + October 1-3, 2006 + 630 + + + + + Italy (CODEL Levin) + August 15-21, 2007 + 630 + + + + + Jordan, Iraq, Kuwait (CODEL Levin) + March 14-18, 2008 + 630 + + + + + Afghanistan, Pakistan, and Israel (CODEL Levin) + May 23-28, 2008 + + + + Afghanistan + 630 + + + + + Israel + 630 + + + + + Pakistan + 630 + + + + + Schedule, news articles, and foreign travel + 630 + + + +
    + + + Ukraine + + + + Ambassadorial meeting + September 2003 + 630 + + + + + Anniversary of Georgiy Gongadze murder + September 16, + 2003 + 630 + + + + + Famine commemoration, (Sander) + May 2003 + 630 + + + + + Famine memorial legislation + 2003 + 630 + + + + + Meeting-elections + February 2004 + 630 + + + + + Permanent National Trade Relations (PNTR) Summit + 2004 + 630 + + + + + Radio Free Europe + February-March 2004 + 630 + + + +
    + + + Government and Homeland Security + 1993-2011 + + + + 9/11 Commission report + 3 folders + 2007 + 714 + + + + + Appropriations and funding + + + + FY2003 VA-HUD request letter -- Levin and Stabenow + 718 + + + + + FY2004 Miscellaneous + 2 folders + 718 + + + + + FY2004 and FY2005 Department of Homeland Security funding requests + (HSGAC) + 3 folders + 718 + + + + + FY2005 + + + + Letters, earmarks, and priorities + 5 folders + 718 + + + + + VA-HUD request letter -- Levin and Stabenow + 718 + + + + + + FY2007 + + + + Department of Homeland Security + 718 + + + + + Department of Homeland Security budget (HSGAC hearing; (K. + Meier) + 718 + + + + + Miscellaneous appropriations (E. Cash) + 718 + + + + + + FY2008 + + + + Appropriations (K. Sybenga) + 718 + + + + + Omnibus appropriations (Michigan; A. Yates) + 718 + + + + + THUD appropriations (K. Sybenga) + 718 + + + + + + FY2009 + + + + Miscellaneous + 12 subfolders + Includes request forms, + requests, Wayne State University, Economic Development Coalition, City of + Highland Park, Eastern market, State and Foreign operations, Defense, + financial services, THUD, stimulus, omnibus -- Michigan; K. Sybenga + 718 + + + + + Omnibus (Michigan, K. Sybenga) + 719 + + + + + + Appropriations, (T. Henseler) + January 2003 + 719 + + + + + Supplemental appropriations bill + 2003 + 719 + + + + + General Services Administration (GSA) reprogramming -- Ambassador + Bridge, (Homeland Security; A. Pascale) + 2004 + 719 + + + + + + Budget + + + + FY2003 debt ceiling (T. Henlser and R. Arenberg) + 719 + + + + + FY2004 + + + + Budget memos to Carl (T. Henseler) + 719 + + + + + President's budget + January-February 2003 + 1115 + + +

    (R. Arenberg and T. Henseler)

    +
    +
    +
    + + + FY2005 + + + + Background + 2003-2004 + 719 + + + + + Budget (E. Glass) + 719 + + + + + Caps from + 2004 + 719 + + + + + Concurrent resolution of budget + March 4, + 2004 + 719 + + + + + Congressional Budget Office (CBO) projections + 2004 + 719 + + + + + Pay-go budget enforcement rule + April 2004 + 719 + + + + + President's budget + January-February 2004 + 719 + + + + + Tax cuts + March 2004 + 719 + + + + + + FY2006 + 719 + + + + + FY2006-J. Davis + + + + Budget opposition (R. Arenberg and J. Davis) + 719 + + + + + Budget resolution + 719 + + + + + Carl's budget notes + 719 + + + + + Highway bill budget issues + 719 + + + + + Reconciliation spending and general rules + 719 + + + + + + FY2008 + + + + Budget resolution + 719 + + + + + Budget conference report + 719 + + + + + Offshore budget + 719 + + + + + President's budget request + 719 + + + + + + Budget charts, (J. Davis and R. Arenberg) + 2005 + 719 + + + + + Budget points of order on UI, (J. Davis) + July 17, 2003 + 719 + + + + + Budget and tax cuts-Bush stimulus proposal + 2 folders + January-May 2004 + 719 + + + + + Byrd rule and Levin statement on H.R.2 + January-May 2003 + 719 + + + + + Concurrent receipt, (T. Henseler) + 2003 + 719 + + + + + Congressional Budget Office (CBO) Director, (Holtz-Eakin; T. + Henseler) + January 2003 + 719 + + + + + Debt limit, (T. Henseler) + 2003 + 719 + + + + + Deficit charts memos, (T. Hensler) + May 2003 + 719 + + + + + Deficit without social security surplus, (J. Davis) + January 2007 + 719 + + + + + Democratic alternative to Bush stimulus plan + January 2004 + 719 + + + + + Dynamic scoring + 2 folders + 2003 + 1043 + + +

    (OMB Director nomination-Bolton)

    +
    +
    + + + Federal budget process + December 3, + 2002 + 719 + + + + + General revenue and expenses, (T. Hensler) + March-April 2003 + 719 + + + + + Iraq war cost, (T. Henseler) + March 2003 + 719 + + + + + Jackie's budget amendment-FY2004 budget resolution + conference + 2 folders + February-April 2003 + 719 + + + + + National debt floor statement + 2003 + 720 + + + + + National debt limit-S.2986 Levin statement + November 2004 + 720 + + + + + Paygo, (budget enforcement) + 2000-2003 + 720 + + + + + Security guard bill, (T. Hensler) + 2003 + 720 + + +
    + + + Campaign finance + + + + Amicus brief on spending limits + 2005-2006 + 720 + + + + + Section 527 of Internal Revenue Code + + + + Amendment + 2005 + 720 + + + + + News articles + May 2005 + 720 + + + + + Unregulated + 2005-2006 + 720 + + +

    (Includes Levin amendment)

    +
    +
    +
    +
    + + + Church and state -- CARE Act + 2003 + 720 + + + + + Coast Guard (A. Pascale) + + + + Consolidation + 2005 + 720 + + + + + Jones Act waiver + 2005 + 720 + + + + + + Homeland Security and Governmental Affairs Committee (GAC; + HSGAC) + + + + Committee files + + + + Intelligence reform, (L. Stuber) + 3 folders + 2002-2004 + 720 + + + + + Pre-Iraq Intel report Senate Select Committee on Intelligence, + (SSCI) + 2004 + 720 + + +

    (Carl's writing)

    +
    +
    +
    + + + Committee hearings (GAC; HSGAC) + + + + PSI hearings 2007 + + + + Meeting of the Commerce Committee + 2007 May 03 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Commerce Committee Hearing on May 3, + 2007, 2:55 pm - 5:45 pm, on pending Corporate Average Fuel Economy (CAFE) + legislation. Witnesses: Hon. Levin, Hon. Inouye, Hon. Stevens, Hon. + Feinstein, Hon. Stabenow, Mr. Alan Reuther, Mr. David Friedman, Adm. Dennis + Blair USN, Mr. Michael J. Stanton, Vice Adm. Dennis McGinn, Hon. David + McCurdy. SR-253.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + Gordon England nomination for Deputy Secretary of Homeland Security + Secretary, (GAC; L. Stuber) + January 24, + 2003 + 721 + + + + + Creation of Terrorist Threat Integration Centers + 2 folders + February 14, + 2003 + 721 + + +

    (Consolidation Intelligence Analysis: A Review of the President's Proposal to + Create Terrorist Threat Integration Center; also Intelligence Reform material; + GAC; L. Stuber)

    +
    +
    + + + Suzanne Mencer and DHS grants + September 16, + 2003 + 721 + + +

    (Mencer nomination for Director of the Office of Domestic Preparedness DHS; + L. Stuber)

    +
    +
    + + + United States Postal Service reform, (GAC) + 2 folders + November 3, + 2003 + 721 + + + + + 9/11 Commission + July 30, + 2004 + 721 + + +

    (Making America Safer: Examining the Recommendations of the 9/11 Commission; + GAC; L. Stuber)

    +
    +
    + + + Intelligence community + August 16, + 2004 + 721 + + +

    (Reorganizing America's Intelligence Community: A View from the Inside ; GAC; + L. Stuber)

    +
    +
    + + + How Saddam Hussein Abused the United Nations Oil-For-Food Program, + (PSI) + November 15, + 2004 + 721 + + + + + The United Nations' Management and Oversight of the Oil-For Food + Program, v (PSI) + 721 + + + + + Oil for Influence: How Saddam Used Oil to Reward Politicians under + the United Nations Oil-For-Food Program, (PSI) + May 17, + 2005 + + + + Questions for Galloway and Pasqua + 2 folders + 721 + + + + + Report on George Galloway and Charles Pasqua + 2 folders + 721 + + + + + Report on Testimony of George Galloway and exhibit + documents + 721 + + + + + Working file + 721 + + + + + + Advanced Technology Program (ATP) + May 26, + 2005 + 721 + + + + + Funding for Private Research and Development, (Subcom + FFMGIIS) + May 26, + 2005 + 721 + + + + + Finding and Fighting Fakes: Reviewing the Strategy Targeting + Organized Piracy, (Subcom OGMFWDC) + June 14, + 2005 + 721 + + + + + Securing American Sovereignty: A Review of the United States' + Relationship with the WTO + July 15, + 2005 + 721 + + +

    (Subcom Federal Financial Management, Government Information, and + International Security; Subcom FFMGIIS))

    +
    +
    + + + World Trade Organization (WTO) hearing binder + July 15, + 2005 + 722 + + + + + After the London Attacks: What Lessons have been Learned to Secure + U.S. Transit Systems? + 2 binders + September 21, + 2005 + 722 + + + + + Trade Policy and the U.S. Automobile Industry, (Democratic Policy + Committee) + February 17, + 2006 + 722 + + + + + Effectiveness of the Small Business Administration (SBA) + April 6, + 2006 + 722 + + +

    (Subcommittee Federal Financial Management, Government Information, and + International Security)

    +
    +
    + + + STOP! A Progress Report on Protecting and Enforcing Intellectual + Property Rights Have Here and Abroad + July 26, + 2006 + 722 + + +

    (Subcom Oversight of Government Management, the Federal Workforce, and the + District of Columbia; Subcom OGMFWDC)

    +
    +
    + + + Failure to Identify Company Owners Impedes Law Enforcement, + (PSI) + November 14, + 2006 + 722 + + + + + United Nations Development Program: A Case Study of North Korea, + (PSI) + January 24, + 2008 + 722 + + + + + Intelligence reform + 2003-2004 + 722 + + + + + Videos + 722 + + + + U.S. Tax Shelter Industry: The Role of Accountants, Lawyers and + Financial Professionals + November 18-20, + 2003 + + + + Part 1 + 03:49:24 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 2 + 03:58:57 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 3 + 00:15:44 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 4 + 00:13:05 + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + Money Laundering and Foreign Corruption: Enforcement and + Effectiveness of the Patriot Act + July 15, + 2004 + + + + Part 1 + 04:01:14 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 2 + 00:18:37 + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + How Saddam Hussein Abused the United Nations Oil-For-Food + Program + November 15, + 2004 + 03:33:53 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + The United Nations' Management and Oversight of the Oil-for-food + Program + February 15, + 2005 + 03:55:01 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Oil for Influence: How Saddam Used Oil to Reward Politicians Under + the United Nations Oil-for-Food Program + May 17, + 2005 + 03:06:46 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Civilian Contractors Who Cheat On Their Taxes And What Should Be + Done About It + June 16, + 2005 + 02:35:06 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Corruption in the United Nations Oil-For-Food Program: Reaching A + Consensus on United Nations Reform + October 31, + 2005 + 02:43:29 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Volatility in the Natural Gas Market: The Impact of High Natural + Gas Prices On American Consumers + February 13, + 2006 + 02:16:39 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + GSA Contractors Who Cheat On Their Taxes And What Should Be Done + About It + March 14, + 2006 + 01:39:49 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Failure to Identify Company Owners Impedes Law + Enforcement + November 14, + 2006 + 01:08:55 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Credit Card Practices: Fees, Interest Rates, And Grace + Periods + March 7, + 2007 + 02:50:02 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Medicare Doctors Who Cheat On Their Taxes And What Should Be Done + About It + March 20, + 2007 + 02:07:46 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Executive Stock Options: Should the IRS and Stockholders Be Given + Different Information? + June 5, + 2007 + 03:07:46 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Excessive Speculation in the Natural Gas Markets + June 25-July 9, + 2007 + + + + Part 1 + 03:19:23 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 2 + 02:34:02 + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + Dirty Bomb Vulnerabilities: Fake Companies, Fake Licenses, Real + Consequences + July 12, + 2007 + 02:21:11 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Medicaid Providers That Cheat On Their Taxes And What Should Be + Done About It + November 14, + 2007 + 01:51:29 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Credit Card Practices: Unfair Interest Rate Increases + December 4, + 2007 + 03:01:32 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Speculation in the Crude Oil Market + December 11, + 2007 + 03:04:26 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + United Nations Development Program: a Case Study of North + Korea + January 24, + 2008 + 03:00:06 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Medicare Vulnerabilities: Payments For Claims Tied to Deceased + Doctors + July 9, + 2008 + 02:08:36 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Tax Haven Banks and U.S. Tax Compliance + July 17, + 2008 + 02:49:58 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Tax Haven Banks and U.S. Tax Compliance + July 25, + 2008 + 01:04:03 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Payroll Tax Abuse: Businesses Owe Billions And What Needs To Be + Done About It + July 29, + 2008 + 01:26:47 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Dividend Tax Abuse: How Offshore Entities Dodge Taxes on U.S. Stock + Dividends + September 11, + 2008 + 03:28:20 + + +

    [access item]

    +
    +
    + Online +
    +
    +
    +
    + + + Committee markup (GAC) + + + + Homeland security grants + June 2003 + 722 + + +

    (Homeland Security Grant Enhancement Act -- S.1245 L. Stuber)

    +
    +
    + + + Intelligence reform, (L. Stuber) + October 22, + 2003 + 722 + + + + + Committee markup of National Intelligence Reform Act (NIRA) + amendments + 2004 + 722 + + +
    +
    + + + Dubai Port purchase-homeland security issue + March 2006 + 722 + + +

    (Carl's writings)

    +
    +
    + + + Freedom of Information Act (FOIA) (L. Stuber; PSI) + + + + Critical infrastructure DHS bill + 2002-2005 + 722 + + + + + Levin-Leahy bill -- S.609 + 2003 + 723 + + +

    (Restoration of Freedom of Information Act)

    +
    +
    +
    + + + Federal Employee Protection Disclosures Act-S.1358 + (Whistleblower) + + + + Background, (GAC) + 2 folders + 2003 + 723 + + + + + Committee markup, (GAC) + 2 folders + 2003 + 723 + + + + + Hearing, (GAC) + November 12, + 2003 + 723 + + + + + + Filibuster + + + + Judicial nominations of President Bush + 3 folders + 1993-2005 + 723 + + + + + Nuclear option on judges + 2006 + 723 + + +

    (Carl's writing)

    +
    +
    + + + Nuclear option rules, (R. Arenberg) + 2005 + 723 + + + + + Levin's writing + 2005 + 1115 + + + + + Nuclear option + 2005 + 1115 + + +
    + + + Foreign Intelligence Surveillance Act (FISA) frequently used + 2007-2008 + 724 + + +

    (Carl's writing)

    +
    +
    + + + Funding for non-profits + 2004 + 724 + + + + + Government reform + 8 subfolders + 2005-2009 + 724 + + +

    (Includes: S.1, lobby reform bill, ethics, ATC pensions, Government pension + offset, Groves Census Director, National Alliance of Police Security and + corrections organizations whistleblower, Kennedy Space Center and Cape Canaveral + Air Force Station, waging war on waste -- Department of Defense, HSGAC Subcom OGM, + earmark moratorium; J. Bryan, E. Cash, and K. Sybenga)

    +
    +
    + + + Homeland Security + + + + Senate Democratic Homeland Security Summit: Securing the Homeland, + Protecting America + 2006 May 25 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senate Democratic Homeland Security Summit, + Securing the Homeland, Protecting America video presentation for Panel 2: + Lessons from Katrina, Preparing for the Next Domestic Emergency.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Death penalty provisions -- Patriot Act + 2005 + 725 + + + + + Hearings (SASC; J. Bryan) + + + + Inquiry into the treatment of detainees in U.S. custody origins of + aggressive interrogation techniques part 1 + 26 subfolders + 2002-2004 + June 17, + 2008 + 725 + + + + + Inquiry into the treatment of detainees in U.S. custody SERE + techniques for interrogation in Iraq part 2 + 13 subfolders + 2002-2008 + September 25, + 2008 + 725 + + + + + + Improving America's Security Act conference-uniform percentage + increase + 3 folders + 2007 + 725 + + + + + Intelligence collection and NSA wiretapping + January-February 2006 + 725 + + +

    (Briefing from DOJ and World Threat hearing)

    +
    +
    + + + Interoperable communications -- Levin amendment + 2005 + 725 + + + + + Mayfield Patriot Act + 2005 + 725 + + +

    (Patriot Act Reauthorization bill and conference, Levin named a member of the + Committee)

    +
    +
    + + + National Security Administration (NSA) domestic + surveillance + 2 folders + 2006 + 725 + + + + + National Security Administration (NSA) domestic surveillance, Senate + Select Committee on Intelligence, and Echelon program, (SSCI) + January-February 2006 + 725 + + + + + Northern border (U.S.-Canada) + + + + Air and Marine training center of excellence + 2005 + 726 + + + + + Ambassador Bridge + 3 folders + 2007 + 726 + + + + + Bi-national study, (A. Pascale) + October 2003-February 2006 + 726 + + + + + Blue Water Bridge meeting letters + 2006 + 726 + + + + + Blue Water Bridge reprogramming + 2007 + 726 + + + + + Border congestion relief program + 2008 + 726 + + + + + Border staffing, (A. Pascale) + 2003-2004 + 726 + + + + + Canadian trash-letters and memos + 1999-2004 + 726 + + + + + Customs Data Center -- KI Sawyer border security, (A. + Pascale) + August-September 2004 + 726 + + + + + Detroit International Bridge Company new ridge permit + 2006 + 726 + + + + + Detroit Windsor Tunnel letter + 2006 + 726 + + + + + Drummond Is + 2006 + 726 + + + + + Facts and figures + 2006 + 726 + + + + + GAO security report + 2 folders + October 2007 + 726 + + +

    (Border Security: Despite progress, weakness in traveler inspections exist at + our nation's ports of entry; K. Meier)

    +
    +
    + + + Gateway project border infrastructure improvements + 2003-2005 + 726 + + + + + High-risk non-profit security enhancement act + 2004 + 726 + + + + + International bridge -- Sault Ste. Marie annual report, (A. + Pascale) + 2004 + 726 + + + + + Issues-Western Hemisphere Travel Initiative (WHTI) and REAL + ID + 4 folders + 2005-2008 + 727 + + + + + Passport office issues + 2007 + 727 + + + + + Passport rule-bridge issue + 2006 + + + + FY06 supplemental -- Northern Border Air Wing (NBAW) + 727 + + + + + Other Northern border + 727 + + + + + Western Hemisphere Travel Initiative (WHTI) articles and + statements + 727 + + + + + Western Hemisphere Travel Initiative (WHTI) documents and Blue + Water Bridge travel + 727 + + + + + + Port amendment + 2006 + 727 + + + + + Port security + 2006 + 727 + + + + + Reverse Inspection + + + + 2 folders + 2002-2007 + 727 + + + + + 2006 + 727 + + + + + Memos + 2003 + 727 + + + + + + Reverse inspection and customs and border protection oversight + letter, (A. Pascale) + June 2003-January 2005 + 727 + + + + + SAFE Port Act reauthorization + 2010 + 727 + + + + + Sault Ste. Marie Customs project, (A. Pascale) + January-February 2003 + 727 + + + + + Secretary Ridge visit to Michigan + January 2004 + 727 + + + + + Selfridge-Air National Guard base + 2004 + 727 + + + + + Torture-Levin questions FBI agent on memo criticizing + torture + 2004-2006 + 724 + + +

    (Levin trying to obtain un-redacted documents)

    +
    +
    + + + U.S. customs and border crossing bill markup and + amendments + 2006 + 727 + + +
    + + + Patriot Act + + + + 2005-2006 + 724 + + +

    (Carl's writing)

    +
    +
    + + + Library records + 2003 + 724 + + + + + Renewal, (J. Bryan) + July 2005-March 2006 + 727 + + + + + U.S.A. Patriot and Terrorism Prevention Reauthorization Act and flag + protection, (HSGAC) + 2005 + 727 + + +
    + + + Politicization of intelligence, SSCI hearings, Levin amendments, + National Intelligence Reform Act + 2004-2007 + 727 + + + + + Port security letter to DHS + 2003 + 727 + + + + + REAL ID act impacts + 2005 + 727 + + + + + Senate Select Committee on Intelligence pre-war intelligence, (SSCI; J. + Bryan) + 2003-2006 + 727 + + + + + Specter FISA electronic surveillance bill, press clippings NSA + surveillance, NSA wiretaps + 2005-2007 + 727 + + +

    (Levin amendments and notes; SSCI Worldwide Threat hearing)

    +
    +
    + + + Supplemental material part 2 -- Professor Krislov oversight class, (J. + Bryan) + 2003-2005 + 727 + + + + + Urban Areas Security Initiative (UASI) + + + + Department of Homeland Security (DHS) formula issues + 2001-2010 + 724 + + +

    (Includes Improving America's Security Act of 2007)

    +
    +
    + + + High threat area and formula funding + 3 folders + 2003-2004 + 724 + + + + + High threat area-Southeast Michigan + 2010-2011 + 724 + + +
    +
    + + + Hurricane Katrina Investigation (HSGAC) + + + + Carl's notes on Katrina, (A. Yates) + February 2006 + 724 + + + + + Contracting-background + 2006 + 724 + + + + + Formaldehyde and trailers + + + + Washington Post articles + 2007 + 724 + + + + + Trailer testing + December 2007 + 728 + + + + + FEMA hearing questions + 2008 + 728 + + + + + FEMA trailers + 2008 + 728 + + + + + FEMA trailers + 2006-2008 + 728 + + + + + + Hearings + + + + Recovering from Hurricane Katrina: The Next Phase + 2 folders + September 14, + 2005 + 728 + + + + + Why did the Levees Fail? + November 2, + 2005 + 728 + + + + + Always Ready: The Coast Guard Response to Hurricane + Katrina + 3 folders + November 9, + 2005 + 728 + + + + + Testimonies and background information + 2 folders + November 2005-January 2006 + 728 + + + + + Who's in Charge of the New Orleans Levees?-Exhibit book + 2 folders + December 15, + 2005 + 728 + + + + + Post-landfall evacuation and Mayor Nagin + 9 subfolders + January 31, + 2006 + 728 + + +

    (HSGAC; Challenges in a Catastrophe: Evacuating New Orleans in Advance of + Hurricane Katrina)

    +
    +
    + + + Law enforcement and communications + February 6, + 2006 + 729 + + +

    (HSGAC; Law and Order in a Catastrophe)

    +
    +
    + + + Hurricane Katrina: Waste, Fraud, and Abuse Worsen the + Disaster + February 13, + 2006 + + + + Information requests and GAO report + 729 + + + + + FEMA-contracts + 729 + + + + + Katrina Ice truck articles + 729 + + + + + Questions + 729 + + + + + Trailers-contracts + 729 + + + + + Working file + 729 + + + + + + Secretary Chertoff Katrina hearing + 6 subfolders + February 14, + 2006 + 729 + + +

    (HSGAC -- Hurricane Katrina: The Homeland Security Department's Preparation + and Response)

    +
    +
    + + + Chertoff Katrina hearing background material + 7 subfolders + February 15, + 2006 + 729 + + + + + Recommendations for reform, (HSGAC) + March 8, + 2006 + 729 + + + + + FEMA's Manufactured Housing Program: Haste Makes Waste + April 21, + 2006 + 729 + + + + + David Paulison + October 6, + 2006 + 729 + + +

    (HSGAC; Hurricane Katrina: How is FEMA Performing its Mission at this Stage + of Recovery?)

    +
    +
    + + + Stopping the Flood of Fraud, Waste, and Abuse + December 6, + 2006 + 729 + + +
    + + + Katrina contracting and procurement, (A. Yates) + 5 subfolders + 2006 + 730 + + + + + Katrina environmental waivers, (A. Yates) + 3 subfolders + 2005 + 730 + + + + + Katrina investigation, (HSGAC; A. Yates) + 2005 + 730 + + + + + Katrina headers Superdome, (HSGAC) + 5 subfolders + 2005-2006 + 730 + + + + + Levee system -- design + 2005-2006 + 730 + + +

    (Includes hearing Who's In Charge of the New Orleans Levees?; HSGAC and + PSI)

    +
    +
    + + + Miscellaneous + 5 subfolders + 2005 + 730 + + + + + Miscellaneous, (HSGAC) + 9 subfolders + 2005-2006 + 731 + + + + + News articles, (A. Yates) + 2 folders + 2005-2006 + 731 + + + + + Newspaper library and timeline + 2 folders + August-December 2005 + 731 + + + + + White House communications, (A. Yates) + 2006 + 731 + + +
    + + + Immigration + + + + 9/11 families bill + 2005 + 731 + + + + + A-76 process + 2003 + 731 + + +

    (Immigration Information Officers commercial work; J. Bryan)

    +
    +
    + + + Agricultural Job, Opportunity, Benefits and Security Act (AgJOBS) -- + S.1645 + 2004 + 731 + + + + + Albanians + 2005 + 731 + + + + + Anti-atrocity Alien Deportation Act + 2003 + 731 + + + + + Belbin, Tanith + + + + Ice Dancer citizenship + 2003-2005 + 731 + + + + + Tanith Belbin citizenship amendment -- H.R.3010 + 2005 + 731 + + + + + Olympic Ice Dancer + 2005-2006 + 731 + + + + + + H-2B visa program + 2005 + 731 + + + + + Iraqi asylum amendment + 2007-2008 + 731 + + + + + Iraqi Christians asylum amendment + 2007-2008 + 731 + + + + + Judges + 2 folders + 2005 + 732 + + + + + Hurricane Katrina international student amendment + 2005 + 732 + + + + + L-1 visa + March-May 2003 + 732 + + + + + Material support and speech + July-September 2005 + 732 + + + + + Military citizenship + 2003 + 732 + + + + + Moynihan + 2005 + 732 + + + + + Private bills memo + 2005 + 732 + + + + + Reform-domestic security issues + 2006 + 732 + + + + + Traore -- female genital mutilation, (K. Glandon and K. + Meier) + 2008 + 732 + + + + + Unaccompanied Alien Child Protection Act (UACPA) + 2005 + 732 + + +
    + + + International interoperability demonstration projects + 2 folders + 2007-2009 + 732 + + + + + Judicial-Attorney General Western District of Michigan -- Michael H. + Dettmer + 1997-2000 + 732 + + + + + Levin statements-Tenet, Worldwide Threats hearing, Estrada, and + more + February 2003 + 732 + + + + + Line item veto + + + + 2006 + 732 + + +

    (R. Arenberg and J. Davis)

    +
    +
    + + + 2006-2007 + 732 + + +

    (R. Arenberg, K. Meier, and J. Davis)

    +
    +
    + + + Amendment to S.1, (J. Davis) + January 2007 + 732 + + +
    + + + Nominations and appointments + + + + Director of Central Intelligence -- Peter Goss + 2 folders + September 2004 + 1043 + + +

    (SSCI hearing; Carl's writing)

    +
    +
    + + + Federal Election Commission (FEC)-Scott Thomas + 2003 + 1043 + + + + + Immigration and Customs Enforcement (ICE) Assistant Secretary -- Julie + Myers + 2 folders + 2005 + 1043 + + + + + Judicial -- Sean Cox, Thomas Ludington, and Daniel Ryan + 3 folders + 2005-2006 + 1043 + + + + + Judiciary Committee nomination proceedings + 2003 + 1043 + + + + + Judicial nominations + + + + 2000-2003 + 1043 + + +

    (J. Bryan)

    +
    +
    + + + 2 folders + 2001-2005 + 1043 + + +

    (J. Bryan)

    +
    +
    + + + 2003 + 1043 + + + + + White House deal, (K. Meier) + 3 folders + 2008 + 1047 + + +
    + + + Judges -- Levin notes and memos + 2004-2005 + 1044 + + + + + Michigan federal court vacancies, (Bi-partisan commission) + December 2004 + 1044 + + + + + Office of Information and Regulatory Affairs (OIRA) Administrator -- + Susan Dudley, (E. Bean) + 2 folders + 2006 + 1044 + + + + + Office of Management and Budget (OMB) + + + + Director -- Rob Portman, (HSGAC; J. Davis) + May 2006 + 1044 + + + + + Director-Portman and Nussle, (HSGAC) + 2006-2007 + 1044 + + + + + Director -- Jim Nussle + July 2007 + 1044 + + +

    (PSI; K. Sybenga and J. Davis)

    +
    +
    + + + Directory and Deputy Director-Orszag and Nabors, (HSGAC) + 2008-2009 + 1044 + + + + + Director and Deputy Director-Rob Portman and Stephen McMillin, + (HSGAC) + May-June 2006 + 1044 + + +
    + + + Office of Personnel Management Director-Linda Springer + March-May 2005 + 1044 + + + + + Office of Special Counsel-Scott Bloch investigation + + + + October 2007 + July 2008 + 1044 + + + + + Letter to Attorney General Mukasey + January 2008 + 1044 + + + + + Special Counsel-Scott J. Bloch + July-November 2003 + 1044 + + + + + + Postal Regulatory Commission-Ruth Goldway, (HSGAC) + 2008 + 1044 + + + + + Secretary of Homeland Security -- Chertoff + February 2, + 2005 + 1044 + + +

    (Carl's writings)

    +
    +
    + + + Secretary of Homeland Security -- Michael Chertoff + 4 folders + 2005 + 1044 + + + + + Secretary of State -- Rice, Condoleezza + 2005 + 1044 + + +

    (Carl's writings)

    +
    +
    + + + U.S. Attorney General -- Alberto Gonzales + + + + 2 folders + 1997-2005 + 1044 + + +

    (Includes confidential memos)

    +
    +
    + + + January 2005 + 1044 + + +

    (Carl's writings)

    +
    +
    + + + February 2005 + 1047 + + +

    (K. Meier)

    +
    +
    +
    + + + U.S. Attorney General -- Western Michigan-Margaret Chiara, (K. + Meier) + 2007-2008 + 1047 + + + + + U.S. Citizenship and Immigration Services Director -- Emilio + Gonzalez + 2005 + 1044 + + + + + U.S. Court of Appeals-6th Circuit + + + + Levin statement before Committee + July 2003 + 1044 + + + + + Cook, Deborah + 2002-2003 + 1044 + + + + + Griffin, Richard + 2002-2005 + 1045 + + + + + McKeague, David + 2 folders + 2001-2003 + 1045 + + + + + Saad, Henry + 3 folders + 2002-2004 + 1045 + + + + + Saad, Henry + 2003 + 1045 + + + + + Sutton, Jeffrey + January-April 2003 + 1045 + + + + + Vetting nominees + 2003 + 1045 + + + + + + U.S. Court of Appeals -- 9th District -- Jay Bybee, J. + Bryan) + 2003 + 1045 + + + + + U.S. Court of Appeals -- District of Columbia + + + + Estrada, Miguel, J. Bryan) + 2001-2003 + 1045 + + + + + Kavanaugh, Brett + 2006 + 1045 + + + + + + U.S. Court of Federal Claims -- Marian Blank Horn + October 9, + 2001 + 1045 + + + + + U.S. Supreme Court + + + + Samuel Alito hearings + 2006 + folders 1-2 of + 12 + 1045 + + + + + Samuel Alito hearings + 2006 + folders 3-12 of + 12 + 1046 + + + + + Alito confirmation, R. Arendberg) + 2005-January 2006 + 1046 + + + + + John Roberts + 2005 + 1046 + + + + + John Roberts confirmation, (J. Hill) + 2 folders + 2005 + 1047 + + + +
    + + + Office of Special Counsel + + + + Binder + 2005 + 732 + + + + + November-December 2006 + 732 + + +

    (E. Cash)

    +
    +
    +
    + + + Postal Service-UPS Livonia-Levin tour, (Michigan) + 2005 + 732 + + + + + Privatizing Social Security + 2 folders + 2005 + 732 + + +

    (Carl's writings)

    +
    +
    + + + Social security, (J. Hill and M. Brown) + 2005 + 732 + + + + + State of the Union response + January 31, + 2006 + 732 + + + + + Sweepstakes emails + March 1999 + 732 + + + + + Sweepstakes enclosure + August 2, 1999 + 732 + + +

    (News from Carl Levin update -- Deceptive Mail Prevention and Enforcement Act of + 1999 --S.335 floor statement)

    +
    +
    + + + Voice of America employee retaliation + May-June 2004 + 732 + + +

    (Whistleblower)

    +
    +
    +
    + + + Health and Human Services + 2001-2010 + + + + Appropriations-Health and Human Services, and Education + + + + FY2008 + 773 + + + + + FY2008-Levin priorities + 773 + + + + + FY2009 + 773 + + + + + + Food and Drug Administration (FDA) + + + + Meetings and advertisements + 2 folders + 2006 + 773 + + +

    (Folder 1 contains 2 CDs)

    +
    + + + NARAL Pro-Choice America, 2006 Legislative Briefing + 2006 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). 2006 Legislative Briefing documents from + the National Abortion and Reproductive Rights Action League, NARAL Pro-Choice + America.)

    +
    +
    + + + Division of Dockets Management, 05N-0354 + 2005 November 1-2 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Documents related to the Food and Drug + Administration (FDA) Public Hearing on Consumer-Directed Promotion of + Regulated Products, November 1-2, 2005. Docket Number: 05N-0354.)

    +
    +
    + + + Division of Dockets Management, 04D-0042 + 2004 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Documents related to the Food and Drug + Administration (FDA) Draft Guidances for Industry on Making Direct-to-Consumer + Advertising More User Friendly—Improving Information About Medical Products + and Health Conditions, Brief Summary: Disclosing Risk Information in + Consumer-Directed Print Advertisements, Consumer-Directed Broadcast + Advertising of Restricted Devices, and Help-Seeking and Other Disease + Awareness Communications by or on Behalf of Drug and Device Firms. Docket + Number: 04D-0042.)

    +
    +
    +
    + + + Pharmaceutical advertisements + 2005-2006 + 773 + + + + + Prescription drug ads, (J. Hill) + 2 folders + 2004-2005 + 773 + + +
    + + + Healthcare + + + + Michigan Citizens for Stem Cell Research and Cures: Research + Proposal + 2007 October 22 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Research proposal presentation slides from + Marcia Baum, Executive Director, Charles N. Hakes Marketing and Research on + Michigan Citizens for Stem Cell Research and Cures.)

    +
    +
    + + + American Dysautonomia Institute -- Gilbert Chinitz + 2005 + 773 + + + + + Asbestos legislation + + + + S.852 FAIR Act + 2005-2006 + 773 + + + + + Levin provisions + 2006 + 773 + + + + + Reform + 7 folders + 2004-2005 + 773 + + + + + + Correspondence + + + + 2001 + 774 + + + + + 2002 + 774 + + + + + 2003 + 774 + + + + + 2004 + 774 + + + + + 2005 + 774 + + + + + + Employee Free Choice Act + June 2007 + 774 + + +

    (Co-sponsor)

    +
    +
    + + + Hearing-Medicare vulnerabilities for claims tied to deceased doctors, + (PSI) + 2 folders + July 9, 2008 + 774 + + + + + Kerry health plan + December 2005 + 774 + + + + + Letters + 2006 + 774 + + + + + Medicare + + + + Medicare Prescript Drug bill memos-S.1 + June 2003 + 774 + + + + + Part D program + 3 folders + 2006 + 774 + + +

    (Levin and Stabenow bill)

    +
    +
    + + + Prescription drug cost and legislation + 2003 + 774 + + + + + Prescription drug plan and conference + 2 folders + 2003 + 774 + + +
    + + + Memos-see me + 2007-2010 + 774 + + + + + Metro Health-Grand Rapids + + + + 2007-2008 + 774 + + + + + Letters + 2007-2008 + 774 + + + + + Memos + 2007-2008 + 774 + + + + + + Schiavo files + 2 folders + 2005 + 1029 + + +

    (Carl's writing)

    +
    +
    + + + Stem cell research (J. Hill) + + + + February 2008 + 774 + + + + + Background, memos, and Michigan opinions + 2005 + 774 + + + + + Legislation and policies + 2 folders + 2005-2006 + 774 + + + + + Legislation and radio tour + April 2007 + 774 + + + + + Legislation, talking points, and statements + 2005-2007 + 774 + + + + + Midwest Conference on Stem Cell Biology and Therapy + May 9-11, 2008 + 774 + + + + + Stem cell research and organization material + 2 folders + 2006 + 775 + + +

    (Carl's writings)

    +
    +
    + + + Stem cell research and organization material + 2008 + 775 + + +

    (Carl's writings)

    +
    +
    +
    + + + Uncompensated care-Detroit Medical Center + 2003 + 775 + + +
    + + + Substance abuse-Buprenorphine symposium press kit + August 2006 + 775 + + +
    + + + Housing + 2004-2008 + + + + Appropriations and funding-FY2006 Transportation and Housing and Urban + Development (THUD) earmarks + 783 + + + + + Housing issues, (A. Ellerbee) + 3 subfolders + 2007-2008 + 783 + + + + + New HUD voucher rules + 2004 + 783 + + + + + Oliver Tower -- Lansing, (K. Sybenga) + 2008 + 783 + + + + + Reform bill - Levin's writing + February-March 2008 + 1113 + + + + + + Human Rights + 2003-2004 + + + + Armenian Genocide statement + 2004 + 787 + + + + + Holocaust Victims Insurance Recovery amicus brief + 2003 + 787 + + +

    (Senator Waxman)

    +
    +
    +
    + + + Industry + 2005-2009 + + + + Auto industry + + + + Auto bailout + + + + Part 1 + 25 subfolders + 2008 + 797 + + + + + Part 2 + 21 subfolders + November-December 2008 + 797 + + + + + Part 3 + 11 subfolders + November-December 2008 + 797 + + + + + + Auto restructuring + 15 subfolders + October-December 2008 + 797 + + + + + Big 3 meeting with President + 2006 + 797 + + + + + Charge and response on Carl's issue + 2008 + 797 + + + + + Carl's writings + + + + Part 1 + 2008 + 1112 + + + + + Part 2 + 2008 + 1112 + + + + + Part 3 + 2008 + 1112 + + + + + Frequently used + 2007 + 1111 + + + + + + + Discretionary letters supporting projects, grants, + transportation + 2009 + 797 + + + + + Obama manufacturing proposal + 2006 + 797 + + + + + Pfizer, (Closing Ann Arbor location; A. Pascale) + 2007 + 797 + + + + + Second industrial revolution, big manufacturing idea, Cybernet Systems + Corporation, Coherix, (Dwight-Carlson) + 2005-2007 + 797 + + + + + + Interior + 1995-2012 + + + + Appropriations + + + + FY2004 + 805 + + + + + FY2005 (R. Moy and K. Sybenga) + 805 + + + + + FY2006 + 3 folders + 805 + + + + + FY2007 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + FY2009 + 3 folders + 805 + + + + + FY2009 requests + 806 + + +
    + + + Lighthouse pictures, (A. Pascale) + 1995-2004 + 806 + + + + + Lighthouse transfers, (A. Pascale) + 2007 + 806 + + + + + Keweenaw National Historic Park (A. Yates) + + + + 6 subfolders + 2001-2005 + 806 + + + + + Quincy Smelter + 8 subfolders + 2006-2010 + 806 + + + + + Quincy Smelter + 2007-2009 + 806 + + + + + Quincy Smelting Works funding + 2007 + 806 + + + + + Isle Royale and Quincy Smelter rebuild + 13 subfolders + 2005-2011 + 806 + + + + + + National Lighthouse Preservation Act + 2008 + 807 + + + + + Native Americans (J. Courville) + + + + Grand River Band, (federal recognition) + 2007-2008 + 807 + + + + + Improving healthcare + January-March 2008 + 807 + + + + + Indian Health Care Improvement Act (IHCIA) -- S.1200 + 2007-2008 + 807 + + + + + Pass IHCIA Now + September 2007 + 807 + + + + + Saginaw Chippewa, (Land sale bill -- H.R.2952) + June-July 2007 + 807 + + + + + + North Country Trail, (A. Yates) + 7 subfolders + 2005-2012 + 807 + + + + + River Raisin, (A. Yates) + 6 subfolders + 2006-2010 + 807 + + +
    + + + Labor-Pensions + 2002-2011 + + + + Background + 2003 + 814 + + + + + Employment Non-discrimination Act (ENDA), (K. Meier) + 2002-2007 + 814 + + + + + Memo and letter + 2003-2004 + 814 + + + + + Multi-employer + October 2003 + 814 + + + + + Pension Funding Equity Act-H.R.3108 + + + + January 2004 + 814 + + + + + Conference report + April 2004 + 814 + + + + + Letter to Northwest Airlines (NWA) + April 2004 + 814 + + + + + + Phillips Services, Inc., (Michigan) + undated + 814 + + + + + Trade Adjustment Assistance (TAA) + + + + TAA for communities + 2007 + 814 + + + + + TAA For Workers program extension-H.R.617 + 2007-2011 + 814 + + + + + + Working file-Malina Brown + 2 folders + November 2004-June 2005 + 814 + + +

    (Levin staffer; Contains information on Northwest Airlines-NWA)

    +
    +
    +
    + + + Michigan + 1944-2009 + + + + Appropriations and funding + + + + FY2006 + 819 + + +

    (Traverse City office)

    +
    +
    + + + Detroit Labor building, (R. Arenberg) + 2008 + 819 + + + + + Genesee County land bank, (Durant Hotel) + 2007-2008 + 819 + + +
    + + + Appropriations -- Marquette office + + + + 2003 + 819 + + + + + 2004 + 819 + + + + + 2005 + 819 + + + + + 2006 + 819 + + + + + 2007 + 819 + + + + + 2008 + 819 + + + + + + Army Corps of Engineers + + + + Bay Harbor cleanup + 2005 + 819 + + + + + Menominee dredging + 2005 + 819 + + + + + Saginaw River dredging + 2005 + 819 + + + + + + Appropriations requests + + + + FY2003 Budget requests and appropriations -- Wayne County + 5 subfolders + 820 + + + + + FY2007 Project requests + 5 folders + 820 + + + + + + Coast Guard + + + + Icebreaker Mackinaw WAGB 83 -- U.S. Coast Guard boat + history + 1944-2006 + 820 + + +

    (Great Lakes Lighthouse Keepers Association; Book; Traverse City office)

    +
    +
    + + + Land transfer to Marquette + 2008 + 820 + + + + + Muskegon, (A. Pascale) + 2001-2004 + 820 + + + + + Muskegon airport and coast guard air station, (A. Pascale) + 2 folders + 1996-2001 + 820 + + + + + Traverse City Coast Guard authorization and public school soccer + field + 2001-2004 + 820 + + +

    (Includes list of accomplishments; A. Pascale)

    +
    +
    +
    + + + Detroit riverfront, (K. Sybenga) + 2007 + 821 + + + + + Detroit riverfront and Ambassador Bridge, (C. Woods and G. + Aciero) + 2007 + 821 + + + + + Downriver chamber talking points -- economy and unemployment, (A. + Pascale) + 2004 + 821 + + + + + President Gerald R. Ford email update + January 2007 + 821 + + + + + Lighthouse project, (A. Pascale) + 2004-2006 + 821 + + + + + Lithium Ion batteries + 2008-2009 + 821 + + +

    (Carl's writings)

    +
    +
    + + + Metropolitan Statistical Areas + 2 folders + 2003 + 821 + + + + + Metropolitan statistical area + 2003 + 821 + + + + + New Hampshire and Michigan primary issues + 2008 + 821 + + +

    (Carl's writings)

    +
    +
    + + + S.S. Columbia and Boblo Boat + 2003 + 821 + + + + + Thunder Bay Island Preservation Society letters + 2000 + 2003 + 821 + + +

    (Traverse City office)

    +
    +
    + + + Tiger stadium -- Illitch + 2004 + 821 + + + + + Tiger Stadium-notes to Mayor Bing + 2008 + 821 + + + + + University of Michigan Law School-Nina Mendelson's class + + +

    (Carl's writings)

    +
    + + + 2 folders + 2003-2005 + 822 + + + + + 2004 + 823 + + + + + 2006 + 823 + + +
    + + + University of Michigan softball team resolution + June 2005 + 823 + + +
    + + + Press + 2002-2008 + + + + Media + + + + Miscellaneous + + + + CODEL Levin + 2007 August + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Photographs from Carl Levin Congressional + Delegation (CODEL) to Kuwait, Iraq, Jordan, and Israel.)

    +
    +
    + + + Minister Ehud Barak Visit to Washington + 2007 October 18 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Photographs with Carl Levin from Minister + Ehud Barak's visit to Washington on October 18, 2007.)

    +
    +
    +
    + + + Permanent Subcommittee on Investigations hearings, videoconference, + CODEL Levin photographs, and Negaunee photogrpahs + 2008 + + +

    (PSI; 9 DVDs)

    +
    + + + House Financial Services Committee + 2008 April 17 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). C-SPAN coverage of House Financial + Services Committee hearing on Credit Card Industry Practices.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Video Conference, Berrien County Intermediate School + District + 2008 April 28 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Video conference of Senator Carl Levin + with two Southwest Michigan high schools, Coloma High School and Bridgman High + School, in the Senate Recording Studio. Video conference was coordinated by + the Berrien County Intermediate School District and media was invited to + attend. Teachers include: Mark Morris (Coloma HS); John Wismer (Bridgman HS); + and Janine Lim (Instructional Technology Consultant).)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + PSA + 2007 + + + + + APTA-2008 Press Briefing Information + 2008 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). EMP Mini Hybrid American Public + Transportation Association (APTA) 2008 press briefing files, including press + releases, flyers, and product specification sheets.)

    +
    +
    + + + Federal Action on Climate Change: Issues and Challenges + 2005 June 2 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin speaking on Federal + Action on Climate Change: Issues and Challenges, at the University of Michigan + Ross School of Business, Hale Auditorium.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Funeral for Rosa Parks, Detroit, MI + 2005 November 02 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Funeral Service for Rosa Parks at the + Greater Grace Temple Church, Detroit, MI.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Governmental Affairs Hearing + 2005 May 17 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Permanent Subcommittee on Investigations + (PSI) hearing on Oil For Influence, how Saddam used oil to reward politicians + under the United Nations Oil-for-Food Program. Homeland Security and + Governmental Affairs Committee, SD-106.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Granholm-DeVos Gubernatorial Debate + 2006 October 02 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). C-SPAN coverage of Campaign 2006, including + Granholm-DeVos Gubernatorial debate, in which Carl Levin is mentioned.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Groundbreaking in the U.P. + 2004 May 23 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Photographs and videos of Senator Carl Levin + at Groundbreakings in the Upper Peninsula in Ishpeming, Lake Linden, and + L'Anse.)

    +
    +
    + + + Media Files, Public Files, and Avid Project 2008 + 2008 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin files including TV and + radio advertisements, memorandums, and media assets for ads.)

    +
    +
    + + + Michigan Technological University, Senator Carl Levin Visit + 2005 February 23 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's visit to Michigan + Technological University.)

    +
    +
    + + + Senate Floor Coverage of Carl Levin's 10,000th Vote + 2006 May 16 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senate floor coverage of Carl Levin's + 10,000th vote on the Isakson Amendment to S. 2611, the Immigration Bill.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Senator Levin Floor Statement + 2005 May 23 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's floor statement on the + "nuclear option".)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Senator Levin Tour of CVC with AOC Alan Hantman + 2005 December 06 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Photographs of Senator Carl Levin's tour of + the Capitol Visitors Center (CVC) with the Architect of the Capitol (AOC) Alan + Hantman.)

    +
    +
    + + + Video Conference, Berrien County Intermediate School + District + 2005 November 04 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Video conference with Senator Carl Levin and + three schools, Coloma High School, Decatur High School, New Buffalo High School, + in the Senate Recording Studio. Video conference coordinated by the Berrien + County Intermediate School District.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Wayne State University, President Reid + 2004 February + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Photographs of Carl Levin at Wayne State + University, some with President Reid.)

    +
    +
    +
    + + + Media appearances + + + + November-December 2006 + + + + Senator Carl Levin Media Appearances + + + + 1 of 2 + 2006 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's media appearances + on: CNN Late Edition on 11/19/2006, with Levin and Sen. Kay Bailey Hutchison + regarding Iraq; and ABC World News Tonight on 12/18/2006 regarding Iraq and + surge of troops.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2 of 2 + 2006 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + + +

    [access part 4]

    +
    +
    + + +

    [access part 5]

    +
    +
    + + +

    [access part 6]

    +
    +
    + + +

    [access part 7]

    +
    +
    + + +

    [access part 8]

    +
    +
    + + +

    [access part 9]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's media appearances + on: CBS Evening News on 11/30/2006, regarding Iraq Study Group report; CNN + Anderson Cooper 360 on 11/30/2006; ABC World News Tonight on 11/30/2006, + regarding Iraq Study Group report; NBC Nightly News on 12/1/2006, regarding + Iraq Study Group report; NBC Meet the Press on 12/3/2006, with Levin and + Sen. John Warner regarding Iraq Study Group report and Gates nomination to + be Secretary of Defense; evening newscasts of ABC, CBS, NBC, PBS NewsHour on + 12/5/2006; C-SPAN coverage on 12/6/2006 of press stakeout regarding + Baker-Hamilton Iraq Study group report; CNN American Morning on 12/7/2006 + regarding Iraq Study Group report; and CBS Face the Nation on 12/10/2006, + with Levin and Sen. Trent Lott regarding Iraq.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    +
    + + + 2007 + + + + Senator Carl Levin Media Appearances + + + + 1 of 6 + 2007 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + + +

    [access part 4]

    +
    +
    + + +

    [access part 5]

    +
    +
    + + +

    [access part 6]

    +
    +
    + + +

    [access part 7]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's media appearances + on: CNN Situation Room on 2/9/2007 interview with Doug Feith; Fox News + Sunday on 2/11/2007 interview with Doug Feith; Fox News Sunday on 2/18/2007; + CBS Face the Nation on 3/4/2007; ABC World News Tonight on 3/7/2007; NBC + Nightly News on 3/7/2007; and PBS NewsHour on 3/8/2007.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2 of 6 + 2007 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + + +

    [access part 4]

    +
    +
    + + +

    [access part 5]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's media appearances + on: Senate Floor on 3/14/2007 with speech regarding Iraq; ABC Good Morning + America on 3/29/2007; CNN Lou Dobbs Tonight on 3/29/2007; Fox News Sunday on + 4/15/2007; and CNN American Morning on 5/2/2007.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 3 of 6 + 2007 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + + +

    [access part 4]

    +
    +
    + + +

    [access part 5]

    +
    +
    + + +

    [access part 6]

    +
    +
    + + +

    [access part 7]

    +
    +
    + + +

    [access part 8]

    +
    +
    + + +

    [access part 9]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's media appearances + on: CNN American Morning on 1/11/2007; CNN Lou Dobbs Tonight on 1/11/2007; + CNN Late Edition on 1/14/2007; Fox News Sunday on 1/21/2007; MSNBC on + 1/23/2007; Levin Testimony at Environment and Public Works (EPW) Hearing + SD-406 on 1/30/2007; CNN on 2/6/2007 produced story; Fox News on 2/7/2007; + and NBC Meet the Press on 2/25/2007.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 4 of 6 + 2007 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + + +

    [access part 4]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's media appearances + on: CNN Late Edition on 5/20/2007; CBS Face the Nation on 5/27/2007; CBS + Face the Nation on 6/17/2007; and Fox News Sunday on 7/15/2007.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 5 of 6 + 2007 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + + +

    [access part 4]

    +
    +
    + + +

    [access part 5]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's media appearances + on: CNN Late Edition on 8/5/2007; C-SPAN coverage of Sen. Harry Reid, Sen. + Jack Reed, and Sen. Carl Levin press conference on 9/12/2007 on the Iraq + War; CBS Face the Nation on 9/16/2007; CBS Face the Nation on 10/28/2007; + and Fox News on 11/1/2007.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 6 of 6 + 2007 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's media appearances + on: CNN Late Edition on 12/1/2007; and CNN Situation Room on + 12/19/2007.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + ABC, CBS, NBC News + 2007 December 04 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Footage of Senator Carl Levin on ABC, CBS, + and NBC News.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + ABC This Week + 2007 April 08 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). ABC This Week with Senator Carl Levin on + troop funding.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Credit Card Interest Stories: Good Morning America & The Today + Show + 2007 December 04 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin in Credit Card Interest + Stories on Good Morning America, and the Today Show.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + C-SPAN Press Conference + 2007 September 12 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). C-SPAN coverage of press conference with + Sen. Harry Reid, Sen. Carl Levin, and Sen. Jack Reed regarding the Iraq + War.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Fox News Sunday + 2007 November 25 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Fox News Sunday with Senator Carl Levin on + Iraq.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Lou Dobbs + 2007 December 04 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Lou Dobbs Tonight with Senator Carl + Levin.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + NBC Nightly News + 2007 September 10 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). NBC Nightly News with Senator Carl Levin. + Marked low audio.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + January-April 2007 + + + + Fox News Sunday + + + + 2007 April 15 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Fox News Sunday with Senator Carl Levin + on withdrawing from Iraq.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2007 January 21 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Fox News Sunday, 9-10 am, with Senator + Carl Levin and Senator Joe Biden on Iraq.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + ABC, CBS, NBC Network News + 2007 March 07 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Footage of Senator Carl Levin on ABC, CBS, + and NBC Network News shows on 03/07/2007.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + ABC, CBS, NBC News & PBS News Hour Media Appearances + 2007 January 17 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Footage of Senator Carl Levin on ABC, CBS, + NBC News & PBS NewsHour on 01/17/2007.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + ABC Good Morning America + 2007 March 07 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). ABC Good Morning America with footage of + Senator Carl Levin on segment "Hope for Credit Card Consumers.")

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + CNN Late Edition + 2007 January 14 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). CNN Late Edition with Senator Carl Levin + on Iraq.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + CNN Situation Room + 2007 February 01 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). CNN Situation Room with Senator Carl Levin + on Iraq Buildup Opposition.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Iraq Press Conference + 2007 January 17 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Press conference with Senator Joe Biden, + Senator Chuck Hagel, and Senator Carl Levin on the introduction of a + bipartisan resolution opposing the escalation of the war in Iraq)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + NBC Today Show + 2007 March 07 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). NBC Today Show with footage of Senator + Carl Levin)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + Face the Nation + 2 videotapes (VHS) + June 17, 2007 + + + + + 2008 + + + + Senator Carl Levin Media Appearances + + + + 1 of 4 + 2008 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's media appearances + on: ABC Good Morning America on 2/12/2008; and CNN Situation Room on + 3/20/2008.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2 of 4 + 2008 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + + +

    [access part 4]

    +
    +
    + + +

    [access part 5]

    +
    +
    + + +

    [access part 6]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's media appearances + on: C-SPAN on 4/17/2008, Levin testimony at House Financial Services + Subcommittee hearing on Credit Card Industry Practices; Fox News morning + show on 5/19/2008, story regarding Wes Wannemacher; CBS Face the Nation on + 7/13/2008; ABC World News Tonight on 7/16/2008; ABC Good Morning America on + 7/17/2008; and CNBC Kudlow and Company on 7/17/2008.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 3 of 4 + 2008 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + + +

    [access part 4]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's media appearances + on: MSNBC on 7/22/2008; CNN Situation Room on 8/6/2008; NBC News on + 8/10/2008; and CNN Anderson Cooper 360 on 8/22/2008.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 4 of 4 + 2008 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + + +

    [access part 4]

    +
    +
    + + +

    [access part 5]

    +
    +
    + + +

    [access part 6]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's media appearances + on: NBC News on 11/16/2008; ABC, CBS, NBC, PBS evening news on 11/17/2008; + MSNBC on 11/19/2008; CNN Late Edition on 11/23/2008; MSNBC on 12/3/2008; and + CNN on 12/3/2008.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + ABC Good Morning America + 2008 February 12 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). ABC Good Morning America with footage of + Senator Carl Levin for a story on rising credit card rates and an introduction + of legislation to stop rate increases for customers who have paid their bills + on time.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + ABC This Week + 2008 March 09 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). ABC This Week with Senator Carl Levin on + do-over primary election in Michigan.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Carl Levin, Money & Politics + 2008 July 17 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Clip of Carl Levin on Money & Politics + regarding oil prices and the War in Iraq.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + CBS Face the Nation + 2008 December 14 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). CBS Face the Nation with Senator Carl + Levin on the auto bailout.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + CBS Face the Nation + 2008 June 01 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). CBS Face the Nation with Senator Carl + Levin on ruling to seat Michigan and Florida delegates at the Democratic + National Convention, but with half the vote.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Fox News Sunday Interview + 2008 December 07 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Fox News Sunday Interview with Senator + Carl Levin on the auto industry bailout.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Iraq Reconstruction Interviews, MSNBC and CNN + 2008 August 07 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Interview clips of Carl Levin regarding + Iraq Reconstruction on MSNBC and CNN Situation Room.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Meet the Press + 2008 November 16 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Meet the Press with Senator Carl Levin on + the auto bailout.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Post Election Press Conference in Detroit + 2008 November 05 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Audio of Carl Levin press conference in + Detroit after the election.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2008 July 17 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's media appearances on: + ABC, CBS, NBC, and PBS evening news shows on July 17, 2008. See: NBC Story on + Permanent Subcommittee on Investigations (PSI) hearing regarding UBS/LGT.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + Permanent Subcommittee on Investigations hearings, videoconference, + CODEL Levin photographs, and Negaunee photographs + 2008 + + + + Visit to Negaunee, Michigan + 2008 October 11 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Photographs from Carl Levin's visit to + Negaunee, Michigan by Andrew Nelson-Zalaski.)

    +
    +
    +
    + + + 2005 + + + + 1 of 5 + 2005 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + + +

    [access part 4]

    +
    +
    + + +

    [access part 5]

    +
    +
    + + +

    [access part 6]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's media appearances on: + CNN Inside Politics on 6/30/2005; CNN Inside Politics on 07/14/2005; CNN + Inside Politics on 07/14/2005; Senate Floor on 07/14/2005 speech regarding + Reid security clearance amendment; CNN Lou Dobbs Tonight on 07/15/2005; CBS + Evening News on 07/16/2005; and PBS NewsHour on 09/29/2005.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2 of 5 + 2005 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + + +

    [access part 4]

    +
    +
    + + +

    [access part 5]

    +
    +
    + + +

    [access part 6]

    +
    +
    + + +

    [access part 7]

    +
    +
    + + +

    [access part 8]

    +
    +
    + + +

    [access part 9]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's media appearances on: + ABC This Week on 05/08/2005; CNN Wolf Blitzer Reports on 05/17/2005; CNN + Anderson Cooper 360 on 05/17/2005; Senate Floor on 05/20/2005 speech regarding + "nuclear option"; Senate Floor on 05/25/2005 speech regarding Bolton + nomination; Fox News "Big Story" on 05/26/2005; CNN Lou Dobbs Tonight on + 06/07/2005; NBC Nightly News on 06/13/2005; and CNN Late Edition on + 06/26/2005.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 3 of 5 + 2005 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + + +

    [access part 4]

    +
    +
    + + +

    [access part 5]

    +
    +
    + + +

    [access part 6]

    +
    +
    + + +

    [access part 7]

    +
    +
    + + +

    [access part 8]

    +
    +
    + + +

    [access part 9]

    +
    +
    + + +

    [access part 10]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's media appearances on: + NBC Meet the Press on 10/16/2005; MSNBC 'Connected' on 10/17/2005; CNN + Situation Room on 11/07/2005; CNN Situation Room on 11/07/2005 regarding + website; MSNBC Hardball on 11/07/2005; CNN Situation Room on 11/07/2005; CNN + American Morning on 11/08/2005; NBC Nightly News on 11/08/2005; CNN Late + Edition on 11/13/2005; and CNN American Morning on 11/14/2005.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 4 of 5 + 2005 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + + +

    [access part 4]

    +
    +
    + + +

    [access part 5]

    +
    +
    + + +

    [access part 6]

    +
    +
    + + +

    [access part 7]

    +
    +
    + + +

    [access part 8]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's media appearances on: + C-SPAN on 11/14/2005, partial clip of Iraq press conference; CNN Lou Dobbs + Tonight on 11/15/2005; Fox News Sunday on 11/27/2005; CNN Lou Dobbs Tonight on + 11/30/2005; CNN Paula Zahn Now on 12/07/2005; CNN Situation Room on + 12/12/2005, live coverage of press conference response to President Bush's + speech on Iraq; CNN Situation Room on 12/14/2005, live coverage of press + conference prebuttal to President Bush's speech; and MSNBC Hardball on + 12/14/2005.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 5 of 5 + 2005 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's media appearances on: + press conference on 12/19/2005 with Senators Jack Reed, Russ Feingold, and + Carl Levin regarding President Bush's speech; MSNBC Hardball on 12/20/2005; + and CNN American Morning on 12/21/2005.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + 2006 + + + + 1 of 6 + 2006 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + + +

    [access part 4]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's media appearances on: + ABC Good Morning America on 6/06/2006; CNN American Morning on 6/21/2006 + regarding Levin-Reed amendment on Iraq; Fox News Sunday on 6/25/2006, Levin + and Sen. John Warner regarding Iraq; and CBS Face the Nation on 7/2/2006, + Levin and Sen. Arlen Specter regarding New York Times story on SWIFT and the + secret government surveillance program.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2 of 6 + 2006 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + + +

    [access part 4]

    +
    +
    + + +

    [access part 5]

    +
    +
    + + +

    [access part 6]

    +
    +
    + + +

    [access part 7]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's media appearances on: + MSNBC on 10/31/2006 regarding Iraq, North Korea, and 2006 elections; ABC This + Week on 11/12/2006, Levin with Sen. Joe Biden regarding Iraq; PBS NewsHour on + 11/13/2006, Levin with Sen. Chuck Hagel; CNN Newsroom on 11/15/2006; CNN + Situation Room on 11/15/2006; CBS Evening News on 11/15/2006 regarding Senate + Armed Services Committee (SASC) hearing with Gen. Abizaid; and CNN Anderson + Cooper 360 on 11/29/2006 regarding Iraq.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 3 of 6 + 2006 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + + +

    [access part 4]

    +
    +
    + + +

    [access part 5]

    +
    +
    + + +

    [access part 6]

    +
    +
    + + +

    [access part 7]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's media appearances on: + CNN Larry King Live on 7/26/2006; CNN Paula Zahn Now on 8/3/2006; NBC Nightly + News on 8/4/2006; CNN Paula Zahn Now on 9/7/2006 regarding military + commissions; CNN Lou Dobbs Tonight on 9/11/2006, Levin and Sen. Trent Lott + regarding intelligence Committee report on Phase II; PBS NewsHour on + 9/12/2006, Levin and Sen. Kit Bond regarding intelligence Committee report on + Phase II; and CBS Face the Nation on 9/17/2006, with Levin, Sen. Lindsay + Graham, and Sen. Arlen Specter regarding Phase II and military tribunals.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 4 of 6 + 2006 December + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's media appearances on: + CNN Situation Room on 12/20/2006; CBS Evening News on 12/20/2006; and CNN + Situation Room on 12/29/2006 regarding Iraq troop surge.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 5 of 6 + 2006 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + + +

    [access part 4]

    +
    +
    + + +

    [access part 5]

    +
    +
    + + +

    [access part 6]

    +
    +
    + + +

    [access part 7]

    +
    +
    + + +

    [access part 8]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's media appearances on: + ABC This Week on 2/26/2006, with Levin by himself after Sen. John McCain, + regarding port security and Iraq; CNN Lou Dobbs Tonight on 2/27/2006 regarding + port security; CNN Situation Room on 2/28/2006 regarding port security and + Iraq; MSNBC Hardball on 2/28/2006 regarding port security and Iraq; CNN Late + Edition on 3/12/2006, Levin with Sen. John Warner regarding Iraq, Iran, and + port security; NBC Nightly News on 3/13/2006; Fox News Sunday on 3/26/2006, + with Levin by himself after Secretary of State Condoleezza Rice, regarding + Iraq and Iran; and Fox the Big Story with John Gibson on 3/29/2006 regarding + Real Security Event.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 6 of 6 + 2006 June 26-27 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + + +

    [access part 4]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's media appearances on: + NBC Nightly News on 6/26/2006; CNN Paula Zahn Now on 6/26/200; Fox and Friends + on 6/27/2006; and CNBC Power Lunch on 6/27/2006.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + ABC This Week + + + + 2005 May 08 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). ABC This Week with Senators Carl Levin and + Chuck Hagel regarding John Bolton's nomination to the UN, North Korea, and + Iraq.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2006 February 26 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Levin by himself after Sen. John McCain + regarding port security and Iraq civil war on ABC This Week.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + CNN Late Edition + + + + 2005 January 16 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). CNN Late Edition with Senators Carl Levin + and Mitch McConnell regarding Iraq and Social Security.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2005 January 30 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). CNN Late Edition with Senators Carl Levin + and John Warner regarding Iraqi elections.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2005 June 26 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). CNN Late Edition with Wolf Blitzer with a + one-on-one interview with Senator Carl Levin regarding Iraq.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2005 November 13 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). CNN Late Edition with Wolf Blitzer with + Senators Levin and Pat Roberts regarding Phase II intelligence report, Iraq, + and terrorism.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + Fox News Sunday + + + + 2005 January 02 + + + + 1 of 2 + 2005 January 02 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's media appearances + on: Fox News Sunday on 1/2/2005, with Levin and Sen. Lugar regarding + Iraq.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2 of 2 + 2005 January 02 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Fox News Sunday, WTTG Local, interview + with Senators Carl Levin and Richard Lugar regarding Iraq.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + 2006 March 26 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Carl Levin on Fox News Sunday, following + Condoleezza Rice, regarding Iraq and Iran.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + NBC Meet the Press + + + + 2004 December 19 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). NBC Meet the Press with Senators Carl + Levin, John Warner, Joe Biden, and Dick Lugar regarding Iraq, Rumsfeld.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2005 October 16 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). NBC Meet the Press with Senator Carl Levin + regarding Iraq referendum, after Condoleezza Rice.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + ABC Good Morning America + 2006 August 02 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Carl Levin senate footage and voice + recording on ABC Good Morning America's "You Must Be Kidding", a tax shelter + abuse segment.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + ABC World News Tonight and CBS Evening News + 2006 November 30 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). ABC World News Tonight and CBS Evening News + coverage regarding the Iraq Study Group and what they say should happen next in + Iraq.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Armed Services Committee 110th Session Priorities + 2006 November 13 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Carl Levin press conference on the United + States Committee on Armed Services priorities for the 110th Congress.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Carl Levin Interview, TV Orient + 2005 August 23 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). TV Orient's Insight Into Leadership + interview with Senator Carl Levin. Interview taped on 8/18/2005, and aired on + 8/23/2005. From Eunice Confer.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + CNN Lou Dobbs Tonight + 2005 May 03 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). CNN Lou Dobbs Tonight with Senator Carl + Levin regarding North Korea.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Interlochen Public Radio "Island Cabin Discs" with Senator Carl + Levin + 2006 May 06 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Audio of Interlochen Public Radio show "Island Cabin Discs" hosted by Jeffrey + Kimpton with guest Senator Carl Levin, discussing music Levin would take with + him to a deserted island. Recorded March 10, 2006 and aired May 6, 2006.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Iraq Report Press Conference + 2006 December 06 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Press conference regarding the Iraq Study + Group report on a recommended change of course and policies in Iraq.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Levin on ABC, CBS, NBC, and PBS Network News + 2006 November 15 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Senator Carl Levin's senate footage and + media appearances on: ABC World News Tonight; CBS Evening News, interview by + Katie Couric; NBC Nightly News; and PBS NewsHour, coverage of Senate Armed + Services Committee (SASC) hearing with General Abizaid.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + NBC Nightly News + 2006 October 06 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Carl Levin interview for a segment on Iraq + on an episode of NBC Nightly News with Brian Williams. Video of entire Nightly + News episode.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + NOW with David Brancaccio, Show #205 + 2006 February 03 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Levin interview regarding pre-war + intelligence on NOW with David Brancaccio, the weekly news magazine from + PBS.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + PBS NewsHour + 2005 September 29 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). PBS NewsHour with Jim Lehrer with Senator + Carl Levin and Senator John Warner regarding Iraq.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Senator Carl Levin Conference Call with Michigan Reporters + 2006 March 21 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Audio of conference call between Carl Levin + and Michigan reporters on March 21, 2006 regarding Levin's trip to Iraq.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + Detroit Jewish News + January 2003 + 1050 + + +

    (Article on Carl and Sandy Levin)

    +
    +
    + + + Levin office-newspaper columns + + + + 4 folders + 2003 + 905 + + + + + 3 folders + 2004 + 905 + + + + + January-June + 2005 + 905 + + + + + July-December + 2005 + 905 + + + + + January-June + 2006 + 906 + + + + + July-December + 2006 + 906 + + + + + January-June + 2007 + 906 + + + + + July-December + 2007 + 906 + + + + + 3 folders + 2008 + 906 + + + + + + Michigan Press Reader Service (MPRS) news articles + + + + June 2003 + 907 + + + + + 2003 + + + + January + 3 folders + 907 + + + + + February + 3 folders + 907 + + + + + March + 3 folders + 907 + + + + + April + 2 folders + 907 + + + + + May + 2 folders + 907 + + + + + June + 2 folders + 908 + + + + + July + 2 folders + 908 + + + + + August + 2 folders + 908 + + + + + September + 2 folders + 908 + + + + + October + 2 folders + 908 + + + + + November + 908 + + + + + December + 2 folders + 908 + + + + + + 2004 + + + + January + 909 + + + + + February + 909 + + + + + March + 909 + + + + + April + 909 + + + + + May + 909 + + + + + June + 909 + + + + + July + 909 + + + + + August + 910 + + + + + September + 910 + + + + + October + 910 + + + + + November + 910 + + + + + December + 910 + + + + + + 2005 + + + + January + 910 + + + + + February + 910 + + + + + March + 910 + + + + + April + 910 + + + + + May + 911 + + + + + June + 911 + + + + + July + 911 + + + + + August + 911 + + + + + September + 911 + + + + + October + 911 + + + + + November + 911 + + + + + December + 911 + + + + + + 2006 + + + + January + 912 + + + + + February + 912 + + + + + March + 912 + + + + + April + 912 + + + + + May + 912 + + + + + June + 912 + + + + + July + 912 + + + + + August + 912 + + + + + September + 913 + + + + + + 2007 + + + + January + 913 + + + + + February + 913 + + + + + March + 913 + + + + + April + 913 + + + + + May + 913 + + + + + June + 914 + + + + + July + 914 + + + + + August + 914 + + + + + September + 914 + + + + + October + 914 + + + + + November + 914 + + + + + December + 915 + + + + + + 12 folders + 2008 + 915 + + + + + + Miscellaneous + 2004-2006 + 915 + + + + Video Conference with Roseville High School + 2007 May 09 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Video conference of Senator Carl Levin with + Roseville High School, in the Senate Recording Studio.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Video Conference, Berrien County Intermediate School + District + 2007 January 26 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Video conference of Senator Carl Levin with + three Southwest Michigan high schools, Coloma High School, Dowagiac High School, + and New Buffalo High School, in the Senate Recording Studio. Video conference + was coordinated by the Berrien County Intermediate School District.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Video Conference + 2007 November 05 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Video conference of Senator Carl Levin with + Northern Michigan University students, faculty, staff, and general community + members on Iraq, in the Senate Recording Studio.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Tribute to Carl S. Kamin + 2007 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). A tribute to Carl S. Kamin, who served in + World War II in the 31st Photo Reconnaissance Squadron.)

    +
    +
    + + + The War in Iraq Panel Discussion + 2007 November 14 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Coverage of The War in Iraq Panel Discussion + with: Sen. Reid, Sen. Bayh, Sen. Webb, Gen. Barry McCaffrey, U.S. Army, Ret, + Lawrence J. Korb, Sr. Fellow, Center for American Progress, and moderator Matt + Bennett, VP for Public Affairs, Third Way.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + The Congressional Gold Medal Presentation to the Tuskegee + Airmen + 2007 March 29 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Presentation of the Congressional Gold Medal + to the Tuskegee Airmen.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Chaldean Chamber Annual Dinner + 2007 April 13 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Video on Senator Carl Levin's advocacy work + for the Chaldean community, for the Chaldean Chamber Annual Dinner.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + National news articles-national + + + + 2 folders + 2003 + 916 + + + + + 2 folders + 2004 + 916 + + + + + 2 folders + 2005 + 916 + + + + + January-July 2006 + 916 + + + + + August-December 2006 + 916 + + + + + 2007 + + + + January-March + 916 + + + + + April-June + 916 + + + + + July-August + 917 + + + + + September-December + 917 + + + + + + January-June 2008 + 917 + + + + + July-December 2008 + 917 + + + + + + Office subject files + + + + Hearing exhibits-Role of Financial Institutions in Enron's Collapse, + July 23 (PSI) + 2002 + 917 + + + + + Iraq + + + + 2 folders + 2002-2003 + 917 + + + + + Inquiry + 2003 + 917 + + + + + 2003-2005 + 917 + + + + + 2004 + 917 + + + + + + Michigan caucus and New Hampshire primary + 2007 + 917 + + + + + + Op-eds (N. Barr) + + + + Affirmative action + October 2006 + 918 + + + + + Bates Street column -- Detroit Free Press, (The Twain Shall Finally + Meet) + July 2005 + 918 + + + + + Climate change -- for Detroit Free Press + February 2007 + 918 + + +

    (Includes Levin statements on Oman Freed Trade Agreement-OFTA, fast track, and + global warming from 2006-2007)

    +
    +
    + + + Iraq -- Changing the dynamic + July 2005 + 918 + + +

    (Includes Levin statement and trip report for CODEL Iraq and Jordan July 5-7, + 2005)

    +
    +
    + + + Iraq -- What would Lincoln do? + June + 2007 + 918 + + + + + Karl Rove comments + July 2005 + 918 + + + + + Tax shelters + July 2005 + 918 + + +

    (Includes Levin statements on tax shelter legislation and protecting honest + taxpayers from 2005)

    +
    +
    +
    + + + Press conference on auto loans + December 15, + 2008 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Press releases + + + + 3 folders + 2003 + 918 + + + + + 2 folders + 2004 + 918 + + + + + January-June 2005 + 918 + + + + + 2 folders + July-December 2005 + 918 + + + + + Grants + + + + 2003 + 918 + + + + + 2004 + 919 + + + + + 2005 + 919 + + + + + + + Radio tour schedules + + + + 2003 + 919 + + + + + 2004 + 919 + + + + + 2005 + 919 + + + + + 6 folders + 2003-2008 + 919 + + + +
    + + + Smart Growth + 2000-2006 + + + + Briefings + + + + Built environment and physical activity + 2005 + 933 + + + + + Brownfields + 2005 + 933 + + + + + Oil addiction and transit + 2005-2006 + 933 + + + + + + Economic Development Adminsitration (EDA) + + + + EDA + February 2003 + 933 + + + + + EDA Brownfields bill + 2 folders + 2003 + 933 + + + + + + Energy + 2005 + 933 + + + + + Faith based groups and creation care + 2005 + 933 + + + + + Government Accountability Office (GAO) + 2003-2004 + 933 + + + + + GAO report talking points + September 2000 + 933 + + + + + Health and obesity + 2005 + 933 + + + + + Housing and Urban Development (HUD) brownfields 108th + Congress + 2003 + 933 + + + + + Language + 2005 + 933 + + + + + Michigan area files, (D. Persky) + 2002-2003 + 933 + + + + + Relationship between smart growth and obesity + 2003 + 933 + + + + + Response to 20/20 + 2005 + 933 + + + + + Transportation and aging + 2005 + 933 + + + + + + Speeches and writings + 2000-2009 + + + + Detroit Metro Bar Association Foundation: Dennis Archer Award Recipient, + Carl Levin + 2006 October 24 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Slide presentations, including one with + photographs of Carl Levin, for the 2006 Dennis W. Archer Public Service Award + honoring Senator Carl Levin from the Detroit Metro Bar Association + Foundation.)

    +
    +
    + + + Chaldean Federation of American 25th Anniversary + 2006 November 29 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). A video greeting by Carl Levin for the + Chaldean Federation of America 25th Anniversary.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + American-Arab Anti-Discrimination Committee Annual Banquet + 2006 November 29 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). A video greeting by Carl Levin for the + American-Arab Anti-Discrimination Committee Annual Gala.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + American Task Force on Palestine's Inaugural Gala, (N. Barr) + October 11, + 2006 + 939 + + + + + Armed services (N. Barr) + + + + Base Realignment and Closure (BRAC) Commission, (testimony regarding + the Pentagon's recommendations for Michigan's facilities; N. Barr and M. + Kuiken) + June 30, 2005 + 939 + + + + + Carllevin.com, (Reducing troops in Iraq and Levin's amendment with + Senator Jack Reed; link to website for full remarks on the + amendment) + June 22, 2006 + 939 + + + + + U.S. Army Tank Automotive Research Development and Engineering Center + (TARDEC) video, (1st annual ground automotive power and energy + symposium) + July 22, 2005 + 939 + + + + + + Central Michigan University -- Nanotechnology, (CMU; N. Barr) + May 20, 2005 + 939 + + + + + Commencements (Graduation; N. Barr) + + + + Lawrence Technological University + May 21, 2006 + 939 + + + + + St. Clair Community College + May 6, 2005 + 939 + + + + + Wayne State University -- honorary degree + May 5, 2005 + 939 + + + + + + Council on Foreign Relations, (N. Barr) + October 21, + 2005 + 939 + + + + + Dedications and tributes (N. Barr) + + + + Kris Eggle memorial fountain, (Cadillac) + June 4, 2005 + 939 + + + + + Grand Traverse County Courthouse-Civil War monument + May 30, 2005 + 939 + + + + + Ionia free fair, (Heroes day celebration) + July 22, 2006 + 939 + + + + + John D. Dingell Jr. -- 50 years in Congress + October 26, + 2005 + 939 + + + + + Thunder Bay, (honor Levin at Grand Opening of Great Lakes Maritime + Heritage Center) + September 17, + 2005 + 939 + + + + + U.S.S. Gerald Ford + January 16, + 2007 + 939 + + + + + Vietnam memorial -- Pine Mountain, U.P. + June 1, 2006 + 939 + + + + + WAND Michigan roast -- Carl and Barbara Levin + May 7, 2006 + 939 + + + + + + Democratic Party (N. Barr) + + + + Democratic National Committee (DNC), primary system early caucus issue, + (work with Debbie Dingell) + May 14, 2005 + 939 + + + + + Granholm inauguration + January 1, + 2007 + 939 + + + + + Michigan Democratic Party (MDP) Convention -- Cobo Center + August 26, + 2006 + 939 + + + + + Michigan Democratic Party (MDP) Convention + February 24, + 2007 + 939 + + + + + + Democratic speeches + 2006-2009 + 939 + + + + + Detroit Chamber of Commerce regional conference -- business ethics + luncheon, (N. Barr) + June 3, 2005 + 940 + + + + + Detroit Economic Club, (Home and Away: A look at two pressing issues + facing our nation; N. Barr) + May 1, 2006 + 940 + + + + + Global Service Award -- Global Education Fund dinner, (N. + Barr) + March 22, 2007 + 940 + + + + + Great Lakes Mayors Caucus -- Levin video greeting script, (N. + Barr) + July 2005 + 940 + + + + + Gun speeches + June 2006-October 2009 + 940 + + + + + Michigan Civil Rights Commission 40th anniversary article + 2003 + 940 + + + + + Notes and speeches + + + + 2000-2003 + 1029 + + + + + 2 folders + 2004-2007 + 940 + + + + + 2 folders + 2008-2009 + 940 + + + + + + Senate floor (N. Barr) + + + + Stem cells + July 17, 2006 + 940 + + + + + Supreme Court nomination appointment process + 2005 + 940 + + +

    (Includes Congressional Record statements regarding nominations of Souter, + Thomas, Kennedy, Bork, Rehnquist, and O'Conner dated 1981-1991)

    +
    +
    + + + Supreme Court nomination for Samuel Alito + January 2006 + 940 + + + + + U.S. Policy on Iraq FY2007 National Defense Authorization + Act + June 2006 + 940 + + +
    + + + Southern Wayne County Chamber of Commerce legislative forum, (N. + Barr) + July 24, 2006 + 940 + + + + + Speech files + + + + 2 folders + 2006-2007 + 941 + + + + + 3 folders + January-February 2008 + 941 + + + + + March-April 2008 + 941 + + + + + 2 folders + May-June 2008 + 941 + + + + + 2 folders + July-November 2008 + 941 + + + + + 3 folders + December 2008-June 2009 + 941 + + + + + + Swarthmore-A Career Influence + 2003 + 941 + + + + + Synagogue -- Adat Shalom + May 19, 2007 + 941 + + + + + Torture + 2008 + 941 + + + + + University of Michigan + + + + Climate change -- keynote, (Ross School of business; N. + Barr) + June 2, 2005 + 941 + + + + + Dearborn Technology Day, (N. Barr and M.L. Wagner) + June 6, 2005 + 941 + + + + + Rosenthal lecture, (Ford School; N. Barr) + September 16, + 2005 + 941 + + + +
    + + + Trade + 1985-2014 + + + + Trade, (A. Pascale) + 17 subfolders + 2005-2006 + 1006 + + + + + Airbus Boeing WTO cases + 2008 + 1006 + + + + + Alticore letter responding to Holwill-wireless power transfer + company + 2 folders + 2006-2007 + 1006 + + + + + American manufacturing initiative-DPC manufacturing panel + 2008 + 1006 + + + + + Andean Trade Preference Act (ATPA) asparagus amendment, 2001-2002, 2005 + (A. Pascale) + 4 folders + 2001-2005 + 1006 + + + + + Auto industry + + + + Auto Parts Advisory Committee reauthorization + 2003 + 1006 + + + + + Auto part counterfeiting Levin testimony + 7 folders + 2004-2005 + 1006 + + + + + Auto part counterfeiting Levin testimony-China + 2005-2006 + 1-3 of 7 + foldeers + 1006 + + + + + Auto part counterfeiting Levin testimony-China + 2005-2006 + 4-7 of 7 + foldeers + 1007 + + + + + Auto parts trade surge, (A. Pascale) + 2004 + 1007 + + + + + Carl meet with representative of Chinese President Hu + 2008 + 1007 + + + + + Dodge, Chrysler, Durango issues related to selling to Ministry of + Iraq + 2008 + 1007 + + + + + New England-Midwest Auto Parts Task Force chronology + 1985-2003 + 1007 + + + + + Trade advisory report on Korea FTA, GM, and Ford + 2007 + 1007 + + + + + + Bangladesh accord and textile manufacturing labor conditions + 2014 + 1007 + + + + + Byrd amendment fair and open trade amendment + 2005 + 1007 + + +

    (American Farm Bureau Federation)

    +
    +
    + + + Central American Free Trade Agreement (CAFTA) + 3 folders + 2005 + 1007 + + + + + Chairman's lunch manufacturing discussion -- manufacturing trade action + coalition, (A. Pascale) + 2006 + 1007 + + + + + China + + + + American companies + 2006 + 1007 + + + + + Auto policy and WTO auto parts suit + 2 folders + 2006 + 1007 + + + + + China Commission testimony, (A. Pascale) + 2007 + 1007 + + + + + 301 currency petition + 2004-2005 + 1007 + + + + + Chinese currency manipulation memos, bills, and Sandy Levin's + position + 3 folders + 2003-2011 + 1007 + + + + + Chinese currency-Voinovich Sense of Senate + 2003 + 1008 + + + + + Furniture dumping + 2 folders + 2003-2004 + 1008 + + + + + Intelligence letter, (A. Pascale) + 2007 + 1008 + + + + + Internet censorship + 2006 + 1008 + + + + + NewPage Corporation antidumping and countervailing case + 2008 + 1008 + + + + + + Colonial Mold + 2008 + 1008 + + + + + Consumer Product Safety Improvement Act-H.R.4040 + 2008 + 1008 + + + + + Cost of labor as a component of value of US manufactured + products + 2006 + 1008 + + + + + Customs and border protection-SAFE Port Act + 2008 + 1008 + + + + + Democratic caucus message and revised China resolution on trade + policy + 2005 + 1008 + + + + + Democratic delegation manufacturing follow-up and trade + competitiveness + 2003-2004 + 1008 + + + + + Developing legislative priorities 110th Congress + 2007 + 1008 + + + + + DeWine tariff bill + April 2005 + 1008 + + + + + Domenici-Bingaman-Alexander-Mikulski bills to improve America's + competitive edge + 2006 + 1008 + + + + + Dorgan's anti-sweatshop bill issues + 2006 + 1008 + + + + + Foreign Trade Zones (FTZ) Board-Perrigo issues + 2007-2009 + 1008 + + + + + Free Trade Agreement (FTA) + + + + Australia + June-July 2004 + 1008 + + + + + Bahrain + December 2005 + 1008 + + + + + Chile and Singapore + May-July 2003 + 1008 + + + + + Korea + + + + Auto caucus + 2003-2004 + 1008 + + + + + Auto caucus briefing + 2007 + 1008 + + + + + Auto industry + 2006 + 1008 + + + + + Auto industry trade exports + 2006-2011 + 1008 + + + + + Sandy Levin letter + 2 folders + 2007-2009 + 1008 + + + + + USTR briefing on economic contribution of the U.S. Auto Industry and + major competiveness challenges + 2007 + 1008 + + + + + + Morocco + July 2004 + 1008 + + + + + Oman + 2006 + 1008 + + + + + Peru implementation legislation + 2 folders + 2007 + 1008 + + + + + Singapore + 2003 + 1009 + + + + + Thailand-truck tariff, S.R.90 + 2003-2006 + 1009 + + + + + Vietnam and Colombia + 2001-2006 + 1009 + + + + + + Granholm trade events, trade roundtable, and Sandy Levin + comments + 2006 + 1009 + + + + + Hearings + + + + Democratic Policy Committee hearing on Trade Policy and the U.S. + Automobile Industry (A. Pascale) + February 17, + 2006 + 1009 + + + + + + Historical trade deficit table + July-September 2004 + 1009 + + + + + Homedics + + + + Challenge, Department of Commerce, antidumping order + 2006 + 1009 + + + + + Re-liquidation bills and tariffs + 2002-2007 + 1009 + + + + + + Intellectual property bill + 2007 + 1009 + + + + + International Trade Commission (ITC) midterm review + 2003 + 1009 + + + + + International Trade Commission (ITC) sunset review, U.S. trade laws, and + five-year review + 2006 + 1009 + + + + + International trade plant relocation and outsourcing + 2003-2006 + 1009 + + + + + Japan currency and auto trade + 2006 + 1009 + + + + + Japanese currency manipulation + + + + 2003-2007 + 1009 + + + + + 2005 + 1009 + + + + + 2007 + 1009 + + +

    (A. Pascale)

    +
    +
    +
    + + + Japanese currency manipulation and its impact on the U.S. auto + industry + 2006 + 1009 + + + + + Johnson controls microphones tariff suspension-S.2692 + 2006 + 1009 + + + + + Kerry manufacturing bill, (A. Pascale) + 2003 + 1009 + + + + + Letters and record material + 2007-2008 + 1009 + + + + + Levin's trade and manufacturing records + + + + Binder + 2 folders + 2001-2003 + 2007 + 1009 + + + + + Papers + 2 folders + 2004-2007 + 1009 + + + + + + Manufacturing trade platform policies, ) + 1 of 3 folders + 2003-2004 + 1009 + + + + + Manufacturing trade platform policies + 2003-2004 + 2-3 of 3 folders + 1010 + + + + + Manufacturing Extension Partnership (MEP) + + + + Funding + 2003-2004 + 1010 + + + + + MEP and advanced technology program + 2002-2003 + 1010 + + + + + Program + 2 folders + 2002-2010 + 1010 + + + + + + Michigan-Intellectual property event + 3 folders + 2007-2008 + 1010 + + + + + Michigan manufacturing + + + + Proud to Manufacture in Michigan Hill Day + 2012 + 1010 + + +

    (MMTC)

    +
    +
    + + + Michigan Manufacturing Technology Center (MMTC) + 2009 + 1010 + + + + + Industry solutions + 2 folders + 2004 + 1010 + + +
    + + + Michigan National Association of Manufacturers remarks + February 16, + 2005 + 1010 + + + + + Most Favored Nation (MFN) Russia + 2006 + 1010 + + + + + Motor and Equipment Manufacturers Association (MEMA) short supply + chain + 2004 + 1010 + + + + + North American Free Trade Agreement (NAFTA) + + + + Job loss and gain + 2003-2007 + 1011 + + + + + + Permanent Normal Trade Relations (PNTR) + + + + Armenia + 2004 + 1011 + + + + + Ukraine + 3 folders + 2005-2006 + 1011 + + + + + + Romania + September 2002 + 1011 + + + + + S.C. Johnson and Taiwan + 2005-2006 + 1011 + + + + + Secretary of Commerce Gutierrez + 2004-2005 + 1011 + + + + + Small Business credit crunch hearing + 2008 + 1011 + + + + + Spartan factory closure, (Michigan) + 2009 + 1011 + + + + + Steel + + + + Pensions + January 2003 + 1011 + + + + + Rouge Steel and SeverStal + February-March 2004 + 1011 + + +

    (SeverStal is the successor company to Rouge Steel)

    +
    +
    + + + Steel scrap short supply + 2008 + 1011 + + +
    + + + Super 301 and democratic trade, (A. Pascale) + 2004 + 1011 + + + + + Titanium + 2003 + 1011 + + + + + Trade interview + 2004-2005 + 1011 + + + + + Turkey and Armenia + September-October 2002 + 1049 + + +
    + + + Transportation + 1997-2009 + + + + Air Brakes Systems, Inc. and anti-lock brake compliance + 2003 + 959 + + + + + Appropriations and funding + + + + FY2003 amendment ideas + 959 + + + + + FY2004 Congress Transportation Authorization bill background and + memos + 2 folders + 959 + + + + + FY2004 President's transit budget request + 959 + + + + + FY2006 House transportation bill and Michigan high priority + projects + 959 + + + + + FY2007 priorities + 959 + + + + + FY2007 House mark + 959 + + + + + FY2007 Senate committee mark + 959 + + + + + FY2008 Commodity jurisdictions -- senate floor + 959 + + + + + FY2008 Omnibus + 959 + + + + + FY2008 Transportation, Treasury, Housing and Urban Development (TTHUD) + -- senate floor + 959 + + + + + Amendments to transportation bill + January-February 2004 + 959 + + + + + Ann Arbor earmark fix Barton Drive HPP, (A. Pascale) + 2007 + 959 + + + + + Federal Highway Administration (FHA) formulas + 2 folders + 2000-2004 + 959 + + + + + Finance Committee + January-February 2004 + 959 + + + + + Granholm letter + May 2006 + December 2002-February + 2003 + 959 + + + + + Granholm testimony before House Committee on Transportation and + Infrastructure + May 7, 2003 + 959 + + + + + Letters on transit + 2002-2005 + 959 + + + + + Local Technical Assistance Program + 2 folders + 2003-2004 + 959 + + + + + Memo to Carl -- President's position on road funding + February 6, + 2003 + 959 + + + + + Michigan delegation letter -- Congress transportation + reauthorization + 2004-2005 + 959 + + + + + Michigan news clips on highway funding + 2003-2005 + 959 + + + + + Michigan roads and transit needs + 2001 + 2003 + 959 + + + + + Safe, Accountable, Flexible, Efficient Transportation Equity Act + (SAFETEA) + + + + Ethanol tax + 2003-2004 + 959 + + + + + Michigan Department of Transportation overview + 2003 + 959 + + + + + Statement of Administration policy + February 11, + 2004 + 959 + + + + + + Safe, Accountable, Flexible, Efficient Transportation Equity Act: A + Legacy for Users (SAFTEA-LU) bill (A. Pascale) + + + + 9 subfolders + 2004-2005 + 959 + + + + + 16 subfolders + 2005-2006 + 960 + + + + + FY2006 SAFETEA reauthorization bill -- Levin amendment to up donor + state percentages, data runs, floor statements + 14 subfolders + 960 + + + + + Reauthorization + 2 folders + 2005 + 960 + + +

    (Including Levin equity amendment, border amendments, Michigan project + requests, and conference reports)

    +
    +
    + + + Second technical corrections bill request to SAFETEA-LU project + regarding H-58, (A. Pascale) + 2007-2008 + 961 + + +
    + + + SHARE amendment + February 2004 + 961 + + + + + SHARE bill -- S.1090 + 13 subfolders + 2003 + 961 + + +

    (Contains a floppy disk; A. Pascale)

    +
    +
    + + + Transportation reauthorization delegation meeting, (A. + Pascale) + 2008 + 961 + + + + + Transportation Equity Act for the 21st Century (TEA-21) + + + + FY2004 + 961 + + + + + Banking Committee markup of transit bill + January-February 2004 + 961 + + + + + Border station funding + September 2003-January 2004 + 961 + + +

    (Includes highway bridge replacement and rehabilitation program; homeland + security; A. Pascale)

    +
    +
    + + + Donor state equity amendment CRS tables + 1997 + 2002 + 961 + + + + + Environment and Public Works Committee Markup + October 2003-January 2004 + 961 + + + + + Carl statements, letters, TEA-21 summary, and Michigan 90.5% + dollar + 1997-2002 + 961 + + + + + Michigan Chamber of Congress Column + March 2003 + 961 + + + + + Reauthorization + 2 folders + 2003-2004 + 961 + + + + + Reauthorization Michigan projects, (A. Pascale) + 2 subfolders + 2004-2005 + 961 + + + + + Reauthorization project requests, (A. Pascale) + 1 of 2 including 18 subfolders + 2003-2004 + 961 + + + + + Reauthorization project requests, (A. Pascale) + 2 of 2 including 47 subfolders) + 2003-2004 + 962 + + + + + Short term extension + September 2003-February 2004 + 962 + + + + + TEA-21 and TEA-3 transit projects + 19 subfolders + 2003 + 962 + + + + + Transit equity + 2003 + 962 + + +
    + + + Transportation projects and funding, (D. Persky) + 8 subfolders + 2002-2003 + 962 + + +
    + + + Appropriations-Michigan requests + + + + FY2004 + + + + Appropriations chart + 962 + + + + + Conference + 962 + + + + + Contract tower issue + 962 + + + + + Cover letter + 962 + + + + + Levin and Stabenow requests + 962 + + + + + Allendale-Grand Valley State University bus shelter + 962 + + + + + Alma + 962 + + + + + Ann Arbor + 962 + + + + + Border priorities + 962 + + + + + Chippewa County International airport + 962 + + + + + Chippewa County river walk-I-75 gate + 962 + + + + + Detroit + + + + Detroit Area Regional Transportation Authority (DARTA) + 963 + + + + + Detroit + 963 + + + + + East riverfront + 963 + + + + + Reprogramming + 963 + + + + + West Vernor streetscape + 963 + + + + + + East Lansing-MSU rail grade separation + 963 + + + + + East Lansing-MSU Farm Lane + 963 + + + + + Fuel cell + 963 + + + + + Flint + 963 + + + + + Grand Rapids + 963 + + + + + Kalamazoo + 963 + + + + + Lansing + 963 + + + + + Manistee Blacker airport + 963 + + + + + Marquette + 963 + + + + + Michigan Technology University Institute for aggregate + research + 963 + + + + + Midland + 963 + + + + + Negaunee truck + 963 + + + + + Oakland-Suburban Mobility Authority for Regional Transportation + (SMART) + 963 + + + + + Oakland County airport + 963 + + + + + Oakland County ITS + 963 + + + + + Pellston Regional airport + 963 + + + + + Port Huron + 963 + + + + + Saginaw + 963 + + + + + Sault Ste. Marie-Lake Superior State University FHA + 963 + + + + + Statewide + 963 + + + + + Statewide-small agencies + + + + Clare County + 963 + + + + + Crawford County-Grayling + 963 + + + + + Eastern U.P + 963 + + + + + Forsythe Township + 963 + + + + + Hillsdale + 963 + + + + + Ironwood + 963 + + + + + Midland + 963 + + + + + Ostego County-Gaylord + 963 + + + + + Shiawassee + 963 + + + + + + Traverse City + + + + Air traffic tower + 963 + + + + + Cherry Capitol airport + 963 + + + + + Electric bus + 963 + + + + + + Wayne County + 963 + + + + + + FY2005 + + + + Levin and Stabenow requests + 963 + + + + + Omnibus + 963 + + + + + Allegan County + 963 + + + + + Allendale-Grand Valley State University + 963 + + + + + Alma + 963 + + + + + Ann Arbor + 963 + + + + + Ann Arbor-Detroit-Airport lightrail + 963 + + + + + Automation Alley + 963 + + + + + Battle Creek-airports + 963 + + + + + Battle Creek-bus + 963 + + + + + Chippewa County + 963 + + + + + Chippewa County-reprogramming and refund + 963 + + + + + Dearborn-Henry Ford Museum + 963 + + + + + Detroit + + + + Detroit Department of Transportation (DDOT) + 963 + + + + + Detroit Windsor Tunnel-homeland security-Detroit Plaza + 963 + + + + + Reprogramming + 963 + + + + + Wayne State University crash test technology-Professor Albert + King + 963 + + + + + + Detroit Metro airport + 963 + + + + + Flint + 963 + + + + + Grand Rapids + 963 + + + + + Grand Rapids Corridor + 963 + + + + + Hillsdale + 963 + + + + + Houghton-Michigan Technological University-2 projects + 963 + + + + + Kalamazoo + 963 + + + + + Kalamazoo-Western Michigan University + 963 + + + + + Kalamazoo-Western Michigan University and Kellogg + airport-radar + 963 + + + + + Lansing -- CATA + 963 + + + + + Sander Levin earmarked projects + 963 + + + + + Manistee Blacker airport + 963 + + + + + Marquette + 963 + + + + + Midland bus + 963 + + + + + Mid-Michigan Tri-County + 963 + + + + + Negaunee + 963 + + + + + Oakland County airport + 963 + + + + + Port Huron + + + + 7th Street Bridge + 963 + + + + + Blue Water Bridge + 963 + + + + + Blue Water Bridge plaza + 963 + + + + + Blue Water Bridge reprogramming + 963 + + + + + + Rose Township-Cogshall + 963 + + + + + Saginaw + 963 + + + + + Shiawassee transit + 963 + + + + + Smart bus + 963 + + + + + State requests + 963 + + + + + Statewide-small/miscellaneous + 963 + + + + + Traverse City + + + + Bay Area Transportation Authority (BATA) + 963 + + + + + Bay Area Transportation Authority (BATA) reprogramming + 963 + + + + + Reprogramming bypass comprehensive study + 963 + + + + + + Sault Ste. Marie-Local road West Portage area Diana + 963 + + + + + Wayne County-Intelligent Transportation Systems (ITS) + 963 + + + + + + FY2006 transportation project requests + 51 folders + 964 + + + + + FY2007 (A. Pascale) + + + + Alger County Airport expansion + 964 + + + + + Alma + 964 + + + + + Ann Arbor -- hybrid buses + 964 + + + + + Battle Creek bus replacement + 964 + + + + + Battle Creek -- W.K. Kellogg Airport + 964 + + + + + Bay Area Toll Authority (BATA) -- Traverse City + 964 + + + + + Beaver Island Ferry + 964 + + + + + Benton Harbor Airport + 964 + + + + + Benton Harbor Road + 964 + + + + + Bishop Airport + 964 + + + + + Bus solutions background + 964 + + + + + Busolutions -- Altair Engineering + 964 + + + + + Capital Area Transportation Authority (CATA) housing + 964 + + + + + Cherry Capitol Airport + 964 + + + + + Clinton Township bus facility + 964 + + + + + Croix street reconstruction + 964 + + + + + City of Detroit + 964 + + + + + Detroit Economic Growth + 964 + + + + + Detroit Metro Airport + 964 + + + + + Detroit Regional Transit Authority (DARTA) reprogramming + 2005-2006 + 964 + + + + + Detroit Riverfront Conservancy + 964 + + + + + Detroit Wayne County Port Authority + 2 folders + 964 + + + + + District 1 -- Alpena and Marquette + 965 + + + + + Drunk driving education + 965 + + + + + Flint transit + 965 + + + + + Flint transit -- Mass Transportation Authority (MTA) + 965 + + + + + Gateway Park + 965 + + + + + Grand Rapids Amtrak rail relocation + 965 + + + + + Grand Rapids -- The Rapid + 965 + + + + + Hanley Field Airport transfer language + 965 + + + + + Hoverston Ferryboat + 965 + + + + + Kalamazoo + 965 + + + + + Lansing Road project + 965 + + + + + Manistee County Airport + 965 + + + + + Marquette Road Commission + 965 + + + + + Michigan Department of Transportation (MDOT) + 965 + + + + + Michigan State University (MSU) center for pavement + preservation + 965 + + + + + Michigan Technical University deicing + 965 + + + + + Midland + 965 + + + + + Oakland County International Airport + 965 + + + + + Oakland County Road Commission + 965 + + + + + Port Huron NAFTA corridor congestion + 965 + + + + + Saginaw transit + 965 + + + + + Schoolcraft College + 965 + + + + + Small system + 965 + + + + + St. Joseph health + 965 + + + + + St. Joseph transportation + 965 + + + + + Taylor Road project + 965 + + + + + Traverse City BATA + 965 + + + + + Tuscola Airport + 965 + + + + + University of Detroit Mercy Law School parking + 965 + + + + + University of Michigan transportation research institute + 965 + + + + + Wayne County + 965 + + + + + Willow Run Aviation Heritage Museum + 965 + + + + + + FY2008 (A. Pascale) + + + + Appropriations Michigan + 4 folders + 965 + + + + + Arvin Meritor vehicle rollover prevention + 965 + + + + + + + Auto + + + + Auto manufacturing and Big 3 meeting with President, (A. + Pascale) + 2006 + 965 + + + + + Daimler Chrysler-BBDO advertising fraud + May-June 2004 + 965 + + + + + Detroit auto issues + 2008-2009 + 965 + + +

    (Carl's writing)

    +
    +
    + + + GM issues + 2006 + 965 + + +

    (Carl's writing; General Motors)

    +
    +
    + + + Minsor's application for OPIC assistance + 2004 + 966 + + +

    (Minsor Powertrain Systems LLC)

    +
    +
    +
    + + + Aviation (A. Pascale) + + + + Boeing competition, (Boeing Dreamliner manufacturing site + competition) + 2003 + 966 + + + + Boeing New Frontiers in Michigan, 7E7 Dreamliner + 2003 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2003-2008 (108th-110th Congress). Michigan Economic Development + Corporation's proposal of incentives for Boeing to choose Michigan as the site + of the 7E7 Dreamliner final assembly manufacturing facility.)

    +
    +
    +
    + + + Cherry Capitol airport air traffic control tower + 2008 + 966 + + + + + Detroit Metro Airport -- AIP money and noise abatement + 2003 + 966 + + + + + Essential Air Service + 2002-2003 + 966 + + + + + Federal Aviation Administration (FAA) + + + + Flyover rule regarding sport stadiums, (Homeland + security) + 2002-2003 + 966 + + + + + Reauthorization + 2007 + 966 + + + + + Reauthorization + 2008 + 966 + + + + + + Kalitta Air LLC cargo frequencies + 2003 + 966 + + + + + Northwest flight and attendants outsourcing + 2005 + 966 + + + + + Northwest immunity issue + 2007-2008 + 966 + + + + + Northwest Delta Shanghai air route to China + 2006-2009 + 966 + + + + + TSA issue -- families and cargo flights, (Syracuse-Hancock + International Airport security) + 2008 + 966 + + +
    + + + Borders and corridors -- S.1535 (D. Persky and A. Pascale) + 2003 + 966 + + + + + Transit bus thermal kits, (A. Pascale) + 2007 + 966 + + + + + Detroit River Tunnel partnership, (A. Pascale) + 2 folders + May 2002-May 2006 + 966 + + + + + Detroit-Windsor super truck tunnel, (A. Pascale) + January 2002-February 2004 + 966 + + + + + Ludington Car Ferry, (A. Pascale) + 2003 + 966 + + + + + Mackinaw icebreaker ship maritime museum + 2004-2006 + 966 + + + + + Mackinaw Ship to Charlevoix and Cheboygan, (A. Pascale) + 2005 + 966 + + + + + Maritime Administration (MARAD) reflagging, (A. Pascale) + 2004 + 966 + + + + + Motorcycle TEA-21, (A. Pascale) + July 2002-February 2003 + 966 + + + + + National Associations of Counties (NACO) legislative priorities, (A. + Pascale and D. Persky) + 2003 + 966 + + + + + Port of Detroit + + + + June 2004-November 2005 + 966 + + +

    (A. Pascale)

    +
    +
    + + + Cruise ship terminal, (A. Pascale) + April 2001-June 2004 + 966 + + +
    + + + Rail (A. Pascale) + + + + Amtrak -- higher speed rail investment + 2 folders + January 2001-July 2005 + 967 + + + + + Detroit intermodal freight terminal + 2002-2004 + 967 + + + + + Detroit metro downtown rail study authorization and earmark + May 2003-March 2004 + 967 + + + + + Grand Rapid rails + February 2002-October 2004 + 967 + + + + + Lansing-Detroit light rail + July 2001-March 2006 + 967 + + + + + + Stuyvesant loophole + 2002 + 967 + + + + + Swarthmore alumni reunion weekend pictures and files + 2006 + 967 + + +

    (Levin spoke at reunion and someone wrote to him regarding S. College Highway + signage and included pictures)

    +
    +
    +
    + + + Veterans + 2007-2007 + + + + Walter Reed Medical Center + March-April 2007 + 1016 + + +

    (Includes hearing on Veterans Disability Benefits Commission; Carl's writing)

    +
    +
    +
    + + + Audiovisual materials + + + + (2) Various Interviews June '04 - (Tape - 2004 D) + 1 videocassettes (VHS) + June 2004: 2004 May + 11 + 2004 May 11 + 2004 May 12 + 2004 May 20 + 2004 June 01 + 2004 June 04 + 2004 June 20 + 1061 + + + + + (A) WJR - Paul W. Re mutual fund bill; NPR - David Wellna Re Senate floor + Speech on George Tenet misleading Congress.; E.J. Dionne - Wash Post Re Iraq; Ed + Schultz Show; Mary Louise Kelly, NPR Re TTIC & CTC; (B) Mary Louise Kelly, + cont.; NYT - Eliza. Bumiller Re Rumsfeld, Iraqi prisoner abuse + 1 audiocassettes + 2004 February 10 + 2004 February 23 + 2004 April 01 + 2004 April 19 + 2004 April 27 + 2004 April 27 + 2004 May 06 + 1102 + + + + + (B) Ed Schultz - KF60 Fargo, ND. Re Iraq; Greg Miller - LA Times Re + connection b/t 9/11 & Iraq by the Admin. Matt Gerson KXArn-Am(?) Phoenix; (A) + Ken Guggenheim. AP David Firestone, NYT Helen Dewar. Wash Post Re Iraq & Pres + Bush's request for 87 billion; Mitch Albom Show. Re 9/11 anniv, Iraq - 87 billion + (B) 9/11 Mitch Albom Cont. + 1 audiocassettes + 2003 September 08 + 2003 September 11 + 2003 September 11 + 2003 September 17 + 2003 September 17 + 1102 + + + + + (B) Lisa Zagaroli, Det News re Army vehicle accidents/safety; Deb Price + Det News - Mich defense dollars; Det News Charlie Cain Re Dan Convention; Barb + Walters Kalamazoo Gazette Re Iraq; Ken Strukland NBC News re Intell Comm report; + I/V w/David Ensor of CNN for story on missile defense; Mike Cabbage. Orland + Sen[illegible] Re missile defense + 1 audiocassettes + 2004 April 06 + 2004 June 04 + 2005 July 07 + 2004 July 12 + 2004 July 12 + 2004 July 15 + 2004 July 22 + 1102 + + + + + (B) Paul W. Smith - end of interview; Dick Ryan Det News Re US military; + Rev Lonnie(?) Peek, WQBH-Am (Detroit) Re Oraq, 87 billion, job losses; (A) Warren + Olney, "To The Point" - NPR re Iraq intell questions; Mitch Albom Show Re Iraq + intell; Gene Schabath, Detroit News, Re Great Lakes Restoration bill; Paul + W.Smith, WJR Re 6th Circuit judges + 1 audiocassettes + 2003 July 14 + 2003 July 17 + 2003 September 22 + 1102 + + + + + [B] Katherine Scott, Gannett Re Post War Iraq; Craig Linder States News + Re McCarthy records; [A] Talk of the Nation - NPR Re Iraq; Steve Harmon, GR Press + re Criticism of Bush now that war is imminent; Tom Sulpot Washington cm(?) Profile + of Warner; Paul w Smith - WJR Re Fall of Baghdad Homeland Security urban grants, + radio Commercial re judges; WWJ-Am - Homeland Security grant + 1 audiocassettes + 2003 May 01 + 2003 May 05 + 2003 March 12 + 2003 March 19 + 2003 March 28 + 2003 April 10 + 2003 April 10 + 1102 + + + + + 60 mins I/V w/Ed Bradley Re: Pre-war Intel, Intel Report, 2 + 1 audiocassettes + 2004 August 18 + 1102 + + + + + 60 mins I/V w/Ed Bradley Re: Pre-war Intel, Intel-report, 1 + 1 audiocassettes + 2004 August 18 + 1102 + + + + + 60 Minutes Interview w/Ed Bradley Re: Pre-War Intelligence + 1 audiocassettes + 2004 April 27 + 1102 + + + + + ABC News - Sunday: Radioactive Sludge + 1 videocassettes (VHS) + 2004 June 13 + 1072 + + + + + America Personal Conversations with Dennis Wholey Sen. Carl Levin Show + #207 + 1 videocassettes (VHS) + airdate: 1993 June + 01 + 1089 + + + + + Carl Levin: Radio Tour. Re Hayden nom for CIA + 1 audiocassettes + 2006 May 19 + 1074 + + + + + Carl on Fox news re: Kerry election campaign + 1 videocassettes (VHS) + 2004 Fall + 1061 + + + + + Carl's 10,000th(?) Vote Senate Floor + 1 videocassettes (VHS) + 2006 May 16 + 1065 + + + + + Carl's Econ Club Speech and Q&A + 1 audiocassettes + 2004 April 05 + 1074 + + + + + CBS Early Show: Kids Kicking cancer + 1 videocassettes (VHS) + 2004 October 01 + 1061 + + + + + CBS Face the Nation Sen Carl Levin and Sen Pat Roberts Re + Iraq + 1 videocassettes (VHS) + 2003 October 19 + 1081 + + + + + Chan 7 WXYZ-TV UAW town Hall w/ Charles Gibson, ABC + 1 videocassettes (VHS) + 2007 January 30 + 1096 + + + + + Channel 8 News Coverage - Social Security Meeting in + Kalamazoo + 1 videocassettes (VHS) + 2005 May 02 + 1052 + + + + + CNN American Morning Sen. Levin interview 8:11 am Re: WMD, Intelligence + Issues + 1 videocassettes (VHS) + 2003 June 09 + 1078 + + + + + CNN Interview + 1 videocassettes (VHS) + 2004 September 30 + 1061 + + + + + CNN Late Ed Wolf Blitzer Tape 1 + 1 videocassettes (VHS) + 2003 March 09 + 1078 + + + + + CNN Late Ed Wolf Blitzer Tape 2 + 1 videocassettes (VHS) + 2003 March 09 + 1078 + + + + + CNN Late Edition - Carl Levin, Chuck Hagel + 1 videocassettes (VHS) + 2004 May 02 + 1072 + + + + + CNN Lou Dobbs, Re: Northern Border security; CNN American Morning Re: + Goss Nomination; Gov. Affairs hearing, Re: Former CIA Directors (Tape - 2004 + A) + 1 videocassettes (VHS) + 2004 July 16 + 2004 August 11 + 2004 August 16 + 1061 + + + + + Defense Breakfast + 1 audiocassettes + 2005 April 06 + 1102 + + + + + DUBS Inc. Arnold Shapiro Productions: "What's Right with America" CBS + Prime Time Special. Arnold Shapiro Productions 520 Broadway Ste. 220 Santa Monica, + CA 90401 (310)451-6270 + 1 videocassettes (VHS; 0:45:41) + air date: 4th of + July + 8:00 PM (PT/ET) + 7:00 PM + (Central) + 1064 + + + + + Durbin: Levin Opening Statement at Intelligence Hearing + 1 videocassettes (Betacam; 10:00 APRX) + 2006 May 18 + 1065 + + + + + Eric Schmit 862-0342 + 1 audiocassettes + 2004 May 14 + 1102 + + + + + Face The Nation - Carl Levin & John McCain + 1 videocassettes (VHS) + 2004 April 25 + 1072 + + + + + Fifth Estate "A few Bad Apples" [Abu Ghraib] VH-7 + 1 videocassettes (VHS) + 2005 November 16 + 1052 + + + + + Flashpoint + 1 videocassettes (VHS) + 2006 April 16 + 1065 + + + + + Flashpoint (Ch.4) - I/V re: Iraq, Pre War inspections + 1 videocassettes (VHS) + 2003 + 1078 + + + + + I/V w/AP Mary Dalrymple(?) - PSI + 1 audiocassettes (microcassettes) + 2006 July 25 + 1065 + + + + + I/V w/AP-Anne Plummer Flaherty(?) re Iraq, N Korea + 1 audiocassettes (microcassettes) + 2006 October 31 + 1065 + + + + + I/V w/David Cay Johnson of NYT re PSI report #1; CL I/V w/NYT re: PSI + reprt + 1 audiocassettes (microcassettes) + 2006 July 25 (/28?) + 2007 July 28 + 1065 + + + + + I/V w/Ed Zelenek re Iraq 87 billion; NBC Nightly News Re manufacturing + job loss; Greg Miller - LA Times Re Kay Report(?), CIA leak(?); (B) WUOM - Fm I/V + w/Todd [illegible] re Iraq; Mitch Albom Show re WMD, David Kay's + testimony + 1 audiocassettes + 2003 September 24 + 2003 September 30 + 2003 October 03 + 2003 November 06 + 2004 January 28 + 1102 + + + + + I/V w/George weeks Re: primary face + 1 audiocassettes + 2004 January 26 + 1102 + + + + + I/V w/Melissa Block of NPR for All Tihings Considered re pre-Iraq war + intelligence - Full, unedited version; Joe Klein - Time Re Iraq WMD, intell + questions; Quinn Klinefeller mich Public Radio Re Iraq trip; I/V w/WWJ (B) Re + Medicare + 1 audiocassettes + 2003 June 04 + 2003 June 26 + 2003 June 27 + 2003 November 25 + 1102 + + + + + I/V w/Steve (A) Harmon - GR Press re Bill Kooistra; Walter Pincu's(?) + Wash Post Re mtg @WH w/Bush re Intelligence re org; Bradley Graham Wash Post re + missile defense; Ed Schultz Show re Dvelfer(?) report; (B) Ed Schultz + Show + 1 audiocassettes + 2004 July 06 + 2004 Septemer 08 + 2004 September 10 + 2004 October 07 + 2004 October 07 + 1102 + + + + + I/V w/The Hill Re: SASC + 1 audiocassettes + 2003 September 12 + 1102 + + + + + Interviews March-April 2004 (Tape - 2004 C) + 1 videocassettes (VHS) + 2004 March 22 + 2004 April 01 + 2004 April 04 + 2004 April 08 + 2004 April 009 + 2004 April 12 + 2004 April 18 + 2004 April 25 + 2004 April 25 + 1061 + + + + + June-July 2003 TV Shows + 1 videocassettes (VHS) + 2003 June-July: 2002 + September 11 + 2003 March 17 + 2003 June 17 + 2003 July 03 + 2003 July 08 + 2003 July 09 + 2003 July 13 + 2003 July 27 + 1081 + + + + + Late Edition with Wolf Blitzer Sen. Lugar & Sen. Levin + 1 videocassettes (VHS) + 2006 August 27 + 1065 + + + + + Levin Floor Speech during Judicial nominee "30 hour" debate. Sec. Ridge + Press Conf. - Lower threat level. Tape 03-04 + 1 videocassettes (VHS) + 2003 September 13 + 2004 January 08 + 1053 + + + + + Levin Floor speech on Miquel Estrada; SASC hrg. On worldwide threats + (Levin - opening statements, full hrg.); SASC hrg with Sec. Rumsfeld and Gen. + Meyers. Tape A + 1 videocassettes (VHS) + 2003 February 10 + 2003 February 12 + 2003 February 13 + 1053 + + + + + Levin Media Interview + 1 audiocassettes + 2004 December: 2004 + December 08 + 2004 December 09 + 2004 December 27 + 1102 + + + + + Levin: 108TH Congress, Swearing in of Sen. Levin. SRS + 1 videocassettes (VHS; 0:02:00) + 2003 January 07 + 1078 + + + + + Levin: 3/20 CNN. Senate Resolution 95 - Commending Troops. Clip of Senate + floor w/Senators Levin & Warner, [illegible]. SRS 72322 + 1 videocassettes (VHS; 1:00:00) + 2003 March 20 + 1064 + + + + + Levin: ABC Nightline Town Meeting. Levin & McCain and Other + Panelists. SRS 71904 + 1 videocassettes (VHS; 1:30:00) + 2003 March 04 + 1078 + + + + + Levin: ABC This Week 11:30 AM-12:30 PM Re Iraq + 1 videocassettes (VHS; 1:00:00) + 2004 April 18 + 1061 + + + + + Levin: Armed Services Committee Hearing - Transition to Sovereignty in + Iraq: US Policy, Ongoing Military Operations, Status of US Armed Forces. + Witnesses: Wolfowitz, Richard Armitage, Gen. Richard Myers + 1 videocassettes (VHS; 2:30:00) + 2004 June 25 + 1061 + + + + + Levin: CBS - Face the Nation. Levin & Sen Lindsey Graham Re Iraqi + prisoner abuse scandal + 1 videocassettes (VHS; 0:20:00) + 2004 May 16 + 1061 + + + + + Levin: CBS & NBC Evening News Re Weapons of mass destruction - Iraq, + Intelligence questions + 1 videocassettes (VHS; 0:43:00) + 2003 June 10 + 1078 + + + + + Levin: CBS 7-7:30 AM. CBS Early Show Sen Levin & Sen Pat Roberts Re + Iraqi prisoner abuse + 1 videocassettes (VHS; 0:30:00) + 2004 May 07 + 1061 + + + + + Levin: CBS News. Re Gasoline prices. Strategic Petroleum + Reserve + 1 videocassettes (VHS; 0:30:00) + 2003 August 29 + 1081 + + + + + Levin: CNN - Late Edition (12:00 PM - 1:00 PM). Levin & Warner Re + Iraq. SRS + 1 videocassettes (VHS; 1:00:00) + 2003 March 09 + 1078 + + + + + Levin: CNN - Late Edition Sunday - Levin & Sen Chuck Hagel Re + Iraq + 1 videocassettes (VHS; 1:00:00) + 2004 January 19 + 1061 + + + + + Levin: CNN - Late Edition. Levin & Sen. Shelby. Re North Korea and + Iraq + 1 videocassettes (VHS; 1:00:00) + 2003 January 12 + 1078 + + + + + Levin: CNN - Moneyline 6:00 pm - 7:00 pm. Re State of the Union. + SRS + 1 videocassettes (VHS; 1:00:00) + 2003 January 28 + 1078 + + + + + Levin: CNN - Moneyline. Levin by himself Re: WMD intel. + 1 videocassettes (VHS; 1:00:00) + 2003 June 10 + 1078 + + + + + Levin: CNN (12-1PM). CNN Late Edition Re Iraq intelligence + 1 videocassettes (VHS; 1:00:00) + 2003 July 13 + 1078 + + + + + Levin: CNN (1-2PM). Late Edition w/Senators Levin & Warner. + SRS + 1 videocassettes (VHS; 1:00:00) + 2003 April 06 + 1078 + + + + + Levin: CNN 12-1:00 PM. Sen Carl Levin and Sen Arlen(?) Specter. Re David + Kay report on WMD in Iraq + 1 videocassettes (VHS; 1:00:00) + 2003 October 05 + 1081 + + + + + Levin: CNN 6/3/04 6-7:00 pm - Lou Dobbs; ABC 6/3/04 11:30-12:00 am - + Nightline. Re resignation of George Tenet as Director of CIA (Tape - 2004 + B) + 1 videocassettes (VHS; 60:00 & 35:00) + 2004 June 03 + 1061 + + + + + Levin: CNN 7/25/04 12-2:00 PM - Late Edition w/Sen Roberts Re 9/11 + Commission report + 1 videocassettes (VHS; 2:00:00) + 2004 July 25 + 1061 + + + + + Levin: CNN 7-8P - Anderson Cooper 360 - Taped I/V w/Carl Levin re Iraqi + prisoner abuse scandal + 1 videocassettes (VHS; 1:00:00) + 2004 May 12 + 1061 + + + + + Levin: CNN 8-8:30 AM CNN American Morning Levin - Re abuse of Iraqi + prisoners + 1 videocassettes (VHS; 0:30:00) + 2004 May 07 + 1072 + + + + + Levin: CNN 9/19/04 12-1:00 PM Late Edition - Sen Carl Levin & Sen + Lindsey Graham Re Iraq, Porter Goss nomination + 1 videocassettes (VHS; 1:00:00) + 2004 September 19 + 1061 + + + + + Levin: CNN American Morning (8-8:30AM). Re: Iraq, presidents request for + $81 billion + 1 videocassettes (VHS; 0:30:00) + 2003 September 09 + 1078 + + + + + Levin: CNN Inside Politics. Re: Iraq Intel. w/Judy Woodruff + 1 videocassettes (VHS; 0:30:00) + 2003 October 24 + 1081 + + + + + Levin: CNN Larry King Live. Levin and Warner Re: Iraq. Bush Speech to the + Country. SRS + 1 videocassettes (VHS; 1:00:00) + 2003 March 17 + 1078 + + + + + Levin: CNN Late Edition 10/26/03. w/Blitzer Re: Iraq, Intel., Rumsfeld + memo, N.Korea. Levin + Lugar + 1 videocassettes (VHS; 1:00:00) + 2003 October 26 + 2003 October 27 + 1078 + + + + + Levin: CNN Late Edition 12-1 PM- Levin & Lugar re + Fallujah + 1 videocassettes (VHS; 1:00:00) + 2004 November 14 + 1061 + + + + + Levin: CNN Late Edition 12-1:00 PM + Sen Pat Roberts Re Iraq + 1 videocassettes (VHS; 1:00:00) + 2004 April 04 + 1061 + + + + + Levin: CNN. CNN American Morning w/Paula Zahn Re No. Korea & Iraq. + SRS 50549 + 1 videocassettes (VHS; 15:00) + 2003 January 15 + 1078 + + + + + Levin: Downlink. Codel(?) Warner - Tikrit and Baghdad. Warner, Levin, + Bingaman, Salazar, Sessions, Thomas + 1 videocassettes (VHS) + 2006 March 21 - 2006 March 22 + 1065 + + + + + Levin: Face th Nation - Sen. Levin & Se. Pat Roberts Re Intelligence + reform + 1 videocassettes (VHS; 0:30:00) + 2004 August 20 + 1061 + + + + + Levin: Face The Nation. Levin and Sen Pat Roberts Re Iraq + intelligence + 1 videocassettes (VHS; 0:30:00) + 2003 July 27 + 1078 + + + + + Levin: Face The Nation. Re: Middle East, Iraq, WMD Intel. w/Sen. + Roberts + 1 videocassettes (VHS; 0:30:00) + 2003 June 15 + 1078 + + + + + Levin: Floor Statement + 1 videocassettes (Betacam; 18:30) + 2003 November 23 + 1068 + + + + + Levin: Floor Statement Re Iraq. SRS 72253 + 1 videocassettes (VHS; 13:00) + 2003 March 17 + 1078 + + + + + Levin: Fox [text crossed out] News. Sunday. Carl Levin Re Intell Comm + Memo, Iraq + 1 videocassettes (VHS; 1:00:00) + 2003 November 09 + 1081 + + + + + Levin: Fox Morning News. Fox News Sunday - Levin alone Re Iraqi prisoner + abuse scandal + 1 videocassettes (VHS; 1:00:00) + 2004 May 16 + 1061 + + + + + Levin: Fox News Sunday 9-10:00 AM + 1 videocassettes (VHS; 1:00:00) + 2005 January 02 + 1052 + + + + + Levin: Fox Sunday Ch.18 9:00 AM - 10:00 AM. Fox News Sunday. Interviewed + by Tony Snow and Brit Hume. Re Iraq. SRS + 1 videocassettes (VHS; 1:00:00) + 2003 February 09 + 1078 + + + + + Levin: Fox Sunday Morning Re: Iraq w/Tony Snow + 1 videocassettes (VHS; 1:00:00) + 2003 September 07 + 1078 + + + + + Levin: Governmental Affairs - PSI hearing - Riggs Bank. Money Laundering + and Foreign Corruption: Enforcement & Effectiveness of Patriot Act + 1 videocassettes (VHS; 4:20:00) + 2004 July 15 + 1061 + + + + + Levin: Governmental Affairs Committee Hearing @ 9:00 AM. PSI Subcommittee + hrg. US Tax Shelter Industry: The Role of Accountants, Lawyers, and Financial + Professionals. Day 1 + 1 videocassettes (VHS; 4:10:00) + 2003 November 18 + 1053 + + + + + Levin: Governmental Affairs. PSI Hearing. PSI Subcomm hrg, US Tax Shelter + Industry: The Role of Accountants, Lawyers and Financial Professionals. Day + 2 + 1 videocassettes (VHS; 4:10:00) + 2003 November 20 + 1081 + + + + + Levin: Inside Politics. Re: Iraq. SRS + 1 videocassettes (VHS; 1:00:00) + 2003 February 14 + 1078 + + + + + Levin: Late Edition - Levin-Warner Re Independent Commission. Rx to Bush + on Meet the Press + 1 videocassettes (VHS; 1:00:00) + 2004 February 08 + 1061 + + + + + Levin: Late Edition (1st Hour) + 1 videocassettes (VHS; 1:00:00) + 2005 June 26 + 1052 + + + + + Levin: Late Edition 12-1 PM - Levin & Sen Chuck Hagel Re + Iraq + 1 videocassettes (VHS; 1:00:00) + 2004 May 02 + 1061 + + + + + Levin: Late Edition. SRS 72808 + 1 videocassettes (VHS; 1:00:00) + 2003 April 28 + 1078 + + + + + Levin: Lehrer News Hour - Levin & Sen Jeff Sessions Re - Abuse of + Iraqi prisoners + 1 videocassettes (VHS; 1:00:00) + 2004 May 04 + 1061 + + + + + Levin: Lehrer Newshour - Levin & Sen John Warner Re Iraqi prisoner + abuse + 1 videocassettes (VHS; 0:53:00) + 2004 May 07 + 1061 + + + + + Levin: Live Satelite Interview. WXYZ-TV Detroit WOOD-TV Grand Rapids. Re + Powell's presentation to UN on Iraq. SRS + 1 videocassettes (VHS) + 2003 February 05 + 1078 + + + + + Levin: Live Satellite Interview with WNEM-TV Saginaw Re Iraq + 1 videocassettes (VHS; 8:00) + 2003 February 06 + 1078 + + + + + Levin: Lou Dobbs Moneyline. Levin - one on one interview Re + Iraq. + 1 videocassettes (VHS; 1:00:00) + 2003 July 08 + 1081 + + + + + Levin: Lou Dobbs Re North Korea; Sandy Levin - Re CAFTA + 1 videocassettes (VHS; 1:00:00) + 2005 May 03 + 1052 + + + + + Levin: Lou Dobbs Report I/V w/Kitty Pilgrim. Re WMD, need for independent + Commission + 1 videocassettes (VHS; 1:00:00) + 2004 January 29 + 1061 + + + + + Levin: McCarthy Seg from NBC News. SRS + 1 videocassettes (VHS; 0:03:00) + 2003 May 06 + 1078 + + + + + Levin: Meet The Press - Sunday. Levin by himself. Re Pre-War intelligence + on Iraq's weapons of mass destruction + 1 videocassettes (VHS; 1:00:00) + 2003 June 08 + 1078 + + + + + Levin: Meet the Press. Levin and Warner Re Trip to Iraq, + intell. + 1 videocassettes (VHS; 1:00:00) + 2003 July 06 + 1081 + + + + + Levin: NBC - Meet The Press + 1 videocassettes (VHS; 1:00:00) + 2004 December 19 + 1072 + + + + + Levin: NBC 10:30-1130 AM - Meet the Press. Re Abuse of Iraqi prisoners. + Sen Levin, Senators John Warner, Lindsey Graham & Gen. Wesley + Clark + 1 videocassettes (VHS; 1:00:00) + 2004 May 09 + 1061 + + + + + Levin: NBC News Re: Iraq. SRS + 1 videocassettes (VHS; 0:30:00) + 2003 February 14 + 1078 + + + + + Levin: NBC Nightly News - Preview of SASC hrg w/David Kay re + WMD + 1 videocassettes (VHS; 22:00) + 2004 January 27 + 1061 + + + + + Levin: Newshour. Levin and Sen. Richard Lugar Re Iraq. SRS + 1 videocassettes (VHS; 1:00:00) + 2003 February 05 + 1078 + + + + + Levin: PBS News Hour + 1 videocassettes (VHS; 0:50:00) + 2004 September 14 + 1061 + + + + + Levin: PBS News Hour + 1 videocassettes (VHS; 1:00:00) + 2003 June 16 + 1078 + + + + + Levin: PBS-News Hour - Levin-McCain. Re WMD, SASC hrg w/David Kay, need + for independent Commission + 1 videocassettes (VHS; 1:00:00) + 2004 January 28 + 1061 + + + + + Levin: Press Conference. Levin-Collins Press Conference on Release of + McCarthy closed hrgs from 1953-1954. SRS + 1 videocassettes (VHS; 0:31:00) + 2003 May 06 + 1078 + + + + + Levin: Radio Tour. Re Big 3 + 1 audiocassettes + 2008 December 05 + 1074 + + + + + Levin: Studio DVC - Video Conference with 4 High Schools in Macomb + County + 1 videocassettes (VHS; 0:41:00) + 2004 May 17 + 1061 + + + + + Levin: This Week - ABC This Week w/Sen Chuck Hagel Re North + Korea + 1 videocassettes (VHS; 1:00:00) + 2005 May 08 + 1052 + + + + + Levin: This Week - Levin, Rockefeller, Hagel, McConnell Re Intell reform + bill, Iraq + 1 videocassettes (VHS; 1:00:00) + 2004 November 21 + 1061 + + + + + Levin: Tikrit Downlink. Feed 3/23/06 + 1 videocassettes (Betacam; 8:12) + 2006 March 23 + 1065 + + + + + Levin: Video Conference - Plymouth High School + 1 videocassettes (VHS; 45:00:00) + 2004 January 30 + 1061 + + + + + Lisa Zagaroli, Detroit News Re Iraq - unintended Consequences; Eric + Schmitt, NYT Re Shinseki estimate of several hundred thousand troops in Post-war + Iraq; John Hendren, LA Times (same as NYT) + 1 audiocassettes + 2003 February 25 + 1102 + + + + + Mitch Albom Show - WJR; (B) Mitch Albom cont. Jeanne Cumming(?) WSJ, Re + Inquiry into intell & WMD.; Jim Risen, NYT Re WMD; (A) I/V w/Melissa Block of + NPR for All Things Considered re pre war Iraq intelligence Edited Version That + aired on NPR; I/V w/Ken Guggenheim of AP re intell issues - investigation; Don + Chiodo - Mich Talk Radio Network - same issue + 1 audiocassettes + 2003 June 12 + 2003 June 12 + 2003 June 16 + 2003 June 04 + 2003 June 09 + 2003 June 12 + 1102 + + + + + Mitch Albom Show Re Powell Presentation to UN; Satellite I/V with + WOOD-TV, WXYZ-TV; David Firestone, NYT Re France - Germany opposing US on Iraq. UN + Security Council + 1 audiocassettes + 2003 February 05 + 2003 February 12 + 1102 + + + + + Mitch Albom Show WJR (B) SASC hrg w/Rumsfeld; Michael Leland WUOM-Fm Ann + Arbor Re SASC hrg w/Rumsfeld (end of side A & begin side B); Eric Schmidt, NYT + Re SASC hrg w/Wolfowitz & Gen Pace; Air America, Re: Iraqi prisoner abuse; Ron + Dzwonkawski Free Press editor Iraqi prisoner abuse, Rumsfeld; Ruby Bailey - Free + Press Iraqi prisoner abuse, Rumsfeld; Lisa Zagaroli, Det News. Ken Guggenheim, + AP + 1 audiocassettes + 2004 May 07 + 2004 May 07 + 2004 May 13 + 2004 May 04 + 2004 May 06 + 2004 May 06 + 2004 May 06 + 2004 May 06 + 1102 + + + + + National Association of Broadcasters + 1 audiocassettes + 1987 June + 1074 + + + + + Newshour re: Duelfer report + 1 videocassettes (VHS) + 2004 October 07 + 1072 + + + + + NYT David Cay Johnson #2; Pan(?)/Douglas Ethics in Govt Award + Ceremony + 1 audiocassettes (microcassettes) + 2006 September 26 + 2006 July 28 + 1065 + + + + + NYT re WMD + 1 audiocassettes + 2003 February 26 + 1102 + + + + + Oil For food/Kofi Annan + 1 audiocassettes + 2004 December 01 - 2004 + December 06: 2004 December 01 + 2004 December 02 + 2004 December 02 + 2004 December 06 + 1102 + + + + + PBS Frontline "Rumsfeld's War" + 1 videocassettes (VHS) + 2004 October 26 + 1072 + + + + + PBS Frontline Re: Tax Shelters + 1 videocassettes (VHS) + 2004 February 19 + 1061 + + + + + Phone interviews + 1 audiocassettes + 2006 June 30 + 1102 + + + + + Press Conf on Corporate Inversions(?); Talking to reporters re: Iraq; NYT + & AP re: nuke provisions in SASC markup + 1 audiocassettes + 2003 February 12 + 2003 May 09 + 1102 + + + + + Press Conf. on CIA Intel. + 1 audiocassettes + 2003 June 16 + 1094 + + + + + Press Conference - Detroit Re trip to Iraq + 1 audiocassettes + 2003 July 07 + 1102 + + + + + Press Interviews(?) 1/25/05 - 4/21/05 + 1 audiocassettes + 2005 January 25 - 2005 + April 21: 2005 January 25 + 2005 April 15 + 2005 April 21 + 1102 + + + + + Private Sector Council Dinner + 1 videocassettes (VHS) + 2004 May 05 + 1072 + + + + + PSI press Conference on SPR report + 1 audiocassettes + 2003 March 05 + 1094 + + + + + Radio Tour Re Intell Reform Bill + 1 audiocassettes + 2004 October 06 + 1102 + + + + + Radio Tour. Re Credit Counseling Industry + 1 audiocassettes + 2004 March 25 + 1102 + + + + + Radio Tour. Re Iraq, No. Kores (Judges ad) + 1 audiocassettes + 2003 April 30 + 1094 + + + + + Rep. Sander M. Levin w/Sen. Carl Levin Statement VR#8 + 1 videocassettes (VHS; 8:14) + 2003 June 09 + 1078 + + + + + Rick Albin, WOOD-TV (Cont) Re SOTU, Iraq, Social Security Daphne Retter + CQ Re Resolution right after 9/11/2001; Barrie Barber Saginaw News Re Social + Security; Steve Harmon, GR Press re Bill Kooistra; WWJ - LIVE I/V w/Greg Bowman Re + increasing death benefit for military members; Ed Schultz Show - LIVE I/V re + increasing death benefit; Eric Lipton, NYT Re nom(?) hrg for Chertoff to be Scy of + Homeland Security; Rick Albin WOOD-TV Re SOTU, Iraq, Social Security + 1 audiocassettes + 2005 March 03 + 2005 March 07 + 2004 December 01 + 2005 February 01 + 2005 February 01 + 2005 February 02 + 2005 February 03 + 1102 + + + + + Ruby Baily - Free Press Re: Pete Hoekstra + Challenges Intel. faces; + Katherile(?) Scott - [illegible] News Re: Role(?) on 9/11 legislation; Barb + Walters - Kalamazoo Re: Iraq elections Gazette; Mitch Album Re: debate w/Mike + Rogers + 1 audiocassettes + 2004 September 09 + 2004 September 26 + 2004 September 26 + 2004 October 01 + 1102 + + + + + Sen Carl Levin - Democratic Radio Address. Re Iraq + 1 audiocassettes + 2003 July 18 + 1102 + + + + + Sen Carl Levin Bloomberg TV + 1 videocassettes (VHS) + 2005 December 07 + 1052 + + + + + Sen. Carl Levin - Press Conf. + 1 videocassettes (Betacam; 30:31:00) + 2003 May 05 + 1086 + + + + + Sen. Carl Levin's Speech at The Democratic National + Convention + 1 videocassettes (VHS) + 2004 July 29 + 1061 + + + + + Sen. Levin Radio Tour. Re Econ Stimulus plan, Iraq, No. Korea + 1 audiocassettes + 2003 January 10 + 1094 + + + + + Sen. Levin Radio Tour. Re Economy, tax cuts + 1 audiocassettes + 2003 May 07 + 1094 + + + + + Sen. Levin Radio Tour. Re intell issues & Iraq's WMD + 1 audiocassettes + 2003 June 11 + 1094 + + + + + Sen. Levin Radio Tour. Re intelligence issues, pres. drug + bill + 1 audiocassettes + 2003 June 18 + 1094 + + + + + Sen. Levin Radio Tour. Re tax cut pkg, highway bill + 1 audiocassettes + 2003 May 22 / 2003 May + 21 + 1094 + + + + + Sen. Levin: Interlochen Public Radio "Island Cabin Discs" + 1 audiocassettes + 2006 March 10 + 1074 + + + + + Sen. Levin: OS & Q/A @ Govt. Affairs Committee Hearing + 1 videocassettes (Betacam; 0:24:00) + 2006 March 30 + 1065 + + + + + Sen. Levin: Q&A @ Homeland/Govt Affairs Hearing + 1 videocassettes (Betacam; 10:00) + 2006 March 01 + 1065 + + + + + Sen. Levin: Radio Tour. American manufacturing Initiative + 1 audiocassettes + 2007 May 22 + 1074 + + + + + Sen. Levin: Radio Tour. Bipartisan Senate resolution on Iraq + 1 audiocassettes + 2007 January 19 + 1074 + + + + + Sen. Levin: Radio Tour. Buprenorphine + 1 audiocassettes + 2005 July 20 + 1102 + + + + + Sen. Levin: Radio Tour. Bush Speech on Iraq + 1 audiocassettes + 2005 June 29 + 1102 + + + + + Sen. Levin: Radio Tour. Bush Speech on troop Surge in Iraq + 1 audiocassettes + 2007 January 10 + 1074 + + + + + Sen. Levin: Radio Tour. Card Act Credit Card Accountability Resp. + Act + 1 audiocassettes + 2008 April 30 + 1074 + + + + + Sen. Levin: Radio Tour. Civilian contractor tax cheats + 1 audiocassettes + 2005 June 16/2005 June + 15 + 1102 + + + + + Sen. Levin: Radio Tour. CL visits to Saginaw-Auburn Hills + 1 audiocassettes + 2007 February 16 + 1074 + + + + + Sen. Levin: Radio Tour. Cong. Gold Medal for Tuskegee Airmen + 1 audiocassettes + 2007 March 28 + 1074 + + + + + Sen. Levin: Radio Tour. Credit Card bill + 1 audiocassettes + 2007 May 16 + 1074 + + + + + Sen. Levin: Radio Tour. Credit Cards + 1 audiocassettes + 2008 April 17 + 1074 + + + + + Sen. Levin: Radio Tour. DoD IG Tanker Accountability Report + 1 audiocassettes + 2005 June 08 + 1102 + + + + + Sen. Levin: Radio Tour. Economic Stimulus Package + 1 audiocassettes + 2008 February 07 + 1074 + + + + + Sen. Levin: Radio Tour. Economic Stimulus Package + 1 audiocassettes + 2008 January 25 + 1074 + + + + + Sen. Levin: Radio Tour. Energy Market Oversight Amend + 1 audiocassettes + 2003 November 05 + 1102 + + + + + Sen. Levin: Radio Tour. EPW hearing on global warming + 1 audiocassettes + 2007 January 31 + 1074 + + + + + Sen. Levin: Radio Tour. Estate tax; Iraq + 1 audiocassettes + 2006 June 09 + 1074 + + + + + Sen. Levin: Radio Tour. Ethanol tour + 1 audiocassettes + 2006 July 12 + 1074 + + + + + Sen. Levin: Radio Tour. Fair Pay Act + 1 audiocassettes + 2008 April 25 + 1074 + + + + + Sen. Levin: Radio Tour. FY 2006 Defense budget + 1 audiocassettes + 2005 February 18 + 1102 + + + + + Sen. Levin: Radio Tour. Gas Prices + 1 audiocassettes + 2008 May 08 + 1074 + + + + + Sen. Levin: Radio Tour. Gas Prices; NPR interview re Mich + delegates + 1 audiocassettes + 2008 May 21 + 1074 + + + + + Sen. Levin: Radio Tour. Gun liability bill + 1 audiocassettes + 2005 July 28 / 2005 July + 27 + 1102 + + + + + Sen. Levin: Radio Tour. Intell reform, Iraq + 1 audiocassettes + 2004 September 23 + 1102 + + + + + Sen. Levin: Radio Tour. Internet Pharmacies + 1 audiocassettes + 2004 June 23 + 1102 + + + + + Sen. Levin: Radio Tour. Iraq - Start of military operations + 1 audiocassettes + 2003 March 20 + 1094 + + + + + Sen. Levin: Radio Tour. Iraq Study Group; Gates nomination + 1 audiocassettes + 2006 December 06 + 1074 + + + + + Sen. Levin: Radio Tour. Iraq; Port security: worldwide + threats + 1 audiocassettes + 2006 March 01 + 1074 + + + + + Sen. Levin: Radio Tour. Judicial nominations Compromise + 1 audiocassettes + 2005 May 25 + 1102 + + + + + Sen. Levin: Radio Tour. Levin-Reed amendment on Iraq + 1 audiocassettes + 2006 June 23 + 1074 + + + + + Sen. Levin: Radio Tour. Lobbying + 1 audiocassettes + 2006 March 08 + 1074 + + + + + Sen. Levin: Radio Tour. Lobbying reform, Medicare Part D, + Alito + 1 audiocassettes + 2006 January 26 + 2002 January 25 + 1074 + + + + + Sen. Levin: Radio Tour. Manufacruting job loss; Bush UN + Speech + 1 audiocassettes + 2003 September 24 + 2003 September 23 + 1102 + + + + + Sen. Levin: Radio Tour. Medicare doctors w/unpaid taxes + 1 audiocassettes + 2007 May 09 + 1074 + + + + + Sen. Levin: Radio Tour. Mich Citizens for Stem Cell Research + 1 audiocassettes + 2006 September 20 + 1074 + + + + + Sen. Levin: Radio Tour. Mortgage Foreclosure bill + 1 audiocassettes + 2008 April 02 + 1074 + + + + + Sen. Levin: Radio Tour. Mortgage Foreclosure Bill + 1 audiocassettes + 2008 February 29 + 1074 + + + + + Sen. Levin: Radio Tour. Mutual Fund Reform Act + 1 audiocassettes + 2004 March 31 + 1102 + + + + + Sen. Levin: Radio Tour. Phase II intell investigation + 1 audiocassettes + 2005 November 18 + 1102 + + + + + Sen. Levin: Radio Tour. Porter Goss nom. to be DCI + 1 audiocassettes + 2004 September 15 + 1102 + + + + + Sen. Levin: Radio Tour. Powell's presentation to UN about + Iraq + 1 audiocassettes + 2003 February 06 + 1094 + + + + + Sen. Levin: Radio Tour. Pre War intelligence + 1 audiocassettes + 2005 November 10 + 1102 + + + + + Sen. Levin: Radio Tour. President's Budget Medicare Part D + 1 audiocassettes + 2006 February 08 + 1074 + + + + + Sen. Levin: Radio Tour. President's Budget Request + 1 audiocassettes + 2007 February 07 + 1074 + + + + + Sen. Levin: Radio Tour. PSI hearing on Credit Cards + 1 audiocassettes + 2007 March 09 + 1074 + + + + + Sen. Levin: Radio Tour. PSI Oil for Food hearing + 1 audiocassettes + 2005 May 18 + 1102 + + + + + Sen. Levin: Radio Tour. Re $87 bil. request for Iraq + 1 audiocassettes + 2003 October 01 + 1102 + + + + + Sen. Levin: Radio Tour. Re $87 bil. request for Iraq + 1 audiocassettes + 2003 October 16 + 1102 + + + + + Sen. Levin: Radio Tour. Re 15th Anniv of Keweenaw Natl Historical + Park + 1 audiocassettes + 2007 October 26 + 1074 + + + + + Sen. Levin: Radio Tour. Re Abuse of Iraqi Prisoners + 1 audiocassettes + 2004 May 06 + 1102 + + + + + Sen. Levin: Radio Tour. Re Abuse of Iraqi Prisoners + 1 audiocassettes + 2004 May 12 + 1102 + + + + + Sen. Levin: Radio Tour. Re Big 3 auto mtg w/Bush, Iraq + 1 audiocassettes + 2006 November 15 + 1074 + + + + + Sen. Levin: Radio Tour. Re BRAC Process + 1 audiocassettes + 2005 May 11 + 1102 + + + + + Sen. Levin: Radio Tour. Re Bush press conference on Iraq + 1 audiocassettes + 2003 March 07 + 1094 + + + + + Sen. Levin: Radio Tour. Re CAFE + 1 audiocassettes + 2007 June 13 + 1074 + + + + + Sen. Levin: Radio Tour. Re CHIP + 1 audiocassettes + 2007 October 31 + 1074 + + + + + Sen. Levin: Radio Tour. Re CHIP - House vote on override(?) + 1 audiocassettes + 2007 October 17 + 1074 + + + + + Sen. Levin: Radio Tour. Re CHIP Childrens Health Ins. Progr. + 1 audiocassettes + 2007 July 27 + 1074 + + + + + Sen. Levin: Radio Tour. Re CHIP Children's Health Ins. + Program + 1 audiocassettes + 2007 August 01 + 1074 + + + + + Sen. Levin: Radio Tour. Re CODEL to Pakistan, Afghan, Iraq + 1 audiocassettes + 2006 March 29 + 1074 + + + + + Sen. Levin: Radio Tour. Re Credit Card Practices - PSI hrg + 1 audiocassettes + 2007 December 07 + 1074 + + + + + Sen. Levin: Radio Tour. Re Credit Card Practices - PSI hrg + 1 audiocassettes + 2007 December 13 + 1074 + + + + + Sen. Levin: Radio Tour. Re Detroit Economic Club Speech + 1 audiocassettes + 2006 May 05 + 1074 + + + + + Sen. Levin: Radio Tour. Re Econ stimulus plan, No. Korea, + Iraq + 1 audiocassettes + 2003 January 15 + 1094 + + + + + Sen. Levin: Radio Tour. Re executive stock options + 1 audiocassettes + 2007 June 06 + 1074 + + + + + Sen. Levin: Radio Tour. Re GAO report on missile defense + 1 audiocassettes + 2004 April 28 + 1102 + + + + + Sen. Levin: Radio Tour. Re Gas Prices + 1 audiocassettes + 2006 May 10 + 1074 + + + + + Sen. Levin: Radio Tour. Re Gas Prices + 1 audiocassettes + 2006 May 26 + 1074 + + + + + Sen. Levin: Radio Tour. Re Gas Prices/WWJ - Michigan delegation + Seniority + 1 audiocassettes + 2008 May 14 + 1074 + + + + + Sen. Levin: Radio Tour. Re Gun industry immunity bill + 1 audiocassettes + 2004 March 04 + 1102 + + + + + Sen. Levin: Radio Tour. Re Highway bill + 1 audiocassettes + 2005 April 20 + 1102 + + + + + Sen. Levin: Radio Tour. Re Highway bill + 1 audiocassettes + 2005 April 27 + 1102 + + + + + Sen. Levin: Radio Tour. Re Hurricane Katrina + 1 audiocassettes + 2005 September 21 + 1102 + + + + + Sen. Levin: Radio Tour. Re Hurricane Katrina, gas prices + 1 audiocassettes + 2005 September 08 + 1102 + + + + + Sen. Levin: Radio Tour. Re indep. Comm. on detainee abuse + 1 audiocassettes + 2005 October 19 + 1102 + + + + + Sen. Levin: Radio Tour. Re intell questions, Saddam's sons + 1 audiocassettes + 2003 July 23 + 1102 + + + + + Sen. Levin: Radio Tour. Re Intell Reform Bill + 1 audiocassettes + 2004 December 08 + 1102 + + + + + Sen. Levin: Radio Tour. Re Iraq + 1 audiocassettes + 2003 April 09 + 1094 + + + + + Sen. Levin: Radio Tour. Re Iraq + 1 audiocassettes + 2003 March 12 + 1094 + + + + + Sen. Levin: Radio Tour. Re Iraq + 1 audiocassettes + 2003 September 10 + 1102 + + + + + Sen. Levin: Radio Tour. Re Iraq + 1 audiocassettes + 2004 April 07/2004 April + 06 + 1102 + + + + + Sen. Levin: Radio Tour. Re Iraq + 1 audiocassettes + 2004 April 22 + 1102 + + + + + Sen. Levin: Radio Tour. Re Iraq + 1 audiocassettes + 2005 April 07 + 1102 + + + + + Sen. Levin: Radio Tour. Re Iraq + 1 audiocassettes + 2005 September 14 + 1102 + + + + + Sen. Levin: Radio Tour. Re Iraq debate on Senat floor + 1 audiocassettes + 2007 July 20 + 1074 + + + + + Sen. Levin: Radio Tour. Re Iraq debate on Senate floor + 1 audiocassettes + 2007 July 13 + 1074 + + + + + Sen. Levin: Radio Tour. Re IRaq intelligence + 1 audiocassettes + 2003 July 30 + 1102 + + + + + Sen. Levin: Radio Tour. Re Iraq intelligence questions + 1 audiocassettes + 2003 July 16 + 1102 + + + + + Sen. Levin: Radio Tour. Re Iraq proposal; gas prices + 1 audiocassettes + 2006 April 26 + 1074 + + + + + Sen. Levin: Radio Tour. Re Iraq, Canadian waste legis. + 1 audiocassettes + 2003 January 23 + 1094 + + + + + Sen. Levin: Radio Tour. Re Iraq, Osama bin Laden + 1 audiocassettes + 2003 February 12 + 1094 + + + + + Sen. Levin: Radio Tour. Re Iraq; manufacturing job loss + 1 audiocassettes + 2003 September 05 + 1102 + + + + + Sen. Levin: Radio Tour. Re Iraqi Prisoner abuse + 1 audiocassettes + 2004 May 20 + 2004 May 19 + 1102 + + + + + Sen. Levin: Radio Tour. Re Katrina investigation; Medicare Part + 1 + 1 audiocassettes + 2006 February 15 + 1074 + + + + + Sen. Levin: Radio Tour. Re missile defense amendment + 1 audiocassettes + 2004 June 03 + 1102 + + + + + Sen. Levin: Radio Tour. Re mutual Fund Reform Bill + 1 audiocassettes + 2004 February 12 + 1102 + + + + + Sen. Levin: Radio Tour. Re Oil for Food Program + 1 audiocassettes + 2004 November 17 + 1102 + + + + + Sen. Levin: Radio Tour. Re Pistons NBA victory; terrorism finance (GAC + hrg on) + 1 audiocassettes + 2004 June 16 + 1102 + + + + + Sen. Levin: Radio Tour. Re Rosa Parks. loss of 2000 Soldiers in Iraq, + Cong Dingell's 50th House anniversary + 1 audiocassettes + 2005 October 27 + 1102 + + + + + Sen. Levin: Radio Tour. Re SASC hrg on Iraq + 1 audiocassettes + 2005 September 30 + 1102 + + + + + Sen. Levin: Radio Tour. Re SASC hrg w/ Gen Petraeus & Amb. + Crocker + 1 audiocassettes + 2007 September 12 + 1074 + + + + + Sen. Levin: Radio Tour. Re SASC hrg w/Tenet re prewar intell + 1 audiocassettes + 2004 March 10 + 1102 + + + + + Sen. Levin: Radio Tour. Re SASC hrg w/veterans Affairs Comm + 1 audiocassettes + 2007 April 13 + 1074 + + + + + Sen. Levin: Radio Tour. Re SCHIP & Pres. Veto + 1 audiocassettes + 2007 October 04 + 2007 October 03 + 1074 + + + + + Sen. Levin: Radio Tour. Re Senate Floor Speech on DCI Tenet + 1 audiocassettes + 2004 February 25 + 1102 + + + + + Sen. Levin: Radio Tour. Re SOTU + 1 audiocassettes + 2004 January 21 + 1102 + + + + + Sen. Levin: Radio Tour. Re SOTU, Social Security, Iraq + 1 audiocassettes + 2005 February 04 + 1102 + + + + + Sen. Levin: Radio Tour. Re Standing With our Troops Act + 1 audiocassettes + 2005 January 26 + 1102 + + + + + Sen. Levin: Radio Tour. Re State of The Union + 1 audiocassettes + 2003 January 29 + 1094 + + + + + Sen. Levin: Radio Tour. Re Stem Cell research + 1 audiocassettes + 2007 April 25 + 1074 + + + + + Sen. Levin: Radio Tour. Re Stop Tax Haven Abuse Act + 1 audiocassettes + 2007 April 18 + 1074 + + + + + Sen. Levin: Radio Tour. Re Tax Shelters + 1 audiocassettes + 2003 October 22 + 1102 + + + + + Sen. Levin: Radio Tour. Re Thunder Bay National Marine + Sanctuary + 1 audiocassettes + 2007 November 08 + 1074 + + + + + Sen. Levin: Radio Tour. Re trip to Iraq. Judges + 1 audiocassettes + 2003 July 10 + 1102 + + + + + Sen. Levin: Radio Tour. Re Trip to Mid East & Central Asia; + Iraq + 1 audiocassettes + 2003 February 27 + 1094 + + + + + Sen. Levin: Radio Tour. Re WMD, David Kay's testimony + 1 audiocassettes + 2004 January 28 + 1102 + + + + + Sen. Levin: Radio Tour. Re: 9/11 Commission Report + 1 audiocassettes + 2004 July 21/2004 July + 23 + 1102 + + + + + Sen. Levin: Radio Tour. Re: Canadian Trash + 1 audiocassettes + 2006 April 06 + 1074 + + + + + Sen. Levin: Radio Tour. Re: Intell Comm Phase II report + 1 audiocassettes + 2006 September 13 + 1074 + + + + + Sen. Levin: Radio Tour. Re: Iraq + 1 audiocassettes + 2003 October 30 + 2003 October 20 + 1102 + + + + + Sen. Levin: Radio Tour. Re: Iraq + 1 audiocassettes + 2005 December 14 + 1102 + + + + + Sen. Levin: Radio Tour. Re: PSI hearing on Money Laundering, + Riggs + 1 audiocassettes + 2004 July 16 + 1102 + + + + + Sen. Levin: Radio Tour. Re: War in Iraq + 1 audiocassettes + 2003 March 26 + 1094 + + + + + Sen. Levin: Radio Tour. Riggs Bank Report - PSI + 1 audiocassettes + 2005 March 16 + 1102 + + + + + Sen. Levin: Radio Tour. SASC Hearings on Iraq + 1 audiocassettes + 2008 April 10 + 1074 + + + + + Sen. Levin: Radio Tour. SASC hrg w/Rumsfeld & Myers + 1 audiocassettes + 2005 June 24 + 1102 + + + + + Sen. Levin: Radio Tour. Social Security + 1 audiocassettes + 2005 March 02 + 1102 + + + + + Sen. Levin: Radio Tour. Social Security + 1 audiocassettes + 2005 March 09 + 1102 + + + + + Sen. Levin: Radio Tour. Social Security, budget + 1 audiocassettes + 2005 February 09 + 1102 + + + + + Sen. Levin: Radio Tour. SOTU + 1 audiocassettes + 2006 February 01 + 1074 + + + + + Sen. Levin: Radio Tour. State of the Union + 1 audiocassettes + 2008 January 29 + 1074 + + + + + Sen. Levin: Radio Tour. State of the Union; bipartisan Iraq + res. + 1 audiocassettes + 2007 January 26 + 1074 + + + + + Sen. Levin: Radio Tour. Stem Cell research; Mid East + 1 audiocassettes + 2006 July 19 + 1074 + + + + + Sen. Levin: Radio Tour. Tax Shelters + 1 audiocassettes + 2003 November 12 + 1102 + + + + + Sen. Levin: Radio Tour. Trip to Iraq + 1 audiocassettes + 2005 July 13 + 1102 + + + + + Sen. Levin: Radio Tour. U-M affirm. action case, Iraq + 1 audiocassettes + 2003 April 02 + 1094 + + + + + Sen. Levin: Radio Tour. Wounded Warrior Act + 1 audiocassettes + 2008 February 15 + 1074 + + + + + Sen. Levin: Radio Tour.. Bush veto of Iraq funding bill + 1 audiocassettes + 2007 May 02 + 1074 + + + + + Sen. Levin: Radio Tour: Re manufacturing job loss + 1 audiocassettes + 2003 September 17 + 1102 + + + + + Sen. Levin: WOMC - Dick Portan Salvation Army Radiothon(?) + 1 audiocassettes + 2004 February 27 + 1102 + + + + + Senator Levin Speaks in Sarah Cleveland's Class. U.M Law + School + 1 videocassettes (VHS; 1:30:00) + 2004 October 23 + 1061 + + + + + September 11 Panel Recomendations, CSPAN Govt. Affairs; CBS Face the + Nation with Senator Pat Roberts, Re: Intell reorganization; Lou Dobbs + Tonight + 1 videocassettes (VHS) + 2004 August 17 + 2004 August 22 + Date? + 1072 + + + + + sides A&B - NYT, WPost & AP interviews re. Iraq $ in + supplemental + 1 audiocassettes + 2003 October 03 + 1102 + + + + + Sit down with Michigan reporters (Mostly Iraq) + 1 audiocassettes + 2004 May 21 + 1102 + + + + + Stand Up For Iron Ore + 1 videocassettes (VHS) + air date: July 15 + 2001 + 2001 July 16 + 1056 + + + + + Steve Harmon, Grand Rapids Press re Democrats & Social Security; + Danielle Smith Arab American News Re Michigan Fund for Peace & Econ + Dert + 1 audiocassettes + 2005 April 26 + 2005 April 29 + 1102 + + + + + Television interviews + 1 videocassettes (VHS) + 2003 April-June: 2003 April + 27 + 2003 June 08 + 2003 June 09 + 2003 June 09 + 2003 June 09 + 2003 June 10 + 1078 + + + + + Television Interviews National TV Carl Levin + 1 videocassettes (VHS) + 2003 February 05 - 2003 + March 13: 2003 February 05 + 2003 February 09 + 2003 February 14 + 2003 February 14 + 2003 February 26 + 2003 March 04 + 2003 March 07 + 2003 March 09 + 2003 March 13 + 1078 + + + + + The Centennial Celebration And Name Change of The Hart-Dole-Inouye + Federal Center + 1 videocassettes (VHS) + 2003 May 31 + 1081 + + + + + Tom Walsh, Free Press, re State of the Auto Industry + 1 audiocassettes + 2005 March 10 + 1102 + + + + + TV Interviews - 2004 May-July. (Tape - 2004 E) + 1 videocassettes (VHS) + May-July 2004: 2004 May + 02 + 2004 May 4 + 2004 May 07 + 2004 June 29 + 2004 July 07 + 2004 July 07 + 2004 July 09 + 2004 July 13 + 2004 July 14 + 2004 July 15 + 2004 July 15 + 1061 + + + + + TV news segments from Saginaw TV Stations + 1 videocassettes (VHS) + 2004 April 13 + 1061 + + + + + Warner, Levin press Conference re Trip to Iraq + 1 videocassettes (VHS) + 2003 July 03 + 1078 + + + + + World News Tonight Ridge Confirmation; NewsHour Ridge hearing + 1 videocassettes (VHS) + 2003 January 21 + 2003 January 21 + 1053 + + + + + WSGW - Re: Gas prices; WCMU - Re: Superfund site; NYT - Eric Schmitt - + Intel. Prison Abuse; WJR - Warren Pierce, Re: Intel. Report - [illegible] 8-18 + media - ; Side B - midway Re: Reicl(?) + Mikaily(?) Leader Dee Ann - + [illegible] + 1 audiocassettes + 2004 June 04 + 2004 July 09 + August 18(?) + 1102 + + + + + WWMT-TV3 Kalamazoo: Kalamazoo Social Security Forum + 1 videocassettes (VHS) + 2005 May 02 + 1052 + + + + + WXYZ-TV 7 - Spotlight on the News - Sen. Carl Levin and Rep. Mike + Rogers + 1 videocassettes (VHS) + 2003 + 1095 + + + + + WXYZ-TV Detroit - "Spotlight On the News" + 1 videocassettes (VHS) + airdate: 2006 July + 09 + 1065 + + + + + WZZM TV 13 Grand Rapids Energy Story; Carl's Speech at GVSU + 1 videocassettes (VHS) + 2005 October 14 + 1052 + + + +
    + + + 2009-2014 + + +

    (111th-113th Congress)

    +
    + + + Administrative and Personal Office Files + 2000-2015 + + + + Constituent letter quantities and draft responses + 2009-2011 + 215 + + + + + Correspondence + + + + February-August 2009 + 215 + + + + + Bureau of the Public Debt + 2009 + 215 + + + + + Central Michigan University (CMU) + 2012-2013 + 215 + + + + + Colleagues + 2009 + 215 + + + + + Defense -- European Missile Defense remarks + March 24, + 2009 + 215 + + + + + Manufacturing + 2009 + 215 + + + + + Miscellaneous Michigan letters + 2000-2012 + 215 + + + + + Michelle Obama-Interfaith Center for Racial Justice keynote + speaker + April 7, 2009 + 215 + + + + + Orthodox Jews + 2009 + 215 + + + + + Personal + 2014 + 215 + + + + + Personal notes + + + + 2002-2009 + 215 + + +

    (Includes Kids Kicking Cancer, Japanese internment, Antisemitism, Tiger + Stadium, Afghanistan, colleagues, etc.)

    +
    +
    + + + 2010 + 215 + + + + + 2011-2012 + 215 + + + + + 2012 + 215 + + + + + 2013-2014 + 215 + + + + + 2014 + 215 + + + + + Letter to Mark Schlissel + September 5, 2014 + 1111 + + +

    (Congratulating new president of the University of Michigan)

    +
    +
    +
    + + + Swearing-in invitations + 2009 + 215 + + + + + Tax exemption letters + 2006 + 215 + + + + + Thank you notes -- Carl edits + November 2014 + 215 + + +
    + + + Guest books + + + + Guest book + November 14, 2008-July 30, 2010 + 215 + + + + + Visitor register + August 2010-June 2012 + 215 + + + + + + Legislative activities + + + + 111th Congress + January 1, 2009-April 4, 2009 + 216 + + + + + 111th Congress + January 6, 2009-December 23, 2010 + 216 + + + + + 112th Congress + January 5, 2011-January 3, 2013 + 216 + + + + + 113th Congress + January 3, 2013-July 7, 2013 + 216 + + + + + Attendance report + January 2013 + 216 + + + + + + Carl Levin -- U.S. Senator from Michigan -- Tributes in the Congress of + the United States + 1 Booklet + 2015 + 216 + + + + + Dear Colleagues + 2012-2014 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Dearborn, Traverse City, Cadillac appearances + 2011-2012 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Photographs and recordings.)

    +
    +
    + + + Intern lunch oral history + June 17, 2013 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Includes audio recording and transcript.)

    +
    +
    + + + Mail reports-analysis of incoming and outgoing mail + 4 folders + 2009-2013 + 216 + + + + + Meeting with Maurice Tempelsman + November 13, + 2013 + 216 + + +

    (Lazare Kaplan International Inc.)

    +
    +
    + + + Mount Morris Funding + 2009 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Photographs of Carl in Northern Michigan + January 2011 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Photographs of inauguration of President Barack Obama + 2009 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Schedules + + + + 2009 + + + + January 16-19 + 216 + + + + + February 16-19 + 216 + + + + + March + 2 folders + 216 + + + + + April + 2 folders + 216 + + + + + May + 6 folders + 216 + + + + + June + 4 folders + 216 + + + + + July + 3 foldeers + 217 + + + + + August + 5 folders + 217 + + + + + September + 4 folders + 217 + + + + + October + 4 folders + 217 + + + + + November + 3 folders + 217 + + + + + + 2010 + + + + January + 2 folders + 217 + + + + + February 15-18 + 217 + + + + + March + 4 folders + 217 + + + + + April 16-19 + 217 + + + + + May + 3 folders + 217 + + + + + June + 5 folders + 218 + + + + + July + 2 folders + 218 + + + + + August + 4 folders + 218 + + + + + September + 4 folders + 218 + + + + + October + 9 folders + 218 + + + + + November + 3 folders + 219 + + + + + + 2011 + + + + January + 3 folders + 219 + + + + + February + 2 folders + 219 + + + + + March + 3 folders + 219 + + + + + April + 3 folders + 219 + + + + + May + 6 folders + 219 + + + + + June + 2 folders + 219 + + + + + July + 2 folders + 219 + + + + + August + 3 folders + 219 + + + + + September + 3 folders + 219 + + + + + October + 4 folders + 220 + + + + + November + 3 folders + 220 + + + + + December + 3 folders + 220 + + + + + + 2012 + + + + January + 3 folders + 220 + + + + + February + 2 folders + 220 + + + + + March + 2 folders + 220 + + + + + April + 4 folders + 220 + + + + + May + 5 folders + 2012 + 220 + + + + + June 8-11 + 221 + + + + + July + 4 folders + 221 + + + + + August + 6 folders + 221 + + + + + September + 4 folders + 221 + + + + + October + 7 folders + 221 + + + + + November + 4 folders + 221 + + + + + December 7-10 + 221 + + + + + + 2013 + + + + January + 2 folders + 221 + + + + + February + 2 folders + 221 + + + + + March + 3 folders + 221 + + + + + April 1-5 + 221 + + + + + April + 3 folders + 222 + + + + + May + 3 folders + 222 + + + + + June + 3 folders + 222 + + + + + July + 2 folders + 222 + + + + + August + 4 folders + 222 + + + + + September + 4 folders + 222 + + + + + October + 2 folders + 222 + + + + + November + 2 folders + 222 + + + + + December + 2 folders + 222 + + + + + + 2014 + + + + January + 2 folders + 222 + + + + + February + 2 folders + 222 + + + + + March + 3 folders + 222 + + + + + April 26-27 + 222 + + + + + May + 5 folders + 222 + + + + + June + 2 folders + 223 + + + + + July + 2 folders + 223 + + + + + August + 5 folders + 223 + + + + + September + 3 folders + 223 + + + + + October + 8 folders + 223 + + + + + November + 3 folders + 223 + + + + + December 18-19 + 223 + + + + + + + Staff + + + + Constituent responses (Letter library; H. Grabyare) + + + + Very important Carl's edits on Benghazi + April 2014 + 223 + + + + + Filibuster + December 2013 + 223 + + +

    (Nuclear option)

    +
    +
    + + + Israel and F-35 edits + April 2014 + 223 + + +
    + + + Memos and correspondence + + + + R. Bowen + 9 subfolders + 2014 + 223 + + + + + B. Brenner + 2 folders + 2010-2014 + 224 + + + + + D. Handelsman + 2014 + 224 + + + + + S. Kellman + 2014 + 224 + + + + + Carl memo edits, (includes letters as well) + 2003-2014 + 224 + + + + + Carl edits of Legislative Correspondent letters + 2004-2014 + 224 + + + + + Memos to Carl + December 2013-March 2014 + 224 + + + + + M. Nykaza + 8 subfolders + 2012-2013 + 224 + + + + + + Miscellaneous + 7 subfolders + 2011-2013 + 225 + + +

    (H. Chase; Includes Marquette post office and courthouse, SASC streamlining + paperwork for executive nominations, Housing, Crazy Horse Memorial stamp, and + postal service)

    +
    +
    + + + Miscellaneous + 2013-2014 + 225 + + +

    (Postal service, budget, and tax extenders; T. Everett)

    +
    +
    + + + Miscellaneous + 3 subfolders + 2014 + 225 + + +

    (T. Everett and T. Gellasch; Includes Detroit bankruptcy and postal issues)

    +
    +
    + + + Miscellaneous + 10 subfolders + 2014 + 225 + + +

    (T. Everett; Includes Conference Accountability Act, flood insurance, housing, + incoming inequality, taxes, and banking)

    +
    +
    + + + Miscellaneous veterans material + 2013-2014 + 225 + + +

    (Includes Boston Marathon intelligence, Carl visit to Dingell VA Medical + Center, Michigan VA centers, local law enforcement, and National Instant + Criminal Background Check System)

    +
    +
    + + + Miscellaneous Carl items + 2014 + 225 + + +

    (Insurance, tax, highway, etc.; T. Everett)

    +
    +
    + + + Staff lists + 2009-2010 + 225 + + + + + Staff notebook -- A. Gunderson-Intern + 2014 + 225 + + + + + Visit to the Digital Fabrication Laboratory at Mott Community + College + 2011 + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + Theodore Levin Courthouse (H. Chase) + 2011 + 1110 + + + + + Writings + 2009-2014 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Drafts, floor statements, talking points, op-ed articles, and other documents on + all issue areas.)

    +
    +
    + + + Tribute video to Carl Levin upon his retirement + December 2014 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Featuring interviews with Sander Levin and John McCain.)

    +
    +
    +
    + + + Agriculture + 2009-2014 + + + + Appropriations + + + + FY2009 + 238 + + + + + FY2010 + 238 + + + + + FY2013 farm bill tax package + 238 + + + + + FY2015 (H. Keller) + 238 + + + + + FY2015 Commodity supplemental food program (H. Keller) + 238 + + + + + Appropriations, (H. Keller) + 2014 + 238 + + + + + + Egg bill, (H. Chase) + 2012-2013 + 238 + + + + + Farm bill, (A. Yates) + 3 subfolders + 2013 + 238 + + + + + Wheat -- speculation in the wheat market hearing + 17 subfolders + 2009 + 238 + + +

    (PSI; Excessive Speculation in the Wheat Market)

    +
    +
    +
    + + + Animal Protection-animals, Endangered Species Act (ESA), and wildlife, (A. + Yates) + 6 subfolders + 2008-2012 + 241 + + + + + Business + 2007-2014 + + + + Appropriations and funding + + + + FY2009 Small Business Administration Microloan Program + 251 + + + + + FY2010 Small Business appropriations act to provide + microloans + 251 + + + + + FY2013 and FY2014 Homeland Security, Coast Guard, and Small Business + Administration + 251 + + + + + FY2015 microloan appropriations letter (A. Pascale) + 251 + + + + + Disaster declaration -- flood insurance, (H. Keller: Small Business + Administration) + 2014 + 251 + + + + + Small Business Administration microloan + 2007-2014 + 251 + + + + + FY2014 microloan appropriations letter + undated + 1114 + + + + + + Small Business and Entrepreneurship Committee (SBC) + + + + Hearings + + + + Budget hearing, (FY2010) + 2009 + 255 + + + + + Small business financing + May 13, + 2009 + 255 + + + + + Presidents FY2011 budget request for the Small Business + Administration + March 24, + 2010 + 255 + + + + + Small Business Speak: Surviving the Government Shutdown + October 15, + 2013 + 255 + + + + + Empowering women entrepreneurs + July 23, + 2014 + 255 + + + + + + Markup + + + + Continuation of Small Business Committee bills markup + June 2013 + 255 + + + + + SBIR markup, (A. Pascale) + June 2009 + 255 + + + + + Small business bills and markup + 2010-2013 + 255 + + + + + + Veterans business resource centers get critical funding + January 2008-March 2009 + 255 + + + + + + Healthcare insurer fee + 2009-January 2011 + 251 + + + + + Intermediary Lending Pilot Program, (A. Pascale) + 15 subfolders + 2007-2011 + 252 + + + + + Jobs package and amendments + 3 folders + September 2009-March 2010 + 252 + + + + + Michigan Economic Development Corporation (MEDC)-Colonial + Mold + 2009-2010 + 252 + + + + + Sequestration threat to small business, NDIA, adaptive manufacturing + solutions, (Lori Moncrieff) + 2013 + 252 + + + + + Small business + + + + Bruce McFee offshoring -- tax haven abuse + April 2014 + 252 + + + + + Carl's small business file -- jobs act and credit initiative, (Small + Business Jobs Act) + July-September 2010 + 252 + + + + + Small Business Administration (SBA) + + + + Assessment of the community express pilot loan program + August-September 2010 + 252 + + + + + HUBzone, (A. Pascale) + 2014 + 252 + + + + + SBA lending data and Michigan small business loans + January 2008 + 252 + + +

    (Meeting with SBA Administrator Steven Preston)

    +
    +
    + + + Laurie Moncreiff, (Adaptive Manufacturing Solutions, LLC) + August 2010 + 252 + + +
    + + + Small Business Innovation Research (SBIR) program (A. + Pascale) + + + + Mary Landrieu amendment to SBIR program + March-October 2011 + 252 + + +

    (SBIR/STTR reauthorization, SBIR success stories, amendments, and draft + statement)

    +
    +
    + + + Proposed amendments to SBIR program + July 2012 + 252 + + +
    + + + Small Business Jobs and Credit Act + + + + Credit initiative and Michigan Economic Development Corporation + (MEDC) + 2 folders + July 2009-October 2010 + 252 + + + + + Michigan Economic Development Corporation (MEDC) capital + programs + January-March 2010 + 252 + + + + + State Small Business Credit Initiative Act, (Pascale) + 2 folders + 2010-2011 + 253 + + + + + 2011 + 1114 + + + + + Small Business Jobs bill implementation + 2010 - April 2011 + 1114 + + + +
    + + + Senate extension of vital small business programs + March 2009 + 253 + + + + + Stock option bill-Levin + 2 folders + March-May 2009 + 253 + + + + + University of Michigan Ross business ethics forum-conversation and Levin + interview + 2 DVDs + March 21, 2011 + + + + Ross School of Business, Senator Carl Levin Interview Hosted by Terry + Kosdrosky + 2011 March 21 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). University of Michigan Ross School of + Business video interview of Sen. Carl Levin, Chairman of the Senate Armed + Services Committee, by Terry Kosdrosky, discussing business and ethics.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Ross School of Business, A Conversation on Business Ethics + 2011 March 21 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin lecturing on business + ethics at the University of Michigan Ross School of Business.)

    +
    +
    +
    + + + Van Pool Services -- Troy + 2009-2010 + 253 + + +

    (Private Investment in Commuter Vanpooling Act -- S.1795 A. Pascale)

    +
    +
    +
    + + + Civil rights (K. Meier) + 2001-2013 + + + + Racial profiling acts, grants, privacy remedies + 2001-2012 + 264 + + + + + United4Equality new strategy for equal rights amendment + 2013 + 264 + + +

    (Equal Rights Amendment ratification)

    +
    +
    +
    + + + Communications (A. Pascale) + 2008-2014 + + + + Broadband and spectrum auctions + 3 subfolders + 2009-2012 + 261 + + + + + Congressional Executive Commission on China Hearing, Chinese hacking, + Cyber-hearing + June 25, 2013 + 261 + + + + + Cybersecurity amendment + 2012 + 261 + + + + + Cybersecurity legislation + 2012-2013 + 261 + + + + + Cybertheft background material -- S.844 + 2013 + 261 + + + + + Dearborn cable issue + 2008-2010 + 261 + + + + + E-rate letter + 2014 + 261 + + + + + Hearing -- emergency communications (HSGAC) + 2011 + 261 + + + + + Net neutrality + 2013-2014 + 261 + + + + + Protect IP Act + 2 subfolders + 2012 + 261 + + + + + + Crime and justice + 2004-2014 + + + + Background checks-Private Security Officer Employment Authorization + Act + 3 folders + 2007-2010 + 282 + + + + + Clemency and wrongful imprisonment + + + + Freeman, Frederick, (Temujin Kensu) + 4 folders + 2009-2010 + 283 + + + + + Hargrave-Thomas, Kylleen + 2004-2008 + 283 + + + + + Robert Manning international prisoner transfer -- Israel + 2 folders + 2011-2012 + 283 + + + + + Manning, Robert update + 2012 + 283 + + + + + Norfolk Four + 4 folders + 2005-2010 + 283 + + + + + Williams, Danial + 2009 + 2014 + 283 + + + + + + Concealed cary reciprocity, (Guns) + July 2009 + 283 + + + + + Drug sentencing disparity + 2 folders + 2005-2013 + 283 + + + + + Federal prison reform legislation, (K. Meier) + 2013 + 283 + + + + + Hate crimes + 3 folders + 2009-2013 + 283 + + + + + + Defense and Armed Services Committee (SASC) + 1997-2015 + + + + E-Gaza project + 2 folders + 2004-2005 + 2012 + 410 + + +

    (Includes CODEL Levin itinerary March 29-April 5, 2005 and a few photographs)

    +
    +
    + + + G-Cuba -- Alan Gross + 2 folders + 2011-2014 + 410 + + +

    (Carl's notes, memos; M. Kuiken; SASC)

    +
    +
    + + + O-Syria + 2 folders + 2013-2014 + 410 + + +

    (SASC; Carl's notes; Includes CODEL Levin September 3, 2014)

    +
    +
    + + + BB -- Facility for Rare Isotope Beams -- MSU, (M.L. Wagner) + 2011-2012 + 410 + + + + + DD-Department of Defense -- Department of Energy + 2011-2013 + 410 + + +

    (DOD-DOE; M. Noblet and M.L. Wagner)

    +
    +
    + + + OO-Egypt, (SASC; M. Kuiken) + 2013 + 410 + + + + + BBB-National Security Administration (NSA) + 2013 + 410 + + +

    (Carl's notes; SASC)

    +
    +
    + + + CCC-Detainees, (SASC: SSCI) + 2011-2013 + 410 + + + + + DDD-Cybersecurity + 2013 + 410 + + +

    (SASC; Carl's notes)

    +
    +
    + + + Afghanistan + + + + Background for trip, hearing, and speech + + + + News articles + 2010 + 410 + + + + + SASC-ISAF strategic assessment and Gen Caldwell 180 day + review + April-May 2010 + 410 + + + + + Speech + + + + Articles and draft + 2010 + 410 + + + + + Articles and reports + April-June 2010 + 410 + + + + + SASC weekly quotes + February 2010 + 410 + + + + + + + The Haqqani Network, (SASC) + 2011 + 410 + + + + + News articles-Afghanistan and Pakistan + 2008 + 410 + + + + + News articles and reports + 6 folders + July-December 2009 + 411 + + +

    (Folder 5 contains a CD)

    +
    + + + NSP: Empowering Women + undated + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Strengthening the Role of Women in + Afghanistan, a National Solidarity Programme (NSP) video on the empowerment of + Afghan women.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + Photograph-Levin and Commander of ISAF John R. Allen in + D.C. + March 16, + 2012 + 411 + + + + + Photograph-Levin with Gen. Mark Milley-ISAF Joint Command 101st + Airborne, (2 copies) + undated + 411 + + + + + Photograph-Levin, Senator Reed, and General John R. Allen at + International Security Alliance Force (ISAF) headquarters + undated + 411 + + + + + Photograph -- Levin, Senator Reed, and General Odierno + undated + 411 + + + + + United in Afghanistan's Progress-Afghanistan National Security Forces + and ISAF, January ? + 2013 + 411 + + +
    + + + Afghanistan-Carl's writings + + + + Key documents + September 2009-December 2009 + 411 + + + + + Afghan Army in the lead, military progress + 2010 + 411 + + + + + Clips and notes + July 2010 + 411 + + + + + Contractors + 2010 + 411 + + + + + Pakistan/Afghanistan issues + 2010 + 411 + + + + + Reintegration of the Taliban, Taliban's strength + 2010 + 412 + + + + + Trip + January 2010 + 412 + + + + + Afghanistan + January-May 2010 + 412 + + + + + Afghanistan + 2 folders + July 2010-August 2011 + 412 + + + + + Afghanistan including trips + 2012 + 414 + + + + + Afghanistan including trips + 2013 + 413 + + + + + + Authorization, appropriations, and funding + + + + FY2010 + + + + National Defense Authorization Act-Carl's writings (NDAA) + 3 folders + 413 + + + + + Defense Authorization bill + 2 folders + 414 + + +

    (Carl's writing)

    +
    +
    +
    + + + FY2011 National Defense Authorization Act (NDAA) + + + + Scholarships for military children with special needs + 414 + + + + + Scholarships for military children with special needs-Harkin + memo + 414 + + + + + + FY2012 National Defense Authorization bill (NDAA) + + + + Carl's writings + 3 folders + 415 + + + + + Key documents + 414 + + + + + + FY2013 + + + + National Defense Authorization bill (NDAA) (1 of 2) + + + + Use of military force amendment-Rand Paul + November 2012 + 415 + + + + + Jonathan Pollard + 1997 + November 14, + 2012 + 415 + + +

    (SASC memo)

    +
    +
    + + + Defense policy and Lautenberg amendments + October-November 2012 + 415 + + + + + Use of marijuana for PTSD + December 2011-January 2012 + 415 + + +

    (SASC memo)

    +
    +
    + + + S.2112 expansion of space-available travel benefits + April 25, + 2012 + 415 + + +

    (Space Available Act; SASC memo)

    +
    +
    + + + Miscellaneous + March-September 2012 + 415 + + + + + Quotes on military detentions + 415 + + +

    (Section 1021-detaining those who participated in 9/11 or al-Qaeda; SASC + memo)

    +
    +
    + + + Defense budget cuts + 415 + + + + + House amendment on habeas corpus + May 24, + 2012 + 415 + + +

    (SASC memo)

    +
    +
    + + + Annual defense policy bill + 415 + + + + + Side-by-side comparison of HASC-SASC treatment of proposed Air + Force changes, (SASC memo) + May 16, + 2012 + 415 + + + + + Summary of provisions in subcommittee marks, (SASC + memo) + May 11, + 2012 + 415 + + + + + Phone call with Senator Breaux on SpaceX, (SASC memo) + May 4, + 2012 + 415 + + + + + News articles + January-May 2012 + 415 + + +
    + + + National Defense Authorization bill (NDAA) (2 of 2) + + + + Amendments, news articles, memos, and statements + 415 + + + + + Floor statement for NDAA conference report (R. Debobes) + 2 folders + 415 + + + + + Conference-point papers for Big 4 and amendments + 2 folders + 416 + + + + + Letter from Senator Reid, (J. Epstein) + December 13, + 2012 + 416 + + + + + Feinstein amendment on detainees, (P. Levine) + November 2012 + 416 + + + + + Detention of American citizens pursuant to the AUMF, (P. + Levine) + November 28, + 2012 + 416 + + + + + Los Angeles terrorist case and the issue of US citizens, (P. + Levine) + November 20, + 2012 + 416 + + + + + Breadth and constitutionality of terrorism offenses, (P. + Levine) + November 27, + 2012 + 416 + + + + + Graham second degree amendment on detainees + November 27, + 2012 + 416 + + + +
    + + + FY2014 + + + + National Defense Authorization bill (NDAA) (1 of 2) + + + + Benefits bonuses + 416 + + + + + NDAA bill + 416 + + + + + Miscellaneous + 416 + + + + + Big 4 meeting + 416 + + + + + Guantanamo (GITMO) + 416 + + +

    (Includes HSGAC hearing excerpt)

    +
    +
    + + + Budget cut news articles + 416 + + + + + Background for meeting with Defense Writers' Group, + (Levine) + September 2013 + 416 + + + + + Draft DOD Policy concerning same-sex spouse benefits (J. + Clark) + 416 + + + + + Nukes articles + 416 + + +
    + + + National Defense Authorization bill (NDAA) (2 of 2) + + + + Littoral Combat Ship Program, (C. Greene) + July 30, + 2013 + 416 + + + + + Second Circuit Court of Appeals Decision in Hedges v Obama, (B. + Monahan and P. Levine) + July 23, + 2013 + 416 + + + + + Miscellaneous + July-August 2013 + 416 + + + + + Opening statement for Full Committee mark-up and amendments, (P. + Levine) + May-June 2013 + 416 + + + + + U.S. Embassy in Beijing application for consular birth + abroad-Cook + April-June 2012 + 416 + + + + + White House cyber leaks of classified Middle East + information + May-June 2012 + 416 + + + + + Department of Defense (DOD) budget + April-May 2013 + 416 + + +

    (Includes Big 8 memo)

    +
    +
    +
    + + + Defense Authorization Act-sexual assault (1 of 2) + 417 + + +

    (Contains G. Leeling memos)

    +
    +
    + + + Defense Authorization Act-sexual assault (2 of 2) + 417 + + +

    (Contains G. Leeling and P. Levine memos)

    +
    +
    +
    +
    + + + Benghazi Incident, (SSCI, HSGAC, and SASC) + October 2012-February 2013 + 416 + + + + + CIA torture report and hacking, (SSCI) + 2014 + 416 + + + + + Committee correspondence, memos, and statements (SASC) + + + + 2009 + + + + January + 2 folders + 416 + + + + + February + 2 folders + 417 + + + + + March + 3 folders + 417 + + + + + April + 2 folders + 418 + + + + + May + 3 folders + 418 + + + + + June + 3 folders + 418 + + + + + July + 5 folders + 418 + + + + + August + 418 + + + + + September + 2 folders + 418 + + + + + October + 2 folders + 419 + + + + + November + 419 + + + + + December + 2 folders + 419 + + + + + + 2010 + + + + January + 2 folders + 419 + + + + + February + 2 folders + 419 + + + + + March + 2 folders + 419 + + + + + March 16-31 + 2 folders + 419 + + + + + April + 2 folders + 419 + + + + + May + 2 folders + 420 + + + + + June + 2 folders + 420 + + + + + July + 3 folders + 420 + + + + + August + 2 folders + 420 + + + + + September + 3 folders + 420 + + + + + October + 420 + + + + + November + 420 + + + + + December + 420 + + + + + + 2011 + + + + January + 2 folders + + + + + February + 2 folders + 421 + + + + + March + 2 folders + 421 + + + + + April + 421 + + + + + May + 2 folders + 421 + + + + + June + 421 + + + + + July + 421 + + + + + August + 421 + + + + + September + 421 + + + + + October + 421 + + + + + November + 421 + + + + + December + 421 + + + + + + 2012 + + + + January + 421 + + + + + February + 2 folders + 422 + + + + + March + 2 folders + 422 + + + + + April + 422 + + + + + May + 422 + + + + + June + 422 + + + + + July + 422 + + + + + August + 422 + + + + + September + 422 + + + + + October + 422 + + + + + November + 422 + + + + + December + 422 + + + + + + 2013 + + + + January + 422 + + + + + February + 422 + + + + + March + 422 + + + + + April + 422 + + + + + May + 422 + + + + + June + 2 folders + 423 + + + + + July + 423 + + + + + August + 423 + + + + + September + 423 + + + + + October + 423 + + + + + November + 423 + + + + + December + 423 + + + + + + + Committee hearings and investigations (SASC) + + + + Contracting in Counterinsurgency: an examination of Blackwater-Paravant + contract and the need for oversight J. Bryan) + February 24, + 2010 + + + + Index and key documents + 423 + + + + + Research-key documents + 423 + + + + + Working file + 423 + + + + + + Contracting in a Counterinsurgency: An Examination of the + Blackwater-Paravant Contract and the Need for Oversight Investigation-Program + Executive Office, Simulation, Training and Instrumentation (PEO STRI) + materials + 4 folders + 2009-2010 + 423 + + + + + Counterfeit Electronic Parts in the Department of Defense Supply + Chain + October-November 2011 + 423 + + + + + U.S. Costs and Allied Contributions to Support the U.S. Military + Presence Overseas-Germany, South Korea, and Japan + 2012-2013 + 423 + + + + + Cyber Institutions Affecting U.S. Transportation Command + Contractors + + + + Correspondence + May-November 2013 + 423 + + + + + Talking points-press + September 17, + 2013 + 423 + + + + + Transcom + April 29, + 2013 + 423 + + + + + + Nominations + January 15, + 2009 + 03:01:15 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Challenges Facing the Department of Defense + January 27, + 2009 + 02:55:54 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Afghanistan and Pakistan + February 26, + 2009 + 02:31:06 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Acquisition of Major Weapons Systems + March 3, 2009 + 02:29:07 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Current and Future Worldwide Threats + March 10, + 2009 + 03:09:43 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Legislative: United States Southern Command, United States Northern + Command, United States Africa Command, and United States Transportation + Command + March 17, + 2009 + 02:55:28 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Legislative: To receive testimony on United States Pacific Command, + United States Strategic Command, and United States Forces Korea + March 19, + 2009 + + + + Part 1 + 02:19:14 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Part 2 + 00:23:25 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    +
    + + + Legislative: United States European Command and United States Joint + Forces Command + March 24, + 2009 + 02:26:47 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations + March 26, + 2009 + 02:32:34 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + United States Policy Toward Afghanistan and Pakistan + April 1, 2009 + 03:14:44 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Legislative: Mark Up S.454, the Weapon Systems Acquisition Reform Act + of 2009 + April 2, 2009 + 00:36:40 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations + April 28, + 2009 + 03:13:41 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Secretary of Defense's 2010 Budget Recommendations + April 30, + 2009 + 02:44:54 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Pirates + May 5, 2009 + 02:18:57 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Congressional Commission on the Strategic Posture of the United + States + May 7, 2009 + 02:14:47 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations + May 12, 2009 + 01:36:50 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Legislative: Future Years Defense Program + May 14, 2009 + 03:12:19 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Legislative: Department of the Army + May 19, 2009 + 02:03:40 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Legislative: Department of the Air Force + May 21, 2009 + 02:31:17 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations + June 2, 2009 + 02:53:23 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Legislative: Department of the Navy + June 4, 2009 + 02:34:59 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations: Heddell, Gilmore, Lemnios, McCarthy, Morin, + Ginsberg + June 11, 2009 + 01:50:03 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Legislative: Navy Shipbuilding Programs + June 16, 2009 + 02:24:56 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Trial of Detainees + July 7, 2009 + 02:50:00 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations + July 9, 2009 + 02:10:00 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations + July 30, 2009 + 02:38:37 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + The President's decision on missile defense in Europe + September 24, + 2009 + 02:31:51 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations + October 22, + 2009 + 01:05:59 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations: Stanley, Conaton, Romo + November 19, + 2009 + 01:19:09 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Afghanistan + December 2, + 2009 + 03:50:39 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Afghanistan + December 8, + 2009 + 04:00:38 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations + December 17, + 2009 + 01:38:05 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Independent Review Relating to Fort Hood + January 21, + 2010 + 02:35:20 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Legislative: Future Years Defense Program + February 2, + 2010 + 04:10:54 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Oversite: Operation Moshtarak + February 22, + 2010 + 01:32:20 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open/closed session)

    +
    +
    + + + Legislative: Department of the Army + February 23, + 2010 + 02:53:31 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Blackwater-Paravant Contract + February 24, + 2010 + 01:53:42 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Legislative: Department of the Navy + February 25, + 2010 + 03:00:15 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Legislative: Air Force Budget Request + March 4, 2010 + 02:35:41 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Legislative: European Command and Africa Command + March 9, 2010 + 02:16:08 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + U.S. Government Efforts to Counter Violent Extremism + March 10, + 2010 + 02:37:29 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + U.S. Northern Command and U.S. Southern Command, followed by testimony + on the Joint Strike Fighter + March 11, + 2010 + + + + Part 1 + 04:11:39 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Part 2 + 00:41:47 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    +
    + + + Legislative: U.S. Special Operations Command and U.S. Central + Command + March 16, + 2010 + 02:35:09 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Oversite: Don't Ask, Don't Tell + March 18, + 2010 + 02:31:54 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations + March 23, + 2010 + 02:04:39 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Legislative: U.S. Pacific Command, U.S. Strategic Command, and U.S. + Forces Korea + March 24, + 2010 + 02:11:07 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Islamic Republic of Iran + April 14, + 2010 + 02:10:32 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open/closed session)

    +
    +
    + + + Nominations + April 15, + 2010 + 01:47:30 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Legislative: Ballistic Missile Defense Policies and + Programs + April 20, + 2010 + 02:42:55 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Testimony on the Nuclear Posture Review + April 22, + 2010 + 02:27:23 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Situation in Afghanistan + June 15, 2010 + 01:24:30 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Situation in Afghanistan + June 16, 2010 + 03:12:22 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + New START + June 17, 2010 + 02:25:11 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Preventing Military Suicides + June 22, 2010 + 02:15:41 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations + June 24, 2010 + 02:10:35 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations - Petraeus + June 29, 2010 + 02:04:19 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + New START + July 15, 2010 + 02:01:17 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open/closed session)

    +
    +
    + + + New START + July 20, 2010 + 02:16:58 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + New START + July 27, 2010 + 02:04:59 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations + July 27, 2010 + 01:55:39 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + New START + July 29, 2010 + 02:25:53 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open/closed session)

    +
    +
    + + + Quadrennial Defense Review + August 3, + 2010 + 02:44:38 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations + August 3, + 2010 + 01:25:13 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Korean Peninsula + September 16, + 2010 + 02:22:45 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations + September 21, + 2010 + 02:14:33 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    + +

    Access to this material is restricted to the reading room of the Bentley + Historical Library.

    +
    +
    + + + Department of Defense Efficiencies Initiatives + September 28, + 2010 + 03:02:45 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    + +

    Access to this material is restricted to the reading room of the Bentley + Historical Library.

    +
    +
    + + + Nominations - Kehler-Ham + November 18, + 2010 + 02:01:33 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Policy Concerning Homosexuality in the Armed Forces + December 2, + 2010 + 03:43:20 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Policy Concerning Homosexuality in the Armed Forces + December 3, + 2010 + 03:23:29 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Legislative: Littoral Combat Ship Acquisition + December 14, + 2010 + 02:17:10 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + DoD KC-X Competition + January 27, + 2011 + 01:49:33 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + United States Policy Toward Iraq + February 3, + 2011 + 02:30:22 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations - Vickers-Rooney + February 15, + 2011 + 01:44:57 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Legislative: Fiscal Year 2012 + February 17, + 2011 + 03:17:03 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Legislative: U.S. Special Operations Command and U.S. Central + Command + March 1, 2011 + 02:25:52 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open/closed session)

    +
    +
    + + + Nominations + March 3, 2011 + 02:13:22 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Legislative: Department of the Navy + March 8, 2011 + 03:01:06 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + National Security Worldwide Threats + March 10, + 2011 + 02:12:06 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Afghanistan + March 15, + 2011 + 04:07:35 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + National Intelligence Estimate on Iran + March 17, + 2011 + 02:41:50 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Closed session)

    +
    +
    + + + Legislative: U.S. European Command and U.S. Strategic + Command + March 29, + 2011 + 03:07:29 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + DoD Department of Defense Efficiencies Initiatives + March 29, + 2011 + 01:48:53 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Legislative: Department of the Army + March 31, + 2011 + 02:56:51 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Libya Operation Odyssey Dawn + March 31, + 2011 + 02:20:44 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Legislative: U.S. Northern Command and U.S. Southern + Command + April 5, 2011 + 02:16:36 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + U.S. Transportation Command and U.S. Africa Command + April 7, 2011 + 02:52:39 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + U.S. Pacific Command and U.S. Forces Korea + April 12, + 2011 + 02:32:31 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Counterterrorism, Counternarcotics, and Building Partnership + Capacity + April 12, + 2011 + 01:50:47 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Health and Status of the Defense Industrial Base + May 3, 2011 + 02:52:11 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + F-35 Joint Strike Fighter Program + May 19, 2011 + 03:19:17 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations - Panetta + June 9, 2011 + 03:39:33 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open/closed session)

    +
    +
    + + + Nominations: Thurman, McRaven, Allen + June 28, 2011 + 02:38:26 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations: Creedon, Estevez + July 19, 2011 + 01:41:38 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations: Winnefeld, Odierno, Fraser + July 21, 2011 + 02:54:09 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nomination: Dempsey + July 26, 2011 + 02:51:03 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Financial Management and Business Transformation + July 27, 2011 + 02:15:02 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations: Greenert, Jacoby + July 28, 2011 + 01:41:54 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nomination: Carter + September 13, + 2011 + 02:30:39 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + U.S. strategy in Afghanistan and Iraq + September 22, + 2011 + 03:26:46 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Final Report of the Commission on Wartime Contracting in Iraq and + Afghanistan + October 19, + 2011 + 02:20:24 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Oversight-The Committee's investigation into counterfeit electronic + parts in the Department of Defense supply chain + November 8, + 2011 + + + + Part 1 + 03:32:27 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Part 2 + 01:11:39 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    +
    + + + Whether the Chief, National Guard Bureau should be a member of the + Joint Chiefs of Staff + November 10, + 2011 + 02:29:04 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Security Issues Relating to Iraq + November 15, + 2011 + + + + Part 1 + 03:00:54 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Part 2 + 00:50:36 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    +
    + + + Nominations: Sheehan, Lippert, Carson, Ohlson + November 17, + 2011 + 01:19:58 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations: Locklear, Bostick + February 9, + 2012 + 02:21:02 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Defense Authorization Request for Fiscal Year 2013 and the Future Years + Defense Program + February 14, + 2012 + 04:40:20 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Current and Future Worldwide Threats + February 16, + 2012 + 03:00:56 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + U.S. Pacific Command and U.S. Transportation Command + February 28, + 2012 + 02:43:01 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + U.S. European Command and U.S. Africa Command + March 1, 2012 + 03:01:01 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + U.S. Central Command and U.S. Special Operations Command + March 6, 2012 + 02:42:25 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Situation in Syria + March 7, 2012 + 02:37:53 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Department of the Army + March 8, 2012 + 03:16:46 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + U.S. Southern Command and U.S. Northern Command + March 13, + 2012 + 02:07:25 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Department of the Navy + March 15, + 2012 + 03:09:24 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Department of the Air Force + March 20, 2012 + 03:13:18 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Cybersecurity Research and Development + March 20, + 2012 + 01:16:46 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open/closed session q)

    +
    +
    + + + Military Construction, Environmental, and Base Closure + Programs + March 21, 2012 + 02:22:26 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Situation in Afghanistan + March 22, + 2012 + 03:42:21 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + U.S. Strategic Command and U.S. Cyber Command + March 27, + 2012 + 02:54:34 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Department of Defense's role in the implementation of the National + Strategy for Counterterrorism and the National Strategy to Combat Transnational + Organized Crime + March 27, + 2012 + 02:18:41 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations: Kendall, Miller, Conaton, Wright, McFarland, + Shyu + March 29, + 2012 + 02:25:46 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + The Health and Status of the Department of Defense Science and + Technology Laboratories and Enterprise + April 17, + 2012 + 02:05:48 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + National Nuclear Security Administration Management of its National + Security Laboratories + April 18, + 2012 + + + + Part 1 + 01:46:12 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Part 2 + 02:20:17 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    +
    + + + Nominations: Hicks, Chollet + April 26, + 2012 + 01:26:48 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Current Readiness of U.S. Forces + May 10, 2012 + 01:51:59 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Subcommittee Markups + May 22, 2012 + 00:38:24 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open/closed session)

    +
    +
    + + + Testimony on Proliferation Prevention Programs at the Department of + Energy andat the Department of Defense + June 12, 2012 + 01:21:29 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open/closed session)

    +
    +
    + + + Nominations: Welsh, Kelly, Grass + July 19, 2012 + 02:40:40 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nomination: Dunford + November 15, + 2012 + 02:49:16 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nomination: Hagel + January 31, + 2013 + + + + + Attack on U.S. Facilities in Benghazi, Libya + February 7, + 2013 + + + + Part 1 + 04:11:00 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Part 2 + 04:09:26 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Part 3 + 00:36:02 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    +
    + + + Impacts of Sequestration and/or CR + February 12, + 2013 + 02:42:38 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    + + + Part 1 + 04:08:53 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Part 2 + 00:30:06 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    +
    + + + Nomination: Hagel + February 12, + 2013 + 02:23:52 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations: Austin, Rodriguez + February 14, + 2013 + 02:06:06 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations: Estevez, Vollrath, Fanning + February 28, + 2013 + 01:53:07 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + U.S. Central Command and U.S. Special Operations Command + March 5, 2013 + 03:08:37 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + U.S. Africa Command and U.S. Transportation Command + March 7, 2013 + 01:59:30 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + U.S. Strategic Command and U.S. Cyber Command + March 12, + 2013 + 02:53:28 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Sexual Assaults in the Military + March 13, + 2013 + + + + Part 1 + 02:21:17 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Part 2 + 02:29:12 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    +
    + + + U.S. European Command, U.S. Northern Command, and U.S. Southern + Command + March 19, + 2013 + 02:45:43 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Cybersecurity Threats + March 19, + 2013 + 00:57:51 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open/closed session)

    +
    +
    + + + U.S. Pacific Command and U.S. Forces Korea + April 9, 2013 + 02:36:10 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Emerging Counterterrorism Threats + April 9, 2013 + 01:06:46 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open/closed session)

    +
    +
    + + + Nomination: Breedlove + April 11, + 2013 + 01:35:48 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Oversight: Situation in Afghanistan + April 16, + 2013 + 02:42:53 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Defense Authorization Request + April 17, + 2013 + 01:03:12 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Situation in Syria + April 17, + 2013 + 01:33:15 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Active, Guard, Reserve, and Civilian Personnel Programs + April 17, + 2013 + 02:01:48 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Current and Future Worldwide Threats + April 18, + 2013 + 02:15:54 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Current Readiness of U.S. Forces + April 18, + 2013 + 01:26:30 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + The Role of the Department of Defense Science and Technology Enterprise + for Innovation and Affordability + April 18, + 2013 + 02:00:14 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Department of the Army + April 23, + 2013 + 02:58:27 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open/closed session)

    +
    +
    + + + Proliferation Prevention Programs + April 23, + 2013 + 01:00:43 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Tactical Aircraft Programs + April 24, + 2013 + 01:23:36 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Military Construction, Environmental, and Base Closure + Programs + April 24, + 2013 + 01:49:59 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Active, Guard, Reserve, and Civilian Personnel Programs + April 24, + 2013 + 01:17:17 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Department of the Navy + April 25, + 2013 + 02:33:42 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Department of the Air Force + May 7, 2013 + 03:11:44 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + National Security Worldwide Threats + May 7, 2013 + 01:40:24 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Navy Shipbuilding Programs + May 8, 2013 + 01:23:13 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Army Modernization + May 8, 2013 + 02:20:46 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Strategic Forces Programs of the National Nuclear Security + Administration and the Department of Energy's Office of Environmental + Management + May 8, 2013 + 01:45:35 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Ballistic Missile Defense Policies and Programs + May 9, 2013 + 01:34:56 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open/closed session)

    +
    +
    + + + Marine Corps Modernization + May 14, 2013 + 01:22:27 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + The Law of Armed Conflict, the Use of Military Force, and the 2001 + Authorization for Use of Military Force + May 16, 2013 + 03:17:54 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Pending Legislation Regarding Sexual Assaults in the + Military + June 4, 2013 + + + + Part 1 + 05:12:07 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Part 2 + 03:19:51 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    +
    + + + Full Committee Markup + June 12, 2013 + 02:13:50 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open/closed session)

    +
    +
    + + + Nominations: Dempsey, Winnefeld + July 18, 2013 + 03:02:25 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations: Preston, Rymer, Rabern, McGinn + July 25, 2013 + 01:47:44 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations: Haney, Scaparrotti + July 30, 2013 + 01:57:23 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations: Lumpkin, Morin, Rooney + October 10, + 2013 + 02:30:16 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations: Creedon, Carson, LaPlante + January 16, + 2014 + 01:49:09 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Recent Changes to the U.S. Military Retirement System + January 28, + 2014 + 03:27:12 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Current and Future Worldwide Threats + February 11, + 2014 + 02:51:55 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations--Work, McCord, Wormuth, McKeon, Shear, + Rosenbach + February 25, + 2014 + 02:35:40 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + U.S. Strategic Command and U.S. Cyber Command + February 27, + 2014 + 02:26:56 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Defense Authorization Request for Fiscal Year 2015 and the Future Years + Defense Program + March 5, 2014 + 04:01:12 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + U.S. Central Command and U.S. Africa Command + March 6, 2014 + 02:00:58 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations: Selva, Rogers + March 11, + 2014 + 02:36:47 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + The Situation in Afghanistan + March 12, + 2014 + 02:07:20 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + U.S. Northern Command and U.S. Southern Command + March 13, + 2014 + 02:18:58 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + U.S. Pacific Command and U.S. Forces Korea + March 25, + 2014 + 02:20:32 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Posture of the Department of the Navy + March 27, + 2014 + 03:17:22 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Posture of the Department of the Army + April 3, 2014 + 03:31:32 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Army Active and Reserve Force Mix + April 8, 2014 + 03:09:10 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Posture of the Department of the Air Force + April 10, + 2014 + 02:48:16 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + National Commission on the Structure of the Air Force + April 29, + 2014 + 03:01:07 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Reform of the Defense Acquisition System + April 30, + 2014 + 02:42:00 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Military Compensation + May 6, 2014 + 03:36:37 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + National Defense Authorization Act for Fiscal Year 2014 + June 11, 2014 + 00:20:55 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Unknown session)

    +
    +
    + + + Nominations + June 19, 2014 + 01:27:53 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nominations + July 10, 2014 + 02:28:03 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Testimony on Assured Access to Space + July 16, 2014 + 02:20:08 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Nomination + July 17, 2014 + 02:21:53 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    + + + Testimony on Currenty Situation in Georgia + September 3, + 2014 + 02:39:27 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Unknown session)

    +
    +
    + + + U.S. Policy Towards Iraq and Syria and the Threat Posed by the Islamic + State of Iraq and the Levant (ISIL) + September 16, + 2014 + 03:45:49 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Open session)

    +
    +
    +
    + + + Committee key documents including FY2010 authorization + 2009 + 423 + + +

    (SASC; Carl's writing)

    +
    +
    + + + Foreign Intelligence Surveillance Act + 2013 + 424 + + + + + Iraq-Carl's writings + 2011 + 424 + + + + + Kurdistan Regional Security Council-photograph from the + Chancellor + 2012 + 424 + + + + + Meeting-Boys and Girls Clubs of America memo + January 2013 + 424 + + + + + Military health + + + + Hearing memo-VA backlog-SASC and Veterans Affairs Committee + June 27, 2013 + 424 + + + + + Integrated Electronic Health Record (IEHR)-VA disability + backlog + 2013 + 424 + + + + + Mental health + + + + Army and Marine personnel in Operation Enduring Freedom assessment + memo + May 2011 + 424 + + + + + Hearing-Preventing military suicide, (SASC) + June 22, + 2010 + 424 + + + + + PTSD + + + + Emotional freedom techniques + February-April 2014 + 424 + + + + + Meeting with Fred Wilpon + September 2015 + 424 + + + + + Possible hearing, (SASC) + November-December 2010 + 424 + + + + + + + Testing for traumatic brain injury memo + October 2010 + 424 + + + + + Tricare fees memo + July 2010 + 424 + + + + + + Military personnel + + + + Dog adoption from theater memo + July 2012 + 424 + + + + + Military Spouse Career Advancement Account-aid for spouses + March 2010 + 424 + + + + + + New START ratified + December 2010 + 424 + + +

    (Carl's writing)

    +
    +
    + + + Nomination for Secretary of Defense-Chuck Hagel + February 2013 + 1047 + + +

    (Carl's writing)

    +
    +
    + + + Yellow ribbon reintegration program presentation + 2010 + 424 + + + + + Overseas Contingency Operations (OCO) + 2013 + 424 + + + + + Photographs + + + + Department of Defense-Levin with Chuck Hagel + undated + 424 + + + + + + Strengthening the Resiliency of Our Nation on the Ground Act (STRONG + Act) + 2013 + 424 + + +

    (Coast Guard)

    +
    +
    + + + Trips and Congressional delegations (CODEL)-July 7-12, 2010-United Arab + Emirates (UAE), Pakistan, and Afghanistan (CODEL Levin) + 3 folders + 424 + + +
    + + + Economic Policy + 2002-2015 + + + + Miscellaneous + 1 optical discs (DVD), 1 folder + 2013-2014 + + +

    (Includes DVD "Small Business Majority briefing September 19, 2013 video and + photos" from the Small Business Voices policy briefing; B. Heckart)

    +
    + + + Small Business Majority Briefing, Video and Photos + 2009 September 19 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Photographs of Carl Levin from the Small + Business Voices: A Discussion on Tax Policy and Entrepreneurship policy briefing + and video coverage of the full briefing.)

    +
    +
    +
    + + + Short selling + 1 optical discs (DVD; Run time: 00:25:15), 1 + folder + 2009 + + +

    (Includes a DVD from Bloomberg News "Phantom Shares" March 1, 2007; T. + Gellasch)

    +
    + + + TV + 2007 March 1 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). "Phantom Shares", A Bloomberg News Special + Report reported by Mike Schneider on stock manipulation.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + Office of the Comptroller of the Currency (OCC) preemption of state + laws + 1 optical discs + 2011 + + +

    (J. Davis, E. Bean, and T. Gellasch)

    +
    + + + OCC Preemption, Background Only + 2011 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Office of the Comptroller of the Currency + (OCC) Preemption, Background Only. Audio recording from an anonymous + source.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + American Recovery and Reinvestment Act (ARRA) + 468 + + + + ARRA, (J. Bryan) + 3 folders + 2009 + 468 + + + + + Local government funding needs, (Michigan; ARRA) + 2009 + 468 + + + + + Michigan's return on the federal dollar, (K. Meier) + August-September 2010 + 468 + + + + + + Anti-bailout bills regarding Detroit + 2013 + 468 + + +

    (Graham, Vitter, etc.)

    +
    +
    + + + Auction Rate Securities (ARS) letter, (J. Davis and T. + Gellasch) + 2008-2010 + 468 + + + + + Audit the Fed -- S.604, (J. Courville) + September 2009 + 468 + + + + + Banks + + + + Bank capital rules 2015 Basel III, 2013 + 2013-2015 + 468 + + + + + Bank capitalization FDIC assessment, (T. Gellasch) + 2009 + 468 + + + + + Credit unions, (T. Gellasch) + 2009 + 468 + + + + + Federal discount window, (auto bailout) + 2008-2009 + 468 + + + + + Flagstar (J. Davis) + 2008-early 2009 + 468 + + + + + Libor + 2012 + 468 + + + + + + Broken markets + 3 folders + 2012-2014 + 468 + + +

    (T. Gellasch, B. Hackart, and Levin notes)

    +
    +
    + + + Budco Federal Dependent Eligibility, (T. Everett) + 2011 + 468 + + + + + Capital adequacy, (B. Heckart) + 2013-2014 + 469 + + + + + CARD Act, (T. Gellasch) + 2009 + 469 + + + + + Church plans -- H.R.33, (T. Gellasch) + May-June 2012 + 469 + + + + + Committee hearings + + + + State incorporation (HSGAC; Examining State and business incorporation + practices: a discussion of the incorporation transparency and law enforcement + assistance act -- S.569) + June 2009 + 469 + + + + + Tax Haven Banks and U.S. Tax Compliance-Obtaining the Names of U.S. + Clients with Swiss Accounts (PSI) + March 4, 2009 + + + + Press + 469 + + + + + + Business Formation and Financial Crime: Finding a Legislative Solution + (Shell Corporation) (HSGAC) + November 5, + 2009 + 478 + + + + + Wall Street and the Financial Crisis: The Role of High Risk Home Loans + (PSI) + April 13, + 2010 + + + + Financial Crisis Investigation + April 13, 2011 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Full coverage of Carl Levin speaking at + the release of the Wall Street and The Financial Crisis: Anatomy of a + Financial Collapse, Majority and Minority Staff Report from the Permanent + Subcommittee on Investigations, United States Senate as part of the Financial + Crisis Investigation.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + DVDs + 2 DVDs + + + + + DVDs + 2 DVDs + + + + + DVDs + 32 DVDs + + + + + Press + 469 + + + + + Witness panel 1 + 469 + + + + + Witness panel 2 + 469 + + + + + Witness panel 3 + 469 + + + + + Working files (folder 1) + 478 + + + + + Working files (folder 2) + 478 + + +
    + + + Wall Street and the Financial Crisis: The Role of Bank Regulators + (PSI) + April 16, + 2010 + + + + DVDs + 2 DVDs + + + + + DVDs + 2 DVDs + + + + + Part 1 + 469 + + + + + Witness panel 1 + 469 + + + + + Witness panel 2 + 469 + + + + + Witness panel 3 + 469 + + + + + Witness panel 4 + 469 + + + + + Working files (folder 1) + 478 + + + + + Working files (folder 2) + 469 + + + + + + Wall Street and the Financial Crisis: The Role of Rating Agencies + (PSI) + April 23, + 2010 + + + + DVDs + 2 DVDs + + + + + DVDs + 2 DVDs + + + + + Witness panel 1 + 469 + + + + + Witness panel 2 + 469 + + + + + Witness panel 3 + 469 + + + + + Working file (folder 1) + 478 + + + + + Working file (folder 2) + 469 + + + + + + Wall Street and the Financial Crisis: The Role of Investment Banks + (PSI) + April 27, + 2010 + + + + DVDs + 3 DVDs + + + + + DVD-Exhibits + 1 DVD + + + + + Goldman Sachs + 3 DVDs + + + + + Goldman Sachs + 8 folders + 478 + + + + + Goldman Sachs key documents + 469 + + + + + Panel 1 testimony and exhibit documents (Goldman Sachs) + 479 + + + + + Panel 2 statements, questions, and exhibit documents (Goldman + Sachs) + 479 + + + + + Exhibit documents with notes (Goldman Sachs) + 479 + + + + + Witness panel 3-Goldman Sachs + 479 + + + + + Working file + 469 + + + + + + Excessive Speculation and compliance with Dodd-Frank Act + (PSI) + November 3, + 2011 + 479 + + + + + Excessive Speculation and Compliance with the Dodd-Frank Act-DVD + (PSI) + 1 DVD + November 3, + 2011 + + + + + Compliance with Tax Limits on Mutual Fund Commodity Speculation + (PSI) + January 26, + 2012 + 479 + + + + + U.S. Vulnerabilities to Money Laundering, Drugs, and Terrorist + Financing: HSBC Case History + July 17, 2012 + + + + Meeting of the Homeland Security and Governmental Affairs + Committee + + + + Disc 1 of 2 + 2012 July 17 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Homeland Security and Governmental + Affairs Committee Hearing on U.S. Vulnerabilities to Money Laundering, + Drugs, and Terrorist Financing: HSBC Case History. 9:25am-12:35pm. SD-106. + [Disc 1 of 2])

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Disc 2 of 2 + 2012 July 17 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Homeland Security and Governmental + Affairs Committee Hearing on U.S. Vulnerabilities to Money Laundering, + Drugs, and Terrorist Financing: HSBC Case History. 2:00pm-4:47pm. SD-106. + [Disc 2 of 2])

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + Questions and testimony (J. Bryan) + 8 subfolders + 479 + + + + + DVDs + 2 DVDs + + +
    + + + Taxes offshore profit shifting + 12 subfolders + September 20, + 2012 + 479 + + +

    (Offshore Profit Shifting and the U.S. Tax Code; PSI)

    +
    +
    + + + JPMorgan Chase Whale Trades: A Case History of Derivatives Risks and + Abuses- (PSI) + 2 DVDs + March 15, + 2013 + + + + + Offshore Profit Shifting and the U.S. Tax Code-Part 2 (Apple Inc.) + (PSI) + May 21, 2013 + + + + Background information + 469 + + + + + DVDs + 2 DVDs + + + + + Witness panel 1 + 479 + + + + + Witness panel 2 + 479 + + + + + Working file + 469 + + + + + + Offshore Tax Evasion: The Effort to Collect Unpaid Taxes on Billions in + Hidden Offshore Accounts-DVDs (PSI) + 2 DVDs + February 26, + 2014 + + + + + Caterpillar's Offshore Tax Strategy + April 1, 2014 + + + + Notes and transcripts + 469 + + + + + Witness panel 1 + 479 + + + + + Witness panel 2 + 479 + + + + + Witness panel 3 + 469 + + + + + + Conflicts of Interest, Investor Loss of Confidence, and High Speed + Trading in U.S. Stock Markets-DVD (PSI) + June 17, 2014 + + + + + The Abuse of Structured Financial Products: Misusing Basket Options to + Avoid Taxes and Leverage Limits (PSI) + July 22, 2014 + + + + Meeting of the Homeland Security and Governmental Affairs + Committee + + + + Disc 1 of 2 + 2014 July 22 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Homeland Security and Governmental + Affairs Committee Hearing on The Abuse of Structured Financial Products: + Misusing Basket Options to Avoid Taxes and Leverage Limits. 9:30am-1:06pm. + SH-216. [Disc 1 of 2])

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Disc 2 of 2 + 2014 July 22 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Homeland Security and Governmental + Affairs Committee Hearing on The Abuse of Structured Financial Products: + Misusing Basket Options to Avoid Taxes and Leverage Limits. 1:06pm-2:26pm. + SH-216. [Disc 2 of 2])

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + Basket options + 13 subfolders + 480 + + + + + DVDs + 2 DVDs + + + + + DVDs + 2 DVDs + + +
    + + + Wall Street Bank Involvement with Physical Commodities + (PSI) + 3 folders + November 20, + 2014 + 480 + + +
    + + + Commodity Futures Trading Commission (CFTC) position limits, (T. + Everett) + 2014 + 470 + + + + + Community banks + December 2009 + 470 + + + + + Consumer financial regulation and protections + 2009-2011 + 470 + + + + + Correspondence + + + + Approved letters -- economic policy, (T. Everett) + 2012-2013 + 470 + + + + + Miscellaneous to and from Carl Levin + 2009-2012 + 470 + + + + + + Corporate profits data + 2014 + 470 + + +

    (wealth and income disparity; T. Everett)

    +
    +
    + + + Debt ceiling + July-August 2011 + 470 + + +

    (Carl's writings)

    +
    +
    + + + Derivatives + + + + Bank of America derivatives 23A letter, October 201 + 470 + + + + + Derivatives clearing Dodd-Frank Act titles VII-VIII + 2011-2013 + 470 + + + + + Detroit derivatives deal + 2012-2013 + 470 + + + + + MF Global + November 2011 + 470 + + + + + + Detroit Cemetery and Securities and Exchange Commission (SEC) issues, (B. + Heckart) + 2013 + 470 + + + + + Dodd-Frank financial reform bill including Merkley Levin + 4 folders + July 2010 + 470 + + +

    (Carl's writings)

    +
    +
    + + + Section 621 -- Dodd-Frank comment letter + December 2011 + 471 + + + + + Economic recovery + 2009 + 471 + + +

    (Carl's writings)

    +
    +
    + + + Economic Stimulus Act of + 2008 + 471 + + + + + Electronic Communications Privacy Act (ECPA) -- S.607 + 2013 + 471 + + + + + Federal Deposit Insurance Corporation (FDIC) Inspector General study -- + H.R.2056 (T. Gellasch) + 2011 + 471 + + + + + Fraud Enforcement and Recovery Act -- S.386, (T. Gellasch) + 2 folders + 2009 + 471 + + + + + Federal estate tax reform, Marketplace Fairness Act, inequality, and debt + ceiling + 2 folders + 2011-2014 + 471 + + +

    (Includes letters, remarks, and memos; T. Everett)

    +
    +
    + + + Federal programs that could aid Detroit, (T. Everett) + 2013 + 471 + + + + + Federal Real Property Asset Management Reform Act of (T. + Everett) + 2013 + 471 + + + + + Federal transparency, (T. Gellasch) + 2009-2011 + 471 + + + + + Financial nominations issues + 2011 + 471 + + +

    (Includes a memo from 2001 and 2008 T. Gellasch)

    +
    +
    + + + Government sponsored enterprises (GSE) reform + + + + 2004-2010 + 471 + + + + + 2005-2006 + 471 + + + + + + High frequency trading and dark pools + 2013 + 471 + + + + + High speed trading + 2014 + 471 + + + + + Housing stimulus, A. Ellerbee and T. Gellasch + 10 subfolders + 2008-2009 + 471 + + + + + Income inequality + 2014 + 471 + + + + + Inequality, corporate tax reform, and inversions, (Carl notes; T. + Everett) + 2013-2014 + 471 + + + + + Isakson and Boxer housing bills + 2011 + 471 + + + + + Jump Start Our Businesses (JOBS) Act, (B. Heckart) + 2 folders + 2013-2014 + 472 + + + + + Market structure background (T. Gellasch) + + + + Part 1 + 2 folders + 2009-2011 + 472 + + + + + Part 2 + 2009 + 472 + + + + + Part 3 + 2010-2011 + 472 + + +

    (Hearing -- Examining the Efficiency, Stability, and Integrity of the U.S. + Capital Markets, December 8, 2010 PSI)

    +
    +
    + + + PSI hearing notebook-Examining the Efficiency, Stability, and Integrity + of the U.S. Capital Markets + 2 folders + 2010 + 472 + + +
    + + + Member business and commercial lending loans, (T. Gellasch) + 2009-2010 + 472 + + + + + Miscellaneous + 2013-2014 + 472 + + +

    (Includes DVD "Small Business Majority briefing September 19, 2013 video and + photos" from the Small Business Voices policy briefing; B. Heckart)

    +
    +
    + + + Mortgage fraud, (T. Gellasch) + September 2009 + 472 + + + + + Mortgage legislation, (T. Gellasch) + 2009 + 472 + + + + + Municipal bond markets + 2009-2011 + 473 + + +

    (Also includes regulatory reform markup delays)

    +
    +
    + + + No contract to corporate expats, (T. Hensler, J. Davis, and T. + Gellasch) + 4 subfolders + 2002-2014 + 473 + + + + + Nominations + + + + Office of Management and Budget -- Sylvia Matthews Barwell, + (HSGAC) + April 2013 + 1047 + + + + + Securities and Exchange Commission (SEC) Chairman -- Mary Jo + White + 2013 + 1047 + + + + + + Notes + undated + 473 + + + + + Office of the Comptroller of the Currency (OCC) preemption of state laws, + 2011 + 473 + + +

    (Includes CD; J. Davis, E. Bean, and T. Gellasch)

    +
    +
    + + + Online lending, 2013(T. Everett) + 473 + + + + + Qualified mortgages caps and fess, (J. Danielson) + 2014 + 473 + + + + + Real Estate Investment Trusts (REITs) + 2013 + 473 + + + + + Reed-Landrieu-Levin investor protection + March 22, 2012 + 473 + + +

    (Carl's writings)

    +
    +
    + + + Regulatory reform cost benefit -- S.3468 + 2012-2013 + 473 + + + + + Risk retention, (T. Gellasch) + 2010-2011 + 473 + + + + + Securities and Exchange Commission (SEC) fix -- Morrison + 2013 + 473 + + + + + SEC and Commodity Futures Trading Commission (CFTC) + 2012-2013 + 473 + + +

    (budget, CR, and user fees)

    +
    +
    + + + Sequestration, (J. Danielson) + 2012-2013 + 473 + + + + + Sequestration + 2 folders + 2013 + 473 + + + + + Short selling, (T. Gellasch; Includes a DVD -- Bloomberg News Phantom + Shares from March 1, 2007) + 2009 + 473 + + + + + Small business credit -- treasury, (A. Pascale) + 2014 + 473 + + + + + Stock Act + 2011-2012 + 473 + + +

    (Congressional insider trading)

    +
    +
    + + + Stock options act, (Ending Excessive Corporate Deduction for Stock + Options Act; Levin sponsor; J. Davis and T. Gellasch) + 2007-2010 + 474 + + + + + Systemic risk regulation, (T. Gellasch) + 2009 + 474 + + + + + Tax + + + + 1099 reporting -- rescission pay (T. Gellasch) + 2011 + 474 + + + + + 3% withholding for government contractors + 2011 + 474 + + + + + Baucus-Hatch blank slate + July 2013 + 474 + + +

    (tax reform proposals)

    +
    +
    + + + BBC Current Affairs "Tax Me if You Can," + April 2, 2009 + 474 + + +

    (DVD)

    +
    + + + BBC Panorama Current Affairs "Tax Me If You Can" + 2009 April 02 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). BBC's Panorama current affairs, "Tax Me If + You Can" on getting tough on tax havens.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + Bingaman homebuyer credit + 2009 + 474 + + + + + Bush tax cut expiration + 2011 + 474 + + + + + Carl's tax loopholes material, (T. Everett) + 2014 + 474 + + + + + Carried interest tax, (T. Gellasch) + 2009 + 474 + + + + + Contracts taxation -- S.1256 Fall 201 + 474 + + + + + Corporate effective tax rate + 2009 + 474 + + + + + Detroit Economic Growth Corporation (DEGC) tax issue + April 2012 + 474 + + +

    (Book Cadillac project; T. Gellasch)

    +
    +
    + + + Energy tax amendment joint tax estimate + February-March 2012 + 474 + + + + + Energy tax provisions + 2010-2011 + 474 + + + + + Estate tax + 2010 + 474 + + + + + Great Lakes tonnage tax, (J. Davis and T. Gellasch) + 2006-2009 + 474 + + + + + Low profit limited liability companies (L3Cs) + 2009 + 474 + + + + + Management and control -- S.1844 + 2013 + 474 + + +

    (Management and control loophole provision in Levin offshore tax bill -- S.1533 + B. Heckart)

    +
    +
    + + + Miscellaneous, (B. Heckart) + 2013-2014 + 474 + + + + + Miscellaneous tax issues, (B. Heckart) + 2013-2014 + 474 + + + + + New market tax credits, (T. Gellasch) + 2007-2010 + 474 + + + + + New markets tax credit + 2013 + 474 + + + + + Renewable Identification Numbers (RINs), (B. Heckart) + 2013 + 474 + + + + + Tax havens + + + + Levin-Conrad Offshore tax and energy security amendment + 2011 + 474 + + + + + Summary information -- Levin-Conrad -- S.1813 + March 2012 + 474 + + + + + Offshore taxation and repatriation holiday + 2011 + 474 + + +

    (Includes PSI Majority Staff Report -- Repatriating Offshore Funds: 2004 tax + windfall for select multinationals; T. Gellasch)

    +
    +
    + + + Romney offshore tax + 2012 + 474 + + + + + Stop tax haven abuse, (T. Everett) + 2013 + 474 + + + + + Stop Tax Haven Abuse -- S.1533 (B. Heckart) + 2013-2014 + 474 + + + + + Stop Tax Haven Abuse Act, (T. Everett) + 2014 + 474 + + + + + Tax havens, (J. Davis and T. Gellasch) + 2 folders + 2005-2009 + 474 + + + + + Tax haven bill + 2009 + 475 + + + + + Tax havens-corporate inversions, 2009, 2011 (T. Gellasch) + 2009-2011 + 475 + + +
    + + + Tax inversions + + + + 2014 + 475 + + +

    (B. Heckart)

    +
    +
    + + + Corporate inversions + 2014 + 475 + + + + + Corporate inversion bill + 2014 + 475 + + + + + Inversions bill -- State Rep. Andy Schor, (T. Everett) + October 21, + 2014 + 475 + + + + + Inversion contracting bill + 2014 + 475 + + +

    (Fair Federal Contracts Act; inverted domestic corporations; T. Everett)

    +
    +
    + + + Talking points, news articles, and notes + 2014 + 475 + + +
    + + + Tax loopholes + + + + 2 folders + August 2010-July 2012 + 475 + + +

    (T. Gellasch)

    +
    +
    + + + 2014 + 475 + + +

    (J. Danielson)

    +
    +
    + + + Closing loopholes + 2013 + 475 + + + + + Closing loopholes-revenue group + 2013-2014 + 475 + + + + + CUT loophole + + + + 2 folders + March 2011-April 2012 + 475 + + + + + 2 folders + February 2012-April 2013 + 475 + + + + + + CUT loopholes letter, (T. Everett) + 2014 + 476 + + + + + Final tax loopholes letter to Democrats, (T. Everett) + 2014 + 476 + + + + + Loopholes + 2014 + 476 + + + + + Tax code and loopholes, (T. Gellasch and B. Heckart) + 2012-2014 + 476 + + +
    + + + Unrelated business income tax + 2009 + 476 + + +
    + + + Taxes and budget issues -- Carl file + 2011-2012 + 476 + + + + + Temporary Account Guarantee (TAG) program + 2012 + 476 + + + + + Title Insurance bill -- S.1577 (B. Heckart) + + + + 2 folders + 2013-2014 + 476 + + + + + Material from 3rd partners + 2013-2014 + 476 + + + + + Quicken loans + 2013-2014 + 476 + + + + + + Troubled Asset Relief Program (TARP) (T. Gellasch) + + + + Executive Compensation bill + March-April 2009 + 476 + + + + + Repayment and warrants + 2009 + 476 + + + + + + US-EU Trade (TTIP) on Financial Services and cross border swaps + (CFTC) + 2013 + 476 + + + + + Volcker rule + + + + 2010 + 476 + + + + + 6 subfolders + 2010-2011 + 477 + + + + + Letters to and from regulators + 2010-2012 + 477 + + + + + Merkley-Levin conflicts of interest + 2010-2011 + 477 + + +

    (Includes PSI wall street hearing exhibits for Role of Credit Rating + Agencies)

    +
    +
    + + + Merkley-Levin FSOC comment letters and study + 2010-2011 + 477 + + + + + Miscellaneous + 2010-2012 + 477 + + +
    + + + Wall Street bailout, foreclosure prevention, and regulatory + laxity + 2009 + 477 + + +

    (Carl's writings)

    +
    +
    +
    + + + Education + 2011-2013 + + + + Aspire to Go Higher in Education campaign + 1 folder, 1 optical discs (DVD) + 2012 + + + + Aspire to go Higher in Education Campaign + 2012 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Promotional video for the Aspire to GO + HIGHER in Education Campaign, featuring J.E. Clark Preparatory Academy in + Detroit, MI under the direction of Mr. Willie Wood. Includes a message from + Senator Carl Levin as a community partner.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + Affirmative action and Universities + + + + 3 folders + 2011-2013 + 491 + + + + + 2012-2013 + 491 + + + + + + Aspire to Go Higher in Education campaign + 2012 + 491 + + +

    (Includes a DVD)

    +
    +
    + + + Make my lab WoRx -- Phillipe Ribiero, (M. Nykaza) + 2013 + 491 + + +
    + + + Energy and natural resources + 2000-2014 + + + + Appropriations and funding + + + + FY2010 Dear Colleague -- environment funding (A. Yates) + 565 + + + + + FY2010 Energy and water + 565 + + + + + FY2010 Great Lakes (GLTF; J. Mulinex) + 565 + + + + + FY2011 Dear Colleague -- environment funding (A. Yates) + 2 folders + 565 + + + + + FY2011-FY2015 miscellaneous + 7 subfolders + 565 + + +

    (Includes energy and water, Great Lakes, Interior, etc.)

    +
    +
    + + + FY2012 Dear Colleague -- environment funding (A. Yates) + 565 + + + + + FY2012 FY2013 and FY2015 -- Great Lakes (A. Yates) + 5 subfolders + 565 + + + + + FY2013 Dear Colleague -- environment funding (A. Yates and T. + Sutton) + 565 + + + + + FY2014 Dear Colleague -- environment funding (A. Yates and H. + Keller) + 2 folders + 565 + + + + + FY2014 Great Lakes + 565 + + + + + FY2014 STEM (H. Keller) + 565 + + + + + FY2015 Energy and science (C. Muchanic) + 565 + + + + + FY2015 Environment Dear Colleagues (A. Yates) + 565 + + + + + FY2015 Environmental Protection Agency (EPA) brownfields letter (H. + Keller) + 565 + + + + + FY2015 Great Lakes (A. Yates) + 565 + + + + + FY2015 Great Lakes Restoration Initiative (GLRI) + 565 + + + + + FY2015 Great Lakes navigation funding + 565 + + + + + Facility for Rare Isotope Beams (FRIB) (M.L.Wagner) + + + + Energy and Water appropriations letter + September 23, + 2009 + 565 + + + + + FY2011 FRIB letter + 565 + + + + + FY2011 ITER funding + 565 + + + + + FY2011 nuclear physics letter + 565 + + + + + FY2013 + 565 + + + + + FY2013 Department of Energy Congressional Budget Request budget + highlights + 565 + + + + + FY2013 fusion energy Congressional budget + 565 + + + + + FY2013 funding Office of Science and Office of Nuclear + Physics + 565 + + + + + FY2013 appropriations report language and talking points + 565 + + + + + FY2013 budget FRIB press coverage + 565 + + + + + FY2013 science budget -- nuclear physics + 565 + + + + + FY2014 budget requests include FRIB + 565 + + + + + FY2014 Levin-Stabenow-Schumer-Gillibrand-Kaine appropriations -- DOE + office of nuclear physics + 566 + + + + + FY2014 nuclear physics budget request + 566 + + + + + Escape clause language + December 2011 + 566 + + + + + Funding + 2011-2012 + 566 + + + + + Funding + 2012 + 566 + + + + + Funding + January-March 2012 + 566 + + + + + FRIB + 2011 + 566 + + + + + FRIB + January 1-13, 2012 + 566 + + + + + FRIB + 2012 + 566 + + + + + FRIB + 2 folders + 2013 + 566 + + + + + FRIB + 2014 + 566 + + + + + FRIB calls + December 2011 + 566 + + + + + FRIB follow-up with Carl, phone calls, E-W, and ITER, (International + Thermonuclear Experimental Research Reactor) + June 2011 + 566 + + + + + FRIB funding charts + 2010 + 566 + + + + + FRIB greatest hits memos + 2010-2012 + 566 + + + + + FRIB notes from summer and fall 2012 and some notes from + NSAC + 2012-2013 + 566 + + + + + FRIB site prep -- photos and headline + 2012 + 566 + + + + + FRIB users + 2012 + 566 + + + + + Carl FRIB files + 2012 + 566 + + + + + Meetings + + + + Brinkman and MSU President Simon + September-October 2010 + 566 + + + + + FY2013 Feinstein meeting -- FRIB + March 27, + 2012 + 566 + + + + + Prep for appropriations meeting regarding FRIB + March 27, + 2012 + 566 + + + + + Kastner meeting, (C. Muchanic) + January 9, + 2014 + 566 + + + + + Mike Kreisler meeting -- FRIB user national security + March 2012 + 566 + + + + + Moniz meeting + March 13, + 2013 + 566 + + + + + Rouse and Chu meetings -- charts + January 2012 + 566 + + + + + + Memos + 2006-2012 + 566 + + + + + Michigan delegation letter + November 2010 + 566 + + +

    (Includes memos regarding phone call with Rouse and meeting with Governor + Snyder)

    +
    +
    + + + Nuclear physics letter + January 31, + 2013 + 566 + + + + + NSAC report, (Nuclear Science Advisory Committee) + January 2013 + 566 + + + + + Presentation -- World-leading nuclear physics research with beams of + rare isotopes + 2011 + 566 + + +

    (Presented by Laboratory Director C. Konrad Gelbke)

    +
    +
    + + + Rare Isotope Accelerator (RIA) and cancellation + 2004-2012 + 566 + + +

    (Includes information on Energy Conversion Devices -- ECD)

    +
    +
    + + + Teamsters letter + December 22, + 2011 + 566 + + +
    + + + Great Lakes appropriations letters, (A. Yates and J. + Mulinex) + 2000-2010 + 566 + + +
    + + + Advanced Technology Vehicle Manufacturing Loan Program -- Section + 136 + 2 subfolders + 2011 + 566 + + + + + Air quality, (A. Yates) + 10 subfolders + 2010-2013 + 566 + + + + + American Recovery and Reinvestment Act (ARRA) batteries (M.L. + Wagner) + + + + I + 8 subfolders + 2009 + 567 + + +

    (Includes legislation, correspondence, etc.)

    +
    +
    + + + II + 18 subfolders + 2009 + 567 + + +

    (Includes legislation, funding requests, tax information, etc.)

    +
    +
    + + + III + 23 subfolders + 2009 + 567 + + +

    (Includes GM, DOW, University of Michigan, Satki3, A123 Systems, Michigan + companies, etc.)

    +
    +
    + + + IV + 17 subfolders + 2009 + 567 + + +

    (Includes GM, A123 Systems, Army, Johnson Controls, TACOM and TARDEC, + legislation, etc.)

    +
    +
    + + + 9 subfolders + 2011 + 567 + + +

    (Includes legislation, Chevy Volt, A123 Systems, etc.)

    +
    +
    +
    + + + American Recovery and Reinvestment Act (ARRA) -- advanced battery + manufacturing + + + + Stimulus book + 6 subfolders + 2009 + 567 + + + + + I + 18 subfolders + 2011 + 568 + + + + + II + 16 subfolders + 2011 + 568 + + + + + III + 10 subfolders + 2011 + 568 + + + + + IV + 9 subfolders + 2011 + 568 + + + + + + Auto + + + + Advanced vehicle technology, (A. Pascale) + 2013 + 568 + + + + + Advanced vehicle technology manufacturing (AVTM), (C. + Muchanic) + 2013 + 568 + + + + + Advanced vehicle technology, (C. Muchanic) + 2013-2014 + 568 + + + + + Auto and interviews + 2009 + 568 + + +

    (Carl file)

    +
    +
    + + + 8 subfolders + 2008 + 568 + + +

    (M.L. Wagner and A. Yates)

    +
    +
    + + + Climate change, (M.L. Wagner) + 4 subfolders + 2008 + 568 + + +
    + + + Batteries + + + + A123 Systems sale CFLUS process, Johnson Controls, and + bankruptcy + 2012 + 569 + + + + + SATKI 3 batteries, (M.L. Wagner and A. Yates) + 25 subfolders + 2011 + 569 + + + + + Satki3 batteries + 2011-2012 + 569 + + + + + Batteries -- SATKI3, (A. Pascale and C. Muchanic) + 2013 + 569 + + + + + Battery recharging bill -- S.739 + 10 subfolders + 2012 + 569 + + +

    (Levin sponsor; M.L. Wagner)

    +
    +
    +
    + + + Biomass thermal utilization, (C. Muchanic) + 2013 + 569 + + + + + BP oil spill, (A. Yates) + 2010 + 569 + + + + + Brownfield redevelopment Buick City Flint + 2009 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + California waiver + 18 subfolders + 2008-2009 + 1110 + + + + + Canadian trash + 2005-2006 + 569 + + + + + Canadian trash, (A. Yates) + 13 subfolders + 2005-2011 + 569 + + + + + Canadian trash, (A. Yates) + 2007-2014 + 570 + + + + + Carl's writings-Climate change, CAP and trade, and California + waiver + September 2009 + 570 + + + + + Cass River Project + 2009 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Chemical security markup, (HSGAC; A. Yates) + June 2014 + 570 + + + + + Clean Air Act issues, (A. Yates) + 7 subfolders + 2011-2012 + 570 + + + + + Climate (A. Yates) + + + + Carl's materials part 1 + 8 subfolders + 2008-2010 + 570 + + + + + Carl's materials part 2 + 2 subfolders + 2008-2010 + 570 + + + + + Global climate change + 7 subfolders + 2008-2011 + 570 + + + + + Manufacturing energy climate + 5 subfolders + 2008-2011 + 570 + + + + + + Climate change, (A. Yates) + 4 subfolders + 2013-2014 + 570 + + + + + Coal ash, (A. Yates) + 4 subfolders + 2012-2013 + 570 + + + + + Coal ash -- S.S. Badger, (A. Yates) + 4 subfolders + 2008-2014 + 571 + + + + + Congressional Executive Commission on China (CECCR) China + hearing + 2010 + 571 + + +

    (Levin attended)

    +
    +
    + + + Detroit petroleum COKE, (H. Keller) + 2013 + 571 + + + + + Dowding and MAG Industrial Automation Systems + August 2009 + 571 + + + + + Electric utilities environmental regulations, (A. Yates) + 6 subfolders + 2011-2013 + 571 + + + + + Enbridge pipeline + + + + Line 6B restart plan, (A. Yates) + 2010 + 571 + + + + + Oil spill, (A. Yates) + 2010-2012 + 571 + + + + + Enbridge oil spill, (T. Sutton) + 2 folders + 2012 + 571 + + + + + Pipeline safety + 2013-2014 + 571 + + +

    (Line 5 under the straits of Mackinac; H. Keller)

    +
    +
    +
    + + + Energy Efficiency bill amendments + undated + + +

    [access item]

    +
    +
    + Online +
    + +

    (S.1392)

    +
    +
    + + + Energy efficiency, (H. Keller) + 2014 + 571 + + + + + Environment files, (J. Mulinex) + 2009-2010 + 571 + + + + + Environment, land management, and conservation, (A. Yates) + 8 subfolders + 2005-2014 + 571 + + + + + Environmental Protection Agency (EPA) + + + + Brownfield program, (H. Keller) + 2013 + 571 + + + + + Carbon dioxide regulations for power plans, (A. Yates) + 3 subfolders + 2011-2014 + 571 + + + + + + Environmental tax credits and easements, (A. Yates) + 6 subfolders + 2003-2013 + 571 + + + + + Ethanol, (M.L. Wagner) + 2011 + 572 + + + + + Flood insurance reauthorization, (T. Everett) + 2012 + 572 + + + + + Great Lakes + + + + 18 subfolders + 2007-2014 + 572 + + +

    (Includes Sewer, wetlands, drinking water, beaches, waste transportation, etc; + A. Yates)

    +
    +
    + + + 7 subfolders + 2012-2014 + 572 + + +

    (A. Yates)

    +
    +
    + + + Algal bloom and Toledo drinking water ban + August 2014 + 572 + + + + + Asian Carp + 2014 + 572 + + + + + Asian Carp mass marketing, (A. Yates) + 12 subfolders + 2010-2013 + 572 + + + + + Ballast water invasive species, (A. Yates) + 13 subfolders + 2009-2014 + 572 + + + + + Climate action plan, (H. Keller) + 2013 + 573 + + + + + Harbor maintenance, (A. Yates) + 2006-2013 + 573 + + + + + Legislative history and Levin accomplishments summary + 2014 + 573 + + + + + Navigation harbor maintenance, (A. Yates) + 17 subfolders + 2006-2012 + 573 + + + + + Navigation -- Army Corps of Engineers + 10 subfolders + 2011-2014 + 573 + + +

    (Includes funding and appropriations; A. Yates)

    +
    +
    + + + Network of sanctuaries, (A. Yates) + 6 subfolders + 2013-2014 + 573 + + + + + Soo Lock replacement -- Army Corps of Engineers (ACOE) + 2005-2009 + 573 + + +

    (ARRA funding; A. Yates)

    +
    +
    + + + Water levels, (H. Keller) + 2013 + 573 + + + + + Whitefish Point Great Lakes Shipwreck Museum + 2009 + 573 + + +

    (Includes a DVD; A. Yates)

    +
    + + + Storm Warriors, Heroes of the Shipwreck Coast + 2007 August + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Documentary on the members of the U.S. + Light House Service and U.S. Life Saving Service at the Shipwreck Coast on + Lake Superior.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    +
    + + + Great Lakes Ecosystem Protection Act (GLEPA) legislation, (A. + Yates) + 6 subfolders + 2010-2014 + 574 + + + + + Great Lakes Task Force (GLTF) + + + + 2007-2011 + 574 + + +

    (Includes trash, nuclear waste, refinery expansion, and invasive species; A. + Yates)

    +
    +
    + + + 2014 + 574 + + +
    + + + Great Lakes Water Protection Act, (H. Keller) + 2013 + 574 + + + + + Hamilton Dam and Flint River Improvements + 2010 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Hamilton Dam project, (C. Muchanic) + 2011 + 574 + + + + + Harbor Maintenance Trust Fund (HMTF), (A. Yates) + 2012 + 574 + + + + + Invasive species, (J. Mulinex) + 2011 + 574 + + + + + Invasive species + 2013 + 574 + + +

    (Invasive Fish and Wildlife Prevention Act; H. Keller)

    +
    +
    + + + Kalamazoo River oil spill, (Michigan; A. Yates) + 2010 + 574 + + + + + Kerry response + 2009-2010 + 574 + + +

    (Climate changes, auto, and energy memos; M.L. Wagner)

    +
    +
    + + + Liquefied natural gas (LNG) exports, (C. Muchanic) + 2014 + 575 + + + + + Michigan Biotechnology Institute (MBI) + + +

    (Partnered with MSU; M.L. Wagner)

    +
    + + + AFEX biofuels + + + + 10 subfolders + 2010 + 575 + + + + + 2 subfolders + 2013 + 575 + + + + + + Biofuels + 4 subfolders + 2009 + 575 + + + + + Biofuels briefing + July 2008 + 575 + + +

    (DOE, MBI, MSU)

    +
    +
    + + + Mascoma + October 2008 + 575 + + + + + Mascoma process versus AFEX + 2008 + 575 + + +
    + + + Michigan Municipal Electric Association (MECA), (C. Muchanic) + 2014 + 575 + + + + + Michigan oil spill articles, (A. Yates) + 2010 + 575 + + + + + Michigan related projects and legislation + September-October 2014 + 575 + + + + + Mining -- County Road 595 Marquette + 2012 + 575 + + +

    (Michigan; A. Yates)

    +
    +
    + + + Miscellaneous + 2009 + 2013 + 575 + + +

    (Cash for Clunkers, Department of Energy (DOE) opportunity announcement, and + foreign policy 1978 and 1980 M.L. Wagner)

    +
    +
    + + + Miscellaneous energy and environment, (A. Yates) + 8 subfolders + 2010-2014 + 575 + + + + + NNIN and nanotechnology, (National Nanotechnology Infrastructure Network; + C. Muchanic) + 2014 + 575 + + + + + National Oceanic and Atmospheric Administration (NOAA) weather satellite, + (A. Yates) + 2011 + 575 + + + + + Nomination -- Department of Energy (DOE) General Counsel -- Steven + Croley, (C. Muchanic) + 2014 + 1047 + + + + + Nuclear waste -- Ontario Power, (H. Keller) + 2013-2014 + 575 + + + + + Oil and oil spills, (A. Yates) + 10 subfolders + 2010-2014 + 575 + + + + + Pipeline safety, (A. Pascale) + 2010-2011 + 575 + + + + + Port modernization -- Panama Canal expansion Great Lakes water levels, + (A. Yates) + 4 subfolders + 2011-2013 + 575 + + + + + Propane shortage, (C. Muchanic) + 2014 + 575 + + + + + Public health and chemicals (A. Yates) + 8 subfolders + 2005-2014 + 576 + + + + + Renewable fuel standard (RSF) manufacturing, (C. Muchanic) + 2014 + 576 + + + + + Solar energy, (C. Muchanic) + 2014 + 576 + + + + + St. Clair River compensating works, (Michigan; A. Yates) + 2013 + 576 + + + + + Thunder Bay, (A. Yates) + 10 subfolders + 2009-2011 + 576 + + + + + Thunder Bay National Marine Sanctuary expansion (A. Yates) + 13 subfolders + 2011-2014 + 576 + + + + + Toxic Substance Control Act, (H. Keller) + 2013-2014 + 576 + + + + + Water, (A. Yates) + 14 subfolders + 2008-2014 + 576 + + + + + Water infrastructure, (A. Yates) + 2009-2010 + 577 + + + + + Water Resources Development Act (WRDA) (Michigan; A. Yates) + + + + 5 subfolders + 2008-2013 + 577 + + + + + 7 subfolders + 2013 + 577 + + + + + Conference and Great Lakes navigation + 7 subfolders + 2012-2013 + 577 + + + + + Conference + 5 subfolders + 2013 + 577 + + + +
    + + + Foreign Policy + 1982-2014 + + + + Afghanistan-second half of + 2011 + + + + News articles + October-December 2011 + 630 + + + + + Remarks for the Council on Foreign Relations + October 21, + 2011 + 630 + + +

    (B. Monahan and G. Trowbridge SASC memo)

    +
    +
    + + + Point papers for the Council on Foreign Relations speech, (R. DeBobes + SASC memo) + October 20, + 2011 + 630 + + + + + News articles since trip + July-October 2011 + 630 + + +

    (Includes SASC memo)

    +
    +
    + + + Recent quotes by various people regarding Iraq, Afghanistan, and + Iran + September-October 2011 + 630 + + +
    + + + Afghanistan + 3 folders + 2014 + 630 + + +

    (Includes CODEL Levin March 27-31, 2014 and CODEL Levin July 4-7, 2014)

    +
    +
    + + + China-Tourism visa issues, (A. Pascale and J. Courville) + 2009 + 630 + + + + + Cuba-staff communications (SASC) + + + + Senator Dorgan's Freedom to Travel to Cuba Act + July 15, 2009 + 630 + + + + + Expanding military-to-military engagement with Cuba + May 2010 + 630 + + + + + Main facts regarding the American Naval Base at Guantanamo + Bay + undated + 630 + + +

    (Includes DVD from July 2009 post-December 2010)

    +
    +
    + + + Telephone call with the National Security Council staff re: Cuba travel + regulations + January 14, + 2011 + 630 + + + + + Letter to President Raul Castro-signature needed + February 15, + 2011 + 630 + + + + + Reintroducing the Freedom to Travel to Cuba Act + February 15, + 2011 + 630 + + + + + Senator Rubio Cuba amendment to FAA reauthorization bill + February 17, + 2011 + 630 + + + + + Student Loan Payment Deferments for U.S. Students attending the Latin + American Medical School (ELAM) February 25 + 2011 + 630 + + + + + Letter to General Raul Castro Ruz + March 16, + 2011 + 630 + + + + + Follow-up: Introduction and Possible Co-sponsorship of the Freedom to + Travel to Cuba Act + April 15, + 2011 + 630 + + + + + Two requests from Alan Gross' attorney + May 3, 2011 + 630 + + + + + Notes on Alan Gross and René Gonzalez + June 2011 + 631 + + + + + Levin proposal regarding Gross and Gonzalez + September 2011 + 631 + + + + + Sign-on Letter regarding Alan Gross + November 15, + 2011 + 631 + + + + + Cuban 5 case + February-May 2012 + 631 + + + + + Memos + March 2012 + 631 + + + + + Meeting with the Cuban Ambassador + April 17, + 2012 + 631 + + + + + Cuba sanctions related provision in House defense bill + June 18, 2012 + 631 + + + + + Sign-on letter to Raul Castro relating to Alan Gross + September 10, + 2012 + 631 + + + + + U.S. Relations with Cuba-Levin statement + November 2012 + 631 + + + + + Cardin-Moran resolution on Alan Gross + November 26, + 2012 + 631 + + + + + Requested letter to the Chief of the Cuban Interests Section + December2012 + 631 + + +
    + + + Georgia + 2008 + 631 + + +

    (Carl's writings)

    +
    +
    + + + Iran + 2011 + 631 + + +

    (Carl's writings)

    +
    +
    + + + Iraq + + + + Facing Extinction: Assyrian Christians in Iraq + 2009 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Documentary on Assyrian Christians in Iraq. + Narrated by Jim Caviezel. Commentary by U.S. Senator Carl Levin, U.S. + Congresswoman Anna Eshoo, and U.S. Congressman Frank Wolf.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Pre-war intelligence-cable declassification, March + December 2014 + 631 + + + + + Religious minorities-staff communications (SASC) + + + + Memos + June-July 2009 + 631 + + + + + Request for assistance from Joe Kassab re: Iraqi Prime Minister's + U.S. visit + July 21, + 2009 + 631 + + + + + Draft Resolution-Plight of Religious Minorities in Iraq + August 6, + 2009 + 631 + + + + + Refugees International event-talking points + March 17, + 2010 + 631 + + + + + Memorial Day recess visit to Detroit area by Michael + Corbin + May 14, + 2010 + 631 + + +

    (State Department's Special Coordinator for Iraq's Minority Communities)

    +
    +
    + + + Update on Levin Resolution re: Iraqi religious minorities + May-June 2010 + 631 + + + + + Follow-up to meeting with UN Deputy HCR Alexander + Aleinikoff + June-July 2010 + 631 + + + + + Recent Iraqi Deportation cases-Sitto brothers + July 28, + 2010 + 631 + + + + + Letter to Ambassador Jeffrey about Baghdad massacre + November 5, + 2010 + 631 + + + + + Draft letter to Commander of U.S. Forces-Iraq on the Church Massacre + in Baghdad + November 30, + 2010 + 631 + + + + + Sponsoring a film screening with Senator Kirk + June 28, + 2011 + 631 + + + + + Joining Senator Kirk on letter to Clinton on countries of particular + concern + July 7, + 2011 + 631 + + + + + Special immigrant visa sign-on letter + November 9, + 2011 + 631 + + +
    +
    + + + Israel-staff communications (SASC) + + + + Resolution 1860 UN Security Council + January 2009 + 631 + + + + + Feinstein letter re: Gaza + January 12, + 2009 + 631 + + + + + Possible meeting with Amy Lieutenant General Keith Dayton + January 22, + 2009 + 631 + + + + + Meeting with Palestinian Business Committee for Peace and + Reform + February 3, + 2009 + 631 + + + + + Meeting with Special Envoy for the Middle East George + Mitchell + March 18, + 2009 + 631 + + + + + Meeting with David Victor + April 22, + 2009 + 631 + + + + + Background on meeting with Minister of Defense Barak + 2009 + 631 + + + + + Letter to President Obama about the peace process + May 14, 2009 + 631 + + + + + Meeting with Prime Minister Netanyahu + May 18, 2009 + 631 + + + + + Yediot Ahronot article-Netanyahu's meetings with members May + 21 + 2009 + 631 + + + + + Israeli Settlement May 22 + 2009 + 631 + + + + + Meeting with Israeli Defense Minister Ehud Barak May 29 + 2009 + 631 + + + + + Meeting with David Victor June 15 + 2009 + 631 + + + + + Meeting with Israeli Foreign Minister Avigdor Lieberman June + 18 + 2009 + 631 + + + + + Honorary host committee-American Task Force on Palestine July + 28 + 2009 + 631 + + + + + Two peace process related items + September 14, + 2009 + 631 + + + + + Sign-on letter condemning the UN report on the war in Gaza + September 24, + 2009 + 631 + + + + + James Baker on Obama Administration Middle East Policy + February 23, + 2010 + 631 + + + + + Letter to Secretary Clinton about U.S. commitments to the + Palestinians + May 4, 2010 + 631 + + + + + Memo to David Victor and Marvin Feuer + May 20, 2010 + 631 + + + + + Draft Feinstein letter on peace process + May 26, 2010 + 631 + + + + + Meeting with Palestinian Community Leaders + May 27, 2010 + 631 + + + + + WSU student denial of entry (into Israel) + May 28, 2010 + 631 + + + + + Reid-McConnell sign-on letter to the President on the Gaza Flotilla + Incident + June 15, 2010 + 631 + + + + + Next steps on Jackson-Vanik + June 18, 2010 + 631 + + + + + Resolution on the immediate release of Gilad Shalit + June 24, 2010 + 631 + + + + + Presidents' statements on Israel/Palestine + 1982-2011 + 631 + + + + + Letter to Howard Kohr-AIPAC + June 27, 2011 + 631 + + + + + Memos and letters + July-August 2010 + 631 + + + + + Sign-on letter relating to the peace Process and Settlement + Freeze + September 21, + 2010 + 631 + + + + + U.S. Navy Ports of Call in Israel + September 30, + 2010 + 631 + + + + + AIPAC re: new START Treaty + November 29, + 2010 + 631 + + + + + Senate resolution on the Goldstone Report + April 14, + 2011 + 631 + + + + + Request from Terry Ahwal + May 3, 2011 + 631 + + + + + Request to Express support for effort to grant clemency for Jonathan + Pollard + June 6, 2011 + 631 + + + + + Senate Resolution on the Middle East peace process + June 7, 2011 + 631 + + + + + Supreme Court case on the Jerusalem Embassy Act + July 20, 2011 + 631 + + + + + Jewish senators meeting with Ambassador Susan Rice + September 12, + 2011 + 631 + + + + + Meeting with National Leaders on J Street + September 13, + 2011 + 631 + + + + + Dear Colleague relating to the Raoul Wallenberg Centennial Celebration + Act + October 3, + 2011 + 631 + + + + + Draft letter to the Israeli ambassador + October 18, + 2011 + 631 + + + + + Meeting with Chief of the Israel Defense Forces + March 19, + 2012 + 631 + + + + + Memos + May 2012 + 631 + + + + + Meeting with Morrie Amitay + July 11, 2012 + 631 + + + + + Cosponsoring the US-Israel Security Enhancement Act + July 11, 2012 + 631 + + + + + Sharing of US missile defense and radar information + July 12, 2012 + 631 + + + + + Zivotofsky v. Clinton + July 19, 2012 + 631 + + + + + Meeting with the Israeli Ambassador + October 3, + 2012 + 631 + + + + + + Kosovo + 2000 + 631 + + +

    (Also includes Tribute to Senator Edward Kennedy floor statement)

    +
    +
    + + + Kurdistan Regional Government-Prime Minister letter + December 29, + 2014 + 631 + + + + + Libya-Carl's writings + 2011 + 631 + + + + + Russia -- Jackson-Vanik repeal + 2007-2012 + 632 + + + + + Syria, (SASC) + 2013 + 632 + + + + + Trips and CODELs + + + + Russia, Poland, and Czech Republic (CODEL Levin) + 2 folders + April 12-18, 2009 + 632 + + + + + Pakistan, Afghanistan, and Iraq (CODEL Levin) + August 30-September 5, 2009 + + + + Afghanistan + 632 + + + + + Iraq + 632 + + + + + Pakistan + 632 + + + + + + Afghanistan and Pakistan-(CODEL Levin) + January 7-14, 2010 + 632 + + + + + Afghanistan, Pakistan, and United Arab Emirates (UAE)-(CODEL + Levin) + July 7-12, 2010 + 632 + + + + + Cuba (CODEL Levin) + January 8-13, 2011 + + + + Briefing book + 632 + + + + + Carl and Barbara Levin + 632 + + + + + Telegraph cable and tourism folder + 1049 + + + + + + Iraq, Yemen, and Afghanistan (CODEL Levin) + January 17-23, 2011 + + + + Carl's writings + 632 + + + + + Photograph-NATO Training Mission Iraq-Levin, Lt. Gen. Mike Ferriter, + Gen. Lloyd J. Austin III, and others + 632 + + + + + Trip documents + 632 + + + + + + Guam, Okinawa, and Korea (CODEL Levin) + April 25-30, 2011 + 632 + + + + + Afghanistan and Pakistan + August 19-24, 2011 + + +

    (CODEL Levin and personal trip to Austria)

    +
    + + + Afghanistan + 633 + + + + + Afghanistan and Pakistan + 633 + + + + + Briefing book + 633 + + + + + Pakistan + 633 + + + + + Austria + 633 + + +
    + + + Germany, Afghanistan, Turkey, Brussels, and United Kingdom + April 29-May 4, 2012 + 633 + + +

    (CODEL Levin; Includes list of Levin's senate travel and 2 photographs: Obama + with Levin and Reed, Levin with Afghanistan President Mohammad Ashraf Ghani)

    +
    +
    + + + July 2013-Middle East-Afghanistan photographs (CODEL Levin) + 633 + + + + + Afghanistan + October 22-25, 2013 + + + + Carl's writings + 633 + + + + + Photograph + October 24, + 2013 + 633 + + +

    (Levin with Deputy Commanding Gen. James C. McConville and Gen. Mark Milley, + and others-CJTF-101 Regional Command East at Bagram Airfield, Afghanistan)

    +
    +
    +
    + + + April 2014-Afghanistan and Ukraine (CODEL Levin) + + + + Briefing book + 633 + + + + + Background, schedule, and notes + 633 + + + + + + Ukraine + April 24-25, 2014 + 633 + + + + + Afghanistan (CODEL Levin) + July 2014 + 633 + + + + + Ukraine, Iraq, and Jordan (CODEL Levin) + September 2014 + 633 + + +
    +
    + + + Government and Homeland Security + 1984-2014 + + + + Appropriations and funding + + + + FY2009 war supplemental (T. Gellasch) + 733 + + + + + FY2011 FEMA, DHS, and U.S. Coast Guard (C. Muchanic) + 733 + + + + + FY2013 Department of Homeland Security budget and Homeland Security + hearing + 733 + + +

    (HSGAC hearing is from 2006-"Homeland Security: The Next Five Years")

    +
    +
    + + + FY2015 Commerce, Justice, Science letter (H. Keller) + 733 + + + + + Appropriations + 3 subfolders + 2009 + 733 + + +

    (Includes FY2010 new rules, website guidelines for submission, budget, and + THUD; K. Sybenga)

    +
    +
    + + + Earmark reform + June-September 2010 + 733 + + +
    + + + Budget + + + + FY2009 budget request (President's budget; J. Davis) + 2009 + 733 + + + + + FY2009 budget resolution (J. Davis) + 733 + + + + + FY2011-Federal + 733 + + + + + FY2012 + 733 + + + + + FY2012 Budget and debt limit extension battle + 2011 + 733 + + +

    (Carl's writings)

    +
    +
    + + + FY2013 + 733 + + + + + FY2014 + 733 + + + + + FY2014 Budget resolution including Levin-McCain amendment + 733 + + + + + FY2014 Omnibus + 733 + + + + + FY2015 + 733 + + + + + Background sequester mandatory savings, (J. Courville) + 2012-2013 + 733 + + + + + Balanced budget amendment, (T. Gellasch) + December 2011 + 733 + + + + + Bowles-Simpson + 2012 + 733 + + + + + Budget issues, (T. Gellasch) + 2011 + 734 + + + + + Debt ceiling budget analysis + 2013 + 734 + + +

    (Includes corporate tax loopholes; T. Everett)

    +
    +
    + + + Debt ceiling, PAYGO, and budget task force, (T. Gellasch) + 2010 + 734 + + + + + Debt limit + 2011 + 734 + + + + + Debt limit agreement + 2011 + 734 + + + + + Earmark ban + 2011 + 734 + + + + + Fiscal responsibility summit, (J. Davis) + February 23, + 2009 + 734 + + + + + Government shutdown + 2013 + 734 + + + + + Reconciliation + 2009 + 734 + + + + + Revenue raisers + 2012 + 734 + + + + + Sequester proposals, (J. Courville) + 2012-2013 + 734 + + + + + Sequestration + + + + 2 folders + 2012-2013 + 734 + + + + + Flexibility + 2013 + 734 + + + + + McCain Project + 2013 + 734 + + + + + McCain Project-replacement group and scores + 2 folders + 2012 + 734 + + + +
    + + + Budget, taxes, and economy + 2011-2012 + 734 + + +

    (Levin notes)

    +
    +
    + + + Bipartisan amendment process and Majority Leader rules + June 2014 + December 2012 + 734 + + + + + Bush and Cheney corporate connections + July-October 2002 + 734 + + +

    (Carl's writings)

    +
    +
    + + + Campaign finance reform + + + + 2 folders + 2003-2006 + 2012 + 734 + + + + + Disclose act + 2 folders + 2012 + 735 + + + + + + Homeland Security and Governmental Affairs Committee hearings + (HSGAC) + + + + June 17, 2014 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Homeland Security and Government Affiars + Permanent Subcommittee on Investigations (PSI) hearing on Conflicts of Interest, + Investor Loss of Confidence, and High Speed Trading in U.S. Stock Markets.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + February 24, 2014 + + + + Disc 1 of 2 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Homeland Security and Government Affiars + Permanent Subcommittee on Investigations (PSI) hearing on Offshore Tax + Evasion: Taxes on Billions in Hidden Offshore Accounts [Disc 1 of 2].)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Disc 2 of 2 + + +

    [access item]

    +
    +
    + Online +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    + +

    (2009-2014 (111th-113th Congress). Homeland Security and Government Affiars + Permanent Subcommittee on Investigations (PSI) hearing on Offshore Tax + Evasion: Taxes on Billions in Hidden Offshore Accounts [Disc 2 of 2].)

    +
    +
    +
    + + + May 21, 2013 + + + + Disc 1 of 2 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Homeland Security and Government Affairs + Permanent Subcommittee on Investigations (PSI) hearing on Offshore Profit + Shifting and the U.S. Tax Code - Part 2 [Disc 1 of 2].)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Disc 2 of 2 + + +

    [access item]

    +
    +
    + Online +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    + +

    (2009-2014 (111th-113th Congress). Homeland Security and Government Affairs + Permanent Subcommittee on Investigations (PSI) hearing on Offshore Profit + Shifting and the U.S. Tax Code - Part 2 [Disc 2 of 2].)

    +
    +
    +
    + + + March 15, 2013 + + + + Disc 1 of 2 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Homeland Security and Government Affairs + Permanent Subcommittee on Investigations (PSI) hearing on JPMorgan Chase Whale + Trades: A Case History of Derivatives Risks and Abuses [Disc 1 of 2].)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Disc 2 of 2 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Homeland Security and Government Affairs + Permanent Subcommittee on Investigations (PSI) hearing on JPMorgan Chase Whale + Trades: A Case History of Derivatives Risks and Abuses [Disc 2 or 2].)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + Keeping Foreign Corruption Out of the United States: Four Case + Histories, (PSI) + February 4, + 2010 + 735 + + + + + BP oil spill liability, (HSGAC) + June 2010 + 735 + + + + + Committee hearings + + + + Tax Haven Banks and U.S. Tax Compliance - Obtaining The Names Of U.S. + Clients With Swiss Accounts + March 4, + 2009 + 02:48:43 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Excessive Speculation in the Wheat Market + July 21, + 2009 + 03:30:24 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Keeping Foreign Corruption Out of the United States: Four Case + Histories + February 4, + 2010 + 03:04:41 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Wall Street and the Financial Crisis: The Role of Bank + Regulators + April 16, + 2010 + 05:27:46 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Wall Street and the Financial Crisis: The Role of Credit Rating + Agencies + April 23, + 2010 + 06:28:51 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Wall Street and the Financial Crisis: The Role of Investment + Banks + April 27, + 2010 + 10:57:29 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Examining the Efficiency, Stability, and Integrity of the U.S. + Capital Markets + December 8, + 2010 + 03:09:33 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Excessive Speculation and Compliance with the Dodd-Frank + Act + November 3, + 2011 + 03:23:42 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Compliance with Tax Limits on Mutual Fund Commodity + Speculation + January 26, + 2012 + 01:56:43 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Social Security Disability Programs: Improving the Quality of Benefit + Award Decisions + September 13, + 2012 + 03:30:01 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Offshore Profit Shifting and the U.S. Tax Code - Part 1 (Microsoft + and Hewlett-Packard) + September 20, + 2012 + 04:59:47 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + JPMorgan Chase Whale Trades: A Case History of Derivatives Risks and + Abuses + March 15, + 2013 + 06:17:09 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Offshore Profit Shifting and the U.S. Tax Code - Part 2 (Apple, + Inc.) + May 21, + 2013 + 05:41:37 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Offshore Tax Evasion: The Effort to Collect Unpaid Taxes on Billions + in Hidden Offshore Accounts (Credit Suisse) + February 26, + 2014 + 07:34:28 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Caterpillar's Offshore Tax Strategy + April 1, + 2014 + 05:18:50 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Online Advertising and Hidden Hazards to Consumer Security and Data + Privacy (Rep Hrg) + May 15, + 2014 + 02:29:24 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Conflicts of Interest, Investor Loss of Confidence, and High Speed + Trading in U.S. Stock Markets + June 17, + 2014 + 03:33:49 + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + Closing the Gaps in Air Cargo Security, (HSGAC) + November 16, + 2010 + 735 + + + + + Online Advertising and Hidden Hazards to Consumer Security and Data + Privacy, (PSI) + May 15, 2014 + 735 + + + + + Social Security Disability Programs: Improving the Quality of Benefit + Award Decisions + 5 subfolders + September 13, 2012 + 1115 + + +

    (PSI)

    +
    +
    +
    + + + Federal Permitting Improvement Act, (Energy; C. Muchanic) + 2013 + 735 + + + + + Filibuster (J. Danielson) + + + + Expedite the motion to proceed + 3 subfolders + December 2010-October 2012 + 735 + + + + + Nuclear option -- Levin notes + 2013 + 735 + + + + + Reform + 2010 + 735 + + + + + Rules change + 2011 + 735 + + + + + Rules debate + 8 subfolders + December 2009-July 2012 + 735 + + + + + Rules and dilatory + 2010 + 735 + + + + + Rule changes, filibuster changes, and Constitutional option + 2011 + 736 + + +

    (Carl's writings)

    +
    +
    + + + Senate rule change -- filibuster + 10 subfolders + December 2012-January 2013 + 736 + + + + + Senate rule change -- nuclear option + 2013-2014 + 736 + + + + + Senate rules + 10 subfolders + June 2012-June 2014 + 736 + + +
    + + + Foreign Intelligence Surveillance Act (FISA) reform meeting + 2014 + 736 + + +

    (SASC meeting on SSCI hearing; K. Meier)

    +
    +
    + + + Homeland security + + + + Pre-war intelligence – SSCI nomination Krass hearing + December 2013 + + +

    (Caroline Krass nomination hearing for General Counsel of the CIA; Includes a + CD; SSCI; J. Bryan)

    +
    + + + Joe Bryan SSCI Files (U) + 2005-2011 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Unclassified documents from the Senate + Select Committee on Intelligence (SSCI).)

    +
    +
    +
    + + + Atta meeting -- update on Iraq issues, 2004, 2013 (Declassify the CIA + cable; J. Bryan) + 2004-2013 + 737 + + + + + Customs and Border Protection (CBP) overtime, (T. Everett) + 2011 + 737 + + + + + Homeland Security and Governmental Affairs Committee (HSGAC) + markup + July 30, 2014 + 737 + + + + + Homeland Security and Governmental Affairs Committee (HSGAC) + markup + July 30, 2014 + 737 + + +

    (Nominations)

    +
    +
    + + + Northern border (U.S.-Canada; Homeland Security) + + + + 2009-2011 + 737 + + +

    (K. Meier)

    +
    +
    + + + Ambassador Bridge + 2010 + 737 + + + + + Amendments + 2013 + 737 + + + + + Blue Water Bridge crossing + 2 folders + 2004-2010 + 737 + + + + + Blue Water Bridge and OMB + 2010-2011 + 737 + + + + + Blue Water Bridge plaza + 2010-2013 + 737 + + + + + Blue Water Bridge visit letter + 2012 + 737 + + + + + Coast Guard-Muskegon + + + + Budget + 2010 + 737 + + + + + Season air facility and budget + 2010 + 737 + + + + + + Department of Homeland Security funding + 2013 + 737 + + + + + Hearing-Northern border security, (HSGAC) + 2 folders + 2013 + 737 + + + + + GAO-Northern border security report + 2 folders + 2011 + 737 + + + + + Issues-amendments + 4 folders + 2011 + 737 + + + + + New international trade crossing (NITC) + + + + Detroit River International Crossing + 2007-2014 + 738 + + + + + Detroit River International Tunnel Crossing + 2010-2014 + 738 + + + + + Doctorff meeting + 2013-2014 + 738 + + + + + Department of Homeland Security Jeh Johnson visit + 2014 + 738 + + + +
    + + + Port Huron visit + 2012 + 738 + + + + + Pre-war intelligence -- Atta + 2006-2007 + 738 + + +

    (CIA nominations John Rizzo and General Michael Hayden; J. Bryan)

    +
    +
    + + + Pre-war intelligence -- SSCI nomination Krass hearing + December 2013 + 738 + + +

    (Carline Krass nomination hearing for General Counsel of the CIA; Includes a + CD; SSCI; J. Bryan)

    +
    +
    + + + Secure Borders, Economic Opportunity and Immigration Reform Act -- + S.1348 votes and floor statement, (K. Meier) + 2007 + 738 + + + + + Select Committee on Intelligence report -- post-war findings about + Iraq's weapons of mass destruction programs, CIA Atta cable, (SSCI; + SASC) + 2011-2014 + 738 + + + + + Strategies U.S. Customs and Border Protection, (K. Meier) + 2005-2010 + 738 + + + + + Terrorism and firearms, (HSGAC and SSCI; J. Steslicki) + 2010 + 738 + + +
    + + + Intelligence Reform bill + 2 folders + 2004 + 736 + + +

    (Carl's writings; Intelligence and Terrorism Prevention Act)

    +
    +
    + + + Judiciary + + + + Defense of Marriage Act (DOMA) constitutional amendment + 2 folders + 2011 + 736 + + + + + Impeachment of Judge G. Thomas Porteous, Jr. + 2010 + 736 + + + + + + Line item veto, (J. Danielson) + 2012 + 736 + + + + + National Football League (NFL) trademarks + 2014 + 736 + + + + + Nominations and appointments + + + + Census Bureau Director-Robert Groves + 2009 + 1047 + + + + + CIA Director-John Brennan confirmation + February 2013 + 1047 + + +

    (Carl's writing)

    +
    +
    + + + Delays + 2013 + 1047 + + + + + Homeland security nominations, 2003-2004, 2011 (HSGAC; K. + Meier) + 2003-2011 + 1047 + + + + + Department of Homeland Security Under Secretary for Science and + Technology -- Tara O'Toole, (K. Ko) + 2009 + 1047 + + + + + HSGAC nominations, (C. Muchanic) + 2014 + 1047 + + + + + Supreme Court + + + + Kagan, Elena + 2 folders + 2010 + 1047 + + + + + Sotomayor, Sonia + 3 folders + 2009 + 1048 + + + + + Past nominations + 2010 + 1048 + + + +
    + + + Postal Service + + + + Bay City Post Office + 2010 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Lansing Processing and Distribution Center closing, (T. + Everett) + 2012-2013 + 739 + + + + + Post office naming, (T. Everett) + November-December 2014 + 739 + + + + + Postal, (H. Chase) + 15 subfolders (and loose documents) + 2011 + 739 + + +

    (1 of 2)

    +
    +
    + + + Postal (H. Chase) + 2011 (cont.) + 739 + + +

    (2 of 2)

    +
    +
    + + + Postal 1, (H. Chase) + 8 subfolders + 2012 + 739 + + + + + Postal 2, (Michigan; H. Chase; PSI) + 2012 + 739 + + + + + Postal, (H. Chase) + 8 subfolders + 2013 + 739 + + + + + Postal markups, (T. Everett and J. Danielson) + 2014 + 740 + + + + + Carl's postal markup notes Day 2, (HSGAC meeting) + June 25, 2014 + 740 + + + + + Postal reform + 5 subfolders + 2013-2014 + 740 + + +

    (Includes HSGAC markup; T. Everett)

    +
    +
    + + + Stamps + + + + Inverted Jenny + 2013 + 740 + + +

    (Carl's writings)

    +
    +
    + + + Photo + 2004-2005 + 740 + + + + + Sporty cars + 2005 + 740 + + +
    +
    + + + Regulatory reform -- Folder 1, (C. Muchanic) + 2011 + 740 + + + + + Regulatory reform -- Folder 2 + 2011 + 740 + + +

    (Hearing "Federal Regulation: A Review of Legislative Proposals, June 23, 2011 + and bill S.1606 C. Muchanic)

    +
    +
    + + + Schiavo-congressional intervention + 2005-2012 + + +

    (Includes Incapacitated Persons Legal Protection Act-S.259)

    +
    + + + Schiavo-congressional intervention + 1-2 of 5 folders + 740 + + + + + Schiavo-congressional intervention + 3-5 of 5 folders + 741 + + +
    + + + Senate rules + 2013 + 741 + + +

    (Carl's writings)

    +
    +
    + + + Senate rules changes + 2 folders + January 2013 + 741 + + +

    (Carl's writings)

    +
    +
    + + + Social security, (Chained -- consumer price index; J. + Courville) + 2013 + 741 + + + + + Social Security Disability Insurance (SSDI)-NPR interview + request + 1984 + 2013 + 741 + + + + + STOCK Act-Paul amendment + 2011-2012 + 741 + + +

    (Stop Trading on Congressional Knowledge Act)

    +
    +
    + + + Super PACs + 2012 + 741 + + + + + Voting (K. Meier) + + + + National popular vote legislation + 2007-2008 + 741 + + + + + Voter ID + 2 folders + 2012 + 741 + + +

    (Michigan citizenship checkbox)

    +
    +
    + + + Voting Rights Act options + June-August 2013 + 741 + + +
    +
    + + + Health and Human Services + 2007-2014 + + + + Appropriations + + + + Labor, Health and Human Services, and Education-Levin + priorities + + + + FY2010 + 776 + + + + + FY2011 + 776 + + + + + + FY2013 health professions funding Title VII + 776 + + + + + Older Americans Act + March-April 2014 + 776 + + + + + + Correspondence-federal agencies + 2007-2012 + 776 + + + + + Food and Drug Administration (FDA) Safety and Innovation Act + 2012 + 776 + + + + + Healthcare + + + + Affordable Care Act + + + + Ruling + 2012 + 776 + + + + + Stories, (Michigan) + 2013-2014 + 776 + + + + + Talking points and statements + 2012 + 776 + + + + + + America HEALS Act + March 2014 + 776 + + + + + Blood donation-ban on gay men + 2010-2012 + 776 + + + + + Carl's writings + 2 folders + 2009 + 776 + + + + + Contraceptive coverage-Hobby Lobby amicus brief + January 2014 + 776 + + + + + Contraceptive coverage legislation + 2012-2014 + 776 + + + + + Correspondence-federal agencies + 2012-2014 + 776 + + + + + Correspondence and memos, (Michigan) + 2012-2014 + 776 + + + + + Diabetes + 2014 + 776 + + + + + Emergent Biosolutions-anthrax vaccine (Michigan) + + + + 2007-2009 + 776 + + + + + 2010 + 776 + + + + + + End-of-life care news article + July 2009 + 776 + + + + + Family Smoking Prevention and Tobacco Control Act + 2009 + 776 + + + + + Health insurance reform issues, (S. Fitzwater) + 2010 + 776 + + + + + Health training programs and Title VII + October 2014 + 776 + + + + + Healthcare reform proposed amendments + 2009 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Hospital coalition-Section 508 + 2010-2012 + 776 + + + + + J&B Medical Supply, (Michigan) + 2008-2013 + 776 + + + + + Long term care hospitals + 2013 + 776 + + + + + Medicaid expansion + 2013 + 776 + + + + + Medicare Advantage and Medigap plans + 2013 + 776 + + + + + Medicare and Medicaid-dual eligible demonstration project, + (Michigan) + 2012 + 776 + + + + + Medicare prescription drug payments-hospice, March + June 2014 + 776 + + + + + Medicare reimbursement to hospitals-Section 508, (Michigan; J. + Hill) + 2009 + 776 + + + + + Memos + 2010-2012 + 777 + + + + + Memos to Carl + 2011-2013 + 777 + + + + + Michigan hospitals + + + + Beaumont hospital visit-Oakland University + January 2008 + 777 + + + + + Beaumont tax exemption + June-July 2014 + 777 + + + + + Henry Ford Health System information + 2014 + 777 + + + + + Henry Ford Health System payment plans, (Michigan) + 2012 + 777 + + + + + Henry Ford Health System invite to Secretary Vilsak + November 2013 + 777 + + + + + Oakwood hospital accreditation + 2012 + 777 + + + + + University of Michigan residency status, (M. Nykaza) + 2012 + 777 + + + + + + Miscellaneous + 2014 + 777 + + + + + News articles + 2012 + 777 + + + + + Private option + July 2009 + 777 + + + + + Reform + + + + Breast cancer research-Karmanos, Wayne State University, and + Department of Defense (DOD) + 2008-2009 + 777 + + + + + Children's health insurance program + + + + Amendments or + 2009 + 2007 + 777 + + + + + Bill differences and immigration + January 2009 + 777 + + + + + Federal poverty levels + 2007 + 777 + + + + + General + 2009 + 777 + + + + + Legislation and Levin statement + 2 folders + 2009 + 2007 + 777 + + + + + Memos + 2007 + 777 + + + + + Michigan program + 2009 + 777 + + + + + Miscellaneous + 2009 + 777 + + + + + Overview + 2007 + 777 + + + + + Press and radio tour + 2007 + 777 + + + + + Press release and news articles + 2007 + 777 + + + + + Statement + 2007 + 777 + + + + + Tobacco tax + 2007-2008 + 777 + + + + + + Employer mandate and penalty + 2009 + 777 + + + + + Insurance exchange questions and answers + 2009 + 777 + + + + + Karmanos prospective payment system exemption + April 2009 + 777 + + + + + Legislation and charts + 2009 + 777 + + + + + Lilly Ledbetter Fair Pay Act + January 2009 + 777 + + + + + Memos + November-December 2009 + 777 + + + + + Memos and news articles + 2009-2010 + 777 + + + + + Michigan experience + 2009 + 777 + + + + + Michigan statistics + November 2009 + 777 + + + + + News articles + May-July 2009 + 777 + + + + + News articles + 2008-2009 + 777 + + + + + Premiums + 2009 + 777 + + + + + Priorities + 2009-2010 + 777 + + + + + Statements, November 21 + 2009 + 777 + + + + + + Regional Preferred Provider Organizations (PPOs), (Levin notes; T. + Everett) + 2014 + 777 + + + + + Rural health + undated + 777 + + + + + Slow down health spending, (M. Nykaza) + November 1, + 2013 + 777 + + + + + Wayne State University School of Medicine -- Carl's meeting with the + Perinatology Research branch, (C. Woods) + July 2010 + 777 + + +
    + + + Substance abuse and treatment + + + + Buprenorphine forum + 2013-2014 + 777 + + + + + Buprenorphrine, (J. Parker) + 2014 + 772 + + + + + Buprenorphrine, (J. Parker, T. Andringa, and A. Warner) + May-June 2014 + 777 + + + +
    + + + Housing + 2007-2013 + + + + Flood insurance + + + + 18 subfolders + 2007-2008 + 784 + + +

    (K. Sybenga)

    +
    +
    + + + Part 1 (K. Sybenga) + 3 folders + 2008-2009 + 784 + + + + + Part 2 (K. Sybenga) + 16 subfolders + 2008-2009 + 784 + + + + + Flood insurance, (T. Everett) + 2010-2012 + 784 + + + + + Recoupment, (C. Muchanic) + 2011 + 784 + + + + + Reform, (C. Muchanic) + 2011 + 784 + + +
    + + + Housing and Urban Development (HUD) office closures, (H. + Chase) + 2012-2013 + 784 + + + + + Immigration + + + + 2008 + 792 + + +

    (K. Meier)

    +
    +
    + + + Chukwueke One-Man Dream Act-S.285, (Levin; Michigan) + 4 folders + 2009-2012 + 792 + + + + + Reform + 4 folders + 2010-2013 + 793 + + + + + Reform amendments + 2013 + 793 + + + + + Refugee asylum and deportation + + + + 3 folders + 2010-2011 + 793 + + + + + Iraqi Christians + 2 folders + 2010 + 793 + + + + + + Refugee protection act, (Heitkamp) + 2010 + 792 + + + + + U.S. Citizen and Immigration Services + 2008 + 792 + + +
    +
    + + + Industry + 1992-2014 + + + + Advanced Composite Manufacturing -- MSU, (H. Keller) + 2014 + 798 + + + + + Auto Industry + + + + Auto bailout and restructuring + + + + FY2002 Defense authorization (Michigan projects) + 7 subfolders + 798 + + + + + Auto bailouts + 28 subfolders + 2009 + 798 + + + + + Auto bailout amendments + 26 subfolders + 2009 + 798 + + + + + Auto finance companies and Term Asset-Backed Securities Loan Facility + (TALF) + March-July 2009 + 798 + + + + + Auto restructuring, (M.L. Wagner) + 11 subfolders + February-April 2009 + 798 + + + + + CAFE files, (P. Levine) + 4 subfolders + 1992 + 798 + + + + + Cash for Clunkers + 5 subfolders + 2009 + 798 + + + + + Cash for Clunkers and Consumer Assistance to Recycle and Save (CARS) + program amendments + August 2009 + 799 + + + + + Chrysler -- Fiat + 4 subfolders + 2009 + 799 + + +

    (Includes Delphi)

    +
    +
    + + + General Motors negotiations + 12 subfolders + 2009 + 799 + + + + + Motor and Equipment Manufacturers Association + 2009 + 799 + + + + + National Automotive Center -- 21st Century Truck Initiative and + Army's federal retail excise tax, (R. Fieldhouse and M.L. Wagner) + 3 subfolders + 1999-2001 + 799 + + + + + Obama administration + 35 subfolders + 2009 + 799 + + + + + Supplier letters + 38 subfolders + 2009 + 799 + + +
    + + + Auto Caucus (A. Pascale) + + + + 2013-2014 + 794 + + + + + 2014 + 794 + + + + + Briefings + 2014 + 794 + + + + + Workforce development + 2013-2014 + 794 + + + + + + Auto caucus and general, (C. Muchanic) + 2013 + 794 + + + + + Center for Automotive Research report + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Chrysler recall, (A. Pascale) + 2013 + 794 + + + + + Ford meeting, (A. Pascale) + 2013 + 794 + + + + + Investing in manufacturing communities and partnership, (A. + Pascale) + 2014 + 794 + + + + + Meeting with Dan Akerson + 2013 + 794 + + +

    (GM CEO; A. Pascale)

    +
    +
    + + + Meeting with Mary Barra + 2014 + 794 + + +

    (GM; C. Muchanic)

    +
    +
    + + + Salaried retirees concerns-Auto Task Force + June-July 2009 + 794 + + + + + Teamsters contract with GM and Chrysler, (M.L. Wagner) + 2009 + 794 + + +
    + + + GE manufacturing technology center, (K. Meier) + 2009 + 794 + + + + + Manufacturing and Secretary of Commerce + 2009 + 794 + + +

    (Includes information on trade agreements, policy, and China)

    +
    +
    + + + Manufacturing jobs data and auto industry, (Michigan) + 2006-2009 + 794 + + + + + National Network of Manufacturing Institutes, (A. Pascale) + 2014 + 794 + + + + + Research manufacturing jobs in advanced economies + September 2007 + 794 + + + + + U.S. manufacturing groups + 2007-2011 + 794 + + +
    + + + Interior + 2003-2015 + + + + Appropriations-FY2010 requests + 807 + + + + + Coast Guard downsizing, (G. Schneider) + 2013 + 807 + + + + + Coast Guard property, (A. Pascale) + 2011 + 807 + + + + + Historic lighthouses surplus property -- General Services Administration + regulations, (A. Pascale) + 2006-2010 + 807 + + + + + Keweenaw National Park + + + + Levin visit reception, (A. Yates ) + 16 subfolders + July 2011 + 807 + + + + + Quincy Smelter, (Michigan) + 2013-2014 + 807 + + + + + + MotorCities National Heritage Area + + + + 2013-2014 + 808 + + + + + 2014-2015 + 808 + + + + + + National Lighthouse Stewardship Act-S.715 + 2 folders + 2008-2009 + 808 + + + + + National Park Centennial, (A. Yates and H. Keller) + 2013 + 808 + + + + + Native Americans (J. Courville) + + + + Carcieri fix -- S.676 + 2012 + 808 + + +

    (Carcieri v. Salazar, Secretary of the Interior Authority to take land into + trust for a tribe)

    +
    +
    + + + Federal recognition case status + 2007-2014 + 808 + + + + + Fiscal and program impacts of sequestration, (Sault Ste. Marie Tribe of + Chippewa) + March 25, + 2013 + 808 + + + + + Gun Lake tribe (Land reaffirmation and casino) + 2 folders + 2013-2014 + 808 + + + + + KI Sawyer asbestos + 2013-2014 + 808 + + + + + Michigan tribes, (casinos) + June 2014 + 808 + + + + + Sault Ste. Marie, (reservation land designation) + 2003-2008 + 808 + + +
    + + + North Country Trail + + + + Unit status + 2010-2014 + 808 + + + + + Unit status legislation + 2013-2014 + 808 + + + + + + Sleeping Bear Dunes National Lakeshore, (A. Yates) + 6 subfolders + 2010-2014 + 808 + + +
    + + + Labor + 2001-2014 + + + + Fair Labor Standards Act amendment-home care workers and minimum + wage + 2012-2014 + 814 + + + + + Family Medical Leave Act-expand to same sex married employees + 2014 + 814 + + + + + Firefighter legislation and issues + 2 folders + 2001-2010 + 814 + + +

    (Includes Levin high unemployment waiver, arbitration, and volunteer firefighter + legislation; K. Meier)

    +
    +
    + + + Income inequality + 2011 + 814 + + + + + Income inequality + 2012-2014 + 814 + + + + + Jobs bill + 2010 + 815 + + + + + National Labor Relations Board resolution of disapproval-election + rules + 2012 + 815 + + + + + Paycheck Fairness Act + 2012 + 815 + + + + + Right to work + 2013 + 815 + + +

    (Carl's writings)

    +
    +
    + + + Trade Adjustment Assistance (TAA) -- world trade + 2011 + 815 + + + + + Unemployment insurance + + + + Extension + 2 folders + 2008 + 815 + + + + + Extension and emergency unemployment compensation + 2011-2014 + 815 + + + + + Legislation + 2007 + 815 + + + + + Radio tour and extension + 2009-2010 + 815 + + + +
    + + + Michigan + 2005-2014 + + + + Appropriations + 815 + + + + FY2010 requests + undated + 1113 + + + + + + Detroit + 2013 + 823 + + + + + Detroit bankruptcy + + + + 2013-2014 + 823 + + + + + Detroit Institute of Arts (DIA) unions + January-February 2014 + 823 + + +

    (Levin notes and schedules)

    +
    +
    + + + Detroit-Kevin Orr + 2013 + 823 + + +

    (Carl's writings)

    +
    +
    + + + Levin notes and schedule + May 2014 + 823 + + +
    + + + Detroit Entertainment District presentation + February 12, + 2009 + 823 + + + + + Detroit floods, (A. Yates) + August-September 2014 + 823 + + + + + Detroit historic buildings, (A. Yates) + 2012 + 824 + + + + + Detroit historic tax credits, A. Yates) + 4 subfolders + 2012 + 824 + + + + + Detroit historic tax credits, (A. Yates) + 5 subfolders + 2012-2013 + 824 + + + + + Detroit historic tax credits application -- Quicken Loans, (A. + Yates) + 2012 + 824 + + + + + Historic tax credits, (A. Yates) + 6 subfolders + 2012 + 824 + + + + + East Riverfront Revitalization Implementation Plan + January 2012 + 1050 + + +

    (Detroit Riverfront; McCormack Baron Salazar Urban Design Associates)

    +
    +
    + + + Detroit Riverfront + 2010-2013 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Detroit Symphony Orchestra contract negotiations timeline + 2008-2010 + 824 + + + + + Detroit Symphony Orchestra strike + 2010-2011 + 825 + + +

    (Carl's writing)

    +
    +
    + + + Disasters, cold, and floods + 2014 + 825 + + + + + Employee Benefits Security Administration (ESBA) Detroit office + closure + November 2013 + 825 + + + + + FEMA Monroe + October-December 2010 + 825 + + + + + Greening of Detroit + 2013-2014 + 825 + + + + + Grand Island land exchange (U.S. Forest Service) + + + + Environment and Public Works letter + 2010-2013 + 825 + + + + + Land exchange + September 15, + 2014 + 825 + + + + + Legalities + 2013 + 825 + + + + + Old North Lighthouse + + + + 2005-2007 + 825 + + + + + 2005-2009 + 825 + + + + + July 2007 + 825 + + + + + 2007-2010 + 825 + + + + + + Update + December 2014 + 825 + + + + + + Major League Baseball Youth Academy, (H. Chase) + 2 folders + 2012-2013 + 825 + + + + + Parks and recreation, (A. Yates) + March 2014 + 825 + + + + + Presque Isle Lighthouse Station waterfront redevelopment grant -- Coast + Guard reauthorization bill, (A. Pascale) + 2008-2011 + 825 + + + + + Tiger Stadium + 2013 + 825 + + +

    (Carl's writings)

    +
    +
    + + + Tiger stadium redevelopment, (H. Chase) + March 2008-June 2009 + 825 + + + + + Tiger stadium redevelopment, (H. Chase) + 2 folders + 2012-2013 + 825 + + + + + Tiger Stadium-Vitter amendment + 2009 + 825 + + + + + Western Wayne County annual Martin Luther King, Jr. + celebration + January 2014 + 825 + + +

    (Includes a DVD)

    +
    + + + Martin Luther King Jr. Celebration, Annapolis Park Church of + Christ + 2014 January 21 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Western Wayne County's annual Martin Luther + King Jr. Day celebration, "A Day of Remembrance", video at Annapolis Park Church + of Christ.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + University of Michigan Law School-Nina Mendelson's class + + + + November 23, + 2009 + 826 + + +

    (Carl's writing)

    +
    +
    + + + 2011 + 826 + + +

    (Carl's writing)

    +
    +
    +
    + + + Visit to Flint/Genesee Job Corps + 2010 + 826 + + +

    (Includes photographs from visit, news articles on Levin brothers and three + additional photographs -- possibly unrelated)

    +
    +
    +
    + + + Press + 2004-2014 + + + + Media interviews + + + + An Interview with U.S. Senator Carl Levin + 2010 October 19 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (11th-113th Congress). An interview with United States Senator Carl + Levin by Lynn Jondahl as part of the James J. Blanchard Living Library of + Michigan Political History, Michigan Political History Society.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + CODEL Levin, Turkey and Jordan + 2013 July + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (11th-113th Congress). Carl Levin Congressional Delegation (CODEL) + to Turkey and Jordan.)

    +
    +
    + + + Dedication of the Philip A. Hart Senate Office Building + 1987 May 20 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (11th-113th Congress). Video of the Dedication of the Philip A. Hart + Senate Office Building.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Newsmakers #107 with Carl Levin + 1977? + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (11th-113th Congress). Carl Levin as President of the Detroit City + Council interview on Channel 56 WTVS-TV, Detroit Educations TV Foundation around + 1977. Includes panel of questions from David Cooper, Associate Editor of the + Detroit Freepress; Don Tschirhart, City Council Bureau Chief of the Detroit + News; and William Mitchell, City Council Bureau Chief of the Detroit + Freepress.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Reagan National Defense Forum Photos + 2013 November 16 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (11th-113th Congress). Photographs of the Reagan National Defense + Forum on November 16, 2013.)

    +
    +
    + + + The Strange History of "Don't Ask, Don't Tell" + 2011 September 21 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (11th-113th Congress). HBO's World of Wonder documentary, The + Strange History of "Don't Ask, Don't Tell", texted broadcast master, made two + years prior to the repeal of "Don't Ask, Don't Tell.")

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + Media + + + + Interviews 2000-2014 + + + + Senate Armed Services Committee Hearing + 1 optical discs (23 GB Professional Disc) + March 18, 2010 + + +

    (O/S and questions and answers.)

    +
    +
    + + + Senate Armed Services Committee Hearing + 1 optical discs (50 GB Professional Disc) + March 20, 2012 + + +

    (2009-2014 (11th-113th Congress). SASC hearing.)

    +
    +
    + + + Senator Levin Public Service Announcements + 1 optical discs (50 GB Professional Disc) + March 1, 2010 + + +

    (2009-2014 (11th-113th Congress). Senator Levin 15, 30 and 45 second Public + Service Announcements.c PSA's)

    +
    +
    + + + Senator Levin Roundtable + June 18, 2014 + + + + Disc 1 of 2 + + + + + Disc 2 of 2 + 1 optical discs (23 GB Professional + Disc) + + + + + + OS Armed Services Committee and Holiday Greeting + 1 optical discs (23 GB Professional Disc) + December 2-3, 2010 + + +

    (2009-2014 (11th-113th Congress). Senator Levin, 1: OS Armed Services + Committee December 2, 2010. 2: OS Armed Services, December 3, 2010. 3: Holiday + Greeting)

    +
    +
    + + + Senate Armed Services Committee Hearing + 1 optical discs (23 GB Professional Disc) + June 9, 2011 + + +
    + + + Miscellaneous + + + + Senate Armed Services Committee Hearing + June 17, 2010 + + + + Disc 1 of 2 + 1 optical discs (23 GB Professional + Disc) + + + + + Disc 2 of 2 + 1 optical discs (23 GB Professional + Disc) + + + + + + + Gerald R. Ford (CVN-78), Christening Ceremony + 2013 November 09 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (11th-113th Congress). Christening Ceremony for the Gerald R. Ford + (CVN-78) at the Newport News Shipbuilding.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Gerald R. Ford Keel Laying Ceremony + 2009 November 14 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + Online +
    + +

    (2009-2014 (11th-113th Congress). Gerald R. Ford keel laying ceremony at the + Northrop Grumman Shipbuilding in Newport News, Virginia.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + President Barack Obama, Northern Michigan University + 2011 February 10 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (11th-113th Congress). President Barack Obama on a Winning the + Future trip at Northern Michigan University speaking in the Vandament Arena on + February 10, 2011, with introduction by Carl Levin.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Senator Levin on the New U.S.-Afghan Partnership + 2014 October 15 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (11th-113th Congress). Photographs of Senator Carl Levin at the + United States Institute of Peace on the new U.S.-Afghan Partnership.)

    +
    +
    +
    + + + Media appearances + + + + 2009 + + + + C-SPAN Newsmakers + + + + 2009 November 20 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). C-SPAN Newsmakers with Senator Carl + Levin on Afghanistan.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2009 November 22 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). C-SPAN Newsmakers with Senator Carl + Levin regarding Afghanistan.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + Fox News Sunday + + + + 2009 April 26 + + + + 1 of 2 + 2009 April 26 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Fox News Sunday with Senator Carl + Levin on the CIA's interrogation program.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2 of 2 + 2009 April 26 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Fox News Sunday with Senator Carl + Levin on interrogation memos.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + 2009 October 25 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Fox News Sunday with Senator Carl Levin + on Afghanistan.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + MSNBC + + + + 2009 July 30 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). MSNBC on Goldman Sachs.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2009 May 31 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). MSNBC News with United States Senator + Carl Levin on auto bailout and bank bailout.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + National TV + + + + 2009 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + + +

    [access part 4]

    +
    +
    + + +

    [access part 5]

    +
    +
    + + +

    [access part 6]

    +
    +
    + + +

    [access part 7]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin's media appearances + on: The Charlie Rose Show; CNN State of the Union with John King on + Afghanistan; PBS NewsHour; CBS Face the Nation; MSNBC the Ed Show; Fox News; + and MSNBC.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2009-2010 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + + +

    [access part 4]

    +
    +
    + + +

    [access part 5]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin's media appearances + on: CNN Lou Dobbs Tonight; MSNBC Andrea Mitchell Reports on Afghanistan; + Bloomberg TV; C-SPAN Newsmakers; and MSNBC The Rachel Maddow Show.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + PBS NewsHour + + + + 2009 April 01 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). PBS NewsHour with Jim Lehrer, with + Senators Carl Levin and Susan Collins regarding Senate Armed Services + Committee (SASC) hearing on Afghanistan and Pakistan.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2009 September 29 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). PBS NewsHour with Senator Carl Levin and + Senator Saxby Chambliss regarding Afghanistan.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + Video Conference, Berrien County Intermediate School + District + + + + 1 of 3 + 2009 February 27 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Video conference of Senator Carl Levin + with four Michigan high schools, New Buffalo High School, Bridgman High + School, Bangor High School, and Dowagiac High School. Video conference was + coordinated by the Berrien County Intermediate School District. Teachers + include: Tina Keller (New Buffalo HS); and John Wismer (Bridgman HS, Bangor + HS, Dowagiac HS).)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2 of 3 + 2009 February 27 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Video conference of Senator Carl Levin + with four Michigan high schools, two schools asking questions: New Buffalo + High School, Bridgman High School, and two schools viewing: Bangor High + School, and Dowagiac High School, in the Senate Recording Studio. Video + conference coordinated by the Berrien County Intermediate School + District.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 3 of 3 - Student Iso + 2009 February 27 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Video conference of Senator Carl Levin + with four Michigan high schools, two schools asking questions: New Buffalo + High School, Bridgman High School, and two schools viewing: Bangor High + School, and Dowagiac High School. Video conference coordinated by the + Berrien County Intermediate School District. Footage of only the students + and their questions, not of Levin's responses.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + Afghanistan: Basic Questions, Rand Corporation Conference + 2009 October 29 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Levin's speech, "Afghanistan: + Basic Questions" at Rand Corporation conference, a strategic choices speech on + Afghanistan.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Bloomberg TV + 2009 November 20 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Bloomberg TV with Senator Carl Levin + regarding Afghanistan.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Carl Levin Speech for Task Force on Financial Integrity and Economic + Development + 2009 September 16 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Video of Carl Levin's speech for Task + Force on Financial Integrity and Economic Development.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + CBS Face the Nation + 2009 November 29 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). CBS Face the Nation with Senator Carl + Levin one-on-one interview with Harry Smith regarding Afghanistan.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + CNN Anderson Cooper 360 + 2009 September 11 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Anderson Cooper 360 with Carl Levin + interview with John King of CNN regarding Afghanistan.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + CODEL Levin + 2009 April 12-18 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Photographs of Carl Levin Congressional + Delegation (CODEL) to Russia, Poland, and the Czech Republic on April 12-18, + 2009.)

    +
    +
    + + + C-SPAN Press Conference, Afghanistan/Pakistan + 2009 January 25 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). C-SPAN coverage of press conference on + Afghanistan and Pakistan with Senator Carl Levin.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Keith Olbermann and Rachel Maddow Segments + 2009 May 29 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Countdown with Keith Olbermann and the + Rachel Maddow Show segments on Dick Cheney's claims on the effectiveness of + torture interrogation techniques, which includes footage of Senator Carl Levin + regarding these claims at the Foreign Policy Association Annual Dinner.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Matthew Shepard Hate Crimes Prevention Act + 2009 October 23 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin on the passing of the + Matthew Shepard Hate Crimes Prevention Act.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Meet the Press + 2009 October 11 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress).NBC Meet the Press with Senator Carl Levin + on Afghanistan.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + MSNBC Andrea Mitchell Reports + 2009 September 11 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). MSNBC Andrea Mitchell Reports with Senator + Carl Levin interview regarding Afghanistan.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + MSNBC Interview + 2009 December 03 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). MSNBC Morning Meeting with Dylan Ratigan, + with Senator Carl Levin interview regarding Afghanistan.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + MSNBC The Ed Show + 2009 May 21 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). MSNBC The Ed Show with Senator Carl Levin + on President Obama.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Philip A. Hart and William G. Milliken Endowed Speaker Series for + Integrity in Politics at Central Michigan University + 2009 November 22 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Video of Senator Levin's talk, as the + inaugural speaker, at the Philip A. Hart and William G. Milliken Endowed + Speaker Series for Integrity in Politics at Central Michigan University, on + "Steering an Ethical Course in a Political Storm." Introductory remarks given + by Governor Milliken and Michael Hart.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Senator Carl Levin Media Appearance + 2008 + - 2009 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + + +

    [access part 4]

    +
    +
    + + +

    [access part 5]

    +
    +
    + + +

    [access part 6]

    +
    +
    + + +

    [access part 7]

    +
    +
    + + +

    [access part 8]

    +
    +
    + + +

    [access part 9]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin's media appearances on: + Fox News Sunday on 12/7/2008; CBS Face the Nation on 12/14/2008; MSNBC The + Rachel Maddow Show; MSNBC Andrea Mitchell Reports; CNN Situation Room on + 4/22/2009; CBS Evening News on 4/22/2009; NBC Nightly News on 4/22/2009; NBC + Today Show on 4/23/2009; and MSNBC Ed Show 4/23/2009.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Senator Levin's Commencement Speech at University of + Michigan-Dearborn + 2009 May + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin commencement speech at + University of Michigan-Dearborn in 2009. From Ed Bagale.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Senator Levin's Swearing-in Ceremony + 2009 January 06 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin's swearing in ceremony + on January 6, 2009 with Sen. Mitch McConnell, Sen. Jeff Merkley, and Sen. Mark + Pryor.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Senator Levin 11,000th Vote Tributes + 2009 May 19 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Sen. Harry Reid, Sen. Mitch McConnell, and + Sen. Debbie Stabenow tributes on the floor for Senator Carl Levin's 11,000th + vote, followed by Levin's remarks.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Senator Levin Floor Statement + 2009 September 10 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin floor statement + tributing the life and legacy of Sen. Ted Kennedy.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Senator Levin Holiday Greeting + 2009 November 24 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin holiday greeting.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Senator Levin Opening Statement at Press Conference + 2009 June 25 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin opening statement at + press conference on Senate Armed Services Committee (SASC) 2010 Defense + Authorization Bill on June 25, 2009.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Senator Levin Remarks and Introduction at EPW + 2009 July 08 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin remarks and + introduction at Senate Committee on Environmental and Public Works (EPW) on + July 8, 2009.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + The National Summit, Innovation & Talent Management + 2009 June 15 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). The National Summit, convened by the + Detroit Economic Club, panel on Innovation & Talent Management. Day 1, + 12-1:30 pm. Panelists include: Keith D. Nosbusch, Chairman & CEO, Rockwell + Automation, Inc.; The Honorable Carl M. Levin, Senator, State of Michigan; + James H. Quigley, Global CEO, Deloitte Touche Tohmatsu; and Emily Stover + DeRocco, President, The Manufacturing Institute and Senior Vice President, + National Association of Manufacturers. Moderator: Alexis Glick, Vice President + & Anchor, Fox Business Network.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + 2010 + + + + ABC Good Morning America + + + + 2010 April 27 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). ABC Good Morning America segment with + Senator Carl Levin on Goldman Sachs.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2010 April 28 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). ABC Good Morning America segment with + Senate hearing footage of Senator Carl Levin and interview with Levin on + Goldman Sachs.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + CBS The Early Show + + + + 2010 April 27 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). CBS The Early Show segment with Senator + Carl Levin on reforming Wall Street.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2010 April 28 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). CBS The Early Show segment on Goldman + Sachs hearing with footage of Senator Carl Levin.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + NBC Today Show + + + + 2010 April 27 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). NBC The Today Show segment with Senator + Carl Levin.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2010 April 28 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). NBC The Today Show segment with Senator + Carl Levin on Goldman Sachs.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + ABC Nightline + 2010 January 18 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). ABC Nightline show including a report on + U.S. Military's use of Trijicon gun sights with biblical references inscribed + on them.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Goldman Sachs: Power and Peril + 2010 October 10 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). CNBC Original, "Goldman Sachs: Power and + Peril". Includes interview footage of Senator Carl Levin.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + National TV + 2010 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + + +

    [access part 4]

    +
    +
    + + +

    [access part 5]

    +
    +
    + + +

    [access part 6]

    +
    +
    + + +

    [access part 7]

    +
    +
    + + +

    [access part 8]

    +
    +
    + + +

    [access part 9]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin's media appearances on: + MSNBC Andrea Mitchell Reports; NBC Nightly News; The Daily Show with Jon + Stewart on 04/27/2010; NBC The Today Show; CNN American Morning; Bloomberg TV; + CBS Face the Nation; C-SPAN Newsmakers; and CNN State of the Union, Candy + Crowley.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + News Coverage of PSI Hearing on Goldman Sachs + 2010 April 26-28 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin on ABC World News, CBS + Evening News, NBC Nightly News, and PBS NewsHour for coverage of the Permanent + Subcommittee on Investigations (PSI) hearing on Goldman Sachs.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + News Coverage of SASC Hearing on Don't Ask, Don't Tell + 2010 February 02 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin on ABC World News, CBS + Evening News, NBC Nightly News, PBS NewsHour, and ABC Nightline for coverage + of the Senate Armed Services Committee (SASC) hearing on Don't Ask, Don't + Tell.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Senator Carl Levin Media Appearances + 2010 April 27 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin's media appearances on: + ABC World News, CBS Evening News, NBC Nightly News, and PBS NewsHour.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Video Conference, Berrien County Intermediate School + District + 2010 February 26 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Video conference with Senator Carl Levin + and three schools, New Buffalo Middle School, Edwardsburg High School, and St. + Joseph High School. Video conference coordinated by the Berrien County + Intermediate School District. This is the 10th video conference with Berrien + County schools.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + 2011 + + + + Challenges in Afghanistan, Speech and Discussion at the Council on + Foreign Relations + + + + 1 of 2 + 2011 October 21 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin speech at the Council + on Foreign Relations on challenges in Afghanistan and Pakistan. This DVD + joined the speech in progress, but contains the Question & Answer + session afterwards.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2 of 2 + 2011 October 21 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin speech at the Council + on Foreign Relations on challenges in Afghanistan and Pakistan. This DVD + contains most of the speech, but does not include the entire Question & + Answer session.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + CNN State of the Union + 2011 March 27 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). CNN State of the Union with Candy Crowley + with Senator Carl Levin on Libya.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Comcast Newsmakers + 2011 December 06 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Comcast Newsmakers with Senator Carl Levin + on counterfeit parts in the Department of Defense (DOD) supply chain.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Meet the Press + 2011 March 20 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). NBC Meet the Press with Senator Carl Levin + on Libya.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + National TV + 2011 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin's media appearances on: + MSNBC Andrea Mitchell Reports on Afghanistan; PBS NewsHour on 10/11/2011 on + the Jobs Bill; PBS NewsHour; ABC Nightline; and Congressional Research Service + (CRS) seminar on 06/17/2011 regarding 'Waters of the United States': Clean + Water Act Issues for Congress.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + NBC Meet the Press + 2011 May 13 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). NBC Meet the Press with Senator Carl Levin + on financial reform.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + NBC Nightly News + 2011 April 14 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). NBC Nightly News episode.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Press Conference + 2011 May 02 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin and Senator Harry Reid + press conference coverage on C-SPAN regarding the U.S. operation that killed + Osama bin Laden.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Repatriating Offshore Funds Press Conference + 2011 October 12 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin press conference + releasing a majority staff report from the Permanent Subcommittee on + Investigations (PSI) on repatriating offshore funds.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Satellite Interviews + 2011 May 02 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin satellite interviews in + the Senate Recording Studio with Channel 6, WWMT, WDIV, and WXYZ.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Straight Talk on the Economy, Detroit Economic Club + 2011 October 10 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Lawrence Technological University presents + the Detroit Economic Club with guest, The Hon. Carl Levin, U.S. Senator, State + of Michigan, on the topic of "Straight Talk on the Economy," on October 10, + 2011.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + TACOM Life Cycle Management Command, Building 270 + Dedication + 2011 June 17 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). U.S. Army TACOM Life Cycle Management + Command (LCMC), Detroit Arsenal, Building 270 Grand Opening Ceremony and + Dedication with remarks by Major General Kurt Stein, Senator Carl Levin, + Congressman Sander Levin, Glenn D. Granger (President of Granger + Construction), and with host Devin Scillian.)

    +
    +
    + + + Video Conference, Berrien County Intermediate School + District + 2011 April 15 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Video Conference with Senator Carl Levin + and two schools, Benton Harbor High School and Bridgman High School. Video + conference coordinated by the Berrien County Intermediate School + District.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + 2012 + + + + PBS Frontline: Money, Power, and Wall Street + + + + Part 1 of 2 + 2012 April 24 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). PBS Frontline broadcast of Money, Power, + and Wall Street [Part 1 of 2].)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Part 2 of 2 + 2012 May 01 + + +

    [access part 1]

    +
    +
    + + +

    [access part 2]

    +
    +
    + + +

    [access part 3]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). PBS Frontline broadcast of Money, Power, + and Wall Street [Part 2 of 2].)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + ABC This Week + 2012 November 18 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). ABC This Week with Carl Levin and Peter + King on Israel, the Benghazi investigation, and David Petraeus.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + AIPAC Conference Remarks + 2012 March 06 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin remarks at the American + Israel Public Affairs Committee (AIPAC) annual conference as the Senate Armed + Services Committee Chair. This DVD starts at 8 am, while Levin's remarks begin + about 8:35 am.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Carl Levin Army Birthday Greeting + 2012 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Greeting from Carl Levin for the Army's + 237th birthday.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Carl Levin Jewish Studies Program Kickoff + 2012 February 23 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin remarks at Eastern + Michigan University Jewish Studies program kickoff event.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + CNBC + 2012 May 11 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). CNBC interview with Senator Carl Levin on + JP Morgan.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + CNN John King USA + 2012 March 15 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). CNN John King USA with Senator Carl Levin + on removing troops from Afghanistan.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + CNN Starting Point + 2012 May 22 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). CNN Starting Point with Senator Carl Levin + on counterfeit parts from China in U.S. military equipment.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + C-SPAN Newsmakers + 2012 March 11 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). C-SPAN Newsmakers with Senator Carl Levin + with questions from Jim Wolf, Reuters, Defense Technology Correspondent and + Jim Michael, USA Today, Military Reporter.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Filthy Rich + 2012 February 23 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). CNBC Investigations Inc., "Filthy Rich," + on corruption and money laundering with interview with Senator Carl + Levin.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + MSNBC Andrea Mitchell Reports + 2012 April 20 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). MSNBC Andrea Mitchell Reports with Senator + Carl Levin on Afghanistan and Syria.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + NBC Meet the Press + 2012 November 25 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). NBC Meet the Press with Sen. Carl Levin + and Rep. Peter King on Libya.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + NBC Nightly News + 2012 May 11 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). NBC Nightly News with footage of Carl + Levin on JP Morgan.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + PBS NewsHour + 2012 May 14 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). PBS NewsHour with Senator Carl Levin and + Senator Bob Corker on the Wall Street reform.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Permanent Subcommittee on Investigations Report - Vulnerabilities to + Money Laundering, Drugs, and Terrorist Financing: HSBC Case + History + 2012 July 17 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Reports and Exhibits for the Permanent + Subcommittee on Investigations (PSI) Majority and Minority Staff Report on + U.S. Vulnerabilities to Money Laundering, Drugs, and Terrorist Financing: HSBC + Case History. To be released in conjunction with the subcommittee's hearing on + July 17, 2012.)

    +
    +
    + + + Senator Carl Levin at the National Press Club + 2012 June 12 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin and General James + Cartwright at the National Press Club on sequestration and cuts to Defense + budget.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + The State of the Union + 2012 January 24 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). The 2012 State of the Union address by + President Barack Obama.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + 2013-2014 + + + + Council on Foreign Relations + + + + 2013 March 18 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Council on Foreign Relations Meeting + with Senator Carl Levin on Defense Policy.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2014 September 11 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Council on Foreign Relations Meeting + with Senator Carl Levin on Foreign Policy.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + CBS Face the Nation + 2013 September 14 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). CBS Face the Nation with Senator Carl + Levin and Senator Bob Corker on Syria.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + CNN Wolf Blitzer + 2013 April 09 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). CNN The Situation Room with Wolf Blitzer + with Senator Carl Levin regarding North Korea.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Farewell Parade for Senator Levin, Ft. Myer, Arlington, + VA + 2014 September 12 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Farewell Parade for Senator Carl Levin and + Representative Buck McKeon at Fort Myer in Arlington, VA.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Forum on Heroin and Opioid Addiction + 2014 June 18 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Coverage of the Senate Forum on Heroin and + Opioid Addiction and the Obstacles to Expanding Treatment.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + PBS NewsHour + 2013 September 03 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). PBS NewsHour with Senator Carl Levin + interview and Syria segments.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Senator Levin Speaking at the U.S. Institute of Peace + 2014 October 15 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin speaking on U.S. and + Afghanistan Relations at the U.S. Institute of Peace.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + ARRA Ferry Grant Press Conference with Secretary of Transportation,with + Ray LaHood + 2009 October 12 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Photographs of the American Recovery and + Reinvestment Act (ARRA) Ferry Grant Press Conference with Secretary of + Transportation Ray LaHood. Photographer: Tim Burke.)

    +
    +
    +
    + + + Congressional Record statement edits + 2 folders + 2004-2014 + 920 + + + + + Grand Marais Harbor press comment + 2012 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Levin office-newspaper columns + + + + 2009 + 920 + + + + + 2010 + 920 + + + + + 2011 + 920 + + + + + 2012 + 920 + + + + + 2013 + 920 + + + + + 2014 + 920 + + + + + + Michigan Press Reading Service (MPRS) articles + + + + 2010 + + + + January-March + 3 folders + 920 + + + + + April-September + 6 folders + 921 + + + + + October + 921 + + + + + November + 921 + + + + + December + 922 + + + + + + 10 folders + January-September + 2011 + 922 + + + + + 3 folders + October-December + 2011 + 923 + + + + + 10 folders + January-October + 2012 + 923 + + + + + + National press articles + + + + January-June + 2009 + 923 + + + + + July-December + 2009 + 924 + + + + + 2010 + + + + January-April + 924 + + + + + May-June + 924 + + + + + July-September + 924 + + + + + October-December + 924 + + + + + + January-June 2011 + 924 + + + + + July-December 2011 + 925 + + + + + 2012 + + + + January + 925 + + + + + February + 925 + + + + + March + 925 + + + + + April + 925 + + + + + May 1-15 + 925 + + + + + May 16-31 + 925 + + + + + June + 925 + + + + + July + 925 + + + + + August + 925 + + + + + September + 925 + + + + + October + 925 + + + + + November + 925 + + + + + December + 925 + + + + + + 2013 + + + + January-March + 925 + + + + + April-June + 926 + + + + + July-December + 926 + + + + + + 2014 + + + + January-May + 926 + + + + + June-October + 926 + + + + + November-December + 926 + + + + + + + News articles-by subject + + + + Clips from Carl + 2009 + 926 + + +

    (Includes: Camp Grayling, Afghanistan, Obama, Cheney, and voters)

    +
    +
    + + + Retirement-Michigan and National + March 8, 2013 + 927 + + +
    + + + Office subject files + + + + Budget and shutdown, Fall + 2013 + 927 + + + + + Buprenorphine Forum, (U.S. Senate forum convened by Senator Carl Levin + and Senator Orrin Hatch on treatment of opioid addiction + 2014 + 927 + + + + + Carnegie endowment speech + July 2013 + 927 + + + + + Columns and op-eds + January-June 2014 + 927 + + + + + Council on Foreign Relations + March 2013 + 927 + + + + + Credit Suisse + February 26, + 2014 + 927 + + + + + Cybersecurity SASC report + September 2014 + 927 + + + + + Floor statements + January-May 2014 + 927 + + + + + U-M Ford School commencement + May 2014 + 927 + + + + + High-speed trading + June 17, 2014 + 927 + + + + + Inversions + May-July 2014 + 927 + + + + + Iraq floor speech + January 2014 + 927 + + + + + Iraq-Syria speech + June-October 2014 + 927 + + + + + Michigan events + April-June 2014 + 927 + + + + + Military sexual assault, Fall + 2013 + 927 + + + + + Miscellaneous D.C. materials + 2013 + 927 + + + + + Miscellaneous floor D.C. events + January-July 2014 + 927 + + + + + Miscellaneous foreign affairs + 2013-2014 + 927 + + + + + Miscellaneous Michigan events + 2013-2014 + 927 + + + + + Miscellaneous Michigan items + 2013 + 927 + + + + + Miscellaneous Michigan stuff + 2013 + 927 + + + + + Miscellaneous speeches and statements + 2013 + 927 + + + + + Nuclear option, Summer-Fall + 2013 + 927 + + + + + Op-eds + October 2014 + 927 + + + + + PSI Apple hearing + May 2013 + 927 + + + + + PSI basket options + July 2014 + 928 + + + + + PSI Caterpillar + April 1, 2014 + 928 + + + + + Reagan forum speech + November 2013 + 928 + + + + + Reserve Officers Association speech + August 2013 + 928 + + + + + Retirement announcement + March 2013 + 928 + + + + + Secret sequester tacks + 2012 + 928 + + + + + Senate Armed Services Committee (SASC) related + February-March 2014 + 928 + + + + + Stop Tax Haven Abuse Act + September 2013 + 928 + + + + + Syria + September 2013 + 928 + + + + + United States Institute of Peace (USIP) and Council on Foreign + Relations (CFR) speeches + September-October 2014 + 928 + + + + + U.S.S. Ford christening + November 2013 + 928 + + + + + Video greetings + March-May 2014 + 928 + + + + + + Op-ed -- Ballistic Missile Defense (BMD) + October 13, + 2009 + 928 + + + + + Radio tours + + + + Radio tour schedules + 11 subfolders + 2009-2014 + 928 + + + + + 2009 + + + + Senator Levin Radio Tour + + + + 2009 December 10 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + Afghanistan and some sections about health care reform on: WWJ-AM, + Southfield, with reporter Bob Mundie; WILS-AM, Lansing, with host Walter + Sorg; WWJ-AM, Detroit, with host Paul W. Smith; Bill Press Show, Ann + Arbor/Grand Rapids, with host Bill Press; and Michigan Radio Network, + Statewide, with reporter Bill Thompson.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2009 December 16 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + health care reform on: WCMU-FM, Mt. Pleasant, with reporter Mike Horace; + WFXD-FM, Marquette, with host Walt Lindala; Michigan Talk Radio Network, + Statewide, with host Michael Patrick Shiels; and WUOM-FM, Ann Arbor, with + reporter Steve Carmody.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2009 November 04 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + unemployment insurance extension on: WFXD-FM, Marquette, with host Walt + Lindala; WPHM-AM, Port Huron, with host Paul Miller; WCMU-FM, Mt. Pleasant, + with reporter Mike Horace; WSOO-AM, Sault Ste. Marie, with reporter Tom + Ewing; and WUOM-FM, Ann Arbor, with reporter Rina Miller.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2009 October 02 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + Afghanistan on: War News Radio, Swarthmore College, with reporter Kyle + Goeckner-Wald; WOOD-AM, Grand Rapids, with reporter Rod Kackley; WNMU-FM, + Marquette, with host Nicole Walton; WJNR-FM, with host Aaron Harper; and + Michigan Radio Network, Statewide, with reporter Bill Thompson.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2009 October 21 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + overdraft fees on: WWJ-AM, Southfield, with reporter Sandra McNeill; + WTNR-FM, Grand Rapids, with hosts Scrubbs, April, and Flounder; Michigan + Talk Radio Network, Statewide, with host Michael Patrick Shiels; and + WILS-AM, Lansing, with host Walt Sorg.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2009 October 29 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + unemployment insurance extension on: WSGW-AM, Saginaw, with reporter Bill + Hewitt; BBC The World, 8 Michigan Stations/National, with host Katy Clark; + WKHM-AM, Jackson, with host Greg O'Connor; WWJ-AM, Southfield, reporter with + Greg Bowman; and Michigan Radio Network, Statewide, with reporter Bill + Thompson.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    +
    + + + 2010 + + + + Senator Levin Radio Tour + + + + 2010 April 30 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + Permanent Subcommittee on Investigations (PSI) Goldman Sachs hearing and + financial reform on: The Takeaway, National, with hosts Celeste Headleeand + John Hockenberry; Michigan Talk Radio Network, Statewide, with host Michael + Patrick Shiels; WFXD-FM, Marquette, with host Walt Lindala; WWJ-AM, + Southfield, with reporter Greg Bowman; and Michigan Radio Network, + Statewide, with reporter Bill Thompson.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2010 December 01 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + the Food and Drug Administration (FDA) Food Safety Modernization Act and + Don't Ask, Don't Tell on: WCMU-FM, Mt. Pleasant, with reporter Mike Horace; + Michigan Talk Radio Network, Statewide, with host Michael Patrick Shiels; + WKQS-FM, Marquette, with reporter Walt Lindala; WWJ-AM, Southfield, with + reporter Greg Bowman; and Michigan Radio Network, Statewide, with reporter + Rob Baykian.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2010 January 22 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + the Senate Armed Services Committee (SASC) hearing on an independent review + of the shootings at Fort Hood on: WKHM-AM, Jackson, with host Greg O'Connor; + WSOO-AM, Sault Ste. Marie, with host Tom Ewing; WPHM-AM, Port Huron, with + host Paul Miller; and WDET-FM, Detroit, with reporter Rob St. Mary. Also + listed is WSGW-AM, Saginaw, with reporter Bill Hewitt, but did not hear that + interview on the audio.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2010 January 28 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + the State of the Union address on: WJR-AM, Detroit, with host Paul W. Smith; + WFXD-FM, Marquette, with host Walt Lindala; Michigan Talk Radio Network, + Statewide, with host Michael Patrick Shiels; WKZO-AM, Kalamazoo, with host + Lori Moore; and WWJ-AM, Detroit, with hosts Joe Donovan and Roberta + Jasina.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2010 July 14 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + his trip to Afghanistan and Pakistan on: WSOO-AM, Sault Ste. Marie, with + host Tom Ewing; WJNR-FM, Iron Mountain, with host Aaron Harper; WKHM-AM, + Jackson, with host Greg O'Connor; WWJ-AM, Southfield, with reporter Paul + Snider; and Michigan Radio Network, Statewide, with reporter Bill + Thompson.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2010 July 21 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Cerl Levin radio tour regarding + unemployment insurance extension and signing of Wall Street reform + legislation on: WWJ-AM, Southfield, with reporter Jon Hewitt; WSGW-AM, + Saginaw, with reporter Bill Hewitt; TalkLansing.net, Lansing, with host Walt + Sorg; WNMU-FM, Marquette, with host Nicole Walton; WBCK-FM, Battle Creek, + with host Tim Collins; and Michigan Radio Network, Statewide, with reporter + Bill Thompson.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2010 July 28 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + Kalamazoo River oil spill and DISCLOSE, Democracy Is Strengthened by Casting + Light On Spending in Elections, Act on: WILS-AM, Lansing, with host Tony + Conley; WOOD-AM, Grand Rapids, with reporter Rod Kackley; WCMU-FM, Mt. + Pleasant, with reporter Mike Horace; WUOM-FM, Ann Arbor, with reporter Steve + Carmody; and WKQS-FM, Marquette, with host Walt Lindala.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2010 June 30 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + Gen. David Petraeus nomination hearing, Afghanistan, and financial reform + bill on: WCMU-FM, Mt. Pleasant, with reporter Mike Horace; Michigan Talk + Radio Network, Statewide, with host Michael Patrick Shiels; WJR-AM, Detroit, + with host Paul W. Smith; WUOM-FM, Ann Arbor, with reporters Vince Duffy and + Steve Carmody; and Michigan Radio Network, Statewide, with reporter Bill + Thompson.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2010 March 10 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + HIRE, Hiring Incentives to Restore Employment, Act (with possible mentions + of health care reform and Great Lakes Restoration Bill) on: WSGW-AM, + Saginaw, with reporter Bill Hewitt; WILS-AM, Lansing, with host Tony Conley; + WFXD-FM, Marquette, with host Walt Lindala; WKHM-AM, Jackson, with host Greg + O'Connor; and WDET-FM, Detroit, with reporter Amy Miller.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2010 March 17 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + HIRE, Hiring Incentives to Restore Employment, Act on: WSOO-AM, Sault Ste. + Marie, with host Tom Ewing; TalkLansing.net, Lansing, with host Walt Sorg; + WOOD-AM, Grand Rapids, with reporter Rod Kackley; WWJ-AM, Southfield, with + reporter Greg Bowman; and Michigan Radio Network, Statewide, with reporter + Bill Thompson.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2010 May 05 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + Wall Street reform and Permanent Subcommittee on Investigations (PSI) + hearings on Wall Street and the financial crisis: WILS-AM, Lansing, with + host Tony Conley; WJNR-FM, Iron Mountain, with host Aaron Harper; WNMU-FM, + Marquette, with host Nicole Walton; WUOM-FM, Ann Arbor, with reporter Vince + Duffy; and WCMU-FM, Mt. Pleasant, with reporter Mike Horace.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2010 May 12 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + Wall Street reform, Merkley-Levin amendment, and Levin-Kaufman amendment on: + WSGW-AM, Saginaw, with reporter Bill Hewitt; WWJ-AM, Southfield, with + reporter Florence Walton; WKHM-AM, Jackson, with host Greg O'Connor; + WDET-FM, Detroit, with reporter Quinn Klinefelter; and WPHM-AM, Port Huron, + with host Paul Miller.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2010 May 21 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + Wall Street reform on: Michigan Talk Radio Network, Statewide, with host + Michael Patrick Shiels; WSOO-AM, Sault. Ste. Marie, with host Tom Ewing; + WOOD-AM, Grand Rapids, with reporter Rod Kackley; and TalkLansing.Net, + Lansing, with host Walt Sorg.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2010 November 19 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + General Motors on: WSOO-AM, Sault Ste. Marie, with reporter Tom Ewing; + WWJ-AM, Southfield, with reporter Greg Bowman; WKHM-AM, Jackson, with host + Greg O'Connor; WDET-FM, Detroit, with host Quinn Klinefelter; and WILS-AM, + Lansing, with host Tony Conley.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2010 September 15 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + the Small Business Jobs and Credit Act of 2010 on: WWJ-AM, Southfield, with + reporter Tawanna Holly; Michigan Talk Radio Network, Statewide, with host + Michael Patrick Shiels; WKQS-FM, Marquette, host Walt Lindala; WDET-FM, + Detroit, host Quinn Klinefelter; and Michigan Radio Network, Statewide, with + reporter Rob Baykian.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2010 March 05 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + unemployment insurance and COBRA benefits extension on: WCMU-FM, Mt. + Pleasant, with reporter Mike Horace; Michigan Talk Radio Network, Statewide, + with host Michael Patrick Shiels, reporter Chuck Moss; WJR-AM, Detroit, with + host Frank Beckmann; WWJ-AM, Southfield, with hosts Roberta Jasina and Joe + Donovan; and Michigan Radio Network.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    +
    + + + 2011 + + + + Senator Levin Conference Call + 2011 May 02 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Audio of press conference call regarding + the U.S. operation that killed Osama bin Laden.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Senator Levin Radio Tour + + + + 2011 April 01 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + the situation in Libya on: WWJ-AM, Southfield, with TBD reporter; Michigan + Talk Radio Network, Statewide, with host Rich Kincaide; WKHM-AM, Jackson, + with host Greg O'Connor; WUOM-FM, Ann Arbor, with reporter Steve Carmody; + and Michigan Radio Network, Statewide, with reporter Bill Thompson.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2011 April 15 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + Permanent Subcommittee on Investigations (PSI) report on financial crisis + on: WILS-AM, Lansing, host Tony Conley; WCMU-FM, Mt. Pleasant, with reporter + Mike Horace; Michigan Talk Radio Network, Statewide, with host Michael + Patrick Shiels; and WWJ-AM, Southfield, with reporter Greg Bowman.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2011 December 07 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + extension of the payroll tax cut and unemployment insurance on: WUOM-FM, Ann + Arbor, with reporter Vince Duffy; WCMU-FM, Mt. Pleasant, with reporter Mike + Horace; WJRW-AM, Grand Rapids, with host Dave Jaconette; and Michigan Radio + Network, Statewide, with reporter Rob Baykian. Also listed is WNMU-FM, + Marquette, with host Nicole Walton, but did not hear that interview on the + audio.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2011 February 02 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + legislation to expand electric vehicle tax credit on: WILS-AM, Lansing, with + host Tony Conley; WKHM-AM, Jackson, with host Greg O'Connor; WUOM-FM, Ann + Arbor, with reporter Tracy Samilton; and Michigan Radio Network, Statewide, + with reporter Rob Baykian.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2011 January 26 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + the State of the Union address on: WKQS-FM, Marquette, with host Walt + Lindala; WKZO-AM, Kalamazoo, with host Lori Moore; Michigan Talk Radio + Network, Statewide, with host Michael Patrick Shiels; WWJ-AM, Southfield, + with hosts Roberta Jasina and Joe Donovan; and WOOD-AM, Grand Rapids, with + reporter Paul Cicchini.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2011 July 13 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + Stop Tax Haven Abuse Act on: WKQS-FM, Marquette, with host Mark Evans; + WUOM-FM, Ann Arbor, with reporter Vince Duffy; WJR-AM, Detroit, with host + Paul W. Smith; WOOD-AM, Grand Rapids, with reporter Paul Cicchini; and + WJRW-AM, Grand Rapids, with host Tony Gates.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2011 June 08 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + Afghanistan on: WSGW-AM, Saginaw, with reporter Bill Hewitt; Michigan Talk + Radio Network, Statewide, with host Michael Patrick Shiels; Bill Press Show, + XM/Sirius, with host Bill Press; and Michigan Radio Network, Statewide, with + reporter Bill Thompson.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2011 June 22 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + Senate Armed Services Committee (SASC) investigation into counterfeit + electronic parts in the Department of Defense (DOD) supply chain on: + WSOO-AM, Sault Ste. Marie, with reporter Tom Ewing; WCMU-FM, Mt. Pleasant, + with reporter Mike Horace; WBCK-AM, Battle Creek, with reporter Bruce + Marcus; WWJ-AM, Southfield, with reporter Marie Osborne; and Michigan Radio + Network, Statewide, with reporter Bill Thompson.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2011 May 04 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + killing of Osama bin Laden on: WDET-FM, Detroit, with reporter Quinn + Klinefelter; Bill Press Show, X-M/Sirius, with host Bill Press; Michigan + Talk Radio Network, Statewide, with host Michael Patrick Shiels; Michigan + Radio Network, Statewide, with reporter Rob Baykian; and WKZO-AM, Kalamazoo, + with host Lori Moore.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2011 May 11 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + high-speed rail on: WLEN-FM, Adrian, with reporter Michael Schley; WBCK-FM, + Battle Creek, with reporter Bruce Marcus; WKHM-AM, Jackson, with host Greg + O'Connor; Michigan Radio Network, Statewide, with reporter Rob Baykian; and + WKZO-AM, Kalamazoo, with host Lori Moore.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2011 May 18 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + ending tax breaks for oil and gas companies on: WUOM-FM, Ann Arbor, with + reporter Kate Davidson; WKQS-FM, Marquette, with reporter Walt Lindala; + WCMU-FM, Mt. Pleasant, with reporter Mike Horace; WWJ-AM, Southfield, with + reporter Greg Bowman; and WILS-AM, Lansing, with host Tony Conley.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2011 November 02 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + the Rebuild America Jobs Act on: WWJ-AM, Southfield, with TBD reporter; + WOOD-AM, Grand Rapids, with reporter Paul Cicchini; WJNR-FM, Iron Mountain, + with host Aaron Harper; WCMU-FM, Mt. Pleasant, with reporter Mike Horace; + and Michigan Radio Network, Statewide, with reporter Bill Thompson.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2011 November 10 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + Senate Armed Services Committee (SASC) hearing on counterfeit electronic + parts in Department of Defense (DOD) supply chain on: WSGW-AM, Saginaw, with + reporter Bill Hewitt; WSOO-AM, Sault Ste. Marie, with reporter Tom Ewing; + WUOM-FM, Ann Arbor, with reporter Tracy Samilton; and WPHM-AM, Port Huron, + with host Paul Miller.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2011 November 16 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + Senate Armed Services Committee (SASC) hearing on counterfeit electronic + parts in Department of Defense (DOD) supply chain on: WLEN-FM, Adrian, with + reporter Dominic Fracassa; WBCK-FM, Battle Creek, with reporter Rob Nelson; + WKHM-AM, Jackson, with host Greg O'Connor; WKQS-FM, Marquette, with host + Walt Lindala; and Michigan Radio Network, Statewide, with reporter Bill + Thompson.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2011 October 19 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + the teachers and first responders Back to Work Act on: WWJ-AM, Southfield, + with reporter Laura Bonnell; WKZO-AM, Kalamazoo, with host Lori Moore; + WCHB-AM, Detroit, with host Mildred Gaddis; WLEN-FM, Adrian, with reporter + Dale Gaertner; and WKHM-AM, Jackson, with host Greg O'Connor.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2011 September 09 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + President Obama's address to a joint session of Congress on jobs on: WWJ-AM, + Southfield, with reporter Brian Larson; Michigan Talk Radio Network, + Statewide, with host Rich Kincaide; WJR-AM, Detroit, with host Steve + Courtney; WKQS-FM, Marquette, with host Walt Lindala; and Michigan Radio + Network, Statewide, with reporter Bill Thompson.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2011 September 13 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + the American Jobs Act on: WCMU-FM, Mt. Pleasant, with reporter Mike Horace; + WSOO-AM, Sault Ste. Marie, with reporter Tom Ewing; WNMU-FM, Marquette, with + host Nicole Walton; WUOM-FM, Ann Arbor, with reporter Vince Duffy; and + WKHM-AM, Jackson, with host Greg O'Connor.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2011 September 21 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + President Obama's deficit reduction plan on: WSGW-AM, Saginaw, with reporter + Bill Hewitt; WILS-AM, Lansing, with host Tony Conley; WOOD-AM, Grand Rapids, + with reporter Paul Cicchini; WDET-FM, Detroit, with reporter Quinn + Klinefelter; and Michigan Radio Network, Statewide, reporter with Bill + Thompson.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2011 July 29 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + the debt ceiling: WWJ-AM, Southfield, with TBD reporter; WCMU-FM, Mt. + Pleasant, with reporter David Nicholas; Michigan Talk Radio Network, + Statewide, with host Rich Kincaide; WSGW-AM, Saginaw, with reporter Bill + Hewitt; and Michigan Radio Network, Statewide, with reporter Bill + Thompson.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2011 March 09 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + budget and CR on: WWJ-AM, Southfield, with TBD reporter; WSGW-AM, Saginaw, + with reporter Bill Hewitt; Michigan Talk Radio Network, Statewide, with host + Michael Patrick Shiels; WOOD-AM, Grand Rapids, with reporter Paul Cicchini; + and Michigan Radio Network, Statewide, with reporter Bill Thompson.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2011 March 16 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + Senate Armed Services Committee (SASC) hearing on Afghanistan on: WSOO-AM, + Sault Ste. Marie, with host Tom Ewing; WKQS-AM, Marquette, with host Walt + Lindala; WJR-AM, Detroit, with host Paul W. Smith; WCMU-FM, Mt. Pleasant, + with reporter Mike Horace; WBCK-AM, Battle Creek, with reporter Bruce + Marcus.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2011 October 05 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + the American Jobs Act and your 7-point deficit reduction plan on: WCMU-FM, + Mt. Pleasant, with reporter Mike Horace; WKQS-FM, Marquette, with host Walt + Lindala; WJR-AM, Detroit, with host Paul W. Smith; WWJ-AM, Southfield, with + reporter Greg Bowman; and WBCK-FM, Battle Creek, with reporter Rob + Nelson.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2011 October 13 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + Permanent Subcommittee on Investigations (PSI) repatriation tax break report + and the Detroit Economic Club speech on: WSOO-AM, Sault Ste. Marie, with + host Tom Ewing; WSGW-AM, Saginaw, with reporter Bill Hewitt; Michigan Talk + Radio Network, Statewide, with host Michael Patrick Shiels; Michigan Radio + Network, Statewide, with reporter Rob Baykian; and WUOM-FM, Ann Arbor, with + reporter Tracy Samilton.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    +
    + + + 2012 + + + + Senator Levin Radio Tour + + + + WWJ-AM + 2012 June 29 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + Supreme court decision on the Affordable Care Act on: WWJ-AM, Southfield, + with reporter Greg Bowman.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2012 April 18 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + amicus brief on oil prices and excessive speculation, and the Buffet Rule + on: WSOO-AM, Sault Ste. Marie, with host Tom Ewing; WILS-AM, Lansing, with + host Tony Conley; WKHM-AM, Jackson, with host Greg O'Connor; WSGW-AM, + Saginaw, with reporter Bill Hewitt; and WUOM-FM, Ann Arbor, with reporter + Tracy Samilton.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2012 April 27 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + postal bill on: WWJ-AM, Southfield, with reporter Crystal Knight; WJNR-FM, + Iron Mountain, with host Aaron Harper; WSGW-AM, Saginaw, with reporter Pat + Johnston; Michigan Talk Radio Network/WJIM-AM, Lansing/Statewide, with hosts + Steve Gruber and Jo Anne Paul; and Michigan Radio Network, Statewide, with + reporter Rob Baykian.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2012 February 09 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + CUT, Cut Unjustified Tax, Loopholes Act on: WMPC-AM, Lapeer, with host Greg + Bullen; WKQS-FM, Marquette, with host Walt Lindala; WPHM-AM, Port Huron, + with host Paul Miller; WWJ-AM, Southfield, with reporter Laura Bonnell; and + WUOM-FM, Ann Arbor, with reporter Vince Duffy.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2012 January 25 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + President Obama's State of the Union address on: Michigan Talk Radio + Network, Statewide, with host Michael Patrick Shiels; WWJ-AM, Southfield, + with reporter Scott Ryan; WCMU-FM, Mt. Pleasant, with reporter Mike Horace; + WJR-AM, Detroit, with host Paul W. Smith; and WKZO-AM/FM, Kalamazoo, with + host Lori Moore.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2012 July 18 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + Permanent Subcommittee on Investigations (PSI) hearing on global bank HSBC + on: WKQS-FM, Marquette, with host Walt Lindala; WBCK-FM, Battle Creek, with + reporter Rob Nelson; WKHM-AM, Jackson, with host Greg O'Connor; WWJ-AM, + Southfield, with reporter Marie Osborne; and WSOO-AM, Sault Ste. Marie, with + host Tom Ewing.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2012 July 25 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + Middle Class Tax Cut Act on: Michigan's Big Show, Statewide, with host + Michael Patrick Shiels; WCMU-FM, Mt. Pleasant, with host David Nicholas; + WNMU-FM, Marquette, with host Nicole Walton; WUOM-FM, Ann Arbor, with + reporter Tracy Samilton; and Michigan Radio Network, Statewide, with + reporter Bill Thompson.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2012 June 13 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + National Press Club panel discussion on how to balance national defense + needs with budget realities on: WCMU-FM, Mt. Pleasant, with reporter Mike + Horace; WOOD-AM, Grand Rapids, with reporter Paul Cicchini; WKQS-FM, + Marquette, with host Walt Lindala; WDET-FM, Detroit, with reporter Quinn + Klinefelter; and Michigan Radio Network, Statewide, with reporter Bill + Thompson.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2012 June 20 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + how to balance national defense needs with budget realities on: WSGW-AM, + Saginaw, with reporter Bill Hewitt; Michigan's Big Show, Statewide, with + host Michael Patrick Shiels; WWJ-AM, Southfield, with reporter Marie + Osborne; and WUOM-FM, Ann Arbor, with reporter Zoe Clark. Also listed is + WSOO-AM, Sault Ste. Marie, with host Tom Ewing, but did not hear that + interview on the audio.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2012 June 29 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + Supreme Court decision on the Affordable Care Act on: WCMU-FM, Mt. Pleasant, + with host David Nicholas; Michigan's Big Show, Statewide, with host Michael + Patrick Shiels; WILS-AM/Michigan's Morning Show, Lansing/Statewide, with + hosts Steve Gruber and Jo Anne Paul; Michigan Radio Network, Statewide, with + reporter Bill Thompson; and WDET-FM, Detroit, with reporter Quinn + Klinefelter. Also listed is WWJ-AM, Southfield, with reporter Greg Bowman, + but did not hear that interview on audio.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2012 March 14 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + transportation bill and offshore tax loophole amendment included in bill on: + WSOO-Am, Sault Ste. Marie, with reporter Tom Ewing; WJNR-FM, Iron Mountain, + with host Aaron Harper; WKHM-AM, Jackson, with host Greg O'Connor; Michigan + Talk Radio Network, Statewide, with guest host Virg Bernero, Mayor of + Lansing; and Michigan Radio Network, Statewide, with reporter Bill + Thompson.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2012 March 21 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + Senate Armed Services Committee (SASC) hearing on the Air Force and proposed + Air National Guard cuts on: WWJ-AM, Southfield, with reporter Brian Larson; + WBCK-FM, Battle Creek, with hosts Rob Nelson and Tim Collins; WJR-AM, + Detroit, with host Paul W. Smith; Michigan Radio Network, Statewide, with + reporter Rob Baykian; and WPHM-AM, Port Huron, with host Paul Miller.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2012 March 28 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + oil prices and excessive speculation on: WCMU-FM, Mt. Pleasant, with + reporter Mike Horace; WOOD-AM, Grand Rapids, with reporter John Bry; + WNMU-FM, Marquette, with host Nicole Walton; WJR-AM, Detroit, with host + Frank Beckmann; and Michigan Radio Network, Statewide, with reporter Bill + Thompson.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2012 May 09 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + his trip to Afghanistan on: WWJ-AM, Southfield, with reporter Marie Osborne; + WPHM-AM, Port Huron, with host Paul Miller; WNMU-FM, Marquette, with host + Nicole Walton; WCMU-FM, Mt. Pleasant, with reporter Mike Horace; and + WKZO-AM/FM, Kalamazoo, with host Lori Moore.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2012 May 16 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + JPMorgan and the Volcker Rule on: WJR-AM, Detroit, with host Paul W. Smith; + WBCK-FM, Battle Creek, with hosts Tim Collins, Rob Nelson, and Roy + LaFountain; WKHM-AM, Jackson, with host Greg O'Connor; Michigan Radio + Network, Statewide, with reporter Rob Baykian; and WKQS-FM, Marquette, with + host Walt Lindala.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2012 September 12 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + Great Lakes Water Quality Agreement, Great Lakes Week, plans to introduce + legislation modeled on the Great Lakes Ecosystem Protection Act of 2010, and + Libya and the killing of U.S. ambassador on: WWJ-AM, Southfield, with + reporter Greg Bowman; Michigan Radio Network, Statewide, with reporter Rob + Baykian; WJR-AM, Detroit, with host Paul W. Smith; WCMU-FM, Mt. Pleasant, + with reporter Mike Horace; and WKQS-FM, Marquette, with host Walt + Lindala.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2012 March 01 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + Facebook and the stock option tax loophole on: WBCK-FM, Battle Creek, with + reporter Rob Nelson; WWJ-AM, Southfield, with reporter Laura Bonnell; + WCMU-FM, Mt. Pleasant, WSGW-AM, Saginaw, with reporter Bill Hewitt; and + WOOD-AM, Grand Rapids, with reporter Paul Cicchini.)

    +
    +
    +
    +
    + + + 2013-January 2014 + + + + BBC Interview + 2013 September 23 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Audio of Senator Carl Levin BBC interview, + regarding offshore tax havens.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + Senator Levin Radio Tour + + + + 2013 February 13 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + the State of the Union address and the CUT, Cut Unjustified Tax, Loopholes + Act on: WJR-AM, Detroit, Frank Beckmann; WUOM-FM, Ann Arbor, with reporter + Tracy Samilton; WWJ-AM, Southfield, with reporter Marie Osborne; WKQS-FM, + Marquette, with host Walt Lindala; and WCMU-FM, Mt. Pleasant, with reporter + Mike Horace.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2013 February 27 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + sequester on: The Big Show, West and Northwest Michigan, with host Michael + Patrick Shiels; WBCK-FM, Battle Creek, with hosts Rob Nelson, Tim Collins, + and Ray Lafountain; WJR-AM, Detroit, with host Paul W. Smith; WDET-FM, + Detroit, with reporter Quinn Klinefelter; and Michigan Radio Network, + Statewide, with reporter Bill Thompson.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2013 March 20 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + budget on: WJR-AM, Detroit, with host Frank Beckmann; WILS-AM, Lansing, with + host Tony Conley; WCMU-FM, Mt. Pleasant, with reporter Mike Horace; WWJ-AM, + Southfield, with reporter Marie Osborne; and Michigan Radio Network, + Statewide, with reporter Bill Thompson.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2013 September 12 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + Syria on: WCMU-FM, Mt. Pleasant, with reporter Mike Horace; WKQS-FM, + Marquette, with host Walt Lindala; Michigan Talk Radio Network, Statewide, + with host Michael Patrick Shiels; WWJ-AM, Southfield, with hosts Roberta + Jasina and Tom Jordan; and Michigan Radio Network, Statewide, with reporter + Bill Thompson.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2013 September 24 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + possible government shutdown on: WUOM-FM, Ann Arbor, with reporter Vince + Duffy; WOOD-AM/FM, Grand Rapids, with reporter Greg Ghering; WKZO-AM, + Kalamazoo, with host Jim McKinney; WDTW-AM, Detroit, with host Tony + Trupiano; and Michigan Radio Network, Statewide, with reporter Rob + Baykian.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2014 January 09 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + extension of unemployment insurance on: WKQS-FM, Marquette, with host Walt + Lindala; WCMU-FM, Mt. Pleasant, with reporter Mike Horace; Michigan's Big + Show, Statewide, with host Michael Patrick Shiels; WWJ-AM, Southfield, with + reporter Jackie Paige; and Michigan Radio Network, Statewide, with reporter + Rob Baykian.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    + + + 2014 January 14 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Senator Carl Levin radio tour regarding + extension of unemployment insurance and Michigan State University's Facility + for Rare Isotopic Beams (FRIB) on: WOOD-AM/FM, Grand Rapids, with reporter + Greg Ghering; WKAR-FM, Lansing, with host Mark Bashore; WNMU-FM, Marquette, + with host Nicole Walton; WKZO-AM, Kalamazoo, with host Jim McKinney; and + Michigan Radio Network, Statewide, with reporter Rob Baykian.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    +
    +
    + + + Statements and talking points + + + + Commodities bill + December 2014 + 928 + + + + + Commodities hearing, (Wall Street Bank Involvement with Physical + Commodities; PSI) + November 2014 + 928 + + + + + Farewell address + December 12, + 2014 + 928 + + + + + Fredman, Jonathan, (CIA lawyer, misrepresented in SASC hearing -- + Guantanamo interrogation) + 2008-2009 + 928 + + + + + Miscellaneous + November-December 2014 + 928 + + + + + Miscellaneous end of season + December 2014 + 928 + + + + + National Defense Authorization Act and miscellaneous + defense + November-December 2014 + 928 + + + + + Omnibus and swaps pushout + December 2014 + 928 + + + + + Prague-Atta CIA cable + December 2014 + 928 + + + + + Senate Select Committee on Intelligence (SSCI) Detention report, (CIA's + detention and interrogation program) + December 9, + 2014 + 928 + + + +
    + + + Speeches + 2009-2015 + + + + AIPAC + March 6, 2012 + 942 + + + + + Fifth Annual Kelley Institute lecture + 2014 + 942 + + +

    (Michigan State University College of Law)

    +
    +
    + + + Rosa Parks stamp unveiling at Henry Ford Museum + February 4, + 2013 + 942 + + + + + Reagan National Defense Forum -- Building Peace through Strength through + 2025 + November 16 + 2013 + 942 + + + + + Reflections to CRS staffers + June 2015 + 942 + + + + Reflections of Sen. Carl Levin + 2015 June 02 + + +

    [access item]

    +
    +
    + Online +
    + +

    (2009-2014 (111th-113th Congress). Reflections of Senator Carl Levin, a + presentation by Levin to Congressional Research Service (CRS) staffers, with + question and answers. Includes introduction by Walter Oleszek, Senior Specialist + in American National Government.)

    +
    + +

    [Access to this material is restricted to the reading room of the Bentley + Historical Library.]

    +
    +
    +
    + + + Remarks and speeches + 3 folders + 2014 + 942 + + + + + Notes and speeches + 2 folders + 2010 + 942 + + + + + Speech notes + September 2010-December 2011 + 942 + + + + + Speeches, columns, and op-eds + + + + 2 folders + 2010-2011 + 942 + + + + + 2 folders + 2011 + 943 + + + + + 2011-2012 + 943 + + + + + 2012-2013 + 943 + + + + + + Speeches and speech material + 2011-2013 + + + + Michigan events and speeches + 1-3 of 5 folders + 943 + + +

    (folder 1 includes a photograph from Korean Veterans Commemoration + Ceremony)

    +
    +
    + + + Michigan events and speeches + 4-5 of 5 folders + 944 + + +
    + + + Speeches, statements, talking points, and press releases -- Carl + edits + 2 folders + 2010 + 944 + + + + + Statements and speeches -- carl edits + 2 folders + 2010 + 937 + + + + + Talking points and statements -- Carl edits + 2009 + 944 + + + + + Talking points and video scripts -- Carl edits + 2010 + 944 + + + + + Farewell address + December 1, + 2014 + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + Trade + 2005-2014 + + + + American Jobs Act, (A. Pascale) + 2011 + 1011 + + + + + Carl's American Jobs Act, (A. Pascale) + 2011 + 1011 + + + + + Auto industry + + + + American Automotive Policy Council + 2009 + 1011 + + + + + Information Technology Agreement (ITA) expansion and auto + parts + 2012 + 1011 + + + + + VOLT technology transfer USTR China letter + 2011 + 1011 + + + + + + Auto parts anti-trust investigation, (A. Pascale) + 2013 + 1011 + + + + + China + + + + Antidumping and countervailing duty investigations, unfair trade + practices, tubular goods, and U.S. International Trade Commission + 2009 + 1011 + + + + + Apple iPad and iPhone trademark dispute + 2012 + 1011 + + + + + Auto parts unfair trade + 2012 + 1011 + + + + + Clean energy + 2009-2010 + 1011 + + + + + China currency manipulation + 2005-2012 + 1011 + + + + + NewPage Corporation coated paper-Sandy Levin testimony + 2009-2010 + 1011 + + + + + Rare earth minerals + 2010 + 1011 + + + + + Trade issues + 2 folders + 2010 + 1011 + + + + + Unfair trade practices + 2013 + 1011 + + + + + + Commerce export controls, (A. Pascale) + 2014 + 1012 + + + + + Fair Trade Agreement (FTA) + + + + Colombia + + + + Carl Levin statement on action plan on labor rights + 2011-2012 + 1012 + + + + + Sandy Levin position + 2011 + 1012 + + + + + + Korea + + + + ITC job numbers, impact on jobs and trade balance + 2011 + 1012 + + + + + Implementation H.R.3080 + 2009-2010 + 1012 + + + + + + Panama-floor statement + 2011 + 1012 + + + + + Recommendation of mock mark ups-Colombia, Korea, and Panama + 2011 + 1012 + + + + + + Foreign Trade Zones (FTZ) Dow-Corning letter and American + competitiveness + 2010 + 1012 + + + + + Global Magnitsky Human Rights Accountability Act + 2013 + 1012 + + + + + Japan auto + + + + Anti-trust letter, (A. Pascale) + 2014 + 1012 + + + + + Car pricing and currency, (A. Pascale) + 2013 + 1012 + + + + + + Japanese trans-Pacific partnership negotiations + 2013 + 1012 + + + + + Carl's trade materials + 2010-2012 + 1012 + + + + + Manufacturing extension partnership and technology innovation + program + 2009 + 1012 + + + + + Miscellaneous tariff bills + + + + 8 folders + 2009-2011 + 1012 + + + + + 7 folders + 2012-2013 + 1012 + + + + + + Miscellaneous tariff issues + 2009-2010 + 1012 + + + + + Most Favored Nation (MFN)-history of Jackson-Vanik + restrictions + 2012 + 1012 + + + + + Nomination for U.S. Trade Representative (USTR)-Froman, (A. + Pascale) + 2013 + 1048 + + + + + Oil Country Tubular Goods antidumping and countervailing duty orders from + China scope proceedings, (HMTF and transportation bill) + October-December 2013 + 1012 + + + + + Overseas Private Investment Corporation (OPIC) question + 2009 + 1012 + + + + + Russia + + + + Auto industry policy + 2011 + 1012 + + + + + Removal from Jackson-Vanik amendments S.1390 + 2 folders + 2009 + 1012 + + +

    (Permanent Normal Trade Relations-PNTR)

    +
    +
    +
    + + + Trade Promotion Authority (TPA) (A. Pascale) + + + + Fast track trade promotion ideas + 2014 + 1013 + + + + + Sandy's proposal + 2013 + 1013 + + + + + + Trans-Pacific Partnership (TPP) (A. Pascale) + + + + TPP + 2012-2014 + 1013 + + + + + Biden meeting on TPP + 2013 + 1013 + + + + + Currency + 2013 + 1013 + + + + + Japan + 2013 + 1013 + + + + + Japan and auto -- Sandy Ways and Means effort auto agreement USTR + updates + 2013 + 1013 + + + + + + Transatlantic Trade and Investment Partnership (T-TIP), (A. + Pascale) + 2014 + 1013 + + + + + Whitecloud antidumping case ITC letter + 2010 + 1013 + + + + + World Trade Organization (WTO) + + + + China-Big 3 anti-dumping and countervailing duties case + 2009-2014 + 1013 + + + + + China tire surge case + 2009 + 1013 + + + + + China violation of rules + 2009 + 1013 + + + + + Japan-Korea case against Cash for Clunkers program + 2010 + 1013 + + + + + Russia and Ukraine-PNTR, Magnitsky, elimination + Jackson-Vanick + + + + 3 folders + 2007-2013 + 1013 + + + + + 2 folders + 2012 + 1013 + + + + +
    + + + Transportation + 2006-2014 + + + + Appropriations and funding (A. Pascale) + + + + FY2010 transportation appropriations bill -- FTA and new state + guidance + 2009-2010 + 967 + + + + + FY2010 Transportation, housing and urban development (THUD) senate + mark + 2 folders + 967 + + + + + FY2012 appropriations + 2 folders + 967 + + + + + FY2015 transportation budget + 967 + + + + + FY2015 THUD appropriations and lightweight concept cars material, + plastics, and composite intensive vehicles + 967 + + + + + CR earmark tables transportation + 2011 + 967 + + + + + Funding + 2014 + 967 + + + + + Highway funding + 2014 + 967 + + + + + Moving Ahead for Progress in the 21st century (MAP-21) + + + + S.1813 amendments -- MAP-21 floor final passage + 2 folders + 2012 + 967 + + + + + MAP-21 conference + 2012 + 967 + + + + + MAP-21 rate of return + 2011 + 967 + + + + + Two year reauthorization bill + 2 folders + 2012 + 967 + + + + + + Transportation reauthorization + 3 folders + 2010 + 968 + + + + + Union State renaming + 2013-2014 + 968 + + + + + + ARRA amendment affecting transportation and infrastructure, (A. + Pascale) + 2009 + 968 + + + + + Auto Czar White House meeting + 2009 + 968 + + + + + Aviation + + + + Ann Arbor-Detroit project + 2010 + 968 + + + + + Delta -- ALA Abu Dhabi pre-clearance letter + 2013-2014 + 968 + + + + + Delta and Essential Air Service subsidies + 2011 + 968 + + + + + Delta and Export-Import Bank + 2013 + 968 + + + + + Detroit airport issues-FAA + 5 subfolders + 2009-2012 + 968 + + + + + Detroit airport terminal exit project + 2007-2014 + 968 + + +

    (Michigan; homeland security)

    +
    +
    + + + Federal Aviation Administration (FAA) + + + + FAA amendment-S.223, (Levin) + 2011 + 968 + + + + + Conference report -- H.R.658 + 2012 + 968 + + + + + Contract dispute, (A. Pascale) + 2009 + 969 + + + + + Reauthorization bill amendments + 2011 + 969 + + + + + FAA reauthorization bill issues, (K. Ko and S. Fitzwater) + 2009 + 969 + + + + + Research + 2 folders + 2010 + 969 + + + + + Research national airport slots + 2010 + 969 + + + + + + Kalamazoo and Battle Creek airport weather observation + 2009 + 969 + + + + + Lockheed Martin flight service station, (A. Pascale) + 2009 + 969 + + + + + MBS airport -- Saginaw, (A. Pascale) + 2008-2009 + 969 + + + + + Northwest Delta merger, (A. Pascale) + 2008-2013 + 969 + + + + + Oscada Wurtsmith airport economic development + 2012 + 969 + + + + + Oscoda-Wurtsmith airport + 2012 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Aviation security, (A. Pascale) + 2011-2014 + 969 + + + + + Sun County airline slots, (A. Pascale) + 2010 + 969 + + + + + Terminal Radar Approach Control (TRACON), (A. Pascale) + 2008-2010 + 969 + + +
    + + + Detroit downtown airport by rail + 2006-2012 + 969 + + + + + Detroit Options for Growth Study (DTOGS), (A. Pascale) + 2009-2010 + 969 + + + + + Detroit Port Security grants FEMA + 2012-2013 + 969 + + + + + Department of Transportation (DOT) + + + + D.C. traffic light signaling, (A. Pascale) + 2011 + 969 + + + + + Secretary designate Anthony Foxx, (A. Pascale) + 2013 + 969 + + + + + + Donor and border bills, (A. Pascale) + 2010 + 969 + + + + + Engineered machined products (EMP) bus grants, (A. Pascale) + 2010 + 969 + + + + + Enstrom Helicopter Corporation + August-December 2013 + 969 + + + + + FedEx truck length + 2013 + 969 + + + + + Ferryboat terminal dock -- Lahood and Montgomery + 2009-2010 + 969 + + + + + Fuel efficiency standards National Highway Traffic Safety Administration + (NHTSA)-Carl's writings + 2011 + 969 + + + + + Grand Rapids bus rapid transit + 2009-2012 + 969 + + + + + Highway bill + 2012 + 969 + + + + + Highway extension and rescission repeal, (A. Pascale) + 2009 + 969 + + + + + Highway local match bills -- MDOT, (A. Pascale) + 2009 + 969 + + + + + Jamian meeting port authority + 2013 + 969 + + + + + Michigan Department of Transportation (MDOT) (A. Pascale) + + + + MDOT delegation update and list + 2009 + 969 + + + + + MDOT issues + 2010 + 969 + + + + + + Natural Gas Vehicles of America -- liquefied natural gas + April 2014 + 969 + + + + + New starts process handbook -- stimulus infrastructure amendment, (A. + Pascale) + 2009 + 969 + + + + + Rail + + + + Amtrak -- Senate consideration + 2013 + 969 + + + + + Hi-speed rail, (A. Pascale) + 2009-2010 + 969 + + + + + High speed rail meeting + 2010 + 969 + + + + + Lahood High speed rail Detroit event, (A. Pascale) + 2011 + 970 + + + + + M-1 rail (A. Pascale) + + + + Banking committee + 2011-2013 + 970 + + + + + Carl's folder + 2012 + 970 + + + + + Detroit BT John Hertel M-1 rail + 2 folders + 2009-2012 + 970 + + + + + Economic Development Administration (EDA) + 2014 + 970 + + + + + Follow-up and Economic Development Administration (EDA) + 2013 + 970 + + + + + Letter and calls + 2014 + 970 + + + + + M1 light rail, (T. Gellasch) + 2012 + 970 + + + + + Section 168 M-1 rail appropriations FY2012 + 970 + + + + + TIGER 4 files + 2 folders + 2012-2013 + 970 + + + + + + Michigan rail issues + 2 folders + 2007-2013 + 970 + + + + + Michigan recreational train + 2014 + 970 + + + + + Rail competition + 2 folders + 2006-2009 + 970 + + + + + Rail service, (A. Pascale) + 2014 + 970 + + + + + Railroad antitrust -- S.146 + 2009 + 970 + + + + + Round 2 high speed rail, (A. Pascale) + 2010-2011 + 970 + + + + + Woodward and M-1 rail local match legislation language, (A. + Pascale) + 2010 + 970 + + + + + Light rail + August 2010 + 1109 + + + + + + Rapid transit corridor meeting, (A. Pascale) + April 24, 2009 + 970 + + + + + Soo Replacement Lock + 2013-2014 + 970 + + + + + Worldwide hydrogen super highway, (A. Pascale) + 2010 + 255 + + + + + Auto loan guarantees - Carl's writing + August-September 2009 + 1113 + + +
    + + + Veterans + 2014 + + + + Veteran Affairs -- LGBT benefits, (M. Nykaza) + 2014 + 1016 + + + + + + Audiovisual materials + + + + Sen. Levin: Justice Sotomayor Statement + 1 videocassettes (Betacam; 1:30) + 2009 August 06 + 1095 + + + + + Sen. Levin: Radio Tour. Cash for Clunkers #1 of 2. WCMU-FM + 1 audiocassettes + 2009 July 31 + 1074 + + + + + Sen. Levin: Radio Tour. Cash for Clunkers #2 of 2. Stations + 2-5 + 1 audiocassettes + 2009 July 31 + 1074 + + + + + Sen. Levin: Radio Tour. Cash for Clunkers, sotomayor + nomination + 1 audiocassettes + 2009 August 06 + 1074 + + + + + Sen. Levin: Radio Tour. Credit Card legislation + 1 audiocassettes + 2009 May 13 + 1074 + + + + + Sen. Levin: Radio Tour. Credit Card legislation; DoD acquisition + reform + 1 audiocassettes + 2009 May 06 + 1074 + + + + + Sen. Levin: Radio Tour. Great Lakes & Invasive Species + 1 audiocassettes + 2009 July 09 + 1074 + + + + + Sen. Levin: Radio Tour. Passage of Credit Card legislation + 1 audiocassettes + 2009 May 20 + 1074 + + + + + Sen. Levin: Radio Tour. Re Afghanistan + 1 audiocassettes + 2009 September 11 + 1074 + + + + + Sen. Levin: Radio Tour. Re Afghanistan, health care reform + 1 audiocassettes + 2009 September 17 + 1074 + + + + + Sen. Levin: Radio Tour. Re American Recovery & Reinvestment + Act + 1 audiocassettes + 2009 February 05 + 1074 + + + + + Sen. Levin: Radio Tour. Re American Recovery & Reinvestment Act #1. + WCMU(?), WWJ + 1 audiocassettes + 2009 February 11 + 1074 + + + + + Sen. Levin: Radio Tour. Re American Recovery & Reinvestment Act #2. + WNMU, WMKT, MRN + 1 audiocassettes + 2009 February 11 + 1074 + + + + + Sen. Levin: Radio Tour. Re Autos - Cash for Clunkers, advanced + batteries + 1 audiocassettes + 2009 June 11 + 1074 + + + + + Sen. Levin: Radio Tour. Re Credit Card legislation + 1 audiocassettes + 2009 April 24 + 1074 + + + + + Sen. Levin: Radio Tour. Re Credit Card legislation; Stem Cell + research + 1 audiocassettes + 2009 March 11 + 1074 + + + + + Sen. Levin: Radio Tour. Re Credit Card legislation; Stop Tax Haven Abuse + Act + 1 audiocassettes + 2009 March 20 + 1074 + + + + + Sen. Levin: Radio Tour. Re Pres. Obama's Address to Congress + 1 audiocassettes + 2009 February 25 + 1074 + + + + + Sen. Levin: Radio Tour. Re PSI hrg on tax haven banks, SASC hrg on + acquisition reform + 1 audiocassettes + 2009 March 04 + 1074 + + + + + Sen. Levin: Radio Tour. Re SCHIP, Stimulus bill, SASC hrg + w/Gates + 1 audiocassettes + 2009 January 28 + 1074 + + + + + Sen. Levin: Radio Tour. Re Stimulus bill, Inauguration #1 + 1 audiocassettes + 2009 January 14 + 1074 + + + + + Sen. Levin: Radio Tour. Re Stimulus bill, Inauguration #2 + 1 audiocassettes + 2009 January 14 + 1074 + + + + + YouTube videos + + + + Foreign Policy Association 2009 Annual Dinner + 2009 June 09 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + "Cash for Clunkers" + 2009 June 18 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Sen. Levin's Remarks on the Slavery Apology Resolution + 2009 June 18 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Ballistic Missile Defense + 2009 June 22 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Press conference on defense authorization bill + 2009 June 26 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Hearing on Military Commissions + 2009 July 07 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Invasive Species in the Great Lakes + 2009 July 08 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Senate Speech on the F-22 + 2009 July 14 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Nomination of Sonia Sotomayor to the Supreme Court + 2009 August + 06 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + "Cash for Clunkers" Wins in the Senate + 2009 August + 07 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Tribute to Senator Edward M. Kennedy + 2009 September + 10 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Comments on President Obama's Speech to Congress + 2009 September + 10 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Surge the Afghan Army - Senate Speech by Senator Levin + 2009 September + 11 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + The Scourge of Offshore Tax Abuse + 2009 September + 23 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Levin Praises Passage of Hate Crimes Prevention Act + 2009 October + 23 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Extend Unemployment Insurance + 2009 October + 27 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Signing Ceremony for Defense Authorization Act + 2009 October + 28 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Afghanistan: Basic Questions - Strategic Choices + 2009 October + 30 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Hearing on Strategy in Afghanistan and Pakistan + 2009 December + 03 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Hearing on Strategy in Afghanistan and Pakistan with Gen. McChrystal + and Amb. Eikenberry + 2009 December + 10 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Levin decries filibuster of defense bill supporting our + troops + 2009 December + 18 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Levin on passage of Senate health care reform bill + 2010 January + 05 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Steering an Ethical Course in a Political Storm + 2010 January + 13 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Levin Responds to the State of the Union Address + 2010 January + 27 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Repeal Don't Ask Don't Tell Press Conference + 2010 March 03 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Hearing on Repeal of "Don't Ask, Don't Tell" + 2010 March 18 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Senate Floor Speech on Health Care Reform + 2010 March 24 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Congratulations Kalamazoo Central High School + 2010 May 04 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Farewell Ernie Harwell + 2010 May 07 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + New START + 2010 June 21 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Levin Praises Passage of Wall Street Reform Legislation + 2010 July 15 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + On the nomination of Elena Kagan to the Supreme Court + 2010 August + 04 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Small Business Jobs and Credit Act + 2010 September + 16 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Hearing on Repeal of "Don't Ask, Don't Tell" - Day One + 2010 December + 02 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + "Don't Ask, Don't Tell" Hearing - Day Two + 2010 December + 03 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Holiday Greeting to the Troops + 2010 December + 03 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Levin Urges Senate to Repeal "Don't Ask, Don't Tell" + 2010 December + 18 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Levin Floor Statement on the New START Treaty + 2010 December + 18 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Levin Comments on the State of the Union Address + 2011 January + 25 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Sen. Levin's Senate Speech on Spending and Revenue + 2011 March 11 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Sen. Levin Addresses Audience at Northern Michigan University Prior to + President Obama + 2011 March 21 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Wall Street and the Financial Crisis + 2011 April 28 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Justice has a long memory and a long arm + 2011 May 02 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Sen. Levin calls for end to tax breaks for oil and gas + companies + 2011 May 16 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Sen. Levin unveils the Stop Tax Haven Abuse Act + 2011 July 12 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Sens. Levin and Stabenow Discuss the Debt Ceiling and Deficit + Reduction + 2011 July 30 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Sen. Levin calls on Republicans to drop their debt ceiling filibuster + threat + 2011 July 31 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Sen. Levin supports a debt ceiling compromise + 2011 August + 02 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Sen. Levin Outlines Seven Point Plan for Deficit Reduction + 2011 September + 16 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Sen. Levin: Reduce the Deficit by Eliminating Loopholes for Tax Havens + and Stock Options + 2011 September + 16 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Sen. Levin: Reduce the Deficit by Eliminating Wall Street + Loopholes + 2011 September + 19 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Sen. Levin hails the end of "Don't Ask, Don't Tell" + 2011 September + 20 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Repatriation Tax Break: Bad for America + 2011 October + 11 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Counterfeit electronic parts in military systems + 2011 November + 08 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + A passionate vision and practical agenda + 2012 January + 25 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Sen. Levin Chairs Armed Services Committee Hearing with Def. Secy. + Panetta and Gen. Dempsey + 2012 February + 14 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Close Loophole that Gives Facebook a $3 Billion Tax Break + 2012 February + 29 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Sen. Levin questions A.F. officials on proposed Air National Guard + cuts + 2012 March 20 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Sen. Levin's Remarks at Kick-off of EMU Jewish Studies + Program + 2012 March 29 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Fix the Looming Increase in Student Loan Rates + 2012 May 09 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Happy Birthday, Army + 2012 June 14 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Sen. Levin discusses Supreme Court decision + 2012 June 23 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Sen. Levin opposes GOP efforts to cut funding for Detroit + 2013 August + 01 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Agreement to eliminate Syria's chemical weapons + 2013 September + 17 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Speaker Boehner, allow a vote on Senate bill to reopen + government + 2013 October + 04 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + JCC Association awards Sen. Levin the Frank Weil Award + 2014 April 02 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Expanding Access to Buprenorphine + 2014 June 18 + + +

    [access item]

    +
    +
    + Online +
    +
    +
    +
    +
    + + + Multi-Congress + 1978-2014 + + + + Administrative and Office files + 1978-2014 + + + + Action files-miscellaneous + 2 folders + 1988-1994 + 111 + + + + + Activities report + 1983-2012 + 225 + + + + + Awards and recognition + 225 + + + + + Biographical Directory of the American Congress and notes + November 2006 + January 4, 1998 + 225 + + + + + Books -- Carl's favorites + 1990-2000 + 225 + + + + + Carl's record + 2000-2008 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Summaries of accomplishments, drafts, and voting record covering all issue + areas.)

    +
    +
    + + + Congressional Record tribute to Michigan Polar Bears + undated + 1929 + 225 + + + + + Constituent correspondence management system data + December 1978-December + 2014 + + +

    (CMS is an automated, proprietary system used in the U.S. Senate to receive, + store, index, and send correspondence with constituents. This CMS export includes + text and pdf files of constituent letters to Senator Levin including issue mail on + all topics of concern to Michigan residents in the mid-late 20th century. Closed + due to the likely presence of personally identifiable information.)

    +
    +
    + + + Correspondence + + + + Draft letters with Levin edits + 1980-1995 + 225 + + +

    (Saved by J. Sheridan)

    +
    +
    + + + Keep file + 1993-2002 + 226 + + +

    (Includes photographs of Carl and Barbara)

    +
    +
    + + + Levin's writing -- miscellaneous + 2003-2011 + 226 + + +

    (Includes photographs and a DVD)

    +
    +
    + + + Miscellaneous + 2 folders + 226 + + +

    (Includes Colleagues, Attorney General, Focus: Hope, Judge Avern Cohn, + etc.)

    +
    +
    + + + Miscellaneous + 1995-1999 + 226 + + + + + Letters regarding nominees + 1995-2007 + 226 + + + + + Officials and Michigan groups + 2001-2009 + 226 + + + + + Presidents Carter, Reagan, Bush, and Clinton + 1979-1994 + 1050 + + +

    (Includes photographs of Levin with Carter and pens used to sign bill)

    +
    +
    + + + Sadat Peace Foundation + 1995-2000 + 226 + + + + + Save files + 1983-2002 + 226 + + +

    (Includes political cartoons from 1990 campaign)

    +
    +
    + + + Schmaltz + 1991-2003 + 226 + + + + + Seltzer, Bob, (B. Seltzer) + 1987-2003 + 226 + + + + + Soros, George + 1997-2006 + 226 + + + + + Stamp Advisory Committee + 1990-2002 + 226 + + + + + Thank you -- Traverse City office + + + + 1981-1993 + 226 + + + + + 1984-2002 + 226 + + + +
    + + + History + + + + Senate Chamber + 1987-2002 + 226 + + + + + Senate Chamber desk conservation and restoration -- Desk XIV, by Robert + Mussey + July 1999 + 226 + + +

    (Includes photographs)

    +
    +
    +
    + + + Invitation for luncheon with Queen Elizabeth II + undated + 226 + + + + + Legislative activities + 1979-2014 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Keyword searchable PDFs of Levin's legislative activities covering 96th to 113th + Congresses.)

    +
    +
    + + + Marquette office -- letters of support + 17 folders + 1998-2014 + 227 + + + + + Mass mailing history + 1979-1989 + 227 + + + + + Michigan Senators bios + 1979 + 227 + + + + + Office manuals and staff information + 2005-2014 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Includes emergency plans, office policy manuals, staff legislative areas, and + other administrative files.)

    +
    +
    + + + Official Senate website + 2010-2014 + Online + + + + + Reconstructionism + 1986-2004 + 1029 + + +

    (Related to Judaism)

    +
    +
    + + + Roundtable + June 18, 2014 + + + + Disk 1 + 1 professional disc + 227 + + + + + Disk 2 + 1 professional disc + 227 + + + + + + Salary records + 2005-2009 + 1990-1991 + 227 + + +

    (Includes records of Levin returning his pay raise to the treasury)

    +
    +
    + + + Schedules + 2005-2013 + + +

    (Includes memos, briefings, speeches and remarks, and timed schedules for many + trips Levin made as Senator.)

    +
    + + + 2005 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + 2006 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + 2007 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + 2008 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + 2009 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + 2010 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + 2011 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + 2012 + + + + Briefing Memos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Proposals + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Schedules + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Talking Points + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 2013 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Carl Logs + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + Speech-Photograph from Grand Valley Commencement + undated + 227 + + + + + Staff + + + + Chase, Harold + 2008-2014 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Memos, background and legislative files on topics including agriculture, + appropriations, arts, census bureau, Detroit, forest service, government affairs + committee, LGBT issues, postal service (USPS), and veterans.)

    +
    +
    + + + Correspondence memos, (R. Carter) + 2006-2014 + 227 + + + + + Courville, Jacob + 2007-2014 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Letters, memos, meeting notes on topics such as health care, financial + services, Native Americans, housing, and labor.)

    +
    +
    + + + Davis, Julie + 2001-2009 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Memos, statements, talking points, and background materials on topics + including taxes, budget, banking, insurance, economic policy, and real + estate.)

    +
    +
    + + + G. Govaere + 2004-2014 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Includes documentation on the Detroit Riverfront, Tiger Stadium, and grant + support letters.)

    +
    +
    + + + Intern photographs + 4 folders + 1980-2004 + 227 + + + + + Ko, Kristina + 1997-2012 + + +

    (Includes memos, draft statements, and other background materials on topics + such as health, labor, PSI, budget, unemployment insurance, economic policy, + social security, Medicare, among other issue areas.)

    +
    + + + Part 1 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 2 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 3 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 4 + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + Nice notes about staff + 1997-2004 + 227 + + + + + Personnel + 1994-1999 + 227 + + + + + Staff Lists + 2009 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + STARBASE + 1995-2014 + 1113 + + +

    (Includes STARBASE, Katrina hearing questions, pardon request)

    +
    +
    + + + Sybenga, Kata + 2003-2009 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Government Affairs committee and nomination files, appropriations, + agriculture, manufacturing, and economic policy among other topics.)

    +
    +
    + + + Wagner, Mary Louise + 2001-2013 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Longtime staffer's files, organized chronologically and by topic. Issue areas + include energy and natural resources, CAFE, FRIB, auto, manufacturing, + appropriations, climate change, American Jobs Act, far bills, and + agriculture.)

    +
    +
    + + + Yates, Alice + 2004-2014 + + +

    (Legislative assistant for areas including the environment, FEMA, and smart + growth.)

    +
    + + + Part 1 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 2 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 3 + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + J. Zimberg + 2008-2014 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Includes memos and photographs of awards and plaques.)

    +
    +
    +
    + + + Twitter account + 2011-2018 + Online + + +

    (Twitter account used during his service in Congress and as a personal account + post-congress.)

    +
    +
    +
    + + + Energy and natural resources + 1975-2011 + + + + Arctic National Wildlife Refuge (ANWR) vote counts, (P. + Levine) + 1991 + 578 + + + + + Auto (P. Levine) + + + + Electric vehicles + 4 subfolders + 1989-1991 + 578 + + + + + Electric vehicles + 1990-1992 + 578 + + + + + Electric vehicle credits + 1991 + 578 + + + + + Gas guzzler tax + 1989-1992 + 578 + + + + + Technology feasibility assumptions + 1991-1992 + 578 + + +

    (Includes information from Mark Kemmer of GM)

    +
    +
    +
    + + + Beach bill, (monitoring; J. Mulinex) + 2000-2011 + 578 + + + + + Beach maintenance (J. Mulinex) + 2002-2008 + 578 + + + + + BP refinery, (J. Mulinex) + 2007 + 578 + + + + + Cargo preference and residue, 1993-1995, 2000, 2004 (J. + Mulinex) + 1993-2004 + 578 + + + + + Climate change, (J. Mulinex) + 2000-2009 + 578 + + + + + Clean Water Act, 1988, 1993, 1997 (J. Mulinex) + 1988-1997 + 578 + + + + + Coast Guard, (J. Mulinex) + 2006-2009 + 578 + + + + + Corporate Average Fuel Economy (CAFE) (P. Levine) + + + + Cars + 1992 + 578 + + + + + Charts and graphs + 1990-1991 + 579 + + + + + Compromise + 1991 + 579 + + + + + Duleep CAFE analysis, auto fuel economy + 1989-1990 + 579 + + +

    (Director of Engineering, Energy, and Environmental Analysis Inc.)

    +
    +
    + + + Gas prices + 1991-1992 + 579 + + + + + CAFE history + 1975-1991 + 579 + + + + + Memos on auto and CAFE + 1990-1991 + 579 + + + + + Correspondence with business regarding CAFE and environment + 1988-1990 + 579 + + + + + Office of Technology Assessment (OTA) and CRS, b(auto fuel + economy) + 1990 + 579 + + + + + Percentage increase + 1991-1992 + 579 + + + + + Proposal + 1991-1992 + 579 + + + + + Fuel economy/GHG (M.L. Wagner) + + + + 14 subfolders + 2005-2010 + 1111 + + + + + 25 subfolders + 2010-2011 + 1111 + + + + + Congressional Intent Fuel Economy Standards-Energy Independence and + Security Act + 5 subfolders + 2007-2011 + 1111 + + + +
    + + + Great Lakes -- J. Mulinex + + + + Agency for Toxic Substances and Disease Registry (ASTDR), (J. + Mulinex) + 2008 + 578 + + + + + Air, 1993, 2009 (emissions; J. Mulinex + 1993-2009 + 578 + + + + + Air Great Waters Depositions, 1997-2000, 2008 (GLAD: J. + Mulinex) + 1997-2008 + 578 + + + + + Air quality, (J. Mulinex) + 2001-2002 + 578 + + + + + Algal blooms, (J. Mulinex) + 2003-2009 + 578 + + + + + American Heritage River, (J. Mulinex) + 1997-1998 + 578 + + + + + Army Corps of Engineers + + + + 1990-2009 + 579 + + + + + 1996-2005 + 579 + + + + + Ashtabula project + 2001-2005 + 579 + + + + + Dredging + 1989-2010 + 579 + + + + + Nominees + 2000 + 2007 + 580 + + + + + Ohio + 2001-2006 + 580 + + + + + + Clean Water Act state revolving fund (SRF) + 2002-2004 + 2009 + 580 + + + + + Coastal Zone Management Act + 1994-2007 + 580 + + + + + Combined disposal facilities, (GAC; dredging) + 1991-1992 + 580 + + + + + Congressional Day + 2007 + 580 + + +

    (Great Lakes Day/GLTF Congressional breakfast)

    +
    +
    + + + Contaminated sediments + 1998-2009 + 580 + + + + + Cormorants + 2002-2007 + 580 + + + + + Correspondence + + + + 1999-2001 + 580 + + + + + 2001-2007 + 580 + + + + + + Cruise ships + 2004 + 580 + + + + + General ecosystems + 2001-2006 + 580 + + + + + Environmental Protection Agency (EPA) + 2001-2005 + 580 + + + + + Environmental research + 1995-1998 + 580 + + + + + Executive order + 2004 + 580 + + + + + Federal navigation + 1985-1987 + 580 + + + + + Fish and wildlife services + 1990-2010 + 580 + + + + + Fisheries + 2000-2007 + 580 + + + + + Funding + 1991 + 580 + + + + + GAO report + 2001 + 580 + + + + + Great Lakes Commission + 1997-2007 + 580 + + + + + Great Lakes congressional review + 1992-1999 + 580 + + +

    (Great Lakes Congressional Report -- Northeast-Midwest Coalition)

    +
    +
    + + + Great Lakes Legacy Act + 2009 + 580 + + + + + Great Lakes Regional Collaboration + 2004-2005 + 580 + + + + + Great Lakes Research Center (GLRC) + + + + Executive Committee + 2006-2007 + 580 + + + + + Strategy + 2005 + 2008 + 580 + + + + + + Great Lakes Summit + 1998-2007 + 581 + + + + + Greenhouse gases + 1988-1989 + 581 + + +

    (Global warming and transportation)

    +
    +
    + + + Habitat initiative + 2007-2008 + 581 + + + + + Harbor Maintenance Trust Fund (HMTF) John Glen Basin + 2000-2010 + 581 + + + + + Lake Champlain + 1997-1998 + 581 + + + + + Lake St. Clair + + + + 2002-2008 + 581 + + + + + 2002-2009 + 581 + + + + + Polychlorinated biphenyls (PCBs) + 2002-2009 + 581 + + + + + + Lake-wide Management Programs (LAMPS) + 2000-2008 + 581 + + + + + Levin + + + + Part 1 + 2004-2008 + 581 + + + + + Part 2 + 2003-2004 + 581 + + + + + Part 3 + 2002-2003 + 581 + + + + + Part 4 + 2000-2001 + 1992-1993 + 581 + + + + + + Mackinaw icebreaker + 1988-2000 + 581 + + + + + Marine sanctuaries + 1992-2009 + 581 + + + + + Maritime Security Act + 1995-1996 + 581 + + + + + Messaging + 2000-2007 + 581 + + + + + Monitoring + 1999-2005 + 581 + + + + + NAFTA + 1991-1992 + 582 + + + + + National Fish and Wildlife Fund + 2004-2008 + 582 + + + + + NOAA + 2007-2010 + 582 + + + + + Navigation study + 2002-2005 + 582 + + + + + Northern borders + 2001-2004 + 582 + + +

    (Trade and security delays)

    +
    +
    + + + Nuclear waste + 2002-2010 + 582 + + + + + Ocean bills + 2008 + 582 + + + + + Ocean Commission + 2003-2006 + 582 + + + + + Oil drilling + 1999-2008 + 582 + + + + + Phosphates + 2005-2009 + 582 + + + + + Pilots + 1995-2003 + 582 + + + + + Port Security + 2003-2005 + 582 + + + + + Ports association + 1990-2005 + 582 + + + + + Press + 2001-2009 + 582 + + + + + Recreational boating + 2000-2009 + 582 + + + + + Remediation Action Plans (RAPs) + 1992-2000 + 582 + + + + + Great Lakes resources at risk + 2002-2006 + 582 + + + + + Great Lakes Restoration + + + + Governors + 2003-2006 + 582 + + + + + Hearings + 2006 + 582 + + + + + Legislation + 2002-2009 + 582 + + + + + + Restoration strategies + 2001-2002 + 582 + + + + + Louisiana restoration + 2003-2004 + 582 + + + + + Research + 1992-1995 + 582 + + + + + Sea grant + 2001-2002 + 582 + + + + + Sewage + 2007 + 582 + + + + + Shipping part 1 + 2004-2008 + 582 + + + + + Shipping part 2 + 2007 + 582 + + + + + Short sea shipping + 2007 + 582 + + + + + SBA loans + 2000 + 582 + + +

    (related to low lake levels)

    +
    +
    + + + Soo Lock + 2001-2009 + 582 + + + + + St. Lawrence Seaway + 1993-2006 + 582 + + + + + Total maximum daily load shipping + 2000 + 583 + + + + + U.S. Geologic Survey (USGS) + 2009 + 2001 + 583 + + + + + Viral Hemorrhagic Septicemia Virus by Animal and Plant Health + Inspection Service (APHIS) + 2007 + 583 + + + + + Senator Voinovich + 2007-2010 + 583 + + + + + Water Levels + 1997-2008 + 583 + + +
    + + + Great Lakes and St. Lawrence Cities Initiative, (J. Mulinex) + 2007 + 583 + + + + + Great Lakes federal budget, (J. Mulinex) + 1989-2001 + 583 + + + + + Great Lakes Task Force co-chair meetings, (GLTF; J. Mulinex) + 2001-2010 + 583 + + + + + Mercury, (Contamination of water and animals) + 1995-1998 + 583 + + + + + National Trail System information and projects, (P. Levine) + 1987-1991 + 583 + + + + + Pollution prevention + 2 folders + 1987-1997 + 583 + + + + + Pollution prevention -- Department of Defense (DOD) FY1999 + 583 + + + + + S.S. Badger, (J. Mulinex) + 2008-2009 + 583 + + + + + Solar energy + 1990-1993 + 583 + + + + + FY1995 Trails + 3 folders + 1995-1997 + 583 + + +

    (Includes non-appropriation materials as well)

    +
    +
    +
    + + + FDR Memorial Commission + 1981-1999 + + +

    (Levin was a commissioner)

    +
    + + + Background, legislation, and planning + 3 folders + 1983-1994 + 584 + + + + + Franklin Delano Roosevelt Commission-memorial + 1990 + 584 + + + + + FDR memorial including Levin statement, (D. Guglielmo) + April-May 1997 + 584 + + + + + Construction, fundraising, and dedication + 1994 + 1997 + 584 + + + + + Correspondence + + + + 1993-1994 + 584 + + + + + 2 folders + 1994-1995 + 584 + + + + + 3 folders + 1994-1996 + 584 + + +

    (Includes a photograph)

    +
    +
    + + + Letter + 1996 + 585 + + + + + 1997 + 585 + + + + + 1998-1999 + 585 + + +
    + + + Memorial and final report + 1997 + 1981-1982 + 585 + + + + + Memorial + 5 folders + 1994-1997 + 585 + + +

    (Includes 4 photographs of construction)

    +
    +
    + + + Memorial + 1996 + 585 + + + + + Memorial opening photo albums + 2 photo albums + May 2, 1997 + 585 + + + + + Public awareness kit + March 1995 + 585 + + +
    + + + Government and Governmental Affairs Committee (GAC and HSGAC) + 1977-2014 + + + + Archived folders + 1979-2001 + 742 + + + + Governmental Affairs, Elise Bean + + + + 2 + + + + 1 of 2 + 1994 April 14 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Governmental Affairs files of staff member, Elise Bean. [2, 1 of 2])

    +
    +
    + + + 2 of 2 + 1994 April 14 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Governmental Affairs files of staff member, Elise Bean. [2, 2 of 2])

    +
    +
    +
    + + + 1 + 1994 April 14 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Governmental Affairs files of staff member, Elise Bean. [1 of 1])

    +
    +
    +
    +
    + + + D.C. Traffic signals + 4 subfolders + 1983-1993 + 742 + + + + + Local official update + 1986-1999 + 742 + + + + + Miscellaneous + 2002-2014 + 742 + + +

    (Includes information on financial reform, CIA, and notes)

    +
    +
    + + + Office of Management and Budget (OMB) + + + + Competitiveness Council + 6 subfolders + 1991 + 742 + + + + + Control of agency rule making + 1981 + 1986 + 742 + + + + + Government ethics + 1980-1985 + 742 + + + + + Intergovernmental relations hearing + 1983-1986 + 742 + + + + + Moratorium on regulation + February-March 1995 + 742 + + +

    (Includes Regulatory Transition Act -- S.219)

    +
    +
    + + + Office of Information and Regulatory Policy -- Government + Accountability Office (GAO), Foundation for Rural Service, and + Sundquist + 1983-1991 + 743 + + +

    (OMB Watch)

    +
    +
    + + + Office of Information and Regulatory Policy + 7 subfolders + 1984-1991 + 743 + + + + + Public disclosure + 2 subfolders + 1981-1987 + 743 + + + + + Public disclosure + 10 subfolders + 1981-1989 + 743 + + + + + Disclosure -- Carl's file + 1981-1986 + 743 + + + + + Disclosure -- correspondence + 1984 + 1986 + 743 + + + + + Sierra Club v Douglas Costle, (EPA regulation) + 1980 + 743 + + + + + Underground storage of hazardous waste, (EPA regulation + December 1985-January 1986 + 743 + + +
    + + + Revolving door + 7 subfolders + 1984-1996 + 744 + + +

    (R. White, SASC hearing, DOD, legislation)

    +
    +
    + + + Subcommittee on Oversight and Records Management -- weekly + reports + 1986-1996 + 744 + + +

    (Includes weekly reports, Wedtech video script and subcommittee accomplishments; + E. Bean; Subcom OGM)

    +
    +
    + + + Taxpayers' Bill of Rights + + + + Folder 1 + 6 subfolders + 1981-1988 + 744 + + +

    (Includes memos, notes, and statements; L. Gustitus)

    +
    +
    + + + Folder 2 + 6 subfolders + 1977-1985 + 744 + + +

    (Subcom OGM; Includes Memos, press release, legislation; L. Gustitus)

    +
    +
    + + + Folder 3 + 4 subfolders + 1982-1984 + 744 + + +

    (Includes Correspondence, hearing statements, Committee on Finance report; L. + Gustitus)

    +
    +
    + + + Folder 4 + 4 subfolders + 1980-1989 + 745 + + +

    (Subcom OGM; Includes hearing statements, reports, and press releases; L. + Gustitus)

    +
    +
    + + + Folder 5, (L. Gustitus) + 1984-1988 + 745 + + + + + Folder 6, (L. Gustitus) + 1991-1992 + 745 + + +
    + + + U.S. postal service + 12 subfolders + 2001-2012 + 745 + + +

    (Includes USPS -- Macomb Carrier annex, First day issue stamps -- auto and Great + Lakes, Mail Delivery Protection Act -- S.1457 Presidential postal reform 2007 + postal reform bill 2005 postal reform 107th and 108th Congresses, post office + naming, and stamps; J. Bryan, E. Cash, and K. Sybenga)

    +
    +
    +
    + + + Health and Human Services + 1980-2014 + + + + Abortion + + + + 1987-1988 + 778 + + +

    (K. Dekuiper)

    +
    +
    + + + 101st Congress + 1989-1990 + 778 + + + + + S.6 on the floor + 1997 + 778 + + + + + S.1692 + 1999 + 778 + + + + + S. 1833 Late term abortion + 1995-1996 + 778 + + + + + Abortion and choice + + + + Child Custody Protection Act + 2 folders + 1998-2006 + 778 + + + + + Contraceptive coverage + 1999-2001 + 778 + + + + + Federal Refusal Clause + 2004 + 778 + + + + + + Abortion Letters, (A. Pascale) + 1989-1998 + 778 + + + + + American Congress of Obstetricians and Gynecologists (ACOG) + statement + 1997-2000 + 778 + + + + + American Medical Association position on abortion, (A. + Pascale) + 1997 + 778 + + + + + Carl's file + 1995-1996 + 778 + + + + + Clinic access + 2 folders + 1993-1994 + 778 + + +

    (Freedom of Access to Clinic Entrances Act of 1993 -- S.626)

    +
    +
    + + + Constitutionality + 1995 + 778 + + + + + Correspondence + + + + Letters to doctors + 1995-1996 + 778 + + + + + Partial birth letter-Levin + 1997 + 778 + + + + + Letters on partial birth abortion + 1996-1997 + 778 + + + + + + Daschle alternative + 1997 + 778 + + + + + Durbin-late term abortion limitation act + 1999-2000 + 778 + + + + + Emergency contraception morning after pill FDA approval + 2001-2003 + 779 + + + + + Executive Orders + 1993 + 779 + + + + + Federal abortion ban, (A. Pascale) + 2004 + 779 + + + + + Federal employee health plans + 1993 + 779 + + + + + Fetal tissue + 1990-1992 + 779 + + + + + Fitzsimmons controversy + 1997 + 779 + + + + + Freedom of Choice Act -- S.25, (A. Pascale and D. Anderson) + 1992-1995 + 779 + + + + + Freedom of Choice Act + 2004 + 779 + + + + + Global Democracy Promotion Act gag rule-S.367 + 2002 + 779 + + + + + Hyde amendment restricting federally funded abortions + 1996 + 779 + + + + + Legislation -- Givers + 1980-1985 + 779 + + + + + Medicaid, 1992-1993, 1997 (D. Anderson and A. Pascale) + 1992-1997 + 779 + + + + + Mexico City policy and international family planning, (A. + Pascale) + 1989-1997 + 779 + + + + + Michigan bills + 1996-1997 + 779 + + + + + Mifepristone legislation to restrict-S.3157 (H.R.5385) + 1997-2008 + 779 + + + + + Memos and amendments + 1995-1997 + 779 + + + + + Memos and research, (105th Congress) + 1996-1997 + 779 + + + + + Nebraska Supreme Court abortion ban appeal + 2000 + 779 + + + + + Parental consent, (D. Anderson and A. Pascale) + 1989-1998 + 779 + + + + + Planned Parenthood of Southeast Pennsylvania v Casey + 1992 + 779 + + + + + Reproductive Health Equity Act + 1993 + 779 + + + + + Rico and abortion protest + 1988-1989 + 779 + + + + + State + 1991-1992 + 779 + + + + + Steve Snider's old file + 1989-1990 + 780 + + + + + Supreme Court decision -- Planned Parenthood v. Casey, (A. + Pascale) + 1992 + 780 + + + + + Title X gas rule + 1991-1993 + 780 + + + + + Title X family planning, (D. Anderson and A. Pascale) + 1987-1998 + 780 + + + + + Veto override + September 18, + 1998 + 780 + + + + + Violence against women + 1991-1993 + 780 + + + + + Women's Health Protection Act + 2014 + 780 + + + + + Women's right to choose bill + 1995 + 780 + + +
    +
    + + + Michigan + 1973-2014 + + + + Detroit People Mover + 1981-1988 + 1973 + 826 + + + + + Detroit Riverfront + + + + 1981-2001 + 826 + + + + + 3 folders + 2003-2014 + 826 + + + + + 2 folders + 2004-2011 + 827 + + + + + 2006 + 827 + + +

    (Evan Cash and Cassandra Woods-LAs; contains a CD)

    +
    + + + Detroit River Shoreline (Bates) & Pedestrian Walkway + 2005 November 30 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Detroit River Shoreline Section 14 (Bates) Pedestrian Walkway presentation + slides by Lakeshore Engineering Services about project progression from + conceptualization to December 2005 goals.)

    +
    +
    +
    + + + Federally funded projects + 4 folders + 2001-2004 + 827 + + + + + West riverfront + 2005-2013 + 827 + + +
    + + + Grant support letters -- Escanaba office + + + + 68 folders + 1998-2014 + 828 + + + + + 31 folders + 1997-2014 + 829 + + +

    (O-W)

    +
    +
    +
    + + + Grant support letters -- Lansing office + + + + 40 of 57 envelopes + 1985-1991 + 829 + + + + + 17 of 57 envelopes + 1985-1991 + 830 + + + + + 14 subfolders + 1986-1989 + 830 + + + + + 85 of 119 envelopes + 1987-1991 + 830 + + + + + 36 of 119 envelopes + 1987-1991 + 831 + + + + + 25 subfolders + 1990 + 831 + + + + + 29 subfolders + 1991-1992 + 831 + + + + + 31 subfolders + 1993 + 832 + + + + + 27 subfolders + 1994 + 832 + + + + + 36 subfolders + 1994-1999 + 832 + + + + + 18 subfolders + 2002-2003 + 832 + + + + + + Grant support letters -- Grand Rapids office + + + + Stirling Power Systems, (Ann Arbor) + 1989 + 832 + + + + + Michigan Freedom Foundation + 1990 + 832 + + +

    (Includes Michigan Freedom Academy)

    +
    +
    + + + Original lease -- Boji Tower, (Lansing) + 1992 + 832 + + + + + St. Louis Superfund + 2 folders + 1998-2009 + 832 + + + + + BioPort -- Antrhax Vaccine + 2001 + 832 + + +

    (Lansing company that makes Anthrax Vaccine Absorbed)

    +
    +
    + + + Events + 2002-2013 + 832 + + +

    (MSU Fall 2004 commencement, Frank Kelley Institute of Ethics and the Legal + Profession Levin lecture December 6, 2013 draft remarks for MLK events 2002)

    +
    +
    + + + Final 2005 Source Migration Investigation Report Velsicol Chemical-Pine + River Site -- St Louis Michigan + November 2005 + 832 + + +

    (Includes a DVD)

    +
    + + + Final 2005 Source Migration Investigation Report Velsicol Chemical / + Pine RIver Site St. Louis, Michigan + 2005 November + + +

    [access item]

    +
    +
    + Online +
    + +

    (Final report and supporting documentation of the results of the Source + Migration Investigation (SMI) conducted by the United States Environmental + Protection Agency (EPA) on the former main plant site at the Velsicol + Chemical/Pine River Site in St. Louis, Michigan. Supporting documentation + includes appendixes, figures, and data tables.)

    +
    +
    +
    + + + MBI -- Afex + 2005-2011 + 832 + + + + + Federal Aviation Administration (FAA) -- Flight Service Station + FY2006 + 832 + + + + + Miscellaneous, FY2006 FY2009 and FY2011 + 2 folders + 832 + + + + + Great Lakes Energy Research Park -- Alma + June-July 2006 + 832 + + + + + Facility for Rare Isotope Beams, (FRIB; MSU) + 2007-2008 + 832 + + +
    + + + Grant support letters -- Great Lakes Bay office + + + + 50 folders + 1997-2003 + 833 + + + + + Sugar beet farmers and CAFTA + February 4, + 2004 + 833 + + + + + Genesee County ISD-Advancing Informal STEM Learning Grant + February 6, + 2013 + 833 + + + + + + Institute of Peace -- Wayne State University (WSU) + 2 folders + 1984-1985 + 833 + + + + + Michigan lighthouse correspondence and legislation, 1997-2002, 2007-2009 + (Traverse City office) + 1997-2009 + 833 + + + + + Upper Peninsula projects + 8 subfolders + 2005-2012 + 833 + + +

    (Includes Grand Marais, mining, national forest, Pictured Rocks, Isle Royale, and + copperwood; A. Yates)

    +
    +
    + + + Upper Peninsula project photographs + May 2007 + 833 + + + + + Zilwaukee Bridge + 1987 + 1983-1984 + 833 + + +
    + + + Photographs + 1960-2014 + + + + Senator Levin in Battle Creek + 2002 June 08 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Photographs of Senator Carl Levin in Battle Creek.)

    +
    +
    + + + Pentagon Champion Tree Project + 2003 January + + +

    [access item]

    +
    +
    + Online +
    + +

    (Photographs from Champion Tree Project in Memoriam of September 11, 2001 tree + planting at the Pentagon.)

    +
    +
    + + + Levin Yearbook + 2006 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Yearbook photograph of Carl Levin.)

    +
    +
    + + + L-3 Communications, Senator Carl Levin Visit + 2006 August 18 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Photographs of Carl Levin's visit to L3 Communications, Combat Propulsion + Systems in Muskegon, Michigan.)

    +
    +
    + + + Bates Street Outfall Ribbon Cutting + 2006 June 11 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Photographs of Bates Street Outfall ribbon cutting ceremony.)

    +
    +
    + + + 10 folders + 1980s + 1017 + + + + + 1981-1983 + 1017 + + +

    (Includes some earlier than this and also photographs of Siberian 7)

    +
    +
    + + + 1981-2014 + + + + + 2000s + 1017 + + + + + 2004-2014 + 1017 + + + + + Korczak photograph, (Crazy Horse) + 1979 + 1017 + + + + + Carl Levin photos -- current and old + undated + 1017 + + + + + Levin headshots, (Senate Photo Studio) + undated + 1017 + + + + + Liebergood -- Sergeant at Arms envelope + 1980s + 1017 + + +

    (Includes Carl and Sandy)

    +
    +
    + + + Miscellaneous + 12 folders + 1983-2009 + 1017 + + +

    (Includes Focus: HOPE event, Europe, Balthazar Korab, Yshiva dinner with Gary + Torgow and Sandy, Carl and Barbara in Quebec City, Michigan Burlington Coat + Factory support for Carl Levin -- S.429, Military, Allied Forces in Southern + Europe -- CODEL June 1993 Veterans History Project, NBA finals, etc.)

    +
    +
    + + + Miscellaneous photographs + undated + 1017 + + + + + Negatives (Senate Photo Studio) + + + + 1979-1988 + approximately 518 + envelopes + 1018 + + + + + 1989-1996 + approximately 697 + envelopes + 1019 + + + + + 1996-2000 + approximately 436 + envelopes + 1020 + + + + + 2001-2003 + approximately 194 + envelopes + 1021 + + + + + + Press office + + + + 2 folders + 1960s-1970s + 1022 + + + + + 1970s + 1022 + + + + + 1978-1980 + 1022 + + + + + 8 folders + 1980s + 1022 + + + + + 3 folders + 1990s + 1022 + + +

    (Folder 2 contains a photograph of Levin and Rosa Parks and a photograph in Red + Square, as well as some photograph slides, folder 3 contains a photograph of + Levin holding a newspaper with headline about him winning an election)

    +
    +
    + + + Carl Levin photos + 1990s + 1023 + + + + + Levin photos + 2000s + 1023 + + + + + Joe Louis Barrow Jr. stamp dedication + undated + 1023 + + + + + Levin with the elderly + 2 envelopes + 1023 + + + + + Levin family-including Sandy + 24 envelope + 1023 + + + + + Levin family photos, 1917-1947 + 1023 + + +

    (From a family member and used at a family reunion)

    +
    +
    + + + Levin with foreign leaders + 8 envelopes + 1023 + + + + + Levin with other government officials and legislators + 25 envelopes + 1023 + + + + + Levin "In Action" + 3 folders + 1023 + + + + + Levin with kids and students + 18 envelopes + 1023 + + + + + Levin miscellaneous photographs + 3 envelope + undated + 1024 + + + + + Carl Levin miscellaneous photographs + undated + 1024 + + + + + Levin with non-kid constituents + 4 envelopes + 1024 + + + + + Levin at official functions + 11 envelopes + 1024 + + + + + Levin portraits + 9 envelopes + 1024 + + + + + Levin with staff, interns, and pages + 4 envelopes + 1024 + + + + + Levin in Saudi Arabia with member of military + undated + 1024 + + + + + Levin with various groups + 5 envelopes + 1024 + + + + + VA visit + 1997-1998 + 1024 + + +
    + + + Daughter of Alan Boasail of ANC + undated + 1024 + + + + + George Bush + undated + 1024 + + + + + Carl at work + undated + 1024 + + + + + Constituents from Upper Peninsula + undated + 1024 + + + + + Bob Davis -- testifying on Keweenaw + undated + 1024 + + + + + Angie Dickinson and Bill Gold + undated + 1024 + + + + + Speaking at Engineering Society of Detroit + undated + 1024 + + + + + Geraldine Ferraro + undated + 1024 + + + + + Various Focus: HOPE photos + undated + 1024 + + + + + Linda Grossman family + undated + 1024 + + + + + Hearing + undated + 1024 + + + + + Hearing room -- SASC + June 7, 1995 + 1024 + + + + + Barbara Levin, Lehy and wife + undated + 1024 + + + + + Other senators + undated + 1024 + + + + + Joe Maust of Michigan Egg Producers Association + undated + 1024 + + + + + Meeting Coretta Scott King + undated + + +

    [access item]

    +
    +
    + Online +
    +
    + + + MAOO rally + August 1, 1990 + 1024 + + + + + Old Carl portrait + undated + 1024 + + + + + President Mubarak of Egypt + undated + 1024 + + + + + Ronald Reagan + undated + 1024 + + + + + Staff photos + undated + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Desmond Tutu + undated + 1024 + + + + + UAW officials + undated + 1024 + + + + + Unknown Emir of unknown country + undated + 1024 + + + + + Veterans at Alpena parade + undated + 1024 + + + + + Zhu Qizhen -- Ambassador of China to US + undated + 1024 + + + + + Ronald Reagan + October 22, + 1982 + 1024 + + + + + Meeting with Governor Martha Layne Collins, Walter Mondale, Kersten + Dairfarm + 1983 + 1050 + + + + + Barbara in front of Peace Quilt + January 28, + 1984 + 1024 + + + + + Jose Napoleon Duarte of El Salvador + May 16, 1984 + 1024 + + + + + Portrait of Carl, March or + August 1984 + 1024 + + + + + TACOM visit, (Carl walking on a tank) + 3 folders + 1984 + 1024 + + + + + George Bush and Levin family at swearing in ceremony + January 1985 + 1024 + + + + + Carl's family at inauguration dinner + 1985 + 1024 + + + + + Carl with kids + March 1985 + 1024 + + + + + Alan Cranston at baseball bet payoff + April 1, 1985 + 1024 + + + + + Central America trip photos + April 1985 + 1024 + + + + + Tax char + July 10, 1985 + 1024 + + + + + Bentson and Gephardt at a hearing + July 16, 1985 + 1024 + + + + + Receiving petition + July 16, 1985 + 1024 + + + + + Ford Mechanical Carl outside Capitol + July 1985 + 1024 + + + + + John Conyers + November 1985 + 1024 + + + + + Michigan apples + December 12, + 1985 + 1024 + + + + + Bob Dole + December 13, + 1985 + 1025 + + + + + Carl "at the mike," + January 25, + 1986 + 1025 + + +

    (Recording a radio broadcast)

    +
    +
    + + + Chairing a hearing + January 28, + 1986 + 1025 + + + + + Boren -- ANZUS trip + February 1986 + 1025 + + + + + Lee Iacocca + April 22, 1986 + 1025 + + + + + Military award ceremony in Inkster, MI + April 1986 + 1025 + + + + + Trade news conference + May 1, 1986 + 1025 + + + + + Industrial Policy Forum in Flint + May 22, 1986 + 1025 + + + + + Soviet dissident-Anatoly Shcharansky + May 1986 + 1025 + + + + + Boesak of ANC + June 6, 1986 + 1025 + + + + + Chairing hearing on kickbacks + June 10, 1986 + 1025 + + + + + Mt. Clemens Naval Air Station + June 30, 1986 + 1025 + + + + + Speaking to a family + June 1986 + 1025 + + + + + Father Jenco after release from Lebanon + September 1986 + 1025 + + + + + U.S.S. Nevada submarine + October 26, + 1986 + 1025 + + + + + Riegle at Press conference on Farm-aid + October 1986 + 1025 + + + + + Soviet dissidents-Orlov and Daniloff + October 1986 + 1025 + + + + + Testifying at a hearing + October 1986 + 1025 + + + + + Receiving an award from and industry group + November 1986 + 1025 + + + + + Pictures of Carl taken by Kalamazoo Gazette + January 9, 1987 + 1025 + + + + + Carl with pictures in front office + January 1987 + 1025 + + + + + Riegle and group of students + March 5, 1987 + 1025 + + + + + Talking to students + May 6, 1987 + 1025 + + + + + Association of US Army awards dinner, (TACOM) + May 18, 1987 + 1025 + + + + + Spelling bee entry Kyle Klein and family + May 26, 1987 + 1025 + + + + + Kennedy, Riegle, Kerry at Pistons-Celtic BET playoff + June 11, 1987 + 1025 + + + + + Student leader + July 28, 1987 + 1025 + + + + + Interviewed by Nightline + July 30, 1987 + 1025 + + + + + Asparagus queen + July 1987 + 1025 + + + + + Walter Mondale + July 1987 + 1025 + + + + + Speaking to Economic Club of Detroit + August 1987 + 1025 + + + + + Carl at a hearing + September 10, + 1987 + 1025 + + + + + Senator Simpson at Detroit Tigers + September 1987 + 1025 + + + + + Michigan Congressman Keith Bruan and wife + November 4, + 1987 + 1025 + + + + + Outstanding teachers + November 18, + 1987 + 1025 + + + + + President Herzog of Israel + November 1987 + 1025 + + + + + Carl being interviewed by Soviet TV journalist + December 2, + 1987 + 1025 + + + + + Pope John Paul + December 7, + 1987 + 1025 + + + + + Israeli Ambassador Arad + January 1988 + 1025 + + + + + Carl presides at meeting + February 2, + 1988 + 1025 + + + + + Po + February 1988 + 1025 + + + + + Cots for late nights + March 1988 + 1025 + + + + + Hearing + March 1988 + 1025 + + + + + Others senators on trip to Moscow + March 1988 + 1025 + + + + + Receiving an award for Advancement of.... + April 13, 1988 + 1025 + + + + + Slauson Middle School of Ann Arbor on Capitol steps + May 25, 1988 + 1025 + + + + + Group from Lansing Community College + May 27, 1988 + 1025 + + + + + Neil Anchill and family from West Bloomfield + June 20, 1988 + 1025 + + + + + Elderly constituents + June 29, 1988 + 1025 + + + + + Former Senator Alan Cranston of California at Pistons Lakers bet + payoff + June 29, 1988 + 1025 + + + + + Speaking to Greek-American leaders at a conference in DC + June 1988 + 1025 + + + + + New York Times photos of Carl + June-July 1988 + 1025 + + + + + Sandy marching in a parade + July 4, 1988 + 1025 + + + + + DNC + July 20, 1988 + 1025 + + + + + Constituents + July 1988 + 1025 + + + + + Zigman family + October 6, 1988 + 1025 + + +

    (Russian immigrants)

    +
    +
    + + + Outstanding teacher + October 26, + 1988 + 1025 + + + + + Riegle and Blanchard with Holland Jr high + November 1988 + 1025 + + + + + Other Senators and Elie Wiesel at Holocaust Museum + groundbreaking + November 1988 + 1025 + + + + + Carl being interviewed at Allen Park high school + 1988 + 1025 + + + + + Berlin Wall + 1988 + 1025 + + + + + Speaking with Dukakis rally in Macomb County + 1988 + 1025 + + + + + Riegle and Dukakis at Campaign rally + 1988 + 1025 + + + + + Carl at Rochester Adams high school, Warren senior's dinner, and Auburn + Hills Rotary luncheon + January 18, + 1989 + 1025 + + + + + Sorting through tea bags + January 1989 + 1025 + + + + + Carl in action + February 1989 + 1025 + + + + + Standing before a group + February 1989 + 1025 + + +

    (Negatives)

    +
    +
    + + + Carl with an elderly constituent at Barrien General Hospital + March 1989 + 1025 + + + + + Port Huron high school + March 1989 + 1025 + + + + + NCAA Champion University of Michigan basketball team + 1989 + 1025 + + + + + Senators Bradley Simon, Lautenberg, Riegle at bet payoff after University + of Michigan victory in NCAAS + 1989 + 1025 + + + + + Delegates of National Issues Forum + April 1989 + 1025 + + + + + Touring Chrysler's emissions testing cab with Senator Baucus + May 1, 1989 + 1025 + + + + + Marvin Hamlisch + May 17, 1989 + 1025 + + + + + Speaking at Ferris State University commencement + May 1989 + 1025 + + + + + Carl on "Pride of Michigan" (a boat) + May 24, 1989 + 1025 + + + + + Solidarity representative from Po + May 1989 + 1025 + + + + + USO function + June 1989 + 1025 + + + + + Lech Walesa + November 15, + 1989 + 1025 + + + + + Carl portrait on Capitol steps + June 1989 + 1025 + + + + + Children + June 1989 + 1025 + + + + + A&E solar reception + July 18, 1989 + 1025 + + + + + Coastal agenda press event + July 24, 1989 + 1025 + + + + + Carl's portrait more versions + 2 envelope + July 1989 + 1025 + + + + + Carl at site of Freeland train disaster + July 1989 + 1025 + + + + + Visiting a farm and a factory + September 1989 + 1025 + + + + + Speaking to UAW meeting 4th district dinner + October 1989 + 1025 + + + + + Students at Sterling Heights high school + October 2, 1989 + 1025 + + + + + Allen Park high school conference on drugs + December 1989 + 1025 + + + + + Carl portrait + December 1989 + 1025 + + + + + Polish community leaders + December 1989 + 1025 + + + + + Trenton high school interview + December 1989 + 1025 + + + + + Various constituent groups, (HOBY, solar car) + 1989 + 1025 + + + + + Cutting a big piece of pie + 1989 + 1025 + + + + + Carl at various events in Michigan + 1989 + 1025 + + +

    (Taylor groundbreaking, Macomb high school, Macomb officials meeting)

    +
    +
    + + + Carl with a page + 1989 + 1025 + + + + + Chuck and Willie, ? (C. Cutolo and W. Blacklow) + 1989 + 1025 + + + + + Carl performing a radio interview + 1989 + 1025 + + + + + St. Clair County skills center + January 22, + 1990 + 1025 + + + + + Carl at a high school + January 1990 + 1025 + + + + + Residents of Neuport Apartments in Mt. Clemens + February 24, + 1990 + 1025 + + + + + Havel of Czech + February 1990 + 1025 + + + + + Warren Drug Forum + February 1990 + 1017 + + + + + Wohlert Corp-Lansing + April 7, 1990 + 1017 + + + + + Commendation of Armenian Genocide + April 24, 1990 + 1017 + + + + + Presenting an award to constituents + April 1990 + 1017 + + + + + Visiting Michigan sugar company-Saginaw Michigan + April 1990 + 1017 + + +

    (Negatives)

    +
    +
    + + + Pages from Michigan + May 25, 1990 + 1017 + + + + + Constituents + May 1990 + 1017 + + +

    (Negatives)

    +
    +
    + + + Gorbachev + May 1990 + 1017 + + + + + Nelson Mandela + June 26, 1990 + 1017 + + + + + Doctor Narva-retiring doctor of Capitol + June 1990 + 1017 + + + + + Carl with Michigan solar car team + July 1990 + 1017 + + + + + Constituents + August 1990 + 1017 + + + + + Speaking to constituents on a Capitol tour + September 1990 + 1017 + + + + + Jim Blanchard and James Wilder at a rally + 1990 + 1017 + + + + + Justice William Brennan and Barbara Levin + 1990 + 1017 + + + + + Detroit Pistons after 2nd World Championship + 1990 + 1017 + + + + + King Fahd of Saudi Arabia + 1990 + 1017 + + + + + Gus Macker basketball tournament + 1990 + 1017 + + + + + Various political supporters + 1990 + 1017 + + + + + National asthma and allergy poster child + May 14, 1991 + 1017 + + + + + Queen Elizabeth + May 1991 + 1017 + + + + + Carl hugging a constituent at a parade + 1991 + 1017 + + + + + Boris Yeltsin + 1991 + 1017 + + + + + MSU grad students + April 20, 1992 + 1017 + + + + + Jefferson Award winners from Detroit + May 1992 + 1017 + + + + + Presenting an award + May 1992 + 1017 + + + + + General Galvin former CINCEUR Europe + June 25, 1992 + 1017 + + + + + Other Senators at White House for Bush-Yeltsin signing + June 1992 + 1017 + + + + + National Easter Seal child + June 1992 + 1017 + + + + + Barbara Levin at Clinton Campaign rally in Ann Arbor + October 1992 + 1017 + + + + + Dennis Rodman and Jacques Demers at Mini Grand Prix + August 1992 + 1017 + + + + + John Engler + October 1992 + 1017 + + +

    (Michigan Governor)

    +
    +
    + + + Don Scott + October 1992 + 1017 + + +

    (Assistant Superintendent of Saginaw Public Schools, founder of Growth and + Afrocentric Program-GAAP)

    +
    +
    + + + EPA region 5 winner and family + November 18, + 1992 + 1017 + + + + + Mulroney of Canada, (Prime Minister) + 1992 + 1017 + + + + + Ukrainian President Karuchuk + 1992 + 1017 + + + + + Bill Clinton and Riegle and Gary Corbin at MI Democrat Party + reception + February 10, + 1993 + 1017 + + + + + Speaking to a group of minority students-Ameritech + April 1993 + 1017 + + + + + The Dalai Lama + August 17, 1993 + 1017 + + + + + Hood family -- judicial nominee + May 24, 1994 + 1017 + + + + + Sandy at Trade press conference + June 1995 + 1017 + + + + + Detroit Tigers Travis Fryman and Cecil Fielder + 1995 + 1017 + + + + + Father Ed de la Torre-Philippines + October 30, + 1996 + 1017 + + + + + Foreign relations coffee + 2002 + 1017 + + + + + Swearing-in + circa 1979 + 1050 + + + + + 2004-2014 + + +

    (Arranged chronologically and topically. Includes CODEL trips to Afghanistan, + Iraq, and other countries, Carl's 70th birthday, photos with senate colleagues, + White House events, hearings, staff and office photos, and many other events and + topics.)

    +
    + + + Afghanistan + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April 2010 Levin Statewide Staff Meeting + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Cathy's 30 Year Pin + March 22, + 2011 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + CODEL + + + + Afghanistan and Ukraine + April 2014 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Czech Republic, Poland and Russia + April 2019 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Kyiv, Jordan and Erbil + September 2014 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Turkey and Jordan + July 2013 + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + CVC + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Detroit + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Election Night + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Freedom Center + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Gina's Last Day + October 29, + 2014 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Great Lakes + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Great Lakes Bay Region + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Interns + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Iraq + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Jennifer Granholm + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Keweenaw + May 31 and June 1, + 2006 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Legacy possibilities + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Levin Statewide Staff Meeting + April 2010 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May 23, 2004 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Michigan Awards and Plaques + + + + Detroit + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Escanaba + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Grand Rapids + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Langsing + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Saginaw + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Traverse City + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Warren + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + Michigan LCV possibilities + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Mid-Michigan + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Miscellaneous + + +

    [access item]

    +
    +
    + Online +
    +
    + + + MTU + February 12, + 2005 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Newsletter photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + NMSF possibilities + + +

    [access item]

    +
    +
    + Online +
    +
    + + + No. Metro (Warren) + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Northern Lower Peninsula (TC) + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Senate Photographer photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + So. Metro and So. Central + + +

    [access item]

    +
    +
    + Online +
    +
    + + + TC Staff Meeting + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Washington, DC + + + + 2004 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + 2005 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + 2006 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + 2007 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + 2008 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + 2009 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + 2010 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + 2011 + + + + Part 1 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 2 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 3 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 4 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 5 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 6 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 7 + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 2012 + + + + Part 1 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 2 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 3 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 4 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 5 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 6 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Part 7 + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 2013 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + 2014 + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + Veterans Day + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Miscellaneous + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + Office camera photographs + 2006-2009 + + + + 2006 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + 2007 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + 2008 + + +

    [access item]

    +
    +
    + Online +
    +
    + + + 2009 + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + Senate Photographer's photographs + 1981-2014 + + + + 1981 + + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 1982 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 1983 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 1984 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 1985 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 1986 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 1987 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 1988 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 1989 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 1990 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 1991 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 1992 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 1993 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 1994 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 1995 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 1996 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 1997 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 1998 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 1999 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 2000 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 2001 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 2002 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 2003 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 2004 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 2005 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 2006 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 2007 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 2008 + + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 2009 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 2010 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 2011 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 2012 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 2013 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + 2014 + + + + January photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + February photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + March photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + April photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + May photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + June photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + July photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + August photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + September photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + October photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + November photos + + +

    [access item]

    +
    +
    + Online +
    +
    + + + December photos + + +

    [access item]

    +
    +
    + Online +
    +
    +
    + + + Outside Images + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Portraits + + +

    [access item]

    +
    +
    + Online +
    +
    + + + Unknown Dates + + +

    [access item]

    +
    +
    + Online +
    +
    +
    +
    + + + Press + 1978-2014 + + + + Calendars, (K. Long) + 2002-2012 + 928 + + + + + Endorsements and Carl's bio + 2001-2009 + 928 + + +

    (Includes a CD; K. Long)

    +
    + + + Carl Levin Biography + 2008 June 05 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Biography and short endorsements of Carl Levin.)

    +
    +
    +
    + + + Interview -- First Days Magazine + 2012 + 929 + + +

    (Journal of the American First Day Cover Society; K. Long)

    +
    +
    + + + Major legislative accomplishments + 1979-1996 + 929 + + + + + Media sign-in sheets + 2002-2014 + 929 + + +

    (Includes Obama and Levin photographs signing Farm bill in East Lansing -- 2014 + photographs of Levin speaking at centennial celebration for the Hart-Dole-Inouye + Federal Center -- 2003 draft statement on Syria -- 2013 news articles on PSI + Goldman Sachs investigation, media sign-ins for press briefing on hearings; K. + Long)

    +
    +
    + + + News articles + + + + Corporate Average Fuel Economy (CAFE) memos and clips + 2 folders + 2002 + 929 + + + + + Levin 1990 Campaign + 1990 + 929 + + +

    (Includes news articles from 1996 and 2002 as well)

    +
    +
    + + + Carl and Sandy in the news + 1989-2003 + 929 + + +

    (Includes a photograph negative of Carl and Sandy as boys in front of a + car)

    +
    +
    + + + Levin on front page or main story + 2006-2008 + 930 + + + + + Miscellaneous Levin + 1984-2006 + 930 + + + + + Miscellaneous Levin + 2004-2006 + 930 + + + + + Miscellaneous Levin + 2 folders + 2005-2014 + 930 + + +

    (Includes a photograph of Levin in the President's room -- Senate wing in the + U.S. Capitol))

    +
    +
    + + + Photocopies of news articles + 2001-2002 + 930 + + +
    + + + Newspaper clippings and scrapbooks + + + + + News headlines + 1979-2003 + 930 + + + + + Office subject files + + + + Adoption and reunion + 1988-1992 + 930 + + +

    (reunion of families and National Voluntary Reunion Registry))

    +
    +
    + + + Budget deficit reduction + 1989-1995 + 930 + + + + + Budget FY2000 + 930 + + + + + Campaign contributions and PACS + 1991-1993 + 930 + + + + + Education + 1983-1992 + 930 + + + + + Enron Investigation + 2 folders + 2002 + 930 + + + + + GOP tax bill + 1999 + 930 + + + + + Highway funding, (Highway Funding Equity Act -- S.1090 + Sponsor) + 2003 + 930 + + + + + Medicaid -- GOP cuts + 1995-1996 + 930 + + + + + Medicare + 1996 + 930 + + + + + Medicare battle -- ammunition + 2 folders + 1995 + 930 + + + + + Medicare challenge + 1997 + 931 + + +

    (RNC challenge $1 million to anyone who can prove statement wrong)

    +
    +
    + + + Michigan -- constituent service + 1993-January 1997 + 931 + + + + + Michigan delegation + 1991-1997 + 931 + + + + + Michigan fund for peace and economic development + 2005 + 931 + + + + + Saudi Arabia + 2002 + 931 + + + + + Staff -- interns + 1988-1994 + 931 + + + + + TV violence + 1991-1994 + 931 + + +
    + + + Tape library + + + + Video and audio logs + 1978-1987 + 931 + + + + + Video and audio tape library + 1978-1986 + 931 + + + + + Press directory -- tape library + 1988-1992 + 931 + + +

    (Includes press clips 1987-1990)

    +
    +
    + + + Levin tape library uplinks + 1994-1995 + 931 + + +
    + + + Website + 2009 + 2003 + 931 + + +

    (Includes County Fair flyers highlighting Carl's website and 6 CDs; K. Long)

    +
    + + + U.S. Senator Carl Levin, "How can I be of service?" Flyer + 2009 February 04 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Flyer for U.S. Senator Carl Levin with list of services available to + constituents and office locations.)

    +
    +
    + + + Levin Website Designs + 2003 July 21 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Design of Senator Carl Levin Website from July 21, 2003 including wireframes, + sitemap, and media.)

    +
    +
    + + + Senator Levin Website + + + + 2003 December 01 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Backup of Senator Carl Levin Website (www.levin.senate.gov) from December 1, + 2003.)

    +
    +
    + + + 2003 February 10 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Backup of Senator Carl Levin Website (www.levin.senate.gov) from February + 10, 2003.)

    +
    +
    + + + 2003 June 20 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Backup of Senator Carl Levin Website (www.levin.senate.gov) from June 6, + 2003.)

    +
    +
    + + + 2009 August 11 + + +

    [access item]

    +
    +
    + Online +
    + +

    (Backup of Senator Carl Levin Website (www.levin.senate.gov) from August 11, + 2009.)

    +
    +
    +
    +
    +
    + + + Senate record votes-Levin + 1983-1994 + Booklets + + + + 1983 + 931 + + + + + 1984 + 931 + + + + + 1985 + 931 + + + + + 1986 + 931 + + + + + 1987 + 931 + + + + + 1988 + 931 + + + + + 1989 + 931 + + + + + 1990 + 931 + + + + + 1991 + 931 + + + + + 1993 + 931 + + + + + 1994 + 931 + + + + + + Speeches + 1985-2010 + + + + 8 subfolders + 1986-2000 + 944 + + +

    (Mostly 1994)

    +
    +
    + + + Armenian, Indian, and Chaldean groups + 1999 + 944 + + + + + Jewish + + + + 2 folders + 1994-1998 + 944 + + + + + 1994-1999 + 944 + + + + + Israel + 2 folders + 1989-1990 + 944 + + +

    (Key remarks; also includes a bit on Soviet refugees)

    +
    +
    +
    + + + NAACP + 2 folders + 1985-2010 + 944 + + + + + Naturalization ceremonies + 1986-2002 + 944 + + + + + Patriotic + 1987-2005 + 944 + + +
    + + + Transportation + 1981-2014 + + + + Alternative fuels, (legislation) + 1984-1988 + 971 + + + + + Auto + + + + Car safety + 1990-1991 + 971 + + + + + Importation + 1983-1985 + 971 + + + + + Lemon law-defective + 1984-1986 + 971 + + + + + General Motors (GM) and Toyota-joint venture + 1983-1984 + 971 + + + + + Manufacturing + 1983-1987 + 971 + + + + + Manufacturing-memos and correspondence + 1981-1987 + 971 + + + + + Transportation Research Board special report-55mph speed + limit + 1984 + 971 + + + + + Safety-airbags and seatbelts + 1983-1987 + 971 + + + + + + Aviation + + + + Federal administration + 1988-1994 + 971 + + + + + Industry + 1987-1992 + 971 + + + + + Labor + 1986-1987 + 971 + + + + + Legislation + 1987-1993 + 971 + + + + + Montreal protocols + 1990-1992 + 971 + + + + + + Aviation-Michigan + + + + 106th projects and legislation + 1998 + 971 + + + + + Appropriations FY99 + 1998 + 971 + + + + + Battle Creek airport-WMU flight school + 1998 + 971 + + + + + Bishop international funding-Flint + 1998-2006 + 971 + + + + + Cherry Capitol airport grant + 2000-2002 + 971 + + + + + Detroit Metro airport + 1995-2000 + 971 + + + + + Detroit Metro terminal expansion + 2 folders + 1996-2004 + 971 + + + + + Escanaba-Delta-Northwest airlines flight change + 2001 + 971 + + + + + Essential Air Service (EAS) + + + + 2 folders + 1987-2002 + 972 + + + + + Dickinson airport, UP + 2002-2004 + 972 + + + + + Slot rules + 1993-2006 + 972 + + + + + + Federal Aviation Administration (FAA) authorization + projects + + + + American Eagle-Marquette + 2001 + 972 + + + + + Detroit Metro airport + 2001 + 972 + + + + + Detroit Metro airport-Noise and sound proofing + 2001 + 972 + + + + + Grand Rapids-Skyway flight time changes + 1999-2000 + 972 + + + + + Menominee airport + 1993-1996 + 972 + + + + + Military Airport Program (MAP) + + + + Chippewa + 2001-2003 + 972 + + + + + Chippewa International + 1999-2005 + 972 + + + + + Miscellaneous + 1999-2004 + 972 + + + + + Oscola-Wurtsmith + 2001 + 972 + + + + + Sawyer International airport + 1995-1996 + 972 + + + + + + Northwest airlines + 2004-2005 + 972 + + + + + Northwest airlines-antitrust immunity letter + 2004 + 972 + + + + + Pontiac airport-Oakland County + 1997-1998 + 972 + + + + + Sawyer International airport + 2003 + 972 + + + + + Wurtsmith reuse issues + 1993 + 972 + + + + + + Flight service station contractor-Lansing + 2005 + 972 + + + + + Ford airport-Iron Mountain + 2000 + 972 + + + + + Gerald Ford airport, Kent County International-Grand Rapids + 1998-2000 + 972 + + + + + Grosse Isle airport-GPS + 2000 + 972 + + + + + Houghton County Memorial airport + 1999 + 972 + + + + + HW Brown-Saginaw + 1998-2001 + 972 + + + + + K.I. Sawyer airport + + + + Air traffic control tower + 2001-2002 + 972 + + + + + Customs officer + 2002 + 972 + + + + + Military Airport Program (MAP) funding + 3 folders + 1996-2004 + 972 + + + + + + Manistee Blacker airport + 1997-1999 + 972 + + + + + Marquette County airport + 1999 + 972 + + + + + O'Hare expansion + 2001-2002 + 972 + + + + + Oakland County International-Pontiac + 2000-2002 + 2014 + 973 + + + + + Wexford County airport + 1999 + 973 + + + + + + Detroit metro area mass transit federal funding + 1996 + 973 + + + + + Detroit transportation projects, (grants) + 1993-1996 + 973 + + + + + Great Lakes-merchant marines + 1983-1987 + 973 + + + + + Great Lakes-shipping + 1983-1987 + 973 + + + + + Highway projects + 1988-1996 + 973 + + +

    (Including M-59)

    +
    +
    + + + Transportation highway projects + 1994-1996 + 973 + + + + + Highway trucks, (FHA; P. Abernathy) + 1988-1991 + 973 + + + + + Highway trust fund + 1991 + 1995 + 973 + + + + + Intelligent transportation system + 2 folders + 1995-1996 + 973 + + + + + Mass transit funding + 1988-1996 + 973 + + + + + National Economic Crossroads Transportation Efficiency Act (NEXTEA) and + Intermodal Surface Transportation Efficiency Act (ISTEA) + 1996 + 973 + + + + + National Highway System Designation Act + 2 folders + 1994-1996 + 973 + + + + + Public transportation safety + 1984-1986 + 973 + + + + + Superfund site -- Nankin + 1994 + 973 + + + + + Taxicab fuel tax exemption legislation + 1983-1984 + 973 + + + + + Truck legislation-1984-1986 + 973 + + +
    + + + Audiovisual materials + + + + "State Capitol Connection" with Representative Mark Schauer; Town Hall + Meeting Prescription Drug Cover Rep Mark Schauer & Levin + 1 videocassettes (VHS) + undated + 1069 + + + + + 1.; 2. WAAM - Yetsin/US F.P.+def. budget; 3. NYT - CEO Stock + Options + 1 audiocassettes + undated + 1075 + + + + + 19 - Carl address Grand Rapids Chamber of Commerce + 1 audiocassettes + undated + 1104 + + + + + 20 - Griffin - 2nd paid TV half-hour Metro Detroit + 1 audiocassettes + undated + 1104 + + + + + 3 Levin Inflation. Concept Assoc + 1 videotape (2 in.) + undated + 1107 + + + + + 354 News Conf. S. African sanctions (9-9-85); Warren Pierce WJR Detroit + (9-9-85) + 1 audiocassettes + 1985 September 09 + 1094 + + + + + Actuality - Crime; Carl + Chet Apolsky speaking from Capitol + steps + 1 audiocassettes + 23-Aug + 1107 + + + + + Audio Portion of Interview; Great Lakes Dumping + 1 audiocassettes + undated + 1097 + + + + + BRT "Then Congress Makes You-increasing the cost of family coverage by + $350" Senators Abraham & Levin. produced by: Porter Novelli + 1 audiocassettes + undated + 1096 + + + + + Carl at Dingell hearing + 1 audiocassettes + undated + 1085 + + + + + Carl at WCC - I696 Event; Carl on WJRW I696 + 1 audiocassettes + Dcember 14 + 1075 + + + + + Carl Levin - Very good Speech/Jonny(?) too Comments [illegible] + [illegible] + 1 videocassettes (VHS) + undated + 1089 + + + + + Carl Levin Channel 4 5211 Thurs Jan 9/Carl Channel 2 11 pm only Fri Jan + 10 + 1 videocassettes (VHS) + Thursday January + 09 + Friday January + 10 + 1101 + + + + + Carl: Grosse Ile - Earth Day 1-157- Tape # + 1 audiocassettes + 22-Apr + 1075 + + + + + Ch 8 - G.R./C L. [illegible] + 1 videocassettes (VHS) + undated + 1107 + + + + + Channel 6 @ 11:00 + Levin Speech in Comstock + 1 videocassettes (VHS) + 28-Aug + 1107 + + + + + City Connection - Senator Levin Reading to Kids Feature + 1 videocassettes (VHS) + undated + 1063 + + + + + CL Interview Newsmakers WPHS - fm 89.1 + 1 audiocassettes + undated + 1099 + + + + + CL on Palestinians in Israel/PLO + 1 audiocassettes + undated + 1099 + + + + + CL on WWJ + 1 audiocassettes + undated + 1075 + + + + + CL teleconn. reax to Clinton's BB proposal + 1 audiocassettes + undated + 1098 + + + + + CL White House Meeting: Auto Industry + 1 audiocassettes + undated + 1099 + + + + + D & D Transf. + 1 audiocassettes + undated + 1075 + + + + + Dateline NBC 1. "Home a Loan" 2. "Broken Promises?" + 1 videocassettes (VHS) + undated + 1085 + + + + + Defense Speech Unknown origin + 1 audiocassettes + undated + 1097 + + + + + Detroit News - Ted Douglas: ethics bill + 1 audiocassettes + undated + 1075 + + + + + Downriver Drugs + 1 audiocassettes + December 04 + December 05 + 1075 + + + + + Drugs-Macomb + 1 audiocassettes + 5-Dec + 1075 + + + + + Farm + 1 audiocassettes + undated + 1099 + + + + + Footage of CL at Farm Group + 1 videocassettes (VHS) + undated + 1090 + + + + + From: WUCM-TV, Delta College University Center, MI. To: Mike Lefkiades + 2942 Thunder Bird Drive Bay City, MI. 48706 + 1 videocassettes (U-matic) + undated + 1103 + + + + + Great Lakes Diversion + 1 audiocassettes + undated + 1099 + + + + + Int. w. Erik Schmitt, NYT re Deutsch + 1 audiocassettes + 15-Jul + 1096 + + + + + International Trade + 1 audiocassettes + undated + 1099 + + + + + interview - CL telling prey visit Detroit - very faint. Side A - Carl + + EPA answers concerning MI - very faint + 1 audiocassettes + undated + 1098 + + + + + Interview on Drugs in U.P. + 1 audiocassettes + undated + 1097 + + + + + Interview on Singapore Caning + 1 audiocassettes + undated + 1097 + + + + + Interview: CL, 41. Carl on Tax Bill + 1 audiocassettes + undated + 1075 + + + + + Jackson City Pat Ed. Board + 1 audiocassettes + 5-Dec + 1075 + + + + + Jay Leno on politicians' chair cuts (CL featured) + 1 videocassettes (VHS) + undated + 1101 + + + + + Levin on Rabin + 1 audiocassettes + undated + 1100 + + + + + Levin Radio TV Gallery 2:15 + 1 audiocassettes + undated + 1075 + + + + + Levin THUR. Ch 26 VHS 12:30 PM Lunchtime Watch on Washington Remidies for + Recession + 1 videocassettes (VHS) + undated + 1051 + + + + + Levin/Ehlers GLI Chamber + 1 audiocassettes + undated + 1100 + + + + + Making a Difference: -Sherry Margolis; - Face of Spec. Ed.; -Leader Dogs; + -Frnd. Cir.; - Comm. Sch. + 1 videocassettes (VHS) + undated + 1073 + + + + + MI Water Environment Association + 1 audiocassettes + undated + 1075 + + + + + Michigan. Ben & Jerry's Video [+address & telephone] + 1 videocassettes (VHS) + undated + 1081 + + + + + Mott Community College Forum NAFTA 2 of 2 + 1 audiocassettes + undated + 1099 + + + + + N. Korea P.C. Actuality + 1 audiocassettes + 11-Jul + 1096 + + + + + Newport Apts, Clinton Twp, Mi. Lighting the Drug War + 1 audiocassettes + 24-Feb + 1075 + + + + + NYTimes RPTR(?). Benett 1st Lady & Adoption + 1 audiocassettes + 30-Apr + 1098 + + + + + Operation Expand K.I. Sawyer Produced by WLUC-TV6 + 1 videocassettes (VHS) + undated + 1085 + + + + + Print Reporters DUB! + 1 audiocassettes + undated + 1075 + + + + + Radio Feed on Health Care Floor statements & interview + 1 audiocassettes + 15-Aug + 1096 + + + + + Sen Levin - Retirement + 1 audiocassettes + undated + 1096 + + + + + Sen. Trent Lott - miss.(?) Washington Report gas tax + 1 audiocassettes + undated + 1098 + + + + + Senate FSX speech + 1 audiocassettes + undated + 1097 + + + + + Senate Recording Studio Show Sampler + 1 videocassettes (VHS) + undated + 1073 + + + + + Senator Carl Levin WSGW - am/CL + 1 audiocassettes + undated + 1099 + + + + + Senator Levin -- Families First. Democratic Technology & + Communications Committee + 1 videocassettes (VHS) + undated + 1062 + + + + + Somalia P.C. + 1 audiocassettes + undated + 1099 + + + + + Such Video Inc. - Carl Levin Endorsements: -Dase Anthony; -Jim Docherty; + -Paul Baade; -Tracey Yokich; -Kay Hart + 1 videocassettes (U-matic; 5- :30) + undated + 1058 + + + + + Tape #1 Separated Russian/American couples + Congressmen Audio + 1+2 + 1 videocassettes (U-matic) + November 4(?) + 1055 + + + + + Tape #2 Separated(?) Spouses Russian/American Q+A's + 1 videocassettes (U-matic) + November 4(?) + 1055 + + + + + Tape A CL: a) Distract from worst [illegible]; b) Conventional forces. + Duk + 1 videocassettes (U-matic) + undated + 1090 + + + + + Tape B - CL: a) weak incredible; b) veto of defense bill + 1 videocassettes (U-matic) + undated + 1090 + + + + + Tape C CL: SDI V. Conventional - "No claim to pro-defense + mantle." + 1 videocassettes (U-matic) + undated + 1090 + + + + + Two wraps from Quinn Klinefelter Levin on Healthcare/Levin on Feiger(?) + AD: + 1 audiocassettes + 10-Aug + 1092 + + + + + Uplink on Impact Aid/Education + 1 audiocassettes + 2-Aug + 1097 + + + + + Washington Independent News. 3-PMG + 1 videocassettes (U-matic) + undated + 1089 + + + + + Washington Independent News. Levin/Simon (?) PMG + 1 videocassettes (U-matic) + undated + 1088 + + + + + Washington Independent. News #4 - Perot Hearing + 1 videocassettes (U-matic) + undated + 1089 + + + + + WBKB Tape. Levin - React to Bush Address aud: Ch.2 + 1 videocassettes (U-matic) + undated + 1088 + + + + + WGBH. Take One Step Health Tips: Sen. Carl Levin D-Michigan + 1 videocassettes (Betacam) + undated + 1096 + + + + + WWJ Interview, Joe Crawford Ed. Page GR Press/EPA Letter + 1 audiocassettes + undated + 1097 + + + + + WXYT - Radio 1270 Marc "Eugene Delgadio" + 1 audiocassettes + undated + 1090 + + + + + 63 + 1 audiotape (5 in.) + undated + 1108 + + + + + 1 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 10 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 11 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 12 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 13 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 14 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 15 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 16 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 17 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 18 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 19 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 2 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 20 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 21 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 22 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 23 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 24 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 25 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 26 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 27 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 28 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 29 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 3 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 30 Senator Levin + 1 audiotape (4 in.) + undated + 1108 + + + + + 31 Senator Levin + 1 audiotape (4 in.) + undated + 1108 + + + + + 32 Senator Levin + 1 audiotape (4 in.) + undated + 1108 + + + + + 33 Senator Levin + 1 audiotape (4 in.) + undated + 1108 + + + + + 34 Senator Levin + 1 audiotape (4 in.) + undated + 1108 + + + + + 35 Senator Levin + 1 audiotape (4 in.) + 1981 March 09 + 1108 + + + + + 36 Senator Levin + 1 audiotape (4 in.) + 1981 + 1108 + + + + + 37 Senator Levin + 1 audiotape (4 in.) + undated + 1108 + + + + + 38 Senator Levin + 1 audiotape (4 in.) + 1981 March 09 + 1981 January 21 + 1108 + + + + + 39 Senator Levin + 1 audiotape (4 in.) + undated + 1108 + + + + + 4 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 40 Senator Levin + 1 audiotape (4 in.) + undated + 1108 + + + + + 41 Senator Levin + 1 audiotape (4 in.) + undated + 1108 + + + + + 42 Senator Levin + 1 audiotape (4 in.) + 1981 January 21 + 1981 February 2 + 1108 + + + + + 43 Senator Levin + 1 audiotape (4 in.) + undated + 1108 + + + + + 44 Senator Levin + 1 audiotape (4 in.) + undated + 1108 + + + + + 45 Senator Levin + 1 audiotape (4 in.) + undated + 1108 + + + + + 46 Senator Levin + 1 audiotape (4 in.) + 1981 January 21 + 1108 + + + + + 47 Senator Levin + 1 audiotape (4 in.) + 1981 January 6 + 1981 March 9 + 1981 February 2 + 1108 + + + + + 48 Senator Levin + 1 audiotape (4 in.) + undated + 1108 + + + + + 49 Senator Levin + 1 audiotape (4 in.) + undated + 1108 + + + + + 5 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 50 Senator Levin + 1 audiotape (4 in.) + undated + 1108 + + + + + 51 Senator Levin + 1 audiotape (4 in.) + undated + 1108 + + + + + 52 Senator Levin + 1 audiotape (4 in.) + undated + 1108 + + + + + 53 Senator Levin + 1 audiotape (4 in.) + 1981 March 09 + 1108 + + + + + 54 Senator Levin + 1 audiotape (4 in.) + 1981 January 06 + [illegible] February [illegible] + 1108 + + + + + 55 Senator Levin + 1 audiotape (4 in.) + undated + 1108 + + + + + 56 Senator Levin + 1 audiotape (4 in.) + undated + 1108 + + + + + 57 Senator Levin + 1 audiotape (4 in.) + undated + 1108 + + + + + 58 Senator Levin + 1 audiotape (4 in.) + undated + 1108 + + + + + 59 Senator Levin + 1 audiotape (4 in.) + undated + 1108 + + + + + 6 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 60 Senator Levin + 1 audiotape (4 in.) + February 02 + 1981 February 02 + 1981 March 09 + 1108 + + + + + 61 Senator Levin + 1 audiotape (4 in.) + undated + 1108 + + + + + 62 Senator Levin + 1 audiotape (4 in.) + undated + 1108 + + + + + 7 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 8 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + 9 Senator Levin + 1 audiotape (5 in.) + undated + 1108 + + + + + The Carl Levin Story + 1 audiotape (7 in.) + undated + 1096 + + + +
    +
    + + + Post-congressional Career + 2015 + + +

    The Post-Congressional Career series is comprised of an article in Michigan Jewish History and born-digital files related to a tax + seminar taught by Carl Levin at Wayne State University Law School in Fall 2015.

    +
    + + + Michigan Jewish History Volume 55, Fall + 2015 + 1029 + + +

    (L'dor v'dor: Carl and Sander Levin reflect on family, Detroit, and history)

    +
    +
    + + + Tax Seminar Wayne State University Law School + Fall 2015 + + +

    [access item]

    +
    +
    + Online +
    +
    +
    +
    + + +

    The Amistad Research Center at Tulane University houses Carl Levin papers, 1965-1977.

    +
    +
    +
    +
    diff --git a/sample-ead/bhl/umich-bhl-2017040.xml b/sample-ead/bhl/umich-bhl-2017040.xml new file mode 100755 index 0000000..ee6bc43 --- /dev/null +++ b/sample-ead/bhl/umich-bhl-2017040.xml @@ -0,0 +1,86 @@ + + +umich-bhl-2017040Finding aid for the George H. Forsyth papers. Finding aid created by Lilly Carrel, April 2018.Bentley Historical LibraryThis finding aid was produced using ArchivesSpace on 2019-03-22 12:03:06 -0400.The finding aid is written in EnglishDescribing Archives: A Content Standard2018-04-27Original encodingBentley Historical Library University of MichiganFinding aid for the George H. Forsyth papers.Finding aid created by Lilly Carrel, April 2018. + + + Bentley Historical Library + + + George H. Forsyth papers + + Forsyth, George H. + + 2017040 Aa 2 UAl + + 18.25 linear feet (in 24 boxes) + + + 68.2 MB + + + 10 oversize folders + + + 1 tubes + + 1912-2015 + 1920-1999 + George H. Forsyth (1901-1991) was an eminent archeologist, architectural, and art historian who led archeological expeditions to Angers, France, Mount Sinai, Egypt, and countries in the Near East including Iraq, Syria, and Turkey. Forsyth was a professor at the University of Michigan, chairman of the History of Art Department and director of the Kelsey Museum. Ilene H. Forsyth, who continued George's publishing activities posthumously, was an art historian and professor at the University of Michigan. The collection is comprised of personal materials, teaching materials, and extensive documentation of George's personal travel and archeological expeditions to Europe and the Near East such as correspondence, field notes, and visual materials. + The material is primarily in English. Some material is in French and a small amount is in Middle Eastern languages. + + +

    Restricted access in part. The following file is restricted until July 2022: Personal--Correspondence--Forsyth, Ilene, 1960.

    +

    Donated by Ilene H. Forsyth (donor no. 11704) in May 2017.

    +

    No further additions to the records are expected.

    +

    Donor has transferred any applicable copyright to the Regents of the University of Michigan but the collection may contain third-party materials for which copyright was not transferred. Patrons are responsible for determining the appropriate use or reuse of materials.

    +

    [item], folder, box, George H. Forsyth papers, Bentley Historical Library, University of Michigan.

    [item], [URL], George H. and Ilene Forsyth papers, Bentley Historical Library, University of Michigan.

    +
    +

    The collection is arranged in five series: Personal Papers, University of Michigan Career, Church of Saint Martin Expeditions (Angers, France), Near East Travel Expeditions, and Michigan-Princeton-Alexandria Expeditions to Saint Catherine's Monastery (Mount Sinai, Egypt). The three series documenting George Forsyth's international archeological expeditions are ordered chronologically and are further arranged in subseries, described at the series level.

    +

    George Howard Forsyth was born September 2, 1901 in Chicago, Illinois to Sarah Brockunier and George H. Forsyth. He attended the Chicago Latin School, Lawrenceville School, and Princeton University graduating in 1923 with Bachelor of Arts and 1927 with a Master of Fine Arts. In the 1920s, Forsyth traveled widely in Europe and Near East corresponding with friend and noted art historian, Albert M. Friend. He documented his experience in personal writings, sketches, and photography. Forsyth returned to Princeton to finish his graduate degree and teach in the Department of Art and Archeology from 1927 to 1942. During his tenure at Princeton, Forsyth conducted a number of archeological expeditions to the Church of St. Martin in Angers, France, between 1926 and 1936, resulting in a published study in 1953.

    Forsyth served three years in the United States Navy, 1942-1945, as a lieutenant during World War II. Following his service, Forsyth accepted a visiting professorship at the University of Michigan and became chair of the Art History Department in 1947, a position he held until 1961. Also during his time at UM, Forsyth served as director of the Kelsey Museum, 1961-1969, and professor of archeology, 1969-1972.

    In 1954 and 1956, Forsyth led exploratory expeditions in search of a location to conduct a long-term archeological project. After exploring numerous churches, mosques, and other sites from antiquity in countries including Egypt, Greece, Iraq, Syria, and Turkey, Forsyth and his team settled on Saint Catherine's Monastery, in Egypt's Sinai Peninsula, built in the sixth century by Byzantine Emperor Justinian. The succeeding expeditions were led by George Forsyth in conjunction with Kurt Weitzmann of Princeton University in four campaigns: 1958, 1960, 1963, and 1965. Many scholars and experts were involved in the archeological field work and documentation of the monastery's religious icons and art. Experts included Fred Anderegg, University of Michigan photographer, Aziz Suryal Atiya of the University of Utah, Ernest Hawkins of the Byzantine Institute, among many others. Several publications resulted from the Michigan-Princeton-Alexandria expeditions, but at the time of his death, Forsyth had not published the landmark measured drawings he made based on precise field notes and detailed survey methods of the Monastery St. Catherine. Publication activities and a catalog of the drawings were compiled by Ilene Forsyth, George's wife, and Lois Drewer, of Princeton University, in multiple iterations in the 1990s.

    Ilene Eleanor Haering was born August 21, 1928 in Centerline, Michigan. In 1950, Ilene received a degree in English literature from the University of Michigan and graduated from Columbia University with her Ph. D. in 1960. Dr. Forsyth joined the University of Michigan the following year as a lecturer and served on the faculty of the History of Art Department until her retirement in 1997. Dr. Forsyth held other appointments as a visiting professor at Harvard University (1980) and the University of California at Berkeley (1996). Ilene and George married in 1960 and lived in Ann Arbor, Michigan. George H. Forsyth died January 26, 1991.

    +

    The George H. Forsyth papers document Forsyth's career. The collection includes personal materials, biographical information, daybooks, family photographs, teaching and lecture notes, and extensive documentation of George's personal travel and archeological expeditions to Europe and the Near East. Material related to expeditions includes field notebooks, photographs, negatives, architectural drawings, correspondence, and manuscripts of various publication activities.

    George Forsyth died prior to completing the publication of his landmark drawings of Saint Catherine's Monastery (Mount Sinai, Egypt). Publication efforts were continued posthumously by his wife, Dr. Ilene H. Forsyth, an art historian and professor at the University of Michigan. Her extensive efforts to publish George's work are documented is approximately three linear feet of manuscripts, correspondence, topical files, and a catalog of drawings, 1995-1997, located in Box 9.

    + +

    + +

    + Archaeological expeditions -- Egypt. + Architectural drawings (visual works) + Architecture, Byzantine. + Architecture, Medieval. + Art, Byzantine. + Art, Medieval. + Art -- Study and teaching. + Digital file formats. + Europe -- Description and travel. + Excavations (Archaeology) -- France. + Field notes. + Glass plate negatives. + Greece -- Description and travel. + Icons, Byzantine. + Iraq -- Archaeological sites. + Middle East -- Antiquities. + Middle East -- Description and travel. + Monasteries. + Negatives. + Photographs. + Sinai (Egypt) -- Description and travel. + Slides. + Syria -- Antiquities. + Turkey -- Antiquities. + Anderegg, Fred, 1908-2001. + Collégiale Saint-Martin (Angers, France) + Drewer, Lois, 1941- + Friend, Albert Mathias, Jr., 1894-1956. + Forsyth, George H. + Forsyth, Ilene H. + Kelsey Museum of Archaeology. + Princeton University. + Saint Catherine (Monastery : Mount Sinai) + University of Michigan. Department of History of Art. + Weitzmann, Kurt, 1904-1993. +
    + Personal Papers1919-1991

    The Personal Papers series includes daybooks (1960-1991), correspondence, essays from George's undergraduate education at Princeton University, family photographs and negatives, and materials documenting his personal travel in Europe and Greece (1922-1925). Of particular note is the correspondence with art historian and friend, Albert M. Friend, a travel notebook and sketchbook, and 837 labeled photographs from Europe and Greece in the 1920s.

    Books belonging to George Forsyth1929-19302Correspondence1950-19902Condolence letters2 folders19911

    (To Ilene Forsyth upon George Forsyth's death.)

    Friend, Albert1924-192519522Forsyth, Ilene1960VaultVault

    [Restricted until July 01, 2022]

    Lewis, Sue1969-19722
    Daybooks4 folders1960-19911Education

    (Primarily Princeton University.)

    College entrance examination record19192EssaysCaesar and Cleopatra by George Bernard Shaw19212Renaissance Architecture19232References and bibliographyundated2
    Memorial exhibit materials2 folders19911Notebooks1950s2Obituary of Mrs. Henry H. Forsyth19221Proposal to excavate Marmoutier (France)1934-19352Professional appointments file1927-19812Talks"An American First: The Rise of the Skyscraper"19811

    (Scientific Club Meeting, Ann Arbor.)

    "Modern Art and the Humanities"19582

    (University of Washington.)

    "Problems of Interpretation"19472

    (Princeton Bicentennial.)

    Skyscraper developmentundated1
    TravelCorrespondence1922-19232

    (Primarily from Europe to George's mother and father.)

    Field notes Cheval Blanc (France)1 volume1929-19336Glass slides14 slide boxes192520Glass slides continued43 envelopescirca 192521Notebook from Egypt and Greece19252

    (Includes correspondence with Albert Friend.)

    Notes192521

    (Including Norman Towers.)

    Passport1922-19252

    (Includes detailed trip itinerary to Greece, 1925.)

    Photographs buildings and various sights5 bundlescirca 192521

    (Identified and arranged alphabetically by Forsyth.)

    Photographs from European travel837 photographs (in 17 bundles)crica 1922-192516

    (Mostly buildings and archeological sites in Amsterdam, England, France, and Greece. All photographs identified by Forsyth. Numbering of photographs jumps from 632 to 663.)

    Sketchbook2 folderscirca 19222
    Visual materialsIncluding photographs, negatives, and slides.Art and archaeology session, Princeton Bicentennial19471Beach1 envelopes (photographs), 7 negative strips195415Family photographscirca 1906-19452Hope at Camp (Burlington, Vermont)1 negatives (in 1 canister)195815Portraits in George Forsyth's studio1 slide boxes (28 color slides)198715Unidentified negatives195415Unidentified negatives continued7 rolls (in 1 box)undated22Unidentified woman and baby1 framed photographs (in 1 box)undated22
    University of Michigan Career1933-1976

    The University of Michigan Career series documents George's work as professor, chairman of the History of Art Department, and director of the Kelsey Museum. Materials include correspondence (1946-1973), a report on the 1956 trip to the Near East, histories of the History of Art Department and Kelsey Museum, and teaching materials such as notebooks on art history and lecture/course materials for various fine arts courses (1947-1957).

    Annotated book reviews from The Art BulletinMarch 19534Correspondence3 folders1946-19734Gowans, Alan2 folders1971-19724

    (Includes printed material.)

    Histories of Kelsey Museum and History of Art Department1967-19764Notes, article/book reviews, and lists of titles1953-19704Outline for "A evolution in congregational type church"undated4Report on the University of Michigan reconnaissance trip to the Near East, "The Medieval Islamic Period"19564Symposium on Palestine in the Byzantine Period1952-19554

    (Includes other general notes and printed materials.)

    Teaching Materials

    (Includes notes, lectures, and other writings.)

    "A Preface to the Study of Architectural History"undated4Bibliography and course syllabi1933-1949undated4

    (Includes annotated Princeton University materials.)

    Fine Arts 3: Introduction to the History of Art2 folders1955-19561Fine Arts 45: Medieval Architecture1947-19591Fine Arts 166: European and American Architecture3 folders1955-19581Fine Arts 245: Investigation in Medieval Architecture1956-19574

    (Includes notes on his philosophy of the writing of art history.)

    General ancient architecture photographs and notes1 card boxes (1 kodak photo box)circa 1930s22

    (Card file organized by Forsyth, original order maintained.)

    NotebooksAncient and medieval art1 volume19476Introduction to art and English art1 volume19476Renaissance and modern art1 volume19476
    "Why an Architect" panel notes19594

    (Freshman orientation session.)

    Church of Saint Martin Expeditions (Angers, France)1912-20151929-1951

    The Church of Saint Martin Expeditions (Angers, France) series documents the expeditions led by George Forsyth between 1926 and 1936 to Angers, France, to excavate the Church of Saint Martin, built in the ninth century by the son of Charlemagne. Forsyth led several expeditions to St. Martin resulting in the discovery of rare religious artifacts and important architectural data published in The Church of St. Martin at Angers: The architectural history of the site from the Roman Empire to the French Revolution. The excavations in collaboration with William A. Campbell.

    The series is arranged in four subseries: Correspondence, Field Work, Visual Materials, and Publication Activities. Materials include field notebooks detailing excavation activities, notes, drawings, and reference material; visual materials such as measured drawings, photographs of the church exterior and interior, and 162 envelopes of negatives of excavation activities; and annotated manuscript drafts, correspondence, and printed materials related to publication efforts. Files in each subseries are arranged alphabetically.

    Correspondence1930-193631930-193731931-19403Aubert, Marcel1929-19363Campbell1930-19393Vendime1930-19383Field WorkExcavation of trenches193612

    (Drawings and notes.)

    Field NotebooksDrawingsVolume I and II1929-193612Volume III and IV1929-193612Volume V4 folders (notebook disbound)1934-194012Volume VI, VII, and VIII: Comparative material4 volumes1929-19506Volume IX1 volume1930-19356

    (W.A. Campbell.)

    Volume XI and XII: Descriptive and general1930-193112Source notes2 folders (notebook disbound)circa 1930s12
    Notes and observations1930-195013

    (Includes correspondence and sketches.)

    Reference card file8 folderscirca 1926-193613

    (Includes photographs, history, setting, documentation, field notes, etc.)

    Travel documents (France)1924-19323
    Visual MaterialsDrawingsAnalytical attempts1934-194612Assorted drawings and reproductions, annotated1934undated2Chapter house1931-193612Ink plans for comparisons195012Measured details1935-19373Restoration sketches193013Restoration sketches1934-193712Unlabeled drawingundated4Photographs and NegativesBuilding exterior, excavation, and other unidentified images2 folderscirca 1920-193912

    (Many photographs have notes, most likely used in various publication iterations, others are unidentified.)

    Loire school photographs1930-1931undated3

    (Includes notes.)

    Old viewsundated12Photographs2 folderscirca 1946-195013Negativescirca 1922-1936

    (Negatives are unidentified but primarily appear to be the excavation of St. Martin's Church. Envelopes towards the end of grouping appear to be of places in Greece, Egypt, and Turkey. Some images may be duplicates.)

    Unidentified negatives43 envelopes (1-43 of 162 Envelopes; nitrate negatives)undated17Unidentified negatives72 envelopes (44-115 of 162 Envelopes; nitrate negatives)undated18Unidentified negatives47 envelopes (116-162 of 162 Envelopes; nitrate negatives)undated19
    Publication ActivitiesArticle for Antiquity193712Comparative materials1950-195112Correspondence1930-1951121946-1952121971-197331971-19903"Excavations in the church of St. Martin at Angers" lecture notes194712Manuscript draft3 folderscirca 194913

    (Handwritten.)

    Notes, papers, photographs1930-1938undated3

    (Includes photographs, notes, a sketch, printed material, and other unidentified papers.)

    Outline for publicationcirca 19455

    (Outline drafted on oversize craft paper approximately 47 x 36 inches.)

    Petit Appareil masonry1933-193813

    (Includes notes and printed material.)

    Posthumous request to Ilene2002-201511

    (Including for exhibits, offprints, and biographical information.)

    Printed materials1912-193112

    (Annotated.)

    "Roman, Merovingian, and Carolingian Constructions with in the Collegiate Church of St. Martin at Angers" paperundated3Unidentified outline and notes1936-1947undated12Volume XIV: Outline for publication (notebook)1 volume1940-19456Volume XIV: Outline for publication continued (notebook disbound)1940-194512
    Near East Travel Expeditions1926-19791954-1957

    The Near East Travel Expeditions series is arranged in three subseries: Travel Preparations, Field Work, and Visual Materials. This series documents the two expeditions Forsyth led, in 1954 and 1956, in search of a site to conduct a long-term archeological campaign. Items of particular note include the field notebooks where Forsyth kept detailed notes of the sites he visited in Egypt, Greece, Italy, Iraq, Lebanon, Libya, Syria, and Turkey; correspondence, drawings, negatives, and the notebook (later exhibited at the Metropolitan Museum of Art) related to the excavation of Kariye Cammii (Istanbul, Turkey); Forsyth's equipment lists and trip itinerary; and photographs, negatives, and color slides of the churches, monasteries, and other sites of antiquity.

    Travel PreparationsAnatolian studies notes1963-19692Bibliography for trip19562Clothing and equipment lists1954-19584Printed materials1936-19602

    (Includes publications from the governments of Egypt and Iraq.)

    Travel preparations19261954-19564

    (Includes travel documents and correspondence.)

    Trip itinerary19542

    (Includes letter from George Tchalenko and an eight page list of photograph identifications written in French.)

    Field WorkContribution to De artibus opuscula XL: essays in honor of Erwin Panofsky1958-19613

    (Includes correspondence, photographs and drawings of the Church at Kanli Divane (Kanlıdivane) in Cilicia (Turkey).)

    Correspondence19542

    (Includes two2 letters from Albert Friend.)

    Field NotebooksAll sites contact sheets2 volumes19566Greece1 volume19576General and bibliography2 volumes1953-19596Near East and Africa1 volume1954-19566

    (Notebook indicates Turkey excluded.)

    Turkey and Italy1 volume1954-19576
    Kariye Cammii (Istanbul, Turkey)Excavation notebook19572Drawings and negatives19572Ousterhout, Robert, correspondence1978-19792Report on excavations of Qasr al-Hayr al-Sharqi (Syria)circa 1969-19703
    Visual Materials

    The Visual Materials subseries is arranged by country, site or location, and alphabetically. The bulk of photographs, negatives, and color slides document sites in Turkey and Syria. Multi-site, or multi-country sites, include groupings of visual materials that could not be organized at the item level. Unless format is noted, all materials in this subseries are black and white photographs of various sizes. Please note that images were identified and grouped together based on Forsyth's labels; spelling of sites or locations may differ from current or originating language spellings.

    GreeceNea Anchialos19632Unidentified multiple sites19572IraqMulti-site19562

    (Includes sites: Hatra, Mosul (Mar Isha'IA, Tahra of the Chaldeans, Shim 'un as Safa, Mar Yaqub, Qara Qosh-Mar Behnam), Qasr Sahrij, and Ukhaidir.)

    LebanonBaalbeck2LibyaMulti-site19562

    (Includes sites: Appollonia, Cyrene (Apollo Temple), Tocra, and Tolmeita (Synesius Church).)

    SyriaAl Bara19543Baqirha19543Church of Saint Simeon4 color slides195615Dar Qita19543Deir Siman19543Meez (Me'ez)19543Multi-site19563

    (Includes sites: Halibiye, Hawarin, Palmyra (Temple of Bel, Theatre), and Qasr el Hair.)

    Qalat Siman19543Qalb Loze (Qalb Louzeh)19543Quirqbize19543R'safah St. Sergius19543R'safah St. Sergius1956negatives3

    (Also includes Diyarbak and Qasr al Hayr.)

    TurkeyAlahan Kilisse19543Altn Sehir195715Cambazli19543Dag Pazarli19543Diyarbakir Great Mosque19543Istanbul (St. John Studion)195715Kanli Divane1954-19563Kariye Cami1 slide boxes (31 color slides)195715

    (Images of excavation work.)

    Korykos19543Multi-site19563

    (Includes sites: Dara, El Adhra, Hafsinas (Mar Shimun Zeiti), Hakh, Mar Gabriel, Mar Sovo, Zaz, and possibly other locations.)

    Nusaybin Church of Mar Yaqub19543Qartemin1954-19563Sivrihisar19543
    Multi-country sitesBenson Murray photographs2

    (Includes photographs and correspondence regarding identification of photos for multiple sites in Turkey, Syria, and possibly other areas.)

    Contact prints1957undated22List of prints made from negatives19562Near East and Africa Byzantine and Christian sites23 bundles (1-23 of 31 bundles)circa 1950s23

    (Card file organized by place/country, original order maintained.)

    Near East and Africa Byzantine and Christian sites continued8 bundles (24-31 of 31 bundles)circa 1950s15Rome (Italy) and unidentified locations195415Trip 195657 envelopes (negatives)195615

    (Includes sites in: Turkey, Syria, Libya, and possibly other locations.)

    Turkey and Syria1956photographs3

    (Includes Deir ez Zafaran and Resafe St. Serge.)

    Turkey and Syria7 slide boxes (color slides)circa 1954-195715Unidentified19542
    Group photographs1954-1956Includes 3 negatives3
    Michigan-Princeton-Alexandria Expeditions to Saint Catherine's Monastery (Mount Sinai, Egypt)1940-20121954-1999

    The Michigan-Princeton-Alexandria Expeditions to Saint Catherine's Monastery (Mount Sinai, Egypt) series comprises the bulk of the collection. This series is arranged into five subseries: Correspondence, Travel Preparations, Field Work, Visual Materials, and Publication Activities. The Michigan-Princeton-Alexandria Expeditions are typically referred to as "Mt. Sinai" and occurred in four campaigns in 1958, 1960, 1963, and 1965. Materials of particular note include correspondence with Kurt Weitzmann, of Princeton University who co-led the expeditions, and Fred Anderegg, UM director of photography; trip preparatory materials such as equipment lists and medical supply information; field notebooks (two volumes); full-scale architectural drawings of the monastery and surrounding fortress, which were cataloged during Ilene's posthumous publication efforts (Box 9); and extensive repurposed source material, such as photographs, negatives, drawings, and field notes, reproduced and annotated for various publication activities. This material is described more fully at the subseries level.

    Correspondence2 folders1957-19877Anderegg, Fred1972-19757Mainstone, Rowland1967-19707Official correspondence1957-19737Pending unsolved problems, references etc.1963-19797Scholarly correspondence1961-19877Shanks, Hershel19787

    (Editor of The Biblical Archaeology Review.)

    Travel PreparationsExpenses19634Clothing and equipment lists1957-19654Medical supply information2 folders1954-19654Official letter of introduction from U-M President Harlan Hatcher1960-19634Passport Ilene Forsyth1958-19614Religious documents1940-19604Trip correspondence19584

    (Includes correspondence with Aziz Atiya.)

    Field WorkChurch field notes and drawings1963-19679Field NotebooksVolume I1956-19684Volume II1964-19685Ilene's notes on church ceiling beams19638Le monastère de-Sainte-Catherine du Mont Sinaī par m. H. L. Rābino19389

    (Forsyth's copy with annotations, 1956.)

    Masonry notes and analysis1963-19679Radiocarbon dating1974-19817

    (British Museum C-14 tests.)

    Roof analysis1961-19918

    (Includes correspondence.)

    Total review of field notebook I1987-19889Unidentified notes19658
    Visual MaterialsDrawingsCapitals in the nave-drawings, negatives, and reproductions4 folders19698Cataloged Drawings

    (Forsyth's unpublished drawings of St. Catherine's Monastery. Cataloged by Ilene Forsyth and Lois Drewer, circa 1990s. Corresponding catalog in Box 9.)

    Drawings 601-6538

    (vellum)

    Drawing 6021 tubes1Drawings 625-6509

    (paper)

    Unidentified drawings10
    Church details1960s8Fortress and chapel wallscirca 1960-19818Fortress south terrainscirca 1960-19818

    (Includes notes and photographs.)

    Original and photo-reproductions of drawings5 folderscirca 1960-199524

    (Includes original and reproductions of drawings with substantial annotations, keys, and notes.)

    Photographs and negativesApproach to mountain19878Berry survey of fortressNotes19658Photographs for Berry survey1963undated8Chapel1964undated9

    (Includes various shots inside/outside building.)

    Church beams19708

    (Foliate and sea creatures.)

    Contact prints30 rolls (in 1 box), 1 folder1956-196023DetailsBeams over nave, inscriptions19688Bulls and goat, hare and houndsundated8Crosses19878Mosaic in main apse19819

    (Before and after cleaning.)

    Doors2 folders19688Fire1980-1989Includes slides.8Fortress views marked for publicationcirca 1963-19786Fortress walls (North, South, East, West)undated8Ilene's file1958-1963undated8Infrared views of Mt. Sinaiundated7Mango excavation19579Panorama sepia prints1963-19758Photographs for various publications3 folders1963-19859Photographs for U-M Press use19569Various images1960-1963Negatives.8
    Publication Activities

    The Publication Activities subseries includes materials created by George Forsyth resulting in articles, exhibitions, a monograph executed during his life, and materials created and culled together by Ilene Forsyth posthumously. This subseries is comprised of correspondence with publishers including the University of Michigan Press, Dumbarton Oaks Papers, and Princeton University Press; annotated manuscripts and chapter drafts; two annotated galley proofs of The Monastery of Saint Catherine at Mount Sinai: the church and fortress of Justinian / Plates published with Kurt Weitzmann, Ihor Ševčenko, and Fred Anderegg (Box 14); and notes, drawings, and photographs reproduced for publication activities. Forsyth made detailed notes on photographs, scraps of paper, and envelopes during his continued analyses of his field notes and other source materials. The processing archivist transcribed existing folder titles or created titles based on information from envelopes, and where appropriate envelopes were kept with file contents to preserve Forsyth's notes.

    George Forsyth died prior to completing the publication of his landmark drawings of Saint Catherine's Monastery (Mount Sinai, Egypt). Publication efforts were continued posthumously by his wife, Dr. Ilene H. Forsyth, an art historian and professor at the University of Michigan. Her extensive efforts to publish George's work are documented is approximately three linear feet of manuscripts, correspondence, topical files, and a catalog of drawings, 1995-1997, located in Box 9.

    CorrespondenceFan mail1964-19735Fawzi, Fakharani1973-19815General correspondence2 folders1964-19695Grossmann, Peter1982-19897Tsafrir, Yoram19795Weitzmann, Kurt1977-19865Dumbarton Oaks PapersAnnotated offprint of "The Monastery of St. Catherine at Mount Sinai: The Church and Fortress of Justinian"1967-19687NASA satellite view of Sinai peninsula19677Photographs and reproductions for article196819908Rejected travel note from Dumbarton Oaks Papers19577

    (Includes photographs and correspondence.)

    Revisions19889

    (Draft of volume III in Princeton D.O.P. series, not published.)

    Symposium on Justinian and Eastern Christendom2 folders1961-19709

    (Hosted by Dumbarton Oaks Center for Byzantine Studies. Includes correspondence, notes, and handwritten lecture text.)

    Exhibitions"Fortress of Faith" exhibit at U-M Kelsey Museum19787

    (Photographs by Fred Anderegg.)

    Sinai exhibit at Princeton University1958-196019777Department of Art & Archaeology Sinai exhibit, Princeton University2006

    [access item]

    Online
    Ilene Forsyth Posthumous Publication EffortsAdditional photographs199611Annotated drafts (multiple versions)Introduction4 folders1998-199910

    (Includes various other chapters.)

    Index1995-199810Outer walls of the monastery199610Selected annotations, working copies1998-199910
    BibliographyAnnotated version199810Included19989Not included19989Notes and excerpts199511Biographical notes on George199911Camels19852000-200211Carbon 14 dating1997-201211Catalog of drawings1995-19979

    (Index to George's drawings of the Monastery St. Catherine (Ov folders 8-10).)

    Computer199511CorrespondenceBlai199511Project related1995-199910

    (Primarily between Ilene and Lois Drewer; also includes biography of George by Ilene.)

    Color prints of Sinai for Kelsey Museum20049

    (Includes 2 slides of Forsyth drawings.)

    Drawings catalog "as found"199511Drawing index Lisa's work199511Dunn-Blue photo-reproductions199711Exhibitions1998-200311Field notes list of diagrams1995-199711Field notes transcriptionsAugust 1995

    [access item]

    Online
    Field notes transcriptions (revised)December 199511Footnotes of west towers1995undated10Getty conservation200211Holger A. Klein publications2002-200511Ihor Sevcenko publication on Sinai doors199611Inventories4 folders1997-199810

    (Includes lists of George's field notebooks, correspondence, photographs, drawings, and other source material photocopies with annotations.)

    John Elsner (Byzantine)1999-200011Kariye Camii (Turkey) field notebook2003-200711

    (Information on the field notebook's exhibition at the Metropolitan Museum of Art.)

    Kelsey201011Key to symbols and abbreviations199511Lois Drewer3 folders1992-199911Negativesundated11Newspaper clippings re: Sinai199611Notes of interpretations of George's work1995-199711Notes on drawings1997111996

    [access item]

    Online
    Notes on recent publications1990-199811Obituaries1993-200611Hawkins, Ernest199311Weitzman, Kurt1993-199411Old views compiled by Ilene2 folders19989

    (Images (photographs and reproductions) of St. Catherine's Monastery.)

    Outline and notes1998-199910Printed materials3 folders1933-1985undated9Recent Sinai related literature2 folders1985-200611Recent travelers to Sinai1999-200011

    (Correspondence.)

    Red Monastery (Sohag, Egypt)201211Thomas Matthews1979-199711

    (Includes correspondence to George.)

    Summary199511Synthesiscirca 1990s10

    (Notes compiled from George's files.)

    Xeroxed images1996-199810

    (Copies of photographs labeled and annotated.)

    John Galley book: Sinai and the Monastery of St. Catherine1978-19817

    (Includes correspondence and chapter drafts.)

    Lecture notes and talks2 folders1954-19649The Monastery of Saint Catherine at Mount Sinai: the church and fortress of Justinian / Plates. By George H. Forsyth and Kurt Weitzmann, with Ihor Ševčenko and Fred Anderegg

    (Published by University of Michigan Press, Ann Arbor (1973). May also include drafts and materials for a second volume (never published) in this series.)

    Contents and chapter introductions19887Forward and introduction "early versions"19647Galley proofs2 volumes (in one box)circa 1972-198914

    (Heavily annotated. Labeled "Working Copy I" and "Working Copy II.")

    Manuscript drafts6 folders1963-19677

    (Various chapters heavily edited.)

    Proposed title page proof for volume II19627

    (Includes Kurt Weitzmann's letter of acceptance and "Agreement between the University of Michigan and Princeton University concerning the Sinai Expedition.")

    Notes, drawings, photographs, and negatives6 folders1960s-1970s5

    (Materials may relate to various publication efforts.)

    Richard Pococke's Observations on Egypt annotatedcirca 1960s9University of Michigan Press

    (Primarily regarding the publication of Volume I.)

    Book reviews1973-19745Correspondence1961-196851962-196651967-197151972-197551973-197451976-19775Meeting notes19661977-19785Memorandum of Agreement19675Publicity and author questionnaire1968-19745
    + +

    The University of Michigan, History of Art Department Visual Resource Collection (VRC) holds the following collection of related material: Sinai Archives Collection. Parts of this collection are digitized and available online by searching the terms "Forsyth" and "Sinai" here at: https://quod.lib.umich.edu/h/hart

    +
    +
    +
    diff --git a/sample-ead/bhl/umich-bhl-851981.xml b/sample-ead/bhl/umich-bhl-851981.xml new file mode 100755 index 0000000..fdb8420 --- /dev/null +++ b/sample-ead/bhl/umich-bhl-851981.xml @@ -0,0 +1,117 @@ + + +umich-bhl-851981Finding aid for Interlochen Center for The Arts Records, 1927-2005 Finding aid created by Kenneth Scheffel, 1994-1996 Philip J. Deloria, 2005 accessionBentley Historical Library

    2004

    This finding aid was produced using ArchivesSpace on 2019-03-21 11:09:08 -0400.The finding aid is written in English2016-06-01Added digitized audio cassettes.2015-09-08Corrected collection dates.2014-12-23Card index added to the collection (box 92)2013-12-16Changes made to reflect changed box numbers.2006-08-09Original encoding from Word 2000 file using Word macros and Xmetal. A complete reconversion of the earlier EAD file.2016-11-21Updated Conditions Governing Use Note
    Bentley Historical Library University of MichiganFinding aid for Interlochen Center for The Arts Records, 1927-2005Finding aid created by Kenneth Scheffel, 1994-1996 Philip J. Deloria, 2005 accession + + + Bentley Historical Library + + + Interlochen Center for The Arts records + + Interlochen Center for the Arts. + + 851981 BImu Bimu C367 2 + + 86.4 linear feet (in 92 boxes) + + + 51 volumes (scrapbook) + + + 1 oversize folder + + + 30.91 GB (online) + + 1927-2005 + 1935-1994 + The material is in English + Parent organization of the Interlochen Arts Academy and the Interlochen Arts Camp (formerly the National Music Camp) founded by Joseph Maddy. Includes administrative records of the Center, the Academy and the Camp and personal papers of Maddy, photographs, sound recordings, and motion pictures. + Portions located in offsite storage; prior notification required for access. + + +

    The bulk of this record group came from the National Music Camp/Interlochen Center for the Arts (donor no. 1754) beginning in 1942. Periodic additions have been received and are expected. Separate accessions have been received from the C. M. Tremaine family (donor no. 5550) and others (donor nos. 6669, and 7769).

    +

    The collection is open to research. Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.

    +

    Copyright for the bulk of the record group remains with the Interlochen Center for the Arts. Copyright to those materials received from the C. M. Tremaine family and from Sheryl Szady has been transferred to the Regents of the University of Michigan but the collection may contain third-party materials for which copyright was not transferred. Patrons are responsible for determining the appropriate use or reuse of materials.

    +

    [item], folder, box, Interlochen Center for The Arts Records, Bentley Historical Library, University of Michigan

    +

    During processing of the 2005 accession significant changes were made to the organization of the finding aid. Some new material was physically interfiled in existing series or subseries in the appropriate box. In other cases, additions to a series or subseries has been placed in a new box. This finding aid reflects the intellectual arrangement of the collection with the result that in the detailed container listing box numbers are not always consecutive.

    + +

    +
    +

    Digitization: The Library has undertaken the digitization of a number of sound recordings within this collection. The resulting audio files are available for playback only in the Bentley Library Reading Room. Links to item images and additional information are available within this finding aid. Original sound recordings are only available for staff use.

    +
    +

    Joseph Maddy, Interlochen's founder and long-time leader, was born in Wellington, Kansas, on October 21, 1891. Both his parents were educators. His father taught before becoming a banker, and his mother served as county school superintendent. Both also enjoyed performing music, especially his mother, an accomplished amateur musician. Their first son, Harry, a year and a half older, served as a role model in Joe's early musical career.

    As youths, the two brothers joined the newly formed Wellington Boys Band. Its director took the group on a musical camping trip, which Joe greatly enjoyed. Later, the boys graduated to the town band. They also performed in the family quartet, which was expanded during their early teens when another talented musical family, the Petits, moved to town. The Petits' youngest daughter, Fay, who years later eventually became Mrs. Joseph Maddy, and the two families spent part of a summer playing music while camping together.

    Since musical instruction was unavailable in the public schools, Joe Maddy, like his brother before him, dropped out of high school after his freshman year. Following two semesters at Bethany (Kansas) College of Music and Fine Arts, he transferred to the Wichita (Kansas) College of Music, which his brother attended. In 1909, having joined the musicians union, he again followed his brother, becoming the youngest member of the Minneapolis Symphony. Two years later, he married Marie Mangan, and in 1913, the first of their three children was born.

    While his brother remained for almost a half century as violinist with the Minneapolis Symphony, Joe, a violist, chaffed under the group's emphasis on seniority, rather than ability, for promotion. So in 1914, he switched to the new St. Paul Orchestra as Assistant Concertmaster.

    The economic disruptions of World War I brought a quick end to the St. Paul Orchestra and Maddy's symphonic career, leading him eventually into music education. For the next four years, he expanded his knowledge and skills in a variety of musical jobs. He became a clarinetist with a vaudeville orchestra in Peoria, Illinois. Then, he learned conducting as head of the orchestra in his native Wellington (Kansas). In 1915, he moved to Wichita Falls, Texas, as director of the College of Music and Art. There, he started a non-credit orchestra among high school students. Relocating to Chicago, he played saxophone in jazz clubs and taught in several music schools.

    In 1918, when philanthropist George Eastman created the position of superintendent of music in the Rochester, New York, public schools, Joe, because of his ability to play a variety of instruments, got the job. Although he lacked the required teaching certificate, the president of the University of Rochester, following a half hour interview, conferred the needed credential on him "by examination." During his two year tenure in Rochester, Maddy started school bands and orchestras which greatly impressed Eastman. Joe's efforts together with a follow-up survey by Pittsburgh music educator, Will Earhart, helped convince Eastman to endow the distinguished music school which bears his name.

    While preparing the Rochester survey, Earhart approached Maddy about becoming supervisor of school music and director of civic music in Richmond, Indiana, a position which Earhart once held. Maddy hesitated because the job included choral work, but Earhart persuaded him that a summer course at Chautauqua under T. P. Giddings, a specialist in mass choral instruction (and head of the public school music program in Minneapolis), would qualify him.

    The Chautauqua experience (1920) forged a strong bond between Maddy and Giddings. Almost immediately, they began collaborating on a master work of music instruction. Shunned initially by publishers because it contained familiar, and thus works which could not be copyrighted, it found a champion in Carl D. Greenleaf, head of C. G. Conn Company, the instrument manufacturer. Published initially by Conn in 1922, the Universal Teacher became the standard in the field, presenting the first practical system for teaching all instruments of the band and orchestra at the same time.

    During Maddy's four years in Richmond, he scored a major breakthrough by getting music accepted into the regular school curriculum with credit toward graduation. He also developed the first complete high school symphony orchestra, which, in 1922, performed before the Music Supervisors (soon renamed Educators) National Conference in Nashville, Tennessee. In preparing for the trip, Maddy initiated another major reform. Remembering his frustration with the Minneapolis Symphony, he instituted weekly challenges for position determined by the votes of orchestra members. Following four months of intensive study, Maddy passed the subject examinations for a high school diploma, and he also began teaching part-time at Earlham College in Richmond.

    In 1924, Maddy accepted a joint appointment as supervisor of music in the Ann Arbor, Michigan, public schools and head of the school music department in the University School of Music, which was affiliated with but separate from the University of Michigan. At first, he devoted most of his energies to developing the public school music program, organizing the high school band and other musical groups (where, previously, there had been only a mandolin club). By the fall of 1927, he switched totally to the conservatory, where he initiated the first conducting classes.

    A few months before moving to Ann Arbor (1924), Maddy was named a member of the new Instrumental Affairs Committee of the Music Supervisors National Conference. The committee, with gifts from the National Bureau for the Advancement of Music, headed by C. M. Tremaine, funded band and orchestra contests on both the state and national levels. In 1926, Maddy became its chairman, and with assistance from Giddings, organized the first National High School Symphony Orchestra, composed of outstanding young musicians from throughout America. Its performance at the Music Supervisors National Conference in Detroit led to an invitation to assemble a similar group for the national convention of school superintendents in Dallas, Texas, the following spring.

    The performance of the second National High School Orchestra (1927) led the superintendents to adopt a resolution that music receive "equal consideration and support with other basic subjects" in the public schools. An elated Joe Maddy, at a farewell party for orchestra members, promised to find them a permanent home, a summer camp where they could play music "all day long."

    Returning to Ann Arbor, he placed an advertisement in the Sunday Detroit Free Press seeking a location for his proposed camp. Willis Pennington, owner of a resort hotel near Interlochen in northern Michigan, responded. He had vacant property close to a railroad station and to separate boys and girls camps owned by his family. After an inspection trip, Maddy and Giddings arranged a deal to board campers at the hotel in exchange for some land between the lakes. Tremaine, who served as their financial advisor, finalized the agreement in his office.

    With a loan from band instrument manufacturers plus a personal gift from Greenleaf and additional funds from Traverse City bankers, construction of the camp began. It opened on schedule, June 24, 1928, as the home of the National High School Orchestra. Representing a pioneering venture in both musical and coeducational camping, it became the first truly independent, non-college, summer camp devoted strictly to music and probably the first to incorporate male and female campers on an equal basis. From the beginning, it also accepted members of all religions, rather than following the exclusionary practices of the time. While a strong Southern constituency delayed admission of African Americans, it became a leader in the post World War II integration of private camps, producing many distinguished black alumni, including Jessye Norman.

    The first year of the National High School Orchestra Camp proved an artistic success, but a financial disaster. Ending $40,000 in the red, Maddy sold debenture bonds among supporters and area residents to meet the deficit. To protect the creditors, a Board of Control was formed to oversee the Camp's finances. It consisted of Maddy, Giddings, and Tremaine plus four creditor representatives (Pennington and three debenture holders).

    When the Camp opened for its second year, it added an alumni or college division and featured band as well as orchestra training. Shortly thereafter, with the Depression effectively ending funds for the National High School Orchestra, the Camp began to advertise itself simply as "The National Music Camp."

    Despite a doubling of enrollment in its second year, the deficit remained and became more of a problem with the onset of the Depression. The sale of nationwide broadcast rights in 1930 helped keep the Camp open. Two years later, Maddy secured enough in gifts and new debentures to make a down payment on purchasing the Camp, but within another year, it faced immanent bankruptcy. Tremaine, the treasurer, saved the Camp by persuading Pennington and the debenture holders to accept a reduction in their payments and by instituting rigid financial controls on Maddy's spending.

    Although the Camp struggled financially, it continued to gain fame musically. In 1930, its orchestra performed in Washington, D.C., before President Herbert Hoover with Senator Arthur Vandenberg's daughter as soloist. Three years later, it played at the Century of Progress in Chicago. In 1937, an affiliation with Illinois State Normal University guaranteed college credit to members of its alumni division, and two years later, its orchestra appeared at the World's Fair in New York, conducted by nine year old child protégé, Loren Maazel. Early campers included Frederick Fennell and Seymour Lipkin, and guest artists and faculty: John Philip Sousa, Frederick Stock, Ferde Grofe, Percy Grainger, and Howard Hanson.

    Despite Maddy's success, his preoccupation with the Camp created problems at the University School of Music where he taught. Although the School became a unit of the University of Michigan in 1929, it remained at first under the control of the University Musical Society. Charles A. Sink, head of the Society, grew increasingly critical of the time Maddy devoted to the Camp, rather than the School.

    In 1930, the newly installed president of the University, Alexander Grant Ruthven, came to Maddy's rescue. Using funds from a Carnegie Foundation grant, he released Maddy from teaching for five years with instructions to promote music education as he saw fit.

    Following Ruthven's mandate, Maddy experimented with the use of radio for music instruction. In 1931, under the aegis of the U. of M. Broadcasting Service, he started band and orchestra classes over a statewide network via WJR in Detroit. Eventually, they were expanded to include string and vocal instruction and a popular hymn program. In 1936, NBC picked up his band and orchestra classes on its national network. In Maddy's radio work, he relied heavily on University of Michigan students. They included announcers Mike Wallace (Myron Wallach) for the instructional and Camp broadcasts and Ward Quaal for the hymn program and technician Jerome Wiesner (later president of MIT), who also helped found the radio workshop at the Camp.

    The same year (1936) as Maddy began his national broadcasts, he assumed the presidency of the Music Educators National Conference (MENC). Not surprisingly, educational broadcasting served as the theme of his inaugural address. Upon completion of his two-year term, he became director (1938-1940) of the MENC program, "Music and American Youth," which featured broadcasts of school music groups throughout the United States.

    In addition to his radio work, Maddy, under the sponsorship of the university Extension Service, served as conductor for all-state, regional, and national high school orchestras and supervised state and national school band and orchestra contests and festivals. Often, he arranged his appearances in conjunction with his broadcasts, and everywhere he recruited students for the Camp.

    Despite the successes, Maddy and the Camp experienced a series of crises at the end of the 1930's. Maddy's first marriage disintegrated, and he and Giddings battled over control of Interlochen. Meanwhile, Camp finances remained tight, and the expiration of Maddy's Carnegie grant at the university brought him into renewed conflict with the head of the University Musical Society. Finally, in 1939, NBC, given the growing commercial demand for air time, canceled his nationwide instructional program.

    In 1937, Maddy divorced his first wife, Marie, who served as Interlochen's secretary. His remarriage a year later to his childhood friend, Fay Petit, a professional musician, restored happiness to his personal life, but the problem with Giddings remained.

    Facing imminent retirement from the Minneapolis school system, Giddings opposed Maddy over the choice of Camp director and university affiliation. In order to force a settlement, Tremaine, who supported Maddy, threatened to resign. The tactic worked; the crisis passed, and amiable relations were restored (lasting until Giddings' death in 1954). Thereafter, Maddy, though occasionally restrained in fiscal policy by Tremaine and the Board of Trustees, lacked a serious rival in operating the Camp.

    The easing of the Depression and a Hollywood movie contract, resulting in Paramount Pictures There's Magic in Music (1940), finally brought prosperity to the Camp. At the end of the 1941 season, Pennington exchanged the deed to the property for a mortgage on the amount due. Two years later, the mortgage was retired, and in another year, the debentures paid. The Camp also expanded, purchasing Camp Penn Loch (the new Junior Camp for Boys) in 1942 and Interlochen (the new Junior Girls Camp) in 1944 from members of the Pennington family.

    Maddy's situation at the University of Michigan also improved. Early in 1940, Ruthven named Maddy acting director of Broadcasting Service, and soon afterward, the university took full control of the School of Music from the Musical Society. The new dean, Earl V. Moore, supported Maddy's work at the Camp. In 1942, when the contract with Illinois State University expired, the U. of M. assumed responsibility for the college division, and a year later, transferred its summer All-State high school program to Interlochen.

    After the reduction in Maddy's instructional broadcasts, he turned to the civic orchestra movement as a means of utilizing graduates of his programs. In the fall of 1939, he surveyed civic music directors throughout the country, and the following summer, he convened a meeting at the Camp to discuss "mutual problems." Within a year, he assumed leadership of the Ann Arbor Civic (Symphony) Orchestra, and working for the U. of M. Extension Service, formed the Michigan Civic Orchestra Association to promote mass orchestra performances.

    When America entered World War II, Governor Murray Van Wagoner appointed Maddy head of Michigan's Wartime Civic Music program to promote the war effort. As usual, Maddy based many of his activities at the Camp. In 1942, he held the organizing conference there, and the following year, a Clinic for civic music directors. Despite a battle with publishers over copyright, his group produced a patriotic songbook for general use. With university backing, he also led musical performances throughout the state and broadcast patriotic music over a network of Michigan stations fed by WJR in Detroit.

    Just as the outlook for Maddy and the Camp improved, they suffered a double blow. The introduction of wartime restrictions threatened Camp operations. Then, in July 1942, James Petrillo, the new head of the American Federation of Musicians, forced NBC to cancel its broadcasts from Interlochen (after thirteen years), citing a threat to union jobs. While the Camp struggled with rationing, travel restrictions, and the virtual disappearance of college-age men, Maddy worked to remove the limitations on his own and the Camp broadcasts.

    His efforts were two-fold: (1) to develop an alternative radio network, which ultimately, he decided, should use the new FM technology, and (2) to secure national legislation prohibiting union interference with student performances. NBC's cancellation of his instructional program convinced him that educators needed to create their own broadcasting network. In the late 1930's and early 1940's, he began soliciting support for such a project from state officials and leading educators.

    By early 1944, with FM technology presenting a viable alternative, he secured the backing of President Ruthven to travel throughout southern Michigan in support of his proposal. His efforts led to the formation of the Michigan Educational Radio Association to plan FM broadcasting in the state, and in 1945, he became chairman of the new Michigan Community Radio Commission. Only the lack of sufficient state funding prevented the immediate implementation of his plan, which eventually led the University of Michigan to establish its own FM station (1948).

    While Maddy labored to create an educational network, he succeeded in restoring Camp performances to the airwaves on a limited basis. In 1943, Michigan State College's new station (initially, AM) and Traverse City's WCTM resumed broadcasting from the Camp. As with his instructional programs, he also experimented with recordings to widen his audience. Eventually, they replaced live performances for broadcast, especially on the growing numbers of FM educational stations.

    In attempting to secure legislation against Petrillo, Maddy relied heavily on former Camper father and friend, Senator Arthur Vandenberg. The issue was complicated by union efforts to secure compensation for recordings played on commercial radio. By January 1945, when Maddy appeared on the verge of success, Petrillo retaliated by putting the Camp on the American Federation of Musicians' "Unfair List", banning members from teaching or performing at Interlochen. A year later, shortly before Congress enacted relief legislation, Maddy was dismissed from the union for violating the ban.

    While the Lea Act (1946) forbade restrictions on noncommercial broadcasts, Petrillo, through legal wrangling and skillful use of the "Unfair List," was able to circumvent it. In 1947, he reached a compromise with the leadership of the Music Educators National Conference. Under it, Petrillo waived all objections to performances by school groups, but by defining the Camp as a profit-making organization, he continued to limit its broadcasts. For over a decade, until Petrillo retired, the union ban remained in effect.

    Despite the limitation, the Camp prospered. Publicity about Petrillo's actions attracted both students and donors. During the height of the controversy, Camp enrollment doubled, and Maddy began obtaining significant financial contributions from business leaders. In 1944, retailer S.S. Kresge, Jr., made the first of several substantial gifts to the Camp. Other donors followed, often attracted by Maddy's stand against unionization or the Camp's principles of free competition.

    Although Maddy sought to end European dominance of American classical music, his success inevitably led him into international involvement. Early in 1940, he participated in the selection of a National Youth Administration orchestra to tour Latin America. Shortly thereafter, his old friend, Will Earhart, appointed him to the new State Department advisory committee on Inter-American Music. In his acceptance remarks, Maddy emphasized that music afforded the best means to overcome the language barrier. During the war, he encouraged Latin American music leaders to visit Interlochen and solicited support for their students as Campers. At the end of the conflict, he urged funding for a good will tour of Mexico by a high school orchestra.

    Like his friend Vandenberg, the war convinced Maddy of the need for international cooperation, and he became a supporter of the United Nations. In 1946, under his direction, the student council at Camp adopted a "Charter for Youth," which set forth principles of world unity. Two years later, he dedicated Kresge Auditorium, the Camp's new performance center, "to the promotion of World Friendship through the Universal Language of the Arts."

    When a mid-fifties thaw in the Cold War created opportunities for cultural exchange, Maddy lobbied the federal government for a Camp orchestra tour of Eastern Europe. Government, he argued, should aid groups of young amateurs, the world's future leaders, as it did the professionals. Having failed to secure federal assistance, he devoted the Camp's own resources to attracting foreign educators and students. Eventually, in 1964, he started the International (later World) Youth Symphony, composed of Campers from many nations, and two years later, arranged for the Camp to host the first meeting in America of the International Society of Music Educators.

    Maddy and the Camp emerged from World War II in excellent condition. While Maddy was secure at the university, the Camp was successful both financially and artistically. Because of the Camp's growing prosperity, Maddy was able to reduce his university appointment to part-time and devote even more of his energies to Interlochen's development.

    As the waiting list for Campers lengthened, he launched a vigorous program for new facilities and increased enrollment. In 1947, in order to better deal with the increased numbers, the Junior Division was split into Juniors (grades 3-6) and Intermediates (grades 7-9). Two years later, the All-State Piano Institute became the first of what were to be many post-camp programs for adults, and Maddy began to winterize new and existing buildings, so they could be used during colder weather. In the 1950's, loans from the University of Michigan helped considerably in Camp expansion.

    During the two decades following the war, the Camp grew from 155 buildings to 400, from 500 acres to 1,200, and from 900 Campers to 3,000. Although the union effectively barred professional musicians, music educators filled the void, and the Camp continued to produce first-rate alumni, who occupied leading positions with symphonies, opera and dance companies, and in other areas of contemporary life, both inside the arts and out.

    Amidst its growth, the Camp had to defeat threats from local boosters intent on developing the area economically. In 1953, Maddy thwarted a proposed state prison camp, and two years later, a federal air force base. The latter was vigorously promoted by Congresswoman Ruth Thompson of Whitehall, but Representatives Albert Engel of Lake City and Robert Griffin of Traverse City, both members of the Camp's Advisory Board, came to its defense.

    As the Camp grew, Maddy began to dream of making it a year-round institution for artistically talented youth. He envisioned a boarding high school and, eventually, a university that would provide training in both academic and artistic subjects. In planning the curriculum for the school, he relied heavily on Camp Advisory Board member, Martin ten Hoor, a former University of Michigan professor, now a dean at the University of Alabama.

    Nearing mandatory retirement from the university, Maddy initiated a major campaign to fulfill his dream. He added permanent staff, expanded facilities, and increased fund-raising efforts. On November 8, 1956, an alarmed Tremaine, in anticipation of his own imminent retirement as Camp Treasurer, wrote the Trustees a cautionary letter, based on his long experience with Camp finances. While he praised Maddy's vision and perseverance, he warned that Maddy's ambition needed to be restrained lest it put the institution in a precarious financial position as it had earlier.

    Despite Tremaine's admonition, Maddy proceeded with his expansion plans. Prior to 1956, the permanent staff consisted only of himself and a secretary (Peg Stace since 1941). He began the expansion by appointing Roger Jacobi as Camp Secretary and Director of Personnel (succeeded three years later by John A. Merrill). In 1957, he named George Wilson Vice President for Camp Operations, and in another year, Don Gillis, a composer and member of the musicians union, Director of Development. In part because of the Trustees' desire to groom a successor, Gillis received manifold responsibilities: to achieve a reconciliation with the new head of the musicians union, to direct the Camp's fledgling American Opera program, to oversee the Interlochen Press (which Maddy started in 1957 in hopes of generating income), to assist with expansion of the broadcast program, and perhaps most importantly, to aid in fund-raising.

    With Gillis' assistance, the dispute with the musicians union was quickly resolved, and in March 1959, the Camp was removed from its "Unfair List." Two years later, NBC broadcasts, now called "The Best from Interlochen," resumed on tape. The same summer, Maddy scored a major coup by enticing the young international award-winning pianist, Van Cliburn, to make the first of several appearances at Interlochen. Fund-raising went far less well, and in March 1961, Gillis submitted his resignation. Still, Maddy remained committed to converting the Camp into a year-round institution for youthful artists.

    In the fall of 1961, having formally retired from the university, Maddy moved the Camp office, over the objections of the permanent staff from Ann Arbor to Interlochen. Shortly thereafter, Norma Lee Browning Ogg, a Chicago Tribune writer and Camp publicist, introduced Maddy to Chicago insurance executive and philanthropist Clement Stone. The two hit it off immediately, and Stone agreed to fund Maddy's long-planned boarding school for high school students, the Interlochen Arts Academy. Almost immediately, Stone was appointed to the Board of Trustees, on which he remained a leading force for nearly two decades (becoming its chair upon Roscoe Bonisteel's death in July 1972).

    Within another year (1962), Maddy and the institutions he founded experienced more major triumphs. Van Cliburn again made a special appearance at the Camp, and in August, its dancers and orchestra performed for President and Mrs. John F. Kennedy on the White House lawn. The next month, the Interlochen Arts Academy, a major component of Maddy's dream, opened.

    The following year (1963) witnessed additional achievements. The "Today" Show made a special telecast from Interlochen; the institution's new FM station, WIAA, went on the air, and the Browning biography of Maddy appeared. In another year, the University of Michigan awarded Maddy an honorary doctorate. At the commencement ceremony, his fellow honoree, President Lyndon Baines Johnson, announced plans for a "Great Society." Shortly thereafter, the President's daughter, Lucy Baines Johnson, appeared at Interlochen as narrator for the National Youth Symphony performance of Peter and the Wolf, which Van Cliburn conducted. The summer ended triumphantly with the first Interlochen Arts Festival, featuring the new World Youth Symphony and the Philadelphia Orchestra led by Eugene Ormandy.

    On April 18, 1966, as Interlochen prepared for the opening session of the International Society of Music Educators (whose participants included Norman Dello Joyo, Dimitri Kabalevsky, and Zoltan Kodaly), Joseph Maddy died suddenly. Until a successor could be chosen, the Board of Trustees appointed an Administrative Committee to oversee operations. Chaired by John Merrill (Secretary of the Board), its members included George Wilson (Director of the Camp), Thor Johnson (Director of the Academy), Clare Burns (Treasurer of Interlochen), and Margaret Stace (Maddy's long-time secretary, now Assistant to the President).

    Within a year, the Board selected national classical music broadcaster Karl Haas as Maddy's successor. Haas had worked with Maddy for several years as head of Interlochen's Advisory Board, which helped raise private funds. He also served as chair (with Maddy a member) of the Michigan Cultural Commission's music committee and the State Council for the Arts (created by Governor George Romney), which provided state assistance to Interlochen. In addition, the European born and educated Haas offered the strong international ties which Interlochen valued.

    As president, Haas announced his major goal would be to "fulfill Joe Maddy's dreams," by securing funding for the proposed College of the Arts. To assist him, he named John Merrill Vice President for Administrative Affairs and Development. In 1968, a new institutional name, "The Interlochen Center for the Arts," was adopted to cover the Camp, Academy, and proposed college.

    Despite great efforts, fund raising failed to fulfill expectations. The relationship between the Camp and Academy remained strained, and some Board members grew dissatisfied with student behavior (particularly at the Academy, where the new youth culture took hold). Changing tastes in music, especially among the young, and in family vacation patterns as well as the development of competing institutions, such as the Blue Lake Fine Arts Camp in Michigan (which opened the summer following Maddy's death), threatened Interlochen's unchallenged preeminence. In November 1969, Merrill announced his acceptance of a development position at Northwestern University, and four months later, after a board meeting at which he outlined his proposals for Interlochen's future, Haas submitted his resignation.

    Until a permanent head could be chosen, George Wilson, who was nearing retirement as Camp director, agreed to serve as Interim President. A year later (1971), the Board named music educator and long-time Interlochen administrator and instructor Roger Jacobi to head the institution. Following his resignation in 1959 as Board secretary, Jacobi continued to teach summers at the Camp while holding a joint appointment with the University of Michigan and Ann Arbor public schools, much as Maddy once did. Then, in 1968, Jacobi became Assistant Dean of the Music School, in which capacity he served as Director of the Camp's University Division (Allen Britton and Paul Boylan, who held the post earlier and later, eventually became Deans of the Music School).

    During Jacobi's eighteen year presidency, he defused tensions inherent in the transition from the Maddy era and put the institution on a solid financial basis. Physical facilities were significantly improved, and for the first time, a major endowment was established. Interlochen continued to attract leading artists and to produce high quality graduates. It also served as the model (with George Wilson's assistance) for a similar music camp in the Philippines, and in 1975, hosted a visit by President and Mrs. Gerald Ford. On the eve of Jacobi's retirement, he discontinued (after the 1988 season) the University Division, an important tie to the University of Michigan for thirty-seven years.

    Jacobi's advance announcement of his intention to retire at age sixty-five gave the Trustees ample time to prepare for an orderly transition. In 1989, they chose Dean Boal, a distinguished college-level teacher and administrator and public broadcasting executive, to became the first Interlochen president who neither knew nor worked with Maddy. Prior to coming for his selection interview, Boal had only visited Interlochen once, and then, just briefly.

    Shortly after his appointment (1989), the National Music Camp was renamed "the Interlochen Arts Camp," reflecting its incorporation into the larger institution and expansion beyond music. Despite a recession-induced cut in state funding, Boal kept the operation financially sound and oversaw the growth of the Academy and Camp to record enrollments. He also increased the scope of summer professional offerings, which attracted growing numbers of outsiders to the Camp. Like all of Maddy's successors, he faced the tensions inherent in trying to balance needed changes with valued traditions.

    Early in 1994, Boal announced his intention of taking early retirement as soon as a successor could be chosen. A year later, the trustees named youth educator Richard F. Odell, headmaster of the Chicago Academy for the Arts, to lead Interlochen into the twenty-first century. Like Boal, Odell lacked previous association with Maddy and the institution he founded.

    On becoming president, Odell spent much of his first year meeting with Interlochen supporters both on campus and throughout the country in order to define the institution's future goals. Then, he announced a major fund-raising program to renovate facilities and increase endowment, adding that he hoped to make Interochen better known both in its home area and beyond. In fact, during Odell's tenure, the camp was named one of the top ten camps in the country and the World Youth Symphony Orchestra performed in the Cultural Olympiad at the 1996 Olympics in Atlanta, GA.

    Odell was succeeded by Edward J. Downing. During Downing's time in office, Interlochen merged with The Pathfinder School, a local independent day school for pre-school through eighth-grade students. Downing retired in 2002 and was succeeded by Jeffery S. Kimpton in 2003.

    + + Summary Contents List + Chronological, mainly 1920-1966 (boxes 1-15) Joseph Maddy (box 1)Camp History (boxes 1-2) Histories and anniversariesOrchestra Camp ColonyOther Music campsNational High School OrchestraNational Music CampPennington family Camp records, 1935-1945 (boxes 3-12)Camp records, 1945-1966 (boxes 12-13)Special correspondence, mainly 1928-1966 (boxes 13-15) + Subject, (boxes 15-46 and 87-91) mainly 1928-1989 (boxes 15-46) Joseph Maddy (boxes 15-25) AppearancesBroadcastingCivic MusicMusic educationPublications, speeches, and writingsUniversity of Michigan Giddings and Tremaine (boxes 25-26)Interlochen (Camp and Academy) (boxes 26-41) AlumniBroadcastingCampusFinancialFund raisingInterlochen Arts FestivalInterlochen PressInternationalInternational Society of Music EducatorsMichigan, State ofOrganizationsPetrillo ControversyPublicity/PromotionSpecial EventsTraverse CityU.S. GovernmentUniversity of Michigan Camp (boxes 41-44)Academy (boxes 44-46)College (box 46) 1930-2003, Later Acquisition (boxes 87-91) Alumni-Grainger, Percy (box 87)Henethorne, Margaret-Federation of Music Clubs, WI (box 88)Federation of Music Clubs, 1959-News Releases, Chron. (box 89)News Releases, Alpha-Special Events, Jacobi Dinner (box 90)Special Events, Milliken Dinner-Strategic Planning Update (box 91) + Post-Maddy Administrators; 1958-recent (boxes 46-56, 66 and 85-86) Donald Gillis (boxes 46-47)John Merrill (box 47)Margaret Stace (box 47)George Wilson (boxes 47-48)Karl Haas (boxes 48-49)Roger Jacobi (boxes 50-56)Boal (boxes 66-67 and 85-86)Szady (box 67)Odell (box 86 and 67)Downing (box 86) + Boards, 1928-1989 (boxes 56-64) Board of Advisors (box 56)Board of Control (box 57)Board of Trustees (boxes 57-64) + Previously Closed Files (box 65) + Recent Leaders, 1989-1995 (boxes 66-66) + Printed, mainly 1928-1989 (boxes 68-72 and 81-83) + Scrapbooks, 1928-1979 (with gaps) + Visual Materials (boxes 73-79) + Sound Recordings (boxes 79-80 and 84) + + +

    The records of the Interlochen Center for the Arts were received in installments over many years. They came from several sources: the Camp office in Ann Arbor, the Tremaine family, an alumni leader, and various administrators at Interlochen, but the greatest proportion was assembled from Maddy's home and Interlochen offices, after his death, by Margaret (Peg) Stace, his long-time assistant.

    The Camp files for 1935-1945 comprise the major portion received in their original order, and they were in disarray because of frequent changes in Camp secretaries and the practice of moving the office (along with relevant files) from Ann Arbor to Interlochen and back each summer. Also, Maddy kept many items of a personal and confidential nature at home.

    In processing the records, an attempt was made both to preserve the original order, where ascertainable, and to highlight major subjects and individuals, some of whose importance only became apparent with the passage of time. A separate name index is available for major correspondents. Where extant, explanatory historical and background information has been placed at the front of records categories. Because of Maddy's influence on the development of Interlochen both past and present, his correspondence with later administrators has been included if practical, under "Administration" in their papers.

    The surviving records have been divided into nine series: Chronological, Subject, Post-Maddy Administrators, Boards, Closed, Printed, Visual Materials, Sound Recordings, and Scrapbooks. The Chronological focuses on Maddy and the Camp until 1966 while the Subject, is composed of two subseries. The first, mainly 1928-1989, though also heavily relating to Maddy, also includes much on developments through the '90s. The second subseries, 1930-2003, Later Acquisition represents a group of files that were acquired in 2005. Many files pertain to the early camp and Joesph Maddy. The Post-Maddy Administrators series begins in the late 1950's when Maddy expanded the staff in anticipation of making Interlochen a year-round institution and continues unto the most recent accession. Boards (governing bodies) starts with the Camp's founding in 1928 and ends in 1989 while the Closed series covers the Maddy, Haas, and Wilson administrations through 1971. Printed offers coverage to the present but is more complete for the early years through the 1980's. While the Visual Materials and Sound Recordings series extend from the 1920's into the 1980's, it offers best coverage from 1924 to 1942 Scrapbooks, with gaps in the early years, documents both Maddy and the Camp, beginning with the National High School Orchestra and ending with the Camp's 50th anniversary celebration in 1978.

    + +

    + +

    + Interlochen (Mich.) + Music -- Michigan -- Interlochen. + Musicians -- Michigan -- Interlochen. + Radio and music -- Michigan. + Radio broadcasting -- Michigan -- Interlochen. + Music camps -- Michigan -- Interlochen. + Interlochen (Mich.) + Music -- Michigan -- Interlochen. + Music camps -- Michigan -- Interlochen. + Musicians -- Michigan -- Interlochen. + Motion pictures. + Photographs. + Slides. + Scrapbooks. + Sound recordings. + American Federation of Musicians. + Interlochen Arts Academy (Interlochen, Mich.) + Interlochen Arts Camp. + Interlochen Center for the Arts. + National Music Camp. + Petrillo, James C. (James Caesar), 1892-1984. + Maddy, Joseph E. (Joseph Edgar), 1891-1966. + National Music Camp. + Interlochen Center for the Arts. + National Music Camp. + Brucker, Wilber Marion, 1894-1968. + Casals, Pablo, 1876-1973. + Charters, W. W. (Werrett Wallace), 1875-1952. + Dow, Alden B., 1904-1983. + Dow, Herbert Henry, 1866-1930. + Dunham, Franklin, 1892- + Dykema, Peter W. (Peter William), 1873-1951. + Earhart, Will. + Fennell, Frederick. + Gordon, Edgar B. + Grainger, Percy, 1882-1961. + Grofe, Ferde, 1892-1972. + Hanson, Howard, 1896-1981. + Heifetz, Jascha, 1901-1987. + Insull, Samuel, 1859-1938. + Kresge, Stanley Sebastian, 1900- + Maazel, Lorin, 1930-2014. + Maddy, Joseph E. (Joseph Edgar), 1891-1966. + Ormandy, Eugene, 1899-1985. + Sibelius, Jean, 1865-1957. + Vandenberg, Arthur H. (Arthur Hendrick), 1884-1951. + Waller, Judith C. (Judith Cary), 1889-1973. + Whiteman, Paul, 1890-1967. + Maddy, Joseph E. (Joseph Edgar), 1891-1966. + Johnson, Thor. + Wilson, George. +
    + Chronological1920-1966

    The Chronological series emphasizes Maddy and the Camp until 1966. It is divided into several subseries: Maddy biography, Camp history, Camp files, 1935-1945, Camp files, 1945-1966, and Special correspondence. The first two subseries provide documentation for the earliest years. The series is supplemented by the Subject series which is especially useful for Camp operations and the founding of the Academy.

    Maddy biographical records

    The Maddy biographical records subseries contains information on his life, including events before the Camp was founded. It encompasses overview materials, files on Norma Lee Browning's Joe Maddy of Interlochen (published in 1963), information about his death and funeral, chronologically organized files on his pre-Camp career, records of his honors and awards, and documentation on his aluminum violin. Researchers should also check the Maddy section of the Subject series, his oral reminiscences in the Sound Recordings series, and the obituaries and condolences to be found in the Scrapbooks.

    GeneralSketches and correspondence1932-19811Joe Maddy of Interlochen1961-1965Production and promotion1961-19651Reviews1963-19641Alumni responses19631Family and youthGenealogy and family history1935-19661Mother's poetry (Marry E. Maddy)18981935undated1Wellington, Kan., and early yearsPapers1936-19871Scrapbook1907-19091Early careerMinneapolis Symphony1910-1914Papers191519641Programs1913-19141Wellington, Kan., conductor19151Wichita Falls, Texas1915-19161Rochester, N.Y.1918-19201Richmond, Ind.1920-1924Papers1922-19691Programs and class syllabi1921-19241High school yearbooks192119221Scrapbook of Marcia Weissgerber Palmer1923-19241

    (photocopies)

    Indiana All-State Orchestra1922-19241Music Festival papers19441Orchestra letters1947-19531Reunion papers19651

    (See also Box 40)

    Ann Arbor, Mich.1924-1930High School1924-19291University School of Music1926-19301
    HonorsAwards and citationsAmerican Education Award (NEA)19591Finlandia Foundation19621Horatio Alger Award19651Michigan Senate resolution19651Miscellaneous1930-19671Honorary degreesCincinnati Conservatory of Music19301University of Rochester19591Baldwin-Wallace University19591Franklin College19641Hillsdale College19641University of Michigan19641Aluminum violin1933-19701Death and funeral1966Obituaries and memorials1966-19701Funeral arrangements19661
    Camp History papers

    Maddy biographical records is supplemented by Camp History subseries. The latter contains histories of Interlochen, records of the fiftieth anniversary celebration, materials on the National High School Orchestra, surviving documents from the early years of the Camp, 1927-1935, and records on the Pennington family, from whom the Camp was purchased. The information is supplemented by the oral reminiscences of Maddy and Wilson in the Sound Recordings series. Information on the early history of the Academy can be found in the Subject series.

    Histories and anniversariesMiscellaneous1930-19861Maddy manuscript19361Maddy ms. and printed2 folders19401Maddy ms. and printed2 folders19411Printed1946225th anniversary, printed19522Maddy ms.19552Tremaine financial history mss.1956230th anniversary brochure, America's Dream of Youth by Leonard de Vries19572Oral history transcription of Maddy, Tremaine, and Greenleaf emphasizing early financial history19582Maddy mimeographed19592Maddy mimeographed and letter19612Michigan Historical Commission marker papers19622Neil A. Miller, U. of M. thesis19652Yearly "highlights" and press releases1967250th anniversary1977

    (see also Post-Maddy Administrators-Jacobi-Camp)

    50th Celebration Committee1974-19762Publications"Interlochen History at a Glance" (by year)2Interlochen, An Unfinished Symphony by Gwen Frostic2The First Fifty Years2Commemorative stampDealings with Post Office1974-19782First Day of issue ceremony19782
    Early history of the Dance Department Hildegarde Lewis ms.1940-19452
    Orchestra Camp Colony (private cottages)History (1968) and plats2Correspondence1936-19442Papers1958-19612Other music campsCorrespondence1932-19712Printed1930-19642Australia194819762Louisiana1941-19792National High School Orchestra (NHSO)Miscellaneous NHSO histories and correspondence2School orchestra movement2NHSO1926Programs and article2Bulletins and articles saved by Marcia Weissgerber Palmer (photocopies)2NHSO1927Programs and announcements2Materials of Marcia Weissgerber Palmer (photocopies)2NHSO printed19282NHSO1930Manuscripts2Programs2Published articles2NHSO, 1938-program (revival for centennial of music education in America)2National Music Camp8 folders1927-19342January-August1935Camp-operations2Camper survey2Maddy-Giddings-Tremaine communications2National Music Clinic2Scherzo ad, American Book Company2Pennington family, circa1900-1968History, circa1900-19272Purchase of Pennington property1931-19322Correspondence1939-196821939-1940219412194221943219442194521946-19682Camp Penn Loch, printed1931-19412Camp Interlochen, printed1933-19432
    Camp files1935-1945

    Camp files, 1935-1945, consists mainly of Maddy's correspondence concerning the administration of the Camp, as maintained by Maddy and whoever happened to be his secretary at the time (his first wife Marie until 1937, John M. Lewis until 1938, Helen Hollingsworth until 1941, and Margaret "Peg" Stace thereafter). Its organization reflects the various filing systems of their creators and the seasonal nature of the Camp (with the office being located in Ann Arbor most of the year and then, transferred to Interlochen for the summer). A good overview of decisions regarding the Camp can be found in the correspondence of Giddings and Tremaine. Items of a personal nature on Maddy are usually filed under his name.

    Matters covered in this subseries involve students, parents, staff, faculty, and guest conductors as well as the courses and programs offered, acquisition of instruments and music (including relationships with manufacturers and publishers), maintenance and improvement of facilities, and use of advertising and promotion. Documentation is provided on the introduction of instruction in dance, drama, broadcasting, and art and in such instruments as the saxophone and accordion. Information is also supplied on Maddy's dispute with the publishers association on gifts of music to educational institutions.

    Problems of the Depression are highlighted along with the wartime difficulties of operating the Camp with government controls and limited enrollments (especially the shortage of college age males). Camper and former Camper correspondence provides personal experiences with economic hardship and military service. Pre-war faculty applications reflect the immigration to America of European musicians, many of them Jewish, while wartime files refer to the substitution of women musicians for men, including the development of "all girl" orchestras.

    1935-1936A-general correspondence3Advertising: M. E. Symonds3American Bandmasters' Association convention3Applications: faculty and staff3B-general correspondence3Balliett, Melvin3Boutwell, William-re CCC radio3C-general correspondence3Camp-operations3Campers and Parents3Caretaker-re construction and maintenance3D-general correspondence3Damrosch Choir3Delta Omicron convention3Dietician-re food and staff3E-general correspondence3Eastman School-re possible affiliation3Equipment, apparel, etc.3F-general correspondence3Faculty-contracts3Faculty-impressions of Camp3Fischer, Carl-publisher3G-general correspondence3H-general correspondence3Illinois State University-Emma Knudson3Julliard-scholarship aid3K-general correspondence3L-general correspondence3M-general correspondence3Maddy-personal, including Marie's letters3Martin Band Instruments-re saxophones3Music Guild Productions-re instructional movie3N-general correspondence3O-general correspondence3P-general correspondence3Part time workers3Printing Products Corporation3Publicity3R-general correspondence3Royalties (Camp)3S-general correspondence3Scherzo-yearbook ads3Staff3T-general correspondence3Traverse City Chamber of Commerce3TremaineAugust-November 19353December 1935-February 14, 19363February 15-June, 19363V-general correspondence3W-general correspondence3Wurlitzer, Rudolph Company3Camp1936A-L-general correspondence3M-Z-general correspondence3American Bandmasters' Association convention3Belstrom, Chester (Camp director)3Camp-preparations3Camp closing-procedures3Camp schedules3Damrosch Choir3Equipment-apparel3Faculty-general3Fischer, Carl, Inc.3Hotel3Illinois State University3Library3Medical3Music Publishers Association3National Music Clinic-contest lists3Planning-Camp for19373Programs-mimeographed and posters3PublicityGeneral3Movies (commercial)3Press releases3Rosters-Campers3Saxophone instruction-Fred Holtz of Martin Band Instrument Co.3Scherzo-yearbook music ads3Scholarship awards3Tremaine3VisitorsGeneral3Civilian Conservation Corps31936-1937A-general correspondence4Accordion instruction4Advertising4B-general correspondence4C-general correspondence4Camp-operations4Campers, Parents, and Friends4Caretaker (Bruce Maynard)4Civilian Conservation Corps4D-general correspondence4E-general correspondence4Equipment4F-general correspondence4FacultyApplications4Contracts4Correspondence4Fischer, Carl Inc.4Fischer, J. & Bro.-re Afro-American Symphony4Foster, Stephen Memorial Foundation4G-general correspondence4Giddings4Gifts and scholarships4H-general correspondence4I-general correspondence4Illinois State University4J-general correspondence4K-general correspondence4L-general correspondence4Library4M-general correspondence4Maddy-personal4Music Guild Productions-re instructional movie4Muskegon Centennial Concert4N-general correspondence4National Education Association4P-general correspondence4Pi Lambda Theta convention4Piano tuning (J. Clark Rhodes)4Publicity/PromotionCorrespondence4Papers4R-general correspondence4Royalties-Camp4S-general correspondence4Saxophone instruction4Staff4T-general correspondence4Tremaine4W-general correspondence4Camp1937A-Z-general correspondence4Camp-courses4Camp-schedules4Campers and Parents4Faculty-papers4Full time staff4Hammond Organ Co.4Insurance analysis (by Stock agency)4Instruments and equipment4Klein, Maynard4Library4Maddy-personal recommendations4Muskegon Centennial Concert4Part time staff4Planning for Camp4Programs4Prospect form letters4PublicityPrint4Movie4Publishers4Rosters-Camper and staff4Scholarships4Traverse City4Tremaine4Visitors41937-1938A-Z-general correspondence4Accordion instruction4American Book Co.-re Scherzo ad4Belstrom, Chester (Camp director)4Boutwell, William-re Radio Workshop4Camp-operations4Campers and Parents4Equipment4Faculty4Giddings4Hammond Organ Co.4Hollingsworth, Helen (Camp secretary)4Hotel-operations/staff4Illinois State University4Lewis, John (Camp secretary)4Library5Maddy-personalDivorce5Indiana U. deanship application5Miscellaneous5Traverse City Cannery5Prospects/inquiries-re Campers5PublicityPrint5Movie5Publishers-re. music donations5Recorder (instrument) instruction5Reunion-Camper luncheon at MENC convention5Royalties-Camp5Saxophone instruction5Scherzo advertisingFuture5ScholarshipsGeneral5National High School Orchestra members5Staff5Tremaine5World's Fair (Olin Downes)5Camp1938A-L, general correspondence5M-Z-general correspondence5Accordion instruction (Clark Fortner)5Art instruction (Meinzinger Art School)5Camp-operations5Camp book5Campers and Parents5Civilian Conservation Corps5Faculty5Fourth of July performance5Guest conductors5Hammond Organ Co.5Hotel (Helen McBride)5Illinois State University5Library-re instruments, music, etc.5Maddy-personal5Medical reports5Planning-recommendations for Camp5Publicity5R.C.A.-re. recordings5Rosters-girls camp directory5ScherzoAnnouncement-end of advertising5List of advertisers1928-19365Scholarships and other giftsDonations-Camp5Awards-CampGeneral5Saxophone5College and conservatory awards5StaffGeneral5Full time workers5Part time workers5Tremaine5Visitors5World's Fair51938-1939A-Z-general correspondence5Accordion instruction5Advertising and promotions5Arnaud, William E.-copyright assignment5Bache/Stefany-possible gift5Belstrom, C. E. (Camp director)5Boutwell, William (Radio workshop)5Camper Alumni and Parents5Equipment5FacultyContracts5Correspondence5Giddings5Hammond Organ5Hollingsworth/Maddy communications5Hotel (Ben Atherton, manager)5Insurance (G. W. Power)5Illinois State University5Maddy-personal5Northwestern University-possible affiliation5Pre-camp planning5ProspectsCollege division5High school division5PublicityGeneral5Luncheons to promote Camp5Radio Corporation of America-re recording equipment5Royalties-Camp5ScholarshipsGeneral5National Association of Broadcasters5Saxophone5Schramm, Rudolph (possible Music Teachers National Association talk)5Sousa Memorial5Schwarz, Boris and Joseph (faculty)5Southland Symphony5Staff correspondence5Tonette (new instrument)5Tremaine6World's FairFinancialState legislature and other6Parents6Railroad transportation6Camp1939A-Z-general correspondence6Camp-operations6Campers and Parents6La Prade, Ernest (guest conductor)6Library6Publicity6Radio workshop-scripts6Scholarships6Store (Camp)6Traverse City6Tremaine6United Artists-re Jasha Heifitz movie6World's FairArrangements6Performances6Newspaper articles61939-1940A-Z-general correspondence6Advertising/promotion6Art (Meinzinger Art School)6Belstrom, C. E. (Camp director)6Boutwell, W. D. (radio workshop)6Camp-operations6Caretaker (Cliff Hiatt)6Carnegie Foundation music set6Choir (Noble Cain)6Clarinets, Mezzo6Conventions and meetings at Interlochen6Dance (Hildegard Lewis and Francis Wright)6Dietician (Anne Haggerty)6Drama (Douglas Ferguson)6FacultyApplications6Correspondence, A-M6Correspondence, N-Z6Giddings6Guest conductors6Hammond Organ Co.6Hollingsworth/Maddy correspondence6Hotel (Ben Atherton)6Illinois State University6Lecturers, requests from6Library (Norman Goldberg)6Maddy-personalGeneral6Michigan State College job application6Morrow, Veda (American Woman's Association)6Planning-CampOpening6Schedules6PublicityPrint6Movie-CampProduction (Charles T. Chapman)6Showings6Royalties-Camp6Scholarships6Schwarz, Boris (Faculty-violin)6Southland Symphony6Staff6Traverse City Chamber of Commerce6Tremaine6West Michigan Tourist Association6World's Fair6Wurlitzer, Rudolph Co.6Camp1940A-Z-general correspondence7Agent contracts7Alumni week7Camp-operations7Campers and Parents7Choir7College Division fees7Concert receipts7Delta Omicron medal7Dietician (Anne Haggerty)7Equipment7Giddings7Grant, Allen (Southland Symphony)7Guest conductors7Insurance for Campers7Library (publishers)7Maddy-notes7PublicityCampers7Saturday Evening Post article7Movie-Camp (Chapman)7Prospects for19417Radio workshop7Regulations re uniforms7Report forms-high school campers7ScholarshipsGeneral7Ticket sales: Benzonia, Beulah, Cadillac7Scripts: Bowl programs continuity7Tremaine71940-1941A-H-general correspondence7J-Z-general correspondence7Advertising (N. W. Ayer & Son)7Art7Belstrom, C. E. (Camp supt.-resignation)7Camp-operations7Campers-former: correspondence7Caretaker (C. G. Hiatt)7College Division7Crescendo-replies on autographed copies7Dance (Hildegard Lewis)7Dietician (Viola Walberg)7Drama7Equipment7FacultyApplications7Correspondence7Giddings7Grant, Allen (Southland Symphony)7Form letters re Camp7Hopping family (U.S. Attorney, Camper, and parents)7Illinois State University7Insurance on Campers (Gnau)7Library7Loomis, Edwin C. (opera composer)7MacGowan, Leroy (Boys Camp director)7Maddy-personal7Norman, Francis (Girls Camp director)7Pere Marquette Railroad7Phi Sigma Nu convention7Private lessons for non-Campers7Publicity and PromotionGeneral7Movie-Camp (Chapman)7Publishers7Radio workshop7Recommendations for individuals7Recordings7Requests, miscellaneous7Royalties-Camp7Saxophone7Scholarships71940-1941StaffApplications7Full time-contracts7Part time (student)7Store-Camp7Tremaine2 folders7Voice7Wurlitzer (accordion)7Camp1941A-Z-general correspondence7Alumni-rates7Boys Camp7Camp-operations7Camper parent complaints7Carnegie Corporation7College Division7Conventions and meetings7Cranks and oddities7Faculty7Frankfort (Michigan) concert7Girls Camp7Gubernatorial letters-re state flags7Guest conductors7Guitar teachers-re possible visit7High school band performances8Illinois State University8Insurance for Campers (Gnau)8Interlochen Every Week (newsletter)8Inventories (Hotel and Medical)8Klein, Maynard8Library (music and instruments)8Mackinac Island Festival re appearance8Maddy-personal8N.R.A.-re rifle instruction8National Youth Administration-Michigan orchestra, Camp project8Orchestra Camp (All State and Region 3)-re cancellation8Programs-Camp performances8Publicity releases8Questionnaires-on how learned of CampHigh School Boys8High School Girls8College Division8Radio Department8Recommendations for 1942-Camp8Recommendations requested-individuals8Recording (Stock broadcast)8Reports on Camp8Rosters for Girls Camp8Royalties8Scholarships8Scripts for performancesBand (Radio Department)8College orchestra8Dance8Faculty8High school orchestra8Student8Season passes8Staff meeting8Store-Camp8Supplies8Tourist associations8Traverse City-Cherry Festival8Vandenbosch, T. C. (composer)81941-1942A-Z-general correspondence8Accordion instruction8Accounts receivable8Advertising8Awards: Sinfonia and Delta Omicron-outstanding boy and girl Camper8Boys Camp8Buschert, Mrs. Helen-re scholarship concert8Camp-operations8Camp-weekly magazine (discontinued)8Camp Penn Loch (Junior Boys)8Campers correspondencePast summer8Previous8Caretaker (Hiatt and Curtiss)8College Division inquiries8Dietitian-supplies and workers8FacultyApplications8Biographies8Correspondence8Foto-Lith Co.-re printing8Giddings8Girls Camp8Guest conductors8Hammond Organ Company8Hoffmaster, Maud (art)8Hotel8Illinois All State Orchestra8Illinois State University8Insurance8Kjos, Neil (publisher and distributor)8Library8MacGowan, William (Camp director)8Maddy-personal8Medical-staff8Milwaukee luncheon (Wesley and Weisbrod)8National Youth Administration8Pere Marquette Railway8Photography8Prospects-Campers8PublicityPrint (James Haswell)8Movie (Chapman)8Radio Department8Royalties-Camp8Scholarships8Stace/Maddy correspondence8Southland Symphony8StaffCorrespondence-job offers8Full time8Part time8Store-Camp8Supplies for Camp8Swensen, Grace-Camper/staff8Tremaine2 folders8Traverse City Chamber of Commerce8Visitors-invitations8Camp1942A-Z-general correspondence9Alumni correspondence9Awards-Sinfonia and Delta Omicron9Buschert, Helen9Camp-operations9Caretaker (Curtiss dismissal)9Chicago concert proposal9Grinnell Bros. (organ dedication)9Guest conductors9Horton, Lewis Henry (composer)9Hotel (conventions)9Library (instruments and music)9Maddy-personal9Medical (report)9Minutes and reports9Private lessons for non-Campers9Programs (Interlochen Bowl)9Publicity (James Haswell)9Broadcast ban appeals9General9Press releases9Questionnaires-on how learned of CampSummary9Individual responses9Radio Department-guest panelists9Rationing9Recording equipment9Scholarships9Season passes9Supplies9Tremaine9Upper Peninsula Development Bureau91942-1943A-Z-general correspondence9Advertising9Awards-Sinfonia and Delta Omicron9Camp Penn Loch (Junior Boys-W. L. Gunnerson, director)9CampersPast summer9Previous9Camper ParentsPast summer9Previous9Caretaker (H. O. Steele)9Dietitian (Viola Walberg)9FacultyApplications9Correspondence-alpha3 folders9Giddings9Gifts to Camp9Guest Conductors9Harper, Mrs. Philip (parent and supporter)9Hotel (Dougal Munro)9LibraryPersonnel (Norman Goldberg)9Music and instruments (incl. publishers)9Maddy-personal9Pere Marquette Railway9Photography9Publicity/PromotionGeneral9Movie (Chapman)9Publications9Radio workshop9Rationing9Recommendations for Camp9Recommendations for individuals9Recordings9Requests-Miscellaneous9Robbins, J.J.-re Ferde Grofe9Robbins Music Corporation9Royalties-Camp9Scholarships9Stace/Maddy correspondence9StaffApplications9Correspondence9Supplies9Tourist and Resort Associations9Township taxes9Traverse City Chamber of Commerce9Tremaine2 folders9Camp1943A-Z-general correspondence10Awards10Camp-operations10Camp Penn Loch (Junior Division-boys)10Campers ParentsGeneral10Dismissals2 folders10College Division10Faculty10Guest conductors10Instruments, registration of10Library-cataloguing plans10Maddy notes10Medical10Office of Price Administration10Operetta10Programs10PublicityCorrespondence10Press releases10Movie (Chapman)10Radio department10Rationing10Robbins Music Corporation10Sailboat christening10Scholarships10Sectional lists10Scripts (Radio)Bowl concerts10"For Other Men to Follow"10Stace/Maddy10Staff meetings and rosters10Supplies-photographic10Tremaine10University of Michigan Clinics101943-1944A-Z-general correspondence10Advertising10Camp-operations10Camp Interlochen (Junior Girls-Betty Porter, director)10Camp Penn Loch (Junior Boys-Wilbur Gunneson, director)10Camper behavior10CampersPast summer10PreviousCivilian10Military10Campers Parents10Caretaker-Munro2 folders10Carnegie Foundation10Delta Omicron10Dietitian (Gladys Lahym)10FacultyBiographical10Correspondence, A-Z3 folders10Giddings10Guest conductors10Hoffmaster, Maud (art)10Klein, Maynard (choral)10Langenus, Gustave (clarinet)10Lewis, Hildegarde (dance)10Library (instruments and music)10MacGowan, Leroy (Camp director)10Maddy-personal10Moon, Debra (Girls Camp director)10Nesbit scholarship10Pere Marquette Railway10Photography School10Physical education (Margaret Bell)10Printing10PublicityPrint10Movie (Chapman)10Radio Workshop10Rationing10Robbins, J. J.10Royalties-Camp10Scholarships10Silfies, Rollie (faculty and Michigan School Band and Orchestra Association)10Stace/Maddy10StaffApplicationsFull time10Part time10Correspondence, A-Z10Supplies10Traverse City Chamber of Commerce10Tremaine2 folders10University of Michigan Clinics10War Production Board-new kitchen10Welke, Walter (faculty and Sinfonia)10West Michigan Tourist and Resort Association10Western Union-service10Women in Symphonies10Camp1944A-Z-general correspondence11Awards11Camp-operations11Camp Interlochen (Junior girls)11Camp Penn Loch (Junior boys)11Campers, Former11Faculty11Guest conductors11Hoffmaster, Maud (art)11Hotel11Junior Divisions (Interlochen and Penn Loch)Reports11Library11Maddy-personal11Michigan Bell Telephone-toll station11Photography workshop11Programs11PublicityPrint (Towe)Correspondence11Stories11Movie (Chapman)11QuestionnairesHigh School Girls11College11Rationing11Recommendations for194511Robbins, J. J.11Scholarships11Scripts (Radio)Bowl Show11Sunday Services11Class papers11Seating arrangements (rankings)11Sectionals11Stace-notes11StaffMeetings and rosters11Part time11Supplies11Taxes-appeal of Michigan sales on Junior Divisions11Tremaine11University of Michigan Clinic111944-1945A-Z-general correspondence11Accordion instruction-discontinuance11Accounts receivable11Advertising11Applications-waiting list11Awards11British Broadcasting Corp. program11Bus transportation11Camp-operations11Camp bulletin board item on conductors11Camp Interlochen (Junior Girls-Porter, director)11Camp Penn Loch (Junior Boys-Gunnerson,director)11CampersPast summerGeneral11Survey of regular music instructors11Previous11Campers parentsPast summer11Previous11Caretaker/Plant superintendent (Munro and Weinberg)11College Division prospects11Dietitian (Lahyn and Walberg)11FacultyApplications/personnel suggestions11Correspondence, A-Z2 folders11Giddings11Gifts11Guest conductors11Hoffmaster, Maud (art-gift building)11Hotel11Junior Division (Interlochen and Penn Loch)General11Brown, Libushka (faculty and parent)11Kellogg Foundation11Kitchen-design of11Library-music and instruments11MacGowen, Leroy (Camp director)11MaddyNotes11Personal correspondence11Medical11National Education Association newsletter11Nesbit Scholarship11Office of Defense Transportation11Office of Price Administration11Pere Marquette Railway11Photography11Prelude-letters for publication11Printing11PublicityCorrespondenceMaddy and Stace11Ogg, Norma Lee Browning11Stories11Movie (Chapman)11Radio Workshop11Robbins, J. J.11Robbins Music Co.11Royalties-Camp11Scholarships11Stace/Maddy11StaffApplications11Correspondence11Tremaine11University of Michigan clinics11War Manpower Commission11War Production Board11Women musicians-requests for11Camp1945A-Z-general correspondence12Announcers and narrators for programs12Awards12Bus transportation12Camp-operations12Campers12Campers parentsGeneral12Delacourt, Mrs. George12Campers, Former (largely servicemen)12Faculty12Folk Dance-Henry Ford Dancers12Gifts12Governors' letters (Mackinac Island conference)12Guest conductors12Hotel12Instrumentation (planning for)12Library12Music Performed at Camp (listing of)12Opera12Programs12Publicity (press releases)12Rationing12Recommendations for194612Schedule of Events12Scholarships12ScriptsConcerts12Drama12Staff12Traverse City12Tremaine12University of Michigan-All State12Workers needing permits12
    Camp files1945-1966

    Far less extensive in nature, the Camp files, 1945-1966 subseries represents what survived from the remainder of the Maddy administration. His correspondence with Giddings and Tremaine, faculty and staff, and others are included. Until Giddings and Tremaine ended their active participation (by the late 1940's and late 1950's respectively), their exchanges with Maddy continued to provide insight into Camp operations: Giddings mainly on personnel and Tremaine on finances. From the late 1950's on, Maddy exercised more independence in making decisions. While faculty and staff are fairly well represented in the later files, little survived from a student perspective other than a few laudatory letters. Researchers will need to examine the earlier Camp subseries as well as the Subject, Printed, and Scrapbooks series for information about Camper life.

    AdministrationGiddings2 folders1945-195812Tremaine10 folders1945-196312MaddyGeneral correspondence6 folders1945-196612MiscellaneousNotes1945-1962undated13Expense accounts1946-196113Christmas card list196513Caretakers and Camp superintendents (Julius H. Weinberg)-re maintenance and construction1945-195813FacultyA-Z-general correspondence2 folders13Cadek, Otkar (violin)1946-1956196413Dalley, Orien (conductor)1946-19481962-196313Eskers, Hendrick (Intermediate Orchestra conductor)1952-195913Gordon, Roderick (electronics laboratory)1947-196113Hastings, Walter (naturalist)1954-196313Hill, Barre (opera)1947-195513Hoffmaster, Maud (art)1945-194913Klein, Maynard (choral)1946-1962197213Knuth, William E. (conductor, later Trustee)1946-195213Lewis, Hildegard and Wright, Francis (dance)1948-195213Roller, Clyde (conductor)1955-196213Sawhill, Clarence (conductor)1946-195513Stenger, Willebald C. (instrument repair)1948-194913Welke, Walter (university band director)1946-194713Williams, Arthur L. (junior orchestra and talent exploration)1946-195813Guest conductors1946-196213StaffMiscellaneous correspondence2 folders1945-196313Stace/Maddy1946-196013Starr, Lyman (librarian)1947-195813
    Special correspondence1928-1966

    The final subseries contains Special correspondence, mainly 1928-1966. Assembled from the Camp files, 1935-1945, and from earlier and later materials saved by Maddy and his associates, it relates to individuals of prominence or those with close personal ties to Maddy. While most corresponded directly with Maddy, occasionally, a top associate, especially Maddy's secretary, wrote. Where an individual had a continuing relationship with the Camp or reference is made to past association with Maddy, items after his death are included. Apart from the information contained on the correspondents, the subseries should prove especially valuable in association with the Camp files, 1935-1945 and 1945-1966. A name index indicates the locations of their correspondence elsewhere in the collection.

    Almost all the special correspondents can be found in Who's Who or Who Was Who in America. Most gained fame in musical performance. Included are Percy Grainger, Frederic Fennell, Ferde Grofe, Pablo Casals, Howard Hanson, Josha Heifitz, Paul Whiteman, Loren Maazel, Eugene Ormandy, and Jan Sibelius. Other fields and individuals represented include music education: Peter Dykema and Will Earhart, educational broadcasting: W. W. Charters and Edgar B. Gordon, commercial broadcasting: Franklin Dunham and Judith Waller, business: S. S. Kresge and the Alden and Herbert Dow family, and politics: Wilber Brucker and Arthur Vandenberg.

    A-Z-autograph value, selected by Margaret Stace13Angell, James R.1938-194213Antrim, Doron1936-196113Bakaleinikoff, Vladimir1936-195313Bainum, Glenn1938-195313Bicking, Ida1935-195913Boutwell, William1937-196413Brucker, Wilber1949-196313Busch, Carl1932-193913Casals, Pablo1953-196113Charters, W. W.1937-194913

    (Trustee and Advisory Board)

    Cliburn, Van1961-196313

    (Trustee)

    Clarke, Herbert1936-193813Cooke, James Francis1936-195113Czerwonky, Richard (Advisory Board)1935-193913Damrosch, Walter (Advisory Board)1929-194713Dann, Hollis1936-193913Dello Joio, Norman (Advisory Board)1956-196313Detzer, Karl1938-196813Dow, Alden (Trustee and Advisory Board)1957-197113Dow, Willard and family (Trustee and Advisory Board)1937-194213Dunham, Franklin (Trustee)1935-194613Dvorak, Raymond (Advisory Board)1938-195413Dykema, Peter (Advisory Board)1935-195413Earhart, Will1935-195113Erskine, John1935194313Evans, Evan1945-194813Fennell, Frederick1935-196913Fortner, Clarke1942-194413Gabrilowitsch, Ossip1926-193413Gehrkins, Karl1935-195113Giannini, Vittorio1963-196413Givens, Willard E.1939-195113Goldman, Edwin Franco (Advisory Board)1933-195313Golschmann, Vladimir1940-194113Gonzales, Donald (Trustee and Advisory Board)1960-196213Goossens, Sir Eugene1932-194213Gordon, Edgar B.1938-195513Grainger, PercyBiographical14Correspondence3 folders1930-195014Greenleaf, C. D. (Advisory Board)1936-195814Greenleaf, Leland B. and Conn Co.1936-196814Greenleaf Musical Instrument collection1969-197014Grinnell, Lloyd G. (Advisory Board)1937-195614Grofe, Ferde (Advisory Board)1941-194514Hanson, Howard (Trustee and Advisory Board)2 folders1936-196114Harding, A. A.1936194614Harrison, Guy Frasier1936-195414Hooper, C. Guy1936-194514Heifitz, Jascha1939-195314Insull, Samuel1928-193714Johnson, Thor1934-197514Jones, Borden1938-194214Kelley, Edgar Stillman and Jessie (Advisory Board)1934-194414Knitzer, Joe1959-196014Kodaly, Zoltan1965-196714Kresge, S.S. (Advisory Board) and Foundation1 folder1944-196914Krone, Max T.1946195014LeRoi, Henri1944194814Lewis, Fulton, Jr.1950-195114Lilly, Joshua K.1935-193914Lipkin, Seymour and family1938-194214Maazel, Lorin and family1938-194114MacDowell, Mrs. Edward1931-194114Maines, George1961-196514McAllister, A. R.1935-194314Miessner, Otto1935-196314Monger, Howard1935-194214Norton, William W.1935-195314O'Hara, Jeoffrey1936-196314Ormandy, Eugene (Trustee)1934-19361961-196514Osterlin, Mark and Helen (Advisory Board and Trustee)1942-194714Overgard, Graham2 folders1935-19451954196014Painter,Paul1936-1945196114Quaal, Ward1941-196514Read, Gardner1935-194014Read, Leonard E.1946-196814Rosenbaum, Samuel R. of Recording IndustriesTrust Fund (Advisory Board)General1960-196314Conductor's Workshop1962-196314Selby, John1936-193914Sevitzky, Fabien1938-1941196514Sibelius, Jean1947-1950196414Sowerby, Leo19311937196114Spaeth, Sigmond1955-196215Stock, Frederick19271938-194215Stringfield, Lamar1937-193815Taylor, Deems (Advisory Board)1936-194215Tilton, Edith Rhetts (Advisory Board)1938-196515Tufty, Esther Van Wagoner1942-194415Vandenberg, Arthur and family1936-195415Verbrugghen, Henri1930-193115Wallace, Mike1939195615Waller, Judith (Trustee)Maddy1935-195615Hollingsworth (Camp secretary)1939-194015Stace (Camp secretary)1940-194515Weisbrod, Ray1935-196115Werrenrath, Reinal1938-194215Whiteman, Paul1940-194515Wiesner, Jerome1940197115
    Subject Files1928-1989

    The Subject Files series, is divided into two subseries. The first, mainly 1928-1989, emphasizes Maddy and his administration of Interlochen although later materials, especially for the decade or two following his death, are also included. It has six sub-subseries: Joseph Maddy, Giddings and Tremaine, Interlochen, Camp, Academy, and College. The Maddy sub-subseries focuses on his career activities apart from Interlochen while Giddings and Tremaine contains background information and publications of the two other early Camp leaders. Interlochen covers subjects affecting the institution in general, mainly the Camp before 1962 and both it and the Academy thereafter. The remaining sub-subseries focus on detailed planning and operation of: the National Music Camp, Interlochen Arts Academy, and proposed Interlochen College of Creative Arts.

    Card index92Maddy

    The Maddy sub-subseries contains information on his professional activities outside Interlochen. Many of them relate to his role as a faculty member of the university. Although direct ties to Interlochen are lacking, virtually everything he did somehow involved the institution he founded. The sub-subseries consists of six subsections: Appearances, Broadcasting, Civic Music, Music Education, Publications, Speeches and Writings, and University of Michigan.

    Appearances

    "Appearances", 1926-1965, deals mainly with his role as a conductor and judge at band and orchestra contests and festivals. It includes both correspondence and printed programs, and is divided according to Michigan and out-of-state performances. Although the correspondence largely deals with arrangements, it sometimes discusses music education in general and local conditions in particular. Since many of Maddy's early in-state visits were scheduled through the Extension Service, researchers will also want to consult the University of Michigan category of this sub-subseries, and for his wartime appearances, Civic Music. For printed programs, researchers should check the Graduate and Music School Libraries (where, according to his records, he donated a complete set in 1940).

    MichiganCorrespondence1946-196415Programs1926-196415Out-of StateCorrespondenceArizona19361939195515Colorado1944-194615Florida1937-19421951-195219581965-196615Georgia1936-19421959-196015Illinois1935-19411946-1948195119531960196415Indiana193719391940195015Iowa19301940-194115Kansas1935-19361938-19391944-1948195615Nebraska1935-19361940194815New Mexico (Great Southwestern Music Festival)1935-193715Ohio1935-193619401945196515Oklahoma1935-19371944-19481950-19511953-195815Pennsylvania1938194119501952-1953195715South Dakota1936-193715Tennessee1936-194015Texas1935-19371940-19411945-194915Utah1938-193915West Virginia1935-1937194015MiscellaneousOther States1936-196415National Council of the Arts in Education196415Southern trip plans194015Programs7 folders1924-194915Programs3 folders1950-196516
    Broadcasting

    "Broadcasting", mainly 1931-1948, documents Maddy's non-Interlochen radio work. It includes his correspondence and scripts for instrumental and vocal education programs as well as correspondence, reports, and other records on his attempt to create an alternative to commercial radio, largely using the new FM technology. Scripts include those used by announcers Mike Wallace and Ward Quaal and texts of radio addresses on Americanism by Murray Van Wagoner, Leo Fitzpatrick, and Karl Detzer. Researchers will also want to check "Civic Music" for Maddy's wartime broadcasts and "Music Education" for the professional educators' program "Music and American Youth." Since much of his non-Interlochen broadcasting was done for the university, reports and other information about it can be found under "University of Michigan" (6) in this sub-subseries. Recordings and a movie film of his instructional programs can be found in the Visual Materials and Sound Recordings series.

    University of Michigan radio1931-1954History16GeneralPapers8 folders1931-195416U. of M. student papers, circa1935-193616Summer survey responses193716W.P.A.-student workers1938-194016Program materialsBand & gen'l instrument lessonsFebruary and March, including course book193116February and March1932Announcements and scripts16Survey of participating schools16Correspondence16October-December-course book1932161933-1935-scripts and lesson plans2 folders161935-1936

    (WJR and WMAQ)

    CorrespondenceProduction (mainly NBC)16General16Instruction book orders16Participating schools, circa193616Scripts2 folders16Network plans for "Musical Youth"16
    (NBC) "Fun in Music"1936-1937CorrespondenceProduction (mainly NBC)16General2 folders16Listener16Script drafts193616Scripts and lesson plans2 folders16(NBC) "Fun in Music"1937-1938Correspondence-general16Promotional materials16Scripts and lesson plans2 folders16(NBC) "Music Makers"1938-1939Correspondence-NBC17Scripts and lesson plans2 folders17Scripts (partial)1936-1939171939-re possible CBS pick-up17
    String lessonsHistory (1933-1937)17Scripts and school list1933-193417Scripts2 folders1934-193617Letter and scripts1936-193717Lesson outlines1950-195117Wisconsin radio interest1950-195117Singing lessonsScripts1933-193617Correspondence and scripts1938-193917Correspondence and scripts1940-194117Hymn programHistory17Correspondence and scripts1936-193717Correspondence1937-1938171938-1939CBS correspondence17General correspondence and scripts17Scripts1939-194017Correspondence and scripts2 folders1940-194417Hymn reference files (alpha), circa194217Later hymn correspondence1946-195817Patriotic, "Why Save Democracy"194117Music instruction (general)Correspondence1935-194717RecordingsRCA Victor1935-193917Script, circa193617Evaluation of School Broadcasts (Ohio State University), including "Fun in Music,"1937-193917
    Educational BroadcastingGeneralNBC letter and Maddy FCC statement193417Correspondence1935-195817Conference materials1934-193817Miscellaneous printed1934-194017NetworkHistory17Initial effort (Wiesner, Charters, and Maddy)1938-193917Association for Education by Radio194217

    (founding as branch of NEA)

    194317

    (Michigan chapter organized at Interlochen)

    FM radio Network4 folders1943-1944174 folders1945-194818
    National Academy of Broadcasting Foundation1949-195018Educational television1958-196218
    MiscellaneousArticles by Maddy1931-193818Articles by others on Maddy1934-193518Maddy talks1931-194718Maddy talks, WPAG (Ann Arbor)194718Ann Arbor Broadcasting Co.1937-193918NBC-television193918Miscellaneous printed1939-194618
    Civic music

    "Civic Music" (1939-1961) includes correspondence, programs, reports, and other materials on Maddy's adult orchestra endeavors, including the wartime civic music program. Its coverage begins with the organizing conference for National Civic Music at the Camp and continues with his directorship of the Ann Arbor Civic Orchestra Association and Michigan Civic Music Association, especially the latter's massed orchestra performances. The Wartime Civic Music materials cover his appearances and broadcasts, his battle with publishers over production of a patriotic songbook for public use, and his solicitation of new musical works with a patriotic theme.

    National Civic Music Conference (at Interlochen)4 folders1939-194018Ann Arbor Civic (Symphony) Orchestra6 folders1940-196118Michigan Civic Music Association1941-1961History18Papers, 1941-19614 folders18American Symphony Orchestra League194618Wartime Civic MusicMusic Industries War Council194218Michigan Council of DefensePapers194218Leadership lists1942-194318Newsletter1942-194418National materials, circa1942-194318Conference on Civic Music and the War Effort194218Committee on Wartime Civic MusicState7 folders1942-194518Local1942-1943Organizational materials1942Ann Arbor18Other communities18Programs1942-194318Newspaper articles1942-194318Articles by Maddy, circa1942-194318Battle Songs of FreedomPlanning materials19Publishers' copyright1942-194319Miscellaneous printed1940-194319BroadcastsCorrespondence1942-194319WJR (Detroit) scripts194219WKAR (E. Lansing) scripts194319Historical pageant scripts, circa194319Marching songs-response to appeal for2 folders1942-194519Travel (Maddy)1942-194319
    Music education1921-1966

    "Music Education" (1921-1966), contains Maddy's correspondence on general developments in the field and on his work with professional organizations. The former mainly concerns responses to inquiries. He deals with overall trends, such as the decline of school orchestras and the need for string instruction, as well as elaborating on teaching techniques for specific instruments. Correspondence of a similar nature with leading music educators can be found in Chronology Special Correspondence and with radio listeners in Subject Interlochen-Broadcasting. The string workshop which he taught at Interlochen is documented in Subject Camp under "Course Materials."

    His major professional work for the Music Educators National Conference (MENC), 1921-1966, begins with background information on orchestra and band contests and festivals. It continues with his work arranging student performances for the 1933 Century of Progress Exhibition in Chicago (where he first came into conflict with Petrillo). It also covers his leadership of the Research Council, particularly the publication on Music Rooms and Equipment (including its proposed revisions).

    Records on his presidency and executive committee service follow as do those on his Broadcast Committee leadership, including the MENC national radio program, "Music and American Youth," 1938-1940 (where he again ran into problems with Petrillo). The section concludes with records covering the remainder of his relations with the MENC, including its support of efforts for a postwar youth orchestra tour of Europe and its 1959 meeting at the Camp. His reaction to the MENC leadership agreement with Petrillo (1947) can be found in the series Subject Interlochen "Petrillo" and in the Giddings and Tremaine correspondence of Chronological Camp files, 1945-1966. The archives of the MENC are preserved at the McKeldin Library of the University of Maryland.

    His other professional activities include service on the National Committee for Music in Education, 1938-1940, which lobbied for creation of a Fine Arts Division within the U.S. Department of Education. For organizations associated with Interlochen (institutional support or membership), researchers should consult Subject Interlochen "Organizations" in this series.

    HistoryGeneral (by Maddy)19Reminiscences of a music educator, Frederick Fennell196319General correspondence4 folders1930-196519Miscellaneous papersSokoloff's suggested closing of music schools193519Use of movies (Eyes on America)194019String instruction1948-195119Use of recordings (Wilcox-Gay Corp.)1946-194719Music Educators National Conference (MENC)Convention programs1921-193619Committee on Instrumental AffairsContests and festivalsHistory19Correspondence and papers7 folders1927-194419Program and informational materialsNational3 folders1927-193919Michigan1927-193419Publications1926-1934undated19Century of Progress (Chicago)1932-1933Planning materials19Correspondence regarding group appearances3 folders20Michigan Day papers20Research CouncilGeneral1933-193720Music Rooms and EquipmentReport1934-193620Proposed revisions1938-1945195520Pre-presidential miscellaneaGeneral1934-193520Committee on Music and Leisure Time193420Presidential1936-1938Address-"Teaching Music by Radio,"193620General-including effort to secure a Fine Arts Division in the U. S. Department of Education2 folders1936-193820St. Louis conventionPlanning1936-193820Program193820Printed materials193820Journal articles by Maddy1936-193820Broadcast (Radio) CommitteeCode of Ethics-proposed (American Federation of Musicians)193720"Music and American Youth"5 folders1938-194020Montana Civic Broadcasting194020Miscellaneous1938-194020Post-presidentialGeneral, including Executive Committee6 folders1938-194820North Central Conference1938-194820General, including President's Council2 folders1952-195920Interlochen meeting195921General1960-196621Other organizationsMichigan Music Teachers Association1962-196321Michigan School Band and Orchestra Association1942-194721Music Teachers National Association1939-195721National Committee for Music in Education1938-194021
    Publications, Speeches, and Writings1920-1968

    "Publications, Speeches, and Writings"(1920-1968) subsection includes Maddy's correspondence with publishers and collaborators, drafts of his works, articles by and about him, his music education publications, and his music arrangements. Many of his articles were publicity pieces for the Camp. His other publications were largely instructional in nature, both individual and group. His musical arrangements, including for Howard Hanson, reflect his extensive activity in the field. His few attempts at composition are included with them. Maddy's relationship with ASCAP is documented, but researchers interested in its association with the Camp should also check Subject Interlochen "Organizations."

    ArticlesInterlochen relatedCorrespondence1940-196321Drafts2 folders1928-1965undated21Printed1940-196421General (largely music education)Correspondence1936-196421"History of School Music" (for The Instrumentalist) correspondence and drafts195521Drafts6 folders1920-196621Printed2 folders1920-196421Speeches (note cards)Delivered outside Interlochen1961-196621Delivered at Camp1963-196521Delivered at Academy1963-196521Miscellanea, circa1950s-1960s21Musical worksBibliographies21American Society of Composers, Authors and Publishers1935-196221Publishers correspondenceAmerican Book Company1935-193921Birchard, C.C.1935-194121Chappell and Company1939-194021Fischer, Carl1935-195521Hall & McCreary1937-195921Kjos, Neil A.1941-196021Music Publishers Holding Corp.1938-194021Pioneer Music Press1958-195922Willis Music1936-195222Wurlitzer1935-194722Miscellaneous1940-194122Publisher royalty statements1937-193922Collaborators correspondenceChurch, Norval L.1945-194722Miessner, W. Otto1942-194322Watters, Lorrain1939-194122Miscellaneous194322Published instructional materialsList of unique items retained by Interlochen221924Willis Graded School Orchestra and Band Series-with Giddings221926Willis Graded School Orchestra and Band Series-with Giddings22Instrumental Technique for Orchestras and Band (Willis)-with Giddings22Universal Teacher (Willis)-with Giddings221927Standard Orchestra Folio (Irving Berlin Standard Music Corp.)22Willis Instrumental Quartet Repertoire-with Giddings231928Willis Graded Orchestra and Band Series-with Giddings231929School Bands: How They May Be Developed231930All-State High School Orchestras (National Bureau for the Advancement of Music)23The Classic and Modern Band Book (Presser)-with Wilfred Wilson23Modern School Graded Orchestra Books (Fischer)-with Charles J. Roberts23Trione Folio (Fischer)-with Giddings and Roberts231931Michigan University of the Air, band instrument course book (Willis)231933Radio Music Course for Band ...and...Stringed Instruments (Edwards Bros.)231937Fun in Music (American Book Company)-with Giddings231938Symphonic Band Folio (Fischer)241943All-American Song Book (Robbins)-with Miessner241948Symphonic String Course (Kjos)unfinished ms. oversized84Miscellaneous instructionalManuscript, Interlochen Band Methodundated24Mimeographed, The Interlochen Music Course, developed by the Interlochen Honors Musicianship Project, H.E.W. grant #253, directed by Maddy, assisted by others1965-196824Arrangements and compositionsListingundated24Correspondence1938-195524Pieces (ms. and printed)The Lost Chord (Willis)193724Army and Navy March (Willis)193824Camp-Fire March (Willis)193824The Counselor (Willis) Maddy193824Nordic Symphony (Birchard) Howard Hanson193824Arabian Nights (Chappell) Allen Grant193924Jungle Land Suite (Chappell) Allen Grant193924Marco Polo Suite (Chappell) Allen Grant193924Paul Bunyan's Suite (Chappell) Allen Grant193924Paul Revere Suite (Chappell) Allen Grant193924Southland Symphony (ms.) Allen Grant193924Prayer and Dream Pantomime (Remick) Engelbert Humperdinck194324In Balladenton (ms.) Grieg194624Festival Finale (Kjos) traditional hymns arranged for dedication of Kresge Auditorium1949unfinished ms.,oversize84Quartet, opus 30, undated, Tschaikowski24Themes from Symphony No. l, undated, Sibelius24
    University of Michigan

    "University of Michigan" (1930-1949) relates to Maddy's work for the university. It contains correspondence concerning his travels throughout the state under the auspices of the Extension Service, his university appointment forms, and his reports to university superiors. Included is a 1932 survey by the Extension Service of "School Contests and Festivals in Michigan." Other U. of M. materials can be found in Maddy "Broadcasting" and Interlochen "University of Michigan" in this series.

    Reports and correspondence8 folders1930-195425Extension service survey of contests and festivals1935Summary results25Individual school responses, A-Z4 folders25
    Giddings and Tremaine

    The Giddings and Tremaine sub-subseries features biographical information on and publications by the other two early leaders of the Camp. The Giddings portion, 1907-1953, contains largely his manuscript and printed writings: radio scripts (for instructional programs), speeches, articles, texts, and life reminiscences. Tremaine's section, 1932-1962, includes publications, reports, and some correspondence, relating mainly to his work with the National Bureau for Advancement of Music (NBAM).

    GiddingsBiographical25McDermid dissertation, Maddy and Stace correspondence re1965-196625Writings (manuscript)Reminiscences19231940undated25Music speeches and articles3 folders1926-1937undated25Interlochen articleundated25Non-music articles1934-1935undated25Radio scripts, "Music for Every Child," WDGY (Minneapolis)1939-194025Draft for text on music instruction, circa 1951 based on earlier publication for Minneapolis schools, undated1951undated25Publications (printed)Public School Class Method for the Piano191925Grade School Music Teaching (text)191925Songs of Childhood, Music Education Series192325ArticlesSchool Music Monthly1907-191425Other1922-193325Miscellaneous printedMinneapolis public schools1915-194825Other1934194525TremaineBiographical26Writings (mainly printed)Brochure193426Published articles1936-195426National Bureau for Advancement of MusicReports and correspondence1922-193426National Music Week (printed)1937-197726School Band and Orchestra Contests1924-193226Other publications1924-194226
    Interlochen (Camp and Academy)

    The Interlochen sub-subseries covers topics relevant to the institution in general, mainly under Maddy but also under his successors until 1989. The sub-subseries has been further divided into seventeen subsections: (1) Alumni, (2) Broadcasting, (3) Campus, (4) Financial, (5) Fund Raising/Development, (6) Interlochen Arts Festival, (7) Interlochen Press, (8) International, (9) International Society of Music Educators, (10) Michigan, (11) Organizations, (12) Petrillo Controversy, (13) Publicity/Promotion, (14) Special Events and Programs, (15) Traverse City, (16) United States Government, and (17) University of Michigan. Materials before 1962 usually relate to the Camp, and thereafter, to both the Camp and Academy. The files often document activities which Maddy initiated, but which were subsequently handled by others.

    Alumni

    "Alumni" (1), 1940-1976, begins with directories and lists of distinguished graduates, but most of it relates to Alumni surveys, 1940-1942, and attempts to form alumni organizations, beginning in 1941 through the mid 1970's. The surveys were done to involve graduates, particularly in recruiting students and funding scholarships. The surveys for 1940 and 1942 are virtually complete except for the "A" section of the alphabet, where only scattered returns survive. They give good information about the respondents, some of whom became quite distinguished in their fields.

    At the time of the surveys, an attempt was made to establish alumni clubs, and periodically thereafter, similar efforts were made, largely in conjunction with fund raising, but it was not until the mid 1960's that the present Alumni Association was formed. Notes, minutes, and other materials document its planning, organization, and work. For more recent activities, researchers should consult the Sheryl Szady segment of the Post-Maddy Administrators series.

    GeneralDistinguished alumni lists1944-196526Reminiscence, early African American alum196326Directories for19331940194226Surveys1940-19411941-1942General correspondence2 folders26Scholarship appeal1940-194126Responses, A-R with "A" incomplete35 folders26Responses, S-Z12 folders27OrganizationsInterlochen Clubs1940-194127Alumni Associations194227Twenty Year Club1949-195227Alumni mailings195827Nu Mu Chi (Interlochen Society)1960-196127Alumni AssociationInterlochen Society proposal (George Worden)196327Crescendo appeal for funds1964-196527PlanningGeneral proposals and reports196527Notes of John W. Henderson, alumni consultant1965-196627CampMembership by class (1928-40)undated27Correspondence and reports1965-196627Reunion materials1967-197627AcademyCorrespondence and papers,1965-196627Reunion materials1971-197327Parents (Academy)Correspondence and papers1965-196627Notes by Henderson1965-196627Records1969-197227Alumni Council (Interlochen)1969-197227Alumni office reports1968-197427
    Broadcasting

    "Broadcasting" (2), mainly 1930-1966, includes correspondence, scripts, and related materials. It is particularly strong for the early years, 1930-1945, and "The Best from Interlochen" era, 1961-1966. The former includes correspondence with listeners and the latter with guest speakers, most of whom were quite distinguished and played active roles in the institution. For the early years, researchers should consult the Judith Waller and Franklin Dunham files in the Chronological Special Correspondents, and for "The Best from Interlochen", the Post-Maddy Administrators Gillis. Information about Interlochen broadcasting, especially WIAA (started in 1963) can also be found in Post-Maddy Administrators Jacobi, Boards, Post-Maddy Administrators Boal.

    History27Live Broadcasts(April), National High School Orchestra, clippings192827Arrangements for1929-193027Publicity and scripts193027Script193227Script193427Scripts and correspondence1935271936NBC correspondence27Listener correspondence27Scripts271937Production materials27Listener correspondence27Scripts271938NBC correspondence27Station information27Listeners, analysis and correspondence27Scripts2 folders271939NBC correspondence and permission releases27Broadcast continuities and scripts271940NBC broadcast program information27Correspondence27Scripts271941NBC correspondence and production materials27ScriptsNBC27WCTM (Traverse City)271942NBC and WCTM correspondence27Newspaper announcements of new season27Scripts for "Join the Choir"271943CorrespondenceNBC27Other networks27WKAR (East Lansing)28WCTM (Traverse City)28ScriptsWKAR2 folders28WCTM-Sunday Bowl Service281944

    (scripts)

    WKAR2 folders28WCTM28
    1945Correspondence28ScriptsWKAR2 folders28WCTM2 folders28Correspondence1946-194928Scripts194628
    Taped programs1950-1961National Association of Educ. Broadcasters1950-195128Voice of America1950-1951195528WUOM (Ann Arbor)1952-195528General2 folders1952-196128Script195528Television1954-1955196128"The Best from Interlochen,"1961-1967Guest speaker correspondence28(Gillis/Maddy)A-Z3 folders196128A-Z2 folders1962-196528Program planning-Maddy drafts1961-196628Scripts5 folders1963-196628Newspaper articles1963-196428Program outlines196728WIAA (Interlochen)Correspondence and planning documents1961-196628Newspaper articles196328Intercollegiate Broadcasting System196528Reports2 folders1969197028Printed materials1966-198328Recordings1956-197728
    Campus

    The "Campus" subsection (3), 1930-1989, details the development of buildings, facilities, and property shared by the Camp and Academy. Information is included on the planning for and dedication of buildings. Maps help provide an overview of the campus growth. Documentation is also provided on equipment (especially for radio work), grounds (vegetation and wildlife), physical plant (sawmill and generator), property (survey and sale), and the recent introduction of sculptures to campus. Researchers will find additional materials about buildings in Chronological Camp Files, 1935-1945 and Special Correspondence "Alden Dow" as well as the "Fund Raising" (5) and "Organizations" (11) subsections of this sub-subseries. A tape of the Grand Traverse Performing Arts Center dedication is part of the Sound Recordings series. More recent campus planning can be found in the Sheryl Szady segment of the Post-Maddy Administrators series.

    Architect-George McConkey1936-195829Buildings, plans and dedicationsAmerican Bandmasters Association194129Dendrinos Chapel/Recital Hall198129Fine Arts (Michigan Federation of Women's Clubs)194529Grand Traverse Performing Arts CenterPlanning documents196929Dedication materials197529Hotel, circa1945-195529Kresge1948196229Maddy/Administration1949-1952196329Mott Language Arts Center196429Penn Hall194429Radio1951-195229Scholarship lodgesDal-Hi1955-196629Federation of Music Clubs1953-195429Lewis (Hildegaard and George)195229Mu Phi Epsilon195329Studio Buildings1937-1941196829Wurlitzer (Apollo Hall)193729MiscellaneousSketches and plans1930s-1960s29Furnishings1940s1950s29Campus-GeneralMaps, circa1930-198929Construction correspondence and plans, circa1944-196529Building overviews for visitors1947-196629Campus plans 1964, undated (mss.)1964undated29EquipmentBroadcasting/recording1939-1941195529Pianos195529Risers1949-195329Miscellaneous1947-195129Grounds (including bird, flower, and tree reports)1946-197029Physical plantPower generator1948195929Sawmill1945-194929PropertySurvey1944-194629Railroad right of way1941-194729Pointe BetsieCorrespondence1967-198329Sale1983-198429Miscellaneous1943-195829SculpturesBears (Marshall Fredericks)1979-198529Chopin (Chopin Society of Warsaw)198729Prophesy 79 (Leonard Nierman)1983-198629Szymanowski (Friends of Polish Art)1978-198729
    Financial

    The "Financial" files (4), 1928-1988, have a Maddy era, 1928-1965, and later, 1966-1988, component. The earlier consists largely of detailed papers and records, mainly analyses and reports on all aspects of operations prepared by the Bookkeeper-Assistant Treasurer-Treasurer (Marie Maddy until 1937, George G. Mackmiller until 1962, and Clare D. Burns thereafter) for use by Joseph Maddy. Some correspondence with Maddy and Tremaine is also included. The Tremaine correspondence in Chronological Camp files, 1935-1966, provides a good overview of financial developments in this era. The later portion, 1966-1988, contains largely bound reports prepared for general administrative use. They should prove especially valuable in conjunction with the Boards Trustees series.

    "Fund Raising/Development" (5), 1928-1978 (with some later promotional materials), details efforts to secure financing for facilities and scholarships. It includes correspondence, reports, prospectuses, and promotional materials covering the sale of debentures and the gift of buildings and scholarships. Appeals to alumni, parents, foundations, and the Traverse City business community are covered, encompassing efforts by professional fund raisers, agents, Interlochen personnel and friends.

    Researchers will also want to consult in this sub-subseries: "Alumni" (1) and "Publicity/Promotion" (13) as well as: "Campus" (3) for donations of facilities and art works and "Organizations" (11) for gifts of scholarships and buildings. In addition, they will want to check Post-Maddy Administrators Donald Gillis and Karl Haas under "Fund Raising" and Roger Jacobi under "Development" as well as the Boards series,and the correspondents index for S. S. Kresge and Clement Stone.

    Maddy era (largely Ass't Treasurer)Tax matters1932-196029Reports with correspondence18 folders1928-194829Reports with correspondence31 folders1949-196530Post Maddy-Treasurer (largely bound)General Fund Budget1966-196730Treasurer's Report and General Fund Budgets1967-196830Treasurer's Reports, August 4, 1969-30November 30, 197230

    (eighteen items)

    Treasurer's and Auditor's Reports44 itemsFebruary 28, 1973-August 31, 198831
    FundraisingGifts received1928-193532Debentures3 folders1931-194432Boosters Club1934-193932Traverse City Testimonial Fund193932Grand Traverse Region Friends1940-194132Illinois Gift to Interlochen1939-194132Earl J. Smith and Associates1939-194132Publishers Service Company (recordings)Papers3 folders1940-194232Newspaper articles194032J. Lee Barrett (scholarship fund)1941-194332Scholarship lodgesMrs. R. B. Canfield1941-194732Other1941-196532MiscellaneousGeneral1935-196732Carnegie Corporation1935-196132Earhart Foundation194532Ferry Foundation1944-194532Ford Foundation1947-196132Vesta Fox (Charles Kettering)1940-194132Philip S. Harper1942-194732Kellogg Foundation1945-195032Parent letter-re construction loan195532Maddy Administration Building, contributors list195632$25 Million Development Program196532

    (see outsized)

    Claire Cox (Clement Stone)1966-196732Maddy Memorial FundGeneral1966-196732Benefit coffee (Bess Hyde)196632Promotional brochure196632

    (see outsized)

    Development officePapers1971-197332Promotional item197232Interlochen Day World-Wide198732Printed/mailings2 folders1964-198932
    Interlochen Arts Festival

    "Interlochen Arts Festival" (6), 1963-1975 with gaps, deals with the development of the professional summer program. Most concern Maddy's efforts to secure a major symphony orchestra, 1963-1965. Printed materials which further document festival events, 1964-1993, can be found in Printed-Interlochen "Camp.".

    New York Philharmonic and Cincinnati Symphony196332Philadelphia Orchestra1963-196432Festival papers196432Clippings1964-196532Chicago Symphony196532Festival papers196532Detroit Symphony197332U.S. Armed Forces Bicentennial197532
    Interlochen Press

    The institution's attempt to become a publisher and distributor of music is detailed in "Interlochen Press" (7), 1957-1976. It includes correspondence, minutes, and reports on the Press's active period, 1957-1962, as well as materials on the formal dissolution in 1976. Researchers will also want to consult Don Gillis in the Post-Maddy Administrators series.

    Papers4 folders1957-19621965-196632Printed catalogues1958-196232Dissolution papers197632
    International

    "International" (8), 1940-1981, covers Interlochen's endeavors to broaden its outreach. It includes information on Maddy's Latin American contacts during World War II, foreign visitors and Campers, proposed tours by Interlochen groups, and the development of the World Youth Symphony. The bulk of the material consists of: (1) correspondence beginning in the mid 1950's on attempts to secure government funding for a European tour by Camp musicians and (2) records starting in the 1960's on efforts to develop an International (later World) Youth Symphony. The former includes letters from many prominent American political figures. For Interlochen's role in the creation of the National Music Camp of the Philippines, researchers should see Post-Maddy Administrators Wilson.

    Latin AmericaN.Y.A. Orchestra (Stowkowski)194032Conference on Inter-American Relations194032Visitors and other1940-194532Proposed high school band tour of Mexico2 folders1945-194832Charter for Youth and UNESCO1946-194732Tour proposals (mainly European)Maddy papers2 folders195632Support letters2 folders195632Clippings1956-195732Maddy papers2 foldersJanuary-June, 195733Support letters from students and parentsMay-June 195733Maddy papersJuly-December, 195733Maddy papers2 folders195833Maddy papers195933Maddy papers196033Maddy papers (also South America)196133Mutual Educational and Cultural Exchange Act (proposed)196133Maddy papers1962-1963Maddy papers196533Instituto Cultural (Mexico)196533State Department (proposed European tour)1969-197033International Festival of Youth Orchestras (Canada)1976-197833Other contactsMaddyMiscellaneous1946-196433President's People to People program1959-196233Conference participation1964-196633U.S.I.A.1954-551961-196533Voice of America (Harold Boxer)1961-196833United Nations (Sam'l S. Becker)1962-196333International Music Council1967-196833ScholarshipsKresge1960-196133Pan-American Union1960-196133Standard Oil1961-196333StudentsMichael Jenne (Germany)1957-1961196533Elisabeth Lorrain (France)196833Soon Ae Kim (Korea)-Mrs. Maddy19681970-197233Miscellaneous1955-196733VisitorsGeneral2 folders194719511957-197733Leonard de Vries195833

    (see Box 2: Chronological-Camp History)

    World (International) Youth SymphonyPlanning materials1962-1963331964Competition materials33Correspondence33Correspondence and papers1965-197733Papers re Internat'l Soc. for Music Education appearance in Canada197833Printed1975-198933Helen Quach, guest conductor1969-197333
    International Society for Music Education1963-1967

    The "International Society of Music Educators" (9), 1963-1967, documents the 1966 ISME meeting at Interlochen, its first ever in America. Maddy's work in securing the convention is reflected in the planning, but the major portion deals with the final arrangements for speakers, performers, and exhibitors by Lyman Starr of the Special Events Office. Copies of conference talks and participant letters from Norman Dello Joio, Demitri Kabalevsky, and Zoltan Kodaly are included. Researchers will also want to check the Scrapbooks series.

    PlanningGeneral1963-196533Egon Kraus196533Arrangements1965Grant application33General33Maddy notes and miscellanea33Promotional materials33Registration33U. of M. International Seminar34Meeting1966Delegate lists34Conference information34Program lay out34Newspaper articles34Exhibitors34PerformersGeneral information34Programs34Cliburn, Van34Detroit Symphony Orchestra34Ensemble Philippe Caillard34Illinois All State Choir34Kepler Gymnasium Orchestra34Koto Ensemble34Klemetti Choir34Michigan Youth Chorale34North York Youth Choir34Quach, Helen (conductor)34Singkreis Willi Trader34Tappan Jr. High Choir (Ann Arbor)34Traverse City High School Choir34Waukegan Grade School Band34SpeakersGeneral34Ameller, Andre34Arberg, Harold34Bentley, Arnold34Bergese, Hans34Binkowski, Bernhard34Borris, Siegfried34Britton, Philip34Burmeister, Clifton A.34Carlsen, James34Chun, Wondeuk Min34Cykler, Edmund34Dello Joio, Norman34Engstrom, Bengt34Ernst, Karl D.34Forrai, Katalin34Franzen, Bengt34Gembitskaja, E.A.34Hood, Marguerite V.34Housewrite, W.L.34Kabalevsky, Dimitri34Kasilag, Lucrecia A.34Klotman, Robert H.34Koch, Peter34Kodaly, Zoltan34Kokas, Klara34Korcak, Friedrich34Kraus, Egon34Leduc, Mme. Claude34Londeix, Jean Marie34Lukjanou, V.G.34May, Elizabeth34Mayer-Rosa, Eugen34Miura, Chuichi34Nemesszeghy, Mme. Lajos34Nkettia, Kwabena34Partos, Elisabeth34Pendleton-Pelliot, Aline34Quon, Maple34Rasmussen, Hennig Bro34Rautio, Matti34Rjumin, P.I.34Saint-Jorre, J. de34Sanchez, Marta34Serposs, Emile H.34Shetler, Donald34Sittner, Hans34Sivic, Pavel34Slind, Lloyd H.34Suede, Bengt Franzen34Sykler, Edmund A.34Szabo, Helga34Szonyi, Elisabeth34Tagliaferro, Magda34Tomada, Takekatsu34Trotter, Robert34Wersen, Louis G.34Zimmerman, George H.34Miscellanea (author unknown)34Post-conferenceReports34Correspondence1966-196734
    Michigan, State of

    "Michigan" (10), 1936-1988, focuses mainly on Camp relations with state government during the Maddy era, 1936-1965. Included are controversies over the development of Interlochen State Park, the relocation of the main highway, and a proposed prison camp (1953). It also covers gubernatorial appearances and attempts to secure legislative subsidies for performance trips (such as to the 1939 World's Fair) and promotional movies (which received aid from 1939 through 1954). Information on the controversy over the proposed Camp orchestra appearance at the Mackinac Bridge dedication (1958) can be found in "Petrillo controversy" (12) while the attempt in 1979 to locate a state prison camp near Interlochen is documented in Post-Maddy Administrators Jacobi.

    The State's cultural efforts are covered in files on the Michigan Cultural Commission (1960-1963) and the Michigan Council of the Arts (1963-1965). They show Maddy's work with Karl Haas, who later became President of Interlochen. On the Michigan Council of the Arts, researchers should also consult Post-Maddy Administrators Haas and Jacobi and Boal .

    Related materials concern the Michigan Youth Arts Festival, a Michigan Cultural Commission offspring (suggested in 1962 by William Stirton of the U. of M. and promoted by Maddy). Correspondence, minutes, and programs document its origins and subsequent development, especially the Interlochen auditions and Flint Michigan Week performances (sponsored by Harding Mott).

    Legislative (mainly funding) and miscellaneaCorrespondence1938-194034Season passes194034Correspondence1941-194234Season passes194234Correspondence194334Season passes194334Correspondence2 folders1944-194734Correspondence3 folders1948-196535GovernorsFitzgerald, Frank193635Murphy, Frank193835Van Wagoner, Murray1941-194235Dickinson, Loren194235Kelly, Harry1943-194635Sigler, Kim194735Williams, G. Mennen194935Swainson, John196135Romney, GeorgeGeneral1963-196535State of Michigan Scholarships196535DepartmentsConservationGeneral1941-194835Interlochen State Park3 folders1944-19531960-196335North Manitou Island (W.K. Angell)1944-194935CorrectionsPrison Camp controversy1953Correspondence35Clippings35Commission on Law Enforcement and Criminal Justice (meeting)197135Highway1935-196535Liquor Control Commission1942-195535Public Instruction1943-196435Michigan Cultural Commission2 folders1960-196335Michigan Council for the Arts1963-196535Michigan Youth Arts FestivalPapers (Michigan Week)195535Papers4 folders1962-196635Printed1963-196635Papers197135Papers1982-198835
    Organizations

    "Organizations" (11), 1935-1976, concern professional and support groups associated with Interlochen. Many of them provided gifts of buildings, scholarships, and music as well as held meetings there. Arranged alphabetically, the files include mainly correspondence but also some minutes, reports, and articles. Most relate to the Maddy era although items from the Haas and Jacobi presidencies are included. The Michigan Federation of Music Clubs files document the history of the group and its long association with Interlochen. Information on the American Bandmaster Association convention (1936) can be found in Chronological Camp files, 1935-1945.

    American Bandmasters' Association1939-196235

    (See also Box 3)

    American Camping Association, Great Lakes Council2 folders1935-194535American Society of Composers, Authors and Publishers1938-194635American String Teachers Association1950-196535Delta Omicron1954-196235Federation of Music ClubsMichigan62 folders1935-1966352 folders1966-197436Other states1936-195536National1936-193836Elementary school orchestra1938365 folders1940-196936Federation of Women's ClubsMichigan1944-197636National19461956-1957196636Michigan Council on Adult Education1943-194836Mu Phi Epsilon1947-196536National Music Council1938-1966197636Phi Mu Alpha (Sinfonia)General1951-196136National Delegate Assembly1968-197036National Delegate Assembly1971-197336
    Petrillo controversy

    The "Petrillo Controversy" (12), 1930-1987, covers the American Federation of Musicians ban on broadcasting from (as well as teaching or performing at) Interlochen. It begins with overview accounts of the controversy and surviving documents on Maddy's earlier dealings with the musicians union. For the origins of the controversy, researchers will also want to check Subject Maddy "Music Education" under "Music Educators National Conference."

    Correspondence, testimony, notes, and newspaper articles document Maddy's efforts to lift the ban. The correspondence includes exchanges with many Congressmen, especially members of the Michigan delegation (particularly Senator Arthur Vandenberg and Congressman Albert Engel). Maddy also dealt extensively with Congressmen Clarence Lea of California and Carroll Kearns of Pennsylvania. Former Governor Wilber Brucker of Michigan, served as Maddy's legal counsel on the issue during the early 1950's.

    Because of bulk, the correspondence is sometimes separated into special (Maddy) and general files. The former includes individuals of particular importance on the issue, to the Camp or in society, while the latter contains general support letters (which often include responses from Congressmen). Researchers interested in the efforts to lift the ban should also consult the Giddings and Tremaine correspondence in Chronological Camp files, 1935-1966.

    The final portion on the Petrillo controversy deals with its settlement and the Camp's subsequent relations with the American Federation of Musicians and other unions, especially the United Automobile Workers. On the resolution of the controversy, researchers will also want to consult Post-Maddy Administrators Gillis.

    History36Background-American Fed. of MusiciansPermission for broadcasts193036General1937-194036Ohio union issues1937-193936Clippings194036Paul Whiteman appearance194136Maddy letter to U.S. Attorney GeneralMarch 194236Union banMaddy papers2 foldersJuly-August, 194236Maddy support letters, A-Z2 foldersJuly-August, 194236Clippings3 foldersJuly-August 194236Arthur Vandenberg correspondenceJuly-December 194236Maddy papersSeptember-December 194236Student committee records, September-Dec194236ClippingsSeptember-December 194236Maddy papers194336Arthur Vandenberg correspondence194336General letters of supportJanuary 194336Clippings194336Arthur Vandenberg correspondence194436Albert Engel correspondence, January-March 14194436Maddy papers, February-March 20194436Maddy testimony, Senate Interstate Commerce CommitteeMarch 20, 194437Maddy papers2 foldersMarch 20-December 31, 194437General letters of supportNovember-December 194437Clippings194437Arthur Vandenberg correspondence194537Maddy papers2 foldersJanuary-February 21 194537Maddy testimony, House Interstate Commerce CommitteeFebruary 22, 194537Maddy papers4 foldersFebruary 23-December 31, 194537General letters of support2 folders194537Maddy notes, circa194537Clippings194537National Association of Broadcasters, AFM bulletins and related printed1942-194537Requests for booklet, "Young America Fights for Constitutional Rights,"November 1945-January 194637Committee for Constitutional Government, corresp.1946-194837Maddy papersJanuary-February 15, 194637General letters of supportJanuary-February 15, 194637Maddy papersFebruary 16-March 31, 194637General letters of supportFebruary 16-March 31, 194637Maddy papersApril-December 194637General letters of supportApril-December 194637Clippings194637Maddy papersJanuary-February 17, 194737Maddy testimony, House Committee on Education and LaborFebruary 18, 194737Maddy papers2 foldersFebruary 18-December 31, 194737Clippings194737Printed hearings and report of House Committee on Education and LaborJune 27-August 7, 194738Coronet magazine article, papers reOctober 1947-March 194838Maddy history of controversy1947-194838Maddy testimony, House Committee on Education and LaborJanuary 16, 194838Maddy papers194838Clippings194838Maddy papers194938Maddy papersOctober 1952-April 13, 195338Maddy testimony, Senate Committee on Labor and Public WelfareApril 14, 195338Printed hearingsSenate Labor and Public Welfare CommitteeApril 14-21, 195338House Education and Labor CommitteeApril 17-22, 195338Maddy papersApril 18-December 31, 195338Maddy papers1954-195738Maddy papersJanuary-June 3, 195838Scrapbook on Mackinac Bridge ControversyMay 7, 195838Maddy testimony, House Education and Labor CommitteeJune 3, 195838Maddy papersJune 4-December 31, 195838Clippings1953-1958undated38Miscellaneous printed1946-1952undated38ReconciliationMaddy/Gillis papers1959-196138Maddy papers1962-196438Permission for Chicago concert196838Clippings1962-198438Lea Act1978-198438Music Performance Trust Fund198738United Automobile Workers, music scholarship1962-196438
    Publicity/Promotion1939-1972

    "Publicity/Promotion" (13), 1939-1972, covers both staff and commercial endeavors. The former concern Interlochen's own print, film, and recording efforts. Correspondence, manuscript writings, press releases, and publications, 1946-1971, are included. For earlier publicity efforts, researchers should check Chronological Camp files, 1935-1945 under "Publicity." They will also find the Publications and Scrapbooks series useful.

    The commercial section deals with outside film and television productions about Interlochen. It includes documentation on the Paramount movie There's Magic in Music (1940), and the "Today" Show telecast (1963). The former includes correspondence, plot outlines, publicity releases, and scripts, and alludes to the war's effect on studio film making.

    Internal productionsPrintNorma Lee Browning (Ogg) correspondence194638Maddy correspondence1947-194838Maddy correspondence19611963-196538Correspondence1966-197138Stories (Hollingsworth, Bickering, Norton, and others), circa1931-194038Comments about Camp, circa1930s-1970s38Leonard de Vries account1952-195638

    (see Box 2: Chrono.-Camp History)

    Camper article for Instrumentalist196438Press releases and articles1941-196838Publicity for Academy1960-196838Printed promotional materials1940-196038
    MoviesCamp, papers1944-195038Camp, papers1951-195638Scripts19471950undated38String Class Teaching at Interlochen, Ogg/Browning scene outline, circa196038Academy, papers1962-196338Script, "The Three R's and the Arts" (Academy)196338Maddy Memorial fund-raiser196638"Michigan and the Arts,"196838RCA Recording Division (Lucy Johnson-Van Cliburn performance)1964-196538
    Commercial productions38MoviesParamount, "There's Magic in Music"History38Papers193938Papers6 folders1940-194438Scriptundated38Alumni lettersAugust-September 194138Clippings1940-194138Ann Ronell/Lester CowanCorrespondence1941-195638Papers re proposed TV film1960-1961381963-1964, 1972 correspondence1963-197238Jesse Lasky (MGM), correspondence1953-195538Walt Disney Productions (also TV), Gillis/Maddy correspondence1959-196238Finnegan Pinchuk Co., "Moving Target," permission request1986-198738TV

    (see also movies)

    WWTV (Cadillac) 1954 (Camp) and 1962 (Maddy)1954-196238CBS News196238Today Show (Hugh Downs)1962-196438French television1964-196538Canadian television196538WOOD (Grand Rapids) (Maddy)196738Westinghouse TV (WJZ)196838
    Videotape (Communications Center Promotion)197238
    Special Events1948-1989

    "Special Events" (14), 1948-1989, documents activities which the Office of Special Events now handles: post-camp conferences, off-campus performances, and domestic visitors. Post-camp conference materials, 1951-1989, include correspondence on planning and arrangements as well as informational literature.

    Similar materials characterize the off-campus performances by Interlochen groups. They are divided into appearances by the Camp, 1948-1972, and Academy, 1963-88. The former covers trips to the Mackinac Bridge dedication, 1958 (see Petrillo controversy), and the White House, 1962. The Academy portion includes in-state outreach tours sponsored by the Michigan Council for the Arts as well as appearances at Lincoln Center (1964), Carnegie Hall (1969), and Kennedy Center (1972) and a Choir trip to Denmark (1973). Information on earlier tours can be found in the Chronological Camp files, 1935-1945 while foreign visitors are covered under "International" (8) and "International Society of Music Educators" (9) in this sub-subseries.

    Post-Camp conferencesAccordions1958-1963197439AdultPapers1951-197339Printed1951-198939American Recorder Society1967197139Bands1958-197439Chamber Music Conference1969-197039Chamber Music America19781984-198539Lutheran Ashram1948-194939Michigan Square Dance Leaders Association1962-196639Red Cross Aquatic School1968-197039String-Class Teaching Workshop1966-197139Writers Conference196839Trips/special appearancesCampGrand Rapids194839Mackinac Bridge195839

    (see Petrillo controversy)

    Dearborn196239White House2 folders196239Dearborn196339Detroit (NEA convention)196339Luci Johnson appearance196439Watergate (Washington, D.C.)196439Ann Arbor196939
    Joint (Camp and Academy)Miscellaneous1963-197239New York World's Fair (proposed)1964-196539Highlight summary1967-197239AcademyPhiladelphia (MENC convention) and New York (Lincoln Center)1963-196439Chicago and Richmond, Ind.196540

    (See also Box 1)

    Michigan and Illinois196640Eastern and Canada196640Eastern and Canada196740Miscellaneous1963-196840Chicago1968-196940Carnegie Hall1969-197040Miscellaneous1969-197040White House Conference on Children and Youth197040Columbia, Md., and Washington (Kennedy Center)2 folders197240Miscellaneous1971-197240Denmark (Choir)197340Miscellaneous1973-197640Detroit197640Ann Arbor (Messiah)1967-197740Detroit Symphony Orchestra, Schubert Festival197840Miscellaneous1978-198840Interlochen Outreach (Michigan Council of the Arts), printed programs1979-198840
    Visitors (Domestic)

    (see also Box 47; for International see Boxes 33 and 34)

    General19481961-197240Concerts1966-197440Conventions and meetings1961-197740
    Special Events Office, job analyses and reports1965-196640
    Traverse City

    "Traverse City" (15), 1958-1969, offers fragmentary materials on Interlochen's relations with its home area. Included is a geography master's thesis (1965) on the Camp's economic impact. More detailed information about the relations with the Grand Traverse region can be found in "Fund Raising" (5), "Michigan" (10), and "U. S. Government" (16) in this sub-subseries as well as the Giddings and Tremaine correspondence in the Chronological Camp files, 1935-1966 and the Boards Control series.

    Rotary1960-196340General1958-196940Masters thesis re Camp's economic impact on the area, circa196540
    United States Government1934-1977

    Dealings with federal officials and units are detailed in "United States Government"(16), 1934-1977. Matters covered include the Federal Music Project (1937-1948), operational problems during World War II, postwar construction projects, the Jet Air Base controversy (1954-1957), and the HEW grant for an Honors Musicianship Project (1964-1968). Michigan congressional leaders are well represented in the correspondence. On federal government matters, researchers will also want to consult "International" (8) and "Petrillo controversy" (12) as well as the Giddings and Tremaine correspondence in the Chronological Camp files, 1935-1966.

    General correspondence6 folders1934-197740Federal Music Project (WPA)1937-194840Jet Air Base controversyHistory1954-195540Papers2 foldersMarch-December 195440Report, Traverse City presentation195441Report, documentation of Traverse City versus Cadillac sites195541Papers1955-195641Scrapbook, clippings1955-195741Clippings (loose)1955-195641Curriculum study grant (HEW)2 folders1964-196841

    (see also Box 24)

    University of Michigan

    "University of Michigan" (17), mainly 1940-1970, concerns Interlochen's relations with its major academic partner. Most pertains to the Camp, especially the University/All State Division, from 1942 on. It also covers the university financial loan to the Camp (1953) when a major building (the hotel) needed replacement. Correspondence with university officials as well as draft and final agreements and reports of the Director of the University Division are included. Researchers will again find the Giddings and Tremaine correspondence in the Chronological Camp files (I-C and D) most helpful.

    History of Camp relationship (by Maddy)196041Correspondence and agreements5 folders19301940-197041Summer Science Training Program1962-196341Director's reports, University Division3 folders1950-196341
    Camp1928-1989

    Camp sub-subseries, 1928-1989, offers detailed operational materials on the summer program. Coverage is best from the late 1930's through late 1960's and includes much mimeographed material. Rosters, forms, memos, statistics, reports, and similar type items predominate while correspondence is sparse. Unit and divisional reports, constituting approximately half the total sub-subseries, give elaborate accounts of non-musical activities at the Camp, but are confined almost exclusively to the 1960's and are heavily oriented to girls' division. The planning and recommendation files give the reflective comments of staff members on their experiences with programs and suggestions for the future.

    The materials present a variety of potential research uses. While application forms reflect changing admission standards, enrollment statistics (compiled by Maddy) and rosters indicate how many were in Camp, who they were, and what they did. Course materials include items on Maddy's string instrument workshop, to which he devoted increasing emphasis as bands grew in popularity on the high school level. Informational materials indicate the parameters in which students, staff, and faculty were expected to operate. Student government items are also included. The sub-subseries serves as an especially useful supplement to the Chronological Camp files, 1935-1966

    Application formsHigh school2 folders1928-198941Junior1944-198941Intermediate1944-198941All State195741College/University1941-196641Calendars/class schedulesGeneral2 folders1935-196741High school1934-198941Intermediate1948-198941Junior1960-196941Orchestra (pre-college)1955-197241College/University1938-196041Camper and Parent informationEquipment lists1939-196141General1946-197241Non-college1946-196441College1934-196141Course materialsElectronics1947-194841Music laboratory1958-196041Opera19461954196341Strings (Maddy)Violin and Violas1944194941String class teaching1957-196141

    (see also Box 38 Interlochen-Publicity-Movies)

    String Workshop196541
    Directors' meeting, minutes198541Enrollment statistics and analyses (Maddy)General1938-194742Student application analysis, circa194742General3 folders1948-196542FacultyInstructions and memos1947-197242Lists of1945-196942Interlochen List (recommended numbers)Correspondence1946-195242Printed1946194719491953196342Library (music, instruments and equipment)Orchestra library to date193442American works, 1940(?)42Papers3 folders1945-196642Music performed 1967-1968 (American) and 19761967-197642Catalogues1956-195842Medical1945196142ProgramsFirst assemblies1962-196442Final assemblies1948-196542Concerts1946-198242Reports and recommendationsGeneral3 folders1938-196542ActivitiesCraftsCoordinator5 folders1961-196842High School Girls2 folders1965-196842Intermediate Girls1965-196642Junior Girls1965-196642Junior-Intermediate Boys2 folders1960-196842RecreationHigh School Girls196042High School Girls6 folders1961-196643Intermediate GirlsSection I1962-196543Section II2 folders1963-196443Theatre Arts (Drama)2 folders1963-196643WaterfrontHigh School Girls4 folders1962-1965196843Junior Girls, 1966DivisionsRecreation High School Boys196443High School GirlsGeneral (materials distributed)196643Section II1963-196643Section III4 folders19611964-196743Intermediate GirlsSection II2 folders1964196643Junior Girls196644UniversityAll StateGeneral1965-196744Girls196544Dean of Women1960-196744MiscellaneousCamp Hostess197444Information Center197444Roster of Campers4 folders1933-661987-198944Scholarship information1940-1969Application forms1937-1956 (scattered)44StaffMemos and instructions1951-197244Counselors' manualsGeneral1949-196244Girls Divisions1952196144StudentGovernment1946-196644Poems and songsundated44Transportation (rail)1947-196144
    Academy1940-1976

    "Alumni" (1), 1940-1976, begins with directories and lists of distinguished graduates, but most of it relates to Alumni surveys, 1940-1942, and attempts to form alumni organizations, beginning in 1941 through the mid 1970's. The surveys were done to involve graduates, particularly in recruiting students and funding scholarships. The surveys for 1940 and 1942 are virtually complete except for the "A" section of the alphabet, where only scattered returns survive. They give good information about the respondents, some of whom became quite distinguished in their fields.

    At the time of the surveys, an attempt was made to establish alumni clubs, and periodically thereafter, similar efforts were made, largely in conjunction with fund raising, but it was not until the mid 1960's that the present Alumni Association was formed. Notes, minutes, and other materials document its planning, organization, and work. For more recent activities, researchers should consult the Sheryl Szady segment of the Post-Maddy Administrators series.

    Planning papersGeneral, circa2 folders1946-196244Ten Hoor, MartinCorrespondence3 folders1956-196844"Thoughts on" proposal195744"Prospectus"195844Reactions to Prospectus1958-195945Headmastership correspondence1958-195945ImplementationCary Potter reportMay, 195945Preliminary surveyJune-July, 1959Committee meetingJune 195945George Ebeling correspondence45Clyde Vroman working files8 folders45ReportJuly 195945Supplement to report, interviews conducted45Curriculum conferenceJuly 195945Progress reportAugust 195945Progress reportOctober 195945Curriculum conference papers1959-196045Joseph W. Cohen, consultant196045Gillis papers on development and funding1960-196145Curriculum conference196145W. Clement Stone's thoughtsSeptember 196145Preliminary report (Ralph West)November 196145Maddy planning files, circa1960-1962Academy bulletins45Buildings and equipmentAudio-visual45Classroom building45General45Science Laboratories-cost analysis45Calendar Study45Educating the gifted child, articles45Faculty45Finances45Headmaster45Student recruitment and enrollmentGeneral1960-196245Form responses196245OperationGeneralArticles of Incorporation1960196345Maddy papers1962-196545

    (See also Box 21-Speeches)

    Faculty1962-196545Guest conductors1963-196445Repertoire lists1963-196645
    Opening convocationSeptember 196245Yearly operating files16 folders1962-197645Reports for Independent Schools AssociationSelf EvaluationFebruary 16-18, 197687Committee reportFebruary 16-19, 197687
    College

    Interlochen (Subject) College of Creative Arts contains planning materials, 1966-1968. They include the prospectus for the college, which Maddy submitted a month before his death, and subsequent follow-up materials. Researchers should also check the indexed correspondence for Alden Dow, who did the architectural planning for the college, as well as the Post-Maddy Administrators Karl Haas and Boards Trustees sub-subseries during the late 1960's and early 1970's.

    The yearly operational files, 1962-1976, include mainly mimeographed items but also some correspondence and, in the early years, Maddy notes. Information on off-campus tours can be found in Interlochen "Special Events" of this sub-subseries, and Maddy speeches in Subject Maddy "Publications." Researchers interested in the history of the Academy should also consult Printed-Articles, Scrapbooks, Post-Maddy Administrators, especially Haas and Jacobi, Boards-Trustees, and Post-Maddy Administrators.

    Prospectus (by Maddy)March, 196687Papers1967-196887Development fund, printed1967-196887
    Later Acquisition1930-2005

    The second subseries, 1930-2003, Later Acquisition, contains records that were received in the year 2005 as an addition to the existing record group. Some duplication of materials from the previous accession may exist. However, an effort was made to eliminate such files, and researchers are encouraged to check this subseries for records that are believed to be unique regarding topics such as the early development of the camp, Maddy's correspondence, and Maddy's funeral. There are also materials relating to events that occurred at a later date than are represented in the files belonging to the earlier acquisition. Especially interesting are the Special Events and News Releases subseries.

    AlumniCorrespondence from "distinguished alumni"198487Early formation of alumni association1965-196787CampusList of Buildings196687IAA Survey Report195987Estimate of Physical Needs for Establishment of Interlochen Arts Academy195987Gardner Group IT Report200087Long Range Plan for the Campus199187Master Plan for the Campus199187Program and Design Criteria: Music Building, Theatre Arts Building, Campus Center199487Course descriptions/schedulesIAA Class Schedule1996-199787IAA Course Description and Fee Schedule1997-199887IAA Course Description and Fee Schedule1999-200087IAA Class Schedule1999-200087CurriculumCurricular Improvement Project Report1965-196887Preliminary Report on Curriculum Conference196087Meeting with consultants195987Misc. interviews regarding the curriculum1959Lawrence Conrey, Science87Paul Hunsicker, Physical Education87Professor Hutchroft, Industrial Arts87Phil Jones, Mathematics87William Merhab, Foreign Languages87Nicholas Schreibner, Principal, Ann Arbor High School87Kenneth Vance, Library Consultant87Scott Westerman, Social Sciences87Fred Wolcott, Language Arts87Schedule of Curriculum Committee Meetings196187Correspondence with John Lemmer, consultant196187Education Policy CommitteeCorrespondence with Donald Currie and Charlotte Roe198787Sabbatical leave memos from Jacobi1982-198687Statement of Philosophy and relevant correspondence circa197587ESM (unidentified ruling body) minutesThru5/9/20018/1/200187Thru8/1/20011/9/200287Thru1/9/20027/31/200287Fact Sheets1990-199687Faculty/Staff Handbooks1991-1992871997-199887Faculty/Staff Lists1991-199387Grainger, PercyInternational Percy Grainger Society, board meeting minutes200087Publications of the Friends of Percy Grainger1999200087Henethorne, MargaretCorrespondence1987-199188Materials compiled as a working manual for assistant to the president, (left in original order)2 folders88Honoraria88Interlochen Arts Academy self-studies2 folders198388199088199488199888200088Interlochen Center for the Arts: Chapter 10 of the book Profiles of Excellence: Achieving Success in the Nonprofit Sector1991International Arts Festival4 folders1998-199988Issuance of financial bonds for campus renovations1996Bond resolutions88Correspondence from the law office of Miller, Canfield, Paddock, and Stone regarding resolutions88Campus renovation project88Maddy, JoesephCorrespondenceCapital Films88Chamber of Commerce, Traverse City88Complimentary letters88Complimentary letters-Prelude88Complimentary letters-received after Prelude88Bram notes88Browning, Norma Lee, Letter from Barbara Maddy88Family crest88Federation of Music Clubs, Illinois88Federation of Music Clubs, Michigan88Federation of Music Clubs, National88Federation of Music Clubs, Ohio88Federation of Music Clubs, Wisconsin88Federation of Music Clubs195989Ferguson memorial fund89Final camper list requests89General89Giddings estate89Gonzales89Guest conductors89Guests expected89Guests invited89Hanover Bank89Health department89Historic duplicates89Ogg, Russel89Jet air base89Kresge scholarships89Letters from foreign students89Notes89Music Educators National Conference2 folders89Michigan Music Educators Association89Michigan, State of89Music camps, other89National Music Council89Letters announcing Philips resignation89Pre and post camp groups89Publicity and promotion89Radio station89Radio, National Music Camp89Requests, miscellaneous89Scholarships89Season pass answers89Camp senate195989Sibelius letters89Stace -- to do89String Teachers Conference89Ten Hoor89Typewriters89United States Government89University of Michigan89West Michigan Tourist and Resort Association89White House89MiscellaneousBiographical data for the Encyclopedia of American History89Funeral register89Letters sent in condolence to Mrs. Maddy89Letters Sent to Maddy in Hospital89License to operate the camp89Mrs. Maddy's replies to condolence letters89WritingsAutobiographical manuscript89Miscellaneous89Speeches89Michigan, State ofCorrespondence with Department of Conservation regarding purchase of State lands and road construction89News ReleasesNews Releases, chronological1980-19828919881989891991-1994891995-199790News Releases, alphabeticalAchievement program90Awards1981-198290Arts School Network90Arts awards90Better Homes and Gardens90Brahms90Chamber music90College / Academy90College admissions statistics90Composer spectacular90Creative writing90Dance division90Detroit Symphony Orchestra90Drama division90Ecology90Entertainment Guide90Festival198290Four Fathers90Grants90IAA staff90Lyric Opera of Northern Michigan90Math department90Motor News90Murphy, Bob90National Federation of Music Clubs90National Merit Scholarship Competition90National Youth Writing Competition90Organ department90Outreach1981-198290Parks, Rosa90Percussion day90Playwright Project90Presidential scholars90Schutz, Heinrich90Seniors198290Special Contest Series90Success Magazine90Suzuki Magazine90Traverse the Magazine90Visual arts90Weekender90WIAA90Pathfinder schoolFamily Handbook2000-200190Kaleidoscope (Newsletter)200090Petrillo/Mackinaw Bridge controversy195890President's reports1945-196090

    (incomplete)

    1945-1947901952-195890196090
    ReportsAssessment of Institutional Advancement for the Interlochen Center for the Arts199290Interlochen Center for the Arts, annual reports4 folders1990-1992200190Interlochen Center for the Arts Information Technology Consulting Report, Executive Summary199890Report for College Admissions1993199690Report on the Findings and Recommendations of the City/County Task Force on the Arts198590Special EventsGeneral Motors National Concerto Competition199390Interlochen Symposium198790Jacobi Dinner1990

    (left in original order)

    Publicity90Photos90Logistics90Memos re: Presidents Club and Corporate Council, etc.90Steuben/ Lansing Moore purchase orders90Correspondence (Boal)90Guest lists90Press clippings90
    Milliken Dinner1981

    (left in original order)

    Supporting documentation91CorrespondenceJacobi91Pre-dinner91Post-dinner91Congratulatory letters for Milliken91Meeting minutes regarding: dinner91Guest lists91Ballroom information/plans91Programs, invitations, script91Film documentation91Press release91Financial91
    Orchestra Tour1986

    (left in original order)

    Planning91Itinerary91Contracts91Debriefing and budget91Seating invitations91Balian reception91Washington correspondence91New York correspondence91Other performances91Support and thank yous91Publicity, newspaper articles, and photos91
    Osterlin Gala1993Program91Invitation91Photographs91Pacific Rim Tour199791Richard Riley visit200091Karol Syzmanowski sculpture presentation198091Yanni visit199691
    TolleyCorrespondenceTo3 folders1993-199591From2 folders1994199591Strategic Planning Update200091
    Post-Maddy Administrators1958-1995

    The fourth series, Post-Maddy Administrators, contains records of individuals who knew and worked with Maddy and held important positions from the expansion of the late 1950's through 1989. It consists of six subseries: Donald Gillis, director of development (1958-1962), John A. Merrill, board secretary, administrative committee chairman, and vice president (1959-1969), Margaret A. "Peg" Stace, Maddy's long-time secretary (1942-1966) and eventual corporate secretary (1967-1973), George Wilson, director of the Camp (1957-1979) and acting president (1970-1971), Karl Haas, president (1967-1970), and Roger Jacobi, board secretary and director of personnel (1956-1959), director of the university division (1968-1971), and president (1971-1989). Researchers should also check the Subject and Boards series for correspondence and other information on their roles. Also included in the subseries are files that cover the period from 1989 on and the new generation of Interlochen leaders, who lacked ties to Maddy: Dean Boal, who succeeded Jacobi as president, Sheryl Szady, who played an important role in alumni activities, Richard Odell succeeding Boal, and Edward Downing succeeding Odell. Boal documents the first half of the Boal presidency (1989-1992) Szady the second half as well as the transition to the administration of Richard Odell (1992-1995). Odell covers his term of office (1995-1998) and Downing covers the first two years of his term (1998-2003).

    Donald Gillis

    Donald Gillis, 1954-1962, contains personal background information and correspondence, including on his activities as a composer, but the great bulk concerns his administrative duties at Interlochen, 1958-1962. Much of the latter pertains to his leadership of the American Opera Theatre and publication of the Catalogue of American Operas. Included are correspondence, planning and promotional materials, and reports. The subject files detail his other activities at Interlochen. Researchers should also consult the Subject series for his role in planning the Academy as well as Interlochen: "Broadcasting," "Fund raising," "Interlochen Press," and the "Petrillo controversy." His later views on the institution, 1973-1977, can be found in the "Personal" section of Roger Jacobi in this subseries (F).

    PersonalArticles and biographical46Correspondence filesGeneral1958-196246Downs, Hugh1958-196146Snapp, Ken1960-196146AdministrationMaddy correspondence1954-196146Trustees correspondenceGeneral1958-196146Gordon, Britton1960-196146Trip reports (includes Maddy)1959-196146Inter-office memoranda1959-196146OperaAmerican Opera TheatrePlanningGeneral1958-196146Reports1959-196046PromotionGeneral1958-196046Press1958-195946ASCAP (Paul Cunningham)1958-196146Balendonck, Marie195946Broadcast Music Inc. (Oliver Daniel)1958-196146Chappell & Co. (Irving Brown)1958-196146Dunham, Edwin (NBC)1959-196046Hauser, Arthur (Theodore Presser Co.)1958-196046Johnson, Thor1958-196046Korn, Richard1958-196246McWhorter, Charles K.1957-196146Mennin, Peter1959-196146Metropolitan Opera195946Music Clubs, National Federation of1959-196146National Broadcasting Co.1958-195946Peerce, Jan1959-196146Opera, general1959-196147Catalogue of Amer. Operas (Interlochen Press)Correspondence2 folders1958-196147Corrections for future edition, largely printed, circa2 folders1958-195947Other SubjectsAmerican Federation of Musicians1958-196147BroadcastingGeneral1960-196247NetworksAmerican Broadcasting Co.1959-196247Columbia Broadcasting System196147National Broadcasting Co.1959-196247StationsChicago (WGN)196147Detroit (WDTM)196147East Lansing (WKAR)196147New York (WNYC)1960-196147Other stationsPhiladelphia (WFLN)196147TelevisionGeneral1959-196147Michigan Educational1958-196047Thomas, Danny196147CampHarpsichords (George H. Lucktenberg)1959-196147Miscellaneous1958-196147Photography Dept. (Frederick Fennell)1958-196147Composers-generalCohen, Joel1959-196147Fahnestock, Karol1960-196147Fund raisingGeneral1959-196147ASCAP1960-196247Balendonck, Marie1959-196147Lyon & Healy (Harp Bldg.)196047Toscanini, Walter1958-196147Glen Arts Theatre1961-196247Interlochen Press (Lyman Starr)1958-196147International1959-196147Publicity/PromotionGeneral1959-196147MoviesCamper stories196147Freedland, George196147U.S.I.A.1960-196247Cole, Edward196147Gonzales, Donald1959-196147Marshall, Edwin1959-196247National Music Council1959-196147Salinger, Pierre1961-196247United Press International1960-196147Recordings1960-196147Special EventsPost-camp conferencesDalley, Orien47Composers WorkshopGerber, Edward1959-196147Pelletier, Wilfred and Rose1959-196147Special appearancesShriner, Herb1959-196147U.S. Air Force1959-196147VisitorsInvitations declined-general1958-196147Creston, Paul196147Fiedler, Arthur1960-196147Haas, Karl1960-196147Michigan Composers League (proposed meeting)196047Traverse City196147Wallenstein, Alfred196147
    John Merrill1966-1969

    The John Merrill subseries contains correspondence and reports covering his later roles, 1966-1969, as chairman of the administrative committee and vice president. It should be supplemented by his materials in the Haas subseries and in the Boards Trustees series.

    Administrative Committee1966-196747Vice Presidential1966-196947Report to the President and Trustees196947
    Margaret "Peg" Stace1966-1979

    Margaret A. "Peg" Stace consists of a small file of biographical information and post-Maddy correspondence, 1966-1979. Following her retirement as Board Secretary in 1973, much of her letters deal with inquiries about the history of Interlochen and its records. The Chronological Camp files includes her earlier correspondence (1941-1966) while the Boards Trustees contains information on both her earlier and later roles, especially as Board secretary, 1967-1973. When Maddy grew increasingly preoccupied with expansion, she assumed much of the responsibility for maintaining contact with organizations, especially women's groups, which traditionally supported Interlochen, so researchers will also find her correspondence in Subject Interlochen "Organizations."

    General1966-197347Interlochen archives and history1957-197947
    George Wilson1958-1978

    George Wilson, mainly 1958-1978, consists of biographical/professional information and Interlochen administrative records, most of which he personally selected for placement here. A small file of materials concerns his service as Interim President (1970-1971), and others deal with his association with Presidents Joseph Maddy, Karl Haas, and Roger Jacobi. The great majority of the records consist of correspondence, minutes, reports, and similar items on the operation of the National Music Camp, 1957-1979, especially its challenge system. Information is also supplied on the development of similar music camps abroad, particularly in the Philippines. On his directorship of the Ann Arbor Symphony Orchestra, 1957-1961, researchers should consult Subject series under Madd "Civic Music" and on his leadership of the Camp, Haas and Jacobi in this series and the Boards Trustees series. For his oral history reminiscences of Interlochen, they should check the Sound Recordings series.

    PersonalBiographical47Articles/publications1958-197247Programs (printed)1963-197547OrganizationsCollege Band Directors National Association rental library committee1959-196248Jackson (Mich.) Symphony1958-196048Michigan Orchestra Association1958-197648Northwestern Michigan Symphony Orchestra1965-196748Miscellaneous1956-196448AdministrationMaddy1934-196148Haas1968-196948Student conduct policy1969-197048Interim presidency1970-197148Reports1971-197848Miscellaneous1960-197948Camp operationGeneral correspondence1961-197848Challenge system8 folders1958-197348Creativity study1966-197048Instrument repair proposals1967-197248Jazz program1972-197348Reports and recommendations1964-196548Scholarships1956-197048Staff meetings (pre-Camp)2 folders1963-197848Suzuki proposal197048Television appearances196848Trips (promotional)1974-197748University Division1967-197348International (music camps)General1967-197048Japan1974-197548PhilippinesProposal for Center for the Arts/Music Camp (by Wilson) (revised September 1973)196948Correspondence (including Imelda Marcos visit in 1973)1972-197848Articles (printed)1973-198448Portugal197348Virgin Islandsundated48
    Karl Haas1967-1970

    The Karl Haas subseries covers his appointment, inauguration, and presidency of Interlochen, 1967-1970. Included are biographical materials, newspaper articles, and letters. The presidential portion includes alphabetical correspondence with individuals and organizations outside Interlochen, many of whom are quite distinguished. The administrative and subject sections of the presidential files relate largely to internal matters. They include letters from Merrill and Stace as well as files on fund raising, the Academy, Camp, and proposed College. For Haas' early relationship to Interlochen, researchers should consult the Michigan Cultural Commission and Michigan Council for the Arts files in the Subject series and Advisory Board portion of the Boards series. The Boards Trustees files also contain information on his presidency and resignation. Subsequent attempts to restore his ties to Interlochen can be found in Jacobi in this series and in Post-Maddy Administrators Boal.

    Biographical48AppointmentCorrespondenceMarch-April 196748PrintedApril-September, 196748InaugurationPlanning materialsSeptember-October, 196748Regrets correspondence, A-L3 folders48Regrets correspondence, M-Z2 folders49Ceremony and addressNovember 196949PresidencyAdministrationMerrill communicationsPre-inaugurationApril-October, 196749Post-inaugurationDecember 1967-December 196949PublicityPress releases1967-197049Clippings1967-197049Alphabetical correspondence filesGeneral, A-Z4 folders49Baldwin Piano Company1968-196949Bernstein, Leonard1967-196949Brubeck, David1967-196949Casals, Pablo1967-196949Cox, Claire1967-196949Detroit Symphony Orchestra (Sixteen Ehrling)1968-197049Dow Associates196949Foss, Luis (Buffalo Philharmonic)1968-196949Gehrkens, Karl (re Camp history)196849Greenleaf family196849Griffin, Robert196949Hart, Philip1968-196949Kay, Ulysses (Broadcast Music, Inc.)1967-196949Kunzel, Erich1969-197049Marcus, Adele1967-196849Michigan State Council for the Arts1967-197049Milhaud, Darius1967-196949Milliken, William1968-196949Morot-Sir, EdouardGeneral1967-196949French cultural award to HaasMarch 196949Music Educators National Conference1968-196949Nelson, Boris (U. of Toledo)1967-196949Nissman, Barbara (pianist)1969-197049Romney, George and Lenore1967-196949Schneider, Alexander1967-197049Stadler, Maria (soprano)196849Stern, Isaac1967-196949Sturmer-Popescu, Constantin (Child Prodigies, World Music Festival of)196949Surinach, Carlos (composer)1967-196949Syne, Daniel (rabbi)1968-197049U.S. Military Academy String Quartet196949U.S. State Department (re tours)1967-196849Varner, D.B. (Oakland U.)1968-197049Wichers, Willard C. (Netherlands Information Service)1967-196949Subject filesFund raisingMiscellaneousJanuary-July 196849L.I.F.E. CommitteeAugust 1968-August 196949Golden Decade Development FundPapersNovember 1968-March 197049Printed, circa196849AcademyCourses of Study1967-196949Calendar1969-197049Creativity Studies1968-196949Dance Program1969-197049Director's memos (Charles Eilber)1966-197049Faculty (M. Gerard Koch)1967-196949Miscellaneous1967-197049Open Curriculum1969-197049Symposium1968-196949CampMiscellaneous1967-197049University DivisionGeneral1967-197049Opera Workshop1968-196949College196749
    Roger Jacobi1971-1989

    Roger Jacobi, contains mainly materials dealing with his presidency, 1971-1989, which he selected for placement here. His files are divided into five sections: (1) Personal, (2) Interlochen, (3) Academy, (4) Camp, and (5) Alphabetical. Personal (1) documents his biography, honors, publications, and talks, but also includes correspondence of a personal nature with Don Gillis (1973-1977) and Frederick Fennell (1983-1989) about Interlochen and other subjects.

    For further information on Jacobi's work at Interlochen, researchers should also consult the Subject series, especially Campus and the Boards Trustees, particularly during his presidency (his work as Board Secretary, 1956-1959, being largely routine).

    Personal

    Personal (1) documents his biography, honors, publications, and talks, but also includes correspondence of a personal nature with Don Gillis (1973-1977) and Frederick Fennell (1983-1989) about Interlochen and other subjects.

    Biographical50HonorsGeneral1973-198450Phi Mu Alpha (Sinfonia)197250CorrespondenceFennell, Frederick1983-198950Gillis, Don1972-197750Articles and talksArticles (manuscript)undated50Talks3 folders1971-1979198450
    Interlochen (Camp and Academy)

    The Interlochen section (2) covers the institution in general, both Camp and Academy. It begins with a small file of Jacobi's pre-presidential correspondence, 1957-1971, mainly with Maddy, and continues with extensive subject files from his presidency, 1971-1989. Major portions concern Broadcasting (WIAA), Development/Fund-raising, Michigan, Organizations, and Special Programs and Events. Under Michigan, the files of Michigan Council for the Arts contain much information on state aid to Interlochen. The Organizations include the Concerned Citizens for the Arts in Michigan, the National Arts Awards panel of the Educational Testing Service, and the Michigan (Civic) Orchestra Association (which Maddy helped found).

    AdministrationMaddy1957-196550Mrs. Maddy and Stace on his appointment197150Hood, John R. (Ass't to Pres.)1977-198050Bram, Melba (Admin. Ass't and Ass't to Pres.)1976-198550Staff meeting minutes1986-198950Awards-National Governor's Association198550BroadcastingGeneral (Marshall, Edwin, )1973-197550WIAAAdministrationGeneral (Jacobi)1976-198850Director (Edward Catton)197350Station Manager (Thom Paulson)1981-198950Governing/Advisory Board1974-198450FinancialCorporation for Public Broadcasting, grants/reports1976-198950Health, Education and Welfare (U.S.), grant application1976-197850Reports1976-198850State aid (proposed)1977198650

    (see also Michigan)

    Fund raisingCampaigns (listener)1975-198650England tour1988-198950Listener surveys1983-198750Recording services1980-198950Tower (new)2 folders1980-198950
    Celebration '87 (Fischer, Kenneth-University Musical Society)1986-198750Chamber Music-The Quartet Program proposal (Dr. David E. Klein)198450Development/fund raisingVice-president (David Marvel), memos197550Directors papersWarden, George2 folders1974-197750Benson, George1981-198650Long-range Planning Committee2 folders1981-198650Brochure, "Visions Through the Trees,"1971-197250Great Lakes Arts Alliance grants1983-198550Johnson, Thor Memorial Fund1975-197850Kresge Foundation1972-197750Enrollment of minorities1979-198951InternationalHattori, Koh-ichi (Japanese composer)1984-198751Institute for International Education1976-198051Italian students1975-197651Japanese Chamber of Commerce of New York1988-198951Taiwanese students1971-197251Michigan, State of

    (see also Broadcasting:WIAA)

    LegislativeJacobi committee testimony1974-197851Ad-Hoc Advisory Committee on Arts in Education reports (Jack Faxon, Chr.)197551Senate Bill (Faxon Quality Education Plan)197551Power, Rep. Thomas G.1984-198951Governor-Blanchard, James1983-198551

    (see also Organizations:CCMA)

    DepartmentsCommerce re Equity Program grant application198651EducationWIAA (lesson broadcasts),1973-197651Telecommunications proposal197751Planning for the Arts (Barbara Carlisle)1979-198051Management and Budget re proposed prison camp197951Social Services re underprivileged students1977-197951Michigan Council for the ArtsInterlochen OutreachProposal197451Progress reports1974-197551Congress of the Arts197751Affirmative Action compliance1981-198551
    OrganizationsChamber Arts North (Leelenau County)1982-198451Concerned Citizens for the Arts in Michigan or CCMA

    (see also Michigan: Governor)

    Organizational materialsMay-October 198351BylawsNovember 198351Executive committee materialsNovember 1983-April 198851Annual membership minutes1984-198851Executive directors reportsJanuary 1986-April 198851CorrespondenceJanuary 1984-November 198951Miscellaneous reports and memos1983-198751Economic impact study1983-198551Five year strategic plan1986-198751Governor's arts awards4 folders1985-198851Newsletters1984-198951

    (incomplete)

    Educational Testing Service-National Arts Awards (Jacobi Chr. of Music Panel)OrganizationInvitations and acceptancesMay-June, 197951Organizing conferenceJuly 197951MeetingsMusic PanelSeptember 197951National Awards Planning ConferenceNovember 197951Music PanelNovember 1979-January 198051Other PanelsJuly-December 197951Steering CommitteeFebruary 198051National Awards Planning ConferenceMarch 198051Music PanelMarch-April 198051Final reportsApril 198051MiscellaneousAugust 1980-January 198151Michigan Orchestra AssociationBoard of Directors1970-197852Bylaws197852Composer's Project Committee197652Conventions1971-197952

    (incomplete)

    Correspondence1971-197952Interlochen Conference197752Membership lists1976-197752Newsletters ("Sound Waves")1974-197852
    Publicity/promotionDirector (variously called Public Relations, Marketing, and Public Affairs)Worden, George1972-197352Corson, Rosalie1974-197552Gierkey, Charlene1975-197752Harvith, John1977-198052Carus, M. Blouke (Open Court Publishing Co.)1973-198352Frostic, Gwen (Presscraft Papers)1972-198352Lascelle, Joan (proposed book and articles)1977-198152Miscellaneous1972-197352Society of American Travel Writers198552Scholarships (Young Keyboard Artists Association-Nyboer, Dale)1981-198552Special eventsDirector (Noel Sporny)1974-198152AppearancesAll Michigan Youth Symphony (Orien Dalley)-proposed197352Boarshead Theatre (Barbara Carlisle)1983-198552Van Cliburn International Piano CompetitionToradze, Alexander1977-198452Miscellaneous other winners1980-198352Interlochen SymposiumPapers1985-198852Report, "Towards a New Era in Arts Education,"198752VisitorsFord, President and Mrs. Gerald R.1971-197652Leadership Grand Traverse198852Mondale, Mrs. Joan1979-198052
    Academy

    The Academy (3) contains minutes and reports of various committees and academic divisions as well as correspondence with the Head/Director (under Administration) while the Camp (4) is dominated by correspondence with the Director, information on various instructional programs, and correspondence and reports from the University of Michigan/Allstate Division. The Camp portion includes much interchanges with George Wilson under "Administration" and with Paul Boylan under "University of Michigan Division."

    AdministrationDirectorsJacobi message on selection of197252Hood, John R.1975-197752

    (see also Box 50:Interlochen-Admin.-Ass't to Pres.)

    Galbraith, Bruce W.12 folders1977-198852McClure, Martha (includes strategic planning)1988-198952
    Administrative Council minutes1981-198952Accreditation (U. of M.)1970198552
    Admissions2 folders1973-198953Anniversary-25th year video (Christopher Earl)1986-198853Assembly (Recognition)198953AwardsExemplary private school (U.S. Dept. of Education)198453Great American Choral Festival (first place)198353Presidential Scholars in the Arts (students)1979-198953Student award winners (Academy bestowed)1981-198753Braided Theatre project (alumni)1971-197353College admissions, reports on1973-198853Commencement2 folders1977-198853Committees (minutes and reports)CurriculumMay 1985-May 198953Honors1972-198353Professional Relations2 folders1968-198653Curriculum Development project (Lilly Foundation)Papers197453Project evaluation reportAugust 197553Papers197653Project evaluation reportAugust 197653Off-campus visitation reportsAugust 197653Progress reportDecember 197653Project evaluation reportJune 197753DivisionsArtGeneral1974-198953Plans1967198153Dance1977-198953Drama/Theatre Arts1975-198953Liberal Arts1975-198953Literary Arts1973-198953Math/Science1986-198953Music2 folders1974-761979-198953Fees1981-198954Library1977-198954Network of Performing and Visual Arts High SchoolsBackground-report of L.A. conference198154Interlochen conference198254Organizational papers1983-198554Recreation-waterfront rules198654Scholarships-Midland, Mich.1975198454Special EventsMeet the Composers1981-198854Piano Festival1983-198954VisitorsDetroit Public Schools project1982-198354Elderhostel, Michigan regional1982-198354
    Camp

    The Alphabetical (5) correspondence files, 1988-1989, represent the only portion of the Jacobi papers received in their original order (having been left for his successor Dean Boal). They include correspondence with faculty and staff (past and present), members of the Maddy family, Karl Haas, parents, students, friends, and performers. As Jacobi nears retirement, he often reflects on his experiences at Interlochen and as a young instructor in the Ann Arbor public school system.

    Administration-DirectorsWilson, George7 folders1972-1979541981-1984-Director Emeritus54Downing, Edward J.Selection1978541979-198954Directors meetings, minutes1987-198954Admissions1980-198954Anniversary-50th197854

    (see also Box 2: Chrono.-Camp History)

    AssembliesFirst1981-198954Final1985-198954Calendar1979-198954Chamber music series (Ardre-Michel Schub)1983-198554Choral workshop (proposed)-Ward Swingle1985-198654Enrollment1969-198954FacultyMiller, Frank (early)198654Smith, Henry Charles (World Youth Symphony conductor)198154Governor's Scholars program1987-198854Jazz workshopGrant application197254Grant application197354Report197454Recording and Broadcast Services Institute, operation and discontinuance (Harold Boxer)2 folders1985-198954Rules and regulations for campers, a review of1972-197354Student government (All Camp Senate)1986-198954Suzuki Teachers Workshop2 folders1979-198454Teaching load reports1983-198854University Division, including All State Agreements with U. of M.19411970-1985DirectorsList of1941-198254Correspondence and memosAll StateEdward J. Downing1973-197554Donald Sinta1984-198554UniversityBoylan, Paul2 folders1971-197554McCollum, John1976-197754Hurst, Lawrence1977-198254Reports (University and All State)4 folders1971-198355
    Alphabetical correspondence files

    The Alphabetical (5) correspondence files, 1988-1989, represent the only portion of the Jacobi papers received in their original order (having been left for his successor Dean Boal). They include correspondence with faculty and staff (past and present), members of the Maddy family, Karl Haas, parents, students, friends, and performers. As Jacobi nears retirement, he often reflects on his experiences at Interlochen and as a young instructor in the Ann Arbor public school system.

    (including Clare Burns (Treasurer)25 foldersSeptember 1988-August 198955Including Clare Burns (Treasurer)23 foldersSeptember-December 198956
    Boal1989-1995

    Boal contains his correspondence files plus subject files which he considered unneeded for reference by his successor. The correspondence focuses on the administration of Interlochen, including the name change for the Camp and the successful fund-raising necessitated by a cut in state aid. His interchanges with Jacobi show his view of developments at Interlochen, and his correspondence with alumni leader, Gerilyn Turner, reveal the tensions inherent in attempts at institutional change. The subject files emphasize developments at Interlochen's three major units: the radio station (WIAA), the Academy, and the Camp.

    Alphabetical correspondence files52 folders1989-19926672 folders1992-199585Subject filesBiographical85InterlochenBroadcasting (WIAA)AdministrationDirector (Thom Paulson)1990-199185Financial/fund raisingCorporation for Public Broadcasting, grants/reports1990-199185General1990-199185Listener survey199185Recording services1990-199285Publicity/promotionCommunity and Public Relations Department, objectives and goals199285Strategic planning for the nineties2 folders1990-199385AcademyAccreditation (U. of M. report)1990-199285Admissions1992-199385Assemblies (Recognition-student awards)1992-199485Commencement4 folders1990-199386DivisionsArt (Visual)199086Dance1991-199386Drama/Theatre1990-199386Literary Arts199086Math/Science1990-199286Music1990-199386Library1990-199286Special EventsOrchestra, Mozart Tour1990-199286Piano Festival1990-199186CampAdministrationPlans for name change199086Boal address to donors199186Director (Ed Downing)1990-199186Camp (Division) directors1990-199186Staff, pre-Camp meeting199286Admissions study1988-199286AssembliesFirst1990-199186Final (Awards)1990-199286Calendar1990-199186Enrollment1990-199386Reports-Theatre Arts Division2 folders1990199186Student government-All Camp Senate199086Surveys of Campers and potential Campers1990-199186University Division-All State operations199086
    Szady

    Szady documents her role, 1992-1995, as an alumna in campus planning/fund raising and on the board of the Interlochen Alumni Organization. A small file of informational materials covers the transition from the Boal to the Odell administration.

    InterlochenAlumni OrganizationCorrespondence1992-199586Bylaw revision1992-199386Membership, lists and biographies1992-199586Agendas1992-199586Minutes and reports1992-199586Lists of prominent alumni1993199486CommitteesGeneralMembership lists1992-199586Agendas1992-199586Miscellaneous199386SpecificAdvancement, papers1992-199586Finance, reports1993-199586Student Life and Special Projects, minutes and reports (including photo archives)1992-199586Miscellaneous (fund-raising, building, etc.)Campus Master Plan (Sasaki Associates)199186Building Committee, Wellness/Campus Center199386Printed and ephemeraFund raising1992-199686Articles re. Interlochen1993-199586Presidential transition materials1994-199586
    Odell1995-1997

    Odell is composed of alphabetical correspondence files spanning the years from1995-1997.

    Alphabetical correspondence filesA-S20 folders1995-199686S-Z4 folders1995-199686A-Z24 folders1996-199767
    Downing1998-2000

    Downing contains but three folders of correspondence organized chronologically and spanning the period from 1998-2000.

    Chronological correspondence3 folders1998-200067
    Boards1928-89

    The Boards series covers Interlochen's support and governing bodies: Board of Advisors, Board of Control, and Board of Directors/Trustees. Advisory served in a consulting and fund-raising capacity from the Camp's founding until the early 1970's while Control oversaw its financial operations through the payment of early creditors in 1943. The Board of Directors, whose name was officially changed to Trustees in 1944, constituted the official governing body throughout Interlochen's history.

    The Board of Advisors dates to the Camp's founding and continued through World War II. In 1960, as Maddy was planning the Academy, he revived it, and in 1965, expanded it to cover all operations. During the early 1970's, as the Board of Trustees membership was significantly increased, it apparently became moribund. While operating, it provided counsel, recruited students, and in particular, aided fund-raising. In the 1960's, Karl Haas served as its head before becoming president of Interlochen.

    Advisory Board1940-19451960-1971

    The advisory board records consist mainly of correspondence for 1940-1945 and 1960-1969. Maddy and board co-chairs, Peter Dykema and Mrs. R. B. Canfield, dominate the early period, and Maddy, Merrill, and Haas the later. While much of the material relates to meeting arrangements, some elaborates on Interlochen developments as well as personal subjects.

    Letters of advisory board members dealing with non-board business can also be found in the Special Correspondence of the Chronological series. In addition, the Board of Trustees subseries contains correspondence from some former advisory board members (especially from the 1960's). Since fund-raising constituted a major focus of the advisory board throughout its history. researchers should also consult that topic in the Subject Interlochen and Post-Maddy Administrators Haas series.

    Early, correspondence and minutes9 folders1940-194556General letters and membership lists1960-1971Gillis/Maddy1960-196456Maddy/Merrill1965-196756Haas1967-196956Membership list197156Alpha correspondence files1964-1969Beers, Julius1965-196956Bowman, Jon G.1965-196956Boxer, Harold1965-196956Brown, Grant H.1965-196956Cross, Richard E.1964-196856Czukor, Eugene J. and Barbara Britton1967-196956Dello Joio, Norman1965-196756Dow, Alden B.1965-196956Downs, Hugh1965-196756Fink, Mrs. Lou Kent1967-196956Fischer, Gerald J.1966-197056Goldenson, Leonard H.1965-196756Gonzales, Donald J.2 folders1965-197056Griffin, Robert P.1965-196956Haas, Karl1965-196756Hoey, Harry D.1965-196656Honigman, Mrs. Maurice (Nat'l Fed. of Women's Clubs)196756Huey, Arthur S.1965-196956Kresge, Stanley S.1964-196756Klein, David E.1967-196856Lawler, Vanett (MENC)1965-196756McGuire, Whitney S.1964-196956McWhorter, Charles K.1965-196956Megee1965-196856Mott, C.S. Harding1965-196756Muir, Mrs. Clifton (Nat'l Fed. of Music Clubs)1964-196756Nagelvoort, Bernard A.1967-196956Neuman, Herman1965-196856Ogg, Norma Lee Browning1966-196956Parkman, Francis, Jr.1965-196756Parsons, Mrs. John T.1965-196956Pelletier, Wilfred and Brampton, Rose1965-196856Power, Eugene1965-196856Radock, Michael1966-196956Rector, Gail1965-196956Rolfing, R.C.1965-196756Roller, A. Clyde1965-196956Romney, Mrs. George1965-196956Rosenbaum, Samuel R.1965-196956Stirton, William E.1965-196856Swaney, Russel A.1965-196856Tanis, Preston1965-196856Taylor, Deems1965-196656Ten Hoor, Martin1965-196756Toscanini, Walter1964-196756Van Bodegraven, Paul1965-196656Wilhousky, Peter J.1965-196956Wogan, Robert1965-196756
    Board of Control1928-1942

    While the Board of Advisors provided support, the Board of Control oversaw the Camp's financial operations from 1928 until 1943. It represented the interests of the early creditors, especially the debenture holders, a large proportion of whom came from the Traverse City area. Willis Pennington, from whom the Camp property was purchased, played a major role in its deliberations. When the initial debt was retired in 1943, the Board of Control ceased to exist.

    Its few surviving records, 1928-1942, consist of correspondence, papers, and reports of a financial nature. They include the contractual arrangements for the first Camp broadcasts, 1930. Researchers will also want to consult: the Pennington family materials in Chronological Camp History, the Tremaine correspondence in Chronological Camp files, and the debenture files in Subject Interlochen -"Fund raising."

    Early financial history by C.M. Tremaine195656Papers1928-194256
    Board of Trustees (Directors until 1944)1928-1989

    The Board of Directors/Trustees served as Interlochen's official governing body from its beginning. Rather than being incorporated by the state legislature, Maddy, Giddings, and Pennington formed an association with themselves as members. The members and board were synonymous, but to satisfy legal requirements, the former met annually in advance of the board to add or delete from their number and hear reports. The board session which followed made the policy decisions. Members serving in their capacity on the Board were called Directors until 1944, when the Camp formally altered its name and bylaws, making them Trustees.

    As long as Maddy was president, the Board remained relatively small, and much business, particularly in the early years, was conducted on an informal basis. In 1930, Tremaine replaced Pennington on the three person Board, and a year later, Howard Hanson was added. During the late 1930's and early 1940's, it expanded to seven members with the inclusion of Franklin Dunham (1938), Judith Waller (1941), and J. Joseph Herbert (1942), the latter representing the University of Michigan. In 1943, W. W. Charters replaced Hanson. When first Giddings and then Tremaine became less active, Maddy was able to shape the board more to his liking. Although newcomers were added, it remained less than a dozen members until Maddy's death.

    Following Maddy's passing, the Board underwent a rapid expansion. At Haas' resignation in 1970, it had twenty-two members, and at Jacobi's retirement in 1989, forty-one. As the board grew, much of its work was done by committees. The first, an executive committee, was formed, apparently in the late 1940's, to act in the Board's behalf between meetings. Under Maddy's successors, the number of committees handling specific subjects proliferated.

    The Trustee/Director records are by far the most extensive and complete of the three Interlochen Boards. They are divided into two sections:(1) correspondence and papers, 1928-1988, and (2) minutes and reports, 1930-89. The former includes some supporting documents, and the latter many reports used in decision making.

    Correspondence and papers

    The "correspondence and papers" (1), 1928-1988, is divided chronologically into files for (a) Maddy, 1928-1966, (b) the Administrative Committee, 1966-1967, Haas, 1967-1970, (d) acting president Wilson, 1970-71, and (e) Jacobi, 1971-88. The correspondence consists of exchanges between the Trustees and Interlochen officers, especially the president, president's secretary, treasurer, and board secretary. Everything directly relates to board business. Correspondence of a private nature or about Interlochen in general usually can be found elsewhere.

    The Maddy segment (a), 1928-1966, is organized chronologically except for a concluding alphabetical file for significant Trustees, 1959-1966. The latter includes Roscoe Bonisteel, who became chairman of the board after Maddy's death, and Clement Stone, the philanthropist who endowed the Academy. Other than an occasional letter from Maddy's secretary (Stace) or the Camp treasurer (largely Tremaine), Maddy handled almost all the surviving early Trustee correspondence. Additional communications from Trustees can be found under Giddings and Tremaine in the Chronological Camp files, 1935-1966, and especially under Dunham and Waller in Special Correspondence. With the appointment of Board secretaries Roger Jacobi, 1956-1959, and John Merrill, 1959-1969, correspondence with trustees increased markedly. Merrill was especially active in maintaining contact with them.

    The Administrative Committee portion, 1966-1967, (b) provides much of the surviving documentation on the operation of Interlochen immediately after Maddy's death, including the selection of his successor. It also helps illuminate the fund-raising efforts of the era. Merrill, as committee secretary, and Stace, as a committee member and Maddy's long-time aide, dominate the Trustee correspondence.

    Haas' files, 1967-1970, largely reflect his personal dealings with the board but also include letters from Merrill and Stace. During the Haas presidency, six new trustees were appointed, and the President of the Interlochen Alumni Association (David E. Klein until 1970) became an ex officio member. Two of the seven new trustees, Klein and Eugene Power, previously served with Haas on the Advisory Board.

    Files for the Wilson acting presidency (d), 1970-1971, contain some of the best information available on the administration of Interlochen between Haas' resignation and Jacobi's appointment. They include materials on the reaction to the resignation, particularly at the Academy, and the presidential selection process.

    The Jacobi files (e), 1971-1988, are alphabetically organized, reflecting the expansion of the board under his presidency. Correspondence from his first few months in office is lacking, and the files of many important board members end currently in 1984, including with Clement Stone. The latter became chairman upon Roscoe Bonisteel's death in 1972 and played an important role throughout the Jacobi presidency. Jacobi handled almost all the correspondence himself. In a letter to Stone of September 22, 1980, he elaborates on his achievements as president.

    Yearly summary of changes in appointments1928-197957Maddy era1928-1966ChronologicalGeneral papers1928-193957Traverse City bank loans1932-1942194557Commission proposal193957General papers1940-194357Incorporation amendments1943-194457General papers12 folders1944-196657AlphabeticalAttwood, Charles1959-196457Bonisteel, Roscoe O., Sr.1958-196657Cliburn, Van1964-196657Dow, Herbert H.1964-196657Dunham, Franklin1959-196457Gordon, Britton1960-196657Hanson, Howard1956-196657Knuth, William E.1956-196657Marvel, David T.1965-196757Ormandy, Eugene1965-196657Stone, W. ClementMaddyGeneral6 folders1961-196657Gift of Maori carvings1962-196357Press releases on gift to Academy196457Merrill1963-196657Stace1964-196557Administrative Committee1966-1967ChronologicalAd Hoc/Executive Committee1966-196757General (Merrill)1966-196757Presidential candidates196657News releases, presidential selection196757AlphabeticalBelcher, Donald R.57Bonisteel, Roscoe57Cliburn, Van57Dow, Herbert57Gordon, Britton57Hanson, Howard57Knuth, William57Maddy, Mrs. Joseph E.57Marvel, David57Ormandy, Eugene57Stone, ClementMerrill correspondence57Stace correspondence57Haas1967-1970Chronological, general57AlphabeticalAdams, Charles F. (new 1968)58Belcher, Donald R.58Bonisteel, Roscoe O.58Brittain, W.L. (new 1969)58Cliburn, Van58Dow, Herbert H. (executive committee)58Frohlich, Edward P. (new 1968)58Gordon, Britton L. (exec. com.)58Hanson, Howard58Jones, Ernest A. (new 1970)58Klein, David E. (new 1968)58Knuth, William E.58Maddy, Fay58Marvel, David T.58Ormandy, Eugene58Patterson, W. Calvin (new 1968)58Power, Eugene B. (new 1968)58Stone, W. Clement58Vroman, Clyde (exec. com.)58Wallace, James B. (exec. com.)58Warner, Harold G. (new 1968)58Wilson1970-1971SubjectAcademy reaction to Haas resignation58Presidential search committee58Wilson administrative58Ad Hoc Committee58Alphabetical (largely Stace)Bonisteel, Roscoe O.58Cliburn, Van58Maddy, Fay58Stone, W. Clement58Jacobi1971-1988Bass, Robert H.1981-198558Brandel, Paul W.1978-198858Britton, Allen P.2 folders1973-198458Ceccato, Eliana (Mrs. Aldo)1974-197758Cliburn, Van1973-198458Currie, Donald H.1972-198558Dendrinos, Peter C.19681976-198458Dexter, Elaine (Mrs. Louis)1975-198458Dow, Barbara (Mrs. Herbert)198458Easlick, David K.1982-198458Edwards, Esther G.198458Ellis, Charles C.1982-198458Fischer, Gerald J.1979-198858Ford, Cristina (Mrs. Henry II)1974-198058Frolich, Edward P.1972-198458Gonzales, Donald J.1974-198458Gordon, Britton L.2 folders1972-198858Handleman, David1978-198458Hanson, Howard (Emeritus)1972-198158Hayden, Martin S.1978-198358Jones, Ernest A.1972-198458Keith, Damon J.1972-198458Knuth, William E. (Emeritus)198858Luney, William E.1982-198458Maddy, Fay (Emeritus)1973-198558Marvel, David T.1976-198858McCarthy, Walter J., Jr.1981-198858McHenry, Barnabas1984-198658McWhorter, Charles K.2 folders1972-198458Milliken, William G.1980-198458Muer, Charles A.1977-198358Osterlin, Helen197619801983198458Patterson, W. Calvin1982-198658Richardson, Dean E.1975-198459Roe, Charlotte (Mrs. J. Woodward)1973-198459Schwartz, Alan E.1973-1977198359Seabury, Charlene (Mrs. John W.)1978-198359Stone, W. Clement3 folders1971-198459Vance, Ruth (Mrs. Joseph A., Jr.)1976-198359Vititoe, William M.198459Vroman, Clyde1974-198159
    Minutes and reports1930-1989

    "Minutes and reports" (2), 1930-1989, include minutes and supporting documents such as reports of the president and other officers. The Board met at least once a year both as Members and as Trustees and often created separate sets of minutes for each unit it administered: Camp (1928 on), Academy (1961 on), College (1969 on), and Center (1969 on). Beginning in the 1960's, preliminary drafts of minutes are also included. Executive committee minutes, starting in 1947, are fairly extensive, but the work of other committees is poorly documented.

    Maddy began writing his presidential reports in advance for distribution to Board members, a tradition which was continued until Jacobi. The latter made his orally, but starting around 1981, his hand-written notes are extant. Treasurer's reports used by the Board, 1969-88, are located in Subject Interlochen "Financial."

    From 1930 through 1947, only scattered minutes and reports have survived. Although the 1948-1955 file appears complete, it was marked "incomplete." From 1956 through 1963, there is a good run of trustee minutes, including some of its executive committee, and president's reports.

    From November 1963 on, the documentation consists mainly of packets of materials, including minutes, reports, and supporting information, distributed to board meeting participants. Until 1979, the packets are labeled mainly as belonging to George Wilson and thereafter, Roger Jacobi. Also included are materials (1969-1972) gleaned from the Eugene Power papers which help document the transition from Haas to Jacobi, particularly Power's suggestion for Academy governance and his service on the Ad Hoc Committee and the Trustees Study Commission.

    Except for a gap from Wilson's retirement in 1979 until 1981, the packets appear complete. Wilson occasionally made notes in his, and Jacobi included (in the front pockets) his hand-written remarks to the board. The last, July 22, 1989, contains Jacobi's valedictory to the board in which he reviewed his accomplishments as president.

    Meeting materials1930-1947 (scattered)59Meeting minutes and president's reports (incomplete)1948-195559Meeting minutes and reports4 folders1956-196359Meeting packets1963-19891963-June591964-June, August, and November591965-June, August (with Nat'l Adv. Bd.), October (Exec. Com.), and November591966-June, July (with Nat'l Adv. Bd.), and November591967-February (special meeting, incl. report of Maddy Memorial Fund), June (incl. report of Academy director), July 17 (with Nat'l Adv. Bd.), July 18, and November591968-March, August, and November601969-Aug, November (no packet; reports of Merrill and Academy Director only), and December601970-March, May (Wilson and Osterlin copies plus report of Academy Art Dept.), June (special meeting, Wilson and Power copies), August (incl. Academy Director report), November (incl. Academy Director report)60Trustees Study Commission on Academy601970-197160

    (Power)

    Papers60Notebook on organization60Sub-Commission Minutes (all)60Report of Sub-Commission #1 on Faculty60Curriculum and Programs601971-February, April, May, July (incl. report of Academy Dean), December (incl. report of Academy Dean)61Meeting files (Power)1972611972-February, July (incl. Academy report), October (incl. Academy report), and December611973-February, July, and December611974-February, May, July, and October611975-February, July, November (Trustee Development Committee-fund raising), and December611976-February, July, and November (incl. Development Office report)621977-March (incl. Camp and Development Office reports), July, and December (incl. Development Office report)621978-May, July, and December621981-March, May, July, and December621982-March, May, July, and December621983-March, June, July, and December621984-March, June, July, and December631985-February, June, July, and December631986-March, May, July, and December631987-March, May, July, and December641988-March, May, July, and December641989-March, June, and July64
    Previously Restricted Access Files1931-19711938-1970

    The Previously Closed portion series of manuscripts, which opened to researchers in 1998, was selected by Peg Stace, Maddy's long-time assistant, in preparing the bulk of the collection for placement here. It mainly covers the period 1938-1970, emphasizing the Maddy and Haas presidencies. It covers: Maddy's personal/family concerns, administrative disagreements, personnel matters, and reference to ethnic, religious, and racial groups which, though common in the past, are no longer socially acceptable. Most series and many subseries are represented. Major portions concern: Maddy's communications with Giddings (1939-1953) and Tremaine (1938-1959); Gillis' correspondence (1958-1961); University of Michigan letters, agreements, and reports (1954-1961); and minutes and reports on the Haas presidency, especially his dealings with the Board of Trustees (1967-1970).

    ChronologicalMaddy biographicalReminiscence194665Family1931-196465Aluminum violin1932-193465Camp history-re support of Traverse City in founding195865Camp filesGiddings and Tremaine1938-193965Giddings and Tremaine1939-194065Giddings and Tremaine1940-194165Tremaine1941-194265Largely Tremaine1942-1945651945-1966Giddings65Tremaine65Maddy miscellaneous65Caretaker195065Faculty65StaffStarr65Miscellaneous65Special correspondence (Dunham, Evans, Fennell, Greenleaf, Hanson, Maines, Norton, Painter, and Waller)65SubjectMaddyMusic EducationNational School Orchestra Association195865Publications, speechesAddress at Academy honors convocation196465Publishers1946-194865University of Michigan194065InterlochenFinancial, Mackmiller1961-196265Fund raisingCanfield194365Maddy trip report196265International194665Petrillo controversy194419461958-195965University of MichiganAgreements1954-196265Reports2 folders19541956-196165AcademyPlanning196265OperationMaddy draft memo to director, circa196465University of Michigan Bureau of School Services report on Academy196565Later administrators1958-1970GillisAdministrationMaddy correspondence1958-196265Trustees1960-196165American Opera Theatre-Promotion (General, Dunham, Korn, and Waldrup)1959-196065SubjectAmerican Federation of Musicians195965Camp operation-rules enforcement196165Interlochen Press196165Publicity/Promotion (Gonzales and Marshall),1960-196165MerrillReport to the President196765WilsonAdministrationMaddy1952-196265Haas196965Camp operation-challenge system197065Haas (presidential)AdministrationMerrill communications196965General-failure to use Interlochen theme in Academy concerts196965Subject-AcademyProfessional Relations CommitteeFormation of1968-197065Minutes1968-197065Board filesAdvisory-Klein, David E.1967-196865TrusteesCorrespondence and papersMaddy eraMiscellaneous (Dunham, Knuth, Maddy, and Gillis)1960-196265Stone, W. Clement1962196465Administrative Committee1966-196765HaasKlein, David E.1968-197065Stone, W. Clement196965WilsonReaction to Haas resignation197065Miscellaneous (Bonisteel, Mrs. Maddy, and Stone)1970-197165Jacobi-Mrs. Maddy197865Minutes and reportsPresident's report (Haas)November 196765President's report (Haas)March 196865Minutes of executive session (preliminary draft)November 196865Notes on Britton Gordon comments (Haas?)March, 196965Minutes (executive committee)June 196965Minutes (executive committee and board)August 196965Minutes (executive committee)October 196965President's report (Haas)November 196965Transcript (partial) of meetingDecember 196965Minutes (executive committee)February 197065Minutes (executive session)February 197165
    Printed1928-1989

    The Printed series, 1927-1996, is divided into Interlochen Publications and Published Articles. Both offer good coverage of the Camp and the Academy from their beginnings through the Jacobi presidency (1989) and in some cases beyond. Researchers will find Subject Interlochen"Publicity/Promotion" useful for background information.

    Interlochen publications

    Interlochen Publications, covering mainly 1928-1988, contains sections on (1) the Camp, (2) Interlochen, and (3) the Academy. The Camp (1) features its concert programs (called The Scherzo until 1938) which are complete from 1928 through 1988 (the mimeographed sheets used in 1942 being photocopies). Other major Camp items include announcements for the Allstate and University Divisions and student publications. Interlochen (2) contains informational and promotional materials covering both the Camp and Academy. The Prelude (1938-1989) and posters (mainly 1941-1989) originally dealt only with the Camp but later incorporated the Academy. More recent works combining both include the Crescendo (1964-1993), a newsletter for Interlochen alumni and friends. Academy materials (3) encompass catalogues (1961-1984), student publications (1967-1971), and programs covering performances (1962-1988), commencements (1963-1989), and festivals (mainly 1977-1982).

    Researchers will also find Interlochen publications located elsewhere in the collection. Chronological Camp History contains histories. Subject Interlochen includes promotional materials on "Fund-raising," "Interlochen Press," and "Special Events" while Subject Camp contains items on the Interlochen List and Library Catalogue as well as some programs.

    CampPrograms1928-198368

    (called Scherzo, 1931-40)

    Programs1984-198881

    (1986 missing)

    GeneralAlumni directories1941-19621995199881Concert calendars1948-197881

    (complete)

    Interlochen Arts Festival19641979-199381Miscellaneous, circa2 folders1930-200381Songbook, circa195681Student handbooks,197481Student newsletters/newspapersScherzo2 folders1928-193081Radio Workshop193881Interlude/Prelude1941-194381Junior Division (Boys)1942-194681Miscellaneous1944-194781Opera Guild194581Scherzo1949-196081

    (scattered issues)

    Student reviews/annualsBreezes1919-19431942194482Intermediate girls1975undated82High school and intermediate painters197582Scherzo1961-196419661969-19761979-19821986-199082Camp Extra1994-199682YearbooksThe Overture1928-193182Scherzo19341935-193682
    Allstate (Univ. of Mich.) announcements1945-19501953-195419571959-196719691971-197219801987-199082College/University DivisionAnnouncementsIllinois State University1937194182University of Michigan1932-19451947-1976197982Camp counselor program1947-198982

    (scattered)

    Other programs1943-198682

    (scattered)

    U M Men's Glee Club concert (for scholarships), Traverse City197382
    Camp/AcademyAccommodations for visitors1938-198082

    (scattered)

    Announcements1948-19781928-1961821962-198582Crescendo (newsletter)1964-199882

    (incomplete) (cataloged and located separately)

    Gwen Frostic print199369Miscellaneous, circa1965-199469Newsletter (mimeographed)1969-197069

    (incomplete)

    Posters, 1931-333 folders19381941-19801982-19851988-198969Prelude (bulletin/catalogue emphasizing the Camp)3 folders1938-198969

    (complete)

    The Score from InterlochenJune 196569
    AcademyCatalogues/Bulletins2 folders1963-197119731975-1979691963-197119731975-197970Commencement programs1980-200370Concert calendars/announcements1973-199870Faculty concert flyers1962-198971Festival (student) programs1977-1983198619881998-200271The Guide WIIA 88.3 FM1981-19821986-19891994199671Miscellaneous1968-1987undated71Parents Press (newsletter), (incomplete)1976-197771Programs (for student and faculty performances)1962-19771981-861987-198971Offstage, (incomplete)1992-199471Student handbooks, 1964-1974 (missing 1967-1968)71World Youth Symphony Orchestra programs 1968-1978, 1980-1982 (art by Gwen Frostic)1968-198271Student publicationsNewsletter (The Paper)1967-1970undated71Magazine (creative arts and graphics)1970197171Interlochen Review2001-200371
    Articles about

    Published Articles, largely 1927-1978, contain newspaper and magazine accounts about Interlochen mainly from its origins through its fiftieth anniversary celebration. It includes virtually every major overview article published on the Camp and Academy as well as some on faculty and staff. Other articles can be found in the Subject series under Maddy, Giddings and Tremaine, and Interlochen "Petrillo Controversy." Researchers should also check the specialized topics "prison camp" in Interlochen "Michigan and "air force base" in Interlochen "U.S. Government." Since Maddy or the publicity staff prepared many of the articles, background information on them can sometimes be found in the manuscript series: Chronological Camp Files, 1935-1945 under "Publicity" as well as in Subject Maddy"Publications" and Subject Interlochen "Publicity/Promotion." The Scrapbooks provide a good supplement to the articles, especially for individual Campers and staff.

    Camp and Interlochen in general46 folders1927-19627115 folders1963-1978721979-undated72Academy1958-1962721962-196672

    (until Maddy's death)

    1966-197972

    (after Maddy's death)

    Maddy1930-1939721940-1949721950-195972Others associated with InterlochenAlumni, circa (mainly 1960s)1941-199472Browning, Norma Lee (Mrs. Russell Ogg)1945-198072Miscellaneous (mainly faculty and staff)1932-199472Publications of Interlochen Area Chamber of Commerce19861989undated72Articles about Camp and Interlochen in general1927-199783

    (outsize)

    Window display cards1936-1946undated83

    (outsize, incomplete)

    Photographs: Prints1880-1986

    The Visual Materials series includes photographic prints, negatives, and glass slides, and motion picture films and negatives. They offer especially good coverage of Maddy's life and the Camp's early years as well as a sampling of later events and personages.

    Interlochen maintains its own photographic and audio archives which offer more extensive coverage, particularly for more recent events. Much of the Interlochen holdings remain in active use for publicity, rebroadcast, and listening purposes. For information about them, researchers should contact the photo archive, music library, or radio station (WIAA) at Interlochen.

    Photographs consist of prints (including a few postcards), negatives, and glass slides. They cover both Maddy's career and Interlochen's history. Since the two are closely interrelated, researchers interested in one should check the other. The Interlochen images were taken by both staff members and professional photographers. Documentation about professionals can be found under "photography" in Chronological Camp files, 1935-1945. Often, the images were used for publicity purposes in publications by, or articles about, Interlochen.

    The Prints (1), circa 1880-1986, has separate descriptions for regular and outsized images, including sections on Maddy, the National High School Orchestra, the Early Camp, Later Camp/Academy, and Later Administrators.

    Background informationManuscript material regarding photographic images in collection73

    (1)

    Maddycirca 1880-1967

    The Maddy portion, circa 1880-1967, features his parents, brother, family homes, boyhood friends, recreational activities, and major events in his professional career, including his broadcasting, conducting, and other music education endeavors. They also cover his work at Interlochen, including scenes of him with many prominent guests. The prints begin before his birth and conclude a year after his death (with the sculptured bust presented to Interlochen in his memory). Volumes 3 and 4 of the Scrapbooks, 1938-1940, also contain images of Maddy.

    Closely related to both Maddy and the Camp are scenes of the National High School Orchestra. They cover its appearances, 1926-1930 and 1938. The last, a special revival for the MENC convention in St. Louis, Missouri, with Joseph Maddy presiding, celebrated the centennial of music education in America.

    Boyhood and youthFamily homes in Kansas, circa1880-196773

    (2)

    Father working in bank, circa1890s73

    (3)

    Youth in Kansas, circa1893-190573

    (4)

    Music schooling in Kansas, circa1906-190973

    (5)

    Early careerMinneapolis Symphony, circa1909-191473

    (6)

    Colorado/Midland191673

    (6a)

    Rochester, New York, circa1919-192073

    (7)

    Richmond, Indiana, circa1921-192373

    (8)

    Ann Arbor, Michigan1924-192873

    (9)

    Later non-InterlochenAppearances (student groups), largely with Maddy as guest conductorCirca1929-193373

    (10)

    Circa1934-193873

    (11)

    Circa1939-195373

    (12)

    BroadcastingInstrumental instruction, circa1931-193673

    (13)

    Hymn singing, circa1935-193973

    (14)

    Civic music performances, circa1942-194473

    (15)

    Miscellaneous musical groups1937194273

    (16)

    Music education meetings (general, including Sousa Memorial Association), circa1925-194073

    (17)

    Music Educators National ConferenceErie, Pa., choir193373

    (18)

    Officers meetings193873

    (19)

    Dinner for foreign guests195673

    (20)

    Portraits of Maddy since Interlochen foundingIndividual, circa1929-194073

    (21)

    Individual, circa1941-196673

    (22)

    Receiving NEA award195973

    (23)

    Interview on WWTV (Cadillac)196273

    (24)

    Receiving U. of Mich. honorary degree196473

    (25)

    Sculptured bust of196773

    (26)

    Interlochen activitiesFriends and associates with MaddyCirca1928-195973

    (27)

    Circa1960-196673

    (28)

    Campers with Maddy (mainly recreational), circa1930s73

    (29)

    Addressing Camp assembly, circa193873

    (30)

    Conducting, circa1930-194273

    (31)

    Fishing and miscellanea, circa1930s-1960s73

    (32)

    Meeting with trustees and officers, circa1960s73

    (33)

    National High School Orchestra1926-193073

    (see also oversized box 75 and oversized folder, UBImul/C367)

    (33a)

    Unidentified Militaryundated73Unidentified Militaryundated73

    (34)

    Early Camp, 1927-1945 (mainly 1927-1942)

    The early Camp segment, mainly 1927-1942, was created by staff members and professional photographers (who visited the Camp to take publicity and group pictures for a fee). It begins with the construction of the Camp and covers faculty, guest conductors, staff, Campers, performances, buildings and grounds, recreation, and other aspects of Camp life. It includes photos of early Camp leaders Thaddeus Giddings, Willis Pennington, and C. M. Tremaine and performers Walter Damrosch, Frederick Fennell, Percy Grainger, Ferde Grofe, Howard Hanson, Lorin Maazel, John Philip Sousa, and Frederick Stock. Researchers should check the name card index for the location of images of prominent individuals. Photographic prints of the construction of the Camp can also be found Volume 1 of the Scrapbooks. The 25th anniversary pictorial history of the Camp done in 1952 serves as a handy guide to many early events and personages.

    Accordion classes1936-193973

    (35)

    Acoustics classes, circa193173

    (36)

    American Bandmasters Association convention193673

    (37)

    Bands and orchestras (mainly in Bowl), circa1928-193673

    (38)

    Boys camp (panoramic view), circa193173

    (see also oversized folder, UBImul/C367)

    (39)

    Brass groupsCirca (mainly by cottages)1928-193173

    (40)

    Circa1932-193673

    (41)

    Buildings (exterior and interior)A-Z, circa1930s194573

    (42)

    Unidentified, circa1929-193673

    (43)

    Cabin groupsFemaleCirca1928-193073

    (44)

    Circa193173

    (45)

    Circa1932-193573

    (46)

    Circa1936-193773

    (47)

    MaleCirca1928-192973

    (48)

    Circa1930-193173

    (49)

    Circa1932-193673

    (50)

    Camp activities

    (see also Sports and Recreation)

    Circa1929-193773

    (51)

    Circa1938-194273

    (52)

    Camp Penn Loch1928UBImul/367

    (53)

    Camp groups

    (oversized)

    With Maddy, Giddings and Pennington192973With Maddy, Giddings and Pennington193073With Maddy and Giddings193873
    Campers (mainly individuals with instruments)Identified by name, circa1929-19401944-194573

    (54)

    UnidentifiedCirca1928-194173

    (55)

    Circa194273

    (56)

    Campers in large groups (unidentified)Outdoors by dorms, circa1930-193173

    (57)

    In Bowl (entire camp?, including with Maddy and Giddings), circa1934-193773

    (58)

    Campers, former (identified), circa1938-194373

    (59)

    Cartoons2 folders1942-195373

    (59a)

    Cello groups, circa1929-193673

    (60)

    Choral groups, circa1928-194273

    (61)

    College Division Band at Michigan Day of Chicago World's Fair with Gov. William Comstock1933UBImul/C367Composition classes, circa1934-193673

    (62)

    Concerts in Interlochen BowlPerformances, circa1928-194173

    (63)

    Crowds, circa1928-1930s73

    (64)

    Conducting classes (including with Bakalienekoff and Harrison)circa 1930-194273

    (65)

    Construction of facilitiesPre-Camp, circa1927-1928Initial stages73

    (66)

    Buildings rising73

    (67)

    Final stages73

    (68)

    Interlochen Bowl, circa1927-193073

    (69)

    Other projects, circa1929-194273

    (70)

    Damrosch, WalterConducting, circa193673

    (71)

    General, circa late1930s73

    (72)

    Dancers (individual female Campers)194073

    (73)

    Dining Hall-male (exterior and interior), circa193173

    (74)

    Dormitory scenes (mainly interior), circa1929-194273

    (75)

    Drama productions (including Native American motif), circa1930s73

    (76)

    Drum major classes, circa1929-194273

    (77)

    Dunham, Franklin (Trustee), circa194073

    (78)

    Ensembles (mixed), circa1928-194073

    (79)

    Faculty and staff portraits, circa1930-1945A-C73

    (80)

    D-F73

    (81)

    G-K73

    (82)

    L73

    (83)

    M73

    (84)

    N-Q73

    (85)

    R-T73

    (86)

    U-Z73

    (87)

    Faculty and staff groups, including with Maddy and Giddings, circa1928-1932193873

    (88)

    Faculty and staff miscellaneous, circa1928-194573

    (89)

    Faculty and staff applicants (not hired?)1938-194573

    (90)

    Faculty with Campers, circa1937-1942A-L73

    (91)

    M-Z73

    (92)

    Fennell, Frederick73

    (93)

    Giddings, Thaddeus P.By self (at Interlochen), circa1928-194273

    (94)

    With others, including Maddy circa1928-194073

    (95)

    Grainger, Percy, circa1930-194273

    (96)

    Grounds and scenic viewsLake views, circa1928-1930s73

    (97)

    Woods and pathways, circa1930s73

    (98)

    Winter scenes (hotel and Bowl), circa1930s73

    (99)

    Guest conductorsPortraits, circa1928-194273

    (100)

    In groups, circa1928-194273

    (101)

    With students, circa1928-194273

    (102)

    Miscellaneous (humorous welcome?), circa193673

    (103)

    Guest cottages (?), circa1930s73

    (104)

    Hanson, Howard, circa1928-194273

    (105)

    Harp playing groups, circa1928-193673

    (106)

    Hoffmaster, Maud Miller, circa1940-194573

    (107)

    Hospital scenes, circa1929-194073

    (108)

    Hotel Exterior and interior circa1929-194073

    (109)

    Hotel Pennington postcards, circa1928-193273

    (110)

    Instrument Classes, circa1929-193673

    (111)

    Interlochen State Park, circa1928-193873

    (112)

    Library, circa1930-194073

    (113)

    Maazel, Lorin193974

    (1)

    Marching bands192974

    (2)

    McConkey, George (Camp architect), circa192874

    (3)

    MiscellaneousIdentified individuals, circa1928-194274

    (4)

    Buses considered for purchase194574

    (5)

    MoviesParamount: "There's Magic in Music" (publicity shots)1941-194274

    (6)

    Orchestra during Pathe newsreel filming193074

    (7)

    Opera"Telawalla," circa1930s74

    (8)

    "Faust"193674

    (9)

    Operetta (Gilbert and Sullivan)Circa1929-193574

    (10)

    194274

    (including participation of Governor Van Wagoner)

    (11)

    Organizations (women) meeting at Interlochen, circa1930s74

    (12)

    Pennington, Willis (portraits)1929193174

    (13)

    Percussion classes (including with Fennell), circa1929-194274

    (14)

    Piano classes, circa1929-193674

    (15)

    Practice buildings, studios, and rooms, circa1929-193574

    (16)

    Radio classes1938-194274

    (17)

    Railroad station at Interlochen, circa193074

    (see also Box 1, 103)

    (18)

    Saxophone groups, circa1929-1930s74

    (19)

    Scrapbook compiled by James Reynolds193274

    (19a)

    Sousa, John PhilipPortraits1930193174

    (20)

    Conducting at Interlochen1930-193174

    (21)

    With friends and associates1930-193174

    (22)

    Memorial plaque193674

    (23)

    Sports and recreation

    (see also Camp Activities)

    Calisthenics (group), circa1930-193674

    (24)

    Canoeing, circa193074

    (25)

    Miscellaneous, circa1932-193574

    (26)

    Swimming, circa1929-193674

    (27)

    Tennis, circa1928-193274

    (28)

    Stock, Frederick1940-194174

    (29)

    String classesGroups, circa1930-193674

    (30)

    Performing, circa1936-194274

    (31)

    Traverse City, Cherry Festival Parade 1929 and circa 19321929-193274

    (32)

    Tremaine, Charles Milton, circa1920s1940s74

    (33)

    Vandenberg, Mrs. Arthur H. and daughter Betty, circa193074

    (34)

    Vocal Methods class (with Giddings)1936-193874

    (35)

    Woodwind groups, circa1930-193674

    (36)

    World's Fair appearance (New York)193974

    (37)

    Later Camp and Academy1946-19961948-1979

    The later Camp/Academy portion, largely 1948-1984, is far less extensive. In 1942, having built a darkroom, Interlochen began maintaining its own photo archives. Although some later prints have been added through manuscript accessions, the archives at Interlochen remains the best source of photographs on its recent history.

    Despite the limitations of the post-1942 prints, they include some interesting images. They cover Van Cliburn's and Luci Baines Johnson's appearances, Alden Dow's architectural work, C.S. Mott's building dedication, and Werner von Braun's visit with his Camper daughter as well as the ISME meeting with participants Norman Dello Joio, Demitri Kabalevsky, and Zoltan Kodaly.

    Art displays, circa1960s74

    (38)

    Camp Orchestra performing Olympics, Atlanta, GA199674

    (38a)

    CampersYoung girls groups, circa1950s74

    (39)

    Instrumental groups (postcards), circa1960s74

    (40)

    Cliburn, Van (practice with Maddy and Wilson conducting the orchestra), circa1960s74

    (41)

    Concerts at InterlochenPerformances in Interlochen Bowl, circa1950s1960s74

    (42)

    Crowd outside Kresge Auditorium, circa1960s74

    (43)

    Conn centennial celebration197574

    (44)

    Craft classes, circa196774

    (45)

    Detroit Symphony Orchestra in residence at the IAA199274

    (45a)

    Dow, Alden, explaining to Academy staff the proposed layout of the Performing Arts Center196974

    (46)

    Electronic Classes, circa1949-195474

    (47)

    Federation of Music ClubsScenes at Scholarship Lodges1954-195574

    (48)

    Michigan convention (with Maddy, Morton Gould, and Lloyd Grinnell)195574

    (49)

    National 1966 and circa 19741966-197474

    (50)

    Federation of Women's Clubs (Michigan convention)197074

    (51)

    Fourth of July, International students and flags198774

    (51a)

    Freedom Train concert (Grand Rapids)194874

    (52)

    Froligh, Edward P. (Trustee), circa196974

    (53)

    Fund raising activities, circa1964-196674

    (54)

    Funeral, Joseph Maddy196674

    (54a)

    Grand Traverse Performing Arts Center (architectural renderings by Alden Dow Associates)196874

    (55)

    Guest conductor with students, circa1960s74

    (56)

    Historical marker dedication (Maddy, Bonisteel, and Louis Vander Velde)196274

    (57)

    Hotel, circa1957-197074

    (58)

    Interlochen Arts AcademyOpening concert196274

    (59)

    Campus scenes1960s1970s74

    (60)

    PerformancesOrchestra (with Maddy and Thor Johnson conducting), circa1964-197374

    (61)

    Post-performance party in New York, circa1960s74

    (62)

    Drama (Interlochen Outreach for elementary schools)197174

    (63)

    Interlochen Arts Festival, circa196474

    (64)

    International Society of Music Educators1966Dello Joio, Norman74

    (65)

    Kabalevsky, Demitri74

    (66)

    Kodaly, Zoltan and others74

    (67)

    Johnson, Luci Baines (with Maddy and Van Cliburn), 196474

    (68)

    Maddy Administration Building (postcard)195374

    (69)

    Miscellaneous (identified individuals), circa1960s74

    (70)

    Mott, C. S. (with Maddy at dedication of Mott Building), circa196574

    (71)

    Norman, Jessye196874

    (71a)

    Osterlin Wishing Wellundated74

    (71b)

    Paulson, Thom199274

    (71c)

    Schub, Andre-Michel (Van Cliburn winner)198174

    (72)

    Stone Student Center dedication196474

    (72a)

    Toradze, Lexo (Van Cliburn winner)1979-198474

    (73)

    U.S. (Air Force?) Band, circa1960s74

    (74)

    Van Cliburn conducting196474

    (74a)

    Von Braun, Werner, with Camper daughter and Egon Kraus196674

    (75)

    Watergate (Washington, D.C.) concert196474

    (76)

    World Youth SymphonyWith Haas, Wilson, and Van Cliburn, circa196974

    (77)

    Rehearsing with Eugene Ormandy196474

    (77a)

    Later administrators, mainly 1957-78

    Prints of later administrators, mainly 1957-1978, came with their papers. Wilson's (1930-1978) include a few images of him as an early Camper and as a civic music conductor. Most emphasize his activities as Camp Director, including the visit of Mrs. Imelda Marcos and the dedication of the National Music Camp of the Philippines.

    Don Gillis' photos (circa 1959) highlight his work for Interlochen. They include scenes of American Opera Theatre productions and the visit of American Federation of Musicians officials, which ended the Petrillo controversy.

    The Administrative Committee is shown in session, circa 1966-1967 while the Karl Haas' images, 1967, focus on his selection and inauguration as President of Interlochen. The latter show Haas meeting with members of the Administrative Committee and Board of Trustees and being installed as President.

    Though few in number, Jacobi's photographs (1975-1986) include images of him and his staff with George Wilson (1978) and of President and Mrs. Gerald Ford's visit to Interlochen (1975).

    Eilber, Charles and a new student, circa196874

    (77b)

    Gillis, DonaldPortraits, circa1959undated74

    (78)

    American Federation of Musicians visit (with Maddy)195974

    (79)

    American Opera Workshop2 folders74

    (80-81)

    Toscanini, Arturo74

    (82)

    Administrative Committee1966-196774

    (83)

    Haas, KarlPortraits, circa196774

    (84)

    Trustees meeting in Detroit (announcement of selection as president?)196774

    (85)

    Trustees and administrative committee meeting at Inglis House in Ann Arbor196774

    (86)

    Inauguration as president (with Bonisteel and Hatcher)196774

    (87)

    Brahms manuscript (gift)196774

    (88)

    Dance scholarship winner at Camp (with Wilson)196774

    (89)

    Fund raising (with Mrs. Maddy, Mrs. Stone, Bonisteel, Ann Ronell, and Lester Cowan), circa1968-196974

    (90)

    Miscellaneous (identified individuals: Nissman and Stadler), circa1967-196974

    (91)

    Rideout, Raymond greeting new students199374

    (91a)

    Wilson, GeorgeIndividual and group, circa1930-197874

    (92)

    Civic MusicAnn Arbor Civic Orchestra, circa1950s74

    (93)

    Northwest Michigan Symphony196674

    (94)

    PhilippinesMrs. Marcos visits the Camp (also shows Jacobi and other staff)197374

    (95)

    Dedication of its National Arts Center (with Mrs. Marcos)197374

    (96)

    Filipino campers and visitors197374

    (97)

    Jacobi, Roger50th anniversary of Camp, receipt of resolution from state legislature197774

    (99)

    Ford, President and Mrs. Gerald, visit Camp (also shows Clement Stone)197574

    (100)

    Wilson, George, presenting his oral history tape at a staff meeting198674

    (101)

    Portraits-formal and informal74

    (102)

    Academy opening197974

    (103)

    AdministrationJacobiWith Galbraith and Downing1982undated74

    (104)

    With others-staff, students, and guests19711973undated74

    (105)

    Downing, Edward J.-Camp Director74

    (106)

    Galbraith, Bruce W.-Academy Director74

    (107)

    Alcantara, Theo74

    (108)

    BuildingsGrand Traverse Area Performing Arts Center-interior views74

    (109)

    Construction scenes (GTPAC?)-with student string quartet playing and distinguished guests present74

    (110)

    Various buildings74

    (111)

    CampStaff group (photography?)197774

    (112)

    StudentsWith instructor and guest74

    (113)

    Intermediate orchestra performance74

    (114)

    With noise makers in balcony74

    (115)

    Campus scene in fall74

    (116)

    Cliburn, Van-performing with Camp orchestra-George Wilson conducting74

    (117)

    Danish medallion presentation-Rebild Society, Jens Schroeder and Jacobi74

    (118)

    Hope, Bob, visit-with Jacobi, Clement Stone and George Wilson74

    (119)

    Presidential Scholar in the Arts, Scott Van Ornum, on White House lawn with Jacobi and Galbraith198474

    (120)

    Rostropovich, Mstislav-with Jacobi, Downing, and Henry Clark Smith199274

    (121)

    Schuller, Gunther-with World Youth Symphony197374

    (123)

    Sculptures74

    (124)

    Suzuki violin student-promotional shot of young child standing by Interlochen poster197274

    (125)

    TrusteesGroup-meeting at Interlochen, including Stone and William Milliken74

    (126)

    Ford, Christina (?) with Jacobi74

    (127)

    Keith, Damon with Jacobi and Camp orchestra74

    (128)

    Marvel, David (also Vice President for Development) with Jacobi and others74

    (129)

    Patterson, W. Calvin74

    (130)

    Vance, Ruth (Mrs. Joseph A.)74

    (131)

    University of Michigan Regents meeting at Interlochen, Jacobi addressing and Camp students performing198074

    (132)

    Warsaw Philharmonic leaders with Polish Campers and Jacobi198274

    (133)

    Boal, Dean199474

    (133a)

    Photographs: Negatives1 folder

    Less than 100 photographic Negatives (2), circa 1931-1938, are included in the collection (two others made from our print holdings are part of the library's negative files). All are nitrate and date from the 1930's. Six show Maddy's radio band classes at the U. of M. (in studio and on campus), circa 1931-1937.

    The remainder (91) were apparently taken of Camp activities during the summer of 1938. Some of them were used in article about the Camp which appeared in the musical journal True Tone, in the fall 1938 (a copy of which is included with the negatives) and subsequent Camp publications. They show activities of Campers, adult visitors, and guests as well as an appearance by the Camp band and orchestra at the National Cherry Festival in Traverse City, July 13-15, 1938. Maddy probably took most of them since he appears in only one. Seven of the images have prints (see 1), all apparently from 1938: one of Maddy speaking at Interlochen and six of other Camp scenes.

    Maddy, circa1931-1937Radio band class, U. of M.74

    (1-7)

    Early Camp, circa1938Assembly with Maddy speaking (print in box l, #30)74

    (8)

    Camp activitiesCampers by hotel74

    (9)

    Campers (female) on bench74

    (10)

    Campers unidentifiedFemale organist with two others74

    (11)

    Female pianist74

    (12)

    Female violinist (two views, print of one in box 1, #54)74

    (13-14)

    Composition class of William Skeat outside little red schoolhouse74

    (15)

    Concerts in Interlochen BowlPianist and violinist; audience on stage74

    (16)

    Conducting classWith Bakaleinikoff-posed group74

    (17)

    Students practicing74

    (18)

    Dining hallServing line (three views)74

    (19-21)

    At tables74

    (22)

    Dormitory scenesBoy in bunk (two views)74

    (23-24)

    Drum major class with Overgard74

    (25)

    Faculty with CampersStudents writing in classroom (Schram's class?)74

    (26)

    Individual instructionBass viol74

    (27)

    Piano74

    (28)

    Trombone74

    (29)

    Giddings with associatesHerbert Clarke (?)74

    (30)

    Group including Clarke (?)74

    (31)

    Grolle, John, visitor to Camp74

    (32)

    Guest conductorsBakaleinikoff, Vladimir on walk74

    (33)

    (print in box 1, #100)

    Harrison, Guy Fraser, conducting74

    (34-38)

    (five views, print of one in box l, #102)

    Gagnier (?), sitting on log by lake74

    (39)

    Schram, Rudolph

    (?)

    Playing violin in woods74

    (40)

    With orchestra in practice room74

    (41)

    With orchestra in Interlochen Bowl (two views)74

    (42-43)

    Group (Harrison, Overgard, and Grofe ?) on dock74

    (44)

    Unidentified with orchestra in Interlochen Bowl74

    (45)

    Guest cottage74

    (46)

    Hanson, HowardConducting (print in box 1, #105)74

    (47)

    Class, showing Maddy (print in box l, #105)74

    (48)

    Hotel dining roomIndividual groups (two views)74

    (49-50)

    Women's organization meeting74

    (51)

    Musicians playing for diners74

    (52)

    Miscellaneous-unidentified young woman by hotel74

    (53)

    Percussion classesIn class74

    (54)

    Leaving class74

    (55)

    Radio classBoutwell (?) instructing74

    (56)

    Staff picnic (print in box 2, #17)74

    (57)

    Reed section playing (two views)74

    (58-59)

    Sports and recreationCalisthenics (boys)74

    (60)

    CanoeingCouple74

    (61)

    Two men74

    (62)

    Dancing, ballroom (five views)-adults at (party?)

    (63-67)

    Maddy catch (?)74

    (68)

    Boy fishing from bank74

    (69)

    Small boy fishing from bank74

    (70)

    Man on bank74

    (71)

    Man in stream74

    (72)

    Miscellaneous adultTwo females on beach74

    (73)

    Boating and picnicking74

    (74)

    Male with feet in water and plate in hand74

    (75)

    Group on shore74

    (76)

    Group on shore, on dock, and in boat74

    (77)

    Couple on lakefront74

    (78)

    Two males seated on lake shore74

    (79)

    Two males on dock74

    (80)

    Swimming instruction74

    (81)

    Tennis-girls playing-musicians watching (two views)74

    (82-83)

    Water skiing74

    (84)

    Traverse City Cherry FestivalParadeAs seen from atop downtown building (four views)74

    (85-88)

    Camper musicians on break74

    (89)

    Two adult males dressed as Keystone Cops with female Camp musicians, crowd in background (note: this was originally labeled Allan Grant and NBC music staff)74

    (90)

    ConcertCherry Queen (?) with McAllister and Overgard (?) (two views)74

    (91-92)

    Two men shaking hands in front of orchestra (two views)74

    (93-94)

    Young boy playing conductor74

    (95)

    Accordionist performing74

    (96)

    Movie cameraman at work74

    (97)

    Oversized PhotographsMaddyEarly career

    (1)

    Santa Fe Boys, Wellington, Kansas, circa190575Metropolitan Quintet, Wichita Falls, Texas, circa191475
    Mother (Mary Elizabeth Maddy) and art work2 printscirca 1920s75Portrait with campus plans, circa196575Portraitundated75Appearances, State High School groups, including Michigan16 prints1924-195575

    (2)

    Music Educators National Conference, banquet193875
    National High School Orchestra15 prints1926-19301938

    (includes photos with President Hoover and Senator Vandenberg)

    Camp groups, including orchestra, band, faculty, and staff19 prints1928-193175

    (3)

    19 prints1932-193875

    (4)

    Concerts in Interlochen Bowl, including with Sousa conducting9 prints1928-193175

    (5)

    Michigan All-State Band, Masonic Temple, Detroit193975
    Visual Materials: Glass slides

    The Glass Slides (3), circa 1923-1931, consist of some 182 mainly colored images on 4x5 plates. A short name and subject index serves as an introduction for researchers. Over half the slides show scenes from the Camp, circa 1928-1931, plus some of the National High School Orchestra. The remainder concern music education in general. Until Maddy switched to movies, he probably used them in his Camp and music education lectures. Since the U. of M. Extension Service sponsored many of his talks, researchers may find information about them in Subject Maddy "University of Michigan." The slides housed in two slide boxes (boxes 76 and 77) and arranged by slide number. In this finding aid the slides have grouped by broad subject categories and then alphabetically by title or description.

    Community and School BandsBroadcast school band from control room at University of Michigan (two nuns in background)76

    (169)

    Detroit All City Elementary Band, Fowler Smith conductor, in Cass High School Auditorium192576

    (216)

    Dewitt, Michigan, band playing by school76

    (55)

    Flint, Michigan, Post Office Band in front of municipal building with Elmer Duhlstrom, conductor76

    (182)

    Flushing, Michigan, High School Band (integrated) playing outside76

    (210)

    Harp ensemble with Pasquale Montani, possibly Richmond, Indiana, in192376

    (171)

    Illinois All State High School Orchestra with Ray Dvorak conductor193076

    (239)

    Los Angeles Elementary Schools, Orchestra Department, in stadium seats77

    (243)

    McBain, Michigan, band on steps of school76

    (57)

    (Michigan ?) band in school room76

    (170)

    (Michigan?) orchestra on steps of school76

    (57a)

    Minneapolis Working Boys' Band outside public building76

    (173)

    Nicholas Senn High School Championship Band77

    (241)

    San Francisco Municipal Railway Band and Baseball Team outdoors76

    (184)

    Sheridan County (Wyoming?) band in Native American attire76

    (209)

    St. Thomas (Ann Arbor?) band in gymnasium76

    (56)

    Sterling, Michigan, band on steps of school76

    (53)

    University of Illinois band on football field in formation76

    (183)

    University of Michigan band on steps of (Angell Hall?)76

    (183)

    Joseph Maddy (various)Chorus and instrumentalists, Maddy conductor, on stage of Hill Auditorium, University of Michigan, (May Festival?)76

    (see 238)

    (196)

    Chorus and orchestra on stage of Hill Auditorium at University of Michigan (May Festival?)77

    (see 196)

    (238)

    Chorus and orchestra on stage; Maddy conductor77

    (237)

    Chorus and orchestra with (Maddy?) as conductor on stage in flag bedecked auditorium76

    (see 192)

    (197)

    Maddy conducting broadcast76

    (51)

    (Michigan) band with Maddy on steps of school76

    (54)

    Orchestra on stage of auditorium with Maddy conductor77

    (245)

    Music-GeneralAboriginal dancer and drummers76

    (207)

    Aerial view of stage and crowd on mall near White House in Washington, D.C.76

    (193)

    Band concert outdoors showing large crowd76

    (205)

    Band of small children playing on elevated platform in residential neighborhood76

    (see 202)

    (220)

    Band playing before workers in factory yard76

    (186)

    Band with crowd outside church (buggy shown)76

    (206)

    Bass viol section (male and female), apparently in Chicago auditorium where National High School Orchestra appeared in192876

    (221)

    Boys harmonica band playing on street76

    (203)

    Cartoon of armed men carrying jugs76

    (191)

    Cartoon of men and boys playing and singing music together (nineteenth century scene?)76

    (214)

    Cartoon of nineteenth century church choir76

    (217)

    Cartoon, "No More Go in Johnny's Legs": passing street band animates tired youngster (from shopping)76

    (212)

    Championship male band76

    (174)

    Chenoa 4-H Clubbers Band (coed)76

    (201)

    Coed choir76

    (200)

    Coed orchestra on stage76

    (199)

    "Community Service" group of boys in (Santa's elves?) costumes in front of school76

    (190)

    Crowd in flag decorated auditorium76

    (see 197)

    (192)

    Family ensemble outside home76

    (225)

    Female band on stage77

    (244)

    Five piece boys band playing on elevated platform (with dog underneath) in neighborhood back yard76

    (see 220)

    (202)

    Girls marching band outside school77

    (247)

    Large marching band on football field in stadium76

    (222)

    Male and female line dancers rehearsing in hall76

    (188)

    Male band outdoors76

    (175)

    Male orchestra on stage in hall76

    (240)

    Massed chorus and orchestra on stage in large, packed auditorium76

    (185)

    Men's chorus with pianist and conductor on stage76

    (198)

    Music class for girls in gymnasium using blackboard76

    (176)

    Music for "America the Beautiful," part 176

    (208)

    Music for "America the Beautiful," part 276

    (215)

    Orchestra and chorus on stage of auditorium76

    (187)

    Orchestra of youth and adults (outside school?)76

    (218)

    Orchestra performing in small auditorium77

    (246)

    Outdoor performance of (opera?) focusing on stage set76

    (195)

    Outdoor performance of (opera?) showing crowd with stage set in background76

    (194)

    Piano class in school room with girls (both black and white) using keyboards76

    (172)

    Sketch (exterior) of Westchester County (New York?) Center76

    (189)

    Small children (two girls and two boys) singing from sheet music76

    (204)

    Two female violinists playing for water ballet76

    (219)

    National High School OrchestraAtlantic City, Municipal Auditorium193076

    (229)

    Carnegie Hall193077

    (see 272)

    (228)

    Carnegie Hall, New York193077

    (see 228)

    (272)

    Chicago, 192877

    (see 236)

    (335)

    Chorus (second), Chicago193076

    (235)

    New York harbor, on board Aquatania, 193077

    (see also 227)

    (312)

    New York harbor, playing aboard Aquatania193076

    (see also 312)

    (227)

    Orchestra with Stock, Maddy, and Hanson in Chicago, 192876

    (see 335)

    (236)

    Washington, D.C., with President Hoover, Senator Vandenberg, and others on steps of Capitol193076

    (226)

    National Music Camp-FacilitiesBroadcast control room (NBC)77

    (278)

    Dining room, boys at tables, circa193177

    (253)

    Dining room, boys in serving line, circa193177

    (254)

    Dormitory bathroom: toilet, wash stand, and shower, circa193177

    (252)

    Dormitory interior showing bunk beds and lavatory77

    (322)

    Dormitory interior showing piano, bunks, and bathroom77

    (260)

    Grounds, view of lake77

    (257)

    Guest cottage (?) bedroom with two single beds77

    (314)

    Hospital exterior with nurse and doctor77

    (267)

    Hotel cafeteria, girls in line77

    (251)

    Interlochen Bowl stage, empty77

    (242)

    Library in use, showing instrument storage77

    (279)

    Library in use, showing music files77

    (283)

    Practice studio building (exterior)77

    (see 268)

    (276)

    Practice studio building (exterior) with students visible77

    (268)

    Staff (male) outside building (office or library?)77

    (319)

    Staff working in office77

    (281)

    National Music Camp-GeneralBroadcast: Maddy, Grainger, an announcer, Giddings, and Bakaleinikoff77

    (338)

    College (?) group (coed) outside building77

    (308)

    Counselor (?) group on stage in Bowl77

    (299)

    Counselor (?) group, showing Bowl seating and lights77

    (297)

    Counselors (?), female, outdoors77

    (315)

    Dorm group, girls with instruments, residents of Cottage No. 377

    (309)

    Faculty and staff with Maddy and Giddings on stage in Bowl77

    (277)

    Faculty/staff outside their dorm (?)77

    (305)

    Giddings (Thaddeus) with camper vehicle77

    (265)

    Giddings standing in wooded area77

    (343)

    Giddings talking with girl Campers, one with plate in hand, outdoors77

    (307)

    Group in Bowl, circa193076

    (230)

    Meal, girls eating outdoors, mostly on chairs77

    (300)

    Large group of males (high school or college age?) assembled on tennis courts with dorms in background77

    (332)

    National Music Camp-Performances, rehearsals, classrooms, etc.Band rehearsing in classroom with instructor77

    (330)

    Baritone horn students (all male) with instructor on stage of Bowl77

    (311)

    Bassonists on stage77

    (262)

    Cello and viola students on stage in Bowl77

    (274)

    Choral class (coed) with instructor and accompanist in classroom77

    (316)

    Clarinetists (coed) with instructor on stage of Bowl77

    (334)

    Concert crowd with Bowl stage in background193077

    (259)

    Concert in Bowl showing audience in foreground, reflecting pool, and stage decorated with patriotic bunting77

    (328)

    Concert in Bowl showing crowd and orchestra76

    (224)

    Concert in Bowl, showing orchestra and some of crowd76

    (234)

    Concert in Bowl, some musicians standing77

    (248)

    Conducting class with Bakaleinikoff77

    (266)

    Conductor, circa 1930-3177

    (263)

    Dorm group, girls with instruments, outside residence, Cottage No. 477

    (304)

    Drama, coed group dressed as colonials and Native Americans on stage of Bowl77

    (see 310)

    (325)

    Drama, Native Americans and colonists, on stage of Bowl77

    (see 325)

    (310)

    Drama, outdoor, boys in Native American dress77

    (324)

    Drum major class (coed) with instructor77

    (292)

    Flutists with instructor on stage in Bowl77

    (269)

    French horns (all male) with instructor on stage of Bowl77

    (326)

    Group (coed) in room which has harps77

    (295)

    Group with instructor in classroom showing organ pipes, other instruments, and blackboards77

    (317)

    Harpists with instructor on stage in Bowl77

    (270)

    Instructor/counselor group in Bowl seating area77

    (318)

    Large group (major portion of Camp) on stage of Bowl77

    (329)

    Male string group, circa193077

    (250)

    Oboists with instructor on stage of Bowl77

    (313)

    Orchestra on Bowl stage77

    (261)

    Orchestra on Bowl stage77

    (264)

    Orchestra on stage in Bowl76

    (223)

    Orchestra on stage in Bowl77

    (282)

    Percussionists and instructor on stage in Bowl77

    (294)

    Piano class and instructor practicing with keyboards in classroom77

    (286)

    Saxophones/bass clarinets on stage of Bowl77

    (323)

    Saxophonists and instructor on stage in Bowl77

    (284)

    String basses on stage in Bowl77

    (271)

    Strings in classroom with instructor77

    (275)

    Trombonists (all male) with instructor outside building (classroom?)77

    (333)

    Trumpeters with instructor on stage of Bowl77

    (290)

    Tuba and baritone horn students with instructor on stage in Bowl77

    (287)

    Two tuba students (male) on bench by lake77

    (327)

    Violinists on stage in Bowl77

    (273)

    Wind instrument group in seating area of Bowl77

    (331)

    Wind instrument students (boys) outside dorm77

    (285)

    Wind instrument students in classroom with instructor77

    (303)

    Wind instrument students (boys) and counselor outside dorm77

    (289)

    National Music Camp-RecreationActivities (females) outside dorms77

    (255)

    Activities (males) outside dorms77

    (256)

    Badminton (females) playing outside dorms77

    (301)

    Boating: Maddy driving powerboat on lake77

    (342)

    Calisthenics (female) outside dorms, circa193077

    (see 232)

    (249)

    Calisthenics, (female) outside dorms193076

    (see 249)

    (232)

    Calisthenics, (males) mass group, outdoors by tennis courts77

    (288)

    Recreation (males) some with tennis rackets or in swimsuits, watching high jumper77

    (302)

    Recreation (girls) in swimsuits drinking from water pump by dorms77

    (298)

    Recreation (males) some in swim suits, with baseball equipment77

    (293)

    Recreation, girls around bonfire77

    (320)

    Swimming (male) showing diving platform and rowboat77

    (337)

    Swimming (males) showing dock77

    (296)

    Swimming (females) showing dock, diving platform, and two rowboats77

    (336)

    Swimming (females) on dock, circa193176

    (231)

    Swimming (females) using dock77

    (see 231)

    (280)

    Tennis (male) with Camp buildings in background77

    (344)

    Tennis (females) on courts77

    (291)

    Waterfront recreation (males), platform diving and rowboats77

    (306)

    Waterfront, males canoeing, sailing, and using diving platform76

    (233)

    Phonograph UsePhonograph and female harpist in male (military?) hospital ward76

    (178)

    Phonograph Cartoon, "Music a Positive Aid to Efficiency": playing the phonograph while maid scrubs floor76

    (see 177-179)

    (211)

    Phonograph in barn during milking76

    (179)

    Phonograph use in typing class for boys (integrated)76

    (177)

    Phonograph used in hospital operating room76

    (see 177-179)

    (213)

    Sousa, John PhilipConcert in Bowl, Sousa conducting, looking out at audiencecirca 1930-193177

    (258)

    Orchestra with Sousa and two faculty conductors on stage in Bowl77

    (321)

    (Sousa?) band on stage with (Sousa, Goldman, and Maddy?)76

    (180)

    Sousa receiving (medal?) from Maddy, Camper musicians watching, on stage of Bowl77

    (341)

    Sousa standing in wooded area77

    (339)

    Sousa with Bakaleinikoff, Maddy, and Giddings, seated in wooded area77

    (340)

    Visual Materials: Motion Pictures

    Motion Picture Films, circa 1930-1938, consist of 16 millimeter silent footage, both prints and negatives, probably taken by Maddy. A name index at the beginning of each portion will help guide researchers. With two exceptions (a Cherry Festival parade and Maddy's personal life), all are in black and white of Camp activities. Included are early promotional movies of the Camp based on privately shot footage, for which continuity was done commercially. In 1939, with funds provided by the State of Michigan, Camp films began being produced in sound by professionals. All the latter remain in the possession of Interlochen as is a copy of the 1940 Paramount film, "There's Magic in Music." Information about the various Camp promotional films can be found in Chronology Camp files, 1935-1945, under "publicity-movies" and in Subject Interlochen "Publicity" under "Internal" and in Subject Interlochen "Michigan" under "General/Legislature."

    Positive prints16 mm, b&w millimeter, black and white unless otherwise noted, and silentCarl Busch arriving at Interlochen, Camp parties, Edwin Franco Goldman, Camp activities193278

    (1)

    Carl Busch arriving, girls swimming, (Howard Hanson ?) conducting concertundated78

    (2)

    Cherry Festival and parade (Traverse City)193678

    (3)

    Cherry Festival parade, cherry orchard, sunsets, pond78

    (4)

    Maddy fishing (Color but faded)undated78Walter Damrosch and Ernest La Prade, (Bacher?), Maddy, activities, parades193778

    (5)

    Faculty Follies concert and part, students departing campundated78

    (6)

    High school bands in competition, marching in parades and on football fields. Glen Bainum, Frank Simon, and others conducting, (1936 ?)78

    (7)

    Maddy conducting concert in Chicago, (1933 ?)78

    (8)

    Maddy conducting St. Joseph's Band of Maybee, Michigan. Cherry Festival. Shore line and wharf at Interlochenundated78

    (9)

    Maddy, Percy Grainger, and Vladimir Bakaleinikoff conductingundated78

    (10)

    "Music Makers" (Maddy instructional) broadcast, NBC, Ann Arbor studio, Judith Waller of NBC, Lewis (?), and Maddy, (1936 ?)78

    (11)

    Camp with Walter Damrosch193678

    (12)

    Camp promotional film: Edwin Franco Goldman and Albert A. Harding relaxing on lake and working with students78

    (13)

    Camp promotional film, including girls' camp, reveille and sitting-up exercises, Sunday service in Bowl, Hotel porch and lounges, opera chorus and cast, Percy Grainger and piano, bonfire and boys' camp party193778

    (14)

    Camp promotional film: Student rehearsals and recreation, including at mealtime and on the lake. Edgar Stillman Kelley and othersundated78

    (15)

    John Philip Sousa at Interlochen or1930193178

    (16)

    Joe and Fay Maddy on their honeymoon in Florida. Shows scenery, flora and fauna193878

    (17)

    1.A. Snare drummers; percussionists; Percy Grainger; group; string quartet; rain791.B. Orchestra sections and players, including bass viols, violins, flutes, violas, flutist, bassoons, clarinets, trumpets, trombones, etc.; also Ernest LaPrade and Jessie (Mrs. Edgar Stillman) Kelley792.C. Students entering cafeteria; band sections and players; saxophones and bass clarinets; band rehearsal with Percy Grainger792.D. Band drill; baton twirler; signs; and billboard793.E. Cherry Festival parade and band concert794.G. Buying tickets for Bowl concert; William J. Skeat conducting band concert; flutists; horn players; radio control room.794.H. Mrs. Carol M. Pitts and chorus rehearsal; boys' camp bonfire party; practicing horn; Giddings and Maddy; accordion class.795.J. Faculty members performing: trombone, flute, oboe, bassoon, saxophone, viola, bass viol, harp, drum, clarinet, trumpet, horn.795.K. Group; Maddy, Ernest LaPrade, and Percy Grainger at radio mike; practicing drum; Sunday Bowl service; Edgar Stillman Kelley and Ernest LaPrade.796.M. Composition class; William J. Skeat; Robert Korst with voice pupil; studios; lake, shore, and rowboats.796.O. At depot; Percy Grainger, Maddy, and Giddings; Interlochen station; loading baggage car for Muskegon trip (1937); faculty cellist; William J. Skeat at organ; Robert Korst.797.R. Mrs. Carol M. Pitts and students from Giddings Hall.797.T. Beach and lake scenes: bathers, boats, lake, shore, etc.; hotel porch with loungers; tennis; group and hotel79
    VHS CassettesInterlochen Alive199284Interlochen Arts Academy,199384Interlochen at St. Hugo's199284Interview with Dean Boal199384There's Magic in Music194184
    Sound Recordings

    The Sound Recordings series consists of Audio Tapes and Record Discs circa 1922-86 and relate to Maddy's life and Camp/Interlochen history. The Maddy portion contains his reminiscences for a proposed a biography (1958) and a WOOD (Grand Rapids) retrospective on his life (1966). It also includes his talk to the American Association of University Women (undated) and recordings of his Richmond High School orchestra from the early 1920's. In addition, there are many discs of Maddy's instructional lessons from the 1930's.

    The Camp/Interlochen segment features George Wilson's talk (1986) on the institution's history and a WEFM (Chicago) interview (undated) with Thor Johnson, the early Camp conductor and Academy director. It also includes an early performance of "Les Preludes" (circa 1930's), the White House concert (1962), performances conducted by Cliburn and Maddy (1964), Interlochen promotional recordings (1971 and 1973), the concert for President Ford (1975), the dedication ceremonies for the Grand Traverse Performing Arts Center (1975), and 50th anniversary releases (1977).

    Audio tapes

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Undated

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Gillis, Don, writer and producer, NBC Radio, "Arturo Toscanini....A Portrait of a Century,"84

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    A Conversation with Thor Johnson, WEFM (Chicago); Hosts George Stone & Arrand Parsons[Undated]2 Audio Reel-to-Reel, 7 inch, 7 1/2 ips84

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    [Tape 1, Part 1][851981-SR-2-1](Part 1 of 2; Interview with Thor Johnson on his work in the American musical scene.)

    [access item]

    Online

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    [Tape 2, Part 1][851981-SR-3-1](Part 2 of 2; Interview with Thor Johnson on his work in the American musical scene.)

    [access item]

    Online

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Maddy, American Association of University Womenundated84

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    The Triumph of an Idea84

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    American Association of University Women "Honors at Interlochen" Dr. Joe Maddy and Mrs. Frederick Mueller[Undated]3 Audio Reel-to-Reel, 7 inch, 7 1/2 ips84

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    [Tape 1, Part 1][851981-SR-5-1](Part 1; Discussion the power of music in the world and its implications in world peace.)

    [access item]

    Online

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    [Tape 2, Part 1][851981-SR-6-1](Part 2; Interview and discussion about the importance of musical education at Interlochen.)

    [access item]

    Online

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    [Tape 3, Part 1][851981-SR-7-1-1](Part 3; Interview and discussion about the importance of musical education at Interlochen.)

    [access item]

    Online

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Peace Through the Arts84

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    1922

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Richmond High School Orchestra: two recordings sold to finance the orchestra's appearance at National Conference of Music Supervisors in Nashville, Tennessee.1922 MarchAudio Reel-to-Reel, 5 inch84

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    [Tape 1, Part 1][851981-SR-8-1](Tracks include: Mikhail Ippolitov-Ivanov "In the Village" from Caucasian Sketches No. 1; John Philip Sousa: "Red Man" from Suite "Dwellers of the Western World.")

    [access item]

    Online

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    [Tape 2, Part 1][851981-SR-9-1](Mikhail Ippolitov-Ivanov: "In the Village" from Caucasian Sketches No. 1; duplicate recording from tape 851981-SR-8-1.)

    [access item]

    Online

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    1958

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Dr. Joseph E. Maddy; the National Music Camp Story1958 July 042 Audio Reel-to-Reel, 7 inch84

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    [Tape 1, Part 1][851981-SR-10-1](Part 1; Dr. Joseph Maddy discusses his own life story and the musical camp's story.)

    [access item]

    Online

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    [Tape 2, Part 1][851981-SR-11-1](Part 2; Dr. Joseph Maddy discusses his own life story and the musical camp's story.)

    [access item]

    Online

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    1963

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    James B. Hause interview with Joe Maddy regarding history of Michigan School Band and Orchestra Association1963 May 05Audio Reel-to-Reel, 7 inch, 3 3/4 ips84

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    [Part 1][851981-SR-15-1](Joe Maddy tape recording in reply to questions by James B. Hause regarding history of Michigan School Band and Orchestra Association.)

    [access item]

    Online

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    1966

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Maddy, WOOD-TV (Grand Rapids), the sound track of the documentary production about Maddy following his death.1966 AprilAudio Reel-to-Reel, 7 inch84

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    [Part 1][851981-SR-12-1]("Joe Maddy." Sound track from T.V. Show on Grand Rapids Station following Dr. Maddy's death.)

    [access item]

    Online

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    1975

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Interlochen, dedication ceremonies for Grand Traverse, Performing Arts Center19752 Audio Reel-to-Reel, 7 inch84

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    [Tape 1, Part 1][851981-SR-13-1](Part 1 of 2; Grand Traverse Performing Arts Center; Corson Auditorium; Dedication Ceremonies.)

    [access item]

    Online

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    [Tape 2, Part 1][851981-SR-14-1](Part 2 of 2; Grand Traverse Performing Arts Center; Corson Auditorium; Dedication Ceremonies.)

    [access item]

    Online

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    1977

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Interlochen, WIAA, Public Broadcasting Corporation award for documentary84

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    1986

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Wilson, speech to Historical Society of Traverse City on the history of Interlochen84

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    1991

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Donald M. Currie's Retirement Party84

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    1992

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Mozart at Lincoln Center2 audiocassettes (in a vinyl case)84

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    1993

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    IAA Orchestra performance at the National Concerto Competition at Interlochen84

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    1995-1996

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Interviews conducted by Dean Boal

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Paul Boylan2/1/199584

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Allen Britton2 tapes2/2/199584

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Ed Downing1/11/199584

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Charles Eilber9/30/199584

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Frederick Fennell8/5/199684

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Gerie Greenspan1/20/199584

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Byron Hanson2 tapes1/13/199584

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Karl Hass1/26/199684

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Howard Hintze1/30/199584

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Jack Hood8/5/199684

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Roger Jacobi2 tapes7/24/199584

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Bob Murphy1/25/199584

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Jean Parsons1/27/199584

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Thom Paulson1/12/199584

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Ray Rideout1/19/199584

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    David Stave1/17/199584

    [Digitized audio files are currently available only in the Bentley Historical Library reading room on designated Bentley Library computers.]

    Compact disc recordings1991Joe Maddy's Interlochen84Vinyl disc recordingsUndatedSixth string lesson, #1-2 (U.M. Broadcasting Service)80Sixth String lesson, #3-4 (U.M. Broadcasting Service80Band lesson (wind), #1-2 (U.M. Broadcasting Service)80Band lesson (wind), #3-4 (U.M. Broadcasting Service)80Singing lesson, U. of M.80University of Michigan Broadcast Service, unlabeled80Unlabeled80Male quartet, college songs801930sNational Music Camp concert, "Les Preludes,"80193492nd Music Instructional Program80Class in Playing of Stringed Instruments (WJR)80Class in Elementary Singing (WJR)801935Band and string (Presto label)80String (Presto label)801938Music talent test, Wurlitzer801962White House Concert, National Music Camp801964Interlochen Youth Orchestra, Van Cliburn and Maddy conducting801967"My Michigan" recording sent to Karl Haas80&19711973Interlochen, promotional records2 phonograph records801975Concert for President Gerald Ford, High School Band and Chorus801977National Music Camp, 50th Anniversary, recordingsWorld Youth Symphony #1 performing Hanson's "Romantic Symphony" and Liszt's "Les Preludes,"80High School Symphonic Band #1, Revelli conducting80High School Symphonic Band #2, Wilson conducting including World Premiere performance of Hovhaness' Symphony No. 2980National Music Camp, An Historical Montage of the First Fifty Years80
    Scrapbooks1928-1979

    Fifty-one Scrapbooks (1928-1930, 1938-1940, and 1944-1978) help document the history of Interlochen and its leaders, especially Joseph Maddy. Arranged in rough chronology, they mainly contain newspaper and magazine articles, but a few include photos and manuscript items. Researchers will also want to make reference to the Printed Published Articles subseries, especially for the missing years. The scrapbooks offer a more comprehensive coverage of individual Campers and faculty, which should prove useful in documenting the growing importance of African-Americans on campus and other specialized projects. A detailed inventory of the Scrapbooks provides information on the contents of the individual volumes. The scrapbooks since 1978 have been retained by Interlochen.

    National High School Orchestra and Camp1928-1930April-August 19281

    (Mainly clippings; also some performance telegrams and photographs of the Camp under construction.)

    Fall 1928-Fall 19302

    (Newspaper clippings; orchestra appearances in Washington D.C., and New York City are well covered.)

    Joseph Maddy1938-1940January-April, 19383

    (Largely activities of Music Educators National Conference, especially Maddy's presiding at its convention celebrating 100 years of music education in America and including newspapers articles, programs, photos, and some manuscripts (telegrams such as from Percy Grainger and interviews such as with Douglas Edwards).)

    Fall 1939-summer19404

    (Largely Maddy's music education endeavors, especially his Southern trip in the spring of 1940 including clippings and photos.)

    National Music Camp19391941July-September 193935

    (Clippings mainly pertaining to World's Fair concert conducted by Loren Maazel as well as to radio broadcasts.)

    Summer 19415

    (Clippings, mainly on the movie about the Camp, "There's Magic in Music," and on the appearances of Frederick Stock and Paul Whiteman, including problems with Musicians Union head, James Petrillo, over the latter.)

    Petrillo controversy1944March and April 19446

    (Editorials about proposed Congressional legislation arranged alphabetically by state.)

    National Music Camp1944-1966CircaApril 1944-January 19457

    (Clippings only, including articles on the Petrillo controversy and on guest conductor, Percy Grainger.)

    February-June 19458

    (Articles arranged alphabetically by state, including much on Petrtillo controversy.)

    June-August, 194536

    (Clippings including much on Petrillo controversy.)

    CircaFebruary-November 19469

    (Clippings arranged alphabetically by state, including hometown paper accounts of students at Camp as well as articles on the Petrillo controversy. This volume is in poor condition with the adhesive failing and many loose clippings.)

    1947194810

    (Each yearly portion contains clippings arranged alphabetically by state (and within Michigan, by city). The 1947 segment includes much on the Petrillo controversy, especially the Code of Ethics signed (September 24) by the Musicians Union with the Music Educators National Conference and the American Association of School Administrators.)

    194911

    (Contains issues of the Scherzo, Vol. 1, Nos. 1-8, at the front followed by clippings on the Camp arranged alphabetically by state.)

    1950195112

    (Each year begins with printed promotional items together with Scherzo issues and is followed by clippings arranged alphabetically by state (the 1951 portion concludes with Illinois). Issue No. 2 of the 1950 Scherzo mentions Norma Lee Browning's visit to the Camp.)

    1952195313

    (The 1952 portion contains selected articles covering July and August arranged with the out-of-state in front and Michigan (alphabetically by city) in back. The 1953 segment contains more articles and covers a longer time span (May-August), but lacks an ascertainable order: alphabetical by state, subject, or chronological.)

    1954-195614

    (The clippings in each yearly segment are organized in rough chronological fashion mainly from late June through August. The 1954 portion contains much on the threat to locate an air force base near Interlochen. One article also mentions Maddy's plan to winterize the Camp in order to make it a year-round institution. In 1955 the first European musicians came to study at the Camp, and because the legislature failed to appropriate funds, the taped Interlochen broadcasts were suspended. The following year, Maddy proposed a European tour by the Camp orchestra. The entire volume is in poor condition.)

    195815

    (Part I)

    (Clippings, circa March-November, covering Camp activities and personages. Much relates to the Musicians Union opposition to the Camp orchestra appearance at the Mackinac Bridge dedication. A folder of loose clippings can be found at the front.)

    Part I and Part II1958-195916

    (The first portion is a continuation of the preceding volume, covering similar subjects and dates. The second, January-July 1959 includes much on the American Opera Workshop.)

    195917

    (Part II)

    (Wrapped scrapbook pages, circa January-early August 1959 (mainly May-July), continuing the coverage of the preceding volume.)

    196018

    (Coverage of the visits of Deems Taylor and Hugh Downs is included.

    (Wrapped scrapbook pages, mainly from June through August)

    196119

    (Folder of loose scrapbook pages contains clippings from June through August, including Van Cliburn's first appearance at the Camp. Because the adhesive is failing, it is in poor condition.)

    196220

    (Articles focusing on the appearance of Camp musicians at the White House. Many of the clippings are surrounded by small tabs indicating the names of the various newspapers in which they appeared. The adhesive is failing; so many tabs are loose or have fallen off.)

    196321

    (Newspaper articles, including on the "Today Show" broadcast from the Camp and plans for next year's International Youth Symphony. A subject index can be found at the front.)

    196422

    (Clippings including on Camp appearances by Van Cliburn and Luci Baines Johnson and on the International Youth Symphony. Again, there is a subject index in the front.)

    196523

    (Clippings in an apparently similar format to the preceding volume but without the index.)

    196624

    (Part I)

    (Clippings which are organized chronologically at first and then, by subject (with insert papers bearing the descriptions).)

    196625

    (Part II)

    (A continuation of the subject organization (with paper inserts) of the preceding volume. Mention is made of the start of Blue Lake Fine Arts Camp near Muskegon, Michigan.)

    Interlochen Arts Academy1956-19661956-196326

    (Articles about the efforts to establish the Academy and its first year of operation.)

    1963-196427

    (Clippings on the second year of the Academy's operation. A subject index is located at the front.)

    1964-196528

    (Clippings on the third year of the Academy. While an index is lacking, the format resembles that of the preceding volume.)

    1965-196629

    (Clippings covering the Academy from its opening in September through February .)

    Joseph Maddy1966-1967February-April 196630

    (Newspaper accounts of his statements on educating the gifted.)

    196631

    (Condolence telegrams, letters, and cards on his death, including from Hugh Downs, Karl Haas, Zoltan Kodaly, Eugene Ormandy, David Sarnoff, and George Romney.)

    1966-196732

    (Obituaries and memorials on Maddy's passing, mainly articles but also programs and a manuscript resolution passed by the Interlochen Board of Trustees.)

    International Society of Music Educators1966196633

    (Newspaper and magazine articles and the program for the ISME convention held at Interlochen.)

    Karl Haas1967April-October 196734

    (Newspaper and magazine articles on the selection and inauguration of Karl Haas as President of Interlochen. An envelope of loose clippings is at the front.)

    Interlochen: Camp and Academy1966-1978August 1966-May 196937

    (Articles mainly of the Academy.)

    August 1966-May 197038

    (Clippings on the Camp and Academy. The first two plus pages cover August-October 1966. The rest emphasizes February 1967-May 1970. There is no mention of Karl Haas' resignation.)

    June 1967-September 196839

    (Mainly articles on the Camp, but also some on the Academy.)

    July 1969-April 197140

    (Articles on both the Camp and Academy.)

    May 1971-August 197241

    (Clippings organized in a roughly chronological fashion on both the Camp and Academy. It includes items on the ground breaking for the Grand Traverse Performing Arts Center.)

    May-July 197242

    (Chronologically arranged articles mainly on the Camp. There are many loose clippings inserted at the end of the chronology, and many blank pages follow. Mention is made of the appointment of Paul Boylan as director of the Camp's University Division.)

    November 1972-August 197343

    (Clippings on both the Camp and Academy which are arranged chronologically. They include items on the visit of Pablo Casals to the Camp in the summer of 1973.)

    August 1973-February 197544

    (Chronologically organized clippings on both the Camp and Academy. Mention is made of the January 1975 death of Thor Johnson, early Camp conductor and Academy director.)

    February-July 197545

    (Chronologically arranged articles on both the Camp and Academy. The include information on the dedication of Grand Traverse Performing Arts Center (Alden Dow, architect) in May and the visit of President and Mrs. Gerald Ford in July. Some of the pages are beginning to adhere.)

    July-October 197546

    (Chronologically organized clippings on both the Camp and Academy. The first pages continue the coverage of President and Mrs. Ford's visit to the Camp. The pages of this volume are also beginning to adhere.)

    October 1975-March 197647

    (The volume follows the chronologically arranged Camp/Academy format of the previous volumes. It includes an item (December 26, 1975) on Mike Wallace's early association with the Camp. Its pages are also starting to stick.)

    March-April 197648

    (The volume continues the chronological Camp/Academy pattern of the preceding volume. It has many empty pages, and the filled ones are beginning to adhere.)

    February 1976-May 197749

    (The volume follows the roughly chronological, Camp/Academy pattern. Some of the articles are starting to loosen from the pages. Mention is made (May 1977) of the state arts budget coming under attack.)

    January 1977-August 197850

    (The volume offers a somewhat chronological coverage of articles about the Camp and Academy. It mainly deals with 1977 which is the fiftieth anniversary of the Camp. The same articles often appear in many papers, so small tabs containing the name of each paper are included. The pages are starting to adhere, and the tabs should begin to fall soon.)

    August 1977-June 1978

    (The volume offers a somewhat chronological coverage with clippings about the Camp and Academy. Many continue the fiftieth anniversary publicity of the preceding volume. Again, numerous pages are beginning to adhere.)

    +
    +
    diff --git a/sample-ead/bhl/umich-bhl-87365-1.xml b/sample-ead/bhl/umich-bhl-87365-1.xml new file mode 100755 index 0000000..eb2c643 --- /dev/null +++ b/sample-ead/bhl/umich-bhl-87365-1.xml @@ -0,0 +1,677 @@ + + +umich-bhl-87365-1Finding Aid for Provost and Executive Vice-President for Academic Affairs (University of Michigan) Central FilesFinding aid prepared by: Bentley Historical Library staff. Lisa Gibbon Pratt (reprocessing), 1995 Updated November 2015. Latest update: April 2019.Bentley Historical Library

    2003

    This finding aid was produced using ArchivesSpace on 2021-07-28 15:15:49 -0400.The finding aid is written in English.2015-11-06added new accessions, boxes 588-6102015-06-05added new accessions, boxes 358-5872011-03-13added WAS website acsession2003-10-10Converted to EAD2002 using Word macro and Xmetal2002-09-30Existing text updated, restricted files tagged, VPAA Central includes through box 357.1999-10-01Original encoding in EAD ver. 1.0 from Word 6.0 file using word macros and manual tagging in A/E.2016-11-21Updated Conditions Governing Use Note2016-12-15Corrected box numbers (126-127)2017-07-06Corrected ongoing dates with an end date of 99992019-04-30Admin history update2020-01-10Changes were made by transferring unprocessed removable media through the RMLC project.2021-05-14corrected some out of order items in boxes 598-6042021-06-10corrected PR restriction date in box 5792021-07-28Cleaned metadata to validate EAD
    Bentley Historical Library University of MichiganFinding Aid for Provost and Executive Vice-President for Academic Affairs (University of Michigan) Central FilesFinding aid prepared by: Bentley Historical Library staff. Lisa Gibbon Pratt (reprocessing), 1995 Updated November 2015. Latest update: April 2019. + + + Bentley Historical Library + + + Provost and Executive Vice-President for Academic Affairs (University of Michigan) Central Files + + University of Michigan. Provost and Executive Vice-President for Academic Affairs. + + 87365 Bimu B6 2 [1] + + 1 oversize folder + + + 605 linear feet (in 610 boxes) + + + 50.6 GB (online) + + 1961-2013 + + Digital files + + Central academic administrative unit of the University of Michigan which functions as chief executive assistant to the president, responsible for appointments and promotions with oversight for schools, colleges, educational units and programs; including budget planning, legislative relations, institutional research, and affirmative action policies. Central Files subgroup includes correspondence files of vice-presidents, associate and assistant vice-presidents, and other staff members within the vice-president's office. + The materials are in English. + Portions of the records are stored offsite. Two days notice required for retrieval. + + +

    The Provost's Office (Donor No. 5120) makes periodic additions to the records. Records were first received in 1971.

    +

    The VPAA Central Files are open for research except for certain records restricted by statute or university policy. Restricted material includes personnel-related files, including search, review, promotion, and tenure files; student educational records; client/patient records; and records of executive officers of the university.

    The VPAA Central Files record group includes restricted material in the following categories:

    + Personnel Related Records -- Boxes 295-319, 504-508, 575-581, 583-586, 599-601 + Student Academic Records -- Boxes 295-319, 504-508, 575-581, 599 + Patient/Client Records -- Boxes 309, 311-312, 314, 317-318, 504-508, 575-581, 601 + Executive Officer Records -- Boxes 368-599, 602-610 + +

    Access to parts of the VPAA record group is restricted based on applicable law and university policy. Restricted material includes personnel files, search files, tenure and review files, grievance and disciplinary files and student files. In addition, the VPAA records are subject to these restrictions

    + Files of a vice president, or a member of his/her staff, still in office, are restricted. + Files of a vice president or a member of his/her staff, no longer in office, are restricted for ten years from the date of their origin. Files over ten years old are open. This restriction applies to files added to the record group prior to January 1, 2000. + Files added to the record group after January 1, 2000 are restricted for twenty years from the date they were added to the record group, in accord with the access policy for executive officer level records as described below. The VPAA record group does not, as yet, include any records in this category. + +

    +

    +

    + Access Restrictions for University of Michigan Records +

    +

    University records are public records and once fully processed are generally open to research use. Records that contain personally identifiable information will be restricted in order to protect individual privacy. Certain administrative records are restricted in accordance with university policy as outlined below. The restriction of university records is subject to compliance with applicable laws, including the Michigan Freedom of Information Act.

    +

    Categories of Restricted Records + Personnel-related files, including search, review, promotion, and tenure files, are restricted for thirty (30) years from the date of their creation. + Student educational records: FERPA's protection of personally identifiable information in a student's education records ends at the time of a student's death and therefore is a matter of institutional policy. As a courtesy to the families of recently deceased students who were enrolled at the time of death, the University generally will not release information from their education records for five years without the consent of the deceased student's next of kin. Eighty-five (85) years after the date the records were first created, the University will presume that the student is deceased. Thereafter the student's education records will be open. Student records at the Bentley Historical Library are restricted for eighty-five (85) years, but may also be made available upon proof of the death of the student. + Patient/client records are restricted for one-hundred (100) years from the date of their creation. The terms of use for particular records older than 100 years may require the research to sign a Patient/Client Access Agreement. + Executive records: Records generated by the university's executive officers, deans, directors, department heads, and their designated support staff are restricted for twenty (20) years from the date of their creation. + +

    +

    Restricted files are indicated in the contents list of the collection’s finding aid with a restriction note indicating the restriction type and the date of expiration.

    +

    For further information on the restriction policy and placing Freedom of Information Act requests for restricted material, consult the reference archivist at the Bentley Historical Library (bentley.ref@umich.edu) or the University of Michigan Freedom of Information Office website (https://foia.vpcomm.umich.edu/).

    +
    +

    +
    +

    Copyright is held by the Regents of the University of Michigan but the collection may contain third-party materials for which copyright is not held. Patrons are responsible for determining the appropriate use or reuse of materials.

    +

    item, folder title, box no., Vice President for Academic Affairs, Bentley Historical Library, University of Michigan

    +
    +

    As of 1995 the office represented by this record group is officially titled the Office of the Provost and Executive Vice President for Academic Affairs. Previous titles of the office were: Vice Presidents for Academic Affairs and Provost, 1983-1995; Vice President for Academic Affairs, 1962-1983; and Provost, 1938-1962.

    Provost

    The origins of this office date back to 1938, during President Ruthven's administration, when the position of provost was created by a bylaw of the Board of Regents to "aid the President by performing such of the President's functions as shall from time to time be delegated by him or by the Board of Regents" (Regents' Proceedings, March 1938, p. 505). E. Blythe Stason, the dean of the Law School who had already been performing many of these functions, was appointed the first provost. Stason resigned as provost in November 1944 to devote his attentions to the leadership of the Law School, and James P. Adams, vice president of Brown University and former University of Michigan economics professor, assumed the post of provost and professor of economics in January 1945. At the Regents' meeting of January 1945 the bylaw establishing the provost's position was amended to include the statement that the provost "shall be the chief executive officer of the University next to the President" (Regents' Bylaw 2.02). Adams remained the provost until his resignation in July 1951. A successor to Adams was not named, and the responsibilities of the provost were absorbed by the newly created vice president and dean of faculties, Marvin Niehuss.

    Vice President for Academic Affairs

    In 1962 two new positions were created in the university administration: executive vice president and vice president for academic affairs.

    Marvin Niehuss, vice president for university relations since 1945 and the vice president and dean of faculties since 1951, was promoted to the position of executive vice president in 1962. As vice president and dean of faculties, Niehuss had coordinated university relations with the state legislature and had overseen the administration of the schools, colleges, and other units (including institutes, Extension Service, summer session, and the Reserve Officers' Training Corps), reporting on enrollment, teaching loads, research, and faculty salaries. In his new position as executive vice president, Niehuss continued to supervise legislative relations and served as the University's contact with the state board of education. In addition, the executive vice president was the chief executive assistant to the president and assumed the duties and powers of the president in his absence. (When Niehuss retired in 1968 the position of executive vice president was abolished and a vice president for state relations and planning was established in its place.)

    Roger Heyns, a member of the Psychology Department and since 1959 dean of the College of Literature, Science and the Arts, was appointed to the position of vice president for academic affairs in 1962. Heyns assumed many of the duties previously performed by the vice president and dean of faculties. He was given general executive responsibility for the faculty and for the academic programs of the schools, colleges, and other educational units. He reviewed recommendations of deans, directors, and department heads with regard to appointments, promotions, leaves of absence, and salaries of faculty members and special service personnel. In addition, the Offices of Admissions, and Registration and Records--previously under the jurisdiction of the vice president for student affairs--were brought under the vice president for academic affairs.

    This reorganization of administrative responsibilities was intended as a means of unifying planning in a period of rapid growth of the University. In actual practice, the duties associated with planning remained dispersed and were shifted from one office to another in the 1960s and 1970s. When a vice presidency for state relations and planning was established in 1968, some of the responsibility for academic program planning was transferred to that office. The Office of Institutional Research, which collected and analyzed data on enrollment trends, faculty characteristics, funding, and related subjects, was transferred in 1969 from Academic Affairs to State Relations and Planning. In 1974 the Office of Institutional Research was renamed the Office of Academic Planning and Analysis and was returned to Academic Affairs, reflecting the assignment of additional evaluation and planning responsibilities under the vice president for academic affairs. Over the course of the 1960s and 1970s, the vice president for academic affairs gradually assumed greater responsibility for budget preparation.

    In addition to program and budget planning, the Office of Academic Affairs was involved in implementing affirmative action plans, overseeing the Opportunity Program and Tuskegee-Michigan exchange program, and coordinating support services for minority students.

    When Roger Heyns left the university in 1965 to become chancellor of the University of California at Berkeley, he was succeeded by Allan F. Smith, the dean of the Law School. Smith held the post of vice president for academic affairs for nine years and in 1974 was followed by Frank H. T. Rhodes, a professor of geology and since 1971 dean of the College of Literature, Science, and the Arts. Rhodes resigned in 1977 to assume the presidency of Cornell University.

    Harold T. Shapiro, chairman of the Economics Department, was appointed vice president for academic affairs in 1977 and held the position until 1980, when he became president of the University of Michigan. Alfred Sussman, dean of Rackham School of Graduate Studies, served as acting vice president for academic affairs from November 1, l979 through July 1, l980, when Billy E. Frye, professor of Zoology and dean of the College of Literature, Science, and the Arts, assumed the position.

    Vice President for Academic Affairs and Provost

    At its February 1983 meeting, the Regents of the University of Michigan changed the title of the position to Vice President for Academic Affairs and Provost (hereafter referred to as "provost"). The move to include "provost" in the title was taken in part because of the increased responsibility of the vice president within the university's administration and because of the need to assist the president as he moved into state and national projects, notably the management of the capital campaign fund-raising effort.

    In 1986, Billy E. Frye resigned and was replaced by James J. Duderstadt, dean of the College of Engineering, who served as provost until he became the president of the university in September 1988. Robert Holbrook served as interim provost until December 1988. In January 1989, Charles Vest, dean of the College of Engineering, became provost and remained until July 1990, when he left to assume the presidency of the Massachusetts Institute of Technology. Holbrook served as interim provost for the month of August, after which Gilbert Whitaker, dean of the School of Business Administration, began his tenure as provost.

    Provost and Executive Vice President for Academic Affairs

    In September 1993 the Regents approved a change in title to provost and executive vice president for academic affairs. This title was intended to reflect more accurately the responsibilities of the provost and to "bring Michigan into line with the administrative structures of other universities" (The University Record 49(3), 1993 September 20: 4). The new designation came about when President Duderstadt recommended a change in title for Whitaker. In 1995 Whitaker returned to teaching and was succeeded by J. Bernard Machen, dean of the School of Dentistry. Machen initially served on an interim basis before agreeing to accept a two-year appointment. He did not seek an extension and was succeeded by Nancy Cantor, dean of the Horace H. Rackham School of Graduate Studies in 1997.

    The position vice provost for academic affairs was created in 1990 to recognize university-wide activities in which John H. D'Arms, dean of Horace H. Rackham School of Graduate Studies, was engaged that were beyond the scope of his decanal responsibilities. Such responsibilities included overseeing the Bentley Historical Library and the Clements Library, evaluating promotion and tenure dossiers, and serving as liaison between the university and major foundations (The University Record 45(24), 1990 March 26: 1). With the appointment of new provosts the functional responsibilities and reporting relationships of the vice provost have frequently changed.

    + Provost and Executive Vice President for Academic Affairs + + 1993-1995 + + Gilbert R. Whitaker, Jr. + + + + 1996 + + J. Bernard Machen (interim) + + + + 1996-1997 + + J. Bernard Machen + + + + 1997-2001 + + Nancy Cantor + + + + 2001 + + Lisa Tedesco (interim) + + + + 2002 + + Paul N. Courant (interim) + + + + 2002-2005 + + Paul N. Courant + + + + 2005-2006 + + Edward M. Gramlich (interim) + + + + 2006-2010 + + Teresa A. Sullivan + + + + 2010-2013 + + Philip J. Hanlon + + + + 2013-2017 + + Martha E. Pollack + + + + 2017- + + Martin A. Philbert + + + + + Vice Presidents for Academic Affairs and Provost + + 1962-1965 + + Roger W. Heyns + + + + 1965-1974 + + Allen F. Smith + + + + 1974-1977 + + Frank H.T. Rhodes + + + + 1977-1979 + + Harold T. Shapiro + + + + 1979-1980 + + Alfred S. Sussman (Interim) + + + + 1980-1986 + + Billy E. Frye + + + + 1986-1988 + + James J. Duderstadt + + + + 1988 + + Robert S. Holbrook (Interim) + + + + 1989-1990 + + Charles M. Vest + + + + 1990 + + Robert S. Holbrook (Interim) + + + + 1990-1993 + + Gilbert R. Whitaker, Jr. + + + + + Vice Provost for Academic Affairs + + 1990-1995 + + John H. D'Arms + + + + + Vice Provosts for Academic Affairs – Graduate Studies + + 1995-1997 + + Nancy Cantor + + + + 1998-2004 + + Earl Lewis + + + + 2004 + + Steven L. Kunkel (interim) + + + + 2005- + + Janet Weiss + + + + + Senior Vice Provosts + + 2001- + + Lester Monts + + + + + Vice Provosts for Academic and Faculty Affairs + + 2007- + + Lori J. Pierce + + + + 2009-2014 + + Christina L. B. Whitman + + + + 2014 + + Sara B. Blair + + + + + Vice Provosts for Academic and Budgetary Affairs + + 2007-2010 + + Philip J. Hanlon + + + + 2010-2013 + + Martha E. Pollack + + + + 2013-2016 + + Alfred Franzblau + + + + 2016- + + Amy Dittmar + + + + + Associate Provosts + + 1993-1997 + + Robert Holbrook + + + + 1993-1997 + + Susan Lipschutz + + + + 1997-2002 + + Pamela A. Raymond + + + + 1997-2001 + + Lester P. Monts + + + + 1998-2002 + + Paul N. Courant + + + + 2001-2005 + + James L. Hilton + + + + 2002-2005 + + Valerie P. Castle + + + + 2002-2005 + + Janet Weiss + + + + 2004-2007 + + Philip J. Hanlon + + + + 2005-2007 + + Lori J. Pierce + + + + + Associate Vice Presidents + + 1971-1975 + + John Romani + + + + 1974-1981 + + Richard English + + + + 1975-1981 + + Carolyne K. Davis + + + + 1981-1993 + + Robert S. Holbrook + + + + 1981-1983 + + W. Allen Spivey + + + + 1983-1993 + + Mary Ann Swain + + + + 1984-1986 + + Niara Sudarkasa + + + + 1988-1989 + + John H. Jackson + + + + + Administrative Deans + + 1962-1974 + + Robert L. Williams + + + + + Assistant Vice Presidents + + 1974/75-1982 + + Edward A. Dougherty + + + + 1965-1982 + + Ernest R. Zimmermann + + + + 1983-1995 + + Robert B. Holmes + + + + + Associate Vice President + + 2002 + + Marilyn G.Knepp + + + + + Assistant Provost + + 1997-2000 + + Marilyn G. Knepp + + + + 1999-2008 + + Linda H. Gillum + + + + 1999-2002 + + K. B. Soper + + + + 2002-2011 + + Glenda Haskell + + + + 2011- + + Philip R. Hughes + + + + + Associate Vice Provost + + 2002 + + Glenna Schweitzer + + + + + Chief of Staff + + 1998-2013 + + Karen L. Gibbons + + + + 2013- + + Stephanie Riegle + + + + 2014- + + Erin Fluharty + + + +
    +

    The records of the VPAA are divided into in three subroups: Central Files, Supplemental Files and Staff Files. Each of the subsseries is described in separate finding aid. The Central files are further organized into series by fiscal year and each year may include an Alphabetical File, Schools and Colleges file and a Chronological file.

    + Summary Contents List - Central Files + 1961/1962 Alphabetical Files -- Box 1 + 1962/1963 Alphabetical Files -- Box 1 + 1963/1964 Alphabetical Files -- Box 1 + 1964/1965 Alphabetical Files -- Boxes 1-2 + 1965/1966 Alphabetical Files -- Box 2 + 1966/1967 Alphabetical Files -- Boxes 2-7 + 1967/1968 Alphabetical Files -- Boxes 7-12 + 1968/1969 Alphabetical Files -- Boxes 13-19 + 1969/1970 Alphabetical Files -- Boxes 20-28 + 1970/1971 Alphabetical Files -- Boxes 28-29 + 1971/1972 Alphabetical Files -- Boxes 29-38 + 1972/1973 Alphabetical Files -- Boxes 38-47 + 1973/1974 Alphabetical Files -- Boxes 48-57 + 1974/1975 Alphabetical Files -- Boxes 57-65Schools and Colleges Files -- Boxes 65-68 + 1975/1976 Alphabetical Files -- Boxes 68-75Schools and Colleges Files -- Boxes 76-78 + 1976/1977 Alphabetical Files -- Boxes 79-84Schools and Colleges Files -- Boxes 84-87 + 1977/1978 Alphabetical Files -- Boxes 88-95Schools and Colleges Files -- Boxes 95-99 + 1978/1979 Alphabetical Files -- Boxes 99-107Schools and Colleges Files -- Boxes 107-111 + 1979/1980 Alphabetical Files -- Boxes 111-116Schools and Colleges Files -- Boxes 117-119 + 1980/1981 Alphabetical Files -- Boxes 119-125Schools and Colleges Files -- Boxes 125-128 + 1981/1982 Alphabetical Files -- Boxes 129-136Schools and Colleges Files -- Boxes 136-139 + 1982/1983 Alphabetical Files -- Boxes 139-147Schools and Colleges Files -- Boxes 147-151 + 1983/1984 Alphabetical Files -- Boxes 151-163Schools and Colleges Files -- Boxes 164-171 + 1984/1985 Alphabetical Files -- Boxes 172-185Chronological Files -- Boxes 185-186Schools and Colleges Files -- Boxes 186-192 + 1985/1986 Alphabetical Files -- Boxes 193-206Chronological Files -- Boxes 206-207Schools and Colleges Files -- Boxes 208-212 + 1986/1987 Alphabetical Files -- Boxes 213-228Schools and Colleges Files -- Boxes 228-232Chronological Files -- Boxes 233-236 + 1987/1988 Alphabetical Files -- Boxes 237-246Schools and Colleges Files -- Boxes 246-248Chronological Files -- Boxes 249-253 + 1988/1989 Alphabetical Files -- Boxes 254-261Schools and Colleges Files -- Boxes 261-264Chronological Files -- Boxes 265-267 + 1989/1990 Alphabetical Files -- Boxes 268-277Schools and Colleges Files -- Boxes 278-281Units Budget Files -- Boxes 281Chronological Files -- Boxes 282 + 1990/1991 Alphabetical Files -- Boxes 283-290Schools and Colleges Files -- Boxes 290-293Chronological Files -- Boxes 293-294 + 1991/1992 Alphabetical Files -- Boxes 320-327Schools and Colleges Files -- Box 328Chronological Files -- Box 329 + 1992/1993 Alphabetical Files -- Boxes 330-335Schools and Colleges Files -- Boxes 336-337Chronological Files -- Box 329 + 1993/1994 Alphabetical Files -- Boxes 338-343Schools and Colleges Files -- Boxes 344Chronological Files -- Box 345 + 1994/1995 Alphabetical Files -- Boxes 347-353Schools and Colleges Files -- Boxes 354-355Chronological Files -- Box 356 + 1995/1996 Alphabetical Files -- Boxes 358-365Schools and Colleges Files -- Boxes 365-367Chronological Files -- Box 356-357 + 1996/1997 Alphabetical Files -- Boxes 368-375Schools and Colleges Files -- Boxes 375-376Chronological Files -- Box 357 + 1997/1998 Alphabetical Files -- Boxes 377-389Schools and Colleges Files -- Boxes 390-393 + 1998/1999 Alphabetical Files -- Boxes 393-404Schools and Colleges Files -- Boxes 404-407Chronological Files -- Boxes 487 + 1999/2000 Alphabetical Files -- Boxes 407-419Schools and Colleges Files -- Boxes 420-423Chronological Files -- Boxes 487-488 + 2000/2001 Alphabetical Files -- Boxes 423-435Schools and Colleges Files -- Boxes 435-438Chronological Files -- Box 488-489 + 2001/2002 Alphabetical Files -- Boxes 438-450Schools and Colleges Files -- Boxes 450-452Chronological Files -- Boxes 489 + 2002/2003 Alphabetical Files -- Boxes 454-469Schools and Colleges Files -- Boxes 469-472Chronological Files -- Box 490 + 2003/2004 Alphabetical Files -- Boxes 472-483Schools and Colleges Files -- Boxes 484-486Chronological Files -- Boxes 490-491, 503 + 2004/2005 Alphabetical Files -- Boxes 491-501Schools and Colleges Files -- Boxes 501-503Chronological Files -- Boxes 583-584 + 2005/2006 Alphabetical Files -- Boxes 509-517, 575Schools and Colleges Files -- Boxes 517-519, 575Chronological Files -- Box 584 + 2006/2007 Alphabetical Files -- Boxes 519-529, 575-576Schools and Colleges Files -- Boxes 529-531, 576Chronological Files -- Box 585 + 2007/2008 Alphabetical Files -- Boxes 532-541, 576-577Schools and Colleges Files -- Boxes 542-543, 578Chronological Files -- 585-586 + 2008/2009 Alphabetical Files -- Boxes 543-554, 578Schools and Colleges Files -- Boxes 554-556, 579Chronological Files -- 586-587 + 2009/2010 Alphabetical Files -- Boxes 556-564, 579-580Schools and Colleges Files -- Boxes 564-565, 580Chronological Files -- 587, 599 + 2010/2011 Alphabetical Files -- Boxes 582 (oversize), 565-573, 580Schools and Colleges Files -- Boxes 573-574, 581Chronological Files -- Boxes 583-587, 599-600 + 2011/2012 Alphabetical Files -- Boxes 581, 587-596, 599Schools and Colleges Files -- Boxes 596-599Chronological Files -- Box 601 + 2012/2013 Alphabetical Files -- Boxes 601-608Schools and Colleges Files -- Boxes 609-610 + +
    +

    The records of the Provost and Executive Vice President for Academic Affairs date from 1947 to 1997 and total more than 675 linear feet. The records are a rich source of information on the University of Michigan from the 1960s to the present. They contain a wide variety of material documenting the concerns of the administration and, to a lesser extent, the faculty and students regarding academic programs, student and faculty activities, and the administrative operations of the University of Michigan.

    The records, which include the provost's files as well as the files of associate and assistant vice presidents, are arranged in three subgroups: Central Files, Staff Files, and Supplemental Files. The Central Files subgroup consists of the records maintained by the provost's office and is discussed in greater detail below. The Staff Files subgroup includes the records of assistant and associate vice presidents and of the assistants to the provost. The Supplemental Files subgroup contains material on specific topics to which a number of academic affairs staff contributed their efforts, including retreats, unit reviews, and searches. Each of the subgroups is fully described in a separate finding aid.

    It should be noted that some of the records in the record group predate the founding of the Office of Academic Affairs. Such records were generally brought by vice presidents or staff members from previous positions or inherited from persons who formerly performed their duties.

    The Central Files subgroup consists of 605 linear feet dating from the creation of the Office of Academic Affairs in the academic year 1961/1962 to 2012/2013. The records consist primarily of correspondence, minutes and other committee files, reports, and budget materials, reflecting the broad range of responsibilities and functions of the provost. Whereas the records of the Staff Files subgroup tend to document the process of policy formation and decision-making functions, the Central Files records more often contain finished products, such as reports and policy statements. For the researcher interested in the provost's views on a particular topic or issue, or the Office of Academic Affairs involvement in the academic and financial life of various schools and colleges, the Central Files subgroup is the single best starting point.

    The records of the Central Files subgroup are broken into series by academic year, and each series consists of one or more of the following subseries: Alphabetical Files, Schools and Colleges Files, and Chronological Files. From 1961/1962 through 1973/1974 the series each consist of one subseries of Alphabetical Files. The Alphabetical Files are arranged alphabetically and include topical files as well as files regarding university academic, research, and service units.

    From 1974/1975 to 1983/1984 the series are split into two subseries, Alphabetical Files and Schools and Colleges Files. The Alphabetical Files remain similar in content to previous years with the exception that files relating to academic units, namely schools, colleges, and their departments, now comprise the subseries Schools and Colleges Files. Records concerning centers, special libraries, museums, institutes, and interdisciplinary programs are filed in the Alphabetical Files subseries. The Schools and Colleges Files are arranged alphabetically by academic unit and contain materials relating to the annual budget requests, promotion and tenure decisions, internal and external reviews, dean evaluations, and changes in academic programs.

    For the years 1974/1975 to 1981/1982, with the exception of 1976/1977, there is an "Index to Correspondence" located at the end of the Alphabetical Files which lists in chronological order the letters written by the vice president, the name of the recipient, the subject of the letter, and the heading under which it is filed.

    From 1984/1985 to 1993/1994, 1998/1999-2008/2009 and 2010/2011-2011/2012 the series consist of three subseries: Alphabetical Files, Schools and Colleges Files, and Chronological Files. The Alphabetical Files and the Schools and Colleges Files, while becoming more voluminous over the years, remain similar in nature. The Chronological Files consist of all outgoing correspondence from the vice president and are arranged by month. The Chronological Files are useful if the researcher knows the date the vice president might have corresponded on a particular topic but is unsure of the heading used for filing in the Alphabetical Files.

    The Alphabetical Files, as mentioned above, are a strong source of information on a variety of topics relating to the administration of a large university, including the university's relationship with state and federal governments, issues confronting institutions of higher education at various points in time (student unrest and affirmative action, for example), collaborative efforts with other Big Ten and area colleges and universities, and the creation and revision of university policies. The minutes of the Academic Affairs Advisory Council (AAAC) are an especially good source of information on the activities of the Office of Academic Affairs. The AAAC, composed of the deans of the schools and colleges, directors of institutes, centers, and special libraries, and the staff of the Office of Academic Affairs, was established to hold monthly meetings to discuss educational policy, planning for growth, and special studies.

    Because folder titles on a particular subject may vary from year to year, researchers are advised to be imaginative in searching for information in the topical files. It should also be noted that information on any given subject can probably be found in various places in the collection.

    The 2010 and 2011 series feature the addition of the Archived Website subseries. These were created to preserve the office's public website over time. The subseries document the mission, activities, policies, and individuals involved in the operation of the Office of the Provost and Executive Vice President for Academic Affairs as they are presented on its public website. Content includes important news and announcements, publications (such as reports and administrative documents), and information about committees, initiatives, and events. This archived website will be captured on a regular, ongoing basis as part of the University of Michigan Web Archives, hosted at https://archive-it.org/organizations/934.

    + +

    + +

    + Afro-Americans -- Michigan. + Draft -- Michigan. + Universities and colleges -- United States. + Demonstrations -- Michigan -- Ann Arbor. + Minority college students -- Michigan -- Ann Arbor. + Women college students -- Michigan -- Ann Arbor. + Digital file formats. + American Council on Education. + Black Action Movement (University of Michigan) + Committee on Institutional Cooperation. + Ford Foundation. + Grand Rapids University Consortium Center. + Graduate Employees Organization (University of Michigan) + Horace H. Rackham School of Graduate Studies. + Michigan. Dept. of Education. + Michigan. Legislature. + Michigan. State Board of Education. + Tuskegee Institute. + United States. Congress. House. Committee on Un-American Activities. + United States. Selective Service System. + United States. Army. Reserve Officers' Training Corps. + University of Michigan -- Accreditation. + University of Michigan -- Administration. + University of Michigan -- Awards. + University of Michigan. Board of Regents. + University of Michigan. Budget Priorities Committee. + University of Michigan. College of Architecture and Design. + University of Michigan. College of Architecture and Urban Planning. + University of Michigan. College of Engineering. + University of Michigan. College of Literature, Science and the Arts. + University of Michigan. College of Pharmacy. + University of Michigan -- Congresses. + University of Michigan. + University of Michigan. Dept. of Geography. + University of Michigan. Division of the Health Sciences. + University of Michigan. Evaluation and Planning Project. + University of Michigan. Extension Service. + University of Michigan -- Faculty. + University of Michigan -- Finance. + University of Michigan. + University of Michigan -- Grants. + University of Michigan. Information Technology Division. + University of Michigan. Institute for Human Adjustment. + University of Michigan. Institute for the Study of Mental Retardation and Related Disabilities. + University of Michigan. Institute of Public Policy Studies. + University of Michigan. Institute of Gerontology. + University of Michigan. Law School. + University of Michigan. Library. + University of Michigan. Medical Center. + University of Michigan. Medical School. + University of Michigan -- Students. + University of Michigan. Museum of Art. + University of Michigan. Opportunity Program. + University of Michigan -- Planning. + University of Michigan -- Research. + University of Michigan. Residential College. + University of Michigan -- Students -- Scholarships, fellowships, etc. + University of Michigan. School of Art. + University of Michigan. School of Dentistry. + University of Michigan. School of Education. + University of Michigan. School of Business Administration. + University of Michigan. School of Information and Library Studies. + University of Michigan. School of Music. + University of Michigan. School of Natural Resources. + University of Michigan. School of Nursing. + University of Michigan. School of Public Health. + University of Michigan. School of Social Work. + University of Michigan. Senate. + University of Michigan -- Students -- Political activity. + University Center for Adult Education (Wayne State University-University of Michigan-Eastern Michigan University) + University of Michigan. University Hospital. + University of Michigan. Vice-President and Chief Financial Officer. + University of Michigan. Vice-President for Academic Affairs. + University of Michigan. Provost and Executive Vice-President for Academic Affairs. + Cash, William L. + Davis, Carolyne K. + Dougherty, Edward A. + Duderstadt, James J., 1942- + English, Richard A. + Frye, B. E. (Billy Eugene) + Goodman, George. + Heyns, Roger William, 1918- + Holbrook, Robert S. + Holmes, Robert Bradford. + Rhodes, Frank Harold Trevor. + Romani, John Henry, 1925- + Shapiro, Harold T., 1935- + Smith, Allan Frederick, 1911- + Spurr, Stephen Hopkins. + Sudarkasa, Niara. + Sussman, Alfred S. + Swain, Mary Ann Price, 1941- + Williams, Robert Lewis, 1903- + Zimmermann, Ernest R. +
    + Central Files1961-1962Alphabetical FilesCalendar, Year-Round Operation1Internal Revenue Service1Kelsey Museum of Archaeology1Literature, Science and the Arts, College ofForm Letters1Honors Council11962-1963Alphabetical FilesAcademic Affairs1Academic Affairs Advisory Council: Minutes1Accreditation1Business Administration, School of1Calendar, Year-Round Operation1Citizens' Committee on Higher Education (Blue Ribbon Committee)1Committee on University Publications Problems1Education, School of (closing of)1Fees1Kelsey Museum of Archaeology1Letters to Deans1Literature, Science and the Arts, College ofCenters1Committees1Counseling1Curriculum Committee1Form Letters1Honors Council1Negro1Negro Colleges, Program for1Netherlands Visiting Professorship1

    (see Supplemental Files subgroup for earlier materials)

    Policies (Public Speakers)1Professorships1Residence College Committee1Russel, Henry, Lectureship and Award1Tuskegee Institute1University Bio-Engineering Committee1
    1963-1964Alphabetical FilesAcademic Affairs Advisory Council1CalendarMichigan DailyTrimester Study1Year-Round Operation1Citizens' Committee on Higher Education (Blue Ribbon Committee)1Committee on Public Discussion1Committee on University Publications Problems (reports)1Endowed Chairs1Fees1Film Festival1Growth1Kelsey Museum of Archaeology1Letters to Deans1Literature, Science and the Arts, College ofAstronomy, Department of1Brown, Ruth (Statistician)1Carruth, Hayden K. (Assistant Dean)1Committees1Counseling1Curriculum Committee1Executive Committee1Form Letters1Honors Council1Pilot Project1Romance Languages, Department of1Sauve, Robert P. (Administrative Assistant)1Medicinal Chemistry1Mount Sinai Expedition1Negro1Netherlands Visiting Professorship1Policy, Pay1Religion Committee Report1Sesquicentennial (correspondence re:)1Tuskegee Institute1University Bio-Engineering Committee1Vice President for Research11964-1965Alphabetical FilesGeneral Filing1Academic Affairs Advisory Council1Adjunct Professorships1Calendar, Year-Round Operation1Committee on Public Discussion1Endowed Chairs1Fairlane1Fees2Graduate School2Growth2Institute for Social Research (ISR)2Inter-University Consortium for Political Research2Kelsey Museum of Archaeology2Letters to Deans2Literature, Science and the Arts, College ofBrown, Ruth (Statistician)2Budget2Committees2Curriculum Committee2Enrollment Quotas2Honors Council2Sauve, Robert P. (Assistant to the Dean)2Teaching Fellow Training2Teaching Statistics2Netherlands Visiting Professorship2Policy, Pay2Residential College2Senate Committee on Staff Excellence2Sesquicentennial (correspondence re:)2Speech Camp2State Board of Education, Allan F. Smith Report2University Bid Engineering Committee2Vice President for Research21965-1966Alphabetical FilesGeneral Filing2Academic Affairs Advisory Council2Academic Staff Questionnaire2Behavioral Sciences2CalendarCalendar Committee2Year-Round Operation2Committee on Public Discussion2Committee on Student Participation in Academic Affairs (Knauss Report)2Government, Proposed Graduate School of2Growth2Kelsey Museum of Archaeology2Law School, Committee on Deanship Search2Letters to Deans2Literature, Science and the Arts, College ofAstronomy, Department of2Brown, Ruth (Statistician)2Honors Council2Selective Service Resolution2Mental Retardation Facility2Natural Resources, Committee on Deanship Search2Netherlands Visiting Professorship2Policy, Pay2Residential College2Sesquicentennial (correspondence re:)2Speech Camp (Shady Trails)2University Bio-Engineering Committee21966-1967Alphabetical FilesGeneral Correspondence2A-General2Academic Affairs Advisory CouncilCorrespondence2Minutes2Academic Officers (TRIAD)2Academic Program Inventory2Academic Staff Questionnaire2 folders2Accreditation3Adjunct Professorships3Administrative Officers3AdmissionsCorrespondence3Statistics3Advisory Boards (student)3Allmand, Charles M. (Assistant to Vice President for Academic Affairs)3Alumni Association3American Association of University Professors (AAUP)3American Civil Liberties Union3American Council on EducationCorrespondence3Internship Program3American Institute of Indian Studies3Amter, Joseph (benefactor)3Architects (companies)3Architecture and Design, College ofAccreditation3Architecture, Department ofGeneral3Six-Year Plan2 folders3Art, Department of3Building Plans3Davis, Philip (re: book)3Malcolmson, Reginald F., Dean3Urban Planning, Department of3Awards3B-General3Behavioral Science3Behavioral Sciences3Bills3Biological Sciences3BudgetGeneral3Commitments3Preparation Data3Business Administration, School ofBond, Floyd A., Dean3Bureau of Industrial Relations3Degree Programs3Faculty Correspondence3Hall of Fame3Institute for International Commerce3Kresge Chair3C-General3CalendarGeneral3Reform3Study3Center for Clinical Pharmacology, Upjohn3Center for Human Growth and Development (CHGD)4Center for Research on Conflict Resolution4Center for Research on Learning and Teaching (CRLT)4Center for Western European Studies4Centers-General4Civil Liberties Board4Civil Rights4Committee Appointments4CommitteesGeneral4Bio-Engineering4Class Ranking for Selective Service4Computer Policy and Utilization4Health Sciences4Honorary Degrees4Hospital Administration4Hospital Board4Hospitals4INTRACOM4Institutional Cooperation, Committee on, Far Eastern Language Institute4Master of Public Administration Program4Urban and Regional Planning4Community College Administrators4Complaint, Letters of4Computing Center4Conferences4Congratulations4Coordinating Council (Midwest Community College Leadership Council)4Copyright Revision4Cutler, Richard L., Vice President for Student Affairs4D-General4Danforth Foundation4Dearborn Campus4Dental School4Directory Cards4E-General4Economic Opportunity, Office of4Education, School ofGeneral4Appraisal Committee4Eley, Lynn W4Endowed Chairs4Engineering, College ofGeneral4Van Wylen, Gordon, Dean4Enrollment Data, Fall19674Equal Opportunities, Higher Education4Equipment and Rehabilitation4F-General4Fees4Financial Analysis, Office of4Fleming, Robben W., President4Flint CollegeGeneral4Citizens Advisory Committee4Ford Foundation, Population Studies Grant4Form B4Fricke, Benno G. (Bureau of Psychological Services)4G-General4Genetics4Gomberg, Moses, Symposium4Government, Proposed Graduate School of5Governor's Office5Graduate School5Graduate Student Council5Grassmuck, George (Assistant Vice President, International Programs)5Greene, Walter (Civil Rights Commission)5Growth5H-General5Haber, William (Dean, LS&A)5Hatcher, Harlan, President5Higher Education and National Affairs5Hildebrandt, Herbert W. (Secretary of the University)5House Un-American Activities Committee (HUAC)General5Correspondence5Humphrey, George M. (benefactor)5I-General5Inquiries5Institute for Social Research (ISR)5Institute of Labor and Industrial Relations (ILIR)General5"The Negro and Equal Employment Opportunity"5Institutes-General5International Affairs5International Center5International Education Act5International Programs Office5Inter-University Committee on Travel Grants5J-General5Junior College Relations5K-General5L-General5Law School5Lee, Gilbert L. (Vice President for Business Affairs)5Lelong, Donald C. (visiting lecturer)5Letters to Deans5Library Science, Proposed School of5Lists5Literature, Science and the Arts, College ofGeneral5Astronomy, Department of5Brown, Ruth (Statistician)5Committees5Executive Committee5Honors Council5Library Committee5Psychology, Department of5Reorganization5Lutheran Hospital5M-General2 folders5Marriage Courses6Medical School2 folders6Mental Health Research Institute6Mental Retardation6Michigan Academy of Science, Arts, and Letters6Michigan Council of State College Presidents6Michigan Daily6Michigan Scholars6Michigan State University6Miller, James L. (Center for the Study of Higher Education)6Molecular Biology6N-General2 folders6Natural Resources, School of6Neel, Dr. James V. (Dept. of Human Genetics)6Negro6

    (see also Institute of Labor and Industrial Relations)

    Netherlands Visiting Professorship6Niehuss, Marvin L., Executive Vice President6Norman, A. G., Vice President for Research6Nursing, School ofGeneral6Kellogg Grant6Nursing Services Review6O-General6Overtime Policy6P-General6Pay Policy6Personnel Office6Pharmacy, College of6Physical Education6Pierpont, Wilbur, Vice President and Chief Financial Officer6Pilot Project6PoliciesGeneral6Retirement of Deans6Statements6President's Club6President's Report6Promotion Letters6Proposals6Public Act 3716Public Administration, Institute ofGeneral6Advisory Council6Director Search and Review6Public Health, School of6Purchasing6Questionnaire6R-General6Radock, Michael, Vice President for University Relations6Recruiting6Regents6Regional Planning6Registration and Records6Religion Institute6Religious Affairs, Office of6Residency6Residential College6Resignations6S-General2 folders7Sabbatical Leaves7Salaries7Salary Year7Sauve, Robert P. (Administrative Assistant)7Sawyer, Ralph, Symposium7Schlatter, William J. (Assistant to VPAA)7Selective Service7Senate, StateAppropriations Committee7Bills7Senate, UniversityGeneral7Advisory Committee on University Affairs (SACUA)7Committee on Economic Status of the Faculty (CESF)7Committee on Staff Excellence7Educational Policies Advisory Committee7Sesquicentennial7Siegel, K. M. (faculty appointment)7Sit-Ins7Speech Improvement Camp (Shady Trails)7Staff Benefits, Office of7State Board of Education7State Department of Education7Stevenson, Adlai, Institute of International Affairs7Stroke, George (faculty/staff complaint)7Student Activism7Student Affairs, Vice President for7Student Government Council7Surveys7University Press7
    1967-1968Alphabetical FilesGeneral Filing2 folders7A-General7Academic Affairs7Academic Affairs Advisory Council7Academic Program InventoryGeneral2 folders7Michigan Schools and Colleges7Accreditation7Acts of the Legislature7Adjunct Professors7Administrative Officers7Admissions7Afro-American7Allmand, Charles M. (Assistant to VPAA)7American Council on Education (ACE)7Amter, Joseph A. (benefactor)7Appreciation7Appropriations7Archaeology7Architecture and Design, College of8General8Malcolmson, Reginald F., Dean8Astronomy8Athletic Advisory Review Committee8

    (includes Director of Athletics and Physical Education Search)

    B-General8Banfield, Ralph (Midwest Community College Leadership Program)8BudgetGeneral8Internal Financing8Bureau of School Services8Business Administration, School of2 folders8C-General2 folders8Calendar8Canham, Donald (Physical Education)8Capital Outlay8Centers2 folders8Chapman, Oscar J. (recruitment)8Chavis, John (Opportunity Award Program)8Commission on Role of Students8CommitteesGeneral8Budget Administration8Bureau of School Services8Computer Policy8D-General8Deanship Searches: Procedures8F-General8Health Sciences8Honorary Degrees8Hospital Board8House Committee8Institutional Cooperation, Committee on8Liaison Committee on Medical Education8M-General8Marshall Scholarship8P-General8Plant Extension8R-General8Recreation, International8S-General8T-General8U-General8University Steering Committee: Committee on Development of Academic Opportunities2 folders8University Systems8Western Europe8Community Action8Community Colleges8Compensation8Competing Institutions8Complaints8Computing Center8Conferences8Cottrell, Howard (Controller)8Crecine, John P. (Institute of Public Administration)8Cutler, Richard L., Vice President for Student Affairs9D-General9Deans (tenure and retirement)9Dearborn Campus9Degrees (statistics)9Dental Research Institute (DRI)9Detroit Commission on Community Relations9DetroitCitizens Committee for Equal Opportunity9Committees, miscellaneous9New Detroit Committee9Discrimination9Distinguished Teaching Fellow Awards9Distinguished University Professorships9E-General9Edel, Oliver (faculty/staff complaint)9Education, School ofGeneral9Appraisal9Closing9Committee on DeanshipGeneral9Student Representation9Presentation to Regents9Educational Television9Engineering, College of9Enrollment Data9Equipment and Rehabilitation9F-General9Faculty Directory9Fees9Fleming, Robben W., President2 folders9Flint, Citizens Advisory Committee9Flint College9Ford FoundationCommittee on Archaeological Traineeships9International Programs9Population Program9Ford (Henry) Hospital9Foreign Policy Association9Fricke, Benno (Bureau of Psychological Services)9G-General9Gibson, Ralph M. (Dept. of Pediatrics and Communicable Diseases)9Governor's Office9Governor's Task Force on University and Family Life Education9Graduate Assembly9Graduate Studies, Rackham School ofAdmissions9Interdepartmental Programs9Spurr, Stephen H., Dean9Grassmuck, George (Assistant Vice President, International Programs)9Greene Committee9H-General9Haber, William (Dean, LS&A)10Harvard University Questionnaire10Health Sciences Program Cost Study10Higher Education Act Title I196510Highway Safety Research Institute10Hotels10Housing and Urban Development, U.S. Dept. of10Human Relations Coordinator10Human Subjects in Research10I-General10Inquiries10Institute of Labor and Industrial Relations (ILIR)10Institutes-General10Institutional Research, Office of10Intensive Summer Opportunity Program10Internship Programs10Inter-University Committee on Travel Grants10Inter-university Communications Council10J-General10K-General10Kaplan, Wilfred (Math Dept.)10Kelsey Museum of Archaeology10King (Martin Luther) Fund10Kornbluh, Hyman (community colleges)10L-General10Landscape Architecture10Law SchoolGeneral10Allen, Francis A., Dean10Legislative Committee10Letters to Deans10Library Needs10Library Science, Department of10Linguistic Institute10Literature, Science and the Arts, College ofAssociate Deans10Committees10Counseling10Deanship, Committee on10Departments10Enrollment Quotas10Executive Committee10Haber, William, Dean10Hays, William L., Associate Dean10Psychology, Department of10Space10Steering Committee10Teaching Fellows10M-General2 folders10Macromolecular Research Institute10Manheim, Jerome (Intern, Academic Affairs)10Mansfield, James (Director, Scheduling)10Marriage and Family Course10Medical SchoolGeneral10Hubbard, William N., Dean10Resident Stipends10Statistics10Medicinal Chemistry10Mental Health Research Institute (MHRI)10Michigan Association for Regional Medical Programs10Michigan Council of State College Presidents11Michigan State University11Midland Proposed Doctoral Program11Midwest Community College Leadership Council11Military Service11Mueller, Eva (Survey Research Center proposal)11Museum of Art11Music, School of11N-General11National Association of State Universities and Land-Grant Colleges11National Defense Education Act (NDEA): National Institute11Natural Resources, School of11Negroes

    (see also Afro-American)

    General11Higher Education11
    Netherlands Visiting Professorship11Newell, Barbara (Assistant to the President)11Norman, A. G., Vice President for Research11Nursing, School ofGeneral11Kellogg Grant11North Central Association11O-General11Occupational Deferment11Office of Economic Opportunity11Orientation11Osborn Preserve (Chase S.)11Osteopathy11P-General11Pay Policy11Payroll Office11Personnel Office11Personnel Records11Pharmacy, College of11Physical EducationGeneral11Hayes Report11Requirement11Pierpont, Wilbur K. (Vice President and Chief Financial Officer)11PolicyGeneral11Deanship Search Committees11Retirement of Deans11Polley, Ira11Population Program11Porter, John A11Power Exchange Scholarships11President's Letter11President's Report11Procedures11Program Cost Study, Health Science11Public ActsGeneral11#12411#24511Public Administration, Institute of11Public Health, School of11Q-General11R-General11Radock, Michael, Vice President for University Relations11Raiding11Ratings11RegentsGeneral11Bentley, Alvin M11Briggs, Robert P11Brown, Robert J11Bylaws11Communications11Cudlip, W. B11Goebel, Paul11Huebner, Gertrude V11Matthaei, Frederick C11Smith, Otis M11Regional Medical Library Task Force12Regional Medical Programs12Registration and Records, Office of12Religion12Research, Government, Classified12Residency12Residential College2 folders12Residential Colleges: Study12Retirement Policies12Ross, Arthur M., Vice President for State Relations and Planning12S-General2 folders12Salary Studies12Sauve, Robert P. (Administrative Assistant)12Scott, Norman R. (Dean, Dearborn Campus)12Selective Service12Senate, UniversityAssembly12CommitteesGeneral12Economic Status of the Faculty (CESF)12Educational Policies Advisory Committee12Faculty-Student Committee on Course Evaluation Booklet12Senate Advisory Committee on University Affairs (SACUA)12Subcommittee on Research Policy12Subcommittee on Student Relations12Meetings12Sesquicentennial (correspondence re:)12Social Work, School of12Space12Speech Camp (Shady Trails)12Spurr, Stephen H. (Dean, Rackham)12Staff Benefits12Staff Plans12State Board of Education12State Department of Education12State Legislative Committees12State Plan for Higher Education in MichiganGeneral3 folders12Role of the University of Michigan12State Senate12Statewide Education12Statistical Research Laboratory12Statistics, Department of12Stirton, William E. (Vice President, Dearborn Campus)12Student Aid2 folders12Students12T-General12Teaching Fellow Awards12Teaching Fellows12Tenure12Trimester12Tropical Studies, Organization for (OTS)12Tuition and Parents' Income12Tuskegee Institute12University Hospital: Study and Advisory Committee12University Press12Urban Affairs12
    1968-1969Alphabetical FilesGeneral Filing2 folders13A-General13Academic Affairs, Office of Vice President for13Academic Affairs Committee13Academic Affairs Advisory CouncilAgenda13Correspondence13Minutes13Academic Program Inventory: Michigan Schools and Colleges13Academic ProgramsGeneral13Worksheets13AccreditationGeneral13Library Science, Department of13Acts, Legislative13Adjunct Professorships13Admissions OfficeCorrespondence13Forms13Policies13Statistics13Affirmative Action Program13Allmand, Charles M. (Assistant to VPAA)13Alumni Association, Budget and Finance Committee13American Association of Colleges for Teacher Education13American Council on Education (ACE)Correspondence13Internship Program13Publications13Ann Arbor Police13Athletics-Committee on Recreation, Intramurals, and Athletics13B-General13Barbour ScholarshipsGeneral13Historical Documents13Bills, Legislative13Biology13Botanical Gardens13Bretton, Henry (re: class disruption)13Breveleri, Albert I. (residency)13Brown, Ronald (Office of Financial Aid)13BudgetGeneral13Commitments and Transfers13Guidelines13Justification13Preparation Data13Requests13Buildings Under Study13Bureau of Industrial Relations13Bureau of School Services13Business Administration, School ofBond, Floyd A., Dean13Bureau of Industrial Relations13Correspondence, Faculty13ProgramsDegree13Evening MBA13Roberts, Robert (appointment)13Business Man in Residence Program13C-General13CalendarCommittee13Reform13CaliforniaCorrespondence13Miscellaneous Information13University Press Agreement13Canham, Donald (Physical Education)13Canham Trust13Carnegie Corporation13Cash, William L., Jr. (Human Relations Coordinator)13Center for Chinese Studies13Center for Human Growth and Development (CHGD)13Center for Near Eastern and North African Studies13Center for Population Studies13Center for Research and Training in Reproductive Biology13Center for Research on Conflict Resolution13Center for Research on Economic Development (CRED)13Center for Research on Learning and Teaching (CRLT)13Center for Russian Studies14Center for South and Southeast Asian Studies14Center for Western European Studies14Centers-General14Chavis, John (Coordinator of Special Programs)14Civil Liberties Board14Civil Rights14Clippings, Newspaper14Cohen, Malcolm (Assistant to Vice President for State Relations and Planning)14Cohen, Wilbur (School of Social Work)14Commencement14Committee Appointments14CommitteesGeneral14Admissions, Housing, and Orientation14Budget Administration14Bureau of School Services14Calendar14Computer Policy and Utilization14Cost Information and Analysis System14Development of Academic Opportunities14Dictionaries14Director Search, University Hospital14Fees14Food Service Building14Health SciencesGeneral14Budget Request14Cost Study14Health Service Study14Honorary Degree Committees14Human Relations Programs14Institutional Cooperation, Committee on (CIC)14Liaison, Ann Arbor Board of Education14Liaison with Detroit Public Schools14Library Committee14Medical Center, Board in Control of14Plant Extension14Recreation, Intramural and Club Sports14Regents' Bylaws Revision14Religion14Role of Student in Decision-Making14Student Data Bank File14Student Evaluation of Courses14Travel Grants14University Hospital Study and Advisory Committee14University Systems14Water Resources and Marine Science14Community Action14Community Colleges14Community Medicine14Complaint Letters14Compliance Report14Compliance Review14Computational Services14ComputerGeneral14Computer Utilization Figures14Computing Center14Conferences14Conflicts of Interest14Contracts14Cottrell, Howard R. (Controller)14Crime in Ann Arbor14Cutler, Richard L. (Special Assistant for Urban Affairs)14D-General14Danforth Foundation14Dearborn Campus14Dental Research Institute (DRI)14Dentistry, School ofGeneral14Staff Needs14Detroit Edison Company14Detroit Geographical Expedition and Institute14Development Council14Disciplinary Rules2 folders14Discrimination14Disruption14Disruption: Other Schools14E-General15Eastern Michigan University15Edel, Oliver (faculty/staff complaint)15Education, School ofGeneral15Cohen, W. J., Dean15Committee on Deanship (Dean Search)15External Report15External Review: Eurich ReportMarch 196915Faculty Correspondence15Lehmann, C. F., Associate Dean15Physical EducationGeneral15Intramural Program15Men15Women15Report to Regents15Educational Development, Academy for (report)15Educational Television Study15Endowed ChairsGeneral15Dana Chair of Outdoor Recreation15Goebel Chair in Engineering15Kresge Chair in Marketing15Searle Chair in Medicine15Walgreen Chair in Human Understanding15Endowed Professorships15Engineering, College ofFaculty15Van Wylen, Gordon, Dean15EnrollmentGeneral15Statistics15Equipment and Rehabilitation15Ernst and Ernst Review15Esch, Marvin L. (US Representative)15Exchange Programs15Executive Officers15Extension ServiceGeneral15Review15F-General15Faculty Directory15Fees2 folders15Financial Analysis, Office of15Fleming, Robben W., President3 folders15Flint Citizens' Advisory Council15Flint CollegeGeneral15Data15Food Services Building15Football Luncheons15Ford FoundationArea Programs15Latin Cultural Area Comparative Political Studies15Population Program15Race Relations Proposal15Ford (Henry) Hospital15Foreign Student Aid15Forms15Fresh Air Camp15Fricke, Benno (Bureau of Psychological Services)15Friends of the Museum of Art15Fund for Education in World Order15Fund Raising Policy15Future Events15G-General15Gerontology, Institute of (IOG)15Gifts Office15Governor's OfficeGeneral15Budget Division15Graduate Assembly15Graduate Studies, Rackham School ofCertificates and Degrees15Spurr, Stephen H., Dean15Grants-in-Aid15Grassmuck, George L. (Asst. Vice President International Programs)15H-General16Haber, William (Adviser to Executive Officers)16Harvard: Report on the Causes of the Recent Crisis16Health Sciences16Health Sciences Program Cost Study16Heebink, David V. (Assistant Vice President for State Relations and Planning)16Higgins, George A. (Bureau of Industrial Relations)16Higher Education Act16Higher Education General Information Survey16Highway Safety Research Institute16Honigman, Jason (benefactor)16Hotels16Housing and Urban Development16Human Relations Advisory Council16Human Relations Coordinator16Human Subjects in Research16Humphrey, George16I-General16Inquiries16Institute of Labor and Industrial Relations (ILIR)16Institute of Public Policy Studies (IPPS)16Institutes-General16Institutional Research16International Center16International Education Act16International Programs16Inter-University Committee on Travel Grants16Inter-University Consortium for Political Research16J-General16Javits, Jacob, Senator16Junior Year in Africa Program16K-General16Kanpur Indo-American Program16Kellogg Foundation16Kelsey Museum of Archaeology16King (Martin Luther) Committee16King (Martin Luther) Fund16L-General16Language Requirement16Law Enforcement Assistance Administration16Law School16Law School Library16Lelong, Donald C. (Office of Institutional Research)16Lesch, James E. (Assistant to VPAA)16Letters to Deans16Library, University16Library Council16Library Science: Committee on Deanship (Search)2 folders16Literature, Science and the Arts, College ofAdministrative Staff16Astronomy, Department of16Curriculum Committee16Departments3 folders16Executive Committee16Financial Status16Hays, William, Dean16Museums16New Degree16Psychology16M-General17Massalias, Byron G. (faculty/staff complaint)17Medical CenterBoard-in-Control2 folders17Correspondence17Organization and Administration17Medical SchoolAssociate Deans17Correspondence17Hubbard, William N., Dean17Postgraduate Medicine17Medicinal Chemistry17Mental Health Research Institute (MHRI)17Mental Retardation17Michigan Bell Telephone Company17Michigan Chronicle17Michigan Council of State College Presidents17Michigan Daily17Michigan Historical Collections Building17Michigan Information Systems (MIS)17Mid-Career Education for Government Officials in Metropolitan Detroit17Morgan, David (Dow Chemical Co.)17Mulvaney, Robert J. (ACE Fellow)17Museum of Art (Charles Sawyer, Director)17Music, School ofCorrespondence17Wallace, James B., Dean17N-General17Natural Resources, School ofArnold, R. Keith, Dean17Correspondence17Review17Urban Region Program17Negro17Negro-American Culture Program17Negro Faculty Members17Neurosciences Program17Newell, Barbara W17Non-reappointment Procedures17Norman, A. G.2 folders17North Central Association17Nursing, School of (Rhoda Russell, Dean)17O-General17Organizational Changes17Organizational ChartsGeneral17Comprehensive17Orientation Office17Osteopathy (proposed school)17Outside Employment17P-General17Parkes, David (Development Council)17Pay Policy17Personnel Office17Pharmacy, College of (Tom D. Rowe, Dean)17Phi Sigma Award17Physical Education Requirement17Pierpont, W. K. (Vice President and Chief Financial Officer)17Planning Seminars17PolicyGeneral17Deanship Search Committees17Reporting Procedures17Position Control18Postgraduate Medicine18Power, Eugene (Regent Emeritus)18Power Exchange Scholar, Jeremy K. Burdett18Power Exchange Scholarships18President's Report18Procedures18Program Budgeting18Project Misdemeanant18Public Health, School ofCorrespondence18Wegman, Myron E., Dean18Public Policy Studies, Institute of (IPPS)18Q-General18Questionnaire18R-General18Race Survey18Radock, Michael, Vice President for University Relations18Raiding18RegentsAgenda18Bylaw Revision Committee18BylawsGeneral18Chapter VII18CorrespondenceGeneral18Bentley, Alvin M18Brown, Robert J18Cudlip, William B18Dunn, Gerald R18Goebel, Paul G18Lindemer, Lawrence B18Matthaei, F. C., Jr18Nederlander, Robert E18Smith, Otis M18Resolutions18Registration and Records, Office ofCorrespondence18Statistics18Religion, Studies in18Religious Affairs, Office of18Reporting Procedures18Reserve Officers Training Corps (ROTC)2 folders18ResidencyGeneral18Complaints and Grievances (students)5 folders295

    [Student records restricted until July 01, 2054]

    Residential CollegeGeneral2 folders18Robertson, James H., Dean18Resignations18Retired Professors Registry18Rhodes Scholars18Ross, Arthur M., Vice President for State Relations and Planning18Ross, Richard18S-General18Sauve, Robert P18Schmerl, Rudy (Office of Research Administration)18Scholarships18Sea Grant Program18Selective Service18Senate, UniversityAssembly18CommitteesGeneral18Economic Status of the Faculty (CESF)18Educational Policies Advisory Committee18Senate Advisory Committee on University Affairs (SACUA)2 folders18Meetings18Sherman, Douglas (Assistant Vice President and Director of Capital Planning)18Social Work, School ofDean's Correspondence18General Correspondence18Space18Space Inventory18Space Utilization18Speech and Hearing Camp18Speech Camp/Clinic18Speech Clinic18Staff Benefits, Office of18State and Community Relations18State Board of Education18State Department of EducationGeneral18Forms18New Programs: Forms18State Legislature18State Plan for Higher Education in MichiganGeneral19Role of the University of Michigan19Statistical Research Laboratory19Student Advisory Board on University Relations19Student Affairs, Office of19Student Aid19Student Evaluation of Courses19Student Government Council19Student Records19Student Unrest (Huber Committee Report)19T-General19Teacher Education19Teaching FellowsGeneral19Questionnaire19Tax Policy19Telephone Accounting19Television19Television Instruction19Tenure19Theater, Power19Towsley Building19Transfer of Funds19TRIAD19Tropical Studies, Organization for19Trueblood Auditorium19Tuition19Tuskegee Institute19U-V-General19U.S. Department of Health, Education, and Welfare19U.S. Congress19University Center for Adult Education19University: General Correspondence19University Council19University HospitalGeneral19Directorship Search Committee19Study and Advisory Committee19University Management Intercom19University Press2 folders19University Press and Publications Distribution Service Study19University SchoolGeneral19Closing19Urban Affairs19Urban and Regional Planning19Urban and Regional Planning Ph.D. Program19Vice President for Health Affairs (proposed)19W-General19Wagner (Harvey A.) Professorship in Electrical Engineering19Walgreen (Mary Ann and Charles R., Jr.) Endowed Chair19Wallenberg (Raoul Gustof) Fund19Washtenaw County19Washtenaw County Community Mental Health Center19Water Resources19Wayne State University19Western European Studies Committee19Williams, Robert L.2 folders19Wolfson Endowment Funds19Women, Center for Continuing Education of19X-Y-Z-General19Young, Raymond (faculty/staff complaint)19Zimmermann, Ernest R. (Assistant to VPAA)19Zitta, Victor (Department of Political Science)19
    1969-1970Alphabetical FilesGeneral Filing2 folders20A-General20Academic Affairs Advisory Committee20Academic Affairs Advisory CouncilAgenda20Correspondence20Minutes20Academic Affairs Committee: Michigan Council20Academic Officers TRIAD20Academic Program Inventory and List2 folders20Accounting Department20AccreditationGeneral20Nursing, School of20Ackley, Gardner (Department of Economics)20Acts20Adams (Randolph G.) Memorial Fund20Administration Building20Administrative Leave20Administrative Titles20Admissions OfficeCorrespondence20Statistics20Affirmative Action Program20Africa, Exchange Programs20Afro-American Studies20Allmand, Charles M. (Assistant to VPAA)20Alumni Association (General)Budget and Finance Committee20American Association of Colleges for Teacher Education20American Association of University Professors (AAUP)20American Council on Education (ACE)Correspondence20Internship Program20Publications20Ann Arbor Environmental Interpretive Center20Application Fee20Applied Social Science20Appreciation, Letters of20Appropriation Data20Appropriation Requests20Architecture and Design, College ofArchitecture, Department of20Art, Department of20Correspondence, Faculty20Malcolmson, Reginald F., Dean20Urban Planning, Department of20Association of American Universities (AAU)20Athletics-Committee on Recreation, Intramurals, and Athletics20Audiovisual Education Center20Awards20B-General20Band, University20Bentley Chair20Bills, Legislative20Biological Station20Black Faculty (recruitment of)20Black Tutorial Project, Summer20Blues Festival21Bookstore, Student21Botanical Gardens21Brinkerhoff, James21Brown, Ronald (Office of Financial Aid)21BudgetGeneral21Administration Committee21Commitments21Conferences21Correspondence21Operating21Questions on21Regents' Communications21Requests21Transfers21Worksheets21Bureau of Industrial Relations21Bureau of School Services21Bursley Bill21Business Administration, School ofBond, Floyd A., Dean21Correspondence, Faculty21C-General21CalendarCorrespondence21Report21Schedules21CaliforniaCorrespondence21Miscellaneous Information21Campus Planning21Canham, Donald (Physical Education)21Carnegie Corporation21Cartoons21Cash, William L., Jr. (Assistant to the President for Human Relations Affairs)21Cavanagh, Jerome P. (visiting lecturer)21Center for Chinese Studies21Center for Continuing Education of Women: Scholars21

    (see also Women, Center for Continuing Education of)

    Center for Coordination of Ancient and Modern Studies21Center for Human Growth and Development (CHGD)21Center for Near East and North African Studies21Center for Population Planning21Center for Population Studies21Center for Research Libraries (CRL)21Center for Research on Conflict Resolution21Center for Research on Language and Language Behavior21Center for Research on Learning and Teaching (CRLT)21Center for Russian Studies21Center for South and Southeast Asian Studies21Center for Study of Higher Education21Center for Western European Studies21Centers: General21Central Student Judiciary21Chavis, John (Coordinator of Special Projects)21Child Care Center21Christensen, Craig W.2 folders21

    (re: class disruptions)

    Church, Mike (Assistant Director for Cultural Activities, Extension Service)21Civil Liberties Board21Civil Rights21Cohen, Malcolm (Assistant to Vice President for State Relations and Planning)21College Entrance Examination Board21Coller (Frederick A.) Endowed Chair (proposed)21Commencement21Commission on Resource AllocationGeneral21Spurr ReportApril 197021CommitteesGeneral21Admissions, Housing, and Orientation21Ann Arbor Schools: University Liaison Committee21Appointments21Budget Administration21Calendar21Communications21Computer Policy and Utilization21Dean Search, Law School295Dean Search, School of Music295Dean and Director Searches, Medical School and Medical Center295Dearborn Chancellor Search295Director Search, Museum of Art295Fees21Health Sciences21Institutional Cooperation, Committee on (CIC)General21South Asia Summer Program21Judiciary21Liaison, Ann Arbor Board of Education22Liaison with Detroit Public Schools22Library Committee22Literature, Science and the Arts, College ofPreparatory Committee22Review22Neuroscience Building22Plant Extension22Public DiscussionGeneral22Permanent Document22Space Allocation22Strike/Boycott22Student Activities Building Space Committee22Student Data Bank File22Student Participation in Academic Affairs22Student Relations Committee22Subcommittee on Allied Health Professions22University Systems22Vice President for Student Affairs Search22Water Resources and Marine Science22Community Colleges22Complaint Letters22Compliance Report22Compliance Review22Computing Center2 folders22Computer Services22Conferences22Connors, Edward J. (Director, University Hospital)22Cordish, Joel (student shot on Diag)22Cottrell, Howard R. (Controller)22Cutler, Richard L. (Special Assistant for Urban Affairs)22Cyclotron Facilities22D-General22Daily, Michigan22Danforth Foundation22Dearborn Campus2 folders22Dental Research Institute22Dentistry, School of22Detroit Geographical Expedition and Institute22Development Council22Discipline (Status of Hearing)22Disciplinary Procedures22Disciplinary Rules22Discrimination22Disruption22Disruption: Other schools22Distinguished University Professorships22Doezema, Edward R. (faculty/staff complaint)295DuBois (W.E.B.) Institute of Black Studies22E-General22Education SchoolClosing22Cohen, Wilbur J., Dean22Faculty Correspondence22Lehmann, C. F., Associate Dean22Physical EducationGeneral22Men22Women22EDUCOM22Emeritus Professors22Enact22Endowed ChairsGeneral22Dana Chair of Outdoor Recreation22Goebel Chair in Engineering22Walgreen Chair in Human Understanding22Endowed Professorships22Engineering, College ofChrysler Center for Continuing Engineering Education22Correspondence22Faculty Correspondence22Humanities Department22Van Wylen, Gordon J., Dean22EnrollmentGeneral22Statistics22Environment22Equipment and Rehabilitation22Exchange Programs22Executive OfficersAgenda22Correspondence22Minutes22Extension Service2 folders22F-General22Faculty Club22Faculty Directory22Faculty Directory Cards22Faculty Reform Coalition22Fee Schedule22Fees22Financial Analysis, Office of22Fincher, Larry22Fleming, Robben W., President2 folders23Flint Citizens' Advisory Committee23Flint College23Ford Foundation GrantFaculty Advisory Committee on International Programs23International Programs23Population Program23Reports23Foundations23Fresh Air Camp23Fricke, Benno (Bureau of Psychological Services)23Fund Raising Policy23G-General23Gardner, Romain (Intern, Academic Affairs)23General Studies Sample Letter23Gerontology, Institute of (IOG) (Wayne State and U of M)23Gifts Office23Goebel (Paul G.) Endowed Chair23Governor's OfficeGeneral23Budget Division23Graduate Assembly23Graduate Studies, Rackham School ofAssociate Deans' Correspondence23Certificates and Degrees23Correspondence: General23Spurr, Dean Stephen H23Graff, Louis (Director of Information for Health Sciences)23Grants-in-Aid23Grassmuck, George L. (Asst. Vice President International Programs)23Grievance Procedures23H-General23Haber, William (Adviser to Executive Officers)23Hart, Senator Philip23Harvard University23Headrick, Thomas E. (recruitment)23Health Sciences: Subcommittee on University Policies in Teaching and Organization of the Health-Related Professions23Health Service23Hearing Officer Procedures23Heebink, David W. (Asst. Vice President State Relations & Planning)23Higher Education Act23Highway Safety Research Institute23Hildebrandt, H. W. (Secretary of the University and Assistant to the President)23Honors Convocation23Housing23Human Relations Advisory Council23Human Subjects in Research23I-General23Indirect Costs23Inquiries23Institute for Environmental Quality23Institute for Social Research (ISR)23Institute of Continuing Legal Education23Institute of Labor and Industrial Relations (ILIR)23Institute of Public Policy Studies (IPPS)23Institutes23Institutional Research23Interim Rules and Disciplinary Procedures23Intern-Resident Association23International Center23International Programs/Studies23Intramural Building23J-General23Jackson, Murray (Wayne County Community College)23Javits, Senator Jacob23Junior Year Abroad Program23Junior Year in Africa Program23K-General23Kellogg Foundation23Kelsey Museum of Archaeology23King (Martin Luther) Fund23L-General24Latin American Studies24Law Enforcement Assistance Administration24Law SchoolAllen, Francis A., Dean24Correspondence24Legislative Intern Program24Lelong, Donald C. (Office of Institutional Research)24Lesch, James E. (Assistant to VPAA)24Letters to Deans24Library Council24Library, University24Library Science, School of24Lists (miscellaneous)24Literature, Science and the Arts, College ofGeneral24Administrative Board24Admissions24Assembly24Associate Deans24Astronomy, Department of24Committees24Departments3 folders24Financial Status24Hays, William, Dean24Museums24Review24Speech, Department of: Theatre Department Proposal24Study24Lovell, Robert G., MD (faculty/staff complaint)295M-General24Massalias, Byron G. (faculty/staff complaint)295Mc-General24McFarland, Arthur24Medical CenterBoard-in-Control24Compliance24Correspondence24Planning24Medical SchoolAssociate Deans24Correspondence24Deans Hubbard and Gronvall24Gronvall, John A., Acting Dean24Hubbard, William N., Dean24Medicinal Chemistry25Memberships25Mental Health Research Institute (MHRI)25Mental Retardation, Institute for the Study ofCommittees25Correspondence25Cohen and Thoburn25Cruickshank, Dr. William M25Michigan Mental Retardation Research Committee25Plymouth State Home Agreement25Mexican-American Students25Michigan (miscellaneous)25Michigan Academy25Michigan Association for Regional Medical Programs25Michigan Bell Telephone25Michigan Chronicle25Michigan Council of State College Presidents25Michigan Daily25

    (see Daily, Michigan)

    Michigan Society of Fellows25Michigan State University25Mott (C.S.) Children's Hospital25Mott Foundation25Museum of ArtSawyer, Charles, Director25Search Committee25Music, School ofGeneral25Britton, Allen P., Acting Dean25Correspondence25Wallace, James B., Dean25N-General25National Association of State Universities and Land Grant Colleges (NASULGC)25National Defense Education Act (NDEA)25National Music Camp25Natural Resources, School ofGeneral25Dean Search295Master of Natural Resources Degree25Preston, Stephen B., Dean25Review25Review Committee25Review Committee Report25Negro25Neurosciences Program25Newell, Barbara W. (Acting Vice President for Student Affairs)25Non-reappointment Procedures25Norman, A. G25North Central AssociationGeneral25Review25Nursing, School ofAccreditation25Correspondence25Russell, Rhoda R., Dean25O-General25Occupational Therapy Program25Olson, Clifford D. (Biostatistics)25Opportunity Award Program25Organizational Charts25Orientation, Office of (Tom Butts, Director)25Osteopathy (proposed school)25Ouimet Building25P-General25Parkes, David (Development Council)25Pay Policy (includes strike)2 folders25Personnel Office25Pharmacy, College of (Tom D. Rowe, Dean)25Phi Sigma Award25Physical Education25Pierpont, W. K. (Vice President and Chief Financial Officer)25Policies25Policy: Deanship Search Committees25Porter, Dr. John W25Position Control in Academic Units25Power, Eugene25Power Exchange ScholarBurdett, Jeremy K25Flight, Howard E25Power Exchange Scholarship26General26England26Publicity Problems26President's Report26Princeton Moratorium26Procedures (miscellaneous)26Project Outreach26Public Health, School ofCorrespondence26Departments26Wegman, Myron E., Dean26Public Policy Studies, Institute of (IPPS)26Q-General26R-General26Racial Survey26Radock, Michael (Vice President for University Relations)26Raiding26Recruiting26RegentsAction Letters26Agenda26Budget26BylawsChapter 72 folders26Revision26Revision Committee26Communications26CorrespondenceGeneral26Brown, Robert J26Cudlip, William B26Dunn, Gerald R.26Goebel, Paul G26Huebner, Gertrude V26Nederlander, Robert E26Smith, Otis M26Registration and RecordsCorrespondence26Statistics26Religion, Studies in26Religious Affairs, Office of26Reporting Procedures26Report to University Community26Reserve Officers' Training Corps (ROTC)26ResidencyGeneral26Grievances4 folders295

    [Student records restricted until July 01, 2055]

    Residential College26General26Robertson, J., Dean26Resignations26Resources Allocation/Utilization26Retirement Furlough26Ross, Arthur, Vice President for State Relations and Planning26Russel (Henry) Lectureship26S-General26Sabbatical Leaves26Sain, Leonard (School of Education)26Sauve, Robert P. (Administrative Assistant)26Sea Grant Program26Security26Senate, UniversityAssembly26CommitteesGeneral26Academic Affairs Advisory Committee26Advisory Review Committee26Economic Status of the Faculty (CESF)26Research Policies26Senate Advisory Committee on University Affairs (SACUA)2 folders26Meetings26Social Work, School ofCorrespondence26Dean's Correspondence26Space26Space Inventory27Space Utilization27Speech Clinic27Spurr, Stephen HPosition Papers27Vice President and Dean of Rackham School of Graduate Studies27Staff Benefits, Office of27State Board of Education27State Department of EducationGeneral27Planning Division27State LegislatureGeneral27Legislative Committees27State Plan for Higher Education in Michigan: Role of the U of M27Strike Policy27Student Affairs, Office of27Student Aid27Student Government Council27Students27Sunderland (Edson R.) Chair27T-General27Tarrant, Shawn (Assistant Director of University Housing)295Teaching Fellows2 folders27Teaching Fellow/Research Assistant Data27Teaching Fellows Union2 folders27Television27Television Instruction27Tenure2 folders27Transfer of Funds27Tropical Studies, Organization for (OTS)27Trueblood Auditorium27Tuition27Turner, Roberta J. (re: study in Ghana)27Tuskegee Institute27Tutorial Project27U-General27U.S. Congress27U.S. Department of Health, Education, and WelfareGeneral27Compliance, Racial27Office of Civil Rights27Publications27University (general correspondence re:)27University Center for Adult Education2 folders27University HospitalGeneral27Financial Statements27Strike28University Housing28University Management Intercom28University Press2 folders28University Publications28University Relations28University School28Upward Bound28Urban28V-General28Vietnam28W-General28Wagner (Harvey A.) Professorship in Electrical Engineering28Waivers28Walgreen (Mary Ann and Charles R., Jr.) Endowed Chair28Wallace, James B. (Dean, School of Music)28Washtenaw County28Washtenaw County Community Mental Health CenterGeneral28University Hospital Advisory Committee28Water Resources28Wayne State University28Western European Studies Committee28Williams, Robert L. (Administrative Dean, Academic Affairs)28Willow Run Laboratory28Wisconsin, University of28Women, Center for Continuing Education of28Yale University28Young (Arthur) Professorship28Zimmermann, Ernest R. (Assistant to VPAA)2 folders28Zitta, Dr. Victor (Dept. of Political Science)28
    1970-1971Alphabetical FilesAcademic Affairs Advisory Council28Allmand, Charles M. (Assistant to VPAA)28American Council on Education (ACE)28Architecture and Design, College of (Department of Architecture)General28Accreditation28Ten-Year Plan28Black Students28Business Administration, School ofBond, Floyd A., Dean28Bureau of Industrial Relations28Campus Conditions, Statement by Alexander Heard, Special Advisor to President NixonJuly 197028Cash, William (Asst. to the President for Human Relations Affairs)28Center for Research Libraries (CRL)28Center for Study of Higher Education28Day Care Center28Dearborn Chancellor Search295Doezema, Dr. Edward R. (complaint)295Educational Telecommunications System: Senate Bill 19028Engineering, College of, Television Institute28Extension Service Dean Search295Faculty Reform Coalition28Financial Aid Office28Firearms28Fresh Air Camp28Graduate Studies, Rackham School of, Committee on Dean Search2 folders295Green (Edith) Formula29Haber, William (Adviser to Executive Officers)29Health Service29Institute for Social Research (ISR)29Institute for the Study of Mental Retardation29Institute of Public Policy Studies (IPPS)29Inter-University Consortium for Political Research (IUCPR)29Judiciary, University29King (Martin Luther) Fund29Knauss, Robert, Vice President for Student Services29Law School Dean Search295Lesch, J. E. (Assistant to VPAA)29Letters to Deans29Library Science29Literature, Science and the Arts, College ofEnrollment29Historical File29Reorganization29Sauve, Robert P. (Administrative Assistant)29Study29Lutheran Hospital29Massalias, Byron G. (faculty/staff complaint)295Medical School and Medical Center, Dean and Director Searches2 folders295Music, School of, Committee on Dean Search295National Defense Education Act (NDEA) Summer Program on South Asia29Norman, A. G., Vice President for Research29Pass-Fail Grading29Patent Policy29Periodic Health Appraisal Unit (PHAU)29Physical Therapy Accreditation29PolicyGeneral2 folders29Deanship Search Committees29Disclosure of Faculty Records29Strike Policy29Political Activity, Princeton Plan29Power Exchange Scholarships29Recruiting29Regents' Bylaws: Chapters 2 and 1129Residency29Retirement Furlough (Spivey Report)29Spurr, Stephen, Vice President and Dean of Rackham29Student Evaluation of Courses29Tenure29University Hospital, Report of Nursing Search and Study Committee29VanDerHout Case (re: class disruptions)29Women, Center for Continuing Education of29Women: Department of Health, Education, and Welfare291971-1972Alphabetical FilesA-General29Academic Affairs Advisory Committee2 folders29Academic Affairs Advisory Council30Agenda30Correspondence30Minutes30Academic Affairs, Office of30Academic Programs (List)30Accreditation30Acts30Administration Building30Admissions Cases4 foldersLaw School296Literature, Science and the Arts, College of296Medical School296Nursing, School of296Admissions, Office of30Correspondence30Director Search, Committee on (re: procedures)30Affirmative Action Program30Afro-American Studies30Allmand, Charles M. (Assistant to VPAA)30Alumni Association30American Association of University Professors (AAUP)30American Council on Education (ACE)Correspondence30Department of Health, Education, and Welfare Talks on Accreditation30American Indians30Appeal Procedures30Archaeology, Graduate Student Traineeships30Architecture and Design, College of, Department of Art30Area Centers30Association of American Universities (AAU)30Athletics, Board in Control of Intercollegiate Athletics30Audits, University30Awards30B-General30Bentley Chair30Bills, Legislative30Biological Station30Blacks30Botanical Gardens30Branch Campuses, Funding30Brinkerhoff, James30Brodsky, Iosif (recruitment)30Brown, Ronald30Budget30Budget Worksheets30Bureau of Industrial Relations30Business Administration, School of30C-General30Calendar, correspondence re:30California30Capital Outlay30Carnegie Commission on Higher Education31Cash, William, Jr. (Asst. to President for Human Relations Affairs)31Center for Afro-American and African Studies (CAAS)31Center for Chinese Studies31Center for Coordination of Ancient and Modern Studies31Center for Early Childhood Development and Education31Center for Human Growth and Development (CHGD)2 folders31Center for Japanese Studies31Center for Population Planning31Center for Population Studies31Center for Research on Economic Development (CRED)31Center for Research on Learning and Teaching (CRLT)31Center for Research Libraries (CRL)2 folders31Center for Research on Conflict Resolution31Center for Study of Higher Education31Center for Western European Studies31Centers: General31Chavis, John (Coordinator of Special Projects)31Chicano Students31Child Care Center2 folders31Christensen, Craig W. (General Counsel)31Church, Michael (Director of Cultural Activities, Extension Service)31Clippings Service31Coalition for the Use of Learning Skills (CULS)31Columbia University31Commission on Resource Allocation31CommitteesGeneral31ExternalInternational Exchange of Persons (Fulbright-Hays)31InternalBroadcasting31Budget Administration31Budget Help31Communications Review31Computer Policy and Utilization31Conference on International Higher Education31Evaluation and Examinations31Faculty Rights and Responsibilities31Fees31Health Sciences31Honorary Degrees31Institutional Cooperation, Committee on (CIC)31Integrated Flexible Medical Curriculum31Intercollegiate Athletics, Board-in-Control of31Liaison with Detroit Public Schools31Minority Supportive Services Task Force31Opportunity Program, Advisory Committee31P and A Salary Study Steering Committee31Plant Extension31Retirement, Early31Review, School of Public Health31Special Salary Adjustments31University Lands Used for Instruction and Research31University Press Review31Community Colleges32Complaint Letters32Computer Equipment Requests32Computing Center32Conferences32Control of Data Institutes32Cowley, Anne P. (faculty/staff complaint)296Curtis, Mrs. Patricia (student complaint)296

    [Student records restricted until July 01, 2057]

    D-General32Daane, Roderick K. (General Counsel)32Davis, Margaret B. (faculty/staff complaint)296Dearborn Campus32General32Division of Engineering32Degrees32Dental Research Institute2 folders32Dentistry, School ofGeneral32Accreditation32Development Council32Disruption32Distinguished University Professorships32E-General32Education, School of (Wilbur J. Cohen, Dean)32Faculty Workload32Endowed Chairs32Engineering, School ofGeneral32Dean Search296Environmental Simulation Laboratory32Evans, W. Keith (Budget Systems Coordinator, Academic Affairs)32Exchange Programs32Executive Officers32Extension Service32External Degree Program32F-General32Faculty Reform Coalition32Fauri, F. F. (Vice President for State Relations and Planning)32Fenstemacher, William (Assistant to VPAA)32Financial Aid, Office of32Fincher, Larry (Assistant to Vice President for State Relations and Planning)32Fleming, R. W., President32Flint College33Ford Foundation: General Correspondence33Foundations33Freeze (Wage/Price)33Fricke, Benno (Bureau of Psychological Services)33Fund Raising Policy33G-General33Gerontology, Institute of (Wayne State and the U of M)33Graduate Assembly33Graduate Assistant Program33Graduate Studies, Rackham School ofGeneral33Data Systems33Dean Search296Graduate Student Associateship Program33Grievance Appeal Procedures33H-General33Haber, William (Adviser to Executive Officers)33Handicapped Students33Hays, William L. (Associate Vice President for Academic Affairs)33Health Service33Housing, University33Humanities33I-General33ID Cards, Photo33Indian Studies, American Institute of33Individualized Instruction33Inquiries33Institute for Environmental Quality33Institute for Planning and Assessment of Alternative Futures (proposed)33Institute for Social Research (ISR)33Institute of Continuing Legal Education33Institute of Labor and Industrial Relations (ILIR)33Institute of Public Policy Studies33

    (see also "Public Policy Studies, Institute of")

    Institutes-General33Institutional Research, Office ofGeneral33Statistical Profile33International Center, Director Search296International Programs33Intramural Building33J-General33Johnson, Henry (Vice President for Student Affairs)33Johnson, Meryl296Jong, Shirley296Judaic Studies Program33Judiciary, University33Junior Year Abroad Program33K-General33Kellogg Foundation33Kelsey Museum of Archaeology33Kennedy, Richard L. (Secretary of the University)33King (Martin Luther) Committee2 folders33King (Martin Luther) Fund33Knauss, Robert L. (Vice President for Student Services)34L-General34Landscape Architecture Accreditation34Law Enforcement Assistance Administration34Law Enforcement Education Program (LEEP)34Law School34Legislative Committees34Lesch, James E. (Assistant to VPAA)34Letters to Deans34Library, University34Library Council34Library Science, School ofGeneral34Accreditation34Literature, Science and the Arts, College ofGeneral2 folders34Departments3 folders34Faculty Code34Museums34Psychology34Rhodes, Frank H. T., Dean34M-General34Maddox, Gilbert (Office of Special Academic Programs)34Matthews, C. W. (Controller)34Mc-General34Medical CenterBoard-in-Control34Correspondence34Medical SchoolFaculty34St. Joseph Hospital Affiliation34Surgery, Department of, Administrative Structure of34Memberships34Michigan (miscellaneous)34Michigan Academy34Michigan Council of State College Presidents35General35Academic Officers35Costs Study35Michigan Historical Collections35Michigan Information Systems35Michigan Society of Fellows35Michigan State University35Mott Foundation35Museum of Art35Music, School of35N-General35National Endowment for the Humanities35National Music Camp (Interlochen)35Natural Resources, School of (SNR)35Netherlands Visiting Professorship35Neurosciences Program35Newsclippings35Non-reappointment Procedures35Norman, A. G. (Vice President for Research)35Nursing, School ofGeneral35Review Report35Study and Dean Search Committee Report296O-General35Off-Campus Activity Report to Auditor General35Opportunity Program35Orientation Office (Tom Butts, Director)35P-General35Pass-Fail Grading35Pay Policy35Performing Arts35Personnel Office35PESC (Program for Educational and Social Change)35Pharmacy, College ofGeneral35Self-Study35Phi Sigma Award35Pierpont, W. K. (Vice President and Chief Financial Officer)35Policies35PolicyPay35

    (see also "Pay Policy")

    Student Records35
    Postal Academy Program36Power Center36Power Exchange Scholarships36Procedures36Professional and Administrative OfficeRecruiting and Placement36Salary Study36Professional Theatre Program36Project EXTEND36Public Health, School of36

    (see also "Committees")

    Public Interest Research Group in Michigan (PIRGIM)36Public Policy Studies, Institute of (IPPS)36Q-General36R-General36Radock, Michael (Vice President for University Relations)36RCA/MIT Proposal36Recruiting36RegentsBylaw Revision36Correspondence36Religion, Studies in36Research36Residency36Residential College2 folders36Retirement Options36Romani, John H. (Associate Vice President for Academic Affairs)36Russel (Henry) Lectureship36S-General36Safety Bulletins36Sauve, Robert P. (Administrative Assistant)36Scheduling, Office of36Scholarships36School and College Student Government Fees36Sea Grant Program36Senate, UniversityAssembly36CommitteesAdvisory Review Committee36Economic Status of the Faculty (CESF)36Research Policies36Senate Advisory Committee on University Affairs (SACUA)36Rights and Responsibilities of Faculty Members36Sherman, Douglas R. (Office of Capital Planning)36Shortridge, Kathleen (faculty/staff complaint)296Social Work, School of36Space36Special Academic Services: New Account36Special Salary Adjustments: Requests36Spradlin, Paul A. (Assistant to VPAA)36Spurr, Stephen H. (Vice President and Dean of Rackham)36Staff36Staff Benefits, Office of36State and Community Relations36State Appropriations Bill (Section 21)36State Board of Education36State Department of EducationGeneral37Role Statement37State Legislature37State Plan for Higher Education in Michigan: Role of the U of M37State: Program Budget Evaluation System2 folders37Student Aid37Student Evaluation of Courses37Student Government Council37Student Services, Office of37Study Abroad Programs37T-General37Tanner, Helen296Teaching Fellows37Teaching Fellow Salaries37Television37Tenure37Theaters37Towsley (Harry A.) Visiting Professorship, Medical School37Transfer of Funds37Tropical Studies, Organization for (OTS)37Tuition37Tuskegee Institute37U-General37United States Congress37United States Department of Health, Education, and Welfare37University (general information)37University Audits37University Center for Adult Education37University College (London) Exchange Scholarship37University Hospital37University Housing37University Library37University Management Intercom37University Press37Urban and Regional Planning37V-General37Veterans37Vietnam37W-General37Wallenberg (Raoul) Fund37Washington Summer Intern Program37Washtenaw County37Washtenaw County Community Mental Health Center, University Advisory Committee37Wayne State University37Western Interstate Commission on Higher Education37Williams, R. L. (Administrative Dean, Academic Affairs)37Wisconsin, University of37Wolfson Endowment Funds37WomenAffirmative Action37Center for Continuing Education of Women37Commission on WomenGeneral38Nordin, Virginia, Director38File Review38Grievances and Complaints38Health Education, and Welfare, Department of38X-Y-Z-General38Young (Arthur) Professorships38Young, Kay Chi-Chung (student complaint)296

    [Student records restricted until July 01, 2057]

    Zimmerman, Ernest R. (Assistant to VPAA)38
    1972-1973Alphabetical FilesA-General38Academic Affairs Advisory Committee38Academic Affairs Advisory CouncilAgenda38Correspondence38Minutes38Academic Affairs, Office of, Organization38Academy for Educational Development38Accreditation38Ackley, Gardner (Economics)38Admissions, Office of38Admissions: Schools and Colleges38Advertising of Positions: Exceptions38Advisory Committee for Recreation, Intramurals, and Club Sports (ACRICS)38Affirmative Action Program38Annual Report38Availability Assessments38Guidelines4 folders38Political Science, Department of296Varner, Nellie, Director38Afro-American and African Cultural Living Units39Afro-American Studies39Allison Children Fund39Allmand, Charles M. (Assistant to VPAA)39Alumni Association39American Association of University Professors (AAUP)39American Council on Education (ACE)Correspondence39Internship Program39Publications39American Indians39Ann Arbor Public Schools39Appeal Procedures2 folders39Area Centers39Architecture and Design, College ofGeneral39Architecture, Department of39Art, Department of39Five-Year Projections (February 1973)39Malcolmson, Reginald F., Dean39Review39Review and Dean Search, Committee on (re: procedures)39Urban Planning, Department of39Association of American Colleges39Association of American Universities (AAU)39AthleticsGeneral39Board-in-Control of Intercollegiate Athletics39Attorney, University (General Counsel)39Audio-Visual Education Center39Audits, University39Availability Assessments39Awards39B-General39Banfield, Ralph (ERIC/CAPS Clearinghouse)39Bentley Chair39Bills, Legislative39Biological Sciences39Biological Station39Blacks39Botanical Gardens2 folders39Bowen, Carroll G. (University Press)39BudgetGeneral39Commitments39Correspondence39Regents Communications39Requests39Statistics39Worksheets39Budget and Planning, Office of39Bureau of Industrial Relations39Business Administration, School ofGeneral39Bond, Floyd A., Dean39Faculty Correspondence39C-General39Calendar39Calhoun, Hazel (Ombudsperson)39CaliforniaCorrespondence39Miscellaneous Information39Campus Orchestra39Canham, Donald (Director, Athletics)39Capital Outlay39Capital Planning, Office of39Capitation Grants39Career Planning and Placement, Office of39Carnegie Commission on Higher Education39Cash, William L., Jr. (Asst. to President for Human Relations Affairs)39Center for Afro-American and African Studies (CAAS)39Center for Chinese Studies39Center for Continuing Education of Women39

    (see also "Women, Center for Continuing Education of")

    Center for Coordination of Ancient and Modern Studies39Center for Human Growth and Development (CHGD)39Center for Japanese Studies39Center for Near Eastern and North African Studies39Center for Political Studies39Center for Population Planning39Center for Research Libraries (CRL)39Center for Research on Learning and Teaching (CRLT)39Center for South and Southeast Asian Studies39Center for Study of Higher Education39Center for Western European Studies39Centers: General39Chavis, John (Coordinator of Special Projects)40Cheit, Earl F. (writings on higher education)40Chicano Students40Child Care Center40Clark, Cheryl296Clinical Psychology40Coalition for the Use of Learning Skills (CULS)40Collective BargainingFaculty40Faculty at other schools40Collegiate Professors (College of Literature, Science, and the Arts)40Coller (Frederick A.) Endowed Chair (proposed)40Commencement40Commission on Resource Allocation40CommitteesGeneral40Ann Arbor Schools-University of Michigan40Appointments40Broadcasting40Budget Priorities40Communications40Communications Review Committee: Gies Report on Teaching Technology40Computer Policy and Utilization40Computer Registration Involving Student Participation (CRISP)40Detroit Public Schools and University of Michigan Liaison40Director SearchesAdmissions296Center for Research on Learning and Teaching (CRLT)40Great Lakes Research Division40Institute of Public Policy Studies (IPPS)40Museum of Art296Professional Theatre Program296Residential College40Economic Status of the Faculty (CESF)40Fees40Graduation Requirements40Health Sciences40Honorary Degree Program40Institutional Cooperation, Committee on (CIC)General40South Asia Summer Program40International Exchange of Persons (Fulbright-Hays)40Long-Range Planning40Opportunity ProgramAdvisory Committee40Coordinating Committee40Plant Extension40Recreation, Intramurals, and Club Sports40Research Libraries40ReviewArchitecture and Design, College of40Medical Center40School of Public Health40Special Adjustments40Staff Benefits40Task Force to Review University Role in Education for Health Services Administration40University Lands Used for Instruction and Research40Complaint Letters40Computing Center40Conduct, Code of (faculty)40Conflict Resolution, Journal of40Cowley, Dr. Anne P.296D-General40Daane, Roderick K. (General Counsel)40Data Systems40Dearborn CampusGeneral40Goodall, Leonard E., Chancellor40Dental Research Institute (DRI)40Dentistry, School of40Development Council40Disciplinary Rules40E-General40Education, School of41General41Associate and Assistant Deans41Cohen, Wilbur J., Dean41Faculty Correspondence41Physical Education: Men and Women41EDUCOM41Endowed Chairs2 folders41Engineering, College ofGeneral41Associate and Assistant Deans41Departments41Electrical and Computer Engineering Research41Instructional Television41Ragone, David V., Dean41Environmental Studies41Exchange Programs41Executive Officers (correspondence)41Extension Service2 folders41F-General41Faculty Codes of Individual Schools41Federal Fund Losses (potential)41FeesGeneral41Graduate Teaching Assistants41Fenstemacher, William (personal correspondence)41Financial Aid, Office ofGeneral41Butts, Tom, Director41Financial Analysis, Office of2 folders41Fincher, Larry (Asst. to Vice President for State Relations)41Fleming, R. W., President41Flint College41Ford FoundationGeneral Correspondence41GrantGeneral Correspondence41International Programs41Population Program41Fraiberg, Selma296Fund Raising Policy41G-General41General Mills Foundation41Glenny, Lyman A. (visitor)41Goebel (Paul G.) Endowed Chair41Goodman, George D. (Assistant Director of Admissions)41Governor's Commission on Higher Education41Graduate Studies, Rackham School ofGeneral41Associate and Assistant Deans41Stokes, Dean Donald E41Graduate Student Assistantship Program41Green, Mark296Grievance Procedure42H-General42Haber, William (Adviser to Executive Officers)42Handicapped Students42Hastings, Robert F. (environmental design proposal)42Hays, William L. (Associate Vice President for Academic Affairs)42Health ServiceGeneral42Periodic Health Appraisal Unit (PHAU)42Health Services Administration, Education for42Hold Credits42Housing42Human Remains Policy42Human Subjects in Research, Use of42Humanities42I-General42Indians, American42Inquiries42Institute for Administrative Advancement of Academic Women42Institute for Environmental Quality42Institute for Social Research (ISR)42Institute of Labor and Industrial Relations (ILIR)42Institute of Public Policy Studies (IPPS)42Institute of Science and Technology (IST)42InstitutesGeneral42English Language Institute (ELI)42Institutional Research42Inteflex Program42Interlochen Arts Program42Intern Resident Association42International Center (Dr. Jon O. Heise)42International Studies Centers42Inter-University Consortium for Political Research42J-General42Johnson, Meryl296Judaic Studies Programs42Junior Year Abroad Program42K-General42Katz-Newcomb Lectureship in Social Psychology42Kellogg Foundation42Kelsey Museum of Archaeology42L-General42Language and Language Behavior Abstracts42Law SchoolGeneral42Associate and Assistant Deans42Capital Gifts Campaign42Faculty42St. Antoine, Theodore J., Dean42Lesch, James E. (Assistant to VPAA)42Letters to Deans42Library Council42Library Science, School ofGeneral43Bidlack, Russell E., Dean43Literature, Science and the Arts, College ofGeneral43Associate and Assistant Deans43Astronomy, Department of43Committee on Underclass Experience43Departments2 folders43Fiscal43Museums43Psychology, Department of43Rhodes, Frank H. T., Dean43Staff43Lunn, Alice Coyle296M-General43Macklin, Richard296Matthews, C. W. (Controller)43Medical CenterBoard-in-Control43Correspondence43Planning2 folders43Medical SchoolGeneral43Associate and Assistant Deans43Cost Study43Departments43Faculty43Gronvall, John A., Dean43Retreat43Memberships43Mental Retardation and Related Disabilities, Institute for the Study of (ISMRRD)General43Cohen, Wilbur J., and Norman L. Thoburn43Committees43Cruickshank, Dr. William M. (Director)43Meyer, Richard D. (Professional Theatre Program)43Michigan Academy43Michigan Annual Giving Fund43Michigan Council of State College PresidentsGeneral2 folders43Academic Officers43External Degree Program44Michigan Historical Collections44Michigan League44Michigan Medical/Osteopathic Schools Study44Michigan Memorial Phoenix Project44Michigan Repertory Company44Michigan Research Group on Problems in Human Growth and Disability44Michigan Society of Fellows44Michigan State University44Millett, John D. (writings re: higher education)44Minimum Salaries44Minnesota, University of44Minority Student Survey Regents Report44Museum of ArtGeneral44Waller, Bret (Director)44Music, School ofGeneral44Britton, Allen P., Dean44Faculty44N-General44Named Professorships44National Academy of Sciences44National Defense Education Act (NDEA)44National Endowment for the Arts44National Endowment for the Humanities44National Music Camp (Interlochen)44Natural Resources, School of (James T. McFadden, Dean)44Netherlands Visiting Professorship44Non-reappointment Procedures44Norman, A. G. (Institute for Environmental Quality)44North Central Association44Nursing, School ofGeneral44Dean Search296O-General44Office of Research Administration44Ombudsman, University44Opportunity Award Program44Opportunity Program44Orientation Office44P-General44Personnel Employment Services44Personnel Information System44Personnel Office44Pharmacy, College of44Pierpont, W. K. (Vice President and Chief Financial Officer)44Policies45General2 folders45Pay Policy45Political Science Consortium45Population Program45Power, Eugene (Regent Emeritus)45Power Exchange ScholarsBrydges, David45Gearing, N. T45Perry, Richard45Simpson, David45Power Exchange Scholarship45Power Foundation45Primary Research Staff45Professional and Administrative Recruitment and Placement OfficeGeneral45Study45Study, Complaints re:45Professional and Administrative Salary Study45Professional Theatre Program, Director Search2 folders296Program Evaluation45Program for Education and Social Change45Project Community45Psycholinguistics45Public Health, School ofGeneral45Faculty45Problems45Review45Review Committee Report45Wegman, Myron E., Dean45Public Interest Research Group in Michigan (PIRGIM)45Questionnaires45R-General45RCA/MIT Project45Regents' Correspondence45Religious Affairs, Office of45Research Advisory Council (CGO)45Research Club45Reserve Officers' Training Corps (ROTC)45Residence Regulations45Residency45Resident Fees45Residential College45Retirement45Retirement Options3 folders46Romani, John H. (Associate Vice President for Academic Affairs)46Russel (Henry) Lectureship46S-General46Salaries (Special)46Scheduling, Office of46Schoenberg Archives46School and College Student Government Fees46Sea Grant Program46Senate, UniversityGeneral46Assembly46CommitteesGeneral46Economic Status of the Faculty (CESF)46Research Policies46Senate Advisory Committee on University Affairs (SACUA)Correspondence46Minutes46Meetings46Shortridge, Kathleen (Women's Commission)46Smith (Warren) Award46Social Work, School ofGeneral46Fellin, P. A., Dean46National Assessment of Juvenile Corrections46Space46Special Salary Adjustments46Spradlin, Paul A. (Assistant to VPAA)46Spurr, Stephen H. (Vice President and Dean of Rackham)46Staff Benefits, Office of46State-Based Humanities Program46State Board of Education46State Department of Administration46State Department of Education46StateGovernor's Commission on Higher Education46Governor's Office46Legislature46Student Aid46Student Government: Names46Student Government Council46Student Records46Student Services, Office of46T-General46Teaching Fellows46Teaching Staff Allocations46Television46TenureMichigan46Other Schools46Term Papers, Sale of46Theater46Theaters: General46Tropical Studies, Organization for46Tuition46Turner (Scott) Estate46Tuskegee Institute46U-General46Unit Representatives47United StatesCongress47Department of Health, Education, and WelfareGeneral47Office of Civil Rights47University Center for Adult Education47University College/London Exchange Scholarship47University HospitalGeneral47Strike47University Housing47University LibraryGeneral47Williams and Wilkins v. the United States47University Management Intercommunication47University Press47V-General47Vice President and Chief Financial Officer (Wilbur K. Pierpont)47Vice President for ResearchNorman, A. G47Overberger, Charles47Vice President for State Relations and Planning (F. F. Fauri)47Vice President for Student Services (Henry Johnson)47Vice President for University Relations and Development (Michael Radock)47W-General47Walgreen (Mary Ann and Charles R., Jr.) Endowed Chair47Washtenaw County Community Mental Health Center, University Advisory Committee47Water Resources, University Council on47Wayne State University47Wellman, Greg (student complaint)296

    [Student records restricted until July 01, 2058]

    Williams, Georgia (Housing Office)47Williams, R. L. (Administrative Dean)47Willow Run Laboratory47Wisconsin, University of47WomenGeneral47Affirmative Action47Center for Continuing Education of Women47Commission on WomenGeneral47Nordin, Virginia, Director47Discrimination47File Review47Grant Proposals47Grievances and Complaints296Health, Education, and Welfare, Department of47Intercollegiate Athletics47National Coalition for Research on Women's Education and Development47Women's Studies Department (proposed)47X-Y-Z-General47Young (Arthur) Professorships47Zander, Alvin F. (Assistant Vice President for Research)47Zimmermann, Ernest R. (Assistant to VPAA)47
    1973-1974Alphabetical FilesGeneral Filing48A-General48Academic Affairs, Office ofAssistant to the Vice President Search297Associate Vice President Search297Academic Affairs Advisory Council48Agenda48Correspondence48Minutes48Academic Affairs Committee48Accreditation48Affirmative Action ProgramGeneral48Varner, Nellie, Director48Allied Health, School of, Feasibility Study48Animal Medicine48Architecture and Design, College of

    (see also "Committees")

    Malcolmson, Reginald F., Dean48Review48Review and Dean Search, Committee on4 folders297Review Committee Report48
    AthleticsGeneral48Intercollegiate: Other Schools48Audio-Visual Education Center48Awards48B-General48Bartlett (Harley Harris) Professorship in Botany48Bentley Endowed Chair48Bills, Legislative48BudgetGeneral2 folders49Commitments49House Appropriations Committee49Memos from Budget Conference49Projections49Regents' Communications49Requests1974/1975 and 5-year Projection491975-19761975-198049Worksheets49Business Administration, School of49C-General49Calhoun, Hazel (Ombudsperson)49Canham, Donald B. (Director, Athletics)49Capital Outlay49Center for Afro-American and African Studies (CAAS)49Center for Human Growth and Development (CHGD)49Center for Japanese Studies49Center for Near Eastern and North African Studies49Center for Research Libraries (CRL)49Center for Research on Learning and Teaching (CRLT)49Child Care Center49Collective Bargaining (Faculty)49Coller (Frederick A.) Professorship49CommitteesGeneral49Academic Services Board49Allied Health, School of49Bicentennial49Budget Priorities49Computer Registration Involving Student Participation (CRISP): Implementation Group49Credit by Examination: Review49Distinguished Awards49Director SearchesCenter for Research on Learning and Teaching (CRLT)297Institute of Public Policy Studies (IPPS)49Residential College49University Press49Fee Structure49Film Resources49Graduation Requirements49Health Sciences, Division of49Institutional Cooperation, Committee on (CIC)General49Correspondence49Integrated Flexible Medical Curriculum49Military Officer Education Programs: ROTC49Plant Extension49Residency Appeal49ReviewsArchitecture and Design, College of49Institute for Human Adjustment49Medical Center49Public Health, School of50Special Salary Adjustments2 folders50Staff Benefits50Compensation Program50Computational Services50Conduct, Code of (faculty)50Conflict of Interest50Counseling, Computer-Assisted, Experimental Program50Credit by Examination50D-General50Dance Program50Data Systems50Dearborn CampusGeneral50Accreditation50Degrees50Dental Research Institute (DRI)50Dentistry, School of50Development Council50Disabled Student Services Program50Discipline50Distinguished University Professorships50Dunham (Arthur) Professorship in Social Work50E-General50East Asian Studies50Education, School ofGeneral50Accreditation50Cohen, Wilbur J., Dean50Faculty50Physical Education: Men and Women50Endowed Chairs50Energy50Engineering, College of51Enrollment, Fall197451Environmental Health and Safety Unit51Exchange Programs51Executive Officers51Extension Center, Grand Rapids51Extension Service51F-General51Faculty51Federal Fund Losses51Fees51Filippova, Lilia (visitor)51Financial Aid, Office of (Tom Butts, Director)51Financial Analysis, Office of51Fincher, A. Lawrence (Asst. to Vice President for State Relations)51Fleming, R. W., President51Flint CampusGeneral51Moran, W. E., Chancellor51Ford, Gerald R51Ford Foundation51Foreign Students51Fringe Benefit Survey (Committee on Economic Status of the Faculty)51Fund RaisingGeneral51Cost of51Furlough Year51G-General51Goodman, George (Assistant Director of Admissions)51Graduate Education51Graduate Employees Organization51Graduate SchoolGeneral51Dean Search297Stokes, Donald E., Dean51Graduate Teaching Assistants: General51Graduate Teaching Assistants and Graduate Employees Organization51Graduate Teaching Assistantships51Grand Rapids Consortium51Grievance Procedures51H-General51Haber, William (Adviser to Executive Officers)52Health Service52Higher Education General Information Survey (HEGIS) Reports52Hold Credits52Honors Council52Housing, University52Human Subjects in Research52Human Remains Policy52I-General52Indirect Costs52Inquiries52Institute for Administrative Advancement52Institute for Administrative Advancement of Academic Women52Institute for Environmental Quality52Institute for Human Adjustment52

    (see also "Committees")

    Institute for Social Research (ISR)52Institute of Gerontology (IOG)52Institute of Labor and Industrial Relations (ILIR)52Institute of Public Policy Studies (IPPS)52Institute of Science and Technology (IST)52InstitutesGeneral52English Language Institute (ELI)52Institutional Research, Office of52Inteflex52International Center52International Program52Inter-University Consortium for Political Research2 folders52J-General52Japan Foundation, Grant52Joint Storage Facilities (Brighton)52Junior Year Abroad Program52K-General52Kellogg Foundation52Kelsey Museum of Archaeology52Kennedy, Richard L. (Secretary of the University)52King (Martin Luther) Committee52L-General52Law School52Lelong, Donald C. (Office of Institutional Research)52Letters to Deans2 folders52Library, University52Library Council52Library Science, School ofGeneral52Dean's Reports52Self-Study Report52Literature, Science and the Arts, College ofGeneral52Astronomy, Department of52Dean Search297Departments52Faculty Code52Frye, Billy, Acting Dean53Graduation Requirements53Museums53Psychology53Rhodes, Frank H. T., Dean53Lockard, Jon297M-General52Mc-General52Mann (Margaret) Professorship in Library Science52Matthews, C. W. (Controller)52Media Teaching Center Proposal52Medical Care, Summer Camps52Medical Center

    (see also "Committees")

    Committee on Review: Conard Report52Correspondence52Planning52
    Medical SchoolGeneral52Associate and Assistant Deans52Departments52Faculty52Gronvall, John A., Dean52Optometry52Retreat52St. Joseph Hospital Affiliation52Memberships52Mental Health Units52Mental Retardation and Related Disabilities, Institute of (ISMRRD)General52Cohen, Wilbur J., and Norman L. Thoburn52Committees52Cruickshank, Dr. William M. (Director)52MERIT Computer Network52Michigan (miscellaneous)52Michigan Council for the Humanities52Michigan Council of State College PresidentsGeneral52Academic Officers52Academic Staff Survey52External Degree Program, Faunce Report2 folders52Faculty Exchange Program52Michigan Energy and Resources Association (MERRA)52Michigan Historical Collections52Michigan Library Consortium52Michigan Medical/Osteopathic Schools Study52Michigan State University54Middle English Dictionary54Military Officer Education Programs, ROTC54Moore (Earl V.) Professorship of Music54Moyers (Robert) Symposium54Museum of Art54Music, School ofGeneral54Britton, Allen P., Dean54N-General54Named Professorships54National Association of State Universities and Land Grant Colleges: Detroit Meeting54National Music Camp (Interlochen)54National Science Foundation54Natural Resources, School ofDean Search297McFadden, James T., Dean54Urban and Regional Planning54Netherlands Visiting Professorship54Neurosciences Laboratory54Norman, A. G. (Institute for Environmental Quality)54Nursing, School of54O-General54Officer Education Programs54Opportunity Award Program54Optometry54Optometry Education54Outside Employment54P-General54Personnel Office54Pharmacy, College ofDean Search297Rowe, Tom D., Dean54PolicyGeneral2 folders54Salary Disclosure54Population Program, Centers54Power, Eugene (Regent Emeritus)54Power Center54Power Exchange Scholarship54Pre-Professional Counseling54President's Report54Primack, Dr. Verne M54Primary Research Staff54Professional and Administrative Recruitment and Placement Office54Professional Theatre ProgramGeneral54Meyer, Richard (Director)54Professorships55Psycholinguistics55Public Health, School of

    (see also "Committees")

    General55Dean Search297Remington, Richard D., Dean-Elect55Review Committee Report55Wegman, Myron E., Dean55
    Questionnaires55R-General55Reduction in Force55RegentsAction Letters55Bylaws and Revision55Correspondence55Religion, Studies in55Religious Affairs, Office of55Research55Reserve Officers' Training Corps (ROTC)55Residency55Residential College55RetirementGeneral55Policies55Program55Program Modification Replies55Romani, John H. (Associate Vice President for Academic Affairs)55Russel (Henry) Lectureship55S-General55St. Joseph Hospital55SalariesGeneral55Information (Administrative)55Special55Sauve, Robert P. (Administrative Assistant)55Scheduling, Office of55Schoenberg (Arnold) Archive55Scholarships55Sea Grant Program55Searle (John G.) Professorship in Public Health55Sellars (Roy Wood) Professorship in Philosophy55Senate, UniversityCommitteesEconomic Status of the Faculty (Retirement Policies) (CESF)55Senate Advisory Committee on University Affairs (SACUA)55Sex Income Study55Sherman, Douglas R. (Office of Capital Planning)55Silverman, Linda297Smith, Alfred (Tuskegee)55Social Work, School ofAccreditation55Fellin, Philip, Dean55Space55Special Salary Adjustment Allocations55StateGovernor's Commission on Higher Education55Governor's OfficeGeneral55Budget Division55Data Processing Facilities Consolidation56Legislative Fiscal Agency56LegislatureGeneral56Committees56State and Community Relations56State Appropriations Bill (Section 21)56State Board of Education56State Department of Education56State Department of Mental Health56State Library Services Reorganization56State Surveys/Questionnaires56Student AidGeneral56Fee Adjustment56Student Employment Monitoring56Student Governance Commission Report56Student Government (names)56Student Housing56Student Loan Funds56Student Organizations Board56Student Records56Student Services, Office of56Students56T-General56Teaching Fellows56Television, Instructional56Television Center56Tenure56Tropical Studies, Organization for (OTS)56Tuition56Tuition Surplus56Turner (Scott) Estate56Tuskegee Institute56U-General56United StatesArmy56Department of Agriculture: Economic Research Service56Department of Health, Education, and WelfareGeneral56Office of Civil Rights56University-based Child Development Facility56University Center for Adult Education56University College/London Exchange Scholarship56University Consortium Center in Grand Rapids56University Council56University Facilities, Use of56University (general correspondence re:)56University Hospital56University Housing56University LibraryGeneral56Wagman, Dr. Frederick H., Director56University Management Intercommunication56University of Michigan Association for Collective Bargaining56University Press56University Record (controversy)56V-General56Vice President and Chief Financial Officer (Wilbur K. Pierpont)56Vice President-Elect for Academic Affairs (Frank H. T. Rhodes)56Vice President for Academic Affairs56Vice President for Research (Charles G. Overberger)56Vice President for State Relations and Planning (F. F. Fauri)56Vice President for Student Services (Henry Johnson)56Vice President for University Relations and Development (Michael Radock)56W-General56Walgreen (Mary Ann and Charles R., Jr.) Endowed Chair56Ward (Marcus L.) Professorship in Dentistry56Water Resources, Universities Council on56Wayne State University56WCBN Funding56Western Michigan University56White (Andrew Dickson) Professorship in History56Wisconsin, University of56WomenGeneral56Center for Continuing Education of Women56Commission on Women57Grievances and Complaints297Intercollegiate Athletics57Women's Studies, Department of57X-Y-Z-General57Young (Arthur) Professorships57Zimmermann, Ernest R. (Assistant to VPAA)57
    1974-1975Alphabetical FilesA-General57Academic Affairs Advisory Committee57Academic Affairs Advisory CouncilCorrespondence57Minutes2 folders57Academic Planning and Analysis, Office ofGeneral3 folders57Peer Reviews57Academic Services Board57Admissions, Office of57Affirmative ActionGeneral2 folders57Affirmative Action Committee57Alcoholism Abuse Clinic58Allied Health, School of (possible creation)58Allmand, Charles M. (Assistant to VPAA)58Alumni Association58American Association of University Professors58American Council on Education58Amoco (formerly Standard Oil of Indiana)58Appointments58Association of American Colleges58Association of American Universities (AAU)58Audit Report58Awards58B-General58Battelle Memorial Institute: Energy Perspectives58Bicentennial58Biology and Biomedical Sciences, Division of58Bio-Ethics Program58Bloxam, Wallace (personal correspondence)58BudgetCommitments58Materials2 folders58Priorities Committee58Request: Ann Arbor Campus1975/7658Bylaws58C-General58Calhoun, Hazel (Ombudsperson)58Candidate Interviewing58Capital Outlay (Remodeling/Construction)58Career Planning and Placement58Cash, William L., Jr. (Asst. to President for Human Relations Affairs)58Catalogues and University Bulletins (about)58Center for Continuing Education of Women58Center for Higher Education58Center for Human Growth and Development (CHGD)58Center for Research on Economic Development59Center for Research on Learning and Teaching (CRLT)59CentersGeneral59Population Studies Center59Child Care at the University of Michigan59Clerical Union (Bargaining)59CommitteesGeneral59Economic Status of the Faculty (CESF)2 folders59Institutional Cooperation, Committee on (CIC)4 folders59Compensation Program59Complaint Appeal Procedures59Computing Center59Contingencies (handling of)59Continuing Higher Education: State Plan59CRISP (Computer Registration Involving Student Participation)59Cross, K. Patricia (recruitment)59Current Account Expenditures59D-General59Daane, Lemmer, and Ketelhut (General Counsel)59Danforth Foundation59Data Systems59Deans and Directors, Letters and Memos to60Deans, Directors, and Department Heads, Letters and Memos to60Denning (Reynolds McConnell) Memorial60Development Office60Distinguished Faculty Awards Committee60Distinguished University Professorship Advisory Committee60Division of Research Administration60Dougherty, Edward A. (Assistant to VPAA)60East Asian Studies60Educational Development Fund60English, Richard A. (Associate Vice President for Academic Affairs)60Environmental Research Institute of Michigan (ERIM)60Environmental Resources, letters regarding60Environmental Resources and Design, College of (possible establishment)60Environmental Resources, Planning, and DesignCommittee60Norman Report60Epstein, Norman (re: legal services)60Ethical Values Project60Excellence at the University of Michigan60Extension ServiceGeneral60Continuing Education Units60Dearborn and Flint60Dearborn and Flint Report (Haber Report)60F-General60Faculty Development Program60Faculty Enrichment Program60Faculty Exchange Consortium60Faculty Exchange Program with Michigan Institutions60Faculty Handbook60Faculty/Staff Directory61Faculty Workloads61FeesGeneral61Committee on Fee Structure61Committee on Student Fees61Film Resource Committee61Financial Aid, Office of61Fincher, A. L. (Assistant to Vice President for State Relations and Planning)61Fleming, R. W., President61Ford Foundation61Freeze: Positions and Equipment61G-General61General Counsel61

    (see "Daane, Ketelhut,...")

    General Motors Corporation61Goodman, George D. (Director, Opportunity Program)61Governor's Office61Great Lakes Research Division Faculty Appointments61H-General61Haber, William (Adviser to Executive Officers)61Handicapped Program61Hays, William L. (Academic Development)61Health, Education, and Welfare, Department of61Health Sciences, Division of, General Committee61Higher Education61Honorary Degree Committee61Hospital, UniversityGeneral61Reorganization61Search Committee61Housing Office61I-General61Inclement Weather Responses61Income Sources61Indirect Cost Reimbursement61Institute for Academic Advancement of Women62Institute for Environmental Quality62Institute for Human Adjustment62Institute for Social Research (ISR)62Institute for the Study of Mental Retardation and Related Disabilities (ISMRRD)62Institute of Gerontology (IOG)62Institute of Public Policy Studies (IPPS)62Institute of Science and Technology (IST)62Institutes: General62Instructional Technology62Intercollegiate Athletics62Interlochen Center for the Arts, National Music Camp62International Programs62J-General62Johnson, Henry (Vice President for Student Services)62K-General62Kellogg Foundation62Kennedy, Richard L. (Secretary of the University)62King (Martin Luther) Fund62Kraus Memorial Lecture62L-General62Lansing62Legislature62Libraries, Center for Research (CRL)62Libraries, University62Lilly Endowment, Inc62Long-Range Planning Committee62M-General62McKeachie, Wilbert J. (Associate VP for Educational Resources)62Medicinal Chemistry, Program in62Mental Health Research Institute62Michigan Council for the Humanities62Michigan Council of State College Presidents3 folders62Michigan Historical Collections (Bentley) Executive Committee62Michigan State University62Michigan's Inter-university Committee on Information Systems62Middle English Dictionary62Minority Students62Museum of Art62N-General63National Humanities Institute63Near East Fund Raising63Netherlands Visiting Professorship63Nordby, Virginia B. (Policy Coordinator)63O-General63Opportunity Program63Overberger, Charles G. (Vice President for Research)2 folders63P-General63Personnel Office63Physical EducationGeneral63Review Committee63Review Committee Report63Pierpont, W. K. (Vice President and Chief Financial Officer)63Planning and Research on Information Systems and Management (PRISM)63Plant Extension Committee Meetings63PLATO Terminal63Policies and Procedures63Power Exchange Scholarship63Pre-Retirement Counseling Program for Faculty63Professional and Administrative Staff Office63Professional Theatre Program63Program Budget Evaluation System (PBES)63Program Evaluation Committee63Public Interest Research Group in Michigan (PIRGIM)63Q-General63R-General63Radock, Michael (VP for University Relations and Development)63Regents' Correspondence63Reserve Officers Training Corps (ROTC)63Residency63Rice (Warner) Awards63Romani, John H. (Associate Vice President)63S-General64Sabbatical Leave Policy64Salary Data64Salary Information (Administrative)64Scholarships64School Policy Compilation64Senate, UniversityAssembly64Senate Advisory Committee on University Affairs (SACUA)2 folders64Space64Staff Benefits64Staff Minutes3 folders64State Department of Education64Statistical Research Laboratory64Student Loans64Students64Study Abroad64T-General64Telecommunications Research Committee64Television Center64Tenure64Term III64Tuebingen Student Exchange Program64Tuition64Tuskegee Institute64U-General64Unit Visitation Reports and Recommendations64University Bicentennial Commission64University Consortium Center64University Encyclopedia ( Encyclopedic Survey)64University of Virginia64University Values Year: Seminar64Urban and Regional Planning Doctoral Program64V-General64Vacation Plan64Varner, Nellie (Director, Affirmative Action Program)64Vice President for Educational Resources64W-General64WCBN Funding and Administration64X-Y-Z-General64Index to Correspondence65
    Schools and Colleges FilesArchitecture and Urban Planning, College of65Art, School of65Business Administration, School of65Dearborn65Dentistry, School of65Education, School of65Engineering, College of65Flint College65Graduate Studies, Rackham School ofGeneral3 folders65Review Report (Ackley Report)65Student Enrollment65Graduate Student Assistants65Law School65Library Science, School of65Literature, Science and the Arts, College ofGeneral4 foldersFolders 1-265Folders 3-466American Studies66Areas, Departments and Centers3 folders66Astronomy, Department of66Botany, Department of66Center for Chinese Studies66Chemistry66Computer and Communication Sciences, Department of66Counseling, Office of66Dean Search (includes Cohen Report)297Economics, Department of66English, Department of66Geography, Department of66Geology, Department ofGeneral66Evans, Billy Joe (faculty/staff complaint)297German Department66History, Department of66History of Art66Journalism, Department of66Kelsey Museum of Archaeology66Linguistics, Department of66Mathematics, Department of66Museum of Paleontology66Museum of Zoology66Naimark, Michael: Video Assessment Survey66Near Eastern Studies, Department of66Philosophy, Department of66Physics Department66Pilot Program66Political Science, Department ofGeneral66Report to HEW66Psychology, Department of67Romance Languages67Sociology, Department of67Speech, Department of67Zoology, Department of67Medical Center Reorganization67Medical SchoolGeneral2 folders67Accreditation Survey Report67Burn Center67Integrated Premedical-Program67Medical Service PlanGeneral67Implementation67Implementation: General SurgeryOctober 14, 197467Implementation: Pediatric SurgeryOctober 28, 197467Music, School of2 folders67Natural Resources, School ofGeneral67Dean Search297Nursing, School of67General2 foldersFolder 167Folder 268Doctorate of Philosophy in Nursing Proposal68Student Profile, Placement and Evaluation of Program68Pharmacy, College of68Public Health, School of68Social Work, School of68Speech and Hearing Sciences: Speech Pathology and Audiology Program, Reaccreditation68
    1975-1976Alphabetical FilesA-General68Academic Affairs Advisory Committee68Academic Affairs Advisory Council2 folders68Academic Affairs Staff68Academic PlanningGeneral2 folders68Peer Institute Exchange Information68Academic Planning and Analysis, Office of68Academic Services Board68Administrative Systems, Supervisory Group2 foldersFolder 168Folder 269Admissions Office69Affirmative Action3 folders69Affirmative Action Committee69Allmand, Charles M. (Assistant to VPAA)69Alumni Association69American Association of University Professors (AAUP)69American Council on Education (ACE), Academic Administration Internship Application69Athletics69Audio-Visual Education69Audit69Awards69B-General69Black Faculty69Blue Cross/Blue Shield69BudgetGeneral4 folders69Budget Priorities Committee70Formula Budgeting70Reduction, Correspondence re: Effects of2 folders70Budget1976/7770Bylaws70C-General70Calendar70Calhoun, Hazel R. (Ombudsperson)70Career Planning and Placement Office70Carnegie Commission2 folders70Catalogs and University Bulletins (about)70Center for the Continuing Education of Women70Center for Higher Education70Center for Human Growth and Development (CHGD)70Center for Research on Economic Development (CRED)70Center for Research on Learning and Teaching (CRLT)70Centers: General70Commencement70CommitteesGeneral70Access to Administrative Data, Rights of Privacy and Access to Information70Administrative Computer Equipment and Software70Economic Status of the Faculty (CESF)70Complaints70Computing Center70CRISP (Computer Registration Involving Student Participation)70D-General71Daane, Ketelhut, and Lemmer (General Counsel)71Danforth Foundation71Data Systems71Davis, Carolyne K. (Associate Vice President for Academic Affairs)71Deans and Directors, Memos to71Deans, Directors, and Department Heads, Letters to71Deanship Search Committees (procedures)71Development Office71Dhahran Consortium: Glen Berg71Disruptions71Distinguished University Professors Advisory Committee71Division of Research Development and Administration (DRDA)71Dougherty, Edward A. (Assistant to VPAA)71East Asian StudiesGeneral71Long-Range Planning Committee ReportAugust 197571Encyclopedic Survey(University Encyclopedia)71English, Richard A. (Associate Vice President for Academic Affairs)71Environmental Resources Council71Environmental Resources Planning and Design2 folders71Equipment71Ethics and Religion71Extension Service71F-General71Faculty Bargaining71Faculty Compensation71Faculty Development and Enrichment71Faculty Evaluation71Faculty Exchange Program in Michigan71Faculty Handbook71FeesGeneral2 folders71Fee Structure Committee71Financial Aid Office72Financial Analysis and Administrative System72Fiscal Year Committee72Fleming, R. W., PresidentGeneral72Comments on State of the University Address72Ford Foundation72Freedom of Speech72Freeze72G-General72General Counsel72

    (see "Daane...")

    Grade and Course Recording Practices72H-General72Haber, William M. (Adviser to Executive Officers)72Health, Education, and Welfare, Department of72Health Maintenance Organization (HMO)72Health Sciences, Division of, Committee4 folders72Health Services72Honorary Degree Committee72Hospital72Housing Office72I-General72Indirect Cost Reimbursement72Institute for Academic Advancement of Women72Institute for Human Adjustment72Institute for Social Research (ISR)72Institute for the Study of Mental Retardation and Related Disabilities (ISMRRD)72Institute of Gerontology (IOG)73Institute of Public Policy Studies (IPPS)73Institute of Science and Technology (IST)73Institutes: General73Inteflex73Interlochen Center for the Arts and National Music Camp73International Programs73International Women's Year Planning Group73Iranian Universities73Iskow, Linda (complaint)297

    [Student records restricted until July 01, 2061]

    J-General73Johnson, Henry (Vice President for Student Affairs)73K-General73Kennedy, Richard L. (Secretary of the University and Vice President for State Relations)73Kraus Memorial Lecture73L-General73Lansing: Miscellaneous State Offices2 folders73Legislative Bills73Libraries73Long-Range Planning Committee73M-General73Malpractice Insurance73Mellon Foundation: Values in a Secular Society73Mental Health Research Institute73Michigan Council for the Humanities73Michigan Council of State College Presidents73Michigan Historical Collections, Bentley Historical Library73Michigan State University73Michigan Student Assembly (formerly Student Government Council)73Middle English Dictionary73Minority Affairs2 folders73Museum of Art73N-General73Named Professorships73National Humanities Center (proposed)74National Science Foundation74Nordby, Virginia B. (Policy Coordinator, Academic Affairs)74North Central Association74Norton (W. W.) and Company74O-General74Overberger, Charles G. (Vice President for Research)General74DNA Research74P-General74Payroll Procedures74Periodic Health Appraisal Unit (PHAU)74Personnel Availability Assessment74Personnel Office2 folders74Ph.D. Enrollment74Ph.D. Enrollment: Replies to Memo74Physical Education Program74Pierpont, Wilbur K. (Vice President and Chief Financial Officer)74Plant Extension Committee74Policies and Procedures74Policy Coordinator Position74Population Studies Center74Power Exchange Scholarship74President's Club74Professional Theatre Program74Program Evaluation: Responses to Phase I Questionnaire74Program Evaluation Committee74Q-General75R-General75Radock, Michael (Vice President for University Relations)75Regents' Correspondence75Registration and Records, Office of75Reserve Officers Training Corps (ROTC)75S-General75Saginaw Valley College75Salary Information (Administrative)75Sarkar, S. S. (letter of recommendation)75Saudi Arabia75Sauve, Robert P. (Assistant to VPAA)75Scheduling Office75Scholarships75Senate, UniversitySenate Advisory Committee on University Affairs (SACUA): Non-Tenured Appointments75Senate Advisory Review Committee: Virginia Nordby Position Paper75Siena Heights College75Space75Staff Benefits75State Department of Education75Student Appeal Procedures75Student Government Council75

    (see also "Michigan Student Assembly")

    Student Loans75Students75Supplemental Retirement Income (for Retired Personnel)75Swets, Paul (letter of recommendation)75T-General75Technical Bargaining75Television Center75Term III75Texas at Austin, University of75Title IX: Discrimination75Tropical Studies, Organization for (OTS)75Union Negotiating Team75University Consortium Center75University Council75University Press75University Value Years75V-General75W-General75Women75

    (see also "Institute for Academic Advancement of Women")

    Wright, Robert P. (letter of recommendation)75X-Y-Z-General75Index to Correspondence1975-197675
    Schools and Colleges FilesArchitecture and Urban Planning, College of76Art, School of76Business Administration76Dearborn Campus76Dentistry, School of76Education, School ofGeneral76Complaints and Grievances (student)297

    [Student records restricted until July 01, 2061]

    Engineering, College of76Extension-Dearborn and Flint76Flint Campus76Graduate SchoolGeneral2 folders76Reports2 folders76Law School76Library Science, School of76Literature, Science and the Arts, College ofGeneral2 folders77Miscellaneous Areas, Departments, Centers77AstronomyGeneral77Grievances297Biological Sciences Group77Chemistry77Computer and Communication Sciences77Counseling Office77Economics77English77Far Eastern Languages & Literature77Geography77Geology & Mineralogy77Germanic Languages and Literature77History77History of Art77Journalism77Linguistics77Mathematics77Museum of Paleontology77Museum of Zoology77Near Eastern Studies77Philosophy77Physics77Political Science77Psychology77Romance Languages77Slavic Languages77Sociology77Speech77Medical SchoolGeneral4 folders78Medical School Review78Medical Campus Library and Learning Resource Center78Medical Service Plan (includes Executive Board)2 folders78Report of Joint Medical School, Hospital Task Force to Review Emergency Medical ServicesOctober 31, 197578Music, School of78Natural Resources, School of78Nursing, School of78Pharmacy, College of78Public Health, School of78Social Work, School of78
    1976-1977Alphabetical FilesAcademic Affairs Advisory Council2 folders79Academic Affairs Planning and Analysis, Office of2 folders79Academic Planning: Phase II79Academic Services Board79Admissions Office79Affirmative ActionGeneral79Commission on Minorities and Women79Committee79Allied Health79Allmand, Charles M. (Assistant to VPAA)79Alumni Association79American Association of University Professors (AAUP)79American Council on Education (ACE) Academic Internship79Appointments79Ashby, Lord79Association of American Universities (AAU)79Athletics79Audits, Internal79AwardsAmoco Good Teaching79Faculty Achievement79Faculty Service79Graduate Teaching Assistants79University79B-General79Barbour-Waterman Gym3 folders80Brinkerhoff, James, Vice President-Elect80BudgetGeneral3 folders80Formula Funding80Program Closures2 folders801977-197880Bylaws80C-General80Carroll, Philip S80Center for Continuing Education of Women80Center for Higher Education80Center for Human Growth and Development (CHGD)80Center for Research on Economic Development (CRED)80Center for Research on Learning and Teaching (CRLT)80Centers: General80Committees: General80Complaints80Computer and Communication Sciences80Computer Policy Committee80Computing Center80CRISP (Computer Registration Involving Student Participation)80D-General80Daane, Ketelhut, Lemmer (General Counsel)80Data Systems80E-General80East Asian Studies80Ethics and Religion80F-General80Faculty Bargaining80Faculty Development Funds2 folders81Family Practice Residency Planning CommitteeMay 197681Fees, Student81Financial Aid Office81Ford, Gerald R., President and Mrs.81Freedom of Information Act (Michigan), Ad Hoc Committee81G-General81General Counsel81

    (see "Daane,...")

    Graduate Employees Organization (GEO), Affirmative Action81H-General81Health and Human Values, Task Force on, ReportSeptember 197581Health, Education, and Welfare, Department of81Health Maintenance Organization81Health Sciences, Division of, Committee81Health Service81Honorary Degree Committee81Hospital, UniversityGeneral3 folders81Mission and RoleFebruary 197781Planning81Planning Committee81House Officers' Organization (Residents and Interns)81Housing Office81Housing Project, New Single Students81I-General82Indirect Cost Reimbursement82Institute for Human Adjustment82Institute for Public Policy Studies (IPPS)82Institute for Social Research (ISR)82Institute for the Study of Mental Retardation and Related Disabilities (ISMRRD)82Institute of Gerontology (IOG)82Institute of Labor and Industrial Relations (ILIR)2 folders82Institute of Science and Technology (IST)82Institutes: General82International Programs and Center82J-General82Johnson, Henry (Vice President for Student Services)82K-General82Kennedy, Richard L. (Vice President for State Relations)82L-General82Lansing, Offices in3 folders82Libraries82M-General82Malpractice Insurance82Memberships82Mental Health Research Institute (MHRI)82Michigan Council of State College Presidents2 folders82Michigan Historical Collections, Bentley Historical Library82Michigan Society of Fellows82Michigan Student Assembly (formerly Student Government Council)83Michigan Theatre Association83Minority Students83Museum of Art83N-General83National Endowment for the Humanities (NEH)83National Institute of Occupational Safety and Health Research Facility (NIOSH)83North Central Association83O-General83Open Meetings Bill83Overberger, C. G. (Vice President for Research)83P-General83Periodic Health Appraisal Unit (PHAU)83Personnel83Plant Extension83Policies and Procedures83Policy Coordinator (Virginia B. Nordby)83Population Studies Center83Program Closure (April 1977)83Program Evaluation Committee83Promotions83R-General83Regents' Correspondence83Registration and Records83Retirement, Early83Russell (Joseph and Marion) Professorship84S-General84Salary Information84Scheduling Office84Scholarships84Senate, UniversityAssembly84Senate Advisory Committee on University Affairs (SACUA)84Space84State Department of Education84Students84T-General84Tenure84Title IX: Discrimination84Tropical Studies, Organization for (OTS)84Turner, Scott (bequest)84U-General84Unions84University Press84University Value Years84W-General84X-Y-Z-General84
    Schools and Colleges FilesArchitecture and Urban Planning, College of84Art, School of84Business Administration, School of84Dearborn84Dentistry, School ofGeneral84Complaints and Grievances (faculty/staff)2 folders297Education, School ofGeneral85Complaints and Grievances (faculty/staff)297Physical Education85Review Committee, Spurr External Review85Engineering, College of85Extension: Dearborn and Flint85Flint85Graduate Studies, Rackham School of85Law School85Library Science, School of85Literature, Science and the Arts, College ofGeneral2 folders85Anthropology85Astronomy85Biological Sciences85Chemistry85Classical Studies85Complaints and Grievances (faculty/staff)2 folders297Complaints and Grievances (students)297

    [Student records restricted until July 1, 2062]

    Economics85English85Far Eastern Languages85Geography85Geology and Mineralogy85History85Journalism85Kelsey Museum of Archaeology85Mathematics86Miscellaneous Areas, Departments, and Centers86Museum of Zoology86Near Eastern Studies86Philosophy86Physics86Political Science86Psychology86Residential College86Romance Languages86Speech86
    Medical SchoolGeneral4 folders86Medical Service Plan86Speech and Audiology: Closure2 folders86Medical/Osteopathic Schools in Michigan, Costs and Output StudyMay 197687Music, School of2 folders87Natural Resources, School of87Nursing, School of2 folders87Pharmacy, College of87Public Health, School ofGeneral87Population Planning, Department of3 folders87Radiology, Department of87Social Work, School of87Speech and Hearing87
    1977-1978Alphabetical FilesA-General88Academic Affairs Advisory Committee88Academic Affairs Advisory CouncilMinutes and Agendas3 folders88Sussman (Alfred) Files88Academic Affairs Planning and Analysis88Academic Affairs Staff88Academic Planning: Phase II88Academic Services Board88Administrative Systems, Supervisory88Admissions Office88Affirmative Action Advisory Committee2 folders88Affirmative Action Office88Affirmative Action Operations Committee88Allied Health88Allmand, Charles M. (Assistant to VPAA)88Alumni Association88American Association of University Professors (AAUP)88American Council on Education (ACE)General88Internship Program88Appointments88Appointments and Leaves88Association of American Universities88Athletes88Audits, Internal88Awards89General89Teaching Assistants89B-General89Brinkerhoff, James F., Vice President and Chief Financial Officer89BudgetGeneral2 folders89Budget Priorities Committee89Capital Outlay89Hearings in LansingOctober 28, 197789November 14, 197789February 23, 197889Budget1978-1979General89Projected Budget89Request89C-General89Calendar, University89Capital Campaign89Career Planning and Placement Office89Center for the Continuing Education of Women89Center for Higher Education89Center for Human Growth and Development (CHGD)89Center for Research on Learning and Teaching (CRLT)89Centers: General89City/University Consortium90Commencement90CommitteesGeneral90Administration-Instruction Budgets, Committee on Trends in90Computer Policy Committee90Conflict of Interest Committee90Economic Status of the Faculty, Committee on (CESF)90Institutional Cooperation, Committee on (CIC)3 folders90Inteflex Policy Committee90Research and Transportation, Committee on2 folders90Complaints90Computing CenterGeneral90Director Search297Conflict of Interest90Course Evaluation90D-General90Daane, Ketelhut, Lemmer (General Counsel)90Data Systems Center90Davis, Carolyne K. (Associate Vice President for Academic Affairs)General90Unit Meetings re: Budget90Deans and Directors, Memos to90Deans, Directors, and Department Heads, Memos to90Deans, Meetings with90Development Office90Distinguished University Professorships90Division of Research Development and Administration (DRDA)90Dougherty, Edward A. (Assistant to VPAA)90E-General90Economics91English, Richard A. (Associate Vice President for Academic Affairs)General91Units Budget Meeting91Enrollment91Enrollment, Racial and Ethnic Groups91Environmental Research Council91Ethics and Religion91Extension Service91External Degrees91F-General91FacultyGeneral91Collective Bargaining91Development91Family Educational Rights and Privacy Act of (FERPA)197491FeesGraduate Student, Report91Student2 folders91Financial Aid Office2 folders91Fleming, Robben W., President91Ford Foundation91Ford, Gerald R91Freeze (on positions)91G-General91General Counsel91

    (see "Daane,...")

    Graduate Employees Organization (GEO)General3 folders91Appeal91H-General92Handicapped92Health, Education and Welfare, Department ofGeneral2 folders92Audit Report2 folders92Health Maintenance Organization (HMO)92Health Service92Hold Credits92Hospital, University3 folders92House Officers Organization (Interns' Union)92Housing Office92Indirect Cost Reimbursement92Inquiries2 folders92Institute for Human Adjustment92Institute for Social Research (ISR)92Institute of Gerontology (IOG)92Institute of Labor and Industrial Relations (ILIR)92Institute of Public Policy Studies (IPPS)93Institute of Science and Technology (IST)93Institutes: General93International Programs and Center93Johnson, Henry (Vice President for Student Affairs)General93Budget Meeting, March 2993K-General93Kennedy, Richard L. (Vice President for State Relations)93L-General93Lansing Offices93Library, UniversityGeneral93Budget MeetingFebruary 23, 197893M-General93Memberships93Michigan Council of State College Presidents2 folders93Michigan Historical Collections, Bentley Historical Library93Michigan Student Assembly93Michigan Union93Minority Enrollment Report93Minority Students93Miscellaneous Appointments93Museum of Art93N-General93North Central Association93O-General93Overberger, C. G. (Vice President for Research)General3 folders93MeetingApril 17, 197893P-General94Periodic Health Appraisal Unit (PHAU)94Personnel3 folders94Plant Extension94Policies and Procedures94Policy Coordinator (Virginia B. Nordby)94Population Studies Center94Power Exchange Scholarships94President's Club94President's Report94Priority Funding Budget1977-197894Privacy, Rights of (report)94Professional Theatre Program (PTP)94Program Discontinuance94Program Evaluation Committee94Project Advance (English Credit)94Promotions94R-General94Radock, Michael (Vice President for University Relations)General94Budget MeetingMarch 29, 197894Recommendations (H.T. Shapiro)94Regents' Correspondence94Registration and Records, Office of94Research Club94Research-News, Reporter, and Council94Research Seminar in Quantitative Economics94Reserve Officers Training Corps (ROTC)94Retirement, Faculty94S-General94Salary Information94Salaries, Instructional StaffUniversity of Michigan94Big Ten95Sauve, Robert P. (Assistant to VPAA)95Scheduling Committee95Scheduling Office95Scholarships and Fellowships95Senate, UniversityAssembly95Senate Advisory Committee on University Affairs (SACUA)95Shapiro, Harold T., President95South Africa95Space and Equipment95State Department of Education95Student Counseling, Task Force on2 folders95Student Course Evaluation, Draft Proposal for95Student Grievance Procedures95Students95Survey Questionnaire (of staff)95T-General95Television Center95Tenure95Title IX95U-General95Unions95University Press95Values and Science95W-General95X-Y-Z-General95Index to Correspondence95
    Schools and Colleges FilesArchitecture and Urban Planning, College ofGeneral95Budget Meeting95Art, School ofGeneral95Budget Meeting95Business Administration, School ofGeneral95Budget Meeting95Dean Search298Dearborn Campus96Dentistry, School ofGeneral96Budget Meeting96Education, School ofGeneral2 folders96Budget Meeting96Complaints and Grievances (student)298Educational Policy Research Center96Physical EducationGeneral96Budget Material96Recreational Sports, Dept. of, Michael J. Stevenson Budget Conference96Engineering, College ofGeneral2 folders96Budget Meeting96Oceanography Review Committee96Flint Campus2 folders96Graduate SchoolGeneral2 folders96Rackham Budget Meeting96Law SchoolGeneral96Budget Meeting96Self-Study96Library Science, School ofGeneral97Annual Report to ALA Committee on Accreditation97Budget Meeting97Literature, Science, and Arts, College ofGeneral2 folders97Biological Sciences97Budget Meeting97Centers97Chemistry97Computer and Communication Science97Economics97English97English Composition Board97German97History97History of Art97Journalism97Mathematics97Miscellaneous Departments2 folders97Museums97Philosophy97Physics97Political Science97Psychology97Residential College97SociologyGeneral97Complaints and Grievances (faculty/staff)298Speech97Medical SchoolGeneral2 folders97Budget Meeting97Burn Center Proposal98Medical Center Coordinating Committee3 folders98Medical Science III-Building Planning98Memorandum of Understanding98Speech and Hearing3 folders98Speech Pathology & Audiology, Accreditation Application98Music SchoolGeneral2 folders98Budget Meeting98Natural Resources, School ofGeneral98Budget Meeting98Nursing, School ofGeneral2 folders98Budget Meeting99Pharmacy, College ofGeneral99Budget Meeting99Pharmacy Advancement Program99Public Health, School ofGeneral99Budget Meeting99Social Work, School ofGeneral99Budget Meeting99
    1978-1979Alphabetical FilesA-General99Academic Affairs Advisory CouncilGeneral3 folders99Sussman, Alfred, Files99Academic Affairs Committee99Academic Planning-Director Job Description99Academic Planning and Analysis, Office of99Academic Service Board99Administrative Systems Planning2 folders99Admissions Office99Affirmative Action Office100Allmand, Charles M. (Assistant to VPAA)100Alumni Association100American Association of University Professors (AAUP)100American Council on Education (ACE)Fellows Nominations1979100Internship Program100Association of American Universities (AAU)100Athletic Department100Audits100AwardsGeneral100Teaching Assistants100B-General100Bakke case (re: alleged discrimination at UC-Davis in admissions)100Biology of Aging100Brinkerhoff, James, Vice President and Chief Financial OfficerGeneral100Budget Conference100BudgetGeneral100Conferences100Lansing HearingOctober 25, 1978100Lansing MeetingsNovember 21, 1978100April 25, 1979100June 5, 1979100Priorities Committee100Working Papers for Budget Preparation2 folders101Bylaws101C-General101Calendar, University101Capital Campaign101Capital Outlay and Projects101Career Planning and Placement101Catalogs and University Bulletins (about)101Center for Human Growth and Development (CHGD)General101Review2 folders101Center for Research on Economic Development (CRED), Population Training Program for Development Planners101Center for Research on Learning and Teaching (CRLT)101Centers: General101Child Care Action Center, School of Education101China, People's Republic of, Student Exchange Program Meeting, Washington, DCAugust 24, 1978101Chinese Delegation VisitMay 2-6, 1979101Chronicle of Higher Education101Commencement101CommitteesGeneral101Administration and Teaching Budget, Trends in (Spivey Report)101Economic Status of the Faculty (CESF)101Institutional Cooperation (CIC)3 folders101Research and Transportation102Complaints102Computing Center102Course Evaluation102D-General102Daane, Roderick (General Counsel)102Data Systems102Davis, Carolyne K. (Associate Vice President for Academic Affairs)102Deans, Memos to102Deans, Directors and Department Heads, Memos to102Deans' Orientation MeetingSeptember 5, 1978102Development Office102Division of Research Development and Administration (DRDA)102Dougherty, Edward A. (Assistant to VPAA)General102Exxon Education Foundation102E-General102East Asian Studies and Capital Campaign102Economics2 folders102English, Richard A. (Associate Vice President for Academic Affairs)102Enrollments102Environmental Research Council102Extension Service103F-General103Faculty Development Program103Faculty Handbook103Fees, Student103Financial Aid Office103Financial Aid ReportsGeneral103Carnegie Foundation103Fincher, A. L. (Asst. to Vice President for State Relations)103Fleming, R. W., President103Freedom of Speech103G-General103General Counsel103

    (see "Daane")

    Graduate Employees Organization (GEO)103H-General103Health, Education, and Welfare, Department ofGeneral103Audit Report103Health Maintenance Organization (HMO)103Health Sciences Division103Honorary Degree Committee103Housing Office103I-General103Indirect Cost Reimbursement103Inquiries104Institute for Human Adjustment104Institute for Public Policy Studies (IPPS)General104Review of Program in Public Policy StudiesJune 1979104Institute for Social Research (ISR)104Institute for the Study of Mental Retardation and Related Disabilities (ISMRRD)Grievances298ReportMay 1979104Appendices104Institute of Gerontology (IOG)104Institute of Labor and Industrial Relations (ILIR)104Institute of Science and Technology (IST)104Institutes: General104International Programs and Center104Intramural Sports: Budget ConferenceNovember 20, 1978104Johnson, Henry (Vice President for Student Affairs)General104Budget ConferenceNovember 2, 1978104K-General104Kennedy, Richard (Secretary and Vice President for State Relations)104L-General104Lansing, Offices in104Libraries, University2 folders104M-General104Memberships104Michigan Council of College Presidents2 folders104Michigan Historical Collections, Bentley Historical Library105Michigan Internship Program105Michigan Union105Minorities105Minority Student Enrollment: Regents MeetingApril 1979105Museum of Art105N-General105Nordby, Virginia (Policy Coordinator)105North Central Association105O-General105Opportunity Program105Overberger, C. G., Vice President for Research105P-General105Pachella, Robert (American Council on Education Fellow)105Periodic Health Appraisal Unit (PHAU)105Personnel105Ph.D. Committee105Planning105Plant Extension105Policies and Procedures105Population Studies Center105President's Club105Professional Theatre Program (PTP)105Program Discontinuance105Program Evaluation Committee105PromotionsGeneral2 folders105Grievances298Psychiatric Emergencies106R-General106Radock, Michael (Vice President for University Relations)General106Budget ConferenceNovember 6, 1978106Ransom (Henry K.) Professorships (General)Anatomy and Pharmacology106Law106Obstetrics and Gynecology106Surgery106Recommendations106Regents' Communications106Regents' Correspondence106Registration and Records, Office of106Research Club106Reserve Officers Training Corps (ROTC)106Retirement106S-General106St. Joseph Hospital (building)106Salary Information106Scheduling Guidelines Committee106Scheduling Office106Scholarships and Fellowships106Senate, UniversityAssembly106Senate Advisory Committee on University Affairs (SACUA)106Smith, Allan F. (Interim President)106South Africa106Space106Staff Benefits106State Department of Education106Students107T-General107Tax Limitation107Television Center107Tenure107Travel107Turner Geriatric Clinic and Program2 folders107Unions107United Way3 folders107University Press107V-General107Values and Science, Collegiate Institute for (CIVS)107W-General107Women107Workers' Compensation107Index to Correspondence1978-1979107
    Schools and Colleges FilesArchitecture and Urban Planning, School ofGeneral107Budget Conference107Master of Urban Planning107Art, School ofGeneral107Budget Conference107Self Study107Business Administration, School ofGeneral107Budget Conference107AACSB Self Study Report107Dearborn Campus108Dentistry, School ofGeneral108Budget Conference108Education, School ofGeneral2 folders108Budget Conference108Engineering, College ofGeneral108Budget Conference108Flint Campus108Graduate Studies, Rackham School ofGeneral3 folders108Budget Conference108Law SchoolGeneral108Budget Conference108Library Science, School ofGeneral108Annual Report to ALA Committee on Accreditation108Budget Conference108Literature, Science and the Arts, College of109General2 folders109Budget Conference109Enrollment Study109Biological Sciences109Biological Station109Chemistry109Economics109English, GeneralGrievances298English Composition Board109Executive Committee109History109History of Art109Journalism109Mathematics109Miscellaneous Departments2 folders109Philosophy109Physics109Political ScienceGeneral109Grievances298Psychology109Sociology109Theatre and Drama109Medical SchoolGeneral3 folders109Budget Conference110Clinical Department Chair Search Procedures110Pediatrics and Communicable DiseasesGrievances298Review Report110Postgraduate Medicine & Health Professions110PsychiatryGrievances298Reorganization of the Medical School /Hospital110Music, School ofGeneral110Budget Conference110Natural Resources, School ofGeneral110Budget Conference110Nursing, School ofGeneral3 folders110Budget Conference110Cost Study110Pharmacy, College ofGeneral110Budget Conference110Public Health, School of111General111Budget Conference111Deanship Review298Health Behavior Review111Social Work, School ofGeneral111Budget Conference111
    1979-1980Alphabetical FilesA-General111Academic Affairs, Vice President for, Search Procedures111Academic Affairs Advisory Council4 folders111Academic Affairs Committee111Academic Planning and Analysis, Office of111Academic Services Board111Administrative Systems, Data Systems Center111Administrative Systems Office Advisory Group111Admissions Office111Affirmative Action OfficeGeneral111Director Search298Allmand, Charles M. (Assistant to VPAA)111Alumni Association111American Association of University Professors (AAUP)111American Council on Education (ACE)111Appointments111Association of American Universities (AAU)111Athletic Department112Audits112Awards2 folders112B-General112Biology of Aging112Brinkerhoff, James F., Vice President and Chief Financial Officer112BudgetGeneral112Capital Outlay Program112Lansing Meetings with Department of Management and BudgetNovember 5, 1979112March 14, 1980112Responses from Deans on Budget Proposals1123 folders1980-1981112Bylaws112Calendar, University112Capital Campaign112Center for Continuing Education of Women112Center for Human Growth and Development (CHGD)General2 folders112Annual Report113Grievance2 folders1970-1980298Scientific Board Material113Center for Research on Learning and Teaching (CRLT)113Centers: General113Child Development Facility113China: Scholars and Committee2 folders113China Task Force113CommitteesGeneral113Economic Status of the Faculty (CESF)113Institutional Cooperation (CIC)2 folders113Research and Transportation113Complaints113Computing Center and Computers113D-General113Daane, Ketelhut, Lemmer (General Counsel)113Deans and Directors, Memos to113Deans, Directors, and Department Heads, Memos to113Delphi Process113Development Office113Dual Appointments, Report of Task Force on113E-General113East Asian Studies113Endowment Fund113Enrollment113Extension Services113F-General113Faculty Development Program113Fees113Financial Aid Office2 folders113General Counsel113

    (see "Daane,...")

    Graduate Employees Organization (GEO)2 folders113H-General114Health, Education, and Welfare, Department of114HospitalGeneral114Cost Containment114Executive Board114Housing Office114I-General114Indirect Cost Reimbursement114Industrial Development114Inquiries114Institute for Human Adjustment114Institute for Public Policy Studies (IPPS)114Institute for Social Research (ISR)114Institute for the Study of Mental Retardation and Related Disabilities (ISMRRD) Review Committee114Institute of Gerontology (IOG)114Institute of Labor and Industrial Relations (ILIR)114Institutes: General114Inter-campus Relations (Fincher, Dougherty, Zimmermann)114International Year of the Child114International Programs and Centers114Iranian Situation114Johnson, Henry (Vice President for Student Services)114K-General114Kennedy, Richard (Secretary and Vice President for State Relations)114L-General114Lansing, Offices in114Libraries115LibraryBudget ConferenceOctober 25, 1979115Budget Meeting, Spring1980115Memberships115Michigan Council of College PresidentsGeneral115Academic Officers MeetingOctober 19, 1979115Michigan Historical Collections, Bentley Historical Library115Michigan Media (formerly Television Center)115Michigan Society of Fellows115Michigan Union, Report of the Task Force to Study the Future of115Minorities115Minority Students, Task Force on115Museum of ArtGeneral115Director Search115N-General115Nordby, Virginia B. (Policy Coordinator)115North Central AssociationGeneral115Report of a Visit to the University of Michigan, Ann Arbor115O-General115Overberger, C. G. (Vice President for Research)3 folders115P-General115Personnel115Periodic Health Appraisal Unit (PHAU)116Plant Extension116Policies and Procedures116President's Report116Priority Fund: Budget116Priority Fund Replies116Professional Theatre Program (PTP)116Program Discontinuance116Promotions116Radock, Michael (Vice President for University Relations)116Recommendations116Regents' Correspondence116Registrar Search116Registration and Records116Reserve Officers Training Corps (ROTC)116Salary Information116Scheduling Office116Scheduling of University of Michigan's Major Auditoriums and Theatre Facilities (report)116Scholarships and FellowshipsGeneral116Keal Fellowship Program116Senate, UniversityAssembly116Senate Advisory Committee on University Affairs (SACUA)116Shapiro, Harold, President116Smith, Allan F., Interim President116South Africa116Space116Staff Benefits116State Department of Education116Students116Tenure116Title IX: Discrimination116U-General116Values and Science, Collegiate Institute for (CIVS)116W-X-Y-Z-General116Women116Index to Correspondence1979-1980116
    Schools and Colleges FilesArchitecture and Urban Planning, College ofGeneral117Appointments, Promotions, and Recruitment298Budget117Complaints and Grievances (student)298Art, School ofGeneral117Budget117Business Administration, School ofGeneral117Appointments, Promotions, and Recruitment298Budget117Dearborn CampusGeneral117Chancellor Search2 folders298Education Program Task Force117Dentistry, School ofGeneral117Appointments, Promotions, and Recruitment298Budget117Dean Search4 folders298External Review117Education, School ofGeneral117Appointments, Promotions, and Recruitment298Budget117Complaints and Grievances (student)298

    [Student records restricted until July 01, 2056]

    Fresh Air Camp117
    Engineering, College ofGeneral117Appointments, Promotions, and Recruitment298Budget117Complaints and Grievances (faculty/staff)3 folders298Naval Architecture and Marine Engineering Center Feasibility Study, Phase I117Flint CampusGeneral117Appointments, Promotions, and Recruitment298Chancellor Search299Grievances299Self Study117Graduate Studies, Rackham School ofGeneral2 folders117Budget117Law School118General118Budget118Library Science, School ofGeneral118Budget118Literature, Science and the Arts, College ofGeneral118Appointments, Promotions, and Recruitment299Budget2 folders118Biological Sciences118Biological Station118Centers and Institutes118Chemistry118Complaints and GrievancesFaculty/Staff299Students118Drama118

    (see "Theatre and Drama")

    Economics118English118History118Journalism and Speech118Mathematical Science Research Institute118Mathematics118Miscellaneous Departments2 folders118Museums118Philosophy118Physics118Political ScienceGeneral118Grievances299Psychology118Sociology118Speech118

    (see "Journalism and Speech")

    Theatre and Drama118
    Medical SchoolGeneral4 folders118Appointments, Promotions, and Recruitment299Budget118Grievances2 folders299Medical Service Plan119Reed Report (Committee to Review Clinical Chairmen Search Procedures)119Music, School ofGeneral119Budget119Natural ResourcesGeneral119Budget119Deanship Review299Nursing, School of119General119Appointments, Promotions, and Recruitment299Budget119Psychiatric Nursing Leadership and Organization299Pharmacy, College ofGeneral119Budget2 folders119Deanship Review299Public Health, School ofGeneral119Appointments, Promotions, and Recruitment299Budget119Social WorkGeneral119Appointments, Promotions, and Recruitment299Budget119
    1980-1981Alphabetical FilesChronological Index to Correspondence119Academic Affairs Advisory Committee119Academic Affairs Council3 folders119Academic Affairs Staff119

    (see also "Staff Meeting Minutes")

    Academic Planning and Analysis119Academic Services Board119Administrative Systems Advisory Group119Admissions Office119Affirmative Action OfficeGeneral120Grievances299Alumni Association120American Council on Education (ACE)120Arts and Humanities Seminar120Athletic Department (Don Canham)120Audits, InternalGeneral120Special Investigative Reports299Awards120B-General120Biology of Aging120Brinkerhoff, James F., Vice President and Chief Financial Officer120BudgetGeneral5 folders120Lansing Hearing120Budget Administration, Committee on (CBA)120Budget Priorities Committee120Butts, Thomas (re: appointment)299Calendar, University121Capital Campaign2 folders121Capital Outlay121Career Planning and Placement121CentersGeneral121Center for Cognitive Studies121Center for Continuing Education for Women121Center for Human Growth and Development (CHGD)General121Appointments, Promotions, and Recruitment299Center for Research on Learning and Teaching (CRLT)121China and China Task Force121Commencements121CommitteesGeneral121Economic Status of the Faculty (CESF)121Institutional Cooperation (CIC)121ComplaintsGeneral121Faculty/Staff299Students299

    [Student records restricted until July 1, 2066]

    Computer Aided Design (CAD/CAM)299Computing Center and Computers299Daane, Ketelhut (General Counsel)General299Communications299Data Systems Center299Davis, Carolyne K. (Associate Vice President for Academic Affairs)299Deans and Directors (memoranda to)299Deans, Directors and Department Heads (memoranda to)299Development Office299Division of Research Development and Administration (DRDA) (includes review)299Dougherty, Edward A. (Assistant to VPAA)299England-Kleinsmith DNA Research299English, Richard A. (Associate Vice President for Academic Affairs)299Enrollment299Executive Officers7 foldersFolders 1-2299Folders 3-7122Fees, Financial Aid, and Residency122Financial Aid Office2 folders122Fincher, A. L. (Asst. to Vice President for State Relations)122Foundations122Frye, Billy E. (Vice President for Academic Affairs)122Gender Research122General Counsel122

    (see "Daane, Ketelhut")

    General Motors Corporation122Graduate Employees Organization/Graduate Teaching Assistants123Health Maintenance Organization3 folders123Health Sciences Division123Health Sciences, Vice President for123Hospital, GeneralAdministrative Oversight Meetings123Nurses123Housing Office123Indirect Costs Reimbursement123Industry (Development)123Inquiries123Institutes, GeneralScience and Technology (IST)General123Appointments, Promotions, and Recruitment299Social Research (ISR)123Study of Mental Retardation and Related Disabilities (ISMRRD)General123Appointments, Promotions, and Recruitment299International Programs and Centers123Johnson, Henry (Vice President for Student Services)General123International Students, Problems of299

    [Student records restricted until July 01, 2066]

    Kennedy, Richard L. (Vice President for State Relations)123LansingHearingOctober 22, 1980123Offices in123Libraries, University123Memberships, Organizational124Michigan Historical CollectionsGeneral124Director Search299Michigan Society of Fellows124Michigan Media124Michigan Student Assembly124Minorities3 folders124Museum of ArtGeneral124Director Search299National Oceanic and Atmospheric Administration (NOAA)124Nordby, Virginia B. (Director of Affirmative Action)124Overberger, C.G. (Vice President for Research)2 folders124Periodic Health Appraisal Unit (PHAU)124Personnel124Plant and Plant Extension (includes review)124Policies and Procedures124Presidents' Council of State Colleges and Universities124Professional Theatre Program (PTP)124PromotionsGeneral124Evaluations299Radock, Michael (VP for University Relations and Development)124Regents125Communications125Correspondence125Registrar, Office of the125Reserve Officers Training Corps (ROTC)/ Military Officers Education Program (MOEP)125SalariesGeneral125Loss of Faculty Study (responses re: salary competition)125Recommendations299Scholarships and Fellowships125Senate Advisory Committee on University Affairs (SACUA)125Shapiro, Harold, President125Social Sciences Seminar125South Africa125Space125Staff Meeting Minutes, Academic Affairs Office3 folders125Students (includes PIRGIM)125Sussman, Alfred S. (Acting Vice President for Academic Affairs)125Tenure Policy125Vice President for Development and University Relations Search299Women125Zimmermann, Ernest, R. (Assistant to VPAA)299
    Schools and Colleges Files125Architecture and Urban Planning, College ofGeneral125Appointments, Promotions, and Recruitment299Art, School of125General125Appointments, Promotions, and Recruitment299Business Administration, School of125General125Appointments, Promotions, and Recruitment299Real Estate Program125Dearborn CampusGeneral125Appointments, Promotions, and Recruitment299Complaints and Grievances (student)299Dentistry, School ofGeneral126Complaints and Grievances (student)300

    [Student records restricted until July 01, 2066]

    Dean Search2 folders300Review126
    Education, School ofGeneral126Appointments, Promotions, and Recruitment300Budget126Meetings with Dean126Program Review Reports126Engineering, College ofGeneral2 folders126Appointments, Promotions, and Recruitment300Budget126Complaints and Grievances (students)300

    [Student records restricted until July 01, 2066]

    Dean Search2 folders300Microelectronics Systems Research Center126Review126
    Flint Campus126Graduate Studies, Rackham School ofGeneral126Budget126Graduate Student Fellowships126Law, School ofGeneral126Appointments, Promotions, and Recruitment300Library Science, School of126Literature, Science and the Arts, College ofGeneral2 folders127Appointments, Promotions, and Recruitment300Biological Sciences, Division of127Botanical Gardens (Matthaei)127Centers and Museums127Chemistry, Department of127Complaints and GrievancesFaculty/Staff300Students300

    [Student records restricted until July 01, 2066]

    Computer and Communication Science, Department of127General127Leadership300Dean Search3 folders300Economics, Department of127English, Department of127English Composition Board127Geography Department "File" (re: discontinuance)"The Book" from John Nystuen127Program Evaluation Materials from John Nystuen127"The Grey Book" (presentation to Regents)127"The Blue DME Ring-Binder" (supporting documents)127Shock & Dismay Correspondence2 folders127Germanic Languages and Literature, Department of127History DepartmentGeneral127Alex Manoogian Professorship in Modern Armenian History127Journalism, Department of127Mathematics, Department of127Near Eastern Studies, Department of127Physics, Department of128Political Science, Department of128Psychology, Department of128Residential College128Sociology, Department of128Miscellaneous Departments128
    Medical SchoolGeneral3 folders128Appointments, Promotions, and Recruitment300Biomedical Research128Budget128Cancer Research128Grievances2 folders300Medical Science Research Building128Music, School ofGeneral128Budget128Natural Resources, School ofGeneral128Appointments, Promotions and Recruitment300Budget128Nursing, School ofGeneral2 folders128Appointments, Promotions, and Recruitment300Budget128Dean Search2 folders300Review300Pharmacy, School ofGeneral300Budget300Public Health, School ofGeneral300Appointments, Promotions, and Recruitment301Budget301Social Work, School ofGeneral301Appointments, Promotions, and Recruitment301Budget128Dean Search301Deanship Review301
    1981-1982Alphabetical FilesChronological Index to Correspondence129Academic Affairs Advisory Committee129Academic Affairs Advisory Council3 folders129Academic Affairs OfficePersonnelGeneral129Reorganization of Responsibilities (includes evaluations)301Staff Meetings129Academic Planning and Analysis, Office of129Academic Services Board (ASB)129Administrative Systems, Office of (OAS)129Admissions OfficeGeneral129Budget Conference129Affirmative Action Office129Alumni AssociationGeneral129Black Alumni Leadership Advisory Committee129American Association of University Professors (AAUP)129American Council on Education (ACE)129Amphibian Facility (phase-out)129Ann Arbor News129Annenberg (Walter H.) Project129Appointments129Arms Control (Nuclear Weapons)129Athletic Department129Audits, InternalGeneral129Special Investigations301Awards129General129NominationsFaculty301Students301

    [Student records restricted until July 01, 2067]

    Banfield, Ralph129Brinkerhoff, James F. (Vice President and Chief Financial Officer)129BudgetGeneral2 folders130Five Year Plan130Long Range Planning (includes Brown Bag Planning Meetings)130Budget Administration, Committee on130Budget Priorities Committee130Bylaws130Calendar, University (includes Frye's personal log of meetings)130Capital CampaignGeneral2 folders130Policy Committee2 folders130Capital Outlay130CentersGeneral130Continuing Education for Women (CEW)General130Review2 folders130Human Growth and Development (CHGD)131General2 folders131Directorship301Research on Learning and Teaching (CRLT)131General131Appointment301China131Chronicle of Higher Education(re: Geography Department closure)131Clippings131CommitteesGeneral131Economic Status of the Faculty (CESF)131Institutional Cooperation (CIC)131Community Colleges131Complaints and GrievancesFaculty/Staff301General Counsel Communications301Students301

    [Personnel records restricted until July 01, 2057]

    Computer Sciences and Engineering131Computing Center and Computers131Counseling Task Force131Daane, Roderick (General Counsel)301Deans, Directors, and Department Heads (memoranda to)131Development Office131Economic Dinner Group131Endowed Chairs and Professorships131EnrollmentGeneral131Enrollment Planning131Executive OfficersMeetings9 foldersFolder 1-4131Folders 5-9132Retreat132Extension ServiceGeneral132Review132FacultyDevelopment Funds132Handbook for Primary Research Staff132Unionization132Fees132Financial Aid OfficeGeneral2 folders132Leadership301Foundations133Graduate Student Aid, Task Force on133Graduate Student Assistants (GSAs) and Graduate Employees Organization (GEO)133Holbrook, Robert S. (Associate Vice President)133Honorary Degree Committee133Housing Office133Independent Business Research, Office of (Small Business Institute)133Indirect Cost Reimbursement133Industry/University Interactions133Inquiries133International Programs and Center133InstitutesGerontology (IOG)General133Director Search301Labor and Industrial Relations (ILIR)133General133Letters from University Community (re: future of ILIR)133Public Policy Studies (IPPS)133Science and Technology (IST)133Social Research (ISR)General133Appointments, Promotions, and Recruitment301Complaint301Study of Mental Retardation and Related Disabilities (ISMRRD)133General133Letters from University Community (re: future of ISMRRD)133Jacobson, Harold133

    (see Vice President for University Relations and Development)

    Jacoby, Robin (Administrative Intern)133Johnson, Henry (Vice President for Student Services)133Kennedy, Richard (Vice President for State and Community Relations)133Lansing Offices (State Government)133Libraries, UniversityGeneral133Budget Conference133Preservation, AAU/CRL Task Force on2 folders134Memberships134Michigan Daily134Michigan Historical Collections134Michigan Media134Minorities134Minority Student Recruitment and Retention (task force reports)134Museum of Art134National Association of State Universities and Land Grant Colleges (NASULGC)134Nordby, Virginia (Director of Affirmative Action and Executive Assistant to the President)134Overberger, Charles G. (Vice President for Research)General2 folders134Appointment301Personnel134Physical Therapy Letters134Plant Extension134Plant Operations Review Committee134Policies and Procedures134Presidents' Council of State Colleges and Universities134Professional Theatre Program (PTP)134Program Discontinuance134Promotions301Rackham Building-Detroit135Recreational Sports, Department of135RegentsCommunications135Correspondence135Registrar, Office of the135Reserve Officers Training Corps (ROTC)135Review Committee Memberships135Salary InformationGeneral135Salary Recommendations and Evaluations301Scheduling Office135Scholarships and Fellowships135Senate Advisory Committee on University Affairs (SACUA)135Senate Assembly135Shapiro, Harold (President)135South Africa135Space135Spivey, Allen (Associate Vice President)135Staff Benefits Office135Staff Meetings (Academic Affairs)135Students135Teaching Committee (Preserving the Quality of Education)135Technologies for Teaching and Learning, Task Force on135Telecommunications135Tenure135University Stores Performance Review135Vice President for University Relations and DevelopmentGeneral136Search301Women136
    Schools and Colleges FilesArchitecture and Urban Planning, College ofGeneral136Budget136Art, School of136Business Administration, School ofGeneral136Budget136Complaints301Dearborn Campus136General136Appointments, Promotions, and Recruitment301Dentistry, School ofGeneral136Appointments, Promotions, and Recruitment301Budget136Dean Search301Education, School ofGeneral2 folders136Appointments, Promotions, and Recruitment301Budget136Communicative Disorders Clinic Review136Fresh Air Camp136Plagiarism301Engineering, College ofGeneral2 folders136Appointments, Promotions, and Recruitment301Budget136General Motors Institute136Robotics136Flint Campus137Graduate Studies, Rackham School ofGeneral137Budget137Joint Program in Social Work and Social Science Review137Students (grievance and dissertation evaluations)301

    [Personnel records restricted until July 01, 2057]

    Law SchoolGeneral137Budget137Library Science, School ofGeneral137Budget137Literature, Science and the Arts, College ofGeneral2 folders137Appointments, Promotions, and Recruitment2 folders301Budget137BuildingsChemical Sciences Building137Natural Science Building renovation (includes photos)137Centers137Collegiate Institute for Values and Science (CIVS)137Complaints301Departments137Biological Sciences137Chemistry137Communications (Journalism)137Computer and Communication Sciences137Economics, GeneralEconomics Building Public Hearing137English137English Composition Board137Geography137History137Mathematics137Near Eastern Studies137Philosophy137Physics, GeneralReviews, Internal and External137Political Science138Psychology138Sociology138Miscellaneous Departments138Museums138Program in American Institutions138Medical SchoolGeneral2 folders138Appointments, Promotions, and Recruitment301Budget138Complaints301Institutional Self Study for Liaison Committee on Medical Education138Physical Therapy Program ReviewGeneral138Discontinuance Recommendation138Letters from Public re: Proposed Discontinuance138Proposed Solutions138Psychiatry, Department ofChair Search301Report of Review Committee138Music, School ofGeneral138Appointments, Promotions, and Recruitment301Budget138Stearns Collection138Natural Resources, School ofGeneral139Budget139Nursing, School ofGeneral139Budget139Pharmacy, College ofGeneral139Budget139Public Health, School ofGeneral139Appointments, Promotions, and Recruitment301Budget139Interim Dean Nominations139Social Work, School ofGeneral139Budget139Deanship301
    1982-1983Alphabetical FilesAcademic Affairs Advisory Committee (aaac)301Academic Affairs Advisory Council (AAAC)2 folders301Academic Affairs OfficeOrganization301StaffGeneral301Appointments302Associate Vice President for Academic Affairs Search302Holbrook, Robert (Associate Vice President)139Meetings2 folders139Retreats139Academic Planning and Analysis, Office of139Academic Services Units (units reporting to Robert Holmes)139Administrative Systems Office139Admissions Office139Affirmative Action, Office of (Virginia Nordby, Director)140AlumniAlumni Association140Black Alumni Leadership Advisory Committee140Joint Meeting of Executive Officers and Alumni Association Leadership140American Association of University Professors (AAUP)140American Council on Education (ACE)140Ann Arbor News140Arms Control Seminar1981/82140Athletics, Department of140Audits, InternalGeneral140Special Investigations302Awards140Bequests (Estate of D. Benton)140Brinkerhoff, James F. (Vice President and Chief Financial Officer)140BudgetGeneral2 folders140Budget Planning1983-1984140Budget Priorities Committee140Long Range Planning140Non-Academic Salary Program140Calendar, University140Capital CampaignGeneral2 folders140Endowment Responses from Units140Major Gifts (Prospect Coordination)140Policy Committee2 folders141CentersGeneral141Continuing Education of Women (CEW)141Human Growth and Development (CHGD)General141Leadership302Molecular GeneticsGeneral141Director Search and Leadership302Research on Learning and Teaching (CRLT)302Child Care Center302China302Clippings302Commencement (James Shortt)302Committee on the Economic Status of the Faculty (CESF)302Committee on Institutional Cooperation (CIC)2 folders302Committees, Executive302Computing Center and ComputingGeneral302Computing Center Access Task Force302Computer Networking302Conflict of Interest302Counseling, Task Force on Functional Review of302Daane, Roderick (General Counsel)302Deans, Directors, and Department Heads (letters to)302Development Office302Division of Research Development and Administration (DRDA)142Endowed Chairs and Professorships142Energy Studies Program and Task Force on Energy Cost Avoidance142Enrollment142Executive Officers9 folders142Extension Service142Faculty Appointments302Faculty Unionization (study by graduate student)142Federal Legislation Advisory Group (FLAG)143Fees and Tuition143Financial Aid OfficeGeneral143Draft Registration143Task Force on Undergraduate Student Aid143Foundations143Gender Research, Committee for2 folders143Graduate Student Assistants/Graduate Employees Organization (GSA/GEO)General143Graduate Student Financial Aid, Task Force on (includes report)143Grievance Procedures, Task Force on Faculty143Grievances302History of the University143Honorary Degrees143HospitalGeneral143Executive Board143Governance and Organization1973-19791433 folders1980-1983144Joint Conference Committee144Replacement Hospital Project144Shapiro Breakfast Meetings144Vice Provost for Medical Affairs (proposed)144Humanities144Indirect Cost Reimbursement144Inquiries144InstitutesGerontology (IOG)General144Appointments, Promotions, and Recruitment302Labor and Industrial Relations (ILIR)144General144Review144Public Policy Studies (IPPS)144Science and Technology (IST)144Social Research (ISR)General144Appointments, Promotions, and Recruitment302Study of Mental Retardation and Related Disabilities (ISMRRD), Review and Closure1442International Center144Investments and Divestments144Johnson, Henry (Vice President for Student Services)144Lansing Offices (State Government)144LibrariesBentley Historical Library144Clements Library144UniversityGeneral145Budget Conference145Memberships145Merger Advisory Committee, Administrative (re: consolidation of offices of Vice President for Research and Dean of Rackham)145Michigan Daily145Michigan Media145Michigan Research Corporation145Minorities2 folders145Minority Student Recruitment and Retention Task Force145Museum of Art145National Association of State Universities and Land Grant Colleges (NASULGC)145News and Information145

    (see University of Michigan News Releases)

    Nuclear Arms Control (includes Office of International Peace and Security Research)145Nuclear Reactor (Michigan Memorial Phoenix Project)145Overberger, Charles G. (Vice President for Research)2 folders145Personal (B. Frye)145Personnel145Physical Therapy Program146Plant Extension146Policies and Procedures146Postdoctoral Scholars, Ad Hoc Committee on146Presidential Seminar Series (UM)146Presidents' Council of State Colleges and Universities146Professional Theatre Program (PTP)146Promotions, Faculty1 folder302Promotions, Procedures and Issues146Redirection146RegentsCommunications146Correspondence146Registrar, Office of the146Reproductive Endocrinology Program146Research Ethics (Academic Integrity)146Reserve Officers Training Corps (ROTC)146Retirement Furlough146Retrenchment (materials for presentation to American Association of University Professors)146Reviews146Salary InformationGeneral146Deans' Responses to Salary Program146Deans' Salaries (1 folder and 1 volume RESTRICTED; moved to Box 302)146"Five Year Salary Analysis: Executive Officers, Deans, Directors"146Salary Complaint Letters from Non-Academic Staff146Salary Recommendations and Evaluations302Scheduling Office146Scholarship, Task Force on Integrity of147Scholarships and Fellowships147Scientific Club147Senate Advisory Committee on University Affairs (SACUA)147Senate Assembly147Shapiro, Harold (President)147Society of Fellows147South Africa147Space and Equipment147Staff Benefits Office147Students147Telecommunications147Tenure147University of Michigan News Releases147Vice President for Development and University RelationsGeneral147Search302Vice Provost for Medical Affairs Search302Women147
    Schools and Colleges FilesArchitecture and Urban Planning, College ofGeneral147Budget147Art, School ofGeneral147Budget147Review147Business Administration, School ofGeneral147Budget147Deanship Review302Dearborn Campus147Dentistry, School ofGeneral147Budget147Education, School ofGeneral147Appointments, Promotions, and Recruitment302Budget147Dearborn and Flint CampusesMasters Degree in Education, Establishment of147Teaching Certification, Decentralization of147Higher Education148Physical Education (Kinesiology)148ReviewGeneral2 folders148Letters from Public148Public Meeting, Information Notebook for148Report of Review Committee148Engineering, College ofGeneral2 folders148Appointments, Promotions, and Recruitment302Budget148Computer, Information and Control Engineering Program, Report of Review Committee148Humanities Department Review148Macromolecular Science and Engineering, Report on the Program in (review)148North Campus Move148Flint Campus148Graduate Studies, Rackham School ofGeneral148Budget148Merger of the Offices of the Vice President for Research and the Dean of the Graduate School (proposed)148Review148Law SchoolGeneral149Budget149Library Science, School ofGeneral149Budget149Dean Search (re: committee composition)149Self Study Report2 volumes149Literature, Science and the Arts, College ofGeneral149Appointments, Promotions, and Recruitment302Budget149Departments, Centers, and ProgramsGeneral149American Institutions, Program in149Biological Sciences (includes Biological Station)149Centers and Museums149Chemistry149Classical Studies149Collegiate Institute for Values and Science (CIVS)149Communications (Journalism)149Computer and Communication Sciences149Economics149English149English Composition Board149Geography149History149Mathematics149Near Eastern Studies149Physics149Political Science149Psychology149Sociology149Tappan Hall Project149Theatre and DramaGeneral149Review149Medical SchoolGeneral2 folders150Appointments, Promotions, and Recruitment302Biomedical Research150Budget150Burn Center1978-1983150

    (includes 1978 proposal and agreement)

    Complaints302Dean Search302Enrollment150Inteflex Program (includes report)1981150Liaison Committee on Medical Education, Report of Survey of UM Medical School150Medical Education, LS&A/Medical School Task Force on150Medical Science Research Building150Medical Service Plan Office150
    Music, School ofGeneral150Budget150Director's Report, University Division and All-State Sessions of the National Music Camp at Interlochen, Summer1982150Natural Resources, School ofGeneral150Appointments, Promotions, and Recruitment302Budget150Dean Search302Review150General150Public Hearing Statements150Transition Team151Nursing, School ofGeneral151Appointments, Promotions, and Recruitment302Budget151Pharmacy, College ofGeneral151Appointments, Promotions, and Recruitment302Budget151Public Health, School ofGeneral151Appointments, Promotions, and Recruitment302Budget151Dean Search302Social Work, School ofGeneral151Budget151
    1983-1984Alphabetical FilesAcademic Affairs Office151Academic Affairs Advisory Committee151Academic Affairs Advisory Council4 folders151Academic Affairs Staff Agenda3 folders151Academic Affairs Brown Bag Meetings151Academic Affairs Organization151Academic Affairs Staff151Academic Planning and Analysis, Office of152Academic Service Units (R. B. Holmes)152Administrative Systems Office (S. Plice)152Admissions Office (R. Holmes)3 folders152Affirmative Action Office (V. Nordby)152Aging, Cross Cultural Studies152Alumni AssociationGeneral152Black Alumni Leadership Advisory Committee152American Association of University Professors (AAUP)152American Council On Education (ACE)General152National Council of Chief Academic Officers152Arms Control152Association of American Universities (AAU)152Associate Vice PresidentsSearch2 folders303Holbrook, Robert S.152Sudarkasa, Niara152Swain, Mary Ann152Audits, Internal152Awards (miscellaneous)152Budget6 foldersFolder 1152Folders 2-6153Budget Priorities Committee (BPC)2 folders153Budget Requests2 folders153Calendar, University153Capital CampaignGeneral3 folders154Capital Campaign Policy Committee154Capital Outlay154Capital Stock Renewal154CentersGeneral154Continuing Education of Women (CEW) (includes review materials)2 folders154Catalysis and Surface Science154Higher Education154Human Growth and Development (CHGD)154Japanese Studies154Molecular Genetics155Research On Learning and Teaching (CRLT)155Research Libraries (CRL)155Child Care Center155China155Commencement155Committee on the Economic Status of the Faculty (CESF)155Committee on Institutional Cooperation (CIC)General2 folders155Executive Committee155ComputingGeneral5 folders155Search: Special Assistant for Computing, Communication, and Information Systems303Computing Center Access Task Force156Computing and Higher Education156Computer Networking156Computer Policy, Advisory Committee156Conflict of Interest156Congratulatory Letters156Counseling Review, Task Force156Counsel, General156Deans and Chancellors, Procedures for Replacement, Reappointment and Searches156Deans, Directors, and Department Heads (memos to)156Debt Financing and Capital Renewal156Development Office156Discontinuance Guidelines156Distinguished University Professorships156Division Of Research Development and Administration (DRDA)156Economic Dinner Group156Endowed Chair Procedures156Endowments/Requests156Energy Studies Program156Enrollments156Enrollment Planning156Executive OfficersMeetings12 foldersFolders 1-9157Folders 10-12158OfficersPresident (Harold Shapiro)158Chancellor, Dearborn (W. A. Jenkins)158Chancellor, Flint158Vice PresidentsBrinkerhoff, J.F. (Finance)158Cosovich, Jon (Development and University Relations)158Frye, Bill E. (Academic Affairs) (includes personal)2 folders158Johnson, Harold (Student Services)158Kennedy, Richard L. (State Relations)158Sussman, Alfred S. (Graduate Studies and Research)158Extension Service159Faculty Appointments303Faculty Unionization303Fees and Tuition159Financial Aid, Office ofGeneral159Draft Registration159Task Force on Undergraduate Student Aid159Foundations159Gender Studies159Government Agencies159Graduate Student Assistants (GSA's)159Grievance Procedures159Grievances303Honorary Degrees159HospitalGeneral159Breakfast Meetings3 folders159Executive Board159Financing159Governance160Joint Conference Committee160Long Range Planning160Medical Science Plan160Replacement Hospital Project160Housing Office160Humor160Indirect Cost Reimbursement160Industry160Institute for Public Policy Studies (IPPS)160Institute for Science and Technology (IST)160Institute for Social Research (ISR)160Institute of Gerontology (IOG)160Institute of Labor and Industrial Relations (ILIR)160International160Investments160Invitations160Lansing Offices160LibrariesBentley Historical Library160Clements Library160Miscellaneous160University LibraryGeneral161Budget Conference161Management Intercom161Memberships161Michigan Media161Michigan Research Corp161Michigan Union (budget)161Minorities161Minority Student Recruitment/Retention Task Force161Miscellaneous161Museum of Art161National Student Exchange/National Faculty Exchange161National Association of State Universities and Land Grant Colleges (NASULGC)161News and Information Services161

    (see University of Michigan News and Information Services)

    Personnel (C. Allmand)161Plant Operations Review Committee162Policies and Procedures162Postdoctoral Fellow Committee162Professional Theatre Program (PTP)162Promotions162Recommendation, Letters of162RegentsGeneral162Bylaws162Communications162Correspondence162Fellowship162Registrar's Office162Reproductive Endocrinology Program162Research Ethics162Research/Rackham Merger (merger of Offices of Vice President for Research and Dean of Rackham School of Graduate Studies)162Reserve Officer Training Corps (ROTC)162Retirement Furlough162Retrenchment Materials162Salary Information162Salary Recommendations303Scholarships and Fellowships163Scholarships, Integrity of163Scientific Club163Senate Advisory Committee on University Affairs (SACUA)163Senate Assembly163Separate Legal Entity163Software Engineering Institute163Society of Fellows163SOUP Group163South Africa163Space and Equipment163Staff Records Office163Students163Telecommunications163Tenure163Transmission Link, Microwave (Flint)163University of Michigan News and Information Services163University Record163Villa Information163Visits163Wang Alliance163Wayne County General Hospital163Women163
    Schools and CollegesArchitecture and Urban Planning, College ofGeneral164Budget Conference164Dean Evaluation303Art, School ofGeneral164Budget Conference164Review2 folders164Transition Team164Business Administration, School of2 folders164Dearborn Campus164Dentistry, School ofGeneral164Budget Conference164Education, School ofGeneral3 folders164Budget Conference165Dean Search303Review7 folders165Teacher Education2 folders165Transition Team2 folders165Engineering, College ofGeneral6 folders166Budget Conference6 folders166Building167Center for Robotics and Integrated Manufacturing (CRIM)167Computers167Department of Humanities Review167General Motors Institute (GMI)167North Campus Move167Flint Campus167Graduate Studies, Rackham School of2 folders167Law SchoolGeneral167Budget Conference167Library Science, School ofGeneral167Budget Conference167Literature, Science and the Arts, College ofAppointments, Promotions and Recruitment303Budget Conference167Chemistry167Classical Studies167Coalition for the Use of Learning Skills (CULS) and Opportunity Program167Collegiate Institute for Values and Science (CIVS)167Communications167Computer and Communication Sciences167Dean Peter O. Steiner168Economics168Electrical and Computer Engineering and Computer and Communication Science Merger168Endowments/Fellowships168English168English Composition Board (ECB)168Geological Sciences168History168History of Art168Humanities168Mathematics168Miscellaneous Units2 folders168Museums and Centers168Natural Science Building Renovation168Near Eastern Studies168Philosophy168Physics168Political Science168Psychology168Psychology/Education168Sociology168Thurnau, Arthur F. Estate168Medical Affairs, Vice Provost ForGeneral169Search303Medical SchoolGeneral3 folders303Appointments, Promotions and Recruitment1 folder303Budget Conference169Bequests169Biomedical Research169Burn Center169Enrollment169Inteflex Program169Medical Education Task Force169Medical Science Building169Medical Service Plan Office170Medical Technology Program170Music, School ofGeneral170Budget Conference170Department of TheatreGeneral170Review170Natural Resources, School ofGeneral170Budget Conference170Review170Transition Team170Nursing, School ofGeneral170Budget170Pharmacy, School ofGeneral170Budget170Physical Education3 folders171Public Health, School ofGeneral171Budget Conference171Dean Search303Social WorkGeneral169Budget Conference169Reaccreditation1 folder (two volumes)169
    1984-1985Alphabetical FilesAcademic Affairs Advisory Council3 folders172Academic Affairs Assessment and Issues Identification172Academic Affairs Brown Bag Meetings172Academic Affairs Committee172Academic Affairs Current Account172Academic Affairs Evaluation172Academic Affairs Organization172Academic Affairs Staff172Academic Affairs Staff Meeting Agenda172Academic Affairs Status Report172Academic Planning and Analysis, Office of172Academic Records173Academic Service Units (Robert Holmes)173Administrative Systems Office173Admissions, Office ofGeneral2 folders173Task Force173Affirmative Action Office173Alumni AssociationGeneral173Black Alumni Leadership Advisory Committee173American Council on Education (ACE)173Arms Control ( 2 folders)173Articles of Interest173Associate Vice PresidentsHolbrook, Robert S173Sudarkasa, Niara173Swain, Mary Ann173Association of American Universities (AAU)173Audits, Internal173Awards, Miscellaneous173BudgetGeneral3 folders174Budget Priorities Committee (BPC)174Budget Requests174Budget Resources/Needs174State Budget Requests174Calendar, University174Capital Campaign174CentersGeneral174Continuing Education of Women (CEW)174Human Growth and Development (CHGD)174Japanese Studies174Molecular Genetics174Research Libraries (CRL)4 foldersFolder 1174Folders 2-4175Research on Learning and Teaching (CRLT)175Child Care Center175China175Chosun University175Commencement (James Shortt)175Committee on the Economic Status of the Faculty (CESF)175Committee on Ethics, Humanism, and Medicine175Committee on Institutional Cooperation (CIC)General4 folders175Executive Committee175University Presidents175ComputersComputer Networking176Computer Policy Committee176Interim Assistant176Statistical Research Laboratory176Computing Budget and Planning176Computing Center and ComputingGeneral3 folders176Computing Center Access Task Force176Conflict of Interest176Congratulatory Letters176Counsel, General (Roderick Daane)176Counseling Review, Task Force on (Robert Suave)176Deans, Chancellors176Deans, Directors, Department Heads (memos to)176Debt Financing and Capital Renewal176Detroit Free Press176Development Office176Distinguished University Professorships176Division of Research Development and Administration (DRDA)176Early Retirement176Economic Dinner Group176Endowed Chair, Professorships Procedures176Endowments, Bequests, Trusts176Energy Studies Program (Robert Holbrook)176EnrollmentGeneral176Enrollment Planning176Minority Enrollment176Executive OfficersMeetingsGeneral5 folders177Retreat (on Minority Enrollment)178Special Meetings178OfficersPresident Harold Shapiro178Vice PresidentsBrinkerhoff, J. F178Cosovich, Jon178Frye, Billy (includes personal)2 folders178Johnson, Henry178Kennedy, R.L178Sussman, Al178Vice President for Research Search303Wilson, Linda178Vice Provost for Medical Affairs (George Zuidema)178Extension Service178FacultyGeneral178Faculty Grievance Procedures178Faculty Unionization178Federal Government178Fees and Tuition178Financial Aid OfficeDraft Registration178Task Force on Graduate Student Aid178Task Force on Undergraduate Student Aid178Foundations179Gender Studies179Government Agencies179Graduate Student Assistants (GSA/GEO)179Grievances303Honorary Degree Committee179HospitalGeneral179Executive Board179Executive Officer Briefing179Financing179Governance179Replacement Hospital Project179Reading179Housing Office (Henry Johnson)179Humanities179Humor179Indirect Cost Reimbursement179Information Technology179Information Technology, Vice Provost for179Institute for Public Policy Studies (IPPS)179Institute for Science and Technology (IST)180Institute for Social Research (ISR)180Institute of Labor and Industrial Relations (ILIR)180Intercollegiate Athletics180InternationalKorea-Chosun180Miscellaneous180Investment and Divestment180Invitations180K-12/University180LibrariesBentley Library180Clements Library180Miscellaneous180University LibraryGeneral2 folders181Budget Conference181Council on Library Resources2 folders181Management Incentives181MacGregor Fund181Medical Center3 folders181Memberships, University181Michigan Media181Michigan Molecular Institute181Michigan Research Corporation181Michigan Technology Council181Middle English Dictionary181Minorities181Minority Retreat182Miscellaneous182Museum of Art182Museums, Conservation Needs of182National Association of State Universities and Land-Grant Colleges (NASULGC)General182Executive Committee3 folders182Nuclear Free Zone182Personnel2 folders182Plant Extension182President's Council of State Colleges and Universities (PCSCU)182Professional Theatre Program (PTP)182Promotion Procedures183Promotion Recommendations1 folder303Proposition C183Protein Structure and Design183Recommendations183RegentsBylaws183Correspondence183Communications183Fellowships183Registrar's OfficeGeneral183SearchGeneral304Report of the Advisory Committee to Assist in the Search for the University Registrar1 volume304Resumes and Writing Samples of Candidates304Requests from Institutions and Individuals183Research (miscellaneous and proposals)183Research Incentives183Reserve Officer Training Corps (ROTC)183Retirement Furlough183Retreat (August 1984)183Retrenchment183Salary Equity Study184Salary Information1 folder184Salary Recommendations304Scheduling Office (Robert Holmes)184Scholarships and Fellowships184Scholarship, Integrity of184Scientific Club184Search Committee Guidelines184Senate Advisory Committee on University Affairs (SACUA)184Senate Assembly184Separate Legal Entity184Society of Fellows184Software Engineering Institute184SOUP Group184Staff Records Office184Students184Supercomputers185Telecommunications185Tenure185Tropical Studies, Organization for (OTS)185University of Michigan News and Information Services185Visits185Wayne County General Hospital185Women185Chronological Files1984July-December6 folders1851985January-March3 folders185April-May2 folders186Schools and Colleges FilesArchitecture and Urban Planning, College of2 folders186Art, School of, GeneralBudget186Dean Search304Transition Team186Business Administration, School ofGeneral2 folders186Budget186Retreat187Dearborn Campus187Dentistry, School ofGeneral187Budget187Mini-Retreat187Education, School ofGeneral3 folders187Budget187Centers187Transition Team187Engineering, College ofGeneral2 folders187Budget2 folders188Computer and Communications Science188Research Center188Transportation Research Institute (UMTRI)188Flint CampusGeneral188Nursing, School of188Graduate Studies, Rackham School ofGeneral188Research Merger (proposed merger of Offices of Vice President for Research and Dean of Rackham)188Law, School ofGeneral188Budget Conference188Library188Library Science, School of188Literature, Science and the Arts, College ofBiological Sciences188Budget Conference188ChemistryGeneral189Building189Review189Classical Studies189Coalition for Use of Learning Skills (CULS)189Collegiate Institute for Values and Science (CIVS)189Cognitive Science Program189Dean's Office189Economics189Endowments189English189English Composition Board (ECB)189Faculty Appointments (Regents' Communications)189Geological Sciences189Humanities189History of Art189History189Mathematics189Miscellaneous Units3 folders189Museums and Centers189Natural Science Building189Near Eastern Studies189Philosophy190PhysicsGeneral190Long-Range Planning190Political Science190Psychology/Education190Sociology190Tappan Hall Project190Medical SchoolGeneral3 folders190Alumni Society190Basic Science Retreat190Biomedical Research190Budget Conference190Capital Needs190Clinical Track190"Cost of Health Care-Role and Impact of the Surgeon"190Enrollment190Faculty Appointments (Regents' Communications)190Family Practice, Department of, External Review190Inteflex190Medical Center Retreat190Medical Education Task Force191Medical Service Plans191Medical Technology Program191Pathology, Department of (annual report)191Regents Briefing191Sports Medicine191Taubman Library191Threatt, Barbara (re: disposition of research records)191Unit for Laboratory Animal Medicine191Music, School ofGeneral191Budget Conference191Theater191Natural Resources, School ofGeneral3 folders191Budget Conference191Reviews (external, internal, accreditation)5 foldersFolders 1-2191Folders 3-5192Nursing, School ofGeneral192Budget Conference192Pharmacy, College ofGeneral192Budget Conference192Physical Education192Public Health, School ofGeneral192Budget192Social Work, School ofGeneral192Budget Conference1921985-1986Alphabetical FilesAcademic Affairs Advisory Committee193Academic Affairs Advisory Council3 folders193Academic Affairs Brown Bag Meetings193Academic Affairs Budget193Academic Affairs Policy193Academic Affairs Salaries193Academic Affairs Staff2 folders193Academic Freedom193Academic Planning and Analysis, Office of193Academic Policy Group (APG)3 folders193Academic Service Units193Academic Services (Robert Holmes)193AdmissionsGeneral3 folders194Preferred Admissions Program194Task Force194Affirmative Action Office194Alumni Association194American Council on Education (ACE)194American Institutions Program194Articles of Interest194Assiut University194Association of American Universities (AAU)194Athletics194Audits, Internal194Awards, Miscellaneous194Brinkerhoff, J.F. (Vice President and Chief Financial Officer)General194Parking194BudgetGeneral4 folders194Budget Priorities Committee (BPC)195Committee on Budget Administration (CBA)195Conferences195Equipment/Renovation Requests195Five Year Plan6 folders195Indirect Cost Reimbursement195Long-Range Planning195Planning2 folders195State Appropriations Request195Business and Industry195Calendar, University195Capital CampaignGeneral4 foldersFolders 1-3195Folder 4196Judaic Studies Program196Korean Studies196Policy Committee4 folders196Career Ladder for Lecturers196CentersGeneral196Afroamerican and African Studies (CAAS)196Continuing Education of Women (CEW)196Human Growth and Development (CHGD)196Improving Postsecondary Learning and Teaching196Molecular GeneticsGeneral196Director Search304Research on Learning and Teaching (CRLT)196Chosun University196Commencement196Commission on Higher Education2 folders196Committee on Economic Status of Faculty (CESF)196Committee on Institutional Cooperation (CIC)3 folders196ComputingGeneral197Computer Fees197Computing Center197Executive Computing Committee197Supercomputer197Conflict of Interest197Cosovich, Jon (Vice President for Development and University Relations)197Counsel, General (Roderick Daane)197Deans and Directors, Appointments197Deans, Directors, and Department Heads (memos to)197Debate Team197Degrees, Dual197Development, Cost Analysis197Development Office198Developmental and Reproductive Biology198Direct and Indirect Costs198Disabled Student Services198Discontinuance Guidelines198Distinguished University Professorships198Division of Research Development and Administration (DRDA)198Donor Relations198Dual Careers198Duderstadt, James (personal)198Economic Dinner Group198Electronic Microbeam Analysis Laboratory198Endowed Chair Procedures198Endowments, Bequests, and Trusts198Energy Studies Program (Robert Holbrook)198Enrollment198Enrollment Planning198Equipment198Evolution and Human Behavior198Executive OfficersCorrespondence198Meetings13 foldersFolders 1-3198Folders 4-13199RetreatsAugust 1984199January 1986199FacultyGeneral199Appointments and Resignations (policies)199Merit Increase Program199Resource Network199Fees199Fellowships199Financial Aid OfficeGeneral199Task Force on Graduate Student Financial Aid199Five Year Reports200Football Building200Frye, Bill E. (Vice President for Academic Affairs and Provost)200Foundations200General200Genetics200Gifts200Graduate Student Assistants (GSA/GEO)200Grievances2 folders304Health200Higher Education200Holbrook, Robert (Associate Vice President)200Holmes, Robert (Assistant Vice President)200Holmes Group Proposal (Education)200Honorary Degree Committee200HospitalGeneral200Executive Board200Financing200Governance200Health Maintenance Organization (HMO)200Replacement Hospital Project (RHP)200Housing Office200Hughes Institute200Humor200Industrial Relations200Information TechnologyGeneral2 folders201Budget201Center for Information Technology Integration (CITI)201Computing Facilities201Institute for Public Policy Studies (IPPS)201Institute for Science and Technology (IST)General201Review201Institute for Social Research (ISR)General201Visiting Committee201Director Search304Institute of Gerontology (IOG)201Institute of Labor and Industrial Relations (ILIR)201Intercollegiate Athletics201Interdisciplinary Matters201International201International Center201Interviews201Investment and Divestment201Johnson, Henry (Vice President for Student Services)201Kennedy, Richard L. (Vice President for Government Relations)202K-12/University Collaboration202LibrariesGeneral2 folders202Bentley Library202Budget Conference202Clements Library202Council on Library Resources202Research Libraries Group (RLG)202Macromolecular Research Center202Medical Affairs202Medical CenterGeneral202Alumni Society202Executive Officer Meetings202Mental Health Research Center202Michigan Diabetes Research and Training Center202Michigan Media202Michigan Society of Fellows202Michigan Technology Council202Middle English Dictionary202MinoritiesGeneral202Comprehensive Studies Program/Opportunity Program202Minority Student Recruitment and Retention Unit Task Force202Miscellaneous203Michigan State University/UM Cooperation203Museum of Art203NAACP203National Association of State Universities, Land-Grant Colleges (NASULGC)General203Executive Committee203Meeting-November1985203Non-current Material203National Science Board203News and Information Services203Nichols, Ralph P. (Assistant Vice President)203National Institute of Education Proposal203Peace Corps203Peace Studies203Peer Institutions203PersonnelGeneral203Human Resources Development (HRD)203Phoenix Laboratory203Plant203Plant Extension203President's Council of State Colleges and Universities (PCSCU)203Promotions (policies re:)203Protein Structure and Design203Recreational Sports203RegentsBylaws203Communications203Correspondence203Fellowships203Meetings203Retreat204Registrar's OfficeGeneral204Committee to Study the Computerization of the Academic Record204Reports204Reproductive Endocrinology Program (REP)204Requests from Institutions and Individuals204Research Ethics204Research Excellence and Economic Development Fund204Research, Miscellaneous and Proposals204Reserve Officer Training Corps (ROTC)204Retreats204Retrenchment204Salary Information204Salary, Faculty Merit Salary Program204Scheduling Office (Robert Holmes)204Scholarships and Fellowships204Scholarship, Integrity of204Scientific Club204Seminars and Conferences204Senate Advisory Committee on University Affairs (SACUA)204Senate Assembly204Shapiro, Harold T., President204Sikh Studies204Smoking204Social Science, Future of (conference)204Space/Equipment205Space (North Ingalls Building)205Staff Records Office205Students205Substance Abuse205Sudarkasa, Niara (Associate Vice President)205Superconducting Super Collider205Sussman, Alfred S. (Interim Vice President for Graduate Studies)205Swain, Mary Ann (Associate Vice President)205Telecommunications205Tenure205Tenure Issues Liaison Group205Tracking System205Transition1986205Tuition205Tuition Grant Program205University of MichiganGeneral Information205News Releases and Clippings205Press Review Committee205University Seminar205UM Transportation Research Institute (UMTRI)206Van Houweling, Douglas E. (Vice Provost Information Technology)206Vander Veen III, Richard F. (re: Business/UM Collaboration)206Visiting Foreign Scholars206Visits206Wilson, Linda (Vice President for Research)206Women206Writing Assessment206Zuidema, George D. (Vice Provost for Medical Affairs)206Chronological Files1985July-December6 folders2061986207January-June7 folders207Schools and Colleges FilesArchitecture and Urban Planning, College ofGeneral208Budget Conference208Art, School ofGeneral208Budget Conference208Business Administration, School ofGeneral208Budget Conference208Departmental Self Reviews1 volume208Dentistry, School ofGeneral208Budget Conference208Dearborn Campus208Education, School ofGeneral208Budget Conference209Holmes Group209Engineering, College ofGeneral209Budget Conference209Computer and Communications Sciences209North Campus Move209Flint Campus209Graduate Studies, Rackham School ofGeneral2 folders209Law SchoolGeneral209Budget Conference209Library209Library Science, School ofGeneral209Budget Conference209Literature, Science and the Arts, College ofGeneral209Biological Sciences2 folders210Biological Station210Blue Ribbon Commission210Botanical Gardens2 folders210Budget Conference210Center210Chemistry210Classical Studies210Collegiate Institute for Values and Science (CIVS)210Communications Department210Dean's Office210Economics210Endowments210English210English Composition Board (ECB)210Enrollment210Faculty Appointments (Regents' Communications)210Geological Sciences210History210History of Art210Linguistics210Mathematics210Museums210Near Eastern Studies210Philosophy210Physics211Political Science211Population Studies211Psychology/Education211Sociology211Tappan Hall Project211Visiting Committee211Miscellaneous Departments3 folders211Medical SchoolGeneral3 folders211Appointments, Promotions, and Recruitment3 folders304Basic Sciences211Biomedical Research211Budget Conference211Enrollment211Executive Officers' Monthly Meeting211Inteflex Program211LS&A/Medical School Standing Committee211Medical Education Task Force211Medical Science Building211Medical Technology Program211Research Retreat211Taubman211Westland Medical Center211Music, School ofGeneral212Budget Conference212Theater212Natural Resources, School ofGeneral212Budget Conference212Nursing, School ofGeneral212Budget Conference212Report from the Dean1 volume212Pharmacy, College ofGeneral212Budget Conference212Physical Education212Public Health, School ofGeneral212Budget Conference212Social Work, School ofGeneral212Budget Conference2121986-1987Alphabetical FilesAcademic Affairs Advisory Committee213Academic Affairs Advisory Council6 folders213Academic Affairs MeetingsAcademic Policy Group (APG)3 folders213Brown Bag213Vice President Talks213Academic Affairs OfficeGeneral213Budget213Organization213Personnel213Academic Freedom213Academic Service Units (Robert Holmes)213Academic Planning and Analysis, Office of2 folders213Administrative Systems Office213Admissions OfficeGeneral214Enrollment214Preferred Admissions Program214Undergraduate Admissions Task Force214Affirmative Action Office214Alumni AssociationGeneral214Black American Alumni Leadership Advisory Committee214American Association of University Professors (AAUP)214American Institutions Program2 folders214Association of American Universities (AAU)214Audits, Internal214Awards214Brinkerhoff, J.F. (Vice President for Business and Finance)214BudgetGeneral5 folders214State Appropriation Request5 folders215Budget Conference215Budget Priorities215Business and Industry215Calendar, University215Campaign for Michigan215Campaign Policy Committee3 folders215Capital Outlay215Celebration1987216CentersGeneral216Continuing Education of Women (CEW)216Human Growth and Development (CHGD)216Molecular Genetics216Research on Learning and Teaching (CRLT)216Chinese Automobile Industry216Classified Research216Cognitive Science and Machine Intelligence Laboratory (CSMIL)216Commencement216Committee on Economic Status of Faculty (CESF)216Committee on Institutional Cooperation (CIC)General5 folders216Executive Committee216Communications3 folders216Computing Center216ComputingGeneral2 folders217Executive Computing Center217Supercomputers217Confer217Cooperative Agreements217Cosovich, Jon217

    (see also Development Office)

    Counsel, General217Deans, Directors, and Chairs (memos to)217Debate Team217Development Office3 folders217

    (see also Cosovich, Jon)

    Developmental and Reproductive Biology217Disabled Student Services217Discretionary Funds217Division of Research Development and Administration (DRDA)217Dual Careers217Economic Development217Electron Spectronometer217Electron Microbeam Analysis Lab217Endowed, Named Chairs, Professorships217Energy Studies Program217Evolution and Human Behavior217Executive OfficersGeneral218Meetings6 foldersFolders 1-5218Folder 6219RetreatsAugust219September219Experimental Research in Electronic Submission219FacultyGeneral219Appointments/Resignations219Promotions304Federal Relations219Financial AidGeneral2 folders219Graduate Student Aid, Task Force on219Financial Officer, Vice President and Chief, Search304Foundations220Fremon, Richard220Gifts, Endowments, etc220GovernmentFederal220State220Graduate Student Assistants (GSA/GEO)3 folders220Grievance Procedures220Grievances304Higher Education220Holmes, Robert (Assistant Vice President for Academic Affairs)220Honorary Degree Committee2 folders220HospitalGeneral220Executive Board220Health Maintenance Organization (HMO)220Incentive Compensation Study220Housing Office220Humanities, Institute for the4 folders1981-1987220Industrial Technology Institute (ITI)220Industry220Information Technology221InstitutesGeneral221Institute for Labor and Industrial Relations (ILIR)221Institute for Science and Technology (IST)General221Review221Institute for Social Research (ISR)221Institute of Gerontology (IOG)221Institute of Public Policy Studies (IPPS) (includes external review)221Transportation Research Institute (UMTRI)221Integrated Technology Instruction Center (ITIC)221

    (see North Campus, Info Tech Center)

    Intellectual Properties5 folders221Intercollegiate Athletics2 folders221Interdisciplinary Matters221International221Investment and Divestment221Invitations221Johnson, Henry (Vice President for Student Services)222Kennedy, Richard (Vice President for State Relations)3 folders222K-12/University Collaboration222Labor Management Relations222Libraries, GeneralBentley Historical Library222Center for Research Libraries Group (CRL)222Clements222University LibraryGeneral3 folders222Budget222Management Incentives222Medical Affairs3 folders222Medical CenterGeneral5 foldersFolders 1-2222Folders 3-5223Budget223Executive Officers Meetings2 folders223Memberships2 folders223Metro Center223Michigan Media (includes review)2 folders223Michigan Research Corporation2 folders223Michigan Society of Fellows223Middle English Dictionary223Minority Affairs3 folders223MinoritiesGeneral4 folders223Comprehensive Studies Program/Opportunity Program224Enrollment, Recruitment, and Retention, Task Force on4 folders224Martin Luther King/Rosa Parks224Minority Initiatives5 folders224Michigan State University/University of Michigan Cooperation224Museum of Art224Museum, Kelsey224Miscellaneous224NAACP224National Association of State Universities and Land Grant Colleges (NASULGC)224News and Information Services224Nichols, R.P. (Asst. Vice President Budget Analysis and Reporting)224North Campus Integrated Technology Instruction Center)224Peace Studies224Peer Institutions224Personnel2 folders224Personnel Service Center (SCIL advisory group)224Pickens, T. Boone224Plant/Equipment224Plant Extension Committee225Power, Sarah Goddard225Presidential Commission for Minority Affairs225Presidential Initiatives225Presidents Council of State Colleges and Universities (PCSCU)225Protein Structure and Design225Racism3 folders225Recommendations, Letters of225Recreational Sports225RegentsGeneral225Bylaws225Communications3 folders225Correspondence225Fellowships225Meetings225Registrar's OfficeGeneral225Computerization of Academic Records225Statistics2 folders225Requests226Research2 folders226Research Excellence Fund2 folders226Retreats226SalaryGeneral2 folders226Faculty Merit Salary Program226Scholarships and Fellowships226Seminars, Conferences226Senate Advisory Committee on University Affairs (SACUA)226Senate Assembly226Shapiro, Harold, President2 folders226Smoking226Social Science226Space Equipment226Staff Records Office226Statenet227Strategic PlanningGeneral3 folders227Old Transparencies2 folders227StudentsMiscellaneous227Michigan Student Assembly227Substance Abuse227Sudarkasa, Niara (Affirmative Action)227Superconducting Super Collider227Surveys227Swain, Mary Ann (Associate Vice President for Academic Affairs)227Telecommunications227Tenure227Transportation227Tuition and Fees227University of Michigan News Stories227University of Michigan Press227Undergraduate Initiatives5 foldersFolders 1-2227Folders 3-5228University Cooperation228University Events228University Seminar228Visiting Foreign Scholars228Visits228Wilson, Linda (Vice President for Research)3 folders228Women228Zuidema, George (Vice Provost for Medical Affairs)228
    Schools and Colleges FilesArchitecture and Urban Planning, College ofGeneral228Appointments, Promotions, and Recruitment304Dean Search304Art, School of228Business Administration, School ofGeneral228Appointments, Promotions, and Recruitment305Budget Conference228Retreat228Dearborn Campus2 folders228Dentistry, School ofGeneral4 foldersFolders 1-2228Folders 3-4229Appointments, Promotions, and Recruitment305Budget Conference229Community Dental Center Audit305Dean Evaluation (faculty responses and Advisory Committee Report)305Faculty Evaluation305Education, School ofGeneral2 folders229Appointments, Promotions, and Recruitment305Budget Conference229Holmes Group229Engineering, College ofGeneral5 folders229Appointments, Promotions, and Recruitment2 folders305Budget Conference229Electrical Engineering and Computer Science229Flint Campus229Graduate Studies, Rackham School ofGeneral2 folders229Budget Conference229Information and Library Science, School ofGeneral2 folders229Budget Conference229Law SchoolGeneral2 folders229Appointments, Promotions, and Recruitment305Budget Conference230Complaints and Grievances (faculty/staff)2 folders305Literature, Science and the Arts, College ofGeneral2 folders305Blue Ribbon Commission305Budget Conference305Centers305Collegiate Institute for Values and Science (CIVS)305DepartmentsBiological Sciences305Biophysics305ChemistryGeneral2 folders305Chair Search305Classical Studies230General230Appointments, Promotions, and Recruitment305CommunicationsGeneral230Appointments, Promotions, and Recruitment305EconomicsGeneral230Appointments, Promotions, and Recruitment305EnglishGeneral230Appointments, Promotions, and Recruitment230Geological Sciences230HistoryGeneral230Appointments, Promotions, and Recruitment305History of ArtAppointments, Promotions, and Recruitment305Linguistics, GeneralAppointments, Promotions, and Recruitment305Mathematics, GeneralAppointments, Promotions, and Recruitment305Philosophy305PhysicsGeneral305Appointments, Promotions, and Recruitment305Search2 folders305Political ScienceGeneral230Misconduct230PsychologyGeneral231Appointments, Promotions, and Recruitment305Religious Studies231Sociology231Miscellaneous DepartmentsGeneral231Appointments, Promotions, and Recruitment305Medical SchoolGeneral2 folders231Appointments, Promotions, and Recruitment4 folders306Biomedical Research306Budget2 folders231Enrollment231Howard Hughes Institute231Inteflex231Medical/LSA Implementation Committee231Medical School Clinical Track231Misconduct306Taubman Library231Westland Medical Center231Music, School ofGeneral2 folders231Appointments, Promotions, and Recruitment306Budget Conference231Retreat231Natural Resources, School ofGeneral2 folders231Budget Conference231Nursing, School ofGeneral231Appointments, Promotions, and Recruitment306Budget Conference231Pharmacy, College ofGeneral2 folders232Appointments, Promotions, and Recruitment306Budget232Physical Education, Division of232Public Health, School ofGeneral3 folders232Appointments, Promotions, and Recruitment306Budget232Social Work, School ofGeneral232Appointments, Promotions, and Recruitment306Budget232Chronological Files4 foldersJuly-October 19862332 foldersNovember-December, 1986234January, 19872344 foldersFebruary-April, 1987235May-June3 folders1987236
    1987-1988Alphabetical FilesAcademic Affairs Advisory Committee (aaac)237Academic Affairs Advisory Council (AAAC)5 folders237Academic Affairs Brown Bag Meetings237Academic Affairs OfficeGeneral237Appointment306Academic Policy Group4 folders237Academic Planning and Analysis, Office of237Academic Services Board237Accreditation237Admissions, Office ofGeneral3 folders237Director Search2 folders306Enrollment2 folders306Recruitment Programs238Sjogren, Cliff306Affirmative Action Office238General238Director Search306Alumni Association238General238Black Alumni Leadership Advisory Committee238American Institutions Program238Ann Arbor Area2000238Association of American Universities (AAU)238Audits, Internal238Awards238Biophysics Research Division238BudgetGeneral3 folders1987/88238Budget Priorities Committee2 folders238Capital Outlay238Committee on Budget Administration238Five-Year Budget Reduction Plan238Indirect Cost238Presentation to Regents238State Budget Requests1987/882383 folders1988/89Folders 1-2238Folder 32391989/90239Business and Industry239Calendar, University239Celebration1987239CentersGeneral239Afroamerican and African Studies (CAAS)239Continuing Education for Women (CEW)General239Director Search306Educational Improvement Through Collaboration239Human Growth and Development (CHGD)General239Appointments306Molecular Genetics239Public Affairs239Research on Learning and Teaching (CRLT)239Commencement (J. Shortt)239CommitteesGeneral239Committee on Economic Status of Faculty (CESF)239Committee on Institutional Cooperation (CIC)2 folders239Communications239Communications Task Force239ComputingGeneral239Computing Center239Counsel, UniversityGeneral239Search306Development OfficeGeneral2 folders240Campaign for Michigan240Campaign Policy Committee240Corporate Relations240Developmental and Reproductive Biology240Distinguished University Professorships240Division of Research Development and Administration (DRDA)General240Director Search306Duderstadt, James240Personal240Speeches240Energy Studies Program240Executive OfficersGeneral240Meetings7 foldersJanuary-July, 198824010 foldersJuly-December, 1987241Retreat241Extension Service241FacultyGeneral241Promotions306Finance241Travel241Vice President for Business and FinanceGeneral241VP Search306Financial Aid241Foundations2 folders241Gifts241GovernmentFederal242State242Vice President for Government Relations242Government/University/Industry Research Roundtable242Graduate Student AssistantsGeneral2 folders242Letters Protesting New Tax Law (includes student financial information)306Higher Education242Honorary Degrees242Housing Office242Information Technology242InstitutesGeneral242GerontologyGeneral242Appointments306Humanities242Public Policy Studies242Science and Technology242Social Research242Integrated Technology Instruction Center242Intellectual Properties242Intercollegiate AthleticsGeneral242Athletic Director307International Center306International Relations and Studies242K-12/University Collaboration242LibrariesGeneral242Bentley Historical Library242Clements Library242University LibraryGeneral242Appointments and Promotions307Director Search307Medical CenterGeneral2 folders242Appointments and Promotions307HospitalGeneral307Appointments and Grievance307Meetings307Memberships, University307Michigan MediaGeneral307Reductions in Force307Michigan Information Technology Network243Michigan Journalism Fellowships Program243The Michigan Plan243Michigan Research Corporation243Michigan Society of Fellows243Michigan State Univ./UM Cooperation243Middle English Dictionary243MinoritiesGeneral3 folders243Comprehensive Studies Program/Opportunity Program243Diversity243Diversity Retreat243Faculty307King/Chavez/Parks Visiting Professor Program243Martin Luther King, Jr. Events243Minority Initiatives243Peter O. Steiner Incident243Presidential Advisory Commission243Racism (includes audiocassette tape)243Responses to Duderstadt's Open Letters to University Community243Six Point Plan243Minority Affairs, Office ofGeneral243Advisory Committee243Miscellaneous243MuseumsArtGeneral244Complaint307Exhibit244Kelsey244National Association of State Universities and Land Grant Colleges (NASULGC)244National Science Board244National Science Foundation (NSF)244News and Information Services244Parking244Peace and Security Research Studies, Program in International244Peer Institutions244PersonnelGeneral244Deans, Directors, Chancellors244Dual CareersGeneral244Recruitment307FacultyGeneral244Appointments, Complaints and Grievances244Schools, Colleges, Institutes and Libraries (SCIL) Advisory Group244Staff Appointments, Grievances and Reductions in Force307Phoenix Memorial Laboratory244Plant244Plant Extension244President, Office of theGeneral244Memorial Book for Shapiro Project (letters of tribute)244Presidential Search Process244Presidents' Council of State Colleges and Universities244Presidential Initiatives Fund (Kellogg)244Professorships and Chairs, Endowed244Protests by Students (re: policy)244Provost Search Recommendations307Public Service3 folders244RegentsGeneral245Communications2 folders245Registrar, Office of theGeneral245Computerized Academic Record Project245Statistics245Requests245ResearchGeneral245Research Excellence Fund245Research Incentive Program245Undergraduate245Vice President for Research245Reserve Officers Training Corps (ROTC)245Retreats245Salary245Scholarships and Fellowships245Science and Technology Centers245Science Development Council245Senate Advisory Committee on University Affairs (SACUA)245Senate Assembly245Social Science Departments245Staff Benefits245Strategic Planning3 folders245Student ServicesGeneral245Disabled245Vice President for Student Services245StudentsGeneral245Code245Grievances307

    [Student records restricted until July 01, 2073]

    Michigan Student Assembly (MSA)245Residency Issues (includes 1987 report)246
    Substance Abuse246Superconducting Super Collider246Telecommunications246Tuition and Fees246Undergraduate Experience246Undergraduate Initiatives Proposals246University PressGeneral246Director Search307University Research Initiative246Visitor Center246Women246
    Schools and CollegesArchitecture and Urban Planning, College ofGeneral2 folders246Appointments and Grievance (faculty/staff)307Budget246Art, School ofGeneral246Appointments and Promotions307Budget246Business Administration, School ofGeneral246Appointments and Promotions307Budget246Dearborn CampusGeneral246Appointments, Promotions and Grievance (faculty/staff)307Chancellor Search307Dentistry, School ofGeneral247Appointments and Promotions2 folders307Budget247Complaints307Dental Hygiene Program Discontinuance307Progress Report307Education, School ofGeneral307Appointments, Promotions and Complaints (faculty/staff)307Budget247Engineering, College ofGeneral2 folders247Appointments and Promotions2 folders307Budget247Flint CampusGeneral247Appointments and Promotions307Graduate Studies, Rackham School ofGeneral247Appointments307Budget247Information and Library Studies, School ofGeneral247Appointments307Budget247Law SchoolGeneral247Appointments and Promotions308Budget247Literature, Science and the Arts, College ofGeneral247Appointments and Promotions3 folders308Budget247CentersGeneral247Appointments/Complaint308Center for Research on Economic Development (CRED)247Population Studies Center247Collegiate Institute for Values and Science (CIVS)247DepartmentsAnthropologyGeneral247Recruitment308Astronomy308Biological SciencesGeneral308Appointments and Recruitment308Biophysics247ChemistryGeneral247Appointments and Recruitment308Classical Studies247General247Recruitment308CommunicationsGeneral247Appointments and Recruitment308EconomicsGeneral308Appointments and Promotions308English Language and LiteratureGeneral248Appointments and Recruitment308Geological SciencesGeneral248Appointments and Recruitment308Germanic Languages and LiteratureGeneral248Appointments and Promotions308HistoryGeneral248Appointments and Recruitment308History of ArtGeneral248Appointments and Promotions308MathematicsGeneral248Appointments and Recruitment308Near Eastern StudiesRecruitment308PhilosophyGeneral248Appointments308Physics308Political Science248General248Appointments and Complaints (faculty/staff)308PsychologyGeneral248Appointments and Recruitment308Religious Studies248Residential CollegeGeneral248Appointments308Romance LanguagesGeneral248Appointments308SociologyGeneral248Appointments and Recruitment308Statistics248Miscellaneous DepartmentsGeneral248Appointments, Promotions, Recruitment, and Complaints (faculty/staff)308Medical SchoolGeneral248Appointments, Promotions, Grievance, and Complaints (faculty/staff)3 folders308Budget248Clinical Track Appointments248Enrollment248Research Misconduct308Music, School ofGeneral308Appointments, Promotions, and Complaints (faculty/staff)308Budget248Natural Resources, School ofGeneral248Appointments308Budget248Nursing, School ofGeneral248Appointments, Promotions, Complaints/Grievance309Budget248Pharmacy, College ofGeneral248Appointments309Budget248Physical Education, Division ofGeneral248Appointments and Review309Public Health, School ofGeneral248Appointments and Promotions248Budget248Social Work, School ofGeneral248Appointments309Budget248Chronological Files1987July-September4 folders249October-December4 folders2501988251January-February4 folders251March-April4 folders252May-June3 folders253
    1988-1989Alphabetical FilesAcademic Affairs Advisory Committee (aaac)254Academic Affairs Advisory Council (AAAC)5 folders254Academic Affairs OfficeGeneral254Intern Search309

    [Personnel records restricted until July 01, 2019]

    Academic Policy Group3 folders254Academic Planning and Analysis, Office of254Academic Services Board254Academic Service Units (R. Holmes)254Accreditation254Admissions, Office ofGeneral254Enrollment/Residency254Recruitment Programs254Affirmative Action OfficeGeneral255Director Search (materials about)255Faculty/Staff Policy on Harassment and Discrimination255Student Policy on Harassment and Discrimination255Articles of Interest255Association of American Universities (AAU)255Audits255AwardsGeneral255Michigan Association of Governing Boards (MAGB)Faculty Nominations309

    [Personnel records restricted until July 01, 2019]

    Student Nominations309

    [Student records restricted until July 1, 2074]

    Budget254General2 folders1988/892542 folders1989/90254Budget Priorities Committee3 folders254Capital Outlay254Committee on Budget Administration2 folders254Indirect Cost254State Budget Request2 folders1989/902561990/91256Year-end256Business and Industry256Calendar, University (includes Diversity Day)256Campus Safety256Capital Campaign Planning256CentersGeneral256Afroamerican and African Studies (CAAS)General256Appointments and Promotions309

    [Personnel records restricted until July 01, 2019]

    Continuing Education for Women (CEW)256Human Growth and Development (CHGD)256Research on Learning and Teaching (CRLT)256Macromolecular Research Center256
    Commencement256Committee on Economic Status of Faculty (CESF)256Committee on Institutional Cooperation (CIC)256Communications256Computers256Cost of Higher Education256Counsel, University256Development2 folders256Developmental and Reproductive Biology256Distinguished University Professorships256Duderstadt, James J256Ethics (academics and research)256Evolution and Human Behavior Program256Executive Officers' Meetings5 folders257Extension Service257FacultyGeneral257Promotions309

    [Personnel records restricted until July 01, 2019]

    Finance, Vice PresidentGeneral257Director of Business Operations Search309

    [Personnel records restricted until July 01, 2019]

    Financial Aid, Office of257Foundations257Gifts, Endowments, etc257GovernmentFederal257StateGeneral257Senate Higher Education Subcommittee257Vice President for Government Relations257Government/University/Industry257Graduate Student Assistants (GSA/GEO)General257General Counsel Communications re: Tuition Waiver309

    [Patient/client records restricted until July 1, 2089]

    Honorary Degrees257Housing OfficeGeneral257Housing Task Force257Solid Waste Management Task Force257Human Relations Area Files257Information Technology2 folders257InstitutesGeneral257Gerontology (IOG)257HumanitiesGeneral257Recruitment309

    [Personnel records restricted until July 01, 2019]

    Labor and Industrial Relations (ILIR)257Public Policy Studies (IPPS)257Science and Technology (IST)257Social Research (ISR)General257Director Search309

    [Personnel records restricted until July 01, 2019]

    Integrated Technology Instruction Center (ITIC)General258Interim Report on Progress258Intellectual Properties Office258Intercollegiate Athletics258International Affairs, Associate VPAA forGeneral258Search309

    [Personnel records restricted until July 01, 2019]

    Exchange Programs258International Studies Advisory (Steering) Committee258International Studies at UM258Jackson, John H258Long Range Planning MeetingFebruary 1989258
    K-12/UM Collaboration258LibrariesGeneral258Bentley258Clements258UniversityGeneral258Appointments309

    [Personnel records restricted until July 01, 2019]

    Medical Affairs, Vice Provost for258Medical CenterGeneral258Hospitals258Retreat258Memberships258Michigan Education Trust (MET)258Michigan Information Technology Network (MITN)258Michigan Media258Michigan Mandate (Michigan Plan)258MinoritiesGeneral259Comprehensive Studies Program/Opportunity Program259Diversity259Diversity Day (MLK Day)259

    (see also Calendar, University)

    Enrollment259Ethnic Studies259FacultyGeneral259Appointments, Promotions and Recruitment (faculty and staff)309

    [Personnel records restricted until July 01, 2019]

    King/Chavez/Parks Program259Racism259
    Minority Affairs, Vice Provost for and Office ofGeneral259Director Search309

    [Personnel records restricted until July 01, 2019]

    Miscellaneous259Museum, Art259NASA's Mission to Planet Earth Initiative259National Association of State Universities and Land Grant Colleges (NASULGC)259National Science Foundation (NSF)259Neurosciences Program, Review259News and Information Services259North Campus259Parking259PersonnelGeneral259Dual Careers259Faculty259Grievances309

    [Personnel records restricted until July 01, 2019]

    SCIL (Schools, Colleges, Institutes, and Libraries) Advisory Group309
    Plant309Plant ExtensionGeneral2 folders309General Counsel Communications309

    [Patient/client records restricted until July 1, 2089]

    President, Office ofGeneral259Inauguration259Presidential Initiatives Fund259Presidents' Council259Professorships, Chairs, Endowed260Provost and Vice President for Academic AffairsGeneral260Search309

    [Personnel records restricted until July 01, 2019]

    Public Service260Radioactive Waste Site260Recreational Sports260RegentsGeneral260Communications3 folders260Registrar's OfficeGeneral260Computerization of Academic Records Project260Reports (2) on Student Residency1987260Statistics260Requests260ResearchGeneral260Vice President2 folders260Research Excellence Fund260Reserve Officer Training Corps (ROTC)260Retreats260Salary260Scholarships and Fellowships260Science Development Council260Science and Technology260Security, Campus261Senate Advisory Committee on University Affairs (SACUA)261Social Sciences261Staff BenefitsGeneral261General Counsel Communications309

    [Patient/client records restricted until July 1, 2089]

    Report on the Feasibility of Flexible Benefits at UM261
    State Strategy Group261StudentsGeneral261Code261DisabledGeneral261Complaints309

    [Student records restricted until July 01, 2074]

    General Counsel Communications (re: note takers for deaf students)309

    [Student records restricted until July 01, 2099]

    Michigan Student Assembly (MSA)261
    Student ServicesGeneral261Vice President261Substance Abuse261Superconducting Super Collider261Surveys261Tuition and Fees261Undergraduate Experience261Undergraduate Initiatives Fund1987/882611988/89261University Council261University Press261Visits261Women261
    Schools and CollegesArchitecture and Urban Planning, College ofGeneral261Accreditation/Strategic Planning Materials2 folders261Appointments, Promotions, and Recruitment309

    [Personnel records restricted until July 01, 2019]

    Budget261
    Art, School ofGeneral262Promotions309

    [Personnel records restricted until July 01, 2019]

    Business Administration, School ofGeneral262Appointments309

    [Personnel records restricted until July 01, 2019]

    Budget262
    Dearborn CampusGeneral262Appointments, Promotions and Complaints309

    [Personnel records restricted until July 01, 2019]

    Dentistry, School ofGeneral262Appointments, Complaint, and Recruitment309

    [Personnel records restricted until July 01, 2019]

    Budget262Complaint262

    [Personnel records restricted until July 01, 2019]

    Education, School ofGeneral309Appointments, Promotions, and Recruitment309

    [Personnel records restricted until July 01, 2019]

    Budget262
    Engineering, College ofGeneral3 folders262Aerospace Building262Appointments, Complaints, Promotions, and Recruitment3 folders310

    [Personnel records restricted until July 01, 2019]

    Budget262General Counsel Communications310

    [Student records restricted until July 01, 2099]

    Select Student Services Support Reports2 volumes310
    Flint Campus310Graduate Studies, Rackham School ofGeneral310Budget310Grievance310

    [Personnel records restricted until July 01, 2019]

    Information and Library Studies, School of262General262Appointments and Recruitment310

    [Personnel records restricted until July 01, 2019]

    Law SchoolGeneral310Appointments310

    [Personnel records restricted until July 01, 2019]

    Budget262
    Literature, Science and the Arts, College ofGeneral263Appointments and Recruitment5 folders310

    [Personnel records restricted until July 01, 2019]

    Budget262CentersGeneral262Chinese Studies262Research on Economic Development262DepartmentsAnthropologyGeneral262Appointments310

    [Personnel records restricted until July 01, 2019]

    Astronomy263Biological Sciences263Biophysics263ChemistryGeneral263Recruitment and Chair Search310

    [Personnel records restricted until July 01, 2019]

    Communication (formerly Journalism)263EconomicsGeneral263Appointments310

    [Personnel records restricted until July 01, 2019]

    English263General263Appointments and Recruitment310

    [Personnel records restricted until July 01, 2019]

    Geological Sciences262HistoryGeneral262Appointments and Recruitment310

    [Personnel records restricted until July 01, 2019]

    History of Art263Humanities263Judaic Studies263LinguisticsGeneral263Recruitment310

    [Personnel records restricted until July 01, 2019]

    MathematicsGeneral310Appointments and Recruitment310

    [Personnel records restricted until July 01, 2019]

    Near Eastern Studies263PhilosophyGeneral263Appointment and Grievance (faculty/staff)310

    [Personnel records restricted until July 01, 2019]

    PhysicsGeneral263Faculty Evaluations and Recruitment310

    [Personnel records restricted until July 01, 2019]

    Political ScienceGeneral263Grievance310

    [Personnel records restricted until July 01, 2019]

    PsychologyGeneral310Appointments310

    [Personnel records restricted until July 01, 2019]

    Religious Studies263Residential CollegeGeneral263Director Search310

    [Personnel records restricted until July 01, 2019]

    Romance Languages263Slavic Languages and Literature263SociologyGeneral263Appointments and Recruitment310

    [Personnel records restricted until July 01, 2019]

    Miscellaneous Departments263
    Medical SchoolGeneral263Appointments and PromotionsGeneral3 folders311

    [Personnel records restricted until July 01, 2019]

    Unresolved Requests for Appointments and Promotions1 volume311

    [Personnel records restricted until July 01, 2019]

    Biotechnology (includes retreat)263Budget263Clinical Track Faculty, Review Committee on263Grievance311

    [Personnel records restricted until July 01, 2019]

    Inteflex Program Information Packet263Internal Medicine, Department of, External Review263Research Misconduct311

    [Personnel records restricted until July 01, 2019]

    Music, School ofGeneral263Appointments311

    [Personnel records restricted until July 01, 2019]

    Budget263
    Natural Resources, School ofGeneral264Budget264Recruitment311

    [Personnel records restricted until July 01, 2019]

    Nursing, School ofGeneral264Appointments and Grievance (faculty/staff)311

    [Personnel records restricted until July 01, 2019]

    Budget264Faculty Curriculum VitaeAssistant Professors, Instructors, and Some Lecturers264Associate Professors264Professors264Review (one volume)264
    Pharmacy, College ofGeneral264Budget264Evaluation, External (background materials only)2 folders264Pharmacy Services Study264Recruitment264

    [Personnel records restricted until July 01, 2019]

    Strategic Planning Retreat1987264
    Physical Education, Division of264Public Health, School ofGeneral264Budget264Recruitment311

    [Personnel records restricted until July 01, 2019]

    Social Work, School of311
    Chronological Files2641988July-October4 folders265November-December2 folders2661989January-February2 folders266March-June4 folders267
    1989-1990Alphabetical FilesAcademic Affairs Advisory Committee (aaac)268Academic Affairs Advisory Council (AAAC)3 folders268Academic Affairs OfficeGeneral268Associate Vice President Search268Academic Planning and Analysis, Office of268Academic Policy Group2 folders268Academic Services Board (ASB)General268Resources and Contacts1 volume268Academic Service Units (Robert Holmes)268Accreditation268Admissions, Office of2 folders268Affirmative Action Office268Alumni Association268Articles of Interest268Association of American Universities (AAU)268Audits, InternalGeneral268Special Investigations311

    [Personnel records restricted until July 01, 2020]

    AwardsGeneral268Henry Russel Nomination311

    [Personnel records restricted until July 01, 2020]

    Michigan Association of Governing Boards (MAGB)268Faculty Nominations311

    [Personnel records restricted until July 01, 2020]

    Student Nominations311

    [Student records restricted until July 1, 2075]

    BudgetGeneral2 folders1989/902691990/91269Budget History (a series of University Recordarticles chronicling budget cuts in early 1980s)269Budget Meeting269Budget Presentations269Budget Priorities Committee2 folders269Capital Outlay269Committee on Budget Administration (CBA)2 folders269Flexible Funds269Indirect Cost269Reallocation269State Budget Requests1989/902692 folders1990/91269Business and Industry270Calendar, University270Campus SafetyGeneral270University Task Force on Campus Safety and Security"Perceptions of Safety and Security at the University of Michigan" (Institute for Social Research)6 volumes270CentersGeneral270Afroamerican and African Studies (CAAS)270Chinese Studies270Continuing Education for Women (CEW)270Historical Center for Health Sciences (HCHS)270Macromolecular Research270Molecular Genetics270Population Studies270Research on Economic Development (CRED)270Research on Learning and Teaching (CRLT)270Child Care270Commencement270Commission on Minority Student Recruitment and Graduation270CommitteesCommittee on Economic Status of Faculty (CESF)270Committee on Institutional Cooperation (CIC)2 folders270Committee on the Teaching of Ethics and Values (CTEV)270Committee on Undergraduate Education270Communications270Community College Advisory Council270Comprehensive Studies Program (CSP)General270Structure/Leadership311

    [Personnel records restricted until July 01, 2020]

    Computing271Consortium for International Earth Science Information Network (CIESIN)271Counsel, UniversityGeneral271Communications311

    [Student records restricted until July 01, 2100]

    Indemnification Policy271
    Detroit Public Schools271Detroit Rackham Building271DevelopmentGeneral3 folders271Campaign for Michigan271Corporate Relations271Development Policy Committee271Fundraising271Discrimination, Policy on271Distinguished University Professorships271Diversity271Division of Research Development and Administration (DRDA)271Earth Day1990271Energy Studies Program271Ethics271Evolution and Human Behavior Program271Executive Committee271Executive Computing Committee271Extension Service271FacultyGeneral271Promotions2 folders311

    [Personnel records restricted until July 01, 2020]

    Faculty and Staff Assistance Program (FASAP)271Finance (Vice President and Chief Financial Officer)271Financial Aid, Office ofGeneral271Budget271Fleming Building271Ford Motor Company271Foundations271Gifts, Endowments, etc271Global Change271GovernmentFederal272State272Vice President for Government Relations272Government Relations272Graduate Student AssistantsGeneral272General Counsel311

    [Patient/client records restricted until July 1, 2100]

    Grievance Procedures and Grievance Review Board272Grievances311

    [Personnel records restricted until July 01, 2020]

    Higher EducationGeneral272Cost of Higher Education Task Force2 folders272House Appropriations Higher Education Subcommittee272Honorary DegreesGeneral272Nominations272Housing OfficeGeneral272Housing Task Force272Human Relations Area Files, Inc272Information TechnologyGeneral272Budget272Educom272Executive Information System272Vice Provost for Information Technology272InstitutesGeneral272Gerontology (IOG)272Humanities272Labor and Industrial Relations (ILIR)272Public Policy Studies (IPPS)272General273Appointments311

    [Personnel records restricted until July 01, 2020]

    Science and Technology (IST)273Social Research (ISR)General273Director Search311

    [Personnel records restricted until July 01, 2020]

    Integrated Technology Instruction Center (ITIC)273Intellectual Properties Office273Intelligent Vehicle-Highway Systems273Intercollegiate AthleticsGeneral273Student Athlete Conduct311

    [Student records restricted until July 01, 2075]

    International AffairsGeneral2 folders273Committee on International Studies273International Studies Advisory Council273Leadership273

    [Personnel records restricted until July 01, 2020]

    "A Michigan Vision: International Studies at the University of Michigan," Report273Vice President273
    Investments273JobNet273K-12 / UM Collaboration273LibrariesGeneral273Bentley273Clements273UniversityGeneral273Budget273Director Search311

    [Personnel records restricted until July 01, 2020]

    Management Incentives, Task Force on273Marygrove College273Medical Affairs, Vice Provost forGeneral273Appointments/Recruitment312

    [Personnel records restricted until July 01, 2020]

    Medical CenterGeneral312Appointments/Recruitment312

    [Personnel records restricted until July 01, 2020]

    Financial Agreements273Hospital273
    Memberships273Michigan at the Crossroads273Michigan Education Trust (MET)273Michigan Information Technology Network (MITN)274Michigan MandateGeneral274Retreat Planning274Michigan Partnership for New Education274Michigan Society of Fellows274MinoritiesGeneral274Enrollment274Faculty274King/Chavez/Parks Program274Martin Luther King Jr. Day274Presidential Advisory Commission on Minority Affairs (PACMA)274Racism274Retention274Minority Affairs, Office ofGeneral274Budget274Vice Provost for Minority Affairs274Museums (UM)General274Art274Musical Society, University (UMS)274National Aeronautics and Space Administration (NASA)274National Association of State Universities and Land-Grant Colleges (NASULGC)274National Science Foundation (NSF)274Neurosciences Program274News and Information Services274North Campus274Obscene Mail (anonymous and unsolicited letters to administration)274Parking274Peer Institutions275PersonnelGeneral275Deans, Directors, Chancellors275Dual CareersGeneral275Recruitment312

    [Personnel records restricted until July 01, 2020]

    Faculty275FTE (Full Time Equivalent) Report, Fall1989275
    Plant Extension275President's Advisory Commission on Women's Issues275President's Council (UM)275Presidents' Council of the State Universities of Michigan275President's Office275Presidential Initiatives Fund275Professorships, Chairs, Endowed275Protein Structure and Design Program/ Biophysics Research Division Strategic Retreat1 folder, 2 volumes275Public Service275Recreational Sports275RegentsGeneral275Communications2 folders275Registrar's OfficeGeneral275Computerization of Academic Records Project1 folder, 6 volumes275Statistics275ResearchGeneral276Research/Rackham Merger1984276Vice PresidentGeneral2 folders276Budget276Search312

    [Personnel records restricted until July 01, 2020]

    Research Excellence Fund1 folder, 1 volume276Reserve Officer Training Corps (ROTC)276Residency276Retirement, Mandatory276Retreats276SalaryGeneral276Salary Equity StudyGeneral276Unit Responses (contains detailed staff salary histories)312

    [Personnel records restricted until July 01, 2020]

    Salary Requests and Recommendations312

    [Personnel records restricted until July 01, 2020]

    Scholarships and Fellowships276General276Nominations312

    [Personnel records restricted until July 01, 2020]

    Science and Technology276Science Development Council276Senate Advisory Committee on University Affairs (SACUA)276Senate Assembly276Snapshots, Faculty (faculty statistics)276Social Sciences276Staff Benefits276State Strategy Group276Strategic Retreat Summaries276StudentsGeneral276General Counsel Communications (re: Hash Bash, Statement of Rights and Responsibilities, and MSA Elections)312

    [Patient/client records restricted until July 1, 2100]

    Michigan Student Assembly (MSA)276
    Student ServicesGeneral277Strategic Retreat277Vice President277Substance Abuse277Surveys277Sympathy Letters277Taiwan Proposal277Target of Opportunity (TOO)312

    [Personnel records restricted until July 01, 2020]

    Taubman (Alfred A.) Symposium on Campus Planning2 folders277TenureGeneral277General Counsel312

    [Patient/client records restricted until July 1, 2100]

    Total Quality277Tuition and Fees277Undergraduate Experience277Undergraduate Initiatives Fund277University Council277University Events277Vest, Charles V. (Provost)277Washington, D.C. Residential Study Center277Wayne State University277Women277
    Schools and Colleges FilesArchitecture and Urban Planning, College ofGeneral278Appointments, Promotions, and Recruitment312

    [Personnel records restricted until July 01, 2020]

    Budget278Ph.D. Withdrawal312

    [Student records restricted until July 1, 2075]

    Art, School ofGeneral278Appointments, Promotions and Recruitment312

    [Personnel records restricted until July 01, 2020]

    Budget278
    Business Administration, School ofGeneral278Appointments, Promotions and Recruitment312

    [Personnel records restricted until July 01, 2020]

    Budget278
    Dearborn Campus278Dentistry, School ofGeneral278Appointments, Promotions and Recruitment312

    [Personnel records restricted until July 01, 2020]

    Budget278Dean Search312

    [Personnel records restricted until July 01, 2020]

    Report: The Transition Process278
    Education, School ofGeneral278Appointments, Promotions312

    [Personnel records restricted until July 01, 2020]

    Budget278Educational Studies Program, Chair Search312

    [Personnel records restricted until July 01, 2020]

    Engineering, College ofGeneral3 folders278Aerospace Building278Appointments, Promotions and Recruitment3 folders312

    [Personnel records restricted until July 01, 2020]

    Budget278Complaints and Grievances (faculty/staff)2 folders312

    [Personnel records restricted until July 01, 2020]

    Dean Search312

    [Personnel records restricted until July 01, 2020]

    Electrical Engineering and Computer Science Department279Misuse of Funds312

    [Personnel records restricted until July 01, 2020]

    NSF Site Visit279Flint Campus279
    Graduate Studies, Rackham School ofGeneral279Budget279Dean Evaluation313

    [Personnel records restricted until July 01, 2020]

    Recruitment313

    [Personnel records restricted until July 01, 2020]

    Information and Library Studies, School of279General279Appointments/Recruitment313

    [Personnel records restricted until July 01, 2020]

    Budget279Self Study Report2 volumes279
    Law SchoolGeneral279Appointments, Promotions and Recruitment313

    [Personnel records restricted until July 01, 2020]

    Budget279
    Library, UniversityGeneral279Budget279Literature, Science and the Arts, College ofGeneral279Appointments, Promotions and Recruitment6 folders313

    [Personnel records restricted until July 01, 2020]

    Budget2 folders279DepartmentsGeneralGeneral279Appointments, Promotions and Recruitment313

    [Personnel records restricted until July 01, 2020]

    Complaints and GrievancesFaculty and Staff313

    [Personnel records restricted until July 01, 2020]

    Students313

    [Personnel records restricted until July 01, 2020]

    Anthropology279Astronomy279Biology279Biophysics279ChemistryGeneral279Building Dedication279Classical Studies279Communications279Economics279EnglishGeological Sciences279Germanic Languages and Literature279History279History of Art279Humanities279Judaic Studies279Linguistics279Mathematics279Near Eastern Studies279Philosophy279PhysicsGeneral279Science/Technology Center Proposal279Political Science280Psychology280Religious Studies280Romance Languages280Slavic Languages and Literature280Sociology280Statistics280
    Medical SchoolGeneral2 folders280Appointments, Promotions and Recruitment4 folders313

    [Personnel records restricted until July 01, 2020]

    Appointments, Promotions and Recruitment4 folders314

    [Personnel records restricted until July 01, 2020]

    (continued)

    Biomedical Research280Biophysics Research Division (BRD)General280Appointments and Recruitment314

    [Personnel records restricted until July 01, 2020]

    Budget280Clinical Track Faculty280Complaints314

    [Personnel records restricted until July 01, 2020]

    Dean Search314

    [Personnel records restricted until July 01, 2020]

    Enrollment280Inteflex Program280Orientation Agendas (for meetings with Provost)280
    Music, School ofGeneral280Appointments, Promotions and Recruitment314

    [Personnel records restricted until July 01, 2020]

    Budget280
    Natural Resources, School ofGeneral280Appointments, Promotions, and Recruitment314

    [Personnel records restricted until July 01, 2020]

    Budget280Landscape Architecture Self-Evaluation Report1 volume280
    Nursing, School ofGeneral280Appointments, Promotions and Recruitment314

    [Personnel records restricted until July 01, 2020]

    Budget280
    Pharmacy, College ofGeneral280Appointments, Promotions and Recruitment314

    [Personnel records restricted until July 01, 2020]

    Budget280
    Physical Education, Division of280Public Health, School ofGeneral281Appointments, Promotions and Recruitment314

    [Personnel records restricted until July 01, 2020]

    Budget281
    Social Work, School ofGeneral281Appointments, Promotions and Recruitment314

    [Personnel records restricted until July 01, 2020]

    Budget281Building281
    Unit Budgets FilesAcademic Planning and Analysis, Office of281Academic Program Funds281Academic Service Units (R. Holmes)281Equipment and Rehabilitation281President, Office of281Recreational Sports281SACUA281Swain, Mary Ann, Associate Vice President, Units ofGeneral281Bentley Historical Library281CentersEducation of Women281Human Growth and Development281Research on Learning and Teaching281Clements Library281Communicative Disorders Clinic281Developmental and Reproductive Biology281Extension Service281InstitutesGerontology281Labor and Industrial Relations281Public Policy Studies281Museum of Art281Physical Education, Division of281Teaching and Research Personnel281Vice PresidentsAcademic Affairs281Business and Finance281Development281Government Relations281Research281Student Services281Vice ProvostsInformation Technology281Minority Affairs281Chronological Files1989July-December6 folders2821990January-June6 folders282
    1990-1991Alphabetical FilesAcademic Affairs Advisory Committee (aaac)283Academic Affairs Advisory Council (AAAC)283Academic Affairs Office283Academic Planning and Analysis, Office of283Academic Program Group (APG)General283Subcommittee on Development2 folders283Academic Services Board (ASB)283Accreditation283Admissions, Office ofGeneral283Enrollment Study283Affirmative Action Office283Alumni Association283American Council on Education (ACE)283Articles of Interest283Association of American Universities (AAU)283Athletics283Audits, InternalGeneral283Special Investigations314

    [Personnel records restricted until July 01, 2021]

    Awards283General283Henry Russel Lecturer283Michigan Association of Governing Boards (MAGB)Student Nominations2 folders314

    [Student records restricted until July 1, 2076]

    National Medal of Technology Nomination314

    [Personnel records restricted until July 01, 2021]

    BudgetGeneral1990/912841991/92284Academic Program Group Budget Subcommittee284Budget Administration, Committee on284Budget Priorities Committee284Budget Reduction Plan284Higher Education Appropriations Bill284Indirect Cost Recovery284Reallocation284State Budget Requests1990/912841991/92284Business and Industry284Calendar, University284Campus SafetyGeneral284University Task Force on Campus Safety and Security284CentersGeneral284Afroamerican and African Studies (CAAS)General284Appointments, Promotions and Recruitment314

    [Personnel records restricted until July 01, 2021]

    Chinese Studies284Continuing Education for Women (CEW)284Human Growth and Development (CHGD)284Macromolecular Research, Director Search314

    [Personnel records restricted until July 01, 2021]

    Population Studies284Research on Learning and Teaching (CRLT)284Washington Study Center284
    Child Care and Maternity Leave284Commencement284CommitteesCommittee on Economic Status of Faculty (CESF)284Committee on Institutional Cooperation (CIC)2 folders284Communications, Vice President for285Community Relations285Comprehensive Studies Program (CSP)General285Directorship314

    [Personnel records restricted until July 01, 2021]

    Computing285Conflict of Interest314

    [Personnel records restricted until July 01, 2021]

    Consortium for International Earth Science Information Network (CIESIN)285Detroit Rackham Building285DevelopmentGeneral285Capital Campaign3 folders285Corporate Relations285Foundation Fundraising Committee2 folders285Major Gifts Committee285Vice President for Development285Discrimination285Disruptions285Diversity285Division of Research Development and Administration (DRDA)285Economic Forecasting Group285Environment285Environmental Task Force285Ethics285Executive Committee2 folders285Extension Service286Faculty Promotions (RESTRICTED; moved to Box 314)1 volume286Finance (Vice President and Chief Financial Officer)286Financial Aid, Office of286Ford Motor Company286FoundationsGeneral286Cook286Ford286Hewlett286Kellogg286Futures Group286General CounselGeneral286Communications314

    [Patient/client records restricted until July 1, 2101]

    Indemnification Policy286Requests for Defense and Indemnification314

    [Student records restricted until July 01, 2101]

    Gifts, Endowments, etc286Global Change286GovernmentFederal286State286Vice President for Government Relations286Government Relations286Graduate Student Assistants/Graduate Employee Organization (GSA/GEO)General286General Counsel Communications314

    [Patient/client records restricted until July 1, 2102]

    Grievance Procedures314Grievances314

    [Personnel records restricted until July 01, 2021]

    Handicapped286Harassment PolicyGeneral286General Counsel Communicaton314

    [Patient/client records restricted until July 1, 2101]

    Higher Education286Honorary Degrees286Housing OfficeGeneral286Housing Task ForceGeneral286Final Report5 volumes286Indirect Cost286Information TechnologyGeneral286Budget286InstitutesHumanities287Industrial Technology (ITI)287Labor and Industrial Relations (ILIR)287Public Policy Studies (IPPS)287Science and Technology (IST)287Social Research (ISR)287Transportation Research (UMTRI)287International AffairsGeneral2 folders287University Council for International Academic Affairs (UCIAA)287Vice President287Journalism287K-12/UM Collaboration287LibrariesBentley287Ford287University287Loans, Bridging287Medical Affairs, Vice Provost for287Medical CenterGeneral287Budget287Hospital Briefing Agenda (for meeting with provost)287Memberships287Michigan Education Trust (MET)287Michigan MandateGeneral287Appointments314

    [Personnel records restricted until July 01, 2021]

    Michigan Partnership for New Education287MinoritiesGeneral287Commission on Student Recruitment and GraduationGeneral287Background Materials287Enrollment287Faculty287King/Chavez/Parks Program288Martin Luther King Jr. Day288Racism288Minority Affairs, Office ofBudget288Vice Provost for Minority Affairs288Miscellaneous288MITN (Michigan Information Technology Network)288Multicultural University, Council on a288Museums (UM)General288Art288Kelsey288National Aeronautics and Space Administration (NASA)288National Association of State Universities and Land-Grant Colleges (NASULGC)288National Science Foundation (NSF)288Neurosciences ProgramGeneral288Director Search314

    [Personnel records restricted until July 01, 2021]

    Review Committee Report288
    News and Information Services288North Campus288Ombudsman288Parking288Peer Institutions288Persian Gulf288PersonnelGeneral288Complaints (staff)314

    [Personnel records restricted until July 01, 2021]

    Dual Careers288Faculty288
    Plant Extension288President's Council (UM)288Presidents' Council of the State Universities of Michigan288President's Office288Presidential Initiatives Fund288PromotionsGeneral288Recommendations314

    [Personnel records restricted until July 01, 2021]

    Provost's Administrative Group (PAG)2 folders289Provost's Advisory Committee on Excellence (PACE)289Public Service289RegentsGeneral289Communications2 folders289Registrar's Office289Requests (for information on policies and procedures)289ResearchGeneral289Vice PresidentGeneral289Search314

    [Personnel records restricted until July 01, 2021]

    Reserve Officer Training Corps (ROTC)289Residency289Retirement, MandatoryGeneral289General Counsel Communications314

    [Personnel records restricted until July 01, 2021]

    Safety and Security Advisory Committee289SalaryGeneral289Salary Equity Study289Scholarships and Fellowships289Science and Technology289Science Development Council289Senate Advisory Committee on University Affairs (SACUA)290Senate Assembly290Staff Benefits290StudentsGeneral290Complaints314

    [Personnel records restricted until July 01, 2021]

    Michigan Student Assembly (MSA)290
    Student Services, Vice President for290Substance Abuse290Surveys290Target of Opportunity (TOO)General290Recruitment314

    [Personnel records restricted until July 01, 2021]

    Tenure290Total Quality290Tuition and Fees290Undergraduate Education290University Events290University of Michigan (general information)290University Relations290Women290Women's Issues, President's Advisory Commission on290
    Schools and Colleges FilesNon-budgetArchitecture and Urban Planning, College of290Art, School ofGeneral290Appointments, Promotions and Recruitment315

    [Personnel records restricted until July 01, 2021]

    Letters from Public regarding M. Jackson's Appointment Termination290
    Business Administration, School ofGeneral2 folders290Appointments, Promotions, and Recruitment315

    [Personnel records restricted until July 01, 2021]

    Dean Search315

    [Personnel records restricted until July 01, 2021]

    Dearborn CampusGeneral290Complaint315

    [Personnel records restricted until July 01, 2021]

    Dentistry, School ofGeneral291Appointments, Promotions and Recruitment315

    [Personnel records restricted until July 01, 2021]

    Grievances315

    [Personnel records restricted until July 01, 2021]

    Education, School ofGeneral315Appointments, Promotions and Recruitment315

    [Personnel records restricted until July 01, 2021]

    Engineering, College ofGeneral291Aerospace291Appointments, Promotions and Recruitment2 folders315

    [Personnel records restricted until July 01, 2021]

    Grievances315

    [Personnel records restricted until July 01, 2021]

    Solar Car291
    Flint Campus291Graduate Studies, Rackham School of291Information and Library Studies, School of291Kinesiology, Division of (formerly Division of Physical Education)291Law SchoolGeneral291Appointments, Promotions and Recruitment1 folder315

    [Personnel records restricted until July 01, 2021]

    Literature, Science and the Arts, College ofGeneral291Appointments, Promotions and Recruitment4 folders315

    [Personnel records restricted until July 01, 2021]

    DepartmentsGeneral291General291Appointments, Promotions and Recruitment316

    [Personnel records restricted until July 01, 2021]

    Complaints and Grievances (student)316

    [Personnel records restricted until July 01, 2021]

    Biology291Chemistry291Classical Studies291Communications291Economics291English291Geological Sciences291Germanic Languages and Literature291History291History of Art291Judaic Studies291Linguistics291Mathematics291Near Eastern Studies291Philosophy291Physics291Political Science291Psychology291Romance Languages291Slavic Languages and Literature291SociologyGeneral291SOC 102: Sociology of Love (discontinuance of)291
    Medical SchoolGeneral291Appointments, Promotions and Recruitment4 folders316

    [Personnel records restricted until July 01, 2021]

    Biomedical Research291Biophysics Research DivisionGeneral291Appointments and Recruitment316

    [Personnel records restricted until July 01, 2021]

    Briefing Materials (for meetings with Provost)291Clinical Track Faculty291Complaints and GrievancesFaculty/Staff316

    [Personnel records restricted until July 01, 2021]

    Students316

    [Personnel records restricted until July 01, 2021]

    Dean Search316

    [Personnel records restricted until July 01, 2021]

    Inteflex Program Information Packet291Regent's Communications291Unit for Laboratory Animal Medicine291
    Music, School ofGeneral292Appointments, Promotions and Recruitment316

    [Personnel records restricted until July 01, 2021]

    Complaints316

    [Personnel records restricted until July 01, 2021]

    Natural Resources, School ofGeneral2 folders292Appointments, Promotions and Recruitment316

    [Personnel records restricted until July 01, 2021]

    Dean Search316

    [Personnel records restricted until July 01, 2021]

    Nursing, School ofGeneral292Appointments, Promotions and Recruitment316

    [Personnel records restricted until July 01, 2021]

    Pharmacy, College of292Public Health, School ofGeneral292Appointments, Promotions and Recruitment316

    [Personnel records restricted until July 01, 2021]

    Social Work, School of316General292Appointments, Promotions and Recruitment316

    [Personnel records restricted until July 01, 2021]

    Budget Conferences292General Information292Summaries292Academic Affairs292Academic Planning and Analysis, Office of292Admissions292Affirmative Action292Architecture and Urban Planning, College of292Art, School of292Business Administration, School of292Business and Finance, Vice President for292CentersEducation of Women292Human Growth and Development292Research on Learning and Teaching292Communications, Vice President for292Communicative Disorders Clinic292Dentistry, School of292Development, Vice President for292Developmental and Reproductive Biology292Education, School of292Engineering, College of292Extension Service292Financial Aid292Government Relations, Vice President for292Information and Library Studies, School of292Information Technology Division292InstitutesGerontology292Labor and Industrial Relations292Public Policy Studies292Law School292LibrariesBentley Historical Library293Clements Library293University Library293Literature, Science and the Arts, College of293Medical School293Minority Affairs293Museum of Art293Music, School of293Natural Resources, School of293Nursing, School of293Opportunity Program293Orientation293Pharmacy, College of293Physical Education, Division of293President, Office of293Public Health, School of293Rackham School of Graduate Studies293Recreational Sports293Registrar293Research, Vice President for293SACUA293Scheduling293Social Work, School of293Student Services, Vice President for293
    Chronological Files1990July-September3 folders293October-December3 folders2941991January-June6 folders294
    1991-1992Alphabetical Files320Academic Affairs Advisory Council (AAAC)320Academic Affairs Office320Academic Planning and Analysis (OAPA)320Academic Program Group (APG)320Academic Services Board (ASB)320Academic Service Units320Accreditation320Admissions, General320Advisory Committee on University Budgets (ACUB)320Affirmative Action Office320American Association of University Professors (AAUP)320Association of American Universities (AAU)320Athletics320AuditsSpecial Investigation Reports317

    [Personnel records restricted until January 1, 2022]

    Awards320General320Michigan Association of Governing Boards (MAGB)320Faculty Nominations317

    [Personnel records restricted until January 1, 2022]

    Budget320General1991/92320General1992/93320Budget Priorities Committee320Budget Reallocation320State Budget Requests1992/93320Business and Industry320Business Roundtable320Calendar, University321Campaign Operations Group321Campaign Steering Executive Committee321Capital campaign321Capital Funds Commitment Forms321CentersGeneral321Chinese Studies321Continuing Education for Women (CEW)321Human Growth and Development (CHGD)321Macromolecular Research321Population Studies321Research on Learning and Teaching (CRLT)321CommitteesCommittee on Budget Administration (CBA)321Committee on the Economic Status of the Faculty (CESF)321Committee on Institutional Cooperation (CIC)2 folders321Communication (Future Governance of Student Publications)321Community Relations321Comprehensive Studies Program (CSP)321Computers321Computerized Academic Record321Consortium for International Earth Science Information Network (CIESIN)321Detroit Rackham Building321Development (includes APG Subcommittee)2 folders321Disability321Discrimination321Diversity321Division of Research Development and Administration (DRDA)321Economic Forecasting Group322Enrollment322Environment322Executive Committee322Executive Computing Committee322Faculty322Federal Relations322Finance (Vice President and Chief Financial Officer)2 folders322Financial Aid, Office of322Financial Reports322Foundation Fundraising Committee322FoundationsGeneral322Cook322Hewlett322Kellogg322Kresge322McKinley322Mellon322Skillman322Futures Group322Gateway Campus323General CounselGeneral323Communication317

    [Patient/client records restricted until July 1, 2101]

    Indemnification323
    Gifts, Endowments, etc323Giving Campaign323Global Change323GovernmentFederal323State323Government Relations323Graduate Student Assistants323Grievances (faculty/staff)317

    [Personnel records restricted until July 01, 2022]

    Handicapped323Harassment Policy323Higher Education323Honorary Degrees323Housing323Human Resources Review Committee323Indirect Cost2 folders323Information Technology324InstitutesGerontology (IOG)324Humanities324Industrial Technology (ITI)324Labor and Industrial Relations (ILIR)324Public Policy Studies (IPPS)324Social Research (ISR)324Intellectual Properties324International AffairsGeneral2 folders324University Council for International Academic Affairs (UCIAA)324Journalism324K-12/UM Collaboration324LibrariesGeneral324Bentley324Ford324University324Management Committee324Medical Affairs, Vice Provost for324Medical Center324Michigan (State of)324Michigan Education Trust (MET)324Michigan Information Technology Network (MITN)324Michigan Mandate324Michigan Partnership for New Education324Michigan Society of Fellows324Middle English Dictionary324MinoritiesGeneral325Commission on Minority Student Recruitment and Graduation325Enrollment325Faculty325King/Chavez/Parks Program325Martin Luther King Jr. Day325Racism325Minority Affairs, Office of325Multicultural University, Council on a325Museums (UM)General325Art325Kelsey325National Association of State Universities and Land-Grant Colleges (NASULGC)325National Science Board325National Science Foundation (NSF)325Neurosciences ProgramGeneral325News and Information Services325North Campus325Parking325Peer Institutions325PersonnelGeneral325Dual Careers325Faculty325Plant Extension325Police (University of Michigan)325Police Oversight Committee325Politically Correct325President's Advisory Commission on Minority Affairs (PACMA)325President's Advisory Committee on Women's Issues (PACWI)325President's Council (UM)325Presidents' Council of the State Universities of Michigan325President's Office325PromotionsGeneral325Recommendations317

    [Personnel records restricted until July 01, 2022]

    Provost's Administrative Group (PAG)326Provost's Advisory Committee on Excellence (PACE)326Public Service326Publications326RegentsGeneral326Communications2 folders326Registrar's Office326Requests (Navy V-12 Program during World War II)326ResearchGeneral326Research Advisory Group326Vice President326Reserve Officer Training Corps (ROTC)326Residency326Retirement, Mandatory326Safety and Security Advisory Committee326SalaryGeneral326Salary Equity Study326Scholarships and Fellowships326Searches (Expenditures)326Senate Advisory Committee on University Affairs (SACUA)326Senate Assembly326Sexual Orientation326SHARE (Special Hiring and Recruitment Effort for Senior faculty Women)327Space327Staff Benefits327StudentsGeneral327Health Insurance327Student Services, Vice President for327Substance Abuse327Surveys327Target of Opportunity (TOO)General327Tenure327Total Quality327Travel and Hosting Policy327Tuition and Fees327Undergraduate Education327Undergraduate Initiatives327United Way327University EventsGeneral327175th Anniversary327University of Michigan (General Information)327University Press327University Relations327Women327

    (see also President's Advisory Commission on Women's Issues)

    Schools and Colleges FilesArchitecture and Urban Planning, College ofGeneral328Appointments, Promotions and Recruitment317

    [Personnel records restricted until July 01, 2022]

    Art, School of328Business Administration, School ofGeneral328Appointments, Promotions, and Recruitment317

    [Personnel records restricted until July 01, 2022]

    Davidson Institute328
    Dearborn CampusGeneral328Appointments, Promotions and Recruitment317

    [Personnel records restricted until July 01, 2022]

    Dentistry, School ofGeneral328Appointments, Promotions and Recruitment317

    [Personnel records restricted until July 01, 2022]

    Education, School ofGeneral328Appointments, Promotions and Recruitment317

    [Personnel records restricted until July 01, 2022]

    Engineering, College ofGeneral328Appointments, Promotions and Recruitment317

    [Personnel records restricted until July 01, 2022]

    Lurie Donations317

    [Personnel records restricted until July 01, 2022]

    Flint CampusGeneral320Appointments, Promotions and Recruitment2 folders317

    [Personnel records restricted until July 01, 2022]

    Graduate Studies, Rackham School of328Information and Library Studies, School ofAppointments, Promotions and Recruitment317

    [Personnel records restricted until July 01, 2022]

    Kinesiology, Division of (formerly Division of Physical Education)328Law School328Literature, Science and the Arts, College ofGeneral328Appointments, Promotions and Recruitment4 folders317

    [Personnel records restricted until July 01, 2022]

    Departments328Miscellaneous Departments328Anthropology328Chemistry328Classical Studies328Economics328English328Geological Sciences328History328Linguistics328Mathematics328Near Eastern Studies328Physics328Political Science328Psychology328
    Medical SchoolGeneral328Appointments, Promotions and Recruitment3 folders317

    [Personnel records restricted until July 01, 2022]

    Inteflex328Regents' Communications328
    Schools and Colleges FilesMusic, School ofGeneral328Appointments, Promotions and Recruitment317

    [Personnel records restricted until July 01, 2022]

    Natural Resources, School of328Nursing, School of328Pharmacy, College ofAppointments, Promotions and Recruitment317

    [Personnel records restricted until July 01, 2022]

    Public Health, School of328General328Appointments, Promotions and Recruitment317

    [Personnel records restricted until July 01, 2022]

    Social Work, School ofGeneral328Appointments, Promotions and Recruitment317

    [Personnel records restricted until July 01, 2022]

    Chronological Files1991July-December6 folders3291992January-December12 folders3291993January-June6 folders329
    1992-1993Alphabetical FilesAcademic Affairs Advisory Council (AAAC)330Academic Affairs Committee330Academic Affairs Office330Academic Planning and Analysis (OAPA)330Academic Program Group (APG)2 foldersAPG Development Subcommittee330Academic Services Board (ASB)330Admissions, General330Advisory Committee on University Budgets (ACUB)330Alumni330Articles330Arts, Vice Provost for the (Paul Boylan)330Association of American Universities (AAU)330Athletics330Audits318

    [Personnel records restricted until July 01, 2023]

    AwardsGeneral330Henry Russel Award330BudgetGeneral1992/93330Capital Outlay330State Budget Requests1992/933301993/94330Business and Industry330Business Roundtable330Calendar, University330Campaign Operations Group330Campaign Steering Executive Committee330Capital Funds Commitment Forms330CentersGeneral330Chinese Studies330Continuing Education for Women (CEW)330Human Growth and Development (CHGD)330Macromolecular Research330Research on Learning and Teaching (CRLT)330Child Care330Commencement330CommitteesCommittee on Budget Administration (CBA 2 X 4)330Committee on the Economic Status of the Faculty (CESF)330Committee on Institutional Cooperation (CIC)2 folders331Community Relations331Consortium for International Earth Science Information Network (CIESIN)331Detroit Observatory331Detroit Rackham Building331Development331Disability331Discrimination331Diversity331Division of Research Development and Administration (DRDA)331Dual Careers331Economic Forecasting Group331Enrollment331Environment331Evaluations331Executive Committee331Executive Computing Committee331Extension Service331Faculty331Federal Relations331Finance (Vice President and Chief Financial Officer)331Financial Aid331Financial Reports331Foundation Fundraising Committee331FoundationsGeneral331Hewlett331Kellogg331Kresge331McKinley331Gateway Campus331General CounselGeneral332Communications318

    [Patient/client records restricted until July 1, 2103]

    Indemnification332
    Gifts, Endowments, etc332Global Change332GovernmentFederal332State332Government Relations332Graduate Student Assistants/Graduate Employees Organization (GEO)332Handicapped332Harassment Policy332Higher Education332Honorary Degrees2 folders332Housing332Human Resources Review Committee332Indirect Cost332Information Technology Division (ITD)4 folders318

    [Personnel records restricted until July 01, 2023]

    Information Technology Policy Committee318

    [Personnel records restricted until July 01, 2023]

    InstitutesGeneral332Continuing Legal Education (ICLE)318

    [Personnel records restricted until July 01, 2023]

    Humanities332Industrial Technology (ITI)332Labor and Industrial Relations (ILIR)318

    [Personnel records restricted until July 01, 2023]

    Public Policy Studies (IPPS)332Social Research (ISR)332
    Intellectual Properties332Internal Revenue Service (IRS) Audit318

    [Personnel records restricted until July 01, 2023]

    International AffairsGeneral332University Council for International Academic Affairs (UCIAA)332Investments333K-12/UM Collaboration333LibrariesGeneral333Bentley333Clements333Ford333UniversityDean of Libraries333Manufacturing Initiative, Michigan Joint333Medical Affairs, Vice Provost for333Medical Center333Memberships333Michigan Education Trust (MET)333Michigan Information Technology Network (MITN)333Michigan Mandate333Michigan Society of Fellows333Michigan Student Assembly (MSA)333Middle English Dictionary318

    [Personnel records restricted until July 01, 2023]

    Minorities333General333Faculty333Martin Luther King Jr. Day333Minority Affairs, Office ofGeneral333Minority Affairs Advisory Council333Multicultural University, Council on a333Museums (UM)General333Art333National Association of State Universities and Land-Grant Colleges (NASULGC)333National Science Foundation (NSF)333Neurosciences Program333New Pay Committee333News and Information Services333North Campus333Ombudsman333Orientation333Parking333Peer Institutions333Personnel333Plant Extension333Police (University of Michigan)333Police Oversight Committee333Politically Correct333Presidential Initiatives Fund (PIF)333President's Advisory Group on Minority Affairs (PACMA)333President's Advisory Committee on Women's Issues (PACWI)333President's Advisory Group (K-12 Education)334Presidents' Council of the State Universities of Michigan334President's Office334Professorships334Promotions334Provost's Administrative Group (PAG)334Provost's Commission on Recruitment, Graduation and Success of Students of Color334RegentsGeneral2 folders334Communications334Registrar's Office334Requests334ResearchGeneral2 folders334Cognitive Science Program334Interdisciplinary Program in Non-Linear Studies334Research Milestones334Research, Vice President for334Reserve Officer Training Corps (ROTC)334Residency334Retirement, Mandatory334Safety and Security Advisory Committee334SalaryGeneral334Complaints334Exceptions318

    [Personnel records restricted until July 01, 2023]

    Scholarships and Fellowships (nominations)318

    [Personnel records restricted until July 01, 2023]

    Senate Advisory Committee on University Affairs (SACUA)335Senate Assembly335Sexual Orientation335SHARE (Special Hiring and Recruitment Effort for Senior faculty Women)335South African Initiative335Space335Staff Benefits335Strategic Planning335StudentsGeneral335Health Insurance335Student Services, Vice President for335Substance Abuse335Surveys335Target of Opportunity (TOO)335Total Quality335Total Quality Council335Tuition and Fees335University Musical Society335United Way335University EventsGeneral335175th Anniversary335University Press335Visitors Center335Women335

    (see also President's Advisory Commission on Women's Issues)

    Schools and Colleges FilesArchitecture and Urban Planning, College ofGeneral336Appointments, Promotions, and Recruitment318

    [Personnel records restricted until July 01, 2023]

    Art, School of336Business Administration, School ofGeneral336Appointments, Promotions, and Recruitment318

    [Personnel records restricted until July 01, 2023]

    Dearborn CampusGeneral336Chancellor318

    [Personnel records restricted until July 01, 2023]

    Dentistry, School ofGeneral318Appointments, Promotions and Recruitment318

    [Personnel records restricted until July 01, 2023]

    Education, School ofGeneral336Appointments, Promotions and Recruitment319

    [Personnel records restricted until July 01, 2023]

    Engineering, College ofGeneral336Appointments, Promotions and Recruitment2 folders319

    [Personnel records restricted until July 01, 2023]

    Regents' Communications336
    Flint Campus336Graduate Studies, Rackham School of336Information and Library Studies, School of336Kinesiology, Division of (formerly Division of Physical Education)336Law SchoolGeneral336Appointments, Promotions, and Recruitment319

    [Personnel records restricted until July 01, 2023]

    Literature, Science and the Arts, College ofGeneral319Appointments, Promotions and Recruitment1 folder319

    [Personnel records restricted until July 01, 2023]

    Departments336Miscellaneous Departments336Anthropology336Chemistry336Communication336Economics336English336Geological Sciences336History336Judaic Studies336Mathematics336Near Eastern Studies336Philosophy336Physics336Political Science336Psychology336Sociology336Regents' Communications336
    Medical SchoolGeneral2 folders337Appointments, Promotions and Recruitment1 folder319

    [Personnel records restricted until July 01, 2023]

    Inteflex337Regents' Communications337
    Music, School ofGeneral337Appointments, Promotions and Recruitment319

    [Personnel records restricted until July 01, 2023]

    Natural Resources, School of337Nursing, School of337Pharmacy, College of337Public Health, School ofGeneral337Appointments, Promotions and Recruitment319

    [Personnel records restricted until July 01, 2023]

    Population Planning and International Health (re: program closure)337
    Social Work, School of337
    1993-1994Alphabetical FilesAcademic Affairs Advisory Council (AAAC)338Academic Affairs Committee338Academic Affairs Meetings (5+1 Group)338Academic Affairs Office338Academic Program Group (APG)APG Development Subcommittee338Academic Services Board (ASB)338Accreditation338Admissions338Advisory Committee on University Budgets (ACUB)338Affirmative Action338Alumni338Articles338Association of American Universities (AAU)338Athletics338Audits346

    [Personnel records restricted until July 01, 2024]

    Awards338Budget338Business and Industry338Business Roundtable338Calendar, University338Campaign Operations Group338Campaign Steering Executive Committee338Capital Funds Commitment Forms339Capital Outlay339Cellular Telephones339CentersChinese Studies339Continuing Education for Women (CEW)339Human Growth and Development (CHGD)339Population Studies Center339Research on Learning and Teaching (CRLT)339Commencement339CommitteesCommittee on Budget Administration (CBA 2 X 4)339Committee on the Economic Status of the Faculty (CESF)339Committee on Institutional Cooperation (CIC)339Community Relations339Computers339Conflict of Interest339Corporate Relations339DC Group339Deans, Directors, and Chancellors339Detroit Observatory339Detroit Rackham Building339Development339Disability339Discrimination339Diversity339Dual Careers339Economic Forecasting Group339Enrollment339Executive Committee339Executive Computing Committee339Extension Service339Faculty339Finance340Financial Aid340Financial Reports340Fleming Building340Flexible Benefits340Foundation Fundraising Committee340FoundationsGeneral340Cook340Herrick340Hewlett340Kellogg340

    (See Also Gateway Campus)

    Kresge340Mellon340Gateway Campus340

    (See also Kellogg)

    General Counsel340Gifts, Endowments, etc340Global Change340Government, State340Government Relations340Graduate Student Assistants (GSA)/Graduate Employees Organization (GEO)340Handicapped340Harassment Policy340Health Sciences, Vice Provost for340Higher Education340Hill Auditorium340Honorary Degrees340Housing340Indemnification341Indirect Cost341Industrial Technology Institute / Integrated Technology Instruction Center341Information Technology Division (ITD)341Information Technology Policy Committee (ITPC)341InstitutesGeneral341Labor and Industrial Relations (ILIR)341Social Research (ISR)341International Affairs341International Institute341Investments341Journalism341K-12/UM Collaboration341Korean Studies341LibrariesBentley341Clements341Ford341UniversityPersonnel346

    [Personnel records restricted until July 01, 2024]

    Manufacturing Initiative, Michigan Joint (MJMI)341Medical Affairs, Vice Provost forPersonnel346

    [Personnel records restricted until July 01, 2024]

    Medical Center341Memberships341Mentorship Program341Middle English Dictionary341MinoritiesGeneral341Martin Luther King Jr. Day341Miscellaneous (Robert Ball)341MisconductMisconduct Case346

    [Personnel records restricted until July 01, 2024]

    Multicultural Affairs341Museums341National Association of State Universities and Land-Grant Colleges (NASULGC)341National Science Foundation (NSF)341New Markets for Educational and Knowledge Services341New Pay Committee341North Campus341Ombudsman341Orientation341Partnership Agreement341Peer Institutions341Personnel342Pew Trust342Plant Extension342Police Oversight Committee342Presidential Initiatives Fund (PIF)342President's Advisory Committee on Women's Issues (PACWI)342Presidents' Council of the State Universities of Michigan342President's Office342Promotions346

    [Personnel records restricted until July 01, 2024]

    Property342

    [Personnel records restricted until July 01, 2024]

    Provost's Administrative Group (PAG)342

    [Personnel records restricted until July 01, 2024]

    RegentsGeneral342Communications342Registrar's Office342Research, General342Research, Vice President forGeneral2 folders342Research Directions by School342Reserve Officer Training Corps (ROTC)342Residency342Retirement (Includes report of Task Force on Retirement)342Safety and Security Advisory Committee342SalaryGeneral342Adjustments / Complaints346

    [Personnel records restricted until July 01, 2024]

    Searches346Senate Advisory Committee on University Affairs (SACUA)343Senate Assembly343Sexual Orientation343South African Initiative343Staff Benefits343Strategic Planning343Student Affairs343StudentsGeneral343Health Insurance343Substance Abuse343Surveys343Target of Opportunity (TOO)343Total Quality343Tuition and Fees343Undergraduate Education343Unit Assessment343United Way343University Information System343University of Michigan, General343University of the Future343University Relations343Visitors Center343Women343Zell, Sam343
    Schools and Colleges FilesArchitecture and Urban Planning, College ofGeneral344Appointments, Promotions, and Recruitment346

    [Personnel records restricted until July 01, 2024]

    Art, School of344Business Administration, School ofGeneral344Appointments, Promotions, and Recruitment346

    [Personnel records restricted until July 01, 2024]

    Dearborn Campus344Dentistry, School of344Education, School ofGeneral344Appointments, Promotions and Recruitment346

    [Personnel records restricted until July 01, 2024]

    Engineering, College ofGeneral344Appointments, Promotions and Recruitment2 folders346

    [Personnel records restricted until July 01, 2024]

    Flint Campus344Graduate Studies, Rackham School of344Information and Library Studies, School of344Kinesiology, Division of344

    (formerly Division of Physical Education)

    Law SchoolGeneral344Law School Dean Search346

    [Personnel records restricted until July 01, 2024]

    Literature, Science and the Arts, College ofGeneral344Appointments, Promotions and Recruitment346

    [Personnel records restricted until July 01, 2024]

    DepartmentsMiscellaneous Departments344Chemistry344Communication344Economics344History344Near Eastern Studies344Philosophy344Psychology344Sociology344
    Medical SchoolGeneral2 folders344Appointments, Promotions and Recruitment3 folders346

    [Personnel records restricted until July 01, 2024]

    Pharmacology346

    [Personnel records restricted until July 01, 2024]

    Music, School of344Natural Resources, School of344Nursing, School of344Pharmacy, College of344Public Health, School ofGeneral344Appointments, Promotions and Recruitment346

    [Personnel records restricted until July 01, 2024]

    Social Work, School of344
    Chronological File12 foldersJuly 1993-June 1994345
    1994-1995Alphabetical FilesAcademic Affairs347Academic Affairs Committee347Academic Program Group (APG)APG Development Subcommittee347Accreditation347Admissions347Advisory Committee on University Budgets (ACUB)347Affirmative Action347Alumni347American Council on Education (ACE)347Articles347Art Museum347Association of American Universities (AAU)Conflict of Interest Policies347Association of Governing Boards of Universities and Colleges347Athletics347Audits347AwardsGeneral347Henry Russel Award347Benefits347Budget2 folders347Business and Industry347Business Roundtable347Calendar, University347Campaign Operations Group1 folder, 2 books347Capital Commitment Forms347Capital Outlay347Centers348Chinese Studies348Research on Learning and Teaching (CRLT)348Charter Schools348CommitteesCommittee on the Economic Status of the Faculty (CESF)348Committee on Institutional Cooperation (CIC)348Community Relations348Conflict of Interest348Council on A Multicultural University (COMU)348Curriculum348DC Group348Deans, Directors, and Chancellors348Detroit Observatory348Development348Disability348Diversity348Dual Careers348Economic Forecasting Group348Enrollment348Environment348Environmental Research In Michigan (ERIM)348Equity Review348Executive Computing Committee348Executive Officers348Extension Service348Faculty348Federal Regulations348Finance348Financial Aid348Financial Reports349Foundation Forum349Fundraising Fundraising349FoundationsGeneral349Ford349Herrick349Hewlett349Kellogg349Kresge349McKinley349Mellon349General Counsel346

    [Student records restricted until July 01, 2105]

    Gifts349Government, State349Graduate Student Assistants (GSA)/Graduate Employees Organization (GEO)349Harassment Policy349Health Affairs, Vice Provost for349Higher Education349Honorary Degrees3 folders349Housing349Human Resources and Affirmative Action349

    (See also: Personnel)

    Indemnification350Indirect Cost350Information Technology Division (ITD)350Information Technology Policy Committee (ITPC)350Institutes, GeneralHumanities Institute350Industrial Technology Institute (ITI)350Institute for Social Research (ISR)350International Studies350Intellectual Properties350International Affairs350Investments350Journalism350K-12/UM Collaboration350Korean Studies350Libraries, GeneralBentley350Ford350University Library350Martin Luther King Day350Manufacturing350Medical Center350Memberships350Michigan Mandate350Middle English Dictionary350MinoritiesGeneral350Martin Luther King, Jr. Day350Multicultural Affairs350Museums350National Association of State Universities and Land-Grant Colleges (NASULGC)350National Science Foundation (NSF)350New Markets for Educational and Knowledge Services350New Pay Committee350News and Information Services350North Campus350Office of Academic Affairs Group (8+1)350Ombudsman350Orientation350Parking351Peer Institutions351Personnel351

    (See also: Human Resources and Affirmative Action)

    Pew Trust351Plant Extension351Police351President351Presidential Initiatives Fund (PIF)351President's Advisory Committee on Women's Issues (PACWI)351President's Advisory Group351Presidents Council (State Universities of Michigan)351Promotions351Property351RegentsGeneral351Regents Communications351Registrar's Office351Requests and Surveys351Renaissance Group351Research2 folders352Research, General2 folders352Research, Vice President for (Quarterly Report of Initiatives)352Reserve Officer Training Corps (ROTC)352Residency352Responsibility Centered Management (RCM)352Retirement352Safety and Security Advisory Committee352SalaryGeneral352Exceptions352Searches352Senate Advisory Committee on University Affairs (SACUA)352Senate Assembly352Sexual Orientation352SHARE353Society of Fellows353South African Initiative353Strategic Planning353Student Affairs353StudentsGeneral353Health Insurance353Substance Abuse353Target of Opportunity (TOO)353Task Forces353Teaching Assistants353Total Quality (TQM)2 folders353Tuition and Fees353Undergraduate Education353Unit Assessment353United Way353University of Michigan, General353University Relations353Value Centered Management (VCM)353Women353Architecture and Urban Planning, College of354Art, School of354Business Administration, School of354Dearborn Campus354Dentistry, School of354Education, School of354Engineering, College of354Flint Campus354Institute of Public Policy354Kinesiology, Division of354

    (formerly Division of Physical Education)

    Law School354Literature, Science and the Arts, College ofGeneral354Appointments, Promotions and Recruitment346

    [Restricted until January 01, 2025]

    Cloyd, Emily346

    [Restricted until January 01, 2025]

    Departments354Miscellaneous Departments354Communication354Economics354History354Political Science354Romance Languages354Sociology354Statistics354
    Medical School3 folders355Music, School of355Natural Resources, School of355Nursing, School of355Pharmacy, College3 folders355

    (includes self study report)

    Public Health, School of355Public Policy, School of355Rackham Graduate School355

    (includes 10 year overview)

    Social Work, School of355
    Chronological File7 foldersJuly 1994-August 1995356
    1995/1996Alphabetical FilesAcademic Affairs358Academic Affairs Group (OAA 4+1)358Academic Affairs Advisory Committee (AAAC)358Academic Affairs Committee358Academic Computing Advisory Committee358Academic Governing Board358Academic Program Group (APG)2 foldersAPG Development Subcommittee358Academic Outreach358Academic Service Board358Accreditation358Admissions358Advisory Committee on University Budgets (ACUB)358Affirmative Action358American Council on Education (ACE)358Articles358Assessment358Association of American Universities (AAU)Conflict of Interest Policies358Association of American University Professors (AAUP)358Athletics358AuditsGeneral358Personnel504

    [Personnel records restricted until July 01, 2026]

    AwardsGeneral358Henry Russel Award358Michigan Association of Governing Boards358Benefits359BudgetGeneral2 folders359State Budget Requests359Calendar, University359Campaign Operations Group359Capital Commitment Forms359Capital Outlay359CentersGeneral359Chinese Studies359Community Service, Center for359Center for the Education of Women (CEW)359Center for Research on Learning and Teaching (CRLT)General359Director Search504

    [Personnel records restricted until July 01, 2026]

    Childcare359Commencement359CommitteesCommittee on the Economic Status of the Faculty (CESF)359Committee on Institutional Cooperation (CIC)General359Affirmative Action359Community Relations (includes Ameri Corps and Campus Compact)359Cost Allocation359Deans, Directors, and Chancellors360Delegation of Authority360Development360Diversity360Dual Careers360Economic Development360Economic Forecasting360Endowments360Enrollment360Environment360Environmental Research in Michigan (ERIM)360Executive Officers360Faculty360Finance360Finance, Vice President Area (Farris Womack)360Financial Aid360Financial Reports360FoundationsGeneral360Foundations Fundraising360Kellogg Foundation360Mellon Foundation360Whitaker Foundation360Gallaudet University (see also Washington Campus)360General Counsel504

    [Patient/client records restricted until July 01, 2096]

    Gifts360Government, State360Government Relations360Graduate Employees Organization (GEO)361Grand Haven361Health Affairs, Vice Provost for361Higher Education361Hill Auditorium361Honorary Degrees2 folders361Human Resources and Affirmative Action (see also Personnel)361Information Technology Division (ITD)361InstitutesGeneral361Gerontology, Institute of361Humanities Institute361Industrial Technology Institute (ITI)361Institute for Social Research (ISR)361Transportation Research Institute (UMTRI)361Integrated Technology Instructional Center (ITIC)361Intellectual Properties361International361Investments361Journalism362K-12/UM Collaboration362Leadership Development362LibrariesBentley362Clements362Ford362University Library362Magellan Project362Martin Luther King, Jr. Day362Manufacturing362Medical Center3 folders362Memberships362Michigan Society of Fellows362Michigan Student Assembly362Middle English Dictionary362Minorities362Multicultural Affairs362National Association of State Universities and Land-Grant Colleges (NASULGC)362News and Information Services362Parking363Partnership363People Soft363PersonnelGeneral363RIF504

    [Personnel records restricted until July 01, 2026]

    Pew Trust363Plant Extension363Police363President363Presidential Initiatives Fund (PIF)363President's Advisory Committee on Women's Issues (PACWI)363Presidents Council (State Universities of Michigan) (Includes Indian Tuition Waiver Program)363Process Management Executive Committee (PMEC)363Promotions363Property363Provost's Advisory Group on Graduate Education363Public Service363Racism363RegentsAttorney-Client Privileged Documents504

    [Patient/client records restricted until July 01, 2096]

    General363Regents Communications363
    Renaissance Group363Requests and Surveys363Research363Research, Vice President for364Reserve Officer Training Corps (ROTC)364Residency364Responsibility Centered Management (RCM)364Retirement364Safety and Security Advisory Committee364SalaryGeneral364Exceptions504

    [Personnel records restricted until July 01, 2026]

    Scholarships and Fellowships364SearchesGeneral364Engineering504

    [Personnel records restricted until July 01, 2026]

    Information Technology504

    [Personnel records restricted until July 01, 2026]

    Natural Resources and Environment364Provost364Rackham364
    Seminar on Teaching364Senate Advisory Committee on University Affairs (SACUA)364Senate Assembly364Sexual Orientation364SHARE364South Africa364Student Affairs364StudentsGeneral364Students-Deceased364Sympathy364Target of Opportunity (TOO)364Task Forces364Teaching Assistants364Thurnau Professorships364Total Quality (TQM)364Tuition and Fees364Undergraduate Education364Unit Assessment364United Way364University of Michigan, General364University Relations364Value Centered Management (VCM)365Vision2000365Washington Campus (see also Gaulladet)365Whitaker Articulation Project: Easing the Transition from High School to College1 notebooks365Women365
    Schools and Colleges FilesArchitecture and Urban Planning, College ofGeneral365Budget365Regents Communications365Art, School ofGeneral365Ceramics Letters365Budget365Regents Communications365Business Administration, School ofGeneral365Budget365Regents Communications365Dearborn Campus365Dentistry, School ofGeneral365Budget365Regents Communications365Education, School ofGeneral365Budget365Regents Communications365Engineering, College ofGeneral366Budget366Regents Communications366Flint Campus366Information, School ofGeneral366Budget366Regents Communications366Kinesiology, Division ofGeneral366Budget366Regents Communications366Law SchoolGeneral366Budget366Regents Communications366Literature, Science and the Arts, College ofGeneral366Budget366Faculty Appointments504

    [Personnel records restricted until July 01, 2026]

    Regents Communications366DepartmentsMiscellaneous Departments366Biology366Chemistry366English366History366Physics366Psychology366Statistics504

    [Personnel records restricted until July 01, 2026]

    Medical SchoolGeneral (folder 1 of 4)366General3 folders367Appointments504

    [Personnel records restricted until July 01, 2026]

    Budget367George Zuidema Professorship Position504

    [Personnel records restricted until July 01, 2026]

    Regents Communications367Pharmacology504

    [Personnel records restricted until July 01, 2026]

    Music, School ofGeneral367Budget367Regents Communications367Natural Resources, School ofGeneral367Budget367Regents Communications367Nursing, School ofGeneral367Budget367Regents Communications367Pharmacy, College (includes self study report)3 foldersGeneral367Budget367Regents Communications367Public Health, School ofGeneral367Budget367Regents Communications367Public Policy, School ofGeneral367Budget367Regents Communications367Rackham Graduate School (includes 10 year overview)General367Budget367Social Work, School ofGeneral367Budget367Regents Communications
    Chronological FIle4 foldersJanuary-August, 1996357September 1995-August 1996357
    1996/1997Alphabetical FilesAcademic Affairs368Academic Affairs Advisory Committee368Academic Computing Advising Committee368Academic Program Group368Academic Program Group Development Subcommittee368Academic Outreach368Academic Services Board368Accreditation368AdmissionsGeneral368Admissions Cases504

    [Patient/client records restricted until July 01, 2097]

    Advisory Committee on University Budgets368Alumni368America Reads368American Council on Education368Articles368Arts, Vice Provost for the (Paul Boylan)368Association of American Universities368Association of American University Professors368AuditsGeneral368General Counsel504

    [Patient/client records restricted until July 01, 2097]

    AwardsGeneral368Henry Russel368MAGB368Benefits368Bentley Library368Biomedical Research368Budget: 1996-97 General2 folders368Budget Conference: Summaries and General Information368Business and Industry368Calendar369Campaign for Michigan369Campaign Operations Group369Campus Safety Task Force369Committee on the Economic Status of the Faculty (CESF)369Committee on Institutional CooperationGeneral2 folders369Survey-Non-tenure track369Communicative Disorders369Consortium for International Earth Science Information Network (CIESIN)369Capital Commitment Forms369Centers: General369Continuing Education for Women (CEW)369Center for Research on Learning and Teaching (CRLT)369Childcare369Clements Library369Clinical Track369Clinical Promotions369Commencement369Community Relations369Community Service, Center for369Corporate Relations369Delegation of Authority369Development369Diversity369Dual Careers369Economic Forecasting369Endowments370Enrollment370Environment370Environmental Research Institute of Michigan (ERIM)370Executive Committee370Faculty370Faculty Appointments370

    [Personnel records restricted until July 01, 2027]

    Finance370Financial AidGeneral370Compliance504

    [Patient/client records restricted until July 01, 2097]

    Financial Reports2 folders370Flexible Benefits370Focus Group370Ford Foundation370Foundations: General370Fraunhofer Initiative level3370General Counsel504

    [Patient/client records restricted until July 01, 2097]

    Geographic Information System370Gifts370Global Change Project370Government: State370Government Relations370Health Affairs371Health System371HAST371Henry Ford Health System371Higher Education371Honorary Degree371Housing371Human Resources and Affirmative ActionGeneral371Applications371

    [Personnel records restricted until July 01, 2027]

    Equity371FY 96-97 Budget371
    Information Technology (ITD): General371Information Technology: Budget371InstitutesErb371General371Institute for Continuing Legal Education (ICLE)371Institute for Social Research371Indemnification371International371Investments371Invitations371K-12371Kellogg Foundation371Magellan371Marshall Scholars371Martin Luther King, Jr.371Media UnionGeneral371Budget371Medical Affairs371Medical CenterGeneral2 folders371General Counsel Communication504

    [Patient/client records restricted until July 01, 2097]

    Medical Center Restructuring2 folders372Mellon Foundation372Memberships372Michigan Health Corporation2 folders372Michigan Mandate372Michigan Society of Fellows372Minorities372Mott's Children's Hospital372Multicultural Academic Affairs372MuseumsGeneral372Anthropology (Native American Artifacts Repatriation)372Museum of Art372Musical Society372National Association of State Universities Land Grant Colleges372National Science Foundation372News and Information372New Student Programs372Oakwood372Office of Academic Affairs 4+1372Office of Academic Planning and Analysis372Orientation372Outreach Service Project372President's Advisory Group372President's Council: State372Presidential Initiative Fund372Process Management Executive Committee372Pathways372Peer Institutions (Japan Center for Michigan Universities)372PersonnelGeneral372Exceptions372

    [Personnel records restricted until July 01, 2027]

    RIF372

    [Personnel records restricted until July 01, 2027]

    Pew372Pharmacology372

    [Personnel records restricted until July 01, 2027]

    Plant Extension373PoliceGeneral373Oversight Committee373President's OfficeGeneral373Budget373Promotions373

    [Personnel records restricted until July 01, 2027]

    Proposals373RegentsCommunications373General373Search373

    [Personnel records restricted until July 01, 2027]

    RegistrarGeneral373Students504

    [Student records restricted until July 01, 2082]

    Statistics373
    Renaissance Group373Requests373ResearchGeneral373Vice President Area373Budget373ROTC373Residency373Retirement373Salary Exceptions373

    [Personnel records restricted until July 01, 2027]

    Senate Advisory Committee on University Affairs (SACUA)General4 folders373Budget373SHARE374Safety Advisory Committee3 folders374Salary374Salary Exceptions374

    [Personnel records restricted until July 01, 2027]

    Salary Structure504

    [Patient/client records restricted until July 01, 2097]

    Scholarships & Fellowships374SearchesCFO374EVPMA374

    [Personnel records restricted until July 01, 2027]

    Financial Aid374

    [Personnel records restricted until July 01, 2027]

    General Counsel374Medical School374Presidential374

    [Personnel records restricted until July 01, 2027]

    Public Policy374University Library374

    [Personnel records restricted until July 01, 2027]

    Senate Assembly374Sinai Hospital374South Africa Initiatives374Space374Strategic Planning374StudentsDeceased374General374Student Affairs374Surveys374Sympathy374Target of Opportunity (TOO)374Task Forces374Teaching Assistants374Thurnau Professorships374Tuition and Fees374Undergraduate Education374Undergraduate Research Initiative374Undergraduate Research Opportunity Program (UROP)374University of Michigan, Information about374Unit Assessment374University LibraryGeneral374Budget374University Press375University RelationsGeneral375Budget375Value Centered Management (VCM)375Value Centered Management: Oversight Committee375Virtual Auto College375Visitors Center3 folders1991-1997375WCBN375Whitaker Foundation375Women375
    Schools and Colleges FilesArchitecture and Urban Planning, School ofGeneral1996-1997375Chair Selection375

    [Personnel records restricted until July 01, 2027]

    Molesky, Susan K.375

    [Personnel records restricted until July 01, 2027]

    Art and Design, School of375Business Administration, School ofGeneral375Appointments375

    [Personnel records restricted until July 01, 2027]

    Dearborn Campus375Dentistry, School ofGeneral1996-1997375Personnel375

    [Personnel records restricted until July 01, 2027]

    Education, School ofGeneral375Appointments375

    [Personnel records restricted until July 01, 2027]

    Budget Conference375
    Engineering, College ofGeneral375Faculty Appointments375

    [Personnel records restricted until July 01, 2027]

    Grievances375

    [Personnel records restricted until July 01, 2027]

    Flint Campus375Information, School of376Kinesiology DivisionGeneral376Appointments376

    [Personnel records restricted until July 01, 2027]

    Law SchoolGeneral376Appointments376

    [Personnel records restricted until July 01, 2027]

    Admissions504

    [Student records restricted until July 01, 2082]

    Literature, Science and the Arts, College ofFaculty Appointments376

    [Personnel records restricted until July 01, 2027]

    General376Regents' Communications376
    Medical SchoolGeneral2 folders376Faculty Appointments376

    [Personnel records restricted until July 01, 2027]

    Regents' Communication376
    Music, School ofGeneral376Appointments376

    [Personnel records restricted until July 01, 2027]

    Natural Resources and the Environment, School ofGeneral376Appointments376

    [Personnel records restricted until July 01, 2027]

    Nursing, School ofGeneral376Appointments376

    [Personnel records restricted until July 01, 2027]

    Pharmacy, College of2 folders376Public Health, School ofGeneral376Appointments376

    [Personnel records restricted until July 01, 2027]

    Public Policy, School ofGeneral376Appointments376

    [Personnel records restricted until July 01, 2027]

    Rackham Graduate School376Social Work, School ofGeneral376Appointments504

    [Personnel records restricted until July 01, 2027]

    Family Assessment Clinic504

    [Patient/client records restricted until July 01, 2097]

    Chronological File4 foldersSeptember 1996-June 1997357
    1997/1998Alphabetical FilesAcademic AffairsGeneral377Appointments504

    [Personnel records restricted until July 1, 2028]

    Budget377
    Academic Affairs Advisory Committee377Academic Computing Advising Committee377Academic Governing Board377Academic Program Group (APG)3 folders377Academic Program Group Development Subcommittee377Academic Outreach377Accreditation377Admissions504

    [Student records restricted until July 01, 2083]

    Advisory Committee on University Budgets (ACUB)377Affirmative Action377Alumni377America Reads377American Council on Education377American Council of Learned Societies377Appropriation Hearing377Arthur Miller377Articles377Art Museum377Association of American Colleges and Universities (AACU)377Association of American Universities377Association of American University Professors377Athletics378Atlas Project378Audits504

    [Personnel records restricted until July 01, 2028]

    AwardsGeneral378Henry Russel378MAGB378BenefitsGeneral378Comments on M-Care Preference Initiative10 folders378Bentley Library379Biomedical Research379BudgetGeneral3 folders379Long-Range Planning379Miscellaneous Budgets379Business and Industry379Business Operations379Calendar379Campaign for Michigan379Campus Safety379Capital Commitment Forms379Center for Research Libraries379Center for Research on Learning and Teaching (CRLT)379Centers379Charter Schools379Childcare3 folders379Clements Library379Clinical TrackGeneral379Clinical Track Appointments504

    [Personnel records restricted until July 01, 2028]

    Cognitive Neuro Initiative379Commencement379Committee on the Economic Status of the Faculty (CESF)380Committee on Institutional CooperationGeneral6 folders380Survey380Community Relations380Community Service, Center for380Complex Systems380Consortium for International Earth Science Information Network (CIESIN)380Consortiums380Continuing Education for Women (CEW)380Corporate and Foundation Coordination Group (CFCG)380Corporate Relations380Delegation of Authority380Detroit380DevelopmentGeneral380Budget380Display Technology380DiversityGeneral2 folders380President's New Century Fund for Diversity381Division of Research Development and Administration381Dual Careers381

    [Personnel records restricted until July 01, 2028]

    Economic Forecasting381Endowments381Enrollment381Environment381Events381Executive Committee381Executive Vice President for Medical Affairs381FacultyGeneral381Appointments381

    [Personnel records restricted until July 01, 2028]

    FinanceAssociate VP for Finance Search381

    [Personnel records restricted until July 01, 2028]

    General381VP Area381
    Financial AidGeneral381Equity Level504

    [Patient/client records restricted until July 01, 2098]

    Students504

    [Student records restricted until July 01, 2083]

    Financial ReportsFolders 1-2381Folder 3382Fleming Building382Flexible Benefits382Ford Foundation382Ford Nuclear Reactor504

    [Patient/client records restricted until July 01, 2098]

    Foundations: General382Funding382General Counsel504

    [Patient/client records restricted until July 01, 2098]

    Geographic Information System382Gifts382Global Change Project382Government: State382Government Relations382Harassment504

    [Patient/client records restricted until July 01, 2098]

    HAST (Health Affairs Senior Team)382Health Services Research Initiative382Health System382Henry Ford Health System382Higher Education382Honorary Degree382Hospital Executive Board6 foldersFolder 1-2382Folder 3-6383Housing383Housing Grievances504

    [Student records restricted until July 01, 2083]

    Human Resources and Affirmative ActionGeneral383Appointments383

    [Personnel records restricted until July 01, 2028]

    IndemnificationGeneral383Gaviria, Luis A.504

    [Patient/client records restricted until July 01, 2098]

    Information Technology Division (ITD)General2 folders383Budget383Federal Audit1991-1992383Federal Audit1992-1993383

    [Patient/client records restricted until July 01, 2092]

    Michigan Review/FOIA383Michigan Review/FOIA1992-1993505

    [Patient/client records restricted until July 01, 2093]

    Moore, Robert1991-1992505

    [Patient/client records restricted until July 01, 2092]

    Personnel383

    [Personnel records restricted until July 01, 2028]

    Institutes383Institute of Gerontology383Institute for Continuing Legal Education (ICLE)383Institute for Social ResearchGeneral2 folders383Appointments383

    [Personnel records restricted until July 01, 2028]

    Intellectual Property383Intergroup383International Institute4 folders384Internet II level3384Investments384Invitations2 folders384Japan Center for Michigan Universities (JCMU)384Keck Proposal384Knight Collaborative Engagement384Life Sciences384Living/Learning384Magellan384Marshall Scholars384Martin Luther King, Jr.384Master Plan384Media Union384Medical CenterGeneral384Appointments384

    [Personnel records restricted until July 01, 2028]

    Mellon Foundation384Memberships384Merck Scholars Program384Michigan Daily384Michigan Health Corporation5 foldersFolders 1-2384Folders 3-5385Michigan Political Action Committee (MPAC)385Michigan Society of Fellows385Michigan Student Assembly (MSA)General385Ballot Initiative505

    [Patient/client records restricted until July 01, 2098]

    Middle English Dictionary385Midwest Universities Consortium for International Actives (MUCIA)385Millennium385Minorities385Miscellaneous385MRI Lab385Multicultural Academic AffairsBudget385Lester P. Monts385Museum of Art385Musical Society385National Association of State Universities Land Grant Colleges (NASULGC)2 folders385National Science Foundation385News and Information385New Student Programs385Oakwood385Office of Academic Affairs (OAA) 4+1385Office of Academic Affairs (OAA) 5+1385Office of Academic Planning and Analysis (OAPA)385Office of the Vice President for Research (OVPR) Working Group385Orientation385Outreach Service Project385Parking385Pathways2 folders385Peer Institutions386PersonnelGeneral386Grievances586

    [Personnel records restricted until July 01, 2028]

    Pew386Plant Extension386Police386President's Advisory Committee on Women's Issues (PACWI)386President's Council: State386Presidential Initiative Fund (PIF)3 folders386President's OfficeGeneral386Budget386Primary Research Scientists (PRS)386Process Management Executive Committee (PMEC)386Professoriate386PromotionsGeneral386Appointments386

    [Personnel records restricted until July 01, 2028]

    Property386Proposals4 folders386Provost's Advisory Group (PAG)386Provost's Faculty Initiative Program (PFIP)General386Appointments386

    [Personnel records restricted until July 01, 2028]

    Provost's Financial Advisory Committee (PFAC)386Psychology2 folders386Psychology-Personnel386

    [Personnel records restricted until July 01, 2028]

    Reserve Officers Training (ROTC)General386Appointments386

    [Personnel records restricted until July 01, 2028]

    RegentsGeneral2 folders386Communications3 folders387RegistrarGeneral387Statistics387Students505

    [Student records restricted until July 01, 2083]

    Requests2 foldersResearch4 folders387ResearchBudget387Vice President Area2 folders387Residency387Retirement387Retirement-Faculty387

    [Personnel records restricted until July 01, 2028]

    Safety Advisory Committee2 folders387SalaryGeneral387Exceptions387

    [Personnel records restricted until July 01, 2028]

    Scholarships and Fellowships387Searches388General2 folders388Architecture388

    [Personnel records restricted until July 01, 2028]

    Education388

    [Personnel records restricted until July 01, 2028]

    Financial Aid388

    [Personnel records restricted until July 01, 2028]

    Flint388Human Resources of Academic Affairs388

    [Personnel records restricted until July 01, 2028]

    Literature, Science & Arts (LS&A)388

    [Personnel records restricted until July 01, 2028]

    Media Union388

    [Personnel records restricted until July 01, 2028]

    Medical School388

    [Personnel records restricted until July 01, 2028]

    Museum of Art388

    [Personnel records restricted until July 01, 2028]

    Pharmacy388

    [Personnel records restricted until July 01, 2028]

    Public Policy388

    [Personnel records restricted until July 01, 2028]

    Rackham388

    [Personnel records restricted until July 01, 2028]

    Research388

    [Personnel records restricted until July 01, 2028]

    University Library388

    [Personnel records restricted until July 01, 2028]

    Vice President of Finance388Secretary of the University388Senate Advisory Committee on University Affairs (SACUA)General4 folders388Budget388Senate Assembly388Senior Hire and Recruitment Effort (SHARE)388Senior Hire and Recruitment Effort (SHARE) Appointments388

    [Personnel records restricted until July 01, 2028]

    Senior Primary Research Scientists388Sexual Orientation388South Africa Initiatives388SpaceGeneral388Miskel Grievance Letter388

    [Personnel records restricted until July 01, 2028]

    State Department of Education388Student AffairsGeneral388Budget388StudentsGeneral388Deceased388Substance Abuse388Surveys389Sympathy389Target of Opportunity (TOO)389

    [Personnel records restricted until July 01, 2028]

    Task Forces389Task Force on Campus SafetyAppendices A-J389Appendices K-Q389Teaching Assistants389Technology Transfer389Thurnau Professorships389Total Quality389Tuition and FeesGeneral389General Counsel505

    [Patient/client records restricted until July 01, 2098]

    Students505

    [Student records restricted until July 01, 2083]

    Undergraduate Education389Undergraduate Research Opportunity Program (UROP)389University LibraryGeneral2 folders389Budget389Personnel389

    [Personnel records restricted until July 01, 2028]

    University of Michigan, Information about389University of Michigan Transportation Research Institute (UMTRI)389University Press389University RelationsGeneral389Budget389Vice President: Budget389Undergraduate Research Opportunity Program (UROP)389Value Centered Management (VCM)General389Oversight Committee389Whitaker Foundation1 folder389Whitaker Foundation, cont'd1 folder389Women2 folders389Women in Higher Education389Year of Humanities and Arts (YOHA)389
    Schools and Colleges FilesArchitecture and Urban Planning, School ofGeneral2 foldersFolder 1389Folder 2390Budget390Budget Conference390Personnel390

    [Personnel records restricted until July 01, 2028]

    Regents' Communications390
    Art and Design, School ofGeneral390Budget390Budget Conference390Regents' Communications390Business Administration, School ofGeneral390Appointments390

    [Personnel records restricted until July 01, 2028]

    Budget390Budget Conference390Regents' Communications390Students505

    [Student records restricted until July 01, 2083]

    Dearborn Campus390Dentistry, School ofGeneral390Appointments390

    [Personnel records restricted until July 01, 2028]

    Budget Conference390Regents' Communications390
    Education, School ofGeneral390Appointments390

    [Personnel records restricted until July 01, 2028]

    Budget390Regents' Communications390Students505

    [Student records restricted until July 01, 2083]

    Engineering, College ofGeneral3 folders390Appointments390

    [Personnel records restricted until July 01, 2028]

    Budget390Budget Conference390General Counsel505

    [Personnel records restricted until July 01, 2098]

    Regents' Communications390Students505

    [Student records restricted until July 01, 2083]

    Flint CampusGeneral390Students505

    [Student records restricted until July 01, 2083]

    Information, School ofGeneral390Appointments391

    [Personnel records restricted until July 01, 2028]

    Budget391Budget Conference391
    Kinesiology DivisionGeneral2 folders391Appointments391

    [Personnel records restricted until July 01, 2028]

    Budget391Budget Conference391
    Law SchoolGeneral391Appointments391

    [Personnel records restricted until July 01, 2028]

    Budget391Budget Conference391Regents' Communications391
    Literature, Science and the Arts, College ofGeneral3 folders391Budget391Faculty Appointments391

    [Personnel records restricted until July 01, 2028]

    Personnel391

    [Personnel records restricted until July 01, 2028]

    Regents' Communications391Students505

    [Student records restricted until July 01, 2083]

    Medical SchoolGeneral4 foldersFolders 1-3391Folder 4392Budget392Budget Conference392Faculty Appointments392

    [Personnel records restricted until July 01, 2028]

    Personnel392

    [Personnel records restricted until July 01, 2028]

    Regents' Communication392
    Music, School ofGeneral392Appointments392

    [Personnel records restricted until July 01, 2028]

    Budget392Budget Conference392Regents' Communication392Students505

    [Student records restricted until July 01, 2083]

    Natural Resources and the Environment, School ofGeneral2 folders392Appointments392

    [Personnel records restricted until July 01, 2028]

    Budget392Budget Conference392Regents' Communications392
    Nursing, School ofGeneral2 folders392Appointments392

    [Personnel records restricted until July 01, 2028]

    Budget392Budget Conference392Regents' Communications392
    Pharmacy, College ofGeneral392Appointments392

    [Personnel records restricted until July 01, 2028]

    Budget392Budget Conference392Regents' Communications392
    Public Health, School ofGeneral393Appointments393

    [Personnel records restricted until July 01, 2028]

    Budget393Budget Conference393Regents' Communications393
    Public Policy, School ofGeneral393Appointments393

    [Personnel records restricted until July 01, 2028]

    Budget393Budget Conference393
    Rackham Graduate SchoolGeneral Budget393Appointments393

    [Personnel records restricted until July 01, 2028]

    Budget Conference393Search-Dean393

    [Personnel records restricted until July 01, 2028]

    Social Work, School ofGeneral393Appointments393

    [Personnel records restricted until July 01, 2028]

    Budget393Budget Conference393Regents' Communications393
    1998/1999Alphabetical FilesAcademic AffairsGeneral393Budget393Academic Affairs Advisory Committee393Academic Program Group (APG)6 folders393Academic Program Group Development Subcommittee394Academic Program Group: Promotions394

    [Personnel records restricted until July 01, 2029]

    Academic Program Group: Research394Academic Outreach394Accreditation394AdmissionsGeneral394Budget394Personnel394

    [Personnel records restricted until July 01, 2029]

    Student Inquiries505

    [Student records restricted until July 01, 2084]

    Advisory Committee on University Budgets (ACUB)394Affirmative Action394Alumni394American Council on Education394American Council of Learned Societies394Appropriation Hearing394Arboretum394Arboretum Director Search394

    [Personnel records restricted until July 01, 2029]

    Arthur Miller394Articles394Arts and Humanities394Associate Provost394Association of American Universities2 folders394Association of American University Professors (AAUP)394AthleticsGeneral394Reese, Jeffrey505

    [Patient/client records restricted until July 01, 2099]

    Atlas Project394Audits394

    [Personnel records restricted until July 1, 2029]

    AwardsGeneral394MAGB394Henry Russel394Benefits394Bentley Historical LibraryGeneral394Appointments394

    [Personnel records restricted until July 01, 2029]

    Budget394
    BudgetGeneral5 folders395Budget and Planning395Business and Finance395Business and Industry395Business Operations395Calendar395Campus Safety395Capital Commitment Forms395Capital Projects395CentersGeneral395Appointments395

    [Personnel records restricted until July 01, 2029]

    Center for the Education of Women (CEW)General395Budget395Personnel395

    [Personnel records restricted until July 01, 2029]

    Center for Research on Learning and Teaching (CRLT)General395Budget395Childcare395Clements LibraryGeneral395Budget395Dann, John395

    [Personnel records restricted until July 01, 2029]

    Clinical Track395Commencement395Committee on the Economic Status of the Faculty (CESF)395Committee on Institutional CooperationGeneral4 folders395Director Search396Community Relations396Community Service and Learning, Center for396Compensation Study396Complex Systems396Complex Systems Appointments396

    [Personnel records restricted until July 01, 2029]

    Copyright396Consortium for International Earth Science Information Network396Consortiums396Continuing Education for Women396Corporate and Foundation Coordination Group396Corporate Relations396Delegation of Authority396Detroit396DevelopmentGeneral2 folders396Budget396Vice President for396Disabilities396Distinguished University Professorships396

    [Personnel records restricted until July 01, 2029]

    Diversity396Division of Research Development and Administration (DRDA)396Dual Careers396

    [Personnel records restricted until July 01, 2029]

    Economic Forecasting2 folders396Enrollment396Environment, Council on the396Events396Executive Officers396Faculty2 folders396Faculty Appointments396

    [Personnel records restricted until July 01, 2029]

    Faculty Working Group396Family Assessment Clinic396FinanceGeneral396VP Area396Financial AidGeneral396Budget396Financial Reports396Fleming Building396Ford Library396Ford Motor Company396Ford Nuclear Reactor396Foundations: General396Funding397General CounselGeneral397Attorney Grievance Commission505

    [Patient/client records restricted until July 01, 2099]

    Personnel397

    [Personnel records restricted until July 01, 2029]

    Gifts397Government: State397Government Relations397Graduate Employees Organization397Health Services Research Initiative397Health System397Higher Education397Honorary Degree3 folders397Hospital Executive Board9 foldersFolders 1-6397Folders 7-9398Housing398Human Resources and Affirmative Action2 folders398Indemnification398Indicators398Information Technology Division (ITD)2 folders398Institute for Labor and Industrial Relations398Institute for Continuing Legal Education398Institute of Gerontology398Institute for Social ResearchGeneral398Appointments398

    [Personnel records restricted until July 01, 2029]

    Institutes: General398Intellectual Property398Intergroup398InternationalGeneral398Appointments398General Counsel505

    [Patient/client records restricted until July 01, 2099]

    Invitations4 folders398Japanese Studies399Journalism399Keck Proposal399Kellogg Foundation399Knight Collaborative Engagement399Life Sciences6 folders399Life Sciences Search399

    [Personnel records restricted until July 01, 2029]

    Living/Learning2 folders399Martin Luther King, Jr.399Master Plan399Media Union399Medical Affairs399Medical Affairs, Executive Vice President for (EVPMA)399Medical CenterGeneral399Appointments399

    [Personnel records restricted until July 01, 2029]

    Executive Officer Meetings2 folders399Grievances399

    [Personnel records restricted until July 01, 2029]

    Medical Research Institute (MRI)399Mellon Foundation399Memberships399Michigan Branch of Telluride Association (MBTA)399Michigan Health Corporation3 folders399Michigan Society of Fellows400Michigan Student Assembly (MSA)General400Peace and Justice Commission505

    [Student records restricted until July 01, 2084]

    Middle English Dictionary400Midwest Universities Consortium for International Actives (MUCIA)400Millennium400Minorities400Miscellaneous400Multicultural Academic InitiativesGeneral400Budget400Museum of ArtGeneral400Budget400Musical Society400National Association of State Universities Land Grant Colleges (NASULGC)400National Science Foundation (NSF)400New Student Programs Budget400News and Information400Office of Academic Affairs (OAA) 7+12 folders400Office of Academic Affairs (OAA) 8+12 folders400Ombudsmen400Parking400Partnerships400Pathways400Peer Institutions400PersonnelGeneral400Grievances400

    [Personnel records restricted until July 01, 2029]

    Pew400Plant Extension400PoliceGeneral400Complaints505

    [Student records restricted until July 01, 2084]

    President's Council: State400Presidential Initiative Fund (PIF)400President's OfficeGeneral400Budget400Primary Research Scientists (PRS)400Professoriate401PromotionsGeneral401Appointments401

    [Personnel records restricted until July 01, 2029]

    Proposals2 folders401Provost's Advisory Council (PAC)401Provost's Faculty Initiative Program (PFIP)401

    [Personnel records restricted until July 01, 2029]

    Provost's Financial Advisory Committee (PFAC)401Public Goods401PsychologyAppointments401

    [Personnel records restricted until July 01, 2029]

    Grievances505

    [Student records restricted until July 01, 2084]

    RegentsGeneral2 folders401Communications3 folders401General Counsel505

    [Patient/client records restricted until July 01, 2099]

    RegistrarGeneral401Budget401Requests401Research2 folders401Research Appointments401

    [Personnel records restricted until July 01, 2029]

    Research, Vice President for401Reserve Officers Training Corps (ROTC)General401Appointments401

    [Personnel records restricted until July 01, 2029]

    Officer Education Program-Air Force401Officer Education Program-Army401Officer Education Program-Navy401
    Residency505

    [Student records restricted until July 01, 2084]

    Retention402

    [Personnel records restricted until July 01, 2029]

    Retirement402Safety Committee402SalaryGeneral402Exceptions402

    [Personnel records restricted until July 01, 2029]

    Scholarships and Fellowships402Science and Policy402Science and Technology402Search Committee402SearchesGeneral402

    [Personnel records restricted until July 01, 2029]

    Director of Public Safety402

    [Personnel records restricted until July 01, 2029]

    Education402

    [Personnel records restricted until July 01, 2029]

    Facilities and Operations, Vice President for402

    [Personnel records restricted until July 01, 2029]

    Flint402

    [Personnel records restricted until July 01, 2029]

    General Counsel402

    [Personnel records restricted until July 01, 2029]

    Information402

    [Personnel records restricted until July 01, 2029]

    International Institute402

    [Personnel records restricted until July 01, 2029]

    Kinesiology402

    [Personnel records restricted until July 01, 2029]

    Literature, Science and the Arts402

    [Personnel records restricted until July 01, 2029]

    Medical School2 folders402

    [Personnel records restricted until July 01, 2029]

    Music402

    [Personnel records restricted until July 01, 2029]

    Public Policy Studies402

    [Personnel records restricted until July 01, 2029]

    Research402

    [Personnel records restricted until July 01, 2029]

    University Library402

    [Personnel records restricted until July 01, 2029]

    University Relations402

    [Personnel records restricted until July 01, 2029]

    Vice President for Communications [PR Restricted until July 1, 2029]402
    Secretary of the University: Budget402Senate Advisory Committee on University Affairs (SACUA)General3 folders402Budget402Senate Assembly402Sexual Orientation402SpaceGeneral402Michigauma505

    [Patient/client records restricted until July 01, 2099]

    Spencer Foundation402StudentsGeneral403Deceased403Cantor, Courtney505

    [Patient/client records restricted until July 01, 2099]

    Grievances505

    [Student records restricted until July 01, 2084]

    Reese, Jeffrey505

    [Patient/client records restricted until July 01, 2099]

    Student AffairsGeneral403Appointments403

    [Personnel records restricted until July 01, 2029]

    Budget403
    Substance Abuse403Surveys403SweatshopGeneral403Sweatshop-Legal505

    [Patient/client records restricted until July 01, 2099]

    Sympathy403Task Forces403Teaching Assistants403Technology Transfer403Thurnau Professorships403Tuition and FeesGeneral403MSA Fees505

    [Patient/client records restricted until July 01, 2099]

    Turkish Chair403Undergraduate Education403Unit Assessment403University LibraryGeneral2 folders403Appointments403

    [Personnel records restricted until July 01, 2029]

    Budget403
    University of Michigan, Information about403University of Michigan Transportation Research Institute (UMTRI)403University Press403University RelationsGeneral403Vice President: Budget403Website InquiriesPersonnel403

    [Personnel records restricted until July 01, 2029]

    Students505

    [Student records restricted until July 01, 2084]

    Wiesner Policy Symposium403Whitaker Foundation403WomenGeneral2 folders403Stewart, Abigail403

    [Personnel records restricted until July 01, 2029]

    Woodrow Wilson National Fellowship Foundation404Working Group on Graduate and Professional Studies404Working Group: Interdisciplinary404Working Group on Organization404Working Group on Research404Working Group on Undergrad Teaching404Year of Humanities and Arts (YOHA)404
    Schools and Colleges FilesArchitecture and Urban Planning, School ofGeneral2 folders404Appointments404

    [Personnel records restricted until July 01, 2029]

    Budget404Budget Conference404Regents' Communications404
    Art and Design, School ofGeneral404Appointments404

    [Personnel records restricted until July 01, 2029]

    Budget404Regents' Communications404
    Business Administration, School ofGeneral404Appointments404

    [Personnel records restricted until July 01, 2029]

    Budget404Regents' Communications404Students505

    [Student records restricted until July 01, 2109]

    Dearborn Campus404Dentistry, School ofGeneral404Appointments404

    [Personnel records restricted until July 01, 2029]

    Budget404Regents' Communications404
    Education, School ofGeneral404Appointments404

    [Personnel records restricted until July 01, 2029]

    Budget404Regents' Communications404
    Engineering, College of405General2 folders405Budget405Budget Conference405Faculty Appointments2 folders405

    [Personnel records restricted until July 01, 2029]

    Regents' Communications405Students505

    [Student records restricted until July 01, 2084]

    Flint CampusGeneral405Chancellor Search505

    [Personnel records restricted until July 01, 2029]

    Students505

    [Student records restricted until July 01, 2084]

    Information, School ofGeneral405Budget405Personnel405

    [Personnel records restricted until July 01, 2029]

    Regents' Communication405
    Kinesiology DivisionGeneral405Budget405Personnel405

    [Personnel records restricted until July 01, 2029]

    Regents' Communication405
    Law SchoolGeneral405Admissions505

    [Patient/client records restricted until July 01, 2099]

    Appointments405

    [Personnel records restricted until July 01, 2029]

    Budget405Budget Conference405Regents' Communications405
    Literature, Science and the Arts, College ofGeneral3 folders405Budget405Faculty Appointments406

    [Personnel records restricted until July 01, 2029]

    Faculty Grievances406

    [Personnel records restricted until July 01, 2029]

    Faculty Recruiting406

    [Personnel records restricted until July 01, 2029]

    Ocean Drilling Program406Regents' Communications406
    Medical SchoolGeneral3 folders406Budget406Faculty Appointments406

    [Personnel records restricted until July 01, 2029]

    Regents' Communication406
    Music, School ofGeneral406Appointments406

    [Personnel records restricted until July 01, 2029]

    Budget406Grievances505

    [Student records restricted until July 01, 2084]

    Regents' Communication406Stein, Louise505

    [Patient/client records restricted until July 01, 2099]

    Natural Resources and the Environment, School ofGeneral406Budget406Personnel406

    [Personnel records restricted until July 01, 2029]

    Regents' Communications406
    Nursing, School of level3General406Appointments406

    [Personnel records restricted until July 01, 2029]

    Budget406Regents' Communications406Students505

    [Student records restricted until July 01, 2084]

    Pharmacy, College ofGeneral407Budget407Faculty and Appointments407

    [Personnel records restricted until July 01, 2029]

    Regents' Communications407
    Public Health, School ofGeneral407Appointments407

    [Personnel records restricted until July 01, 2029]

    Budget407Regents' Communications407
    Public Policy, School ofGeneral407Appointments407

    [Personnel records restricted until July 01, 2029]

    Budget407Regents' Communications407
    Rackham Graduate SchoolGeneral407Appointments407

    [Personnel records restricted until July 01, 2029]

    Center for Child and Family Complaint505

    [Patient/client records restricted until July 01, 2099]

    Budget407Budget Conference407Students505

    [Student records restricted until July 01, 2084]

    Recreational SportsBudget407Budget Conference407Social Work, School ofGeneral2 folders407Appointments407

    [Personnel records restricted until July 01, 2029]

    Budget407Regents' Communications407
    Chronological File5 foldersSeptember 1998-August 1999487
    1999/2000Alphabetical FilesAcademic AffairsGeneral407

    [Executive records restricted until July 01, 2020]

    Budget407

    [Executive records restricted until July 01, 2020]

    Academic Affairs Advisory Committee407

    [Executive records restricted until July 01, 2020]

    Academic Computing Advising Committee407

    [Executive records restricted until July 01, 2020]

    Academic Outreach-Budget407

    [Executive records restricted until July 01, 2020]

    Academic Policy Committee (APC)407

    [Executive records restricted until July 01, 2020]

    Academic Program Group (APG)4 folders407

    [Executive records restricted until July 01, 2020]

    Academic Program Group Development Subcommittee407

    [Executive records restricted until July 01, 2020]

    Academic Program Group: Research407

    [Executive records restricted until July 01, 2020]

    AccreditationGeneral3 folders408

    [Executive records restricted until July 01, 2020]

    Self-Study Report for Institutional Reaccreditation2 folders408

    [Executive records restricted until July 01, 2020]

    AdmissionsGeneral2 folders408

    [Executive records restricted until July 01, 2020]

    Budget408

    [Executive records restricted until July 01, 2020]

    Granger, Daniel505

    [Patient/client records restricted until July 01, 2100]

    Student Inquiries505

    [Student records restricted until July 01, 2085]

    Advisory Committee on University Budgets (ACUB)408

    [Executive records restricted until July 01, 2020]

    Alumni408

    [Executive records restricted until July 01, 2020]

    American Council on Education408

    [Executive records restricted until July 01, 2020]

    American Council of Learned Societies408

    [Executive records restricted until July 01, 2020]

    Appropriations408

    [Executive records restricted until July 01, 2020]

    Arboretum408

    [Executive records restricted until July 01, 2020]

    Arthur Miller408

    [Executive records restricted until July 01, 2020]

    Articles408

    [Executive records restricted until July 01, 2020]

    Arts of Citizenship408

    [Executive records restricted until July 01, 2020]

    Associate Provost3 folders408

    [Executive records restricted until July 01, 2020]

    Association of American Colleges and Universities409

    [Executive records restricted until July 01, 2020]

    Association of American Universities409

    [Executive records restricted until July 01, 2020]

    Association of American University Professors409

    [Executive records restricted until July 01, 2020]

    AthleticsGeneral2 folders409

    [Executive records restricted until July 01, 2020]

    Legal505

    [Patient/client records restricted until July 01, 2100]

    Recreational Sports409

    [Executive records restricted until July 01, 2020]

    Atlas Project409

    [Executive records restricted until July 01, 2020]

    Audits409

    [Personnel records restricted until July 01, 2030]

    AwardsGeneral409

    [Executive records restricted until July 01, 2020]

    MAGB409

    [Executive records restricted until July 01, 2020]

    Benefits409

    [Executive records restricted until July 01, 2020]

    Bentley Historical LibraryGeneral409

    [Executive records restricted until July 01, 2020]

    Budget409

    [Executive records restricted until July 01, 2020]

    Biomedical Research409

    [Executive records restricted until July 01, 2020]

    BudgetGeneral4 folders409

    [Executive records restricted until July 01, 2020]

    State Budget Request409

    [Executive records restricted until July 01, 2020]

    Budget and Planning409

    [Executive records restricted until July 01, 2020]

    Business and FinanceGeneral409

    [Executive records restricted until July 01, 2020]

    Budget409

    [Executive records restricted until July 01, 2020]

    Calendar409

    [Executive records restricted until July 01, 2020]

    Campaign Planning409

    [Executive records restricted until July 01, 2020]

    Capital Commitment Forms409

    [Executive records restricted until July 01, 2020]

    Capital Projects409

    [Executive records restricted until July 01, 2020]

    Carnegie Foundation409

    [Executive records restricted until July 01, 2020]

    Centers: General409

    [Executive records restricted until July 01, 2020]

    Center for the Continuing Education of Women (CEW): Budget410

    [Executive records restricted until July 01, 2020]

    Center for Research on Learning and Teaching (CRLT)General410

    [Executive records restricted until July 01, 2020]

    Budget410

    [Executive records restricted until July 01, 2020]

    Charter Schools410

    [Executive records restricted until July 01, 2020]

    Clements LibraryGeneral410

    [Executive records restricted until July 01, 2020]

    Budget410

    [Executive records restricted until July 01, 2020]

    Search410

    [Personnel records restricted until July 01, 2030]

    Clinical Track410

    [Executive records restricted until July 01, 2020]

    Commencement410

    [Executive records restricted until July 01, 2020]

    Committee on the Economic Status of the Faculty (CESF)410

    [Executive records restricted until July 01, 2020]

    Committee on Institutional Cooperation6 folders410

    [Executive records restricted until July 01, 2020]

    Communications410

    [Executive records restricted until July 01, 2020]

    Community Relations410

    [Executive records restricted until July 01, 2020]

    Community Service and LearningGeneral410

    [Executive records restricted until July 01, 2020]

    Appointments410

    [Personnel records restricted until July 01, 2030]

    Continuing Education for Women, Center for (CEW)410

    [Executive records restricted until July 01, 2020]

    Copyright410

    [Executive records restricted until July 01, 2020]

    Corporate Relations410

    [Executive records restricted until July 01, 2020]

    Delegation of Authority410

    [Executive records restricted until July 01, 2020]

    Detroit410

    [Executive records restricted until July 01, 2020]

    Detroit Observatory2 folders410

    [Executive records restricted until July 01, 2020]

    Development410

    [Executive records restricted until July 01, 2020]

    Development, Vice President for410

    [Executive records restricted until July 01, 2020]

    Distance Learning410

    [Executive records restricted until July 01, 2020]

    Distinguished University Professorships411

    [Personnel records restricted until July 01, 2030]

    Diversity411

    [Executive records restricted until July 01, 2020]

    Dual Careers411

    [Personnel records restricted until July 01, 2030]

    Economic Forecasting2 folders411

    [Executive records restricted until July 01, 2020]

    Enrollment411

    [Executive records restricted until July 01, 2020]

    Environment, Council on the411

    [Executive records restricted until July 01, 2020]

    Ethics411

    [Executive records restricted until July 01, 2020]

    Events411

    [Executive records restricted until July 01, 2020]

    Executive OfficersGeneral411

    [Executive records restricted until July 01, 2020]

    Appointments411

    [Personnel records restricted until July 01, 2030]

    Executive Vice President for Medical Affairs (EVPMA)411

    [Executive records restricted until July 01, 2020]

    FacultyGeneral2 folders411

    [Executive records restricted until July 01, 2020]

    Appointments411

    [Personnel records restricted until July 01, 2030]

    Faculty Compensation411

    [Executive records restricted until July 01, 2020]

    Faculty Work-Life Study Report411

    [Executive records restricted until July 01, 2020]

    Fathom411

    [Executive records restricted until July 01, 2020]

    Financial Reports7 folders411

    [Executive records restricted until July 01, 2020]

    FinanceGeneral412

    [Executive records restricted until July 01, 2020]

    Budget412

    [Executive records restricted until July 01, 2020]

    Financial AidGeneral412

    [Executive records restricted until July 01, 2020]

    Budget412

    [Executive records restricted until July 01, 2020]

    Students505

    [Student records restricted until July 01, 2085]

    Fleming Building412

    [Executive records restricted until July 01, 2020]

    Flexible Benefits412

    [Executive records restricted until July 01, 2020]

    Ford Library412

    [Personnel records restricted until July 01, 2030]

    Ford Motor Company412

    [Executive records restricted until July 01, 2020]

    Ford Nuclear Reactor412

    [Executive records restricted until July 01, 2020]

    Foundations: General412

    [Executive records restricted until July 01, 2020]

    FundingGeneral2 folders412

    [Executive records restricted until July 01, 2020]

    Appointments412

    [Personnel records restricted until July 01, 2030]

    "Gay Class" (English 317: "How to Be Gay")412

    [Personnel records restricted until July 01, 2030]

    General CounselGeneral505

    [Patient/client records restricted until July 01, 2100]

    Budget412

    [Executive records restricted until July 01, 2020]

    Gifts2 folders412

    [Executive records restricted until July 01, 2020]

    Global Change412

    [Executive records restricted until July 01, 2020]

    Government Relations412

    [Executive records restricted until July 01, 2020]

    Government: State412

    [Executive records restricted until July 01, 2020]

    Graduate Employees Organization (GEO) Negotiations2 folders412

    [Executive records restricted until July 01, 2020]

    Graduate Employees Organization (GEO) Tuition Assessment412

    [Executive records restricted until July 01, 2020]

    Health Science Council412

    [Executive records restricted until July 01, 2020]

    Health Services Research Initiative412

    [Executive records restricted until July 01, 2020]

    Health SystemGeneral412

    [Executive records restricted until July 01, 2020]

    General Counsel505

    [Patient/client records restricted until July 01, 2100]

    Higher Education412

    [Executive records restricted until July 01, 2020]

    Honorary Degree412

    [Executive records restricted until July 01, 2020]

    Hospital Executive Board7 foldersFolder 1412

    [Executive records restricted until July 01, 2020]

    Folders 2-7413

    [Executive records restricted until July 01, 2020]

    Housing413

    [Executive records restricted until July 01, 2020]

    Human Resources and Affirmative ActionGeneral413

    [Executive records restricted until July 01, 2020]

    Personnel413

    [Personnel records restricted until July 01, 2030]

    Indemnification413

    [Executive records restricted until July 01, 2020]

    Indirect Cost Recovery (ICR)413

    [Executive records restricted until July 01, 2020]

    Information Technology Division (ITD)General3 folders413

    [Executive records restricted until July 01, 2020]

    Budget413

    [Executive records restricted until July 01, 2020]

    Vice President for413

    [Executive records restricted until July 01, 2020]

    InstitutesGeneral413

    [Executive records restricted until July 01, 2020]

    Institute for Continuing Legal Education (ICLE)General413

    [Executive records restricted until July 01, 2020]

    Budget413

    [Executive records restricted until July 01, 2020]

    Institute of Gerontology413

    [Executive records restricted until July 01, 2020]

    Institute for Social ResearchGeneral413

    [Executive records restricted until July 01, 2020]

    Budget414

    [Executive records restricted until July 01, 2020]

    Personnel414

    [Personnel records restricted until July 01, 2030]

    Intellectual Property (IPO)414

    [Personnel records restricted until July 01, 2030]

    Interdisciplinary414

    [Executive records restricted until July 01, 2020]

    InternationalGeneral414

    [Executive records restricted until July 01, 2020]

    Appointments414

    [Personnel records restricted until July 01, 2030]

    Campus Committee on International Affairs4 folders414

    [Executive records restricted until July 01, 2020]

    International programs for School of Nursing and selected universities memorandums1998

    [Executive records restricted until July 1, 2020]

    International Institute External Review414

    [Executive records restricted until July 01, 2020]

    Keck Proposal414

    [Executive records restricted until July 01, 2020]

    Kellogg Foundation414

    [Executive records restricted until July 01, 2020]

    Knight Collaborative Engagement414

    [Executive records restricted until July 01, 2020]

    Life Sciences3 folders414

    [Executive records restricted until July 01, 2020]

    Living/Learning415

    [Executive records restricted until July 01, 2020]

    Marshall Scholarship415

    [Executive records restricted until July 01, 2020]

    Martin Luther King, Jr.415

    [Executive records restricted until July 01, 2020]

    Master Plan415

    [Executive records restricted until July 01, 2020]

    Media RightsGeneral415

    [Executive records restricted until July 01, 2020]

    Search415

    [Personnel records restricted until July 01, 2030]

    Media UnionGeneral2 folders415

    [Executive records restricted until July 01, 2020]

    Budget415

    [Executive records restricted until July 01, 2020]

    Medical Affairs415

    [Executive records restricted until July 01, 2020]

    Medical Center415

    [Executive records restricted until July 01, 2020]

    Mellon Foundation415

    [Executive records restricted until July 01, 2020]

    Memberships415

    [Executive records restricted until July 01, 2020]

    Michigan Campus Compact415

    [Executive records restricted until July 01, 2020]

    Michigan College University Partnership415

    [Executive records restricted until July 01, 2020]

    Michigan Health Corporation4 folders415

    [Executive records restricted until July 01, 2020]

    Michigan Student Assembly (MSA)415

    [Executive records restricted until July 01, 2020]

    Microelectromechanical Systems (MEMS)415

    [Executive records restricted until July 01, 2020]

    Midwest Universities Consortium for International Actives (MUCIA)415

    [Executive records restricted until July 01, 2020]

    Millennium415

    [Executive records restricted until July 01, 2020]

    Minorities415

    [Executive records restricted until July 01, 2020]

    Miscellaneous415

    [Executive records restricted until July 01, 2020]

    Multicultural Academic AffairsGeneral415

    [Executive records restricted until July 01, 2020]

    Initiatives415

    [Executive records restricted until July 01, 2020]

    Museum of ArtGeneral415

    [Executive records restricted until July 01, 2020]

    Budget415

    [Executive records restricted until July 01, 2020]

    Musical Society415

    [Executive records restricted until July 01, 2020]

    (NASULGC)416

    [Executive records restricted until July 01, 2020]

    National Science Foundation (NSF)General416

    [Executive records restricted until July 01, 2020]

    Neuroscience416

    [Executive records restricted until July 01, 2020]

    News and Information2 folders416

    [Executive records restricted until July 01, 2020]

    New Student ProgramsGeneral416

    [Executive records restricted until July 01, 2020]

    Budget416

    [Executive records restricted until July 01, 2020]

    Note Taking (Commercial)General416

    [Executive records restricted until July 01, 2020]

    Working Group416

    [Executive records restricted until July 01, 2020]

    Office of Academic Affairs (OAA) 8+12 folders416

    [Executive records restricted until July 01, 2020]

    Outreach416

    [Executive records restricted until July 01, 2020]

    Parking416

    [Executive records restricted until July 01, 2020]

    Partnerships416

    [Executive records restricted until July 01, 2020]

    Pathways3 folders416

    [Executive records restricted until July 01, 2020]

    Peer Institutions416

    [Executive records restricted until July 01, 2020]

    PersonnelGeneral416

    [Executive records restricted until July 01, 2020]

    Appointments416

    [Personnel records restricted until July 01, 2030]

    Pew416

    [Executive records restricted until July 01, 2020]

    Police416

    [Executive records restricted until July 01, 2020]

    President's Advisory Group (PAG)416

    [Executive records restricted until July 01, 2020]

    President's Advisory Committee on Women's Issues (PACWI)416

    [Executive records restricted until July 01, 2020]

    President's Council: State416

    [Executive records restricted until July 01, 2020]

    President's OfficeGeneral416

    [Executive records restricted until July 01, 2020]

    Budget416

    [Executive records restricted until July 01, 2020]

    Primary Research Scientists (PRS)416

    [Executive records restricted until July 01, 2020]

    Professoriate416

    [Executive records restricted until July 01, 2020]

    PromotionsGeneral416

    [Executive records restricted until July 01, 2020]

    Appointments416

    [Personnel records restricted until July 01, 2030]

    Proposals4 folders417

    [Executive records restricted until July 01, 2020]

    Provost's Council on Student Honors (PCSH)417

    [Executive records restricted until July 01, 2020]

    Provost's Faculty Initiative Program (PFIP)417

    [Personnel records restricted until July 01, 2030]

    PsychologyGeneral417

    [Executive records restricted until July 01, 2020]

    Appointments417

    [Personnel records restricted until July 01, 2030]

    Student505

    [Student records restricted until July 01, 2085]

    Public Goods417

    [Executive records restricted until July 01, 2020]

    RegentsGeneral417

    [Executive records restricted until July 01, 2020]

    Communications4 folders417

    [Executive records restricted until July 01, 2020]

    RegistrarGeneral417

    [Executive records restricted until July 01, 2020]

    Budget417

    [Executive records restricted until July 01, 2020]

    Statistics417

    [Executive records restricted until July 01, 2020]

    Students505

    [Student records restricted until July 01, 2085]

    Requests417

    [Executive records restricted until July 01, 2020]

    ResearchGeneral Folders 1-2417

    [Executive records restricted until July 01, 2020]

    General Folder 3418

    [Executive records restricted until July 01, 2020]

    Budget418

    [Executive records restricted until July 01, 2020]

    Personnel Grievance418

    [Personnel records restricted until July 01, 2030]

    Reproductive Science Director Search418

    [Personnel records restricted until July 01, 2030]

    Reserve Officers Training Corps (ROTC)General418

    [Executive records restricted until July 01, 2020]

    Officer Education Program-Air Force418

    [Executive records restricted until July 01, 2020]

    Officer Education Program-Army418

    [Executive records restricted until July 01, 2020]

    Officer Education Program-Navy418

    [Executive records restricted until July 01, 2020]

    Residency505

    [Student records restricted until July 01, 2085]

    Résumés418

    [Personnel records restricted until July 01, 2030]

    Retirement418

    [Executive records restricted until July 01, 2020]

    Rhodes Scholarship418

    [Executive records restricted until July 01, 2020]

    "Road Scholars"418

    [Executive records restricted until July 01, 2020]

    Safety Committee418

    [Executive records restricted until July 01, 2020]

    SalaryGeneral418

    [Executive records restricted until July 01, 2020]

    Exceptions418

    [Personnel records restricted until July 01, 2030]

    Scholarships and Fellowships418

    [Executive records restricted until July 01, 2020]

    Science and Policy418

    [Executive records restricted until July 01, 2020]

    Science and Technology418

    [Executive records restricted until July 01, 2020]

    Sea Grant418

    [Executive records restricted until July 01, 2020]

    SearchesArt and Design3 folders418

    [Personnel records restricted until July 01, 2030]

    Communication418

    [Personnel records restricted until July 01, 2030]

    Dearborn418

    [Personnel records restricted until July 01, 2030]

    Education418

    [Personnel records restricted until July 01, 2030]

    General418

    [Executive records restricted until July 01, 2020]

    Information418

    [Personnel records restricted until July 01, 2030]

    Media Union418

    [Executive records restricted until July 01, 2020]

    Music418

    [Personnel records restricted until July 01, 2030]

    Secretary of the University: Budget418

    [Executive records restricted until July 01, 2020]

    Senate Advisory Committee on University Affairs (SACUA)General3 folders418

    [Executive records restricted until July 01, 2020]

    Budget418

    [Executive records restricted until July 01, 2020]

    Senate Assembly418

    [Executive records restricted until July 01, 2020]

    Sexual Orientation419

    [Executive records restricted until July 01, 2020]

    Sloan Pre-tenure Leave Fellowship Program419

    [Executive records restricted until July 01, 2020]

    SpaceGeneral419

    [Executive records restricted until July 01, 2020]

    Recruitment and Retention419

    [Personnel records restricted until July 01, 2100]

    Spencer Foundation419

    [Executive records restricted until July 01, 2020]

    Strategic Planning419

    [Executive records restricted until July 01, 2020]

    StudentsGeneral2 folders419

    [Executive records restricted until July 01, 2020]

    Deceased419

    [Executive records restricted until July 01, 2020]

    General Counsel505

    [Patient/client records restricted until July 01, 2100]

    Grievances505

    [Student records restricted until July 01, 2085]

    Michigauma419

    [Executive records restricted until July 01, 2020]

    Student AffairsGeneral419

    [Executive records restricted until July 01, 2020]

    Budget419

    [Executive records restricted until July 01, 2020]

    Grievances419

    [Personnel records restricted until July 01, 2030]

    Substance AbuseGeneral2 folders419

    [Executive records restricted until July 01, 2020]

    Personnel419

    [Personnel records restricted until July 01, 2030]

    Surveys419

    [Executive records restricted until July 01, 2020]

    Sweatshop419

    [Executive records restricted until July 01, 2020]

    Sympathy419

    [Executive records restricted until July 01, 2020]

    Task Forces419

    [Executive records restricted until July 01, 2020]

    Technology Transfer419

    [Executive records restricted until July 01, 2020]

    Thurnau Professorships419

    [Executive records restricted until July 01, 2020]

    Tuition and Fees419

    [Executive records restricted until July 01, 2020]

    Undergraduate Education419

    [Executive records restricted until July 01, 2020]

    University LibraryGeneral419

    [Executive records restricted until July 01, 2020]

    Budget419

    [Executive records restricted until July 01, 2020]

    Searches419

    [Personnel records restricted until July 01, 2030]

    University of Michigan Transportation Research Institute (UMTRI)General419

    [Executive records restricted until July 01, 2020]

    Personnel419

    [Personnel records restricted until July 01, 2030]

    University PressGeneral419

    [Executive records restricted until July 01, 2020]

    Budget419

    [Executive records restricted until July 01, 2020]

    University RelationsGeneral419

    [Executive records restricted until July 01, 2020]

    Vice President: Budget419

    [Executive records restricted until July 01, 2020]

    Versity419

    [Executive records restricted until July 01, 2020]

    Website InquiriesGeneral419

    [Executive records restricted until July 01, 2020]

    Personnel419

    [Personnel records restricted until July 01, 2030]

    Students505

    [Student records restricted until July 01, 2085]

    Whitaker Foundation419

    [Executive records restricted until July 01, 2020]

    Wilson Foundation419

    [Executive records restricted until July 01, 2020]

    WomenGeneral2 folders419

    [Executive records restricted until July 01, 2020]

    Appointments419

    [Personnel records restricted until July 01, 2030]

    Y2K419

    [Executive records restricted until July 01, 2020]

    Schools and Colleges FilesArchitecture and Urban Planning, School ofGeneral420

    [Executive records restricted until July 01, 2020]

    Appointments420

    [Personnel records restricted until July 01, 2030]

    Budget420

    [Executive records restricted until July 01, 2020]

    Art and Design, School ofGeneral420

    [Executive records restricted until July 01, 2020]

    Appointments420

    [Personnel records restricted until July 01, 2030]

    Budget420

    [Executive records restricted until July 01, 2020]

    Business Administration, School ofGeneral420

    [Executive records restricted until July 01, 2020]

    Appointments420

    [Personnel records restricted until July 01, 2030]

    Budget420

    [Executive records restricted until July 01, 2020]

    Davis Institute420

    [Executive records restricted until July 01, 2020]

    Students505

    [Student records restricted until July 01, 2085]

    Dearborn CampusGeneral420

    [Executive records restricted until July 01, 2020]

    Appointments420

    [Personnel records restricted until July 01, 2030]

    Dentistry, School ofGeneral420

    [Executive records restricted until July 01, 2020]

    Appointments420

    [Personnel records restricted until July 01, 2030]

    Budget420

    [Executive records restricted until July 01, 2020]

    Education, School ofGeneral420

    [Executive records restricted until July 01, 2020]

    Appointments420

    [Personnel records restricted until July 01, 2030]

    Budget420

    [Executive records restricted until July 01, 2020]

    Engineering, College ofGeneral2 folders421

    [Executive records restricted until July 01, 2020]

    Appointments421

    [Personnel records restricted until July 01, 2030]

    Budget421

    [Executive records restricted until July 01, 2020]

    Murnane/Kapteyn421

    [Personnel records restricted until July 01, 2030]

    Personnel Grievances421

    [Personnel records restricted until July 01, 2030]

    Regents' Communications421

    [Executive records restricted until July 01, 2020]

    Flint CampusGeneral Counsel505

    [Patient/client records restricted until July 01, 2100]

    Information, School ofGeneral421

    [Executive records restricted until July 01, 2020]

    Appointments421

    [Personnel records restricted until July 01, 2030]

    Budget Conference421

    [Executive records restricted until July 01, 2020]

    Kinesiology DivisionGeneral421

    [Executive records restricted until July 01, 2020]

    Appointments421

    [Personnel records restricted until July 01, 2030]

    Budget421

    [Executive records restricted until July 01, 2020]

    Law SchoolGeneral421

    [Executive records restricted until July 01, 2020]

    Budget421

    [Executive records restricted until July 01, 2020]

    Literature, Science and the Arts, College ofGeneral (3folders)421

    [Executive records restricted until July 01, 2020]

    Budget421

    [Executive records restricted until July 01, 2020]

    Faculty Appointments421

    [Personnel records restricted until July 01, 2030]

    Faculty Grievances422

    [Personnel records restricted until July 01, 2030]

    History of Art External Review422

    [Executive records restricted until July 01, 2020]

    Recruitment and Retention422

    [Personnel records restricted until July 01, 2030]

    Regents' Communications422

    [Executive records restricted until July 01, 2020]

    Medical SchoolGeneral2 folders422

    [Executive records restricted until July 01, 2020]

    Budget422

    [Executive records restricted until July 01, 2020]

    Faculty Appointments422

    [Personnel records restricted until July 01, 2030]

    Recruitment and Retention422

    [Personnel records restricted until July 01, 2030]

    Regents' Communication422

    [Executive records restricted until July 01, 2020]

    Students505

    [Student records restricted until July 01, 2085]

    Music, School ofGeneral422

    [Executive records restricted until July 01, 2020]

    Appointments422

    [Personnel records restricted until July 01, 2030]

    Budget422

    [Executive records restricted until July 01, 2020]

    Faculty Grievances422

    [Personnel records restricted until July 01, 2030]

    Students505

    [Student records restricted until July 01, 2085]

    Natural Resources and the Environment, School ofGeneral2 folders422

    [Executive records restricted until July 01, 2020]

    Appointments422

    [Personnel records restricted until July 01, 2030]

    Budget422

    [Executive records restricted until July 01, 2020]

    Nursing, School ofGeneral422

    [Executive records restricted until July 01, 2020]

    Appointments422

    [Personnel records restricted until July 01, 2030]

    Budget422

    [Executive records restricted until July 01, 2020]

    Pharmacy, College ofGeneral422

    [Executive records restricted until July 01, 2020]

    Appointments422

    [Personnel records restricted until July 01, 2030]

    Budget422

    [Executive records restricted until July 01, 2020]

    Public Health, School ofGeneral2 folders423

    [Executive records restricted until July 01, 2020]

    Appointments423

    [Personnel records restricted until July 01, 2030]

    Budget423

    [Executive records restricted until July 01, 2020]

    Self-Study Report2 volumes423

    [Executive records restricted until July 01, 2020]

    Public Policy, School ofGeneral423

    [Executive records restricted until July 01, 2020]

    Appointments423

    [Personnel records restricted until July 01, 2030]

    Budget423

    [Executive records restricted until July 01, 2020]

    General Counsel505

    [Patient/client records restricted until July 01, 2100]

    Rackham Graduate SchoolGeneral423

    [Executive records restricted until July 01, 2020]

    Budget423

    [Executive records restricted until July 01, 2020]

    Students505

    [Student records restricted until July 01, 2085]

    Social Work, School ofGeneral423

    [Executive records restricted until July 01, 2020]

    Appointments423

    [Personnel records restricted until July 01, 2030]

    Budget423

    [Executive records restricted until July 01, 2020]

    Chronological Files1 folderSeptember-December 1999487January-August, 2000488
    2000/2001Alphabetical FilesAcademic AffairsGeneral423

    [Executive records restricted until July 01, 2021]

    Budget423

    [Executive records restricted until July 01, 2021]

    Personnel423

    [Personnel records restricted until July 01, 2031]

    Academic Affairs Advisory CommitteeGeneral423

    [Executive records restricted until July 01, 2021]

    Personnel423

    [Personnel records restricted until July 01, 2031]

    Academic Program Group (APG)4 foldersFolders 1-3423

    [Executive records restricted until July 01, 2021]

    Folders 4424

    [Executive records restricted until July 01, 2021]

    Academic Program Group Development Subcommittee424

    [Executive records restricted until July 01, 2021]

    Accreditation424

    [Executive records restricted until July 01, 2021]

    AdmissionsGeneral2 folders424

    [Executive records restricted until July 01, 2021]

    Student Grievances505

    [Student records restricted until July 01, 2041]

    Affiliation Agreements2 folders424

    [Executive records restricted until July 01, 2021]

    Affirmative Action424

    [Executive records restricted until July 01, 2021]

    AlumniGeneral424

    [Executive records restricted until July 01, 2021]

    Budget424

    [Executive records restricted until July 01, 2021]

    American Academy of Arts and Sciences (AAAS)424

    [Executive records restricted until July 01, 2021]

    American Association for Higher Education (AAHE)424

    [Executive records restricted until July 01, 2021]

    American Council on Education (ACE)424

    [Executive records restricted until July 01, 2021]

    American Council of Learned Societies (ACLS)424

    [Executive records restricted until July 01, 2021]

    Appropriations424

    [Executive records restricted until July 01, 2021]

    Arboretum424

    [Executive records restricted until July 01, 2021]

    Arthur Miller424

    [Executive records restricted until July 01, 2021]

    Articles424

    [Executive records restricted until July 01, 2021]

    Arts of Citizenship424

    [Executive records restricted until July 01, 2021]

    Arts at Michigan424

    [Executive records restricted until July 01, 2021]

    Associate Provosts5 foldersFolders 1-2424

    [Executive records restricted until July 01, 2021]

    Folders 3-5425

    [Executive records restricted until July 01, 2021]

    Association of American Colleges and Universities (AACL)425

    [Executive records restricted until July 01, 2021]

    Association of American Universities (AAU)General425

    [Executive records restricted until July 01, 2021]

    Personnel425

    [Personnel records restricted until July 01, 2031]

    AthleticsGeneral2 folders425

    [Executive records restricted until July 01, 2021]

    Budget425

    [Executive records restricted until July 01, 2021]

    General Counsel505

    [Patient/client records restricted until July 01, 2100]

    Recreational Sports425

    [Executive records restricted until July 01, 2021]

    Search425

    [Personnel records restricted until July 01, 2031]

    Atlantic Studies425

    [Executive records restricted until July 01, 2021]

    Atlas Project425

    [Executive records restricted until July 01, 2021]

    Audits425

    [Executive records restricted until July 01, 2021]

    AwardsGeneral425

    [Executive records restricted until July 01, 2021]

    MAGB425

    [Executive records restricted until July 01, 2021]

    Benefits425

    [Executive records restricted until July 01, 2021]

    Bentley Historical LibraryGeneral425

    [Executive records restricted until July 01, 2021]

    Appointments425

    [Personnel records restricted until July 01, 2030]

    Budget425

    [Executive records restricted until July 01, 2021]

    Biology425

    [Executive records restricted until July 01, 2021]

    Budget8 foldersFolders 1-3425

    [Executive records restricted until July 01, 2021]

    Budget8 foldersFolders 4-8426

    [Executive records restricted until July 01, 2021]

    Auxilliary Units426

    [Executive records restricted until July 01, 2021]

    State Budget Request426

    [Executive records restricted until July 01, 2021]

    Calendar426

    [Executive records restricted until July 01, 2021]

    Campaign Planning426

    [Executive records restricted until July 01, 2021]

    Capital Commitment Forms426

    [Executive records restricted until July 01, 2021]

    Capital Projects426

    [Executive records restricted until July 01, 2021]

    Carnegie Foundation426

    [Executive records restricted until July 01, 2021]

    Center for the Education of Women (CEW)General426

    [Executive records restricted until July 01, 2021]

    Budget426

    [Executive records restricted until July 01, 2021]

    Center for Research on Learning and Teaching (CRLT)General426

    [Executive records restricted until July 01, 2021]

    Budget426

    [Executive records restricted until July 01, 2021]

    Child Care426

    [Executive records restricted until July 01, 2021]

    Clements LibraryGeneral426

    [Executive records restricted until July 01, 2021]

    Budget426

    [Executive records restricted until July 01, 2021]

    Clinical Track426

    [Personnel records restricted until July 01, 2031]

    CommencementGeneral426

    [Executive records restricted until July 01, 2021]

    Committee on the Economic Status of the Faculty (CESF)426

    [Executive records restricted until July 01, 2021]

    Committee on Institutional CooperationGeneral3 folders426

    [Executive records restricted until July 01, 2021]

    Site Visit426

    [Executive records restricted until July 01, 2021]

    Communications, Vice President for426

    [Executive records restricted until July 01, 2021]

    Community Relations427

    [Executive records restricted until July 01, 2021]

    Community Service, Center for427

    [Executive records restricted until July 01, 2021]

    Concealed Weapons427

    [Executive records restricted until July 01, 2021]

    Copyright427

    [Executive records restricted until July 01, 2021]

    Corporate Relations427

    [Executive records restricted until July 01, 2021]

    Deaf and Hard of HearingGeneral427

    [Executive records restricted until July 01, 2021]

    Personnel427

    [Personnel records restricted until July 01, 2031]

    Program Evaluation427

    [Executive records restricted until July 01, 2021]

    Delegation of Authority427

    [Executive records restricted until July 01, 2021]

    Detroit2 folders427

    [Executive records restricted until July 01, 2021]

    DevelopmentGeneral427

    [Executive records restricted until July 01, 2021]

    Budget427

    [Executive records restricted until July 01, 2021]

    Disability2 folders427

    [Executive records restricted until July 01, 2021]

    Distance Learning427

    [Executive records restricted until July 01, 2021]

    Distinguished University Professorships427

    [Personnel records restricted until July 01, 2031]

    Diversity427

    [Executive records restricted until July 01, 2021]

    Dual Careers427

    [Personnel records restricted until July 01, 2031]

    Economic Forecasting2 folders427

    [Executive records restricted until July 01, 2021]

    Education for Democracy427

    [Executive records restricted until July 01, 2021]

    English Language Institute (ELI)427

    [Executive records restricted until July 01, 2021]

    Enrollment427

    [Executive records restricted until July 01, 2021]

    Environment427

    [Executive records restricted until July 01, 2021]

    Erb427

    [Executive records restricted until July 01, 2021]

    Events427

    [Executive records restricted until July 01, 2021]

    Executive CommitteeGeneral427

    [Executive records restricted until July 01, 2021]

    Duderstadt, James427

    [Personnel records restricted until July 01, 2031]

    Facilities427

    [Executive records restricted until July 01, 2021]

    FacultyGeneral427

    [Executive records restricted until July 01, 2021]

    Personnel427

    [Personnel records restricted until July 01, 2031]

    Students505

    [Student records restricted until July 01, 2086]

    Faculty Compensation427

    [Executive records restricted until July 01, 2021]

    Fathom427

    [Executive records restricted until July 01, 2021]

    FinanceGeneral427

    [Executive records restricted until July 01, 2021]

    Chief Financial Officer427

    [Executive records restricted until July 01, 2021]

    Financial AidGeneral428

    [Executive records restricted until July 01, 2021]

    Budget428

    [Executive records restricted until July 01, 2021]

    Students505

    [Student records restricted until July 01, 2086]

    Financial Reports11 folders428

    [Executive records restricted until July 01, 2021]

    Fleming Building428

    [Executive records restricted until July 01, 2021]

    Flexible Benefits428

    [Executive records restricted until July 01, 2021]

    Flexible Funds428

    [Executive records restricted until July 01, 2021]

    Ford Foundation428

    [Executive records restricted until July 01, 2021]

    Ford Nuclear Reactor428

    [Executive records restricted until July 01, 2021]

    Foundations: General428

    [Executive records restricted until July 01, 2021]

    Funding428

    [Executive records restricted until July 01, 2021]

    "Gay Class" (English 317: "How to Be Gay")428

    [Executive records restricted until July 01, 2021]

    Gender Equity428

    [Executive records restricted until July 01, 2021]

    General CounselGeneral505

    [Patient/client records restricted until July 01, 2101]

    Budget428

    [Executive records restricted until July 01, 2021]

    Personnel428

    [Personnel records restricted until July 01, 2031]

    Gifts429

    [Executive records restricted until July 01, 2021]

    Government Relations429

    [Executive records restricted until July 01, 2021]

    Government Relations, Vice President forGeneral429

    [Executive records restricted until July 01, 2021]

    Search429

    [Personnel records restricted until July 01, 2031]

    Government: State429

    [Executive records restricted until July 01, 2021]

    Graduate Employees Organization (GEO)General429

    [Executive records restricted until July 01, 2021]

    Grievances429

    [Personnel records restricted until July 01, 2031]

    Health Science Council429

    [Personnel records restricted until July 01, 2031]

    Henry Russel Lecture429

    [Executive records restricted until July 01, 2021]

    Higher Education429

    [Executive records restricted until July 01, 2021]

    Honorary Degree429

    [Executive records restricted until July 01, 2021]

    Hospital Executive Board (HEB)/Hospitals and Health Centers Executive Board (HHCEB)5 folders429

    [Executive records restricted until July 01, 2021]

    HousingGeneral429

    [Executive records restricted until July 01, 2021]

    Budget429

    [Executive records restricted until July 01, 2021]

    Students505

    [Student records restricted until July 01, 2086]

    Human Resources and Affirmative Action (HRAA)Personnel429

    [Personnel records restricted until July 01, 2031]

    Imagining America429

    [Executive records restricted until July 01, 2021]

    Indemnification505

    [Patient/client records restricted until July 01, 2101]

    Information Technology Division (ITD)General2 folders429

    [Executive records restricted until July 01, 2021]

    Budget430

    [Executive records restricted until July 01, 2021]

    Institutes: General430

    [Executive records restricted until July 01, 2021]

    Institute of Gerontology430

    [Executive records restricted until July 01, 2021]

    Institute for Social ResearchGeneral2 folders430

    [Executive records restricted until July 01, 2021]

    Appointments430

    [Personnel records restricted until July 01, 2031]

    Budget430

    [Executive records restricted until July 01, 2021]

    Intellectual PropertyGeneral2 folders430

    [Executive records restricted until July 01, 2021]

    Personnel430

    [Personnel records restricted until July 01, 2031]

    Interdisciplinary430

    [Executive records restricted until July 01, 2021]

    International InstituteGeneral2 folders430

    [Executive records restricted until July 01, 2021]

    Budget430

    [Executive records restricted until July 01, 2021]

    Kellogg Foundation430

    [Executive records restricted until July 01, 2021]

    Knight Collaborative Engagement430

    [Executive records restricted until July 01, 2021]

    Labor Standards and Human Rights430

    [Executive records restricted until July 01, 2021]

    Life Sciences: Undergraduate430

    [Executive records restricted until July 01, 2021]

    Living/Learning430

    [Executive records restricted until July 01, 2021]

    Martin Luther King, Jr.430

    [Executive records restricted until July 01, 2021]

    Media Rights430

    [Executive records restricted until July 01, 2021]

    Media UnionGeneral2 folders430

    [Executive records restricted until July 01, 2021]

    Budget430

    [Executive records restricted until July 01, 2021]

    Medical AffairsGeneral430

    [Executive records restricted until July 01, 2021]

    Personnel430

    [Personnel records restricted until July 01, 2031]

    Medical Center430

    [Executive records restricted until July 01, 2021]

    Mellon Foundation2 folders430

    [Executive records restricted until July 01, 2021]

    Memberships430

    [Executive records restricted until July 01, 2021]

    Merck430

    [Executive records restricted until July 01, 2021]

    Mentoring430

    [Executive records restricted until July 01, 2021]

    Michigan Campus Compact430

    [Executive records restricted until July 01, 2021]

    Michigan Economic Development Corporation430

    [Executive records restricted until July 01, 2021]

    Michigan Health Corporation3 folders430

    [Executive records restricted until July 01, 2021]

    Midwest Universities Consortium for International Activities (MUCIA)431

    [Executive records restricted until July 01, 2021]

    Millennium431

    [Executive records restricted until July 01, 2021]

    Minorities2 foldersGeneral431

    [Executive records restricted until July 01, 2021]

    Students505

    [Student records restricted until July 01, 2086]

    Miscellaneous431

    [Executive records restricted until July 01, 2021]

    Multicultural Initiatives431

    [Executive records restricted until July 01, 2021]

    Museum of ArtGeneral431

    [Executive records restricted until July 01, 2021]

    Budget431

    [Executive records restricted until July 01, 2021]

    Naked Mile431

    [Executive records restricted until July 01, 2021]

    National Association of State Universities Land Grant Colleges (NASULGC)431

    [Executive records restricted until July 01, 2021]

    National Science Foundation431

    [Executive records restricted until July 01, 2021]

    NeuroscienceGeneral431

    [Executive records restricted until July 01, 2021]

    Search431

    [Personnel records restricted until July 01, 2031]

    New Student Programs431

    [Executive records restricted until July 01, 2021]

    News and InformationGeneral2 folders431

    [Executive records restricted until July 01, 2021]

    Search431

    [Personnel records restricted until July 01, 2031]

    Note Taking (Commercial)431

    [Executive records restricted until July 01, 2021]

    Office of Academic Affairs (OAA) 8+1431

    [Executive records restricted until July 01, 2021]

    Outreach431

    [Executive records restricted until July 01, 2021]

    Partnerships431

    [Executive records restricted until July 01, 2021]

    Pathways2 folders431

    [Executive records restricted until July 01, 2021]

    Peer Institutions431

    [Executive records restricted until July 01, 2021]

    PersonnelGeneral431

    [Executive records restricted until July 01, 2021]

    Grievance431

    [Personnel records restricted until July 01, 2031]

    Police505

    [Patient/client records restricted until July 01, 2101]

    Prescription Drugs2 folders431

    [Executive records restricted until July 01, 2021]

    President's Advisory Committee on Women's Issues (PACWI)431

    [Executive records restricted until July 01, 2021]

    President's Council: State431

    [Executive records restricted until July 01, 2021]

    President's OfficeGeneral431

    [Executive records restricted until July 01, 2021]

    Budget431

    [Executive records restricted until July 01, 2021]

    Primary Research Scientists (PRS)431

    [Executive records restricted until July 01, 2021]

    Promotions431

    [Executive records restricted until July 01, 2021]

    Proposals3 folders431

    [Executive records restricted until July 01, 2021]

    Provost's Council on Student Honors (PCSH)432

    [Executive records restricted until July 01, 2021]

    Provost's Faculty Initiative Program (PFIP)432

    [Personnel records restricted until July 01, 2031]

    Psychology432

    [Executive records restricted until July 01, 2021]

    Public Goods432

    [Executive records restricted until July 01, 2021]

    RegentsGeneral2 folders432

    [Executive records restricted until July 01, 2021]

    Appointments432

    [Personnel records restricted until July 01, 2031]

    Communications432

    [Executive records restricted until July 01, 2021]

    RegistrarGeneral432

    [Executive records restricted until July 01, 2021]

    Budget432

    [Executive records restricted until July 01, 2021]

    Students505

    [Student records restricted until July 01, 2041]

    Requests2 folders432

    [Executive records restricted until July 01, 2021]

    ResearchGeneral2 folders432

    [Executive records restricted until July 01, 2021]

    Budget432

    [Executive records restricted until July 01, 2021]

    Personnel433

    [Personnel records restricted until July 01, 2031]

    Reserve Officers Training Corps (ROTC)General433

    [Executive records restricted until July 01, 2021]

    Officer Education Programs433

    [Executive records restricted until July 01, 2021]

    ResidencyGeneral433

    [Executive records restricted until July 01, 2021]

    General Counsel505

    [Patient/client records restricted until July 01, 2101]

    Students505

    [Student records restricted until July 01, 2086]

    RésumésGeneral433

    [Executive records restricted until July 01, 2021]

    Recruitment433

    [Personnel records restricted until July 01, 2031]

    RetirementGeneral433

    [Executive records restricted until July 01, 2021]

    Retirement Agreement433

    [Personnel records restricted until July 01, 2031]

    Rhodes Scholarship433

    [Executive records restricted until July 01, 2021]

    "Roads Scholars"433

    [Executive records restricted until July 01, 2021]

    Royal Shakespeare Company433

    (includes audio cassette tape)

    [Executive records restricted until July 01, 2021]

    Safety Committee433

    [Executive records restricted until July 01, 2021]

    SalaryGeneral433

    [Executive records restricted until July 01, 2021]

    Grievances433

    [Personnel records restricted until July 01, 2031]

    Scholarships and Fellowships433

    [Executive records restricted until July 01, 2021]

    SearchesAthletics433

    [Personnel records restricted until July 01, 2031]

    Business Administration433

    [Personnel records restricted until July 01, 2031]

    General Searches433

    [Personnel records restricted until July 01, 2031]

    Human Resources and Affirmative Action433

    [Personnel records restricted until July 01, 2031]

    Internal Medicine433

    [Personnel records restricted until July 01, 2031]

    School of Natural Resources and the Environment433

    [Personnel records restricted until July 01, 2031]

    Student Affairs433

    [Personnel records restricted until July 01, 2031]

    Secretary of the University Budget433

    [Executive records restricted until July 01, 2021]

    Senate Advisory Committee on University Affairs (SACUA)General2 folders433

    [Executive records restricted until July 01, 2021]

    Budget433

    [Executive records restricted until July 01, 2021]

    Senate Assembly433

    [Executive records restricted until July 01, 2021]

    Sloan Pre-tenure Leave Fellowship Program433

    [Executive records restricted until July 01, 2021]

    Space433

    [Executive records restricted until July 01, 2021]

    Spencer Foundation433

    [Executive records restricted until July 01, 2021]

    StudentsGeneral2 folders433

    [Executive records restricted until July 01, 2021]

    Courtney Cantor505

    [Patient/client records restricted until July 01, 2101]

    Deceased434

    [Executive records restricted until July 01, 2021]

    Grievances/Inquiries505

    [Student records restricted until July 01, 2086]

    Michigamua434

    [Executive records restricted until July 01, 2021]

    Student AffairsGeneral434

    [Executive records restricted until July 01, 2021]

    Budget434

    [Executive records restricted until July 01, 2021]

    Substance AbuseGeneral434

    [Executive records restricted until July 01, 2021]

    Appointments434

    [Personnel records restricted until July 01, 2031]

    Surveys3 folders434

    [Executive records restricted until July 01, 2021]

    Sustainable Systems434

    [Executive records restricted until July 01, 2021]

    Sweatshop434

    [Executive records restricted until July 01, 2021]

    Sympathy434

    [Executive records restricted until July 01, 2021]

    Thurnau Professorships434

    [Executive records restricted until July 01, 2021]

    Tuition and FeesGeneral434

    [Executive records restricted until July 01, 2021]

    General Counsel505

    [Patient/client records restricted until July 01, 2101]

    Undergraduate Education434

    [Executive records restricted until July 01, 2021]

    Universitas434

    [Executive records restricted until July 01, 2021]

    University LibraryGeneral434

    [Executive records restricted until July 01, 2021]

    Budget434

    [Executive records restricted until July 01, 2021]

    University of Michigan Transportation Research Institute (UMTRI) Budget434

    [Executive records restricted until July 01, 2021]

    University Musical SocietyGeneral434

    [Executive records restricted until July 01, 2021]

    Budget434

    [Executive records restricted until July 01, 2021]

    University PressGeneral434

    [Executive records restricted until July 01, 2021]

    Budget434

    [Executive records restricted until July 01, 2021]

    Director Search434

    [Personnel records restricted until July 01, 2031]

    Washington Updates434

    [Executive records restricted until July 01, 2021]

    WebsiteGeneral434

    [Executive records restricted until July 01, 2021]

    Students505

    [Student records restricted until July 01, 2086]

    Whitaker Foundation2 folders434

    [Executive records restricted until July 01, 2021]

    Wilson Center434

    [Executive records restricted until July 01, 2021]

    WomenGeneral2 folders435

    [Executive records restricted until July 01, 2021]

    Gender Tenure Gap435

    [Executive records restricted until July 01, 2021]

    Searches435

    [Personnel records restricted until July 01, 2031]

    Work-Life Study435

    [Executive records restricted until July 01, 2021]

    Schools and Colleges FilesArchitecture and Urban Planning, School ofGeneral435

    [Executive records restricted until July 01, 2021]

    Appointments435

    [Personnel records restricted until July 01, 2031]

    Budget435

    [Executive records restricted until July 01, 2021]

    Art and Design, School ofGeneral435

    [Executive records restricted until July 01, 2021]

    Budget435

    [Executive records restricted until July 01, 2021]

    Grievances435

    [Personnel records restricted until July 01, 2031]

    Business Administration, School ofGeneral435

    [Executive records restricted until July 01, 2021]

    Appointments435

    [Personnel records restricted until July 01, 2031]

    Budget435

    [Executive records restricted until July 01, 2021]

    Dearborn Campus435

    [Executive records restricted until July 01, 2021]

    Dentistry, School ofGeneral435

    [Executive records restricted until July 01, 2021]

    Appointments435

    [Personnel records restricted until July 01, 2031]

    Budget435

    [Executive records restricted until July 01, 2021]

    Education, School ofGeneral435

    [Executive records restricted until July 01, 2021]

    Appointments435

    [Personnel records restricted until July 01, 2031]

    Budget435

    [Executive records restricted until July 01, 2021]

    Students505

    [Student records restricted until July 01, 2086]

    Engineering, College ofGeneral2 folders436

    [Executive records restricted until July 01, 2021]

    Budget436

    [Executive records restricted until July 01, 2021]

    Faculty Appointments436

    [Personnel records restricted until July 01, 2031]

    Grievances436

    [Personnel records restricted until July 01, 2031]

    General Counsel505

    [Patient/client records restricted until July 01, 2101]

    Flint Campus436

    [Executive records restricted until July 01, 2021]

    Information, School ofGeneral436

    [Executive records restricted until July 01, 2021]

    Appointments436

    [Personnel records restricted until July 01, 2031]

    Budget Conference436

    [Executive records restricted until July 01, 2021]

    Kinesiology DivisionGeneral436

    [Executive records restricted until July 01, 2021]

    Budget436

    [Executive records restricted until July 01, 2021]

    Recreational Sports Budget Conference436

    [Executive records restricted until July 01, 2021]

    Law SchoolGeneral436

    [Executive records restricted until July 01, 2021]

    Appointments436

    [Personnel records restricted until July 01, 2031]

    Budget436

    [Executive records restricted until July 01, 2021]

    Literature, Science and the Arts, College ofGeneral (5folders)436

    [Executive records restricted until July 01, 2021]

    Budget2 folders437

    [Executive records restricted until July 01, 2021]

    Faculty437

    [Personnel records restricted until July 01, 2031]

    Faculty Appointments437

    [Personnel records restricted until July 01, 2031]

    General Counsel505

    [Patient/client records restricted until July 01, 2101]

    Neel (regarding "Darkness in El Dorado")437

    [Executive records restricted until July 01, 2021]

    Students505

    [Student records restricted until July 01, 2086]

    Medical SchoolGeneral437

    [Executive records restricted until July 01, 2021]

    Budget437

    [Executive records restricted until July 01, 2021]

    Faculty Appointments2 folders437

    [Personnel records restricted until July 01, 2031]

    General Counsel505

    [Patient/client records restricted until July 01, 2101]

    Grievances437

    [Personnel records restricted until July 01, 2031]

    Recruitment437

    [Personnel records restricted until July 01, 2031]

    Music, School ofGeneral437

    [Executive records restricted until July 01, 2021]

    Appointments437

    [Personnel records restricted until July 01, 2031]

    Budget437

    [Executive records restricted until July 01, 2021]

    Natural Resources and the Environment, School ofGeneral437

    [Executive records restricted until July 01, 2021]

    Budget437

    [Executive records restricted until July 01, 2021]

    Landscape Architecture Program: Self-Evaluation Report437

    [Executive records restricted until July 01, 2021]

    Nursing, School ofGeneral438

    [Executive records restricted until July 01, 2021]

    Appointments438

    [Personnel records restricted until July 01, 2031]

    Budget438

    [Executive records restricted until July 01, 2021]

    Pharmacy, College ofGeneral438

    [Executive records restricted until July 01, 2021]

    Appointments438

    [Personnel records restricted until July 01, 2031]

    Budget438

    [Executive records restricted until July 01, 2021]

    Public Health, School ofGeneral438

    [Executive records restricted until July 01, 2021]

    Appointments438

    [Personnel records restricted until July 01, 2031]

    Budget438

    [Executive records restricted until July 01, 2021]

    Public Policy, School ofGeneral438

    [Executive records restricted until July 01, 2021]

    Appointments438

    [Personnel records restricted until July 01, 2031]

    Budget438

    [Executive records restricted until July 01, 2021]

    Rackham Graduate SchoolGeneral2 folders438

    [Executive records restricted until July 01, 2021]

    Appointments438

    [Personnel records restricted until July 01, 2031]

    Budget438

    [Executive records restricted until July 01, 2021]

    Renovation2 folders438

    [Executive records restricted until July 01, 2021]

    Social Work, School ofGeneral438

    [Executive records restricted until July 01, 2021]

    Budget438

    [Executive records restricted until July 01, 2021]

    Chronological FilesSeptember 2000-February 20014882 foldersMarch-June 2001489
    2001/2002Alphabetical FilesAcademic AffairsGeneral438

    [Executive records restricted until July 01, 2022]

    Budget438

    [Executive records restricted until July 01, 2022]

    Academic Affairs Advisory Committee (AAAC)2 folders438

    [Executive records restricted until July 01, 2022]

    Academic Program Group (APG)3 folders439

    [Executive records restricted until July 01, 2022]

    Academic Program Group Development Subcommittee439

    [Executive records restricted until July 01, 2022]

    Accreditation439

    [Executive records restricted until July 01, 2022]

    AdmissionsGeneral439

    [Executive records restricted until July 01, 2022]

    Undergraduate Admissions Budget439

    [Executive records restricted until July 01, 2022]

    Lawsuit506

    [Patient/client records restricted until July 01, 2102]

    Students506

    [Student records restricted until July 01, 2087]

    ADVANCE439

    [Executive records restricted until July 01, 2022]

    Affiliation Agreements6 folders439

    [Executive records restricted until July 01, 2022]

    Affirmative Action439

    [Executive records restricted until July 01, 2022]

    Alumni439

    [Executive records restricted until July 01, 2022]

    American Association for Higher Education (AAHE)439

    [Executive records restricted until July 01, 2022]

    American Association of University Professors (AAUP)439

    [Executive records restricted until July 01, 2022]

    American Council on Education (ACE)439

    [Executive records restricted until July 01, 2022]

    Arboretum439

    [Executive records restricted until July 01, 2022]

    Arthur Miller439

    [Executive records restricted until July 01, 2022]

    Articles440

    [Executive records restricted until July 01, 2022]

    Arts at Michigan440

    [Executive records restricted until July 01, 2022]

    Associate Provosts440

    [Executive records restricted until July 01, 2022]

    Association of American Colleges and Universities (AACU)440

    [Executive records restricted until July 01, 2022]

    Association of American Universities (AAU)General440

    [Executive records restricted until July 01, 2022]

    Faculty440

    [Personnel records restricted until July 01, 2032]

    AthleticsGeneral440

    [Executive records restricted until July 01, 2022]

    Budget440

    [Executive records restricted until July 01, 2022]

    Audits440

    [Executive records restricted until July 01, 2022]

    Awards440

    [Executive records restricted until July 01, 2022]

    Benefits440

    [Executive records restricted until July 01, 2022]

    Bentley Historical LibraryGeneral440

    [Executive records restricted until July 01, 2022]

    Budget440

    [Executive records restricted until July 01, 2022]

    Biology440

    [Executive records restricted until July 01, 2022]

    Biomedical Research440

    [Executive records restricted until July 01, 2022]

    Bio Theater440

    [Executive records restricted until July 01, 2022]

    Botanical Gardens (Matthaei)440

    [Executive records restricted until July 01, 2022]

    BudgetGeneral2 folders440

    [Executive records restricted until July 01, 2022]

    Auxiliary Units2 folders440

    [Executive records restricted until July 01, 2022]

    Budget and Planning440

    [Executive records restricted until July 01, 2022]

    Business and Finance440

    [Executive records restricted until July 01, 2022]

    Evaluations and Examinations440

    [Executive records restricted until July 01, 2022]

    State Budget Request440

    [Executive records restricted until July 01, 2022]

    Student Publications440

    [Executive records restricted until July 01, 2022]

    Calendar440

    [Executive records restricted until July 01, 2022]

    Campaign Planning440

    [Executive records restricted until July 01, 2022]

    Campus Safety440

    [Executive records restricted until July 01, 2022]

    Capital Projects440

    [Executive records restricted until July 01, 2022]

    Cardiovascular Center441

    [Executive records restricted until July 01, 2022]

    Carnegie Foundation441

    [Executive records restricted until July 01, 2022]

    Centers: General441

    [Executive records restricted until July 01, 2022]

    Center for the Education of Women (CEW)General441

    [Executive records restricted until July 01, 2022]

    Budget441

    [Executive records restricted until July 01, 2022]

    Center for Human Growth and Development (CHDG)441

    [Personnel records restricted until July 01, 2032]

    Center for Research on Learning and Teaching (CRLT)General441

    [Executive records restricted until July 01, 2022]

    Budget441

    [Executive records restricted until July 01, 2022]

    Chemical Biology441

    [Executive records restricted until July 01, 2022]

    Child Care441

    [Executive records restricted until July 01, 2022]

    Classification System Project441

    [Executive records restricted until July 01, 2022]

    Clements LibraryGeneral441

    [Executive records restricted until July 01, 2022]

    Budget441

    [Executive records restricted until July 01, 2022]

    Commencement441

    [Executive records restricted until July 01, 2022]

    Committee on the Economic Status of the Faculty (CESF)441

    [Executive records restricted until July 01, 2022]

    Committee on Institutional CooperationGeneral2 folders441

    [Executive records restricted until July 01, 2022]

    CommunicationsGeneral441

    [Executive records restricted until July 01, 2022]

    Vice President for441

    [Executive records restricted until July 01, 2022]

    Computers441

    [Executive records restricted until July 01, 2022]

    Cooperative Institutional Research Program (CIRP)441

    [Executive records restricted until July 01, 2022]

    Copyright441

    [Executive records restricted until July 01, 2022]

    Deaf and Hearing441

    [Executive records restricted until July 01, 2022]

    Delegation of Authority441

    [Executive records restricted until July 01, 2022]

    Department of Public Safety (DPS)441

    [Executive records restricted until July 01, 2022]

    Detroit441

    [Executive records restricted until July 01, 2022]

    Detroit Observatory441

    [Executive records restricted until July 01, 2022]

    DevelopmentGeneral441

    [Executive records restricted until July 01, 2022]

    Budget441

    [Executive records restricted until July 01, 2022]

    Disability441

    [Executive records restricted until July 01, 2022]

    Distance Learning441

    [Executive records restricted until July 01, 2022]

    Distinguished University Professors441

    [Executive records restricted until July 01, 2022]

    Dual Careers442

    [Personnel records restricted until July 01, 2032]

    Economic Forecasting442

    [Executive records restricted until July 01, 2022]

    Enrollment442

    [Executive records restricted until July 01, 2022]

    Environment442

    [Executive records restricted until July 01, 2022]

    Events442

    [Executive records restricted until July 01, 2022]

    Executive Officers442

    [Executive records restricted until July 01, 2022]

    Facilities442

    [Executive records restricted until July 01, 2022]

    FacultyGeneral442

    [Executive records restricted until July 01, 2022]

    Faculty Recruitment442

    [Personnel records restricted until July 01, 2032]

    Fathom442

    [Executive records restricted until July 01, 2022]

    FinanceChief Financial Officer442

    [Executive records restricted until July 01, 2022]

    VP Area2 folders442

    [Executive records restricted until July 01, 2022]

    Financial AidGeneral442

    [Executive records restricted until July 01, 2022]

    Budget442

    [Executive records restricted until July 01, 2022]

    Financial Reports6 folders442

    [Executive records restricted until July 01, 2022]

    Fleming Building442

    [Executive records restricted until July 01, 2022]

    Ford Foundation442

    [Executive records restricted until July 01, 2022]

    Ford Nuclear Reactor442

    [Executive records restricted until July 01, 2022]

    Foundations: General442

    [Executive records restricted until July 01, 2022]

    Funding443

    [Executive records restricted until July 01, 2022]

    General CounselGeneral443

    [Executive records restricted until July 1, 2022]

    Budget443

    [Executive records restricted until July 01, 2022]

    Correspondence506

    [Patient/client records restricted until July 01, 2102]

    Gender Equity443

    [Personnel records restricted until July 01, 2032]

    Gifts443

    [Executive records restricted until July 01, 2022]

    Ginsberg Center443

    [Executive records restricted until July 01, 2022]

    Global Change443

    [Executive records restricted until July 01, 2022]

    Government RelationsGeneral443

    [Executive records restricted until July 01, 2022]

    Vice President for443

    [Executive records restricted until July 01, 2022]

    Government: State443

    [Executive records restricted until July 01, 2022]

    Grad Care443

    [Executive records restricted until July 01, 2022]

    Graduate Employees Organization (GEO)General4 folders443

    [Executive records restricted until July 01, 2022]

    Faculty443

    [Personnel records restricted until July 01, 2032]

    Students506

    [Student records restricted until July 01, 2087]

    Great Lakes Program443

    [Executive records restricted until July 01, 2022]

    Health Science Council443

    [Executive records restricted until July 01, 2022]

    Health ServiceGeneral443

    [Executive records restricted until July 01, 2022]

    Budget443

    [Executive records restricted until July 01, 2022]

    Henry Russel Lecture443

    [Executive records restricted until July 01, 2022]

    Higher Education443

    [Executive records restricted until July 01, 2022]

    Hill Auditorium443

    [Executive records restricted until July 01, 2022]

    Honorary Degree443

    [Executive records restricted until July 01, 2022]

    Honors Convocation443

    [Executive records restricted until July 01, 2022]

    Honors Program443

    [Executive records restricted until July 01, 2022]

    HOPE Project443

    [Executive records restricted until July 01, 2022]

    Hospitals and Health Centers Executive Board7 foldersFolder 1443

    [Executive records restricted until July 01, 2022]

    Folders 2-7444

    [Executive records restricted until July 01, 2022]

    Housing444

    [Executive records restricted until July 01, 2022]

    Human Resources and Affirmative Action (HRAA)General444

    [Executive records restricted until July 01, 2022]

    Budget444

    [Executive records restricted until July 01, 2022]

    Human Resource Management System444

    [Executive records restricted until July 01, 2022]

    Indemnification444

    [Executive records restricted until July 01, 2022]

    Indemnification Exceptions506

    [Patient/client records restricted until July 01, 2102]

    Indirect Cost Rate (ICR)444

    [Executive records restricted until July 01, 2022]

    Information Technology444

    [Executive records restricted until July 01, 2022]

    ITCS444

    [Executive records restricted until July 01, 2022]

    Initiatives444

    [Executive records restricted until July 01, 2022]

    Institutes: General444

    [Executive records restricted until July 01, 2022]

    Institute for Continuing Legal Research (ICLE)444

    [Executive records restricted until July 01, 2022]

    Institute of Gerontology444

    [Executive records restricted until July 01, 2022]

    Institute for Social ResearchGeneral444

    [Executive records restricted until July 01, 2022]

    Appointments444

    [Personnel records restricted until July 01, 2032]

    Budget444

    [Executive records restricted until July 01, 2022]

    Integrated Technology Instructional Center (ITIC)444

    [Executive records restricted until July 01, 2022]

    Intellectual Property444

    [Executive records restricted until July 01, 2022]

    International InstituteGeneral3 foldersFolder 1444

    [Executive records restricted until July 01, 2022]

    Folders 2-3445

    [Executive records restricted until July 01, 2022]

    Appointments445

    [Personnel records restricted until July 01, 2032]

    Budget445

    [Executive records restricted until July 01, 2022]

    International Agreements445

    [Executive records restricted until July 01, 2022]

    Internet 2445

    [Executive records restricted until July 01, 2022]

    Keck FoundationGeneral445

    [Executive records restricted until July 01, 2022]

    Search445

    [Personnel records restricted until July 01, 2032]

    Kellogg Foundation445

    [Executive records restricted until July 01, 2022]

    Knight Collaborative Engagement445

    [Executive records restricted until July 01, 2022]

    LawsuitsGeneral506

    [Patient/client records restricted until July 01, 2102]

    Law School445

    [Executive records restricted until July 01, 2022]

    Life SciencesGeneral445

    [Executive records restricted until July 01, 2022]

    Appointments445

    [Personnel records restricted until July 01, 2032]

    By-Law445

    [Executive records restricted until July 01, 2022]

    Undergraduates445

    [Executive records restricted until July 01, 2022]

    Life Sciences, Values and Society Program (LSVSP)General445

    [Executive records restricted until July 01, 2022]

    Appointments445

    [Personnel records restricted until July 01, 2032]

    M-Care445

    [Executive records restricted until July 01, 2022]

    Magellan445

    [Executive records restricted until July 01, 2022]

    Martin Luther King, Jr.445

    [Executive records restricted until July 01, 2022]

    Media UnionGeneral445

    [Executive records restricted until July 01, 2022]

    Budget445

    [Executive records restricted until July 01, 2022]

    Medical AffairsGeneral445

    [Executive records restricted until July 01, 2022]

    Executive Vice President for445

    [Executive records restricted until July 01, 2022]

    EVPMA Search445

    [Personnel records restricted until July 01, 2032]

    Medical CenterGeneral445

    [Executive records restricted until July 01, 2022]

    Hospital Capital Projects445

    [Executive records restricted until July 01, 2022]

    Hospital Budget445

    [Executive records restricted until July 01, 2022]

    Mellon FoundationGeneral445

    [Executive records restricted until July 01, 2022]

    New Directions Fellowships445

    [Executive records restricted until July 01, 2022]

    Memberships445

    [Executive records restricted until July 01, 2022]

    Mentoring445

    [Executive records restricted until July 01, 2022]

    Merit, Inc.445

    [Executive records restricted until July 01, 2022]

    Michigan Administrative Information System (MAIS)General445

    [Executive records restricted until July 01, 2022]

    Budget445

    [Executive records restricted until July 01, 2022]

    Grievance445

    [Personnel records restricted until July 01, 2032]

    Michigan Campus Compact445

    [Executive records restricted until July 01, 2022]

    Michigan Grid Research and Infrastructure Development (MGRID)445

    [Executive records restricted until July 01, 2022]

    Michigan Health Corporation (MHC)445

    [Executive records restricted until July 01, 2022]

    Michigan Student Assembly445

    [Executive records restricted until July 01, 2022]

    Midwest Universities Consortium for International Activities (MUCIA)445

    [Executive records restricted until July 01, 2022]

    Millennium445

    [Executive records restricted until July 01, 2022]

    Box 446445

    [Executive records restricted until July 01, 2022]

    Minorities445

    [Executive records restricted until July 01, 2022]

    Miscellaneous445

    [Executive records restricted until July 01, 2022]

    Multicultural AffairsGeneral445

    [Executive records restricted until July 01, 2022]

    Office of Academic Multicultural Affairs (OAMI) Budget445

    [Executive records restricted until July 01, 2022]

    Museum of ArtGeneral445

    [Executive records restricted until July 01, 2022]

    Budget445

    [Executive records restricted until July 01, 2022]

    Searches445

    [Personnel records restricted until July 01, 2032]

    Naked Mile445

    [Executive records restricted until July 01, 2022]

    National Association of State Universities Land Grant Colleges (NASULGC)445

    [Executive records restricted until July 01, 2022]

    National Science Foundation (NSF)445

    [Executive records restricted until July 01, 2022]

    National Tragedies445

    [Executive records restricted until July 01, 2022]

    NeuroscienceGeneral445

    [Executive records restricted until July 01, 2022]

    Recruitment445

    [Personnel records restricted until July 01, 2032]

    New Student Programs445

    [Executive records restricted until July 01, 2022]

    News and InformationGeneral445

    [Executive records restricted until July 01, 2022]

    Recruitment445

    [Personnel records restricted until July 01, 2032]

    North Campus445

    [Executive records restricted until July 01, 2022]

    Office of Academic Affairs (OAA)5 folders445

    [Executive records restricted until July 01, 2022]

    Organizational Studies445

    [Executive records restricted until July 01, 2022]

    Parking445

    [Executive records restricted until July 01, 2022]

    Pathways445

    [Executive records restricted until July 01, 2022]

    Peer Institutions445

    [Executive records restricted until July 01, 2022]

    Personnel: General445

    [Executive records restricted until July 01, 2022]

    Pew445

    [Executive records restricted until July 01, 2022]

    Power Michigan445

    [Executive records restricted until July 01, 2022]

    Prescription Drugs2 folders445

    [Executive records restricted until July 01, 2022]

    President's Council: State447

    [Executive records restricted until July 01, 2022]

    President's OfficeGeneral447

    [Executive records restricted until July 01, 2022]

    Appointments447

    [Personnel records restricted until July 01, 2032]

    Budget447

    [Executive records restricted until July 01, 2022]

    President's Staff447

    [Executive records restricted until July 01, 2022]

    Primary Research Scientists (PRS)447

    [Executive records restricted until July 01, 2022]

    Program for the Education and Evaluation of Responsible Research and Scholarship (PEERRS)447

    [Executive records restricted until July 01, 2022]

    PromotionsGeneral447

    [Executive records restricted until July 01, 2022]

    Grievances447

    [Personnel records restricted until July 01, 2032]

    Proposals447

    [Executive records restricted until July 01, 2022]

    Provost's Advisory Committee on Women's Issues (PACWI)447

    [Executive records restricted until July 01, 2022]

    Provost's Committee on Faculty Mentoring447

    [Executive records restricted until July 01, 2022]

    Provost's Council on Student Honors (PCSH)447

    [Executive records restricted until July 01, 2022]

    Provost's Faculty Initiative Program (PFIP)447

    [Personnel records restricted until July 01, 2032]

    PsychologyGeneral447

    [Executive records restricted until July 01, 2022]

    Faculty447

    [Personnel records restricted until July 01, 2032]

    Public Goods2 folders447

    [Executive records restricted until July 01, 2022]

    Reach Out447

    [Executive records restricted until July 01, 2022]

    Recreational SportsGeneral447

    [Executive records restricted until July 01, 2022]

    Budget447

    [Executive records restricted until July 01, 2022]

    RegentsGeneral447

    [Executive records restricted until July 01, 2022]

    Communications447

    [Executive records restricted until July 01, 2022]

    Communications A-Z3 folders447

    [Executive records restricted until July 01, 2022]

    RegistrarGeneral447

    [Executive records restricted until July 01, 2022]

    Budget447

    [Executive records restricted until July 01, 2022]

    Students506

    [Student records restricted until July 01, 2087]

    Requests447

    [Executive records restricted until July 01, 2022]

    ResearchGeneral2 folders447

    [Executive records restricted until July 01, 2022]

    Appointments447

    [Personnel records restricted until July 01, 2032]

    Vice President for447

    [Executive records restricted until July 01, 2022]

    Research Units and Budget448

    [Executive records restricted until July 01, 2022]

    Spin 70448

    [Personnel records restricted until July 01, 2032]

    Reserve Officers Training Corps (ROTC)General448

    [Executive records restricted until July 01, 2022]

    Officer Education Programs448

    [Executive records restricted until July 01, 2022]

    ResidencyGeneral448

    [Executive records restricted until July 01, 2022]

    Cases506

    [Student records restricted until July 01, 2087]

    General Counsel506

    [Patient/client records restricted until July 01, 2102]

    Residential College448

    [Personnel records restricted until July 01, 2032]

    RetentionGeneral448

    [Executive records restricted until July 01, 2022]

    Williams, David448

    (see also ISR Appointments))

    [Personnel records restricted until July 01, 2032]

    RetirementGeneral448

    [Executive records restricted until July 01, 2022]

    Faculty448

    [Personnel records restricted until July 01, 2032]

    Rhodes Scholarship448

    [Executive records restricted until July 01, 2022]

    "Roads Scholars"448

    [Executive records restricted until July 01, 2022]

    Salary3 folders448

    [Executive records restricted until July 01, 2022]

    Scholarships and Fellowships448

    [Executive records restricted until July 01, 2022]

    Sea Grant448

    [Executive records restricted until July 01, 2022]

    SearchesGeneral448

    [Executive records restricted until July 01, 2022]

    Secretary of the UniversityGeneral448

    [Executive records restricted until July 01, 2022]

    Budget448

    [Executive records restricted until July 01, 2022]

    Security448

    [Executive records restricted until July 01, 2022]

    Senate Advisory Committee on University Affairs (SACUA)General5 foldersFolders 1-3448

    [Executive records restricted until July 01, 2022]

    Folders 4-5449

    [Executive records restricted until July 01, 2022]

    Budget449

    [Executive records restricted until July 01, 2022]

    Senate Assembly449

    [Executive records restricted until July 01, 2022]

    Sexual Harassment449

    [Executive records restricted until July 01, 2022]

    Sloan Pre-tenure Leave Fellowship Program449

    [Executive records restricted until July 01, 2022]

    Space449

    [Executive records restricted until July 01, 2022]

    Spencer Foundation449

    [Executive records restricted until July 01, 2022]

    Stewardship449

    [Executive records restricted until July 01, 2022]

    StudentsGeneral449

    [Executive records restricted until July 01, 2022]

    Deceased449

    [Executive records restricted until July 01, 2022]

    Grievances506

    [Student records restricted until July 01, 2087]

    Wei, Candy506

    [Patient/client records restricted until July 01, 2102]

    Student AffairsGeneral449

    [Executive records restricted until July 01, 2022]

    Budget449

    [Executive records restricted until July 01, 2022]

    Student-Parent Task Force449

    [Executive records restricted until July 01, 2022]

    Substance Abuse449

    [Executive records restricted until July 01, 2022]

    Successful Intelligence449

    [Executive records restricted until July 01, 2022]

    Surveys2 folders449

    [Executive records restricted until July 01, 2022]

    Sustainable Systems449

    [Executive records restricted until July 01, 2022]

    Sympathy449

    [Executive records restricted until July 01, 2022]

    Task Forces449

    [Executive records restricted until July 01, 2022]

    Teaching Principles449

    [Executive records restricted until July 01, 2022]

    Technology Transfer449

    [Executive records restricted until July 01, 2022]

    Thurnau Professorships449

    [Executive records restricted until July 01, 2022]

    Tuition and Fees449

    [Executive records restricted until July 01, 2022]

    Undergraduate Education449

    [Executive records restricted until July 01, 2022]

    University Activities Center (UAC)449

    [Executive records restricted until July 01, 2022]

    University LibraryGeneral449

    [Executive records restricted until July 01, 2022]

    Appointments449

    [Personnel records restricted until July 01, 2032]

    Budget450

    [Executive records restricted until July 01, 2022]

    University of Michigan450

    [Executive records restricted until July 01, 2022]

    University of Michigan Transportation Research Institute (UMTRI)450

    [Executive records restricted until July 01, 2022]

    University Musical Society (UMS)450

    [Executive records restricted until July 01, 2022]

    University PressGeneral450

    [Executive records restricted until July 01, 2022]

    Budget450

    [Executive records restricted until July 01, 2022]

    WebsiteGeneral450

    [Executive records restricted until July 01, 2022]

    Student Queries506

    [Student records restricted until July 01, 2087]

    Whitaker Foundation450

    [Executive records restricted until July 01, 2022]

    WomenGeneral450

    [Executive records restricted until July 01, 2022]

    Appointments450

    [Personnel records restricted until July 01, 2032]

    Schools and Colleges FilesArchitecture and Urban Planning, School ofGeneral450

    [Executive records restricted until July 01, 2022]

    Appointments450

    [Personnel records restricted until July 01, 2032]

    Budget450

    [Executive records restricted until July 01, 2022]

    Real Estate Initiative450

    [Executive records restricted until July 01, 2022]

    Art and Design, School ofGeneral450

    [Executive records restricted until July 01, 2022]

    Budget450

    [Executive records restricted until July 01, 2022]

    Faculty450

    [Personnel records restricted until July 01, 2032]

    Business Administration, School ofGeneral450

    [Executive records restricted until July 01, 2022]

    Appointments450

    [Personnel records restricted until July 01, 2032]

    Budget450

    [Executive records restricted until July 01, 2022]

    Dearborn CampusGeneral2 folders450

    [Executive records restricted until July 01, 2022]

    Faculty450

    [Personnel records restricted until July 01, 2032]

    Dentistry, School ofGeneral450

    [Executive records restricted until July 01, 2022]

    Appointments451

    [Personnel records restricted until July 01, 2032]

    Budget451

    [Executive records restricted until July 01, 2022]

    Gordon Grievance506

    [Patient/client records restricted until July 01, 2102]

    Education, School ofGeneral451

    [Executive records restricted until July 01, 2022]

    Appointments451

    [Personnel records restricted until July 01, 2032]

    Budget451

    [Executive records restricted until July 01, 2022]

    Engineering, College ofGeneral2 folders451

    [Executive records restricted until July 01, 2022]

    Appointments451

    [Personnel records restricted until July 01, 2032]

    Budget451

    [Executive records restricted until July 01, 2022]

    Faculty Grievances451

    [Personnel records restricted until July 01, 2032]

    Grievance-Kauffman, Bill506

    [Student records restricted until July 01, 2087]

    Mead, David506

    [Patient/client records restricted until July 01, 2102]

    Regents' Communications451

    [Executive records restricted until July 01, 2022]

    Flint CampusGeneral451

    [Executive records restricted until July 01, 2022]

    General Counsel506

    [Patient/client records restricted until July 01, 2102]

    Information, School ofGeneral451

    [Executive records restricted until July 01, 2022]

    Appointments451

    [Personnel records restricted until July 01, 2032]

    Budget Conference451

    [Executive records restricted until July 01, 2022]

    Kinesiology DivisionGeneral451

    [Executive records restricted until July 01, 2022]

    Budget451

    [Executive records restricted until July 01, 2022]

    Law SchoolGeneral451

    [Executive records restricted until July 01, 2022]

    Appointments451

    [Personnel records restricted until July 01, 2032]

    Budget451

    [Executive records restricted until July 01, 2022]

    Krier, Jim451

    [Personnel records restricted until July 01, 2032]

    Literature, Science and the Arts, College ofGeneral451

    [Executive records restricted until July 01, 2022]

    Budget3 folders451

    [Executive records restricted until July 01, 2022]

    Faculty Appointments451

    [Personnel records restricted until July 01, 2032]

    Faculty Grievances451

    [Personnel records restricted until July 01, 2032]

    Faculty Salaries451

    [Personnel records restricted until July 01, 2032]

    Regents' Communications451

    [Executive records restricted until July 01, 2022]

    Retention and Recruitment451

    [Personnel records restricted until July 01, 2032]

    Student Grievances506

    [Student records restricted until July 01, 2087]

    Medical SchoolGeneral Budget451

    [Executive records restricted until July 01, 2022]

    Faculty Appointments451

    [Personnel records restricted until July 01, 2032]

    Regents' Communications451

    [Executive records restricted until July 01, 2022]

    Retention451

    [Personnel records restricted until July 01, 2032]

    Music, School ofGeneral2 folders452

    [Executive records restricted until July 01, 2022]

    Appointments452

    [Personnel records restricted until July 01, 2032]

    Budget452

    [Executive records restricted until July 01, 2022]

    Kroger Space452

    [Executive records restricted until July 01, 2022]

    Stein, Louise452

    [Executive records restricted until July 01, 2022]

    Natural Resources and the Environment, School ofGeneral452

    [Executive records restricted until July 01, 2022]

    Appointments452

    [Personnel records restricted until July 01, 2032]

    Budget452

    [Executive records restricted until July 01, 2022]

    Nursing, School ofGeneral2 folders452

    [Executive records restricted until July 01, 2022]

    Appointments452

    [Personnel records restricted until July 01, 2032]

    Budget452

    [Executive records restricted until July 01, 2022]

    Pharmacy, College ofGeneral452

    [Executive records restricted until July 01, 2022]

    Appointments452

    [Personnel records restricted until July 01, 2032]

    Budget452

    [Executive records restricted until July 01, 2022]

    Public Health, School ofGeneral452

    [Executive records restricted until July 01, 2022]

    Appointments452

    [Personnel records restricted until July 01, 2032]

    Budget452

    [Executive records restricted until July 01, 2022]

    Public Policy, School ofGeneral452

    [Executive records restricted until July 01, 2022]

    Appointments452

    [Personnel records restricted until July 01, 2032]

    Budget452

    [Executive records restricted until July 01, 2022]

    Students506

    [Student records restricted until July 01, 2087]

    Rackham Graduate SchoolGeneral2 folders452

    [Executive records restricted until July 01, 2022]

    Appointments452

    [Personnel records restricted until July 01, 2032]

    Budget452

    [Executive records restricted until July 01, 2022]

    Students506

    [Student records restricted until July 01, 2087]

    Social Work, School ofGeneral2 folders452

    [Executive records restricted until July 01, 2022]

    Appointments452

    [Personnel records restricted until July 01, 2032]

    Budget452

    [Executive records restricted until July 01, 2022]

    Danziger452

    [Personnel records restricted until July 01, 2032]

    Dean452

    [Personnel records restricted until July 01, 2032]

    Chronological Files4 foldersJuly 2001-August 2002489
    2002/2003Alphabetical FilesAcademic Affairs454

    [Executive records restricted until July 01, 2023]

    Academic Affairs-Recruitment454

    [Personnel records restricted until July 01, 2033]

    Academic Affairs Advisory Committee (AAAC)3 folders454

    [Executive records restricted until July 01, 2023]

    Academic Governing Board (AGB)454

    [Executive records restricted until July 01, 2023]

    Academic Leadership454

    [Executive records restricted until July 01, 2023]

    Academic Planning454

    [Executive records restricted until July 01, 2023]

    Academic Program Group (APG)3 folders454

    [Executive records restricted until July 01, 2023]

    Academic Program Group Development Subcommittee454

    [Executive records restricted until July 01, 2023]

    Accreditation Administration Data Delivery Advisory Group (ADDAG)454

    [Executive records restricted until July 01, 2023]

    Admissions2 foldersGeneral2 folders454

    [Executive records restricted until July 01, 2023]

    Regents Question506

    [Patient/client records restricted until July 01, 2103]

    Students506

    [Student records restricted until July 01, 2088]

    Supreme Court Case506

    [Patient/client records restricted until July 01, 2103]

    Advance4 folders454

    [Executive records restricted until July 01, 2023]

    Affiliation Agreements4 folders455

    [Executive records restricted until July 01, 2023]

    Affirmative Action2 folders455

    [Executive records restricted until July 01, 2023]

    Alumni455

    [Executive records restricted until July 01, 2023]

    American Academy of Arts and Sciences455

    [Executive records restricted until July 01, 2023]

    American Association of University Professors (AAUP)455

    [Executive records restricted until July 01, 2023]

    American Council on Education455

    [Executive records restricted until July 01, 2023]

    Appropriations455

    [Executive records restricted until July 01, 2023]

    Arboretum455

    [Executive records restricted until July 01, 2023]

    Articles455

    [Executive records restricted until July 01, 2023]

    Arts of Citizenship455

    [Executive records restricted until July 01, 2023]

    Arts at Michigan455

    [Executive records restricted until July 01, 2023]

    Associate Provosts455

    [Executive records restricted until July 01, 2023]

    Association of American Colleges and Universities (AACU)455

    [Executive records restricted until July 01, 2023]

    Association of American Universities (AAU)455

    [Executive records restricted until July 01, 2023]

    AthleticsGeneral2 folders455

    [Executive records restricted until July 01, 2023]

    Athletics-Tuition Rate506

    [Patient/client records restricted until July 01, 2103]

    AuditsGeneral2 foldersFolder 1455

    [Personnel records restricted until July 01, 2033]

    Folder 2456

    [Personnel records restricted until July 01, 2033]

    FASAP506

    [Patient/client records restricted until July 01, 2103]

    Awards456

    [Executive records restricted until July 01, 2023]

    Bargaining456

    [Executive records restricted until July 01, 2023]

    BenefitsGeneral7 folders456

    [Executive records restricted until July 01, 2023]

    Flexible Benefits456

    [Executive records restricted until July 01, 2023]

    General Counsel506

    [Patient/client records restricted until July 01, 2103]

    Personnel506

    [Personnel records restricted until July 01, 2033]

    Policy Advisory Committee456

    [Executive records restricted until July 01, 2023]

    Review456

    [Executive records restricted until July 01, 2023]

    Study456

    [Executive records restricted until July 01, 2023]

    Bentley Historical Library456

    [Executive records restricted until July 01, 2023]

    Biology456

    [Executive records restricted until July 01, 2023]

    Biology Building456

    [Executive records restricted until July 01, 2023]

    Bioscience and Engineering Institute456

    [Executive records restricted until July 01, 2023]

    Botanical Gardens (Matthaei)456

    [Executive records restricted until July 01, 2023]

    BudgetGeneral456

    [Executive records restricted until July 01, 2023]

    Current Modeling Numbers457

    [Executive records restricted until July 01, 2023]

    Budget and Planning457

    [Executive records restricted until July 01, 2023]

    Budget Study Committee457

    [Executive records restricted until July 01, 2023]

    State Budget Request2 folders457

    [Executive records restricted until July 01, 2023]

    Calendar457

    [Executive records restricted until July 01, 2023]

    Camp Michigania457

    [Executive records restricted until July 01, 2023]

    Campaign Planning457

    [Executive records restricted until July 01, 2023]

    Campus Compact457

    [Executive records restricted until July 01, 2023]

    Campus Safety457

    [Executive records restricted until July 01, 2023]

    Capital Projects457

    [Executive records restricted until July 01, 2023]

    Cardiovascular Center457

    [Executive records restricted until July 01, 2023]

    Carnegie Foundation2 folders457

    [Executive records restricted until July 01, 2023]

    Centers: General457

    [Executive records restricted until July 01, 2023]

    Center for the Advancement of Behavioral and Social Science (CABSS)457

    [Executive records restricted until July 01, 2023]

    Center for the Education of Women (CEW)457

    [Executive records restricted until July 01, 2023]

    Center for Educational Opportunity (CEO)457

    [Executive records restricted until July 01, 2023]

    Center for Japanese Studies (CJS)457

    [Executive records restricted until July 01, 2023]

    Center for Research on Learning and Teaching (CRLT)457

    [Executive records restricted until July 01, 2023]

    Chemical Biology457

    [Executive records restricted until July 01, 2023]

    Child CareGeneral457

    [Executive records restricted until July 01, 2023]

    Audit506

    [Patient/client records restricted until July 01, 2103]

    Classification System Project457

    [Executive records restricted until July 01, 2023]

    Clements Library457

    [Executive records restricted until July 01, 2023]

    Clements Library Personnel457

    [Personnel records restricted until July 01, 2033]

    Climate457

    [Executive records restricted until July 01, 2023]

    Clinical Track457

    [Personnel records restricted until July 01, 2033]

    Cognate Panel457

    [Executive records restricted until July 01, 2023]

    College Board457

    [Executive records restricted until July 01, 2023]

    Commencement457

    [Executive records restricted until July 01, 2023]

    Committee on the Economic Status of the Faculty (CESF)457

    [Executive records restricted until July 01, 2023]

    Committee on Health Insurance Premium Design (CHIPD)457

    [Executive records restricted until July 01, 2023]

    Committee on Institutional CooperationGeneral3 folders458

    [Executive records restricted until July 01, 2023]

    Engagement Committee458

    [Executive records restricted until July 01, 2023]

    CommunicationsGeneral458

    [Executive records restricted until July 01, 2023]

    Key Issues2 folders458

    [Executive records restricted until July 01, 2023]

    Community Relations458

    [Executive records restricted until July 01, 2023]

    Compensation458

    [Executive records restricted until July 01, 2023]

    Complex Systems458

    [Executive records restricted until July 01, 2023]

    Compliance458

    [Executive records restricted until July 01, 2023]

    Computers458

    [Executive records restricted until July 01, 2023]

    Conflict of Interest/Conflict of Commitment Committee458

    [Executive records restricted until July 01, 2023]

    Convocation458

    [Executive records restricted until July 01, 2023]

    Copyright458

    [Executive records restricted until July 01, 2023]

    Delegation of Authority458

    [Executive records restricted until July 01, 2023]

    Department of Public Safety (DPS)General458

    [Executive records restricted until July 01, 2023]

    Students506

    [Student records restricted until July 01, 2088]

    Depression Center458

    [Executive records restricted until July 01, 2023]

    Detroit458

    [Executive records restricted until July 01, 2023]

    Detroit Observatory458

    [Executive records restricted until July 01, 2023]

    DevelopmentGeneral458

    [Executive records restricted until July 01, 2023]

    VP Search458

    [Personnel records restricted until July 01, 2033]

    Digital Advisory Council458

    [Executive records restricted until July 01, 2023]

    Disability458

    [Executive records restricted until July 01, 2023]

    Distinguished University Professors458

    [Executive records restricted until July 01, 2023]

    DiversityGeneral458

    [Executive records restricted until July 01, 2023]

    Request for Review458

    [Personnel records restricted until July 01, 2033]

    Divestment2 foldersGeneralFolder 1458

    [Executive records restricted until July 01, 2023]

    Folder 2459

    [Executive records restricted until July 01, 2023]

    Dorfman506

    [Patient/client records restricted until July 01, 2103]

    Velleman, David459

    [Personnel records restricted until July 01, 2033]

    DOWGeneral459

    [Executive records restricted until July 01, 2023]

    General Counsel506

    [Patient/client records restricted until July 01, 2103]

    Dual Careers459

    [Personnel records restricted until July 01, 2033]

    Economic Forecasting459

    [Executive records restricted until July 01, 2023]

    Economic Impact459

    [Executive records restricted until July 01, 2023]

    University of Michigan Impact on State PowerPointMarch 10, 2003

    (Includes the PowerPoint slide by George Fulton.)

    [Executive records restricted until July 1, 2023]

    E-mail Issues2 foldersControversial (Palestinian Conference)459

    [Executive records restricted until July 01, 2023]

    Spoofing Investigation/Palestinian Conference506

    [Patient/client records restricted until July 01, 2103]

    E-mail Working Group459

    [Executive records restricted until July 01, 2023]

    Enrollment459

    [Executive records restricted until July 01, 2023]

    Environment459

    [Executive records restricted until July 01, 2023]

    Events459

    [Executive records restricted until July 01, 2023]

    Facilities & Facilities Advisory Committee459

    [Executive records restricted until July 01, 2023]

    FacultyGeneral459

    [Executive records restricted until July 01, 2023]

    Appointments459

    [Personnel records restricted until July 01, 2033]

    Fathom459

    [Executive records restricted until July 01, 2023]

    FinanceGeneral459

    [Executive records restricted until July 01, 2023]

    Chief Financial Officer Search459

    [Personnel records restricted until July 01, 2033]

    VP Area459

    [Executive records restricted until July 01, 2023]

    Financial AidGeneral459

    [Executive records restricted until July 01, 2023]

    Students506

    [Student records restricted until July 01, 2088]

    Financial Reports8 foldersFolders 1-2459

    [Executive records restricted until July 01, 2023]

    Folder 3-8460

    [Executive records restricted until July 01, 2023]

    Fleming Building460

    [Executive records restricted until July 01, 2023]

    FLSA (Fair Labor Standards Act)506

    [Patient/client records restricted until July 01, 2103]

    Ford Nuclear Reactor460

    [Executive records restricted until July 01, 2023]

    Foundations: General460

    [Executive records restricted until July 01, 2023]

    Freedom Fuel460

    [Executive records restricted until July 01, 2023]

    Freedom of Information Act (FOIA) RequestsGeneral460

    [Executive records restricted until July 01, 2023]

    General Counsel506

    [Patient/client records restricted until July 01, 2103]

    Re: Arthur Miller Theater460

    [Executive records restricted until July 01, 2023]

    Salary Information460

    [Executive records restricted until July 01, 2023]

    Funding460

    [Executive records restricted until July 01, 2023]

    Gender Equity460

    [Executive records restricted until July 01, 2023]

    Gender in Science and Engineering460

    [Executive records restricted until July 01, 2023]

    Gender in Science and Engineering Committee460

    [Executive records restricted until July 01, 2023]

    General CounselGeneral461

    [Executive records restricted until July 01, 2023]

    Appointments461

    [Personnel records restricted until July 01, 2033]

    Cases506

    [Patient/client records restricted until July 01, 2103]

    Gifts (includes Mike Wallace gift)461

    [Executive records restricted until July 01, 2023]

    Government Relations461

    [Executive records restricted until July 01, 2023]

    Government: State461

    [Executive records restricted until July 01, 2023]

    Graduate Employees Organization (GEO)461

    [Executive records restricted until July 01, 2023]

    Graduate Student Instructors (GSI)461

    [Executive records restricted until July 01, 2023]

    Great Lakes Program461

    [Executive records restricted until July 01, 2023]

    HarassmentGeneral461

    [Executive records restricted until July 01, 2023]

    Complaints461

    [Personnel records restricted until July 01, 2033]

    Health Insurance Portability and Accountabilty Act (HIPAA)461

    [Executive records restricted until July 01, 2023]

    Health ServiceGeneral461

    [Executive records restricted until July 01, 2023]

    Audit506

    [Patient/client records restricted until July 01, 2103]

    Health Science Council (HSC)461

    [Executive records restricted until July 01, 2023]

    Health Services Research Institute (HRSI)461

    [Personnel records restricted until July 01, 2033]

    Health System Research Compliance461

    [Executive records restricted until July 01, 2023]

    Henry Russel Lecture461

    [Executive records restricted until July 01, 2023]

    Higher Education461

    [Executive records restricted until July 01, 2023]

    Higher Education Hearings461

    [Executive records restricted until July 01, 2023]

    Hill Auditorium461

    [Executive records restricted until July 01, 2023]

    Hillel461

    [Executive records restricted until July 01, 2023]

    History and Traditions461

    [Executive records restricted until July 01, 2023]

    Honorary Degree461

    [Executive records restricted until July 01, 2023]

    Honors Program461

    [Executive records restricted until July 01, 2023]

    Hospitals and Health Centers Executive BoardMeetings6 foldersFolders 1-5461

    [Executive records restricted until July 01, 2023]

    Folder 6462

    [Executive records restricted until July 01, 2023]

    Orientation Manual462

    [Executive records restricted until July 01, 2023]

    House Officer AssociationGeneral462

    [Executive records restricted until July 01, 2023]

    General Counsel506

    [Patient/client records restricted until July 01, 2103]

    Housing462

    [Executive records restricted until July 01, 2023]

    Human Resources and Affirmative Action (HRAA)General3 folders462

    [Executive records restricted until July 01, 2023]

    Career Conference462

    [Executive records restricted until July 01, 2023]

    Personnel462

    [Personnel records restricted until July 01, 2033]

    Human Resource Management System462

    [Executive records restricted until July 01, 2023]

    Immigration and Naturalization Service (INS)462

    [Executive records restricted until July 01, 2023]

    Indemnification462

    [Executive records restricted until July 01, 2023]

    Information TechnologyGeneral462

    [Executive records restricted until July 01, 2023]

    Personnel462

    [Personnel records restricted until July 01, 2033]

    Wasserman, Mark462

    [Executive records restricted until July 01, 2023]

    Institute of Gerontology462

    [Personnel records restricted until July 01, 2033]

    Institute for Social Research2 foldersGeneral462

    [Executive records restricted until July 01, 2023]

    Appointments462

    [Personnel records restricted until July 01, 2033]

    Integrated Technology Instructional Center (ITIC)General462

    [Executive records restricted until July 01, 2023]

    Aikman Settlement462

    [Personnel records restricted until July 01, 2033]

    Intellectual Property462

    [Executive records restricted until July 01, 2023]

    International Agreements462

    [Executive records restricted until July 01, 2023]

    InternationalGeneral3 foldersFolders 1-2462

    [Executive records restricted until July 01, 2023]

    Folder 3463

    [Executive records restricted until July 01, 2023]

    Spin 70463

    [Executive records restricted until July 01, 2023]

    International InstituteGeneral463

    [Executive records restricted until July 01, 2023]

    Appointments463

    [Personnel records restricted until July 01, 2033]

    Investment Commission463

    [Executive records restricted until July 01, 2023]

    Keck Foundation463

    [Executive records restricted until July 01, 2023]

    Kellogg Foundation463

    [Executive records restricted until July 01, 2023]

    Knight Collaborative Engagement463

    [Executive records restricted until July 01, 2023]

    L-Building463

    [Executive records restricted until July 01, 2023]

    LawsuitsGeneral463

    [Executive records restricted until July 01, 2023]

    General Counsel506

    [Patient/client records restricted until July 01, 2103]

    LEOGeneral463

    [Executive records restricted until July 01, 2023]

    General Counsel506

    [Patient/client records restricted until July 01, 2103]

    Life SciencesGeneral463

    [Executive records restricted until July 01, 2023]

    Appointments463

    [Personnel records restricted until July 01, 2033]

    Executive Committee463

    [Personnel records restricted until July 01, 2033]

    Life Sciences, Values and Society Program (LSVSP)463

    [Executive records restricted until July 01, 2023]

    M-Prime463

    [Executive records restricted until July 01, 2023]

    Martin Luther King, Jr.463

    [Executive records restricted until July 01, 2023]

    Master Plan463

    [Executive records restricted until July 01, 2023]

    Media Union463

    [Executive records restricted until July 01, 2023]

    Medical AffairsGeneral463

    [Executive records restricted until July 01, 2023]

    Appointments463

    [Personnel records restricted until July 01, 2033]

    Medical CenterGeneral463

    [Executive records restricted until July 01, 2023]

    Appointments463

    [Personnel records restricted until July 01, 2033]

    Audit506

    [Patient/client records restricted until July 01, 2103]

    Mellon FoundationGeneral463

    [Executive records restricted until July 01, 2023]

    New Directions Fellowships464

    [Executive records restricted until July 01, 2023]

    Memberships464

    [Executive records restricted until July 01, 2023]

    Mental Health Research Institute464

    [Executive records restricted until July 01, 2023]

    Mentoring464

    [Executive records restricted until July 01, 2023]

    Michigan Administrative Information System (MAIS)464

    [Executive records restricted until July 01, 2023]

    Michigan Campus Compact (MCC)464

    [Executive records restricted until July 01, 2023]

    Michigan Economic Development Corporation (MEDC)464

    [Executive records restricted until July 01, 2023]

    Michigan Grid Research and Infrastructure Development (MGRID)464

    [Executive records restricted until July 01, 2023]

    Michigan Health Corporation (MHC)464

    [Executive records restricted until July 01, 2023]

    Michigan Journalism Fellows464

    [Executive records restricted until July 01, 2023]

    Michigan Student Assembly (MSA)464

    [Executive records restricted until July 01, 2023]

    Microbiology464

    [Executive records restricted until July 01, 2023]

    Millennium464

    [Executive records restricted until July 01, 2023]

    Miscellaneous464

    [Executive records restricted until July 01, 2023]

    Multicultural Affairs464

    [Executive records restricted until July 01, 2023]

    Museum of ArtGeneral464

    [Executive records restricted until July 01, 2023]

    Appointments464

    [Personnel records restricted until July 01, 2033]

    Naked Mile464

    [Executive records restricted until July 01, 2023]

    National Association of State Universities Land Grant Colleges (NASULGC)464

    [Executive records restricted until July 01, 2023]

    National Science Foundation (NSF)464

    [Executive records restricted until July 01, 2023]

    National Survey of Student Engagement (NSSE)464

    [Executive records restricted until July 01, 2023]

    National Tragedies464

    [Executive records restricted until July 01, 2023]

    Neuroscience464

    [Executive records restricted until July 01, 2023]

    New Student Programs464

    [Executive records restricted until July 01, 2023]

    News and Information464

    [Executive records restricted until July 01, 2023]

    North Campus464

    [Executive records restricted until July 01, 2023]

    Office of Academic Affairs (OAA) 6+14 foldersFolders 1464

    [Executive records restricted until July 01, 2023]

    Folders 2-4465

    [Executive records restricted until July 01, 2023]

    Ombudsman465

    [Executive records restricted until July 01, 2023]

    Openness and Security465

    [Executive records restricted until July 01, 2023]

    Orientation465

    [Executive records restricted until July 01, 2023]

    Parking465

    [Executive records restricted until July 01, 2023]

    Pathways465

    [Executive records restricted until July 01, 2023]

    Peer Institutions465

    [Executive records restricted until July 01, 2023]

    Personnel: General465

    [Executive records restricted until July 01, 2023]

    Polish Collaboratory Project465

    [Executive records restricted until July 01, 2023]

    President465

    [Executive records restricted until July 01, 2023]

    Presidential Inauguration465

    [Executive records restricted until July 01, 2023]

    Presidential Initiative Fund465

    [Executive records restricted until July 01, 2023]

    President's Advisory Committee465

    [Executive records restricted until July 01, 2023]

    President's Council465

    [Executive records restricted until July 01, 2023]

    President's Staff465

    [Executive records restricted until July 01, 2023]

    Primary Research Scientists (PRS)General465

    [Executive records restricted until July 01, 2023]

    Appointments465

    [Personnel records restricted until July 01, 2033]

    Privacy Oversight Committee465

    [Executive records restricted until July 01, 2023]

    Program for the Education and Evaluation of Responsible Research and Scholarship (PEERRS)465

    [Executive records restricted until July 01, 2023]

    PromotionsGeneral465

    [Executive records restricted until July 01, 2023]

    Appointments465

    [Personnel records restricted until July 01, 2033]

    Proposals465

    [Executive records restricted until July 01, 2023]

    Provost's Council on Student Honors (PCSH)465

    [Executive records restricted until July 01, 2023]

    Provost's Faculty Advisory Committee (PFAC)465

    [Executive records restricted until July 01, 2023]

    Provost's Faculty Initiative Program (PFIP)466

    [Personnel records restricted until July 01, 2033]

    Provost's Staff466

    [Executive records restricted until July 01, 2023]

    Psychology466

    [Executive records restricted until July 01, 2023]

    Public Goods466

    [Executive records restricted until July 01, 2023]

    Reach Out466

    [Executive records restricted until July 01, 2023]

    Recreational Sports3 folders466

    [Executive records restricted until July 01, 2023]

    RegentsGeneral466

    [Executive records restricted until July 01, 2023]

    Admissions506

    [Student records restricted until July 01, 2088]

    CommunicationsGeneral466

    [Executive records restricted until July 01, 2023]

    Alphabetical2 folders466

    [Executive records restricted until July 01, 2023]

    Health Insurance506

    [Patient/client records restricted until July 01, 2103]

    RegistrarGeneral466

    [Executive records restricted until July 01, 2023]

    Students506

    [Student records restricted until July 01, 2088]

    Requests466

    [Executive records restricted until July 01, 2023]

    ResearchGeneral466

    [Executive records restricted until July 01, 2023]

    Appointments and Personnel466

    [Personnel records restricted until July 01, 2033]

    Vice President for Research (OVPR) Compliance (MPrime)2 folders466

    [Executive records restricted until July 01, 2023]

    Research Professors Subcommittee466

    [Executive records restricted until July 01, 2023]

    Reserve Officers Training Corps (ROTC)General466

    [Executive records restricted until July 01, 2023]

    Students506

    [Student records restricted until July 01, 2088]

    ResidencyGeneral467

    [Executive records restricted until July 01, 2023]

    Cambridge, Bradley506

    [Patient/client records restricted until July 01, 2103]

    Chen, Fewell, Stone-Palmquist506

    [Patient/client records restricted until July 01, 2103]

    DiscussionJanuary 2002467

    [Executive records restricted until July 01, 2022]

    PrepJanuary 2002467

    [Executive records restricted until July 01, 2022]

    DiscussionFebruary 2002467

    [Executive records restricted until July 01, 2022]

    Taylor, Martin (Regent) CallMarch 13, 2002467

    [Executive records restricted until July 01, 2022]

    Student Queries506

    [Student records restricted until July 01, 2088]

    Residential College467

    [Executive records restricted until July 01, 2023]

    Residential Life467

    [Executive records restricted until July 01, 2023]

    Résumés467

    [Executive records restricted until July 01, 2023]

    Retention467

    [Executive records restricted until July 01, 2023]

    RetirementGeneral467

    [Executive records restricted until July 01, 2023]

    Faculty Request467

    [Personnel records restricted until July 01, 2033]

    Reviews of Schools and Colleges467

    [Executive records restricted until July 01, 2023]

    Rhodes Scholars467

    [Executive records restricted until July 01, 2023]

    Risk Management467

    [Executive records restricted until July 01, 2023]

    "Roads Scholars"467

    [Executive records restricted until July 01, 2023]

    Salary2 folders467

    [Executive records restricted until July 01, 2023]

    Salary-Faculty Complaint467

    [Personnel records restricted until July 01, 2033]

    Scholarships and Fellowships467

    [Executive records restricted until July 01, 2023]

    Science Public Policy467

    [Executive records restricted until July 01, 2023]

    SearchesGeneral467

    [Executive records restricted until July 01, 2023]

    Dentistry467

    [Personnel records restricted until July 01, 2033]

    Development, Vice President for467

    [Executive records restricted until July 01, 2023]

    Law School467

    [Personnel records restricted until July 01, 2033]

    Literature, Science and Arts (LS&A)467

    [Personnel records restricted until July 01, 2033]

    Medical Affairs, Executive Vice President for (EVPMA)467

    [Personnel records restricted until July 01, 2033]

    Pharmacy467

    [Executive records restricted until July 01, 2023]

    Provost467

    [Executive records restricted until July 01, 2023]

    Secretary of the University467

    [Executive records restricted until July 01, 2023]

    Senate Advisory Committee on University Affairs (SACUA)GeneralFolders 1-4467

    [Executive records restricted until July 01, 2023]

    Folder 5468

    [Executive records restricted until July 01, 2023]

    SACUA/Flint Dispute506

    [Patient/client records restricted until July 01, 2103]

    Severe Acute Respiratory Syndrome (SARS)2 folders468

    [Executive records restricted until July 01, 2023]

    Sexual OrientationGeneral2 folders468

    [Executive records restricted until July 01, 2023]

    Personnel468

    [Personnel records restricted until July 01, 2033]

    Society of Fellows468

    [Executive records restricted until July 01, 2023]

    Space468

    [Executive records restricted until July 01, 2023]

    Sponsored Programs468

    [Executive records restricted until July 01, 2023]

    Stewardship468

    [Executive records restricted until July 01, 2023]

    StudentsGeneral468

    [Executive records restricted until July 01, 2023]

    Complaints506

    [Student records restricted until July 01, 2088]

    Deceased468

    [Executive records restricted until July 01, 2023]

    Student Affairs468

    [Executive records restricted until July 01, 2023]

    Student and Exchange Visitor Information System (SEVIS)2 folders468

    [Executive records restricted until July 01, 2023]

    Student-Parent Task Force468

    [Executive records restricted until July 01, 2023]

    Students Organizing for Labor Equality (SOLE)468

    [Executive records restricted until July 01, 2023]

    Sun Microsystems468

    [Executive records restricted until July 01, 2023]

    Surveys468

    [Executive records restricted until July 01, 2023]

    Sustainable Systems468

    [Executive records restricted until July 01, 2023]

    Sympathy468

    [Executive records restricted until July 01, 2023]

    Technology Transfer468

    [Executive records restricted until July 01, 2023]

    Theatre Department468

    [Executive records restricted until July 01, 2023]

    Thurnau Professorships468

    [Executive records restricted until July 01, 2023]

    Transforming the Academy468

    [Executive records restricted until July 01, 2023]

    Tuition and FeesGeneral468

    [Executive records restricted until July 01, 2023]

    Students506

    [Student records restricted until July 01, 2088]

    Turkish Issues468

    [Executive records restricted until July 01, 2023]

    Undergraduate Council469

    [Executive records restricted until July 01, 2023]

    Undergraduate Initiatives469

    [Executive records restricted until July 01, 2023]

    Undergraduate Research Opportunity Program (UROP)469

    [Executive records restricted until July 01, 2023]

    Undergraduate Science469

    [Executive records restricted until July 01, 2023]

    Undergraduate Teaching469

    [Executive records restricted until July 01, 2023]

    University LibraryGeneral469

    [Executive records restricted until July 01, 2023]

    Personnel469

    [Personnel records restricted until July 01, 2033]

    University of Michigan469

    [Executive records restricted until July 01, 2023]

    University of Michigan Transportation Research Institute (UMTRI)469

    [Executive records restricted until July 01, 2023]

    University Musical Society (UMS)2 folders469

    [Executive records restricted until July 01, 2023]

    University Press2 folders469

    [Executive records restricted until July 01, 2023]

    Washington Office469

    [Executive records restricted until July 01, 2023]

    WebsiteGeneral469

    [Executive records restricted until July 01, 2023]

    Personnel469

    [Personnel records restricted until July 01, 2033]

    Student Inquiries506

    [Student records restricted until July 01, 2088]

    Whitaker Foundation469

    [Executive records restricted until July 01, 2023]

    Wilson Foundation469

    [Executive records restricted until July 01, 2023]

    WomenAppointments469

    [Personnel records restricted until July 01, 2033]

    Zell-Lurie Institute (ZLI)469

    [Executive records restricted until July 01, 2023]

    Schools and Colleges FilesArchitecture and Urban Planning, School ofGeneral469

    [Executive records restricted until July 01, 2023]

    Appointments and Recruitment469

    [Personnel records restricted until July 01, 2033]

    Art and Design, School ofGeneral469

    [Executive records restricted until July 01, 2023]

    Appointments469

    [Personnel records restricted until July 01, 2033]

    Business Administration, School ofGeneral469

    [Executive records restricted until July 01, 2023]

    Appointments469

    [Personnel records restricted until July 01, 2033]

    Fornell/WSJ Matter469

    [Personnel records restricted until July 01, 2033]

    Dearborn CampusGeneral469

    [Executive records restricted until July 01, 2023]

    Doctoral Program in Engineering469

    [Executive records restricted until July 01, 2023]

    Faculty469

    [Personnel records restricted until July 01, 2033]

    Dentistry, School of469

    [Executive records restricted until July 01, 2023]

    Education, School ofGeneral470

    [Executive records restricted until July 01, 2023]

    Appointments470

    [Personnel records restricted until July 01, 2033]

    Grievances470

    [Personnel records restricted until July 01, 2033]

    Students506

    [Student records restricted until July 01, 2088]

    Engineering, College ofGeneral4 folders470

    [Executive records restricted until July 01, 2023]

    Annual Performance Review470

    [Personnel records restricted until July 01, 2033]

    Appointments and Recruitment470

    [Personnel records restricted until July 01, 2033]

    Faculty Grievances470

    [Personnel records restricted until July 01, 2033]

    Weber, Walt-Grievance470

    [Personnel records restricted until July 01, 2033]

    Flint Campus470

    [Executive records restricted until July 01, 2023]

    Information, School ofGeneral470

    [Executive records restricted until July 01, 2023]

    Appointments470

    [Personnel records restricted until July 01, 2033]

    Kinesiology DivisionGeneral470

    [Executive records restricted until July 01, 2023]

    Appointments and Recruitment470

    [Personnel records restricted until July 01, 2033]

    Law SchoolGeneral470

    [Executive records restricted until July 01, 2023]

    Appointments and Recruitment470

    [Personnel records restricted until July 01, 2033]

    Hammer, Peter J.470

    [Personnel records restricted until July 01, 2033]

    Students506

    [Student records restricted until July 01, 2088]

    Literature, Science and the Arts, College ofGeneral5 folders470

    [Executive records restricted until July 01, 2023]

    Faculty Appointments471

    [Personnel records restricted until July 01, 2033]

    Recruitment471

    [Personnel records restricted until July 01, 2033]

    Spin 70471

    [Executive records restricted until July 01, 2023]

    Student Grievances506

    [Student records restricted until July 01, 2088]

    Medical SchoolGeneral2 folders471

    [Executive records restricted until July 01, 2023]

    Faculty Appointments2 folders471

    [Personnel records restricted until July 01, 2033]

    Music, School ofGeneral2 folders471

    [Executive records restricted until July 01, 2023]

    Cardullo Academic Integrity Issue471

    [Personnel records restricted until July 01, 2033]

    Faculty471

    [Personnel records restricted until July 01, 2033]

    Rental of Kroger Space471

    [Executive records restricted until July 01, 2023]

    Natural Resources and the Environment, School ofGeneral2 folders471

    [Executive records restricted until July 01, 2023]

    Recruitment and Retention471

    [Personnel records restricted until July 01, 2033]

    Nursing, School ofGeneral2 folders471

    [Executive records restricted until July 01, 2023]

    Audit506

    [Patient/client records restricted until July 01, 2103]

    Faculty471

    [Personnel records restricted until July 01, 2033]

    Pharmacy, College of471

    [Executive records restricted until July 01, 2023]

    Public Health, School ofGeneral471

    [Executive records restricted until July 01, 2023]

    Appointments471

    [Personnel records restricted until July 01, 2033]

    O'Donnell Case506

    [Patient/client records restricted until July 01, 2103]

    Symposium471

    [Executive records restricted until July 01, 2023]

    Public Policy, School ofGeneral471

    [Executive records restricted until July 01, 2023]

    Faculty471

    [Personnel records restricted until July 01, 2033]

    Rackham Graduate SchoolGeneral472

    [Executive records restricted until July 01, 2023]

    Student Inquiry506

    [Student records restricted until July 01, 2088]

    Social Work, School ofGeneral472

    [Executive records restricted until July 01, 2023]

    Appointments472

    [Personnel records restricted until July 01, 2033]

    Danziger Transfer472

    [Personnel records restricted until July 01, 2033]

    Chronological Files4 foldersSeptember 2002- August 2003490
    2003/2004Alphabetical FilesAcademic AffairsGeneral472

    [Executive records restricted until July 01, 2024]

    Appointments506

    [Personnel records restricted until July 01, 2034]

    Academic Affairs Advisory Committee (AAAC)3 folders472

    [Executive records restricted until July 01, 2024]

    Academic Governing Board (AGB)472

    [Executive records restricted until July 01, 2024]

    Academic Program Group (APG)3 folders472

    [Executive records restricted until July 01, 2024]

    Academic Program Group Development Subcommittee472

    [Executive records restricted until July 01, 2024]

    Access to Democracy472

    [Executive records restricted until July 01, 2024]

    AdmissionsGeneral3 folders472

    [Executive records restricted until July 01, 2024]

    General Counsel506

    [Patient/client records restricted until July 01, 2104]

    Miller, Blair506

    [Student records restricted until July 01, 2089]

    Advance473

    [Executive records restricted until July 01, 2024]

    Affiliation Agreements5 folders473

    [Executive records restricted until July 01, 2024]

    Affirmative Action473

    [Executive records restricted until July 01, 2024]

    Alumni473

    [Executive records restricted until July 01, 2024]

    American Academy of Arts and Sciences (AAAS)473

    [Executive records restricted until July 01, 2024]

    American Association of University Professors (AAUP)473

    [Executive records restricted until July 01, 2024]

    American Council on Education (ACE)473

    [Executive records restricted until July 01, 2024]

    Ann Arbor Public Schools473

    [Executive records restricted until July 01, 2024]

    Appropriations473

    [Executive records restricted until July 01, 2024]

    Arboretum473

    [Executive records restricted until July 01, 2024]

    Arts of Citizenship473

    [Executive records restricted until July 01, 2024]

    Arts at Michigan473

    [Executive records restricted until July 01, 2024]

    Associate Provosts473

    [Executive records restricted until July 01, 2024]

    Association of American Colleges and Universities (AACU)473

    [Executive records restricted until July 01, 2024]

    Association of American Universities (AAU)General473

    [Executive records restricted until July 01, 2024]

    Appointments506

    [Personnel records restricted until July 01, 2034]

    AthleticsGeneral2 folders473

    [Executive records restricted until July 01, 2024]

    Self-Study473

    [Executive records restricted until July 01, 2024]

    Student Athletes506

    [Student records restricted until July 01, 2089]

    Atlas ProjectGeneral473

    [Executive records restricted until July 01, 2024]

    Appointments506

    [Personnel records restricted until July 01, 2034]

    Audits506

    [Personnel records restricted until July 01, 2034]

    Awards474

    [Executive records restricted until July 01, 2024]

    Bargaining474

    [Executive records restricted until July 01, 2024]

    BenefitsGeneral2 folders474

    [Executive records restricted until July 01, 2024]

    Retiree474

    [Executive records restricted until July 01, 2024]

    Retiree-General Counsel507

    [Patient/client records restricted until July 01, 2104]

    Benefits Design Group474

    [Executive records restricted until July 01, 2024]

    Benefits Policy Committee474

    [Executive records restricted until July 01, 2024]

    Bentley Historical Library474

    [Executive records restricted until July 01, 2024]

    Biology474

    [Executive records restricted until July 01, 2024]

    Botanical Gardens (Matthaei) (includes commitment letter)474

    [Executive records restricted until July 01, 2024]

    BudgetGeneral474

    [Executive records restricted until July 01, 2024]

    House Hearings474

    [Executive records restricted until July 01, 2024]

    Primer474

    [Executive records restricted until July 01, 2024]

    State Budget Request2 folders474

    [Executive records restricted until July 01, 2024]

    Budget and Planning, Office of2 folders474

    [Executive records restricted until July 01, 2024]

    Calendar474

    [Executive records restricted until July 01, 2024]

    Camp Michigania474

    [Executive records restricted until July 01, 2024]

    Campaign Planning2 folders474

    [Executive records restricted until July 01, 2024]

    Campus Compact474

    [Executive records restricted until July 01, 2024]

    Campus Safety474

    [Executive records restricted until July 01, 2024]

    Capital Projects474

    [Executive records restricted until July 01, 2024]

    Carnegie Foundation474

    [Executive records restricted until July 01, 2024]

    Center for the Advancement of Behavioral and Social Science (CABSS)General475

    [Executive records restricted until July 01, 2024]

    Appointments507

    [Personnel records restricted until July 01, 2034]

    Center for the Education of Women (CEW)General475

    [Executive records restricted until July 01, 2024]

    Review507

    [Personnel records restricted until July 01, 2034]

    Center for Research on Learning and Teaching (CRLT)2 folders475

    [Executive records restricted until July 01, 2024]

    Chemical Biology2 folders475

    [Executive records restricted until July 01, 2024]

    Child Care475

    [Executive records restricted until July 01, 2024]

    Classification System Project475

    [Executive records restricted until July 01, 2024]

    Clements Library475

    [Executive records restricted until July 01, 2024]

    Climate475

    [Executive records restricted until July 01, 2024]

    College Board475

    [Executive records restricted until July 01, 2024]

    Commencement475

    [Executive records restricted until July 01, 2024]

    Committee on the Economic Status of the Faculty (CESF)475

    [Executive records restricted until July 01, 2024]

    Committee on Institutional Cooperation (CIC)2 folders475

    [Executive records restricted until July 01, 2024]

    Committee on Health Insurance Premium Design (CHIPD)6 foldersFolders 1-3475

    [Executive records restricted until July 01, 2024]

    Folders 4-6476

    [Executive records restricted until July 01, 2024]

    Communications476

    [Executive records restricted until July 01, 2024]

    Community Relations476

    [Executive records restricted until July 01, 2024]

    Compensation476

    [Executive records restricted until July 01, 2024]

    Complex Systems476

    [Executive records restricted until July 01, 2024]

    ComplianceGeneral507

    [Personnel records restricted until July 01, 2034]

    General Counsel507

    [Personnel records restricted until July 01, 2034]

    Conflict of Interest/Conflict of Commitment Committee476

    [Executive records restricted until July 01, 2024]

    Construction Costs476

    [Executive records restricted until July 01, 2024]

    Convocation476

    [Executive records restricted until July 01, 2024]

    Department of Public Safety476

    [Executive records restricted until July 01, 2024]

    Depression Center (includes Depression on College Campus Conference materials)476

    [Executive records restricted until July 01, 2024]

    The View From Here: Depression on College Campuses and Discussion TriggersMarch 10, 2004

    (Contains a digital video recording that was shown at the 2nd Annual Depression on College Campuses conference held at the University of Michigan on March 9-10, 2004.)

    [Executive records restricted until July 1, 2024]

    Detroit476

    [Executive records restricted until July 01, 2024]

    Detroit ObservatoryGeneral476

    [Executive records restricted until July 01, 2024]

    Appointments507

    [Personnel records restricted until July 01, 2034]

    DevelopmentGeneral2 folders476

    [Executive records restricted until July 01, 2024]

    Anonymous Donation507

    [Patient/client records restricted until July 01, 2104]

    Digital Media476

    [Executive records restricted until July 01, 2024]

    Disability476

    [Executive records restricted until July 01, 2024]

    Distinguished University Professors476

    [Executive records restricted until July 01, 2024]

    DiversityGeneral2 folders476

    [Executive records restricted until July 01, 2024]

    Review507

    [Personnel records restricted until July 01, 2034]

    General Counsel507

    [Patient/client records restricted until July 01, 2104]

    Dual Careers507

    [Personnel records restricted until July 01, 2034]

    E-Archiving476

    [Executive records restricted until July 01, 2024]

    Economic Forecasting476

    [Executive records restricted until July 01, 2024]

    Economic Impact476

    [Executive records restricted until July 01, 2024]

    Enrollment476

    [Executive records restricted until July 01, 2024]

    Environment476

    [Executive records restricted until July 01, 2024]

    Environmental Task Force476

    [Executive records restricted until July 01, 2024]

    Events477

    [Executive records restricted until July 01, 2024]

    Executive Officers3 folders477

    [Executive records restricted until July 01, 2024]

    Facilities & Facilities Advisory Committee477

    [Executive records restricted until July 01, 2024]

    FacultyGeneral477

    [Executive records restricted until July 01, 2024]

    Grievances507

    [Personnel records restricted until July 01, 2034]

    Loans507

    [Personnel records restricted until July 01, 2034]

    Fair Labor Standards Act (FLSA)507

    [Patient/client records restricted until July 01, 2104]

    Finance: VP AreaGeneral477

    [Executive records restricted until July 01, 2024]

    AVPF Search507

    [Personnel records restricted until July 01, 2034]

    Financial AidGeneral2 folders477

    [Executive records restricted until July 01, 2024]

    Students507

    [Student records restricted until July 01, 2089]

    Financial Controls Task Force477

    [Executive records restricted until July 01, 2024]

    Ford Nuclear Reactor477

    [Executive records restricted until July 01, 2024]

    Foundations: General477

    [Executive records restricted until July 01, 2024]

    Freedom Fuel477

    [Executive records restricted until July 01, 2024]

    Freedom of Information Act (FOIA)General477

    [Executive records restricted until July 01, 2024]

    General Counsel507

    [Patient/client records restricted until July 01, 2104]

    Funding477

    [Executive records restricted until July 01, 2024]

    Gender in Science and Engineering477

    [Executive records restricted until July 01, 2024]

    General CounselGeneral477

    [Executive records restricted until July 01, 2024]

    Cases507

    [Patient/client records restricted until July 01, 2104]

    Faculty507

    [Personnel records restricted until July 01, 2034]

    Students507

    [Student records restricted until July 01, 2089]

    Gifts (includes Mike Wallace gift)477

    [Executive records restricted until July 01, 2024]

    Government Relations477

    [Executive records restricted until July 01, 2024]

    Government: State477

    [Executive records restricted until July 01, 2024]

    Graduate Employees Organization (GEO)477

    [Executive records restricted until July 01, 2024]

    Graham Center for Environmental Systems Engineering2 foldersGeneral3 foldersFolder 1477

    [Executive records restricted until July 01, 2024]

    Folder 2-3478

    [Executive records restricted until July 01, 2024]

    Search507

    [Personnel records restricted until July 01, 2034]

    Health Science Council (HSC)478

    [Executive records restricted until July 01, 2024]

    Health ServiceGeneral2 folders478

    [Executive records restricted until July 01, 2024]

    Appointments507

    [Personnel records restricted until July 01, 2034]

    Healthcare Task Force478

    [Executive records restricted until July 01, 2024]

    Henry Russel Lecture478

    [Executive records restricted until July 01, 2024]

    Higher Education478

    [Executive records restricted until July 01, 2024]

    Hill Auditorium478

    [Executive records restricted until July 01, 2024]

    Homeland Security478

    [Executive records restricted until July 01, 2024]

    Honorary Degree478

    [Executive records restricted until July 01, 2024]

    Honors Program478

    [Executive records restricted until July 01, 2024]

    Hospitals and Health Centers Executive Board8 folders478

    [Executive records restricted until July 01, 2024]

    Housing478

    [Executive records restricted until July 01, 2024]

    Human Resources and Affirmative Action (HRAA)General478

    [Executive records restricted until July 01, 2024]

    Grievance507

    [Personnel records restricted until July 01, 2034]

    Searches507

    [Personnel records restricted until July 01, 2034]

    Human Resource Management System478

    [Executive records restricted until July 01, 2024]

    Immigration Task Force478

    [Executive records restricted until July 01, 2024]

    Incidence Response Team478

    [Executive records restricted until July 01, 2024]

    Indirect Cost Recovery478

    [Executive records restricted until July 01, 2024]

    Information Technology479General2 folders479

    [Executive records restricted until July 01, 2024]

    Communications479

    [Executive records restricted until July 01, 2024]

    Communications-Appointments507

    [Personnel records restricted until July 01, 2034]

    Institutes: General479

    [Executive records restricted until July 01, 2024]

    Institute of GerontologyGeneral479

    [Executive records restricted until July 01, 2024]

    Search507

    [Personnel records restricted until July 01, 2034]

    Institute for Social Research (ISR)General479

    [Executive records restricted until July 01, 2024]

    Appointments507

    [Personnel records restricted until July 01, 2034]

    Faculty/Staff Cases507

    [Personnel records restricted until July 01, 2034]

    International479

    [Executive records restricted until July 01, 2024]

    International Agreements479

    [Executive records restricted until July 01, 2024]

    International InstituteGeneral2 folders479

    [Executive records restricted until July 01, 2024]

    Appointments507

    [Personnel records restricted until July 01, 2034]

    Lahiji Case479

    [Executive records restricted until July 01, 2024]

    International Students507

    [Student records restricted until July 01, 2089]

    Knight Collaborative Engagement479

    [Executive records restricted until July 01, 2024]

    Kook Mail479

    [Executive records restricted until July 01, 2024]

    Lawsuit507

    [Patient/client records restricted until July 01, 2104]

    Lecturers Employee Organization3 folders479

    [Executive records restricted until July 01, 2024]

    Life SciencesGeneral479

    [Executive records restricted until July 01, 2024]

    Appointments507

    [Personnel records restricted until July 01, 2034]

    Life Science Institute2 folders479

    [Executive records restricted until July 01, 2024]

    Budget479

    [Executive records restricted until July 01, 2024]

    Life Sciences, Values and Society Program (LSVSP)480

    [Executive records restricted until July 01, 2024]

    M-Prime480

    [Executive records restricted until July 01, 2024]

    Martin Luther King, Jr.480

    [Executive records restricted until July 01, 2024]

    Still Separate? Still Unequal? Brown V. Board of Education, Fifty Years Later...January 19, 2004

    (Lecture by Lani Guinier, Professor of Law, Harvard Law School, for the 17th Annual Martin Luther King Jr. Symposium.)

    [Executive records restricted until July 1, 2024]

    A Conversation with the Brown SistersJanuary 12, 2004

    (Opening lecture of the Martin Luther King Jr. Symposium with the daughters of Rev. Oliver Brown, plaintiff in the Brown v. Board case, Linda Brown Thompson and Cheryl Brown Henderson.)

    [Executive records restricted until July 1, 2024]

    Media Union480

    [Executive records restricted until July 01, 2024]

    Medical AffairsGeneral480

    [Executive records restricted until July 01, 2024]

    Appointments507

    [Personnel records restricted until July 01, 2034]

    Medical Center480

    [Executive records restricted until July 01, 2024]

    Mellon Foundation480

    [Executive records restricted until July 01, 2024]

    Memberships480

    [Executive records restricted until July 01, 2024]

    Mentoring480

    [Executive records restricted until July 01, 2024]

    Michigan Administrative Information System (MAIS)480

    [Executive records restricted until July 01, 2024]

    Michigan Student Assembly (MSA)480

    [Executive records restricted until July 01, 2024]

    MicrobiologyGeneral480

    [Executive records restricted until July 01, 2024]

    Search507

    [Personnel records restricted until July 01, 2034]

    Millennium480

    [Executive records restricted until July 01, 2024]

    Museum of Art (UMMA)2 folders480

    [Executive records restricted until July 01, 2024]

    National Association of State Universities Land Grant Colleges (NASULGC)480

    [Executive records restricted until July 01, 2024]

    National Research Council (NRC)480

    [Executive records restricted until July 01, 2024]

    National Science Foundation (NSF)480

    [Executive records restricted until July 01, 2024]

    National Survey of Student Engagement (NSSE)480

    [Executive records restricted until July 01, 2024]

    NeuroscienceGeneral480

    [Executive records restricted until July 01, 2024]

    Appointments507

    [Personnel records restricted until July 01, 2034]

    New Student Programs480

    [Executive records restricted until July 01, 2024]

    News and Information480

    [Executive records restricted until July 01, 2024]

    North Campus480

    [Executive records restricted until July 01, 2024]

    Office of Academic Affairs (OAA) 6+13 folders480

    [Executive records restricted until July 01, 2024]

    Ombudsman507

    [Personnel records restricted until July 01, 2034]

    Organizational Studies480

    [Executive records restricted until July 01, 2024]

    Parking480

    [Executive records restricted until July 01, 2024]

    Polish Collaboratory Project480

    [Executive records restricted until July 01, 2024]

    Prescription Drugs480

    [Executive records restricted until July 01, 2024]

    PresidentGeneral4 foldersFolder 1-2480

    [Executive records restricted until July 01, 2024]

    Folder 3-4481

    [Executive records restricted until July 01, 2024]

    Dino Bris481

    [Executive records restricted until July 01, 2024]

    EDUA Search507

    [Personnel records restricted until July 01, 2034]

    Strategic Planning481

    [Executive records restricted until July 01, 2024]

    Presidential Initiative Fund481

    [Executive records restricted until July 01, 2024]

    President's Advisory Committee481

    [Executive records restricted until July 01, 2024]

    President's Advisory Committee on Women's Issues (PACWI)481

    [Executive records restricted until July 01, 2024]

    President's Staff2 folders481

    [Executive records restricted until July 01, 2024]

    Promotions481

    [Executive records restricted until July 01, 2024]

    Proposals3 folders481

    [Executive records restricted until July 01, 2024]

    Provost's Advisory Committee on Education481

    [Executive records restricted until July 01, 2024]

    Provost's Advisory Committee on Faculty481

    [Executive records restricted until July 01, 2024]

    Provost's Council on Student Honors (PCSH)481

    [Executive records restricted until July 01, 2024]

    Provost's Faculty Advisory Committee (PFAC)481

    [Executive records restricted until July 01, 2024]

    Provost's Faculty Initiative Program (PFIP)507

    [Personnel records restricted until July 01, 2034]

    Public Goods481

    [Executive records restricted until July 01, 2024]

    Recreational Sports481

    [Executive records restricted until July 01, 2024]

    RegentsCommunications3 folders481

    [Executive records restricted until July 01, 2024]

    Correspondence481

    [Executive records restricted until July 01, 2024]

    Emails to Regents481

    [Executive records restricted until July 01, 2024]

    General Regent Communications481

    [Executive records restricted until July 01, 2024]

    Miscellaneous482

    [Executive records restricted until July 01, 2024]

    Paul's Notes from Ind. Conversations with Regents482

    [Executive records restricted until July 01, 2024]

    Regent Bylaw Provisions482

    [Executive records restricted until July 01, 2024]

    Summary of Regental Approval of Personnel Matters482

    [Executive records restricted until July 01, 2024]

    Registrar482

    [Executive records restricted until July 01, 2024]

    Requests482

    [Executive records restricted until July 01, 2024]

    ResearchGeneral4 folders482

    [Executive records restricted until July 01, 2024]

    Appointments507

    [Personnel records restricted until July 01, 2034]

    General Counsel507

    [Patient/client records restricted until July 01, 2104]

    IRB507

    [Personnel records restricted until July 01, 2034]

    Moises, Hylan507

    [Personnel records restricted until July 01, 2034]

    Quantum Information Science482

    [Executive records restricted until July 01, 2024]

    Residential Life482

    [Executive records restricted until July 01, 2024]

    Retirement482

    [Executive records restricted until July 01, 2024]

    Reviews of Schools and Colleges482

    [Executive records restricted until July 01, 2024]

    Rhodes Scholarship482

    [Executive records restricted until July 01, 2024]

    "Roads Scholars"482

    [Executive records restricted until July 01, 2024]

    Salary2 folders482

    [Executive records restricted until July 01, 2024]

    Science Public Policy482

    [Executive records restricted until July 01, 2024]

    Science Teaching482

    [Executive records restricted until July 01, 2024]

    Sea Grant507

    [Personnel records restricted until July 01, 2034]

    SearchesGeneral482

    [Executive records restricted until July 01, 2024]

    Associate Vice President for Finance482

    [Executive records restricted until July 01, 2024]

    Housing Director482

    [Executive records restricted until July 01, 2024]

    Office for Institutional Equality507

    [Personnel records restricted until July 01, 2034]

    Public Health Dean482

    [Executive records restricted until July 01, 2024]

    Secretary of the University482

    [Executive records restricted until July 01, 2024]

    Senate Assembly482

    [Executive records restricted until July 01, 2024]

    Senate Advisory Committee on University Affairs (SACUA)4 folders482

    [Executive records restricted until July 01, 2024]

    Severe Acute Respiratory Syndrome (SARS)483

    [Executive records restricted until July 01, 2024]

    Sexual Orientation2 folders483

    [Executive records restricted until July 01, 2024]

    Society of Fellows483

    [Executive records restricted until July 01, 2024]

    Standard Practice Guidelines (SPG)483

    [Executive records restricted until July 01, 2024]

    StudentsGeneral483

    [Executive records restricted until July 01, 2024]

    Deceased483

    [Executive records restricted until July 01, 2024]

    Student AffairsGeneral2 folders483

    [Executive records restricted until July 01, 2024]

    Student Grievance507

    [Student records restricted until July 01, 2089]

    Student and Exchange Visitor Information System (SEVIS)483

    [Executive records restricted until July 01, 2024]

    Student-Parent Task Force483

    [Executive records restricted until July 01, 2024]

    Surveys483

    [Executive records restricted until July 01, 2024]

    Sympathy483

    [Executive records restricted until July 01, 2024]

    Technology Transfer483

    [Executive records restricted until July 01, 2024]

    Theatre Department483

    [Executive records restricted until July 01, 2024]

    Thurnau Professorships483

    [Executive records restricted until July 01, 2024]

    Transforming the Academy483

    [Executive records restricted until July 01, 2024]

    Travel Management483

    [Executive records restricted until July 01, 2024]

    Tuition and Fees483

    [Executive records restricted until July 01, 2024]

    Turkish Issues483

    [Executive records restricted until July 01, 2024]

    Undergraduate Council483

    [Executive records restricted until July 01, 2024]

    Undergraduate Initiatives483

    [Executive records restricted until July 01, 2024]

    Unions483

    [Executive records restricted until July 01, 2024]

    University Library483

    [Executive records restricted until July 01, 2024]

    University of Michigan Substance Abuse Research Center (UMSARC)483

    [Executive records restricted until July 01, 2024]

    University of Michigan Transportation Research Institute (UMTRI)507

    [Personnel records restricted until July 01, 2034]

    University Musical Society (UMS)483

    [Executive records restricted until July 01, 2024]

    University Press483

    [Executive records restricted until July 01, 2024]

    Visiting Professorship (Davis, Markert, and Nickerson)483

    [Executive records restricted until July 01, 2024]

    Washington Semester483

    [Executive records restricted until July 01, 2024]

    Whitaker Foundation483

    [Executive records restricted until July 01, 2024]

    Wilson Foundation483

    [Executive records restricted until July 01, 2024]

    WomenGeneral483

    [Executive records restricted until July 01, 2024]

    Appointments507

    [Personnel records restricted until July 01, 2034]

    Zell-Lurie Institute483

    [Executive records restricted until July 01, 2024]

    Schools and Colleges FilesArchitecture and Urban Planning, School of484

    [Executive records restricted until July 01, 2024]

    Art and Design, School ofGeneral484

    [Executive records restricted until July 01, 2024]

    Budget484

    [Executive records restricted until July 01, 2024]

    Cooper Complaint507

    [Student records restricted until July 01, 2089]

    Business Administration, School ofGeneral484

    [Executive records restricted until July 01, 2024]

    Appointments507

    [Personnel records restricted until July 01, 2034]

    Budget484

    [Executive records restricted until July 01, 2024]

    Grievance507

    [Personnel records restricted until July 01, 2034]

    Dearborn Campus484

    [Executive records restricted until July 01, 2024]

    Dentistry, School ofGeneral484

    [Executive records restricted until July 01, 2024]

    Budget484

    [Executive records restricted until July 01, 2024]

    Appointments507

    [Personnel records restricted until July 01, 2034]

    Education, School ofGeneral484

    [Executive records restricted until July 01, 2024]

    Budget484

    [Executive records restricted until July 01, 2024]

    Admissions507

    [Student records restricted until July 01, 2089]

    Appointments and Retention507

    [Personnel records restricted until July 01, 2034]

    Engineering, College ofGeneral484

    [Executive records restricted until July 01, 2024]

    Budget484

    [Executive records restricted until July 01, 2024]

    Appointments and Retention507

    [Personnel records restricted until July 01, 2034]

    Strategic Assessment3 folders484

    [Executive records restricted until July 01, 2024]

    Strategic Plan2 folders484

    [Executive records restricted until July 01, 2024]

    Flint CampusGeneral484

    [Executive records restricted until July 01, 2024]

    Grievances507

    [Personnel records restricted until July 01, 2034]

    Information, School ofGeneral484

    [Executive records restricted until July 01, 2024]

    Budget484

    [Executive records restricted until July 01, 2024]

    Strategic Assessment484

    [Executive records restricted until July 01, 2024]

    Kinesiology DivisionGeneral484

    [Executive records restricted until July 01, 2024]

    Appointments507

    [Personnel records restricted until July 01, 2034]

    Budget484

    [Executive records restricted until July 01, 2024]

    Law SchoolGeneral484

    [Executive records restricted until July 01, 2024]

    Appointments507

    [Personnel records restricted until July 01, 2034]

    Budget484

    [Executive records restricted until July 01, 2024]

    Hammer, Peter J.507

    [Personnel records restricted until July 01, 2034]

    Student Admissions507

    [Student records restricted until July 01, 2089]

    Literature, Science and the Arts, College ofGeneral4 folders485

    [Executive records restricted until July 01, 2024]

    Trans/formation of the DisciplinesFebruary 13-14, 2004

    (Includes papers from the conference.)

    [Executive records restricted until July 1, 2024]

    Budget485

    [Executive records restricted until July 01, 2024]

    Cycle of Arts485

    [Executive records restricted until July 01, 2024]

    Faculty Appointments507

    [Personnel records restricted until July 01, 2034]

    Grievances507

    [Personnel records restricted until July 01, 2034]

    Retention and Promotion507

    [Personnel records restricted until July 01, 2034]

    Sikh Studies507

    [Personnel records restricted until July 01, 2034]

    Sikh Studies General Counsel507

    [Patient/client records restricted until July 01, 2104]

    Singh, Pashura507

    [Personnel records restricted until July 01, 2034]

    Standifer, James507

    [Personnel records restricted until July 01, 2034]

    Students507

    [Student records restricted until July 01, 2089]

    Medical SchoolGeneral2 folders485

    [Executive records restricted until July 01, 2024]

    Budget485

    [Executive records restricted until July 01, 2024]

    Chair Search, Pathology507

    [Personnel records restricted until July 01, 2034]

    Faculty Appointments507

    [Personnel records restricted until July 01, 2034]

    Hospitals485

    [Executive records restricted until July 01, 2024]

    Retention and Recruitment507

    [Personnel records restricted until July 01, 2034]

    Music, School ofGeneral2 folders485

    [Executive records restricted until July 01, 2024]

    Appointments507

    [Personnel records restricted until July 01, 2034]

    Trueblood Fellowship Fund507

    [Patient/client records restricted until July 01, 2104]

    Natural Resources and the Environment, School ofGeneral485

    [Executive records restricted until July 01, 2024]

    Appointments and Recruitment507

    [Personnel records restricted until July 01, 2034]

    Nursing, School ofGeneral485

    [Executive records restricted until July 01, 2024]

    Appointments507

    [Personnel records restricted until July 01, 2034]

    Pharmacy, College ofGeneral3 folders485

    [Executive records restricted until July 01, 2024]

    Appointments507

    [Personnel records restricted until July 01, 2034]

    Public Health, School ofGeneral485

    [Executive records restricted until July 01, 2024]

    Appointments508

    [Personnel records restricted until July 01, 2034]

    Public Policy, School ofGeneral2 folders486

    [Executive records restricted until July 01, 2024]

    Appointments5086

    [Personnel records restricted until July 01, 2034]

    Dearborn Master's Program486

    [Executive records restricted until July 01, 2024]

    Rackham Graduate SchoolGeneral486

    [Executive records restricted until July 01, 2024]

    General Counsel508

    [Patient/client records restricted until July 01, 2104]

    Students508

    [Student records restricted until July 01, 2089]

    Social Work, School ofGeneral486

    [Executive records restricted until July 01, 2024]

    Appointments508

    [Personnel records restricted until July 01, 2034]

    Burton, David508

    [Personnel records restricted until July 01, 2034]

    Chronological FilesSeptember-December 2003490January-February 20044913 foldersMarch 2004-Aug 2004583
    2004/2005Alphabetical FilesAcademic AffairsGeneral491

    [Executive records restricted until July 01, 2025]

    Appointments508

    [Personnel records restricted until July 01, 2035]

    Academic Affairs Advisory Committee (AAAC)491

    [Executive records restricted until July 01, 2025]

    Academic Governing Board491

    [Executive records restricted until July 01, 2025]

    Academic Program Group (APG)3 folders491

    [Executive records restricted until July 01, 2025]

    Academic Program Group Development Subcommittee491

    [Executive records restricted until July 01, 2025]

    Accreditation491

    [Executive records restricted until July 01, 2025]

    AdmissionsGeneral5 folders491

    [Executive records restricted until July 01, 2025]

    Students508

    [Student records restricted until July 01, 2090]

    Advance2 foldersFolder 1491

    [Executive records restricted until July 01, 2025]

    Folder 2492

    [Executive records restricted until July 01, 2025]

    Affiliation Agreements4 folders492

    [Executive records restricted until July 01, 2025]

    Alumni492

    [Executive records restricted until July 01, 2025]

    American Academy of Arts and Sciences (AAAS)492

    [Executive records restricted until July 01, 2025]

    American Council on Education492

    [Executive records restricted until July 01, 2025]

    American Council of Learned Societies-Cyber Commission2 folders492

    [Executive records restricted until July 01, 2025]

    Arts of Citizenship492

    [Executive records restricted until July 01, 2025]

    Association of American Colleges and Universities (AACU)492

    [Executive records restricted until July 01, 2025]

    Association of American Universities (AAU)2 folders492

    [Executive records restricted until July 01, 2025]

    Athletics2 folders492

    [Executive records restricted until July 01, 2025]

    Audits4 foldersGeneral4 folders492

    [Executive records restricted until July 01, 2025]

    Personnel508

    [Personnel records restricted until July 01, 2035]

    Awards493

    [Executive records restricted until July 01, 2025]

    Benefits493

    [Executive records restricted until July 01, 2025]

    Bentley Historical Library493

    [Executive records restricted until July 01, 2025]

    Biology493

    [Executive records restricted until July 01, 2025]

    Botanical Gardens (Matthaei)493

    [Executive records restricted until July 01, 2025]

    BudgetGeneral493

    [Executive records restricted until July 01, 2025]

    Flexible Funds493

    [Executive records restricted until July 01, 2025]

    State Budget Request493

    [Executive records restricted until July 01, 2025]

    Budget and Planning OfficeGeneral493

    [Executive records restricted until July 01, 2025]

    Trends in Administration Report493

    [Executive records restricted until July 01, 2025]

    Calendar493

    [Executive records restricted until July 01, 2025]

    Campaign Planning493

    [Executive records restricted until July 01, 2025]

    Campus Compact493

    [Executive records restricted until July 01, 2025]

    Campus Safety493

    [Executive records restricted until July 01, 2025]

    Capital Projects493

    [Executive records restricted until July 01, 2025]

    Carnegie Foundation493

    [Executive records restricted until July 01, 2025]

    Center for Advancing Research and Societal Solutions (CARSS)493

    [Executive records restricted until July 01, 2025]

    Center for the Continuing Education of Women (CEW)493

    [Executive records restricted until July 01, 2025]

    Center for Research on Learning and Teaching (CRLT)493

    [Executive records restricted until July 01, 2025]

    Central Campus493

    [Executive records restricted until July 01, 2025]

    Chemical Biology493

    [Executive records restricted until July 01, 2025]

    Cherry Commission493

    [Executive records restricted until July 01, 2025]

    China4 folders493

    [Executive records restricted until July 01, 2025]

    Clements Library494

    [Executive records restricted until July 01, 2025]

    Cognate Panel494

    [Executive records restricted until July 01, 2025]

    College Board494

    [Executive records restricted until July 01, 2025]

    Commencement494

    [Executive records restricted until July 01, 2025]

    Committee on Institutional Cooperation (CIC)General3 folders494

    [Executive records restricted until July 01, 2025]

    Engagement494

    [Executive records restricted until July 01, 2025]

    Institutional Repository494

    [Executive records restricted until July 01, 2025]

    Communications494

    [Executive records restricted until July 01, 2025]

    Community Relations494

    [Executive records restricted until July 01, 2025]

    Complex Systems494

    [Executive records restricted until July 01, 2025]

    Conflict of Interest/Conflict of Commitment Committee494

    [Executive records restricted until July 01, 2025]

    Convocation494

    [Executive records restricted until July 01, 2025]

    Delegation of Authority494

    [Executive records restricted until July 01, 2025]

    Department of Public Safety494

    [Executive records restricted until July 01, 2025]

    Depression Center494

    [Executive records restricted until July 01, 2025]

    Detroit494

    [Executive records restricted until July 01, 2025]

    Detroit Initiative494

    [Executive records restricted until July 01, 2025]

    Detroit Observatory494

    [Executive records restricted until July 01, 2025]

    DevelopmentGeneral494

    [Executive records restricted until July 01, 2025]

    Budget494

    [Executive records restricted until July 01, 2025]

    Digital Media494

    [Executive records restricted until July 01, 2025]

    Disabilities494

    [Executive records restricted until July 01, 2025]

    Distinguished University Professors494

    [Executive records restricted until July 01, 2025]

    Diversity494

    [Executive records restricted until July 01, 2025]

    Dual Careers508

    [Personnel records restricted until July 01, 2035]

    Economic Forecasting494

    [Executive records restricted until July 01, 2025]

    Enrollment494

    [Executive records restricted until July 01, 2025]

    Environment494

    [Executive records restricted until July 01, 2025]

    Events494

    [Executive records restricted until July 01, 2025]

    Executive OfficersGeneral8 foldersFolders 1-2494

    [Executive records restricted until July 01, 2025]

    Folders 3-8495

    [Executive records restricted until July 01, 2025]

    Correspondence495

    [Executive records restricted until July 01, 2025]

    RACI495

    [Executive records restricted until July 01, 2025]

    Facilities495

    [Executive records restricted until July 01, 2025]

    Faculty495

    [Executive records restricted until July 01, 2025]

    Fair Labor Standards ActGeneral495

    [Executive records restricted until July 01, 2025]

    General Counsel508

    [Patient/client records restricted until July 01, 2105]

    FinanceBudget495

    [Executive records restricted until July 01, 2025]

    VP Area495

    [Executive records restricted until July 01, 2025]

    Financial Aid2 folders495

    [Executive records restricted until July 01, 2025]

    Financial Reports495

    [Executive records restricted until July 01, 2025]

    Ford Motor Company Fund Proposal495

    [Executive records restricted until July 01, 2025]

    Ford Nuclear Reactor495

    [Executive records restricted until July 01, 2025]

    Foundations: General495

    [Executive records restricted until July 01, 2025]

    Gender in Science and EngineeringGeneral495

    [Executive records restricted until July 01, 2025]

    Subcommittee Reports495

    [Executive records restricted until July 01, 2025]

    General CounselGeneral495

    [Executive records restricted until July 01, 2025]

    Cases508

    [Patient/client records restricted until July 01, 2105]

    Faculty/Staff508

    [Personnel records restricted until July 01, 2035]

    Global Change495

    [Executive records restricted until July 01, 2025]

    Government Relations496

    [Executive records restricted until July 01, 2025]

    Graduate Student Instructors (GSI)496

    [Executive records restricted until July 01, 2025]

    Graduate Employees Organization (GEO)496

    [Executive records restricted until July 01, 2025]

    Graham, Don496

    [Executive records restricted until July 01, 2025]

    Health Insurance Portability and Accountability Act (HIPAA)496

    [Executive records restricted until July 01, 2025]

    Health Science Council (HSC)496

    [Executive records restricted until July 01, 2025]

    Henry Russel Lecture496

    [Executive records restricted until July 01, 2025]

    Higher Education496

    [Executive records restricted until July 01, 2025]

    Honorary Degree496

    [Executive records restricted until July 01, 2025]

    Hospitals and Health Centers Executive Board (HHCEB)10 volumes, 1 folder496

    [Executive records restricted until July 01, 2025]

    Housing496

    [Executive records restricted until July 01, 2025]

    Human Resources and Affirmative Action (HRAA)4 foldersFolders 1-2496

    [Executive records restricted until July 01, 2025]

    Supervisor's Toolkit

    [Executive records restricted until July 1, 2025]

    Folders 3-4497

    [Executive records restricted until July 01, 2025]

    Immigration Task Force497

    [Executive records restricted until July 01, 2025]

    Information Technology3 folders497

    [Executive records restricted until July 01, 2025]

    Information Technology Central Services (ITCS)497

    [Executive records restricted until July 01, 2025]

    Information Technology Security Council497

    [Executive records restricted until July 01, 2025]

    Institute of Gerontology497

    [Executive records restricted until July 01, 2025]

    Institute for Labor and Industrial Relations (ILIR)General497

    [Executive records restricted until July 01, 2025]

    Director Review508

    [Personnel records restricted until July 01, 2035]

    Institute for Social Research (ISR)General497

    [Executive records restricted until July 01, 2025]

    Appointments508

    [Personnel records restricted until July 01, 2035]

    Institutional EquityGeneral497

    [Executive records restricted until July 01, 2025]

    Complaints508

    [Personnel records restricted until July 01, 2035]

    Intellectual Property497

    [Executive records restricted until July 01, 2025]

    InternationalGeneral497

    [Executive records restricted until July 01, 2025]

    Students508

    [Student records restricted until July 01, 2090]

    International InstituteGeneral2 folders497

    [Executive records restricted until July 01, 2025]

    Appointments508

    [Personnel records restricted until July 01, 2035]

    Kellogg497

    [Executive records restricted until July 01, 2025]

    "Kook Mail"497

    [Executive records restricted until July 01, 2025]

    Lawsuit497

    [Executive records restricted until July 01, 2025]

    Lecturers Employee Organization (LEO)497

    [Executive records restricted until July 01, 2025]

    Life Sciences, Values and Society Program (LSVSP)497

    [Executive records restricted until July 01, 2025]

    M-Prime497

    [Executive records restricted until July 01, 2025]

    Master Plan497

    [Executive records restricted until July 01, 2025]

    Media Union497

    [Executive records restricted until July 01, 2025]

    Medical Affairs497

    [Executive records restricted until July 01, 2025]

    Medical CenterGeneral497

    [Executive records restricted until July 01, 2025]

    Hospital Budget497

    [Executive records restricted until July 01, 2025]

    Mellon Foundation497

    [Executive records restricted until July 01, 2025]

    Mental Health Research Institute (MHRI)497

    [Executive records restricted until July 01, 2025]

    Michigan Administrative Information System (MAIS)497

    [Executive records restricted until July 01, 2025]

    Michigan Student Assembly (MSA)498

    [Executive records restricted until July 01, 2025]

    Midwest Universities Consortium for International Activities (MUCIA)498

    [Executive records restricted until July 01, 2025]

    Millennium498

    [Executive records restricted until July 01, 2025]

    Multicultural Affairs498

    [Executive records restricted until July 01, 2025]

    Museum of Art (UMMA)498

    [Executive records restricted until July 01, 2025]

    Nanoscience Building498

    [Executive records restricted until July 01, 2025]

    National Association of State Universities Land Grant Colleges (NASULGC)498

    [Executive records restricted until July 01, 2025]

    National Science Foundation (NSF)498

    [Executive records restricted until July 01, 2025]

    National Survey of Student Engagement (NSSE)498

    [Executive records restricted until July 01, 2025]

    National Tragedies498

    [Executive records restricted until July 01, 2025]

    Neuroscience498

    [Executive records restricted until July 01, 2025]

    New Student Programs498

    [Executive records restricted until July 01, 2025]

    News and Information498

    [Executive records restricted until July 01, 2025]

    North Campus498

    [Executive records restricted until July 01, 2025]

    Office of Academic Affairs (OAA) 6+14 folders498

    [Executive records restricted until July 01, 2025]

    Parking498

    [Executive records restricted until July 01, 2025]

    Peer Institutions498

    [Executive records restricted until July 01, 2025]

    President498

    [Executive records restricted until July 01, 2025]

    Presidential Initiative Fund498

    [Executive records restricted until July 01, 2025]

    Presidential InitiativesGeneral498

    [Executive records restricted until July 01, 2025]

    Committee on Multidisciplinary Education and Team Teaching498

    [Executive records restricted until July 01, 2025]

    Committee on the Prototype for Rational and Affordable Health Care498

    [Executive records restricted until July 01, 2025]

    Committee on Reconnection of Student Residential and Academic Life498

    [Executive records restricted until July 01, 2025]

    Committee on University Scholarship on Ethical Issues in the Public Domain498

    [Executive records restricted until July 01, 2025]

    Presidential Initiative on Healthy Living498

    [Executive records restricted until July 01, 2025]

    President's Council498

    [Executive records restricted until July 01, 2025]

    Program in the Environment (PITE)498

    [Executive records restricted until July 01, 2025]

    PromotionsGeneral498

    [Executive records restricted until July 01, 2025]

    Faculty508

    [Personnel records restricted until July 01, 2035]

    Proposals498

    [Executive records restricted until July 01, 2025]

    Provost's Advisory Committee on Education and Evaluation of Responsible Research and Scholarship498

    [Executive records restricted until July 01, 2025]

    Provost's Advisory Committee on Education for a Diverse Democracy498

    [Executive records restricted until July 01, 2025]

    Provost's Advisory Committee on Faculty498

    [Executive records restricted until July 01, 2025]

    Provost's Council on Student Honors (PCSH)498

    [Executive records restricted until July 01, 2025]

    Provost's Faculty Advisory Committee (PFAC)498

    [Executive records restricted until July 01, 2025]

    Provost's Faculty Initiative Program (PFIP)508

    [Personnel records restricted until July 01, 2035]

    Provost's Advisory Council on Women's Initiatives (PACWI)498

    [Executive records restricted until July 01, 2025]

    Public Goods498

    [Executive records restricted until July 01, 2025]

    Recreational Sports498

    [Executive records restricted until July 01, 2025]

    RegentsApproval of Personnel Matters498

    [Executive records restricted until July 01, 2025]

    Bylaw Revisions498

    [Executive records restricted until July 01, 2025]

    Communications3 folders499

    [Executive records restricted until July 01, 2025]

    Conversation Notes499

    [Executive records restricted until July 01, 2025]

    CorrespondenceGeneral499

    [Executive records restricted until July 01, 2025]

    Searches508

    [Personnel records restricted until July 01, 2035]

    Students508

    [Student records restricted until July 01, 2090]

    E-mails to Regents499

    [Executive records restricted until July 01, 2025]

    General Communications499

    [Executive records restricted until July 01, 2025]

    Miscellaneous499

    [Executive records restricted until July 01, 2025]

    Symposia Ideas499

    [Executive records restricted until July 01, 2025]

    Registrar2 folders499

    [Executive records restricted until July 01, 2025]

    Requests3 folders499

    [Executive records restricted until July 01, 2025]

    ResearchGeneral499

    [Executive records restricted until July 01, 2025]

    Appointments508

    [Personnel records restricted until July 01, 2035]

    Misconduct508

    [Personnel records restricted until July 01, 2035]

    ResidencyGeneral499

    [Executive records restricted until July 01, 2025]

    Students508

    [Student records restricted until July 01, 2090]

    Residential College499

    [Executive records restricted until July 01, 2025]

    Residential Life4 foldersFolders 1-2499

    [Executive records restricted until July 01, 2025]

    Folders 3-4500

    [Executive records restricted until July 01, 2025]

    Rhodes Scholarship500

    [Executive records restricted until July 01, 2025]

    "Roads Scholars"500

    [Executive records restricted until July 01, 2025]

    Science, Technology and Public Policy500

    [Executive records restricted until July 01, 2025]

    Sea Grant500

    [Executive records restricted until July 01, 2025]

    SearchesEducation508

    [Personnel records restricted until July 01, 2035]

    Institute for Social Research (ISR)508

    [Personnel records restricted until July 01, 2035]

    Rackham Dean Search508

    [Personnel records restricted until July 01, 2035]

    Vice President for Research508

    [Personnel records restricted until July 01, 2035]

    Secretary of the University508

    [Personnel records restricted until July 01, 2035]

    Senate Assembly500

    [Executive records restricted until July 01, 2025]

    Senate Advisory Committee on University Affairs (SACUA)4 folders500

    [Executive records restricted until July 01, 2025]

    Sexual Orientation2 folders500

    [Executive records restricted until July 01, 2025]

    Society of Fellows500

    [Executive records restricted until July 01, 2025]

    Standard Practice Guidelines (SPG)500

    [Executive records restricted until July 01, 2025]

    StudentsGeneral500

    [Executive records restricted until July 01, 2025]

    Complaints500

    [Executive records restricted until July 01, 2025]

    Deceased500

    [Executive records restricted until July 01, 2025]

    Student Affairs2 folders500

    [Executive records restricted until July 01, 2025]

    Student and Exchange Visitor Information System (SEVIS)500

    [Executive records restricted until July 01, 2025]

    Student-Parent Task Force500

    [Executive records restricted until July 01, 2025]

    Student Recruitment500

    [Executive records restricted until July 01, 2025]

    Surveys500

    [Executive records restricted until July 01, 2025]

    Team Teaching Task Force500

    [Executive records restricted until July 01, 2025]

    Technology Transfer500

    [Executive records restricted until July 01, 2025]

    Tenure500

    [Executive records restricted until July 01, 2025]

    Thurnau Professors500

    [Executive records restricted until July 01, 2025]

    Tuition500

    [Executive records restricted until July 01, 2025]

    Undergraduate Council500

    [Executive records restricted until July 01, 2025]

    Undergraduate Teaching500

    [Executive records restricted until July 01, 2025]

    University LibraryGeneral500

    [Executive records restricted until July 01, 2025]

    Google Books Digitization500

    [Executive records restricted until July 01, 2025]

    University Musical Society501

    [Executive records restricted until July 01, 2025]

    University Press501

    [Executive records restricted until July 01, 2025]

    Whitaker Foundation501

    [Executive records restricted until July 01, 2025]

    Women501

    [Executive records restricted until July 01, 2025]

    Zell Lurie Institute501

    [Executive records restricted until July 01, 2025]

    Schools and Colleges FilesArchitecture and Urban Planning, School ofGeneral501

    [Executive records restricted until July 01, 2025]

    Appointments and Promotions508

    [Personnel records restricted until July 01, 2035]

    Art and Design, School ofGeneral501

    [Executive records restricted until July 01, 2025]

    Appointments508

    [Personnel records restricted until July 01, 2035]

    Business Administration, School ofGeneral501

    [Executive records restricted until July 01, 2025]

    Appointments and Promotions508

    [Personnel records restricted until July 01, 2035]

    Grievance508

    [Personnel records restricted until July 01, 2035]

    Dearborn Campus501

    [Executive records restricted until July 01, 2025]

    Dentistry, School ofGeneral501

    [Executive records restricted until July 01, 2025]

    Promotion and Retention508

    [Personnel records restricted until July 01, 2035]

    Education, School ofGeneral501

    [Executive records restricted until July 01, 2025]

    Appointments508

    [Personnel records restricted until July 01, 2035]

    Ball, Deborah508

    [Personnel records restricted until July 01, 2035]

    Nidiffer, Jana-Tenure508

    [Personnel records restricted until July 01, 2035]

    Raudenbush Retention508

    [Personnel records restricted until July 01, 2035]

    Personnel Matter508

    [Personnel records restricted until July 01, 2035]

    Engineering, College ofGeneral501

    [Executive records restricted until July 01, 2025]

    Appointments508

    [Personnel records restricted until July 01, 2035]

    Strategic Plan501

    [Executive records restricted until July 01, 2025]

    Students508

    [Student records restricted until July 01, 2090]

    Flint Campus501

    [Executive records restricted until July 01, 2025]

    Information, School ofGeneral501

    [Executive records restricted until July 01, 2025]

    Kellogg Foundation501

    [Executive records restricted until July 01, 2025]

    Recruitment508

    [Personnel records restricted until July 01, 2035]

    Kinesiology Division501

    [Executive records restricted until July 01, 2025]

    Law SchoolGeneral501

    [Executive records restricted until July 01, 2025]

    Faculty and Appointments508

    [Personnel records restricted until July 01, 2035]

    Life Sciences Institute (LSI)General3 folders501

    [Executive records restricted until July 01, 2025]

    LSI Appointments508

    [Personnel records restricted until July 01, 2035]

    Literature, Science and the Arts, College ofGeneral3 folders502

    [Executive records restricted until July 01, 2025]

    Appointments and Retention508

    [Personnel records restricted until July 01, 2035]

    Medical SchoolGeneral2 folders502

    [Executive records restricted until July 01, 2025]

    Appointments508

    [Personnel records restricted until July 01, 2035]

    Music, School ofGeneral502

    [Executive records restricted until July 01, 2025]

    Appointments508

    [Personnel records restricted until July 01, 2035]

    Grievances508

    [Personnel records restricted until July 01, 2035]

    Natural Resources and the Environment, School ofGeneral502

    [Executive records restricted until July 01, 2025]

    External Advisory Committee502

    [Executive records restricted until July 01, 2025]

    Michigan Sea Grant502

    [Executive records restricted until July 01, 2025]

    Recruitment508

    [Personnel records restricted until July 01, 2035]

    Nursing, School ofGeneral502

    [Executive records restricted until July 01, 2025]

    Appointments508

    [Personnel records restricted until July 01, 2035]

    Students508

    [Student records restricted until July 01, 2090]

    Pharmacy, College ofGeneral502

    [Executive records restricted until July 01, 2025]

    Appointments508

    [Personnel records restricted until July 01, 2035]

    Public Health, School ofGeneral502

    [Executive records restricted until July 01, 2025]

    Appointments508

    [Personnel records restricted until July 01, 2035]

    Dean Search508

    [Personnel records restricted until July 01, 2035]

    New Building2001-2003502

    [Executive records restricted until July 01, 2023]

    Self-Study Report2 folders502

    [Executive records restricted until July 01, 2025]

    Public Policy, School ofGeneral2 folders502

    [Executive records restricted until July 01, 2025]

    Appointments508

    [Personnel records restricted until July 01, 2035]

    Rackham Graduate SchoolGeneral502

    [Executive records restricted until July 01, 2025]

    Appointments508

    [Personnel records restricted until July 01, 2035]

    Social Work, School ofGeneral502

    [Executive records restricted until July 01, 2025]

    Appointments508

    [Personnel records restricted until July 01, 2035]

    Chronological Files4 foldersSeptember 2004-April 20055832 foldersMay-August 2005584
    2005/2006Alphabetical FilesAcademic AffairsGeneral2 folders509

    [Executive records restricted until July 01, 2026]

    Advisory Committee509

    [Executive records restricted until July 01, 2026]

    Budget509

    [Executive records restricted until July 01, 2026]

    CIAR Review575

    [Personnel records restricted until July 01, 2036]

    Provost Search575

    [Personnel records restricted until July 01, 2036]

    Academic Affairs Advisory Committee509

    [Executive records restricted until July 01, 2026]

    Academic Governing Board (AGB)509

    [Executive records restricted until July 01, 2026]

    Academic Program Group (APG)2 folders509

    [Executive records restricted until July 01, 2026]

    Academic Program Group Development (APGD)509

    [Executive records restricted until July 01, 2026]

    Accreditation509

    [Executive records restricted until July 01, 2026]

    AdmissionsGeneral509

    [Executive records restricted until July 01, 2026]

    Spencer, Theodore575

    [Personnel records restricted until July 01, 2036]

    ADVANCE509

    [Executive records restricted until July 01, 2026]

    Affiliation Agreements5 folders509

    [Executive records restricted until July 01, 2026]

    Alumni509

    [Executive records restricted until July 01, 2026]

    American Association of University Professors (AAUP)509

    [Executive records restricted until July 01, 2026]

    American Council on Education (ACE)509

    [Executive records restricted until July 01, 2026]

    American Council of Learned Societies (ACLS) CyberCommission level3509

    [Executive records restricted until July 01, 2026]

    Arts of Citizenship509

    [Executive records restricted until July 01, 2026]

    Arts @ Michigan509

    [Executive records restricted until July 01, 2026]

    Associate Provosts509

    [Executive records restricted until July 01, 2026]

    Association of American Colleges and Universities (AACU)509

    [Executive records restricted until July 01, 2026]

    Association of American Universities (AAU)509

    [Executive records restricted until July 01, 2026]

    Athletics509

    [Executive records restricted until July 01, 2026]

    Audits2 folders510

    [Executive records restricted until July 01, 2026]

    Awards510

    [Executive records restricted until July 01, 2026]

    Benefits510

    [Executive records restricted until July 01, 2026]

    Bentley Historical LibraryGeneral510

    [Executive records restricted until July 01, 2026]

    Appointments575

    [Personnel records restricted until July 01, 2036]

    Botanical Gardens510

    [Executive records restricted until July 01, 2026]

    BudgetGeneral3 folders510

    [Executive records restricted until July 01, 2026]

    State Budget Request510

    [Executive records restricted until July 01, 2026]

    Budget and Planning3 folders510

    [Executive records restricted until July 01, 2026]

    Calendar510

    [Executive records restricted until July 01, 2026]

    Campaign510

    [Executive records restricted until July 01, 2026]

    Campus Safety510

    [Executive records restricted until July 01, 2026]

    Capital Projects510

    [Executive records restricted until July 01, 2026]

    Carnegie510

    [Executive records restricted until July 01, 2026]

    Center for Advancing Research and Societal Solutions (CARSS)510

    [Executive records restricted until July 01, 2026]

    Center for the Education of Women (CEW)510

    [Executive records restricted until July 01, 2026]

    Center for Research on Learning and Teaching (CRLT)510

    [Executive records restricted until July 01, 2026]

    ChinaGeneral511

    [Executive records restricted until July 01, 2026]

    Background-UM in China511

    [Executive records restricted until July 01, 2026]

    Issues511

    [Executive records restricted until July 01, 2026]

    Mary Sue Coleman Invitation511

    [Executive records restricted until July 01, 2026]

    Michigan-China University Leadership Forum3 folders511

    [Executive records restricted until July 01, 2026]

    Peking University Joint Institute511

    [Executive records restricted until July 01, 2026]

    Shanghai Jiao Tong University (SJTU) Joint Institute511

    [Executive records restricted until July 01, 2026]

    Trip Planning511

    [Executive records restricted until July 01, 2026]

    Trip Proposals and Agreements511

    [Executive records restricted until July 01, 2026]

    Clements Library575

    [Personnel records restricted until July 01, 2036]

    Commencement511

    [Executive records restricted until July 01, 2026]

    Committee on Institutional Cooperation (CIC)General511

    [Executive records restricted until July 01, 2026]

    Engaged Institution Initiative511

    [Executive records restricted until July 01, 2026]

    Communications511

    [Executive records restricted until July 01, 2026]

    Community Relations511

    [Executive records restricted until July 01, 2026]

    Compensation511

    [Executive records restricted until July 01, 2026]

    Conflict of Interest/Commitment511

    [Executive records restricted until July 01, 2026]

    Constitution Day2 folders511

    [Executive records restricted until July 01, 2026]

    Convocation511

    [Executive records restricted until July 01, 2026]

    Delegation of Authority511

    [Executive records restricted until July 01, 2026]

    Depression Center511

    [Executive records restricted until July 01, 2026]

    Detroit511

    [Executive records restricted until July 01, 2026]

    Detroit Observatory511

    [Executive records restricted until July 01, 2026]

    Development7 folders512

    [Executive records restricted until July 01, 2026]

    Distinguished University Professors512

    [Executive records restricted until July 01, 2026]

    Diversity2 folders512

    [Executive records restricted until July 01, 2026]

    Dual Career575

    [Personnel records restricted until July 01, 2036]

    Economic Forecasting2 folders512

    [Executive records restricted until July 01, 2026]

    Economic Impact512

    [Executive records restricted until July 01, 2026]

    Enrollment512

    [Executive records restricted until July 01, 2026]

    Environment512

    [Executive records restricted until July 01, 2026]

    Ethics in Public Life Task Force512

    [Executive records restricted until July 01, 2026]

    Executive Officers5 folders512

    [Executive records restricted until July 01, 2026]

    Events513

    [Executive records restricted until July 01, 2026]

    Facilities513

    [Executive records restricted until July 01, 2026]

    Faculty2 folders513

    [Executive records restricted until July 01, 2026]

    Family Friendly Policies513

    [Executive records restricted until July 01, 2026]

    Finance VP Area513

    [Executive records restricted until July 01, 2026]

    Financial AidGeneral513

    [Executive records restricted until July 01, 2026]

    Staff Salaries575

    [Personnel records restricted until July 01, 2036]

    Students575

    [Student records restricted until July 01, 2091]

    Financial Reports513

    [Executive records restricted until July 01, 2026]

    FOIA (Freedom of Information Act)513

    [Executive records restricted until July 01, 2026]

    Foundations513

    [Executive records restricted until July 01, 2026]

    Gender Equity575

    [Personnel records restricted until July 01, 2036]

    Gender in Science and Engineering (GSE)513

    [Executive records restricted until July 01, 2026]

    General CounselGeneral513

    [Executive records restricted until July 01, 2026]

    Cases575

    [Patient/client records restricted until July 01, 2106]

    Government Relations513

    [Executive records restricted until July 01, 2026]

    Government: State513

    [Executive records restricted until July 01, 2026]

    Graduate Employee Organization (GEO)513

    [Executive records restricted until July 01, 2026]

    Graduate Student Instructors513

    [Executive records restricted until July 01, 2026]

    Graham, Donald/Graham Environmental Sustainability InstituteGeneral3 folders513

    [Executive records restricted until July 01, 2026]

    Director Search575

    [Personnel records restricted until July 01, 2036]

    Great Lakes Program513

    [Executive records restricted until July 01, 2026]

    Hospitals and Health Centers Executive Board (HHCEB)7 folders513

    [Executive records restricted until July 01, 2026]

    Health Science Council514

    [Executive records restricted until July 01, 2026]

    Health Service514

    [Executive records restricted until July 01, 2026]

    Health System514

    [Executive records restricted until July 01, 2026]

    Victors

    (Includes the University of Michigan Health System commercials.)

    [Executive records restricted until July 1, 2026]

    Henry Russel514

    [Executive records restricted until July 01, 2026]

    Higher Education514

    [Executive records restricted until July 01, 2026]

    Honorary Degrees514

    [Executive records restricted until July 01, 2026]

    Housing514

    [Executive records restricted until July 01, 2026]

    Human Resources and Affirmative Action (HRAA)2 folders514

    [Executive records restricted until July 01, 2026]

    Human Resources Management System (HRMS)514

    [Executive records restricted until July 01, 2026]

    Immigration Task Force514

    [Executive records restricted until July 01, 2026]

    Information TechnologyGeneral514

    [Executive records restricted until July 01, 2026]

    Com Info Tech Communications514

    [Executive records restricted until July 01, 2026]

    Security Council514

    [Executive records restricted until July 01, 2026]

    ITCS Info Tech Central Services514

    [Executive records restricted until July 01, 2026]

    Institutes514

    [Executive records restricted until July 01, 2026]

    InternationalGeneral2 folders514

    [Executive records restricted until July 01, 2026]

    Agreements514

    [Executive records restricted until July 01, 2026]

    L'Universite De Provence575

    [Patient/client records restricted until July 01, 2106]

    Invitations3 folders514

    [Executive records restricted until July 01, 2026]

    Knight Collaboration514

    [Executive records restricted until July 01, 2026]

    Kook Mail514

    [Executive records restricted until July 01, 2026]

    Lawsuit575

    [Patient/client records restricted until July 01, 2106]

    Lecturers' Employee Organization (LEO)514

    [Executive records restricted until July 01, 2026]

    Michigan Administrative Information Systems (MAIS)514

    [Executive records restricted until July 01, 2026]

    Martin Luther King514

    [Executive records restricted until July 01, 2026]

    Media Union514

    [Executive records restricted until July 01, 2026]

    Medical AffairsGeneral514

    [Executive records restricted until July 01, 2026]

    Executive Vice President for Medical Affairs (EVPMA)514

    [Executive records restricted until July 01, 2026]

    Medical Center514

    [Executive records restricted until July 01, 2026]

    Mellon515

    [Executive records restricted until July 01, 2026]

    Millennium Project515

    [Executive records restricted until July 01, 2026]

    Museum of Art2 folders515

    [Executive records restricted until July 01, 2026]

    National Survey of Student Engagement (NSSE)515

    [Executive records restricted until July 01, 2026]

    National TragediesGeneral515

    [Executive records restricted until July 01, 2026]

    Faculty575

    [Personnel records restricted until July 01, 2036]

    Students515

    [Student records restricted until July 01, 2091; remove to Box 575]

    Neurosciences515

    [Executive records restricted until July 01, 2026]

    News and Information Services515

    [Executive records restricted until July 01, 2026]

    New Student Programs515

    [Executive records restricted until July 01, 2026]

    North Campus515

    [Executive records restricted until July 01, 2026]

    Office of Academic Affairs (OAA) 6+1515

    [Executive records restricted until July 01, 2026]

    Ombudsman515

    [Executive records restricted until July 01, 2026]

    Parking515

    [Executive records restricted until July 01, 2026]

    Peer Institutions2 folders515

    [Executive records restricted until July 01, 2026]

    Polish/Poland515

    [Executive records restricted until July 01, 2026]

    PresidentGeneral515

    [Executive records restricted until July 01, 2026]

    Staff level4515

    [Executive records restricted until July 01, 2026]

    President's InitiativesMHealthy Communities Initiative515

    [Executive records restricted until July 01, 2026]

    Professoriate515

    [Executive records restricted until July 01, 2026]

    PromotionsGeneral515

    [Executive records restricted until July 01, 2026]

    Promotion Cases575

    [Personnel records restricted until July 01, 2036]

    ProposalsGeneral515

    [Executive records restricted until July 01, 2026]

    Reynolds, Thomas515

    [Executive records restricted until July 01, 2026]

    Provost's Council on Student Honors515

    [Executive records restricted until July 01, 2026]

    Provost's Faculty Initiatives Program (PFIP)575

    [Personnel records restricted until July 01, 2036]

    Rec Sports515

    [Executive records restricted until July 01, 2026]

    Recommendations for Healthy U515

    [Executive records restricted until July 01, 2026]

    RegentsGeneral3 folders515

    [Executive records restricted until July 01, 2026]

    Presentation to the RegentsApril 21, 2006

    (Includes the presentation by Dean of the Ross School of Business, Robert J. Dolan, to the University of Michigan Regents.)

    [Executive records restricted until July 1, 2026]

    CommunicationsGeneral515

    [Executive records restricted until July 01, 2026]

    A-H515

    [Executive records restricted until July 01, 2026]

    I-P516

    [Executive records restricted until July 01, 2026]

    R-Z516

    [Executive records restricted until July 01, 2026]

    Registrar516

    [Executive records restricted until July 01, 2026]

    Requests2 folders516

    [Executive records restricted until July 01, 2026]

    ResearchGeneral3 folders516

    [Executive records restricted until July 01, 2026]

    Appointments575

    [Personnel records restricted until July 01, 2036]

    Budget2 folders516

    [Executive records restricted until July 01, 2026]

    Directorship-Compliance575

    [Personnel records restricted until July 01, 2036]

    IRB Investigations575

    [Personnel records restricted until July 01, 2036]

    ROTC516

    [Executive records restricted until July 01, 2026]

    Residency516

    [Executive records restricted until July 01, 2026]

    Residential Life516

    [Executive records restricted until July 01, 2026]

    RhodesGeneral516

    [Executive records restricted until July 01, 2026]

    Student Applications575

    [Student records restricted until July 01, 2090]

    Road Scholars516

    [Executive records restricted until July 01, 2026]

    Royalty and Patent2003-2004516

    [Executive records restricted until July 01, 2024]

    Salary516

    [Executive records restricted until July 01, 2026]

    Senate Advisory Committee on University Affairs (SACUA)7 foldersFolders 1-6516

    [Executive records restricted until July 01, 2026]

    Folder 7517

    [Executive records restricted until July 01, 2026]

    Senate Assembly517

    [Executive records restricted until July 01, 2026]

    Sexual OrientationGeneral2 folders517

    [Executive records restricted until July 01, 2026]

    General Counsel575

    [Patient/client records restricted until July 01, 2106]

    LGBT517

    [Executive records restricted until July 01, 2026]

    Society of Fellows517

    [Executive records restricted until July 01, 2026]

    Standard Practice Guides (SPG)517

    [Executive records restricted until July 01, 2026]

    StudentsGeneral517

    [Executive records restricted until July 01, 2026]

    Complaints575

    [Student records restricted until July 01, 2091]

    Deceased517

    [Executive records restricted until July 01, 2026]

    Student AffairsGeneral517

    [Executive records restricted until July 01, 2026]

    Student Grievances575

    [Student records restricted until July 01, 2091]

    Student Parent Task Force517

    [Executive records restricted until July 01, 2026]

    Surveys517

    [Executive records restricted until July 01, 2026]

    Team Teaching Task Force517

    [Executive records restricted until July 01, 2026]

    Technology Tech Transfer517

    [Executive records restricted until July 01, 2026]

    Tenure517

    [Executive records restricted until July 01, 2026]

    Thurnau Professors517

    [Executive records restricted until July 01, 2026]

    Tuition517

    [Executive records restricted until July 01, 2026]

    University of Michigan Transportation Research Institute (UMTRI)575

    [Personnel records restricted until July 01, 2036]

    University Press2 folders517

    [Executive records restricted until July 01, 2026]

    University Library2 folders517

    [Executive records restricted until July 01, 2026]

    University Musical Society517

    [Executive records restricted until July 01, 2026]

    University Unions517

    [Executive records restricted until July 01, 2026]

    Funding Model

    [Executive records restricted until July 1, 2026]

    Washington Office517

    [Executive records restricted until July 01, 2026]

    Washington Semester517

    [Executive records restricted until July 01, 2026]

    Whitaker Foundation517

    [Executive records restricted until July 01, 2026]

    Women517

    [Executive records restricted until July 01, 2026]

    Zell Lurie Institute517

    [Executive records restricted until July 01, 2026]

    Schools and CollegesArchitecture and Urban Planning, College ofGeneral517

    [Executive records restricted until July 01, 2026]

    Appointments575

    [Personnel records restricted until July 01, 2036]

    Budget517

    [Executive records restricted until July 01, 2026]

    Grievance575

    [Student records restricted until July 01, 2091]

    Art and Design, School ofGeneral517

    [Executive records restricted until July 01, 2026]

    Faculty575

    [Personnel records restricted until July 01, 2036]

    Business, School ofGeneral517

    [Executive records restricted until July 01, 2026]

    Faculty575

    [Personnel records restricted until July 01, 2036]

    Dearborn517

    [Executive records restricted until July 01, 2026]

    Dentistry, School ofGeneral517

    [Executive records restricted until July 01, 2026]

    Executive Committee1992-2006517

    [Executive records restricted until July 01, 2026]

    Faculty575

    [Personnel records restricted until July 01, 2036]

    Education, School ofGeneral517

    [Executive records restricted until July 01, 2026]

    Executive Committee1991-2005518

    [Executive records restricted until July 01, 2025]

    Faculty575

    [Personnel records restricted until July 01, 2036]

    Engineering, College ofGeneral518

    [Executive records restricted until July 01, 2026]

    Executive Committee1991-2005518

    [Executive records restricted until July 01, 2025]

    Appointments and Retention575

    [Personnel records restricted until July 01, 2036]

    Dean Search575

    [Personnel records restricted until July 01, 2036]

    Grievances575

    [Personnel records restricted until July 01, 2036]

    Flint518

    [Executive records restricted until July 01, 2026]

    Imagine: The UM-Flint Difference

    [Executive records restricted until July 1, 2026]

    Institute for Social ResearchGeneral518

    [Executive records restricted until July 01, 2026]

    Appointments575

    [Personnel records restricted until July 01, 2036]

    Information, School ofGeneral518

    [Executive records restricted until July 01, 2026]

    Appointments575

    [Personnel records restricted until July 01, 2036]

    International Institute518

    [Executive records restricted until July 01, 2026]

    Kinesiology, Division ofGeneral518

    [Executive records restricted until July 01, 2026]

    Appointments575

    [Personnel records restricted until July 01, 2036]

    Law SchoolGeneral518

    [Executive records restricted until July 01, 2026]

    Appointments575

    [Personnel records restricted until July 01, 2036]

    Building518

    [Executive records restricted until July 01, 2026]

    Life Sciences Institute (LSI)General518

    [Executive records restricted until July 01, 2026]

    Appointments575

    [Personnel records restricted until July 01, 2036]

    Literature, Science and the Arts, College ofGeneral2 folders518

    [Executive records restricted until July 01, 2026]

    Appointments575

    [Personnel records restricted until July 01, 2036]

    Medical SchoolGeneral518

    [Executive records restricted until July 01, 2026]

    Appointments575

    [Personnel records restricted until July 01, 2036]

    Salary Study518

    [Executive records restricted until July 01, 2026]

    Music, School ofGeneral518

    [Executive records restricted until July 01, 2026]

    Appointments575

    [Personnel records restricted until July 01, 2036]

    Dean Search575

    [Personnel records restricted until July 01, 2036]

    Name Change518

    [Executive records restricted until July 01, 2026]

    Natural Resources and Environment, School ofGeneral518

    [Executive records restricted until July 01, 2026]

    Appointments575

    [Personnel records restricted until July 01, 2036]

    Environmental Reporting for the Ann Arbor Campus518

    [Executive records restricted until July 01, 2026]

    Strategic Assessment518

    [Executive records restricted until July 01, 2026]

    Nursing, School ofGeneral518

    [Executive records restricted until July 01, 2026]

    Accreditation518

    [Executive records restricted until July 01, 2026]

    Appointments575

    [Personnel records restricted until July 01, 2036]

    Pharmacy, College ofGeneral518

    [Executive records restricted until July 01, 2026]

    Appointments575

    [Personnel records restricted until July 01, 2036]

    Public Policy, School ofGeneral2 folders518

    [Executive records restricted until July 01, 2026]

    Appointments575

    [Personnel records restricted until July 01, 2036]

    Ford School Building Meeting1/21/02519

    [Executive records restricted until July 01, 2022]

    New Building519

    [Executive records restricted until July 01, 2026]

    Student575

    [Student records restricted until July 01, 2091]

    Rackham Graduate StudiesGeneral519

    [Executive records restricted until July 01, 2026]

    Appointments575

    [Personnel records restricted until July 01, 2036]

    Discovery Process519

    [Executive records restricted until July 01, 2026]

    Social Work, School ofGeneral519

    [Executive records restricted until July 01, 2026]

    Appointments575

    [Personnel records restricted until July 01, 2036]

    Student575

    [Student records restricted until July 01, 2091]

    Chronological Files6 foldersSeptember 2005-August 2006584
    2006/2007Alphabetical FilesAcademic AffairsGeneral2 folders519

    [Executive records restricted until July 01, 2027]

    Appointments575

    [Personnel records restricted until July 01, 2037]

    Academic Affairs Advisory Committee (AAAC)2 folders519

    [Executive records restricted until July 01, 2027]

    Academic Program Group (APG)6 folders519

    [Executive records restricted until July 01, 2027]

    Academic Program Group Development (APGD)2 folders519

    [Executive records restricted until July 01, 2027]

    AccreditationGeneral520

    [Executive records restricted until July 01, 2027]

    Student Learning Assessment520

    [Executive records restricted until July 01, 2027]

    AdmissionsGeneral2 folders520

    [Executive records restricted until July 01, 2027]

    Students575

    [Student records restricted until July 01, 2092]

    ADVANCEGeneral520

    [Executive records restricted until July 01, 2027]

    Appointments575

    [Personnel records restricted until July 01, 2036]

    Assessing the Academic Work Environment for Women Scientists & Engineers520

    [Executive records restricted until July 01, 2027]

    Affiliation AgreementsGeneral520

    [Executive records restricted until July 01, 2027]

    July 2006520

    [Executive records restricted until July 01, 2026]

    August 2006520

    [Executive records restricted until July 01, 2026]

    September 2006520

    [Executive records restricted until July 01, 2026]

    October 2006520

    [Executive records restricted until July 01, 2026]

    November 2006520

    [Executive records restricted until July 01, 2026]

    December 2006520

    [Executive records restricted until July 01, 2026]

    January 2007520

    [Executive records restricted until July 01, 2027]

    February 2007520

    [Executive records restricted until July 01, 2027]

    March 2007520

    [Executive records restricted until July 01, 2027]

    April 2007520

    [Executive records restricted until July 01, 2027]

    May 2007520

    [Executive records restricted until July 01, 2027]

    June 2007520

    [Executive records restricted until July 01, 2027]

    African Studies Committee520

    [Executive records restricted until July 01, 2027]

    Alumni520

    [Executive records restricted until July 01, 2027]

    American Academy of Arts and Sciences (AAAS)520

    [Executive records restricted until July 01, 2027]

    American Council on Education (ACE)520

    [Executive records restricted until July 01, 2027]

    American Council of Learned Societies (ACLS)520

    [Executive records restricted until July 01, 2027]

    Arboretum520

    [Executive records restricted until July 01, 2027]

    Arts of Citizenship520

    [Executive records restricted until July 01, 2027]

    Association of American Colleges and Universities (AACU)520

    [Executive records restricted until July 01, 2027]

    Association of American Universities (AAU)General520

    [Executive records restricted until July 01, 2027]

    Appointments575

    [Personnel records restricted until July 01, 2036]

    Association of Governing Boards (AGB)520

    [Executive records restricted until July 01, 2027]

    Athletics521

    [Executive records restricted until July 01, 2027]

    AuditsGeneral2 folders521

    [Executive records restricted until July 01, 2027]

    Audit Reports575

    [Personnel records restricted until July 01, 2036]

    Awards2 folders521

    [Executive records restricted until July 01, 2027]

    BenefitsGeneral521

    [Executive records restricted until July 01, 2027]

    Benefits Advisory Committee2 folders521

    [Executive records restricted until July 01, 2027]

    MCare Project521

    [Executive records restricted until July 01, 2027]

    SEAM Communications Roll-Out Materials

    [Executive records restricted until July 1, 2027]

    Policy Advisory Committee521

    [Executive records restricted until July 01, 2027]

    Bentley LibraryGeneral521

    [Executive records restricted until July 01, 2027]

    Budget521

    [Executive records restricted until July 01, 2027]

    Botanical Gardens521

    [Executive records restricted until July 01, 2027]

    BudgetGeneral6 folders521

    [Executive records restricted until July 01, 2027]

    Budget and Planning3 folders521

    [Executive records restricted until July 01, 2027]

    State Budget Request521

    [Executive records restricted until July 01, 2027]

    Center for Advancing Research and Solutions for Society (CARSS)522

    [Executive records restricted until July 01, 2027]

    Center for the Education of Women522

    [Executive records restricted until July 01, 2027]

    Committee on Health Insurance Premium Design (CHIPD)522

    [Executive records restricted until July 01, 2027]

    Committee on Institutional Cooperation (CIC)General522

    [Executive records restricted until July 01, 2027]

    Personnel575

    [Personnel records restricted until July 01, 2037]

    Center for Research on Learning and TeachingGeneral522

    [Executive records restricted until July 01, 2027]

    Review of Lecturers' Professional Development Fund Proposals522

    [Executive records restricted until July 01, 2027]

    Calendar522

    [Executive records restricted until July 01, 2027]

    Campaign Planning522

    [Executive records restricted until July 01, 2027]

    Campus Compact522

    [Executive records restricted until July 01, 2027]

    Campus Safety522

    [Executive records restricted until July 01, 2027]

    Capital Projects522

    [Executive records restricted until July 01, 2027]

    Cardiovascular Center522

    [Executive records restricted until July 01, 2027]

    Carnegie Foundation522

    [Executive records restricted until July 01, 2027]

    China2 folders522

    [Executive records restricted until July 01, 2027]

    Clements LibraryGeneral522

    [Executive records restricted until July 01, 2027]

    Director Search575

    [Personnel records restricted until July 01, 2037]

    Review Report575

    [Personnel records restricted until July 01, 2037]

    Clinical Track522

    [Executive records restricted until July 01, 2027]

    Commencement2 folders522

    [Executive records restricted until July 01, 2027]

    CommunicationGeneral522

    [Executive records restricted until July 01, 2027]

    Vice President Search575

    [Personnel records restricted until July 01, 2037]

    Community Service522

    [Executive records restricted until July 01, 2027]

    Conflict of Interest/Conflict of Commitment (COI/CIC)522

    [Executive records restricted until July 01, 2027]

    Constitution Day522

    [Executive records restricted until July 01, 2027]

    Convocation522

    [Executive records restricted until July 01, 2027]

    Delegation of Authority522

    [Executive records restricted until July 01, 2027]

    Depression Center522

    [Executive records restricted until July 01, 2027]

    Detroit523

    [Executive records restricted until July 01, 2027]

    DevelopmentGeneral5 folders523

    [Executive records restricted until July 01, 2027]

    Coultere Foundation523

    [Executive records restricted until July 01, 2027]

    May, Jerry523

    [Executive records restricted until July 01, 2027]

    Disabilities523

    [Executive records restricted until July 01, 2027]

    Distinguished Professorships523

    [Executive records restricted until July 01, 2027]

    Diversity4 folders523

    [Executive records restricted until July 01, 2027]

    Bilal's Stand: Behind the Scenes

    [Executive records restricted until July 1, 2027]

    Dual Career575

    [Personnel records restricted until July 01, 2037]

    Economic Forecasting523

    [Executive records restricted until July 01, 2027]

    Election2006523

    [Executive records restricted until July 01, 2026]

    Enrollment523

    [Executive records restricted until July 01, 2027]

    Executive Officers/Vice Presidential Group6 foldersFolders 1-4523

    [Executive records restricted until July 01, 2027]

    Folders 5-6524

    [Executive records restricted until July 01, 2027]

    Events524

    [Executive records restricted until July 01, 2027]

    Executive Vice President for Medical Affairs (EVPMA)524

    [Executive records restricted until July 01, 2027]

    Facilities524

    [Executive records restricted until July 01, 2027]

    FacultyGeneral524

    [Executive records restricted until July 01, 2027]

    MIT9 Meeting (Harvard)524

    [Executive records restricted until July 01, 2027]

    Finance: VP Area524

    [Executive records restricted until July 01, 2027]

    Financial Aid2 folders524

    [Executive records restricted until July 01, 2027]

    Financial Reports524

    [Executive records restricted until July 01, 2027]

    Freedom of Information Act (FOIA)524

    [Executive records restricted until July 01, 2027]

    Graham Environmental Sustainability Institute (GESI)General524

    [Executive records restricted until July 01, 2027]

    Appointments575

    [Personnel records restricted until July 01, 2037]

    Director Search575

    [Personnel records restricted until July 01, 2037]

    Gender Equity524

    [Executive records restricted until July 01, 2027]

    Gender in Science and Engineering524

    [Executive records restricted until July 01, 2027]

    General CounselGeneral524

    [Executive records restricted until July 01, 2027]

    Cases575

    [Patient/client records restricted until July 01, 2107]

    Grievance Review Board (GRB)575

    [Personnel records restricted until July 01, 2037]

    Krislov, Martin524

    [Executive records restricted until July 01, 2027]

    US Department of Education Office for Civil Rights575

    [Student records restricted until July 01, 2092]

    Gifts524

    [Executive records restricted until July 01, 2027]

    Google524

    [Executive records restricted until July 01, 2027]

    Government Relations524

    [Executive records restricted until July 01, 2027]

    Great Lakes Program524

    [Executive records restricted until July 01, 2027]

    Health Science Council524

    [Executive records restricted until July 01, 2027]

    Health Service524

    [Executive records restricted until July 01, 2027]

    Henry Russel524

    [Executive records restricted until July 01, 2027]

    Higher EducationGeneral524

    [Executive records restricted until July 01, 2027]

    Higher Learning Commission Handbook of Accreditation525

    [Executive records restricted until July 01, 2027]

    Honorary Degree2 folders525

    [Executive records restricted until July 01, 2027]

    Honors Program525

    [Executive records restricted until July 01, 2027]

    Hospitals and Health Centers Executive Board8 folders525

    [Executive records restricted until July 01, 2027]

    Housing525

    [Executive records restricted until July 01, 2027]

    Human Resources and Affirmative ActionGeneral4 folders525

    [Executive records restricted until July 01, 2027]

    Grievances575

    [Personnel records restricted until July 01, 2037]

    Indemnification526

    [Executive records restricted until July 01, 2027]

    Information Technology526

    [Executive records restricted until July 01, 2027]

    Information Technology Central Services (ITCS)526

    [Executive records restricted until July 01, 2027]

    ITCom Info Tech Communications526

    [Executive records restricted until July 01, 2027]

    IT Security526

    [Executive records restricted until July 01, 2027]

    Institute for Labor and Industrial Relations (ILIR)526

    [Executive records restricted until July 01, 2027]

    Black Men in Unions

    [Executive records restricted until July 1, 2027]

    Institute for Social Research (ISR)General526

    [Executive records restricted until July 01, 2027]

    Appointments575

    [Personnel records restricted until July 01, 2037]

    Intellectual Property526

    [Executive records restricted until July 01, 2027]

    InternationalGeneral2 folders526

    [Executive records restricted until July 01, 2027]

    Anatolia College526

    [Executive records restricted until July 01, 2027]

    Technion526

    [Executive records restricted until July 01, 2027]

    International Institute526

    [Executive records restricted until July 01, 2027]

    Invitations526

    [Executive records restricted until July 01, 2027]

    Kook Mail575

    [Student records restricted until July 01, 2092]

    Lecturer Employee Organization (LEO)526

    [Executive records restricted until July 01, 2027]

    Life Sciences Institute (LSI)526

    [Executive records restricted until July 01, 2027]

    Media Union526

    [Executive records restricted until July 01, 2027]

    Medical Center526

    [Executive records restricted until July 01, 2027]

    Mellon526

    [Executive records restricted until July 01, 2027]

    Memberships526

    [Executive records restricted until July 01, 2027]

    Mentoring526

    [Executive records restricted until July 01, 2027]

    Michigan Administrative Informational Services (MAIS)526

    [Executive records restricted until July 01, 2027]

    Michigan Student Assembly (MSA)526

    [Executive records restricted until July 01, 2027]

    Museum of Art526

    [Executive records restricted until July 01, 2027]

    National Association of State Universities and Land Grand Colleges (NASULGC)526

    [Executive records restricted until July 01, 2027]

    National Science Foundation (NSF)526

    [Executive records restricted until July 01, 2027]

    National Tragedies526

    [Executive records restricted until July 01, 2027]

    New Student Programs526

    [Executive records restricted until July 01, 2027]

    North Campus526

    [Executive records restricted until July 01, 2027]

    Office of Academic Affairs (OAA) 6+1Folders 1-3526

    [Executive records restricted until July 01, 2027]

    Folders 4-6527

    [Executive records restricted until July 01, 2027]

    Ombudsman527

    [Executive records restricted until July 01, 2027]

    Peer Institutions527

    [Executive records restricted until July 01, 2027]

    Pfizer527

    [Executive records restricted until July 01, 2027]

    President527

    [Executive records restricted until July 01, 2027]

    President's Staff527

    [Executive records restricted until July 01, 2027]

    Presidential InitiativesPresidential Initiative Fund527

    [Executive records restricted until July 01, 2027]

    Committee on Multidisciplinary Education and Team Teaching527

    [Executive records restricted until July 01, 2027]

    Committee on University Scholarship on Ethical Issues in the Public Domain527

    [Executive records restricted until July 01, 2027]

    President's Advisory Commission on Women's Issues (PACWI)527

    [Executive records restricted until July 01, 2027]

    President's Advisory Group (PAG)3 folders527

    [Executive records restricted until July 01, 2027]

    PromotionsGeneral527

    [Executive records restricted until July 01, 2027]

    Cases575

    [Personnel records restricted until July 01, 2037]

    Proposals527

    [Executive records restricted until July 01, 2027]

    Provost's Council on Student Honors527

    [Executive records restricted until July 01, 2027]

    Provost's Faculty Advising Committee (PFAC)527

    [Executive records restricted until July 01, 2027]

    Provost's Faculty Initiatives Program (PFIP)575

    [Personnel records restricted until July 01, 2037]

    Provost's Faculty Study Group527

    [Executive records restricted until July 01, 2027]

    Provost's Staff527

    [Executive records restricted until July 01, 2027]

    Provost's Student Academic Advisory Board527

    [Executive records restricted until July 01, 2027]

    Public Goods527

    [Executive records restricted until July 01, 2027]

    Recreational Sports527

    [Executive records restricted until July 01, 2027]

    RegentsGeneral4 foldersFolders 1-2527

    [Executive records restricted until July 01, 2027]

    Folders 3-4528

    [Executive records restricted until July 01, 2027]

    Budget Briefing528

    [Executive records restricted until July 01, 2027]

    Communications4 folders528

    [Executive records restricted until July 01, 2027]

    Orientation Materials528

    [Executive records restricted until July 01, 2027]

    Students576

    [Student records restricted until July 01, 2092]

    RegistrarGeneral528

    [Executive records restricted until July 01, 2027]

    Personnel528

    [Executive records restricted until July 01, 2027]

    Students576

    [Student records restricted until July 01, 2092]

    Requests528

    [Executive records restricted until July 01, 2027]

    ResearchGeneral3 folders528

    [Executive records restricted until July 01, 2027]

    Budget528

    [Executive records restricted until July 01, 2027]

    Misconduct2 folders576

    [Personnel records restricted until July 01, 2037]

    Personnel576

    [Personnel records restricted until July 01, 2037]

    Reserve Officers Training Corps (ROTC)528

    [Executive records restricted until July 01, 2027]

    Residency528

    [Executive records restricted until July 01, 2027]

    Residential Life528

    [Executive records restricted until July 01, 2027]

    Retirement528

    [Executive records restricted until July 01, 2027]

    Rhodes576

    [Student records restricted until July 01, 2092]

    Salary528

    [Executive records restricted until July 01, 2027]

    Scholarships and Fellowships528

    [Executive records restricted until July 01, 2027]

    Searches528

    [Executive records restricted until July 01, 2027]

    Secretary of the University528

    [Executive records restricted until July 01, 2027]

    Senate Advisory Committee on University Affairs (SACUA)3 folders528

    [Executive records restricted until July 01, 2027]

    Senate Assembly529

    [Executive records restricted until July 01, 2027]

    Sexual Orientation529

    [Executive records restricted until July 01, 2027]

    Society of Fellows529

    [Executive records restricted until July 01, 2027]

    Space529

    [Executive records restricted until July 01, 2027]

    Standard Practice Guides (SPG)529

    [Executive records restricted until July 01, 2027]

    StudentsGeneral529

    [Executive records restricted until July 01, 2027]

    Complaints529

    [Executive records restricted until July 01, 2027]

    Deceased529

    [Executive records restricted until July 01, 2027]

    Student Affairs529

    [Executive records restricted until July 01, 2027]

    Student Parent Task Force529

    [Executive records restricted until July 01, 2027]

    Surveys529

    [Executive records restricted until July 01, 2027]

    Sympathy529

    [Executive records restricted until July 01, 2027]

    Team Teaching Task Force529

    [Executive records restricted until July 01, 2027]

    Technology Transfer529

    [Executive records restricted until July 01, 2027]

    TenureGeneral529

    [Executive records restricted until July 01, 2027]

    Grievances576

    [Personnel records restricted until July 01, 2037]

    Textbook Task Force529

    [Executive records restricted until July 01, 2027]

    Thurnau Professors529

    [Executive records restricted until July 01, 2027]

    Travel Management529

    [Executive records restricted until July 01, 2027]

    Tuition529

    [Executive records restricted until July 01, 2027]

    Undergraduate Teaching529

    [Executive records restricted until July 01, 2027]

    University LibraryGeneral529

    [Executive records restricted until July 01, 2027]

    Search576

    [Personnel records restricted until July 01, 2037]

    University Musical Society529

    [Executive records restricted until July 01, 2027]

    University of Michigan Transportation Research Institute (UMTRI)576

    [Personnel records restricted until July 01, 2037]

    University Press529

    [Executive records restricted until July 01, 2027]

    Whitaker Foundation529

    [Executive records restricted until July 01, 2027]

    Women529

    [Executive records restricted until July 01, 2027]

    Schools and Colleges FilesArchitecture and Urban Planning, College of (TCAUP)General529

    [Executive records restricted until July 01, 2027]

    Appointments576

    [Personnel records restricted until July 01, 2037]

    Students576

    [Student records restricted until July 01, 2092]

    Art and Design, School ofGeneral529

    [Executive records restricted until July 01, 2027]

    Appointments576

    [Personnel records restricted until July 01, 2037]

    Rogers, Bryan529

    [Executive records restricted until July 01, 2027]

    Business Administration, School ofGeneral529

    [Executive records restricted until July 01, 2027]

    Appointments576

    [Personnel records restricted until July 01, 2037]

    Dearborn529

    [Executive records restricted until July 01, 2027]

    Dentistry, School ofGeneral4 folders529

    [Executive records restricted until July 01, 2027]

    Appointments576

    [Personnel records restricted until July 01, 2037]

    McNamara, James A.576

    [Patient/client records restricted until July 01, 2107]

    Polverini, Peter529

    [Executive records restricted until July 01, 2027]

    Education, School ofGeneral529

    [Executive records restricted until July 01, 2027]

    Appointments and Retention576

    [Personnel records restricted until July 01, 2037]

    Engineering, College of530General2 folders530

    [Executive records restricted until July 01, 2027]

    Appointments576

    [Personnel records restricted until July 01, 2037]

    Flint530

    [Executive records restricted until July 01, 2027]

    Information, School ofGeneral530

    [Executive records restricted until July 01, 2027]

    Appointments576

    [Personnel records restricted until July 01, 2037]

    Dean Search576

    [Personnel records restricted until July 01, 2037]

    Kinesiology, Division ofGeneral4 folders530

    [Executive records restricted until July 01, 2027]

    Appointments576

    [Personnel records restricted until July 01, 2037]

    Law SchoolGeneral2 folders530

    [Executive records restricted until July 01, 2027]

    Appointments576

    [Personnel records restricted until July 01, 2037]

    Life Sciences Institute (LSI)General576

    [Executive records restricted until July 01, 2027]

    Appointments530

    [Personnel records restricted until July 01, 2037]

    Literature, Science, and the Arts, College ofGeneral3 folders530

    [Executive records restricted until July 01, 2027]

    Appointments and Retention576

    [Personnel records restricted until July 01, 2037]

    McDonald, Terry2 folders530

    [Executive records restricted until July 01, 2027]

    Sociology530

    [Executive records restricted until July 01, 2027]

    Medical SchoolGeneral3 folders530

    [Executive records restricted until July 01, 2027]

    Appointments576

    [Personnel records restricted until July 01, 2037]

    Dean Search576

    [Personnel records restricted until July 01, 2037]

    Provost Visit530

    [Executive records restricted until July 01, 2027]

    Searches576

    [Personnel records restricted until July 01, 2037]

    Music, Theatre, and Dance, School ofGeneral2 folders531

    [Executive records restricted until July 01, 2027]

    Appointments576

    [Personnel records restricted until July 01, 2037]

    Natural Resources and Environment, School ofGeneral3 folders531

    [Executive records restricted until July 01, 2027]

    Vocal Essence: Music that Stirs the Soul

    [Executive records restricted until July 1, 2027]

    Appointments576

    [Personnel records restricted until July 01, 2037]

    Nursing, School ofGeneral531

    [Executive records restricted until July 01, 2027]

    Budget531

    [Executive records restricted until July 01, 2027]

    Appointments576

    [Personnel records restricted until July 01, 2037]

    Pharmacy, College ofGeneral2 folders531

    [Executive records restricted until July 01, 2027]

    Appointments576

    [Personnel records restricted until July 01, 2037]

    Research Initiatives531

    [Executive records restricted until July 01, 2027]

    Public Health, School ofGeneral2 folders531

    [Executive records restricted until July 01, 2027]

    Appointments576

    [Personnel records restricted until July 01, 2037]

    Grievance576

    [Personnel records restricted until July 01, 2037]

    Public Policy, School ofGeneral2 folders531

    [Executive records restricted until July 01, 2027]

    Appointments576

    [Personnel records restricted until July 01, 2037]

    Rackham Graduate StudiesGeneral531

    [Executive records restricted until July 01, 2027]

    Appointments576

    [Personnel records restricted until July 01, 2037]

    Students576

    [Student records restricted until July 01, 2092]

    Social Work, School ofGeneral531

    [Executive records restricted until July 01, 2027]

    Appointments576

    [Personnel records restricted until July 01, 2037]

    Budget531

    [Executive records restricted until July 01, 2027]

    Provost Visit531

    [Executive records restricted until July 01, 2027]

    Chronological Files6 foldersSeptember 2006-July 2007585
    2007/2008Alphabetical FilesAcademic AffairsGeneral2 folders532

    [Executive records restricted until July 01, 2028]

    Annual Activity Reviews576

    [Personnel records restricted until July 01, 2038]

    Emergency Planning576

    [Personnel records restricted until July 01, 2038]

    Gibbons, Karen532

    [Executive records restricted until July 01, 2028]

    Hanlon, Phil532

    [Executive records restricted until July 01, 2028]

    King, John532

    [Executive records restricted until July 01, 2028]

    Monts, Lester532

    [Executive records restricted until July 01, 2028]

    Musleh, Fadi576

    [Personnel records restricted until July 01, 2038]

    Phi Kappa Phi532

    [Executive records restricted until July 01, 2028]

    Pierce, Lori532

    [Executive records restricted until July 01, 2028]

    Shaw, Catherine532

    [Executive records restricted until July 01, 2028]

    Tessler, Mark532

    [Executive records restricted until July 01, 2028]

    Van Der Pluijum, Ben532

    [Executive records restricted until July 01, 2028]

    Academic Affairs Advisory Committee (AAAC)532

    [Executive records restricted until July 01, 2028]

    Academic Governing Board (AGB)532

    [Executive records restricted until July 01, 2028]

    Academic Program GroupGeneral5 folders532

    [Executive records restricted until July 01, 2028]

    Budget2 folders532

    [Executive records restricted until July 01, 2028]

    Retreat532

    [Executive records restricted until July 01, 2028]

    Academic Program Group Development (APGD)532

    [Executive records restricted until July 01, 2028]

    American Academy of Arts and Sciences (AAAS)532

    [Executive records restricted until July 01, 2028]

    American Council on Education (ACE)532

    [Executive records restricted until July 01, 2028]

    Association of American Colleges and Universities (AACU)532

    [Executive records restricted until July 01, 2028]

    Association of American Universities (AAU)General532

    [Executive records restricted until July 01, 2028]

    Appointments576

    [Personnel records restricted until July 01, 2038]

    Accreditation533

    [Executive records restricted until July 01, 2028]

    AdmissionsGeneral533

    [Executive records restricted until July 01, 2028]

    Students576

    [Student records restricted until July 01, 2093]

    ADVANCEGeneral3 folders533

    [Executive records restricted until July 01, 2028]

    Funding576

    [Personnel records restricted until July 01, 2038]

    Affiliation Agreements4 folders533

    [Executive records restricted until July 01, 2028]

    African Studies Committee533

    [Executive records restricted until July 01, 2028]

    Alumni533

    [Executive records restricted until July 01, 2028]

    Arts on Earth Meeting533

    [Executive records restricted until July 01, 2028]

    AthleticsGeneral533

    [Executive records restricted until July 01, 2028]

    Ann Arbor News576

    [Patient/client records restricted until July 01, 2108]

    Student Athletes576

    [Student records restricted until July 01, 2093]

    AuditsGeneral533

    [Executive records restricted until July 01, 2028]

    Office of the Provost576

    [Personnel records restricted until July 01, 2038]

    Reports576

    [Personnel records restricted until July 01, 2038]

    Awards533

    [Executive records restricted until July 01, 2028]

    Benefits2 folders534

    [Executive records restricted until July 01, 2028]

    Bentley Historical Library534

    [Executive records restricted until July 01, 2028]

    Botanical GardensGeneral534

    [Executive records restricted until July 01, 2028]

    Appointments576

    [Personnel records restricted until July 01, 2038]

    BudgetGeneral4 folders534

    [Executive records restricted until July 01, 2028]

    Budget and Planning5 folders534

    [Executive records restricted until July 01, 2028]

    Faculty Budget Advisory Committee (FBAC)534

    [Executive records restricted until July 01, 2028]

    State Budget Request534

    [Executive records restricted until July 01, 2028]

    Campus Safety534

    [Executive records restricted until July 01, 2028]

    Campus Security-Clery Act534

    [Executive records restricted until July 01, 2028]

    Capital Projects534

    [Executive records restricted until July 01, 2028]

    Carnegie Foundation534

    [Executive records restricted until July 01, 2028]

    Center for Advancing Research and Societal Solutions (CARSS)534

    [Executive records restricted until July 01, 2028]

    Center for the Education of Women (CEW)General534

    [Executive records restricted until July 01, 2028]

    Appointments and Searches576

    [Personnel records restricted until July 01, 2038]

    Center for Information Technology Integration (CITI)534

    [Executive records restricted until July 01, 2028]

    Center for Information Technology Integration (CITI)534

    [Executive records restricted until July 01, 2028]

    Center for Research on Learning and Teaching (CRLT)General535

    [Executive records restricted until July 01, 2028]

    New Faculty Orientation535

    [Executive records restricted until July 01, 2028]

    Provost Visit535

    [Executive records restricted until July 01, 2028]

    ChinaGeneral2 folders535

    [Executive records restricted until July 01, 2028]

    Clements LibraryGeneral535

    [Executive records restricted until July 01, 2028]

    Director Search576

    [Personnel records restricted until July 01, 2038]

    CommencementGeneral535

    [Executive records restricted until July 01, 2028]

    Commencement2008

    [Executive records restricted until July 1, 2028]

    Emails for Response535

    [Executive records restricted until July 01, 2028]

    Committee on Institutional CooperationGeneral535

    [Executive records restricted until July 01, 2028]

    Academic Leadership Program535

    [Executive records restricted until July 01, 2028]

    Conference535

    [Executive records restricted until July 01, 2028]

    Communications2 folders535

    [Executive records restricted until July 01, 2028]

    The Michigan Difference and Healthy U

    (This is episode 102.)

    [Executive records restricted until July 1, 2028]

    Community Relations535

    [Executive records restricted until July 01, 2028]

    Conflict of Interest/Conflict of Commitment (COI/CIC)535

    [Executive records restricted until July 01, 2028]

    Convocation535

    [Executive records restricted until July 01, 2028]

    Delegation of Authority535

    [Executive records restricted until July 01, 2028]

    Depression Center535

    [Executive records restricted until July 01, 2028]

    Detroit535

    [Executive records restricted until July 01, 2028]

    Development4 foldersFolder 1535

    [Executive records restricted until July 01, 2028]

    Folder 2-4536

    [Executive records restricted until July 01, 2028]

    Digital Media536

    [Executive records restricted until July 01, 2028]

    Distinguished University Professorship536

    [Executive records restricted until July 01, 2028]

    DiversityGeneral2 folders536

    [Executive records restricted until July 01, 2028]

    Search576

    [Personnel records restricted until July 01, 2038]

    Department of Public Safety (DPS)General536

    [Executive records restricted until July 01, 2028]

    Director576

    [Personnel records restricted until July 01, 2038]

    Dual Career576

    [Personnel records restricted until July 01, 2038]

    EconomicsGeneral536

    [Executive records restricted until July 01, 2028]

    RSQE Search576

    [Personnel records restricted until July 01, 2038]

    Executive Officer/VP Group9 folders536

    [Executive records restricted until July 01, 2028]

    Events537

    [Executive records restricted until July 01, 2028]

    Executive Vice President for Medical Affairs (EVPMA)General537

    [Executive records restricted until July 01, 2028]

    Search2 folders576

    [Personnel records restricted until July 01, 2038]

    Facilities537

    [Executive records restricted until July 01, 2028]

    Faculty537

    [Executive records restricted until July 01, 2028]

    University of Michigan Faculty Perspectives2007

    [Executive records restricted until July 1, 2028]

    Faculty Grievance Committee537

    [Executive records restricted until July 01, 2028]

    FinanceBudget537

    [Executive records restricted until July 01, 2028]

    VP Area537

    [Executive records restricted until July 01, 2028]

    Financial AidGeneral537

    [Executive records restricted until July 01, 2028]

    Students537

    [Executive records restricted until July 01, 2028]

    Financial Reports537

    [Executive records restricted until July 01, 2028]

    Freedom of Information Act (FOIA)537

    [Executive records restricted until July 01, 2028]

    Foundations537

    [Executive records restricted until July 01, 2028]

    Graduate Employees Organization (GEO)537

    [Executive records restricted until July 01, 2028]

    Graham Environmental Sustainability Institute (GESI)537

    [Executive records restricted until July 01, 2028]

    Gender Equity537

    [Executive records restricted until July 01, 2028]

    Gender in Science and Engineering537

    [Executive records restricted until July 01, 2028]

    General CounselGeneral2 folders537

    [Executive records restricted until July 01, 2028]

    Appointments576

    [Personnel records restricted until July 01, 2038]

    Cases576

    [Patient/client records restricted until July 01, 2108]

    Google576

    [Patient/client records restricted until July 01, 2108]

    Grievance576

    [Personnel records restricted until July 01, 2038]

    Museum of Zoology576

    [Patient/client records restricted until July 01, 2108]

    Students576

    [Student records restricted until July 01, 2093]

    Ginsberg Center537

    [Executive records restricted until July 01, 2028]

    Google537

    [Executive records restricted until July 01, 2028]

    Government Relations3 folders537

    [Executive records restricted until July 01, 2028]

    Grievance Policy Task ForceGeneral537

    [Executive records restricted until July 01, 2028]

    Appointments576

    [Personnel records restricted until July 01, 2038]

    Humor at Michigan (HAM)537

    [Executive records restricted until July 01, 2028]

    Health Science Council (HSC)537

    [Executive records restricted until July 01, 2028]

    Health Service537

    [Executive records restricted until July 01, 2028]

    Higher Education537

    [Executive records restricted until July 01, 2028]

    Honorary DegreeGeneral537

    [Executive records restricted until July 01, 2028]

    Fall Meeting3 folders2007Folders 1-2537

    [Executive records restricted until July 01, 2027]

    Folder 3538

    [Executive records restricted until July 01, 2027]

    Hospitals and Health Centers Executive Board (HHCEB)8 folders538

    [Executive records restricted until July 01, 2028]

    Housing538

    [Executive records restricted until July 01, 2028]

    Human Resources and Affirmative Action (HRAA)General2 folders538

    [Executive records restricted until July 01, 2028]

    Grievances576

    [Personnel records restricted until July 01, 2038]

    Institute for Labor and Industrial Relations (ILIR)538

    [Executive records restricted until July 01, 2028]

    Institute for Social ResearchGeneral538

    [Executive records restricted until July 01, 2028]

    Appointments576

    [Personnel records restricted until July 01, 2038]

    Information TechnologyGeneral538

    [Executive records restricted until July 01, 2028]

    Appointments538

    [Executive records restricted until July 01, 2028]

    Central Services (ITCS)538

    [Executive records restricted until July 01, 2028]

    Communications (ITCom)538

    [Executive records restricted until July 01, 2028]

    Security Council538

    [Executive records restricted until July 01, 2028]

    Interdisciplinary Faculty Initiative (IFI)538

    [Executive records restricted until July 01, 2028]

    InternationalGeneral539

    [Executive records restricted until July 01, 2028]

    International Council539

    [Executive records restricted until July 01, 2028]

    Students577

    [Student records restricted until July 01, 2093]

    International Institute539

    [Executive records restricted until July 01, 2028]

    Invitations539

    [Executive records restricted until July 01, 2028]

    Kellogg539

    [Executive records restricted until July 01, 2028]

    Knight WallaceGeneral539

    [Executive records restricted until July 01, 2028]

    Appointment577

    [Personnel records restricted until July 01, 2038]

    Lecturer Employee Organization (LEO)539

    [Executive records restricted until July 01, 2028]

    Media Union539

    [Executive records restricted until July 01, 2028]

    Medical Affairs539

    [Executive records restricted until July 01, 2028]

    Medical Center539

    [Executive records restricted until July 01, 2028]

    Mellon539

    [Executive records restricted until July 01, 2028]

    Michigan Administrative Informational Services (MAIS)539

    [Executive records restricted until July 01, 2028]

    Michigan Health Corporation (MHC)539

    [Executive records restricted until July 01, 2028]

    Michigan Student Assembly (MSA)539

    [Executive records restricted until July 01, 2028]

    Millennium539

    [Executive records restricted until July 01, 2028]

    Multidisciplinary Learning and Team Teaching (MLTT)539

    [Executive records restricted until July 01, 2028]

    Museum of ArtGeneral539

    [Executive records restricted until July 01, 2028]

    Evaluations-Steward, James577

    [Personnel records restricted until July 01, 2038]

    National Association of State Universities and Land Grant Colleges (NASULGC)539

    [Executive records restricted until July 01, 2028]

    National Science Foundation (NSF)539

    [Executive records restricted until July 01, 2028]

    National Survey of Student Engagement (NSSE)539

    [Executive records restricted until July 01, 2028]

    North Campus539

    [Executive records restricted until July 01, 2028]

    Office of Academic Affairs (OAA) 6+1General4 folders539

    [Executive records restricted until July 01, 2028]

    Retreat539

    [Executive records restricted until July 01, 2028]

    Ombudsman577

    [Personnel records restricted until July 01, 2038]

    Orientation539

    [Executive records restricted until July 01, 2028]

    Pfizer540

    [Executive records restricted until July 01, 2028]

    President540

    [Executive records restricted until July 01, 2028]

    President's Advisory Group540

    [Executive records restricted until July 01, 2028]

    PromotionsGeneral540

    [Executive records restricted until July 01, 2028]

    Cases577

    [Personnel records restricted until July 01, 2038]

    University of Michigan promotions2007

    [Personnel records restricted until July 1, 2038]

    Provost Faculty Initiative Program (PFIP)577

    [Personnel records restricted until July 01, 2038]

    Provost's Council on Student Honors (PCSH)540

    [Executive records restricted until July 01, 2028]

    Provost's Staff577

    [Personnel records restricted until July 01, 2038]

    Qatar540

    [Executive records restricted until July 01, 2028]

    Recreational Sports Task Force540

    [Executive records restricted until July 01, 2028]

    RegentsGeneral2 folders540

    [Executive records restricted until July 01, 2028]

    Clements Library577Communications2 folders540

    [Executive records restricted until July 01, 2028]

    Correspondence540

    [Executive records restricted until July 01, 2028]

    General Correspondence540

    [Executive records restricted until July 01, 2028]

    Retreat Presentation540

    [Executive records restricted until July 01, 2028]

    Registrar540

    [Executive records restricted until July 01, 2028]

    Requests ResearchGeneral4 foldersFolder 1540

    [Executive records restricted until July 01, 2028]

    Folder 2-4541

    [Executive records restricted until July 01, 2028]

    Appointments577

    [Personnel records restricted until July 01, 2038]

    Budget541

    [Executive records restricted until July 01, 2028]

    Patent Litigation577
    Reserve Officers Training Corps (ROTC)541

    [Executive records restricted until July 01, 2028]

    Residency541

    [Executive records restricted until July 01, 2028]

    Rhodes577

    [Student records restricted until July 01, 2093]

    Risk Management541

    [Executive records restricted until July 01, 2028]

    Scholarships541

    [Executive records restricted until July 01, 2028]

    School for Deans541

    [Executive records restricted until July 01, 2028]

    Searches541

    [Executive records restricted until July 01, 2028]

    Secretary of the University541

    [Executive records restricted until July 01, 2028]

    Senate Advisory Committee on University Affairs (SACUA)General3 folders541

    [Executive records restricted until July 01, 2028]

    Appointments577

    [Personnel records restricted until July 01, 2038]

    Senate Assembly541

    [Executive records restricted until July 01, 2028]

    Sexual Orientation541

    [Executive records restricted until July 01, 2028]

    Society of Fellows541

    [Executive records restricted until July 01, 2028]

    Space541

    [Executive records restricted until July 01, 2028]

    Standard Practice Guides (SPG)541

    [Executive records restricted until July 01, 2028]

    StudentsGeneral541

    [Executive records restricted until July 01, 2028]

    Complaints577

    [Student records restricted until July 01, 2093]

    Deceased541

    [Executive records restricted until July 01, 2028]

    Student Affairs541

    [Executive records restricted until July 01, 2028]

    Surveys541

    [Executive records restricted until July 01, 2028]

    Team Teaching Task Force541

    [Executive records restricted until July 01, 2028]

    TenureGeneral541

    [Executive records restricted until July 01, 2028]

    Grievances577

    [Personnel records restricted until July 01, 2038]

    Smith, Andrea5 folders577

    [Personnel records restricted until July 01, 2038]

    Textbooks541

    [Executive records restricted until July 01, 2028]

    Thurnau Professors541

    [Executive records restricted until July 01, 2028]

    Travel Management541

    [Executive records restricted until July 01, 2028]

    TuitionGeneral541

    [Executive records restricted until July 01, 2028]

    Institute for Social Research (ISR)577

    [Student records restricted until July 01, 2093]

    University LibraryGeneral541

    [Executive records restricted until July 01, 2028]

    University Librarian577

    [Personnel records restricted until July 01, 2038]

    University Musical Society541

    [Executive records restricted until July 01, 2028]

    University Press541

    [Executive records restricted until July 01, 2028]

    Veterans Affairs541

    [Executive records restricted until July 01, 2028]

    Women

    [Executive records restricted until July 01, 2028]

    Susan Goddard Power AwardFebruary 13, 2008541

    [Executive records restricted until July 1, 2028]

    Schools and Colleges FilesArchitecture and Urban Planning, College ofGeneral2 folders542

    [Executive records restricted until July 01, 2028]

    Appointments and Search577

    [Personnel records restricted until July 01, 2038]

    Art and Design, School ofGeneral542

    [Executive records restricted until July 01, 2028]

    Accreditation3 folders542

    [Executive records restricted until July 01, 2028]

    Appointments577

    [Personnel records restricted until July 01, 2038]

    Student577

    [Student records restricted until July 01, 2093]

    Business, School ofGeneral542

    [Executive records restricted until July 01, 2028]

    Appointments577

    [Personnel records restricted until July 01, 2038]

    Budget542

    [Executive records restricted until July 01, 2028]

    Dearborn542

    [Executive records restricted until July 01, 2028]

    Dentistry, School ofGeneral542

    [Executive records restricted until July 01, 2028]

    Appointments577

    [Personnel records restricted until July 01, 2038]

    Students577

    [Student records restricted until July 01, 2093]

    Education, School ofGeneral542

    [Executive records restricted until July 01, 2028]

    Appointments and Retention577

    [Personnel records restricted until July 01, 2038]

    Students577

    [Student records restricted until July 01, 2093]

    Engineering, College ofGeneral3 folders542

    [Executive records restricted until July 01, 2028]

    Appointments577

    [Personnel records restricted until July 01, 2038]

    Students577

    [Student records restricted until July 01, 2093]

    FlintGeneral542

    [Executive records restricted until July 01, 2028]

    Chancellor Search577

    [Personnel records restricted until July 01, 2038]

    Information, School ofGeneral542

    [Executive records restricted until July 01, 2028]

    Appointments and Retention577

    [Personnel records restricted until July 01, 2038]

    Kinesiology, Division ofGeneral542

    [Executive records restricted until July 01, 2028]

    Appointments577

    [Personnel records restricted until July 01, 2038]

    Law SchoolGeneral542

    [Executive records restricted until July 01, 2028]

    Appointments and Retention577

    [Personnel records restricted until July 01, 2038]

    Life Sciences Institute (LSI)General542

    [Executive records restricted until July 01, 2028]

    Appointments577

    [Personnel records restricted until July 01, 2038]

    Literature, Science, and the Arts, College ofGeneral3 foldersFolders 1542

    [Executive records restricted until July 01, 2028]

    Folder 2-3543

    [Executive records restricted until July 01, 2028]

    Appointments and Retention577

    [Personnel records restricted until July 01, 2038]

    Grievances577

    [Personnel records restricted until July 01, 2038]

    Hagen Report577

    [Personnel records restricted until July 01, 2038]

    Students577

    [Student records restricted until July 01, 2093]

    Medical SchoolGeneral2 folders543

    [Executive records restricted until July 01, 2028]

    Appointments577

    [Personnel records restricted until July 01, 2038]

    Music, Theater, and Dance, School ofGeneral543

    [Executive records restricted until July 01, 2028]

    Appointments577

    [Personnel records restricted until July 01, 2038]

    Natural Resources and Environment, School of level3General543

    [Executive records restricted until July 01, 2028]

    Appointments577

    [Personnel records restricted until July 01, 2038]

    Nursing, School ofGeneral543

    [Executive records restricted until July 01, 2028]

    Appointments577

    [Personnel records restricted until July 01, 2038]

    Students577

    [Student records restricted until July 01, 2093]

    Pharmacy, College ofGeneral543

    [Executive records restricted until July 01, 2028]

    Appointments577

    [Personnel records restricted until July 01, 2038]

    Public Health, School ofGeneral543

    [Executive records restricted until July 01, 2028]

    Appointments577

    [Personnel records restricted until July 01, 2038]

    Boulton, Matthew-Nomination578

    [Personnel records restricted until July 01, 2038]

    Center for Global Health Director Search578

    [Personnel records restricted until July 01, 2038]

    Public Policy, School ofGeneral543

    [Executive records restricted until July 01, 2028]

    Appointments578

    [Personnel records restricted until July 01, 2038]

    Grievance578

    [Student records restricted until July 01, 2093]

    Rackham School of Graduate StudiesGeneral543

    [Executive records restricted until July 01, 2028]

    Grievance578

    [Student records restricted until July 01, 2093]

    Social Work, School ofGeneral543

    [Executive records restricted until July 01, 2028]

    Appointments578

    [Personnel records restricted until July 01, 2038]

    Dean Search578

    [Personnel records restricted until July 01, 2038]

    Chronological FIles2 foldersAugust-November 20075853 foldersDecember 2007-June 2008586
    2008/2009Alphabetical FilesAcademic AffairsGeneral2 folders543

    [Executive records restricted until July 01, 2029]

    Annual Activity Reviews578

    [Personnel records restricted until July 01, 2039]

    Appointments578

    [Personnel records restricted until July 01, 2039]

    CEW Director Search578

    [Personnel records restricted until July 01, 2039]

    Gibbons, Karen543

    [Executive records restricted until July 01, 2029]

    Grievances578

    [Personnel records restricted until July 01, 2039]

    Hanlon, Phil543

    [Executive records restricted until July 01, 2029]

    King, John544

    [Executive records restricted until July 01, 2029]

    Monts, Lester544

    [Executive records restricted until July 01, 2029]

    Pierce, Lori544

    [Executive records restricted until July 01, 2029]

    Shaw, Catherine544

    [Executive records restricted until July 01, 2029]

    Student Conduct Case578

    [Student records restricted until July 01, 2094]

    Van Der Pluijum, Ben544

    [Executive records restricted until July 01, 2029]

    Academic Affairs Advisory Committee (AAAC)2 folders544

    [Executive records restricted until July 01, 2029]

    Academic Program Group (APG)General5 folders544

    [Executive records restricted until July 01, 2029]

    Budget544

    [Executive records restricted until July 01, 2029]

    Development544

    [Executive records restricted until July 01, 2029]

    Academic Performance Committee544

    [Executive records restricted until July 01, 2029]

    Accreditation544

    [Executive records restricted until July 01, 2029]

    AdmissionsGeneral544

    [Executive records restricted until July 01, 2029]

    Students578

    [Student records restricted until July 01, 2094]

    ADVANCE544

    [Executive records restricted until July 01, 2029]

    Affiliation Agreements7 folders545

    [Executive records restricted until July 01, 2029]

    Affirmative Action3 folders545

    [Executive records restricted until July 01, 2029]

    African Studies545

    [Executive records restricted until July 01, 2029]

    Alumni545

    [Executive records restricted until July 01, 2029]

    American Association for the Advancement of Science (AAAS)2 folders545

    [Executive records restricted until July 01, 2029]

    American Council on Education (ACE)545

    [Executive records restricted until July 01, 2029]

    American Council of Learned Societies (ACLS)545

    [Executive records restricted until July 01, 2029]

    American Association of University Professors (AAUP)545

    [Executive records restricted until July 01, 2029]

    Arts on Earth545

    [Executive records restricted until July 01, 2029]

    Association of American Universities (AAU)General545

    [Executive records restricted until July 01, 2029]

    Appointments578

    [Personnel records restricted until July 01, 2039]

    AthleticsGeneral545

    [Executive records restricted until July 01, 2029]

    Director-Academic Success Program578

    [Personnel records restricted until July 01, 2039]

    Audits545

    [Executive records restricted until July 01, 2029]

    Awards546

    [Executive records restricted until July 01, 2029]

    BenefitsGeneral4 folders546

    [Executive records restricted until July 01, 2029]

    Executive Retreat5 folders546

    [Executive records restricted until July 01, 2029]

    Executive Retreat Materials

    [Executive records restricted until July 1, 2029]

    Bentley Historical Library546

    [Executive records restricted until July 01, 2029]

    Botanical GardensGeneral546

    [Executive records restricted until July 01, 2029]

    Appointments578

    [Personnel records restricted until July 01, 2039]

    BudgetGeneral3 folders546

    [Executive records restricted until July 01, 2029]

    Academy546

    [Executive records restricted until July 01, 2029]

    Budget and Planning2 folders546

    [Executive records restricted until July 01, 2029]

    Faculty Budget Advisory Committee (FBAC)547

    [Executive records restricted until July 01, 2029]

    CADCorporation547

    [Executive records restricted until July 01, 2029]

    Calendar547

    [Executive records restricted until July 01, 2029]

    Campaign Planning547

    [Executive records restricted until July 01, 2029]

    Campus Compact547

    [Executive records restricted until July 01, 2029]

    Campus Safety547

    [Executive records restricted until July 01, 2029]

    Campus Student Leaders547

    [Executive records restricted until July 01, 2029]

    Capital Projects2 folders547

    [Executive records restricted until July 01, 2029]

    Carnegie547

    [Executive records restricted until July 01, 2029]

    Center for Advancing Research and Societal Solutions (CARSS)547

    [Executive records restricted until July 01, 2029]

    Center for the Education of WomenGeneral547

    [Executive records restricted until July 01, 2029]

    Faculty Work-Life Study547

    [Executive records restricted until July 01, 2029]

    Center for Global Health (CGH) (see also Global Health)General547

    [Executive records restricted until July 01, 2029]

    Director Search578

    [Personnel records restricted until July 01, 2039]

    Center for Information Technology Integration (CITI)General547

    [Executive records restricted until July 01, 2029]

    Appointments578

    [Personnel records restricted until July 01, 2039]

    Center for Research on Learning and Teaching (CRLT)2 folders547

    [Executive records restricted until July 01, 2029]

    Chief Financial Officer (CFO)General547

    [Executive records restricted until July 01, 2029]

    Provost Sullivan's Meeting Notes547

    [Executive records restricted until July 01, 2029]

    China2 folders547

    [Executive records restricted until July 01, 2029]

    China Forum

    [Executive records restricted until July 1, 2029]

    Disc 1 of 2

    [Executive records restricted until July 1, 2029]

    Disc 2 of 2

    [Executive records restricted until July 1, 2029]

    ClementsGeneral547

    [Executive records restricted until July 01, 2029]

    Appointments578

    [Personnel records restricted until July 01, 2039]

    Cognate Panel547

    [Executive records restricted until July 01, 2029]

    Commencement547

    [Executive records restricted until July 01, 2029]

    Committee on Institutional Cooperation (CIC)General547

    [Executive records restricted until July 01, 2029]

    Google578

    [Patient/client records restricted until July 01, 2109]

    Conflict of Interest/Conflict of Commitment (COI/COC)547

    [Executive records restricted until July 01, 2029]

    Constitution Day547

    [Executive records restricted until July 01, 2029]

    Convocation547

    [Executive records restricted until July 01, 2029]

    Copyright547

    [Executive records restricted until July 01, 2029]

    Council for Advancement and Support of Education (CASE)547

    [Executive records restricted until July 01, 2029]

    Depression Center548

    [Executive records restricted until July 01, 2029]

    7th Annual Depression on College Campuses ConferenceMarch 18-19, 2009

    [Executive records restricted until July 1, 2029]

    Detroit548

    [Executive records restricted until July 01, 2029]

    Development3 folders548

    [Executive records restricted until July 01, 2029]

    Distinguished University Professorships548

    [Executive records restricted until July 01, 2029]

    Diversity548

    [Executive records restricted until July 01, 2029]

    DOW548

    [Executive records restricted until July 01, 2029]

    Dual Career578

    [Personnel records restricted until July 01, 2039]

    Duderstadt Center548

    [Executive records restricted until July 01, 2029]

    Duderstadt, James548

    [Executive records restricted until July 01, 2029]

    UM Scientific Club/Azazels Dinner

    [Executive records restricted until July 1, 2029]

    Economic Dinner Group548

    [Executive records restricted until July 01, 2029]

    Emergency Planning548

    [Executive records restricted until July 01, 2029]

    Enrollment548

    [Executive records restricted until July 01, 2029]

    Erb Institute548

    [Executive records restricted until July 01, 2029]

    Executive OfficersFolders 1-6548

    [Executive records restricted until July 01, 2029]

    Folder 7-8549

    [Executive records restricted until July 01, 2029]

    Executive Vice President for Medical Affairs (EVPMA) Search3 folders578

    [Personnel records restricted until July 01, 2039]

    Facilities549

    [Executive records restricted until July 01, 2029]

    Faculty549

    [Executive records restricted until July 01, 2029]

    Faculty Grievance Process Task ForceGeneral2 folders549

    [Executive records restricted until July 01, 2029]

    Appointments578

    [Personnel records restricted until July 01, 2039]

    FinanceGeneral549

    [Executive records restricted until July 01, 2029]

    Search578

    [Personnel records restricted until July 01, 2039]

    Financial AidGeneral549

    [Executive records restricted until July 01, 2029]

    Budget549

    [Executive records restricted until July 01, 2029]

    Students578

    [Student records restricted until July 01, 2094]

    Freedom of Information Act (FOIA)549

    [Executive records restricted until July 01, 2029]

    Gender Equity549

    [Executive records restricted until July 01, 2029]

    Gender in Science and Engineering549

    [Executive records restricted until July 01, 2029]

    General CounselGeneral549

    [Executive records restricted until July 01, 2029]

    Cases578

    [Patient/client records restricted until July 01, 2109]

    Gifts549

    [Executive records restricted until July 01, 2029]

    Ginsberg Center549

    [Executive records restricted until July 01, 2029]

    Global Health (see also Center for Global Health)549

    [Executive records restricted until July 01, 2029]

    Global Intercultural Experience for Undergraduates (GIEU)549

    [Executive records restricted until July 01, 2029]

    Government RelationsGeneral549

    [Executive records restricted until July 01, 2029]

    Office for Civil Rights578

    [Student records restricted until July 01, 2094]

    Graduate Employee's Organization (GEO)549

    [Executive records restricted until July 01, 2029]

    Graduate Student Instructor (GSI)549

    [Executive records restricted until July 01, 2029]

    Graham Environmental Sustainability Institute (GESI)General549

    [Executive records restricted until July 01, 2029]

    Director Search578

    [Personnel records restricted until July 01, 2039]

    Great Lakes Program578

    [Personnel records restricted until July 01, 2039]

    Grievance578

    [Personnel records restricted until July 01, 2039]

    Health System549

    [Executive records restricted until July 01, 2029]

    Henry Russel549

    [Executive records restricted until July 01, 2029]

    Higher Education2 folders549

    [Executive records restricted until July 01, 2029]

    Honorary Degree549

    [Executive records restricted until July 01, 2029]

    Honors Convocation549

    [Executive records restricted until July 01, 2029]

    Hospitals and Health Centers Executive Board10 folders550

    [Executive records restricted until July 01, 2029]

    HousingGeneral550

    [Executive records restricted until July 01, 2029]

    Budget550

    [Executive records restricted until July 01, 2029]

    Human Resources and Affirmative Action (HRAA)550

    [Executive records restricted until July 01, 2029]

    Human Resources Management System (HRMS)550

    [Executive records restricted until July 01, 2029]

    Human Resources Records and Information Services (HRRIS)550

    [Executive records restricted until July 01, 2029]

    Humor at Michigan550

    [Executive records restricted until July 01, 2029]

    Information and Technology Services (ITCS)General2 folders551

    [Executive records restricted until July 01, 2029]

    Conway, Lynn578

    [Patient/client records restricted until July 01, 2109]

    Mendez Report551

    [Executive records restricted until July 01, 2029]

    Information Technology Security551

    [Executive records restricted until July 01, 2029]

    Institute for Social Research (ISR)General551

    [Executive records restricted until July 01, 2029]

    Appointments578

    [Personnel records restricted until July 01, 2039]

    Institutional Equity578

    [Personnel records restricted until July 01, 2039]

    Interdisciplinary Faculty Initiative (IFI)551

    [Executive records restricted until July 01, 2029]

    InternationalGeneral551

    [Executive records restricted until July 01, 2029]

    Peking University VisitOctober 9, 2008551

    [Executive records restricted until July 01, 2028]

    International Committee on Organizational Studies (ICOS)551

    [Executive records restricted until July 01, 2029]

    International InstituteGeneral551

    [Executive records restricted until July 01, 2029]

    Appointments578

    [Personnel records restricted until July 01, 2039]

    Invitations551

    [Executive records restricted until July 01, 2029]

    Knight Collaboration551

    [Executive records restricted until July 01, 2029]

    Latino Students Organization551

    [Executive records restricted until July 01, 2029]

    Lecturers' Employee OrganizationGeneral551

    [Executive records restricted until July 01, 2029]

    Residency Grievance578

    [Personnel records restricted until July 01, 2039]

    Life Sciences Institute (LSI)551

    [Executive records restricted until July 01, 2029]

    Martin Luther King (MLK)551

    [Executive records restricted until July 01, 2029]

    Media RelationsGeneral2 folders551

    [Executive records restricted until July 01, 2029]

    Michigan Television sampler reel

    [Executive records restricted until July 1, 2029]

    Provost Sullivan's Meeting Notes2008551

    [Executive records restricted until July 01, 2028]

    Mellon551

    [Executive records restricted until July 01, 2029]

    MHealthy551

    [Executive records restricted until July 01, 2029]

    Michigan Academic Computing Center (MACC)551

    [Executive records restricted until July 01, 2029]

    Michigan Administrative Information System (MAIS)551

    [Executive records restricted until July 01, 2029]

    Michigan Daily Meetings551

    [Executive records restricted until July 01, 2029]

    Millennium Project578

    [Personnel records restricted until July 01, 2039]

    Multidisciplinary Learning and Team Teaching (MLTT)551

    [Executive records restricted until July 01, 2029]

    Museum of ArtGeneral551

    [Executive records restricted until July 01, 2029]

    Director Search578

    [Personnel records restricted until July 01, 2039]

    Naming Committee551

    [Executive records restricted until July 01, 2029]

    National Association of State Universities and Land Grant Colleges (NASULGC)551

    [Executive records restricted until July 01, 2029]

    National Institutes of Health (NIH)551

    [Executive records restricted until July 01, 2029]

    National Research Consortium (NRC)551

    [Executive records restricted until July 01, 2029]

    National Science Foundation (NSF)551

    [Executive records restricted until July 01, 2029]

    New Student Programs551

    [Executive records restricted until July 01, 2029]

    North Campus551

    [Executive records restricted until July 01, 2029]

    Office of Academic Affairs (OAA) 6+1552General4 folders552

    [Executive records restricted until July 01, 2029]

    Recruitment578

    [Personnel records restricted until July 01, 2039]

    Office of the Vice President for Research (OVPR) Director Search578

    [Personnel records restricted until July 01, 2039]

    Orientation552

    [Executive records restricted until July 01, 2029]

    Palmer Commons552

    [Executive records restricted until July 01, 2029]

    Pandemic Planning552

    [Executive records restricted until July 01, 2029]

    Peer Institutions552

    [Executive records restricted until July 01, 2029]

    Pfizer552

    [Executive records restricted until July 01, 2029]

    President's Advisory Commission on Women's Issues (PACWI)552

    [Executive records restricted until July 01, 2029]

    President's Advisory Group (PAG)3 folders552

    [Executive records restricted until July 01, 2029]

    President's MeetingsGeneral552

    [Executive records restricted until July 01, 2029]

    Searches and Appointments578

    [Personnel records restricted until July 01, 2039]

    Promotions552

    [Executive records restricted until July 01, 2029]

    Provost's Advisory Committee on Internationalization (PACI)552

    [Executive records restricted until July 01, 2029]

    Provost's Council on Student Honors552

    [Executive records restricted until July 01, 2029]

    Provost's Faculty Initiative Program (PFIP)578

    [Personnel records restricted until July 01, 2039]

    Provost's Student Academic Advisory Board552

    [Executive records restricted until July 01, 2029]

    Prudence Panel552

    [Executive records restricted until July 01, 2029]

    Public Goods Council552

    [Executive records restricted until July 01, 2029]

    Qatar2 folders552

    [Executive records restricted until July 01, 2029]

    Recreational Sports553

    [Executive records restricted until July 01, 2029]

    RegentsGeneral2 folders553

    [Executive records restricted until July 01, 2029]

    Communications4 folders553

    [Executive records restricted until July 01, 2029]

    ResearchGeneral3 folders553

    [Executive records restricted until July 01, 2029]

    Appointments578

    [Personnel records restricted until July 01, 2039]

    Residential College553

    [Executive records restricted until July 01, 2029]

    Retention578

    [Personnel records restricted until July 01, 2039]

    Rhodes Scholars553

    [Executive records restricted until July 01, 2029]

    Roads Scholars553

    [Executive records restricted until July 01, 2029]

    SalaryGeneral3 folders553

    [Executive records restricted until July 01, 2029]

    Recruitment578

    [Personnel records restricted until July 01, 2039]

    SAPER553

    [Executive records restricted until July 01, 2029]

    Scholarships and Fellowships553

    [Executive records restricted until July 01, 2029]

    Scientific Club-Sullivan Article553

    [Executive records restricted until July 01, 2029]

    Searches553

    [Executive records restricted until July 01, 2029]

    Secretary of the University553

    [Executive records restricted until July 01, 2029]

    Senate Advisory Committee on University Affairs (SACUA)General2 folders553

    [Executive records restricted until July 01, 2029]

    Appointment578

    [Personnel records restricted until July 01, 2039]

    Holl, Augustin F. C.578

    [Patient/client records restricted until July 01, 2109]

    Senate Assembly553

    [Executive records restricted until July 01, 2029]

    Space553

    [Executive records restricted until July 01, 2029]

    Sphinx Organization553

    [Executive records restricted until July 01, 2029]

    Standard Practice Guides (SPG)553

    [Executive records restricted until July 01, 2029]

    StudentsGeneral553

    [Executive records restricted until July 01, 2029]

    Complaints578

    [Student records restricted until July 01, 2094]

    Deceased554

    [Executive records restricted until July 01, 2029]

    Student AffairsGeneral554

    [Executive records restricted until July 01, 2029]

    Dean of Students Search578

    [Personnel records restricted until July 01, 2039]

    Debate Camp Incident578

    [Patient/client records restricted until July 01, 2109]

    Students578

    [Student records restricted until July 01, 2094]

    Student Budget Advisory Committee554

    [Executive records restricted until July 01, 2029]

    Student Experience in the Research University (SERU)554

    [Executive records restricted until July 01, 2029]

    Student Relations Advisory Committee554

    [Executive records restricted until July 01, 2029]

    Surveys2 folders554

    [Executive records restricted until July 01, 2029]

    Thomas Francis Jr. Medal554

    [Executive records restricted until July 01, 2029]

    Thurnau Professors554

    [Executive records restricted until July 01, 2029]

    TIAA-CREF554

    [Executive records restricted until July 01, 2029]

    Treasurer's Office554

    [Executive records restricted until July 01, 2029]

    TuitionGeneral554

    [Executive records restricted until July 01, 2029]

    Students5784

    [Student records restricted until July 01, 2094]

    Undergraduate Teaching554

    [Executive records restricted until July 01, 2029]

    University Library554

    [Executive records restricted until July 01, 2029]

    United Way554

    [Executive records restricted until July 01, 2029]

    University Musical Society554

    [Executive records restricted until July 01, 2029]

    University Press554

    [Executive records restricted until July 01, 2029]

    Venture Grant Program554

    [Executive records restricted until July 01, 2029]

    Veteran Affairs554

    [Executive records restricted until July 01, 2029]

    Whitaker Fund554

    [Executive records restricted until July 01, 2029]

    Schools and Colleges FilesArchitecture and Urban Planning, College of (TCAUP)General554

    [Executive records restricted until July 01, 2029]

    Appointments579

    [Personnel records restricted until July 01, 2039]

    Art and Design, School ofGeneral554

    [Executive records restricted until July 01, 2029]

    Appointments579

    [Personnel records restricted until July 01, 2039]

    Students579

    [Student records restricted until July 01, 2094]

    Business SchoolGeneral2 folders554

    [Executive records restricted until July 01, 2029]

    Appointments579

    [Personnel records restricted until July 01, 2039]

    Dearborn554

    [Executive records restricted until July 01, 2029]

    Dentistry, School ofGeneral554

    [Executive records restricted until July 01, 2029]

    Appointments579

    [Personnel records restricted until July 01, 2039]

    Grievance579

    [Personnel records restricted until July 01, 2039]

    Students579

    [Student records restricted until July 01, 2094]

    Education, School ofGeneral554

    [Executive records restricted until July 01, 2029]

    Appointments579

    [Personnel records restricted until July 01, 2039]

    Engineering, College ofGeneral555

    [Executive records restricted until July 01, 2029]

    Appointments579

    [Personnel records restricted until July 01, 2039]

    NASA579

    [Patient/client records restricted until July 01, 2109]

    Students579

    [Student records restricted until July 01, 2094]

    Flint555

    [Executive records restricted until July 01, 2029]

    Information, School ofGeneral555

    [Executive records restricted until July 01, 2029]

    Appointments579

    [Personnel records restricted until July 01, 2039]

    Kinesiology, School ofGeneral555

    [Executive records restricted until July 01, 2029]

    Appointments579

    [Personnel records restricted until July 01, 2039]

    Dean Search579

    [Personnel records restricted until July 01, 2039]

    Law SchoolGeneral555

    [Executive records restricted until July 01, 2029]

    Appointments579

    [Personnel records restricted until July 01, 2039]

    Students579

    [Student records restricted until July 01, 2094]

    Life Sciences Institute (LSI)General555

    [Executive records restricted until July 01, 2029]

    Appointments579

    [Personnel records restricted until July 01, 2039]

    Literature, Science, and the Arts, College ofGeneral3 folders555

    [Executive records restricted until July 01, 2029]

    Appointments and Retention579

    [Personnel records restricted until July 01, 2039]

    Eliav, Yaron579

    [Personnel records restricted until July 1, 2038]

    English Language Institute555

    [Executive records restricted until July 01, 2029]

    Graduate Student Instructor Materials

    [Executive records restricted until July 1, 2029]

    Fornaess, John E.579

    [Patient/client records restricted until July 01, 2109]

    Holl, Augustin F.C.579

    [Patient/client records restricted until July 01, 2109]

    Lloyd Hall Scholars Program555

    [Executive records restricted until July 01, 2029]

    Students579

    [Student records restricted until July 01, 2094]

    Medical SchoolGeneral555

    [Executive records restricted until July 01, 2029]

    Appointments579

    [Personnel records restricted until July 01, 2039]

    Faculty Grievance579

    [Personnel records restricted until July 01, 2039]

    Music, Theatre and Dance, School ofGeneral555

    [Executive records restricted until July 01, 2029]

    Appointments579

    [Personnel records restricted until July 01, 2039]

    Sutton, R. Anderson579

    [Personnel records restricted until July 01, 2039]

    Natural Resources and Environment, School ofGeneral555

    [Executive records restricted until July 01, 2029]

    Appointments579

    [Personnel records restricted until July 01, 2039]

    Nursing, School ofGeneral555

    [Executive records restricted until July 01, 2029]

    Appointments579

    [Personnel records restricted until July 01, 2039]

    Martinson, Linda-Grievance579

    [Personnel records restricted until July 01, 2039]

    Students579

    [Student records restricted until July 01, 2094]

    Pharmacy, College ofGeneral555

    [Executive records restricted until July 01, 2029]

    Appointments579

    [Personnel records restricted until July 01, 2039]

    Public Health, School ofGeneral555

    [Executive records restricted until July 01, 2029]

    Appointments579

    [Personnel records restricted until July 01, 2039]

    Public Policy, School ofGeneral555

    [Executive records restricted until July 01, 2029]

    Appointments579

    [Personnel records restricted until July 01, 2039]

    Students579

    [Student records restricted until July 01, 2094]

    Rackham Graduate SchoolGeneral2 folders556

    [Executive records restricted until July 01, 2029]

    Appointments579

    [Personnel records restricted until July 01, 2039]

    Social Work, School ofGeneral556

    [Executive records restricted until July 01, 2029]

    Appointments579

    [Personnel records restricted until July 01, 2039]

    Chronological Files2 foldersJuly-September 200858621 foldersNovember 2008-Aigust 2009587
    2009/2010Alphabetical FilesAcademic AffairsGeneral4 folders556

    [Executive records restricted until July 01, 2030]

    Annual Activity Updates579

    [Personnel records restricted until July 01, 2040]

    Faculty and Appointments579

    [Personnel records restricted until July 01, 2040]

    Gibbons, Karen556

    [Executive records restricted until July 01, 2030]

    Hanlon, Phil556

    [Executive records restricted until July 01, 2030]

    King, John556

    [Executive records restricted until July 01, 2030]

    Monts, Lester556

    [Executive records restricted until July 01, 2030]

    Pierce, Lori556

    [Executive records restricted until July 01, 2030]

    Shaw, Catherine556

    [Executive records restricted until July 01, 2030]

    Van Der Pluijim, Ben556

    [Executive records restricted until July 01, 2030]

    Searches579

    [Personnel records restricted until July 01, 2040]

    Student Grievance579

    [Student records restricted until July 01, 2095]

    Whitman, Christina556

    [Executive records restricted until July 01, 2030]

    Academic Affairs Advisory Committee (AAAC)556

    [Executive records restricted until July 01, 2030]

    Academic Program GroupGeneral5 foldersFolders 1-4556

    [Executive records restricted until July 01, 2030]

    Folder 5557

    [Executive records restricted until July 01, 2030]

    Budget2 folders557

    [Executive records restricted until July 01, 2030]

    Academic Program Group Development Subcommittee (APGD)557

    [Executive records restricted until July 01, 2030]

    Academic Program Group Operations Subcommittee557

    [Executive records restricted until July 01, 2030]

    AccreditationGeneral6 folders557

    [Executive records restricted until July 01, 2030]

    Reappointment Review579

    [Personnel records restricted until July 01, 2040]

    AdmissionsGeneral557

    [Executive records restricted until July 01, 2030]

    Students579

    [Student records restricted until July 01, 2095]

    ADVANCE557

    [Executive records restricted until July 01, 2030]

    Affiliation Agreements6 foldersFolders 1-4557

    [Executive records restricted until July 01, 2030]

    Folders 5-6558

    [Executive records restricted until July 01, 2030]

    Affirmative Action2 folders558

    [Executive records restricted until July 01, 2030]

    American Association of University Professors (AAUP)558

    [Executive records restricted until July 01, 2030]

    American Council on Education (ACE)558

    [Executive records restricted until July 01, 2030]

    American Council of Learned Societies (ACLS)558

    [Executive records restricted until July 01, 2030]

    Association of American Colleges and Universities (AACU)558

    [Executive records restricted until July 01, 2030]

    Association of American Universities (AAU)558

    [Executive records restricted until July 01, 2030]

    AthleticsGeneral558

    [Executive records restricted until July 01, 2030]

    Appointments579

    [Personnel records restricted until July 01, 2040]

    Marching Band579

    [Patient/client records restricted until July 01, 2110]

    Students579

    [Student records restricted until July 01, 2095]

    ATLAS Collaboratory Project558

    [Executive records restricted until July 01, 2030]

    AuditsGeneral558

    [Executive records restricted until July 01, 2030]

    Center for Afro-American and African Studies579

    [Personnel records restricted until July 01, 2040]

    Awards558

    [Executive records restricted until July 01, 2030]

    Benefits3 folders558

    [Executive records restricted until July 01, 2030]

    Bentley Historical LibraryGeneral558

    [Executive records restricted until July 01, 2030]

    Sabbatical579

    [Personnel records restricted until July 01, 2040]

    Botanical Gardens558

    [Executive records restricted until July 01, 2030]

    BudgetGeneral2 folders558

    [Executive records restricted until July 01, 2030]

    Faculty Budget Advisory Committee (FBAC)558

    [Executive records restricted until July 01, 2030]

    Budget and Planning558

    [Executive records restricted until July 01, 2030]

    Budget and Planning Appointments579

    [Personnel records restricted until July 01, 2040]

    Campus Compact559

    [Executive records restricted until July 01, 2030]

    Campus Safety559

    [Executive records restricted until July 01, 2030]

    Capital Projects559

    [Executive records restricted until July 01, 2030]

    Carnegie Foundation559

    [Executive records restricted until July 01, 2030]

    Center for the Education of Women (CEW)559

    [Executive records restricted until July 01, 2030]

    Center for Global Health (CGH)General559

    [Executive records restricted until July 01, 2030]

    Appointments579

    [Personnel records restricted until July 01, 2040]

    Center for Research on Learning and Teaching (CRLT)2 folders559

    [Executive records restricted until July 01, 2030]

    Chief Financial Officer (CFO)559

    [Executive records restricted until July 01, 2030]

    Child Care559

    [Executive records restricted until July 01, 2030]

    Clements LibraryGeneral559

    [Executive records restricted until July 01, 2030]

    Longone dedication2005

    [Executive records restricted until July 1, 2030]

    Appointments579

    [Personnel records restricted until July 01, 2040]

    Longone Gift Agreement579

    [Patient/client records restricted until July 01, 2110]

    Cognate Panel559

    [Executive records restricted until July 01, 2030]

    Commencement559

    [Executive records restricted until July 01, 2030]

    Committee on Institutional Cooperation (CIC)559

    [Executive records restricted until July 01, 2030]

    Conflict of Interest/Conflict of Commitment (COI/COC)559

    [Executive records restricted until July 01, 2030]

    Confucius Institute559

    [Executive records restricted until July 01, 2030]

    Constitution Day559

    [Executive records restricted until July 01, 2030]

    Convocation559

    [Executive records restricted until July 01, 2030]

    Creative Staffing and Shared Services (CSSS)559

    [Executive records restricted until July 01, 2030]

    Depression Center559

    [Executive records restricted until July 01, 2030]

    8th Annual Depression on College Campuses ConferenceMarch 10-11, 2010

    [Executive records restricted until July 1, 2030]

    Detroit559

    [Executive records restricted until July 01, 2030]

    Development3 folders559

    [Executive records restricted until July 01, 2030]

    Digital Media559

    [Executive records restricted until July 01, 2030]

    Distinguished University Professorships (DUP)559

    [Executive records restricted until July 01, 2030]

    Donor and Alumni Relationship Tool (DART)559

    [Executive records restricted until July 01, 2030]

    Dow559

    [Executive records restricted until July 01, 2030]

    Dual Career579

    [Personnel records restricted until July 01, 2040]

    Duderstadt, James J.559

    [Executive records restricted until July 01, 2030]

    Emergency Planning559

    [Executive records restricted until July 01, 2030]

    Enrollment559

    [Executive records restricted until July 01, 2030]

    Executive Officers8 folders560

    [Executive records restricted until July 01, 2030]

    FacultyGeneral560

    [Executive records restricted until July 01, 2030]

    Appointments579

    [Personnel records restricted until July 01, 2040]

    Faculty Grievance Policy Task Force560

    [Executive records restricted until July 01, 2030]

    Finance: VP Area560

    [Executive records restricted until July 01, 2030]

    Finance and Capital Projects Committee560

    [Executive records restricted until July 01, 2030]

    Financial AidGeneral560

    [Executive records restricted until July 01, 2030]

    Students579

    [Student records restricted until July 01, 2095]

    Freedom of Information Act (FOIA)General560

    [Executive records restricted until July 01, 2030]

    Faculty579

    [Personnel records restricted until July 01, 2040]

    General CounselGeneral560

    [Executive records restricted until July 01, 2030]

    Cases579

    [Patient/client records restricted until July 01, 2110]

    Lowertown579

    [Patient/client records restricted until July 01, 2110]

    Global Intercultural Experiences for Undergraduates (GIEU)Google560

    [Executive records restricted until July 01, 2030]

    General560

    [Executive records restricted until July 01, 2030]

    Settlement579

    [Patient/client records restricted until July 01, 2110]

    Government Relations2 folders560

    [Executive records restricted until July 01, 2030]

    Graham Environmental Sustainability Institute (GESI)560

    [Executive records restricted until July 01, 2030]

    Great Lakes560

    [Executive records restricted until July 01, 2030]

    Health System Committee561

    [Executive records restricted until July 01, 2030]

    Henry Russel561

    [Executive records restricted until July 01, 2030]

    Higher Education561

    [Executive records restricted until July 01, 2030]

    Honors ConvocationGeneral561

    [Executive records restricted until July 01, 2030]

    Students579

    [Student records restricted until July 01, 2095]

    Hospitals and Health Centers Executive Board8 folders561

    [Executive records restricted until July 01, 2030]

    Human Resources and Affirmative Action (HRAA)561

    [Executive records restricted until July 01, 2030]

    Human Resources Management System (HRMS)561

    [Executive records restricted until July 01, 2030]

    Human Resources Records and Information Services (HRRIS)561

    [Executive records restricted until July 01, 2030]

    Human Capital ReportJuly 2009

    [Executive records restricted until July 1, 2030]

    Information Technology CommitteeGeneral561

    [Executive records restricted until July 01, 2030]

    Appointments579

    [Personnel records restricted until July 01, 2040]

    Information Technology Council (ITC)General561

    [Executive records restricted until July 01, 2030]

    Appointments579

    [Personnel records restricted until July 01, 2040]

    Information Technology Services (ITS)561

    [Executive records restricted until July 01, 2030]

    Institute for Social Research (ISR)General561

    [Executive records restricted until July 01, 2030]

    Appointments579

    [Personnel records restricted until July 01, 2040]

    Institutional Equity561

    [Executive records restricted until July 01, 2030]

    Interdisciplinary Faculty InitiativeGeneral561

    [Executive records restricted until July 01, 2030]

    Appointments579

    [Personnel records restricted until July 01, 2040]

    International561

    [Executive records restricted until July 01, 2030]

    International InstituteGeneral561

    [Executive records restricted until July 01, 2030]

    Appointments579

    [Personnel records restricted until July 01, 2040]

    Lecturers' Employee Organization (LEO)General561

    [Executive records restricted until July 01, 2030]

    Appointments579

    [Personnel records restricted until July 01, 2040]

    Martin Luther King561

    [Executive records restricted until July 01, 2030]

    MHealthy Advisory Committee561

    [Executive records restricted until July 01, 2030]

    Media RelationsGeneral2 folders562

    [Executive records restricted until July 01, 2030]

    Out of the Blue: The University of Michigan Difference

    (This is episode 103.)

    [Executive records restricted until July 1, 2030]

    University of Michigan Waterski Team2008

    [Executive records restricted until July 1, 2030]

    Year in Pictures2008-2009

    (Created by the University of Michigan Photo Services department.)

    [Executive records restricted until July 1, 2030]

    What is the Michigan Difference?

    [Executive records restricted until July 1, 2030]

    Carroll, Amy579

    [Personnel records restricted until July 01, 2040]

    Medical AffairsGeneral562

    [Executive records restricted until July 01, 2030]

    Initiative in Computational and Translational Genomics579

    [Personnel records restricted until July 01, 2040]

    Mellon Foundation562

    [Executive records restricted until July 01, 2030]

    Michigan Daily Meetings562

    [Executive records restricted until July 01, 2030]

    Multicultural Affairs562

    [Executive records restricted until July 01, 2030]

    Multidisciplinary Learning and Team Teaching (MLTT)562

    [Executive records restricted until July 01, 2030]

    Museum of ArtGeneral562

    [Executive records restricted until July 01, 2030]

    Search579

    [Personnel records restricted until July 01, 2040]

    Naming Committee562

    [Executive records restricted until July 01, 2030]

    National Center for Institutional Diversity (NCID)562

    [Executive records restricted until July 01, 2030]

    National Institutes of Health (NIH)562

    [Executive records restricted until July 01, 2030]

    National Science Foundation (NSF)562

    [Executive records restricted until July 01, 2030]

    New Faculty Orientation562

    [Executive records restricted until July 01, 2030]

    North CampusGeneral562

    [Executive records restricted until July 01, 2030]

    North Campus Research Complex Search579

    [Personnel records restricted until July 01, 2040]

    North Quad562

    [Executive records restricted until July 01, 2030]

    Office of Academic Affairs (OAA) 6+1General4 folders562

    [Executive records restricted until July 01, 2030]

    Appointments579

    [Personnel records restricted until July 01, 2040]

    Astronaut Scholarship Foundation579

    [Student records restricted until July 01, 2095]

    Faculty579

    [Personnel records restricted until July 01, 2040]

    Students579

    [Student records restricted until July 01, 2095]

    Ombudsman562

    [Executive records restricted until July 01, 2030]

    Pandemic562

    [Executive records restricted until July 01, 2030]

    Phi Kappa Phi562

    [Executive records restricted until July 01, 2030]

    Plant Operations562

    [Executive records restricted until July 01, 2030]

    President's Advisory Commission on Women's Issues (PACWI)562

    [Executive records restricted until July 01, 2030]

    President's Advisory Group (PAG)3 folders562

    [Executive records restricted until July 01, 2030]

    President's MeetingsGeneral562

    [Executive records restricted until July 01, 2030]

    Annual Review579

    [Personnel records restricted until July 01, 2040]

    Searches579

    [Personnel records restricted until July 01, 2040]

    Program for Education and Evaluation in Responsible Research and Scholarship (PEERRS)562

    [Executive records restricted until July 01, 2030]

    Promotions562

    [Executive records restricted until July 01, 2030]

    Provost's Council on Student Honors563

    [Executive records restricted until July 01, 2030]

    Provost's Faculty Initiatives Program579

    [Personnel records restricted until July 01, 2040]

    Provost's Student Academic Advisory Board563

    [Executive records restricted until July 01, 2030]

    Prudence Panel563

    [Executive records restricted until July 01, 2030]

    Public Goods Council563

    [Executive records restricted until July 01, 2030]

    Qatar563

    [Executive records restricted until July 01, 2030]

    Recreational Sports563

    [Executive records restricted until July 01, 2030]

    RegentsGeneral563

    [Executive records restricted until July 01, 2030]

    Communications2 folders563

    [Executive records restricted until July 01, 2030]

    Registrar563

    [Executive records restricted until July 01, 2030]

    Residency579

    [Student records restricted until July 01, 2095]

    ResearchGeneral2 folders563

    [Executive records restricted until July 01, 2030]

    Appointments579

    [Personnel records restricted until July 01, 2040]

    Vice President579

    [Personnel records restricted until July 01, 2040]

    Reserve Officer Training Corps (ROTC)563

    [Executive records restricted until July 01, 2030]

    Road Scholars563

    [Executive records restricted until July 01, 2030]

    Salary563

    [Executive records restricted until July 01, 2030]

    Scholarship and Fellowships563

    [Executive records restricted until July 01, 2030]

    Secretary of the University563

    [Executive records restricted until July 01, 2030]

    Senate Advisory Committee on University Affairs (SACUA)General563

    [Executive records restricted until July 01, 2030]

    Borisov Case580

    [Personnel records restricted until July 01, 2040]

    Senate Assembly563

    [Executive records restricted until July 01, 2030]

    Sponsored Projects563

    [Executive records restricted until July 01, 2030]

    Standard Practice Guide (SPG)563

    [Executive records restricted until July 01, 2030]

    StudentsGeneral563

    [Executive records restricted until July 01, 2030]

    Complaints580

    [Student records restricted until July 01, 2095]

    Deceased563

    [Executive records restricted until July 01, 2030]

    Medical580

    [Patient/client records restricted until July 01, 2110]

    Student Affairs563

    [Executive records restricted until July 01, 2030]

    Student Budget Advisory Committee (SBAC)563

    [Executive records restricted until July 01, 2030]

    Student Experience in the Research University (SERU)563

    [Executive records restricted until July 01, 2030]

    Student Life, Vice President of563

    [Executive records restricted until July 01, 2030]

    Surveys563

    [Executive records restricted until July 01, 2030]

    Sustainability2 folders563

    [Executive records restricted until July 01, 2030]

    Thomas Francis, Jr. Medal563

    [Executive records restricted until July 01, 2030]

    TIAA-CREF563

    [Executive records restricted until July 01, 2030]

    Transportation Technology563

    [Executive records restricted until July 01, 2030]

    TuitionGeneral563

    [Executive records restricted until July 01, 2030]

    Students580

    [Student records restricted until July 01, 2095]

    United Way564

    [Executive records restricted until July 01, 2030]

    University Libraries564

    [Executive records restricted until July 01, 2030]

    University Musical Society (UMS)564

    [Executive records restricted until July 01, 2030]

    Vice President for Communications564

    [Executive records restricted until July 01, 2030]

    Women564

    [Executive records restricted until July 01, 2030]

    Striving Toward Equality at the University of Michigan: 25 Years of Academic Women's Caucuses1975-2000

    [Executive records restricted until July 1, 2030]

    Woodrow Wilson National Fellowship FoundationGeneral564

    [Executive records restricted until July 01, 2030]

    Michigan Teaching Fellowship Project Director580

    [Personnel records restricted until July 01, 2040]

    Yerevan State University564

    [Executive records restricted until July 01, 2030]

    Schools and Colleges FilesArchitecture and Urban Planning, College ofGeneral564

    [Executive records restricted until July 01, 2030]

    Appointments580

    [Personnel records restricted until July 01, 2040]

    Art and Design, School ofGeneral564

    [Executive records restricted until July 01, 2030]

    Appointments580

    [Personnel records restricted until July 01, 2040]

    Business, School ofGeneral564

    [Executive records restricted until July 01, 2030]

    Appointments580

    [Personnel records restricted until July 01, 2040]

    Students580

    [Student records restricted until July 01, 2095]

    DearbornGeneral564

    [Executive records restricted until July 01, 2030]

    Appointments580

    [Personnel records restricted until July 01, 2040]

    Dentistry, School ofGeneral564

    [Executive records restricted until July 01, 2030]

    Appointments580

    [Personnel records restricted until July 01, 2040]

    Education, School ofGeneral564

    [Executive records restricted until July 01, 2030]

    Appointments580

    [Personnel records restricted until July 01, 2040]

    St. John, Edward580

    [Patient/client records restricted until July 01, 2110]

    Engineering, College ofGeneral564

    [Executive records restricted until July 01, 2030]

    Appointments580

    [Personnel records restricted until July 01, 2040]

    Flint564

    [Executive records restricted until July 01, 2030]

    Dentistry, School ofGeneral564

    [Executive records restricted until July 01, 2030]

    Appointments580

    [Personnel records restricted until July 01, 2040]

    Kinesiology, School ofGeneral564

    [Executive records restricted until July 01, 2030]

    Dean Search580

    [Personnel records restricted until July 01, 2040]

    Law SchoolGeneral564

    [Executive records restricted until July 01, 2030]

    Appointments580

    [Personnel records restricted until July 01, 2040]

    Life Sciences Institute (LSI)564

    [Executive records restricted until July 01, 2030]

    Literature, Science, and the Arts, College of (LSA)General564

    [Executive records restricted until July 01, 2030]

    Appointments580

    [Personnel records restricted until July 01, 2040]

    Doty, Ellen580

    [Patient/client records restricted until July 01, 2110]

    Missing Student580

    [Patient/client records restricted until July 01, 2110]

    Prison Creative Arts Project564

    [Executive records restricted until July 01, 2030]

    Students580

    [Student records restricted until July 01, 2095]

    Medical SchoolGeneral564

    [Executive records restricted until July 01, 2030]

    Appointments580

    [Personnel records restricted until July 01, 2040]

    Music, Theatre and Dance, School ofGeneral564

    [Executive records restricted until July 01, 2030]

    Appointments580

    [Personnel records restricted until July 01, 2040]

    Students580

    [Student records restricted until July 01, 2095]

    Natural Resources and Environment, School of (SNRE)General564

    [Executive records restricted until July 01, 2030]

    Appointments580

    [Personnel records restricted until July 01, 2040]

    Pharmacy, College ofGeneral564

    [Executive records restricted until July 01, 2030]

    Appointments580

    [Personnel records restricted until July 01, 2040]

    Public Health, School ofGeneral564

    [Executive records restricted until July 01, 2030]

    Appointments580

    [Personnel records restricted until July 01, 2040]

    Public Policy, School ofGeneral564

    [Executive records restricted until July 01, 2030]

    Appointments580

    [Personnel records restricted until July 01, 2040]

    Rackham Graduate SchoolGeneral565

    [Executive records restricted until July 01, 2030]

    Appointments580

    [Personnel records restricted until July 01, 2040]

    Students580

    [Student records restricted until July 01, 2095]

    Social Work, School ofGeneral565

    [Executive records restricted until July 01, 2030]

    Appointments580

    [Personnel records restricted until July 01, 2040]

    Chronological Files8 foldersSeptember-December 2009587

    [Personnel records restricted until July 1, 2010]

    11 foldersJanuary-May 2010599

    [Personnel records restricted until July 1, 2040]

    6 foldersJune-August 2010600

    [Personnel records restricted until July 1, 2040]

    2010/2011Alphabetical FilesAcademic AffairsGeneral3 folders565

    [Executive records restricted until July 01, 2031]

    Annual Reviews580

    [Personnel records restricted until July 01, 2041]

    Appointments580

    [Personnel records restricted until July 01, 2041]

    Gibbons, Karen565

    [Executive records restricted until July 01, 2031]

    Grievance580

    [Patient/client records restricted until July 01, 2111]

    King, John565

    [Executive records restricted until July 01, 2031]

    Monts, Lester565

    [Executive records restricted until July 01, 2031]

    Pierce, Lori565

    [Executive records restricted until July 01, 2031]

    Pollack, Martha565

    [Executive records restricted until July 01, 2031]

    Shaw, Catherine565

    [Executive records restricted until July 01, 2031]

    Students580

    [Student records restricted until July 01, 2096]

    Tessler, Mark565

    [Executive records restricted until July 01, 2031]

    Van Der Pluijum, Ben565

    [Executive records restricted until July 01, 2031]

    Whitman, Christina565

    [Executive records restricted until July 01, 2031]

    Academic Affairs Advisory Committee (AAAC)565

    [Executive records restricted until July 01, 2031]

    Academic Freedom565

    [Executive records restricted until July 01, 2031]

    Academic Program Group (APG)General5 folders565

    [Executive records restricted until July 01, 2031]

    Budget Subcommittee565

    [Executive records restricted until July 01, 2031]

    Development Subcommittee566

    [Executive records restricted until July 01, 2031]

    Operations Subcommittee566

    [Executive records restricted until July 01, 2031]

    Accreditation566

    [Executive records restricted until July 01, 2031]

    Administrative Evaluation Committee (AEC)566

    [Executive records restricted until July 01, 2031]

    Administrative Services Transformation (AST)566

    [Executive records restricted until July 01, 2031]

    AdmissionsGeneral566

    [Executive records restricted until July 01, 2031]

    Appointments580

    [Personnel records restricted until July 01, 2041]

    Budget566

    [Executive records restricted until July 01, 2031]

    Students580

    [Student records restricted until July 01, 2096]

    ADVANCE566

    [Executive records restricted until July 01, 2031]

    Affiliation Agreements8 folders566

    [Executive records restricted until July 01, 2031]

    Affirmative Action566

    [Executive records restricted until July 01, 2031]

    Alumni566

    [Executive records restricted until July 01, 2031]

    American Academy of Arts and Sciences (AAAS)566

    [Executive records restricted until July 01, 2031]

    American Association of University Professors (AAUP)566

    [Executive records restricted until July 01, 2031]

    American Sociological Association (ASA)566

    [Executive records restricted until July 01, 2031]

    Arts on Earth567

    [Executive records restricted until July 01, 2031]

    Association of Public and Land Grant Universities (APLU)567

    [Executive records restricted until July 01, 2031]

    Astronaut Scholarship Foundation567

    [Executive records restricted until July 01, 2031]

    AthleticsGeneral567

    [Executive records restricted until July 01, 2031]

    Performance Reviews-Athletic Success Program (ASP)580

    [Personnel records restricted until July 01, 2041]

    Provost's Meeting Notes567

    [Executive records restricted until July 01, 2031]

    Students580

    [Student records restricted until July 01, 2096]

    AuditsGeneral567

    [Executive records restricted until July 01, 2031]

    School of Social Work NIH Grant580

    [Personnel records restricted until July 01, 2041]

    Awards567

    [Executive records restricted until July 01, 2031]

    Benefits4 folders567

    [Executive records restricted until July 01, 2031]

    Bentley Historical Library567

    [Executive records restricted until July 01, 2031]

    Botanical Gardens567

    [Executive records restricted until July 01, 2031]

    BudgetGeneral2 folders567

    [Executive records restricted until July 01, 2031]

    Budget and Planning567

    [Executive records restricted until July 01, 2031]

    Faculty Budget Advisory Committee567

    [Executive records restricted until July 01, 2031]

    Retentions580

    [Personnel records restricted until July 01, 2041]

    Business and Finance567

    [Executive records restricted until July 01, 2031]

    Campus Safety567

    [Executive records restricted until July 01, 2031]

    Capital Projects567

    [Executive records restricted until July 01, 2031]

    Carnegie Foundation567

    [Executive records restricted until July 01, 2031]

    Center for the Education of Women567

    [Executive records restricted until July 01, 2031]

    Center for Global Health567

    [Executive records restricted until July 01, 2031]

    Center for Research on Learning and Teaching (CRLT)567

    [Executive records restricted until July 01, 2031]

    Chief Financial Officer (CFO)General3 folders567

    [Executive records restricted until July 01, 2031]

    Provost's Meeting Notes568

    [Executive records restricted until July 01, 2031]

    City of Ann Arbor568

    [Executive records restricted until July 01, 2031]

    Clements Library568

    [Executive records restricted until July 01, 2031]

    Cognate Panel568

    [Executive records restricted until July 01, 2031]

    Commencement2 folders568

    [Executive records restricted until July 01, 2031]

    Committee on Institutional Cooperation (CIC)568

    [Executive records restricted until July 01, 2031]

    Compliance568

    [Executive records restricted until July 01, 2031]

    Conflict of Interest/Conflict of Commitment (COI/COC)568

    [Executive records restricted until July 01, 2031]

    Constitution Day568

    [Executive records restricted until July 01, 2031]

    Convocation568

    [Executive records restricted until July 01, 2031]

    Copyright568

    [Executive records restricted until July 01, 2031]

    Depression Center568

    [Executive records restricted until July 01, 2031]

    9th Annual Depression on College Campuses ConferenceMarch 28-29, 2011

    [Executive records restricted until July 1, 2031]

    Detroit568

    [Executive records restricted until July 01, 2031]

    DevelopmentGeneral2 folders568

    [Executive records restricted until July 01, 2031]

    Budget568

    [Executive records restricted until July 01, 2031]

    Provost's Meeting Notes568

    [Executive records restricted until July 01, 2031]

    Retention Effort580

    [Personnel records restricted until July 01, 2041]

    Diversity568

    [Executive records restricted until July 01, 2031]

    Donor and Alumni Relations Tool (DART)568

    [Executive records restricted until July 01, 2031]

    Dual Career580

    [Personnel records restricted until July 01, 2041]

    Duderstadt CenterGeneral568

    [Executive records restricted until July 01, 2031]

    "A Master Plan for Higher Education in the Midwest"568

    [Executive records restricted until July 01, 2031]

    Emergency Planning568

    [Executive records restricted until July 01, 2031]

    Enrollment568

    [Executive records restricted until July 01, 2031]

    Erb Institute568

    [Executive records restricted until July 01, 2031]

    Executive Officers/VP Group (EO/VP Group)General9 foldersFolders 1-4568

    [Executive records restricted until July 01, 2031]

    Folders 5-9569

    [Executive records restricted until July 01, 2031]

    Faculty Matter580

    [Personnel records restricted until July 01, 2041]

    Executive Budget Committee (ExecBudgComm)569

    [Executive records restricted until July 01, 2031]

    FacultyGeneral569

    [Executive records restricted until July 01, 2031]

    Appointments580

    [Personnel records restricted until July 01, 2041]

    Grievances580

    [Personnel records restricted until July 01, 2041]

    Faculty Grievance Committee580

    [Personnel records restricted until July 01, 2041]

    Finance and Capital Projects569

    [Executive records restricted until July 01, 2031]

    Financial AidGeneral569

    [Executive records restricted until July 01, 2031]

    Students580

    [Student records restricted until July 01, 2051]

    Football Suite569

    [Executive records restricted until July 01, 2031]

    Freedom of Information Act (FOIA)569

    [Executive records restricted until July 01, 2031]

    Funding569

    [Executive records restricted until July 01, 2031]

    General CounselGeneral3 folders569

    [Executive records restricted until July 01, 2031]

    Cases580

    [Patient/client records restricted until July 01, 2111]

    Ginsberg Center569

    [Executive records restricted until July 01, 2031]

    Global Health Visioning Committee (GHVC)569

    [Executive records restricted until July 01, 2031]

    Government Relations2 folders569

    [Executive records restricted until July 01, 2031]

    Graduate Employees Organization (GEO)580

    [Patient/client records restricted until July 01, 2111]

    Graduate Student Research Assistants (GSRA)General569

    [Executive records restricted until July 01, 2031]

    General Counsel580

    [Patient/client records restricted until July 01, 2111]

    Graham Environmental Sustainability Institute (GESI)569

    [Executive records restricted until July 01, 2031]

    Great Lakes570

    [Executive records restricted until July 01, 2031]

    HathiTrust Agreements (see also General Counsel)570

    [Executive records restricted until July 01, 2031]

    Health Services570

    [Executive records restricted until July 01, 2031]

    Health System Committee570

    [Executive records restricted until July 01, 2031]

    Henry Russel570

    [Executive records restricted until July 01, 2031]

    Higher Education570

    [Executive records restricted until July 01, 2031]

    Honorary Degree570

    [Executive records restricted until July 01, 2031]

    Honors Program570

    [Executive records restricted until July 01, 2031]

    Hospitals and Health Centers Executive Board (HHCEB)570

    [Executive records restricted until July 01, 2031]

    Housing570

    [Executive records restricted until July 01, 2031]

    Human Resources and Affirmative Action (HRAA)570

    [Executive records restricted until July 01, 2031]

    Interdisciplinary Faculty Initiatives (IFI)General570

    [Executive records restricted until July 01, 2031]

    Appointments580

    [Personnel records restricted until July 01, 2041]

    Information Technology Committee (ITCOM)570

    [Executive records restricted until July 01, 2031]

    Information Technology Council (ITC)570

    [Executive records restricted until July 01, 2031]

    Information Technology Services (ITS)3 foldersFolders 1-2570

    [Executive records restricted until July 01, 2031]

    Folder 3571

    [Executive records restricted until July 01, 2031]

    Institute for Social Research (ISR)General571

    [Executive records restricted until July 01, 2031]

    Appointments580

    [Personnel records restricted until July 01, 2041]

    Institutional Equity571

    [Executive records restricted until July 01, 2031]

    International571

    [Executive records restricted until July 01, 2031]

    International Institute571

    [Executive records restricted until July 01, 2031]

    Invitations571

    [Executive records restricted until July 01, 2031]

    Knight Wallace571

    [Executive records restricted until July 01, 2031]

    Lecturers' Employee Organization (LEO)571

    [Executive records restricted until July 01, 2031]

    Martha Cook571

    [Executive records restricted until July 01, 2031]

    Media Relations571

    [Executive records restricted until July 01, 2031]

    Medical AffairsGeneral571

    [Executive records restricted until July 01, 2031]

    Appointments580

    [Personnel records restricted until July 01, 2041]

    Medical Center571

    [Executive records restricted until July 01, 2031]

    Mellon Foundation571

    [Executive records restricted until July 01, 2031]

    Mendez Committee571

    [Executive records restricted until July 01, 2031]

    Michigan Campus Compact571

    [Executive records restricted until July 01, 2031]

    Michigan Center for Theoretical Physics (MCTP)571

    [Executive records restricted until July 01, 2031]

    Michigan Daily Meetings571

    [Executive records restricted until July 01, 2031]

    Michigan Radio571

    [Executive records restricted until July 01, 2031]

    MPala571

    [Executive records restricted until July 01, 2031]

    MPortfolio571

    [Executive records restricted until July 01, 2031]

    Multicultural Affairs571

    [Executive records restricted until July 01, 2031]

    Museum of Art580

    [Personnel records restricted until July 01, 2041]

    National Science Foundation (NSF)571

    [Executive records restricted until July 01, 2031]

    New Leadership Alliance571

    [Executive records restricted until July 01, 2031]

    North Campus Research Complex (NCRC)2 folders571

    [Executive records restricted until July 01, 2031]

    North Quad571

    [Executive records restricted until July 01, 2031]

    Office of Academic Affairs (OAA) 6+1General3 folders571

    [Executive records restricted until July 01, 2031]

    Art and Design Dean Search580

    [Personnel records restricted until July 01, 2041]

    Officer Training Program571

    [Executive records restricted until July 01, 2031]

    OmbudsmanGeneral571

    [Executive records restricted until July 01, 2031]

    Appointments580

    [Personnel records restricted until July 01, 2041]

    Peace Corps571

    [Executive records restricted until July 01, 2031]

    Peer Institutions571

    [Executive records restricted until July 01, 2031]

    Personnel571

    [Executive records restricted until July 01, 2031]

    PresidentGeneral2 folders571

    [Executive records restricted until July 01, 2031]

    Appointments580

    [Personnel records restricted until July 01, 2041]

    Provost's Meeting Notes571

    [Executive records restricted until July 01, 2031]

    President's Africa Advisory Committee (PAAC)571

    [Executive records restricted until July 01, 2031]

    President's Advisory Commission on Women's Issues (PACWI)571

    [Executive records restricted until July 01, 2031]

    President's Advisory Group (PAG)571

    [Executive records restricted until July 01, 2031]

    Professoriate572

    [Executive records restricted until July 01, 2031]

    Promotions572

    [Executive records restricted until July 01, 2031]

    Provost's Advisory Committee on Internationalization (PACI)572

    [Executive records restricted until July 01, 2031]

    Provost's Campus Leadership Program (PCLP)572

    [Executive records restricted until July 01, 2031]

    Provost's Council on Student HonorsGeneral572

    [Executive records restricted until July 01, 2031]

    Students580

    [Student records restricted until July 01, 2096]

    Provost's Faculty Advisory Committee (PFAC)572

    [Executive records restricted until July 01, 2031]

    Provost's Faculty Initiative Program (PFIP)580

    [Personnel records restricted until July 01, 2041]

    Public Goods572

    [Executive records restricted until July 01, 2031]

    Recreational Sports572

    [Executive records restricted until July 01, 2031]

    RegentsGeneral572

    [Executive records restricted until July 01, 2031]

    Applicant Grievance580

    [Student records restricted until July 01, 2096]

    Communications2 folders572

    [Executive records restricted until July 01, 2031]

    Physics Department Grievance580

    [Patient/client records restricted until July 01, 2111]

    Registrar580

    [Student records restricted until July 01, 2096]

    Requests572

    [Executive records restricted until July 01, 2031]

    ResearchGeneral572

    [Executive records restricted until July 01, 2031]

    Appointments580

    [Personnel records restricted until July 01, 2041]

    Grievance580

    [Personnel records restricted until July 01, 2041]

    Reserve Officer Training Corp (ROTC)572

    [Executive records restricted until July 01, 2031]

    Resource Allocation Group (RAG)572

    [Executive records restricted until July 01, 2031]

    Retention572

    [Executive records restricted until July 01, 2031]

    Rhodes572

    [Executive records restricted until July 01, 2031]

    Roads Scholars572

    [Executive records restricted until July 01, 2031]

    Scholarships and Fellowships572

    [Executive records restricted until July 01, 2031]

    School for Deans572

    [Executive records restricted until July 01, 2031]

    Sea Grant572

    [Executive records restricted until July 01, 2031]

    Secretary of the University572

    [Executive records restricted until July 01, 2031]

    Senate Advisory Committee on University Affairs (SACUA)General2 folders572

    [Executive records restricted until July 01, 2031]

    Appointments580

    [Personnel records restricted until July 01, 2041]

    Senate Assembly572

    [Executive records restricted until July 01, 2031]

    Standard Practice Guide (SPG)572

    [Executive records restricted until July 01, 2031]

    StudentsGeneral572

    [Executive records restricted until July 01, 2031]

    Complaints580

    [Student records restricted until July 01, 2096]

    Deceased572

    [Executive records restricted until July 01, 2031]

    Student Affairs572

    [Executive records restricted until July 01, 2031]

    Student Budget Advisory Committee (SBAC)572

    [Executive records restricted until July 01, 2031]

    Study Abroad572

    [Executive records restricted until July 01, 2031]

    Substance Abuse Research Center580

    [Personnel records restricted until July 01, 2041]

    Surveys572

    [Executive records restricted until July 01, 2031]

    Sustainability2 folders572

    [Executive records restricted until July 01, 2031]

    Tuition and Fees572

    [Executive records restricted until July 01, 2031]

    United Way572

    [Executive records restricted until July 01, 2031]

    University LibrariesGeneral572

    [Executive records restricted until July 01, 2031]

    Appointments580

    [Personnel records restricted until July 01, 2041]

    Shapiro Master PlanGeneral572

    [Executive records restricted until July 01, 2031]

    Master Plan, (see Oversized Box 582)May 2007582

    [Executive records restricted until July 01, 2027]

    University Musical Society (UMS)573

    [Executive records restricted until July 01, 2031]

    Washtenaw Community College (WCC)573

    [Executive records restricted until July 01, 2031]

    Whitaker Foundation573

    [Executive records restricted until July 01, 2031]

    Women573

    [Executive records restricted until July 01, 2031]

    Woodrow Wilson National Fellowship Foundation573

    [Executive records restricted until July 01, 2031]

    Schools and Colleges FilesArchitecture and Urban Planning, College ofGeneral573

    [Executive records restricted until July 01, 2031]

    Appointments581

    [Personnel records restricted until July 01, 2041]

    Art and Design, School ofGeneral580

    [Executive records restricted until July 01, 2031]

    Appointments581

    [Personnel records restricted until July 01, 2041]

    Dean Search581

    [Personnel records restricted until July 01, 2041]

    Business, School ofGeneral573

    [Executive records restricted until July 01, 2031]

    Appointments581

    [Personnel records restricted until July 01, 2041]

    Students581

    [Personnel records restricted until July 01, 2041]

    Dearborn573

    [Executive records restricted until July 01, 2031]

    Dentistry, School ofGeneral573

    [Executive records restricted until July 01, 2031]

    Appointments581

    [Personnel records restricted until July 01, 2041]

    Education, School ofGeneral2 folders573

    [Executive records restricted until July 01, 2031]

    Appointments581

    [Personnel records restricted until July 01, 2041]

    Students581

    [Personnel records restricted until July 01, 2041]

    Engineering, College ofGeneral573

    [Executive records restricted until July 01, 2031]

    Appointments581

    [Personnel records restricted until July 01, 2041]

    Information, School of573

    [Executive records restricted until July 01, 2031]

    Kinesiology, School ofGeneral573

    [Executive records restricted until July 01, 2031]

    Appointments581

    [Personnel records restricted until July 01, 2041]

    Law SchoolGeneral573

    [Executive records restricted until July 01, 2031]

    Appointments581

    [Personnel records restricted until July 01, 2041]

    Life Sciences Institute (LSI)General573

    [Executive records restricted until July 01, 2031]

    Appointments581

    [Personnel records restricted until July 01, 2041]

    Literature, Science and the Arts, College of (LSA)General573

    [Executive records restricted until July 01, 2031]

    Appointments581

    [Personnel records restricted until July 01, 2041]

    Baruch, Sarah581

    [Student records restricted until July 01, 2096]

    Grievance581

    [Personnel records restricted until July 01, 2041]

    Students581

    [Student records restricted until July 01, 2096]

    Medical SchoolGeneral573

    [Executive records restricted until July 01, 2031]

    Appointments581

    [Personnel records restricted until July 01, 2041]

    Music, Theatre and Dance, School ofGeneral573

    [Executive records restricted until July 01, 2031]

    Appointments581

    [Personnel records restricted until July 01, 2041]

    Natural Resources, School of (SNRE)General573

    [Executive records restricted until July 01, 2031]

    Appointments581

    [Personnel records restricted until July 01, 2041]

    Dean Search581

    [Personnel records restricted until July 01, 2041]

    Nursing, School ofGeneral573

    [Executive records restricted until July 01, 2031]

    Appointments581

    [Personnel records restricted until July 01, 2041]

    Pharmacy, College ofGeneral573

    [Executive records restricted until July 01, 2031]

    Appointments581

    [Personnel records restricted until July 01, 2041]

    Public Health, School ofGeneral573

    [Executive records restricted until July 01, 2031]

    Appointments581

    [Personnel records restricted until July 01, 2041]

    Public Policy, School ofGeneral574

    [Executive records restricted until July 01, 2031]

    Appointments581

    [Personnel records restricted until July 01, 2041]

    Rackham Graduate School574

    [Executive records restricted until July 01, 2031]

    Social Work, School ofGeneral574

    [Executive records restricted until July 01, 2031]

    Appointments581

    [Personnel records restricted until July 01, 2041]

    Chronological Files22 foldersSeptember 2010-July 2011600

    [Personnel records restricted until July 1, 2041]

    2011/2012Alphabetical FilesAcademic AffairsGeneralAppointments and Annual Reviews581

    [Personnel records restricted until July 01, 2042]

    Provost's Meeting NotesBerens, Anne588

    [Executive records restricted until July 01, 2032]

    Gibbons, Karen588

    [Executive records restricted until July 01, 2032]

    Hughes, Philip (Athletics)2 folders581

    [Student records restricted until July 01, 2097]

    King, John588

    [Executive records restricted until July 01, 2032]

    Monts, Lester2 folders588

    [Executive records restricted until July 01, 2032]

    Pierce, Lori588

    [Executive records restricted until July 01, 2032]

    Pollack, Martha588

    [Executive records restricted until July 01, 2032]

    Saltiel, Alan588

    [Executive records restricted until July 01, 2032]

    Shaw, Catherine588

    [Executive records restricted until July 01, 2032]

    Tessler, Mark588

    [Executive records restricted until July 01, 2032]

    Whitman, Chris581

    [Personnel records restricted until July 01, 2042]

    Academic Affairs Advisory Committee (AAAC)588

    [Executive records restricted until July 01, 2032]

    Academic Governing Board (AGB)588

    [Executive records restricted until July 01, 2032]

    Academic Performance Committee (APC)588

    [Executive records restricted until July 01, 2032]

    Academic Program Group (APG)3 folders588

    [Executive records restricted until July 01, 2032]

    Academic Program Group Budget Subcommittee588

    [Executive records restricted until July 01, 2032]

    Academic Program Group Development Subcommittee588

    [Executive records restricted until July 01, 2032]

    Academic Program Group Operations Subcommittee589

    [Executive records restricted until July 01, 2032]

    Accreditation589

    [Executive records restricted until July 01, 2032]

    Administrative Services Transformation (AST)589

    [Executive records restricted until July 01, 2032]

    AdmissionsGeneral581

    [Executive records restricted until July 01, 2032]

    Director of Marketing and Communications Search

    [Personnel records restricted until July 01, 2042]

    Students581

    [Student records restricted until July 01, 2097]

    ADVANCEGeneral (including materials from Committee on Gender in Science and Engineering)2 folders589

    [Executive records restricted until July 01, 2032]

    Appointments581

    [Personnel records restricted until July 01, 2042]

    Affiliation Agreements9 folders589

    [Executive records restricted until July 01, 2032]

    Alumni589

    [Executive records restricted until July 01, 2032]

    Alumni Association589

    [Executive records restricted until July 01, 2032]

    American Academy of Arts and Sciences (AAAS)589

    [Executive records restricted until July 01, 2032]

    American Council on Education (ACE)589

    [Executive records restricted until July 01, 2032]

    Association of American Colleges and Universities (AACU)589

    [Executive records restricted until July 01, 2032]

    Association of American Universities (AAU)Association of Public and Land Grant Universities (APLU)589

    [Executive records restricted until July 01, 2032]

    Astronaut Scholarship Foundation (ASF)General589

    [Executive records restricted until July 01, 2032]

    Student Applications581

    [Student records restricted until July 01, 2097]

    ArtsEngine (formerly Arts on Earth)589

    [Executive records restricted until July 01, 2032]

    AthleticsGeneral589

    [Executive records restricted until July 01, 2032]

    Brandon, David589

    [Executive records restricted until July 01, 2032]

    Audits590

    [Executive records restricted until July 01, 2032]

    Audits ReportsGeneral2 folders590

    [Executive records restricted until July 01, 2032]

    University Safety and Security Communication, Reporting, and Incident Investigation581

    [Personnel records restricted until July 01, 2042]

    Awards590

    [Executive records restricted until July 01, 2032]

    Beckman Young Investigator Award590

    [Executive records restricted until July 01, 2032]

    Benefits590

    [Executive records restricted until July 01, 2032]

    Bentley Historical Library590

    [Executive records restricted until July 01, 2032]

    Botanical Gardens (External Review)590

    [Executive records restricted until July 01, 2032]

    Budget590

    [Executive records restricted until July 01, 2032]

    Budget and Planning590

    [Executive records restricted until July 01, 2032]

    Business and Finance590

    [Executive records restricted until July 01, 2032]

    Campaign Planning590

    [Executive records restricted until July 01, 2032]

    Campus Safety590

    [Executive records restricted until July 01, 2032]

    Capital Projects590

    [Executive records restricted until July 01, 2032]

    Carnegie Foundation590

    [Executive records restricted until July 01, 2032]

    Center for Research on Learning and Teaching (CRLT)590

    [Executive records restricted until July 01, 2032]

    Central Student Government (CSG-formerly Michigan Student Assembly (MSA))590

    [Executive records restricted until July 01, 2032]

    Chief Financial Officer's Office (CFO)General590

    [Executive records restricted until July 01, 2032]

    Patterson, Laura-Annual Review581

    [Personnel records restricted until July 01, 2042]

    Provost's Meeting Notes590

    [Executive records restricted until July 01, 2032]

    Student Issues581

    [Student records restricted until July 01, 2097]

    Clements Library590

    [Executive records restricted until July 01, 2032]

    Cognate Panel590

    [Executive records restricted until July 01, 2032]

    Commencement590

    [Executive records restricted until July 01, 2032]

    Committee on Institutional Cooperation (CIC)590

    [Executive records restricted until July 01, 2032]

    Community Service (includes review of Ginsberg Center)590

    [Executive records restricted until July 01, 2032]

    Conflict of Interest/Conflict of Commitment (COI/CIC)590

    [Executive records restricted until July 01, 2032]

    Consultants590

    [Executive records restricted until July 01, 2032]

    Convocation590

    [Executive records restricted until July 01, 2032]

    Copyrights590

    [Executive records restricted until July 01, 2032]

    Coursera590

    [Executive records restricted until July 01, 2032]

    Cultural Collections Council (formerly Public Goods)590

    [Executive records restricted until July 01, 2032]

    Depression Center590

    [Executive records restricted until July 01, 2032]

    Development6 folders591Folders 1-5591

    [Executive records restricted until July 01, 2032]

    Folder 6 (India)591

    [Executive records restricted until July 01, 2032]

    Diversity591

    [Executive records restricted until July 01, 2032]

    Donor and Alumni Relationship Tool (DART)591

    [Executive records restricted until July 01, 2032]

    DOW591

    [Executive records restricted until July 01, 2032]

    Duderstadt Center591

    [Executive records restricted until July 01, 2032]

    Economic Dinner Group591

    [Executive records restricted until July 01, 2032]

    Erb Institute591

    [Executive records restricted until July 01, 2032]

    Executive Officers (EOs)General6 folders591

    [Executive records restricted until July 01, 2032]

    Personnel Concerns581

    [Personnel records restricted until July 01, 2042]

    Environmental Sustainability Executive Council (ESEC)591

    [Executive records restricted until July 01, 2032]

    Executive Vice Presidents (EVP) Benefits591

    [Executive records restricted until July 01, 2032]

    Executive Vice President of Medical Affairs (EVPMA)591

    [Executive records restricted until July 01, 2032]

    Facilities591

    [Executive records restricted until July 01, 2032]

    Faculty581

    [Personnel records restricted until July 01, 2042]

    Faculty Ombuds591

    [Executive records restricted until July 01, 2032]

    Finance and Capital Projects591

    [Executive records restricted until July 01, 2032]

    Financial Aid592General592

    [Executive records restricted until July 01, 2032]

    Students582

    [Student records restricted until July 01, 2097]

    Fitness for Duty Committee592

    [Executive records restricted until July 01, 2032]

    Football Suite592

    [Executive records restricted until July 01, 2032]

    Foundation Strategy Group592

    [Executive records restricted until July 01, 2032]

    Freedom of Information Act (FOIA)592

    [Executive records restricted until July 01, 2032]

    Fulbright Association592

    [Executive records restricted until July 01, 2032]

    Gender in Science and Engineering592

    [Executive records restricted until July 01, 2032]

    General CounselGeneral592

    [Executive records restricted until July 01, 2032]

    Appointments581

    [Personnel records restricted until July 01, 2042]

    Cases581

    [Patient/client records restricted until July 01, 2112]

    Global Health (Center for)General592

    [Executive records restricted until July 01, 2032]

    Appointments581

    [Personnel records restricted until July 01, 2042]

    Visioning Committee (GHVC)592

    [Executive records restricted until July 01, 2032]

    Global Health Visioning Committee (GHVC)592

    [Executive records restricted until July 01, 2032]

    Google592

    [Executive records restricted until July 01, 2032]

    Government Relations592

    [Executive records restricted until July 01, 2032]

    Government: State592

    [Executive records restricted until July 01, 2032]

    Grand Valley State University (GVSU)592

    [Executive records restricted until July 01, 2032]

    Graduate Employees' Organization (GEO)592

    [Executive records restricted until July 01, 2032]

    Graduate Student Research Assistant (GSRA)General (GSRA/Graduate Student Instructor)592

    [Executive records restricted until July 01, 2032]

    Court Case9 folders592

    [Executive records restricted until July 01, 2032]

    Dibbern, Jennifer581

    [Student records restricted until July 01, 2097]

    Graham Environmental Sustainability InstituteGeneral592

    [Executive records restricted until July 01, 2032]

    Appointments/Annual Reviews581

    [Personnel records restricted until July 01, 2042]

    HathiTrust592

    [Executive records restricted until July 01, 2032]

    Health System592

    [Executive records restricted until July 01, 2032]

    Higher Learning Commission (HLC)593

    [Executive records restricted until July 01, 2032]

    Honorary Degree593

    [Executive records restricted until July 01, 2032]

    Hospitals and Health Centers Executive Board (HHCEB)593

    [Executive records restricted until July 01, 2032]

    HousingHuman Resources and Affirmative Action (includes CESF Annual Report)593

    [Executive records restricted until July 01, 2032]

    Information Technology Council (ITC)2 folders593

    [Executive records restricted until July 01, 2032]

    Information Technology Executive Committee (ITExecComm)593

    [Executive records restricted until July 01, 2032]

    Information Technology Services (ITS)General593

    [Executive records restricted until July 01, 2032]

    Annual Review581

    [Personnel records restricted until July 01, 2042]

    Institute for Research on Women and Gender (IRWG)581

    [Personnel records restricted until July 01, 2042]

    Institute for Social Research (ISR)General593

    [Executive records restricted until July 01, 2032]

    Appointments581

    [Personnel records restricted until July 01, 2042]

    Institutional Equity593

    [Executive records restricted until July 01, 2032]

    Interdisciplinary Committee on Organizational Studies (ICOS)593

    [Executive records restricted until July 01, 2032]

    Interdisciplinary Junior Faculty Initiative (IFI)581

    [Personnel records restricted until July 01, 2042]

    International2 folders593

    [Executive records restricted until July 01, 2032]

    International Institute593

    [Executive records restricted until July 01, 2032]

    Keck Foundation593

    [Executive records restricted until July 01, 2032]

    Knight Collaborative593

    [Executive records restricted until July 01, 2032]

    Knight Wallace593

    [Executive records restricted until July 01, 2032]

    Martin Luther King (MLK)593

    [Executive records restricted until July 01, 2032]

    MCubed593

    [Executive records restricted until July 01, 2032]

    Media Relations594

    [Executive records restricted until July 01, 2032]

    Medical AffairsAppointments and Reviews581

    [Personnel records restricted until July 01, 2042]

    Provost's Meeting Notes594

    [Executive records restricted until July 01, 2032]

    Mellon594

    [Executive records restricted until July 01, 2032]

    MHealthy594

    [Executive records restricted until July 01, 2032]

    Michigan Campus Compact (MCC)594

    [Executive records restricted until July 01, 2032]

    Michigan Daily Meeting594

    [Executive records restricted until July 01, 2032]

    Michigan State University594

    [Executive records restricted until July 01, 2032]

    Mott Children's and Women's Hospital594

    [Executive records restricted until July 01, 2032]

    MPalaGeneral594

    [Executive records restricted until July 01, 2032]

    Student Participants581

    [Student records restricted until July 01, 2097]

    Multidisciplinary Learning and Team Teaching (MLTT)594

    [Executive records restricted until July 01, 2032]

    Museum of Art594

    [Executive records restricted until July 01, 2032]

    National Science Foundation (NSF)594

    [Executive records restricted until July 01, 2032]

    North Campus594

    [Executive records restricted until July 01, 2032]

    North Campus Research Complex (NCRC)594

    [Executive records restricted until July 01, 2032]

    Officer Education Programs: Navy581

    [Personnel records restricted until July 01, 2042]

    Peer Institutions594

    [Executive records restricted until July 01, 2032]

    Pfizer594

    [Executive records restricted until July 01, 2032]

    Phi Kappa Phi594

    [Executive records restricted until July 01, 2032]

    PresidentGeneral2 folders594

    [Executive records restricted until July 01, 2032]

    Accreditations (Schools and Colleges)581

    [Executive records restricted until July 01, 2032]

    Appointments594

    [Personnel records restricted until July 01, 2042]

    Center for Ethics in Public Life594

    [Executive records restricted until July 01, 2032]

    Provost Meeting Notes594

    [Executive records restricted until July 01, 2032]

    Students581

    [Student records restricted until July 01, 2097]

    President's Advisory Group (PAG)594

    [Executive records restricted until July 01, 2032]

    President's Council (PC): State594

    [Executive records restricted until July 01, 2032]

    Provost's Advisory Committee on Internationalization (PACI)594

    [Executive records restricted until July 01, 2032]

    Provost Advisory Council on Women's Initiatives (PACWI)594

    [Executive records restricted until July 01, 2032]

    Provost's Campus Leadership Program (PCLP)594

    [Executive records restricted until July 01, 2032]

    Provost Faculty Advisory Committee (PFAC)594

    [Executive records restricted until July 01, 2032]

    Provost Faculty Initiative Program (PFIP)581

    [Personnel records restricted until July 01, 2042]

    Provost's Faculty Dinner595

    [Executive records restricted until July 01, 2032]

    Provost's Foundation Strategy Group (PFSG)595

    [Executive records restricted until July 01, 2032]

    Provost's Seminar on Teaching (PSOT)595

    [Executive records restricted until July 01, 2032]

    RegentsGeneral595

    [Executive records restricted until July 01, 2032]

    Communications, AppointmentsA-H595

    [Executive records restricted until July 01, 2032]

    I-R595

    [Executive records restricted until July 01, 2032]

    S-Z595

    [Executive records restricted until July 01, 2032]

    Communications, Non-Appointment595

    [Executive records restricted until July 01, 2032]

    Registrar595

    [Executive records restricted until July 01, 2032]

    ResearchGeneral2 folders595

    [Executive records restricted until July 01, 2032]

    Appointments599

    [Personnel records restricted until July 01, 2042]

    Residency599

    [Student records restricted until July 01, 2097]

    Residential College595

    [Executive records restricted until July 01, 2032]

    Retention599

    [Personnel records restricted until July 01, 2042]

    Rhodes595

    [Executive records restricted until July 01, 2032]

    Roads Scholars595

    [Executive records restricted until July 01, 2032]

    Salary (includes Gender Salary Study update)595

    [Executive records restricted until July 01, 2032]

    Scholarships and Fellowships595

    [Executive records restricted until July 01, 2032]

    School for Deans595

    [Executive records restricted until July 01, 2032]

    Science, Technology, Engineering, and Math (STEM)595

    [Executive records restricted until July 01, 2032]

    Scientific Club595

    [Executive records restricted until July 01, 2032]

    Secretary of the University595

    [Executive records restricted until July 01, 2032]

    Senate Advisory Committee on University Affairs (SACUA)595

    [Executive records restricted until July 01, 2032]

    Sexual Orientation: LGBT595

    [Executive records restricted until July 01, 2032]

    Shipman Society595

    [Executive records restricted until July 01, 2032]

    SMORES (formerly Resource Allocation Group, or RAG)595

    [Executive records restricted until July 01, 2032]

    Standard Practice Guide (SPG)595

    [Executive records restricted until July 01, 2032]

    Steelcase595

    [Executive records restricted until July 01, 2032]

    Strategic Planning595

    [Executive records restricted until July 01, 2032]

    StudentsGeneral595

    [Executive records restricted until July 01, 2032]

    Deceased595

    [Executive records restricted until July 01, 2032]

    Student AffairsGeneral595

    [Executive records restricted until July 01, 2032]

    Provost Meeting Notes595

    [Executive records restricted until July 01, 2032]

    Student Budget Advisory Committee (SBAC)595

    [Executive records restricted until July 01, 2032]

    Surveys596

    [Executive records restricted until July 01, 2032]

    Sustainable Systems596

    [Executive records restricted until July 01, 2032]

    Taubman Governing Council (Medical School)596

    [Executive records restricted until July 01, 2032]

    Third Century Initiative596

    [Executive records restricted until July 01, 2032]

    Treasurer's Office596

    [Executive records restricted until July 01, 2032]

    Tuition596

    [Executive records restricted until July 01, 2032]

    Unions596

    [Executive records restricted until July 01, 2032]

    United Way596

    [Executive records restricted until July 01, 2032]

    University LibraryGeneral596

    [Executive records restricted until July 01, 2032]

    Appointments599

    [Personnel records restricted until July 01, 2042]

    University Musical Society (UMS)596

    [Executive records restricted until July 01, 2032]

    Washtenaw Community College596

    [Executive records restricted until July 01, 2032]

    Schools and CollegesArchitecture and Urban Planning, College ofGeneral596

    [Executive records restricted until July 01, 2032]

    Appointments599

    [Personnel records restricted until July 01, 2042]

    Provost's Meeting Notes596

    [Executive records restricted until July 01, 2032]

    Art and Design, School ofGeneral596

    [Executive records restricted until July 01, 2032]

    Appointments599

    [Personnel records restricted until July 01, 2042]

    Provost's Meeting Notes596

    [Executive records restricted until July 01, 2032]

    Students599

    [Student records restricted until July 01, 2097]

    Business SchoolGeneral596

    [Executive records restricted until July 01, 2032]

    Appointments599

    [Personnel records restricted until July 01, 2042]

    Provost's Meeting Notes596

    [Executive records restricted until July 01, 2032]

    Dearborn596

    [Executive records restricted until July 01, 2032]

    Dentistry, School ofGeneral (includes Accreditation documents)596

    [Executive records restricted until July 01, 2032]

    Appointments599

    [Personnel records restricted until July 01, 2042]

    Provost's Meeting Notes596

    [Executive records restricted until July 01, 2032]

    Students590

    [Student records restricted until July 01, 2097]

    Education, School ofGeneral (includes Facility Master Plan)596

    [Executive records restricted until July 01, 2032]

    Appointments599

    [Personnel records restricted until July 01, 2042]

    Provost's Meeting Notes596

    [Executive records restricted until July 01, 2032]

    Engineering, College ofGeneral2 folders596

    [Executive records restricted until July 01, 2032]

    Appointments599

    [Personnel records restricted until July 01, 2042]

    Provost's Meeting Notes596

    [Executive records restricted until July 01, 2032]

    Students599

    [Student records restricted until July 01, 2097]

    Flint596

    [Executive records restricted until July 01, 2032]

    Information, School ofGeneral (includes Accreditation documents)596

    [Executive records restricted until July 01, 2032]

    Appointments599

    [Personnel records restricted until July 01, 2042]

    Provost's Meeting Notes596

    [Executive records restricted until July 01, 2032]

    Kinesiology, School ofGeneral596

    [Executive records restricted until July 01, 2032]

    Appointments599

    [Personnel records restricted until July 01, 2042]

    Provost's Meeting Notes596

    [Executive records restricted until July 01, 2032]

    Students599

    [Student records restricted until July 01, 2097]

    Law SchoolGeneral (includes Accreditation documents)596

    [Executive records restricted until July 01, 2032]

    Appointments599

    [Personnel records restricted until July 01, 2042]

    Provost's Meeting Notes596

    [Executive records restricted until July 01, 2032]

    Life Sciences Initiative (LSI)General (includes Accreditation documents)596

    [Executive records restricted until July 01, 2032]

    Appointments599

    [Personnel records restricted until July 01, 2042]

    Literature, Science, and the Arts, College of (LSA)General2 folders596

    [Executive records restricted until July 01, 2032]

    Appointments599

    [Personnel records restricted until July 01, 2042]

    Provost's Meeting Notes597

    [Executive records restricted until July 01, 2032]

    Students599

    [Student records restricted until July 01, 2097]

    Medical SchoolGeneral (includes reaccreditation)2 folders597

    [Executive records restricted until July 01, 2032]

    Appointments599

    [Personnel records restricted until July 01, 2042]

    Medical School Master's Degree597

    [Executive records restricted until July 01, 2032]

    Provost's Meeting Notes597

    [Executive records restricted until July 01, 2032]

    Music, Theatre, and Dance, School ofGeneral597

    [Executive records restricted until July 01, 2032]

    Accreditation3 folders597

    [Executive records restricted until July 01, 2032]

    Appointments599

    [Personnel records restricted until July 01, 2042]

    Provost's Meeting Notes597

    [Executive records restricted until July 01, 2032]

    Natural Resources and Environment, School ofGeneral597

    [Executive records restricted until July 01, 2032]

    Appointments599

    [Personnel records restricted until July 01, 2042]

    Provost's Meeting Notes597

    [Executive records restricted until July 01, 2032]

    Nursing, School ofGeneral597

    [Executive records restricted until July 01, 2032]

    Accreditation2 folders597

    [Executive records restricted until July 01, 2032]

    Appointments599

    [Personnel records restricted until July 01, 2042]

    Provost's Meeting Notes597

    [Executive records restricted until July 01, 2032]

    Pharmacy, College ofGeneral597

    [Executive records restricted until July 01, 2032]

    Accreditation includes CD597

    [Executive records restricted until July 01, 2032]

    Appointments599

    [Personnel records restricted until July 01, 2042]

    Provost's Meeting Notes597

    [Executive records restricted until July 01, 2032]

    Public Health, School ofGeneral597

    [Executive records restricted until July 01, 2032]

    Accreditation2 folders597

    [Executive records restricted until July 01, 2032]

    Accreditation-Dietetic Internship598

    [Executive records restricted until July 01, 2032]

    Appointments599

    [Personnel records restricted until July 01, 2042]

    Provost's Meeting Notes598

    [Executive records restricted until July 01, 2032]

    Public Policy, School ofGeneral598

    [Executive records restricted until July 01, 2032]

    Appointments599

    [Personnel records restricted until July 01, 2042]

    Provost's Meeting Notes598

    [Executive records restricted until July 01, 2032]

    Rackham Graduate SchoolGeneral598

    [Executive records restricted until July 01, 2032]

    Appointments599

    [Personnel records restricted until July 01, 2042]

    Provost's Meeting Notes598

    [Executive records restricted until July 01, 2032]

    Review Letters598

    [Executive records restricted until July 01, 2032]

    Social Work, School ofGeneral (includes Strategic Assessment)2 folders598

    [Executive records restricted until July 01, 2032]

    Appointments599

    [Personnel records restricted until July 01, 2042]

    Provost's Meeting Notes598

    [Executive records restricted until July 01, 2032]

    Chronological FIles10 foldersAugust -December 2011601

    [Personnel records restricted until July 1, 2042]

    2012/2013Alphabetical FilesAcademic Affairs Advisory Committee602

    [Executive records restricted until July 01, 2033]

    Academic Affairs, Office of (OAA 6+1)3 folders602

    [Executive records restricted until July 01, 2033]

    Academic Multicultural Initiatives, Office of (OAMI)602

    [Executive records restricted until July 01, 2033]

    Academic Program Group (APG)3 folders602

    [Executive records restricted until July 01, 2033]

    Academic Program Group: Budget Subcommittee602

    [Executive records restricted until July 01, 2033]

    Academic Program Group: Development Subcommittee602

    [Executive records restricted until July 01, 2033]

    Academic Program Group: Operations Subcommittee602

    [Executive records restricted until July 01, 2033]

    Accreditation602

    [Executive records restricted until July 01, 2033]

    Administrative Services Transformation (AST)602

    [Executive records restricted until July 01, 2033]

    Admissions, Office of602

    [Executive records restricted until July 01, 2033]

    Advance602

    [Executive records restricted until July 01, 2033]

    Affiliation Agreements (5 of 11)5 folders602

    [Executive records restricted until July 01, 2033]

    Affiliation Agreements (6 of 11)6 folders603

    [Executive records restricted until July 01, 2033]

    Alumni Association603

    [Executive records restricted until July 01, 2033]

    ArtsEngine603

    [Executive records restricted until July 01, 2033]

    Association of American Universities (AAU)603

    [Executive records restricted until July 01, 2033]

    Association of Public and Land Grant Universities (APLU)603

    [Executive records restricted until July 01, 2033]

    Astronaut Scholarship Foundation603

    [Executive records restricted until July 01, 2033]

    Athletics603

    [Executive records restricted until July 01, 2033]

    Audits603

    [Executive records restricted until July 01, 2033]

    Audits Reports2 folders603

    [Executive records restricted until July 01, 2033]

    Awards: General603

    [Executive records restricted until July 01, 2033]

    Beckman Young Investigator Award603

    [Executive records restricted until July 01, 2033]

    Benefits603

    [Executive records restricted until July 01, 2033]

    Bentley Library603

    [Executive records restricted until July 01, 2033]

    Botanical Gardens603

    [Executive records restricted until July 01, 2033]

    Budget and Planning, Office of (OBP)603

    [Executive records restricted until July 01, 2033]

    Budget: General603

    [Executive records restricted until July 01, 2033]

    Campus Safety603

    [Executive records restricted until July 01, 2033]

    Capital Projects603

    [Executive records restricted until July 01, 2033]

    Carnegie Foundation603

    [Executive records restricted until July 01, 2033]

    Center for Healthcare Research & Transformation (CHRT)603

    [Executive records restricted until July 01, 2033]

    Center for Research on Learning and Teaching (CRLT)2 folders603

    [Executive records restricted until July 01, 2033]

    Center for the Education of Women (CEW)603

    [Executive records restricted until July 01, 2033]

    Central Student Government (CSG)603

    [Executive records restricted until July 01, 2033]

    Chief Financial Officer, Office of (CFO)604

    [Executive records restricted until July 01, 2033]

    Clements Library604

    [Executive records restricted until July 01, 2033]

    Committee on Institutional Cooperation (CIC)3 folders604

    [Executive records restricted until July 01, 2033]

    Community Service604

    [Executive records restricted until July 01, 2033]

    Conflict604

    [Executive records restricted until July 01, 2033]

    Consultants5 folders604

    [Executive records restricted until July 01, 2033]

    Convocation604

    [Executive records restricted until July 01, 2033]

    Coursera604

    [Executive records restricted until July 01, 2033]

    Cultural Collections Council604

    [Executive records restricted until July 01, 2033]

    Depression Center604

    [Executive records restricted until July 01, 2033]

    Development3 folders604

    [Executive records restricted until July 01, 2033]

    Diversity604

    [Executive records restricted until July 01, 2033]

    DOW Chemical Corporation (DOW)604

    [Executive records restricted until July 01, 2033]

    Dual Careers601

    [Personnel records restricted until July 01, 2043]

    Duderstadt Center604

    [Executive records restricted until July 01, 2033]

    Economic Dinner Group604

    [Executive records restricted until July 01, 2033]

    Emergency Planning604

    [Executive records restricted until July 01, 2033]

    Environmental Sustainability Executive Council (ESEC)604

    [Executive records restricted until July 01, 2033]

    Erb Institute604

    [Executive records restricted until July 01, 2033]

    Executive Budget Advisory Committee604

    [Executive records restricted until July 01, 2033]

    Executive Officers/Vice Presidential Group (EOVPG) (2 of 5)2 folders604

    [Executive records restricted until July 01, 2033]

    Executive Officers/Vice Presidential Group (EOVPG) (3 of 5)3 folders605

    [Executive records restricted until July 01, 2033]

    Executive Vice President Benefits2 folders605

    [Executive records restricted until July 01, 2033]

    Executive Vice President for Medical Affairs (EVPMA)605

    [Executive records restricted until July 01, 2033]

    Faculty605

    [Executive records restricted until July 01, 2033]

    Faculty Ombuds605

    [Executive records restricted until July 01, 2033]

    Finance & Capital Projects605

    [Executive records restricted until July 01, 2033]

    Financial Aid, Office of605

    [Executive records restricted until July 01, 2033]

    Fitness for Duty Committee605

    [Executive records restricted until July 01, 2033]

    Football Suite605

    [Executive records restricted until July 01, 2033]

    Foundation Strategy Group605

    [Executive records restricted until July 01, 2033]

    Freedom of Information Act, Office of (FOIA)605

    [Executive records restricted until July 01, 2033]

    General Counsel605

    [Executive records restricted until July 01, 2033]

    Global Health Visioning Committee605

    [Executive records restricted until July 01, 2033]

    Google605

    [Executive records restricted until July 01, 2033]

    Government Relations605

    [Executive records restricted until July 01, 2033]

    Government: State605

    [Executive records restricted until July 01, 2033]

    Graduate Employees Organization (GEO)601

    [Patient/client records restricted until July 01, 2113]

    Graduate Student Research Assistant/Graduate Student Instructor (GSRA/GSI)605

    [Executive records restricted until July 01, 2033]

    Graham Environmental Sustainability Institute605

    [Executive records restricted until July 01, 2033]

    Grand Valley State University (GVSU)605

    [Executive records restricted until July 01, 2033]

    Hathitrust Agreements605

    [Executive records restricted until July 01, 2033]

    Health Service605

    [Executive records restricted until July 01, 2033]

    Hospitals and Health Centers Executive Board (HHCEB) (2 of 6)2 folders605

    [Executive records restricted until July 01, 2033]

    Hospitals and Health Centers Executive Board (HHCEB) (4 of 6)4 folders606

    [Executive records restricted until July 01, 2033]

    Hospitals and Health Centers Executive Board: Finance606

    [Executive records restricted until July 01, 2033]

    Information and Technology: Council606

    [Executive records restricted until July 01, 2033]

    Information and Technology Services (ITS)606

    [Executive records restricted until July 01, 2033]

    Institute for Research on Women & Gender (IRWG)606

    [Executive records restricted until July 01, 2033]

    Interdisciplinary Faculty Initiative606

    [Executive records restricted until July 01, 2033]

    International606

    [Executive records restricted until July 01, 2033]

    International: MPala606

    [Executive records restricted until July 01, 2033]

    Invitations4 folders606

    [Executive records restricted until July 01, 2033]

    Keck Foundation606

    [Executive records restricted until July 01, 2033]

    Knight Wallace606

    [Executive records restricted until July 01, 2033]

    Lecturer Employee Organization (LEO)606

    [Executive records restricted until July 01, 2033]

    Martin Luther King (MLK)606

    [Executive records restricted until July 01, 2033]

    MCubed606

    [Executive records restricted until July 01, 2033]

    Media Relations606

    [Executive records restricted until July 01, 2033]

    Mellon Foundation606

    [Executive records restricted until July 01, 2033]

    MHealthy607

    [Executive records restricted until July 01, 2033]

    Michigan Campus Compact (MCC)607

    [Executive records restricted until July 01, 2033]

    Michigan Daily Meetings607

    [Executive records restricted until July 01, 2033]

    Museum of Art2 folders601

    [Personnel records restricted until July 01, 2043]

    Musical Society607

    [Executive records restricted until July 01, 2033]

    National Institute for Learning Outcomes Assessment (NILOA)607

    [Executive records restricted until July 01, 2033]

    New Student Programs, Office of (ONSP)607

    [Executive records restricted until July 01, 2033]

    North Campus Research Complex (NCRC)607

    [Executive records restricted until July 01, 2033]

    Peer Institutions607

    [Executive records restricted until July 01, 2033]

    Phi Kappa Phi607

    [Executive records restricted until July 01, 2033]

    President, Office of the3 folders607

    [Executive records restricted until July 01, 2033]

    President's Council: State607

    [Executive records restricted until July 01, 2033]

    President's Advisory Group607

    [Executive records restricted until July 01, 2033]

    Promotions607

    [Executive records restricted until July 01, 2033]

    Provost's Advisory Committee on Budgetary Affairs (PACBA)607

    [Executive records restricted until July 01, 2033]

    Provost's Advisory Committee on Faculty Mentoring607

    [Executive records restricted until July 01, 2033]

    Provost's Advisory Committee on Internationalization (PACI)3 folders607

    [Executive records restricted until July 01, 2033]

    Provost's Advisory Council on Women's Initiatives (PACWI)607

    [Executive records restricted until July 01, 2033]

    Provost's Council on Student Honors (PCSH)607

    [Executive records restricted until July 01, 2033]

    Provost's Faculty Advisory Committee (PFAC)2 folders607

    [Executive records restricted until July 01, 2033]

    Provost's Faculty Dinner607

    [Executive records restricted until July 01, 2033]

    Provost's Faculty Initiative Program (PFIP)601

    [Personnel records restricted until July 01, 2043]

    Provost's Foundation Strategy Group608

    [Executive records restricted until July 01, 2033]

    Provost's Meeting Notes2010608

    [Executive records restricted until July 01, 2030]

    Provost's Meeting Notes2011608

    [Executive records restricted until July 01, 2031]

    Rec Sports608

    [Executive records restricted until July 01, 2033]

    Regents: General608

    [Executive records restricted until July 01, 2033]

    Regents: Communications4 folders601

    [Executive records restricted until July 01, 2033]

    Registrar, Office of the601

    [Student records restricted until July 01, 2098]

    Research, Office of (UMOR)608

    [Executive records restricted until July 01, 2033]

    Reserve Officers Training Corps (ROTC) (Air Force, Army, Navy)608

    [Executive records restricted until July 01, 2033]

    Retention608

    [Executive records restricted until July 01, 2033]

    Rhodes Scholars608

    [Executive records restricted until July 01, 2033]

    Salary608

    [Executive records restricted until July 01, 2033]

    Scholarships & Fellowships608

    [Executive records restricted until July 01, 2033]

    Secretary of the University608

    [Executive records restricted until July 01, 2033]

    Senate Advisory Committee on University Affairs (SACUA)608

    [Executive records restricted until July 01, 2033]

    Senate Assembly608

    [Executive records restricted until July 01, 2033]

    Shared Services608

    [Executive records restricted until July 01, 2033]

    Shipman Society608

    [Executive records restricted until July 01, 2033]

    Standard Practice Guide (SPG)608

    [Executive records restricted until July 01, 2033]

    Student Life, Office of608

    [Executive records restricted until July 01, 2033]

    Student Budget Advisory Committee608

    [Executive records restricted until July 01, 2033]

    Students: General608

    [Executive records restricted until July 01, 2033]

    Students: Complaints601

    [Student records restricted until July 01, 2098]

    Surveys608

    [Executive records restricted until July 01, 2033]

    Sustainable Systems608

    [Executive records restricted until July 01, 2033]

    Taubman Governing Council (Med)608

    [Executive records restricted until July 01, 2033]

    Teach for America608

    [Executive records restricted until July 01, 2033]

    Third Century Initiative608

    [Executive records restricted until July 01, 2033]

    Tuition & Fees608

    [Executive records restricted until July 01, 2033]

    Undocumented Students608

    [Executive records restricted until July 01, 2033]

    United Way608

    [Executive records restricted until July 01, 2033]

    University Library608

    [Executive records restricted until July 01, 2033]

    University of Michigan Health System608

    [Executive records restricted until July 01, 2033]

    WitsOn!608

    [Executive records restricted until July 01, 2033]

    Schools and Colleges FilesArchitecture & Urban Planning609

    [Executive records restricted until July 01, 2033]

    Art & Design609

    [Executive records restricted until July 01, 2033]

    Business609

    [Executive records restricted until July 01, 2033]

    Dentistry609

    [Executive records restricted until July 01, 2033]

    Education609

    [Executive records restricted until July 01, 2033]

    Engineering2 folders609

    [Executive records restricted until July 01, 2033]

    Information609

    [Executive records restricted until July 01, 2033]

    Institute for Social Research (ISR)609

    [Executive records restricted until July 01, 2033]

    Kinesiology609

    [Executive records restricted until July 01, 2033]

    Law609

    [Executive records restricted until July 01, 2033]

    Literature, Science, and the Arts (LSA), College of4 folders609

    [Executive records restricted until July 01, 2033]

    Life Sciences Institute (LSI)609

    [Executive records restricted until July 01, 2033]

    Medicine4 folders609

    [Executive records restricted until July 01, 2033]

    Music609

    [Executive records restricted until July 01, 2033]

    Natural Resources & Environment610

    [Executive records restricted until July 01, 2033]

    Nursing610

    [Executive records restricted until July 01, 2033]

    Pharmacy2 folders610

    [Executive records restricted until July 01, 2033]

    Provost's Meeting Notes2011610

    [Executive records restricted until July 01, 2031]

    Public Health610

    [Executive records restricted until July 01, 2033]

    Public Policy610

    [Executive records restricted until July 01, 2033]

    Rackham610

    [Executive records restricted until July 01, 2033]

    Rackham: Budget2 folders610

    [Executive records restricted until July 01, 2033]

    School of Music, Theatre, and Dance: Accreditation2 folders610

    [Executive records restricted until July 01, 2033]

    School of Social Work610

    [Executive records restricted until July 01, 2033]

    VPAA Central FilesArchived VPAA Website

    The 2010 series features the addition of the Archived Website subseries, which was created to preserve the office's public website over time. This subseries documents the mission, activities, policies, and individuals involved in the operation of the Office of the Provost and Executive Vice President for Academic Affairs as they are presented on its public website. Content includes important news and announcements, publications (such as reports and administrative documents), and information about committees, initiatives, and events. This archived website will be captured on a regular, ongoing basis as part of the University of Michigan Web Archives, hosted at https://archive-it.org/organizations/934.

    Archived Provost and Executive Vice President for Academic Affairs home page2010-June 27, 2017

    [view web site]

    Online
    Archived websited related to the Administration of the University of Michigan2010-[ongoing]

    [view web site]

    Online
    +
    +
    diff --git a/sample-ead/clarke/AladdinCompany.xml b/sample-ead/clarke/AladdinCompany.xml new file mode 100644 index 0000000..6ed5dcf --- /dev/null +++ b/sample-ead/clarke/AladdinCompany.xml @@ -0,0 +1,25296 @@ + + + + + ehll--aladdin + + + Aladdin Company Records Collection 1907-1989 (bulk 1940-1982) + Woodward D. Openo, with subsequent editorial work and processing by Marian Matyn, Jimmie Gordon, Frank Boles and numerous student assistants. Substantial finding aid revision and additional description carried out in 2010 by Dana Fey + + + Clarke Historical Library + 1999-2010 + + + + Encoded finding aid created by Dana Fey,2010 + + The finding aid is written in English + + + + + + Clarke Historical LibraryCentral Michigan University + Finding aid forAladdin Company Records Collection + Finding aid created by +Woodward D. Openo, with subsequent editorial work and processing by Marian Matyn, Jimmie Gordon, Frank Boles and numerous student assistants. Substantial finding aid revision and additional description carried out in 2010 by Dana Fey + + + + + + Aladdin Company. + + +Aladdin Company Records Collection + +1907-1989 (bulk 1940-1982) + + + approximately 350 cubic feet in 259 containers + + +MSS. + + The material is in English + + +The collection documents the activities of the Aladdin Company and its founding family, the Sovereigns, from 1907 until 1989. The Aladdin Company was a manufacturer of catalog "kit homes" in Bay City, MI second in sales volume only to Sears Roebuck & Company. The collection includes company records, sales records (including building projects as part of WWI and WWII war efforts), Aladdin Company advertising materials, order and construction information, and personal records of various members of the Sovereign family - including the court records of the William Sovereign v. Mary Sovereign divorce case. + + + Clarke Historical Library, Central Michigan University + + + + + +

    No Acc#

    +
    + +

    Aladdin Company Collection is open for research.

    +
    + +

    Copyright is unknown.

    +
    + +

    Aladdin Company Records, 1907-1989 (bulk 1940-1982), Folder #, Box #, Clarke Historical Library, Central Michigan University

    +
    +
    + +

    The Aladdin Company was founded as the North American Construction Company in 1906 by two brothers, William J. Sovereign and Otto E. Sovereign. William was a lawyer while Otto was an advertising man. The company was one of the earliest and longest-lived manufacturers of catalog (“Readi-cut”) houses. Although second in sales volume to the better-known Sears Roebuck & Company “kit homes,” Aladdin (as it became officially known in 1916) entered the business before Sears and remained in it some forty years after the last Sears home was sold.

    +

    Aladdin’s primary product was single family dwellings. The firm, however, also sold other products. As early as 1914 and as late as the 1960’s the firm sold house furnishings through prepared catalogs. An Aladdin trailer was introduced in 1934 and an expandable “Pullman Home” (a sort of modular house) in 1937. Neither the trailer or the modular home, however, were long lived. Throughout its history the firm was also involved in real estate speculation, usually involving relatively small parcels of land in the Bay City area. However, in the 1920’s, the company built Aladdin City, a planned community in Florida. Aladdin City, however, became a victim of the depression-era slump in Florida’s economy.

    +

    Despite these efforts to diversity, Aladdin remained primarily a seller of homes. Thus the firm’s fortunes were closely tied to that of the housing industry and followed the trends of the national economy. It prospered during both world wars by supplying military camp buildings to the U.S. government and workers’ housing to key industries. The company was particularly proud of filling and order for 200 houses from the Austin Motor Company of Birmingham, England in 1917. Sales boomed after World War I and during the prosperous 1920s but slumped dramatically during the Depression. After World War II the firm resumed production of civilian homes in 1947 and during the post-war years Aladdin again experienced robust sales. Operating losses for 1958, 1959 and 1960, however, made it evident that a changing housing market demanded new approaches by Aladdin. The problem report completed in 1961 attempted to identify problems and solutions. The “Build-It-Yourself” (B-I-Y) System introduced in 1962 promoted “the best features of Readi-cut and Pre-fab construction” (an aim enunciated by William F. Sovereign in the stockholders’ meeting of December 15, 1961.)

    +

    Despite tentative changes such as more preassembled, prenailed components, business continued to decline. In the 1970’s the company was unable to meet the challenge of ‘stagflation’ (inflation combined with a stagnating economy) late in that decade. As a result the firm ceased production in 1982.

    +

    Aladdin was always a family-owned company based in Bay City, Michigan. At various times, it also operated mills in Portland, Oregon; Hattiesburg, Mississippi; and Wilmington, North Carolina. The company enjoyed remarkable continuity of management; the founders remained in control until mid-century, Otto (Vice President, Treasurer and General Manager) died in 1954 and William J. (President) in 1968. William’s son, William F. Sovereign became president following his father’s death on June 5 1968, although he had been the defacto executive officer for some time. He continued to serve as president until the firm closed its doors.

    +
    + +

    The collection, approximately 350 cubic feet +in 259 containers, is organized into eleven series. Some series are organized into sub-series as appropriate.

    +
    + +

    The Aladdin Company records, approximately 350 cubic feet, were discovered in a very disorganized state in 1994. Found in an abandoned Bay City warehouse, virtually the entire collection suffered from mold and mildew infestations, and in some cases water and mold had damaged items beyond repair. Only the films, architectural drawings and plans had remained largely intact and in their original filing order. Most of the company’s other records had become disorganized. A few records were found in file cabinets while others were in rolling vaults, the combinations for which had been lost. Boxes of material lay scattered in various locations, and much paper simply had come to rest on the floor.

    +

    Because of the condition the records were found in, most of the collection’s order has been imposed upon the records. Most, but not all, of the collection has also been fumigated. The collection is generally organized according to record type or major functions within the company. In addition, some miscellaneous groups of material have been placed at the end of the collection.

    +

    The collection is organized into eleven series: Corporate, Financial, Advertising, Order Department, Construction, Shipping Bills, Suppliers Transit & Mill Sites, Sovereign Family, Photographs and Films, Books and Magazines, and Miscellaneous.

    +

    The collection includes incorporation papers, directors’ meeting minutes, contracts, stock records and other basic corporate information, office manuals and procedures, studies, financial statements, appraisals, inventories, payroll, catalogs, advertising material, publications, art work, floor and construction plans, orders, billing lists, invoices, mailing lists, price bills, real estate records, personal records of the Sovereign family (including court records), photographs, films, magazines, and books.

    +
    + +

    + +

    + + Subjects: +Aladdin Company. +Prefabricated houses--Catalogs. +Architecture, Domestic--Designs and plans Catalogs. + +
    + + + + Aladdin Company Collection - Series #1, Corporate Records (Corporate and Administrative Records, 1909-1987) + + + + 1 + 333 + Records, Incorporation Records,1909-1977 + + + + + + 1 + 334 + Records, Secretary’s Record Book (Board of Director and Stockholder meetings),1909-1916 + + + + + + 1 + 335 + Records, Secretary Records (Board of Director and Stockholder meetings),1917-1939 + + + + + + + 1 + 336 + Records, Secretary Records (Board of Director and Stockholder meetings), model house at 1401 Dean Street, Bay City (Hollywood 3),and property at 15 West Sharlear Street, Essexville,1940-1964 + + + + + + 1 + 337 + Records, Stock, Summary of stock holders,1917-1975 + + + + + + 1 + 338 + Records, Stock, Decreases in,1939,1966 + + + + + + 1 + 339 + Records, Stock Books (2 books and some blank shares),1916-1975 + + + + + + 1 + 340 + Records, Agreements between O.E. Sovereign, W.J. Sovereign and the Aladdin Co. re. compensation and stock ownership,1915-1929 + + + + + + 1 + 341 + Records, Michigan Corporation annual reports and “Notice of Delinquency”,1950-1985, 1987 + + + + + + 1 + 342 + Records, Registered Office or Registered Agent changes,1939-1977 + + + + + + 1 + 343 + Records, Foreign Corporation Withdrawal Certificates (North Carolina, 1932 and 1954 and Oregon, 1939) and Aladdin Trailers Corporation dissolution,1939-1954 + + + + + + 1 + 344 + Records, Trademark Registrations,1976-1984 + + + + + + + + Aladdin Company Collection - Series #1, Administrative Records (Corporate and Administrative Records, 1909-1987) + + + + 1 + 350 + Records, Aladdin Homes LTD – Canada,1959-1960 + + + + + + 1 + 345 + Records, Customer Surveys, Sales Summary & Salesmen Reports (5 folders),1950-1980 + + + + + + 1 + 346 + Records, Customer Surveys, Sales Summary & Salesmen Reports (5 folders),1950-1980 + + + + + + 1 + 347 + Records, Customer Surveys, Sales Summary & Salesmen Reports (5 folders),1950-1980 + + + + + + 1 + 348 + Records, Customer Surveys, Sales Summary & Salesmen Reports (5 folders),1950-1980 + + + + + + 1 + 349 + Records, Customer Surveys, Sales Summary & Salesmen Reports (5 folders),1950-1980 + + + + + + 1 + 351 + Records, Company History,undated + + + + + + 1 + 352 + Records, Co-operator in Marshfield, MA (2 folders original and use copies),1913-1922 + + + + + + 1 + 353 + Records, Co-operator in Marshfield, MA (2 folders original and use copies),1913-1922 + + + + + + 1 + 354 + Records, Co-operators,1915, 1954 + + + + + + 2 + 355 + Records, Acquisition offer,1970 + + + + + + 2 + 356 + Records, Administrative correspondence,1947-1954, 1955-1962 + + + + + + 2 + 357 + Records, Administrative correspondence,1947-1954, 1955-1962 + + + + + + 2 + 358 + Records, Advertising correspondence,1954-1958 + + + + + + 2 + 359 + Records, Aladdin City - Florida,1947-1955 + + + + + + 2 + 360 + Records, Aladdin City - Florida,1947-1955 + + + + + + 2 + 361 + Records, Aladdin City - Florida,1947-1955 + + + + + + 2 + 362 + Records, Business correspondence – supplies, employment,1970-1972 + + + + + + 2 + 363 + Records, Business solicitation,1949-1958 + + + + + + 2 + 364 + Records, Catalog mailing list, Sample cards,1981 + + + + + + 2 + 365 + Records, Catalog requests,1926-1955 + + + + + + 2 + 366 + Records, Catalog requests, Alaska & Hawaii,1964-1967 + + + + + + 2 + 367 + Records, Catalog requests, foreign,1965-1967 + + + + + + 2 + 368 + Records, Complaints (scattered),1923-1980 + + + + + + 2 + 369 + Records, Complaints re Taylor-Mitchell (old dealer), Portsmouth, OH,1941 + + + + + + 2 + 370 + Records, Complaints – Jesse Brown file,1965 + + + + + + 2 + 371 + Records, Construction and Transportation,1947-1963 + + + + + + 3 + 372 + Records, Consultant re. Post-World War II Resumption of Production,1947-1948 + + + + + + 3 + 373 + Records, Czech Project, Bert Zenaty,1927 + + + + + + 3 + 374 + Records, Dealer and Importer/Exporter correspondence,1944-1967 + + + + + + 3 + 375 + Records, Dog Houses,1976-1978 + + + + + + 3 + 376 + Records, Latter Day Saints church project – Evart, Michigan,1970, 1979 + + + + + + 3 + 377 + Records, Miscellaneous, 1907-1972 – A. I. Lamb replaced by W. F. Sovereign as V.P. 1959, Hannah Sovereign Schust re. business strat., 1960,1907-1972 + + + + + + 3 + 378 + Records, Miscellaneous customer correspondence,1983-1985 + + + + + + 3 + 379 + Records, Preliminary Orders, Alaska and Hawaii,undated + + + + + + 3 + 380 + Records, Preliminary Orders, Foreign,1964-1967 + + + + + + 3 + 381 + Records, Radio Broadcast mentioning Aladdin,1940 + + + + + + 3 + 382 + Records, Referral letters,1961-1976 + + + + + + 3 + 383 + Records, Requests for parts replacements,1957-1982 + + + + + + 3 + 384 + Records, Testimonials,1940-1981 + + + + + + 3 + 385 + Records, Testimonials for 1950 catalog “Generation”,1950 + + + + + + 3 + 386 + Records, War Contract correspondence,1942-1945 + + + + + + 3 + 387 + Records, Form paragraphs - standardized replies to customers (4 folders),1922-1929 + + + + + + 3 + 388 + Records, Form paragraphs - standardized replies to customers (4 folders),1922-1929 + + + + + + 3 + 389 + Records, Form paragraphs - standardized replies to customers (4 folders),1922-1929 + + + + + + 3 + 390 + Records, Form paragraphs - standardized replies to customers (4 folders),1922-1929 + + + + + + 4 + 391 + Records, Form paragraphs - cont. (12 folders),1930-1972 + + + + + + 4 + 392 + Records, Form paragraphs - cont. (12 folders),1930-1972 + + + + + + 4 + 393 + Records, Form paragraphs - cont. (12 folders),1930-1972 + + + + + + 4 + 394 + Records, Form paragraphs - cont. (12 folders),1930-1972 + + + + + + 4 + 395 + Records, Form paragraphs - cont. (12 folders),1930-1972 + + + + + + 4 + 396 + Records, Form paragraphs - cont. (12 folders),1930-1972 + + + + + + 4 + 397 + Records, Form paragraphs - cont. (12 folders),1930-1972 + + + + + + 4 + 398 + Records, Form paragraphs - cont. (12 folders),1930-1972 + + + + + + 4 + 399 + Records, Form paragraphs - cont. (12 folders),1930-1972 + + + + + + 4 + 400 + Records, Form paragraphs - cont. (12 folders),1930-1972 + + + + + + 4 + 401 + Records, Form paragraphs - cont. (12 folders),1930-1972 + + + + + + 4 + 402 + Records, Form paragraphs - cont. (12 folders),1930-1972 + + + + + + 4 + 403 + Records, Credit Reports, Dun-Bradstreet,1958, 1971-1983 + + + + + + 4 + 404 + Records, Dealers, historical notes, agreement forms, equipment checking list, territories (2 folders),1941 + + + + + + 4 + 405 + Records, Dealers, historical notes, agreement forms, equipment checking list, territories (2 folders),1941 + + + + + + 4 + 406 + Records, Resignations - Senior officers,1910 + + + + + + 4 + 407 + Records, Union agreement, pension plans, annual reports (1973-1974, 1974-1975), Mill employees (1951),1951, 1973-1975 + + + + + + 4 + 408 + Records, Trade Union correspondence,undated + + + + + + 4 + 409 + Records, Union grievances,undated + + + + + + 4 + 410 + Records, Two letters re. Portland, OR plant,1946 + + + + + + 4 + 411 + Records, Union membership,1967-1981 + + + + + + 4 + 412 + Records, Hours worked/month-union,1971-1974 + + + + + + 4 + 413 + Records, Salaries (1954-62), wage rates (1973),1954-1973 + + + + + + 4 + 414 + Records, Hours & wages-mill (very incomplete),1963-1976 + + + + + + 4 + 415 + Records, Pay scale - (1951-1961, 1967-1981). Mill rate increases (1962-1969),1951-1981 + + + + + + 4 + 415a + Records, MISSING: Weekly wage rates & payroll changes-office (incomplete),1968-1980 + + + + + + 4 + 415b + Records, MISSING: Memos re Pay raises & pay rates (1957, 1965-1980),1957-1980 + + + + + + 4 + 415c + Records, MISSING: Pay advances & loans,1969-1979 + + + + + + 4 + 416 + Records, Pay and union contract memos, grievances (1961-1962;1971-1972),1961-1962, 1971-1972 + + + + + + 4 + 417 + Records, Michigan Mutual Insurance Company,undated + + + + + + + + 4 + 418 + Records, Minors,1961, 1964 + + + + + + 4 + 419 + Records, Pension Plans,undated + + + + + + 4 + 420 + Records, Injuries (3 folders),1962-1964, 1968-1980 + + + + + + 4 + 421 + Records, Injuries (3 folders),1962-1964, 1968-1980 + + + + + + 4 + 422 + Records, Injuries (3 folders),1962-1964, 1968-1980 + + + + + + 5 + 423 + Records, Occupational Safety and Health Administration/Record-keeping requirements,undated + + + + + + 5 + 424 + Records, Retirements & separations (samples),1966-1981 + + + + + + 5 + 424a + Records, MISSING: Turkey lists,1968-1979 + + + + + + 5 + 425 + Records, Vacation pay (1963-1981), Manuscript rules for same, Union seniority lists (1963, 1966, 1981),1963-1981 + + + + + + 5 + 426 + Records, Bonuses,1971-1978 + + + + + + 5 + 427 + Records, Job application-office,1954, 1973-1980 + + + + + + 5 + 428 + Records, Employee fraud - New York,1919-1923 + + + + + + 5 + 429 + Records, Sales meetings,1958-1959, 1962-1963 + + + + + + 5 + 430 + Records, Company meeting notes: May 25, 1960,1960 + + + + + + 5 + 431 + Records, Orders listed by salesman,1957-1960 + + + + + + 5 + 432 + Records, Number of customer visits by month,1957-1958 + + + + + + 5 + 433 + Records, Salesmen Reports (3 folders),1954-1965 + + + + + + 5 + 434 + Records, Salesmen Reports (3 folders),1954-1965 + + + + + + 5 + 435 + Records, Salesmen Reports (3 folders),1954-1965 + + + + + + 5 + 436 + Records, Aladdin government contracts,1942 + + + + + + 5 + 437 + Records, Aladdin Co. barracks building, 20’ x 100’,undated + + + + + + 5 + 438 + Records, Aladdin Co. bunk house prices and specifications,1956-1957 + + + + + + 5 + 439 + Records, Correspondence and memos (interoffice),1942 + + + + + + 5 + 440 + Records, Aladdin Company demountable barracks. 20’ x 48’3 ¼ ‘. Prefab & readi-cut specifications and blueprints,1943 + + + + + + 5 + 441 + Records, Aladdin Company demountable home. 26’5 ¼ ‘ x 20’. Drawings,1942 + + + + + + 5 + 442 + Records, Aladdin Company lumber orders,1942 + + + + + + 5 + 443 + Records, Aladdin Company material requirements on various contracts,1942-1943 + + + + + + 5 + 444 + Records, Aladdin Company contracts1942-1943 + + + + + + 5 + 445 + Records, Aladdin Company pit latrines, scrub deck, showers,1943 + + + + + + 5 + 446 + Records, Aladdin Company prefabricated barracks. Brochures/ price list,1943 + + + + + + 5 + 447 + Records, Aladdin Company qualification record, 22 April 1942/ List of Gov. and Industrial Projects 1917 start,1917,1942 + + + + + + 5 + 448 + Records, Aladdin Company quantity orders. Comprehensive list including individuals,1914-1945 + + + + + + 5 + 449 + Records, Army Air Corps Order File,1942-1943 + + + + + + 5 + 450 + Records, Austin Motor Company - Birmingham, England. Records re. order of 200 houses. (4 folders, two folders of original material, two folders of copies),1916-1917 + + + + + + 5 + 451 + Records, Austin Motor Company - Birmingham, England. Records re. order of 200 houses. (4 folders, two folders of original material, two folders of copies),1916-1917 + + + + + + 5 + 452 + Records, Austin Motor Company - Birmingham, England. Records re. order of 200 houses. (4 folders, two folders of original material, two folders of copies),1916-1917 + + + + + + 5 + 453 + Records, Austin Motor Company - Birmingham, England. Records re. order of 200 houses. (4 folders, two folders of original material, two folders of copies),1916-1917 + + + + + + 5 + 454 + Records, Austin Motor Company contract and specifications,undated + + + + + + 5 + 455 + Records, Austin Motor Company bills of materials for special Chester,1917,1922 + + + + + + 5 + 456 + Records, Austin Motor Company - Birmingham, England, letter re: 200 Aladdin homes sold to Austin in 1917,1944 + + + + + + 6 + 457 + Records, Bechtel, Price, Callahan; Edmonton, Alberta, Canada - 20 x 100 buildings,1943 + + + + + + 6 + 458 + Records, Bechtel, Price, Callahan; Edmonton, Alberta, Canada - Barracks, Portland mill,1943 + + + + + + 6 + 459 + Records, Bechtel, Price, Callahan; Edmonton, Alberta, Canada - Barracks #23105,1943 + + + + + + 6 + 460 + Records, Buick; General Motors Corporation - Flint, MI. Airplane engine shipping cases,1941 + + + + + + 6 + 461 + Records, Charleston Shipbuilding & Drydock Company - Charleston, S.C. CCC building, Specs. #38783,undated + + + + + + 6 + 462 + Records, CCC buildings. Shipping to Tacoma, WA,1942 + + + + + + 6 + 463 + Records, CCC buildings. Estimates and figures,1942 + + + + + + 6 + 464 + Records, CCC buildings. Prices, material,1942 + + + + + + 6 + 465 + Records, CCC buildings. Painting,1942 + + + + + + 6 + 466 + Records, CCC buildings. Quoting for Major Heiss (Columbus, OH),1942 + + + + + + 6 + 467 + Records, CCC buildings. Quoting for Major Heiss - 43 Demountable buildings,1942 + + + + + + 6 + 468 + Records, CCC buildings. Books with price lists,1942-1943 + + + + + + 6 + 469 + Records, CCC buildings. Material Purchases (2 books),1942-1943 + + + + + + 6 + 470 + Records, CCC buildings. To ship from Portland, OR,1942 + + + + + + 6 + 471 + Records, CCC buildings. Material price list and panel labor time, hardware, veneer,1943 + + + + + + 6 + 472 + Records, CCC buildings. Plan 265. Smoke jacks. Tacoma, WA also prefab mobile depot group barracks - CCC type,1940-1950 + + + + + + 6 + 473 + Records, Central Steel Tube Company - Clinton, Iowa,1941 + + + + + + 6 + 474 + Records, Continental Motor Car Company - Muskegon, MI. Airplane,undated + + + + + + 6 + 475 + Records, Engine boxes,1941 + + + + + + 6 + 476 + Records, Co-operative Society of Reykjavik, Iceland, #38555,1941 + + + + + + 6 + 477 + Records, Defense Plant Corporation - Washington D.C. 20’x100’ steel warehouse bid,1944 + + + + + + 6 + 478 + Records, Emergency Fleet Corporation Housing,1918 + + + + + + 7 + 478a + Records, Fort Brady - Sault Ste. Marie, MI; Lumber pricing. Blueprints,1942 + + + + + + 7 + 479 + Records, Fort Brady - Sault Ste. Marie, MI; Pricing basis and change orders,1942 + + + + + + 7 + 480 + Records, Fort Brady - Sault Ste. Marie, MI,1942 + + + + + + 7 + 481 + Records, Fort Myer, VA,1917 + + + + + + 7 + 482 + Records, Fort Snelling, MN. Contract, other documents, correspondence,1917 + + + + + + 7 + 483 + Records, Fort Snelling, MN. Contracts, boarding, heater fdtns., teams (horses),1917 + + + + + + 7 + 484 + Records, Fort Snelling, MN. Contracts, concrete & plumbing, hardware list,1917 + + + + + + 7 + 485 + Records, Fort Snelling, MN. Chicago plumbing list,1917 + + + + + + 7 + 486 + Records, Fort Snelling, MN. Contract, electrical,1917 + + + + + + 7 + 487 + Records, Fort Snelling, MN. Contracts, lumber,1917 + + + + + + 7 + 488 + Records, Fort Snelling, MN. Contract, sewer & water,1917 + + + + + + 7 + 489 + Records, Fort Snelling, MN. Correspondence,1917 + + + + + + 7 + 490 + Records, Fort Snelling, MN. Statements of expenditure,1917 + + + + + + 7 + 491 + Records, Frigidaire Divison, GM Corporation - Dayton OH; Boxes for 50 cal. machine guns,1941 + + + + + + 7 + 492 + Records, Georgia Hardware Lumber Company, Export House, December 15,1944 + + + + + + 7 + 493 + Records, Gerholtz Healy Company - Flint, MI; Houses in Flint, Ann Arbor, Lansing,1941 + + + + + + 7 + 494 + Records, Government job bids/ List of bidders,1917 + + + + + + 7 + 495 + Records, Grain bins; blueprints, drawings,1942 + + + + + + 7 + 496 + Records, Grain bins; correspondence, specifications, bills of material,1942 + + + + + + 7 + 497 + Records, Grain bins; initial letter from M.B. Kolb Co., specifications, figures,1942 + + + + + + 7 + 498 + Records, Grain bins; correspondence,1942-1943 + + + + + + 7 + 499 + Records, Grain bins; government specifications, drawings,1950 + + + + + + 7 + 500 + Records, Granse, Herman vs the Aladdin Company (2 folders),1944-1947 + + + + + + 7 + 501 + Records, Granse, Herman vs the Aladdin Company (2 folders),1944-1947 + + + + + + 7 + 502 + Records, Granse, Herman vs the Aladdin Company (c. 1944-1947), Papers of Judge Clark (26 February 1947),1944-1947 + + + + + + 7 + 503 + Records, Granse, Herman vs the Aladdin Company (c. 1944-1947), Letter to Judge Clark from W.J. Sovereign (26 May 1947): Granse’s pay under Payroll Act,1944-1947 + + + + + + 7 + 504 + Records, Granse, Herman vs the Aladdin Company settlement,1947, 1953 + + + + + + 8 + 505 + Records, H.J. Heinz Company - Pittsburgh, PA; Readi-cut bunkhouse 10’x20’,1947-1951 + + + + + + 8 + 506 + Records, H.J. Heinz Company - Pittsburgh, PA; Bunkhouses - 3 Minnesota style, #38612-13-14 - Shelby, MI,1947-1951 + + + + + + 8 + 507 + Records, H.J. Heinz Company - Pittsburgh, PA; Bunkhouses - 2 Minnesota style, #38615-16 - Fremont, MI,1947-1951 + + + + + + 8 + 508 + Records, H.J.Heinz Company - Pittsburgh, PA. Bunkhouses - 5 Minnesota style; 2 to Zeeland, MI - #38617-18, 3 to Mecosta, MI - #38619-20-21,1947-1951 + + + + + + 8 + 509 + Records, H.J. Heinz Company - Pittsburgh, PA. Bunkhouses - 25 Minnesota style to Wild Rose, WI - #38622-38646,1947-1951 + + + + + + 8 + 510 + Records, H.J. Heinz Company - Pittsburgh, PA. Boxes and pallet boards,1944 + + + + + + 8 + 511 + Records, H.J. Heinz Company - Pittsburgh, PA,1945 + + + + + + 8 + 512 + Records, H.J. Heinz Company - Pittsburgh, PA (1943, 1944, 1948(letter)). Correspondence, White order sheets for 38705-38729, 38747-38749, 38750-39771, 38732-38746, 38778, 38779-38782, 38772-38773, 38774-38777 (1944), Misc. related material (bunkhouse),1943-1948 + + + + + + 8 + 513 + Records, H.J. Heinz Company - Pittsburgh, PA. Bunkhouses - 10 Minnesota; Saginaw, MI - #388651-38860, Freeland, MI - #38661-38670,1943 + + + + + + 8 + 514 + Records, H.J. Heinz Company - Pittsburgh, PA. Bunkhouses - Minnesota; Wisconsin & Michigan - #38661-38670. Order sheets (white), correspondence, color sheets, related materials,1944-1945 + + + + + + 8 + 515 + Records, H.J. Heinz Company - Pittsburgh, PA. Bunkhouses - Minnesota; Wisconsin & Michigan - #38661-38670. Order sheets (white), correspondence, color sheets, related materials,1944-1945 + + + + + + 8 + 516 + Records, H.J. Heinz Company - Pittsburgh, PA. 8 Bunkhouses (38812-38819). Correspondence, Miscellaneous. Indiana,1945 + + + + + + 8 + 517 + Records, H.J. Heinz Company - Pittsburgh, PA. Bunkhouse shipping bills,1943 + + + + + + 8 + 518 + Records, H.J. Heinz Company - Pittsburgh, PA. Bunkhouse shipping bills,1943 + + + + + + 8 + 519 + Records, H.J. Heinz Company - Pittsburgh, PA. Bunkhouse shipping bills,1943 + + + + + + 8 + 520 + Records, Hudson Motor Company, Naval Ordinance Division - Detroit, MI. Shipping boxes,1941 + + + + + + 8 + 521 + Records, Kellog Field - Battle Creek, MI. Correspondence, specifications, bills of materials, blueprints “#17”,1942 + + + + + + 8 + 522 + Records, Kolb, Milton B. – M. B. Kolb Company Inc. - NY, NY (2 folders),1942 + + + + + + 8 + 523 + Records, Kolb, Milton B. – M. B. Kolb Company Inc. - NY, NY (2 folders),1942 + + + + + + 8 + 524 + Records, Methodist Home for the Aged - Marionville, MO. Houses - floor plans, specs., prices, freight to NM,1957 + + + + + + 8 + 525 + Records, Michigan Bell Telephone Company, Community Dial Office,1951 + + + + + + 8 + 526 + Records, Mike Horse Mining & Milling Company - Helena, MT. Houses - correspondence, lists of materials, bills,1943 + + + + + + 8 + 527 + Records, Monroe, John; Business Associate of Aladdin,1942-1943 + + + + + + 8 + 528 + Records, Monroe, John,1944 + + + + + + 8 + 529 + Records, Monroe, John; B.B. Kolb Company; Shower Sales Corporation, G.A.O. Inquiry,1949 + + + + + + 8 + 530 + Records, Monroe, John; Correspondence including New Zealand government,1951-1952 + + + + + + 8 + 531 + Records, Muskegon, MI. Defense Housing Project, “Paper, figures, etc.” w' H. V. White at Washington D.C.,1941 + + + + + + 8 + 532 + Records, National Housing Agency - Saginaw, MI - #20175,undated + + + + + + 8 + 533 + Records, Navy Department, Bureau of Yards and Docks. Blueprints for Special Duplex (49’ x 29’), Nos. 1 & 2., blueprint for compact row house, 3 apartments,1941 + + + + + + 8 + 534 + Records, Navy Department, Bureau of Yards and Docks - Chicago. Purchase order 2-C-2980, YD-C-17 serial #18, pit latrines, scrub decks, showers,undated + + + + + + 8 + 535 + Records, New Zealand Government drawings & specs. for supply and erection of 1000 Prefab houses,1951 + + + + + + 9 + 536 + Records, Olds Motor Works Division - Landing, MI. Boxes, crates,1941 + + + + + + 9 + 537 + Records, Packard Motor Car Company - Detroit, MI. Box to ship aircraft engine (Rolls Royce),1941 + + + + + + 9 + 538 + Records, Pere Marquette Railway Company. Hut orders #38672-38683,undated + + + + + + 9 + 539 + Records, Pere Marquette Railway Company. Portable huts orders #38585-38704, #38730-38731, #38784-38798,undated + + + + + + 9 + 540 + Records, Pere Marquette Railway Company. Huts, packing sheets,undated + + + + + + 9 + 541 + Records, Varnish Company - Pontiac (MI). Paint boxes #38609-10,undated + + + + + + 9 + 542 + Records, Public Buildings Administration; proposal for erecting Aladdian Readi-cut houses,1941 + + + + + + 9 + 543 + Records, Reed, Alan L.; Agent for Aladdin,1943 + + + + + + 9 + 544 + Records, Saginaw-Bay City Airfield - Freeland, MI. Building layout, roads & walks layout,undated + + + + + + 9 + 545 + Records, Shower Sales Corporation (4 folders) – NY, NY/ Portland, OR Mill/ Ed Lockwood, S. Vernon Mann Jr.,1943-1944 + + + + + + 9 + 546 + Records, Shower Sales Corporation (4 folders) – NY, NY/ Portland, OR Mill/ Ed Lockwood, S. Vernon Mann Jr.,1943-1944 + + + + + + 9 + 547 + Records, Shower Sales Corporation (4 folders) – NY, NY/ Portland, OR Mill/ Ed Lockwood, S. Vernon Mann Jr.,1943-1944 + + + + + + 9 + 548 + Records, Shower Sales Corporation (4 folders) – NY, NY/ Portland, OR Mill/ Ed Lockwood, S. Vernon Mann Jr.,1943-1944 + + + + + + 9 + 549 + Records, Smiley, C.D.; factory representative for Aladdin Trailer Homes, Granse case and other correspondence,1944-1947 + + + + + + 9 + 550 + Records, Umatilla Ordinance Depot - Hermiston, OR. Pallets,1943-1944 + + + + + + 9 + 551 + Records, U.S. Army Air Force. Contracts, “Extra Copies”,1942-1943 + + + + + + 9 + 552 + Records, U.S. Army Air Force. Bills of materials,1942-1943 + + + + + + 9 + 553 + Records, U.S. Army Air Force. Boxes,1942-1943 + + + + + + 9 + 554 + Records, U.S. Army Air Force - Columbus. Memos,1942-1943 + + + + + + 9 + 555 + Records, U.S. Army Air Force. Columbus shipments, Newport News,1942-1943 + + + + + + 9 + 556 + Records, U.S. Army Air Force. Jobs - Dayton, OH,1942-1943 + + + + + + 9 + 557 + Records, U.S. Army Air Force. Jobs - Helmsley, Albuquerque,1942-1943 + + + + + + 9 + 558 + Records, U.S. Army Air Force. Hutments, memos,1942-1943 + + + + + + 9 + 559 + Records, U.S. Army Air Force - Iceland,1942-1943 + + + + + + 9 + 560 + Records, U.S. Army Air Force - Kellogg Field,1942-1943 + + + + + + 9 + 561 + Records, U.S. Army Air Force. Jobs, latrines,1942-1943 + + + + + + 9 + 562 + Records, U.S. Army Air Force. Jobs, plumbing fixtures,1942-1943 + + + + + + 9 + 563 + Records, U.S. Army Air Force. Jobs - Selfridge Field, MI, 1942-1943 + + + + + + 9 + 564 + Records, U.S. Army Air Force. Jobs - Selfridge Field, MI. Lumber and priority bills,1942-1943 + + + + + + 10 + 565 + Records, U.S. Army Air Force. Jobs, Signal Corps shelters,1942-1943 + + + + + + 10 + 566 + Records, U.S. Army Air Force. Jobs, smoke jacks quotations - Albuquerque, NM,1942-1943 + + + + + + 10 + 567 + Records, U.S. Army Air Force. Jobs, wiring,1942-1943 + + + + + + 10 + 568 + Records, U.S. Army Corps of Engineers. Nike missile site housing - Alaska,1957 + + + + + + 10 + 569 + Records, U.S. Army Signal Corps. Crate P6-49, Pigeon, 30-Bird, training,1941 + + + + + + 10 + 570 + Records, U.S. Army Signal Corps. Shelter HO-17 (Mobile),1942 + + + + + + 10 + 571 + Records, U.S. Army Signal Corps. Corps of Engineers - Custer, MI; Chicago, IL; Detroit, MI; and Public Housing (Detroit, MI) correspondence,1941-1943 + + + + + + 10 + 572 + Records, U.S. Army Signal Corps. Corps of Engineers, Hutment B, Tropical Hutment T (2 folders). Bill of materials, sketch plan “Aladdin Five-Man Huts” brochure,1942 + + + + + + 10 + 573 + Records, U.S. Army Signal Corps. Corps of Engineers, Hutment B, Tropical Hutment T (2 folders). Bill of materials, sketch plan “Aladdin Five-Man Huts” brochure,1942 + + + + + + 10 + 574 + Records, U.S. Dept. of Agriculture. Duplex temporary shelters, blueprints, specifications, figures,1941 + + + + + + 10 + 575 + Records, U.S. Government. Lumber price controls (“PC-R” Folder),1942-1943 + + + + + + 10 + 576 + Records, U.S. Housing Corps. - Seven Pines, VA. Aladdin’s claim,1918-1919 + + + + + + 10 + 577 + Records, U.S. Marine Corps. Storehouse, invitation to bid,1917 + + + + + + 10 + 578 + Records, U.S. Navy Bureau of Yards & Docks. Furniture Proposal – Request #1-102 & 1-103,1944 + + + + + + 10 + 579 + Records, U.S. Navy Bureau of Yards & Docks. Request No. 1-138,1944 + + + + + + 10 + 580 + Records, U.S. Treasury Department. Igloo Barracks, bid,1943 + + + + + + 10 + 581 + Records, U.S. Treasury Department. Igloo Barracks, photograph graphs, specs., figures,1943 + + + + + + 10 + 582 + Records, War Department Air Corps. - Wright Field, Dayton, OH. Nos. 6-7-8-9-10-11-13-14. Prices & change orders,1942 + + + + + + 10 + 583 + Records, War Department Air Corps. Barracks 20’ x 48’, Pre-cut but portable,1944 + + + + + + 10 + 584 + Records, War Department Air Corps. Barracks 20’ x 48’, T.O. - 11.50, T.O.—11.54, figures and internal letter (Portland Mill to Bay City),1944 + + + + + + 10 + 585 + Records, War Department Air Corps. Barracks 20’ x 54’ precut, warehouse precut (110' x 405') tropical, bill of materials,undated + + + + + + 10 + 586 + Records, War Department Air Corp. - Detroit Ordinance District, Detroit, MI. Bid on one-ton trailers (cargo bodies),1943 + + + + + + 10 + 587 + Records, War Department. Demountable mobilization barracks 24’ x 60', bids and competition bids, drawings #800-437 to #800-441, specification #8866-E,1942 + + + + + + 10 + 588 + Records, War Department Division Engineers - Atlanta, GA. Insulating kit for building shell, tropical, precut, complete, 20’ x 54’,1945 + + + + + + 10 + 589 + Records, War Department Housing Project - Bay City, Michigan. 20178,1943 + + + + + + 10 + 590 + Records, War Department. List of Orders, order numbers/ pricing basis for contracts/ figures for insulating wall board, smoke jack,1941-1943 + + + + + + 10 + 591 + Records, War Department Office of Div. Engineers - Atlanta, GA. Sectional 20’ x 48’ barracks, T-O 111-54. “Did not bid”,1944 + + + + + + 10 + 592 + Records, War Department - Albuquerque, NM. 50 oak table tops,1942 + + + + + + 11 + 593 + Records, Insurance,1956, 1961, 1970 + + + + + + 11 + 594 + Records, International Trade,1961-1964 + + + + + + 11 + 595 + Records, Lamont (property deed),1918 + + + + + + 11 + 596 + Records, Legal Proceedings: Federal Trade Commission v. Aladdin, re: legitimacy of Advertising claims that Aladdin “system” was less expensive than other construction techniques,1914-1919 + + + + + + 11 + 597 + Records, Legal Proceedings: United States v. George Dewey Conner. Case involving commissions to obtain government work,1944 + + + + + + 11 + 598 + Records, Maticka real estate contract,1967-1969 + + + + + + 11 + 599 + Records, Mershon and Bacon (purchase),1914-1915 + + + + + + 11 + 600 + Records, Michigan Agricultural Society, Certificate of Merit,1914 + + + + + + 11 + 601 + Records, Michigan intangibles tax returns,1963-1975 + + + + + + 11 + 602 + Records, Remodeling – Mill – Building 26 demolition, Buildings 4, 5, 5a water tower, 'all but 27' of Building 2 (Old Mill office building),1965-1966 + + + + + + 11 + 603 + Records, Mill buildings, construction,1969 + + + + + + 11 + 604 + Records, Notes receivable and payable (customer payment examples). Will F. Sovereign,1976-1983 + + + + + + 11 + 605 + Records, Offices, Belinda Street,undated + + + + + + 11 + 606 + Records, Office leases (1952-1978), deeds (c. 1948-1987),1948-1987 + + + + + + 11 + 607 + Records, Accounting system,1918 + + + + + + 11 + 608 + Records, Glossary of terms, employee orientation,1950 + + + + + + 11 + 609 + Records, Mail room and filing procedures,undated + + + + + + 11 + 610 + Records, Miscellaneous office procedures,undated + + + + + + 11 + 611 + Records, Office manual, organization chart,1920 + + + + + + 11 + 612 + Records, Office manual,1965 + + + + + + 11 + 613 + Records, Switchboard manual,1961 + + + + + + 11 + 614 + Records, Typing manual,1963 + + + + + + 11 + 615 + Records, Personnel organization chart,1920 + + + + + + 11 + 616 + Records, Postage, postal permits, rate hike,1959 + + + + + + 11 + 617 + Records, Competitor’s credit reports,1954-1959 + + + + + + 11 + 618 + Records, Experimental projects,1962-1963 + + + + + + 11 + 619 + Records, Financing options,1942-1952 + + + + + + 11 + 620 + Records, House design factors (1950-1962), compiled from House and Plans Magazine (1961-1964), average house completion costs (1958-1960), other stats., sales by house model (1950-1961),1950-1964 + + + + + + 11 + 621 + Records, “Research Statistical Report” house design factors survey,1961-1962 + + + + + + 11 + 622 + Records, Improved Aladdin Method,1961 + + + + + + 12 + 623 + Records, Problem Report, (8 folders – last 4 folders are supporting data),1961 + + + + + + 12 + 624 + Records, Problem Report, (8 folders – last 4 folders are supporting data),1961 + + + + + + 12 + 625 + Records, Problem Report, (8 folders – last 4 folders are supporting data),1961 + + + + + + 12 + 626 + Records, Problem Report, (8 folders – last 4 folders are supporting data),1961 + + + + + + 12 + 627 + Records, Problem Report, (8 folders – last 4 folders are supporting data),1961 + + + + + + 12 + 628 + Records, Problem Report, (8 folders – last 4 folders are supporting data),1961 + + + + + + 12 + 629 + Records, Problem Report, (8 folders – last 4 folders are supporting data),1961 + + + + + + 12 + 630 + Records, Problem Report, (8 folders – last 4 folders are supporting data),1961 + + + + + + 12 + 631 + Records, Square footage of homes sold,1972 + + + + + + 12 + 632 + Records, Times Studies; on 2 – 16' 0” walls, on Royton 3 B.V., special Grenada 2 – order #61147. 3 folders,1961 + + + + + + 12 + 633 + Records, Times Studies; on 2 – 16' 0” walls, on Royton 3 B.V., special Grenada 2 – order #61147. 3 folders,1961 + + + + + + 12 + 634 + Records, Times Studies; on 2 – 16' 0” walls, on Royton 3 B.V., special Grenada 2 – order #61147. 3 folders,1961 + + + + + + 12 + 635 + Records, Vacation home financing,1961 + + + + + + 12 + 636 + Records, Trade directories information,undated + + + + + + + + Aladdin Company Collection - Series #2, (Financial Records, 1910-1984) + + + + 13 + 637 + Records, Misc. financial summaries,1909-1983 + + + + + + 13 + 638 + Records, Annual Financial Statements (17 folders) 1911; 1948; 1950; 1954-65; 1976; 1978,1911-1978 + + + + + + 13 + 639 + Records, Annual Financial Statements (17 folders) 1911; 1948; 1950; 1954-65; 1976; 1978,1911-1978 + + + + + + 13 + 640 + Records, Annual Financial Statements (17 folders) 1911; 1948; 1950; 1954-65; 1976; 1978,1911-1978 + + + + + + 13 + 641 + Records, Annual Financial Statements (17 folders) 1911; 1948; 1950; 1954-65; 1976; 1978,1911-1978 + + + + + + 13 + 642 + Records, Annual Financial Statements (17 folders) 1911; 1948; 1950; 1954-65; 1976; 1978,1911-1978 + + + + + + 13 + 643 + Records, Annual Financial Statements (17 folders) 1911; 1948; 1950; 1954-65; 1976; 1978,1911-1978 + + + + + + 13 + 644 + Records, Annual Financial Statements (17 folders) 1911; 1948; 1950; 1954-65; 1976; 1978,1911-1978 + + + + + + 13 + 645 + Records, Annual Financial Statements (17 folders) 1911; 1948; 1950; 1954-65; 1976; 1978,1911-1978 + + + + + + 13 + 646 + Records, Annual Financial Statements (17 folders) 1911; 1948; 1950; 1954-65; 1976; 1978,1911-1978 + + + + + + 13 + 647 + Records, Annual Financial Statements (17 folders) 1911; 1948; 1950; 1954-65; 1976; 1978,1911-1978 + + + + + + 13 + 648 + Records, Annual Financial Statements (17 folders) 1911; 1948; 1950; 1954-65; 1976; 1978,1911-1978 + + + + + + 13 + 649 + Records, Annual Financial Statements (17 folders) 1911; 1948; 1950; 1954-65; 1976; 1978,1911-1978 + + + + + + 13 + 650 + Records, Annual Financial Statements (17 folders) 1911; 1948; 1950; 1954-65; 1976; 1978,1911-1978 + + + + + + 13 + 651 + Records, Annual Financial Statements (17 folders) 1911; 1948; 1950; 1954-65; 1976; 1978,1911-1978 + + + + + + 13 + 652 + Records, Annual Financial Statements (17 folders) 1911; 1948; 1950; 1954-65; 1976; 1978,1911-1978 + + + + + + 13 + 653 + Records, Annual Financial Statements (17 folders) 1911; 1948; 1950; 1954-65; 1976; 1978,1911-1978 + + + + + + 13 + 654 + Records, Annual Financial Statements (17 folders) 1911; 1948; 1950; 1954-65; 1976; 1978,1911-1978 + + + + + + 13 + 655 + Records, Cash book. Month-end cash book – reconciliation/ accounts receivable/ houses/ reconciliation,1974-1984 + + + + + + 13 + 656 + Records, Profit & loss (1915-70), accounts receivable, accounts payable (1942/49-1983/82) & other accounts. (3 folders),1915-1983 + + + + + + 13 + 657 + Records, Profit & loss (1915-70), accounts receivable, accounts payable (1942/49-1983/82) & other accounts. (3 folders),1915-1983 + + + + + + 13 + 658 + Records, Profit & loss (1915-70) accounts receivable, accounts payable (1942/49-1983/82) & other accounts. (3 folders),1915-1983 + + + + + + 13 + 659 + Records, Surplus account analysis,1910-1942 + + + + + + 13 + 660 + Records, Depreciation schedules,1948-1982 + + + + + + 13 + 661 + Records, Trial balances,1950-1983 + + + + + + 14 + 662 + Records, General journal accounts receivable (Jan. 1919-April 1920),1919-1920 + + + + + + 14 + 663 + Records, General journal accounts payable, (1921 - continued from purchase journal 1919-20),1921 + + + + + + 14 + 665 + Records, Sales journal,1919 + + + + + + 14 + 664 + Records, Sales journal,1920 + + + + + + 14 + 666 + Records, Sales journal,1921 + + + + + + 14 + 671 + Records, Purchase journal (1919-20 - followed by general journal accounts payable, 1921, p.1),1919-1921 + + + + + + 14 + 667 + Records, Special account (January 1919 - January 1922) (3 folders),1919-1922 + + + + + + 14 + 668 + Records, Special account (January 1919 - January 1922) (3 folders),1919-1922 + + + + + + 14 + 669 + Records, Special account (January 1919 - January 1922) (3 folders),1919-1922 + + + + + + 14 + 670 + Records, Check Register (1919 - January 1922),1919-1922 + + + + + + 15 + 672 + Records, Petty cash,1922-1924 + + + + + + 15 + 673 + Records, Sales journal,1922-1924 + + + + + + 15 + 674 + Records, Purchase journal,1922-1924 + + + + + + 15 + 675 + Records, Special account,1922-1924 + + + + + + 15 + 676 + Records, Check register,1922-1924 + + + + + + 16 + 677 + Records, General journal,1925-1929 + + + + + + 16 + 683 + Records, Petty cash,1925-1926 + + + + + + 16 + 678 + Records, Sales journal (January 1925 - August 1926),1925-1926 + + + + + + 16 + 679 + Records, Purchase journal,1925-1926 + + + + + + 16 + 680 + Records, Purchase journal,1927-1929 + + + + + + 16 + 681 + Records, Special account,1925-1929 + + + + + + 16 + 682 + Records, Check register,1925-1929 + + + + + + 17 + 281 + Records, General journal, Profit/loss,1930-1937 + + + + + + 17 + 284 + Records, Purchase journal,1930-1933 + + + + + + 17 + 285 + Records, Purchase journal,1934-1937 + + + + + + 17 + 283 + Records, Special account (1930 - July 1932),1930-1932 + + + + + + + 17 + 282 + Records, Check register,1930-1937 + + + + + + 18 + 288 + Records, General journal,1938-1948 + + + + + + 18 + 289 + Records, Purchase journal,1938-1941 + + + + + + 18 + 290 + Records, Purchase journal,1942-1948 + + + + + + 18 + 286 + Records, Check register,1938-1941 + + + + + + 18 + 287 + Records, Check register,1942-1948 + + + + + + 19 + 291 + Records, General journal, Profit/loss,1949-1952 + + + + + + 19 + 292 + Records, Purchase journal,1949-1950 + + + + + + 19 + 293 + Records, Purchase journal,1951-1952 + + + + + + 19 + 294 + Records, Special account,1949-1952 + + + + + + 19 + 295 + Records, Check register,1949-1950 + + + + + + 19 + 296 + Records, Check register,1951-1952 + + + + + + 20 + 684 + Records, General journal, Profit/loss,1953-1961 + + + + + + 20 + 685 + Records, Purchase journal,1953-1954 + + + + + + 20 + 686 + Records, Purchase journal,1955-1957 + + + + + + 20 + 687 + Records, Purchase journal,1958-1961 + + + + + + 20 + 688 + Records, Special account,1953-1955 + + + + + + 20 + 689 + Records, Special account,1956-1957 + + + + + + 20 + 690 + Records, Special account,1958-1961 + + + + + + 20 + 691 + Records, Check register,1953-1954 + + + + + + 20 + 692 + Records, Check register,1955-1957 + + + + + + 20 + 693 + Records, Check register,1958-1961 + + + + + + 21 + 694 + Records, General journal,1962-1972 + + + + + + 21 + 695 + Records, Purchase journal,1962-1972 + + + + + + 21 + 696 + Records, Check register,1962-1972 + + + + + + 21 + 697 + Records, Special account,1962-1972 + + + + + + 22 + 698 + Records, General journal,1973-1984 + + + + + + 22 + 699 + Records, Purchase journal,1973-1984 + + + + + + 22 + 700 + Records, Special account (closed 25 May 1984),undated + + + + + + 22 + 701 + Records, Check register,1973-1984 + + + + + + 22 + 704 + Records, MISSING: Sales tallies,1973-1984 + + + + + + 22 + 702 + Records, General journal, sales record, check register,1985 + + + + + + 22 + 703 + Records, Misc, 1918-1975 including capital stock, profit loss, 1971-1985, Surplus account, 1956-1986, new mill buildings, 1925-1985,1918-1986 + + + + + + 23 + 705 + Records, Cash book receipts: 1-1-58 through 12-31-58, #503-646,1958 + + + + + + 23 + 706 + Records, Cash book 1966-1967 #1388-1583,1966-1967 + + + + + + 23 + 707 + Records, Cash book,1959 + + + + + + 23 + 708 + Records, Unlabeled packet,undated + + + + + + 24 + 709a + Records, Sales Summaries (7 folders),1913-1928 + + + + + + 24 + 709b + Records, Sales Summaries (7 folders),1913-1928 + + + + + + 24 + 709c + Records, Sales Summaries (7 folders),1913-1928 + + + + + + 24 + 709d + Records, Sales Summaries (7 folders),1913-1928 + + + + + + 24 + 709e + Records, Sales Summaries (7 folders),1913-1928 + + + + + + 24 + 709f + Records, Sales Summaries (7 folders),1913-1928 + + + + + + 24 + 709g + Records, Sales Summaries (7 folders),1913-1928 + + + + + + 24 + 710a + Records, Sales Statistics,undated + + + + + + 24 + 710b + Records, Furnishings sales, selected Mich. Cities,1929 + + + + + + 24 + 710c + Records, Sales Stats.,1932-1933 + + + + + + 24 + 710d + Records, Notes on Pricing,1939-1941 + + + + + + 24 + 710e + Records, 1948 Yearbook – sales by house,1948 + + + + + + 24 + 710f + Records, 1949 Yearbook – sales by house,1949 + + + + + + 24 + 710g + Records, 1950 Yearbook – sales by house,1950 + + + + + + 24 + 710h + Records, Plan requests to sales,1950-1962 + + + + + + 24 + 710i + Records, 1950 Houses sold, Houses shipped by Wilmington Mill, 1951 Sales by house model,1950-1951 + + + + + + 24 + 710j + Records, Inquiries, catalogs sent, office visits, plan deposits, sales summary totals,1950-1964 + + + + + + 24 + 710k + Records, Comparative sales by design 1951, 1954-1958,1951-1958 + + + + + + 24 + 710l + Records, sales by states,1953 + + + + + + 24 + 710m + Records, Sales by state & house model,1958-1959 + + + + + + 24 + 710n + Records, 1951 yearbook: sales by house,1951 + + + + + + 24 + 710o + Records, Houses sold (rough tally),1952 + + + + + + 24 + 710p + Records, 1954 Yearbook: sales by house,1954 + + + + + + 24 + 710q + Records, Record of correspondence on Order file, record of office & phone calls re. Order file (A. I. Lamb copy),1955 + + + + + + 24 + 710r + Records, 1956 Yearbook – sales by house,1956 + + + + + + 24 + 710s + Records, 1955-1956 Stats., Model stats. Summaries 1948-1955, Preferred features 1956,1948-1956 + + + + + + 24 + 710t + Records, Stats. w' comparison of house models 1954-1957,1957 + + + + + + 24 + 710u + Records, 1958 Yearbook – sales by house,1958 + + + + + + 24 + 710v + Records, Stats. - order lists, price adjustments, orders in reference to population,1959 + + + + + + 24 + 711 + Records, Plan Requests Compared to Sales, 1950-1962, Sales 1958-1963,1950-1963 + + + + + + 24 + 712 + Records, Comparative by Design, 1951; 1954-1958, 1960 Yearbook – sales by house,1951-1960 + + + + + + 24 + 713 + Records, Sales by State and House Model, 1958-1959, Sales report 1950-1960, Info. On top-selling designs 1957-1958,1950-1960 + + + + + + 24 + 714 + Records, Sales by Mode of Contact, 1950-1964, 1950-1968 – Sales reports by house model,1950-1968 + + + + + + 24 + 715 + Records, House sales summaries,1969-1982 + + + + + + 25 + 716 + Records, Sept. 1926-84 (lacking Oct. 1930) (4 folders),1926-1984 + + + + + + 25 + 717 + Records, Sept. 1926-84 (lacking Oct. 1930) (4 folders),1926-1984 + + + + + + 25 + 718 + Records, Sept. 1926-84 (lacking Oct. 1930) (4 folders),1926-1984 + + + + + + 25 + 719 + Records, Sept. 1926-84 (lacking Oct. 1930) (4 folders),1926-1984 + + + + + + 25 + 720 + Records, Cash sales, 1969; and sample cash book, April 1955 and January-March 1958,1955-1969 + + + + + + 26 + 721 + Records, Appraisal, October 7, 1952 (2 folders),1952 + + + + + + 26 + 722 + Records, Appraisal, October 7, 1952 (2 folders),1952 + + + + + + 26 + 723 + Records, Appraisal, January 31, 1957 (2 folders),1957 + + + + + + 26 + 724 + Records, Appraisal, January 31, 1957 (2 folders),1957 + + + + + + 26 + 725 + Records, Letters re surplus equipment, equipment lists,1963 + + + + + + 26 + 726 + Records, Appraisal, June 1, 1964,1964 + + + + + + 26 + 727 + Records, Appraisal, June 6, 1970,1970 + + + + + + 26 + 728 + Records, Letter re appraisal. September 5, 1979,1979 + + + + + + 26 + 729 + Records, Inventory, September 1, 1942. Including draft of Hattiesburg, Mississippi,1942 + + + + + + 26 + 730 + Records, Inventory, August 1,1943,1943 + + + + + + 26 + 731 + Records, Original inventory, August 1943,1943 + + + + + + 26 + 732 + Records, Inventory, October 1, 1950,1950 + + + + + + 26 + 733 + Records, Annual Inventory (21 folders),1964-1984 + + + + + + 26 + 734 + Records, Annual Inventory (21 folders),1964-1984 + + + + + + 26 + 735 + Records, Annual Inventory (21 folders),1964-1984 + + + + + + 26 + 736 + Records, Annual Inventory (21 folders),1964-1984 + + + + + + 26 + 737 + Records, Annual Inventory (21 folders),1964-1984 + + + + + + 26 + 738 + Records, Annual Inventory (21 folders),1964-1984 + + + + + + 26 + 739 + Records, Annual Inventory (21 folders),1964-1984 + + + + + + 26 + 740 + Records, Annual Inventory (21 folders),1964-1984 + + + + + + 26 + 741 + Records, Annual Inventory (21 folders),1964-1984 + + + + + + 26 + 742 + Records, Annual Inventory (21 folders),1964-1984 + + + + + + 26 + 743 + Records, Annual Inventory (21 folders),1964-1984 + + + + + + 26 + 744 + Records, Annual Inventory (21 folders),1964-1984 + + + + + + 26 + 745 + Records, Annual Inventory (21 folders),1964-1984 + + + + + + 26 + 746 + Records, Annual Inventory (21 folders),1964-1984 + + + + + + 26 + 747 + Records, Annual Inventory (21 folders),1964-1984 + + + + + + 26 + 748 + Records, Annual Inventory (21 folders),1964-1984 + + + + + + 26 + 749 + Records, Annual Inventory (21 folders),1964-1984 + + + + + + 26 + 750 + Records, Annual Inventory (21 folders),1964-1984 + + + + + + 26 + 751 + Records, Annual Inventory (21 folders),1964-1984 + + + + + + 26 + 752 + Records, Annual Inventory (21 folders),1964-1984 + + + + + + 26 + 753 + Records, Annual Inventory (21 folders),1964-1984 + + + + + + 26 + 754 + Records, Lumber purchased,1942 + + + + + + 26 + 755 + Records, Lumber purchased,1943 + + + + + + 26 + 756 + Records, Lumber Prices- Grades. Sample lists of materials for 200 houses, safe loads,1921 + + + + + + 26 + 757 + Records, Base costs of materials for Mills,1941 + + + + + + 26 + 758 + Records, Macon, GA Mill. Order filled,1941 + + + + + + 26 + 759 + Records, Expediting Division, W.V. Sovereign’s Orders,1942 + + + + + + 26 + 760 + Records, Wilmington, NC, Mill, construction, 1950 + + + + + + 26 + 761 + Records, Hardware Checklist, sheets,1968 + + + + + + 26 + 762 + Records, Standard Mitre Cuts, construction,undated + + + + + + 27 + 763 + Records, Payroll journal. Partial,1953-1954 + + + + + + 27 + 764 + Records, Payroll journal. Partial,1955-1956 + + + + + + 27 + 765 + Records, Payroll journal. Partial,1959-1960, 1964 + + + + + + 27 + 766 + Records, Payroll journal. Partial,1965-1966 + + + + + + 27 + 767 + Records, Payroll journal. Partial,1967-1968 + + + + + + 27 + 768 + Records, Payroll journal. Partial,1969-1970 + + + + + + 27 + 769 + Records, Payroll journal. Partial,1971-1972 + + + + + + 27 + 770 + Records, Payroll journal. Partial,1973-1974 + + + + + + 27 + 771 + Records, Payroll journal. Partial,1975-1976 + + + + + + 27 + 772 + Records, Payroll journal. Partial,1977-1978 + + + + + + 28 + 773 + Records, Box of loose payroll journal pages,1953-1956 + + + + + + 29 + 774 + Records, Box of loose payroll journal pages,1959-1967 + + + + + + 30 + 775 + Records, Box of loose payroll journal pages,1968-1978 + + + + + + 31 + 776 + Records, Loose payroll cards- “Gross Payroll Balances- First Half, 1963-1976”/ Balance Sheet 1953-1962/ Payroll cards A-K 1953-1983,1953-1983 + + + + + + 32 + 777 + Records, Loose payroll cards- K-Z,1951-1983 + + + + + + 32 + 778 + Records, Alex Lincoln employee records,1948-1962 + + + + + + 32 + 779 + Records, Rubis Folder – employee records,1953-1961 + + + + + + 33 + 780 + Records, Loose payroll cards- “Vacation-Mill” (1948-1952)- “New” (5/22/51), incl. A-Z,1948-1952 + + + + + + 34 + 781 + Records, Payroll cards,1937 + + + + + + 34 + 782 + Records, Payroll cards,1937-1938 + + + + + + 34 + 783 + Records, Payroll cards,1939 + + + + + + 34 + 784 + Records, Payroll cards, 1940 “1941 in back",1940-1941 + + + + + + 34 + 785 + Records, Payroll cards A-B,1942 + + + + + + 34 + 786 + Records, Payroll cards C-F,1942 + + + + + + 34 + 787 + Records, Payroll cards G-I,1942 + + + + + + 34 + 788 + Records, Payroll cards J-K,1942 + + + + + + 34 + 789 + Records, HPayroll cards J-L,1942 + + + + + + 34 + 790 + Records, Payroll cards M-O,1942 + + + + + + 34 + 791 + Records, Payroll cards “S”,1942 + + + + + + 34 + 792 + Records, Payroll cards P,R,T,1942 + + + + + + 34 + 793 + Records, Payroll cards T-U,1942 + + + + + + 34 + 794 + Records, Payroll cards W-Z,1942 + + + + + + 34 + 795 + Records, Payroll cards A-L,1943 + + + + + + 34 + 796 + Records, Payroll cards M-Z,1943 + + + + + + 34 + 797 + Records, Payroll cards A-Z,1944 + + + + + + + + Aladdin Company Collection - Series #3, (Advertising, 1907-1985) + + + + 35 + 798 + Records, Source Reports and Records,1907-1913 + + + + + + 35 + 799 + Records, Source Reports and Records (2 folders),1911-1935 + + + + + + 35 + 800 + Records, Source Reports and Records (2 folders),1911-1935 + + + + + + 35 + 801 + Records, Source Reports and Records,1940-1941 + + + + + + 35 + 803 + Records, Source Reports and Records,1949 + + + + + + 35 + 802 + Records, Source Reports and Records,1950 + + + + + + 35 + 804 + Records, Report book,1907-1912 + + + + + + 36 + 807 + Records, Source Reports and Records,1940, 1953-1958 + + + + + + 36 + 805 + Records, Source Reports and Records,1959 + + + + + + 36 + 806 + Records, Source Reports and Records,1960 + + + + + + 36 + 808 + Records, Source Reports and Records,1961 + + + + + + 37 + 809 + Records, Advertising expenses, statistics,1912-1920 + + + + + + 37 + 810 + Records, Source reports (2 folders),1913-1914 + + + + + + 37 + 811 + Records, Source reports (2 folders),1913-1914 + + + + + + 37 + 812 + Records, Advertising follow-up,1915-1922 + + + + + + 37 + 813 + Records, Advertising Report,1929-1930 + + + + + + 37 + 814 + Records, Advertising Report,1931-1932 + + + + + + 37 + 815 + Records, Advertising Reports,1933-1935 + + + + + + 37 + 816 + Records, Advertising Report, trailers, 1936 + + + + + + 37 + 817 + Records, Source Reports (4 folders),1938-1950 + + + + + + 37 + 818 + Records, Source Reports (4 folders),1938-1950 + + + + + + 37 + 819 + Records, Source Reports (4 folders),1938-1950 + + + + + + 37 + 820 + Records, Source Reports (4 folders),1938-1950 + + + + + + 37 + 821 + Records, Advertising statistics, comparisons (H. V. White),1960 + + + + + + 37 + 822 + Records, 1950 Source Records (1 of 2) and advertising schedule,1950 + + + + + + 38 + 823 + Records, Advertising publications historical record (2 folders),1950 + + + + + + 38 + 824 + Records, Advertising publications historical record (2 folders),1950 + + + + + + 38 + 825 + Records, 1951 Source reports/ 1952-1956 Summaries,1951-1956 + + + + + + 38 + 826 + Records, 1952 Source reports (partial)/ 1951-52 weekly competitive service reports,1951-1952 + + + + + + 38 + 827 + Records, Advertising records,1952 + + + + + + 38 + 828 + Records, Advertising records,1952 + + + + + + 38 + 829 + Records, Advertising records1953 + + + + + + 38 + 830 + Records, 1953 Source reports, analysis of advertising, 1954 advertising schedule,1953-1954 + + + + + + 38 + 831 + Records, Source reports, advertising schedule,1954 + + + + + + 38 + 832 + Records, Source reports, advertising schedule,1954 + + + + + + 38 + 833 + Records, Source reports, sales receipts, ad schedule,1955 + + + + + + 39 + 834 + Records, Advertising orders,1955-1956 + + + + + + 39 + 835 + Records, Source reports,1956 + + + + + + 39 + 836 + Records, Source reports,1957 + + + + + + 39 + 837 + Records, Source reports,1957 + + + + + + 39 + 838 + Records, Sales reports,1957 + + + + + + 39 + 839 + Records, 1958 Advertising costs, 1959 advertising schedule,1958-1959 + + + + + + 39 + 840 + Records, Advertising schedule and report,1958 + + + + + + 39 + 841 + Records, Advertising orders,1956-1960 + + + + + + 39 + 842 + Records, Advertising orders,1956-1960 + + + + + + 39 + 843 + Records, Source reports,1959-1960 + + + + + + 39 + 844 + Records, Source reports,1961 + + + + + + 39 + 845 + Records, Source reports,1962 + + + + + + 39 + 846 + Records, Source reports and year-end summary,1963 + + + + + + 39 + 847 + Records, Source reports,1963 + + + + + + 39 + 848 + Records, Source reports,1964 + + + + + + 39 + 849 + Records, Source reports,1969 + + + + + + 39 + 850 + Records, Advertising schedule,1966 + + + + + + 39 + 851 + Records, Source reports,1967 + + + + + + 39 + 852 + Records, Source reports,1968 + + + + + + 39 + 853 + Records, Source reports,1969 + + + + + + 39 + 854 + Records, Source reports,1970 + + + + + + 39 + 855 + Records, Source reports monthly Oct.-Dec. 1971, and sales reports. Monthly totals/ magazine year-end summary,1971 + + + + + + 39 + 856 + Records, 1961-1970 Source reports (annual), 1953-1963 analysis of advertising,1953-1970 + + + + + + 40 + 857 + Records, Source reports,1972-1982 + + + + + + 40 + 858 + Records, Source reports,1972-1982 + + + + + + 40 + 859 + Records, Source reports,1972-1982 + + + + + + 40 + 860 + Records, Source reports,1972-1982 + + + + + + 40 + 861 + Records, Source reports,1972-1982 + + + + + + 40 + 862 + Records, Source reports,1972-1982 + + + + + + 40 + 863 + Records, Source reports,1972-1982 + + + + + + 40 + 864 + Records, Source reports,1972-1982 + + + + + + 40 + 865 + Records, Source reports,1972-1982 + + + + + + 40 + 866 + Records, Source reports,1972-1982 + + + + + + 40 + 867 + Records, Source reports,1972-1982 + + + + + + 40 + 868 + Records, Source reports,1972-1982 + + + + + + 41 + 871 + Records, Newspaper and magazine ads,1910-1919 + + + + + + 41 + 872 + Records, Newspaper and magazine ads,1920-1939 + + + + + + 41 + 873 + Records, Newspaper and magazine ads,1940-1959 + + + + + + 41 + 874 + Records, Newspaper and magazine ads,1960-1979 + + + + + + 41 + 870 + Records, Competitor’s Advertising,1960-1970 + + + + + + 41 + 869 + Records, Metropolitan Sunday Magazine Group (Scrapbook of 1949 Advertisements, _________, and Sales Records),1949 + + + + + + 42 + 875 + Records, Catalog, brochures including summer cottages,advertisement,1908 + + + + + + 42 + 876 + Records, Catalogs, spring (1) and fall (2),1909 + + + + + + 42 + 877 + Records, Catalog, brochure, and advertisement,1910 + + + + + + 42 + 878 + Records, Booklet, How Three Chicago School Teachers Built Their Aladdin Home-advertisement,1911 + + + + + + 42 + 879 + Records, Catalog (1), Aladdin Interior (three including two different), brochures (2), and advertisements,1912 + + + + + + 42 + 880 + Records, Catalogs (2) and brochures, advertisements,1913 + + + + + + 42 + 881 + Records, Catalogs (2), The Aladdin Builders’ Safeguard (2), Advertisements, (2), Aladdin Interiors (2), Aladdin Homecraft Market Place (2), Farm Buildings (1), and brochures (2 folders),1914 + + + + + + 42 + 882 + Records, Catalog 26 (4), Aladdin Bungalows, Summer Cottages,Fixtures, O.E. Sovereign copy of Aladdin Home-craft Market Place (2), and supplemental catalogs and brochures (2 folders),1915 + + + + + + 42 + 883 + Records, Catalog 26 (4), Aladdin Bungalows, Summer Cottages,Fixtures, O.E. Sovereign copy of Aladdin Home-craft Market Place (2), and supplemental catalogs and brochures (2 folders),1915 + + + + + + 42 + 884 + Records, Catalog 28 (2), and Manual of Construction, Aladdin’s Favorite Recipes, Merchandise catalogs of O. E. Sovereign & A. F. Huebner and paste-up copy of Aladdin Homecraft Market Place, Home equipment, Advance Messenger of Aladdin, furnace, and other brochures. (4 folders),1916 + + + + + + 42 + 885 + Records, Catalog 28 (2), and Manual of Construction, Aladdin’s Favorite Recipes, Merchandise catalogs of O. E. Sovereign & A. F. Huebner and paste-up copy of Aladdin Homecraft Market Place, Home equipment, Advance Messenger of Aladdin, furnace, and other brochures. (4 folders),1916 + + + + + + 42 + 886 + Records, Catalog 28 (2), and Manual of Construction, Aladdin’s Favorite Recipes, Merchandise catalogs of O. E. Sovereign & A. F. Huebner and paste-up copy of Aladdin Homecraft Market Place, Home equipment, Advance Messenger of Aladdin, furnace, and other brochures. (4 folders),1916 + + + + + + 42 + 887 + Records, Catalog 28 (2), and Manual of Construction, Aladdin’s Favorite Recipes, Merchandise catalogs of O. E. Sovereign & A. F. Huebner and paste-up copy of Aladdin Homecraft Market Place, Home equipment, Advance Messenger of Aladdin, furnace, and other brochures. (4 folders),1916 + + + + + + 42 + 888 + Records, Catalog 29 (O. E. Sovereign & N. Hamme copies), merchandise catalog of O. E. Sovereign, and paper copy of Furnishing for the Home, Readi-Cut Farm Buildings (Canadian), and A Little Journey to the Home of Aladdin (2 folders) +,1917 + + + + + + 42 + 889 + Records, Catalog 29 (O. E. Sovereign & N. Hamme copies), merchandise catalog of O. E. Sovereign, and paper copy of Furnishing for the Home, Readi-Cut Farm Buildings (Canadian), and A Little Journey to the Home of Aladdin (2 folders),1917 + + + + + + 42 + 890 + Records, Catalog 30 (2 copies including D.S. Betcone), Les Maisons Aladdin, (2 catalogs in French), and Aladdin Manual of Construction (2) Merchandise catalog (3 Copies including that of G.M. Price) (2 folders),1918 + + + + + + 42 + 891 + Records, (891 is out as of 1-19-10): Catalog 30 (2 copies including D.S. Betcone), Les Maisons Aladdin, (2 catalogs in French), and Aladdin Manual of Construction (2) Merchandise catalog (3 Copies including that of G.M. Price) (2 folders),1918 + + + + + + 42 + 892 + Records, Catalog 42 (2 copies),1929 + + + + + + 43 + 893 + Records, Catalog 32 (4), New Colonial Bungalows and New Aladdinette Homes (2), and miscellaneous brochures (2 folders),1919 + + + + + + 43 + 894 + Records, Catalog 32 (4), New Colonial Bungalows and New Aladdinette Homes (2), and miscellaneous brochures (2 folders),1919 + + + + + + 43 + 895 + Records, New Colonial Bungalows and New Aladdinette Homes, Gun Club Houses, Industrial Housing bulletin catalog, and miscellaneous brochures (2 folders),1920 + + + + + + 43 + 896 + Records, New Colonial Bungalows and New Aladdinette Homes, Gun Club Houses, Industrial Housing bulletin catalog, and miscellaneous brochures (2 folders),1920 + + + + + + 43 + 897 + Records, Aladdinette Homes, Aladdin Homes Made in Canada (W.V. Sovereign copy), Instructions for the Erection Of your Aladdin Home (3), and miscellaneous brochures (2 folders),1921 + + + + + + 43 + 898 + Records, Aladdinette Homes, Aladdin Homes Made in Canada (W.V. Sovereign copy), Instructions for the Erection Of your Aladdin Home (3), and miscellaneous brochures (2 folders),1921 + + + + + + 43 + 899 + Records, Catalog 33 (2), Sale of discontinued designs, miscellaneous brochures,1922 + + + + + + 43 + 900 + Records, Catalogs (4) (2 different; 2 copies of 1), A Solution for Japan’s Housing Problem (2) (2 folders),1923 + + + + + + 43 + 901 + Records, Catalogs (4) (2 different; 2 copies of 1), A Solution for Japan’s Housing Problem (2) (2 folders),1923 + + + + + + 43 + 902 + Records, Catalogs (2 different; 2 copies each), letter, miscellaneous brochures including summer cottages (3) (2 folders),1924 + + + + + + 43 + 903 + Records, Catalogs (2 different; 2 copies each), letter, miscellaneous brochures including summer cottages (3) (2 folders),1924 + + + + + + 43 + 904 + Records, Summer cottages brochure (2) and miscellaneous advertisements,1925 + + + + + + + + 43 + 905 + Records, Catalog 37 (2), Spanish type catalog S-1 (2) (2 folders),1926 + + + + + + 43 + 906 + Records, Catalog 37 (2), Spanish type catalog S-1 (2) (2 folders),1926 + + + + + + 43 + 907 + Records, Catalog, (2 different types: 3 copies of 1, 3 marked up) Aladdin City, Florida, brochure, (3) manuscript copy of house brochures, Larger homes brochure (3), manuscript copies of houses, summer cottages, (3 including marked-up copy), house furnishings brochure (3), and other brochures (2 folders),1927 + + + + + + 43 + 908 + Records, Catalog, (2 different types: 3 copies of 1, 3 marked up) Aladdin City, Florida, brochure, (3) manuscript copy of house brochures, Larger homes brochure (3), manuscript copies of houses, summer cottages, (3 including marked-up copy), house furnishings brochure (3), and other brochures (2 folders),1927 + + + + + + 43 + 909 + Records, Catalog (2) Aladdin Homecraft Wall Coverings (Sample book), miscellaneous brochures, color card (2 folders),1928 + + + + + + 43 + 910 + Records, Catalog (2) Aladdin Homecraft Wall Coverings (Sample book), miscellaneous brochures, color card (2 folders),1928 + + + + + + 43 + 911 + Records, Catalog 42 (2) and miscellaneous brochures (2 folders),1929 + + + + + + 43 + 912 + Records, Catalog 43 (5),1930 + + + + + + 43 + 913 + Records, Catalog 44 (5) Used 1931, 1932, 1934,1931-1934 + + + + + + 43 + 914 + Records, Catalog (4) (2 each of 2 different),1932 + + + + + + 43 + 915 + Records, Catalog 45 (3) and follow-up,1933 + + + + + + 44 + 916 + Records, Catalog (4), Trailer brochure,1934 + + + + + + 44 + 917 + Records, Catalog 47 (3),1935 + + + + + + 44 + 918 + Records, Catalog 48 (3) and follow-up, Everywhere is Home trailer brochure (6), Aladdin’s New Pullman Home (2 folders),1936 + + + + + + 44 + 919 + Records, Catalog 48 (3) and follow-up, Everywhere is Home trailer brochure (6), Aladdin’s New Pullman Home (2 folders),1936 + + + + + + 44 + 920 + Records, Catalog (2) and follow-up, Aladdin’s New Pullman Home brochures, mailing list (3 folders),1937 + + + + + + 44 + 921 + Records, Catalog (2) and follow-up, Aladdin’s New Pullman Home brochures, mailing list (3 folders),1937 + + + + + + 44 + 922 + Records, Catalog (2) and follow-up, Aladdin’s New Pullman Home brochures, mailing list (3 folders),1937 + + + + + + 44 + 923 + Records, Catalog 49 (3 incl. 2 different) and follow-up,Homeward Bound and Low-Cost Homes catalogs,1938 + + + + + + 44 + 924 + Records, Catalog 50 (4) and follow-up (2 folders),1939 + + + + + + 44 + 925 + Records, Catalog 50 (4) and follow-up (2 folders),1939 + + + + + + 44 + 926 + Records, Catalog 52 (2) and follow-up (2 folders),1940 + + + + + + 44 + 927 + Records, Catalog 52 (2) and follow-up (2 folders),1940 + + + + + + 44 + 928 + Records, Catalog (3), price lists, and follow-up (2 folders),1941 + + + + + + 44 + 929 + Records, Catalog (3), price lists, and follow-up (2 folders),1941 + + + + + + 44 + 930 + Records, Aladdin Five-Man Huts brochure (6), other military brochures, military project chart (2),1942 + + + + + + 44 + 931 + Records, Prefab Brochure (W.E. Schultz copy),1943 + + + + + + 44 + 932 + Records, Milling price list,1944 + + + + + + 44 + 933 + Records, Catalog and price lists. (Note: This is a reprint of the 1941 catalog. See letter in 1946 folder),1945 + + + + + + 44 + 934 + Records, Letter re government materials controls, catalog with paste-up French translation,1946 + + + + + + 44 + 935 + Records, Miscellaneous direct mail advertisements,1940-1950 + + + + + + 44 + 936 + Records, Catalog (4) (Note: This is a reprint of the 1941 catalog),1947 + + + + + + 44 + 937 + Records, Catalog (4) and follow-up, catalogs with houses sold models changed (3) (2 folders),1948 + + + + + + 44 + 938 + Records, Catalog (4) and follow-up, catalogs with houses sold models changed (3) (2 folders),1948 + + + + + + 44 + 939 + Records, Catalog 54 (4) and follow-up, marked up catalogs, catalogs with notes (5), price lists, and miscellaneous material (2 folders),1949 + + + + + + 44 + 940 + Records, Catalog 54 (4) and follow-up, marked up catalogs, catalogs with notes (5), price lists, and miscellaneous material (2 folders),1949 + + + + + + 44 + 941 + Records, Catalog 55 (4), marked-up catalogs (4), lists of houses sold, model specs, The New Look in Homes for 1950 (2 copies including 1 with attached employee dinner invitation and list of long-term employees), Summer Cottages (6, incl. 1 with number of houses sold), photogravure brochure and letter,1950 + + + + + + 44 + 942 + Records, Catalog 55 (4), marked-up catalogs (4), lists of houses sold, model specs, The New Look in Homes for 1950 (2 copies including 1 with attached employee dinner invitation and list of long-term employees), Summer Cottages (6, incl. 1 with number of houses sold), photogravure brochure and letter,1950 + + + + + + 45 + 943 + Records, Catalogs (4), marked-up catalog (3) and follow up with Golden Rule letter brochures (8) (2 folders),1951 + + + + + + 45 + 944 + Records, Catalogs (4), marked-up catalog (3) and follow up with Golden Rule letter brochures (8) (2 folders),1951 + + + + + + 45 + 945 + Records, Catalog 57 (4), marked-up catalogs (2), follow-up, including Good Houses (5 copies), and other brochures (2 folders),1952 + + + + + + 45 + 946 + Records, Catalog 57 (4), marked-up catalogs (2), follow-up, including Good Houses (5 copies), and other brochures (2 folders),1952 + + + + + + 45 + 947 + Records, Marked up catalogs (6), follow-up and special spring follow-up, brochures: Golden Rule… (3), Readi-Cut Homes (4) paint brochure, list of sales (3 folders),1953 + + + + + + 45 + 948 + Records, Marked up catalogs (6), follow-up and special spring follow-up, brochures: Golden Rule… (3), Readi-Cut Homes (4) paint brochure, list of sales (3 folders),1953 + + + + + + 45 + 949 + Records, Marked up catalogs (6), follow-up and special spring follow-up, brochures: Golden Rule… (3), Readi-Cut Homes (4) paint brochure, list of sales (3 folders),1953 + + + + + + 45 + 950 + Records, Catalog (3), follow-up, and extra follow-up including paint card (3 folders),1954 + + + + + + 45 + 951 + Records, Catalog (3), follow-up, and extra follow-up including paint card (3 folders),1954 + + + + + + 45 + 952 + Records, Catalog (3), follow-up, and extra follow-up including paint card (3 folders),1954 + + + + + + 45 + 953 + Records, Catalog (5) including 3 marked-up, and brochures (2 folders),1955 + + + + + + 46 + 954 + Records, Catalog (5), preview brochure (5), other brochures, follow-up, marked-up catalog, truss plan blueprint for 32’ x 74’ Westminister Church with list of Aladdin churches (3 folders),1956 + + + + + + 46 + 955 + Records, Catalog (5), preview brochure (5), other brochures, follow-up, marked-up catalog, truss plan blueprint for 32’ x 74’ Westminister Church with list of Aladdin churches (3 folders),1956 + + + + + + 46 + 956 + Records, Catalog (5), preview brochure (5), other brochures, follow-up, marked-up catalog, truss plan blueprint for 32’ x 74’ Westminister Church with list of Aladdin churches (3 folders),1956 + + + + + + 46 + 957 + Records, Catalog (4), preview brochure (4), other brochures,follow-up, marked-up catalog, cottages & motels discontinued (card), pamphlets, price lists. (3 folders),1957 + + + + + + 46 + 958 + Records, Catalog (4), preview brochure (4), other brochures,follow-up, marked-up catalog, cottages & motels discontinued (card), pamphlets, price lists. (3 folders),1957 + + + + + + 46 + 959 + Records, Catalog (4), preview brochure (4), other brochures,follow-up, marked-up catalog, cottages & motels discontinued (card), pamphlets, price lists. (3 folders),1957 + + + + + + 46 + 960 + Records, Catalog (4), preview brochure (4), other brochures,follow-up, marked-up catalog, cottages & motels discontinued (card), pamphlets, price lists. (3 folders),1957 + + + + + + 47 + 961 + Records, Catalog (3), marked-up catalogs (3), and follow-up - colors, used, coverage, notes (3 folders),1958 + + + + + + 47 + 962 + Records, Catalog (3), marked-up catalogs (3), and follow-up - colors, used, coverage, notes (3 folders),1958 + + + + + + 47 + 963 + Records, Catalog (3), marked-up catalogs (3), and follow-up - colors, used, coverage, notes (3 folders),1958 + + + + + + 47 + 964 + Records, Catalog (3), catalog with sales marked, follow-up, and brochures (3 folders),1959 + + + + + + 47 + 965 + Records, Catalog (3), catalog with sales marked, follow-up, and brochures (3 folders),1959 + + + + + + 47 + 966 + Records, Catalog (3), catalog with sales marked, follow-up, and brochures (3 folders),1959 + + + + + + 47 + 967 + Records, Catalog (3), catalog with sales marked, follow-up, Vacation Homes (7) including marked up B/W copy. (3 folders),1960 + + + + + + 47 + 968 + Records, Catalog (3), catalog with sales marked, follow-up, Vacation Homes (7) including marked up B/W copy. (3 folders),1960 + + + + + + 47 + 969 + Records, Catalog (3), catalog with sales marked, follow-up, Vacation Homes (7) including marked up B/W copy. (3 folders),1960 + + + + + + 48 + 970 + Records, Catalog (4), brochures, price lists,1961 + + + + + + 48 + 971 + Records, Catalog (3) and follow-up (2 folders),1962 + + + + + + 48 + 972 + Records, Catalog (3) and follow-up (2 folders),1962 + + + + + + 48 + 973 + Records, Catalog (5) and follow-up, Aladdin Shopper (3), and brochures (2 folders),1963 + + + + + + 48 + 974 + Records, Catalog (5) and follow-up, Aladdin Shopper (3), and brochures (2 folders),1963 + + + + + + 48 + 975 + Records, Catalog (2) and follow-up (Note: this is a reprint of the 1963 catalog) (2 folders),1964 + + + + + + 48 + 976 + Records, Catalog (2) and follow-up (Note: this is a reprint of the 1963 catalog) (2 folders),1964 + + + + + + 48 + 977 + Records, Catalog (2), supplement (4)(Note: This is a reprint of the 1963 catalog),1965 + + + + + + 48 + 978 + Records, Catalog (4) and follow-up, brochure “Aladdin’s Shopper” (2 folders),1966 + + + + + + 48 + 979 + Records, Catalog (4) and follow-up, brochure “Aladdin’s Shopper” (2 folders),1966 + + + + + + 48 + 980 + Records, Catalog (4) (note: published in 1966),1967 + + + + + + 48 + 981 + Records, Catalog (3) and follow-up (2 folders),1968 + + + + + + 48 + 982 + Records, Catalog (3) and follow-up (2 folders),1968 + + + + + + 48 + 983 + Records, Catalog (3) and follow-up (2 folders),1969 + + + + + + 48 + 984 + Records, Catalog (3) and follow-up (2 folders),1969 + + + + + + 48 + 985 + Records, Catalog (3) and follow-up (2 folders),1970 + + + + + + 48 + 986 + Records, Catalog (3) and follow-up (2 folders),1970 + + + + + + 48 + 987 + Records, Catalog (3) and follow-up (2 folders),1971 + + + + + + 48 + 988 + Records, Catalog (3) and follow-up (2 folders),1971 + + + + + + 49 + 989 + Records, Catalog (3) and follow-up (2 folders),1972 + + + + + + 49 + 990 + Records, Catalog (3) and follow-up (2 folders),1972 + + + + + + 49 + 991 + Records, Catalog (3) and follow-up (2 folders),1973 + + + + + + 49 + 992 + Records, Catalog (3) and follow-up (2 folders),1973 + + + + + + 49 + 993 + Records, Catalog (2) and follow-up (2 folders),1974 + + + + + + 49 + 994 + Records, Catalog (2) and follow-up (2 folders),1974 + + + + + + 49 + 995 + Records, Catalog and follow-up (2 folders),1975 + + + + + + 49 + 996 + Records, Catalog and follow-up (2 folders),1975 + + + + + + 49 + 997 + Records, Catalog (2) and follow-up (2 folders),1976 + + + + + + 49 + 998 + Records, Catalog (2) and follow-up (2 folders),1976 + + + + + + 49 + 999 + Records, Catalog and follow-up (2 folders),1977 + + + + + + 49 + 1000 + Records, Catalog and follow-up (2 folders),1977 + + + + + + 49 + 1001 + Records, Catalog and follow-up (2 folders),1978 + + + + + + 49 + 1002 + Records, Catalog and follow-up (2 folders),1978 + + + + + + 49 + 1003 + Records, Catalog (2) and follow-up (2 folders),1979 + + + + + + 49 + 1004 + Records, Catalog (2) and follow-up (2 folders),1979 + + + + + + 49 + 1005 + Records, Brochures and follow-up (2 folders),1980 + + + + + + 49 + 1006 + Records, Brochures and follow-up (2 folders),1980 + + + + + + 49 + 1007 + Records, Follow-up,1981 + + + + + + 49 + 1008 + Records, Follow-up,1981 + + + + + + 49 + 1009 + Records, The Wedge - 3 hardbound volumes, containing volumes 1-2, 3-4, 5-6 (March 1913-Jan. 1914) and 20 paperbound volumes from vol. 2 no.2 (Sept 1913) to vol. 7, no. 6 (Aug. 1916) (Incomplete with duplicates),1913-1916 + + + + + + 49 + 1010 + Records, Aladdin’s Magazine - 15 paperbound volumes in small format from vol. 8 to no.1 (Sept 1916) to vol. 10, no. 3 (Jan 1918) Incomplete with duplicates and 8 paper bound volumes. In large format from April 1919 to Jan. 1932. (Incomplete with duplicates),1916-1932 + + + + + + 49 + 1011 + Records, Aladdin’s Weekly - 23 paperbound volumes in large format from vol. 7, no. 2, (Feb 8, 1919 to vol. 8, no. 11 (April 17, 1920). (Incomplete with duplicates),1919-1920 + + + + + + 50 + undesignated + Records, Advertising, Direct Mail Material, including catalog and related sales material; Industrial Catalog, c. 1920 (4 copies); Industrial Housing Price Lists, 1919-1923; Industrial Housing Floor Plans; Special Sales Brochures, Commercial Buildings (hotel, school, church) and group housing “Aladdin Built This Entire City,” advertisement, c. 1917,1917, 1919-1923 + + + + + + 51 + 297 + Records, Art Work and Floor Plans (primarily for annual catalog) - Astoria - black and white,undated + + + + + + 51 + 298 + Records, Art Work and Floor Plans (primarily for annual catalog) - Austin - color,undated + + + + + + 51 + 299 + Records, Art Work and Floor Plans (primarily for annual catalog) - Berkeley - color,1966 + + + + + + 51 + 300 + Records, Art Work and Floor Plans (primarily for annual catalog) - Bristol - color,undated + + + + + + 51 + 301 + Records, Art Work and Floor Plans (primarily for annual catalog) - Canton - black and white,1958 + + + + + + 51 + 302 + Records, Art Work and Floor Plans (primarily for annual catalog) - Canyon - black and white,1958-1959 + + + + + + 51 + 310 + Records, Art Work and Floor Plans (primarily for annual catalog) - Canyon - color,1960 + + + + + + 51 + 303 + Records, Art Work and Floor Plans (primarily for annual catalog) - Clarksdale - color (on 1-5-10, this item checked out),1958 + + + + + + 51 + 304 + Records, Art Work and Floor Plans (primarily for annual catalog) - Clayton - color,1960 + + + + + + 51 + 305 + Records, Art Work and Floor Plans (primarily for annual catalog) - Clifton - color,1961 + + + + + + 51 + 306 + Records, Art Work and Floor Plans (primarily for annual catalog) - Cornell - black and white,1957 + + + + + + 51 + 307 + Records, Art Work and Floor Plans (primarily for annual catalog) - Coronado - black and white,1959 + + + + + + 51 + 308 + Records, Art Work and Floor Plans (primarily for annual catalog) - Crestwood - color,1965 + + + + + + 51 + 309 + Records, Art Work and Floor Plans (primarily for annual catalog) - Driftwood - color,undated + + + + + + 52 + 311 + Records, Art Work and Floor Plans (primarily for annual catalog) - Forest Hill - color,1961 + + + + + + 52 + 312 + Records, Art Work and Floor Plans (primarily for annual catalog) - Foreston - color,undated + + + + + + 52 + 313 + Records, Art Work and Floor Plans (primarily for annual catalog) - Friendship - black and white,undated + + + + + + 52 + 314 + Records, Art Work and Floor Plans (primarily for annual catalog - Friendship - color,undated + + + + + + 52 + 315 + Records, Art Work and Floor Plans (primarily for annual catalog - Fulton - color,1960 + + + + + + 52 + 316 + Records, Art Work and Floor Plans (primarily for annual catalog - Hampton - color,undated + + + + + + 52 + 317 + Records, Art Work and Floor Plans (primarily for annual catalog - Hartford - color,undated + + + + + + 52 + 318 + Records, Art Work and Floor Plans (primarily for annual catalog - Hummel - color,undated + + + + + + 52 + 319 + Records, Art Work and Floor Plans (primarily for annual catalog - Laredo - color,1964 + + + + + + 52 + 320 + Records, Art Work and Floor Plans (primarily for annual catalog - Longwood - color,undated + + + + + + 52 + 321 + Records, Art Work and Floor Plans (primarily for annual catalog - Orlando - black and white, 1958-1959,1943-1944 + + + + + + 52 + 322 + Records, Art Work and Floor Plans (primarily for annual catalog - Parkwood - color,1964 + + + + + + 52 + 323 + Records, Art Work and Floor Plans (primarily for annual catalog - Richmond - color,1965 + + + + + + 52 + 324 + Records, Art Work and Floor Plans (primarily for annual catalog - Riviera - color,undated + + + + + + 52 + 325 + Records, Art Work and Floor Plans (primarily for annual catalog - Rockwood - color,1966 + + + + + + 52 + 326 + Records, Art Work and Floor Plans primarily for annual catalog - Savannah - color,1965 + + + + + + 52 + 327 + Records, Art Work and Floor Plans primarily for annual catalog - Shelby - black and white,undated + + + + + + 52 + 328 + Records, Art Work and Floor Plans primarily for annual catalog - Sheridan - color,1959 + + + + + + 52 + 329 + Records, Art Work and Floor Plans primarily for annual catalog - Sherwood - color,1965 + + + + + + 52 + 330 + Records, Art Work and Floor Plans primarily for annual catalog - Trenton - color,undated + + + + + + 52 + 331 + Records, Art Work and Floor Plans primarily for annual catalog - Tulane - black and white,1958 + + + + + + 52 + 332 + Records, Art Work and Floor Plans primarily for annual catalog - Wilmington - color,1959 + + + + + + 53 + 1012 + Records, Art Work and Floor Plans (primarily for annual catalog) - Acacia (black and white),undated + + + + + + 53 + 1013 + Records, Art Work and Floor Plans (primarily for annual catalog) - Acacia (also indentified as Norfolk) (black and white) +,undated + + + + + + 53 + 1014 + Records, Art Work and Floor Plans (primarily for annual catalog) - Acacia (color),undated + + + + + + 53 + 1015 + Records, Art Work and Floor Plans (primarily for annual catalog) - Alamo (black and white),undated + + + + + + 53 + 1016 + Records, Art Work and Floor Plans (primarily for annual catalog) - Alamo (color, 2 versions),undated + + + + + + 53 + 1017 + Records, Art Work and Floor Plans (primarily for annual catalog) - Alvarado (black and white, photograph),1958 + + + + + + 53 + 1018 + Records, Art Work and Floor Plans (primarily for annual catalog) - Ambassador (black and white),undated + + + + + + 53 + 1019 + Records, Art Work and Floor Plans (primarily for annual catalog) - Ambassador (color),undated + + + + + + 53 + 1020 + Records, Art Work and Floor Plans (primarily for annual catalog) - Astoria (black and white),undated + + + + + + 53 + 1021 + Records, Art Work and Floor Plans (primarily for annual catalog) - Atlanta (black and white),undated + + + + + + 53 + 1022 + Records, Art Work and Floor Plans (primarily for annual catalog) - Augusta (color),undated + + + + + + 53 + 1023 + Records, Art Work and Floor Plans (primarily for annual catalog) - Bellevue (black and white photograph),undated + + + + + + 53 + 1024 + Records, Art Work and Floor Plans (primarily for annual catalog) - Belmont 1 (color),undated + + + + + + 53 + 1025 + Records, Art Work and Floor Plans (primarily for annual catalog) - Belmont (color),1962 + + + + + + 53 + 1026 + Records, Art Work and Floor Plans (primarily for annual catalog) - Birchwood (black and white),undated + + + + + + 53 + 1027 + Records, Art Work and Floor Plans (primarily for annual catalog) - Birchwood (black and white photograph),undated + + + + + + 53 + 1028 + Records, Art Work and Floor Plans (primarily for annual catalog) - Brentwood 1 (black and white),undated + + + + + + 53 + 1029 + Records, Art Work and Floor Plans (primarily for annual catalog) - Brentwood (black and white),undated + + + + + + 53 + 1030 + Records, Art Work and Floor Plans (primarily for annual catalog) - Brentwood (color),undated + + + + + + 53 + 1031 + Records, Art Work and Floor Plans (primarily for annual catalog) - Brighton (color, catalog),1960 + + + + + + 53 + 1032 + Records, Art Work and Floor Plans (primarily for annual catalog) - Brockton (black and white photograph, 2 prints),undated + + + + + + 54 + 1033 + Records, Art Work and Floor Plans (primarily for annual catalog) - Cambridge (black and white),undated + + + + + + 54 + 1034 + Records, Art Work and Floor Plans (primarily for annual catalog) - Cambridge (black and white),1954 + + + + + + 54 + 1035 + Records, Art Work and Floor Plans (primarily for annual catalog) - Cambridge (black and white, color),1954 + + + + + + 54 + 1036 + Records, Art Work and Floor Plans (primarily for annual catalog) - Canton (black and white),1958 + + + + + + 54 + 1037 + Records, Art Work and Floor Plans (primarily for annual catalog) - Canyon (color),1959 + + + + + + 54 + 1038 + Records, Art Work and Floor Plans (primarily for annual catalog) - Catalina (black and white),undated + + + + + + 54 + 1039 + Records, Art Work and Floor Plans (primarily for annual catalog) - Catalina (color),undated + + + + + + 54 + 1040 + Records, Art Work and Floor Plans (primarily for annual catalog) - Cedars (black and white),undated + + + + + + 54 + 1041 + Records, Art Work and Floor Plans (primarily for annual catalog) - Clarksdale (color),1958 + + + + + + 54 + 1042 + Records, Art Work and Floor Plans (primarily for annual catalog) - Clinton (color),undated + + + + + + 54 + 1043 + Records, Art Work and Floor Plans (primarily for annual catalog) - Concord (black and white),undated + + + + + + 54 + 1044 + Records, Art Work and Floor Plans (primarily for annual catalog) - Cornell (color),undated + + + + + + 54 + 1045 + Records, Art Work and Floor Plans (primarily for annual catalog) - Coronado (black and white),undated + + + + + + 54 + 1046 + Records, Art Work and Floor Plans (primarily for annual catalog) - Coronado (color),undated + + + + + + 54 + 1047 + Records, Art Work and Floor Plans (primarily for annual catalog) - Coronet (black and white),undated + + + + + + 54 + 1048 + Records, Art Work and Floor Plans (primarily for annual catalog) - Coronet (color),1960 + + + + + + 54 + 1049 + Records, Art Work and Floor Plans (primarily for annual catalog) - Cranbrook (black and white photograph),1958 + + + + + + 55 + 1050 + Records, Art Work and Floor Plans (primarily for annual catalog) - Dayton (color),undated + + + + + + 55 + 1051 + Records, Art Work and Floor Plans (primarily for annual catalog) - Del Mar (black and white),undated + + + + + + 55 + 1052 + Records, Art Work and Floor Plans (primarily for annual catalog) - Del Mar (color),undated + + + + + + 55 + 1053 + Records, Art Work and Floor Plans (primarily for annual catalog) - Del Monte (color),1954-1955 + + + + + + 55 + 1054 + Records, Art Work and Floor Plans (primarily for annual catalog) - Del Ray 1 (black and white),undated + + + + + + 55 + 1055 + Records, Art Work and Floor Plans (primarily for annual catalog) - Del Ray (color),undated + + + + + + 55 + 1056 + Records, Art Work and Floor Plans (primarily for annual catalog) - Dexter (color),undated + + + + + + 55 + 1057 + Records, Art Work and Floor Plans (primarily for annual catalog) - Edison (black and white photograph),undated + + + + + + 55 + 1058 + Records, Art Work and Floor Plans (primarily for annual catalog) - El Paso (black and white photograph),undated + + + + + + 55 + 1059 + Records, Art Work and Floor Plans (primarily for annual catalog) - El Rancho (color),undated + + + + + + 55 + 1060 + Records, Art Work and Floor Plans (primarily for annual catalog) - Embassy 1 (black and white),undated + + + + + + 55 + 1061 + Records, Art Work and Floor Plans (primarily for annual catalog) - Embassy (black and white),undated + + + + + + 55 + 1062 + Records, Art Work and Floor Plans (primarily for annual catalog) - Embassy (color),undated + + + + + + 55 + 1063 + Records, Art Work and Floor Plans (primarily for annual catalog) - Evanston (color),1954 + + + + + + 56 + 1064 + Records, Art Work and Floor Plans (primarily for annual catalog) - Flamingo (black and white),undated + + + + + + 56 + 1065 + Records, Art Work and Floor Plans (primarily for annual catalog) - Flamingo (color),1953 + + + + + + 56 + 1066 + Records, Art Work and Floor Plans (primarily for annual catalog) - Friendship (black and white, proof),undated + + + + + + 56 + 1067 + Records, Art Work and Floor Plans (primarily for annual catalog) - Friendship (black and white, proof),undated + + + + + + 56 + 1068 + Records, Art Work and Floor Plans (primarily for annual catalog) - Gables (black and white),undated + + + + + + 56 + 1069 + Records, Art Work and Floor Plans (primarily for annual catalog) - Glenbrooke (color),undated + + + + + + 56 + 1070 + Records, Art Work and Floor Plans (primarily for annual catalog) - Glen Haven (color),undated + + + + + + 56 + 1071 + Records, Art Work and Floor Plans (primarily for annual catalog) - Greenbrier (color),undated + + + + + + 56 + 1072 + Records, Art Work and Floor Plans (primarily for annual catalog) - Groveland (black and white photograph),1954 + + + + + + 56 + 1073 + Records, Art Work and Floor Plans (primarily for annual catalog) - Highwood (black and white photograph),undated + + + + + + 56 + 1074 + Records, Art Work and Floor Plans (primarily for annual catalog) - Highwood (black and white photograph),1957 + + + + + + 56 + 1075 + Records, Art Work and Floor Plans (primarily for annual catalog) - Hillsdale (color),undated + + + + + + 56 + 1076 + Records, Art Work and Floor Plans (primarily for annual catalog) - Houston (black and white photograph),undated + + + + + + 56 + 1077 + Records, Art Work and Floor Plans (primarily for annual catalog) - Iris (black and white photograph),undated + + + + + + 56 + 1078 + Records, Art Work and Floor Plans (primarily for annual catalog) - Ivywood (color),undated + + + + + + 56 + 1079 + Records, Art Work and Floor Plans (primarily for annual catalog) - Jasmine (color),undated + + + + + + 57 + 1080 + Records, Art Work and Floor Plans (primarily for annual catalog) - Lake Geneva (black and white, black and white +photograph),1950 + + + + + + 57 + 1081 + Records, Art Work and Floor Plans (primarily for annual catalog) - Lake George (black and white),1950 + + + + + + 57 + 1082 + Records, Art Work and Floor Plans (primarily for annual catalog) - Laurel (black and white),undated + + + + + + 57 + 1083 + Records, Art Work and Floor Plans (primarily for annual catalog) - Laurel,color + + + + + + 57 + 1084 + Records, Art Work and Floor Plans (primarily for annual catalog) - Laurel (black and white),1954 + + + + + + 57 + 1085 + Records, Art Work and Floor Plans (primarily for annual catalog) - Lennox (black and white photograph),1953 + + + + + + 57 + 1086 + Records, Art Work and Floor Plans (primarily for annual catalog) - Lexington (black and white),1951 + + + + + + 57 + 1087 + Records, Art Work and Floor Plans (primarily for annual catalog) - Lexington (color),1951 + + + + + + 57 + 1088 + Records, Art Work and Floor Plans (primarily for annual catalog) - Lorain (color),undated + + + + + + 57 + 1089 + Records, Art Work and Floor Plans (primarily for annual catalog) - Madison (color),undated + + + + + + 57 + 1090 + Records, Art Work and Floor Plans (primarily for annual catalog) - Magnolia (black and white),undated + + + + + + 57 + 1091 + Records, Art Work and Floor Plans (primarily for annual catalog) - Manhasset (black and white),undated + + + + + + 57 + 1092 + Records, Art Work and Floor Plans (primarily for annual catalog) - Mayfair (black and white) (also identified as Sylvan, Alvarado, Colony),1952 + + + + + + 57 + 1093 + Records, Art Work and Floor Plans (primarily for annual catalog) - Mayfair (color),undated + + + + + + 57 + 1094 + Records, Art Work and Floor Plans (primarily for annual catalog) - Montclair 1 (black and white),undated + + + + + + 57 + 1095 + Records, Art Work and Floor Plans (primarily for annual catalog) - Nantucket (black and white; black and white photograph; negative,1950 + + + + + + 57 + 1096 + Records, Art Work and Floor Plans (primarily for annual catalog) - Naraganset (black and white; black and white photograph; negative,1950 + + + + + + 57 + 1097 + Records, Art Work and Floor Plans (primarily for annual catalog) - Newport (color),undated + + + + + + 57 + 1098 + Records, Art Work and Floor Plans (primarily for annual catalog) - Newport 6 (black and white),undated + + + + + + 57 + 1099 + Records, Art Work and Floor Plans (primarily for annual catalog) - Norfolk (black and white),undated + + + + + + 57 + 1100 + Records, Art Work and Floor Plans (primarily for annual catalog) - Norfolk (black and white photograph),1952 + + + + + + 57 + 1101 + Records, Art Work and Floor Plans (primarily for annual catalog) - Northport (black and white; black and white photograph; negative),1950 + + + + + + 57 + 1102 + Records, Art Work and Floor Plans (primarily for annual catalog) - Ono (black and white),undated + + + + + + 58 + 1103 + Records, Art Work and Floor Plans (primarily for annual catalog) - Palo Alto (black and white),undated + + + + + + 58 + 1104 + Records, Art Work and Floor Plans (primarily for annual catalog) - Pilgrim (black and white),undated + + + + + + 58 + 1105 + Records, Art Work and Floor Plans (primarily for annual catalog) - Pilgrim (color),undated + + + + + + 58 + 1106 + Records, Art Work and Floor Plans (primarily for annual catalog) - Pinecrest (black and white),1956 + + + + + + 58 + 1107 + Records, Art Work and Floor Plans (primarily for annual catalog) - Pinewood (black and white),1950 + + + + + + 58 + 1108 + Records, Art Work and Floor Plans (primarily for annual catalog) - Plaza (black and white; color),1953 + + + + + + 58 + 1109 + Records, Art Work and Floor Plans (primarily for annual catalog) - Plaza (color),undated + + + + + + 58 + 1110 + Records, Art Work and Floor Plans (primarily for annual catalog) - Rambler (color), front and rear view,1954 + + + + + + 58 + 1111 + Records, Art Work and Floor Plans (primarily for annual catalog) - Rio Grande (color),undated + + + + + + 58 + 1112 + Records, Art Work and Floor Plans (primarily for annual catalog) - Rivera (color),undated + + + + + + 58 + 1113 + Records, Art Work and Floor Plans (primarily for annual catalog) - Roanoke (black and white),1957 + + + + + + 58 + 1114 + Records, Art Work and Floor Plans (primarily for annual catalog) - Rockport (black and white),undated + + + + + + 58 + 1115 + Records, Art Work and Floor Plans (primarily for annual catalog) - Royton (black and white),1953 + + + + + + 58 + 1116 + Records, Art Work and Floor Plans (primarily for annual catalog) - Royton 1 (color),1955 + + + + + + 58 + 1117 + Records, Art Work and Floor Plans (primarily for annual catalog) - San Diego (black and white),1954 + + + + + + 58 + 1118 + Records, Art Work and Floor Plans (primarily for annual catalog) - San Diego (black and white in 2 versions; color),1954 + + + + + + 58 + 1119 + Records, Art Work and Floor Plans (primarily for annual catalog) - Santa Fe (color),undated + + + + + + 58 + 1120 + Records, Art Work and Floor Plans (primarily for annual catalog) - Santa Rosa (black and white photograph),undated + + + + + + 58 + 1121 + Records, Art Work and Floor Plans (primarily for annual catalog) - Shelburne (black and white),undated + + + + + + 58 + 1122 + Records, Art Work and Floor Plans (primarily for annual catalog) - St. Lawrence (color; black and white photograph, negative),undated + + + + + + 58 + 1123 + Records, Art Work and Floor Plans (primarily for annual catalog) - Summerset (black and white),undated + + + + + + 58 + 1124 + Records, Art Work and Floor Plans (primarily for annual catalog) - Sunset (black and white photograph negative),undated + + + + + + 58 + 1125 + Records, Art Work and Floor Plans (primarily for annual catalog) - Sunshine (black and white),undated + + + + + + 58 + 1126 + Records, Art Work and Floor Plans (primarily for annual catalog) - Sunshine (black and white photograph, negative),1954 + + + + + + 58 + 1127 + Records, Art Work and Floor Plans (primarily for annual catalog) - Sylvan (black and white photograph),undated + + + + + + 59 + 1128 + Records, Art Work and Floor Plans (primarily for annual catalog) - Topeka (black and white),undated + + + + + + 59 + 1129 + Records, Art Work and Floor Plans (primarily for annual catalog) - Topeka (black and white-outline),undated + + + + + + 59 + 1130 + Records, Art Work and Floor Plans (primarily for annual catalog) - Tulane (black and white),undated + + + + + + 59 + 1131 + Records, Art Work and Floor Plans (primarily for annual catalog) - Ventura (black and white),undated + + + + + + 59 + 1132 + Records, Art Work and Floor Plans (primarily for annual catalog) - Ventura (black and white),undated + + + + + + 59 + 1133 + Records, Art Work and Floor Plans (primarily for annual catalog) - Ventura (color),undated + + + + + + 59 + 1134 + Records, Art Work and Floor Plans (primarily for annual catalog) - Vernon (color),undated + + + + + + 59 + 1135 + Records, Art Work and Floor Plans (primarily for annual catalog) - Vinewood (black and white), undated + + + + + + 59 + 1136 + Records, Art Work and Floor Plans (primarily for annual catalog) - Vinewood (color),undated + + + + + + 59 + 1137 + Records, Art Work and Floor Plans (primarily for annual catalog) - Wenona (black and white; black and white photograph and negative),1950 + + + + + + 59 + 1138 + Records, Art Work and Floor Plans (primarily for annual catalog) - Westport (black and white),undated + + + + + + 59 + 1139 + Records, Art Work and Floor Plans (primarily for annual catalog) - Wilshire (black and white),1956 + + + + + + + 59 + 1140 + Records, Art Work and Floor Plans (primarily for annual catalog) - Winston (black and white),undated + + + + + + 59 + 1141 + Records, Art Work and Floor Plans (primarily for annual catalog) - Wonder Houses (color, 4 houses; 1 black and white +advertisement),undated + + + + + + 59 + 1142 + Records, Art Work and Floor Plans (primarily for annual catalog) - Woodland (black and white photograph),1956 + + + + + + 60 + 1143 + Records, Art Work and Floor Plans (primarily for annual catalog) - Misc. house – photo – B&W,undated + + + + + + 60 + 1144 + Records, Art Work and Floor Plans (primarily for annual catalog) - Misc. house – photo – B&W,undated + + + + + + 60 + 1145 + Records, Art Work and Floor Plans (primarily for annual catalog) - Misc. house – photo – B&W,undated + + + + + + 60 + 1146 + Records, Art Work and Floor Plans (primarily for annual catalog) - Misc. house – photo – B&W,undated + + + + + + 60 + 1147 + Records, Art Work and Floor Plans (primarily for annual catalog) - Misc. house – photo – B&W,undated + + + + + + 60 + 1148 + Records, Art Work and Floor Plans (primarily for annual catalog) - Sketch – house – B&W,undated + + + + + + 60 + 1149 + Records, Art Work and Floor Plans (primarily for annual catalog) - Sketch – house – B&W,undated + + + + + + 60 + 1150 + Records, Art Work and Floor Plans (primarily for annual catalog) - Sketch – house – B&W,undated + + + + + + 60 + 1151 + Records, Art Work and Floor Plans (primarily for annual catalog) - Sketch – house – B&W,undated + + + + + + 60 + 1152 + Records, Art Work and Floor Plans (primarily for annual catalog) - Sketch – house – B&W,undated + + + + + + 60 + 1153 + Records, Art Work and Floor Plans (primarily for annual catalog) - Sketch – house – B&W,undated + + + + + + 60 + 1154 + Records, Art Work and Floor Plans (primarily for annual catalog) - Sketch – house – B&W,undated + + + + + + 60 + 1155 + Records, Art Work and Floor Plans (primarily for annual catalog) - Painting – house – color,undated + + + + + + 60 + 1156 + Records, Art Work and Floor Plans (primarily for annual catalog) - Painting – house – color,undated + + + + + + 60 + 1157 + Records, Art Work and Floor Plans (primarily for annual catalog) - Painting – house – color,undated + + + + + + 60 + 1158 + Records, Art Work and Floor Plans (primarily for annual catalog) - Painting – house – color,undated + + + + + + 61 + 1181 + Records, Art Work and Floor Plans (primarily for annual catalog) - “Aladdin Life Style”: mock-up,undated + + + + + + 61 + 1159 + Records, Art Work and Floor Plans (primarily for annual catalog) - Aladdin Logo: paste-up (black and white, color),undated + + + + + + 61 + 1160 + Records, Art Work and Floor Plans (primarily for annual catalog) - Aladdin office: original drawing given to McKay Press; Photographs, negatives; includes picture of Aladdin house Safran – color,1977 + + + + + + 61 + 1161 + Records, Art Work and Floor Plans (primarily for annual catalog) - Aladdin summer cottages cover (black and white prints of summer cottages, unidentified; prints of interior scenes; color; print of unidentified house),1950 + + + + + + 61 + 1162 + Records, Art Work and Floor Plans (primarily for annual catalog) - Catalog layouts: mock-ups c. 1964 supplement,1964 + + + + + + 61 + 1163 + Records, Art Work and Floor Plans (primarily for annual catalog) - Custom proofs – catalogs: miscellaneous end of series (5 folders),1948-1950 + + + + + + 61 + 1164 + Records, Art Work and Floor Plans (primarily for annual catalog) - Custom proofs – catalogs: miscellaneous end of series (5 folders),1948-1950 + + + + + + 61 + 1165 + Records, Art Work and Floor Plans (primarily for annual catalog) - Custom proofs – catalogs: miscellaneous end of series (5 folders,1948-1950 + + + + + + 61 + 1166 + Records, Art Work and Floor Plans (primarily for annual catalog) - Custom proofs – catalogs: miscellaneous end of series (5 folders,1948-1950 + + + + + + 61 + 1167 + Records, Art Work and Floor Plans (primarily for annual catalog) - Custom proofs – catalogs: miscellaneous end of series (5 folders,1948-1950 + + + + + + 61 + 1169 + Records, Art Work and Floor Plans (primarily for annual catalog) - Linens for illustrations for Book of Instructions,undated + + + + + + 61 + 1170 + Records, Art Work and Floor Plans (primarily for annual catalog) - “The Penalty of Postponement”: paste-up,undated + + + + + + 61 + 1171 + Records, Art Work and Floor Plans (primarily for annual catalog) - Pencil Sketch – Hearth landscape (black and white),undated + + + + + + 61 + 1172 + Records, Art Work and Floor Plans (primarily for annual catalog) - Pencil Sketch – Old couple sketch (black and white),1915 + + + + + + 61 + 1173 + Records, Art Work and Floor Plans (primarily for annual catalog) - Pencil Sketch – Roof and wall sheeting,undated + + + + + + 61 + 1174 + Records, Art Work and Floor Plans (primarily for annual catalog) - Pencil Sketch for Fall follow-up: cover sketch (color),1956 + + + + + + 61 + 1175 + Records, Art Work and Floor Plans (primarily for annual catalog) - Pencil Sketch – Tree setting landscape (black and white),undated + + + + + + 61 + 1168 + Records, Art Work and Floor Plans (primarily for annual catalog) - “Peoples National Bank”: endorsement, mock-up, +correspondence,undated + + + + + + 61 + 1176 + Records, Art Work and Floor Plans (primarily for annual catalog) - Picture Card Types (color, 5 houses unidentified),undated + + + + + + 61 + 1177 + Records, Art Work and Floor Plans (primarily for annual catalog) - Miscellaneous advertisements mock-ups,undated + + + + + + 61 + 1178 + Records, Art Work and Floor Plans (primarily for annual catalog) - Miscellaneous advertisement, Aladdin advertisement in Leslie’s Illustrated Weekly Newspaper, May 13, 1915,1915 + + + + + + 61 + 1179 + Records, Art Work and Floor Plans (primarily for annual catalog) - Advertisement for Aladdin Homes in Ladies Home Journal, February 1917,1917 + + + + + + 61 + 1180 + Records, Art Work and Floor Plans (primarily for annual catalog) - Aladdin Bungalow: A Song, by Ange Lorenzo,1916 + + + + + + 61 + 1182 + Records, Art Work and Floor Plans (primarily for annual catalog) - Aladdin: A New City - brochure n.d., “Say Buddy” A propaganda World War II poster produced by Aladdin Company to produce consumer loyalty n.d., Aladdin Company Christmas Party group photograph - December 1952, Aladdin War Bunk House photograph (black and white), Aladdin Prefabricated Mobil Depot Groups-CCC type fully demountable - poster n.d. (6 copies),1952, undated + + + + + + 62 + 1183 + Records, Art Work and Floor Plans (primarily for annual catalog) - Artwork for attic rooms (black and white, color, catalog),1949 + + + + + + 62 + 1184 + Records, Art Work and Floor Plans (primarily for annual catalog) - Artwork for catalogs and follow-up (black and white, color),1950-1959 + + + + + + 62 + 1185 + Records, Art Work and Floor Plans (primarily for annual catalog) - Artwork for kitchens (color, catalog),1952 + + + + + + 62 + 1186 + Records, Art Work and Floor Plans (primarily for annual catalog) - Artwork for storage walls, bathrooms and garages(color),1954 + + + + + + 62 + 1187 + Records, Art Work and Floor Plans (primarily for annual catalog) - Artwork for miscellaneous follow-ups and index,1952-1959 + + + + + + 62 + 1188 + Records, Art Work and Floor Plans (primarily for annual catalog) - Artwork for boxcar loading (black and white) includes glossy print,undated + + + + + + 63 + 1191 + Records, Art Work and Floor Plans (primarily for annual catalog) - Aladdin Award (black and white),1950 + + + + + + 63 + 1192 + Records, Art Work and Floor Plans (primarily for annual catalog) - Photo for catalog – follow-up: Alaskan bound truck (black and white); Elbert Hubbard sketch,undated + + + + + + 63 + 1193 + Records, Art Work and Floor Plans (primarily for annual catalog) - Coranado 1 (black and white kitchen photographs) +,undated + + + + + + 63 + 1194 + Records, Art Work and Floor Plans (primarily for annual catalog) - Couple in Aladdin living room scene (color, 2 photographs),undated + + + + + + 63 + 1195 + Records, Art Work and Floor Plans (primarily for annual catalog) - Couple in Aladdin Kitchen (color, 2 photographs),undated + + + + + + 63 + 1189 + Records, Art Work and Floor Plans (primarily for annual catalog) - Door and window illustration for catalog (black and white),1950 + + + + + + 63 + 1196 + Records, Art Work and Floor Plans (primarily for annual catalog) - Family photograph for catalog (black and white),undated + + + + + + 63 + 1212 + Records, Art Work and Floor Plans (primarily for annual catalog) - Gift catalog photographs (black and white),1963 + + + + + + 63 + 1197 + Records, Art Work and Floor Plans (primarily for annual catalog) - Handy Man Book of Instructions - Aladdin booklet (black and white),undated + + + + + + 63 + 1201 + Records, Art Work and Floor Plans (primarily for annual catalog) - Heating and plumbing fixtures photographs for catalog (black and white),1964 + + + + + + 63 + 1198 + Records, Art Work and Floor Plans (primarily for annual catalog) - House construction photographs (black and white, 1954) Also black and white house construction photographs with paste-up and mock-up advertisement,1954 + + + + + + 63 + 1199 + Records, Art Work and Floor Plans (primarily for annual catalog) - House photographs for follow-up catalog (black and white, June 16, 1953),1953 + + + + + + 63 + 1208 + Records, Art Work and Floor Plans (primarily for annual catalog) - Mill, Railroad, carload interior photographs,undated + + + + + + 63 + 1200 + Records, Art Work and Floor Plans (primarily for annual catalog) - Mill interior, general photographs (black and white),1953 + + + + + + 63 + 1202 + Records, Art Work and Floor Plans (primarily for annual catalog) - Mill photographs on steps for cutting rafters (black and white),undated + + + + + + 63 + 1203 + Records, Art Work and Floor Plans (primarily for annual catalog) - Old houses: “Good Houses Never Grow Old” (black and white photographs),undated + + + + + + 63 + 1204 + Records, Art Work and Floor Plans (primarily for annual catalog) - Rafter plans (black and white),undated + + + + + + 63 + 1205 + Records, Art Work and Floor Plans (primarily for annual catalog) - Redwood tree oversized postcard,1953 + + + + + + 63 + 1206 + Records, Art Work and Floor Plans (primarily for annual catalog) - Winston #5: photographs of sequence of construction of Winston #5 in Stone Harbor, New Jersey,1949 + + + + + + 63 + 1190 + Records, Art Work and Floor Plans (primarily for annual catalog) - Miscellaneous photographs: door knob, tool rack and tools, side shingles and panels (black and white),undated + + + + + + 63 + 1207 + Records, Art Work and Floor Plans (primarily for annual catalog) - Negative: Aladdin Trade Mark,undated + + + + + + 63 + 1210 + Records, Art Work and Floor Plans (primarily for annual catalog) - Negatives: Handy Man Book of Instructions,undated + + + + + + 63 + 1209 + Records, Art Work and Floor Plans (primarily for annual catalog) - Negatives: Edgar Guest - “Business Career” poem, negative showing cutting rafters by hand, Quincy Bank letter - print and negative,undated + + + + + + 63 + 1211 + Records, Art Work and Floor Plans (primarily for annual catalog) - Negative: Steps for cutting rafters,undated + + + + + + 63 + 1213 + Records, Art Work and Floor Plans (primarily for annual catalog) - Negatives: Kitchen, living room, and bath room scenes for catalog,undated + + + + + + 64 + 1214 + Records, Art Work and Floor Plans (primarily for annual catalog) - Catalog Map & Floor Plans 1960-1982, Map: The Aladdin Company Bay City, MI,undated + + + + + + 64 + 1215 + Records, Art Work and Floor Plans (primarily for annual catalog) - Floor Plan #7000 c. 1953 Miscellaneous,undated + + + + + + 64 + 1216 + Records, Art Work and Floor Plans (primarily for annual catalog) - “Folder 1”; Aracia: Floor (1952) and 2 (1952), Alamo:Floor plan 1 (1950-1952), 2 (1950-1952) and 3 (1950-1952), Alden: Floor plan (1971) and second floor plan (1971), Almira: Floor plan 1 (1954), Alvarado: Floor plan 1 (1954) and 2 (1954), Ambassador: Floor plan 1 (1953), 2 (1953), 3 (1954), and 4 (1955), Amberwood: Floor plan 1 (1970) and 2 (1970), Amhurst: Floor plan (1954), Amsterdam: Floor plan (1969), Arlington: Floor plan (1964), 2 (1964) and 3 (1964), Ashland: Floor plan (1967), Astoria: Floor plan 1 (1954), Astoria 2, 1-2 (1954), 2 (1954), and 3 (1955), Atlanta: Floor plan 1 (1950), and 2 (1950-1952), Augusta: Floor plan 1 (1970), Austin: Floor plan 2 (1960) and 3 (1965), Bates: Floor plan (1971), 2 (1973) and 3 (1974), Bag View: Floor plan (also listed as old Shasta 1); and 2 (also listed as old Shasta 2), Bellevue: Floor plan (1953) and 2 (1953), Bellevue: (New Bellevue): Floor plan 2 (1953), Belmont: Floor plan 1 (1962) and 2 (1962), Berkley: Floor plan (1966), Beverly: Floor plan 1 (1952) and 2 (1952), Birchwood: Floor plan 7 (1950), Brentwood: Floor plan 2 (1951-1952), 3 (1951-1952), 4 (1951-1952) and 5 (1953), Brentwood (New Brentwood): Floor plan (1949) attic stair, Brewster: Floor plan 2 (1950-1952), 2 (attic stair), floor plan (picture window, attic stair and garage) and 5 (1950-1952), Briarwood: Floor plan (1973), Brighton: Floor plan (1960) and 2 (1962), Bristol A: Floor plan (1949) and floor plan (1950-1952), Bristol B: Floor plan (1950-1952), Bristol C: Floor plan (1949) attic stair; floor plan (1953), Bristol D: Floor plan (1956), Brocton: Floor plan 3 (1950-1952), Bronson: Floor plan (1969), Cambridge: Floor plan 1 (1954), 2 (1954) and 3 (1954), Camden: Floor plan (1970), Cameo A-2: Floor plan (1950), Cameo B: Floor plan (1949), Cameo B-1: Floor plan (1950), Cameo B-2: Floor plan (1950), Canton: Floor plan (1958),1949-1974, undated + + + + + + 64 + 1216b + Records, Art Work and Floor Plans (primarily for annual catalog) - “Folder 2”, Canyon: Floor plan (1958), floor plan 2 (nd), Cardinal: Floor plan 1 (1949) and 2 (1949), Carlton: Floor plan 2 (1952), 3 (1952), Old Cedars #3 and 4 (1952), Catalina: Floor plan 1 (1956), 2 (1956) and 3 (1957), Chelsea: Floor plan (1974), Chevy Chase: Floor plan (1949), Clarksdale: Floor plan 1 (1958, 2 (1958) also with printed floor plan, Floor plan 3 (nd) and 4 (1960), Clayton: Floor plan 1 (1960) and 2 (1960), Clear Lake: Floor plan 1 (nd), Clifton: Floor plan 1 (1961), floor plan 2 (nd) and 2 (1961), Coachman: Floor plan (1973), Colonial: Floor plan 2 (kitchen door and window chance), floor plan (nd), Colony: Floor plan (1952) (Note: name “Mayfair #2” crossed out), Columbia C: Floor plan (1950), Concord: Floor plan (1949), Cornell: Floor plan (third level, 1958), Coronado: Floor plan 1 (1950-1952), 2 (1950-1952), 3 (1952) and 4(1954), Coronet: Floor plan 1 (1953), 2 (1953) and 3 (1955), Covington: Floor plan 1 (1974) and 2 (1974), Cranbrook: Floor plan (1958), Crestwood: Floor plan (1966), Danbury: Floor plan (1978), Dayton: Floor plan (1955), Del Mar: Floor plan 2 (1952), 3 (1951-1952) and 4 (1951-1952), Del Monte: Floor plan 2 (1954) and 3 (1955), Del Ray: Floor plan 2 (1956), new floor plan 2 (1956), Delta: Floor plan 1 (1972) and 2 (1972), Denton: Floor plan (1967), Denver: Floor plan 1 (1955) and 2 (1955), Dexter: Floor plan 1 (1961), 2 (1962), floor plan 2 (nd), Driftwood: Floor plan 1 (nd), floor plan 2 (nd), Dunbar: Floor plan 1 (1971), Eastland: Floor plan 1 (1972) and 2 (1972), The Edison: Floor plan 1 (1957), Eldorado: Floor plan 1 (1972) and 2 (1972), Elmhurst: Floor plan 2 (1949), El Paso: Floor plan 1 (1950), 2 (1950), 3 (1949), 4 (1950-1952), 6 (1954), floor plan 1 (nd), floor plan 1 (nd), and floor plan 2 (1950-1952), El Rancho: Floor plan 1 (1952), 2 (1952), and 3 (1957), Embassy: Floor plan 1 (1953) and 2 (1953), Essex: Floor plan 1 (1974), Evanston: Floor plan 1 (1954), 2 (1953), 3 (1962) and floor plan 1 (nd), Fairlane: Floor plan 1 (1963) second floor plan (nd), first floor alternate plan and 2 (1967), Ferndale: Floor plan 1 (1950), floor plan 1 with bath and closet changes (1949), 2 (1950) and floor plan 2 with bath and closet changes (1949), Flamingo: Floor plan 1 (1953), 2 (1953) and 3 (1955), Forest Hill: Floor plan 1 (1961) and 2 (1961), Foreston: Floor plan 1 (1960), Friendship: Floor plan 1 (1953), 2 (1953) and 3 (1954), Fulton: Floor plan 1 (1960) and 2 (1960),1949-1978, undated + + + + + + 64 + 1217 + Records, Art Work and Floor Plans (primarily for annual catalog) - “Folder 3”, Gables: Floor plan (1950), New Gables C: Floor plan (1949), Gary: Floor plan 1 (1969) and 2 (1969), Glen Brook: Floor plan 1 (1952) and 2 (1952), Glencove: Floor plan 1 (1953), 2 (1953), 3 (1954) and 4 (1955), Glen Haven: Floor plan (1956) and 2 (1956), Glen View: Floor plan 1 (1961), 2 (1961) and floor plan 2 (nd), Glenwood: Floor plan (1967), Goodrich: Floor plan 1 (1969), Graystone: Floor plan 1 (1952), 2 (1952); floor plan 3 (1958), 1 (1957), 2 (1957), 3 (1957) and 3 (1958); floor plan 3 print, Green Brier: Floor plan 1 (1951-1952), 2 (1951-1952), Groveland: Floor plan 1 (1954), 2 (1954), 3 (1955), Hamilton: Floor plan (1960), Highwood: Floor plan 1 (1953) and 2 (1953), Hillsdale: Floor plan (1962), and floor plan (1962), Holbrook: Floor plan 1 (1973) and 2 (1973), Hollywood: Floor plan 1 (nd), floor plan 2 (nd) and 3 (1961), Hollywood 1-A: Floor plan (nd), Holmes: Floor plan (1974), The Huron: Floor plan (nd), Inglewood: Floor plan 2 (1950) (Note:name “Ivywood #2 crossed out), and floor plan 3 (nd), Iris: Floor plan 1 (1953) and 2 (1953), Jasmine: Floor plan 1 (1952), 2 (1952) and floor plan 3 (nd), Kensington: Floor plan (1973), Kenton: Floor plan (1967), Kenwood: Floor plan 1 (1970), 2 (1970), Kimberly: Floor plan (nd), Kingsbury: Floor plan (1957), Lake Geneva: Floor plan 1 (1950) and floor plan 2 (1950); floor plan 1 (nd) and floor plan 2 (nd), Lake Shore: Floor plan 1 (1950), Lakewood: Floor plan (nd), Lamar: Floor plan (1969), Laredo: Floor plan (1953) (Note: name “Signet” crossed out), and 2 (1954), Laurel: Floor plan (1953) (Note: name “Signet” crossed out), and 2 (1954), Lennox: Floor plan 1 (1953) and 2 (1953), Lexington: Floor plan 1 (1953), Longwood: Floor plan 1 (1960), Lorain: Floor plan 1 (1963), Madison: Floor plan 1 (1950), 2 (1950-1952) and (1950-1952), Magnolia: Floor plan (1950-1952), Manchester: Floor plan (1978), Manhasset: Floor plan 1 (1953), and 2 (1953), Massachusetts: Floor plan (nd), Mayfair: Floor plan 1 (1952), Maywood: Floor plan 1 (1952), Medford: Floor plan 1 (1963), Monclair: Floor plan 1 (1956) and 2 (1956), Monterey: Floor plan 1 (nd), 2 (nd) and 2 (1954), Motel: Floor plan (1950), Mt. Vernon: Floor plan 3 (1949) (Includes picture window), 2 (1950) and 4 (1950),1949-1978, undated + + + + + + 64 + 1218 + Records, Art Work and Floor Plans (primarily for annual catalog) - “Folder 4”, Nantucket: Floor plan 2 (1950), Narragansett: Floor plan 1 (nd) and floor plan 2 (nd), Nassau: Floor plan 1 (nd) and floor plan 2 (nd), Newport: Floor plan 1 (1952), 5 (1949), 5 1952), and 6 (1954), Newton: Floor plan 1 (1970), and floor plan 2 (1970), Norfolk: Floor plan 1 (1952) and 3 (1950-1952), Northport: Floor plan 1 (nd) and floor plan 2 (nd), Oakland: Floor plan 1 (1960) and 2 (1960), Palm Springs: Floor Plan 1 (1952), floor plan (1957) and 3 (1951-1952), Palo Alto: Floor plan 1 (1950-1952), 2 (1950, 1951-1952), Palomar: Floor plan 1 (1952), 2 (1952) floor plan 3 (1952), 4 (1957), and 5 small picture and prints, Parkway: Floor plan 1 (nd), 1 (1952-1953), 2 (1952), floor plan 3 (nd), floor plan 4 (nd), 4 (1952), 5 (1950-1952), and print for floor plans 1, 4, and 5, Parkwood: Floor plan 1964, Pasadena: Floor plan 1 (1950-1952), 1 (1955) and 2 (1950-1952), Pilgrim: Floor plan 2 (1950) (attic stair), 2 (1950), 2 (attic stair), 4 (1950-1952) and 5 (1950-1952), New Pilgrim: Floor plan (1949) (attic stair), Pinecrest: Floor plan 1 (1956), and 2 (1956), Pinewood: Floor plan 1 (1950), and floor plan 2 (1950), Plaza: Floor plan (nd), 1 (1953), 2 (1953), floor plan 2 (nd), floor plan 2 (nd), 4 (1955), 1 (1973) and 3 (1973), Pomoma: Floor plan 2 (1952) (also as Old Potomac 2), and 3 (1952), Portage: Floor plan (1969), Port Austin: Floor plan 1 (nd), floor plan 2 (nd), Port Hope: Floor plan 1 (nd) and floor plan 2 (nd), Potomac: Floor plan (1949) and 2 (nd), Preston: Floor plan (1958) and floor plan (1958) print, Princeton: Floor plan (1966) and 2 (1966), Rambler: Floor plan 1 (1954), 2 (1954) and 3 (1954), Redwood: Floor plan 1 (1950-1952), 2 (1950-1952) and 3 (1950-1952) and 4 (1957), Rio Grande: Floor plan 1 (1952), 2 (1952), 3 (1952) and 4 (1955), Richmond: Floor plan (1965), Ridgewood: Floor plan (1967), Riviera: Floor plan (1960), 1 (1978) and 2 (1978), Roanoke: Floor plan (1957), Rockport: Floor plan 2 (1952), 4 (1952), 5 (1952), 6(1949) (with attic stair), Rose Wood: Floor plan 1 (1950-1952), 2 (1950-1952), and 3 (1950-1952), Royton: Floor plan 1 (1953), 2 (1953) and 3 (1953), Salem: Floor plan 1 (nd), floor plan 2 (nd), San Diego: Floor plan 1 (nd) floor plan 2 (nd), floor plan 3 (nd), 4 (1955), and 5 (1957), Santa Barbara: Floor plan 1 (1952-1953), 2 (1952-1953) and 3 (1953), Santa Fe: Floor plan 1 (1955) and alternate plan; 2 (1952) and 3 (1954),1949-1978, undated + + + + + + 64 + 1219 + Records, Art Work and Floor Plans (primarily for annual catalog) - “Folder 5”, Santa Rose: Floor plan 1 (1953) and 2 (1953), Saratoga: Floor plan 1 (1956), Savannah: Floor plan (1966) and 2 (1974), Selma: Floor plan (1969), Shadyland: Floor plan 1 (1956) and 2 (1956), Sharlear: Floor plan 1 (1961), floor plan 2 (nd) and 2 (1961), Shelburne: Floor plan 2 (1952) and 2 (1952), Shelby: Floor plan (1957), Sherwood: Floor plan 1 (1965) and 2 (1965), Sierra: Floor plan 1 (1972), 2 (1972), 3 (1972) and 4 (1972), Sparta: Floor plan (1971) (Includes second and third floor level); floorplan 2 (nd) (Includes second and third floor level), St. Lawrence: Floor plan 1 (1950) and 2 (1950), Stratford: Floor plan 2 (1980), Summerset: Floor plan (1950-1952), Sunbeam: Floor plan (1949), Sunset: Floor plan 1 (1950), 2 (1950) and floor plan for second floor (nd), Sunshine B: Floor plan (1952), Sunshine D: Floor plan (1951-1952), Sunshine E: Floor plan (1950-1952), Sylvan: Floor plan 1 (1952), 2 (1952) and 3 (1954), Tacoma: Floor plan (1957), Topeka: Floor plan 1 (1957), 2 (1958); printed floor plans for floor plan 1 (1957) and floor plan 2 (1958), Trenton: Floor plan (1962) and 2 (1965), Tulane: Floor plan (1957) and utility room and garage floor plan (1957), Tulsa: Floor plan 1 (1955) and 2 (1955), Vassa: Floor plan 2 (nd), and floor plan 3 (nd), Ventura: Floor plan 1 (nd), floor plan 2 (nd) and floor plan 3 (nd), Ventura 1-A: Floor plan 1 (nd), Vernon: Floor plan 1 (1960), 2 (1960) and 3 (1960), Vinewood: Floor plan 1 (1952) and 2 (1952), Wenona: Floor plan 1 (1950) and 2 (1950), Westport: Floor plan (nd), Williams Burge: Floor plan (1952), Wilshire: Floor plan 1 (1956), 2 (1956) and 3 (1966), Winston: Floor plan 1 (1952) and 5 (1952), Woodland: Floor plan 1 (1953) and 2 (1953), Yorkshire: Floor plan (1969), Yorktown: Floor plan 1 (1953) and 2 (1953), Miscellaneous Floor Plans: Floor plan (1962) (plywood sheeting)/ Floor plan (1949) (Cedar shake)/ Floor plan (1960s or 1970s)/ Floor plan (nd) (Right wall),1949-1980, undated + + + + + + + + Aladdin Company Collection - Series #4 (Order Department) + + + + 65 + 1220 + Records, Mailing lists - 1979 Maryland 1,1979 + + + + + + 65 + 1221 + Records, Mailing lists - 1979 Maine 1,1979 + + + + + + 65 + 1222 + Records, Mailing lists - 1979 Kentucky 1,1979 + + + + + + 65 + 1222b + Records, Mailing lists - 1979 Kentucky 2,1979 + + + + + + 65 + 1223 + Records, Mailing lists - 1979 Indiana 4,1979 + + + + + + 65 + 1224 + Records, Mailing lists - 1979 Massachusetts 1,1979 + + + + + + 65 + 1225 + Records, Mailing lists - 1979 Illinois 5,1979 + + + + + + 65 + 1226 + Records, Mailing lists - 1979 Illinois 4,1979 + + + + + + 65 + 1227 + Records, Mailing lists - 1979 Illinois 3,1979 + + + + + + 65 + 1228 + Records, Mailing lists - 1979 Illinois 2,1979 + + + + + + 65 + 1229 + Records, Mailing lists - 1979 Indiana 3,1979 + + + + + + 65 + 1230 + Records, Mailing lists - 1979 Indiana 2,1979 + + + + + + 65 + 1231 + Records, Mailing lists - 1979 Indiana 1,1979 + + + + + + 65 + 1232 + Records, Mailing lists - 1979 Illinois 7,1979 + + + + + + 65 + 1233 + Records, Mailing lists - 1979 Illinois 6,1979 + + + + + + 65 + 1234 + Records, Mailing lists - 1978 Missouri 2,1978 + + + + + + 65 + 1235 + Records, Mailing lists - 1978 Missouri 3,1978 + + + + + + 65 + 1236 + Records, Mailing lists - 1978 Missouri 4,1978 + + + + + + 65 + 1237 + Records, Mailing lists - 1979 Connecticut 1,1979 + + + + + + 65 + 1238 + Records, Mailing lists - 1979 Delaware 1,1979 + + + + + + 65 + 1239 + Records, Mailing lists - 1979 Illinois 1,1979 + + + + + + 66 + 1240 + Records, Mailing lists - 1978 New York 3,1978 + + + + + + 66 + 1241 + Records, Mailing lists - 1978 New York 2,1978 + + + + + + 66 + 1242 + Records, Mailing lists - 1978 New York 1,1978 + + + + + + 66 + 1243 + Records, Mailing lists - 1978 Michigan 10,1978 + + + + + + 66 + 1244 + Records, Mailing lists - 1978 Michigan 9,1978 + + + + + + 66 + 1245 + Records, Mailing lists - 1978 Michigan 8,1978 + + + + + + 66 + 1246 + Records, Mailing lists - 1978 Michigan 7,1978 + + + + + + 66 + 1247 + Records, Mailing lists - 1978 Michigan 6,1978 + + + + + + 66 + 1248 + Records, Mailing lists - 1978 New Hampshire 1,1978 + + + + + + 66 + 1249 + Records, Mailing lists - 1978 New Jersey 1,1978 + + + + + + 66 + 1250 + Records, Mailing lists - 1978 New Jersey 2,1978 + + + + + + 66 + 1251 + Records, Mailing lists - 1978 New Jersey 3,1978 + + + + + + 66 + 1252 + Records, Mailing lists - 1978 Michigan 2,1978 + + + + + + 66 + 1253 + Records, Mailing lists - 1978 Michigan 3, 1978 + + + + + + 66 + 1254 + Records, Mailing lists - 1978 Michigan 4,1978 + + + + + + 66 + 1255 + Records, Mailing lists - 1978 Michigan 5,1978 + + + + + + 67 + 1256 + Records, Mailing lists - 1981 Illinois 3,1981 + + + + + + 67 + 1257 + Records, Mailing lists - 1981 Illinois 1,1981 + + + + + + 67 + 1258 + Records, Mailing lists - 1981 Connecticut 1,1981 + + + + + + 67 + 1259 + Records, Mailing lists - 1980 Missouri 1,1980 + + + + + + 67 + 1260 + Records, Mailing lists - 1980 Iowa 1,1980 + + + + + + 67 + 1261 + Records, Mailing lists - 1981 Delaware 1,1981 + + + + + + 67 + 1262 + Records, Mailing lists - 1980 Missouri 2,1980 + + + + + + 67 + 1263 + Records, Mailing lists - 1980 Wisconsin 1,1980 + + + + + + 67 + 1264 + Records, Mailing lists - 1980 Wisconsin 2,1980 + + + + + + 67 + 1265 + Records, Mailing lists - 1980 Wisconsin 1,1980 + + + + + + 67 + 1266 + Records, Mailing lists - 1980 West Virginia 1,1980 + + + + + + 67 + 1267 + Records, Mailing lists - 1980 Virginia 1,1980 + + + + + + 67 + 1268 + Records, Mailing lists - Rhode Island,undated + + + + + + 67 + 1269 + Records, Mailing lists - 1981 Indiana 3,1981 + + + + + + 67 + 1270 + Records, Mailing lists - 1981 Indiana 2,1981 + + + + + + 67 + 1271 + Records, Mailing lists - 1981 Illinois 7,1981 + + + + + + 67 + 1272 + Records, Mailing lists - 1981 Illinois 5,1981 + + + + + + 67 + 1273 + Records, Mailing lists - 1981 Indiana 1,1981 + + + + + + 67 + 1274 + Records, Mailing lists - 1981 Illinois 6,1981 + + + + + + 67 + 1275 + Records, Mailing lists - 1981 Illinois 4,1981 + + + + + + 67 + 1276 + Records, Mailing lists - 1981 Illinois 2,1981 + + + + + + 68 + 1277 + Records, Mailing lists - 1980 Illinois 6,1980 + + + + + + 68 + 1278 + Records, Mailing lists - 1980 Illinois 4,1980 + + + + + + 68 + 1279 + Records, Mailing lists - 1980 Illinois 2,1980 + + + + + + 68 + 1280 + Records, Mailing lists - 1980 Kentucky 1,1980 + + + + + + 68 + 1281 + Records, Mailing lists - 1980 Illinois 7,1980 + + + + + + 68 + 1282 + Records, Mailing lists - 1980 Illinois 3,1980 + + + + + + 68 + 1283 + Records, Mailing lists - 1980 Illinois 1,1980 + + + + + + 68 + 1284 + Records, Mailing lists - 1980 Connecticut 1,1980 + + + + + + 68 + 1285 + Records, Mailing lists - 1980 Maine 1,1980 + + + + + + 68 + 1286 + Records, Mailing lists - 1980 Kentucky 1,1980 + + + + + + 68 + 1287 + Records, Mailing lists - 1980 Delaware 1,1980 + + + + + + 68 + 1288 + Records, Mailing lists - 1980 Indiana 4,1980 + + + + + + 68 + 1289 + Records, Mailing lists - 1980 Indiana 3,1980 + + + + + + 68 + 1290 + Records, Mailing lists - 1980 Indiana 1,1980 + + + + + + 68 + 1291 + Records, Mailing lists - 1980 Indiana 2,1980 + + + + + + 68 + 1292 + Records, Mailing lists - 1980 Illinois 5,1980 + + + + + + 69 + 1293 + Records, Mailing lists - 1979 New York 3,1979 + + + + + + 69 + 1294 + Records, Mailing lists - 1979 New York 2,1979 + + + + + + 69 + 1295 + Records, Mailing lists - 1979 New York 1,1979 + + + + + + 69 + 1296 + Records, Mailing lists - 1979 New Jersey 2,1979 + + + + + + 69 + 1297 + Records, Mailing lists - 1979 Michigan 7,1979 + + + + + + 69 + 1298 + Records, Mailing lists - 1979 Michigan 6,1979 + + + + + + 69 + 1299 + Records, Mailing lists - 1979 Michigan 5,1979 + + + + + + 69 + 1300 + Records, Mailing lists - 1979 Michigan 4,1979 + + + + + + 69 + 1301 + Records, Mailing lists - 1979 Michigan 8,1979 + + + + + + 69 + 1302 + Records, Mailing lists - 1979 Michigan 9,1979 + + + + + + 69 + 1303 + Records, Mailing lists - 1979 Michigan 10,1979 + + + + + + 69 + 1304 + Records, Mailing lists - 1979 New Hampshire,1979 + + + + + + 69 + 1305 + Records, Mailing lists - New Jersey,undated + + + + + + 69 + 1306 + Records, Mailing lists - 1979 Michigan 3,1979 + + + + + + 69 + 1307 + Records, Mailing lists - 1979 Michigan 2,1979 + + + + + + 69 + 1308 + Records, Mailing lists - 1979 Michigan 1,1979 + + + + + + 70 + 1309 + Records, Mailing lists - 1978 Pennsylvania 1, 1978 + + + + + + 70 + 1310 + Records, Mailing lists - 1978 Ohio 9,1978 + + + + + + 70 + 1311 + Records, Mailing lists - 1978 Ohio 8,1978 + + + + + + 70 + 1312 + Records, Mailing lists - 1978 Ohio 2,1978 + + + + + + + 70 + 1313 + Records, Mailing lists - 1978 Ohio 3,1978 + + + + + + 70 + 1314 + Records, Mailing lists - 1978 Ohio 1,1978 + + + + + + 70 + 1315 + Records, Mailing lists - 1978 Ohio 4,1978 + + + + + + 70 + 1316 + Records, Mailing lists - 1978 Ohio 5,1978 + + + + + + 70 + 1317 + Records, Mailing lists - 1978 Ohio 6,1978 + + + + + + 70 + 1318 + Records, Mailing lists - 1978 Ohio 7,1978 + + + + + + 70 + 1319 + Records, Mailing lists - 1978 New York 4,1978 + + + + + + 70 + 1320 + Records, Mailing lists - 1978 New York 5,1978 + + + + + + 70 + 1321 + Records, Mailing lists - 1978 New York 6,1978 + + + + + + 70 + 1322 + Records, Mailing lists - 1978 New York 7,1978 + + + + + + 71 + 1323 + Records, Mailing lists - 1981 New York 1,1981 + + + + + + 71 + 1324 + Records, Mailing lists - 1981 New Jersey 2,1981 + + + + + + 71 + 1325 + Records, Mailing lists - 1981 Michigan 10,1981 + + + + + + 71 + 1326 + Records, Mailing lists - 1981 New Jersey 1,1981 + + + + + + 71 + 1327 + Records, Mailing lists - 1981 New Hampshire 1,1981 + + + + + + 72 + 1328 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - Stickers,undated + + + + + + 72 + 1329 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - “How to Read Claims”,undated + + + + + + 72 + 1330 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - W2 forms – 1964,1964 + + + + + + 72 + 1331 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - W2 forms – 1985,1985 + + + + + + 72 + 1332 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - W2 forms – 1984,1984 + + + + + + 72 + 1333 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - W2 forms – 1982,1982 + + + + + + 72 + 1334 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - W2 forms – 1981,1981 + + + + + + 72 + 1335 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - W2 forms – 1980,1980 + + + + + + 72 + 1336 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - W2 forms – 1979,1979 + + + + + + 72 + 1337 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - W2 forms – 1978,1978 + + + + + + 72 + 1338 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - W2 forms – 1977,1977 + + + + + + 72 + 1339 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - W2 forms – 1976/ Form 1099 – Int. 1976,1976 + + + + + + 72 + 1340 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - W2 forms – 1975/ Form 1099 – Int. 1975,1975 + + + + + + 72 + 1341 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - W2 forms – 1974/ Form 1099 – Int. 1974,1974 + + + + + + 72 + 1342 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - W2 forms – 1973,1973 + + + + + + 72 + 1343 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - W2 forms – 1972,1972 + + + + + + 72 + 1344 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - W2 forms – 1971,1971 + + + + + + 72 + 1345 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - W2 forms – 1970,1970 + + + + + + 72 + 1346 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - W2 forms – 1969,1969 + + + + + + 72 + 1347 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - W2 forms – 1968,1968 + + + + + + 72 + 1348 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - W2 forms – 1967,1967 + + + + + + 72 + 1349 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - W2 forms – 1966,1966 + + + + + + 72 + 1350 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - W2 forms – 1965,1965 + + + + + + 72 + 1351 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - Retail Invoices #04749 – 04806, 1973,1973 + + + + + + 72 + 1352 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - Retail Invoices #04807 – 04859, 1974,1974 + + + + + + 72 + 1353 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - Retail Invoices #04860 – 04951, 1975,1975 + + + + + + 72 + 1354 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - Retail Invoices #4952 – 5000/ #2700 – 2716, 1976,1976 + + + + + + 72 + 1355 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - Retail Invoices #02717 – 02803, 1977,1977 + + + + + + 72 + 1356 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - Retail Invoices #02804 – 02830, 1978,1978 + + + + + + 72 + 1357 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - Retail Invoices #02831 – 02887, 1979,1979 + + + + + + 72 + 1358 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - Retail Invoices #02888 – 02902, 1980,1980 + + + + + + 72 + 1359 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - Retail Invoices #02903 – 02912, 1981,1981 + + + + + + 72 + 1360 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - Wholesale & Retail Invoices #2913 – 2995, 1982,1982 + + + + + + 72 + 1361 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - Retail Invoices #2996 – 3005, 1983,1983 + + + + + + 72 + 1362 + Records, Financial Information: tax information: W2, 1099, instructions, insurance claims - #3006 – 3033, 1984,1984 + + + + + + 73 + 1363 + Records, Mailing lists - 1980 Pennsylvania 3,1980 + + + + + + 73 + 1364 + Records, Mailing lists - 1980 Pennsylvania 5,1980 + + + + + + 73 + 1365 + Records, Mailing lists - 1980 Pennsylvania 7,1980 + + + + + + 73 + 1366 + Records, Mailing lists - 1980 Ohio 9,1980 + + + + + + 73 + 1367 + Records, Mailing lists - 1980 Pennsylvania 2,1980 + + + + + + 73 + 1368 + Records, Mailing lists - 1980 Vermont 1,1980 + + + + + + 73 + 1369 + Records, Mailing lists - 1980 West Virginia 2,1980 + + + + + + 73 + 1370 + Records, Mailing lists - 1980 Pennsylvania 4,1980 + + + + + + 73 + 1371 + Records, Mailing lists - 1980 Pennsylvania 6,1980 + + + + + + 73 + 1372 + Records, Mailing lists - 1980 Pennsylvania 8,1980 + + + + + + 73 + 1373 + Records, Mailing lists - 1980 Virginia 2,1980 + + + + + + 73 + 1374 + Records, Mailing lists - 1980 Pennsylvania 1,1980 + + + + + + 73 + 1375 + Records, Mailing lists - 1980 Ohio 2,1980 + + + + + + 73 + 1376 + Records, Mailing lists - 1980 Ohio 4,1980 + + + + + + 73 + 1377 + Records, Mailing lists - 1980 Ohio 6,1980 + + + + + + 73 + 1378 + Records, Mailing lists - 1980 Ohio 6,1980 + + + + + + 74 + 1379 + Records, Mailing lists - 1978 West Virginia 3,1978 + + + + + + 74 + 1380 + Records, Mailing lists - 1978 West Virginia 2,1978 + + + + + + 74 + 1381 + Records, Mailing lists - 1978 West Virginia 1,1978 + + + + + + 74 + 1382 + Records, Mailing lists - 1978 Virginia 2,1978 + + + + + + 74 + 1383 + Records, Mailing lists - 1978 Wisconsin 1,1978 + + + + + + 74 + 1384 + Records, Mailing lists - 1978 Wisconsin 2,1978 + + + + + + 74 + 1385 + Records, Mailing lists - 1978 Wisconsin 4,1978 + + + + + + 74 + 1386 + Records, Mailing lists - 1978 Iowa 1,1978 + + + + + + 74 + 1387 + Records, Mailing lists - 1978 Minnesota 1,1978 + + + + + + 74 + 1388 + Records, Mailing lists - 1978 Missouri 1,1978 + + + + + + 74 + 1389 + Records, Mailing lists - 1978 Virginia 1,1978 + + + + + + 74 + 1390 + Records, Mailing lists - 1978 Pennsylvania 5,1978 + + + + + + 74 + 1391 + Records, Mailing lists - 1978 Pennsylvania 4,1978 + + + + + + 74 + 1392 + Records, Mailing lists - 1978 Vermont 1,1978 + + + + + + 74 + 1393 + Records, Mailing lists - 1978 Rhode Island 1,1978 + + + + + + 74 + 1394 + Records, Mailing lists - 1978 Pennsylvania 2,1978 + + + + + + 74 + 1395 + Records, Mailing lists - 1978 Pennsylvania 3,1978 + + + + + + 74 + 1396 + Records, Mailing lists - 1978 Pennsylvania 6,1978 + + + + + + 74 + 1397 + Records, Mailing lists - 1978 Pennsylvania 7,1978 + + + + + + + + 75 + 1398 + Records, Mailing lists - 1981 Ohio 2,1981 + + + + + + 75 + 1399 + Records, Mailing lists - 1981 Missouri 2,1981 + + + + + + 75 + 1400 + Records, Mailing lists - 1981 Missouri 1,1981 + + + + + + 75 + 1401 + Records, Mailing lists - 1981 Minnesota 1,1981 + + + + + + 75 + 1402 + Records, Mailing lists - 1981 Iowa 1,1981 + + + + + + 75 + 1403 + Records, Mailing lists - 1981 Wisconsin 2,1981 + + + + + + 75 + 1404 + Records, Mailing lists - 1981 Wisconsin 1,1981 + + + + + + 75 + 1405 + Records, Mailing lists - 1981 Ohio 7,1981 + + + + + + 75 + 1406 + Records, Mailing lists - 1981 Ohio 8,1981 + + + + + + 75 + 1407 + Records, Mailing lists - 1981 Pennsylvania 1,1981 + + + + + + 75 + 1408 + Records, Mailing lists - 1981 Pennsylvania 2,1981 + + + + + + 75 + 1409 + Records, Mailing lists - 1981 Ohio 6,1981 + + + + + + 75 + 1410 + Records, Mailing lists - 1981 Ohio 5,1981 + + + + + + 75 + 1411 + Records, Mailing lists - 1981 Ohio 4,1981 + + + + + + 75 + 1412 + Records, Mailing lists - 1981 Ohio 3,1981 + + + + + + 75 + 1413 + Records, Mailing lists - 1981 Pennsylvania 3,1981 + + + + + + 75 + 1414 + Records, Mailing lists - 1981 Pennsylvania 4,1981 + + + + + + 75 + 1415 + Records, Mailing lists - 1981 Pennsylvania 5,1981 + + + + + + 75 + 1416 + Records, Mailing lists - 1981 Pennsylvania 6,1981 + + + + + + 76 + 1417 + Records, Mailing lists - 1979 Missouri 2,1979 + + + + + + 76 + 1418 + Records, Mailing lists - 1979 West Virginia 1,1979 + + + + + + 76 + 1419 + Records, Mailing lists - 1979 Virginia 2,1979 + + + + + + 76 + 1420 + Records, Mailing lists - 1979 Virginia 1,1979 + + + + + + 76 + 1421 + Records, Mailing lists - 1979 Vermont 1,1979 + + + + + + 76 + 1422 + Records, Mailing lists - 1979 Rhode Island 1,1979 + + + + + + 76 + 1423 + Records, Mailing lists - 1979 Pennsylvania 7,1979 + + + + + + 76 + 1424 + Records, Mailing lists - 1979 West Virginia 2,1979 + + + + + + 76 + 1425 + Records, Mailing lists - 1979 Wisconsin 11979 + + + + + + 76 + 1426 + Records, Mailing lists - 1979 Wisconsin 2,1979 + + + + + + 76 + 1427 + Records, Mailing lists - 1979 Iowa 1,1979 + + + + + + 76 + 1428 + Records, Mailing lists - 1979 Minnesota 1,1979 + + + + + + 76 + 1429 + Records, Mailing lists - 1979 Missouri 1,1979 + + + + + + 76 + 1430 + Records, Mailing lists - 1979 Pennsylvania 6,1979 + + + + + + 76 + 1431 + Records, Mailing lists - 1979 Pennsylvania 5,1979 + + + + + + 76 + 1432 + Records, Mailing lists - 1979 Pennsylvania 4,1979 + + + + + + 76 + 1433 + Records, Mailing lists - 1979 Pennsylvania 3,1979 + + + + + + 77 + 1434 + Records, Mailing lists - 1981 New York 5,1981 + + + + + + 77 + 1435 + Records, Mailing lists - 1981 New York 6,1981 + + + + + + 77 + 1436 + Records, Mailing lists - 1981 New York 7,1981 + + + + + + 77 + 1437 + Records, Mailing lists - 1981 Pennsylvania 1,1981 + + + + + + 77 + 1438 + Records, Mailing lists - 1981 Rhode Island 1,1981 + + + + + + 77 + 1439 + Records, Mailing lists - 1981 Vermont 1,1981 + + + + + + 77 + 1440 + Records, Mailing lists - 1981 Virginia 1,1981 + + + + + + 77 + 1441 + Records, Mailing lists - 1981 Virginia 2,1981 + + + + + + 77 + 1442 + Records, Mailing lists - 1981 West Virginia 1,1981 + + + + + + 77 + 1443 + Records, Mailing lists - 1981 West Virginia 2,1981 + + + + + + 77 + 1444 + Records, Mailing lists - 1981 New York 4,1981 + + + + + + 77 + 1445 + Records, Mailing lists - 1981 New York 3,1981 + + + + + + 77 + 1446 + Records, Mailing lists - 1981 New York 2,1981 + + + + + + 77 + 1447 + Records, Mailing lists - 1981 Pennsylvania 7,1981 + + + + + + 77 + 1448 + Records, Mailing lists - 1981 Ohio 1,1981 + + + + + + 77 + 1449 + Records, Mailing lists - 1981 New York 9,1981 + + + + + + 77 + 1450 + Records, Mailing lists - 1981 New York 8,1981 + + + + + + 78 + 1451 + Records, Mailing lists - 1980 Michigan 8,1980 + + + + + + 78 + 1452 + Records, Mailing lists - 1980 Michigan 10,1980 + + + + + + 78 + 1453 + Records, Mailing lists - 1980 New Jersey 1,1980 + + + + + + 78 + 1454 + Records, Mailing lists - 1980 New Hampshire 1,1980 + + + + + + 78 + 1455 + Records, Mailing lists - 1980 Michigan 9,1980 + + + + + + 78 + 1456 + Records, Mailing lists - 1980 Michigan 7,1980 + + + + + + 78 + 1457 + Records, Mailing lists - 1980 Michigan 5,1980 + + + + + + 78 + 1458 + Records, Mailing lists - 1980 Massachusetts 1,1980 + + + + + + 78 + 1459 + Records, Mailing lists - 1980 Michigan 6,1980 + + + + + + 78 + 1460 + Records, Mailing lists - 1980 Michigan 4,1980 + + + + + + 78 + 1461 + Records, Mailing lists - 1980 Michigan 2,1980 + + + + + + 78 + 1462 + Records, Mailing lists - 1980 New Jersey 1,1980 + + + + + + 78 + 1463 + Records, Mailing lists - 1980 Michigan 3,1980 + + + + + + 78 + 1464 + Records, Mailing lists - 1980 Michigan 1,1980 + + + + + + 78 + 1465 + Records, Mailing lists - 1980 Maryland 1,1980 + + + + + + 79 + 1466 + Records, Mailing lists - 1980 New York 3,1980 + + + + + + 79 + 1467 + Records, Mailing lists - 1980 Ohio 7,1980 + + + + + + 79 + 1468 + Records, Mailing lists - 1980 Ohio 5,1980 + + + + + + 79 + 1469 + Records, Mailing lists - 1980 Ohio 3,1980 + + + + + + 79 + 1470 + Records, Mailing lists - 1980 New York 8,1980 + + + + + + 79 + 1471 + Records, Mailing lists - 1980 New York 4,1980 + + + + + + 79 + 1472 + Records, Mailing lists - 1980 New York 2,1980 + + + + + + 79 + 1473 + Records, Mailing lists - 1980 New York 9,1980 + + + + + + 79 + 1474 + Records, Mailing lists - 1980 New York 7,1980 + + + + + + 79 + 1475 + Records, Mailing lists - 1980 New York 5,1980 + + + + + + 79 + 1476 + Records, Mailing lists - 1980 Ohio 1,1980 + + + + + + 79 + 1477 + Records, Mailing lists - 1980 New York 1,1980 + + + + + + 79 + 1478 + Records, Mailing lists - 1980 New York 6,1980 + + + + + + 80 + 1479 + Records, Mailing lists - 1979 Pennsylvania 2,1979 + + + + + + 80 + 1480 + Records, Mailing lists - 1979 Pennsylvania 1,1979 + + + + + + 80 + 1481 + Records, Mailing lists - 1979 Ohio 9,1979 + + + + + + 80 + 1482 + Records, Mailing lists - 1979 Ohio 8,1979 + + + + + + 80 + 1483 + Records, Mailing lists - 1979 New York 8,1979 + + + + + + 80 + 1484 + Records, Mailing lists - 1979 New York 9,1979 + + + + + + 80 + 1485 + Records, Mailing lists - 1979 Ohio 1,1979 + + + + + + 80 + 1486 + Records, Mailing lists - 1979 Ohio 2,1979 + + + + + + 80 + 1487 + Records, Mailing lists - 1979 Ohio 3,1979 + + + + + + 80 + 1488 + Records, Mailing lists - 1979 Ohio 4,1979 + + + + + + 80 + 1489 + Records, Mailing lists - 1979 Ohio 5,1979 + + + + + + 80 + 1490 + Records, Mailing lists - 1979 Ohio 6,1979 + + + + + + 80 + 1491 + Records, Mailing lists - 1979 Ohio 7,1979 + + + + + + 80 + 1492 + Records, Mailing lists - 1979 New York 4,1979 + + + + + + 80 + 1493 + Records, Mailing lists - 1979 New York 5,1979 + + + + + + 80 + 1494 + Records, Mailing lists - 1979 New York 6,1979 + + + + + + 80 + 1495 + Records, Mailing lists - 1979 New York 7,1979 + + + + + + 81 + 1496 + Records, Mailing lists - 1981 Michigan 3,1981 + + + + + + 81 + 1497 + Records, Mailing lists - Michigan,undated + + + + + + 81 + 1498 + Records, Mailing lists - 1981 Maryland 1,1981 + + + + + + 81 + 1499 + Records, Mailing lists - 1981 Kentucky 2,1981 + + + + + + 81 + 1500 + Records, Mailing lists - 1981 Michigan 4,1981 + + + + + + 81 + 1501 + Records, Mailing lists - 1981 Michigan 2,1981 + + + + + + 81 + 1502 + Records, Mailing lists - 1981 Massachusetts 1,1981 + + + + + + 81 + 1503 + Records, Mailing lists - 1981 Maine 1,1981 + + + + + + 81 + 1504 + Records, Mailing lists - 1981 Kentucky 1,1981 + + + + + + 81 + 1505 + Records, Mailing lists - 1981 Michigan 9,1981 + + + + + + 81 + 1506 + Records, Mailing lists - 1981 Michigan 7,1981 + + + + + + 81 + 1507 + Records, Mailing lists - 1981 Michigan 5,1981 + + + + + + 81 + 1508 + Records, Mailing lists - 1981 Indiana 4,1981 + + + + + + 81 + 1509 + Records, Mailing lists - 1981 Michigan 2,1981 + + + + + + 81 + 1510 + Records, Mailing lists - 1981 Michigan 6,1981 + + + + + + 82 + 1511 + Records, Price Bills - Unsorted box – no additional individual designations possible: Blank price bills, Carl F. Boester: lumber for 3 bedroom house n.d., Rockwool material price bill c. 1939, Amhurst-B.B. 1939, Larchwood porch 1939, Madison-Winston 1939, Ashbury-Studebaker (garage) incl. summer cottages 1939, Birchwood-Montrose 1940, New Castle-Winston 1940, Summer cottages & garages 1940, Amherst-Mt. Vernon 1940, Price bills 1941 - Norfolk-Winston, Portland OR - 1941/1947 incl. garages, Atlanta-Sunshine 1949/1950 garages & Grade Entrance Addition #2 D.C., Brewster-Mt. Vernon 1949, Newport-Shasta 1949 incl. summer cottages, Lexington-Pomona 1949-1952, Potomac-Winston 1949-1952, Palm Springs-Royton 1949-1957,1939-1957, undated + + + + + + 83 + 1512 + Records, Price Bills - Summer cottages,1950 + + + + + + 83 + 1513 + Records, Price Bills - Brentwood-Suburban (breezeway),1951 + + + + + + 83 + 1514 + Records, Price Bills - Santa Fe-Sylvan,1951-1961 + + + + + + 83 + 1515 + Records, Price Bills - Tacoma-Yorktown, 1951-1961 plus amount added for new windows, felt & door weather-stripping, Jan. 1957,1951-1961 + + + + + + 83 + 1516 + Records, Price Bills - Bristol-Carton,1951-1956 + + + + + + 83 + 1517 + Records, Price Bills - Cedars-Jasmine,1951-1956 + + + + + + 83 + 1518 + Records, Price Bills - Acacia-Brentwood,1952-1959 + + + + + + 83 + 1519 + Records, Price Bills - Brewster-Cedars,1952-1959 + + + + + + 83 + 1520 + Records, Price Bills - Colony-Dexter,1952-1959 + + + + + + 83 + 1521 + Records, Price Bills - Gables-Ivywood,1952-1961 + + + + + + 83 + 1522 + Records, Price Bills - Ambassador-”Evanston”,1953-1954 + + + + + + 83 + 1523 + Records, Price Bills - Embassy-Lennox | BV,1953 + + + + + + 83 + 1524 + Records, Price Bills - Lenox-Orlando,1953 + + + + + + 83 + 1525 + Records, Price Bills - Laurel-Rambler 2,1953-1954 + + + + + + 83 + 1526 + Records, Price Bills - Royston 1 -Sovereign 7 garage,1953 + + + + + + 84 + 1527 + Records, Price Bills - Denver-Hollywood,1957 + + + + + + 84 + 1528 + Records, Price Bills - Houston-Palomar,1957 + + + + + + 84 + 1529 + Records, Price Bills - Acacia-Bristol,1957-1959 + + + + + + 84 + 1530 + Records, Price Bills - Cambridge-Del Ray,1957-1959 + + + + + + 84 + 1531 + Records, Price Bills - Palomar-Santa Fe,1957-1959 + + + + + + 84 + 1532 + Records, Price Bills - Shady Lane-Yorktown and garages,1957-1959 + + + + + + 84 + 1533 + Records, Price Bills - Acacia-Hollywood,1957-1964 + + + + + + 84 + 1534 + Records, Price Bills - Houston-Suburban (garage),1957-1964 + + + + + + 84 + 1535 + Records, New houses 1957-1958-1959, “Current costs no freight 1959.”,1957-1959 + + + + + + 84 + 1536 + Records, Augusta-Vernon| BV, 3,1960 + + + + + + 84 + 1537 + Records, Garages & summer cottages,1960 + + + + + + 84 + 1538 + Records, Belmont-Ventura,1961 + + + + + + 84 + 1539 + Records, Price Bills - Clifton-Shartear,1961 + + + + + + 84 + 1540 + Records, Canyon, Denver, Fairlane, Lorain, Plaza, Medford,1962 + + + + + + 84 + 1541 + Records, Price Bills - Ambassador-Winslow,1964 + + + + + + 84 + 1542 + Records, Alamo-Bristol,1964 + + + + + + 85 + 1543 + Records, Canyon-Denver,1964 + + + + + + 85 + 1544 + Records, Dexter-Kimberly,1964 + + + + + + 85 + 1545 + Records, Kingsbury-Palomar, 1964 + + + + + + 85 + 1546 + Records, Parkwood-Sharlear,1964 + + + + + + 85 + 1547 + Records, Sylvan-Winslow,1964 + + + + + + 85 + 1548 + Records, Price Bills - Alamo-Brighton,1964-1969 + + + + + + 85 + 1549 + Records, Price Bills - Brunson-Fairlane,1964-1969 + + + + + + 85 + 1550 + Records, Fairlane-Yorshire,1964-1969 + + + + + + 85 + 1551 + Records, Special plans,1967 + + + + + + 85 + 1552 + Records, Price Bills - Ashland-Newton,1967-1970 + + + + + + 85 + 1553 + Records, Price Bills - Fairlane-Sharlear,1970-1971 + + + + + + 85 + 1554 + Records, Price Bills - Alamo-Denton,1972 + + + + + + 85 + 1555 + Records, Price Bills - Delta-Princeton,1972 + + + + + + 85 + 1556 + Records, Price Bills - Richmond-Yorkshire,1972 + + + + + + 85 + 1557 + Records, Price Bills - Unit prices, January & Canyon Yorkshire,1973 + + + + + + 85 + 1558 + Records, Eastland-Rotterdam,1973-1974 + + + + + + 85 + 1559 + Records, Price Bills - Ambassador-Winslow, (Notebook was marked “Old Houses”),1974 + + + + + + 86 + 1560 + Records, Price Bills - Savannah-Yorkshire,1973-1980 + + + + + + 86 + 1561 + Records, Price Bills - Austin-Dunbar,1972-1981 + + + + + + 86 + 1562 + Records, Price Bills - Unit prices & related material,1979-1980 + + + + + + 86 + 1563 + Records, Estimating Notebook (2 folders),1980 + + + + + + 86 + 1564 + Records, Estimating Notebook (2 folders),1980 + + + + + + 86 + 1565 + Records, Price Bills - Alamo-Yorkshire,1980 + + + + + + 86 + 1566 + Records, Price Bills - Alamo-Oakland,1980 + + + + + + 86 + 1567 + Records, Unit prices & related material,1981 + + + + + + 86 + 1568 + Records, Price Bills - Alamo-Chelsea,1981 + + + + + + 86 + 1569 + Records, Price Bills - Coachman-Dunbar,1981 + + + + + + 86 + 1570 + Records, Price Bills - Eastland-Hummel,1981 + + + + + + 86 + 1571 + Records, Price Bills - Kensington-Oakland,1981 + + + + + + 86 + 1572 + Records, Price Bills - Parkwood-Rosewood,1981 + + + + + + 86 + 1573 + Records, Price Bills - Savannah-Wilshire,1981 + + + + + + 87 + 1574 + Records, Price Bills - Price list,1919 + + + + + + 87 + 1575 + Records, Price Bills - Columbia price lists, special millwork pricing, sales offices,1922 + + + + + + 87 + 1576 + Records, Price Bills - Price list. Equipment,1928 + + + + + + 87 + 1577 + Records, Price Bills - Price lists, Options & allowments,1929-1931 + + + + + + 87 + 1578 + Records, Price Bills - Price list,1934 + + + + + + 87 + 1579 + Records, Price Bills - Price lists, incl. Portland, OR,1926-1939 + + + + + + 87 + 1580 + Records, Price Bills - Price schedule,1937 + + + + + + 87 + 1581 + Records, Price Bills - Work-up for new pricing,1939 + + + + + + 87 + 1582 + Records, Price Bills - Price list, 1940, for houses shown in 1939 catalog that are not included in 1940 catalog,1939-1940 + + + + + + 87 + 1583 + Records, Price Bills - Pricing material, options, allowances, specifications 1940. Mr. H.F. Read. Rev. 1941,1940-1941 + + + + + + 87 + 1584 + Records, Price Bills - Options and allowances. (2 folders),1940 + + + + + + 87 + 1585 + Records, Price Bills - Options and allowances. (2 folders),1940 + + + + + + 87 + 1586 + Records, Price Bills - Pricing manual, 1941, incl. explanations of sales plans & “Special Houses,” specifications,1941 + + + + + + 87 + 1587 + Records, Price Bills - Materials specifications; summer cottage price list,1945 + + + + + + 87 + 1588 + Records, Price Bills - Pricing, allowances, options,1947-1949 + + + + + + 87 + 1589 + Records, Price Bills - Specifications. W.F. Sovereign copy,1948 + + + + + + 87 + 1590 + Records, Price Bills - Price lists & allowances,1949 + + + + + + 87 + 1591 + Records, Price Bills - Price lists, incl. summer cottages, letter,1950 + + + + + + 87 + 1592 + Records, Price Bills - Costs of houses completed,1950 + + + + + + 87 + 1593 + Records, Price Bills - Price book. M.E. Frantz,1950 + + + + + + 87 + 1594 + Records, Price Bills - Motel prices and specifications,1950 + + + + + + 87 + 1595 + Records, Price Bills - Annual Price lists (10 folders),1951-1960 + + + + + + 87 + 1596 + Records, Price Bills - Annual Price lists (10 folders),1951-1960 + + + + + + 87 + 1597 + Records, Price Bills - Annual Price lists (10 folders),1951-1960 + + + + + + 87 + 1598 + Records, Price Bills - Annual Price lists (10 folders),1951-1960 + + + + + + 87 + 1599 + Records, Price Bills - Annual Price lists (10 folders),1951-1960 + + + + + + 87 + 1600 + Records, Price Bills - Annual Price lists (10 folders),1951-1960 + + + + + + 87 + 1601 + Records, Price Bills - Annual Price lists (10 folders),1951-1960 + + + + + + 87 + 1602 + Records, Price Bills - Annual Price lists (10 folders),1951-1960 + + + + + + 87 + 1603 + Records, Price Bills - Annual Price lists (10 folders),1951-1960 + + + + + + 87 + 1604 + Records, Price Bills - Annual Price lists (10 folders),1951-1960 + + + + + + 87 + 1605 + Records, Price Bills - House allowances & charges for options (4 folders),1952-1955 + + + + + + 87 + 1606 + Records, Price Bills - House allowances & charges for options (4 folders),1952-1955 + + + + + + 87 + 1607 + Records, Price Bills - House allowances & charges for options (4 folders),1952-1955 + + + + + + 87 + 1608 + Records, Price Bills - House allowances & charges for options (4 folders),1952-1955 + + + + + + 88 + 1609 + Records, Price Bills - Export price lists,1950-1959 + + + + + + 88 + 1610 + Records, Price Bills - Price changes, 1950’s and 1960’s,1950-1969 + + + + + + 88 + 1611 + Records, Price Bills - Price allowances, charges for options, specifications (4 folders),1962-1964 + + + + + + 88 + 1612 + Records, Price Bills - Price allowances, charges for options, specifications (4 folders),1962-1964 + + + + + + 88 + 1613 + Records, Price Bills - Price allowances, charges for options, specifications (4 folders),1962-1964 + + + + + + 88 + 1614 + Records, Price Bills - Price allowances, charges for options, specifications (4 folders),1962-1964 + + + + + + 88 + 1615 + Records, Price Bills - Price lists,1954 + + + + + + 88 + 1616 + Records, Price Bills - Price lists Jan. 7 and 15, 1957,1957 + + + + + + 88 + 1617 + Records, Price Bills - Price lists “A,” “B,” and “C”,1957-1959 + + + + + + 88 + 1618 + Records, Price Bills - Price allowances & charges for options (6 folders),1957-1959 + + + + + + 88 + 1619 + Records, Price Bills - Price allowances & charges for options (6 folders),1957-1959 + + + + + + 88 + 1620 + Records, Price Bills - Price allowances & charges for options (6 folders),1957-1959 + + + + + + 88 + 1621 + Records, Price Bills - Price allowances & charges for options (6 folders),1957-1959 + + + + + + 88 + 1622 + Records, Price Bills - Price allowances & charges for options (6 folders),1957-1959 + + + + + + 88 + 1623 + Records, Price Bills - Price allowances & charges for options (6 folders),1957-1959 + + + + + + 88 + 1624 + Records, Price Bills - Options and allowances (2 folders),1957 + + + + + + 88 + 1625 + Records, Price Bills - Options and allowances (2 folders),1957 + + + + + + 88 + 1626 + Records, Price Bills - Price lists,1958 + + + + + + 88 + 1627 + Records, Price Bills - Price list for house dropped from 1959 catalog, and specifications, 1959 (Lepeak copy),1959 + + + + + + 88 + 1628 + Records, Price Bills - Price lists, 1945-1961. Requested by W.F. Sovereign, June 15, 1961,1945-1961 + + + + + + 88 + 1629 + Records, Price Bills - Price lists,1961 + + + + + + 88 + 1630 + Records, Price Bills - Price lists. B-I-Y System,1962 + + + + + + 88 + 1631 + Records, Price Bills - Price lists,1963 + + + + + + 88 + 1632 + Records, Price Bills - “Aladdin’s Shopper” catalog with price sheets. Diagram of Aladdin Shoppers Dept. Arlene Pricur copy,1963 + + + + + + 88 + 1633 + Records, Price Bills - Price lists,1964 + + + + + + 88 + 1634 + Records, Price Bills - House allowances & changes for options. (4 folders),1964-1967 + + + + + + 88 + 1635 + Records, Price Bills - House allowances & changes for options. (4 folders),1964-1967 + + + + + + 88 + 1636 + Records, Price Bills - House allowances & changes for options. (4 folders),1964-1967 + + + + + + 88 + 1637 + Records, Price Bills - House allowances & changes for options. (4 folders),1964-1967 + + + + + + 89 + 1638 + Records, Price Bills - Price lists,1965 + + + + + + 89 + 1639 + Records, Price Bills - Price list and optional equipment,1966 + + + + + + 89 + 1640 + Records, Price Bills - Price lists,1967-1970 + + + + + + 89 + 1641 + Records, Price Bills - Price list, Zone A,1968 + + + + + + 89 + 1642 + Records, Price Bills - Price list (69A) and options,1969 + + + + + + 89 + 1643 + Records, Price Bills - Price lists,1971-1975 + + + + + + 89 + 1644 + Records, Price Bills - Options and allowances,1972 + + + + + + 89 + 1645 + Records, Price Bills - Price research,1973 + + + + + + 89 + 1646 + Records, Price Bills - Pricing,1973 + + + + + + 89 + 1647 + Records, Price Bills - Options and allowances,1973 + + + + + + 89 + 1648 + Records, Price Bills - Options and allowances. Price rise noted (2 folders),1974 + + + + + + 89 + 1649 + Records, Price Bills - Options and allowances. Price rise noted (2 folders),1974 + + + + + + 89 + 1650 + Records, Price Bills - Price lists, 1976-1981. Letter re. prices, 1982,1976-1982 + + + + + + 89 + 1651 + Records, Price Bills - Options and allowances,1976 + + + + + + 89 + 1652 + Records, Price Bills - Options and allowances (2 folders),1978 + + + + + + 89 + 1653 + Records, Price Bills - Options and allowances (2 folders),1978 + + + + + + 89 + 1654 + Records, Price Bills - Options and allowances (2 folders),1979 + + + + + + 89 + 1655 + Records, Price Bills - Options and allowances (2 folders),1979 + + + + + + 89 + 1656 + Records, Price Bills - Price list,1980 + + + + + + 89 + 1657 + Records, Price Bills - Options and allowances,1980 + + + + + + 89 + 1658 + Records, Price Bills - Options and allowances,1981 + + + + + + 89 + 1659 + Records, Price Bills - Special plans pricing by customer name: A-G,undated + + + + + + 89 + 1660 + Records, Price Bills - Special plans pricing by customer name: H-N,undated + + + + + + 89 + 1661 + Records, Price Bills - Special plans pricing by customer name: O-Z,undated + + + + + + 89 + 1662 + Records, Price Bills - House price research (4 folders),1973-1980 + + + + + + 89 + 1663 + Records, Price Bills - House price research (4 folders),1973-1980 + + + + + + 89 + 1664 + Records, Price Bills - House price research (4 folders),1973-1980 + + + + + + 89 + 1665 + Records, Price Bills - House price research (4 folders),1973-1980 + + + + + + 90 + 1666 + Records, Orders - Indexes to Orders, alphabetical by customer name (28 volumes usually annual housed in 14 folders) Small order log books,1914-1915 + + + + + + 90 + 1667 + Records, Orders - Indexes to Orders, alphabetical by customer name (28 volumes usually annual housed in 14 folders) Small order log books,1915-1916 + + + + + + 90 + 1668 + Records, Orders - Indexes to Orders, alphabetical by customer name (28 volumes usually annual housed in 14 folders) Small order log books,1917-1918 + + + + + + 90 + 1669 + Records, Orders - Indexes to Orders, alphabetical by customer name (28 volumes usually annual housed in 14 folders) Small order log books – Hattiesburg Index,1919 + + + + + + + 90 + 1670 + Records, Orders - Indexes to Orders, alphabetical by customer name (28 volumes usually annual housed in 14 folders) Small order log books,1920-1921 + + + + + + 90 + 1671 + Records, Orders - Indexes to Orders, alphabetical by customer name (28 volumes usually annual housed in 14 folders) Small order log books,1922-1923 + + + + + + 90 + 1672 + Records, Orders - Indexes to Orders, alphabetical by customer name (28 volumes usually annual housed in 14 folders) Small order log books,1924-1925 + + + + + + 90 + 1673 + Records, Orders - Indexes to Orders, alphabetical by customer name (28 volumes usually annual housed in 14 folders) Small order log books,1926-1927 + + + + + + 90 + 1674 + Records, Orders - Indexes to Orders, alphabetical by customer name (28 volumes usually annual housed in 14 folders) Small order log books,1928-1929 + + + + + + 90 + 1675 + Records, Orders - Indexes to Orders, alphabetical by customer name (28 volumes usually annual housed in 14 folders) Small order log books,1930-1933 + + + + + + 90 + 1676 + Records, Orders - Indexes to Orders, alphabetical by customer name (28 volumes usually annual housed in 14 folders) Small order log books,1934-1938 + + + + + + 90 + 1677 + Records, Orders - Indexes to Orders, alphabetical by customer name (28 volumes usually annual housed in 14 folders) Small order log books,1939-1940 + + + + + + 90 + 1678 + Records, Orders - Indexes to Orders, alphabetical by customer name (28 volumes usually annual housed in 14 folders) Small order log book,1941-1945, 1947-1950 + + + + + + 90 + 1679 + Records, Orders - Indexes to Orders, alphabetical by customer name (28 volumes usually annual housed in 14 folders) Small order log book,1948-1949 + + + + + + 91 + 1680 + Records, Orders - Indexes to Orders, alphabetical by customer name (37 volumes, many duplicate, usually annual, housed in 14 folders) Small order log books,1950-1953 + + + + + + 91 + 1681 + Records, Orders - Indexes to Orders, alphabetical by customer name (37 volumes, many duplicate, usually annual, housed in 14 folders) Small order log books (2 copies),1951-1952 + + + + + + 91 + 1682 + Records, Orders - Indexes to Orders, alphabetical by customer name (37 volumes, many duplicate, usually annual, housed in 14 folders) Small order log books (order number book),1953-1956 + + + + + + 91 + 1683 + Records, Orders - Indexes to Orders, alphabetical by customer name (37 volumes, many duplicate, usually annual, housed in 14 folders) Small order log books (2 copies),1954-1955 + + + + + + 91 + 1684 + Records, Orders - Indexes to Orders, alphabetical by customer name (37 volumes, many duplicate, usually annual, housed in 14 folders) Small order log books (2 copies),1956-1957 + + + + + + 91 + 1685 + Records, Orders - Indexes to Orders, alphabetical by customer name (37 volumes, many duplicate, usually annual, housed in 14 folders) Small order log books (2 copies),1958-1959 + + + + + + 91 + 1686 + Records, Orders - Indexes to Orders, alphabetical by customer name (37 volumes, many duplicate, usually annual, housed in 14 folders) Small order log books (house order index),1960-1964 + + + + + + 91 + 1687 + Records, Orders - Indexes to Orders, alphabetical by customer name (37 volumes, many duplicate, usually annual, housed in 14 folders) Small order log books (house order index),1965-1981 + + + + + + 91 + 1688 + Records, Orders - Indexes to Orders, alphabetical by customer name (37 volumes, many duplicate, usually annual, housed in 14 folders) Small order log books,1968-1971 + + + + + + 91 + 1689 + Records, Orders - Indexes to Orders, alphabetical by customer name (37 volumes, many duplicate, usually annual, housed in 14 folders) Small order log books (order index),1972-1975, 1957-1967 + + + + + + 91 + 1690 + Records, Orders - Indexes to Orders, alphabetical by customer name (37 volumes, many duplicate, usually annual, housed in 14 folders) Small order log books,1970-1972 + + + + + + 91 + 1691 + Records, Orders - Indexes to Orders, alphabetical by customer name (37 volumes, many duplicate, usually annual, housed in 14 folders) Small order log books,1973-1975 + + + + + + 91 + 1692 + Records, Orders - Indexes to Orders, alphabetical by customer name (37 volumes, many duplicate, usually annual, housed in 14 folders) Small order log books,1977-1979 + + + + + + 91 + 1693 + Records, Orders - Indexes to Orders, alphabetical by customer name (37 volumes, many duplicate, usually annual, housed in 14 folders) Small order log books,1980-1981 + + + + + + 92 + 1694 + Records, Orders - Indexes to Orders: 1961-1967, 1970-1980 alphabetical by customer name (10 volumes, duplicating information in preceding volumes, housed in 4 folders); 1949-1957, alphabetical by model name (9 volumes housed in 2 volumes); 1951-1957, organized by order number (4 volumes); 1958-1981, organized by order number (#58001-81014) and includes address where house built (3 folders) - Small order log books – Secretaries' order books,1949-1950, 1952-1953 + + + + + + 92 + 1695 + Records, Orders - Indexes to Orders: 1961-1967, 1970-1980 alphabetical by customer name (10 volumes, duplicating information in preceding volumes, housed in 4 folders); 1949-1957, alphabetical by model name (9 volumes housed in 2 volumes); 1951-1957, organized by order number (4 volumes); 1958-1981, organized by order number (#58001-81014) and includes address where house built (3 folders) - Small order log books – Order numbers,1951-1981 + + + + + + 92 + 1696 + Records, Orders - Indexes to Orders: 1961-1967, 1970-1980 alphabetical by customer name (10 volumes, duplicating information in preceding volumes, housed in 4 folders); 1949-1957, alphabetical by model name (9 volumes housed in 2 volumes); 1951-1957, organized by order number (4 volumes); 1958-1981, organized by order number (#58001-81014) and includes address where house built (3 folders) - Small order log books – Secretaries' order books,1953-1954, 1956-1958 + + + + + + 92 + 1697 + Records, Orders - Indexes to Orders: 1961-1967, 1970-1980 alphabetical by customer name (10 volumes, duplicating information in preceding volumes, housed in 4 folders); 1949-1957, alphabetical by model name (9 volumes housed in 2 volumes); 1951-1957, organized by order number (4 volumes); 1958-1981, organized by order number (#58001-81014) and includes address where house built (3 folders) - Small order log books – looseleaf order binders, #58001-64147,1958-1964 + + + + + + 92 + 1698 + Records, Orders - Indexes to Orders: 1961-1967, 1970-1980 alphabetical by customer name (10 volumes, duplicating information in preceding volumes, housed in 4 folders); 1949-1957, alphabetical by model name (9 volumes housed in 2 volumes); 1951-1957, organized by order number (4 volumes); 1958-1981, organized by order number (#58001-81014) and includes address where house built (3 folders) - Small order log books – looseleaf order binders, #65001-71169,1965-1971 + + + + + + 92 + 1699 + Records, Orders - Indexes to Orders: 1961-1967, 1970-1980 alphabetical by customer name (10 volumes, duplicating information in preceding volumes, housed in 4 folders); 1949-1957, alphabetical by model name (9 volumes housed in 2 volumes); 1951-1957, organized by order number (4 volumes); 1958-1981, organized by order number (#58001-81014) and includes address where house built (3 folders) - Small order log books – looseleaf order binders, #72001-81014,1972-1981 + + + + + + 92 + 1700 + Records, Orders - Indexes to Orders: 1961-1967, 1970-1980 alphabetical by customer name (10 volumes, duplicating information in preceding volumes, housed in 4 folders); 1949-1957, alphabetical by model name (9 volumes housed in 2 volumes); 1951-1957, organized by order number (4 volumes); 1958-1981, organized by order number (#58001-81014) and includes address where house built (3 folders) - Small order log books – looseleaf order binders,1976-1981 + + + + + + 92 + 1701 + Records, Orders - Indexes to Orders: 1961-1967, 1970-1980 alphabetical by customer name (10 volumes, duplicating information in preceding volumes, housed in 4 folders); 1949-1957, alphabetical by model name (9 volumes housed in 2 volumes); 1951-1957, organized by order number (4 volumes); 1958-1981, organized by order number (#58001-81014) and includes address where house built (3 folders) - Small order index,1967-1971 + + + + + + 92 + 1702 + Records, Orders - Indexes to Orders: 1961-1967, 1970-1980 alphabetical by customer name (10 volumes, duplicating information in preceding volumes, housed in 4 folders); 1949-1957, alphabetical by model name (9 volumes housed in 2 volumes); 1951-1957, organized by order number (4 volumes); 1958-1981, organized by order number (#58001-81014) and includes address where house built (3 folders) - Small order log books,1961-1967 + + + + + + 92 + 1703 + Records, Orders - Indexes to Orders: 1961-1967, 1970-1980 alphabetical by customer name (10 volumes, duplicating information in preceding volumes, housed in 4 folders); 1949-1957, alphabetical by model name (9 volumes housed in 2 volumes); 1951-1957, organized by order number (4 volumes); 1958-1981, organized by order number (#58001-81014) and includes address where house built (3 folders) - Small order book,1972-1975 + + + + + + 93 + 1704 + Records, Orders - Customer order forms - 1914-1915, book, order numbers 3789-4575,1914-1915 + + + + + + 93 + 1705 + Records, Orders - Customer order forms - sample form with instructions for processing,1977-1979 + + + + + + 93 + 1706 + Records, Orders - Customer order forms - sample form with instructions for processing,1977-1979 + + + + + + 94 + 1707 + Records, Customer Order Forms - Orders #4576-4602,1915 + + + + + + 94 + 1708 + Records, Customer Order Forms - Orders #4603-4632,1915 + + + + + + 94 + 1709 + Records, Customer Order Forms - Orders #4633-4653,1915 + + + + + + 94 + 1710 + Records, Customer Order Forms - Orders #4654-4678,1915 + + + + + + 94 + 1711 + Records, Customer Order Forms - Orders #4679-4702,1915 + + + + + + 94 + 1712 + Records, Customer Order Forms - Orders #4703-4735,1915 + + + + + + 94 + 1713 + Records, Customer Order Forms - Orders #4736-4764,1915 + + + + + + 94 + 1714 + Records, Customer Order Forms - Orders #4765-4799,1915 + + + + + + 94 + 1715 + Records, Customer Order Forms - Orders #4800-4830,1915 + + + + + + 94 + 1716 + Records, Customer Order Forms - Orders #4831-4860,1915 + + + + + + 94 + 1717 + Records, Customer Order Forms - Orders #4861-4890,1915 + + + + + + 94 + 1718 + Records, Customer Order Forms - Orders #4891-4920,1915 + + + + + + 94 + 1719 + Records, Customer Order Forms - Orders #4921-4950,1915 + + + + + + 94 + 1720 + Records, Customer Order Forms - Orders #4951-4980,1915 + + + + + + 94 + 1721 + Records, Customer Order Forms - Orders #4981-5009,1915 + + + + + + 94 + 1722 + Records, Customer Order Forms - Orders #5010-5040,1915 + + + + + + 94 + 1723 + Records, Customer Order Forms - Orders #5041-5070,1915 + + + + + + 94 + 1724 + Records, Customer Order Forms - Orders #5071-5100,1915 + + + + + + 94 + 1725 + Records, Customer Order Forms - Orders #5101-5145,1915 + + + + + + 94 + 1726 + Records, Customer Order Forms - Orders #5146-5175,1915 + + + + + + 94 + 1727 + Records, Customer Order Forms - Orders #5176-5205,1915 + + + + + + 94 + 1728 + Records, Customer Order Forms - Orders #5206-5234,1915 + + + + + + 94 + 1729 + Records, Customer Order Forms - Orders #5235-5264,1915 + + + + + + 94 + 1730 + Records, Customer Order Forms - Orders #5265-5294,1915 + + + + + + 94 + 1731 + Records, Customer Order Forms - Orders #5295-5328,1915 + + + + + + 95 + 1732 + Records, Customer Order Forms - book, order numbers 5328-6075,1916 + + + + + + 96 + 1733 + Records, Customer Order Forms - book, order numbers 6076-6900,1916 + + + + + + 97 + 1734 + Records, Customer Order Forms - book, order numbers 6901-7888,1916 + + + + + + 98 + 1735 + Records, Customer Order Forms - book, order numbers 7889-9000,1917 + + + + + + 99 + 1736 + Records, Customer Order Forms - book, order numbers 9001-10099,1917 + + + + + + 100 + 1737 + Records, Customer Order Forms - book, order numbers 10100-11167,1917 + + + + + + 101 + 1738 + Records, Customer Order Forms - book, order numbers 11200-12159 (some gaps),1918 + + + + + + 102 + 1739 + Records, Customer Order Forms - Orders #12160-12203 ½ (1918),1918 + + + + + + 102 + 1740 + Records, Customer Order Forms - Orders #12204-12277 ½,1918 + + + + + + 102 + 1741 + Records, Customer Order Forms - Orders #12278-12307,1918 + + + + + + 102 + 1742 + Records, Customer Order Forms - Orders #12308-12351,1918 + + + + + + 102 + 1743 + Records, Customer Order Forms - Orders #12352-12407,1918 + + + + + + 102 + 1744 + Records, Customer Order Forms - Orders #12408-12444,1918 + + + + + + 102 + 1745 + Records, Customer Order Forms - Orders #12445-12480,1918 + + + + + + 102 + 1746 + Records, Customer Order Forms - Orders #12481-12508,1918 + + + + + + 102 + 1747 + Records, Customer Order Forms - Orders #12509-12544,1918 + + + + + + 102 + 1748 + Records, Customer Order Forms - Orders #12545-12601,1918 + + + + + + 102 + 1749 + Records, Customer Order Forms - Orders #12602-12633,1918 + + + + + + 102 + 1750 + Records, Customer Order Forms - Orders #12634-12669 ½,1918 + + + + + + 102 + 1751 + Records, Customer Order Forms - Orders #12670-12702,1918 + + + + + + 102 + 1752 + Records, Customer Order Forms - Orders #12703-12733,1918 + + + + + + 102 + 1753 + Records, Customer Order Forms - Orders #12734-12779,1918 + + + + + + 102 + 1754 + Records, Customer Order Forms - Orders #12780-12809,1918 + + + + + + 102 + 1755 + Records, Customer Order Forms - Orders #12810-12846,1918 + + + + + + 102 + 1756 + Records, Customer Order Forms - Orders #12847-13029,1918 + + + + + + 102 + 1757 + Records, Customer Order Forms - Orders #13030-13062,1918 + + + + + + 102 + 1758 + Records, Customer Order Forms - Orders #13063-13109,1918 + + + + + + 102 + 1759 + Records, Customer Order Forms - Orders #13110-13410,1918 + + + + + + 102 + 1760 + Records, Customer Order Forms - Orders #13411-13441,1918 + + + + + + 102 + 1761 + Records, Customer Order Forms - Orders #13442-13496,1918 + + + + + + 102 + 1762 + Records, Customer Order Forms - Orders #13496 ½-14000,1918 + + + + + + 102 + 1763 + Records, Customer Order Forms - Orders #14001-14034,1918 + + + + + + 103 + 1764 + Records, Customer Order Forms - Orders #14035½-14065,1919 + + + + + + 103 + 1765 + Records, Customer Order Forms - Orders #14066-14096,1919 + + + + + + 103 + 1766 + Records, Customer Order Forms - Orders #14097-14127,1919 + + + + + + 103 + 1767 + Records, Customer Order Forms - Orders #14128-14158,1919 + + + + + + 103 + 1768 + Records, Customer Order Forms - Orders #14159-14189,1919 + + + + + + 103 + 1769 + Records, Customer Order Forms - Orders #14190-14220,1919 + + + + + + 103 + 1770 + Records, Customer Order Forms - Orders #14221-14251,1919 + + + + + + 103 + 1771 + Records, Customer Order Forms - Orders #14252-14282,1919 + + + + + + 103 + 1772 + Records, Customer Order Forms - Orders #14284-14314 ½,1919 + + + + + + 103 + 1773 + Records, Customer Order Forms - Orders #14315-14345,1919 + + + + + + 103 + 1774 + Records, Customer Order Forms - Orders #14346-14376,1919 + + + + + + 103 + 1775 + Records, Customer Order Forms - Orders #14377-14407,1919 + + + + + + 103 + 1776 + Records, Customer Order Forms - Orders #14408-14438½,1919 + + + + + + 103 + 1777 + Records, Customer Order Forms - Orders #14439-14469,1919 + + + + + + 103 + 1778 + Records, Customer Order Forms - Orders #14470-14528,1919 + + + + + + 103 + 1779 + Records, Customer Order Forms - Orders #14529-14559,1919 + + + + + + 103 + 1780 + Records, Customer Order Forms - Orders #14560-14590,1919 + + + + + + 103 + 1781 + Records, Customer Order Forms - Orders #14591-14621,1919 + + + + + + 103 + 1782 + Records, Customer Order Forms - Orders #14621½-14651,1919 + + + + + + 103 + 1783 + Records, Customer Order Forms - Orders #14652-14682,1919 + + + + + + 103 + 1784 + Records, Customer Order Forms - Orders #14683-14713,1919 + + + + + + 103 + 1785 + Records, Customer Order Forms - Orders #14714-14744,1919 + + + + + + 103 + 1786 + Records, Customer Order Forms - Orders #14745-14775,1919 + + + + + + 103 + 1787 + Records, Customer Order Forms - Orders #14776-14806,1919 + + + + + + 103 + 1788 + Records, Customer Order Forms - Orders #S-14807-14837,1919 + + + + + + 103 + 1789 + Records, Customer Order Forms - Orders #14838-14868,1919 + + + + + + 103 + 1790 + Records, Customer Order Forms - Orders #14869-14899,1919 + + + + + + 103 + 1791 + Records, Customer Order Forms - Orders #14900-14930,1919 + + + + + + 103 + 1792 + Records, Customer Order Forms - Orders #14931-14961, some photocopies,1919 + + + + + + 103 + 1793 + Records, Customer Order Forms - Orders #14961½-14976, photocopies,1919 + + + + + + 104 + 1794 + Records, Customer Order Forms - book, order numbers 14976-16034,1919 + + + + + + 105 + 1795 + Records, Customer Order Forms - book, order numbers 16035-17015,1919 + + + + + + 106 + 1796 + Records, Customer Order Forms - book, order numbers 17016-17949,1920 + + + + + + 107 + 1797 + Records, Customer Order Forms - Orders #17960-17989,1920 + + + + + + 107 + 1798 + Records, Customer Order Forms - Orders #17990-18524,1920 + + + + + + 107 + 1799 + Records, Customer Order Forms - Orders #18525-18560,1920 + + + + + + 107 + 1800 + Records, Customer Order Forms - Orders #18561-18599,1920 + + + + + + 107 + 1801 + Records, Customer Order Forms - Orders #18600-18636,1920 + + + + + + 107 + 1802 + Records, Customer Order Forms - Orders #18637-18677,1920 + + + + + + 107 + 1803 + Records, Customer Order Forms - Orders #18678-18710,1920 + + + + + + 107 + 1804 + Records, Customer Order Forms - Orders #18711-18741,1920 + + + + + + 107 + 1805 + Records, Customer Order Forms - Orders #18742-18774,1920 + + + + + + 107 + 1806 + Records, Customer Order Forms - Orders #18775-18800,1920 + + + + + + 107 + 1807 + Records, Customer Order Forms - Orders #18801-18840,1920 + + + + + + 107 + 1808 + Records, Customer Order Forms - Orders #18841-18870,1920 + + + + + + 107 + 1809 + Records, Customer Order Forms - Orders #18871-18900,1920 + + + + + + 107 + 1810 + Records, Customer Order Forms - Orders #18901-18952,1920 + + + + + + 107 + 1811 + Records, Customer Order Forms - Orders #18953-18975,1920 + + + + + + 107 + 1812 + Records, Customer Order Forms - Orders #18976-18999,1920 + + + + + + 107 + 1813 + Records, Customer Order Forms - Orders #19000-19051,1920 + + + + + + 107 + 1814 + Records, Customer Order Forms - Orders #19052-19074,1920 + + + + + + 107 + 1815 + Records, Customer Order Forms - Orders #19075-19136,1920 + + + + + + 107 + 1816 + Records, Customer Order Forms - Orders #19136-19176,1920 + + + + + + 107 + 1817 + Records, Customer Order Forms - Orders #19177-19203,1920 + + + + + + 107 + 1818 + Records, Customer Order Forms - Orders #19204-19236,1920 + + + + + + 107 + 1819 + Records, Customer Order Forms - Orders #19237-19298,1920 + + + + + + 107 + 1820 + Records, Customer Order Forms - Orders #19299-19344,1920 + + + + + + 107 + 1821 + Records, Customer Order Forms - Orders #19345-19387,1920 + + + + + + 108 + 1822 + Records, Customer Order Forms - book, order numbers 21000-21482,1921 + + + + + + 109 + 1823 + Records, Customer Order Forms - book, order numbers 21483-22091,1921 + + + + + + 110 + 1824 + Records, Customer Order Forms - 1922, book, order numbers 22092-22586,1922 + + + + + + 111 + 1825 + Records, Customer Order Forms - book, order numbers 22587-23180,1922 + + + + + + 112 + 1826 + Records, Customer Order Forms - Orders #24401.08-23230,1922-1923 + + + + + + 112 + 1827 + Records, Customer Order Forms - Orders #23231-23260,1923 + + + + + + 112 + 1828 + Records, Customer Order Forms - Orders #23261-23290,1923 + + + + + + 112 + 1829 + Records, Customer Order Forms - Orders #23291-23321,1923 + + + + + + 112 + 1830 + Records, Customer Order Forms - Orders #23322-23352,1923 + + + + + + 112 + 1831 + Records, Customer Order Forms - Orders #23353-23383,1923 + + + + + + 112 + 1832 + Records, Customer Order Forms - Orders #23384-23414,1923 + + + + + + 112 + 1833 + Records, Customer Order Forms - Orders #23415-23445,1923 + + + + + + 112 + 1834 + Records, Customer Order Forms - Orders #23446-23476,1923 + + + + + + 112 + 1835 + Records, Customer Order Forms - Orders #23477-23507,1923 + + + + + + 112 + 1836 + Records, Customer Order Forms - Orders #23508-23538,1923 + + + + + + 112 + 1837 + Records, Customer Order Forms - Orders #23539-23569,1923 + + + + + + 112 + 1838 + Records, Customer Order Forms - Orders #23570-23600,1923 + + + + + + 112 + 1839 + Records, Customer Order Forms - Orders #23632-23662,1923 + + + + + + 112 + 1840 + Records, Customer Order Forms - Orders #23601-23631,1923 + + + + + + 112 + 1841 + Records, Customer Order Forms - Orders #23663-23693,1923 + + + + + + 112 + 1842 + Records, Customer Order Forms - Orders #23694-23725,1923 + + + + + + 112 + 1843 + Records, Customer Order Forms - Orders #23726-23756,1923 + + + + + + 112 + 1844 + Records, Customer Order Forms - Orders #23757-23787 ½,1923 + + + + + + 112 + 1845 + Records, Customer Order Forms - Orders #23788-23878,1923 + + + + + + 112 + 1846 + Records, Customer Order Forms - Orders #23819-23850 ½,1923 + + + + + + 112 + 1847 + Records, Customer Order Forms - Orders #23851-23923,1923 + + + + + + 113 + 1848 + Records, Customer Order Forms - book, order numbers 23924-24454,1923 + + + + + + 114 + 1849 + Records, Customer Order Forms - book, order numbers 24455-26212,1924 + + + + + + 115 + 1850 + Records, Customer Order Forms - book, order numbers 26213-26860,1924 + + + + + + 116 + 1851 + Records, Customer Order Forms - book, order numbers 26861-27684,1925 + + + + + + 117 + 1852 + Records, Customer Order Forms - book, order numbers 27685-28655,1925 + + + + + + 118 + 1853 + Records, Customer Order Forms - book, order numbers 28656-29536,1926 + + + + + + 119 + 1854 + Records, Customer Order Forms - book, order numbers 29537-323131926 + + + + + + 120 + 1855 + Records, Customer Order Forms - book, order numbers 32314-33703,1927 + + + + + + 121 + 1856 + Records, Customer Order Forms - book, order numbers 33704-34862,1928 + + + + + + 122 + 1857 + Records, Customer Order Forms - book, order numbers 34683-35438,1929 + + + + + + 123 + 1858 + Records, Customer Order Forms - book, order numbers 35439-35858,1930 + + + + + + 124 + 1859 + Records, Customer Order Forms - book, order numbers 35959-36673,1931-1932 + + + + + + 125 + 1860 + Records, Customer Order Forms - Orders #36677-36700,1933-1936 + + + + + + 125 + 1861 + Records, Customer Order Forms - Orders #36700-36735,1933-1936 + + + + + + 125 + 1862 + Records, Customer Order Forms - Orders #36736-36770,1933-1936 + + + + + + 125 + 1863 + Records, Customer Order Forms - Orders #36771-36800,1933-1936 + + + + + + 125 + 1864 + Records, Customer Order Forms - Orders #36801-36835,1933-1936 + + + + + + 125 + 1865 + Records, Customer Order Forms - Orders #36836-36870,1933-1936 + + + + + + 125 + 1866 + Records, Customer Order Forms - Orders #36871-36900,1933-1936 + + + + + + 125 + 1867 + Records, Customer Order Forms - Orders #36901-36935,1933-1936 + + + + + + 125 + 1868 + Records, Customer Order Forms - Orders #36936-36970,1933-1936 + + + + + + 125 + 1869 + Records, Customer Order Forms - Orders #36971-36999,1933-1936 + + + + + + 125 + 1870 + Records, Customer Order Forms - Orders #37000-37034,1933-1936 + + + + + + 125 + 1871 + Records, Customer Order Forms - Orders #37035-37070,1933-1936 + + + + + + 125 + 1872 + Records, Customer Order Forms - Orders #37071-37100,1933-1936 + + + + + + 125 + 1873 + Records, Customer Order Forms - Orders #37101-37135,1933-1936 + + + + + + 125 + 1874 + Records, Customer Order Forms - Orders #37136-37170,1933-1936 + + + + + + 125 + 1875 + Records, Customer Order Forms - Orders #37171-37200,1933-1936 + + + + + + 125 + 1876 + Records, Customer Order Forms - Orders #37201-37235,1933-1936 + + + + + + 125 + 1877 + Records, Customer Order Forms - Orders #37236-37270,1933-1936 + + + + + + 125 + 1878 + Records, Customer Order Forms - Orders #37271-37300,1933-1936 + + + + + + 125 + 1879 + Records, Customer Order Forms - Orders #37301-37335,1933-1936 + + + + + + 125 + 1880 + Records, Customer Order Forms - Orders #37336-37370,1933-1936 + + + + + + 125 + 1881 + Records, Customer Order Forms - Orders #37371-37399,1933-1936 + + + + + + 125 + 1882 + Records, Customer Order Forms - Orders #37400-27447,1933-1936 + + + + + + 126 + 1883 + Records, Customer Order Forms - order numbers 37448-38099,1937-1939 + + + + + + 127 + 1884 + Empty folder,undated + + + + + + 127 + 1885 + Records, Customer Order Forms - Orders #38100-38130,1940-1945 + + + + + + 127 + 1886 + Records, Customer Order Forms - Orders #38131-38170,1940-1945 + + + + + + 127 + 1887 + Records, Customer Order Forms - Orders #38171-38200,1940-1945 + + + + + + 127 + 1888 + Records, Customer Order Forms - Orders #38201-38230,1940-1945 + + + + + + 127 + 1889 + Records, Customer Order Forms - Orders #38231-38270,1940-1945 + + + + + + 127 + 1890 + Records, Customer Order Forms - Orders #38271-38300,1940-1945 + + + + + + 127 + 1891 + Records, Customer Order Forms - Orders #38301-38330,1940-1945 + + + + + + 127 + 1892 + Records, Customer Order Forms - Orders #38331-38370,1940-1945 + + + + + + 127 + 1893 + Records, Customer Order Forms - Orders #38371-38400,1940-1945 + + + + + + 127 + 1894 + Records, Customer Order Forms - Orders #38401-38430,1940-1945 + + + + + + 127 + 1895 + Records, Customer Order Forms - Orders #38431-38470,1940-1945 + + + + + + 127 + 1896 + Records, Customer Order Forms - Orders #38471-38500,1940-1945 + + + + + + 127 + 1897 + Records, Customer Order Forms - Orders #38501-38530,1940-1945 + + + + + + 127 + 1898 + Records, Customer Order Forms - Orders #38531-38570,1940-1945 + + + + + + 127 + 1899 + Records, Customer Order Forms - Orders #38571-38605,1940-1945 + + + + + + 127 + 1900 + Records, Customer Order Forms - Orders #38606-38670,1940-1945 + + + + + + 127 + 1901 + Records, Customer Order Forms - Orders #38671-38798,1940-1948 + + + + + + 127 + 1902 + Records, Customer Order Forms - Invoices – orders #23096-23137,1942-1944 + + + + + + 128 + 1903 + Records, Customer Order Forms - book, order numbers 39001-39948,1947-1948 + + + + + + 129 + 1904 + Records, Customer Order Forms - book, order numbers 4901-49912,1949 + + + + + + 130 + 1905 + Records, Customer Order Forms - book, order numbers 50001-50600,1950 + + + + + + 131 + 1906 + Records, Customer Order Forms - order numbers 50601-51200 (book incorrectly labeled 50001-50600),1950 + + + + + + 132 + 1907 + Records, Customer Order Forms - book, order numbers 51201-51811,1950 + + + + + + 133 + 1908 + Records, Customer Order Forms - book, order numbers 52000-52543,1951 + + + + + + 134 + 1909 + Records, Customer Order Forms - book, order numbers 524444-53087,1951 + + + + + + 135 + 1910 + Records, Customer Order Forms - Orders #53101-53131,1952 + + + + + + 135 + 1911 + Records, Customer Order Forms - Orders #53132-33162,1952 + + + + + + 135 + 1912 + Records, Customer Order Forms - Orders #53163-53193,1952 + + + + + + 135 + 1913 + Records, Customer Order Forms - Orders #53194-53224,1952 + + + + + + 135 + 1914 + Records, Customer Order Forms - Orders #53225-53256,1952 + + + + + + 135 + 1915 + Records, Customer Order Forms - Orders #53257-53287,1952 + + + + + + 135 + 1916 + Records, Customer Order Forms - Orders #53288-53318,1952 + + + + + + 135 + 1917 + Records, Customer Order Forms - Orders #53319-53349,1952 + + + + + + 135 + 1918 + Records, Customer Order Forms - Orders #53350-53380,1952 + + + + + + 135 + 1919 + Records, Customer Order Forms - Orders #53381-53411,1952 + + + + + + 135 + 1920 + Records, Customer Order Forms - Orders #53412-53442,1952 + + + + + + 135 + 1921 + Records, Customer Order Forms - Orders #53443-53473,1952 + + + + + + 135 + 1922 + Records, Customer Order Forms - Orders #53474-53504,1952 + + + + + + 135 + 1923 + Records, Customer Order Forms - Orders #53505-53535,1952 + + + + + + 135 + 1924 + Records, Customer Order Forms - Orders #53536-53566,1952 + + + + + + 135 + 1925 + Records, Customer Order Forms - Orders #53567-53597,1952 + + + + + + 135 + 1926 + Records, Customer Order Forms - Orders #53598-53640,1952 + + + + + + 135 + 1927 + Records, Customer Order Forms - Orders #53641-53679,1952 + + + + + + 136 + 1928 + Records, Customer Order Forms - book, order numbers 53680-531359,1952 + + + + + + 137 + 1929 + Records, Customer Order Forms - Orders #531422-531470 (up to 151451 missing) – photocopies,1953 + + + + + + 137 + 1930 + Records, Customer Order Forms - Orders #531471-531499 – photocopies,1953 + + + + + + 137 + 1931 + Records, Customer Order Forms - Orders #531500-531530 – photocopies,1953 + + + + + + 137 + 1932 + Records, Customer Order Forms - Orders #531531-531569 – photocopies,1953 + + + + + + 137 + 1933 + Records, Customer Order Forms - Orders #531570-531599 – photocopies,1953 + + + + + + 137 + 1934 + Records, Customer Order Forms - Orders #531600-531630 – photocopies,1953 + + + + + + 137 + 1935 + Records, Customer Order Forms - Orders #531631-531669 – photocopies,1953 + + + + + + 137 + 1936 + Records, Customer Order Forms - Orders #531670-531699 – photocopies,1953 + + + + + + 137 + 1937 + Records, Customer Order Forms - Orders #531700-531729 – photocopies,1953 + + + + + + 137 + 1938 + Records, Customer Order Forms - Orders #531730-531770,1953 + + + + + + 137 + 1939 + Records, Customer Order Forms - Orders #531771-531799,1953 + + + + + + 137 + 1940 + Records, Customer Order Forms - Orders #531800-531831,1953 + + + + + + 137 + 1941 + Records, Customer Order Forms - Orders #531831-531869,1953 + + + + + + 137 + 1942 + Records, Customer Order Forms - Orders #531870-531899,1953 + + + + + + 137 + 1943 + Records, Customer Order Forms - Orders #531900-531929,1953 + + + + + + 137 + 1944 + Records, Customer Order Forms - Orders #531930-531969,1953 + + + + + + 137 + 1945 + Records, Customer Order Forms - Orders #531970-531999,1953 + + + + + + 137 + 1946 + Records, Customer Order Forms - Orders #532000-532030,1953 + + + + + + 137 + 1947 + Records, Customer Order Forms - Orders #532031-532070,1953 + + + + + + 137 + 1948 + Records, Customer Order Forms - Orders #532071-532099,1953 + + + + + + 137 + 1949 + Records, Customer Order Forms - Orders #532100-532130,1953 + + + + + + 137 + 1950 + Records, Customer Order Forms - Orders #532131-532170,1953 + + + + + + 137 + 1951 + Records, Customer Order Forms - Orders #532171-532199,1953 + + + + + + 137 + 1952 + Records, Customer Order Forms - Orders #532200-532230,1953 + + + + + + 137 + 1953 + Records, Customer Order Forms - Orders #532231-532290,1953 + + + + + + 138 + 1954 + Records, Customer Order Forms - book, order numbers 54001-54949,1954 + + + + + + 139 + 1955 + Records, empty folder,undated + + + + + + 139 + 1956 + Records, Customer Order Forms - Orders #550001-550031 photocopies/originals,1955 + + + + + + 139 + 1957 + Records, Customer Order Forms - Orders #550032-550062 originals,1955 + + + + + + 139 + 1958 + Records, Customer Order Forms - Orders #550063-550093 originals,1955 + + + + + + 139 + 1959 + Records, Customer Order Forms - Orders #550094-550124 originals,1955 + + + + + + 139 + 1960 + Records, Customer Order Forms - Orders #550125-550155 originals,1955 + + + + + + 139 + 1961 + Records, Customer Order Forms - Orders #550156-550186 originals,1955 + + + + + + 139 + 1962 + Records, Customer Order Forms - Orders #550187-550218 originals,1955 + + + + + + 139 + 1963 + Records, Customer Order Forms - Orders #550219-550249 originals,1955 + + + + + + 139 + 1964 + Records, Customer Order Forms - Orders #550250-550280 originals,1955 + + + + + + 139 + 1965 + Records, Customer Order Forms - Orders #550281-550311 originals,1955 + + + + + + 139 + 1966 + Records, Customer Order Forms - Orders #550312-550342 originals,1955 + + + + + + 139 + 1967 + Records, Customer Order Forms - Orders #550343-550373 originals,1955 + + + + + + 139 + 1968 + Records, Customer Order Forms - Orders #550374-550404 originals,1955 + + + + + + 139 + 1969 + Records, Customer Order Forms - Orders #550405-550435 originals,1955 + + + + + + 139 + 1970 + Records, Customer Order Forms - Orders #550436-550468 originals,1955 + + + + + + 140 + 1971 + Records, Customer Order Forms - book, order numbers 550469-550929,1955 + + + + + + 141 + 1972 + Records, Customer Order Forms - book, order numbers 560001-560845,1956 + + + + + + 142 + 1973 + Records, Customer Order Forms - Orders #570171-570200,1957 + + + + + + 142 + 1974 + Records, Customer Order Forms - Orders #570201-570230,1957 + + + + + + 142 + 1975 + Records, Customer Order Forms - Orders #570231-570270,1957 + + + + + + 142 + 1976 + Records, Customer Order Forms - Orders #570271-570300,1957 + + + + + + 142 + 1977 + Records, Customer Order Forms - Orders #570301-570330,1957 + + + + + + 142 + 1978 + Records, Customer Order Forms - Orders #570331-570370,1957 + + + + + + 142 + 1979 + Records, Customer Order Forms - Orders #570371-570399,1957 + + + + + + 142 + 1980 + Records, Customer Order Forms - Orders #570400-570430,1957 + + + + + + 142 + 1981 + Records, Customer Order Forms - Orders #570431-570470,1957 + + + + + + 142 + 1982 + Records, Customer Order Forms - Orders #570471-57 – P6,1957 + + + + + + 142 + 1983 + Records, Customer Order Forms - Orders #570001-570031,1957 + + + + + + 142 + 1984 + Records, Customer Order Forms - Orders #570032-570071,1957 + + + + + + 142 + 1985 + Records, Customer Order Forms - Orders #570072-570100,1957 + + + + + + 142 + 1986 + Records, Customer Order Forms - Orders #570101-570130,1957 + + + + + + 142 + 1987 + Records, Customer Order Forms - Orders #570131-570170,1957 + + + + + + 143 + 1988 + Records, Customer Order Forms - Orders #580001-580030,1958 + + + + + + 143 + 1989 + Records, Customer Order Forms - Orders #580031-580070,1958 + + + + + + 143 + 1990 + Records, Customer Order Forms - Orders #580071-580100,1958 + + + + + + 143 + 1991 + Records, Customer Order Forms - Orders #580101-580131,1958 + + + + + + 143 + 1992 + Records, Customer Order Forms - Orders #580132-580170,1958 + + + + + + 143 + 1993 + Records, Customer Order Forms - Orders #580171-580200,1958 + + + + + + 143 + 1994 + Records, Customer Order Forms - Orders #580201-580230,1958 + + + + + + 143 + 1995 + Records, Customer Order Forms - Orders #580231-58 – P7,1958 + + + + + + 144 + 1996 + Records, Customer Order Forms - Orders #59 – P1-59030,1959 + + + + + + 144 + 1997 + Records, Customer Order Forms - Orders #59031-59070,1959 + + + + + + 144 + 1998 + Records, Customer Order Forms - Orders #59071-59100,1959 + + + + + + 144 + 1999 + Records, Customer Order Forms - Orders #59101-59130,1959 + + + + + + 144 + 2000 + Records, Customer Order Forms - Orders #59131-59170,1959 + + + + + + 144 + 2001 + Records, Customer Order Forms - Orders #59171-59200,1959 + + + + + + 144 + 2002 + Records, Customer Order Forms - Orders #59201-59230,1959 + + + + + + 144 + 2003 + Records, Customer Order Forms - Orders #59231-59270,1959 + + + + + + 144 + 2004 + Records, Customer Order Forms - Orders #59271-59300,1959 + + + + + + 144 + 2005 + Records, Customer Order Forms - Orders #59201-59329,1959 + + + + + + 145 + 2006 + Records, Customer Order Forms - Orders #60 – P1-60030,1960-1961 + + + + + + 145 + 2007 + Records, Customer Order Forms - Orders #60031-60070,1960-1961 + + + + + + 145 + 2008 + Records, Customer Order Forms - Orders #60071-60100,1960-1961 + + + + + + 145 + 2009 + Records, Customer Order Forms - Orders #60101-60130,1960-1961 + + + + + + 145 + 2010 + Records, Customer Order Forms - Orders #60131-60170,1960-1961 + + + + + + 145 + 2011 + Records, Customer Order Forms - Orders #60171-60196,1960-1961 + + + + + + 145 + 2012 + Records, Customer Order Forms - Orders #61001-61030,1960-1961 + + + + + + 145 + 2013 + Records, Customer Order Forms - Orders #61031-61070,1960-1961 + + + + + + 145 + 2014 + Records, Customer Order Forms - Orders #61071-61100,1960-1961 + + + + + + 145 + 2015 + Records, Customer Order Forms - Orders #61101-61130,1960-1961 + + + + + + 145 + 2016 + Records, Customer Order Forms - Orders #61131-61159,1960-1961 + + + + + + 146 + 2017 + Records, Customer Order Forms - Orders #63071-63102,1962-1964 + + + + + + 146 + 2018 + Records, Customer Order Forms - Orders #64001-64030,1962-1964 + + + + + + 146 + 2019 + Records, Customer Order Forms - Orders #64071-64109,1962-1964 + + + + + + 146 + 2020 + Records, Customer Order Forms - Orders #64031-64070,1962-1964 + + + + + + 146 + 2021 + Records, Customer Order Forms - Orders #64110-64147,1962-1964 + + + + + + 146 + 2022 + Records, Customer Order Forms - Orders #62F1-62030,1962-1964 + + + + + + 146 + 2023 + Records, Customer Order Forms - Orders #62031-62070,1962-1964 + + + + + + 146 + 2024 + Records, Customer Order Forms - Orders #62071-62100,1962-1964 + + + + + + 146 + 2025 + Records, Customer Order Forms - Orders #62101-62130,1962-1964 + + + + + + 146 + 2026 + Records, Customer Order Forms - Orders #62131-62167,1962-1964 + + + + + + 146 + 2027 + Records, Customer Order Forms - Orders #63001-63030,1962-1964 + + + + + + 146 + 2028 + Records, Customer Order Forms - Orders #63031-63070,1962-1964 + + + + + + 147 + 2029 + Records, Customer Order Forms - Orders #67201-67213,1967 + + + + + + 147 + 2030 + Records, Customer Order Forms - Orders #65001-65030,1965 + + + + + + 147 + 2031 + Records, Customer Order Forms - Orders #65031-65070,1965 + + + + + + 147 + 2032 + Records, Customer Order Forms - Orders #65071-65099,1965 + + + + + + 147 + 2033 + Records, Customer Order Forms - Orders #65100-65130,1965 + + + + + + 147 + 2034 + Records, Customer Order Forms - Orders #65131-65167,1965 + + + + + + 148 + 2035 + Records, Customer Order Forms - Orders #66001-66030,1966 + + + + + + 148 + 2036 + Records, Customer Order Forms - Orders #66031-66070,1966 + + + + + + 148 + 2037 + Records, Customer Order Forms - Orders #66071-66100,1966 + + + + + + 148 + 2038 + Records, Customer Order Forms - Orders #66101-66130,1966 + + + + + + 148 + 2039 + Records, Customer Order Forms - Orders #66131-66165,1966 + + + + + + 148 + 2040 + Records, Customer Order Forms - Orders #66166-66189,1966 + + + + + + 149 + 2041 + Records, Customer Order Forms - Orders #67031-67070,1967 + + + + + + 149 + 2042 + Records, Customer Order Forms - Orders #67071-67100,1967 + + + + + + 149 + 2043 + Records, Customer Order Forms - Orders #67101-67130,1967 + + + + + + 149 + 2044 + Records, Customer Order Forms - Orders #67131-67170,1967 + + + + + + 149 + 2045 + Records, Customer Order Forms - Orders #67171-67200,1967 + + + + + + 150 + 2046 + Records, Customer Order Forms - Orders #68001-68030,1968 + + + + + + 150 + 2047 + Records, Customer Order Forms - Orders #68031-68070,1968 + + + + + + 150 + 2048 + Records, Customer Order Forms - Orders #68101-68130,1968 + + + + + + 150 + 2049 + Records, Customer Order Forms - Orders #68131-68170,1968 + + + + + + 150 + 2050 + Records, Customer Order Forms - Orders #68171-68200,1968 + + + + + + 150 + 2051 + Records, Customer Order Forms - Orders #68201-68224,1968 + + + + + + 150 + 2052 + Records, Customer Order Forms - Orders #67001-67030,1967 + + + + + + 151 + 2053 + Records, Customer Order Forms - Orders #70048-70078,undated + + + + + + 151 + 2054 + Records, Customer Order Forms - Orders #70079-70109,undated + + + + + + 151 + 2055 + Records, Customer Order Forms - Orders #70110-70140,undated + + + + + + 151 + 2056 + Records, Customer Order Forms - Orders #69001-69031,undated + + + + + + 151 + 2057 + Records, Customer Order Forms - Orders #69032-69062,undated + + + + + + 151 + 2058 + Records, Customer Order Forms - Orders #69063-69093,undated + + + + + + 151 + 2059 + Records, Customer Order Forms - Orders #69094-69124,undated + + + + + + 151 + 2060 + Records, Customer Order Forms - Orders #69125-69155,undated + + + + + + 151 + 2061 + Records, Customer Order Forms - Orders #69156-70016, lacking 69175-70000,undated + + + + + + 151 + 2062 + Records, Customer Order Forms - Orders #70017-70047,undated + + + + + + 152 + 2063 + Records, Customer Order Forms - Orders #71001-71031,undated + + + + + + 152 + 2064 + Records, Customer Order Forms - Orders #71032-71062,undated + + + + + + 152 + 2065 + Records, Customer Order Forms - Orders #71063-71093,undated + + + + + + 152 + 2066 + Records, Customer Order Forms - Orders #71094-71124,undated + + + + + + 152 + 2067 + Records, Customer Order Forms - Orders #71125-71152,undated + + + + + + 152 + 2068 + Records, Customer Order Forms - Orders #71153-71182,undated + + + + + + 152 + 2069 + Records, Customer Order Forms - Orders #72001-72031,undated + + + + + + 152 + 2070 + Records, Customer Order Forms - Orders #72032-72062,undated + + + + + + 152 + 2071 + Records, Customer Order Forms - Orders #72063-72093,undated + + + + + + 152 + 2072 + Records, Customer Order Forms - Orders #72094-72130,undated + + + + + + 152 + 2073 + Records, Customer Order Forms - Orders #72131-72170,undated + + + + + + 153 + 2074 + Records, Customer Order Forms - Orders #74001-74031,undated + + + + + + 153 + 2075 + Records, Customer Order Forms - Orders #74032-74062,undated + + + + + + 153 + 2076 + Records, Customer Order Forms - Orders #74063-74093,undated + + + + + + 153 + 2077 + Records, Customer Order Forms - Orders #74094-74124,undated + + + + + + 153 + 2078 + Records, Customer Order Forms - Orders #74125-74134,undated + + + + + + 153 + 2079 + Records, Customer Order Forms - Orders #73001-73031,undated + + + + + + 153 + 2080 + Records, Customer Order Forms - Orders #73032-73062,undated + + + + + + 153 + 2081 + Records, Customer Order Forms - Orders #73063-73093,undated + + + + + + 153 + 2082 + Records, Customer Order Forms - Orders #73095-73125,undated + + + + + + 153 + 2083 + Records, Customer Order Forms - Orders #73126-73149,undated + + + + + + 154 + 2074 + Records, Customer Order Forms - Orders #75001-75031,undated + + + + + + 154 + 2075 + Records, Customer Order Forms - Orders #75032-75062,undated + + + + + + 154 + 2076 + Records, Customer Order Forms - Orders #75063-76013, lacking 75080-76000,undated + + + + + + 154 + 2077 + Records, Customer Order Forms - Orders #76014-76044,undated + + + + + + 154 + 2078 + Records, Customer Order Forms - Orders #76045-76075,undated + + + + + + 154 + 2079 + Records, Customer Order Forms - Orders #76076-77006,undated + + + + + + 154 + 2080 + Records, Customer Order Forms - Orders #77007-77037,undated + + + + + + 154 + 2081 + Records, Customer Order Forms - Orders #77038-77068,undated + + + + + + 154 + 2082 + Records, Customer Order Forms - Orders #77069-77099,undated + + + + + + 154 + 2083 + Records, Customer Order Forms - Orders #77100-77118,undated + + + + + + 154 + 2084 + Records, Customer Order Forms - Orders #78001-78030,1978 + + + + + + 154 + 2085 + Records, Customer Order Forms - Orders #78031-79001,1978 + + + + + + 154 + 2086 + Records, Customer Order Forms - Orders #79002-79030,1979 + + + + + + 154 + 2087 + Records, Customer Order Forms - Orders #79031-79049,1979 + + + + + + 154 + 2088 + Records, Customer Order Forms - Orders #80001-80016 Drafting,1980 + + + + + + 154 + 2089 + Records, Customer Order Forms - Orders #81001-81014,1981 + + + + + + + + Aladdin Company Collection - Series #5, (Construction Department) + + + + 155 + 1 + Records, Plans for Catalog Models - Alamo, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 155 + 2 + Records, Plans for Catalog Models - Alamo, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 155 + 3 + Records, Plans for Catalog Models - Alamo, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 155 + 4 + Records, Plans for Catalog Models - Alamo, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 156 + 5 + Records, Plans for Catalog Models - Alden, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 156 + 6 + Records, Plans for Catalog Models - Ambassador, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 156 + 7 + Records, Plans for Catalog Models - Amberwood, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 157 + 8 + Records, Plans for Catalog Models - Amsterdam, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 157 + 9 + Records, Plans for Catalog Models - Arlington, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 157 + 10 + Records, Plans for Catalog Models - Ashland, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 158 + 11 + Records, Plans for Catalog Models - Augusta, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 158 + 12 + Records, Plans for Catalog Models - Austin, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 159 + 13 + Records, Plans for Catalog Models - Bates, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 159 + 14 + Records, Plans for Catalog Models - Bates, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 159 + 15 + Records, Plans for Catalog Models - Bates, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 159 + 16 + Records, Plans for Catalog Models - Bates, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 160 + 17 + Records, Plans for Catalog Models - Belmont, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 160 + 18 + Records, Plans for Catalog Models - Bellevue, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 161 + 19 + Records, Plans for Catalog Models - Berkeley, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 161 + 20 + Records, Plans for Catalog Models - Brentwood, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 161 + 21 + Records, Plans for Catalog Models - Briarwood, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 162 + 22 + Records, Plans for Catalog Models - Brighton, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 162 + 23 + Records, Plans for Catalog Models - Bristol, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 162 + 24 + Records, Plans for Catalog Models - Bronson, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 163 + 25 + Records, Plans for Catalog Models - Camden, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 163 + 26 + Records, Plans for Catalog Models - Canyon, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 163 + 27 + Records, Plans for Catalog Models - Cape Cod, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 163 + 28 + Records, Plans for Catalog Models - Catalina, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 164 + 29 + Records, Plans for Catalog Models - Cedars, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 164 + 30 + Records, Plans for Catalog Models - Chelsea, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 165 + 31 + Records, Plans for Catalog Models - Clarkesdale, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 165 + 32 + Records, Plans for Catalog Models - Clayton, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 165 + 33 + Records, Plans for Catalog Models - Clifton, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 166 + 34 + Records, Plans for Catalog Models - Clinton, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 166 + 35 + Records, Plans for Catalog Models - Coachman, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 166 + 36 + Records, Plans for Catalog Models - Concord, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 166 + 37 + Records, Plans for Catalog Models - Cornell, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 167 + 38 + Records, Plans for Catalog Models - Coronado, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 167 + 39 + Records, Plans for Catalog Models - Coronet, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 168 + 40 + Records, Plans for Catalog Models - Covington, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 168 + 41 + Records, Plans for Catalog Models - Cranbook, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 168 + 42 + Records, Plans for Catalog Models - Crestwood, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 168 + 43 + Records, Plans for Catalog Models - Danbury, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 169 + 44 + Records, Plans for Catalog Models - Delta, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 169 + 45 + Records, Plans for Catalog Models - Del Ray, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 169 + 46 + Records, Plans for Catalog Models - Denton, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 170 + 47 + Records, Plans for Catalog Models - Denver, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 170 + 48 + Records, Plans for Catalog Models - Dexter, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 170 + 49 + Records, Plans for Catalog Models - Dover, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 171 + 50 + Records, Plans for Catalog Models - Dunbar, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 171 + 51 + Records, Plans for Catalog Models - Eastland, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 172 + 52 + Records, Plans for Catalog Models - Edison, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 172 + 53 + Records, Plans for Catalog Models - Eldorado, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 172 + 54 + Records, Plans for Catalog Models - El Paso, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 172 + 55 + Records, Plans for Catalog Models - Embassy, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 173 + 56 + Records, Plans for Catalog Models - Essex, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 173 + 57 + Records, Plans for Catalog Models - Evanston, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 174 + 58 + Records, Plans for Catalog Models - Fairlane, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 174 + 59 + Records, Plans for Catalog Models - Flamingo, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 174 + 60 + Records, Plans for Catalog Models - Forest Hill, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 174 + 61 + Records, Plans for Catalog Models - Friendship, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 174 + 62 + Records, Plans for Catalog Models - Fulton, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 175 + 63 + Records, Plans for Catalog Models - Gary, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 175 + 64 + Records, Plans for Catalog Models - Glencove, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 175 + 65 + Records, Plans for Catalog Models - Glenhaven, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 175 + 66 + Records, Plans for Catalog Models - Glenview, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 176 + 67 + Records, Plans for Catalog Models - Glenwood, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 176 + 68 + Records, Plans for Catalog Models - Goodrich, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 176 + 69 + Records, Plans for Catalog Models - Graystone, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 177 + 70 + Records, Plans for Catalog Models - Grenada, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 177 + 71 + Records, Plans for Catalog Models - Groveland, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 177 + 72 + Records, Plans for Catalog Models - Hartford, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 177 + 73 + Records, Plans for Catalog Models - Hillsdale, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 178 + 74 + Records, Plans for Catalog Models - Holbrook, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 178 + 75 + Records, Plans for Catalog Models - Holland, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 178 + 76 + Records, Plans for Catalog Models - Hollywood, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 178 + 77 + Records, Plans for Catalog Models - Holmes, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 179 + 78 + Records, Plans for Catalog Models - Hummel, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 179 + 79 + Records, Plans for Catalog Models - Kensington, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 179 + 80 + Records, Plans for Catalog Models - Kenton, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 180 + 81 + Records, Plans for Catalog Models - Kenwood, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 180 + 82 + Records, Plans for Catalog Models - Kimberly, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 180 + 83 + Records, Plans for Catalog Models - Kingbury, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 181 + 84 + Records, Plans for Catalog Models - Lamar, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 181 + 85 + Records, Plans for Catalog Models - Laredo, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 181 + 86 + Records, Plans for Catalog Models - Lexington, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 181 + 87 + Records, Plans for Catalog Models - Longwood, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 181 + 88 + Records, Plans for Catalog Models - Lorain, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 182 + 89 + Records, Plans for Catalog Models - Manchester, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 182 + 90 + Records, Plans for Catalog Models - Manhasset, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 182 + 91 + Records, Plans for Catalog Models - Mayflower 1927, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 182 + 92 + Records, Plans for Catalog Models - Medford, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 182 + 93 + Records, Plans for Catalog Models - Monterey, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 183 + 94 + Records, Plans for Catalog Models - Nassau, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 183 + 95 + Records, Plans for Catalog Models - Newton, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 183 + 96 + Records, Plans for Catalog Models - Normandy, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 184 + 97 + Records, Plans for Catalog Models - Oakland, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 184 + 98 + Records, Plans for Catalog Models - Orlando, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 184 + 99 + Records, Plans for Catalog Models - Palomar, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 185 + 100 + Records, Plans for Catalog Models - Parkwood, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 185 + 101 + Records, Plans for Catalog Models - Pasadena, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 185 + 102 + Records, Plans for Catalog Models - Pinecrest, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + + 186 + 103 + Records, Plans for Catalog Models - Plaza, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 187 + 104 + Records, Plans for Catalog Models - Portage, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 187 + 105 + Records, Plans for Catalog Models - Preston, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 187 + 106 + Records, Plans for Catalog Models - Princeton, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 188 + 107 + Records, Plans for Catalog Models - Redwood, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 188 + 108 + Records, Plans for Catalog Models - Regency, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 188 + 109 + Records, Plans for Catalog Models - Richmond, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 188 + 110 + Records, Plans for Catalog Models - Ridgewood, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 189 + 111 + Records, Plans for Catalog Models - Rio Grande, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 189 + 112 + Records, Plans for Catalog Models - Riviera, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 189 + 113 + Records, Plans for Catalog Models - Rockwood, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 190 + 114 + Records, Plans for Catalog Models - Rosewood, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 190 + 115 + Records, Plans for Catalog Models - Rotterdam, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 190 + 116 + Records, Plans for Catalog Models - Royton, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 190 + 117 + Records, Plans for Catalog Models - Salem, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 191 + 118 + Records, Plans for Catalog Models - Santa Fe, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 191 + 119 + Records, Plans for Catalog Models - Saratoga, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 191 + 120 + Records, Plans for Catalog Models - Savannah, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 192 + 121 + Records, Plans for Catalog Models - Selma, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 192 + 122 + Records, Plans for Catalog Models - Shady Lane, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 192 + 123 + Records, Plans for Catalog Models - Sharlear, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 193 + 124 + Records, Plans for Catalog Models - Shasta, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 193 + 125 + Records, Plans for Catalog Models - Shelby, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 193 + 126 + Records, Plans for Catalog Models - Sheridan, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 193 + 127 + Records, Plans for Catalog Models - Sherwood, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 194 + 128 + Records, Plans for Catalog Models - Sierra, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 194 + 129 + Records, Plans for Catalog Models - Sparta, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 195 + 130 + Records, Plans for Catalog Models - Stratford, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 195 + 131 + Records, Plans for Catalog Models - Sylvan, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 195 + 132 + Records, Plans for Catalog Models - Tacoma, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 196 + 133 + Records, Plans for Catalog Models - Topeka, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 196 + 134 + Records, Plans for Catalog Models - Trenton, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 196 + 135 + Records, Plans for Catalog Models - Tulane, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 197 + 136 + Records, Plans for Catalog Models - Ventura, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 198 + 137 + Records, Plans for Catalog Models - Ventura (cont.), 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 198 + 138 + Records, Plans for Catalog Models - Vernon, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 199 + 142 + Records, Plans for Catalog Models - Vinewood, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 199 + 143 + Records, Plans for Catalog Models - Virginia-1941, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 200 + 139 + Records, Plans for Catalog Models - Wilmington, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 200 + 140 + Records, Plans for Catalog Models - Wilshire, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 200 + 141 + Records, Plans for Catalog Models - Winslow, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 201 + 144 + Records, Plans for Catalog Models - Wonder House-1940, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 201 + 145 + Records, Plans for Catalog Models - Yorkshire, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 201 + 146 + Records, Plans for Catalog Models - Yorktown, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 201 + 147 + Records, Plans for Catalog Models - Other building types: churches, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 202 + 148 + Records, Plans for Catalog Models - Garages & Breezeways, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 202 + 149 + Records, Plans for Catalog Models - Stores, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 202 + 150 + Records, Plans for Catalog Models - Motels and Tourist Homes, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 203 + 152 + Records, Plans for Catalog Models - Details including kitchen plan schedules 1963-1978, and Aladdin plan chart – c. 1920,1920-1978 + + + + + + 203 + 152b + Records, Plans for Catalog Models - Plan Schedules, 1963-1978 – Not in drawer,1963-1978 + + + + + + 203 + 153 + Records, Plans for Catalog Models - Details and kitchen, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 203 + 151 + Records, Plans for Catalog Models - Construction Charts - Details, 1927-1982 (primarily 1947-1982),1927-1982 + + + + + + 204 + 154 + Records, Plans for Special Orders - Alamo; No order number, Anthony Pallante, Clawson, MI 1977; Order 78-017, Mrs. Rena Thompson, Redford, MI 1978; Order 78-034, Mr. and Mrs. David Timmen, Lansing, MI 1977; Order 77-055A, Incomplete. 1977,1977-1978 + + + + + + 204 + 155 + Records, Plans for Special Orders - Amberwood; Order 78-038, Mr. & Mrs. Donald Mattoon, Bath, NY 1978; Order 78-002, Rev. Kenneth Smith, Deland, FL 1978,1978 + + + + + + 204 + 156 + Records, Plans for Special Orders - Amsterdam; No order number, Arthur Forziati, Pocasset, MA 1977; Order 77-099, Claude E. Jones, Fairplay, KY 1977; Order 79-016, Clair M. Lambert, Houlton, ME 1979,1977, 1979 + + + + + + 204 + 157 + Records, Plans for Special Orders - Arlington; No order number or purchases named, brick veneer front without garage,1982 + + + + + + 204 + 158 + Records, Plans for Special Orders - Ashland; No order number, Mr. & Mrs. Gerald Leist, Bay City, MI 1977; Order 78-018, Richard Peel, Milford, MI 1978,1977-1978 + + + + + + 204 + 159 + Records, Plans for Special Orders - Austin; Order 77-083, Rev. & Mrs. D.H. Bebbink, Big Rapids, MI. 1977; Order 69-046, no owner or place, 1969,1969, 1977 + + + + + + 205 + 160 + Records, Plans for Special Orders - Bates; No order number, Carl Baccellieri, New York, NY 1979; No order number, Rev. Douglas Clark, Gambier, OH 1977; Order 79-013, Mr. & Mrs. Allen Crawford, Florissant, MO 1979; No order number, Mr. & Mrs. Albert Henderson, Kingsville, OH 1978; Order 77-054, Glenn Herschberger, Goshen, IN 1977; Order 77-086, Mr. & Mrs. Paul Kellermeier, Perrysburg, OH 1977; Order 80-012, Arnold Kirn, no location, 1980; No order number, Joseph McKnight, no location, 1980; No order number Ralph Murray and son, Sycamore, OH 1978; Order 78-025, Mark Niendorf, Howell, MI 1978; Order 77-115, Mr. & Mrs. John Parker, Farwell, MI, 1977; Order 77-093, Michael J. Saittor, Trevose, PA 1977; Order 78-003, Mr. & Mrs. F.G. Schramer, Maple Park, IL 1978; Order 77-019, Larry Schweller, Ottawa, OH 1977; Order 78-020, Mr. & Mrs. Bob Vandercook, Ypsilanti, MI 1978; Order 77-014, no owner or place. 1977; Order 78-014, no owner or place. 1978; Order 78-043, no owner or place. 1978; Order 78-042, no owner or place. 1979,1977-1980 + + + + + + 205 + 161 + Records, Plans for Special Orders - Belmont; No order number, James Hoover, no place. 1981; No order number, Mr. Pat McCarthy, Highland Park, MI. 1964; Order number 78-022, Mr. & Mrs. Frank McCreary, Irwin, OH, 1978,1964-1981 + + + + + + 205 + 162 + Records, Plans for Special Orders - Berkeley; No order number, Kathy Donlin, Coatsville, PA, 1978; No order number, Mr. & Mrs. Michael Hasset, Chelsea, MI. 1979/1981; Order 77-035, Mr. & Mrs. Donals Herrmann, New Castle, IN 1977; Order 77-030, Atwood Ketts, Davidon, MI. 1979; Order 77-074, Mr. & Mrs. Phillip Miller, Northup, OH. 1977; No order number, John Patterson, Markham, IL, 1977; No order number, John Patterson, Markham, IL, 1977; No order number, Richard J. Reber, Plymouth, OH, 1981,1977-1981 + + + + + + 205 + 163 + Records, Plans for Special Orders - Briarwood; Order 77-009, Mr. & Mrs. Ken Buchanan, Lake Wortl, FL, 1976; Order 76-0061,1976, undated + + + + + + 206 + 164 + Records, Plans for Special Orders - Brighton; No order number, Bernard Klein, Midland, MI, 1964; No order number, John H. Stewart, Russel, PA, 1965,1964-1965 + + + + + + 206 + 165 + Records, Plans for Special Orders - Bronson; No order number, Morris Gwisdala, Bay City, MI, 1977,1977 + + + + + + 206 + 166 + Records, Plans for Special Orders - Camden; Order 79-032, Edwin H. Dean, Garden City, MI, 1979; Order 77-088, Mr. & Mrs. Lawrence Gingell, Metamora, MI, 1977; No order number, William McClanahan, Clyde, OH, (incomplete),1977-1979, undated + + + + + + 206 + 167 + Records, Plans for Special Orders - Canyon Garage; No order number,1968 + + + + + + 206 + 168 + Records, Plans for Special Orders - Catalina; Order 77-029, Mr. & Mrs. Martin Coulson, Jr., Drayton Plains, MI, 1977,1977 + + + + + + 206 + 169 + Records, Plans for Special Orders - Chelsea; Order 77-011, Mr & Mrs. John L. Backus, Ogdenburg, NY, 1977; No order number, Charles D. Cooper, North Madison, OH, 1982; No order number, J.J. Kesinski, Villa Park, IL, 1977; No order number, Mr. & Mrs. Howard Pyle, Potersville, PA, 1978; Order 77-078, Mr. & Mrs. Gandolfo Richiusa, Naperville, IL, 1977; Order 77-102, Virgel R. Schroeder, Ottawa, OH, 1977; No order number, Paul Walling, Anaheim, CA, 1977 (diazo prints included); Order 78-004, Incomplete, 1978 (?),1977-1982 + + + + + + 206 + 170 + Records, Plans for Special Orders - Coachman; Order 79-045, Mr. & Mrs. Richard Felder, Lakewood, OH, 1978; Order 80-007, Mr. & Mrs. Gerald Nilsen, Studivant, MD, 1980,1978-1980 + + + + + + 206 + 171 + Records, Plans for Special Orders - Cornell – MISSING as of 1-6-10; Order 77-065, Ronald Brewer, Marseilles, IL, 1977; Order 77-051, Robert Counihan, Laurel, MD, 1977; Order 79-024, Randall Jenkins, Mt. Vernon, IL, 1979; Order 77-076, Ronald Kline, Chambersburg, PA, 1977; Order 79-031, Doug McInally, Silverwood, MI, 1979; No order number, Mr & Mrs. Vincent H. Ranger, Harper Woods, MI, 1979; Order 77-111, Gary Telton, Richmond, MI, 1977,1977-1979 + + + + + + 207 + 172 + Records, Plans for Special Orders - Crestwood; No order number, Mr. & Mrs. Michael A Fazekas, Ringoes, NJ, 1979; Order 77-040, Mr. & Mrs. Nino Pecorado, Michigan City, IN 1977; Order 77-039, Mr. & Mrs. Dennis Reinke, Saginaw, MI, 1979; Order 79-011, Mr & Mrs. Donald Stevenson, Bay City, Bay City, MI, 1978; Order 77-044, Robert Walker, Bay City, MI, 1977; Order 77-040, 1977; Order 77-116, no owner or address, 1977,1977-1979 + + + + + + 207 + 173 + Records, Plans for Special Orders - Danbury; No order number, Robert Nolan, Staten Island, NY, 1978 [note: followed by Diazo print of Sierra 1 brick veneer, same owner, 1978],1978 + + + + + + 207 + 174 + Records, Plans for Special Orders - Delta; Order 81-006, Warren A. Taber, no address, 1981 [Diazo print included],1981 + + + + + + 207 + 175 + Records, Plans for Special Orders - Denton; Order 77-113, Mr. & Mrs. Spencer Redmond, Roseville, MI,1977 + + + + + + 207 + 176 + Records, Plans for Special Orders - Dexter; No order number, Robert L. Lowe, Marinburg, WV, 1977; Order, 77-068, John H. Miller, Emporium, PA, 1977,1977 + + + + + + 207 + 177 + Records, Plans for Special Orders - Dover; No order number, Theodore F. Fettig, Marian, IN, 1981; No order number, Mr. & Mrs. Michael Heilman, Carey, OH, 1979; No order number, W.F. Sovereign, Essexville, MI, 1977; Order 77-109, Alfred Trapanese, West Long Branch, NJ, 1977; No order number, Greg Vogl, no address, 1981,1977-1981 + + + + + + 208 + 178 + Records, Plans for Special Orders - Dunbar; Order 77-096, Betty Gerdes, Camp Hill, PA, 1976; Order 77-081, Mr. & Mrs. Keith Jordan, Decker, IN, 1977; No order number, Kenneth Lyon, Dawn, MD, 1979,1976-1979 + + + + + + 208 + 179 + Records, Plans for Special Orders - Eastland; No order number, Allen Bloomhutt, Blanchesterm, OH, 1978; Order 77-112, G. Richard Culp, D.O., Harrisburg, OG, 1977; Order 79-005, David Millstead, Box 67 Rt #1, Alanson, MI, 1979; Order 79-015, David M. Schwanberger, Columbus, OH, 1979,1977-1979 + + + + + + 208 + 180 + Records, Plans for Special Orders - Edison; No order number, Donald G. Abbey, Groton, CN,1964 + + + + + + 208 + 181 + Records, Plans for Special Orders - Eldorado; No order number, George M. Hama, Huntington Woods, MI, 1981; Order 80-016, Ruth Hibbard, no address, 1980; Order 80-010, Mr. Lee Valentini, no address, 1980,1980-1981 + + + + + + 208 + 182 + Records, Plans for Special Orders - Essex; Order 77-091, Mr. & Mrs. Tom Carlson, Silver Creek, NY,1977 + + + + + + 208 + 183 + Records, Plans for Special Orders - Fairlane; No order number, Alvin Kelly, Atlanta, GA, 1979; No order number, Mr. & Mrs. Brian St. Clair, New Lennox, IL, 1978; Order 78-027, Mr. & Mrs. Gary Warthen, Lemont, IL, 1978; Order 81-012, Kenneth C. Hoover, Sunbury, OH, 1981; Order 79-029, Herbert Newton, Gilbertsville, KY, 1979,1978-1981 + + + + + + 208 + 184 + Records, Plans for Special Orders - Gary,undated + + + + + + 209 + 185 + Records, Plans for Special Orders - Glenwood; Order 77-092, William Posak, Mt. Clemens, MI, 1977; Order 81-077, no name or address, 1981,1977, 1981 + + + + + + 209 + 186 + Records, Plans for Special Orders - Goodrich; No order number, Mr. & Mrs. Kenneth Kreider, Meyersdale, PA, 1979; Order 77-021, Mr. & Mrs. Charles Lambert, Bluefield, WV, 1977; No order number, Cleo H. Nordmeyer, Chebanse, IL, 1980; No order number, Thomas Trupino, Taylor, MI, 1978; No order number, Mr. & Mrs. Robert When, Chicago, IL, 1979,1977-1980 + + + + + + 209 + 187 + Records, Plans for Special Orders - Holbrook; Order 77-053, Rev. Aldolf Bickel, Napoleon, OH, 1977; Order 81-004, Arthur Burns, Chilton, WI, 1981; Order 78-007, Gerald A. Butler, Center Lane, MI 1977; Order 78-041, Kenneth Engel, Valparaiso, IN, 1978; No order number, Mr & Mrs. Clyde Leary, Plymouth, IN, 1978; Order 78-035, Mr. & Mrs. Don Malkowski, Freesoil, MI, 1978; No order number, Mr. & Mrs. Tim Matson, Chagrin Falls, OH, 1977; Order 79-009, Mr. & Mrs. E. C. Morin, Bay City, MI, 1979; Order 80-011, Steve Stedman, McGuffy, OH, 1980; No order number, Orval Wagoner, no address, 1980; Order 77-024, no owner, address, or date,1977-1980 + + + + + + 209 + 188 + Records, Plans for Special Orders - Holmes; Order 78-008, Mr. & Mrs. Archie Hill, Huntertown, IN, 1978; No order number, William Ley, no address, 1981; No order number, Peter J. Penser, Lodi, NJ, 1982 [Following sheets go with this ‘Penser’]; Order 77-118, Mr. & Mrs. Fred W. Smith, Van Wert, OH, 1977; Order 74-034, no additional information; Order 77-007, no additional information,1977-1982, undated + + + + + + 209 + 189 + Records, Plans for Special Orders - Kensington; Order 79-002, Charles Brewers, Westland, MI 1978 [Separate sheet following, also 79-002, goes with this]; Order 79-035, Mr. & Mrs. J.F. Cobb, Ponca City, OK, 1979; Order 78-001, & 78-001A, Mr. & Mrs. Harry Daugherty, Huntley, IL, 1978; No order number, Mr. & Mrs. Carl Piotrowski, Tryon, OK, 1977; Order 80-004, Mark & Carol Patrzebowski, no additional information; No order number, Malcolm B. Smith, Sylvania, OH, 1979; No order number, Donald L. Stockdale, Weogufka, AL, 1977; Order 77-056, Harvey Walter, Cass City, MI, 1977,1977-1979, undated + + + + + + 210 + 190 + Records, Plans for Special Orders - Kenton; No order number, Mr. & Mrs. C.J. Orzechowski, Madison, OH,1978 + + + + + + 210 + 191 + Records, Plans for Special Orders - Kenwood; Order 79-020, Mr. & Mrs. Jerry O’Brien, Blissfield, MI, 1979; No order number, Thomas Schnipke, Ft. Jennings, OH, 1977,1977-1979 + + + + + + 210 + 192 + Records, Plans for Special Orders - Lamar; Order 77-008, Mr. & Mrs. William Raffette, Island Lake, IL,1976 + + + + + + 210 + 193 + Records, Plans for Special Orders - Laredo; Order 78-023, Mr. & Mrs. Carl Charlson, Chesterton, IN, 1978; Order 78-005, Mr. & Mrs. Arthur Dubbelstein, Clare, MI, 1978; No order number, Mrs. Norman Kuhn, Highland Park, IL, 1975,1975, 1978 + + + + + + 210 + 194 + Records, Plans for Special Orders - Lorain,undated + + + + + + 210 + 195 + Records, Plans for Special Orders - Manchester; No order number, Mrs. Ken Lyon, Dawn, MO,undated + + + + + + 210 + 196 + Records, Plans for Special Orders - Nassau; Order 77-050, Mr. & Mrs. Ronald Montania, Chesterton, IN, 1977; No order number, Mr. & Mrs. Mario Rotundo, Warren, MI, 1978,1977, 1978 + + + + + + 210 + 197 + Records, Plans for Special Orders - Newton; Order 79-008, Mr. & Mrs. Maurice Tomkins, Boyne City, MI,1979 + + + + + + 211 + 198 + Records, Plans for Special Orders - Normandy; No order number, Hyder Aly, McLean, VA, undated; No order number, Mr. & Mrs. Michael Davis, Roanoke, IN, 1977/78; No order number, Leonard Weinstein, Stanhope, NJ, 1978,1977-1978 + + + + + + 211 + 199 + Records, Plans for Special Orders - Oakland; No order number, Edward Amory, Greensprings, OH, 1976; Order 77-097, Douglas J. Bennet, Washington, D.C. 1977; No order number, Mr. & Mrs. Everett French, Ipava, IL, 1977; Order 69-031, no additional information,1976-1977, undated + + + + + + 211 + 200 + Records, Plans for Special Orders - Orlando; Order 77-117, C.E. McClenning, Camden, AK, 1977, Order 68-178, no additional information, Order 69-111, no additional information, Order 70-035, no additional information,1977, undated + + + + + + 211 + 201 + Records, Plans for Special Orders - Parkwood; Order 77-003, Mr. & Mrs. Harwood Brown, Three Rivers, MI,1977 + + + + + + 211 + 202 + Records, Plans for Special Orders - Plaza; No order number, Victor Bond, Ferndale, MI, undated; Order 78-029, Tom Domsic, Wyoming, MI, 1978; No order number, John Epsin, Winter Graden, FL, 1979; No order number, Melvin V. Franklin, Flint, MI, 1981; Garage for Plaza (2 plans),1978-1981, undated + + + + + + 211 + 203 + Records, Plans for Special Orders - Princeton; Order 77-059, John D. Heath, Marysville, OH, 1977; Order 78-032, James A. Hinkel, Dry Fork, WV, 1978; Order 79-014, Mr & Mrs. Fred Schmidt, Chebanse, IL, 1979; No order number, Lester Smith, Jr. Amburgey, KY, 1978; Order 72-053, no additional information; Order 71-153, garage; “Used on order 74-123,” 1974, No order number, garage, 1969,1969-1979, undated + + + + + + 211 + 204 + Records, Plans for Special Orders - Redwood; Order 64-078, Robert T. Desjardin, Williamstown, NJ.,1964 + + + + + + 211 + 205 + Records, Plans for Special Orders - Regency; Order 77-031, Mr. & Mrs. Michael Ayers, Baltimore, OH, 1977; No order number, Mr. & Mrs. Mark Bezler, Preston, MD, 1977; No order number, Frank Gorski/Denise Rosenblum, Wanatah, IN, 1977; Order 79-027, Mr. & Mrs. David Kersh, Ottawa, OH, 1979; No order number, Mr. & Mrs. James Matthews, San Francisco, CA, 1977; No order number, Mr. & Mrs. Richard Peters, Union, IL, 1978; Order 79-003, Michael Schaffer, Elkhart, IN, 1979; Order 78-028, no additional information,1977-1979, undated + + + + + + 212 + 206 + Records, Plans for Special Orders - Ridgewood; Order 77-033, Frank Haymart, Fulton, MO,1977 + + + + + + 212 + 207 + Records, Plans for Special Orders - Rio Grande; No order number, Mr. & Mrs. George Brincka, 2203 Lake Ave., Whiting, IN,1964 + + + + + + 212 + 208 + Records, Plans for Special Orders - Riviera; No order number, Rick Jones, Henderson, MI,1981 + + + + + + 212 + 209 + Records, Plans for Special Orders - Rockwood; No order number, Ronald H. Heath, Bellefontaine, OH,1967 + + + + + + 212 + 210 + Records, Plans for Special Orders - Rotterdam; Order 80-003, Thomas Biddiscombe, New Windsor, NY,1980 + + + + + + 212 + 211 + Records, Plans for Special Orders - Savannah; Order 77-045, Mr. & Mrs. Noel H. Dentner, Monrow, MI 1976/77; No order number, Tim Godbey, Toledo, OH, 1977; No order number, Mr. & Mrs. John Moody, Laurel, MD, 1977; No order number, Mr. & Mrs. Allen Palmer, Hornell, NY, 1979; No order number, Ralph T. Reynolds, Toledo, OH, 1978; Order 79-044, Mr. & Mrs. Brian St. Clair, New Lennox, IL, 1979; No order number, Frank Schwarzwalder, Royal Oak, MI, 1978; Order 77-101, Jerry E. Wentz, Danville, VA, 1977; Order 77-0002, no additional information; Order 77-101, no additional information,1976-1979, undated + + + + + + 212 + 212 + Records, Plans for Special Orders - Selma; No order number, F. James Smtih, Claysburg, PA, 1979; Order 70-014, no additional information,1979, undated + + + + + + 212 + 213 + Records, Plans for Special Orders - Shady Lane; No order number, Seren Langdal, Birmingham, MI,1965 + + + + + + 212 + 214 + Records, Plans for Special Orders - Sharlear; Order 62-159, James Toth, 1638 Lawndale, Detroit, MI; No order number, garage, no additional information; Order 66-101, no owner or place, 1972,1972, undated + + + + + + 212 + 215 + Records, Plans for Special Orders - Sherwood; Order 78-012, Mark Debbink & Thomas Donley, Big Rapids, MI, 1978; Order 77-062, Mr. & Mrs. Melvin Downing, Grabill, IN, 1977; No order number, George Heller, Marengo, IA, 1977; No order number, Norman Williams, Franklin, VA, 1976/77,1976-1978 + + + + + + 213 + 216 + Records, Plans for Special Orders - Sierra; No order number, Paula M. Kaleita, Middletown, NY,1977 + + + + + + 213 + 217 + Records, Plans for Special Orders - Sparta; No order number, Mr. & Mrs. David Elder, New Wilmington, PA, 1977; Order 79-033, Mr. & Mrs. Zygmunt Lacic, Newington, CN, 1979; No order number, Joseph leitinger, Wauteesha, WI, 1978; Order 77-077, Mr. & Mrs. Roy E. Mattox, Lake Bluff, IL, 1977; Order 77-047, Charles McKenzie, Warsaw, IN, 1977; Order 77-107, Mr. & Mrs. Kenneth Parsons, Toledo, OH, 1977; Order 77-024, No owner or address; Order 78-040, No owner or address, 1978, 1977-1979, undated + + + + + + 213 + 218 + Records, Plans for Special Orders - Stratford; No order number, Fred D. Boege, Whiteville, NC,1981 + + + + + + 213 + 219 + Records, Plans for Special Orders - Suburban Garage; Order 52-778, Joseph Flora, Swickley, Fa, 1952; No order number, James R. Ridenour, Kokomo, IN, 1963; Order 65-060, no name or address, 1965; No order number, no name or address, 1963; No order number, no additional information,1952-1965, undated + + + + + + 213 + 220 + Records, Plans for Special Orders - Trenton; Order 77-067, Charles McAndrew, Avoca, PA, 1977; Order 78-010, Mr. & Mrs. David Niedzielski, Manistee, MI, 1978; Order 67-063, no name or address, 1967; Order 77-067, no additional information,1967-1978, undated + + + + + + 213 + 221 + Records, Plans for Special Orders - Ventura; No order number, O.J. Klinedinst, Walkeron, IN, 1966; Order 77-072, P. Paul Meze, St. Clair Shirese, MI, 1977; “Used on 74-045,” garage, no additional information,1966, 1977, undated + + + + + + 213 + 222 + Records, Plans for Special Orders - Vernon; No order number, Richard L. Decker, Clifton, NJ,1964 + + + + + + 213 + 223 + Records, Plans for Special Orders - Willy; No order number, no name or address,1981 + + + + + + 213 + 224 + Records, Plans for Special Orders - Willshire; No order number, John J. Sepcoski, Jr., Avoca, PA, 1980; No order number, Otis, W. Stover, no address, 1980-1981; No order number, Douglas Taylor, no address or date; No order number, Mr. & Mrs. Carl Thompson, Collins, OH, 1979; Order 77-090, Byron Travis, Shepherd, MI, 1977,1977-1981, undated + + + + + + 214 + 225 + Records, Plans for Special Orders - Yorkshire; Order 81-008, no owner or address,1981 + + + + + + 214 + 226 + Records, Plans for Special Orders - Plans for Special Orders by Customer Name, 1964-1979, A-N; R. Green Annan, Freeport, Grand Bahamas, 1964; Stanley B. Aschleman, Stryker, OH, 1965; Anthony Bartolotta, Cementon, NY, 1976 (order 77-004); Robert Basket, 1018 Midland Rd., Bay City, MI, 1965 (65-157); Art Bean, Bay City, MI, 1979 (79-038); Forest T. Benner, Olivet Nazarene College, Kankakee, IL, 1965; William W. Bielski, Munster, IN, 1964; James F. Blain, 7175 Henry Dr., Orchard Lake, MI 1965; Mr. & Mrs. Ora C. Bontrager, Shipshewana, IN, 1978 (78-006); Albert Boulanger, 4150 Morris, Saginaw, MI, 1965; Lawson Brown, Bay City, MI, 1964; P.B. Buchholtz, Waukesha, WI, 1977 (77-022); Roy A. Carr, Eureka, IL, 1977 (77-070); Donald Cowan, 1980 (incomplete-plan); Allen Coy, Columbus, OH, 1964; Mr. & Mrs. Everett Dagit, Perkin, IL, 1977 (77-013); Mr. & Mrs. Gary Dunham, Caro, MI, 1979 (79-019; note: single sheet, “7 of 7”); Enchanting Homes Inc., Midland, MI (65-040 and 65-042); Mr. & Mrs. John Freenstra, Marysville, OH, 1977; Ralph Fitts, Halifax, MA, 1977 (?) [incomplete]; John H. Guthrie, Reynoldsville, PA, 1964; Mr. & Mrs. N.J. Hammer Fostoria, OH, 1979 (79-017); Mrs. Hugh Hedges, Hedgesville, WV, 1965 (65-033); James Holeman, Saginaw, MI, 1964; Mr. & Mrs. Donald M. Hubble, Bay City, MI (65-030); Mr. & Mrs. Fred Huseman, Wyandotte, MI, 1977; Mr. & Mrs. James Jackoviak, Custer, MI 1978; Klaty Construction Co., Bay City, MI, 1964, 1965 (64-116; 64-145; 65-021); Kenneth Kreider, no address, 1981 (81-005); Arthur Kowalbe, R.O. #2, Delanson, NY; Lake & Stream Builders, Cadillac, MI, 1964; Lyndell Lewis, 17 Dover St., Pontiac, MI, 1965; Mr. & Mrs. Don MacKenzie, Midland, MI (Enchanting Homes, Inc.) (65-003); Mr. & Mrs. Leonard Malkewski, Freesoil, MI, 1977 (77-080); Tom Maticka, Midland, MI, 1965 (65-064),1964-1981, undated + + + + + + 215 + 227 + Records, Plans for Special Orders - Plans for Special Orders by Customer Name, 1964-1979, O-W; Rex E. Milligan, Charlevoix, MI, 1964; Mr. & Mrs. Milford Mix, Bay City, MI, 1965 (Note: see Robert Basket, similar plan); Walter Nielsen, Midland, MI, 1964 (64-137); Mr. & Mrs. Albert O’ Neal, White Bear Lake, MN, 1977 (77-036); Virginia Onley, Washington, D.C., 1977; Jack L. Phillips, Rockford, IL, 1977 (77-084); W. Dale Phillips, Old Fields, WV, 1977 (77-028); John Pifer, Houghton Lake, MI, 1977 (“Sherwood #1 rev.); Leroy J. Ponton, Box 108, 404 W. Blaine, Peotone, IL 60468, 1965; James Pratt, 12600 Austin, Manchester, MI, 1965; Mr. & Mrs. James Rier, Machias, ME, 1978 (78-047); Mr & Mrs. William Schaufelberger, no address, 1981 (81-001)(Incomplete section); Tom Sequin, Bay City, MI, 1964 (64-139); Mr. & Mrs. Paul Shereda, Medaryville, IN, 1977 (77-049); Mrs. Lydia Synder, LaRue, OH, 1976 (77-012); Edward Sosnowski, 13342 Burgman Rd., Huntington Woods, MI, 1965; Mr. & Mrs. Kendall Walden, Girard, IL, 1977 (77-027); W.W. Willert, 14607 Northlawn, Detroit, MI, 1964; Mr. & Mrs. Wortman, Midland, (Enchanting Homes Inc.)(64-147),1964-1981, undated + + + + + + 215 + 228 + Records, Plans for Special Orders - Plans by Order Number – MISSING as of 1-6-10; 64-123, 64-123 – Sp. Home, 70-069 – Sp. Garage, 77-023, 77-041, 77-073, 77-088, 77-044, 79-006, 79-007, 79-010, 79-036, 79-041 – Sp. Gargage, 79-047, 80-002 – Sp. Garage, 80-015, 81-011, 81-013,undated + + + + + + 215 + 229 + Records, Plans for Special Orders - Plans for Miscellaneous Single Family Dwellings – MISSING as of 1-6-10; Garage elevation/plan/platform,undated + + + + + + 216 + 230 + Records, Plans for Special Orders, 1939-1982 (primarily 1964-1982) – Plans for Miscellaneous Single Family + Dwellings; Special Chester Plans (Austin Motor Co.), Aladdin City, FL street plan, misc. house plans and Sharlean, Wilshire 1-2,1939-1982 + + + + + + 216 + 231 + Records, Plans for Special Orders, 1939-1982 (primarily 1964-1982) – House plans misc.; Austin 3, 1965, Alden, Bates, Brentwood 1, Berkeley, Bronson 2, Coronado 1, Dunbar, Foreston, Hampton, Kenton, Oak Park, Pilgrim 2, Redwood 1 & 3, Richmond, Sante Fe, Sherwood, Sparta, Trenton, Vernon 1,1939-1982 + + + + + + 217 + 232 + Records, Plans for Special Orders, 1939-1982 (primarily 1964-1982) – Plans for Miscellaneous Single Family + Dwellings - MISSING as of 1-6-10; Proposed Saginaw Bay Yacht Club 5-1-1951, Sp. 2 Multi Hangar for V.W. Wilcov M.D. - Bay City MI, Westminister Church, Riviera, Morgan M-47-A Entrance, Oakland 1-2 Rev, Plaza Sp. Plan-James Anderson: Bay City, ??? 1966, Richmond, Hillsboro 1, Glenview 1961 (Old Highwood), Sharlean 1961 (Old Inglewood, Sharlean 2), Forest Hill 1961 (Ols Sunshine), Clifton 2, Dexter 2, Driftwood 1960 (Old Lake George), Riviera 1960, Clayton 1960, Glen Haven 1953, Longwood 1960, Fulton 1960, Hampton 1960, Brookshire 1960, Delton 1960, Drayton 1960, Augusta, Woodmere 1960, Oakdale, Citation 1960, Fenton 1959, Sante Rosa 2, Grenada 2, 1959 (ref. to plan for catalog), Odessa 1 1959, Sp. Kenwood 2 79-020, Miscellaneous Door, window, stair, frontdoor, garage details,1939-1982 + + + + + + 217 + 233 + Records, Plans for Special Orders, 1939-1982 (primarily 1964-1982) – Plans for Miscellaneous Single Family + Dwellings; Mayflower Door, window, stair, frontdoor, garage details,1939-1982 + + + + + + 217 + unidenified + Records, Plans for Special Orders, 1939-1982 (primarily 1964-1982) – Plans for Miscellaneous Single Family Dwellings; Mayflower, Columbia, Emerald, Savannah blueprint plans for Catalog c. 1930 (between folders),1930 + + + + + + 217 + 234 + Records, Plans for Special Orders, 1939-1982 (primarily 1964-1982) – Plans for Miscellaneous Single Family Dwellings; Sp. Plan, James White, Bay City, MI, n.d. Cedars 3, 1950, Clear Lake 2 n.d.,1950, undated + + + + + + 218 + 235 + Records, Plans for Government and Industrial Projects - Aladdin Office Building,1921 + + + + + + 218 + 236 + Records, Plans for Government and Industrial Projects - Aladdin Mill Railroad Siding Map/ Aladdin Portland, OR Mill Map,undated + + + + + + 218 + 237 + Records, Plans for Government and Industrial Projects - Aladdin Office Building Conversion to Apartments,1943 + + + + + + 218 + 238 + Records, Plans for Government and Industrial Projects - Aladdin Mill Building December 26, 1968; Storage Shed, 1969. Mill with loading platforms, nd. Fragile blueprint. Lumber storage shed,1968-1969, undated + + + + + + 218 + 239 + Records, Plans for Government and Industrial Projects - Aladdin Mill Topographic Survery,1969 + + + + + + 218 + 240 + Records, Plans for Government and Industrial Projects - Aladdin Office, Stovers Building - detail,1975 + + + + + + 219 + 241 + Records, Plans for Government and Industrial Projects - Aladdin Mill and Davidson Building, Bay City,undated + + + + + + 219 + 242 + Records, Plans for Government and Industrial Projects - Aladdin Bunkhouse 10’ x 20’,1944 + + + + + + 219 + 243 + Records, Plans for Government and Industrial Projects - Aladdin Demountable Barracks 29’ x 48’ – 3 ¾',1942 + + + + + + 219 + 244 + Records, Plans for Government and Industrial Projects - Aladdin Demountable Barracks 20’0” x 100’ 7 ¼”,1950 + + + + + + 219 + 245 + Records, Plans for Government and Industrial Projects - Local Developments – Sovereign Enterprises co-related to Aladdin +Company,undated + + + + + + 219 + 246 + Records, Plans for Government and Industrial Projects - Sovereign Personal. Family crypt, “Sovereign” yacht - see also photograph of yacht under Sovereign personal photographs,1927 + + + + + + 219 + 247 + Records, Plans for Government and Industrial Projects - Figures showing daily gas well production – paper original and blue copy,undated + + + + + + 220 + 248 + Records, Plans for Government and Industrial Projects - Aladdin Demountable Home (World War II),undated + + + + + + 220 + 249 + Records, Plans for Government and Industrial Projects - Aladdin Double Hutments 32’ x 16’,1943 + + + + + + 220 + 250 + Records, Plans for Government and Industrial Projects - Aladdin “General Office Building” & “Toilet Building”,1943 + + + + + + 220 + 251 + Records, Plans for Government and Industrial Projects - Aladdin Wood Pallet,1944 + + + + + + 220 + 252 + Records, Plans for Government and Industrial Projects - Austin Motor Company Birmingham, England “Special Chester”,1917 + + + + + + 220 + 253 + Records, Plans for Government and Industrial Projects - CCC Construction Details & Sections,1942 + + + + + + 220 + 254 + Records, Plans for Government and Industrial Projects - CCC Plan 265 - Metal Work Details,1940 + + + + + + 220 + 255 + Records, Plans for Government and Industrial Projects - CCC Portable Camp Buildings,1940 + + + + + + 220 + 256 + Records, Plans for Government and Industrial Projects - CCC Portable Camp Buildings, plumbing & electrical,1942 + + + + + + 220 + 257 + Records, Plans for Government and Industrial Projects - Charleston, SC, Shipbuilding & Drydock Company,1943-1944 + + + + + + 221 + 258 + Records, Plans for Government and Industrial Projects - Fort Brady: Sault Ste. Marie, MI,1942 + + + + + + 221 + 259 + Records, Plans for Government and Industrial Projects - Fort Brady: Sault Ste. Marie, MI,1942 + + + + + + 222 + 260 + Records, Plans for Government and Industrial Projects - Defense Plant Corporation,1944 + + + + + + 222 + 261 + Records, Plans for Government and Industrial Projects - Georgia Hardwood Lumber Company Export House 12/18/1944,1944 + + + + + + 222 + 262 + Records, Plans for Government and Industrial Projects - Grain Bins,1950 + + + + + + 222 + 263 + Records, Plans for Government and Industrial Projects - Barracks 20’ x 100’ 7 ¼”,1942 + + + + + + 222 + 264 + Records, Plans for Government and Industrial Projects - H.J. Heinz Readicut Bunkhouse,1942-1944 + + + + + + 222 + 265 + Records, Plans for Government and Industrial Projects - Hensley Field, TX & Kirtland Field, NM,1942 + + + + + + 222 + 266 + Records, Plans for Government and Industrial Projects - Hudson Motor Car Company,1941 + + + + + + 222 + 267 + Records, Plans for Government and Industrial Projects - Kellogg Field: Battle Creek, MI 1942, and M.B. Kolb Company (World War II),1942, undated + + + + + + 222 + 268 + Records, Plans for Government and Industrial Projects - Michigan Bell Telephone Company 1951, and Muskegon, MI Defense +Housing Project 1941,1941, 1951 + + + + + + 222 + 269 + Records, Plans for Government and Industrial Projects - Navy Department Pit Latrines, Scrub Decks, Showers (World War II),undated + + + + + + 222 + 270 + Records, Plans for Government and Industrial Projects - Navy Department Duplex & Rowhouse, 1943 and Reed, Alan. Emergency Housing,1943 + + + + + + 222 + 271 + Records, Plans for Government and Industrial Projects - National Housing Agency, Federal Public Housing Authority, and Temporary Dwelling Units (TDV-3),undated + + + + + + 223 + 272 + Records, Plans for Government and Industrial Projects - Quartermaster General, Mobilization Buildings, 1937-1940 + + + + + + 223 + 273 + Records, Plans for Government and Industrial Projects - Red Cross Hut, Portable,1917 + + + + + + 223 + 274 + Records, Plans for Government and Industrial Projects - U.S. Army Air Force; CCC Buildings. Smoke-jacks. 1941 Dayton +and Signal Corps Crate PG-49. Pigeon. 1942,1941, 1942 + + + + + + 223 + 275 + Records, Plans for Government and Industrial Projects - U.S. Dept. of Agriculture Duplex - temporary,1941 + + + + + + 223 + 276 + Records, Plans for Government and Industrial Projects - U.S. Engineer Office. 5 Man Hutment (Prefab),1942 + + + + + + 223 + 277 + Records, Plans for Government and Industrial Projects - War Department Barracks Pre-cut,1943 + + + + + + 223 + 278 + Records, Plans for Government and Industrial Projects - War Department Barracks Precut. 20’ x 54’ & Warehouse 110’ x 405,1944 + + + + + + 223 + 279 + Records, Plans for Government and Industrial Projects - War Department One Ton Trailer,1943 + + + + + + 223 + 280 + Records, Plans for Government and Industrial Projects - War Dept. Sectional 20’ x 48’ Barracks. T.O. 111.54,1944 + + + + + + 224 + 2090 + Records, Suppliers’ Invoices - Wynee Woodworking only,1957 + + + + + + 224 + 2091 + Records, Suppliers’ Invoices - Supplier Invoices,1958 + + + + + + 224 + 2092 + Records, Suppliers’ Invoices - Supplier Invoices (6 folders),1965 + + + + + + 224 + 2093 + Records, Suppliers’ Invoices - Supplier Invoices (6 folders),1965 + + + + + + 224 + 2094 + Records, Suppliers’ Invoices - Supplier Invoices (6 folders),1965 + + + + + + 224 + 2095 + Records, Suppliers’ Invoices - Supplier Invoices (6 folders),1965 + + + + + + 224 + 2096 + Records, Suppliers’ Invoices - Supplier Invoices (6 folders),1965 + + + + + + 224 + 2097 + Records, Suppliers’ Invoices - Supplier Invoices (6 folders),1965 + + + + + + 224 + 2098 + Records, Suppliers’ Invoices - Supplier Invoices (4 folders),1974-1975 + + + + + + 224 + 2099 + Records, Suppliers’ Invoices - Supplier Invoices (4 folders),1974-1975 + + + + + + 224 + 2100 + Records, Suppliers’ Invoices - Supplier Invoices (4 folders),1974-1975 + + + + + + 224 + 2101 + Records, Suppliers’ Invoices - Supplier Invoices (4 folders),1974-1975 + + + + + + 224 + 2102 + Records, Suppliers’ Invoices - Supplier Invoices,1980 + + + + + + 224 + 2103 + Records, Suppliers’ Invoices - Supplier Invoices,1981 + + + + + + 225 + 2104 + Records, Suppliers’ Invoices - Alamo 1,undated + + + + + + 225 + 2105 + Records, Suppliers’ Invoices - Alamo 2,undated + + + + + + 225 + 2106 + Records, Suppliers’ Invoices - Alamo 3,undated + + + + + + 225 + 2107 + Records, Suppliers’ Invoices - Alden,undated + + + + + + 225 + 2108 + Records, Suppliers’ Invoices - Ambassador 1,undated + + + + + + 225 + 2109 + Records, Suppliers’ Invoices - Ambassador 2 & 3,undated + + + + + + 225 + 2110 + Records, Suppliers’ Invoices - Ambassador 4,undated + + + + + + 225 + 2111 + Records, Suppliers’ Invoices - Amberwood 1,undated + + + + + + 225 + 2112 + Records, Suppliers’ Invoices - Amberwood 2,undated + + + + + + 225 + 2113 + Records, Suppliers’ Invoices - Amsterdam,undated + + + + + + 225 + 2114 + Records, Suppliers’ Invoices - Arlington,undated + + + + + + 225 + 2115 + Records, Suppliers’ Invoices - Ashland,undated + + + + + + 225 + 2116 + Records, Suppliers’ Invoices - Augusta,undated + + + + + + 225 + 2117 + Records, Suppliers’ Invoices - Austin 1,undated + + + + + + 225 + 2118 + Records, Suppliers’ Invoices - Austin 2,undated + + + + + + 225 + 2119 + Records, Suppliers’ Invoices - Austin 3,undated + + + + + + 225 + 2120 + Records, Suppliers’ Invoices - Bates 1,undated + + + + + + 225 + 2121 + Records, Suppliers’ Invoices - Bates 1 w' Anderson windows & patio door,undated + + + + + + 225 + 2122 + Records, Suppliers’ Invoices - Bates 1 w' 2x6 exterior house walls 24” o/c,undated + + + + + + 225 + 2123 + Records, Suppliers’ Invoices - Bates 1 w' 22x31 garage, draft for 24x31 garage,undated + + + + + + 225 + 2124 + Records, Suppliers’ Invoices - Bates 2,undated + + + + + + 225 + 2125 + Records, Suppliers’ Invoices - Bates 2 w' 2x6 exterior walls 24” o/c,undated + + + + + + 226 + 2126 + Records, Suppliers’ Invoices - Bates 2 w' 22x31 garage,undated + + + + + + 226 + 2127 + Records, Suppliers’ Invoices - Bates 3,undated + + + + + + 226 + 2128 + Records, Suppliers’ Invoices - Belmont 1,undated + + + + + + 226 + 2129 + Records, Suppliers’ Invoices - Belmont 2,undated + + + + + + 226 + 2130 + Records, Suppliers’ Invoices - Berkley,undated + + + + + + 226 + 2131 + Records, Suppliers’ Invoices - Berkley w/o garage,undated + + + + + + 226 + 2132 + Records, Suppliers’ Invoices - Briarwood,undated + + + + + + 226 + 2133 + Records, Suppliers’ Invoices - Brighton 1,undated + + + + + + 226 + 2134 + Records, Suppliers’ Invoices - Brighton 2,undated + + + + + + 226 + 2135 + Records, Suppliers’ Invoices - Bronson,undated + + + + + + 226 + 2136 + Records, Suppliers’ Invoices - Canton,undated + + + + + + 226 + 2137 + Records, Suppliers’ Invoices - Canyon,undated + + + + + + 226 + 2138 + Records, Suppliers’ Invoices - Canyon garage,undated + + + + + + 226 + 2139 + Records, Suppliers’ Invoices - Canyon 2,undated + + + + + + 226 + 2140 + Records, Suppliers’ Invoices - Catalina 1,undated + + + + + + 226 + 2141 + Records, Suppliers’ Invoices - Catalina 2,undated + + + + + + 226 + 2142 + Records, Suppliers’ Invoices - Clarksdale 1,undated + + + + + + 226 + 2143 + Records, Suppliers’ Invoices - Clarksdale 2,undated + + + + + + 227 + 2144 + Records, Suppliers’ Invoices - Clarksdale 3,undated + + + + + + 227 + 2145 + Records, Suppliers’ Invoices - Clarksdale 4,undated + + + + + + 227 + 2146 + Records, Suppliers’ Invoices - Clayton 1 & 2,1960 + + + + + + 227 + 2147 + Records, Suppliers’ Invoices - Clifton,undated + + + + + + 227 + 2148 + Records, Suppliers’ Invoices - Clinton 1,undated + + + + + + 227 + 2149 + Records, Suppliers’ Invoices - Clinton 2,undated + + + + + + 227 + 2150 + Records, Suppliers’ Invoices - Concord 1,undated + + + + + + 227 + 2151 + Records, Suppliers’ Invoices - Concord 2,undated + + + + + + 227 + 2152 + Records, Suppliers’ Invoices - Cornell,undated + + + + + + 227 + 2153 + Records, Suppliers’ Invoices - Coronado,undated + + + + + + 227 + 2154 + Records, Suppliers’ Invoices - Coronet 1,undated + + + + + + 227 + 2155 + Records, Suppliers’ Invoices - Coronet 2,undated + + + + + + 227 + 2156 + Records, Suppliers’ Invoices - Coronet 3,undated + + + + + + 227 + 2157 + Records, Suppliers’ Invoices - Coronado 1,undated + + + + + + 227 + 2158 + Records, Suppliers’ Invoices - Coronado 2,undated + + + + + + 227 + 2159 + Records, Suppliers’ Invoices - Coronado 3,undated + + + + + + 227 + 2160 + Records, Suppliers’ Invoices - Coronado 4,1954 + + + + + + 227 + 2161 + Records, Suppliers’ Invoices - Covington,undated + + + + + + 227 + 2162 + Records, Suppliers’ Invoices - Covington 2,undated + + + + + + 227 + 2163 + Records, Suppliers’ Invoices - Cranbrook 1,undated + + + + + + 227 + 2164 + Records, Suppliers’ Invoices - Crestwood,undated + + + + + + 227 + 2165 + Records, Suppliers’ Invoices - Club House,undated + + + + + + 227 + 2166 + Records, Suppliers’ Invoices - Danbury,undated + + + + + + 227 + 2167 + Records, Suppliers’ Invoices - Del Ray w' quantity estimates,undated + + + + + + 228 + 2168 + Records, Suppliers’ Invoices - Delta 1 & 2,undated + + + + + + 228 + 2169 + Records, Suppliers’ Invoices - Denton,undated + + + + + + 228 + 2170 + Records, Suppliers’ Invoices - Denver,undated + + + + + + 228 + 2171 + Records, Suppliers’ Invoices - Dexter 1-2,undated + + + + + + 228 + 2172 + Records, Suppliers’ Invoices - Dover 1 & Dover 1 w'2x6 studding,undated + + + + + + 228 + 2173 + Records, Suppliers’ Invoices - Dover 2 & Dover 2 second floor material,undated + + + + + + 228 + 2174 + Records, Suppliers’ Invoices - Dunbar,undated + + + + + + 228 + 2175 + Records, Suppliers’ Invoices - Eastland,undated + + + + + + 228 + 2176 + Records, Suppliers’ Invoices - Eastland 2,undated + + + + + + 228 + 2177 + Records, Suppliers’ Invoices - Eastland 2 - second floor,undated + + + + + + 228 + 2178 + Records, Suppliers’ Invoices - Eldorado 1,undated + + + + + + 228 + 2179 + Records, Suppliers’ Invoices - Eldorado 2,undated + + + + + + 228 + 2180 + Records, Suppliers’ Invoices - Essex,undated + + + + + + 228 + 2181 + Records, Suppliers’ Invoices - Evanston,undated + + + + + + 228 + 2182 + Records, Suppliers’ Invoices - Fairlane 1 – pane 1,1964 + + + + + + 228 + 2183 + Records, Suppliers’ Invoices - Fairlane 1-A,1963 + + + + + + 228 + 2184 + Records, Suppliers’ Invoices - Fairlane 2,undated + + + + + + 228 + 2185 + Records, Suppliers’ Invoices - Flamingo,undated + + + + + + 228 + 2186 + Records, Suppliers’ Invoices - Friendship,undated + + + + + + 228 + 2187 + Records, Suppliers’ Invoices - Fulton,undated + + + + + + 228 + 2188 + Records, Suppliers’ Invoices - Gary 1,undated + + + + + + 228 + 2189 + Records, Suppliers’ Invoices - Gary 2,undated + + + + + + 228 + 2190 + Records, Suppliers’ Invoices - Glen Cove w' quality estimates,undated + + + + + + 228 + 2191 + Records, Suppliers’ Invoices - Glen Haven 1 & 2,undated + + + + + + 228 + 2192 + Records, Suppliers’ Invoices - Glenview,undated + + + + + + 228 + 2193 + Records, Suppliers’ Invoices - Glenwood,undated + + + + + + 228 + 2194 + Records, Suppliers’ Invoices - Goodrich,undated + + + + + + 229 + 2195 + Records, Suppliers’ Invoices - Greystone 2 & 3,undated + + + + + + 229 + 2196 + Records, Suppliers’ Invoices - Grenda 1-2,undated + + + + + + 229 + 2197 + Records, Suppliers’ Invoices - Groveland 1-3,undated + + + + + + 229 + 2198 + Records, Suppliers’ Invoices - Hampton,undated + + + + + + 229 + 2199 + Records, Suppliers’ Invoices - Hartford,undated + + + + + + 229 + 2200 + Records, Suppliers’ Invoices - Hillsdale 1,undated + + + + + + 229 + 2201 + Records, Suppliers’ Invoices - Holbrook 1,undated + + + + + + 229 + 2202 + Records, Suppliers’ Invoices - Holbrook 2,undated + + + + + + 229 + 2203 + Records, Suppliers’ Invoices - Holland Duplex,undated + + + + + + 229 + 2204 + Records, Suppliers’ Invoices - Holmes,undated + + + + + + 229 + 2205 + Records, Suppliers’ Invoices - Hollywood 1,undated + + + + + + 229 + 2206 + Records, Suppliers’ Invoices - Hummel,undated + + + + + + 229 + 2207 + Records, Suppliers’ Invoices - Jasmine, Jasmine 1 Panel – 1966, Jasmine 1 & 2 – 1964, Jasmine 2 Panel – 1966,1964-1966 + + + + + + 229 + 2208 + Records, Suppliers’ Invoices - Kensington,undated + + + + + + 229 + 2209 + Records, Suppliers’ Invoices - Kensington w' Anderson windows,undated + + + + + + 229 + 2210 + Records, Suppliers’ Invoices - Kenton,undated + + + + + + 229 + 2211 + Records, Suppliers’ Invoices - Kenwood 1,undated + + + + + + 229 + 2212 + Records, Suppliers’ Invoices - Kenwood 2, second floor,undated + + + + + + 229 + 2213 + Records, Suppliers’ Invoices - Kimberly 1,undated + + + + + + 229 + 2214 + Records, Suppliers’ Invoices - Kingsbury 1 including second floor,undated + + + + + + 229 + 2215 + Records, Suppliers’ Invoices - Kingsbury 2 including second floor,undated + + + + + + 229 + 2216 + Records, Suppliers’ Invoices - Lamar,undated + + + + + + 229 + 2217 + Records, Suppliers’ Invoices - Laredo 1,undated + + + + + + 229 + 2218 + Records, Suppliers’ Invoices - Laredo 2,undated + + + + + + 229 + 2219 + Records, Suppliers’ Invoices - Longwood 1,undated + + + + + + 229 + 2220 + Records, Suppliers’ Invoices - Lorain,undated + + + + + + 229 + 2221 + Records, Suppliers’ Invoices - Manchester,undated + + + + + + 229 + 2222 + Records, Suppliers’ Invoices - Manhasset 1,1957 + + + + + + 230 + 2223 + Records, Suppliers’ Invoices - Medford,undated + + + + + + 230 + 2224 + Records, Suppliers’ Invoices - Monterey 1,2 – second floor,1957 + + + + + + 230 + 2225 + Records, Suppliers’ Invoices - Monterey 1,undated + + + + + + 230 + 2226 + Records, Suppliers’ Invoices - Monterey 2,undated + + + + + + 230 + 2227 + Records, Suppliers’ Invoices - Monterey 2 – second floor,undated + + + + + + 230 + 2228 + Records, Suppliers’ Invoices - Nassau,undated + + + + + + 230 + 2229 + Records, Suppliers’ Invoices - Newton 1,undated + + + + + + 230 + 2230 + Records, Suppliers’ Invoices - Newton 2,undated + + + + + + 230 + 2231 + Records, Suppliers’ Invoices - Normandy 1,undated + + + + + + 230 + 2232 + Records, Suppliers’ Invoices - Normandy 2,undated + + + + + + 230 + 2233 + Records, Suppliers’ Invoices - Oakland 1,undated + + + + + + 230 + 2234 + Records, Suppliers’ Invoices - Oakland 2,undated + + + + + + 230 + 2235 + Records, Suppliers’ Invoices - Orlando,undated + + + + + + 230 + 2236 + Records, Suppliers’ Invoices - Palomar w' quantity estimate,undated + + + + + + 230 + 2237 + Records, Suppliers’ Invoices - Pasadena 1,undated + + + + + + 230 + 2238 + Records, Suppliers’ Invoices - Pasadena 2,undated + + + + + + 230 + 2239 + Records, Suppliers’ Invoices - Parkway w' quantity estimate,undated + + + + + + 230 + 2240 + Records, Suppliers’ Invoices - Parkwood,undated + + + + + + 230 + 2241 + Records, Suppliers’ Invoices - Parkwood, 3 bedrooms, third level,undated + + + + + + 230 + 2242 + Records, Suppliers’ Invoices - Pinecrest 1,undated + + + + + + + 231 + 2243 + Records, Suppliers’ Invoices - Pinecrest 2,undated + + + + + + 231 + 2244 + Records, Suppliers’ Invoices - Plaza 1,undated + + + + + + 231 + 2245 + Records, Suppliers’ Invoices - Plaza 2,undated + + + + + + 231 + 2246 + Records, Suppliers’ Invoices - Plaza 3,undated + + + + + + 231 + 2247 + Records, Suppliers’ Invoices - Plaza 3 w' Anderson windows,undated + + + + + + 231 + 2248 + Records, Suppliers’ Invoices - Plaza 4,1963-1965 + + + + + + 231 + 2249 + Records, Suppliers’ Invoices - Portage,undated + + + + + + 231 + 2250 + Records, Suppliers’ Invoices - Princeton 1,undated + + + + + + 231 + 2251 + Records, Suppliers’ Invoices - Princeton 2,undated + + + + + + 231 + 2252 + Records, Suppliers’ Invoices - Redwood w/ quantity estimates,undated + + + + + + 231 + 2253 + Records, Suppliers’ Invoices - Regency,undated + + + + + + 231 + 2254 + Records, Suppliers’ Invoices - Regency w' Anderson windows,undated + + + + + + 231 + 2255 + Records, Suppliers’ Invoices - Richmond,undated + + + + + + 231 + 2256 + Records, Suppliers’ Invoices - Ridgewood,undated + + + + + + 231 + 2257 + Records, Suppliers’ Invoices - Rio Grande 2,undated + + + + + + 231 + 2258 + Records, Suppliers’ Invoices - Rio Grande 4,undated + + + + + + 231 + 2259 + Records, Suppliers’ Invoices - Rio Grande w' quantity estimates,undated + + + + + + 231 + 2260 + Records, Suppliers’ Invoices - Riviera 1,undated + + + + + + 231 + 2261 + Records, Suppliers’ Invoices - Riviera 2,undated + + + + + + 232 + 2262 + Records, Suppliers’ Invoices - Rockwood,undated + + + + + + 232 + 2263 + Records, Suppliers’ Invoices - Rosewood,undated + + + + + + 232 + 2264 + Records, Suppliers’ Invoices - Rosewood w' crawl space,undated + + + + + + 232 + 2265 + Records, Suppliers’ Invoices - Rosewood duplex,undated + + + + + + 232 + 2266 + Records, Suppliers’ Invoices - Rotterdam,undated + + + + + + 232 + 2267 + Records, Suppliers’ Invoices - Royton w' quantity estimates,undated + + + + + + 232 + 2268 + Records, Suppliers’ Invoices - Salem 1,undated + + + + + + 232 + 2269 + Records, Suppliers’ Invoices - Salem 2,undated + + + + + + 232 + 2270 + Records, Suppliers’ Invoices - San Diego w' quantity estimates,undated + + + + + + 232 + 2271 + Records, Suppliers’ Invoices - Santa Fe 1,undated + + + + + + 232 + 2272 + Records, Suppliers’ Invoices - Santa Fe #3,1962, 1963, 1967 + + + + + + 232 + 2273 + Records, Suppliers’ Invoices - Saratoga w' quantity estimates,undated + + + + + + 232 + 2274 + Records, Suppliers’ Invoices - Savana #1,1979 + + + + + + 232 + 2275 + Records, Suppliers’ Invoices - Savana #2,1974 + + + + + + 232 + 2276 + Records, Suppliers’ Invoices - Savana #2,1974, 1977 + + + + + + 232 + 2277 + Records, Suppliers’ Invoices - Selma,1979 + + + + + + 232 + 2278 + Records, Suppliers’ Invoices - Shadylane #1,1956, 1961, 1963, 1971 + + + + + + 232 + 2279 + Records, Suppliers’ Invoices - Shadylane #2,1956, 1960, 1961, 1964 + + + + + + 232 + 2280 + Records, Suppliers’ Invoices - Sharlear,1962, 1964 + + + + + + 232 + 2281 + Records, Suppliers’ Invoices - Sharlear,1962-1964 + + + + + + 232 + 2282 + Records, Suppliers’ Invoices - Shasta #1,1980 + + + + + + 232 + 2283 + Records, Suppliers’ Invoices - Shasta #1 w' crawlspace,1981 + + + + + + 232 + 2284 + Records, Suppliers’ Invoices - Sherwood #2,1966 + + + + + + 232 + 2285 + Records, Suppliers’ Invoices - Sherwood #1,1965 + + + + + + 233 + 2286 + Records, Suppliers’ Invoices - Sierra #1,1972 + + + + + + 233 + 2287 + Records, Suppliers’ Invoices - Sierra #2,1972 + + + + + + 233 + 2288 + Records, Suppliers’ Invoices - Sierra #3,1972 + + + + + + 233 + 2289 + Records, Suppliers’ Invoices - Sierra #4,1972 + + + + + + 233 + 2290 + Records, Suppliers’ Invoices - Sparta #1,1971, 1979 + + + + + + 233 + 2291 + Records, Suppliers’ Invoices - Sparta #2,1973 + + + + + + 233 + 2292 + Records, Suppliers’ Invoices - Stratford #1,1980 + + + + + + 233 + 2293 + Records, Suppliers’ Invoices - Stratford #2,1980 + + + + + + 233 + 2294 + Records, Suppliers’ Invoices - Suburban Cottage,1981 + + + + + + 233 + 2295 + Records, Suppliers’ Invoices - Sylvan #2,1957, 1961 + + + + + + 233 + 2296 + Records, Suppliers’ Invoices - Sylvan #2,1962, 1964, 1965 + + + + + + 233 + 2297 + Records, Suppliers’ Invoices - Sylvan #1,undated + + + + + + 233 + 2298 + Records, Suppliers’ Invoices - Sylvan #3,1954, 1962 + + + + + + 233 + 2299 + Records, Suppliers’ Invoices - Sylvan #3,1969 + + + + + + 233 + 2300 + Records, Suppliers’ Invoices - Tacoma 1,undated + + + + + + 233 + 2301 + Records, Suppliers’ Invoices - Topeka 1,undated + + + + + + 233 + 2302 + Records, Suppliers’ Invoices - Topeka 2,undated + + + + + + 233 + 2303 + Records, Suppliers’ Invoices - Trenton 1,undated + + + + + + 233 + 2304 + Records, Suppliers’ Invoices - Trenton 2,undated + + + + + + 233 + 2305 + Records, Suppliers’ Invoices - Tulane,undated + + + + + + 233 + 2306 + Records, Suppliers’ Invoices - Tulsa w' quantity estimates,undated + + + + + + 233 + 2307 + Records, Suppliers’ Invoices - Ventura,undated + + + + + + 233 + 2308 + Records, Suppliers’ Invoices - Ventura 2,undated + + + + + + + + Aladdin Company Collection - Series #6, (Shipping Bills) + + + + 234 + 2309 + Records, Shipping Bills - Ventura 3,undated + + + + + + 234 + 2310 + Records, Shipping Bills - Ventura 3-A,undated + + + + + + 234 + 2311 + Records, Shipping Bills - Ventura 3-A w' two car garage,undated + + + + + + 234 + 2312 + Records, Shipping Bills - Vernon 1,undated + + + + + + 234 + 2313 + Records, Shipping Bills - Vernon 2,undated + + + + + + 234 + 2314 + Records, Shipping Bills - Vernon 3,undated + + + + + + 234 + 2315 + Records, Shipping Bills - Vinewood w' quantity estimates,undated + + + + + + 234 + 2316 + Records, Shipping Bills - Wilshire 2,undated + + + + + + 234 + 2317 + Records, Shipping Bills - Wilmington 1,undated + + + + + + 234 + 2318 + Records, Shipping Bills -Wilshire #1,1964-1979 + + + + + + 234 + 2319 + Records, Shipping Bills - Wilshire #3,1979 + + + + + + 234 + 2320 + Records, Shipping Bills - Winslow 1,undated + + + + + + 234 + 2321 + Records, Shipping Bills - Winslow 2,undated + + + + + + 234 + 2322 + Records, Shipping Bills - Yorkshire,1974 + + + + + + 234 + 2323 + Records, Shipping Bills - Yorktown w' quantity estimates,undated + + + + + + 234 + 2324 + Records, Shipping Bills - Shipping lists – special orders (sample),undated + + + + + + 234 + 2325 + Records, Shipping Bills - Estimates – bills of materials (sample),undated + + + + + + 234 + 2326 + Records, Shipping Bills - Estimates – bills of materials (sample),undated + + + + + + 235 + 2327 + Records, Shipping Bills - Book - Poplar ‘13” Statler 3, Shipping Bills (not in alpha order),1930 + + + + + + 235 + 2328 + Records, Shipping Bills - Book - Norfolk 1 – Winston front porch,1941-1947 + + + + + + 235 + 2329 + Records, Shipping Bills - Book - Amherst – Mt. Vernon 3,1947 + + + + + + 235 + 2330 + Records, Shipping Bills - Book - Bayview 1 – Wenona 2 summer cottages,1951 + + + + + + 235 + 2331 + Records, Shipping Bills - Loose pages - Breezeways – Garages. Price bills,1951-1952 + + + + + + 235 + 2332 + Records, Shipping Bills - Envelope with pages - Westport Summer cottages, specifications,undated + + + + + + 235 + 2333 + Records, Shipping Bills - Cottages,1960 + + + + + + 235 + 2334 + Records, Shipping Bills - MISSING (2-11-10) - Stover Building (Aladdin office) alterations,1975 + + + + + + 235 + 2335 + Records, Shipping Bills - MISSING (2-11-10) - Alamo-Tacoma,1964-1978 + + + + + + 235 + 2336 + Records, Shipping Bills - MISSING (2-11-10) - House Order Shipping List,1954-1981 + + + + + + + + Aladdin Company Collection - Series #7, (Suppliers, Transit & Mill Sites) + + + + 236 + 2337 + Records, Suppliers, Transit, Mill Sites - Suppliers’ correspondence (incomplete),1946-1986 + + + + + + 236 + 2338 + Records, Suppliers, Transit, Mill Sites - Transit correspondence,1948-1960 + + + + + + 236 + 2339 + Records, Suppliers, Transit, Mill Sites - Mill site proposals,1949-1960 + + + + + + 236 + 2340 + Records, Suppliers, Transit, Mill Sites - Contract mills - 1947-1960, form for contract mills - n.d.,1947-1960, undated + + + + + + 236 + 2341 + Records, Suppliers, Transit, Mill Sites - Transit shipping directions & transit records,1972-1975 + + + + + + 236 + 2342 + Records, Suppliers, Transit, Mill Sites - Freight register,1970, 1978-1982 + + + + + + 236 + 2343 + Records, Suppliers, Transit, Mill Sites - Truck vs. rail shipping costs,1956 + + + + + + 236 + 2344 + Records, Suppliers, Transit, Mill Sites - Aladdin truck delivery check list,undated + + + + + + 236 + 2345 + Records, Suppliers, Transit, Mill Sites - House weights,1966 + + + + + + 236 + 2346 + Records, Suppliers, Transit, Mill Sites - Shipping schedules,1967-1977 + + + + + + 236 + 2347 + Records, Suppliers, Transit, Mill Sites - Shipping diaries (bound), A. Irwin Lamb,1931, 1935, 1936, 1953 + + + + + + 236 + 2348 + Records, Suppliers, Transit, Mill Sites - Shipping diaries (Lamb),1954, 1955 + + + + + + 236 + 2349 + Records, Suppliers, Transit, Mill Sites - Shipping diaries (Lamb),1956 + + + + + + 236 + 2350 + Records, Suppliers, Transit, Mill Sites - Purchases, 1949-1953, listed by vendor with amounts (“J.M. Horton – 1949-1960”),1949-1960 + + + + + + 236 + 2351 + Records, Suppliers, Transit, Mill Sites - Purchases (3 folders),1954-1980 + + + + + + 236 + 2352 + Records, Suppliers, Transit, Mill Sites - Purchases (3 folders),1954-1980 + + + + + + 236 + 2353 + Records, Suppliers, Transit, Mill Sites - Purchases (3 folders),1954-1980 + + + + + + 236 + 2354 + Records, Suppliers, Transit, Mill Sites - New Method of Construction (Build-it-yourself),1962 + + + + + + 236 + 2355 + Records, Suppliers, Transit, Mill Sites - Price list-Material costs,1976-1980 + + + + + + 236 + 2356 + Records, Suppliers, Transit, Mill Sites - Kitchen layouts, Related Material,1955-1981 + + + + + + + + Aladdin Company Collection - Series #8, (Sovereign Family) + + + + 237 + 2357 + Records, Miscellaneous Other Investments/ Bay City Area Developments - Bay City Homebuilders Co. Articles of Association. 1916. Correspondence re. Company, 1937, Bankbook, 1932,1916-1937 + + + + + + 237 + 2358 + Records, Miscellaneous Other Investments/ Bay City Area Developments - Bay City Commercial Realty Company. Deeds. N.E. corner of 11th and Washington,1916 + + + + + + 237 + 2359 + Records, Miscellaneous Other Investments/ Bay City Area Developments - Bay City Commercial Realty Company. Deeds 407 Washington,1916 + + + + + + 237 + 2360 + Records, Miscellaneous Other Investments/ Bay City Area Developments - Bay City Commercial Realty Company. Deeds. Lower Saginaw,1923-1936 + + + + + + 237 + 2361 + Records, Miscellaneous Other Investments/ Bay City Area Developments - Bay City Commercial Realty Company. Accountant’s Report for 1924,1924 + + + + + + 237 + 2362 + Records, Miscellaneous Other Investments/ Bay City Area Developments - Bay City Commercial Realty Company. Accountant’s Report for 1925,1925 + + + + + + 237 + 2363 + Records, Miscellaneous Other Investments/ Bay City Area Developments - Bay City Commercial Realty Company. Filings with State of Michigan,1932-1941 + + + + + + 237 + 2364 + Records, Miscellaneous Other Investments/ Bay City Area Developments - Bay City Commercial Realty Company. List of documents received from National Bank of Bay City, 1932. Monthly budget for 1932,1932 + + + + + + 237 + 2365 + Records, Miscellaneous Other Investments/ Bay City Area Developments - Bay City Commercial Realty Company. Correspondence; estimates; rental accounts and proceedings,1932-1942 + + + + + + 237 + 2366 + Records, Miscellaneous Other Investments/ Bay City Area Developments - Bay City Commercial Realty Company. Agreements with National Bank of Bay City,1935-1936 + + + + + + 237 + 2367 + Records, Miscellaneous Other Investments/ Bay City Area Developments - Bay City Commercial Realty Company. Bay City Home Builders,1937-1942 + + + + + + 237 + 2368 + Records, Miscellaneous Other Investments/ Bay City Area Developments - Bay City Commercial Realty Company. Lenox Park +Subdivision,1927-1939 + + + + + + 237 + 2369 + Records, Miscellaneous Other Investments/ Bay City Area Developments - Bay City Commercial Realty Company. Lenox Park Plat,1916-1928 + + + + + + 237 + 2370 + Records, Miscellaneous Other Investments/ Bay City Area Developments - Home Builders Realty Co. Lists houses for BCHB,1933-1935 + + + + + + 237 + 2371 + Records, Miscellaneous Other Investments/ Bay City Area Developments - Bay City Realty Company. Leases,1934-1942 + + + + + + 237 + 2372 + Records, Miscellaneous Other Investments/ Bay City Area Developments - Bay City Home Builders & Bay City Commercial Realty Company deeds & land contracts. Mortgage payment cards (correspondence re: sales),1916-1942 + + + + + + 237 + 2373 + Records, Miscellaneous Other Investments/ Bay City Area Developments - Bay City Home Builders & Bay City Commercial Realty Company deeds & land contracts. Mortgage payment cards (correspondence re: sales),1916-1942 + + + + + + 237 + 2374 + Records, Miscellaneous Other Investments/ Bay City Area Developments - Bay City Home Builders & Bay City Commercial Realty Company deeds & land contracts. Mortgage payment cards (correspondence re: sales),1916-1942 + + + + + + 237 + 2375 + Records, Miscellaneous Other Investments/ Bay City Area Developments - Marin lots,1882-1916 + + + + + + 237 + 2376 + Records, Miscellaneous Other Investments/ Bay City Area Developments - Mortgages, leases, budgets, receipts & disbursements, 1932-1938/ Lenox Park agreement (deed restriction), 1941 (2 copies),1932-1938, 1941 + + + + + + 237 + 2377 + Records, Miscellaneous Other Investments/ Bay City Area Developments - Sage Land & Improvement Co,1912, 1916 + + + + + + 238 + 2378 + Records, Correspondence - Personal (2 folders),1945-1958 + + + + + + 238 + 2379 + Records, Correspondence - Personal (2 folders),1945-1958 + + + + + + 238 + 2380 + Records, Correspondence - Personal business correspondence – oil,1947-1953 + + + + + + 238 + 2381 + Records, Correspondence - Personal business correspondence – Non-oil,1949-1957 + + + + + + 238 + 2382 + Records, Correspondence - Correspondence with universities and libraries,1956-1985 + + + + + + 238 + 2383 + Records, Correspondence - Correspondence with newspapers,undated + + + + + + 238 + 2384 + Records, Correspondence - Correspondence with Bay City government,1949-1987 + + + + + + 238 + 2385 + Records, Correspondence - Contributions to political causes, 1950’s,1950-1959 + + + + + + 238 + 2386 + Records, Correspondence - Correspondence with politicians,1952-1957 + + + + + + 238 + 2387 + Records, Correspondence - Letters to Congress/ responses,1957 + + + + + + 238 + 2388 + Records, Correspondence - Lobby correspondence,1958-1963 + + + + + + 238 + 2389 + Records, Correspondence - Correspondence with Clarks,1949-1958 + + + + + + 238 + 2390 + Records, Correspondence - Rachel Sovereign Home correspondence,undated + + + + + + 238 + 2391 + Records, Correspondence - Charitable donations,1953-1958 + + + + + + 238 + 2392 + Records, Correspondence - Obituary, Mrs. William J. Sovereign, January 4, 1944,1944 + + + + + + 238 + 2393 + Records, Correspondence - J. Sovereign ciphering book,1978 + + + + + + 238 + 2394 + Records, Correspondence - Sovereign, Otto E. Fifty Million Dollars on a Shoestring (and Fifty years of Fun). N.P.: By the author (2 copies),1951 + + + + + + 238 + 2395 + Records, Correspondence - Sovereign, Otto E. Fifty Million Dollars on a Shoestring (and Fifty years of Fun). N.P.: By the author (2 copies),1951 + + + + + + 239 + 2399 + Records, Bay City Yacht Club (and predecessor organization) Records - Register (Bay City Boating and Fishing Club),1895-1898 + + + + + + 239 + 2398 + Records, Bay City Yacht Club (and predecessor organization) Records - Register (?),1899-1904 + + + + + + 239 + 2397 + Records, Bay City Yacht Club (and predecessor organization) Records - Membership List, Boat List, and Financial Records,1939 + + + + + + 239 + 2401 + Records, Bay City Yacht Club (and predecessor organization) Records - Meeting Minutes (primarily annual meeting),1920-1942 + + + + + + 239 + 2400 + Records, Bay City Yacht Club (and predecessor organization) Records - Financial Records,1911-1927 + + + + + + 239 + 2402 + Records, Bay City Yacht Club (and predecessor organization) Records - Financial Records,1939-1943 + + + + + + 239 + 2403 + Records, Bay City Yacht Club (and predecessor organization) Records - The Masthead (miscellaneous issues),1938-1944 + + + + + + 239 + 2404 + Records, Bay City Yacht Club (and predecessor organization) Records - Correspondence, re original 6 class boats,1944 + + + + + + 239 + 2396 + Records, Bay City Yacht Club (and predecessor organization) Records - Bay City Yacht Club golden anniversary program, (OES & WJS members),1944 + + + + + + 240 + 2406 + Records, Sally Sovereign Miscellaneous Photos,undated + + + + + + 240 + 2407 + Records, Sally Sovereign Miscellaneous Photos,undated + + + + + + 240 + 2408 + Records, Sally Sovereign Miscellaneous Photos,undated + + + + + + 240 + 2405 + Records, Jeanette Lempke Newspaper Clippings re. Aviation – loose copies of newspaper articles,undated + + + + + + 241 + 2409 + Records, Bay City Yacht Clum Boat (1919-1937) and Visitor (1906-1911) Registers,1906-1937 + + + + + + 242 + 2410 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Booklet: State of Michigan in the Supreme Court – Brief for Plaintiff-Appellant, File No. 17542, File No. 18465, Cal No. 49664,1953-1961 + + + + + + 242 + 2411 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Decree of Divorce,1961 + + + + + + 242 + 2412 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Book: State of Michigan in Supreme Court, Sovereign v. Sovereign, Record of Appeal Vol. 1,1953-1961 + + + + + + 242 + 2412b + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Book: State of Michigan in Supreme Court, Sovereign v. Sovereign, Record on Appeal Vol. 1,1953-1961 + + + + + + 242 + 2413 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Envelope addressed to Bill Sovereign containing exhibits,1953-1961 + + + + + + 242 + 2414 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Booklet: State of Michigan in Supreme Court – Brief for Plaintiff, Cross - Defendant & Appellant, Cal. No. 46853,1953-1961 + + + + + + 242 + 2415 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Book: State of Michigan in Supreme Court, Supplemental Record on Appeal,1953-1961 + + + + + + 242 + 2416 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Booklet: State of Michigan in Supreme Court, Cal. No. 46853, Brief for Defendant-Appellant relative to supplemental record on appeal,1953-1961 + + + + + + 242 + 2417 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Booklet: State of Michigan in Supreme Court, Cal. No. 46853, Brief for Defendant, Cross – Plaintiff & Appellant,1953-1961 + + + + + + 242 + 2418 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Booklet: State of Michigan in Supreme Court, Cal. No. 49366, Brief for Plaintiff-Appellant,1953-1961 + + + + + + 242 + 2419 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Book: State of Michigan in Supreme Court, Supplemental Record on Appeal,1953-1961 + + + + + + 242 + 2420 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Book: State of Michigan in Supreme Court, Record on Appeal Vol. 2,1953-1961 + + + + + + 242 + 2421 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Booklet: State of Michigan in Supreme Court, Cal. No. 46853, Brief for Defendant-Appellant relative to supplemental record on appeal,1953-1961 + + + + + + 242 + 2422 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Booklet: State of Michigan in Supreme Court, Cal. No. 46853, Brief for Defendant-Appellant relative to supplemental record on appeal,1953-1961 + + + + + + 242 + 2423 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Booklet: State of Michigan in Supreme Court, Cal. No. 46853, Brief for Defendant, Cross - Plaintiff & Appellant,1953-1961 + + + + + + 242 + 2424 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Booklet: State of Michigan in Supreme Court, Cal. No. 46853, Brief for Defendant- Appellant relative to supplemental record on appeal,1953-1961 + + + + + + 242 + 2425 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Booklet: State of Michigan in Supreme Court, Cal. No. 46853, Brief for Defendant, Cross – Plaintiff & Appellant,1953-1961 + + + + + + 242 + 2426 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Book: State of Michigan in Supreme Court, Cal. No. 49366, Appellant's Index,1953-1961 + + + + + + 242 + 2427 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Book: State of Michigan in Supreme Court, File No. 17542, Cal. No. 49664, File No. 18465, Appellant's Index,1953-1961 + + + + + + 242 + 2428 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Book: State of Michigan in Supreme Court, Cal. No. 49366, Appellant's Index,1953-1961 + + + + + + 242 + 2429 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Book: State of Michigan in Supreme Court, Record on Appeal Vol. II,1953-1961 + + + + + + 242 + 2430 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Vol. 1: transcript - Bay City Circuit Court, File #18465,1953-1961 + + + + + + 242 + 2431 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Vol. 2: transcript - Bay City Circuit Court, File #18465, File #17542,1953-1961 + + + + + + 242 + 2432 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Vol. 3: transcript - Bay City Circuit Court, File #18465, File #17542,1953-1961 + + + + + + 242 + 2433 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Transcripts: Bay City Circuit Court, File #18465,1953-1961 + + + + + + 242 + 2434 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - No. 3, Sovereign v. Sovereign, April 11, 1960 – Bay City Circuit Court, File No. 18465,1960 + + + + + + 242 + 2435 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - No. 4, Sovereign v. Sovereign, April 11, 1960 – Bay City Circuit Court, File No. 18465,1960 + + + + + + 242 + 2436 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Copy 2: Circuit Court of Bay City in Chancery, Sovereign v. Sovereign, June 18, 1959,1959 + + + + + + 242 + 2437 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - No. 1: Circuit Court of Saginaw, Jan. 1959 – Deposition Mary,1959 + + + + + + 242 + 2438 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Circuit Court of Bay City, July 1960 – Deposition Will,1960 + + + + + + 242 + 2439 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - No. 5: Circuit Court of Bay City, July 1960 – Deposition Mary,1960 + + + + + + 242 + 2440 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - No. 2: Circuit Court for County Bay in Chancery, Sovereign v. Sovereign, June 18, 1959,1959 + + + + + + 242 + 2441 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Circuit Court for County of Bay, File #18465, Nov. 20, 1961,1961 + + + + + + 242 + 2442 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Index of Witnesses/ Table of Exhibits – County of Bay in Chancery, June 18, 1959,1959 + + + + + + 242 + 2443 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Sovereign v. Sovereign, Cal. No. 46853 – transcript of telephone recordings,1953-1961 + + + + + + 243 + 2444 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Copy: Petition for order authorizing pre-trial discovery and depositions,1953-1961 + + + + + + 243 + 2445 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Folder: Notice of hearing to settle decree – decree of divorce #18465, Feb. 27, 1961 – Bay City,1961 + + + + + + 243 + 2446 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Folder: Judge Smith's Opinion, Feb. 24, 1961,1961 + + + + + + 243 + 2447 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Folder: Order of Default, Sept. 7, 1960,1960 + + + + + + 243 + 2448 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Folder: Response to Motion to Strike and Motion for Attorney Fees, June 23, 1960,1960 + + + + + + 243 + 2449 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Folder: Sovereign v. Hart – Bill of Particulars, April 14, 1960,1960 + + + + + + 243 + 2450 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Folder: Brief Regarding Right to Temporary Alimony and Attorney Fees, rec'd April 8, 1960,1960 + + + + + + 243 + 2451 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Folder: Answer to Petition for Support and Maintenance and Attorney Fees, March 1, 1960,1960 + + + + + + 243 + 2452 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Folder: M. S. Alimony Petition, March 1, 1960,1960 + + + + + + 243 + 2453 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Folder: Petition for Order Authorizing Pre-Trial Deposition , Feb. 20, 1960,1960 + + + + + + 243 + 2454 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Folder: Our Reply to Hart's Answer, Feb. 3, 1960,1960 + + + + + + 243 + 2455 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Folder: Hart's answer to my bill of Complaint, Feb. 2, 1960 – received from Sheet,1960 + + + + + + 243 + 2456 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Folder: Mr. Street's Answer to Hart's Answer – Sovereign v. Hart, Jan. 14, 1960,1960 + + + + + + 243 + 2457 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Folder: Sovereign v. Hart, Dec. 4 1959 – Declaration,1959 + + + + + + 243 + 2458 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Booklet: State of Michigan in the Supreme Court – Appeal from the Circuit Court for the County of Bay in Chancery, Cal. No. 48391,1953-1961 + + + + + + 243 + 2459 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Copy: State of Michigan in the Circuit Court for the County of Bay in Chancery, File No. 18465 – Pre-trial Conference,1953-1961 + + + + + + 243 + 2460 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Copy: State of Michigan in the Circuit Court for the County of Bay in Chancery, File No. 18465 – Amendment to Bill of Complaint,1953-1961 + + + + + + 243 + 2461 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Folder: State of Michigan in the Circuit Court of Bay – Deposition of Mr. Pierce, July 1, 1960,1960 + + + + + + 243 + 2462 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Folder: State of Michigan in the Circuit Court of Bay – Deposition of Mary K. Sovereign, July 1,1960,1960 + + + + + + 243 + 2463 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - File: Will F. Sovereign v. Mark K. Sovereign #18465 – Bay County Circuit Court,1953-1961 + + + + + + 243 + 2464 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Folder: Demand for Bill of Particulars, May 15, 1961,1961 + + + + + + 243 + 2465 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Folder: Hart's Answer to Motion for Re-Hearing, Hart's Bill of Particulars, Hart's Reply to Response, Hart's Motion for Interpretation of Decree and Order Thereon, Hart's Answer to Affirmative Matter Answer to Motion, M. S. Letter to Irving Hart – March 20, 1956,1956 + + + + + + 243 + 2466 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Supreme Court Opinion on my Suit against Hart, April 27, 1961,1961 + + + + + + 243 + 2467 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Answer to Motion for Rehearsing and Objections to Proposed Decree & Motion for Attorney Fees, April 12, 1961,1961 + + + + + + 243 + 2468 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Response to Petition for Attorney Fees, April 6, 1961,1961 + + + + + + 243 + 2469 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Motion for Rehearing,1953-1961 + + + + + + 243 + 2470 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - State of Michigan in the Circuit Court for the County of Bay in Chancery, File No. 18465 – Trial Brief,1953-1961 + + + + + + 243 + 2471 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Answer to Bill of Compliant and Amendment Thereto, Dec. 11, 1958,1958 + + + + + + 243 + 2472 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - The Little Trial: Petition for Order to Show Cause – date scheduled Monday, Sept. 20, 1954,1954 + + + + + + 243 + 2473 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Reply to Affirmation Matters in Answer to Amendment to Petition, Dec. 6, 1958,1958 + + + + + + 243 + 2474 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Hart's Answer to Amendment to Petition,1953-1961 + + + + + + 243 + 2475 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Petition for Pre-Trial Discovery Deposition, Received Nov. 13, 1958,1958 + + + + + + 243 + 2476 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Amendment to Petition, October 30, 1958,1958 + + + + + + 243 + 2477 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Supreme Court's opinions, October 14, 1958,1958 + + + + + + 243 + 2478 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Jacobson Case – Demand to Produce, August 21, 1958,1958 + + + + + + 243 + 2479 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Brief of Defendant and Appellee, January 25, 1958,1958 + + + + + + 243 + 2480 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Order Denying Petition for Temporary Alimony, January 17, 1958,1958 + + + + + + 243 + 2481 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Brief of Plaintiff and Appellant, Received January 3. 1958,1958 + + + + + + 243 + 2482 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Appellant's Supplemental Appendix & Brief of Amicus Curia, December 12, 1957,1957 + + + + + + 243 + 2483 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Street's Reply to Martin's Answer to Our Motion to Dismiss, received November 8, 1957,1957 + + + + + + 243 + 2484 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Will F. Sovereign (Plaintiff) v. Mary K. Sovereign (Defendant) – Bay County Circuit Court – April 11, 1960,1960 + + + + + + 243 + 2485 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Sorensen's Answer to Hart's “Show Cause Order”, received June 23, 1956,1956 + + + + + + 243 + 2486 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Correction Sheet Dated May 29, 1956 – Covering Street's Brief,1956 + + + + + + 243 + 2487 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Court Order – received in Street's letter, April 19, 1956,1956 + + + + + + 243 + 2488 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Notice of Appearance: received in Street's letter of April 2, 1956,1956 + + + + + + 243 + 2489 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Claim of Appeal: Feb. 6, 1956,1956 + + + + + + 243 + 2490 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Order Amending Divorce Decree/Judge Dehnke's letter of January 31, 1956 attached to above order – Street's letter February 2, 1956,1956 + + + + + + 243 + 2491 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Brief covering Jacobson case – Street's letter November 29, 1955,1955 + + + + + + 243 + 2492 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Judge Dehnke's Final Decree of Divorce – filed around November 1, 1955,1955 + + + + + + 243 + 2493 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Street's Reply to Hart's Affirmative Defense – received September 13, 1960,1960 + + + + + + 243 + 2494 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Box w' transcript: State of Michigan in the Circuit Court for the county of Bay, File No. 17542, File No. 18465 – Proceedings,1953-1961 + + + + + + 243 + 2495 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Bound Transcript: State of Michigan in the Circuit Court for the County of Saginaw, January 4-5, 1956 – Proceedings,1956 + + + + + + 243 + 2496 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Booklet: State of Michigan in the Supreme Court – Appeal from the Circuit Court for the County of Saginaw, Cal. No. 48783 – Appellant's Reply Brief,1953-1961 + + + + + + 243 + 2497 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Booklet: State of Michigan in the Supreme Court – Appeal from the Circuit Court for the County of Bay, File No. 17542, Cal. No. 49664, File No. 18465 – Supplemental Brief and Appendix for Plaintiff – Appellant,1953-1961 + + + + + + 243 + 2498 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Booklet: State of Michigan in the Supreme Court – Appeal from the Circuit Court for the County of Saginaw, Cal. No. 48783 – Appellant's Brief & Appendix,1953-1961 + + + + + + 243 + 2499 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Booklet: State of Michigan in the Supreme Court – Appeal from the Circuit Court for the County of Saginaw, Cal. No. 48783 – Appellee's Brief & Appendix,1953-1961 + + + + + + 243 + 2500 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Booklet: State of Michigan in the Supreme Court – Appeal from the Circuit Court for the County of Saginaw, Cal. No. 48783 – Supplemental Brief in Support of Application for Re-Hearing Based Upon After-Discovering Evidence,1953-1961 + + + + + + 243 + 2501 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Booklet: State of Michigan in the Supreme Court – Appeal from the Circuit Court for the County of Bay, File No. 17542, Cal. No. 49664, File No. 18465 – Appellee's Brief & Appendix,1953-1961 + + + + + + 243 + 2502 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - In envelope: State of Michigan Supreme Court Ruling, Dec. 1, 1960,1960 + + + + + + 243 + 2503 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Copy: State of Michigan in Circuit Court for the County of Saginaw, File No. L-26621 (3) – Order Authorizing Pre-Trial Discovery and Depositions,1953-1961 + + + + + + 243 + 2504 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Copy: State of Michigan in the Circuit Court for the County of Saginaw, File No. L-26621 (3) – Memorandum Brief Re: Attorney-Client Privilege,1953-1961 + + + + + + 243 + 2505 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Booklet: State if Michigan in the Circuit Court for the County of Bay, Deposition Will F. Sovereign,1953-1961 + + + + + + 243 + 2506 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - State of Michigan in the Circuit Court for the County of Bay in Chancery – Proceedings, June 18, 1959,1959 + + + + + + 243 + 2507 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - Envelope: Papers relating to the deposition of Mary K. Sovereign, April 11, 1960 – State of Michigan in Circuit Court for the County of Bay in Chancery,1960 + + + + + + 243 + 2508 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - State of Michigan in the Circuit Court for the County of Saginaw in Chancery, No. 29905 – Cal. V. Page 6 (suppressed) – Hearing May 3, 1954,1954 + + + + + + 243 + 2509 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - State of Michigan in the Circuit Court for the County of Saginaw in Chancery, No. 29905 – Cal. V. Page 598 (suppressed) – Hearing December 1, 1954,1954 + + + + + + 243 + 2510 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - State of Michigan in the Circuit Court for the County of Bay – Proceedings May 12, 1961,1961 + + + + + + 243 + 2511 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - State of Michigan in the Circuit Court for the County of Bay – File No. 18465 – First Pre-Trial,1953-1961 + + + + + + 243 + 2512 + Records, Litigation: William F. Sovereign vs. Mary K. Sovereign and related proceedings (Consists of published material or material part of the court records) - State of Michigan in the Circuit Court for the County of Bay – File No. 18465 – First Pre-Trial,1953-1961 + + + + + + 244 + 2513 + Records, Miscellaneous Family Photos - Unidentified photograph, B&W, of man and woman, wooden, swivel frame,undated + + + + + + 244 + 2514 + Records, Miscellaneous Family Photos - Unidentified photograph, B&W, of 5 women, taken July 24, 1934, loose,1934 + + + + + + 244 + 2515 + Records, Miscellaneous Family Photos - 2 unidentified photographs, B&W, of a woman, leather-bound double photo frame,undated + + + + + + 244 + 2516 + Records, Miscellaneous Family Photos - Unidentified photograph of 2 boys, B&W, wood frame marked “1890”,1890 + + + + + + 244 + 2517 + Records, Miscellaneous Family Photos - Unidentified photograph, colorized, of woman, in fancy wooden frame,undated + + + + + + 244 + 2518 + Records, Miscellaneous Family Photos - Unidentified photograph, colorized, of woman, in fancy wooden frame,undated + + + + + + 244 + 2519 + Records, Miscellaneous Family Photos - Unidentified photograph, B&W, of woman, metal frame,1953 + + + + + + 244 + 2520 + Records, Miscellaneous Family Photos - Unidentified photograph, B&W, of woman, metal frame,undated + + + + + + 244 + 2521 + Records, Miscellaneous Family Photos - Unidentified photograph, B&W, of woman, wooden frame,undated + + + + + + 244 + 2522 + Records, Miscellaneous Family Photos - Unidentified photograph, B&W, of woman, wooden frame,undated + + + + + + 244 + 2523 + Records, Miscellaneous Family Photos - Print picture of Santa Claus sleeping by a Christmas fireplace, color, wood frame,undated + + + + + + 244 + 2524 + Records, Miscellaneous Family Photos - Empty wood picture frames, various sizes,undated + + + + + + 244 + 2525 + Records, Miscellaneous Family Photos - Empty wood picture frames, various sizes,undated + + + + + + 244 + 2526 + Records, Miscellaneous Family Photos - Unidentified photograph of man, B&W, in paper frame,undated + + + + + + 244 + 2527 + Records, Miscellaneous Family Photos - Operating instructions Strobonar Seven Pro Pak,undated + + + + + + 244 + 2528 + Records, Miscellaneous Family Photos - Print landscape with “Stop Danger” sign, color, wood frame,undated + + + + + + 244 + 2529 + Records, Miscellaneous Family Photos - Print (?) picture of house, color, wood frame,undated + + + + + + 244 + 2530 + Records, Miscellaneous Family Photos - Unidentified photograph of man, B&W, in paper frame,undated + + + + + + 244 + 2531 + Records, Miscellaneous Family Photos - Unidentified photograph of man, B&W, in paper frame,undated + + + + + + + + Aladdin Company Collection - Series #9, (Photographs and Films) + + + + 245 + 2532 + Records, Photographs and Films - Lamar,undated + + + + + + 245 + 2533 + Records, Photographs and Films - Out slip as of 2-19-10,undated + + + + + + 245 + 2534 + Records, Photographs and Films - Laredo,undated + + + + + + 245 + 2535 + Records, Photographs and Films - Laredo 2 - #64035,undated + + + + + + 245 + 2536 + Records, Photographs and Films - Laurel,undated + + + + + + 245 + 2537 + Records, Photographs and Films - Lennox, c. 1950s,1950-1959 + + + + + + 245 + 2538 + Records, Photographs and Films - Lexington,undated + + + + + + 245 + 2539 + Records, Photographs and Films - Lockwood,undated + + + + + + 245 + 2540 + Records, Photographs and Films - Longwood,undated + + + + + + 245 + 2541 + Records, Photographs and Films - Lorain,1963 + + + + + + 245 + 2542 + Records, Photographs and Films - Lorain, Fairlane. Negative,1963 + + + + + + 245 + 2543 + Records, Photographs and Films - Laredo, c.1960,1960-1969 + + + + + + 245 + 2544 + Records, Photographs and Films - Madison (formerly Lindberg),undated + + + + + + 245 + 2545 + Records, Photographs and Films - Magnolia, catalog,1951 + + + + + + 245 + 2546 + Records, Photographs and Films - Manhasset,undated + + + + + + 245 + 2547 + Records, Photographs and Films - Mayfair,undated + + + + + + 245 + 2548 + Records, Photographs and Films - Medford,undated + + + + + + 245 + 2549 + Records, Photographs and Films - Monterey,undated + + + + + + 245 + 2550 + Records, Photographs and Films - Style M-Z (“Nine-room dwelling house”) 1910, Restored 1974-1977. Mrs. George Morris, Box 213A, Constitution, OH 45722,undated + + + + + + 245 + 2551 + Records, Photographs and Films - Nassau,undated + + + + + + 245 + 2552 + Records, Photographs and Films - Newport,undated + + + + + + 245 + 2553 + Records, Photographs and Films - Newton,undated + + + + + + 245 + 2554 + Records, Photographs and Films - Norfolk,undated + + + + + + 245 + 2555 + Records, Photographs and Films - Oakford,undated + + + + + + 245 + 2556 + Records, Photographs and Films - Orlando, c. 1960s,1960-1969 + + + + + + 245 + 2557 + Records, Photographs and Films - Palm Springs,undated + + + + + + 245 + 2558 + Records, Photographs and Films - Palo Alto,undated + + + + + + 245 + 2559 + Records, Photographs and Films - Palomar,undated + + + + + + 245 + 2560 + Records, Photographs and Films - Parkwood,undated + + + + + + 245 + 2561 + Records, Photographs and Films - Parkway,undated + + + + + + 245 + 2562 + Records, Photographs and Films - Palomar, c.1960,1960-1969 + + + + + + 245 + 2563 + Records, Photographs and Films - Parkwood (tri-level), c. 1960,1960-1969 + + + + + + 245 + 2564 + Records, Photographs and Films - Pasadena,undated + + + + + + 245 + 2565 + Records, Photographs and Films - Pilgrim houses,undated + + + + + + 245 + 2566 + Records, Photographs and Films - Pilgrim 5, c. 1948. John & Sally Sovereign Clark, Valleyview Rd., Petoskey, MI,1948 + + + + + + 245 + 2567 + Records, Photographs and Films - Pilgrim, c.1950. R. E. Brunning, Farmington, MI,1950 + + + + + + 245 + 2568 + Records, Photographs and Films - Pinecrest,1955 + + + + + + 245 + 2569 + Records, Photographs and Films - Plaza,undated + + + + + + 245 + 2570 + Records, Photographs and Films - Pomona,undated + + + + + + 245 + 2571 + Records, Photographs and Films - Portage,undated + + + + + + 245 + 2572 + Records, Photographs and Films - Preston,undated + + + + + + 245 + 2573 + Records, Photographs and Films - Princeton,undated + + + + + + 245 + 2574 + Records, Photographs and Films - Rambler,undated + + + + + + 245 + 2575 + Records, Photographs and Films - Redwood,undated + + + + + + 245 + 2576 + Records, Photographs and Films - Ridgewood,undated + + + + + + 245 + 2577 + Records, Photographs and Films - Rio Grande,undated + + + + + + 245 + 2578 + Records, Photographs and Films - Rockport,undated + + + + + + 245 + 2579 + Records, Photographs and Films - Rockwood, c. 1960,1960-1969 + + + + + + 245 + 2580 + Records, Photographs and Films - Rosewood,undated + + + + + + 245 + 2581 + Records, Photographs and Films - Royton,undated + + + + + + 245 + 2582 + Records, Photographs and Films - San Diego,undated + + + + + + 245 + 2583 + Records, Photographs and Films - Santa Barbara,undated + + + + + + 245 + 2584 + Records, Photographs and Films - Santa Fe,undated + + + + + + 245 + 2585 + Records, Photographs and Films - Santa Rosa,undated + + + + + + 245 + 2586 + Records, Photographs and Films - Saratoga,undated + + + + + + 245 + 2587 + Records, Photographs and Films - Savannah,undated + + + + + + 245 + 2588 + Records, Photographs and Films - Selma,undated + + + + + + 245 + 2589 + Records, Photographs and Films - Service station & roadside stand c.1925 (see advertisement),undated + + + + + + 245 + 2590 + Records, Photographs and Films - Shady Lane,1952-1957 + + + + + + 245 + 2591 + Records, Photographs and Films - Sharlear,undated + + + + + + 245 + 2592 + Records, Photographs and Films - Shelburn,undated + + + + + + 245 + 2593 + Records, Photographs and Films - Shelby,undated + + + + + + 245 + 2594 + Records, Photographs and Films - Sheridan,1952-1957 + + + + + + 245 + 2595 + Records, Photographs and Films - Sherwood,undated + + + + + + 245 + 2596 + Records, Photographs and Films - Sierra,undated + + + + + + 245 + 2597 + Records, Photographs and Films - Sparta,undated + + + + + + 245 + 2598 + Records, Photographs and Films - Summerset,undated + + + + + + 245 + 2599 + Records, Photographs and Films - Sunshine,undated + + + + + + 245 + 2600 + Records, Photographs and Films - Sylvan,undated + + + + + + 245 + 2601 + Records, Photographs and Films - Sylvan living room, etc.,undated + + + + + + 245 + 2602 + Records, Photographs and Films - Topeka,undated + + + + + + 245 + 2603 + Records, Photographs and Films - Trenton, 1966 catalog p. 39,1966 + + + + + + 245 + 2604 + Records, Photographs and Films - Tulane,undated + + + + + + 245 + 2605 + Records, Photographs and Films - Ventura,undated + + + + + + 245 + 2606 + Records, Photographs and Films - 1954 Ventura 1, #54028. Fred Piechota, 32 S. High St., Bondsville, Mass.,1954 + + + + + + 245 + 2607 + Records, Photographs and Films - Venus, 1919 catalog,1919 + + + + + + 245 + 2608 + Records, Photographs and Films - Vernon,undated + + + + + + 245 + 2609 + Records, Photographs and Films - Vinewood,undated + + + + + + 245 + 2610 + Records, Photographs and Films - Westbrook,undated + + + + + + 245 + 2611 + Records, Photographs and Films - Williamsburg,1952-1957 + + + + + + 245 + 2612 + Records, Photographs and Films - Wilmington,1952-1957 + + + + + + 245 + 2613 + Records, Photographs and Films - Wilshire, 1966 catalog p.17,1966 + + + + + + 245 + 2614 + Records, Photographs and Films - Winslow,undated + + + + + + 245 + 2615 + Records, Photographs and Films - Winston,undated + + + + + + 245 + 2616 + Records, Photographs and Films - “Wonder House” - pictured in film,1940 + + + + + + 245 + 2617 + Records, Photographs and Films - Woodland,undated + + + + + + 245 + 2618 + Records, Photographs and Films - Yorktown,undated + + + + + + 245 + 2619 + Records, Photographs and Films - Special Plans,undated + + + + + + 245 + 2620 + Records, Photographs and Films - Sp. Plan – Orlando G. Rinehart, Clarksville, Tenn. #63033, #66047, #69017,undated + + + + + + 246 + 2621 + Records, Photographs and Films - Acacia,1952-1957 + + + + + + 246 + 2622 + Records, Photographs and Films - Aladdinette house,1922 + + + + + + 246 + 2623 + Records, Photographs and Films - Alamo,undated + + + + + + 246 + 2624 + Records, Photographs and Films - Alamo 3. Mrs. Otis E. Hall, Bath, New York,1950 + + + + + + 246 + 2625 + Records, Photographs and Films - Alamo 1, #52514,1951 + + + + + + 246 + 2626 + Records, Photographs and Films - Alden,undated + + + + + + 246 + 2627 + Records, Photographs and Films - Alvarado,undated + + + + + + 246 + 2628 + Records, Photographs and Films - Ambassador,undated + + + + + + 246 + 2629 + Records, Photographs and Films - Amberwood,undated + + + + + + 246 + 2630 + Records, Photographs and Films - Amsterdam,undated + + + + + + 246 + 2631 + Records, Photographs and Films - Arlington, Salem, Laredo, Parkwood. Negatives – New house,1964 + + + + + + 246 + 2632 + Records, Photographs and Films - Ashland,undated + + + + + + 246 + 2633 + Records, Photographs and Films - Astoria,1952-1957 + + + + + + 246 + 2634 + Records, Photographs and Films - Astoria,undated + + + + + + 246 + 2635 + Records, Photographs and Films - Atlanta,undated + + + + + + 246 + 2636 + Records, Photographs and Films - Augusta,1952-1957 + + + + + + 246 + 2637 + Records, Photographs and Films - Austin,1959 + + + + + + 246 + 2638 + Records, Photographs and Films - Austin, Sherwood, Trenton, Richmond. Negatives,1965 + + + + + + 246 + 2639 + Records, Photographs and Films - Bates,undated + + + + + + 246 + 2640 + Records, Photographs and Films - Bellevue,undated + + + + + + 246 + 2641 + Records, Photographs and Films - Belmont,1952-1957 + + + + + + 246 + 2642 + Records, Photographs and Films - Berkeley,undated + + + + + + 246 + 2643 + Records, Photographs and Films - Berkeley. Opie West, Big Rapids, MI,1970 + + + + + + 246 + 2644 + Records, Photographs and Films - Berkeley, Crestwood, Princeton. 4 negatives, 1966 catalog,1966 + + + + + + 246 + 2645 + Records, Photographs and Films - “Berkshire” Hotel as built in Georgia. See also Books and Magazines, Folder 26. Glass plate negatives,undated + + + + + + 246 + 2646 + Records, Photographs and Films - Brentwood 1. Kenneth Knox, Gettysburg, PA. #52869,undated + + + + + + 246 + 2647 + Records, Photographs and Films - Brentwood,undated + + + + + + 246 + 2648 + Records, Photographs and Films - Brentwood, #580176. Edgar A. Stambaugh, Spring Grove, PA,1973 + + + + + + 246 + 2649 + Records, Photographs and Films - Brentwood 1. Warner Gill, Mt. Blanchard, Ohio,1953 + + + + + + 246 + 2650 + Records, Photographs and Films - Brewster,undated + + + + + + 246 + 2651 + Records, Photographs and Films - Briarwood,undated + + + + + + 246 + 2652 + Records, Photographs and Films - Brighton – with letter to Fred Rula, photographer. Reference to John Stewart, Russell, PA.,1965 + + + + + + 246 + 2653 + Records, Photographs and Films - Brighton – Roland Hoffman home, Grotz, PA. Fred Rola photographer – 81 Hirliman Rd., Teeneck, N.J. – living room view missing,1961 + + + + + + 246 + 2654 + Records, Photographs and Films - Bristol,undated + + + + + + 246 + 2655 + Records, Photographs and Films - Bristol,1952-1957 + + + + + + 246 + 2656 + Records, Photographs and Films - Brockton,undated + + + + + + 246 + 2657 + Records, Photographs and Films - Bronson,undated + + + + + + 246 + 2658 + Records, Photographs and Films - Cambridge,undated + + + + + + 246 + 2659 + Records, Photographs and Films - Camden,undated + + + + + + 246 + 2660 + Records, Photographs and Films - Canyon,undated + + + + + + 246 + 2661 + Records, Photographs and Films - Canyon, #62010-11. C. R. Robbins, Liverpool, New York,undated + + + + + + 246 + 2662 + Records, Photographs and Films - Canyon, #62010-11. Thomas Miles, St. Johnsville, New York,undated + + + + + + 246 + 2663 + Records, Photographs and Films - Canyon,1952-1957 + + + + + + 246 + 2664 + Records, Photographs and Films - Caroline, n.d. (1920s?) - Glass Plate Negatives,undated + + + + + + 246 + 2665 + Records, Photographs and Films - Castle, n.d. (1920s?) - Glass Plate Negatives,undated + + + + + + 246 + 2666 + Records, Photographs and Films - Catalina,undated + + + + + + 246 + 2667 + Records, Photographs and Films - Cedars,1923 + + + + + + 246 + 2668 + Records, Photographs and Films - Cedars,1952-1957 + + + + + + 246 + 2669 + Records, Photographs and Films - Chelsea,undated + + + + + + 246 + 2670 + Records, Photographs and Films - Clarksdale,undated + + + + + + 246 + 2671 + Records, Photographs and Films - Clarksdale, rear,1960 + + + + + + 246 + 2672 + Records, Photographs and Films - Clifton,1952-1957 + + + + + + 246 + 2673 + Records, Photographs and Films - Clinton,undated + + + + + + 246 + 2674 + Records, Photographs and Films - Coachman,undated + + + + + + 246 + 2675 + Records, Photographs and Films - Concord,undated + + + + + + 246 + 2676 + Records, Photographs and Films - Cornell,undated + + + + + + 246 + 2677 + Records, Photographs and Films - Coronado,undated + + + + + + 246 + 2678 + Records, Photographs and Films - Coronado 1, #50526. Olney L. Wheeler, 805 Sullivan Drive, Belvidere, IL,undated + + + + + + 246 + 2679 + Records, Photographs and Films - Coronado,1952-1957 + + + + + + 246 + 2680 + Records, Photographs and Films - Coronet – sp.Coronet #70103,undated + + + + + + 246 + 2681 + Records, Photographs and Films - Covington,undated + + + + + + 246 + 2682 + Records, Photographs and Films - Cranbrook, spring follow-up 1957,1957 + + + + + + 246 + 2683 + Records, Photographs and Films - Crestwood,undated + + + + + + 246 + 2684 + Records, Photographs and Films - Danbury,undated + + + + + + 246 + 2685 + Records, Photographs and Films - Del Mar,undated + + + + + + 246 + 2686 + Records, Photographs and Films - Del Monte,undated + + + + + + 246 + 2687 + Records, Photographs and Films - Del Roy,undated + + + + + + 246 + 2688 + Records, Photographs and Films - Delta,undated + + + + + + 246 + 2689 + Records, Photographs and Films - Denton,undated + + + + + + 246 + 2690 + Records, Photographs and Films - Denver,undated + + + + + + 246 + 2691 + Records, Photographs and Films - Dexter,1960 + + + + + + 246 + 2692 + Records, Photographs and Films - Denver,1960 + + + + + + 246 + 2693 + Records, Photographs and Films - Detroit, 1915 catalog,1915 + + + + + + 246 + 2694 + Records, Photographs and Films - Dog house #68075,1968 + + + + + + 246 + 2695 + Records, Photographs and Films - Dover,undated + + + + + + 246 + 2696 + Records, Photographs and Films - Driftwood,undated + + + + + + 246 + 2697 + Records, Photographs and Films - Dunbar,undated + + + + + + 246 + 2698 + Records, Photographs and Films - Eastland,undated + + + + + + 246 + 2699 + Records, Photographs and Films - Edison,undated + + + + + + 246 + 2700 + Records, Photographs and Films - Eldorado,undated + + + + + + 246 + 2701 + Records, Photographs and Films - El Paso,undated + + + + + + 246 + 2702 + Records, Photographs and Films - El Paso special,undated + + + + + + 246 + 2703 + Records, Photographs and Films - El Rancho,undated + + + + + + 246 + 2704 + Records, Photographs and Films - El Rancho 2, 1952. Charles Giamati, 687 E. Turkey Foot Lake Rd., Akron, Ohio,undated + + + + + + 246 + 2705 + Records, Photographs and Films - Embassy,undated + + + + + + 246 + 2706 + Records, Photographs and Films - Essex,undated + + + + + + 246 + 2707 + Records, Photographs and Films - Evanston,undated + + + + + + 246 + 2708 + Records, Photographs and Films - Evanston 1, #54791. Lee O. Zieg, Greencastle, Indiana,1954 + + + + + + 246 + 2709 + Records, Photographs and Films - Fairlane,undated + + + + + + 246 + 2710 + Records, Photographs and Films - Flamingo,undated + + + + + + 246 + 2711 + Records, Photographs and Films - Forest Hill,undated + + + + + + 246 + 2712 + Records, Photographs and Films - Foreston,undated + + + + + + 246 + 2713 + Records, Photographs and Films - Friendship,undated + + + + + + 246 + 2714 + Records, Photographs and Films - Gary,undated + + + + + + 246 + 2715 + Records, Photographs and Films - Glenbrooke,undated + + + + + + 246 + 2716 + Records, Photographs and Films - Glen Cove 1, #580120. Chester Grayson, Bloomington, Indiana – misc.,undated + + + + + + 246 + 2717 + Records, Photographs and Films - Glen Haven,undated + + + + + + 246 + 2718 + Records, Photographs and Films - Glenview,1952-1957 + + + + + + 246 + 2719 + Records, Photographs and Films - Glenwood,undated + + + + + + 246 + 2720 + Records, Photographs and Films - Goodrich,undated + + + + + + 246 + 2721 + Records, Photographs and Films - The Grange,undated + + + + + + 246 + 2722 + Records, Photographs and Films - Graystone,undated + + + + + + 246 + 2723 + Records, Photographs and Films - Greenbriar,undated + + + + + + 246 + 2724 + Records, Photographs and Films - Grenda,1960 + + + + + + 246 + 2725 + Records, Photographs and Films - Groveland,undated + + + + + + 246 + 2726 + Records, Photographs and Films - Highwood,undated + + + + + + 246 + 2727 + Records, Photographs and Films - Hillsdale,undated + + + + + + 246 + 2728 + Records, Photographs and Films - Hillsdale without garage,1962 + + + + + + 246 + 2729 + Records, Photographs and Films - Holbrook,undated + + + + + + 246 + 2730 + Records, Photographs and Films - Hollywood,undated + + + + + + 246 + 2731 + Records, Photographs and Films - Holmes,undated + + + + + + 246 + 2732 + Records, Photographs and Films - Houston,undated + + + + + + 246 + 2733 + Records, Photographs and Films - Ingelwood, catalog #64, #560703-704,1959 + + + + + + 246 + 2734 + Records, Photographs and Films - Iris,undated + + + + + + 246 + 2735 + Records, Photographs and Films - Jasmine,undated + + + + + + 246 + 2736 + Records, Photographs and Films - Kensington,undated + + + + + + 246 + 2737 + Records, Photographs and Films - Kenton,undated + + + + + + 246 + 2738 + Records, Photographs and Films - Kenwood,undated + + + + + + 246 + 2739 + Records, Photographs and Films - Kimberly,1952-1957 + + + + + + 246 + 2740 + Records, Photographs and Films - Kinsbury,undated + + + + + + 247 + 2741 + Records, Construction Prints, Negatives - Unfiled postcards,undated + + + + + + 247 + 2742 + Records, Construction Prints, Negatives - Unidentified,undated + + + + + + 247 + 2743 + Records, Construction Prints, Negatives - Unidentified house c.1940?,1940 + + + + + + 247 + 2744 + Records, Construction Prints, Negatives - Unidentified house – print negative (1950s ?),1950 + + + + + + 247 + 2745 + Records, Construction Prints, Negatives - Unidentified house,1952-1957 + + + + + + 247 + 2746 + Records, Construction Prints, Negatives - Unidentified house,1952-1957 + + + + + + 247 + 2747 + Records, Construction Prints, Negatives - Unidentified house,1952-1957 + + + + + + 247 + 2748 + Records, Construction Prints, Negatives - Unidentified house,1952-1957 + + + + + + 247 + 2749 + Records, Construction Prints, Negatives - Unidentified house,1952-1957 + + + + + + 247 + 2750 + Records, Construction Prints, Negatives - Unidentified house,1952-1957 + + + + + + 247 + 2751 + Records, Construction Prints, Negatives - Unidentified house,1952-1957 + + + + + + 247 + 2752 + Records, Construction Prints, Negatives - Unidentified house,1952-1957 + + + + + + 247 + 2753 + Records, Construction Prints, Negatives - Unidentified house,1960 + + + + + + 247 + 2754 + Records, Construction Prints, Negatives - Unidentified house,1960 + + + + + + 247 + 2755 + Records, Construction Prints, Negatives - Unidentified house,1960 + + + + + + 247 + 2756 + Records, Construction Prints, Negatives - Unidentified house,1960 + + + + + + 247 + 2757 + Records, Construction Prints, Negatives - Unidentified house,1960 + + + + + + 247 + 2758 + Records, Construction Prints, Negatives - Unidentified house,1960 + + + + + + 247 + 2759 + Records, Construction Prints, Negatives - Unidentified house,1960 + + + + + + 247 + 2760 + Records, Construction Prints, Negatives - Unidentified house,1960 + + + + + + 247 + 2761 + Records, Construction Prints, Negatives - Unidentified house,1960 + + + + + + 247 + 2762 + Records, Construction Prints, Negatives - Unidentified house,1960 + + + + + + 247 + 2763 + Records, Construction Prints, Negatives - Unidentified house,undated + + + + + + 247 + 2764 + Records, Construction Prints, Negatives - Unidentified & Miscellaneous (no model names),undated + + + + + + 247 + 2765 + Records, Construction Prints, Negatives - Aladdin Victory Hutment, latrine, scrub deck, mock-up gable, pallets, recreation building, mill,1941-1945 + + + + + + 247 + 2766 + Records, Construction Prints, Negatives - Military contracts. Pit latrine, naval armory recreation building, standard 5-man army hut, scrub deck – WWII,undated + + + + + + 247 + 2767 + Records, Construction Prints, Negatives - Fort Brady, Sault St. Marie, MI. WWII. Kellogg Field, Battle Creek, MI. WWII,undated + + + + + + 247 + 2768 + Records, Construction Prints, Negatives - Barracks construction WWII, Hutment WWII,undated + + + + + + 247 + 2769 + Records, Construction Prints, Negatives - Construction,undated + + + + + + 247 + 2770 + Records, Construction Prints, Negatives - MISC photos,undated + + + + + + 247 + 2771 + Records, Construction Prints, Negatives - Aladdin Store, Muskegon, MI,1928 + + + + + + 247 + 2772 + Records, Construction Prints, Negatives - “Aladdin's New B-I-Y System”, photos,1962 + + + + + + 247 + 2773 + Records, Construction Prints, Negatives - Alaska-bound truck,undated + + + + + + + 247 + 2774 + Records, Construction Prints, Negatives - Bay Street House, Saginaw, MI. Steps of erection, negatives,undated + + + + + + 247 + 2775 + Records, Construction Prints, Negatives - Bollingers Photographers, Charleston, W. Va. Unidentified houses,1937 + + + + + + 247 + 2776 + Records, Construction Prints, Negatives - Bollinger Photographers, Charleston, W. Va. House #s 38722, 37855, 37873, 38089, 37842, 37722,1937-1938 + + + + + + 247 + 2777 + Records, Construction Prints, Negatives - Hotel Doherty, Clare, MI. Cottage annex,1936 + + + + + + 247 + 2778 + Records, Construction Prints, Negatives - Frost kitchen & bathroom,undated + + + + + + 247 + 2779 + Records, Construction Prints, Negatives - Mill, Bay City, MI,undated + + + + + + 247 + 2780 + Records, Construction Prints, Negatives - Hyde Park Wood Products, Cincinnati, OH,undated + + + + + + 247 + 2781 + Records, Construction Prints, Negatives - Seattle logging (1958), garages & misc,1958, undated + + + + + + 247 + 2782 + Records, Construction Prints, Negatives - Interiors of large colonial-style house, nd. (c.1930?) “...taken for the Smithsonian Institute or United States Museum in Washington D.C.”,undated + + + + + + 247 + 2783 + Records, Construction Prints, Negatives - Experimental house #59036. Folder 1 of 2,undated + + + + + + 247 + 2784 + Records, Construction Prints, Negatives - Experimental house #59036. Folder 2 of 2,undated + + + + + + 247 + 2785 + Records, Construction Prints, Negatives - Experimental construction 1961 – see also Aladdin Problem Report (Administration, folders 13-16),1961 + + + + + + 247 + 2786 + Records, Construction Prints, Negatives - Stewart. “Dendron House”; Russell, PA, 16345. Photos addressed to M. E. Frantz,1966 + + + + + + 247 + 2787 + Records, Construction Prints, Negatives - Company Personnel c.1950 and earlier,1950, undated + + + + + + 247 + 2788 + Records, Construction Prints, Negatives - Sovereign Personal Photos,undated + + + + + + 247 + 2789 + Records, Construction Prints, Negatives - Sovereign Family recreation – old-timer (yacht) 1953. Yeager's Major (great dane) b. 1934,1934, 1953 + + + + + + 248 + 2790 + Records, Photographs and Films - envelope: no. 1, April 25, 1952. Construction pictures of Melvin's house, excavation,1952 + + + + + + 248 + 2791 + Records, Photographs and Films - envelope: no. 2, May 10, 1952. Construction pictures of Melvin's house, footings,1952 + + + + + + 248 + 2792 + Records, Photographs and Films - envelope: no. 3, May 13, 1952. Construction pictures of Melvin's house, excavation,1952 + + + + + + 248 + 2793 + Records, Photographs and Films - envelope: no. 4, May 14, 1952. Shipping pictures 1) truck shipments, 2) rail shipments, 3) packaging,1952 + + + + + + 248 + 2794 + Records, Photographs and Films - envelope: no. 5, May 17, 1952. Construction pictures of Melvin's house, foundation,1952 + + + + + + 248 + 2795 + Records, Photographs and Films - envelope: no. 6, May 19, 1952. Construction pictures of Melvin's house & Porter's, laying corner blocks,1952 + + + + + + 248 + 2796 + Records, Photographs and Films - envelope: no. 7, May 20, 1952. McKinley house, see other folder for pictures,1952 + + + + + + 248 + 2797 + Records, Photographs and Films - envelope: no. 8, May 21, 1952. Construction pictures of Melvin's house, wall plates, floor joints,1952 + + + + + + 248 + 2798 + Records, Photographs and Films - envelope: no. 9, May 22, 1952. Construction pictures, of Melvin's house, floor joist, stair opening,1952 + + + + + + 248 + 2799 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2800 + Records, Photographs and Films - envelope: no. 10, May 25, 1952. Construction pictures of Melvin's house, bridging,1952 + + + + + + 248 + 2801 + Records, Photographs and Films - envelope: no. 11, May 26th & 27th, 1952. Construction pictures of Melvin's house, sub-floor,1952 + + + + + + 248 + 2802 + Records, Photographs and Films - envelope: no. 12, May 27, 1952. McKinley house, see other folder for pictures,1952 + + + + + + 248 + 2803 + Records, Photographs and Films - envelope: no. 13, May 15, 1952. McKinley house, Billy at McKinley house – see other folder for pictures,1952 + + + + + + 248 + 2804 + Records, Photographs and Films - envelope: no. 14, June 2, 1952. Construction pictures of Melvin's house, outside walls,1952 + + + + + + 248 + 2805 + Records, Photographs and Films - envelope: no. 15, June 1, 1952. See other folder for pictures,1952 + + + + + + 248 + 2806 + Records, Photographs and Films - envelope: no. 16, June 3, 1952. Construction pictures of Melvin's house,1952 + + + + + + 248 + 2807 + Records, Photographs and Films - envelope: no. 17, May 4, 1952. Construction pictures of Melvin's house, outside walls1952 + + + + + + 248 + 2808 + Records, Photographs and Films - envelope: no. 18, June 7, 1952. Outside walls, interior partitions,1952 + + + + + + 248 + 2809 + Records, Photographs and Films - envelope: no. 19, June 8, 1952. Construction pictures of Melvin's house, outside walls, ceiling joist, top plates, partitions,1952 + + + + + + 248 + 2810 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2811 + Records, Photographs and Films - envelope: no. 20, May 4, 1952. Billy, see other folder for pictures,1952 + + + + + + 248 + 2812 + Records, Photographs and Films - envelope: no. 21, June 13, 1952. Construction pictures of Melvin's house, outside wall sheathing,1952 + + + + + + 248 + 2813 + Records, Photographs and Films - envelope: no. 22, June 16, 1952. Construction pictures of Melvin's house, outside wall sheathing, ceiling joist,1952 + + + + + + 248 + 2814 + Records, Photographs and Films - envelope: no. 23, June 19, 1952. McKinley house, see other folder for pictures,1952 + + + + + + 248 + 2815 + Records, Photographs and Films - envelope: no 24, June 29, 1952. Billy & McKinley house - #10 window, foundation,1952 + + + + + + 248 + 2816 + Records, Photographs and Films - envelope: no 25, July 1, 1952. Construction pictures of Melvin's house,1952 + + + + + + 248 + 2817 + Records, Photographs and Films - envelope: no. 26, July 2, 1952. Fence – McKinley house – see other folder for pictures,1952 + + + + + + 248 + 2818 + Records, Photographs and Films - envelope: no. 27, July 2, 1952. Construction pictures of Melvin's house, rafters & gable studding,1952 + + + + + + 248 + 2819 + Records, Photographs and Films - envelope: no. 28, July 4, 1952. Construction pictures of Melvin's house, roof sheathing,1952 + + + + + + 248 + 2820 + Records, Photographs and Films - envelope: no. 29, July 10, 1952. Construction pictures of Melvin's house & Porter's house, roof sheathing, gable sheathing,1952 + + + + + + 248 + 2821 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2822 + Records, Photographs and Films - envelope: no. 30, July 15, 1952. Construction pictures of Melvin's house, chimney construction,1952 + + + + + + 248 + 2823 + Records, Photographs and Films - envelope: no. 31, July 28, 1952. Construction pictures of Melvin's house, eace & gable,1952 + + + + + + 248 + 2824 + Records, Photographs and Films - envelope: no. 32, July 29, 1952. Construction pictures of Melvin's house, roofing,1952 + + + + + + 248 + 2825 + Records, Photographs and Films - envelope: no. 33, July 30, 1952. Construction pictures of Melvin's house, roofing,1952 + + + + + + 248 + 2826 + Records, Photographs and Films - envelope: no. 34, August 6, 1952. Construction pictures of Melvin's house, eave & gable, ginish, roofing,1952 + + + + + + 248 + 2827 + Records, Photographs and Films - envelope: no. 35, August 7, 1952. Construction pictures of Melvin's house, roofing, vent, sack roofing,1952 + + + + + + 248 + 2828 + Records, Photographs and Films - envelope: no. 36, August 19, 1952. Billy & McKinley house, see other folder for pictures,1952 + + + + + + 248 + 2829 + Records, Photographs and Films - envelope: no 37, August 20, 1952. Construction pictures of Melvin's house, ridge roofing, window frames,1952 + + + + + + 248 + 2830 + Records, Photographs and Films - envelope: no. 38, August 21, 1952. Construction pictures of Melvin's house, window frames,1952 + + + + + + 248 + 2831 + Records, Photographs and Films - envelope: no. 39, August 22, 1952. Construction pictures of Melvin's house, window frames, cellar stairs,1952 + + + + + + 248 + 2832 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2833 + Records, Photographs and Films - envelope: no. 40, August 27, 1952. Construction pictures of Melvin's house, outside wall finish,1952 + + + + + + 248 + 2834 + Records, Photographs and Films - envelope: no. 41, August 28, 1952. Construction pictures of Melvin's house, siding, window frames,1952 + + + + + + 248 + 2835 + Records, Photographs and Films - envelope: no. 43, September 4, 1952. Construction pictures of Melvin's house, outside wall finish – siding,1952 + + + + + 248 + 2836 + Records, Photographs and Films - envelope: no. 44, September 5, 1952. Construction pictures of Melvin's house, outside wall finish,1952 + + + + + + 248 + 2837 + Records, Photographs and Films - envelope: no. 45, September 9, 1952. Construction pictures of Melvin's house, outside wall finish, metal corners, louvers,1952 + + + + + + 248 + 2838 + Records, Photographs and Films - envelope: no. 46, September 10, 1952. Construction pictures of Melvin's house, blueprints, nail sketch,1952 + + + + + + 248 + 2839 + Records, Photographs and Films - envelope: no. 47, September 17, 1952. Construction pictures of Melvin's house, exterior door frames, louvers,1952 + + + + + + 248 + 2840 + Records, Photographs and Films - envelope: no. 48, September 8, 1952. Construction pictures of Melvin's house, siding, louvers,1952 + + + + + + 248 + 2841 + Records, Photographs and Films - envelope: no. 49, September 20, 1952. Construction pictures of Melvin's house, window frames, door frames, freize board, soffit,1952 + + + + + + 248 + 2842 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2843 + Records, Photographs and Films - envelope: no. 50, October 7, 1952. Construction pictures of Melvin's house, cellar stairs,1952 + + + + + + 248 + 2844 + Records, Photographs and Films - envelope: no. 52, February 28, 1953. Construction pictures of Melvin's house, door trim,1953 + + + + + + 248 + 2845 + Records, Photographs and Films - envelope: no. 51, February 24, 1953. Construction pictures of Melvin's house, window trim,1953 + + + + + + 248 + 2846 + Records, Photographs and Films - envelope: no. 52, 1953. Construction pictures of Ward's house, louvers,1953 + + + + + + 248 + 2847 + Records, Photographs and Films - envelope: no. 54, September 19, 1952. Construction pictures of Jack M's house, foundation hole, shovel work,1952 + + + + + + 248 + 2848 + Records, Photographs and Films - envelope: no. 55, September 26, 1952. Construction pictures of Jack M's house, forming footings,1952 + + + + + + 248 + 2849 + Records, Photographs and Films - envelope: no. 56, September 28, 1952. Construction pictures of Jack M's house, pouring footings, soil pipe,1952 + + + + + + 248 + 2850 + Records, Photographs and Films - envelope: no. 57, October 4, 1952. Construction pictures of Jack M's house, completed foundation,1952 + + + + + + 248 + 2851 + Records, Photographs and Films - envelope: no. 58, October 5, 1952. Construction pictures of Jack M's house, exterior walls, sheating,1952 + + + + + + 248 + 2852 + Records, Photographs and Films - envelope: no. 59, October 3, 1952. Construction pictures of Jack M's house, completed foundation, first load materials,1952 + + + + + + 248 + 2853 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2854 + Records, Photographs and Films - envelope: no. 60, October 11, 1952. Construction pictures of Jack M's house, building bee, applying sheathing, gable rafters, main rafters,1952 + + + + + + 248 + 2855 + Records, Photographs and Films - envelope: no. 61, October 19, 1952. Construction pictures of Jack M's house, completed exterior sheathing, roof sheathing, gable ridge, main ridge,1952 + + + + + + 248 + 2856 + Records, Photographs and Films - envelope: no. 62, October 25, 1952. Construction pictures of Jack M's house, applying valley flashing & roof shingles, window frames,1952 + + + + + + 248 + 2857 + Records, Photographs and Films - envelope: no. 63, October 30, 1952. Construction pictures of Jack M's house, exterior frame, etc. - exterior of house,1952 + + + + + + 248 + 2858 + Records, Photographs and Films - envelope: no. 64, 1953. Construction pictures of Jack M's house, corner blocking, cutting error, electrical boxes,1953 + + + + + + 248 + 2859 + Records, Photographs and Films - envelope: no. 65, February 28, 1953. Construction pictures of Jack M's house, light boxes,1953 + + + + + + 248 + 2860 + Records, Photographs and Films - envelope: no. 66, May 1953. Construction pictures of Bob Haggerty's house, foundation work,1953 + + + + + + 248 + 2861 + Records, Photographs and Films - envelope: no. 67, January 4, 1953. Construction pictures of Bob Haggerty's house, floor joist,1953 + + + + + + 248 + 2862 + Records, Photographs and Films - envelope: no. 68, June 25, 1953. Construction pictures of Bob Haggerty's house, outside walls,1953 + + + + + + 248 + 2863 + Records, Photographs and Films - envelope: no. 69. Construction pictures of Barnes house, vacant lot, building lines, dredging, sewer tile, forming footings,undated + + + + + + 248 + 2864 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2865 + Records, Photographs and Films - envelope: no. 70. Construction pictures of Barnes house, sandfill,undated + + + + + + 248 + 2866 + Records, Photographs and Films - envelope: no. 71. Construction pictures of Barnes house, leveling, footings, poured footings, drain tile & crushed stone,undated + + + + + + 248 + 2867 + Records, Photographs and Films - envelope: no. 72. Construction pictures of Barnes house, laying blocks,undated + + + + + + 248 + 2868 + Records, Photographs and Films - envelope: no. 73. Construction pictures of Barnes house, laying block, laying glass block, bull-dozing,undated + + + + + + 248 + 2869 + Records, Photographs and Films - envelope: no. 74. Construction pictures of Barnes house, squaring for foundation, marking for corner block, laying corner block,undated + + + + + + 248 + 2870 + Records, Photographs and Films - envelope: no. 75. Construction pictures of Barnes house, leveling instrument, footing form, plastering outside wall,undated + + + + + + 248 + 2871 + Records, Photographs and Films - envelope: no. 76. Construction pictures of Barnes house, plastering outside walls, crushed stone, tarring outside walls, basement window forming and making lintel, layer conductor tile,undated + + + + + + 248 + 2872 + Records, Photographs and Films - envelope: no. 77, July 7, 1954. Construction pictures of Barnes house, conductor pipe, caved in walls, bull-dozing, first load, finish foundation, wall plates, floor joist, sub floor, wall construction,1954 + + + + + + 248 + 2873 + Records, Photographs and Films - envelope: no. 78, July 14, 1954. Construction pictures of Barnes house, checking interior rough door openings, top plates, wall sheathing, ceiling joist,1954 + + + + + + 248 + 2874 + Records, Photographs and Films - envelope: no. 79, July 22, 1954. Construction pictures of Barnes house, rafters, roof sheathing,1954 + + + + + + 248 + 2875 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2876 + Records, Photographs and Films - envelope: no. 80, October. Construction pictures of Barnes house, plumbing – sewer tile,undated + + + + + + 248 + 2877 + Records, Photographs and Films - envelope: no. 81, December 12, 1954 (Sunday). Construction pictures of Barnes house, copper plumbing, plumbing panel opening, bathroom fixtures supports, corner-rite, exterior finish of house,1954 + + + + + + 248 + 2878 + Records, Photographs and Films - envelope: no. 82, September 3, 1954. Construction pictures of Barnes house – roofing,1954 + + + + + + 248 + 2879 + Records, Photographs and Films - envelope: no. 83, January 9, 1955. Construction pictures of Barnes house, flooring,1955 + + + + + + 248 + 2880 + Records, Photographs and Films - envelope: no. 84, January 15, 1955. Construction pictures of Barnes house, trimming large window,1955 + + + + + + 248 + 2881 + Records, Photographs and Films - envelope: no. 85, January 24, 1955. Construction pictures of Barnes house, constructing by-passing sliding door, kitchen window, bathroom plywood floor,1955 + + + + + + 248 + 2882 + Records, Photographs and Films - envelope: no. 86, February 7, 1955. Construction pictures of Barnes house, trimming door opening, applying lock & hinges, front entrance tile,1955 + + + + + + 248 + 2883 + Records, Photographs and Films - envelope: no. 87, February 9, 1955. Construction on Barnes house, kitchen plywood flooring,1955 + + + + + + 248 + 2884 + Records, Photographs and Films - envelope: no. 88, July 17, 1956. Catalina #2 – Rev. - BoV. - General Construction. Arthur Barry, Auburn, MI, order #560264,1956 + + + + + + 248 + 2885 + Records, Photographs and Films - envelope: no. 89, July 17, 1956. Denver #1 – General roof rafters. Robert C. Trombley, Ann Arbor, MI, order #560394,1956 + + + + + + 248 + 2886 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2887 + Records, Photographs and Films - envelope: no. 90, July 17, 1956. Ambassador, sub-flooring. Clifford Weingartz, Attica, MI, order #550610,1956 + + + + + + 248 + 2888 + Records, Photographs and Films - envelope: no. 91, July 22, 1956. Ambassador #1 – hip roof framing sequence construction. Clifford Weingartz, Attica, MI, order #550610, #247 Printing and developing,1956 + + + + + + 248 + 2889 + Records, Photographs and Films - envelope: no. 92, July 23, 1956. Ambassador #1 – hip roof framing sequence construction. Clifford Weingartz, Attica, MI, order #550610,1956 + + + + + + 248 + 2890 + Records, Photographs and Films - envelope: no. 93, July 24th & 26th, 1956. Ambassador #1 – hip roof sheathing and applying roof shingles. Clifford Weingartz, Attica, MI, order #55061,1956 + + + + + + 248 + 2891 + Records, Photographs and Films - envelope: no. 95, August 20, 1956. Friendship #1 – wall plates, girder sills. Frank Jaska, Flint, MI, order #560439,1956 + + + + + + 248 + 2892 + Records, Photographs and Films - envelope: no. 96, August 28, 1956. Friendship #1 – header spacer material, door & window part construction, rear wall construction. Frank Jaska, Flint, MI, order #560439,1956 + + + + + + 248 + 2893 + Records, Photographs and Films - envelope: no. 97, September 18, 1956. Friendship #1 rafter returns, porch rafters, gable sheathing. Frank Jaska, Flint, MI, order #560439,1956 + + + + + + 248 + 2894 + Records, Photographs and Films - envelope: no. 98, September 19, 1956. Brentwood #1 - #10 scenic window, check rail window 28 x 24, a mullion check rail 28 x 24. Stanley Barber, Essexville, MI, order #560279,1956 + + + + + + 248 + 2895 + Records, Photographs and Films - envelope: no. 99, September 24, 1956. Friendship #1 preparing gable for outside finish, and applying vertical boarding. Frank Jaska, Flint, MI, order #560439,1956 + + + + + + 248 + 2896 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2897 + Records, Photographs and Films - envelope: no. 100, September 25, 1956. Jaska – putting in louver, applying freize and roofing strip. Frank Jaska, Flint, MI, order #560439,1956 + + + + + + 248 + 2898 + Records, Photographs and Films - envelope: no. 101, September 26. facia, freeze, shingles, roofing, strip, felt. Frank Jaska, Flint, MI, order #560439,undated + + + + + + 248 + 2899 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2900 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2901 + Records, Photographs and Films - envelope: no. 104, October 2, 1956. Applying building paper & siding. Stanley Barber, Essexville, MI, order #560279,1956 + + + + + + 248 + 2902 + Records, Photographs and Films - envelope: no. 105, October 3, 1956. Applying siding. Stanley Barber, Essexville, MI, order #560279,1956 + + + + + + 248 + 2903 + Records, Photographs and Films - envelope: no. 106, April 13, 1959. Digging for foundation. Aladdin Clarkesdale, Essexville, MI, order #59036,1959 + + + + + + 248 + 2904 + Records, Photographs and Films - envelope: no. 107, April 14, 1959. Forming & pouring footings. Aladdin Clarkesdale, Essexville, MI, order #59036,1959 + + + + + + 248 + 2905 + Records, Photographs and Films - envelope: no. 108, April 15, 1959. Footing tile & stone. Aladdin Clarkesdale, Essexville, MI, order #59036,1959 + + + + + + 248 + 2906 + Records, Photographs and Films - envelope: no. 109, April 17, 1959. Laying black. Aladdin Clarkesdale, Essexville, MI, order #59036,1959 + + + + + + 248 + 2907 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2908 + Records, Photographs and Films - envelope: no. 110, April 20, 1959. Wall construction. Aladdin Clarkesdale, Essexville, MI, order #59036,1959 + + + + + + 248 + 2909 + Records, Photographs and Films - envelope: no. 112, April 22, 1959. tooling joints & plastering outside walls. Aladdin Clarkesdale, Essexville, MI, order #59036,1959 + + + + + + 248 + 2910 + Records, Photographs and Films - envelope: no. 111, April 21, 1959. wall construction & applying basement window units. Aladdin Clarkesdale, Essexville, MI, order #59036,1959 + + + + + + 248 + 2911 + Records, Photographs and Films - envelope: no. 113, April 23, 1959. unloading first load of material, sill material, floor joist, sub-floor, bridging, and nails. Aladdin Clarkesdale, Essexville, MI, order #59036,1959 + + + + + + 248 + 2912 + Records, Photographs and Films - envelope: no. 114, April 27, 1959. Tarring walls, second load delivered, wall plates, floor joist & sill applied. Aladdin Clarkesdale, Essexville, MI, order #59036,1959 + + + + + + 248 + 2913 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2914 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2915 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2916 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2917 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2918 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2919 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2920 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2921 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2922 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2923 + Records, Photographs and Films - envelope: no. 61147-1, 1961. Grenada #2. Wilford J. Dean, Route #3, Carsonville, MI,1961 + + + + + + 248 + 2924 + Records, Photographs and Films - envelope: no. 61147-2, 1961. Grenada #2. Wilford J. Dean, Route #3, Carsonville, MI,1961 + + + + + + 248 + 2925 + Records, Photographs and Films - envelope: no. 61147-3, 1961. Grenada #2. Wilford J. Dean, Route #3, Carsonville, MI,1961 + + + + + + 248 + 2926 + Records, Photographs and Films - envelope: no. 61147-4, 1961. Grenada #2. Wilford J. Dean, Route #3, Carsonville, MI,1961 + + + + + + 248 + 2927 + Records, Photographs and Films - envelope: no. 61147-5, 1961. Grenada #2. Wilford J. Dean, Route #3, Carsonville, MI,1961 + + + + + + 248 + 2928 + Records, Photographs and Films - envelope: no. 61147-6, 1961. Grenada #2. Wilford J. Dean, Route #3, Carsonville, MI,1961 + + + + + + 248 + 2929 + Records, Photographs and Films - envelope: no. 61147-7, 1961. Grenada #2. Wilford J. Dean, Route #3, Carsonville, MI,1961 + + + + + + 248 + 2930 + Records, Photographs and Films - envelope: no. 61147-8, 1961. Grenada #2. Wilford J. Dean, Route #3, Carsonville, MI,1961 + + + + + + 248 + 2931 + Records, Photographs and Films - envelope: no. 61147-9, 1961. Grenada #2. Wilford J. Dean, Route #3, Carsonville, MI,1961 + + + + + + 248 + 2932 + Records, Photographs and Films - envelope: no. 61147-10, 1961. Grenada #2. Wilford J. Dean, Route #3, Carsonville, MI,1961 + + + + + + 248 + 2933 + Records, Photographs and Films - envelope: no. 61147-11, 1961. Grenada #2. Wilford J. Dean, Route #3, Carsonville, MI,1961 + + + + + + 248 + 2934 + Records, Photographs and Films - envelope: no. 61147-12, 1961. Grenada #2. Wilford J. Dean, Route #3, Carsonville, MI,1961 + + + + + + 248 + 2935 + Records, Photographs and Films - envelope: no. 61147-13, 1961. Grenada #2. Wilford J. Dean, Route #3, Carsonville, MI,1961 + + + + + + 248 + 2936 + Records, Photographs and Films - envelope: no. 61147-14, 1961. Grenada #2. Wilford J. Dean, Route #3, Carsonville, MI,1961 + + + + + + 248 + 2937 + Records, Photographs and Films - envelope: no. 61147-15, 1961. Grenada #2. Wilford J. Dean, Route #3, Carsonville, MI,1961 + + + + + + 248 + 2938 + Records, Photographs and Films - envelope: no. 61147-16, 1961. Grenada #2. Wilford J. Dean, Route #3, Carsonville, MI,1961 + + + + + + 248 + 2939 + Records, Photographs and Films - envelope: no. 61147-17, 1961. Grenada #2. Wilford J. Dean, Route #3, Carsonville, MI,1961 + + + + + + 248 + 2940 + Records, Photographs and Films - envelope: no. 61147-18, 1961. Grenada #2. Wilford J. Dean, Route #3, Carsonville, MI,1961 + + + + + + 248 + 2941 + Records, Photographs and Films - envelope: no. 61147-19, 1961. Grenada #2. Wilford J. Dean, Route #3, Carsonville, MI,1961 + + + + + + 248 + 2942 + Records, Photographs and Films - envelope: no. 61147-20, 1961. Grenada #2. Wilford J. Dean, Route #3, Carsonville, MI,1961 + + + + + + 248 + 2943 + Records, Photographs and Films - envelope: no. 61147-21, 1961. Grenada #2. Wilford J. Dean, Route #3, Carsonville, MI,1961 + + + + + + 248 + 2944 + Records, Photographs and Films - envelope: no. 61147-22, 1961. Grenada #2. Wilford J. Dean, Route #3, Carsonville, MI,1961 + + + + + + 248 + 2945 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2946 + Records, Photographs and Films - envelope: no. 61151-1, 1961. Royton #3 B.V. Richard Giles, G. 4200 S. Lindon Rd., Flint 7, Michigan,1961 + + + + + + 248 + 2947 + Records, Photographs and Films - envelope: no. 61151-2, 1961. Royton #3 B.V. Richard Giles, G. 4200 S. Lindon Rd., Flint 7, Michigan,1961 + + + + + + 248 + 2948 + Records, Photographs and Films - envelope: no. 61151-3, 1961. Royton #3 B.V. Richard Giles, G. 4200 S. Lindon Rd., Flint 7, Michigan,1961 + + + + + + 248 + 2949 + Records, Photographs and Films - envelope: no. 61151-4, 1961. Royton #3 B.V. Richard Giles, G. 4200 S. Lindon Rd., Flint 7, Michigan,1961 + + + + + + 248 + 2950 + Records, Photographs and Films - envelope: no. 61151-5, 1961. Royton #3 B.V. Richard Giles, G. 4200 S. Lindon Rd., Flint 7, Michigan,1961 + + + + + + 248 + 2951 + Records, Photographs and Films - envelope: no. 61151-6, 1961. Royton #3 B.V. Richard Giles, G. 4200 S. Lindon Rd., Flint 7, Michigan,1961 + + + + + + 248 + 2952 + Records, Photographs and Films - envelope: no. 61151-7, 1961. Royton #3 B.V. Richard Giles, G. 4200 S. Lindon Rd., Flint 7, Michigan,1961 + + + + + + 248 + 2953 + Records, Photographs and Films - envelope: no. 61151-8, 1961. Royton #3 B.V. Richard Giles, G. 4200 S. Lindon Rd., Flint 7, Michigan,1961 + + + + + + 248 + 2954 + Records, Photographs and Films - envelope: no. 61151-9, 1961. Royton #3 B.V. Richard Giles, G. 4200 S. Lindon Rd., Flint 7, Michigan,1961 + + + + + + 248 + 2955 + Records, Photographs and Films - envelope: no. 61151-10, 1961. Royton #3 B.V. Richard Giles, G. 4200 S. Lindon Rd., Flint 7, Michigan,1961 + + + + + + 248 + 2956 + Records, Photographs and Films - envelope: no. 61151-11, 1961. Royton #3 B.V. Richard Giles, G. 4200 S. Lindon Rd., Flint 7, Michigan,1961 + + + + + + 248 + 2957 + Records, Photographs and Films - envelope: no. 61151-12, 1961. Royton #3 B.V. Richard Giles, G. 4200 S. Lindon Rd., Flint 7, Michigan,1961 + + + + + + 248 + 2958 + Records, Photographs and Films - envelope: no. 61151-13, 1961. Royton #3 B.V. Richard Giles, G. 4200 S. Lindon Rd., Flint 7, Michigan,1961 + + + + + + 248 + 2959 + Records, Photographs and Films - envelope: no. 61151-14, 1961. Royton #3 B.V. Richard Giles, G. 4200 S. Lindon Rd., Flint 7, Michigan,1961 + + + + + + 248 + 2960 + Records, Photographs and Films - envelope: no. 61151-15, 1961. Royton #3 B.V. Richard Giles, G. 4200 S. Lindon Rd., Flint 7, Michigan,1961 + + + + + + 248 + 2961 + Records, Photographs and Films - envelope: no. 61151-16, 1961. Royton #3 B.V. Richard Giles, G. 4200 S. Lindon Rd., Flint 7, Michigan,1961 + + + + + + 248 + 2962 + Records, Photographs and Films - envelope: no. 61151-17, 1961. Royton #3 B.V. Richard Giles, G. 4200 S. Lindon Rd., Flint 7, Michigan,1961 + + + + + + 248 + 2963 + Records, Photographs and Films - envelope: no. 61151-18, 1961. Royton #3 B.V. Richard Giles, G. 4200 S. Lindon Rd., Flint 7, Michigan,1961 + + + + + + 248 + 2964 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2965 + Records, Photographs and Films - envelope: no. 1, Nov. 1961. Experimental wall,1961 + + + + + + 248 + 2966 + Records, Photographs and Films - envelope: no. 2, Nov. 1961. Experimental wall,1961 + + + + + + 248 + 2967 + Records, Photographs and Films - envelope: no. 3, Nov. 1961. Experimental wall,1961 + + + + + + 248 + 2968 + Records, Photographs and Films - envelope: no. 4, Nov. 1961. Experimental wall,1961 + + + + + + 248 + 2969 + Records, Photographs and Films - envelope: no. 5, Nov. 1961. Experimental wall,1961 + + + + + + 248 + 2970 + Records, Photographs and Films - envelope: no. 6, Nov. 1961. Experimental wall,1961 + + + + + + 248 + 2971 + Records, Photographs and Films - envelope: no. 7, Nov. 1961. Experimental wall,1961 + + + + + + 248 + 2972 + Records, Photographs and Films - envelope: no. 8, Nov. 1961. Experimental wall,1961 + + + + + + 248 + 2973 + Records, Photographs and Films - envelope: no. 9, Nov. 1961. Experimental wall,1961 + + + + + + 248 + 2974 + Records, Photographs and Films - envelope: no. 10, Nov. 1961. Experimental wall,1961 + + + + + + 248 + 2975 + Records, Photographs and Films - envelope: no. 11, Nov. 1961. Experimental wall,1961 + + + + + + + 248 + 2976 + Records, Photographs and Films - envelope: no. 12, Nov. 1961. Experimental wall,1961 + + + + + + 248 + 2977 + Records, Photographs and Films - envelope: no. 13, Nov. 1961. Experimental wall,1961 + + + + + + 248 + 2978 + Records, Photographs and Films - envelope: no. 14, Nov. 1961. Experimental wall,1961 + + + + + + 248 + 2979 + Records, Photographs and Films - envelope: no. 15, Nov. 1961. Experimental wall,1961 + + + + + + 248 + 2980 + Records, Photographs and Films - envelope: no. 16, Nov.-Dec.1961. Experimental wall,1961 + + + + + + 248 + 2981 + Records, Photographs and Films - envelope: no. 17, Nov.-Dec.1961. Experimental wall,1961 + + + + + + 248 + 2982 + Records, Photographs and Films - envelope: no. 18, Nov.-Dec.1961. Experimental wall,1961 + + + + + + 248 + 2983 + Records, Photographs and Films - envelope: no. 18A (retakes), Nov. 1961. Experimental wall,1961 + + + + + + 248 + 2984 + Records, Photographs and Films - envelope: no. 18B, Nov. 1961. cat. doa(?) pictures,1961 + + + + + + 248 + 2985 + Records, Photographs and Films - envelope: no. 19, February 1962. bundled, fig. Number, material,1962 + + + + + + 248 + 2986 + Records, Photographs and Films - envelope: September 27, 1953. Aladdin Office A, main corner of Washington Ave. & 4th – shows Aladdin office,1953 + + + + + + 248 + 2987 + Records, Photographs and Films - envelope: December, 16, 1953. Aladdin personnel, H. J. (?), A. E. S., J. Pieul (?), taken in Aladdin office, 212 Davidsen Bldg.,1953 + + + + + + 248 + 2988 + Records, Photographs and Films - envelope: April 17, 1956 – Aladdin personnel. Jack Horton & McCloud,1956 + + + + + + 248 + 2989 + Records, Photographs and Films - envelope: no. H. E. 1, 1955. Picture of house taken by Howell, MI,1955 + + + + + + 248 + 2990 + Records, Photographs and Films - envelope: no. H. E. 2, August 7, 1956. Houses located at Davidson & Lapeer, MI, Gable design,1956 + + + + + + 248 + 2991 + Records, Photographs and Films - envelope: empty – tab “Picnics”,undated + + + + + + 248 + 2992 + Records, Photographs and Films - envelope: April 6, 1956. 1955 shipping map & interior of Room 305,1955-1956 + + + + + + 248 + 2993 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2994 + Records, Photographs and Films - envelope: June 25, 1953 – Aladdin picnic,1953 + + + + + + 248 + 2995 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2996 + Records, Photographs and Films - envelope: no. Barnes A, September 3, 1954. Aladdin picnic,1954 + + + + + + 248 + 2997 + Records, Photographs and Films - envelope: empty – tab “Xmas parties”,undated + + + + + + 248 + 2998 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 2999 + Records, Photographs and Films - envelope: Xmas party A, December 23, 1958. Aladdin Christmas Party (Billy there also),1958 + + + + + + 248 + 3000 + Records, Photographs and Films - envelope: Xmas Party H, December 21, 1953. Aladdin Christmas Party,1953 + + + + + + 248 + 3001 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 3002 + Records, Photographs and Films - envelope: “A” - December 22, 1954. Aladdin Christmas Party,1954 + + + + + + 248 + 3003 + Records, Photographs and Films - envelope: empty,undated + + + + + + 248 + 3004 + Records, Photographs and Films - December 22, 1955. Aladdin Christmas Party – La Chateau,1955 + + + + + + 248 + 3005 + Records, Photographs and Films - December 20, 1956. Aladdin Christmas Party at Hampton Hall,1956 + + + + + + 249 + 3006 + Records, Photographs and Films - Scrapbook – photographs of customer houses, 1947-1956,1947-1956 + + + + + + 250 + 3007 + Records, Photographs and Films (16mm Original films used to make videotapes in Box 251) - Film canister (metal): Scrap reel #3, 98-056 (9),undated + + + + + + 250 + 3008 + Records, Photographs and Films (16mm Original films used to make videotapes in Box 251) - Film canister (metal): Camp Kellogg, MI – Aladdin Buildings, 98-056, #3,undated + + + + + + 250 + 3009 + Records, Photographs and Films (16mm Original films used to make videotapes in Box 251) - Film canister (metal): Reel #2, Facia thru metal corners, 98-056,undated + + + + + + 250 + 3010 + Records, Photographs and Films (16mm Original films used to make videotapes in Box 251) - Film canister (metal): Scrap reel #1, 98-056,undated + + + + + + 250 + 3011 + Records, Photographs and Films (16mm Original films used to make videotapes in Box 251) - Film canister (metal): Reel #1, unloading thru roof sheathing (5), 98-056,undated + + + + + + 250 + 3012 + Records, Photographs and Films (16mm Original films used to make videotapes in Box 251) - Film canister (metal): Scrap reel #2 (8), 98-056,undated + + + + + + 250 + 3013 + Records, Photographs and Films (16mm Original films used to make videotapes in Box 251) - Film canister (metal): Parkaw (?) house - “not on video”,undated + + + + + + 250 + 3014 + Records, Photographs and Films (16mm Original films used to make videotapes in Box 251) - Film canister (metal): Parkaw (?) house - “not on video”,undated + + + + + + 250 + 3015 + Records, Photographs and Films (16mm Original films used to make videotapes in Box 251) - Film canister (metal): Aladdin Wonder house, 98-056,undated + + + + + + 250 + 3016 + Records, Photographs and Films (16mm Original films used to make videotapes in Box 251) - Film canister (metal): Aladdin house construction (6 reel), 1, 98-056,undated + + + + + + 250 + 3017 + Records, Photographs and Films (16mm Original films used to make videotapes in Box 251) - Film canister (metal): Alaska #2, 1952, Aladdin Houses - “not on video”,1952 + + + + + + 250 + 3018 + Records, Photographs and Films (16mm Original films used to make videotapes in Box 251) - Film canister (metal): Housing project, Sault Ste. Marie, MI, 4, 98-056,undated + + + + + + 250 + 3019 + Records, Photographs and Films (16mm Original films used to make videotapes in Box 251) - 16mm film in box: 10-5-1936, Refinery Erection, 1, 296-262,1936 + + + + + + 250 + 3020 + Records, Photographs and Films (16mm Original films used to make videotapes in Box 251) - 16mm film in box: Refinery Erection,undated + + + + + + 250 + 3021 + Records, Photographs and Films (16mm Original films used to make videotapes in Box 251) - 16mm film in box: Barmer House, 1,undated + + + + + + 250 + 3022 + Records, Photographs and Films (16mm Original films used to make videotapes in Box 251) - 16mm film in box: Barmer House, 3,undated + + + + + + 250 + 3023 + Records, Photographs and Films (16mm Original films used to make videotapes in Box 251) - 16mm film in box: Framing house, McKinley (?) - spots of white mold on cardboard box,undated + + + + + + 250 + 3024 + Records, Photographs and Films (16mm Original films used to make videotapes in Box 251) - 16mm film in box: Framing house, McKinley (?) - spots of white mold on cardboard box,undated + + + + + + 250 + 3025 + Records, Photographs and Films (16mm Original films used to make videotapes in Box 251) - 16mm film on box: McKinley – rafters 8/30/50,1950 + + + + + + 251 + 3026 + Records, Photographs and Films (Videotapes (6 VHS, 3 Beta) of 9 Reels of Construction Film. See summary of film contents by Matyn, Dec. 2005) - VHS cassette tape: Clarke Historical Library Collection, Reels 1-4 (Northeast Historic Film),undated + + + + + + 251 + 3027 + Records, Photographs and Films (Videotapes (6 VHS, 3 Beta) of 9 Reels of Construction Film. See summary of film contents by Matyn, Dec. 2005) - VHS cassette tape: Clarke Historical Library Collection, Reels 5-7 (Northeast Historic Film),undated + + + + + + 251 + 3028 + Records, Photographs and Films (Videotapes (6 VHS, 3 Beta) of 9 Reels of Construction Film. See summary of film contents by Matyn, Dec. 2005) - VHS cassette tape: Clarke Historical Library Collection, Reels 8-9 (Northeast Historic Film),undated + + + + + + 251 + 3029 + Records, Photographs and Films (Videotapes (6 VHS, 3 Beta) of 9 Reels of Construction Film. See summary of film contents by Matyn, Dec. 2005) - VHS cassette tape: Clarke Historical Library Collection, Reels 1-4 (Northeast Historic Film), with visible time lode,undated + + + + + + 251 + 3030 + Records, Photographs and Films (Videotapes (6 VHS, 3 Beta) of 9 Reels of Construction Film. See summary of film contents by Matyn, Dec. 2005) - VHS cassette tape: Clarke Historical Library Collection, Reels 5-7 (Northeast Historic Film), with visible time lode ,undated + + + + + + 251 + 3031 + Records, Photographs and Films (Videotapes (6 VHS, 3 Beta) of 9 Reels of Construction Film. See summary of film contents by Matyn, Dec. 2005) - VHS cassette tape: Clarke Historical Library Collection, Reels 8-9 (Northeast Historic Film), with visible time lode,undated + + + + + + 251 + 3032 + Records, Photographs and Films (Videotapes (6 VHS, 3 Beta) of 9 Reels of Construction Film. See summary of film contents by Matyn, Dec. 2005) - Tape: Clarke Historical Library Collection, Reels 1-4, SP,undated + + + + + + 251 + 3033 + Records, Photographs and Films (Videotapes (6 VHS, 3 Beta) of 9 Reels of Construction Film. See summary of film contents by Matyn, Dec. 2005) - Tape: Clarke Historical Library Collection, Reels 5-7, SP,undated + + + + + + 251 + 3034 + Records, Photographs and Films (Videotapes (6 VHS, 3 Beta) of 9 Reels of Construction Film. See summary of film contents by Matyn, Dec. 2005) - Tape: Clarke Historical Library Collection, Reels 8-9, SP,undated + + + + + + 251 + 3035 + Records, Photographs and Films (Videotapes (6 VHS, 3 Beta) of 9 Reels of Construction Film. See summary of film contents by Matyn, Dec. 2005) - Robert Schweitzer and Michael W.R. Davis, “Aladdin’s Magic Catalog,”Published in Michigan History, January/Febuary 1984 (3),1984 + + + + + + + + Aladdin Company Collection - Series #10, (Books and Magazines) + + + + 252 + 3036 + Records, Photographs and Films (Videotapes (6 VHS, 3 Beta) of 9 Reels of Construction Film. See summary of film contents by Matyn, Dec. 2005) - Competitors – Cataloges: Hodgson Portable Houses, 1918; Hodgson Houses, 1933; Hodgson Camp Houses, 1933; Bennett Homes, 1928,1918-1933 + + + + + + 252 + 3037 + Records, Photographs and Films (Videotapes (6 VHS, 3 Beta) of 9 Reels of Construction Film. See summary of film contents by Matyn, Dec. 2005) - National Lumber Manufacturers Association: National Small Homes demonstration: Exhibit 1937,1937 + + + + + + 252 + 3038 + Records, Photographs and Films (Videotapes (6 VHS, 3 Beta) of 9 Reels of Construction Film. See summary of film contents by Matyn, Dec. 2005) - “Trade Mark Cuts for Christmas Cards”, metal stamps, n.d. - in bottom of box,undated + + + + + + 252 + 3039 + Records, Photographs and Films (Videotapes (6 VHS, 3 Beta) of 9 Reels of Construction Film. See summary of film contents by Matyn, Dec. 2005) - Gunnison (U.S. Steel) Homes, 1954. “Handi-Hut” brochure – Walled Lake, MI: Morkey Brother Co., n.d.,1954, undated + + + + + + 252 + 3040 + Records, Photographs and Films (Videotapes (6 VHS, 3 Beta) of 9 Reels of Construction Film. See summary of film contents by Matyn, Dec. 2005) - “Precut Houses” Houses & Plans (A House Beautiful Publication), Jan. 1959, p. 121,1959 + + + + + + 252 + 3041 + Records, Photographs and Films (Videotapes (6 VHS, 3 Beta) of 9 Reels of Construction Film. See summary of film contents by Matyn, Dec. 2005) - Argosy. Aladdin article, pp. 6f., adv. P.31. July, 1972,1972 + + + + + + 252 + 3042 + Records, Photographs and Films (Videotapes (6 VHS, 3 Beta) of 9 Reels of Construction Film. See summary of film contents by Matyn, Dec. 2005) - Sears, Robebuck Millwork Catalog. n.d. (c. 1922),1922 + + + + + + 252 + 3043 + Records, Photographs and Films (Videotapes (6 VHS, 3 Beta) of 9 Reels of Construction Film. See summary of film contents by Matyn, Dec. 2005) - Low Cost Homes. Bay City, MI: Aladdin Co., n.d. Copyright by National Plan Service Inc., n.d.,undated + + + + + + 252 + 3044 + Records, Photographs and Films (Videotapes (6 VHS, 3 Beta) of 9 Reels of Construction Film. See summary of film contents by Matyn, Dec. 2005) - Commerce Magazine. Prefabricated housing. Feb. 1946,1946 + + + + + + 252 + 3045 + Records, Photographs and Films (Videotapes (6 VHS, 3 Beta) of 9 Reels of Construction Film. See summary of film contents by Matyn, Dec. 2005) - The Complete Book of Prefabs, Kits and Manufactured Houses. N.Y.: Faucett Columbine, 1981. Aladdin Co. on p. 140,1981 + + + + + + + + Aladdin Company Collection - MISCELLANEOUS PAPERS + + + + 253 + 3046 + Box of miscellaneous unsorted papers,undated + + + + + + 254 + 3047 + Box of miscellaneous unsorted papers,undated + + + + + + 255 + 3048 + Construction standardization book #3,undated + + + + + + 255 + 3049 + Construction standardization book #2,undated + + + + + + 255 + 3050 + Sales. Pricing. Millwork Pricing Basis, 1922. Sales Office Reports, 1922,1922 + + + + + + 255 + 3051 + Consecutive house order shipping list. 1954-1981,1954-1981 + + + + + + 255 + 3052 + Construction standardization book #1 “Checked complete 2-4-22”, keep “Bay City Office:”,1922 + + + + + + 255 + 3053 + Old Profit & Loss Statement Forms,undated + + + + + + 255 + 3054 + envelope: Annual Report of Unclaimed or Abandoned Property forms,undated + + + + + + 255 + 3055 + envelope: Garnishments,undated + + + + + + 255 + 3056 + envelope: old auto & truck data,undated + + + + + + 255 + 3057 + envelope: auto & truck data,undated + + + + + + 255 + 3058 + envelope: personal property statements – city assessor's reports,undated + + + + + + 255 + 3059 + envelope: unclaimed property reports to State of Minnesota,undated + + + + + + 255 + 3060 + envelope: city fire inspection 4/8/1968, A.D.T. 9/21/82,1968-1982 + + + + + + 255 + 3061 + envelope: Window order work sheets,undated + + + + + + 255 + 3062 + envelope: tax statement 1985 unpaid,1985 + + + + + + 255 + 3063 + Bank Book – Aladdin Co., 012-0016-1, general account, PNB (People's National Bank & Trust Co.),undated + + + + + + 255 + 3064 + Bank Book – Aladdin Co., 012-0017-9, payroll, PNB (People's National Bank & Trust Co.),undated + + + + + + 255 + 3065 + Bank Book – Aladdin Co., 012-0017-9, payroll, PNB (People's National Bank & Trust Co.) - now New Century Bank,undated + + + + + + 255 + 3066 + Bank Book – Aladdin Co., 012-0017-9, payroll, PNB (People's National Bank & Trust Co.) - now New Century Bank 10/5/79 – 7/23/85,1979-1985 + + + + + + 255 + 3067 + Packet of materials,undated + + + + + + 255 + 3067a + A.D.T. Central Station Service – U.S. House of Representatives committee on state taxation of interstate commerce - valuation, Aladdin capitol stock, May 1954,1954 + + + + + + 255 + 3067b + Consumers Power Co.,undated + + + + + + 255 + 3067c + I.B.M. automatic electric typewriter – maintenance agreement – canceled 8/24/78,1978 + + + + + + 255 + 3067d + Merillet Woodworking Co. contract,undated + + + + + + 255 + 3067e + Standard Oil Co.,undated + + + + + + 255 + 3067f + Stanley Alarm System Agreement,undated + + + + + + 255 + 3067g + Report: United States House of Representatives committee on judiciary on state taxation of interstate commerce,undated + + + + + + 255 + 3067h + SA Lambert's letter re. Agencies use tax,undated + + + + + + 255 + 3068 + Changes in assessments, personal property, exchange of accident identification info., Lumber/etc. resold by Jim White Lumber Sales in 1982, documents concerning Aladdin Mill property – 1985, Downtown Development Plan, accounting – hiring information for Theresa Roznowski, Aladdin vehicle tax info., 1985 sales/use/withholding tax returns,1982-1985, undated + + + + + + 255 + 3069 + Insurance information,undated + + + + + + 255 + 3070 + Aladdin Co. Special Account, 012-0018-7,undated + + + + + + 255 + 3071 + Bank Statements – payroll,undated + + + + + + 255 + 3072 + envelope: bank statements,undated + + + + + + 255 + 3073 + Misc. documents,undated + + + + + + 255 + 3074 + Bank book, 012-0016-1, general account, 1985-1988,1958-1988 + + + + + + 255 + 3075 + Selection of Federal Tax Deposit Coupon Books #1-4, “All used up for period 1/30/84 thru 6/25/85,1984-1985 + + + + + + 255 + 3076 + Payroll forms – payment checks,undated + + + + + + 255 + 3077 + Misc. tax documents, 1984-1986,1984-1986 + + + + + + 256 + 3078 + Box of miscellaneous unsorted papers,undated + + + + + + 257 + 3079 + Box of miscellaneous unsorted papers,undated + + + + + + 258 + 3080 + Box of miscellaneous unsorted papers,undated + + + + + + 259 + 3081 + Records, Box of miscellaneous unsorted papers,undated + + + + + +
    +
    diff --git a/sample-ead/clarke/Griffin.xml b/sample-ead/clarke/Griffin.xml new file mode 100644 index 0000000..5cb7ade --- /dev/null +++ b/sample-ead/clarke/Griffin.xml @@ -0,0 +1,138522 @@ + + + + + ehll--griffin + + + Senator Robert P. Griffin Papers, 1940‑1978, 1987, 1995, 1998-1999, 2000-2001, 2003, 2015, and undated (bulk dates 1957‑1978) + Marian Matyn and students, August 1997-1999, 2002-2003, 2008, 2015. +Reboxed and refoldered by Amber Innis, Susan Bogner, Dawn Drake, 2009-2010 + + + Clarke Historical Library + 1997-2010, 2015 + + + + Encoded finding aid created by Dana Fey, amended M. Matyn2010, 2015 + + The finding aid is written in English + + + + + + Clarke Historical LibraryCentral Michigan University + Finding aid forSenator Robert P. Griffin Papers Collection + Finding aid created by +Marian Matyn and students, August 1997-1999, 2002-2003, 2008, 2015. Reboxed and refoldered by Amber Innis, Susan Bogner, Dawn Drake, 2009-2010 + + + + + + Griffin, Robert P. (Robert Paul), 1923-2015. + + +Senator Robert P. Griffin Papers Collection + +1940‑1978, 1987, 1995, 1998-1999, 2000-2001, 2003, 2015, and undated (bulk dates 1957‑1978) + + + approximately 416 cubic feet in 423 containers + + +MSS. + + The material is in English + + +The collection documents the career of Senator Robert P. Griffin, who was a lawyer, U.S. Representative, U.S. Senator (including the role of Minority Whip), and Justice on the Michigan Supreme Court. It consists of administrative materials, correspondence, political materials; including constituent correspondence, Michigan-related, press-related, legislative-related and campaign materials; as well as personal materials. Collection contains paper materials as well as photographic, audio, video and other multi-media materials. + + + Clarke Historical Library, Central Michigan University + + + + + +

    Acc# 2023, 66171, 67502, 71217

    +
    + +

    Senator Robert P. Griffin Papers Collection is open for research.

    +
    + +

    Copyright has been transferred to the Clarke Historical Library.

    +
    + +

    Senator Robert P. Griffin Papers, 1940‑1978, 1987, 1995, 1998-1999, 2000-2001, 2003, 2015, and undated (bulk dates 1957‑1978), Folder #, Box #, Clarke Historical Library, Central Michigan University

    +
    +
    + +

    ROBERT P. GRIFFIN

    +

    U.S. Representative, 1956-1966

    +

    U.S. Senator from Michigan, 1966-1979

    +

    Justice of Michigan Supreme Court, 1986-1995

    +

    Robert P. Griffin was born on November 6, 1923, in Detroit. He attended public schools in Garden City and Dearborn (Mich.), and graduated from Central Michigan University (CMU) with an A.B. and a B.S. Griffin served as class president in 1947. He earned a J.D. from the University of Michigan (UM) in 1950, and served as the Law Review editor.

    +

    Griffin has been awarded numerous honorary degrees, including: a LL.D from CMU in 1963; a LL.D. from Eastern Michigan University in 1969; a LL.D. from Albion College in1970; a LL.D. from Western Michigan University in 1971; a LL.D. from Grand Valley State College, now University, in 1971; a LL.D. from the Detroit College of Business in 1972; a LL.D. from the UM in 1973; a J.C.D. from Rollins College (Fla.) in 1970; a L.H.D. from Hillsdale College in 1970; an Ed.D. from Northern Michigan University in 1970; and a D.Pub.Serv. from Detroit Institute of Technology in 1971.

    +

    On May 10, 1947, Griffin married Marjorie Jean Anderson of Ludington (Mich.). Marjorie was another CMU graduate (Class of 1944). Together they had four children: Paul Robert, Richard Allen, James Anderson, and Martha Jill (Mrs. William Adams).

    +

    During World War II, Griffin served in the U.S. Army in the 71st Infantry Division, 1943-1946. He spent fourteen months in the European theatre of war.

    +

    In 1950, Griffin was admitted to the Michigan Bar. He worked as a partner in the law firms of Murchie, Calcutt &amp; Griffin, 1951-1954, and in Williams, Thompson &amp; Griffin, 1954-1956.

    +

    Griffin served 22 years in the U.S. Congress. He was elected in November 1956 to the U.S. House of Representative from Michigan’s 9th District. He was re-elected in 1958, 1960, 1962, and 1964. In May 1966, Griffin was appointed as a U.S. Senator from Michigan. He was elected in November 1966 to the U.S. Senate for a full six-year term and re-elected in 1972. At various times in his political career, Senator Griffin served on Senate committees on the Judiciary, Foreign Relations, Finance, Labor and Human Resources, Rules and Administration, Governmental Affairs, and Commerce, Science, and Transportation. He also served as Minority Whip of the U.S. Senate, 1969-1977. In 1960 he was named as one of the ten outstanding young men in America by the U.S Jaycees.

    +

    From 1979 to 1986, Senator Griffin served as counsel to the law firm of Miller, Canfield, Paddock &amp; Stone. He also served on the World Board of Governors of the USO, 1982-1986; as a Visiting Fellow at the American Enterprise Institute, 1979-1986; and as first chairman and a member of the Board of Trustees of the Gerald R. Ford Foundation. He was also a member of the Association of Former Members of Congress, and a member of the Board of Directors, 1982-1986; a member of the American Judicature Society, and a member of the Board of Directors, 1981-1985; a member of the Board of Visitors of the UM Law School; a member of the Board of Governors of the Clarke Historical Library at CMU; a member of the State Bar of Michigan; a member of the Bar of the U.S. Supreme Court and the District of Columbia; a member of the American Bar Association; and a member of the Grand Traverse-Leelanau-Antrim Bar Association.

    +

    In November 1986, Senator Griffin was elected as a Justice of the Michigan Supreme Court. He served an eight-year term, which expired on January 1, 1995.

    +

    Senator Griffin’s career of public service which spanned five decades, and the huge contribution thereto on the part of his partner and wife, Marjorie J. Griffin, are remember and honored by their alma mater, CMU, through the establishment in 2000 of the Robert and Marjorie Griffin Endowed Chair in American Government. It’s purpose is to stimulate student interest and active participation in the political system and public service.

    +

    Senator Robert P. Griffin died on April 16, 2015. Several of his obituaries are included at the end of Box #423.

    +
    + +

    The collection, approximately 416 cubic feet in 423 containers, is organized into twelve series. Some series are organized into sub-series as appropriate.

    +
    + +

    While processing the various series, all duplicates, generic correspondence (Exs. May I have a photograph, a job, a flag, Washington, D.C. brochures?, For the information of all senators..., To whom it concerns..., etc.) and peripheral materials used for reference only, were discarded in large numbers from almost every series. Widely available publications, such as the Congressional Record and Michigan Manuals were similarly discarded from every series. Newsletters and related materials of other major politicians were discarded since they may be found in other archives. Information of a personal nature, such as resumes, intern files, and staff files were discarded because of personal privacy issues. Generic office, staff, and visitor materials, blank forms, and stationery were discarded. These materials were discarded because they do not document how or what Griffin or his staff did or thought and they are not used by historians and researchers. Out of the original 1061 boxes (approximately an equal number of cubic feet) 407 boxes (approximately 410 cubic feet, including one portrait) were retained. Processing time took approximately one year, with additional months spent compiling and writing the finding aid, and cataloging the collection. It is not the plan of the Clarke Historical Library to convert all the older videotapes which cannot be played or viewed on VCRs to current VHS videotape. This media is very fragile due to the various chemicals in its composition, which makes it difficult or impossible to convert the information, as well as an expensive process. The Clarke Historical Library plans to concentrate on converting Griffin's 1972 campaign ads to modern VHS videotapes as this was his closest race and will presumably be of greatest interest to future researchers.

    +

    The collection is organized into twelve series: Administrative, Campaign, Correspondence‑Enclosures, Correspondence‑Issues, Legislative/Voting, Personal Series, Political, Press, Whip Office, Books, Memorabilia, and Exhibit Materials.

    +

    The collection includes items such as notes, correspondence, documents, memos, manuals, work policies, procedures, announcements, newsletters, an oral history interview with Griffin, photographs, negatives, videotapes, cassettes, reel‑to‑reel tapes, speeches, statements, remarks, news releases, brochures, press kits, briefing books, schedules, campaign memorabilia, pins, headbands, bumper stickers, testimony, finances, campaign strategies, ads, studies, questionnaires, mailings, acts, bills, research, notebooks, analysis, and personal effects (ex: vest, matchbook, guest books, cookbooks, and Christmas cards).

    +

    Additions to the collection include Abe Fortas materials (Boxes 418-421), Senate Historical Office Negatives of Senator Griffin either by himself or with various people (Boxes 422-423), and Obituaries (Box 423).

    +
    + +

    + +

    + + Subjects: +Griffin, Robert P. (Robert Paul), 1923-. +Nixon, Richard M. (Richard Milhous), 1913-1994. +Griffin, Marjorie. +Ford, Gerald R., 1913-2006. +Fortas, Abe. +Michigan. Supreme Court. +Republican National Committee (U.S.). +United States. Supreme Court -- History. +Central Michigan University -- Alumni and alumnae. +Judges -- United States -- Selection and appointment -- History. +Watergate Affair, 1972-1974. +Landrum-Griffin Act. +Legislators -- United States -- Correspondence. +Legislators -- United States -- Archives. +Legislators -- Michigan. +Labor Unions -- Law and legislation -- United States -- History. +Great Lakes (North America) -- Conservation and restoration. +Education -- Michigan. +Labor laws and legislation -- United States -- Congresses. +Agriculture -- Michigan. +Polybrominated biphenyls --Toxicology -- Michigan. +Michigan -- Politics and government --1951-. + +
    + + + + Senator Robert P. Griffin Papers Collection - Series #1, Administrative Series (1.25 cubic feet - 1970‑1980, and undated) + + + + 1 + 1 + Records, Employment, 1970-1972, Press Releases,1970-1972 + + + + + + 1 + 2 + Records, Employment, 1970-1972, New Politics,1970-1972 + + + + + + 1 + 3 + Records, Employment, 1970-1972, Department of the Air Force, Selfridge AFB, cutback ,1970-1972 + + + + + + 1 + 4 + Records, Office Procedure, Filing System,undated + + + + + + 1 + 5 + Records, Office Procedure, Newsletter,undated + + + + + + 1 + 6 + Records, RPG Newsletter Materials,undated + + + + + + 1 + 7 + Records, Office Procedure, Staff Manual,undated + + + + + + 1 + 8 + Records, Writers,undated + + + + + + 1 + 9 + Records, Catherine Bente,undated + + + + + + 1 + 10 + Records, Office, Hramiec,undated + + + + + + 1 + 11 + Records, Budget, Press Department,undated + + + + + + 1 + 12 + Records, Column Usage,undated + + + + + + 1 + 13 + Records, Griffin, Good Letters,undated + + + + + + 1 + 14 + Records, Mailing Lists,undated + + + + + + 1 + 15 + Records, Photos,undated + + + + + + 1 + 16 + Records, Newsroom, Pending,undated + + + + + + 1 + 17 + Records, Auto,undated + + + + + + 1 + 18 + Records, Consumer Protection,undated + + + + + + 1 + 19 + Records, Focus: Hope,undated + + + + + + 1 + 20 + Records, Reserve Mining,undated + + + + + + 1 + 21 + Records, Food Stamps,undated + + + + + + 1 + 22 + Records, Soo Locks,undated + + + + + + 1 + 23 + Records, Winter Navigation,undated + + + + + + 1 + 24 + Records, HUD Evictions,undated + + + + + + 1 + 25 + Records, Newsletters,undated + + + + + + 1 + 26 + Records, Newsletters, Working Files and General,undated + + + + + + 1 + 27 + Records, Background,undated + + + + + + 1 + 28 + Records, SeaFarer,undated + + + + + + 1 + 29 + Records, Animal Fighting,undated + + + + + + 1 + 30 + Records, Railroads - 2 folders,undated + + + + + + 1 + 31 + Records, Railroads - 2 folders,undated + + + + + + 1 + 32 + Records, Foreign Affairs,undated + + + + + + 1 + 33 + Records, Automotive,undated + + + + + + 1 + 34 + Records, Ford Record,undated + + + + + + 1 + 35 + Records, Miscellaneous,undated + + + + + + 1 + 36 + Records, Economy,undated + + + + + + 1 + 37 + Records, NL-UVG File, 1974,75 - 2 folders,1974-1975 + + + + + + 1 + 38 + Records, NL-UVG File, 1974,75 - 2 folders,1974-1975 + + + + + + 1 + 39 + Records, Newsletter,1973 + + + + + + 1 + 40 + Records, Newsletter - General,undated + + + + + + 1 + 41 + Records, Griffin Candidacy,undated + + + + + + 1 + 42 + Records, Griffin Non-Candidacy, Announcement, 1977,1977 + + + + + + 1 + 43 + Records, Griffin Library (Central Michigan Univ.),undated + + + + + + 1 + 44 + Records, Issues Committee,1975 + + + + + + 1 + 45 + Records, Legislative Assistant Assignments,undated + + + + + + 1 + 46 + Records, Legislative Assistant Projects,1978 + + + + + + 1 + 47 + Records, Griffin Biographical, Gerald R. Ford Lecture,1979 + + + + + + 1 + 48 + Records, Griffin Oral History Interviews, 6/1980,1980 + + + + + + 1 + 49 + Records, Griffin Correspondence with Clarke Historical Library ,undated + + + + + + 1 + 50 + Records, Letter to Prof. Gerald Poor, CMU,1973 + + + + + + 1 + 51 + Records, Griffin Staff Manual,1968 + + + + + + 1 + 52 + Records, Orange Book,undated + + + + + + 1 + 53 + Records, Griffin Staff Manual,1972 + + + + + + 1 + 54 + Records, Legislative Record Notebook,undated + + + + + + 1 + 55 + Records, Memo on Staff and Relation to Campaign,undated + + + + + + 1 + 56 + Records, Office Procedure, Office Manual,1972 + + + + + + 1 + 57 + Records, Detroit V.A. Hospital,1975-1976 + + + + + + 1 + 58 + Records, Focus: Hope,1976 + + + + + + 1 + 59 + Records, Hoffa/Teamsters, Memos and Correspondence,undated + + + + + + 1 + 60 + Records, Patterson Lawsuit and Ethics Committee,undated + + + + + + 1 + 61 + Records, Complaint,undated + + + + + + 2 + 1 + Records, Washington Reports - Jan. 1974, Dec. 1974, Dec. 1975,1974-1975 + + + + + + 2 + 2 + Records, Accounting for the MIA=s, Jan. 27, 1977,1977 + + + + + + 2 + 3 + Records, Toward A Better Hotdog, Mar. 10, 1977,1977 + + + + + + 2 + 4 + Records, National Direct Student Loan Program, Mar. 21, 1977,1977 + + + + + + 2 + 5 + Records, Toxic Substances Injury Assistance Act, Apr. 7, 1977,1977 + + + + + + 2 + 6 + Records, Unemployment Compensation and School Employees, Apr. 7, 1977,1977 + + + + + + 2 + 7 + Records, Prisons: Weak Link in System, Apr. 25, 1977,1977 + + + + + + 2 + 8 + Records, Non-Nuclear Lance Missile, May 2, 1977,1977 + + + + + + 2 + 9 + Records, Consumer Information Catalog, June 15, 1977,1977 + + + + + + 2 + 10 + Records, Aiding Victims of Chemical Disaster, Mar. 7, 1978,1977 + + + + + + 2 + 11 + Records, Sports TV Blackouts, Mar. 13, 1978,1977 + + + + + + 2 + 12 + Records, Labor Law Reform, Aug. 16, 1978,1977 + + + + + + 2 + 13 + Records, Tuition Tax Credits, Aug. 23, 1978,1977 + + + + + + 2 + 14 + Records, Memoranda/From Staff,undated + + + + + + 2 + 15 + Records, Memoranda/ To Senator,undated + + + + + + 2 + 16 + Records, Publications,undated + + + + + + + Senator Robert P. Griffin Papers Collection - Series #2, Campaign Series, (13 cubic feet - 1956, 1964‑1966, 1968‑1972, 1977‑1978, and undated) + + + + 3 + 1 + Records, Literature,undated + + + + + + 3 + 2 + Records, Correspondence regarding Nominating Petitions,1964 + + + + + + 3 + 3 + Records, Humor,undated + + + + + + 3 + 4 + Records, Brochure,undated + + + + + + 3 + 5 + Records, Courthouse Tour,1965 + + + + + + 3 + 6 + Records, Manistee, Tuesday Committee,undated + + + + + + 3 + 7 + Records, Election 1956 - Brochure & Bumper Sticker,1956 + + + + + + 3 + 8 + Records, Campaign 1956,1956 + + + + + + 3 + 9 + Records, Campaign 1964, 9th District,1964 + + + + + + 3 + 10 + Records, Campaign 1964, Nominating Petitions,1964 + + + + + + 3 + 11 + Records, Campaign 1964, Materials Ordered,1964 + + + + + + 3 + 12 + Records, 9th District, Fairs, etc.,undated + + + + + + 3 + 13 + Records, Trailer Tour,1965 + + + + + + 3 + 14 + Records, Trailer Tour,1964 + + + + + + 3 + 15 + Records, Trailer Tour, Guest Book,undated + + + + + + 3 + 16 + Records, Field Reports,undated + + + + + + 3 + 17 + Records, Misc., Neighbors for Griffin, Griffin Club,undated + + + + + + 3 + 18 + Records, Milliken for Michigan Volunteer Manual,undated + + + + + + 3 + 19 + Records, Research,undated + + + + + + 3 + 20 + Records, Truth Squad,undated + + + + + + 3 + 21 + Records, Mail,undated + + + + + + 3 + 22 + Records, Press Releases,undated + + + + + + 3 + 23 + Records, Reactor Group,undated + + + + + + 3 + 24 + Records, Youth,undated + + + + + + 3 + 25 + Records, Special Voter Groups – Youth,undated + + + + + + 3 + 26 + Records, Field Staff,undated + + + + + + 3 + 27 + Records, Advertising,undated + + + + + + 3 + 28 + Records, Memos,undated + + + + + + 3 + 29 + Records, Job Outline – copies,undated + + + + + + 3 + 30 + Records, General Info.,undated + + + + + + 3 + 31 + Records, Carl Levin the Liberal,undated + + + + + + 3 + 32 + Records, Levin/Detroit Budgetary data,undated + + + + + + 3 + 33 + Records, Levin Literature (& primary source material),undated + + + + + + 3 + 34 + Records, Levin Reading File,undated + + + + + + 3 + 35 + Records, General research Info.,undated + + + + + + 3 + 36 + Records, Levin Research Support Documents,undated + + + + + + 3 + 37 + Records, Polish statue Dedication Aug. 4, 1978,1978 + + + + + + 3 + 38 + Records, Griffin Letter to Brezhnev, Nov. 4, 1978,1978 + + + + + + 3 + 39 + Records, Griffin Efforts in 1977,1977 + + + + + + 3 + 40 + Records, Responses,undated + + + + + + 3 + 41 + Records, Griffin Highlights,undated + + + + + + 3 + 42 + Records, Griffin Statement on Candidacy, Issues,undated + + + + + + 3 + 43 + Records, Griffin at Vought Plant, Photographs,undated + + + + + + 3 + 44 + Records, Little Rock Missionary Baptist Church Photographs,undated + + + + + + 3 + 45 + Records, Black Vote & RPG,undated + + + + + + 3 + 46 + Records, Griffin news releases, Senate Office,undated + + + + + + 3 + 47 + Records, Answers, RPG,1978 + + + + + + 3 + 48 + Records, Press Releases,undated + + + + + + 3 + 49 + Records, Roll Call Votes – Rationales,undated + + + + + + 3 + 50 + Records, Interview Requests/Primary,undated + + + + + + 3 + 51 + Records, Interview Requests – General election Campaign,undated + + + + + + 3 + 52 + Records, Primary Night,undated + + + + + + 3 + 53 + Records, Tax Limitation – Federal Style (Speech that wasn’t to UAW),undated + + + + + + 3 + 54 + Records, Unedited Remarks by RPG – Mich. Assn of Counties – Mackinac Island Sept. 4, 1978,1978 + + + + + + 3 + 55 + Records, Griffin – Levin Debate (Hidden Valley, Sept. 15, 1978),1978 + + + + + + 3 + 56 + Records, Radio Feed Material, Press Release material,undated + + + + + + 3 + 57 + Records, Griffin News Clippings,undated + + + + + + 3 + 58 + Records, Transcript – PANAX Edit. Board Meeting,undated + + + + + + 3 + 59 + Records, Griffin Statement- Re: Patterson Suit,undated + + + + + + 3 + 60 + Records, Griffin Bio,undated + + + + + + 3 + 61 + Records, Senate Staff Memorandum,undated + + + + + + 3 + 62 + Records, Decision to Run - & Decision to Retire,undated + + + + + + 3 + 63 + Records, RPG Overview – Positions,undated + + + + + + 3 + 64 + Records, Tax Limitation Amendment,undated + + + + + + 3 + 65 + Records, RPG – Answers to Questions,undated + + + + + + 3 + 66 + Records, Marge Griffin Bio,undated + + + + + + 3 + 67 + Records, Griffin Fiscal Worth, Staff Payroll,undated + + + + + + 3 + 68 + Records, Issues – Problem Areas,undated + + + + + + 3 + 69 + Records, Griffin Remarks – GOP Convention,undated + + + + + + 3 + 70 + Records, Tax Indexation,undated + + + + + + 3 + 71 + Records, Congressional Letter to RPG,undated + + + + + + 3 + 72 + Records, RPG Statement on Gun Control,undated + + + + + + 3 + 73 + Records, Griffin Statement on Middle East Peace Talks,undated + + + + + + 3 + 74 + Records, Kissinger Remarks re: RPG Sept. 14, 1978 news Conference (Standard Club),1978 + + + + + + 3 + 75 + Records, Griffin Remarks – Right to Life,undated + + + + + + 3 + 76 + Records, Romney Statement Re: RPG,undated + + + + + + 3 + 77 + Records, Griffin Statement on ERA Extension, Sept. 30, 1978,1978 + + + + + + 3 + 78 + Records, Griffin Letter to Levin, Oct. 9, 1978 re: 200-page Record,1978 + + + + + + 3 + 79 + Records, RPG release of 200-page Record,undated + + + + + + 3 + 80 + Records, Griffin Remarks – Municipal League, Mackinac Island,undated + + + + + + 3 + 81 + Records, Remarks re: Labor Law Reform, June 9, 1978,1978 + + + + + + 3 + 82 + Records, Scenario for TV Ad,undated + + + + + + 3 + 83 + Records, Letter to Hon. Cyrus R. Vance, June 6, 1978 re: fishing policy between U.S. and Canada.,1978 + + + + + + 4 + 1 + Records, Cassette, Vocational Center Dedication, May 12 - Welborne Dinner, Griffin and Reagan, May 12,1978 + + + + + + 4 + 2 + Records, Cassette, Ruppee on Camera Six, WLUC-TV, May 20,1978 + + + + + + 4 + 3 + Records, Cassette, Flushing Optimists Speech, Questions, May 19, Jackson 300 Club, May 25,1978 + + + + + + 4 + 4 + Records, Cassette, Petition Filing Press Conference, June 02, Livonia Legislative Breakfast, Questions, June 02,1978 + + + + + + 4 + 5 + Records, Cassette, Rotary Banquet, June 03, Dedication, June 04,1978 + + + + + + 4 + 6 + Records, Cassette, MSK Fundraiser, June 09 - Lake County Lincoln Day, June 10,1978 + + + + + + 4 + 7 + Records, Cassette, Ford Republican Women’s Club, June 12 - Rochester Women’s Club, June 15,1978 + + + + + + 4 + 8 + Records, Cassette, American Florists, July 28 - Flint Rotary, July 28,1978 + + + + + + 4 + 9 + Records, Briefing Notebook for Senator,undated + + + + + + 4 + 10 + Records, Correspondence,undated + + + + + + 4 + 11 + Records, Memos,undated + + + + + + 4 + 12 + Records, Campaign Advance Manual Notebook,undated + + + + + + 4 + 13 + Records, Press Interview Requests,undated + + + + + + 4 + 14 + Records, Past Schedules,undated + + + + + + 4 + 15 + Records, Downriver, Plant Gates,undated + + + + + + 4 + 16 + Records, Staff Roster,undated + + + + + + 4 + 17 + Records, Newsletters,undated + + + + + + 4 + 18 + Records, Scheduling Possibilities,undated + + + + + + 4 + 19 + Records, Wires,undated + + + + + + 4 + 20 + Records, Newsletters,undated + + + + + + 4 + 21 + Records, GOP State Convention Remarks,undated + + + + + + 4 + 22 + Records, Press/News Releases,undated + + + + + + 4 + 23 + Records, Photos - Detroit,undated + + + + + + 4 + 24 + Records, Miscellaneous Statements,undated + + + + + + 4 + 25 + Records, Negatives & Photographs,undated + + + + + + 4 + 26 + Records, Radio Feeds,undated + + + + + + 4 + 27 + Records, Question of the Day,undated + + + + + + 4 + 28 + Records, Draft of Beige Book,undated + + + + + + 4 + 29 + Records, Notes on Blue Book Griffin-Levin Debate Transcript,undated + + + + + + 4 + 30 + Records, Things That Kept RPG Busy in 1977,1977 + + + + + + 4 + 31 + Records, Endorsements,undated + + + + + + 4 + 32 + Records, Nuclear Waste,undated + + + + + + 5 + 1 + Records, Campaign Staff Manual,1972 + + + + + + 5 + 2 + Records, Griffin Club Leadership Prospects,1972 + + + + + + 5 + 3 + Records, Field Activities,undated + + + + + + 5 + 4 + Records, Griffin Club,1978 + + + + + + 5 + 5 + Records, Field Reports,undated + + + + + + 5 + 6 + Records, Field Manual,undated + + + + + + 5 + 7 + Records, Memos,undated + + + + + + 5 + 8 + Records, Youth Manuals,undated + + + + + + 5 + 9 + Records, Newspaper Clippings,undated + + + + + + 5 + 10 + Records, Political File – Field,undated + + + + + + 5 + 11 + Records, Field Manual, Rough Draft,undated + + + + + + 5 + 12 + Records, Petition Drive,undated + + + + + + 5 + 13 + Records, Petition Evaluation,undated + + + + + + 5 + 14 + Records, Issues,undated + + + + + + 5 + 15 + Records, Charlie Creamer,undated + + + + + + 5 + 16 + Records, Carmen Dickens,undated + + + + + + 5 + 17 + Records, Greg Palmer,undated + + + + + + 5 + 18 + Records, Sports Alliance for Griffin,undated + + + + + + 5 + 19 + Records, Youth for Griffin,undated + + + + + + 5 + 20 + Records, Youth Division, Spence Abraham,undated + + + + + + 5 + 21 + Records, Black Community,undated + + + + + + 5 + 22 + Records, Campaign Inventory,undated + + + + + + 5 + 23 + Records, Campaign Memos,undated + + + + + + 5 + 24 + Records, Doctors for Griffin,undated + + + + + + 5 + 25 + Records, Election Might Court Action,undated + + + + + + 5 + 26 + Records, Election Statistics,undated + + + + + + 5 + 27 + Records, Griffin Girls,undated + + + + + + 5 + 28 + Records, Griffin Club,undated + + + + + + 5 + 29 + Records, Campaign Organization Meeting,undated + + + + + + 5 + 30 + Records, Democrats for Griffin,undated + + + + + + 5 + 31 + Records, Campaign Materials,undated + + + + + + 5 + 32 + Records, Miscellaneous Brochures, Stationery, Pins, Etc.,undated + + + + + + 5 + 33 + Records, Griffin Club Finances,undated + + + + + + 5 + 34 + Records, Griffin Club Membership Drive Memo,undated + + + + + + 5 + 35 + Records, Griffin Club Report Corrections,undated + + + + + + 5 + 36 + Records, The Griffin Emblem,undated + + + + + + 5 + 37 + Records, Griffin Pins, American Flag, Prices,undated + + + + + + 5 + 38 + Records, Frank Kelley Debates,undated + + + + + + 5 + 39 + Records, Nationality Groups for Griffin,undated + + + + + + 5 + 40 + Records, Pancake Breakfast,undated + + + + + + 5 + 41 + Records, Post Election Analysis,undated + + + + + + 5 + 42 + Records, Scheduling Memos,undated + + + + + + 6 + 1 + Records, Campaign Brochures & Bumper Stickers,undated + + + + + + 6 + 2 + Records, Campaign Posters & Newspaper Articles,undated + + + + + + 6 + 3 + Records, Telethons,undated + + + + + + 6 + 4 + Records, Cobo Hall Speech, UAW, CAP, Sept. 06, 1972,1972 + + + + + + 6 + 5 + Records, Announcement Speech, 1972,1972 + + + + + + 6 + 6 + Records, Senator Griffin,undated + + + + + + 6 + 7 + Records, Speeches,undated + + + + + + 6 + 8 + Records, White House, Remarks of the President,undated + + + + + + 6 + 9 + Records, Voting Record,undated + + + + + + 6 + 10 + Records, Reports on the Polls,undated + + + + + + 6 + 11 + Records, Statements,undated + + + + + + 6 + 12 + Records, Political Advertising,undated + + + + + + 6 + 13 + Records, News Releases,undated + + + + + + 6 + 14 + Records, Griffin Newsletter,undated + + + + + + 6 + 15 + Records, No Fault Insurance,undated + + + + + + 6 + 16 + Records, Organization - Campaign, 1972,1972 + + + + + + 6 + 17 + Records, Griffin Bumper Stickers,undated + + + + + + 6 + 18 + Records, Brochure,undated + + + + + + 6 + 19 + Records, Are You Going to Vote for Higher Taxes on Nov. 7,undated + + + + + + 6 + 20 + Records, Cookbook,undated + + + + + + 6 + 21 + Records, Football Card Schedule,undated + + + + + + 6 + 22 + Records, Senator Griffin: A Leader, Carl Levin: A Misleader,undated + + + + + + 6 + 23 + Records, Michigan Needs a Good, Hones, Hard-Working Senator Insert,undated + + + + + + 6 + 24 + Records, Indian Headbands,undated + + + + + + 6 + 25 + Records, Griffin Newsletters,undated + + + + + + 6 + 26 + Records, Senator Bob Griffin on the Environment,undated + + + + + + 6 + 27 + Records, Poster of RPG,undated + + + + + + 6 + 28 + Records, Campaign Pins,undated + + + + + + 6 + 29 + Records, Nationality Groups,undated + + + + + + 6 + 30 + Records, Accepted RPG Language,undated + + + + + + 6 + 31 + Records, Nationalities,undated + + + + + + 6 + 32 + Records, Republican State Nationalities Council,undated + + + + + + 6 + 33 + Records, Memos,undated + + + + + + 6 + 34 + Records, Poll Questions – Oakland,undated + + + + + + 6 + 35 + Records, Poll Questions – Grand Rapids,undated + + + + + + 6 + 36 + Records, Field Representative - Charlie, Carmen,undated + + + + + + 6 + 37 + Records, Sample Poll Questionnaire,undated + + + + + + 6 + 38 + Records, Miscellaneous,undated + + + + + + 6 + 39 + Records, Elections Statistics (1 of 2),undated + + + + + + 6 + 40 + Records, Elections Statistics (2 of 2),undated + + + + + + 6 + 41 + Records, Poll Questionnaires,undated + + + + + + 6 + 42 + Records, Newsletters,undated + + + + + + 6 + 43 + Records, Griffin Club Strategy,undated + + + + + + 6 + 44 + Records, Opponents, Mike Blumenthal, Newspaper Clippings,undated + + + + + + 7 + 1 + Records, Robert P. Griffin, Newspaper Clippings (1 of 2),undated + + + + + + 7 + 2 + Records, Robert P. Griffin, Newspaper Clippings (2 of 2),undated + + + + + + 7 + 3 + Records, Griffin Busing Interview, Oct. 26, 1972 - 2" videos (3),1972 + + + + + + 7 + 4 + Records, Griffin Birthday Party, Nov. 05, 1972 - 2" video,1972 + + + + + + 7 + 5 + Records, Griffin Dinner, Raleigh House, Nov. 6, 1971 - 2" reels (4),1971 + + + + + + 7 + 6 + Records, Quiz Flint - 2A video,undated + + + + + + 7 + 7 + Records, Constitutional Amendment – 2” reel,undated + + + + + + 7 + 8 + Records, Muscle – 2” reel,undated + + + + + + 7 + 9 + Records, The Senator vs. The Shadow – 2” reel,undated + + + + + + 7 + 10 + Records, Quiz Saginaw – 2” reel,undated + + + + + + 7 + 11 + Records, Democratic Mayors – 2” reel,undated + + + + + + 7 + 12 + Records, Muscle – 2” reel,undated + + + + + + 7 + 13 + Records, Jim Griffin Jingles – 2” reel,undated + + + + + + 7 + 14 + Records, Quiz Detroit and Muscle – 2” reel,undated + + + + + + 7 + 15 + Records, Muscle – 2” reel,undated + + + + + + 7 + 16 + Records, Constitutional Amendment – 2” reel,undated + + + + + + 7 + 17 + Records, Constitutional Amendment – 2” reel,undated + + + + + + 7 + 18 + Records, Romney-Ford – 2” reel,undated + + + + + + 7 + 19 + Records, Democratic Mayors – 2” reel,undated + + + + + + 7 + 20 + Records, Quiz Detroit & Muscle – 2” reel,undated + + + + + + 8 + 1 + Records, Advertising,undated + + + + + + 8 + 2 + Records, Budget,undated + + + + + + 8 + 3 + Records, Campaign Organization,undated + + + + + + 8 + 4 + Records, Election Regulations,undated + + + + + + 8 + 5 + Records, Filing Materials Including Receipts,undated + + + + + + 8 + 6 + Records, Finance,undated + + + + + + 8 + 7 + Records, Ford Letter,undated + + + + + + 8 + 8 + Records, Ford Schedule,undated + + + + + + 8 + 9 + Records, Fund Raising Contacts,undated + + + + + + 8 + 10 + Records, Kissinger,undated + + + + + + 8 + 11 + Records, Mailings, Senatorial,undated + + + + + + 8 + 12 + Records, Media,undated + + + + + + 8 + 13 + Records, Patterson Suit,undated + + + + + + 8 + 14 + Records, Political Action Committees,undated + + + + + + 8 + 15 + Records, Political,undated + + + + + + 8 + 16 + Records, Campaign, 1972,1972 + + + + + + 8 + 17 + Records, RPG - Strategy Committee,undated + + + + + + 8 + 18 + Records, Staff, Volunteer Organization,undated + + + + + + 8 + 19 + Records, Upper Peninsula, ELF, Etc.,undated + + + + + + 8 + 20 + Records, Miscellaneous,undated + + + + + + 8 + 21 + Records, Miscellaneous – Office,undated + + + + + + 8 + 22 + Records, Senate Chamber - 2" video,undated + + + + + + 8 + 23 + Records, Parking Lot - 2" video,undated + + + + + + 8 + 24 + Records, Busing Interview - 2" video,undated + + + + + + 8 + 25 + Records, Senator Griffin - 2" video,undated + + + + + + 9 + 1 + Records, Economic Club of Detroit Debate, Oct 17, 1966,1966 + + + + + + 9 + 2 + Records, Campaign Predictions Made by Campaign Staff,undated + + + + + + 9 + 3 + Records, Copies of Certificate of Election,undated + + + + + + 9 + 4 + Records, Campaign,undated + + + + + + 9 + 5 + Records, Campaign Organization,undated + + + + + + 9 + 6 + Records, Campaign Correspondence,undated + + + + + + 9 + 7 + Records, Senatorial Study of Issues, Candidates & Parties,undated + + + + + + 9 + 8 + Records, House Leadership – 89th Congress 1965,1965 + + + + + + 9 + 9 + Records, Republican Committee Staffing,undated + + + + + + 9 + 10 + Records, Republican Congressional Committee,undated + + + + + + 9 + 11 + Records, RG Records – 1966,1966 + + + + + + 9 + 12 + Records, Campaign Brochures,undated + + + + + + 9 + 13 + Records, Bumper Stickers, etc.,undated + + + + + + 9 + 14 + Records, Campaign Banner,undated + + + + + + 9 + 15 + Records, Baker, Dole, Hayakawa, and Goldwater Letter,undated + + + + + + 9 + 16 + Records, William B. Banta Letter,undated + + + + + + 9 + 17 + Records, Brochures, Bumper Stickers, etc.,undated + + + + + + 9 + 18 + Records, College Brochure,undated + + + + + + 9 + 19 + Records, Curtis, Danforth, Dole, Hansen, etc. Letter to PACs,undated + + + + + + 9 + 20 + Records, Jerry Ford Letter,undated + + + + + + 9 + 21 + Records, Jake Garn Letter,undated + + + + + + 9 + 22 + Records, Campaign 1978,1978 + + + + + + 9 + 23 + Records, Mailing #1 - Right to Life,undated + + + + + + 9 + 24 + Records, Mailing #2 – Sportsmen,undated + + + + + + 9 + 25 + Records, Mailing #3 - Undecided Voters,undated + + + + + + 9 + 26 + Records, Mailing #4 – Farmers,undated + + + + + + 9 + 27 + Records, Mailing #6 - Eastern Europeans,undated + + + + + + 9 + 28 + Records, Mailing #7 - Arab Americans,undated + + + + + + 9 + 29 + Records, Mailing #8 - Catholic Priests,undated + + + + + + 9 + 30 + Records, Mailing #9 – Professionals,undated + + + + + + 9 + 31 + Records, Mailing #10 - Health Care Professionals,undated + + + + + + 10 + 1 + Records, Michigan Statewide Study: Vol.I, Analysis,undated + + + + + + 10 + 2 + Records, Statewide Study: July, Analysis,undated + + + + + + 10 + 3 + Records, Statewide Study: July, Data,undated + + + + + + 10 + 4 + Records, Statewide Study: September, Analysis,undated + + + + + + 10 + 5 + Records, Statewide Study: September, Data,undated + + + + + + 11 + 1 + Records, Joint Appearance: RPG and Frank Kelly, June 16, 1972,1972 + + + + + + 11 + 2 + Records, Washington Report, June 1972,1972 + + + + + + 11 + 3 + Records, Reprint, Griffin Praises President of UAW,undated + + + + + + 11 + 4 + Records, The Very Least You Should Know About Sen. Bob Griffin,undated + + + + + + 11 + 5 + Records, Reprint, Griffin Perennial Winning Underdog,undated + + + + + + 11 + 6 + Records, Reprint, Leading Fortas Foe, Sept. 28, 1968,1968 + + + + + + 11 + 7 + Records, Bob Griffin Reports to Michigan, July 1971,1971 + + + + + + 11 + 8 + Records, The Very Least You Should Know About Frank Kelley,undated + + + + + + 11 + 9 + Records, Reprint, A Mild-Mannered Man of Steel, March 7, 1971,1971 + + + + + + 11 + 10 + Records, Reprint, Griffin’s Goliaths Fall Hard, Oct. 3, 1968,1968 + + + + + + 11 + 11 + Records, Reprint, Busing Foes to Shoot to End Debate, Oct 1972,1972 + + + + + + 11 + 12 + Records, 3-Fold, 1972,1972 + + + + + + 11 + 13 + Records, Reprint, Griffin Takes Case to Labor, Sept. 14, 1972,1972 + + + + + + 11 + 14 + Records, Griffin Letter and 1/2 Vote Brochure,undated + + + + + + 11 + 15 + Records, Reprint, Weekend Trips Back Home Keep Senators Busy, 1970,1970 + + + + + + 11 + 16 + Records, Reprint, Griffin Readies Strong Speech Restrict Trade, 1970,1970 + + + + + + 11 + 17 + Records, 6 Facts the Union Didn’t Tell You About Sen. Bob Griffin,undated + + + + + + 11 + 18 + Records, Washington Report, Dec. 1971,1971 + + + + + + 11 + 19 + Records, Michigan Earth Beat, Griffin-Kelley-Ruppe, Re: Taconite,undated + + + + + + 11 + 20 + Records, Reprint, What is Your Position on Busing, Open Letter,undated + + + + + + 11 + 21 + Records, Reprint, Griffin’s Champion at Doing the Impossible, 1968,1968 + + + + + + 11 + 22 + Records, Griffin, The Record With No Fancy Dressing,undated + + + + + + 11 + 23 + Records, Reprint, Ethics Get Nudge from Griffin, May 1969,1969 + + + + + + 11 + 24 + Records, Reprint, Sen. Griffin and the New Youth Pitch, Nov. 1969,1969 + + + + + + 11 + 25 + Records, Michigan Statewide Study 1978, Analysis,1978 + + + + + + 11 + 26 + Records, Michigan Statewide Study May, Analysis,undated + + + + + + 11 + 27 + Records, Michigan Statewide Study May, Data,undated + + + + + + 11 + 28 + Records, Michigan Statewide Study August, Data - 2 folders,undated + + + + + + 11 + 29 + Records, Michigan Statewide Study August, Data - 2 folders,undated + + + + + + 11 + 30 + Records, Results of 1972 Senatorial Election by Precinct,1972 + + + + + + 12 + 1 + Records, Campaign Ads: Tape, Griffin Jingle with Voice Over,1972 + + + + + + 12 + 2 + Records, Campaign Ads: Tape, Constitutional Amendment,1972 + + + + + + 12 + 3 + Records, Campaign Ads: Tape, Quiz Detroit and Muscle,1972 + + + + + + 12 + 4 + Records, Campaign Ads: Tape, Bob Griffin Jingle,1972 + + + + + + 12 + 5 + Records, Campaign Ads: Tape, Constitutional Amendment,1972 + + + + + + 12 + 6 + Records, Levin Charges Briefing Book,undated + + + + + + 12 + 7 + Records, RPG’s and Levin’s Positions on Key Issues,undated + + + + + + 12 + 8 + Records, Griffin-Riegle Vote Comparison: Tape, Muscle - 2 Tapes,undated + + + + + + 12 + 9 + Records, Griffin-Riegle Vote Comparison: Tape, Workingman Interview,undated + + + + + + 12 + 10 + Records, Campaign Organization,undated + + + + + + 13 + 1 + Records, Video Cassette: Back-Up Dub - Griffin 6:00,1978 + + + + + + 13 + 2 + Records, Video Cassette: 9 Spots - Stanley, Fox, Inc. 9-25-78,1978 + + + + + + 13 + 3 + Records, Video Cassette: Edited Stanley, Fox, Inc. 1:00, 2:30,1978 + + + + + + 13 + 4 + Records, Video Cassette: Griffin 6:00 Edited Master,1978 + + + + + + 13 + 5 + Records, Video Cassette: Mrs. Griffin :30, :60 - 7/20/78,1978 + + + + + + 13 + 6 + Records, Video Cassette: Ford on Griffin 1-GRI-8160 :60, 2-GRI-8130 : 30 - 6/27/78,1978 + + + + + + 13 + 7 + Records, Video Cassette: Levin for Senate, 2 video cassettes,1978 + + + + + + 13 + 8 + Records, Video Cassette: Stanley, Fox/ Senator Griffin,1978 + + + + + + 13 + 9 + Records, Video Cassette: Stanley, Fox/ Senator Griffin - Mrs. Griffin, GRI-8260 Rev. 60 Sec,1978 + + + + + + 13 + 10 + Records, Video Cassette: Stanley, Fox/ Senator Griffin - Mrs. Griffin, GRI-8230 Rev. 30 Sec.,1978 + + + + + + 13 + 11 + Records, Video Cassette: Stanley, Fox/ Senator Griffin - Ford, GRI-8160 Rev. 60 Sec.,1978 + + + + + + 13 + 12 + Records, Video Cassette: Stanley, Fox/ Senator Griffin - Ford, GRI-8130 30 Sec.,1978 + + + + + + 13 + 13 + Records, Video Cassette: WDIV - Griffin Free Air Time Tapes: Part 1,1978 + + + + + + 13 + 14 + Records, Video Cassette: WDIV - Griffin Free Air Time: RPG Meets Students on Steps Committee Hearings, Part 2,1978 + + + + + + 13 + 15 + Records, Video Cassette: WDIV - Griffin Free Air Time: RPG With Goldwater, Byrd, Dole, Baker, Laxalt, etc., Part 3,1978 + + + + + + 13 + 16 + Records, Video Cassette: WDIV - Griffin Free Air Time: Staffing Meeting, Part 4,1978 + + + + + + 13 + 17 + Records, Video Cassette: WDIV - Griffin Free Air Time: Closing Pitch,,1978 + + + + + + 13 + 18 + Records, Video Cassette: Griffin Montage 1:30, 2" video tape,1978 + + + + + + 13 + 19 + Records, Video Cassette: Senator Griffin Tag - 1/2" reel to reel tape,1978 + + + + + + 14 + 1 + Records, Video Cassette: Griffin Telethon, Detroit, Nov 01, 1978,1978 + + + + + + 14 + 2 + Records, Video Cassette: Griffin Telethon, Lansing, Oct. 25, 1978,1978 + + + + + + 14 + 3 + Records, Video Cassette: Griffin for U.S. Senate, Inflation and Challenge,undated + + + + + + 14 + 4 + Records, Video Cassette: Griffin Telethon, Kalamazoo, Oct. 12, 1978,1978 + + + + + + 14 + 5 + Records, Video Cassette: Griffin for U.S. Senate, Communications, Inflation, etc.,undated + + + + + + 14 + 6 + Records, Video Cassette: Griffin for U.S. Senate,undated + + + + + + 14 + 7 + Records, Video Cassette: Griffin Telethon Introduction,undated + + + + + + 14 + 8 + Records, Video Cassette: Henry Kissinger Press Conference, Detroit 9/17/78,1978 + + + + + + 14 + 9 + Records, Video Cassette: Griffin for U.S. Senate, Fired Up, Zinger, Children's Press,undated + + + + + + 14 + 10 + Records, Video Cassette: Griffin Telethon, Flint, Oct. 19. 1978,1978 + + + + + + 14 + 11 + Records, Video Cassette: Griffin Telethon, Detroit, Oct. 18, 1978,1978 + + + + + + 14 + 12 + Records, Video Cassette: Mrs. Griffin, Ford,undated + + + + + + 14 + 13 + Records, 1 Box Slides - Griffin vs. Levin,undated + + + + + + 14 + 14 + Records, Audio Cassette: Levin Ad,undated + + + + + + 14 + 15 + Records, Audio Cassette: Levin Radio,undated + + + + + + 14 + 16 + Records, Audio Cassette: Levin Radio Spots,undated + + + + + + 14 + 17 + Records, Audio Cassette: Radio Spots,undated + + + + + + 14 + 18 + Records, Audio Cassette: Six 60 Second Spots, Griffin,undated + + + + + + 14 + 19 + Records, Audio Cassette: Griffin,undated + + + + + + 14 + 20 + Records, Audio Cassette: Mrs. Griffin, Ford,undated + + + + + + 14 + 21 + Records, Audio Cassette: Griffin 30 Second Spot,undated + + + + + + 14 + 22 + Records, Audio Cassette: Newspapers, Inflation, and Senior Citizens,undated + + + + + + 14 + 23 + Records, Audio Cassette: Griffin: Leader, Levin: Misleader Radio Spot,undated + + + + + + 14 + 24 + Records, Written Transcripts of Commercials,undated + + + + + + 15 + 1 + Records, The Very Least You Should Know About RPG Brochure,undated + + + + + + 15 + 2 + Records, Tax Revolt Brochure (2nd Union Piece),undated + + + + + + 15 + 3 + Records, Take Senator Griffin Home With You Brochure,undated + + + + + + 15 + 4 + Records, Polish Remarks,undated + + + + + + 15 + 5 + Records, Youth & Experience (Vinyl Record),undated + + + + + + 15 + 6 + Records, June Newsletter,undated + + + + + + 15 + 7 + Records, July Newsletter,undated + + + + + + 15 + 8 + Records, Griffin on...Brochure,undated + + + + + + 15 + 9 + Records, Tabloid/Newspaper Ads,undated + + + + + + 15 + 10 + Records, Tabloid,undated + + + + + + 15 + 11 + Records, Catholic Mailing,undated + + + + + + 15 + 12 + Records, Leader/Misleader Press Release,undated + + + + + + 15 + 13 + Records, Polls,undated + + + + + + 15 + 14 + Records, Ad Copy,undated + + + + + + 15 + 15 + Records, Quotes on Griffin,undated + + + + + + 15 + 16 + Records, Press Releases, Articles, Statements,undated + + + + + + 15 + 17 + Records, Issues Group,undated + + + + + + 15 + 18 + Records, General,undated + + + + + + 15 + 19 + Records, Dickenson County,undated + + + + + + 15 + 20 + Records, Grand Traverse County,undated + + + + + + 15 + 21 + Records, Mackinac County,undated + + + + + + 15 + 22 + Records, Campaign, Statements,undated + + + + + + 15 + 23 + Records, Campaign, Advance Man Manual,undated + + + + + + 15 + 24 + Records, Campaign, Material Utilized,undated + + + + + + 15 + 25 + Records, Campaign, Bumper Stickers,undated + + + + + + 15 + 26 + Records, Campaign, Press Conferences and Interviews,undated + + + + + + 15 + 27 + Records, Inventory List,1966 + + + + + + 15 + 28 + Records, Campaign Finances,undated + + + + + + 15 + 29 + Records, Campaign, Statement of Contributions and Expenses,1964 + + + + + + 15 + 30 + Records, Schedule Book – 1965,1965 + + + + + + 15 + 31 + Records, Schedule Book – 1966 (1 of 3),1966 + + + + + + 15 + 32 + Records, Schedule Book – 1966 (2 of 3),1966 + + + + + + 15 + 33 + Records, Schedule Book – 1966 (3 of 3),1966 + + + + + + 15 + 34 + Records, Advance Book, Master Copy,undated + + + + + + 15 + 35 + Records, Schedule Resume and Projection,undated + + + + + + + Senator Robert P. Griffin Papers Collection - Series #3, Correspondence‑Enclosures Series, (1 cubic foot - 1966‑1970, 1972‑1978) + + + + 16 + 1 + Records, Reprints, Floor Remarks and Press Releases, Pictured Rocks, Isle Royal,1966-1978 + + + + + + 16 + 2 + Records, Reprints, Floor Remarks and Press Releases, Undated Griffin Enclosure Material,1966-1978 + + + + + + 16 + 3 + Records, Reprints, Floor Remarks and Press Releases, Common Situs Picketing,1966-1978 + + + + + + 16 + 4 + Records, Reprints, Floor Remarks and Press Releases, Gov. Romney’s Appt. Statement,1966-1978 + + + + + + 16 + 5 + Records, Reprints, Floor Remarks and Press Releases, Acceptance Statement,1966-1978 + + + + + + 16 + 6 + Records, Reprints, Floor Remarks and Press Releases, Civil Rights Law Enforcement Act of 1966,1966 + + + + + + 16 + 7 + Records, Reprints, Floor Remarks and Press Releases, CRLEA, House Judiciary,1966-1978 + + + + + + 16 + 8 + Records, Reprints, Floor Remarks and Press Releases, Sleeping Bear Dunes,1966-1978 + + + + + + 16 + 9 + Records, Reprints, Floor Remarks and Press Releases, Sleeping Bear Dunes, release,1966-1978 + + + + + + 16 + 10 + Records, Reprints, Floor Remarks and Press Releases, Griffin Charges Draft Illogical and Unfair,1966-1978 + + + + + + 16 + 11 + Records, Reprints, Floor Remarks and Press Releases, St. Lawrence Seaway Tolls,1966-1978 + + + + + + 16 + 13 + Records, Reprints, Floor Remarks and Press Releases, Maiden Senate Speech on Vietnam, release,1966-1978 + + + + + + 16 + 14 + Records, Reprints, Floor Remarks and Press Releases, Freedom of Info. Bill,1966-1978 + + + + + + 16 + 15 + Records, Reprints, Floor Remarks and Press Releases, TV Radio Release,1966-1978 + + + + + + 16 + 16 + Records, Reprints, Floor Remarks and Press Releases, Tax Treatment of Teachers, press,1966-1978 + + + + + + 16 + 17 + Records, Reprints, Floor Remarks and Press Releases, Tax Treatment of Teachers, TV-Radio,1966-1978 + + + + + + 16 + 18 + Records, Reprints, Floor Remarks and Press Releases, Griffin Amendment to Poverty Bill,1966-1978 + + + + + + 16 + 19 + Records, Reprints, Floor Remarks and Press Releases, Bombing of Hanoi and Haiphong,1966-1978 + + + + + + 16 + 20 + Records, Reprints, Floor Remarks and Press Releases, Air Pollution,1966-1978 + + + + + + 16 + 21 + Records, Reprints, Floor Remarks and Press Releases, Civil Rights and Medicare Program,1966-1978 + + + + + + 16 + 22 + Records, Reprints, Floor Remarks and Press Releases, Highway and Auto Safety Bill,1966-1978 + + + + + + 16 + 23 + Records, Reprints, Floor Remarks and Press Releases, Inflation, National Debt,1966-1978 + + + + + + 16 + 25 + Records, Reprints, Floor Remarks and Press Releases, Tax Deduction for Teachers,1966-1978 + + + + + + 16 + 26 + Records, Reprints, Floor Remarks and Press Releases, Water Pollution,1966-1978 + + + + + + 16 + 27 + Records, Reprints, Floor Remarks and Press Releases, Soviet Union’s Athletes Refuse...,1966-1978 + + + + + + 16 + 28 + Records, Reprints, Floor Remarks and Press Releases, August Call-Up,1966-1978 + + + + + + 16 + 29 + Records, Reprints, Floor Remarks and Press Releases, Inflation—Farmers,1966-1978 + + + + + + 16 + 30 + Records, Reprints, Floor Remarks and Press Releases, Exemption of Family Member if One is Already in Vietnam,1966-1978 + + + + + + 16 + 31 + Records, Reprints, Floor Remarks and Press Releases, Demonstration Cities,1966-1978 + + + + + + 16 + 32 + Records, Reprints, Floor Remarks and Press Releases, Urban Renewal Funds,1966-1978 + + + + + + 16 + 33 + Records, Reprints, Floor Remarks and Press Releases, Vietnam, Robert Boyd,1966-1978 + + + + + + 16 + 34 + Records, Reprints, Floor Remarks and Press Releases, Inflation,1966-1978 + + + + + + 16 + 35 + Records, Reprints, Floor Remarks and Press Releases, Michigan Republican State Convention,1966-1978 + + + + + + 16 + 37 + Records, Reprints, Floor Remarks and Press Releases, Increase of Wheat Acreage by 32 percent,1966-1978 + + + + + + 16 + 38 + Records, Reprints, Floor Remarks and Press Releases, Gen. Eisenhower’s Endorsement of Sen. Griffin,1966-1978 + + + + + + 16 + 39 + Records, Reprints, Floor Remarks and Press Releases, Inflation,1966-1978 + + + + + + 16 + 40 + Records, Reprints, Floor Remarks and Press Releases, Pres. Degaule to Visit Washington,1966-1978 + + + + + + 16 + 41 + Records, Reprints, Floor Remarks and Press Releases, Pre- Apprenticeship Scheduling Program,1966-1978 + + + + + + 16 + 42 + Records, Reprints, Floor Remarks and Press Releases, National Clean Water Week,1966-1978 + + + + + + 16 + 43 + Records, Reprints, Floor Remarks and Press Releases, Commerce Dept. Drop New House Construction,1966-1978 + + + + + + 16 + 44 + Records, Reprints, Floor Remarks and Press Releases, 7th Anniversary of the Landrum-Griffin Bill,1966-1978 + + + + + + 16 + 45 + Records, Reprints, Floor Remarks and Press Releases, Discrimination in Hospitals Receiving Federal Funds (Medicare),1966-1978 + + + + + + 16 + 46 + Records, Reprints, Floor Remarks and Press Releases, Racial Discrimination in Hospitals,1966-1978 + + + + + + 16 + 47 + Records, Reprints, Floor Remarks and Press Releases, Labor Court,1966-1978 + + + + + + 16 + 49 + Records, Reprints, Floor Remarks and Press Releases, Opportunity Crusade of 1966,1966 + + + + + + 16 + 50 + Records, Reprints, Floor Remarks and Press Releases, Auto/Traffic Safety,1966-1978 + + + + + + 16 + 51 + Records, Reprints, Floor Remarks and Press Releases, Griffin is Best,1966-1978 + + + + + + 16 + 52 + Records, Reprints, Floor Remarks and Press Releases, Inflation,1966-1978 + + + + + + 16 + 53 + Records, Reprints, Floor Remarks and Press Releases, Mao Tse-tung’s Swim in Yangtze,1966-1978 + + + + + + 16 + 54 + Records, Reprints, Floor Remarks and Press Releases, TV Coverage of Senate Debates,1966-1978 + + + + + + 16 + 55 + Records, Reprints, Floor Remarks and Press Releases, Inflation Guns and Butter,1966-1978 + + + + + + 16 + 56 + Records, Reprints, Floor Remarks and Press Releases, Campaign Counselors,1966-1978 + + + + + + 16 + 57 + Records, Reprints, Floor Remarks and Press Releases, Airline Strike,1966-1978 + + + + + + 16 + 58 + Records, Reprints, Floor Remarks and Press Releases, Tight Money-Housing,1966-1978 + + + + + + 16 + 59 + Records, Reprints, Floor Remarks and Press Releases, After Mayor Cavanagh Conceded,1966-1978 + + + + + + 16 + 61 + Records, Reprints, Floor Remarks and Press Releases, Wild Animals,1966-1978 + + + + + + 16 + 62 + Records, Reprints, Floor Remarks and Press Releases, Sec. Freeman-Farm Prices Up 42percent since 1960,1966-1978 + + + + + + 16 + 63 + Records, Reprints, Floor Remarks and Press Releases, Quick Exchange of Crime Info.,1966-1978 + + + + + + 16 + 64 + Records, Reprints, Floor Remarks and Press Releases, Suggestion to End Airline Strike,1966-1978 + + + + + + 16 + 65 + Records, Reprints, Floor Remarks and Press Releases, Exempt Family Member from Vietnam if Another is Already There,1966-1978 + + + + + + 16 + 66 + Records, Reprints, Floor Remarks and Press Releases, Asian Conference,1966-1978 + + + + + + 16 + 67 + Records, Reprints, Floor Remarks and Press Releases, Asian Nations to Help in Vietnam Impasse,1966-1978 + + + + + + 16 + 68 + Records, Reprints, Floor Remarks and Press Releases, Telegram to G. Mennen Williams in the Hospital,1966-1978 + + + + + + 16 + 69 + Records, Reprints, Floor Remarks and Press Releases, To Negro Leaders and Police in Avoiding in Detroit,1966-1978 + + + + + + 16 + 70 + Records, Reprints, Floor Remarks and Press Releases, Rise in Milk Prices,1966-1978 + + + + + + 16 + 71 + Records, Reprints, Floor Remarks and Press Releases, Airline Strike and Landrum-Griffin Act,1966-1978 + + + + + + 16 + 73 + Records, Reprints, Floor Remarks and Press Releases, Hon. W. William,1966-1978 + + + + + + 16 + 74 + Records, Reprints, Floor Remarks and Press Releases, President’s Plans to Sell Shares in Gov. National Clean Water Week,1966-1978 + + + + + + 16 + 75 + Records, Reprints, Floor Remarks and Press Releases, Invite Degaule to Visit Washington to Discuss Vietnam War,1966-1978 + + + + + + 16 + 76 + Records, Reprints, Floor Remarks and Press Releases, “Instant Democracy” in Vietnam Election,1966-1978 + + + + + + 16 + 77 + Records, Reprints, Floor Remarks and Press Releases, Anti-Semitic Policies of the Soviet Union,1966-1978 + + + + + + 16 + 78 + Records, Reprints, Floor Remarks and Press Releases, Griffin Urges Presidential Action for Civil Rights Act,1966-1978 + + + + + + 16 + 79 + Records, Reprints, Floor Remarks and Press Releases, Shortage of Teachers for New School Year,1966-1978 + + + + + + 16 + 80 + Records, Reprints, Floor Remarks and Press Releases, Inflation-Johnson Admin.,1966-1978 + + + + + + 16 + 81 + Records, Reprints, Floor Remarks and Press Releases, Comments on Pre-Apprenticeship Schooling Program,1966-1978 + + + + + + 16 + 82 + Records, Reprints, Floor Remarks and Press Releases, Exemption of Federal Tax Serviceman’s Air Travel,1966-1978 + + + + + + 16 + 83 + Records, Reprints, Floor Remarks and Press Releases, U.S. Aid to Egypt,1966-1978 + + + + + + 16 + 85 + Records, Reprints, Floor Remarks and Press Releases, New Poll Showing 51-48% Edge Over Williams,1966-1978 + + + + + + 16 + 86 + Records, Reprints, Floor Remarks and Press Releases, Toll Increase on St. Lawrence Seaway,1966-1978 + + + + + + 16 + 87 + Records, Reprints, Floor Remarks and Press Releases, Federal Taxing of A Serviceman’s Air Travel,1966-1978 + + + + + + 16 + 88 + Records, Reprints, Floor Remarks and Press Releases, Latvians-Religious Persecution,1966-1978 + + + + + + 16 + 89 + Records, Reprints, Floor Remarks and Press Releases, Pope Paul’s Appeal for Peace,1966-1978 + + + + + + 16 + 90 + Records, Reprints, Floor Remarks and Press Releases, Pope Paul’s Effort Toward Peace,1966-1978 + + + + + + 16 + 91 + Records, Reprints, Floor Remarks and Press Releases, Make Columbus Day A Legal Holiday,1966-1978 + + + + + + 16 + 92 + Records, Reprints, Floor Remarks and Press Releases, Application for Academy Appointment,1966-1978 + + + + + + 16 + 93 + Records, Reprints, Floor Remarks and Press Releases, 16% Increase in Tolls on St. Lawrence Seaway,1966-1978 + + + + + + 16 + 94 + Records, Reprints, Floor Remarks and Press Releases, Lowering Voting Age to 18,1966-1978 + + + + + + 16 + 95 + Records, Reprints, Floor Remarks and Press Releases, Legislation to Ban Wiretapping and Snooping Devices,1966-1978 + + + + + + 16 + 97 + Records, Reprints, Floor Remarks and Press Releases, Federal Civilian Employment,1966-1978 + + + + + + 16 + 98 + Records, Reprints, Floor Remarks and Press Releases, Tax Deduction for Teachers,1966-1978 + + + + + + 16 + 99 + Records, Reprints, Floor Remarks and Press Releases, LeRoux Statement Concerning Play Off of the Farmer,1966-1978 + + + + + + 16 + 100 + Records, Reprints, Floor Remarks and Press Releases, Landrum-Griffin Law,1966-1978 + + + + + + 16 + 101 + Records, Reprints, Floor Remarks and Press Releases, Role of Local Communities in War Against Crime,1966-1978 + + + + + + 16 + 102 + Records, Reprints, Floor Remarks and Press Releases, Religious Persecution in East-Central Europe,1966-1978 + + + + + + 16 + 103 + Records, Reprints, Floor Remarks and Press Releases, Civil Service Tests,1966-1978 + + + + + + 16 + 104 + Records, Reprints, Floor Remarks and Press Releases, Water Pollution,1966-1978 + + + + + + 16 + 105 + Records, Reprints, Floor Remarks and Press Releases, Social Security Report,1966-1978 + + + + + + 16 + 106 + Records, Reprints, Floor Remarks and Press Releases, Ban “Food for Peace”,1966-1978 + + + + + + 16 + 107 + Records, Reprints, Floor Remarks and Press Releases, Congressional Action,1966-1978 + + + + + + 16 + 109 + Records, Reprints, Floor Remarks and Press Releases, To Jewish Daily Forward,1966-1978 + + + + + + 16 + 110 + Records, Reprints, Floor Remarks and Press Releases, Water Pollution,1966-1978 + + + + + + 16 + 111 + Records, Reprints, Floor Remarks and Press Releases, Johnson and Tax Increase,1966-1978 + + + + + + 16 + 112 + Records, Reprints, Floor Remarks and Press Releases, High Cost of Borrowing Money,1966-1978 + + + + + + 16 + 113 + Records, Reprints, Floor Remarks and Press Releases, Relocation of AEC 200,1966-1978 + + + + + + 16 + 114 + Records, Reprints, Floor Remarks and Press Releases, CMU Commencement,1966-1978 + + + + + + 16 + 115 + Records, Reprints, Floor Remarks and Press Releases, Social Security Legis.,1966-1978 + + + + + + 16 + 116 + Records, Reprints, Floor Remarks and Press Releases, U. S. Commission on UNESCO,1966-1978 + + + + + + 16 + 117 + Records, Reprints, Floor Remarks and Press Releases, Strikes-Legis. Needed,1966-1978 + + + + + + 16 + 118 + Records, Reprints, Floor Remarks and Press Releases, Zack Chandler Dinner,1966-1978 + + + + + + 16 + 119 + Records, Reprints, Floor Remarks and Press Releases, FHA Water Program,1966-1978 + + + + + + 16 + 121 + Records, Reprints, Floor Remarks and Press Releases, Lincoln Day (speech) 2/68,1968 + + + + + + 16 + 122 + Records, Reprints, Floor Remarks and Press Releases, Academy Appointments (press releases) 2/21/68,1968 + + + + + + 16 + 123 + Records, Reprints, Floor Remarks and Press Releases, Nominations of Mr. Fortas and Thornberry 7/11/68 (speech),1968 + + + + + + 16 + 124 + Records, Reprints, Floor Remarks and Press Releases, Advice and Consent: Fortas- Thornberry issue 7/30/68 (speech),1968 + + + + + + 16 + 125 + Records, Reprints, Floor Remarks and Press Releases, Griffin Won’t Quit as GOP Whip, 1/29/74,1974 + + + + + + 16 + 126 + Records, Reprints, Floor Remarks and Press Releases, Griffin Frets Over Rules Impact, 5/1/74,1974 + + + + + + 16 + 127 + Records, Reprints, Floor Remarks and Press Releases, Griffin Mulls Nixon Resignation Idea, 6/2/74,1974 + + + + + + 16 + 128 + Records, Reprints, Floor Remarks and Press Releases, Griffin—Senator’s Dual Problem, 6/10/74,1974 + + + + + + 16 + 129 + Records, Reprints, Floor Remarks and Press Releases, The Nation Wall St. Journal, 8/7/74,1974 + + + + + + 16 + 130 + Records, Reprints, Floor Remarks and Press Releases, U.S. versus AT&T, 11/22/74,1974 + + + + + + 16 + 131 + Records, Reprints, Floor Remarks and Press Releases, Get Off Car Industries Back, 11/24/74 ,1974 + + + + + + 16 + 133 + Records, Reprints, Floor Remarks and Press Releases, Hershey letter: draft lottery 12/23/69,1969 + + + + + + 16 + 134 + Records, Reprints, Floor Remarks and Press Releases, S.4000 cyclamates letters to editors of Detroit News and Free press 7/22/70,1970 + + + + + + 16 + 135 + Records, Reprints, Floor Remarks and Press Releases, SST Port Huron Speech 8/22/70,1970 + + + + + + 16 + 136 + Records, Reprints, Floor Remarks and Press Releases, 1972 Index of Reprints,1972 + + + + + + 16 + 137 + Records, Reprints, Floor Remarks and Press Releases, M 76-45 Blue Book on Crime, 1972,1972 + + + + + + 16 + 138 + Records, Reprints, Floor Remarks and Press Releases, Reserve Mining Co., Griffin to Mitchell, 1972,1972 + + + + + + 16 + 139 + Records, Reprints, Floor Remarks and Press Releases, Reserve Mining Co., Frizzell to Griffin, 1972,1972 + + + + + + 16 + 140 + Records, Reprints, Floor Remarks and Press Releases, Aviation Legislation (form letter),1966-1978 + + + + + + 16 + 141 + Records, Reprints, Floor Remarks and Press Releases, End the War Amendments Press Release,1966-1978 + + + + + + 16 + 142 + Records, Reprints, Floor Remarks and Press Releases, Griffin, Kelley, Ruppe Speak Out on Taconite,1966-1978 + + + + + + 16 + 143 + Records, Reprints, Floor Remarks and Press Releases, Pension Reform Legislation,1966-1978 + + + + + + 16 + 145 + Records, Reprints, Floor Remarks and Press Releases, Face the Nation, 1/23/73,1973 + + + + + + 16 + 146 + Records, Reprints, Floor Remarks and Press Releases, Pollution, 6/5/73,1973 + + + + + + 16 + 147 + Records, Reprints, Floor Remarks and Press Releases, Our Hot-Dog Mining, 2/28/73,1973 + + + + + + 16 + 148 + Records, Reprints, Floor Remarks and Press Releases, More for Health (Medicare) Mining, 3/20/73,1973 + + + + + + 16 + 149 + Records, Reprints, Floor Remarks and Press Releases, Former Nixon Aids Not Exempt, 3/22/73,1973 + + + + + + 16 + 150 + Records, Reprints, Floor Remarks and Press Releases, Griffin’s Work Mining J., 4/12/73,1973 + + + + + + 16 + 151 + Records, Reprints, Floor Remarks and Press Releases, Pension Reform Proposal, GR Press, 4/22/73,1973 + + + + + + 16 + 152 + Records, Reprints, Floor Remarks and Press Releases, Griffin Deplores Watergate, Detroit News, 5/4/73,1973 + + + + + + 16 + 153 + Records, Reprints, Floor Remarks and Press Releases, Gas Allocations to Aid Ind. St., 5/11/73,1973 + + + + + + 16 + 154 + Records, Reprints, Floor Remarks and Press Releases, Tell All, Griffin Urges, 6/11/73,1973 + + + + + + 16 + 155 + Records, Reprints, Floor Remarks and Press Releases, Reserve Mining Case Mining J., 6/12/73,1973 + + + + + + 16 + 157 + Records, Reprints, Floor Remarks and Press Releases, Wilderness Act of 1964,1964 + + + + + + 16 + 158 + Records, Reprints, Floor Remarks and Press Releases, Call to President to Answer Questions, 6/5/73,1973 + + + + + + 16 + 159 + Records, Reprints, Floor Remarks and Press Releases, Hot Dogs (Ag Sub), 6/14/73,1973 + + + + + + 16 + 160 + Records, Reprints, Floor Remarks and Press Releases, Reserve Mining Letter to Atty. General, 6/19/73,1973 + + + + + + 16 + 161 + Records, Reprints, Floor Remarks and Press Releases, Campaign Financing in 1972 Election, 7/23/73,1973 + + + + + + 16 + 162 + Records, Reprints, Floor Remarks and Press Releases, Protect the AuSable and Manistee Rivers, 9/21/73,1973 + + + + + + 16 + 163 + Records, Reprints, Floor Remarks and Press Releases, New Method for Selecting VP, 10/23/73,1973 + + + + + + 16 + 164 + Records, Reprints, Floor Remarks and Press Releases, PR Project Sanguine, 11/4/73,1973 + + + + + + 16 + 165 + Records, Reprints, Floor Remarks and Press Releases, Consumer Protection, 7/22/74,1974 + + + + + + 16 + 166 + Records, Reprints, Floor Remarks and Press Releases, Impeachment Letters, 1/74,1974 + + + + + + 16 + 167 + Records, Reprints, Floor Remarks and Press Releases, Food Export Controls, 1/74,1974 + + + + + + 16 + 169 + Records, Reprints, Floor Remarks and Press Releases, Public Financing, 2/21/74,1974 + + + + + + 16 + 170 + Records, Reprints, Floor Remarks and Press Releases, Federal Spending, 4/74,1974 + + + + + + 16 + 171 + Records, Reprints, Floor Remarks and Press Releases, Tax Reform Legislation, 4/74,1974 + + + + + + 16 + 172 + Records, Reprints, Floor Remarks and Press Releases, Focus: Hope-Letter to Secy. Butz, 9/3/74,1974 + + + + + + 16 + 173 + Records, Reprints, Floor Remarks and Press Releases, Lottery--Eastland Letter, 9/9/74,1974 + + + + + + 16 + 174 + Records, Reprints, Floor Remarks and Press Releases, Griffin Impeachment View, 1/24/74,1974 + + + + + + 16 + 175 + Records, Reprints, Floor Remarks and Press Releases, Letter to Simon on Gasoline Allocation, 3/6/74,1974 + + + + + + 16 + 176 + Records, Reprints, Floor Remarks and Press Releases, Adoption Tax Deduction, 5/30/74,1974 + + + + + + 16 + 177 + Records, Reprints, Floor Remarks and Press Releases, Griffin Pushes for Consumer Aid, 8/15/74,1974 + + + + + + 16 + 178 + Records, Reprints, Floor Remarks and Press Releases, Washington Report—RPG’s Newsletter, 1/75,1975 + + + + + + 16 + 179 + Records, Reprints, Floor Remarks and Press Releases, Brennan Letter-Job Funds, 1/14,1966-1978 + + + + + + 16 + 181 + Records, Reprints, Floor Remarks and Press Releases, Griffin’s Letter to Ford Focus: Hope, 2/10,1966-1978 + + + + + + 16 + 182 + Records, Reprints, Floor Remarks and Press Releases, VW Dumping, Griffin Letter to Simon, 3/4,1966-1978 + + + + + + 16 + 183 + Records, Reprints, Floor Remarks and Press Releases, VW Dumping, Griffin Letter to Bedell, 3/6,1966-1978 + + + + + + 16 + 184 + Records, Reprints, Floor Remarks and Press Releases, Letter to Train Reserve Mining, 4/17,1966-1978 + + + + + + 16 + 185 + Records, Reprints, Floor Remarks and Press Releases, Letter to Levi Reserve Mining, 4/17,1966-1978 + + + + + + 16 + 186 + Records, Reprints, Floor Remarks and Press Releases, Griffin Introduces Bill Extending Jobless Aid, 2/15,1966-1978 + + + + + + 16 + 187 + Records, Reprints, Floor Remarks and Press Releases, Auto Fuel Economy and Development Act, 7/16,1966-1978 + + + + + + 16 + 188 + Records, Reprints, Floor Remarks and Press Releases, Final Systems Plan, 7/24,1966-1978 + + + + + + 16 + 189 + Records, Reprints, Floor Remarks and Press Releases, News from U.S. Senator RPG, 10/3,1966-1978 + + + + + + 16 + 190 + Records, Reprints, Floor Remarks and Press Releases, Teamsters Probe, 11/21,1966-1978 + + + + + + 16 + 191 + Records, Reprints, Floor Remarks and Press Releases, Letter to Sec. Coleman Re: Auto Air Bags, 2/26/76,1976 + + + + + + 16 + 193 + Records, Reprints, Floor Remarks and Press Releases, St. Clair County Rep. Dinner, 5/14,1966-1978 + + + + + + 16 + 194 + Records, Reprints, Floor Remarks and Press Releases, Letter to Detroit News, 9/8,1966-1978 + + + + + + 16 + 195 + Records, Reprints, Floor Remarks and Press Releases, Letter to Ford on Ex., Leg., and Jud. Salaries, 12/9,1966-1978 + + + + + + 16 + 196 + Records, Reprints, Floor Remarks and Press Releases, Washington Report, no date,undated + + + + + + 16 + 197 + Records, Reprints, Floor Remarks and Press Releases, Kincheloe Closing, 3/11,1966-1978 + + + + + + 16 + 198 + Records, Reprints, Floor Remarks and Press Releases, Repeal of Truck and Bus Excise Tax, 4/6,1966-1978 + + + + + + 16 + 199 + Records, Reprints, Floor Remarks and Press Releases, Helms Abortion Amendment, 4/28,1966-1978 + + + + + + 16 + 200 + Records, Reprints, Floor Remarks and Press Releases, Panama Canal Treaty, 1/26,1966-1978 + + + + + + 16 + 201 + Records, Reprints, Floor Remarks and Press Releases, Welfare Reform, 3/15,1966-1978 + + + + + + 16 + 202 + Records, Reprints, Floor Remarks and Press Releases, Panama Canal Speech, 3/20,1966-1978 + + + + + + 16 + 203 + Records, Reprints, Floor Remarks and Press Releases, Relief for Taxflation Begins to Move in Congress, 5/26,1966-1978 + + + + + + 16 + 205 + Records, Reprints, Floor Remarks and Press Releases, Mich. Assn. Of Counties, 9/4,1966-1978 + + + + + + 16 + 206 + Records, Reprints, Floor Remarks and Press Releases, Mich. Assn. Of Counties (Gov. Spending), 9/4,1966-1978 + + + + + + 16 + 207 + Records, Reprints, Floor Remarks and Press Releases, ERA Extension, 9/30,1966-1978 + + + + + + 16 + 208 + Records, Reprints, Floor Remarks and Press Releases, President’s Veto of Public Works Bill, 10/5,1966-1978 + + + + + + 16 + 209 + Records, Reprints, Floor Remarks and Press Releases, Commissioner Kurtz, 10/30,1966-1978 + + + + + + 16 + 210 + Records, Reprints, Floor Remarks and Press Releases, Reelection Announcement, 2/13,1966-1978 + + + + + + 16 + 211 + Records, Reprints, Floor Remarks and Press Releases, Coal Strike, 2/17,1966-1978 + + + + + + 16 + 212 + Records, Reprints, Floor Remarks and Press Releases, Assures Constituents no ELF Funds, 7/12,1966-1978 + + + + + + 16 + 213 + Records, Reprints, Floor Remarks and Press Releases, Mideast Peace Summit, 8/31,1966-1978 + + + + + + 16 + 214 + Records, Reprints, Floor Remarks and Press Releases, PROD, 5/28,1966-1978 + + + + + + 16 + 215 + Records, Reprints, Floor Remarks and Press Releases, Veterans Poppy Program, 7/30,1966-1978 + + + + + + 16 + 217 + Records, Reprints, Floor Remarks and Press Releases, Washington Report, 12/76,1966-1978 + + + + + + 16 + 218 + Records, Reprints, Floor Remarks and Press Releases, Letter to GAO on Public Works Grant, 1/5,1966-1978 + + + + + + 16 + 219 + Records, Reprints, Floor Remarks and Press Releases, Statement on Seafarer, 2/3,1966-1978 + + + + + + 16 + 220 + Records, Reprints, Floor Remarks and Press Releases, NDSL Mailing,1966-1978 + + + + + + 16 + 221 + Records, Reprints, Floor Remarks and Press Releases, Letter to Carter on Snowmobiles, 4/21/77,1977 + + + + + + 16 + 222 + Records, Reprints, Floor Remarks and Press Releases, Universal Voter Registration Act, 5/16,1966-1978 + + + + + + 16 + 223 + Records, Reprints, Floor Remarks and Press Releases, Should Air Bags Be Mandated?-No, 6/77,1977 + + + + + + 16 + 224 + Records, Reprints, Floor Remarks and Press Releases, Energy Remarks, 9/77,1966-1978 + + + + + + 16 + 225 + Records, Reprints, Floor Remarks and Press Releases, Public Utilities Reg. Policy Act, 9/20,1966-1978 + + + + + + 16 + 226 + Records, Reprints, Floor Remarks and Press Releases, Case Against Mandating Air Bags, 10/77,1977 + + + + + + 16 + 227 + Records, Reprints, Floor Remarks and Press Releases, A Message to the Professions, 11/15,1966-1978 + + + + + + 16 + 229 + Records, Reprints, Floor Remarks and Press Releases, Narcotics Sentencing and Seizure Act, 3/2,1966-1978 + + + + + + 16 + 230 + Records, Reprints, Floor Remarks and Press Releases, NDEA Loans, 3/16,1966-1978 + + + + + + 16 + 231 + Records, Reprints, Floor Remarks and Press Releases, 22 Years is Long Enough, 4/30,1966-1978 + + + + + + 16 + 232 + Records, Reprints, Floor Remarks and Press Releases, Reaction to Adams Air Bag Decision, 6/30,1966-1978 + + + + + + 16 + 233 + Records, Reprints, Floor Remarks and Press Releases, Reaction to Clean Air Conf., 8/3,1966-1978 + + + + + + 16 + 234 + Records, Reprints, Floor Remarks and Press Releases, Aiding Victims of Chemical Disasters, 3/17/78,1978 + + + + + + 16 + 235 + Records, Reprints, Floor Remarks and Press Releases, Natural Gas Bill, 9/12,1966-1978 + + + + + + 16 + 236 + Records, Reprints, Floor Remarks and Press Releases, Urges Passage of Alaska Lands Bill, 9/18,1966-1978 + + + + + + 16 + 237 + Records, Reprints, Floor Remarks and Press Releases, Urges Simplification of Hart Bldg., 9/29,1966-1978 + + + + + + 16 + 238 + Records, Reprints, Floor Remarks and Press Releases, Declares A Victory in Pooling Agreement, 10/7,1966-1978 + + + + + + 16 + 239 + Records, Reprints, Floor Remarks and Press Releases, Congress Adopts Griffin Plan for Tax Relief on PBB Losses, 10/16,1966-1978 + + + + + + + Senator Robert P. Griffin Papers Collection - Series #4, Correspondence‑Issues Series, (168 cubic feet - 1957‑1978 and undated + + + + 17 + 1 + Records, Computer Index Numbers 7702000001-7702010875,1977 + + + + + + 18 + 1 + Records, Computer Index Numbers 7702000001-7702010875,1977 + + + + + + 19 + 1 + Records, Computer Index Numbers 7702000001-7702010875,1977 + + + + + + 20 + 1 + Records, Computer Index Numbers 7702000001-7702010875,1977 + + + + + + 21 + 1 + Records, Computer Index Numbers 7702000001-7702010875,1977 + + + + + + 22 + 1 + Records, Computer Index Numbers 7702000001-7702010875,1977 + + + + + + 23 + 1 + Records, Computer Index Numbers 7702000001-7702010875,1977 + + + + + + 24 + 1 + Records, Computer Index Numbers 7702000001-7702010875,1977 + + + + + + 25 + 1 + Records, Computer Index Numbers 7702000001-7702010875,1977 + + + + + + 26 + 1 + Records, Computer Index Numbers 7702000001-7702010875,1977 + + + + + + 27 + 1 + Records, Computer Index Numbers 7702000001-7702010875,1977 + + + + + + 28 + 1 + Records, Computer Index Numbers 7702010876-7702011425,1977 + + + + + + 28 + 2 + Records, Computer Index Numbers 7802000001-7802000525,1977 + + + + + + 29 + 1 + Records, Computer Index Numbers 7802000526-7802015850,1978 + + + + + + 30 + 1 + Records, Computer Index Numbers 7802000526-7802015850,1978 + + + + + + 31 + 1 + Records, Computer Index Numbers 7802000526-7802015850,1978 + + + + + + 32 + 1 + Records, Computer Index Numbers 7802000526-7802015850,1978 + + + + + + 33 + 1 + Records, Computer Index Numbers 7802000526-7802015850,1978 + + + + + + 34 + 1 + Records, Computer Index Numbers 7802000526-7802015850,1978 + + + + + + 35 + 1 + Records, Computer Index Numbers 7802000526-7802015850,1978 + + + + + + 36 + 1 + Records, Computer Index Numbers 7802000526-7802015850,1978 + + + + + + 37 + 1 + Records, Computer Index Numbers 7802000526-7802015850,1978 + + + + + + 38 + 1 + Records, Computer Index Numbers 7802000526-7802015850,1978 + + + + + + 39 + 1 + Records, Computer Index Numbers 7802000526-7802015850,1978 + + + + + + 40 + 1 + Records, Computer Index Numbers 7802000526-7802015850,1978 + + + + + + 41 + 1 + Records, Computer Index Numbers 7802000526-7802015850,1978 + + + + + + 42 + 1 + Records, Computer Index Numbers 7802000526-7802015850,1978 + + + + + + 43 + 1 + Records, Computer Index Numbers 7802000526-7802015850,1978 + + + + + + 44 + 1 + Records, Computer Index Numbers 7802000526-7802015850,1978 + + + + + + 45 + 1 + Records, Immigration,1978 + + + + + + 45 + 2 + Records, Impeachment of Nixon,1974 + + + + + + 45 + 3 + Records, International Debts Owed to U.S.,1975 + + + + + + 45 + 4 + Records, General, A,undated + + + + + + 45 + 5 + Records, General, B,undated + + + + + + 45 + 6 + Records, Cherry Industry,undated + + + + + + 45 + 7 + Records, Civil Rights,undated + + + + + + 45 + 8 + Records, Churches,undated + + + + + + 45 + 9 + Records, Congress-Readers Digest Article,undated + + + + + + 45 + 10 + Records, Cuban Situation,undated + + + + + + 45 + 11 + Records, General, D,undated + + + + + + 45 + 12 + Records, Depository Library,undated + + + + + + 45 + 13 + Records, General, E,undated + + + + + + 45 + 14 + Records, General, F,undated + + + + + + 45 + 15 + Records, Folding Room, Statement of Accounts,undated + + + + + + 45 + 16 + Records, General, G,1959-1966 + + + + + + 45 + 17 + Records, Grand Haven,1959-1966 + + + + + + 45 + 18 + Records, General, H,1959-1966 + + + + + + 45 + 19 + Records, General, I,1959-1966 + + + + + + 45 + 20 + Records, Inflation, Economy in government,1959-1966 + + + + + + 45 + 21 + Records, International Brotherhood of Teamsters 9/24/63,1959-1966 + + + + + + 45 + 22 + Records, General, J,1959-1966 + + + + + + 45 + 23 + Records, General, K,1959-1966 + + + + + + 45 + 24 + Records, General, L,1959-1966 + + + + + + 45 + 25 + Records, General, M,1959-1966 + + + + + + 45 + 26 + Records, Manitou Islands (North and South),1959-1966 + + + + + + 45 + 27 + Records, Marquette, Father Jacques,undated + + + + + + 45 + 28 + Records, General, N,undated + + + + + + 45 + 29 + Records, NASA,undated + + + + + + 45 + 30 + Records, Newsletters by Mrs. Griffin,undated + + + + + + 45 + 31 + Records, General, O,1959-1966 + + + + + + 45 + 32 + Records, Orchard View School,1959-1966 + + + + + + 45 + 33 + Records, Rayburn House Office Building,1959-1966 + + + + + + 45 + 34 + Records, General, P,1959-1966 + + + + + + 45 + 35 + Records, Peace Corps,1959-1966 + + + + + + 45 + 36 + Records, Politics,1959-1966 + + + + + + 45 + 37 + Records, President Kennedy,1959-1966 + + + + + + 45 + 38 + Records, Questionnaire 1965: 4 folders,1965 + + + + + + 45 + 39 + Records, Questionnaire 1965: 4 folders,1965 + + + + + + 45 + 40 + Records, Questionnaire1965: 4 folders,1965 + + + + + + 45 + 41 + Records, Questionnaire 1965: 4 folders,1965 + + + + + + 45 + 42 + Records, General, R,1959-1966 + + + + + + 45 + 43 + Records, Russia, Sale of Wheat, Trading with,1959-1966 + + + + + + 45 + 44 + Records, General,S,1959-1966 + + + + + + 45 + 45 + Records, Supreme Court,1959-1966 + + + + + + 45 + 46 + Records, General, T,1959-1966 + + + + + + 45 + 47 + Records, General, U,1959-1966 + + + + + + 45 + 48 + Records, United Nations,1959-1966 + + + + + + 45 + 49 + Records, General, V,1959-1966 + + + + + + 45 + 50 + Records, Vietnam,1959-1966 + + + + + + 45 + 51 + Records, General, W,1959-1966 + + + + + + 45 + 52 + Records, General, Y,1959-1966 + + + + + + 45 + 53 + Records, Guest Book, Mobile Office Tour,1959-1966 + + + + + + 45 + 54 + Records, Ways and Means, Reciprocal Trade, Cherries,undated + + + + + + 45 + 55 + Records, Cherry File Data,undated + + + + + + 45 + 56 + Records, Post Office and Civil Service, Salary Increases,undated + + + + + + 45 + 57 + Records, General Views 1959,1959 + + + + + + 45 + 58 + Records, General Views 1959-960,1959-1960 + + + + + + 46 + 1 + Records, General Views 1961 June – December,1961 + + + + + + 46 + 2 + Records, General Views 1961 April – May,1961 + + + + + + 46 + 3 + Records, General Views 1961 January – March,1961 + + + + + + 46 + 4 + Records, General Views 1962 July- December,1962 + + + + + + 46 + 5 + Records, General Views 1962 March – June,1962 + + + + + + 46 + 6 + Records, General Views 1962 January – February,1962 + + + + + + 46 + 7 + Records, General Views 1963 July - December,1963 + + + + + + 46 + 8 + Records, General Views Chaplains and Prayers 1964,1964 + + + + + + 46 + 9 + Records, General Views 1964 April – December,1964 + + + + + + 46 + 10 + Records, General Views 1964 January -March,1964 + + + + + + 46 + 11 + Records, General Views 1963 April – June ,1963 + + + + + + 46 + 12 + Records, General Views 1963 January -March,1963 + + + + + + 46 + 13 + Records, General Views 1965 April – June,1965 + + + + + + 47 + 1 + Records, General Views 1965 January – March,1965 + + + + + + 47 + 2 + Records, General Views 1965 July – December,1965 + + + + + + 47 + 3 + Records, General Views 1966 January – June,1966 + + + + + + 47 + 4 + Records, Education and Labor, Con 1957,1957 + + + + + + 47 + 5 + Records, Education and Labor, Pro,undated + + + + + + 47 + 6 + Records, Education and Labor,undated + + + + + + 47 + 7 + Records, Education and Labor, Wage and Hour Letters, 2 folders,undated + + + + + + 47 + 8 + Records, Education and Labor, Wage and Hour Letters, 2 folders,undated + + + + + + 47 + 9 + Records, Government Operations, General,undated + + + + + + 47 + 10 + Records, Government Operations, Payments in lieu of Taxes,undated + + + + + + 47 + 11 + Records, Government Operations, Correspondence,undated + + + + + + 47 + 12 + Records, Government Operations Data (HR 8002),undated + + + + + + 47 + 13 + Records, Education and Labor, Subcommittee on Labor Standards, 2 folders,undated + + + + + + 47 + 14 + Records, Education and Labor, Subcommittee on Labor Standards, 2 folders,undated + + + + + + 47 + 15 + Records, Education and Labor 6/1961 – 12/1962,1961-1962 + + + + + + 47 + 16 + Records, Education and Labor 4/61 – 5/61,1961 + + + + + + 47 + 17 + Records, Education and Labor 3/61,1961 + + + + + + 47 + 18 + Records, Education and Labor 5/60 – 2/61,1960-1961 + + + + + + 47 + 19 + Records, Defense Department,undated + + + + + + 47 + 20 + Records, Government Operations, General,1961 + + + + + + 47 + 21 + Records, Government Operations, General ,1960 + + + + + + 47 + 22 + Records, Government Operations Subcommittee on Intergovernmental Relations,undated + + + + + + 47 + 23 + Records, Education and Labor, General Correspondence,1959 + + + + + + 47 + 24 + Records, National Defense Education Act (HR 13204),undated + + + + + + 47 + 25 + Records, Hoover Commission,undated + + + + + + 48 + 1 + Records, Miscellaneous Letters Re: Landrum - Griffin Act (out-of-state) - 7 folders,1959 + + + + + + 48 + 2 + Records, Miscellaneous Letters Re: Landrum - Griffin Act (out-of-state) - 7 folders,1959 + + + + + + 48 + 3 + Records, Miscellaneous Letters Re: Landrum - Griffin Act (out-of-state) - 7 folders,1959 + + + + + + 48 + 4 + Records, Miscellaneous Letters Re: Landrum - Griffin Act (out-of-state) - 7 folders,1959 + + + + + + 48 + 5 + Records, Miscellaneous Letters Re: Landrum - Griffin Act (out-of-state) - 7 folders,1959 + + + + + + 48 + 6 + Records, Miscellaneous Letters Re: Landrum - Griffin Act (out-of-state) - 7 folders,1959 + + + + + + 48 + 7 + Records, Miscellaneous Letters Re: Landrum - Griffin Act (out-of-state) - 7 folders,1959 + + + + + + 48 + 8 + Records, Tennessee Valley Authority,1959 + + + + + + 48 + 9 + Records, Anti-Inflation Coupons,1957-1964 + + + + + + 48 + 10 + Records, Miscellaneous, B ,1957-1958 + + + + + + 48 + 11 + Records, General, B,1959 + + + + + + 48 + 12 + Records, Biederman, Les,1958-1962 + + + + + + 48 + 13 + Records, Miscellaneous, C,1958 + + + + + + 48 + 14 + Records, General, C,1959 + + + + + + 48 + 15 + Records, Cherry Blossom Festival,1957 + + + + + + 48 + 16 + Records, Cherry Industry,1958-1961 + + + + + + 48 + 17 + Records, Communism, Correspondence,1958 + + + + + + 48 + 18 + Records, Communism, Correspondence, Red China,1957-1964 + + + + + + 48 + 19 + Records, Cuba,1957-1964 + + + + + + 48 + 20 + Records, Curtiss, Dan,1957-1964 + + + + + + 48 + 21 + Records, Miscellaneous,1957-1958 + + + + + + 48 + 22 + Records, General, D,1959 + + + + + + 48 + 23 + Records, General, E,1959 + + + + + + 48 + 24 + Records, General, F,1959 + + + + + + 48 + 25 + Records, Foreign Aid Correspondence,1957-1964 + + + + + + 48 + 26 + Records, Miscellaneous, I,1957-1964 + + + + + + 48 + 27 + Records, Inflation, Economy in Government,1959 + + + + + + 48 + 28 + Records, Insurance, Government Sponsored,1957-1964 + + + + + + 48 + 29 + Records, Kenny Lane Correspondence,1957-1964 + + + + + + 48 + 30 + Records, General, MI Photograph,1957-1964 + + + + + + 48 + 31 + Records, Michigan Week,1958-1962 + + + + + + 48 + 32 + Records, General O,1959 + + + + + + 48 + 33 + Records, Miscellaneous P,1957-1964 + + + + + + 48 + 34 + Records, Questionnaires, Letters,1957-1964 + + + + + + 48 + 35 + Records, Questionnaires,1957-1964 + + + + + + 48 + 36 + Records, Questionnaires, Tabulations,1957-1964 + + + + + + 48 + 37 + Records, Miscellaneous, R,1957 + + + + + + 48 + 38 + Records, General, R,1959-1961 + + + + + + 48 + 39 + Records, General, S,1959 + + + + + + 48 + 40 + Records, Miscellaneous, S,1957-1958 + + + + + + 48 + 41 + Records, Schoener, James F.,1957 + + + + + + 48 + 42 + Records, Selective Service System,1957 + + + + + + 48 + 43 + Records, Safety Song, Eddie Stewart195,1957 + + + + + + 49 + 1 + Records, Miscellaneous, T,1957-1964 + + + + + + 49 + 2 + Records, Trailer Visitors, Benzie County,1958 + + + + + + 49 + 3 + Records, Trailer Visitors, Grand Traverse County,1957-1964 + + + + + + 49 + 4 + Records, Trailer Visitors, Lake County,1957-1964 + + + + + + 49 + 5 + Records, Trailer Visitors, Manistee County,1957-1964 + + + + + + 49 + 6 + Records, Trailer Visitors, Mason County,1957-1964 + + + + + + 49 + 7 + Records, Trailer Visitors, Missaukee County,1957-1964 + + + + + + 49 + 8 + Records, Trailer Visitors, Muskegon County,1957-1964 + + + + + + 49 + 9 + Records, Trailer Visitors, Newaygo County,1957-1964 + + + + + + 49 + 10 + Records, Trailer Visitors, Oceana County,1957-1964 + + + + + + 49 + 11 + Records, Trailer Visitors, Wexford County,1957-1964 + + + + + + 49 + 12 + Records, Meetings in District,1958 + + + + + + 49 + 13 + Records, Trailer Visitors, Benzie County,1957-1964 + + + + + + 49 + 14 + Records, Trailer Visitors, Leelanau County,1957-1964 + + + + + + 49 + 15 + Records, Trailer Visitors, Mason County,1957-1964 + + + + + + 49 + 16 + Records, Trailer Visitors, Oceana County,1957-1964 + + + + + + 49 + 17 + Records, Trailer Visitors, Wexford County,1957-1964 + + + + + + 49 + 18 + Records, Muskegon Office Visitors,1957 + + + + + + 49 + 19 + Records, Mobile Office Tour, District Letter,undated + + + + + + 49 + 20 + Records, Trailer Equipment,undated + + + + + + 49 + 21 + Records, General, V,1959-1964 + + + + + + 49 + 22 + Records, 9th District School Groups,undated + + + + + + 49 + 23 + Records, Visitors School Groups,undated + + + + + + 49 + 24 + Records, Visitors,1957 + + + + + + 49 + 25 + Records, Visitors,1959-1960 + + + + + + 49 + 26 + Records, Visitors,1961-1962 + + + + + + 49 + 27 + Records, Visitors,1963 + + + + + + 49 + 28 + Records, Visitors,1964 + + + + + + 49 + 29 + Records, Miscellaneous, W,undated + + + + + + 49 + 30 + Records, Williams, Fitch R.,undated + + + + + + 49 + 31 + Records, Guest Books,1957-1960, 1957-1962 + + + + + + 49 + 32 + Records, Miscellaneous Letters Re: Landrum-Griffin Act, Out of 9th District Michigan - 4 folders,undated + + + + + + 49 + 33 + Records, Miscellaneous Letters Re: Landrum-Griffin Act, Out of 9th District Michigan - 4 folders,undated + + + + + + 49 + 34 + Records, Miscellaneous Letters Re: Landrum-Griffin Act, Out of 9th District Michigan - 4 folders,undated + + + + + + 49 + 35 + Records, Miscellaneous Letters Re: Landrum-Griffin Act, Out of 9th District Michigan - 4 folders,undated + + + + + + 49 + 36 + Records, Miscellaneous Letters Re: Landrum-Griffin Act, Out of State - 10 folders,undated + + + + + + 49 + 37 + Records, Miscellaneous Letters Re: Landrum-Griffin Act, Out of State - 10 folders,undated + + + + + + 49 + 38 + Records, Miscellaneous Letters Re: Landrum-Griffin Act, Out of State - 10 folders,undated + + + + + + 49 + 39 + Records, Miscellaneous Letters Re: Landrum-Griffin Act, Out of State - 10 folders,undated + + + + + + 49 + 40 + Records, Miscellaneous Letters Re: Landrum-Griffin Act, Out of State - 10 folders,undated + + + + + + 49 + 41 + Records, Miscellaneous Letters Re: Landrum-Griffin Act, Out of State - 10 folders,undated + + + + + + 49 + 42 + Records, Miscellaneous Letters Re: Landrum-Griffin Act, Out of State - 10 folders,undated + + + + + + 49 + 43 + Records, Miscellaneous Letters Re: Landrum-Griffin Act, Out of State - 10 folders,undated + + + + + + 49 + 44 + Records, Miscellaneous Letters Re: Landrum-Griffin Act, Out of State - 10 folders,undated + + + + + + 49 + 43 + Records, Miscellaneous Letters Re: Landrum-Griffin Act, Out of State - 10 folders,undated + + + + + + 50 + 1 + Records, Computer Index, Entries Arranged by Date,1977 + + + + + + 51 + 1 + Records, Computer Index, Entries Arranged by Document Number,1977 + + + + + + 52 + 1 + Records, Computer Index, Entries Arranged by Name,1977 + + + + + + 53 + 1 + Records, Computer Index, Entries Arranged by City,1977 + + + + + + 54 + 1 + Records, Computer Index, Entries Arranged by Topic,1977 + + + + + + 55 + 1 + Records, 1978, Weekly Filing Report, Sorted by Aide's Initials - 3 binders, Computer Index Date, ID#, Aide's Initials, Name of Correspondent Issue,1977 + + + + + + 55 + 2 + Records, 1978, Weekly Filing Report, Sorted by Aide's Initials - 3 binders, Computer Index Date, ID#, Aide's Initials, Name of Correspondent Issue,1977 + + + + + + 55 + 3 + Records, 1978, Weekly Filing Report, Sorted by Aide's Initials - 3 binders, Computer Index Date, ID#, Aide's Initials, Name of Correspondent Issue,1977 + + + + + + 56 + 1 + Records, 1978, Weekly Filing Report, Sorted by Constituents - 2 binders,1977 + + + + + + 56 + 2 + Records, 1978, Weekly Filing Report, Sorted by Constituents - 2 binders,1977 + + + + + + 57 + 1 + Records, 1978, Daily Filing Report, Sorted by Document Number - 3 binders,1977 + + + + + + 57 + 2 + Records, 1978, Daily Filing Report, Sorted by Document Number - 3 binders,1977 + + + + + + 57 + 3 + Records, 1978, Daily Filing Report, Sorted by Document Number - 3 binders,1977 + + + + + + 58 + 1 + Records, Milk (S Con Res 88),1966 + + + + + + 58 + 2 + Records, Rural Electrification Administration (S 3337),1966 + + + + + + 58 + 3 + Records, Community Development,1966 + + + + + + 58 + 4 + Records, Humane Treatment of Animals,1966 + + + + + + 58 + 5 + Records, Food for Freedom,1966 + + + + + + 58 + 6 + Records, Farmers and Inflation,1966 + + + + + + 58 + 7 + Records, Meat Inspection Act,1966 + + + + + + 58 + 8 + Records, Appropriations, General,1966 + + + + + + 58 + 9 + Records, Agriculture Appropriations (HR 14596),1966 + + + + + + 58 + 10 + Records, School Lunch Program (HR 14596),1966 + + + + + + 58 + 11 + Records, Reserve Call Up,1966 + + + + + + 58 + 12 + Records, Housing, Mortgage Money,1966 + + + + + + 58 + 13 + Records, Appropriations, Independent Office,1966 + + + + + + 58 + 14 + Records, Appropriations, Health, Education and Welfare,1966 + + + + + + 58 + 15 + Records, Rent Subsidy,1966 + + + + + + 58 + 16 + Records, FDIC Insurance,1966 + + + + + + 58 + 17 + Records, Rate Controls (S 3687),1966 + + + + + + 58 + 18 + Records, Demonstration cities,1966 + + + + + + 58 + 19 + Records, Tight Mortgage Money,1966 + + + + + + 58 + 20 + Records, Bank Holding Act,1966 + + + + + + 58 + 21 + Records, Certificates of Deposit,1966 + + + + + + 58 + 22 + Records, Participation Sales Act (S 3283),1966 + + + + + + 58 + 23 + Records, Silver Dollars (S 3409),1966 + + + + + + 58 + 24 + Records, Truth in Lending (S 2275),1966 + + + + + + 58 + 25 + Records, Cease and Desist (S 3158),1966 + + + + + + 58 + 26 + Records, Tight Mortgage Money,1966 + + + + + + 58 + 27 + Records, Civil Aeronautics Board,1966 + + + + + + 58 + 28 + Records, Urban Renewal,1966 + + + + + + 58 + 29 + Records, Comparison of Increased Mortgage Purchase Authority,1966 + + + + + + 58 + 30 + Records, Commerce, General,1966 + + + + + + 58 + 31 + Records, Auto Safety,1966 + + + + + + 58 + 32 + Records, Federal Maritime Act,1966 + + + + + + 58 + 33 + Records, Military Cargo Bill (S 3297),1966 + + + + + + 58 + 34 + Records, Highway Beautification Act of 1966,1966 + + + + + + 58 + 35 + Records, Higher Education Act, Title 1,1966 + + + + + + 58 + 36 + Records, Federal Teachers Corps,1966 + + + + + + 58 + 37 + Records, Lake Erie, Ohio River Canal Project,1966 + + + + + + 58 + 38 + Records, Armed Services, Genera,1966 + + + + + + 58 + 39 + Records, Veterans Pensions (HR 17488),1966 + + + + + + 58 + 40 + Records, Armed Services (HR 17195),1966 + + + + + + 58 + 41 + Records, National Guard Retirement Benefits,1966 + + + + + + 58 + 42 + Records, Health Benefits (HR 14088),1966 + + + + + + 58 + 43 + Records, Veterans (HR 11343),1966 + + + + + + 58 + 44 + Records, Draft Laws, Teachers,1966 + + + + + + 58 + 45 + Records, Military Pay Raise (S 2950),1966 + + + + + + 58 + 46 + Records, Reserve Call-Up,1966 + + + + + + 58 + 47 + Records, Selective Service,1966 + + + + + + 58 + 48 + Records, Nickel Release,1966 + + + + + + 58 + 49 + Records, Banking, General,1966 + + + + + + 58 + 50 + Records, Highway Safety, Federal Highway Act,1966 + + + + + + 58 + 51 + Records, Truth in Packaging (S 985),1966 + + + + + + 58 + 52 + Records, Hirshorn Museum Site,1966 + + + + + + 58 + 53 + Records, Standards of Verification, Shipping (S 3250),1966 + + + + + + 58 + 54 + Records, Cotton Amendment, Truth in Lending,1966 + + + + + + 58 + 55 + Records, Railroad Services, Curtailing Employee Hours (S 2180),1966 + + + + + + 58 + 56 + Records, District of Columbia – General,1966 + + + + + + 58 + 57 + Records, District of Columbia, Home Rule,1966 + + + + + + 58 + 58 + Records, Inflation,1966 + + + + + + 58 + 59 + Records, Joint Economic Committee,1966 + + + + + + 58 + 60 + Records, Financial - Trade/Taxes/Social Security,1966 + + + + + + 58 + 61 + Records, General,1966 + + + + + + 58 + 62 + Records, HR 14363,1966 + + + + + + 58 + 63 + Records, Revenue Sharing,1966 + + + + + + 58 + 64 + Records, Clay Depletion (HR 13103),1966 + + + + + + 58 + 65 + Records, Townsend Type Plan (HR 2841),1966 + + + + + + 58 + 66 + Records, HR 12794,1966 + + + + + + 58 + 67 + Records, Taxes,1966 + + + + + + 58 + 68 + Records, Moving Expense Plan,1966 + + + + + + 58 + 69 + Records, Finance (S 3565),1966 + + + + + + 58 + 70 + Records, Teachers Tax Relief (S 3565),1966 + + + + + + 58 + 71 + Records, Taxes, Political Contribution,1966 + + + + + + 58 + 72 + Records, Social Security - 2 folders,1966 + + + + + + 58 + 73 + Records, Social Security - 2 folders,1966 + + + + + + 58 + 74 + Records, Lottery,1966 + + + + + + 58 + 75 + Records, Earned Income Social Security Limitations (HR 14408),1966 + + + + + + 58 + 76 + Records, Education Tax Credit, Higher Education (S 3581),1966 + + + + + + 58 + 77 + Records, Medicare,1966 + + + + + + 59 + 1 + Records, Vietnam - 7 folders,1966 + + + + + + 59 + 2 + Records, Vietnam - 7 folders,1966 + + + + + + 59 + 3 + Records, Vietnam - 7 folders,1966 + + + + + + 59 + 4 + Records, Vietnam - 7 folders,1966 + + + + + + 59 + 5 + Records, Vietnam - 7 folders,1966 + + + + + + 59 + 6 + Records, Vietnam - 7 folders,1966 + + + + + + 59 + 7 + Records, Vietnam - 7 folders,1966 + + + + + + 59 + 8 + Records, Bayh Amendment (S 3584),1966 + + + + + + 59 + 9 + Records, Baltic States,1966 + + + + + + 59 + 10 + Records, Convention on Elimination of Racial Discrimination,1966 + + + + + + 59 + 11 + Records, Admitting Red China to United Nations,1966 + + + + + + 59 + 12 + Records, Foreign Relations, Rhodesia,1966 + + + + + + 59 + 13 + Records, Treaties, Consular Convention,1966 + + + + + + 59 + 14 + Records, Hays Bill (HR 6277),1966 + + + + + + 59 + 15 + Records, United Nations,1966 + + + + + + 59 + 16 + Records, Legislation, General - 7 folders,1966 + + + + + + 59 + 17 + Records, Legislation, General - 7 folders,1966 + + + + + + 59 + 18 + Records, Legislation, General - 7 folders,1966 + + + + + + 59 + 19 + Records, Legislation, General - 7 folders,1966 + + + + + + 59 + 20 + Records, Legislation, General - 7 folders,1966 + + + + + + 59 + 21 + Records, Legislation, General - 7 folders,1966 + + + + + + 59 + 22 + Records, Legislation, General - 7 folders,1966 + + + + + + 59 + 23 + Records, Government Operations, General,1966 + + + + + + 59 + 24 + Records, Genocide,1966 + + + + + + 59 + 25 + Records, Foreign Aid, Vietnam, Trade with Commies,1966 + + + + + + 59 + 26 + Records, Central Intelligence Agency,1966 + + + + + + 59 + 27 + Records, Department of Natural Resources (S 2435),1966 + + + + + + 59 + 28 + Records, Department of Transportation Act (HR 15705),1966 + + + + + + 59 + 29 + Records, Miscellaneous,1966 + + + + + + 60 + 1 + Records, Unemployment Compensation (HR 15119),undated + + + + + + 60 + 2 + Records, Social Workers Training Act (S 3432),undated + + + + + + 60 + 3 + Records, S 1203 Form Letter,undated + + + + + + 60 + 4 + Records, Finance, Form Letter (HR 13103),undated + + + + + + 60 + 5 + Records, Insurance Private Pension (S 1575),undated + + + + + + 60 + 6 + Records, Ways and Means Committee,undated + + + + + + 60 + 7 + Records, Finance, Form Letter (HR 15119),undated + + + + + + 60 + 8 + Records, Tariffs,undated + + + + + + 60 + 9 + Records, HR 10 - 2 folders,undated + + + + + + 60 + 10 + Records, HR 10 - 2 folders,undated + + + + + + 60 + 11 + Records, Internal Revenue (Self-Employed),undated + + + + + + 60 + 12 + Records, Veterans Pensions (HR 17488),undated + + + + + + 60 + 13 + Records, Foreign Relations, General,undated + + + + + + 60 + 14 + Records, Captive Nations,undated + + + + + + 60 + 15 + Records, Foreign Aid - General,undated + + + + + + 60 + 16 + Records, Foreign Affairs, Egypt,undated + + + + + + 60 + 17 + Records, Red China,undated + + + + + + 60 + 18 + Records, Radical Declaration,undated + + + + + + 60 + 19 + Records, India,undated + + + + + + 60 + 20 + Records, Atomic Test Ban Treaty,undated + + + + + + 60 + 21 + Records, Vietnam,undated + + + + + + 60 + 22 + Records, Foreign Relations, Vietnam/Stop Wars,undated + + + + + + 60 + 23 + Records, Rhodesia, South Africa,undated + + + + + + 60 + 24 + Records, Department of Housing and Urban Development,1966 + + + + + + 60 + 25 + Records, Grand Canyon Region Dams - 2 folders,1966 + + + + + + 60 + 26 + Records, Grand Canyon Region Dams - 2 folders,1966 + + + + + + 60 + 27 + Records, Colorado River Basin,1966 + + + + + + 60 + 28 + Records, Sleeping Bear Dunes,1966 + + + + + + 60 + 29 + Records, Indiana Dunes (H R 51),1966 + + + + + + 60 + 30 + Records, Indians,1966 + + + + + + 60 + 31 + Records, H.R. 12927 - Optometry,1966 + + + + + + 60 + 32 + Records, Natural Resources (S. 360),1966 + + + + + + 60 + 33 + Records, Seaway Tolls,1966 + + + + + + 60 + 34 + Records, Reclamation Projects (S. 620) - Small Act (Against),1966 + + + + + + 60 + 35 + Records, Plymouth Rock Park (S. 3477),1966 + + + + + + 60 + 36 + Records, Redwoods,1966 + + + + + + 60 + 37 + Records, Pictured Rocks,1966 + + + + + + 60 + 38 + Records, General,1966 + + + + + + 60 + 39 + Records, Import Dumping,1966 + + + + + + 60 + 40 + Records, Sugar Imports,1966 + + + + + + 60 + 41 + Records, Steel Imports,1966 + + + + + + 60 + 42 + Records, Tariffs,1966 + + + + + + 60 + 43 + Records, H.R. 13286 - Community Antenna - T.V.,1966 + + + + + + 60 + 44 + Records, FL Vitamins - 3 folders (H.Con. R. 807),1966 + + + + + + 60 + 45 + Records, FL Vitamins - 3 folders (H.Con. R. 807),1966 + + + + + + 60 + 46 + Records, FL Vitamins - 3 folders (H.Con. R. 807),1966 + + + + + + 60 + 47 + Records, H.R. 15963 S. 3010 Department of Transportation,1966 + + + + + + 60 + 48 + Records, Judiciary, General,1966 + + + + + + 60 + 49 + Records, State Taxation of Interstate Commerce,1966 + + + + + + 60 + 50 + Records, Organizational Conspiracies Act of 1966,1966 + + + + + + 60 + 51 + Records, Civil Rights, General,1966 + + + + + + 60 + 52 + Records, Equal Employment Opportunity,1966 + + + + + + 60 + 53 + Records, Race Riots,1966 + + + + + + 60 + 54 + Records, Civil Rights IV, Against Form Letter,1966 + + + + + + 60 + 55 + Records, Civil Rights, General,1966 + + + + + + 60 + 56 + Records, Civil Rights, For,1966 + + + + + + 60 + 57 + Records, Civil Rights, Against,1966 + + + + + + 61 + 1 + Records, Civil Rights, Constituent Correspondence, A-S,1966 + + + + + + 61 + 2 + Records, Civil Rights, Constituent Correspondence, T-Z,1966 + + + + + + 61 + 3 + Records, Petitions, Civil Rights,1966 + + + + + + 61 + 4 + Records, Child Support S. 3555,1966 + + + + + + 61 + 5 + Records, Equal Rights Amendment,1966 + + + + + + 61 + 6 + Records, Dodd Firearms Bill (S 1592),1966 + + + + + + 61 + 7 + Records, Eastern Orthodox Church (S Res 115),1966 + + + + + + 61 + 8 + Records, Firearms (S 1592), 2 folders,1966 + + + + + + 61 + 9 + Records, Firearms (S 1592), 2 folders,1966 + + + + + + 61 + 10 + Records, Supreme Court Decisions,1966 + + + + + + 61 + 11 + Records, Prayer Amendment S.J. 148 - 3 folders,1966 + + + + + + 61 + 12 + Records, Prayer Amendment S.J. 148 - 3 folders,1966 + + + + + + 61 + 13 + Records, Prayer Amendment S.J. 148 - 3 folders,1966 + + + + + + 61 + 14 + Records, Prayer Form Letter,1966 + + + + + + 62 + 1 + Records, Crime Bill,1966 + + + + + + 62 + 2 + Records, Crime Legislation S.3778,1966 + + + + + + 62 + 3 + Records, Judiciary, Repeal 16th Amendment,1966 + + + + + + 62 + 4 + Records, Recovery, Incorporated,1966 + + + + + + 62 + 5 + Records, American Flag, Desecration H.R. 13942,1966 + + + + + + 62 + 6 + Records, Law Enforcement Officers Survivors Compensation (S. 3165),1966 + + + + + + 62 + 7 + Records, Patents (S 1809),1966 + + + + + + 62 + 8 + Records, Marshalls Pay Raise (S 3507, H.R. 15818),1966 + + + + + + 62 + 9 + Records, Senator Hart's Bill (S 2568),1966 + + + + + + 62 + 10 + Records, Jury Reform Proposals,1966 + + + + + + 62 + 11 + Records, Restraint of Travel (S. 3243),1966 + + + + + + 62 + 12 + Records, Inventions Act (S 2715),1966 + + + + + + 62 + 13 + Records, Judicial Review Bill (S 2097),1966 + + + + + + 62 + 14 + Records, Apportionment (S J Res 103),1966 + + + + + + 62 + 15 + Records, Juveniles,1966 + + + + + + 62 + 16 + Records, Voting, Age and Rights,1966 + + + + + + 62 + 17 + Records, Equal Rights for Women (S J 85),1966 + + + + + + 62 + 18 + Records, Televising of Pro Football Games (S 950),1966 + + + + + + 62 + 19 + Records, Merger of Pro Football Leagues (S 3817),1966 + + + + + + 62 + 20 + Records, Labor and Public Works, General, 2 folders,1966 + + + + + + 62 + 21 + Records, Labor and Public Works, General, 2 folders,1966 + + + + + + 62 + 22 + Records, Elementary Education Act,1966 + + + + + + 62 + 23 + Records, Education,1966 + + + + + + 62 + 24 + Records, Education, Junior Colleges,1966 + + + + + + 62 + 25 + Records, Education, General,1966 + + + + + + 62 + 26 + Records, Adult Basic Education (S 3046),1966 + + + + + + 62 + 27 + Records, Teachers Pensions,1966 + + + + + + 62 + 28 + Records, Equal Education Act of ’67 (Busing),1966 + + + + + + 62 + 29 + Records, Health Planning and Public Health Services Amendment,1966 + + + + + + 62 + 30 + Records, Higher Education Act,1966 + + + + + + 62 + 31 + Records, National Defense Education Act,1966 + + + + + + 62 + 32 + Records, National Education Association Program,1966 + + + + + + 62 + 33 + Records, War on Poverty (S 3164), 2 folders,1966 + + + + + + 62 + 34 + Records, War on Poverty (S 3164), 2 folders,1966 + + + + + + 62 + 35 + Records, Educational Opportunity Corporations (S 3164),1966 + + + + + + 62 + 36 + Records, Grants to Birmingham and Grosse Pointe,1966 + + + + + + 62 + 37 + Records, Health, General,1966 + + + + + + 62 + 38 + Records, September 16, 2 folders,1966 + + + + + + 62 + 39 + Records, September 16, 2 folders,1966 + + + + + + 62 + 40 + Records, September 19,1966 + + + + + + 62 + 41 + Records, September 21,1966 + + + + + + 62 + 42 + Records, September 30,1966 + + + + + + 62 + 43 + Records, September 31,1966 + + + + + + 62 + 44 + Records, October 7,1966 + + + + + + 62 + 45 + Records, October 8,1966 + + + + + + 62 + 46 + Records, October 12, 2 folders,1966 + + + + + + 62 + 47 + Records, October 12, 2 folders,1966 + + + + + + 62 + 48 + Records, October 14,1966 + + + + + + 62 + 49 + Records, October 24,1966 + + + + + + 62 + 50 + Records, October 28, 2 folders,1966 + + + + + + 62 + 51 + Records, October 28, 2 folders,1966 + + + + + + 62 + 52 + Records, October 31,1966 + + + + + + 62 + 53 + Records, November 4,1966 + + + + + + 62 + 54 + Records, November 7,1966 + + + + + + 62 + 55 + Records, November 10,1966 + + + + + + 63 + 1 + Records, November 12,1966 + + + + + + 63 + 2 + Records, November 18,1966 + + + + + + 63 + 3 + Records, November 23,1966 + + + + + + 63 + 4 + Records, November 28,1966 + + + + + + 63 + 5 + Records, December 6,1966 + + + + + + 63 + 6 + Records, January 16,1966 + + + + + + 63 + 7 + Records, February 17,1966 + + + + + + 63 + 8 + Records, Allied Health Professions Act (S 3102),1966 + + + + + + 63 + 9 + Records, Candy Bill (HR 7042),1966 + + + + + + 63 + 10 + Records, Drug Safety Act of 1966 (S 3194),1966 + + + + + + 63 + 11 + Records, Handicapped Children,1966 + + + + + + 63 + 12 + Records, Emergency Hospital Association Act,1966 + + + + + + 63 + 13 + Records, Hospital and Medical Modernization Amendments (S Res 3009),1966 + + + + + + 63 + 14 + Records, Kerbiozen,1966 + + + + + + 63 + 15 + Records, National Eye Institute (S 3168),1966 + + + + + + 63 + 16 + Records, Food and Drug Regulations on Vitamins,1966 + + + + + + 63 + 17 + Records, Recruitment (S 2974),1966 + + + + + + 63 + 18 + Records, Labor, General,1966 + + + + + + 63 + 19 + Records, Airline Strike,1966 + + + + + + 63 + 20 + Records, Railroad Retirement Act (PL 89-212),1966 + + + + + + 63 + 21 + Records, Airline Strike - 3 folders,1966 + + + + + + 63 + 22 + Records, Airline Strike - 3 folders,1966 + + + + + + 63 + 23 + Records, Airline Strike - 3 folders,1966 + + + + + + 63 + 24 + Records, Free Collective Bargaining, Airline Strike,1966 + + + + + + 63 + 25 + Records, Banning Striking,1966 + + + + + + 63 + 26 + Records, Labor Court Bill (S 3631),1966 + + + + + + 63 + 27 + Records, Common Situs Picketing (HR 10027),1966 + + + + + + 63 + 28 + Records, Industry Wide Strike (S J Res 194),1966 + + + + + + 63 + 29 + Records, National Labor Relations Act (S 3006),1966 + + + + + + 63 + 30 + Records, Manpower (S 2974),1966 + + + + + + 63 + 31 + Records, Mine Safety (HR 8989),1966 + + + + + + 63 + 32 + Records, Minimum Wage,1966 + + + + + + 63 + 33 + Records, (HR 13712) - 4 folders,1966 + + + + + + 63 + 34 + Records, (HR 13712) - 4 folders,1966 + + + + + + 63 + 35 + Records, (HR 13712) - 4 folders,1966 + + + + + + 63 + 36 + Records, (HR 13712) - 4 folders,1966 + + + + + + 63 + 37 + Records, Out of District,1966 + + + + + + 63 + 38 + Records, Out of State - 2 folders,1966 + + + + + + 63 + 39 + Records, Out of State - 2 folders,1966 + + + + + + 63 + 40 + Records, National Labor Relations Act, Extend to Cover Agriculture,1966 + + + + + + 63 + 41 + Records, Hawkins Bill (HR 10065),1966 + + + + + + 63 + 42 + Records, Taft-Hartley, Repeal of Section 14b,1966 + + + + + + 63 + 43 + Records, Wayne Morse Referrals,1966 + + + + + + 63 + 44 + Records, Sheltered Workshops,1966 + + + + + + 63 + 45 + Records, Unemployment Compensation (HR 15119),1966 + + + + + + 63 + 46 + Records, Migrant Worker (S 1864),1966 + + + + + + 63 + 47 + Records, Veterans, GI Bill (S 3303),1966 + + + + + + 63 + 48 + Records, Out of State, No Acknowledgment,1966 + + + + + + 63 + 49 + Records, Unemployment Compensation (HR 15119),1966 + + + + + + 63 + 50 + Records, Veterans Pensions (HR 13499),1966 + + + + + + 63 + 51 + Records, District of Columbia, Home Rule,undated + + + + + + 63 + 52 + Records, Cold War, GI Bill, Flight Training (S 3303),1966 + + + + + + 63 + 53 + Records, Veterans Drugs (HR 11934),1966 + + + + + + 63 + 54 + Records, Postal Legislation, General,1966 + + + + + + 63 + 55 + Records, Post Office, Raise Letter Carriers to PFS 5,1966 + + + + + + 63 + 56 + Records, Obscene Literature,1966 + + + + + + 63 + 57 + Records, Postal Employees Workweek, Public Law 89-301,1966 + + + + + + 63 + 58 + Records, Construction on Panama Canal (3289),1966 + + + + + + 63 + 59 + Records, Civil Service Retirement (S 898),1966 + + + + + + 63 + 60 + Records, Federal Employees Salary Raises (HR 14122),1966 + + + + + + 63 + 61 + Records, Lottery Tickets,1966 + + + + + + 63 + 62 + Records, Postal Legislation (HR 14904),1966 + + + + + + 63 + 63 + Records, Parcel Post (HR 12367),1966 + + + + + + 63 + 64 + Records, Post Office, Life Insurance Bill (HR 6926),1966 + + + + + + 64 + 1 + Records, Mail to Vietnam (HR 13448),1966 + + + + + + 64 + 2 + Records, Public Works, General,1966 + + + + + + 64 + 3 + Records, Tennessee Valley Authority,1966 + + + + + + 64 + 4 + Records, Alteration of West Front of Capitol,1966 + + + + + + 64 + 5 + Records, Pollution, Public Works, General,1966 + + + + + + 64 + 6 + Records, Mackinac Bridge,1966 + + + + + + 64 + 7 + Records, General,1966 + + + + + + 64 + 8 + Records, Administrative Counsel, Ombudsman (S 984),1966 + + + + + + 64 + 9 + Records, Talking Books (S 3093),1966 + + + + + + 64 + 10 + Records, Powell, Adam Clayton, Standards and Conduct,1966 + + + + + + 64 + 11 + Records, S. Res. 122 and 123,1966 + + + + + + 64 + 12 + Records, Dodd Hearings,1966 + + + + + + 64 + 13 + Records, Select Committee on Standards, Douglas,1966 + + + + + + 64 + 14 + Records, Select Committee on Small Business,1966 + + + + + + 64 + 15 + Records, House Un-American Activities, General,1966 + + + + + + 64 + 16 + Records, Pool Bill (HR 12047),1966 + + + + + + 64 + 17 + Records, Communism,1966 + + + + + + 64 + 18 + Records, Pictured Rocks National Lakeshore (S 1143),1966 + + + + + + 64 + 19 + Records, Commerce Committee,1967 + + + + + + 64 + 20 + Records, Aviation,1967 + + + + + + 64 + 21 + Records, Auto Master Keys, Unauthorized Avail.,1967 + + + + + + 64 + 22 + Records, Rail Road Passenger and Mail,1967 + + + + + + 64 + 23 + Records, Transportation Study,1967 + + + + + + 64 + 24 + Records, Riot Insurance,1967 + + + + + + 64 + 25 + Records, Surface Transportation,1967 + + + + + + 64 + 26 + Records, Motor Carriers Through Routes and Joint Rates,1967 + + + + + + 64 + 27 + Records, Railroad, General,1967 + + + + + + 64 + 28 + Records, Railroad Hours of Service (S. 923),1967 + + + + + + 64 + 29 + Records, Discontinuance of Railroad Service,1967 + + + + + + 64 + 30 + Records, ABC-ITT Merger,1967 + + + + + + 64 + 31 + Records, Federal Power Commission Act,1967 + + + + + + 64 + 32 + Records, Amendments,1967 + + + + + + 64 + 33 + Records, Michigan’s Time Zone,1967 + + + + + + 64 + 34 + Records, Communications,1967 + + + + + + 64 + 35 + Records, Educational TV and Radio Network,1967 + + + + + + 64 + 36 + Records, Electronic Interconnection of Michigan,1967 + + + + + + 64 + 37 + Records, Schools,1967 + + + + + + 64 + 38 + Records, General,1967 + + + + + + 64 + 39 + Records, Legislative Assistant Files,1967 + + + + + + 64 + 40 + Records, Auto Insurance,1967 + + + + + + 64 + 41 + Records, Auto Safety, Traffic Safety, 2 folders,1967 + + + + + + 64 + 42 + Records, Auto Safety, Traffic Safety, 2 folders,1967 + + + + + + 64 + 43 + Records, Metric System (S. 441),1967 + + + + + + 64 + 44 + Records, Pornographic Literature,1967 + + + + + + 64 + 45 + Records, Tamper Proof Odometers (S. 1621),1967 + + + + + + 64 + 46 + Records, Federal Motor Vehicle Insurance,1967 + + + + + + 64 + 47 + Records, Guaranty Corporation,1967 + + + + + + 64 + 48 + Records, Labeling of Wood and Wood Products,1967 + + + + + + 64 + 49 + Records, Retail Sales, Consumer Protection,1967 + + + + + + 64 + 50 + Records, Quality Stabilization, Retail Trade Practices,1967 + + + + + + 64 + 51 + Records, Fire Research and Safety Act (S. 1124),1967 + + + + + + 64 + 52 + Records, Safety Regulations for Transportation of Natural Gas,1967 + + + + + + 64 + 53 + Records, Air and Water Pollution,1967 + + + + + + 64 + 54 + Records, Radio and TV Advertising, Alcohol and Cigarettes,1967 + + + + + + 64 + 55 + Records, FCC Fairness Doctrine, Cigarette Advertising,1967 + + + + + + 64 + 56 + Records, Merchant Marine and Fisheries Subcommittee, General,1967 + + + + + + 64 + 57 + Records, Merchant Marine and Fisheries Subcommittee, Great Lakes Lamprey Control,1967 + + + + + + 64 + 58 + Records, Merchant Marine and Fisheries Subcommittee, Alewives Control,1967 + + + + + + 64 + 59 + Records, Merchant Marine and Fisheries Subcommittee, Small Boat Safety,1967 + + + + + + 64 + 60 + Records, Merchant Marine and Fisheries Subcommittee, Lighthouse Service Retirees (HR 169),1967 + + + + + + 64 + 61 + Records, District of Columbia Home Rule,1967 + + + + + + 64 + 62 + Records, Finance Committee, 1966,undated + + + + + + 64 + 63 + Records, Finance Committee, 1967,undated + + + + + + 64 + 64 + Records, Finance Committee, General ,1967 + + + + + + 65 + 1 + Records, Finance Committee, L. A.,1967 + + + + + + 65 + 2 + Records, Finance Committee, Guaranteed Minimum Income,1967 + + + + + + 65 + 3 + Records, Finance Committee, Retirement Age,1967 + + + + + + 65 + 4 + Records, Finance Committee, Aid to Dependent Children,1967 + + + + + + 65 + 5 + Records, Finance Committee, Social Workers,1967 + + + + + + 65 + 6 + Records, Finance Committee, Social Security for House Version,1967 + + + + + + 65 + 7 + Records, Finance Committee, Readers' Digest, Tyranny in the IRS,1967 + + + + + + 65 + 8 + Records, Finance Committee, Educational Tax Credit,1967 + + + + + + 65 + 9 + Records, Finance Committee, Social Security: Critical of Conference Agreement,1967 + + + + + + 65 + 10 + Records, Finance Committee, Social Security, Kennedy Amendment,1967 + + + + + + 65 + 11 + Records, Finance Committee, Social Security, Welfare, Critical of Conference Report,1967 + + + + + + 65 + 12 + Records, Finance Committee, Social Security, Cost of Living,1967 + + + + + + 65 + 13 + Records, Finance Committee, Social Security, National Debt,1967 + + + + + + 65 + 14 + Records, Finance Committee, Social Security, Social Security Hospitals,1967 + + + + + + 65 + 15 + Records, Finance Committee, Social Security, Teachers,1967 + + + + + + 65 + 16 + Records, Finance Committee, Social Security, Union Proposals,1967 + + + + + + 65 + 17 + Records, Finance Committee, Social Security, Widows Benefits,1967 + + + + + + 65 + 18 + Records, Finance Committee, Social Security, A-Z (no Q, U) - 22 folders,1967 + + + + + + 65 + 19 + Records, Finance Committee, Social Security, A-Z (no Q, U) - 22 folders,1967 + + + + + + 65 + 20 + Records, Finance Committee, Social Security, A-Z (no Q, U) - 22 folders,1967 + + + + + + 65 + 21 + Records, Finance Committee, Social Security, A-Z (no Q, U) - 22 folders,1967 + + + + + + 65 + 22 + Records, Finance Committee, Social Security, A-Z (no Q, U) - 22 folders,1967 + + + + + + 65 + 23 + Records, Finance Committee, Social Security, A-Z (no Q, U) - 22 folders,1967 + + + + + + 65 + 24 + Records, Finance Committee, Social Security, A-Z (no Q, U) - 22 folders,1967 + + + + + + 65 + 25 + Records, Finance Committee, Social Security, A-Z (no Q, U) - 22 folders,1967 + + + + + + 65 + 26 + Records, Finance Committee, Social Security, A-Z (no Q, U) - 22 folders,1967 + + + + + + 65 + 27 + Records, Finance Committee, Social Security, A-Z (no Q, U) - 22 folders,1967 + + + + + + 65 + 28 + Records, Finance Committee, Social Security, A-Z (no Q, U) - 22 folders,1967 + + + + + + 65 + 29 + Records, Finance Committee, Social Security, A-Z (no Q, U) - 22 folders,1967 + + + + + + 65 + 30 + Records, Finance Committee, Social Security, A-Z (no Q, U) - 22 folders,1967 + + + + + + 65 + 31 + Records, Finance Committee, Social Security, A-Z (no Q, U) - 22 folders,1967 + + + + + + 65 + 32 + Records, Finance Committee, Social Security, A-Z (no Q, U) - 22 folders,1967 + + + + + + 65 + 33 + Records, Finance Committee, Social Security, A-Z (no Q, U) - 22 folders,1967 + + + + + + 65 + 34 + Records, Finance Committee, Social Security, A-Z (no Q, U) - 22 folders,1967 + + + + + + 65 + 35 + Records, Finance Committee, Social Security, A-Z (no Q, U) - 22 folders,1967 + + + + + + 65 + 36 + Records, Finance Committee, Social Security, A-Z (no Q, U) - 22 folders,1967 + + + + + + 65 + 37 + Records, Finance Committee, Social Security, A-Z (no Q, U) - 22 folders,1967 + + + + + + 65 + 38 + Records, Finance Committee, Social Security, A-Z (no Q, U) - 22 folders,1967 + + + + + + 65 + 39 + Records, Finance Committee, Social Security, A-Z (no Q, U) - 22 folders,1967 + + + + + + 65 + 40 + Records, Finance Committee, Social Security, General - 2 folders,1967 + + + + + + 65 + 41 + Records, Finance Committee, Social Security, General - 2 folders,1967 + + + + + + 65 + 42 + Records, Finance Committee, Social Security, Readers' Digest, Soundness of Social Security,1967 + + + + + + 65 + 43 + Records, Finance Committee, Social Security, Disabled, Handicapped,1967 + + + + + + 65 + 44 + Records, Finance Committee, Social Security, Improved Benefits,1967 + + + + + + 65 + 45 + Records, Finance Committee, Social Security, Earned Income Limitations,1967 + + + + + + 65 + 46 + Records, Finance Committee, Social Security, Medicare Aspects,1967 + + + + + + 65 + 47 + Records, Finance Committee, Social Security, Medicare, 2 folders,1967 + + + + + + 65 + 48 + Records, Finance Committee, Social Security, Medicare Drugs,1967 + + + + + + 65 + 49 + Records, Finance Committee, Social Security, Medical Exemptions for Elderly,1967 + + + + + + 65 + 50 + Records, Finance Committee, Social Security, Medicare Direct Billing/ Certification,1967 + + + + + + 65 + 51 + Records, Finance Committee, Social Security, Medicare Reimbursement,1967 + + + + + + 65 + 52 + Records, Finance Committee, Social Security, Podiatrists,1967 + + + + + + 65 + 53 + Records, Finance Committee, Social Security, Social Security for American Hospital Association,1967 + + + + + + 65 + 54 + Records, Finance Committee, Social Security, Chiropractors,1967 + + + + + + 65 + 55 + Records, Tariffs,1967 + + + + + + 65 + 56 + Records, Tariffs, Glass Imports,1967 + + + + + + 66 + 1 + Records, Finance, Honey Import Tariffs,1967 + + + + + + 66 + 2 + Records, Finance, Meat Import Quotas (S 1588),1967 + + + + + + 66 + 3 + Records, Finance, Mink Pelt Imports Tariff (S 1897),1967 + + + + + + 66 + 4 + Records, Finance, Steel Import Tariffs,1967 + + + + + + 66 + 5 + Records, Finance, Textile Imports Tariffs,1967 + + + + + + 66 + 6 + Records, Finance, Trade,1967 + + + + + + 66 + 7 + Records, Finance, Trade with Communists (Reds),1967 + + + + + + 66 + 8 + Records, Finance, Tax Increase, Pro,1967 + + + + + + 66 + 9 + Records, Finance, Surtax on Corporations, Con,1967 + + + + + + 66 + 10 + Records, Finance, Taxes, Taxes - 2 folders,1967 + + + + + + 66 + 11 + Records, Finance, Taxes, Taxes - 2 folders,1967 + + + + + + 66 + 12 + Records, Finance, Taxes, Retirees,1967 + + + + + + 66 + 13 + Records, Finance, Taxes, Fuel Taxes,1967 + + + + + + 66 + 14 + Records, Finance, Taxes, Corporate,1967 + + + + + + 66 + 15 + Records, Finance, Taxes, Children with Divorced Parents,1967 + + + + + + 66 + 16 + Records, Finance, Taxes, Single Person,1967 + + + + + + 66 + 17 + Records, Finance, Taxes, Interstate Equalization,1967 + + + + + + 66 + 18 + Records, Finance, Taxes, Service and Carrying Charges,1967 + + + + + + 66 + 19 + Records, Finance, Taxes, Loopholes,1967 + + + + + + 66 + 20 + Records, Finance, Taxes, Surtax Proposal,1967 + + + + + + 66 + 21 + Records, Finance, Taxes, 7% Investment Tax Credit,1967 + + + + + + 66 + 22 + Records, Finance, Taxes, Retirement Income,1967 + + + + + + 66 + 23 + Records, Finance, Taxes, Auto Excise,1967 + + + + + + 66 + 24 + Records, Finance, Taxes, Professional Corporations (S 1399),1967 + + + + + + 66 + 25 + Records, Finance, Head of Household Tax Benefits (S 35),1967 + + + + + + 66 + 26 + Records, Finance, Family Moving,1967 + + + + + + 66 + 27 + Records, Finance, Taxes,1967 + + + + + + 66 + 28 + Records, Finance, Presidential Election Campaign Fund,1967 + + + + + + 66 + 29 + Records, Finance, Churches,1967 + + + + + + 66 + 30 + Records, Finance, Liberty Amendment,1967 + + + + + + 66 + 31 + Records, Finance, Railroad Retirees,1967 + + + + + + 66 + 32 + Records, Finance, Sugar Imports,1967 + + + + + + 66 + 33 + Records, Finance, Interstate Commerce Taxation,1967 + + + + + + 66 + 34 + Records, Finance, Teachers Tax Deductions,1967 + + + + + + 66 + 35 + Records, Finance, Veterans,1967 + + + + + + 66 + 36 + Records, Finance, Veterans, Income Limitations Establishment of Small Tax Division in U.S. Tax Court,1967 + + + + + + 66 + 37 + Records, Finance, Human Investment Act (S 812),1967 + + + + + + 66 + 38 + Records, Finance, Tax Status of Professionals (S 1399) Personal Exemptions,1967 + + + + + + 66 + 39 + Records, Finance, Revenue Sharing,1967 + + + + + + 66 + 40 + Records, Finance, A-Z (No E, I, K, N, Q, U),1967 + + + + + + 66 + 41 + Records, Foreign Relations, General,1967 + + + + + + 66 + 42 + Records, Foreign Relations, Foreign Aid,1967 + + + + + + 66 + 43 + Records, Foreign Relations, General, A-Z (No I, Q),1967 + + + + + + 67 + 1 + Records, Foreign Relations, Poates Nomination,1967 + + + + + + 67 + 2 + Records, Foreign Relations, Africa, Congo,1967 + + + + + + 67 + 3 + Records, Foreign Relations, Captive Nations,1967 + + + + + + 67 + 4 + Records, Foreign Relations, Cuba,1967 + + + + + + 67 + 5 + Records, Foreign Relations, Disarmament,1967 + + + + + + 67 + 6 + Records, Foreign Relations, Expo '67,1967 + + + + + + 67 + 7 + Records, Foreign Relations, Foreign Service Information Officers Corps,1967 + + + + + + 67 + 8 + Records, Foreign Relations, England, Pound Devaluation,1967 + + + + + + 67 + 9 + Records, Foreign Relations, Foreign Policy,1967 + + + + + + 67 + 10 + Records, Foreign Relations, France,1967 + + + + + + 67 + 11 + Records, Foreign Relations, Foreign Affairs,1967 + + + + + + 67 + 12 + Records, Foreign Relations, Middle East, 2 folders,1967 + + + + + + 67 + 13 + Records, Foreign Relations, Middle East, 2 folders,1967 + + + + + + 67 + 14 + Records, Foreign Relations, Greece, Turkey,1967 + + + + + + 67 + 15 + Records, Foreign Relations, Human Rights, Genocide Treaties,1967 + + + + + + 67 + 16 + Records, Foreign Relations, Foreign Trade,1967 + + + + + + 67 + 17 + Records, Foreign Relations, Red China,1967 + + + + + + 67 + 18 + Records, Foreign Relations, Israel,1967 + + + + + + 67 + 19 + Records, Foreign Relations, Trading with Reds,1967 + + + + + + 67 + 20 + Records, Foreign Relations, Panama Canal,1967 + + + + + + 67 + 21 + Records, Foreign Relations, Rhodesia,1967 + + + + + + 67 + 22 + Records, Foreign Relations, United Nations,1967 + + + + + + 67 + 23 + Records, Foreign Relations, Russia,1967 + + + + + + 67 + 24 + Records, Foreign Relations, Outer Space Treaty,1967 + + + + + + 67 + 25 + Records, Foreign Relations, Nuclear Test Ban Treaty,1967 + + + + + + 67 + 26 + Records, Foreign Relations, Consular Treaty,1967 + + + + + + 67 + 27 + Records, Foreign Relations, Consular Treaty,1967 + + + + + + 67 + 28 + Records, Foreign Relations, Consular Treaty, A-Z (No I, X, Z),1967 + + + + + + 67 + 29 + Records, Foreign Relations, Consular Treaty, Right Wingers,1967 + + + + + + 67 + 30 + Records, Foreign Relations, Vietnam, Individuals Delegations,1967 + + + + + + 67 + 31 + Records, Foreign Relations, Manfield's Proposal to Put Vietnam Before UN,1967 + + + + + + 67 + 32 + Records, Foreign Relations, Cong. Laird’s Resolution, re: Vietnam,1967 + + + + + + 67 + 33 + Records, Foreign Relations, Vietnam, A-F, 7 folders,1967 + + + + + + 67 + 34 + Records, Foreign Relations, Vietnam, A-F, 7 folders,1967 + + + + + + 67 + 35 + Records, Foreign Relations, Vietnam, A-F, 7 folders,1967 + + + + + + 67 + 36 + Records, Foreign Relations, Vietnam, A-F, 7 folders,1967 + + + + + + 67 + 37 + Records, Foreign Relations, Vietnam, A-F, 7 folders,1967 + + + + + + 67 + 38 + Records, Foreign Relations, Vietnam, A-F, 7 folders,1967 + + + + + + 67 + 39 + Records, Foreign Relations, Vietnam, A-F, 7 folders,1967 + + + + + + 68 + 1 + Records, Foreign Relations, Vietnam, G-Z (No Q) - 18 folders,1967 + + + + + + 68 + 2 + Records, Foreign Relations, Vietnam, G-Z (No Q) - 18 folders,1967 + + + + + + 68 + 3 + Records, Foreign Relations, Vietnam, G-Z (No Q) - 18 folders,1967 + + + + + + 68 + 4 + Records, Foreign Relations, Vietnam, G-Z (No Q) - 18 folders,1967 + + + + + + 68 + 5 + Records, Foreign Relations, Vietnam, G-Z (No Q) - 18 folders,1967 + + + + + + 68 + 6 + Records, Foreign Relations, Vietnam, G-Z (No Q) - 18 folders,1967 + + + + + + 68 + 7 + Records, Foreign Relations, Vietnam, G-Z (No Q) - 18 folders,1967 + + + + + + 68 + 8 + Records, Foreign Relations, Vietnam, G-Z (No Q) - 18 folders,1967 + + + + + + 68 + 9 + Records, Foreign Relations, Vietnam, G-Z (No Q) - 18 folders,1967 + + + + + + 68 + 10 + Records, Foreign Relations, Vietnam, G-Z (No Q) - 18 folders,1967 + + + + + + 68 + 11 + Records, Foreign Relations, Vietnam, G-Z (No Q) - 18 folders,1967 + + + + + + 68 + 12 + Records, Foreign Relations, Vietnam, G-Z (No Q) - 18 folders,1967 + + + + + + 68 + 13 + Records, Foreign Relations, Vietnam, G-Z (No Q) - 18 folders,1967 + + + + + + 68 + 14 + Records, Foreign Relations, Vietnam, G-Z (No Q) - 18 folders,1967 + + + + + + 68 + 15 + Records, Foreign Relations, Vietnam, G-Z (No Q) - 18 folders,1967 + + + + + + 68 + 16 + Records, Foreign Relations, Vietnam, G-Z (No Q) - 18 folders,1967 + + + + + + 68 + 17 + Records, Foreign Relations, Vietnam, G-Z (No Q) - 18 folders,1967 + + + + + + 68 + 18 + Records, Foreign Relations, Vietnam, G-Z (No Q) - 18 folders,1967 + + + + + + 68 + 19 + Records, Foreign Relations, Government Operations,1967 + + + + + + 68 + 20 + Records, Interior and Insular Affairs, Sleeping Bear Dunes National Park,1967 + + + + + + 68 + 21 + Records, Interior and Insular Affairs, L.A./Interior Committee,1967 + + + + + + 68 + 22 + Records, Interior and Insular Affairs, Reconstruction of the Colorado River Dams,1967 + + + + + + 68 + 23 + Records, Interior and Insular Affairs, Conservation,1967 + + + + + + 68 + 24 + Records, Interior and Insular Affairs, Indians,1967 + + + + + + 68 + 25 + Records, Interior and Insular Affairs, Redwood National Park,1967 + + + + + + 68 + 26 + Records, Interior and Insular Affairs, Capital Punishment,1967 + + + + + + 68 + 27 + Records, Interior and Insular Affairs, Amendments to Bankruptcy Act,1967 + + + + + + 68 + 28 + Records, Interior and Insular Affairs Committee,1967 + + + + + + 68 + 29 + Records, Judiciary, Warren Report,1967 + + + + + + 68 + 30 + Records, Judiciary, General - 2 folders,1967 + + + + + + 68 + 31 + Records, Judiciary, General - 2 folders,1967 + + + + + + 68 + 32 + Records, Judiciary, Fairs,1967 + + + + + + 68 + 33 + Records, Judiciary, Apportionment,1967 + + + + + + 68 + 34 + Records, Judiciary, Copyright Law Revisions,1967 + + + + + + 68 + 35 + Records, Judiciary, Patent Law Revisions,1967 + + + + + + 68 + 36 + Records, Judiciary, Copyright Revisions, Public Room, Hotels, Motels,1967 + + + + + + 68 + 37 + Records, Judiciary, Copyright Revisions, Religious Activities,1967 + + + + + + 68 + 38 + Records, Judiciary, TV and Radio Stations,1967 + + + + + + 68 + 39 + Records, Civil Rights, Ervin Amendment to Civil Rights,1968 + + + + + + 68 + 40 + Records, Civil Rights, Civil Rights, Open Housing,1968 + + + + + + 69 + 1 + Records, Judiciary, Constitutional Amendments,1967 + + + + + + 69 + 2 + Records, Judiciary, Constitutional Conventions,1967 + + + + + + 69 + 3 + Records, Judiciary, Constitutional Amendments, District of Columbia,1967 + + + + + + 69 + 4 + Records, Judiciary, Issuance of Unsolicited Credit Cards,1967 + + + + + + 69 + 5 + Records, Judiciary, Internal Security,1967 + + + + + + 69 + 6 + Records, Judiciary, Electoral College Revisions,1967 + + + + + + 69 + 7 + Records, Judiciary, Carmichael, Brown, et al,1967 + + + + + + 69 + 8 + Records, Judiciary, Anti-Riot Legislation,1967 + + + + + + 69 + 9 + Records, Judiciary, Anti-Riot Bill,1967 + + + + + + 69 + 10 + Records, Judiciary, Detroit Riots - 2 folders,1967 + + + + + + 69 + 11 + Records, Judiciary, Detroit Riots - 2 folders,1967 + + + + + + 69 + 12 + Records, Judiciary, Crime Legislation - 2 folders,1967 + + + + + + 69 + 13 + Records, Judiciary, Crime Legislation - 2 folders,1967 + + + + + + 69 + 14 + Records, Judiciary, Crime and the Supreme Court,1967 + + + + + + 69 + 15 + Records, Judiciary, Juvenile Delinquency,1967 + + + + + + 69 + 16 + Records, Judiciary, Pornography,1967 + + + + + + 69 + 17 + Records, Judiciary, Desecration of the Flag,1967 + + + + + + 69 + 18 + Records, Judiciary, Holidays,1967 + + + + + + 69 + 19 + Records, Judiciary, Holiday Bill,1967 + + + + + + 69 + 20 + Records, Judiciary, Immigration,1967 + + + + + + 69 + 21 + Records, Judiciary, Wire Tapping,1967 + + + + + + 69 + 22 + Records, Judiciary, Survivors of Law Enforcement Officers, Compensation,1967 + + + + + + 69 + 23 + Records, Judiciary, Secret Service Protection of Jacqueline Kennedy,1967 + + + + + + 69 + 24 + Records, Judiciary, Voting - Lower Age Requirements,1967 + + + + + + 69 + 25 + Records, Judiciary, Impeach Justice Warren,1967 + + + + + + 69 + 26 + Records, Judiciary, Tenure of Supreme Court Justices,1967 + + + + + + 69 + 27 + Records, Judiciary, Supreme Court Decisions,1967 + + + + + + 69 + 28 + Records, Judiciary, Supreme Court Decisions - Teachers,1967 + + + + + + 69 + 29 + Records, Judiciary, Employment Defense Plants/Communist Activists,1967 + + + + + + 69 + 30 + Records, Judiciary, Supreme Court Decision, Against Recent Decisions,1967 + + + + + + 69 + 31 + Records, Judiciary, Constitutional Rights, Government Employees,1967 + + + + + + 69 + 32 + Records, Judiciary, Constitutional Rights, Demonstrations, Protests, Dissent ,1967 + + + + + + 69 + 33 + Records, Judiciary, Sale of Drugs by Licensed Practitioners,1967 + + + + + + 69 + 34 + Records, Judiciary, Anti-Trust and Monopolies,1967 + + + + + + 69 + 35 + Records, Judiciary, Retired Reservists,1967 + + + + + + 69 + 36 + Records, Judiciary, Prisoner of War Claims,1967 + + + + + + 69 + 37 + Records, Judiciary, Prayer Amendment - 2 folders,1967 + + + + + + 69 + 38 + Records, Judiciary, Prayer Amendment - 2 folders,1967 + + + + + + 69 + 39 + Records, Judiciary, Thurgood Marshall Nominations,1967 + + + + + + 69 + 40 + Records, Judiciary, Patman Act,1967 + + + + + + 69 + 41 + Records, Judiciary, U.S. Labor Court,1967 + + + + + + 69 + 42 + Records, Judiciary, Judicial Review, 1st Amendment,1967 + + + + + + 70 + 1 + Records, Judiciary, War Claims,1967 + + + + + + 70 + 2 + Records, Judiciary, Court of Labor Management Relations Act,1967 + + + + + + 70 + 3 + Records, Judiciary, National Court System Act,1967 + + + + + + 70 + 4 + Records, Judiciary, Gun Control - 2 folders,1967 + + + + + + 70 + 5 + Records, Judiciary, Gun Control - 2 folders,1967 + + + + + + 70 + 6 + Records, Judiciary, Miscellaneous,1967 + + + + + + 70 + 7 + Records, Judiciary, Visitors, Guest book, Oct 05 1965 - Jan 03 1966,1965-1966 + + + + + + 70 + 8 + Records, Judiciary, Visitors, Guest book, Mar 23 1962 - Sep 30 1965,1962-1965 + + + + + + 70 + 9 + Records, General Legislative, Correspondence, A-G - 11 folders,1967 + + + + + + 70 + 10 + Records, General Legislative, Correspondence, A-G - 11 folders,1967 + + + + + + 70 + 11 + Records, General Legislative, Correspondence, A-G - 11 folders,1967 + + + + + + 70 + 12 + Records, General Legislative, Correspondence, A-G - 11 folders,1967 + + + + + + 70 + 13 + Records, General Legislative, Correspondence, A-G - 11 folders,1967 + + + + + + 70 + 14 + Records, General Legislative, Correspondence, A-G - 11 folders,1967 + + + + + + 70 + 15 + Records, General Legislative, Correspondence, A-G - 11 folders,1967 + + + + + + 70 + 16 + Records, General Legislative, Correspondence, A-G - 11 folders,1967 + + + + + + 70 + 17 + Records, General Legislative, Correspondence, A-G - 11 folders,1967 + + + + + + 70 + 18 + Records, General Legislative, Correspondence, A-G - 11 folders,1967 + + + + + + 70 + 19 + Records, General Legislative, Correspondence, A-G - 11 folders,1967 + + + + + + 71 + 1 + Records, General Legislative, Correspondence, H-L - 8 folders,1967 + + + + + + 71 + 2 + Records, General Legislative, Correspondence, H-L - 8 folders,1967 + + + + + + 71 + 3 + Records, General Legislative, Correspondence, H-L - 8 folders,1967 + + + + + + 71 + 4 + Records, General Legislative, Correspondence, H-L - 8 folders,1967 + + + + + + 71 + 5 + Records, General Legislative, Correspondence, H-L - 8 folders,1967 + + + + + + 71 + 6 + Records, General Legislative, Correspondence, H-L - 8 folders,1967 + + + + + + 71 + 7 + Records, General Legislative, Correspondence, H-L - 8 folders,1967 + + + + + + 71 + 8 + Records, General Legislative, Correspondence, H-L - 8 folders,1967 + + + + + + 71 + 9 + Records, General Legislative, Correspondence, M-S - 14 folders,1967 + + + + + + 71 + 10 + Records, General Legislative, Correspondence, M-S - 14 folders,1967 + + + + + + 71 + 11 + Records, General Legislative, Correspondence, M-S - 14 folders,1967 + + + + + + 71 + 12 + Records, General Legislative, Correspondence, M-S - 14 folders,1967 + + + + + + 71 + 13 + Records, General Legislative, Correspondence, M-S - 14 folders,1967 + + + + + + 71 + 14 + Records, General Legislative, Correspondence, M-S - 14 folders,1967 + + + + + + 71 + 15 + Records, General Legislative, Correspondence, M-S - 14 folders,1967 + + + + + + 71 + 16 + Records, General Legislative, Correspondence, M-S - 14 folders,1967 + + + + + + 71 + 17 + Records, General Legislative, Correspondence, M-S - 14 folders,1967 + + + + + + 71 + 18 + Records, General Legislative, Correspondence, M-S - 14 folders,1967 + + + + + + 71 + 19 + Records, General Legislative, Correspondence, M-S - 14 folders,1967 + + + + + + 71 + 20 + Records, General Legislative, Correspondence, M-S - 14 folders,1967 + + + + + + 71 + 21 + Records, General Legislative, Correspondence, M-S - 14 folders,1967 + + + + + + 71 + 22 + Records, General Legislative, Correspondence, M-S - 14 folders,1967 + + + + + + 72 + 1 + Records, General Legislative, Correspondence, T-Z - 7 folders,1967 + + + + + + 72 + 2 + Records, General Legislative, Correspondence, T-Z - 7 folders,1967 + + + + + + 72 + 3 + Records, General Legislative, Correspondence, T-Z - 7 folders,1967 + + + + + + 72 + 4 + Records, General Legislative, Correspondence, T-Z - 7 folders,1967 + + + + + + 72 + 5 + Records, General Legislative, Correspondence, T-Z - 7 folders,1967 + + + + + + 72 + 6 + Records, General Legislative, Correspondence, T-Z - 7 folders,1967 + + + + + + 72 + 7 + Records, General Legislative, Correspondence, T-Z - 7 folders,1967 + + + + + + 72 + 8 + Records, Aeronautical and Space Sciences, Science Committee General,1967 + + + + + + 72 + 9 + Records, Agriculture and Forestry, General - 2 folders,1967 + + + + + + 72 + 10 + Records, Agriculture and Forestry, General - 2 folders,1967 + + + + + + 72 + 11 + Records, Agriculture and Forestry, Farm Problems,1967 + + + + + + 72 + 12 + Records, Agriculture and Forestry, Humane Treatment of Animals,1967 + + + + + + 72 + 13 + Records, Agriculture and Forestry, Food Stamp Act Amendment,1967 + + + + + + 72 + 14 + Records, Agriculture and Forestry, Amendment of R.E.A. Act of 1936,1967 + + + + + + 72 + 15 + Records, Agriculture and Forestry, Federal Meat Inspection Act Amendments,1967 + + + + + + 72 + 16 + Records, Agriculture and Forestry, Proposed Agricultural Producers Marketing Act of 1967,1967 + + + + + + 72 + 17 + Records, Agriculture and Forestry, Proposed Agricultural Producers Marketing and Dairy Import Act,1967 + + + + + + 72 + 18 + Records, Agriculture and Forestry, Control of DDT,1967 + + + + + + 72 + 19 + Records, Appropriations, General,1967 + + + + + + 72 + 20 + Records, Appropriations, Independent Office Appropriations Bills,1967 + + + + + + 72 + 21 + Records, Appropriations, Spending, Budget - 3 folders,1967 + + + + + + 72 + 22 + Records, Appropriations, Spending, Budget - 3 folders,1967 + + + + + + 72 + 23 + Records, Appropriations, Spending, Budget - 3 folders,1967 + + + + + + 72 + 24 + Records, Appropriations, Agricultural Lab Animal Welfare,1967 + + + + + + 72 + 25 + Records, Appropriations, Fiscal Policy,1967 + + + + + + 72 + 26 + Records, Appropriations, Interior and Insular Affairs, Housing and Urban Development,1967 + + + + + + 72 + 27 + Records, Appropriations, HUD- Rent Subsidies,1967 + + + + + + 72 + 28 + Records, Appropriations, Labor, Health, Education, and Welfare - 2 folders,1967 + + + + + + 72 + 29 + Records, Appropriations, Labor, Health, Education, and Welfare - 2 folders,1967 + + + + + + 72 + 30 + Records, Appropriations, Legislative Branch,1967 + + + + + + 72 + 31 + Records, Appropriations, Defense,1967 + + + + + + 72 + 32 + Records, Appropriations, Office of Economic Opportunity- Oakland County - 2 folders,1967 + + + + + + 72 + 33 + Records, Appropriations, Office of Economic Opportunity- Oakland County - 2 folders,1967 + + + + + + 73 + 1 + Records, Appropriations, Public Works and Water Pollution,1967 + + + + + + 73 + 2 + Records, Appropriations, Highway Construction Program,1967 + + + + + + 73 + 3 + Records, Appropriations, State, Justice, Commerce,1967 + + + + + + 73 + 4 + Records, Appropriations, Great Lakes Fisheries Commission,1967 + + + + + + 73 + 5 + Records, Appropriations, Transportation,1967 + + + + + + 73 + 6 + Records, Appropriations, Veterans,1967 + + + + + + 73 + 7 + Records, Armed Services, General,1967 + + + + + + 73 + 8 + Records, Armed Services, Instrom Corporation, Model F28A,1967 + + + + + + 73 + 9 + Records, Armed Services, Military Pay raise, Promotion System,1967 + + + + + + 73 + 10 + Records, Armed Services, Recomputation of Retired Pay,1967 + + + + + + 73 + 11 + Records, Armed Services, National Guard Technicians,1967 + + + + + + 73 + 12 + Records, Armed Services, Reserves,1967 + + + + + + 73 + 13 + Records, Banking and Currency, General - 2 folders,1967 + + + + + + 73 + 14 + Records, Banking and Currency, General - 2 folders,1967 + + + + + + 73 + 15 + Records, Banking and Currency, Release of Nickel from Stockpile (HR 2301),1967 + + + + + + 73 + 16 + Records, Armed Services, Volunteer's Medal,1967 + + + + + + 73 + 17 + Records, Armed Services, M-16 Rifles,1967 + + + + + + 73 + 18 + Records, Banking and Currency, Gold and Silver,1967 + + + + + + 73 + 19 + Records, Banking and Currency, Truth in Lending (S 5),1967 + + + + + + 73 + 20 + Records, Banking and Currency, Housing, Rat Control,1967 + + + + + + 73 + 21 + Records, Banking and Currency, Home Ownership (S 1592),1967 + + + + + + 73 + 22 + Records, Banking and Currency, Federal Housing Administration, Vacation Home Mortgages,1967 + + + + + + 73 + 23 + Records, Banking and Currency, Export-Import Bank (S 2097),1967 + + + + + + 73 + 24 + Records, Labor and Public Welfare, General - 2 folders,1967 + + + + + + 73 + 25 + Records, Labor and Public Welfare, General - 2 folders,1967 + + + + + + 73 + 26 + Records, Labor and Public Welfare, Peter Holmes File,1967 + + + + + + 73 + 27 + Records, Labor and Public Welfare, Private Pension Plans,1967 + + + + + + 73 + 28 + Records, Labor and Public Welfare, Commission on Public Management (S 467),1967 + + + + + + 73 + 29 + Records, Labor and Public Welfare, Helicopter,1967 + + + + + + 73 + 30 + Records, Labor and Public Welfare, N.R.A., Surplus Rifles,1967 + + + + + + 73 + 31 + Records, Labor and Public Welfare, Draft-Selective Service - 2 folders,1967 + + + + + + 73 + 32 + Records, Labor and Public Welfare, Draft-Selective Service - 2 folders,1967 + + + + + + 73 + 33 + Records, Labor and Public Welfare, Draft Deferments,1967 + + + + + + 73 + 34 + Records, Labor and Public Welfare, Draft Incentives,1967 + + + + + + 73 + 35 + Records, Labor and Public Welfare, Draft Evasion,1967 + + + + + + 73 + 36 + Records, Labor and Public Welfare, Draft Deferment of Policemen and Firemen,1967 + + + + + + 73 + 37 + Records, Labor and Public Welfare, Manpower Utilization,1967 + + + + + + 73 + 38 + Records, Labor and Public Welfare, Defense Posture Preparedness,1967 + + + + + + 73 + 39 + Records, Labor and Public Welfare, Missile System,1967 + + + + + + 73 + 40 + Records, Equal Employment Opportunities (S 308), Civil Service Retirement Benefits,1967 + + + + + + 73 + 41 + Records, Equal Employment Opportunities (S 308), Education - 2 folders,1967 + + + + + + 73 + 42 + Records, Equal Employment Opportunities (S 308), Education - 2 folders,1967 + + + + + + 73 + 43 + Records, Equal Employment Opportunities (S 308), Older American Act Amendments,1967 + + + + + + 73 + 44 + Records, Equal Employment Opportunities (S 308), Federal Aid to Education,1967 + + + + + + 73 + 45 + Records, Equal Employment Opportunities (S 308), Quie Amendment to Elementary and Secondary Education Act,1967 + + + + + + 73 + 46 + Records, Equal Employment Opportunities (S 308), School Busing,1967 + + + + + + 73 + 47 + Records, Equal Employment Opportunities (S 308), National Defense Education Act, Classical Language Included,1967 + + + + + + 73 + 48 + Records, Equal Employment Opportunities (S 308), Labor,1967 + + + + + + 73 + 49 + Records, Equal Employment Opportunities (S 308), Labor and Management,1967 + + + + + + 73 + 50 + Records, Equal Employment Opportunities (S 308), Migratory Labor,1967 + + + + + + 74 + 1 + Records, Labor and Public Welfare, Common Situs Picketing,1967 + + + + + + 74 + 2 + Records, Labor and Public Welfare, National Labor Relations Board,1967 + + + + + + 74 + 3 + Records, Labor and Public Welfare, Zinke's Ford Decision,1967 + + + + + + 74 + 4 + Records, Labor and Public Welfare, Establishment of U S Labor Court (S 1353),1967 + + + + + + 74 + 5 + Records, Labor and Public Welfare, Taft-Hartley, Right to Work,1967 + + + + + + 74 + 6 + Records, Labor and Public Welfare, Landrum-Griffin Act,1967 + + + + + + 74 + 7 + Records, Labor and Public Welfare, James Hoffa, Landrum-Griffin Act,1967 + + + + + + 74 + 8 + Records, Labor and Public Welfare, Strikes,1967 + + + + + + 74 + 9 + Records, Labor and Public Welfare, Railroad Strikes,1967 + + + + + + 74 + 10 + Records, Labor and Public Welfare, Truck Strikes,1967 + + + + + + 74 + 11 + Records, Labor and Public Welfare, Ford Motor Company, Strikes,1967 + + + + + + 74 + 12 + Records, Labor and Public Welfare, Common Situs Picketing (HR 100),1967 + + + + + + 74 + 13 + Records, Labor and Public Welfare, Industry Wide Bargaining,1967 + + + + + + 74 + 14 + Records, Labor and Public Welfare, Anti-Strike (S J Res 174),1967 + + + + + + 74 + 15 + Records, Labor and Public Welfare, Proposed Pension and Employee Benefit Act of 1957,1967 + + + + + + 74 + 16 + Records, Labor and Public Welfare, Unemployment Compensation,1967 + + + + + + 74 + 17 + Records, Labor and Public Welfare, Longshoreman and Harbor Workers Compensation Act,1967 + + + + + + 74 + 18 + Records, Labor and Public Welfare, Veterans,1967 + + + + + + 74 + 19 + Records, Labor and Public Welfare, Employment Services Act,1967 + + + + + + 74 + 20 + Records, Labor and Public Welfare, Labor, Minimum Wage,1967 + + + + + + 74 + 21 + Records, Labor and Public Welfare, Minimum Wage, Retail Sales,1967 + + + + + + 74 + 22 + Records, Labor and Public Welfare, Pension and Welfare Plans,1967 + + + + + + 74 + 23 + Records, Labor and Public Welfare, Fair Labor Standards Act,1967 + + + + + + 74 + 24 + Records, Labor and Public Welfare, Retirement,1967 + + + + + + 74 + 25 + Records, Labor and Public Welfare, W.O.P. Programs - 3 folders,1967 + + + + + + 74 + 26 + Records, Labor and Public Welfare, W.O.P. Programs - 3 folders,1967 + + + + + + 74 + 27 + Records, Labor and Public Welfare, W.O.P. Programs - 3 folders,1967 + + + + + + 74 + 28 + Records, Labor and Public Welfare, Employment, Manpower, and Poverty,1967 + + + + + + 74 + 29 + Records, Labor and Public Welfare, Social Welfare Programs,1967 + + + + + + 74 + 30 + Records, Labor and Public Welfare, Food Stamps for Strikers,1967 + + + + + + 74 + 31 + Records, Labor and Public Welfare, Juvenile Delinquency,1967 + + + + + + 74 + 32 + Records, Labor and Public Welfare, Family Planning,1967 + + + + + + 74 + 33 + Records, Labor and Public Welfare, Employment, Age-Discrimination,1967 + + + + + + 74 + 34 + Records, Labor and Public Welfare, Health - 2 folders,1967 + + + + + + 74 + 35 + Records, Labor and Public Welfare, Health - 2 folders,1967 + + + + + + 74 + 36 + Records, Labor and Public Welfare, Nurses Training Act,1967 + + + + + + 74 + 37 + Records, Labor and Public Welfare, Hospital Modernization Loans (S 22551, HR 12233),1967 + + + + + + 74 + 38 + Records, Labor and Public Welfare, S 2481 Lab Animals,1967 + + + + + + 74 + 39 + Records, Labor and Public Welfare, Partnership for Health (S 1131, HR 6418),1967 + + + + + + 74 + 40 + Records, Labor and Public Welfare, Health, Fluoridation,1967 + + + + + + 74 + 41 + Records, Labor and Public Welfare, Vitamins, Food Supplements,1967 + + + + + + 74 + 42 + Records, Labor and Public Welfare, Health, Rat Control,1967 + + + + + + 74 + 43 + Records, Labor and Public Welfare, Vitamins, Form Letters,1967 + + + + + + 74 + 44 + Records, Post Office and Civil Service, General - 2 folders,1967 + + + + + + 74 + 45 + Records, Post Office and Civil Service, General - 2 folders,1967 + + + + + + 74 + 46 + Records, Post Office and Civil Service, Employment/Mgt.-Relations-Wage Bd. Employees,1967 + + + + + + 74 + 47 + Records, Post Office and Civil Service, Pensions, Salaries, Benefits for Members of Congress,1967 + + + + + + 74 + 48 + Records, Post Office and Civil Service, Unions,1967 + + + + + + 74 + 49 + Records, Post Office and Civil Service, Minimum Wage,1967 + + + + + + 74 + 50 + Records, Post Office and Civil Service, Private Pension Plans,1967 + + + + + + 74 + 51 + Records, Post Office and Civil Service, Railroad,1967 + + + + + + 74 + 52 + Records, Post Office and Civil Service, Postal Pay Raise,1967 + + + + + + 74 + 53 + Records, Post Office and Civil Service, Pay Raise, Postmaster,1967 + + + + + + 74 + 54 + Records, Post Office and Civil Service, Life Insurance and Health Benefits (S 271),1967 + + + + + + 74 + 55 + Records, Post Office and Civil Service, Reclassification of Postal Workers,1967 + + + + + + 74 + 56 + Records, Post Office and Civil Service, Federal Employees Pay Raise,1967 + + + + + + 75 + 1 + Records, Post Office and Civil Service, Junk Mail,1967 + + + + + + 75 + 2 + Records, Post Office and Civil Service, Retirement, Sick Leave Credit (S 759),1967 + + + + + + 75 + 3 + Records, Post Office and Civil Service, Post Office Department Reorganization,1967 + + + + + + 75 + 4 + Records, Post Office and Civil Service, Revisions, Postal Rates, Servicemen in Vietnam,1967 + + + + + + 75 + 5 + Records, Post Office and Civil Service, Appointment of Postmasters,1967 + + + + + + 75 + 6 + Records, Post Office and Civil Service, Retirement Benefits, Hazardous Duty Computation,1967 + + + + + + 75 + 7 + Records, Post Office and Civil Service, Civil Service Annuity, Inclusion of State Service,1967 + + + + + + 75 + 8 + Records, Post Office and Civil Service, Postal Rates,1967 + + + + + + 75 + 9 + Records, Public Works, Public Works Committee-General,1967 + + + + + + 75 + 10 + Records, Public Works, Air and Water Pollution,1967 + + + + + + 75 + 11 + Records, Public Works, Air Quality Act of 1967,1967 + + + + + + 75 + 12 + Records, Public Works, Highway Beautification,1967 + + + + + + 75 + 13 + Records, Public Works, Highway Construction Funds,1967 + + + + + + 75 + 14 + Records, Public Works, St. Lawrence Seaway,1967 + + + + + + 75 + 15 + Records, Public Works, West Front of Capitol,1967 + + + + + + 75 + 16 + Records, Rules and Administration, Rules and Administration-General,1967 + + + + + + 75 + 17 + Records, Rules and Administration, Rule 22,1967 + + + + + + 75 + 18 + Records, Rules and Administration, Veterans, General - 3 folders,1967 + + + + + + 75 + 19 + Records, Rules and Administration, Veterans, General - 3 folders,1967 + + + + + + 75 + 20 + Records, Rules and Administration, Veterans, General - 3 folders,1967 + + + + + + 75 + 21 + Records, Rules and Administration, Select Committee on Small Business,1967 + + + + + + 75 + 22 + Records, Rules and Administration, Committee on Standards and Conduct, Code of Ethics,1967 + + + + + + 75 + 23 + Records, Rules and Administration, Select Committee on Standards and Conduct,1967 + + + + + + 75 + 24 + Records, Rules and Administration, Committee on Standards and Conduct, Censure of Senator Dodd,1967 + + + + + + 75 + 25 + Records, Rules and Administration, Committee on Standards and Conduct, Senator Edward Long - 2 folders,1967 + + + + + + 75 + 26 + Records, Rules and Administration, Committee on Standards and Conduct, Senator Edward Long - 2 folders,1967 + + + + + + 75 + 27 + Records, Rules and Administration, Committee on Standards and Conduct, Adam Clayton Powell,1967 + + + + + + 75 + 28 + Records, Rules and Administration, Special Committee on Aging,1967 + + + + + + 75 + 29 + Records, Rules and Administration, Joint Committee on Atomic Energy,1967 + + + + + + 75 + 30 + Records, Rules and Administration, Joint Economic Committee,1967 + + + + + + 75 + 31 + Records, Rules and Administration, Organization of Congress,1967 + + + + + + 75 + 32 + Records, Rules and Administration, There Ought to Be a Law - no name/address,1967 + + + + + + 75 + 33 + Records, Rules and Administration, There Ought to Be a Law,1967 + + + + + + 75 + 34 + Records, National Labor Relations Board,1958-1967 + + + + + + 75 + 35 + Records, Supreme Court, General,1958-1967 + + + + + + 75 + 36 + Records, Crime,1958-1967 + + + + + + 75 + 37 + Records, Voting Record,1958-1967 + + + + + + 75 + 38 + Records, Michigan State Matters, General,1958-1967 + + + + + + 75 + 39 + Records, Miscellaneous, A-Z - 3 folders,1958-1967 + + + + + + 75 + 40 + Records, Miscellaneous, A-Z - 3 folders,1958-1967 + + + + + + 75 + 41 + Records, Miscellaneous, A-Z - 3 folders,1958-1967 + + + + + + 75 + 42 + Records, Michigan, R-Z (no u, y-z),1967 + + + + + + 75 + 43 + Records, Upper Peninsula Proposed Time Zone Change,1967 + + + + + + 75 + 44 + Records, House Un-American Activities Committee,1967 + + + + + + 75 + 45 + Records, General, A-G - 7 folders,1967 + + + + + + 75 + 46 + Records, General, A-G - 7 folders,1967 + + + + + + 75 + 47 + Records, General, A-G - 7 folders,1967 + + + + + + 75 + 48 + Records, General, A-G - 7 folders,1967 + + + + + + 75 + 49 + Records, General, A-G - 7 folders,1967 + + + + + + 75 + 50 + Records, General, A-G - 7 folders,1967 + + + + + + 75 + 51 + Records, General, A-G - 7 folders,1967 + + + + + + 75 + 52 + Records, General, H-P - 5 folders,1967 + + + + + + 75 + 53 + Records, General, H-P - 5 folders,1967 + + + + + + 75 + 54 + Records, General, H-P - 5 folders,1967 + + + + + + 75 + 55 + Records, General, H-P - 5 folders,1967 + + + + + + 75 + 56 + Records, General, H-P - 5 folders,1967 + + + + + + 76 + 1 + Records, General, R-Z ( no R, S-Z) - 2 folders,1967 + + + + + + 76 + 2 + Records, General, R-Z ( no R, S-Z) - 2 folders,1967 + + + + + + 76 + 3 + Records, Office, 1967,1967 + + + + + + 76 + 4 + Records, Milton R. Shaber,1967 + + + + + + 76 + 5 + Records, Mrs. Lula Stopar,1967 + + + + + + 76 + 6 + Records, Arthur C. Thede,1967 + + + + + + 76 + 7 + Records, John Thornton,1967 + + + + + + 76 + 8 + Records, General Legislative, Correspondence, A-G - 15 folders,1968 + + + + + + 76 + 9 + Records, General Legislative, Correspondence, A-G - 15 folders,1968 + + + + + + 76 + 10 + Records, General Legislative, Correspondence, A-G - 15 folders,1968 + + + + + + 76 + 11 + Records, General Legislative, Correspondence, A-G - 15 folders,1968 + + + + + + 76 + 12 + Records, General Legislative, Correspondence, A-G - 15 folders,1968 + + + + + + 76 + 13 + Records, General Legislative, Correspondence, A-G - 15 folders,1968 + + + + + + 76 + 14 + Records, General Legislative, Correspondence, A-G - 15 folders,1968 + + + + + + 76 + 15 + Records, General Legislative, Correspondence, A-G - 15 folders,1968 + + + + + + 76 + 16 + Records, General Legislative, Correspondence, A-G - 15 folders,1968 + + + + + + 76 + 17 + Records, General Legislative, Correspondence, A-G - 15 folders,1968 + + + + + + 76 + 18 + Records, General Legislative, Correspondence, A-G - 15 folders,1968 + + + + + + 76 + 19 + Records, General Legislative, Correspondence, A-G - 15 folders,1968 + + + + + + 76 + 20 + Records, General Legislative, Correspondence, A-G - 15 folders,1968 + + + + + + 76 + 21 + Records, General Legislative, Correspondence, A-G - 15 folders,1968 + + + + + + 76 + 22 + Records, General Legislative, Correspondence, A-G - 15 folders,1968 + + + + + + 76 + 23 + Records, General Legislative, Correspondence, P-V - 6 folders,1968 + + + + + + 76 + 24 + Records, General Legislative, Correspondence, P-V - 6 folders,1968 + + + + + + 76 + 25 + Records, General Legislative, Correspondence, P-V - 6 folders,1968 + + + + + + 76 + 26 + Records, General Legislative, Correspondence, P-V - 6 folders,1968 + + + + + + 76 + 27 + Records, General Legislative, Correspondence, P-V - 6 folders,1968 + + + + + + 76 + 28 + Records, General Legislative, Correspondence, P-V - 6 folders,1968 + + + + + + 77 + 1 + Records, General Legislative Correspondence, General Legislative Correspondence, W-Z, 2 folders,1968 + + + + + + 77 + 2 + Records, General Legislative Correspondence, General Legislative Correspondence, W-Z, 2 folders,1968 + + + + + + 77 + 3 + Records, General Legislative Correspondence, Richard VanBochove,1968 + + + + + + 77 + 4 + Records, General Legislative Correspondence, Welch, Thomas,1968 + + + + + + 77 + 5 + Records, General Legislative Correspondence, Legislation/ Resolutions, 2 folders,1968 + + + + + + 77 + 6 + Records, General Legislative Correspondence, Legislation/ Resolutions, 2 folders,1968 + + + + + + 77 + 7 + Records, General Legislative Correspondence, Aeronautical and Space Sciences,1968 + + + + + + 77 + 8 + Records, Agriculture and Forestry, General - 2 folders,1968 + + + + + + 77 + 9 + Records, Agriculture and Forestry, General - 2 folders,1968 + + + + + + 77 + 10 + Records, Agriculture and Forestry, Food Shortage,1968 + + + + + + 77 + 11 + Records, Agriculture and Forestry, Cotton Imports,1968 + + + + + + 77 + 12 + Records, Agriculture and Forestry, Honey Imports,1968 + + + + + + 77 + 13 + Records, Agriculture and Forestry, Meat Inspection,1968 + + + + + + 77 + 14 + Records, Agriculture and Forestry, Mexican Strawberry Problem,1968 + + + + + + 77 + 15 + Records, Agriculture and Forestry, Cherry Imports,1968 + + + + + + 77 + 16 + Records, Agriculture and Forestry, LA/Agriculture and Forestry Center,1968 + + + + + + 77 + 17 + Records, Agriculture and Forestry, Appropriations, A-Z (no U,X,Y) - 23 folders,1968 + + + + + + 77 + 18 + Records, Agriculture and Forestry, Appropriations, A-Z (no U,X,Y) - 23 folders,1968 + + + + + + 77 + 19 + Records, Agriculture and Forestry, Appropriations, A-Z (no U,X,Y) - 23 folders,1968 + + + + + + 77 + 20 + Records, Agriculture and Forestry, Appropriations, A-Z (no U,X,Y) - 23 folders,1968 + + + + + + 77 + 21 + Records, Agriculture and Forestry, Appropriations, A-Z (no U,X,Y) - 23 folders,1968 + + + + + + 77 + 22 + Records, Agriculture and Forestry, Appropriations, A-Z (no U,X,Y) - 23 folders,1968 + + + + + + 77 + 23 + Records, Agriculture and Forestry, Appropriations, A-Z (no U,X,Y) - 23 folders,1968 + + + + + + 77 + 24 + Records, Agriculture and Forestry, Appropriations, A-Z (no U,X,Y) - 23 folders,1968 + + + + + + 77 + 25 + Records, Agriculture and Forestry, Appropriations, A-Z (no U,X,Y) - 23 folders,1968 + + + + + + 77 + 26 + Records, Agriculture and Forestry, Appropriations, A-Z (no U,X,Y) - 23 folders,1968 + + + + + + 77 + 27 + Records, Agriculture and Forestry, Appropriations, A-Z (no U,X,Y) - 23 folders,1968 + + + + + + 77 + 28 + Records, Agriculture and Forestry, Appropriations, A-Z (no U,X,Y) - 23 folders,1968 + + + + + + 77 + 29 + Records, Agriculture and Forestry, Appropriations, A-Z (no U,X,Y) - 23 folders,1968 + + + + + + 77 + 30 + Records, Agriculture and Forestry, Appropriations, A-Z (no U,X,Y) - 23 folders,1968 + + + + + + 77 + 31 + Records, Agriculture and Forestry, Appropriations, A-Z (no U,X,Y) - 23 folders,1968 + + + + + + 77 + 32 + Records, Agriculture and Forestry, Appropriations, A-Z (no U,X,Y) - 23 folders,1968 + + + + + + 77 + 33 + Records, Agriculture and Forestry, Appropriations, A-Z (no U,X,Y) - 23 folders,1968 + + + + + + 77 + 34 + Records, Agriculture and Forestry, Appropriations, A-Z (no U,X,Y) - 23 folders,1968 + + + + + + 77 + 35 + Records, Agriculture and Forestry, Appropriations, A-Z (no U,X,Y) - 23 folders,1968 + + + + + + 77 + 36 + Records, Agriculture and Forestry, Appropriations, A-Z (no U,X,Y) - 23 folders,1968 + + + + + + 77 + 37 + Records, Agriculture and Forestry, Appropriations, A-Z (no U,X,Y) - 23 folders,1968 + + + + + + 77 + 38 + Records, Agriculture and Forestry, Appropriations, A-Z (no U,X,Y) - 23 folders,1968 + + + + + + 77 + 39 + Records, Agriculture and Forestry, Appropriations, A-Z (no U,X,Y) - 23 folders,1968 + + + + + + 77 + 40 + Records, Armed Services, General,1968 + + + + + + 77 + 41 + Records, Armed Services, Draft,1968 + + + + + + 78 + 1 + Records, Armed Services, Military Pay,1968 + + + + + + 78 + 2 + Records, Armed Services, Retired Pay,1968 + + + + + + 78 + 3 + Records, Armed Services, M-16 Rifle,1968 + + + + + + 78 + 4 + Records, Armed Services, National Guard Technicians,1968 + + + + + + 78 + 5 + Records, Armed Services, Prisoner Treatment,1968 + + + + + + 78 + 6 + Records, Armed Services, Reserves,1968 + + + + + + 78 + 7 + Records, Armed Services, Draft, Vietnam Assignment,1968 + + + + + + 78 + 8 + Records, Banking and Currency, General,1968 + + + + + + 78 + 9 + Records, Banking and Currency, Balance of Payments,1968 + + + + + + 78 + 10 + Records, Banking and Currency, Export-Import Bank,1968 + + + + + + 78 + 11 + Records, Banking and Currency, Gold,1968 + + + + + + 78 + 12 + Records, Banking and Currency, Housing,1968 + + + + + + 78 + 13 + Records, Banking and Currency, Savings and Loan,1968 + + + + + + 78 + 14 + Records, Banking and Currency, Truth in Lending,1968 + + + + + + 78 + 15 + Records, Banking and Currency, LA/Banking and Currency Cmte.,1968 + + + + + + 78 + 16 + Records, Commerce, General - 3 folders,1968 + + + + + + 78 + 17 + Records, Commerce, General - 3 folders,1968 + + + + + + 78 + 18 + Records, Commerce, General - 3 folders,1968 + + + + + + 78 + 19 + Records, Commerce, Metric System,1968 + + + + + + 78 + 20 + Records, Commerce, Alcoholic Beverages,1968 + + + + + + 78 + 21 + Records, Commerce, Airplanes, Air Safety,1968 + + + + + + 78 + 22 + Records, Commerce, Smoking,1968 + + + + + + 78 + 23 + Records, Commerce, Amateur Athletes Bill of Rights Act,1968 + + + + + + 78 + 24 + Records, Commerce, Auto Insurance,1968 + + + + + + 78 + 25 + Records, Commerce, Upper Peninsula/Time Zone Petition,1968 + + + + + + 78 + 26 + Records, Commerce, Surface Transportation (S 751), 2 folders,1968 + + + + + + 78 + 27 + Records, Commerce, Surface Transportation (S 751), 2 folders,1968 + + + + + + 78 + 28 + Records, Commerce, Cable TV,1968 + + + + + + 78 + 29 + Records, Commerce, Communications,1968 + + + + + + 78 + 30 + Records, Commerce, Merchant Marine and Fisheries,1968 + + + + + + 78 + 31 + Records, Commerce, TV, Federal Communications Commission,1968 + + + + + + 78 + 32 + Records, Commerce, Wildlife (S 2951),1968 + + + + + + 79 + 1 + Records, Commerce, Endangered Species,1968 + + + + + + 79 + 2 + Records, Commerce, Out of State,1968 + + + + + + 79 + 3 + Records, Commerce, District of Columbia - General - Committee,1968 + + + + + + 79 + 4 + Records, Finance, General - 2 folders,1968 + + + + + + 79 + 5 + Records, Finance, General - 2 folders,1968 + + + + + + 79 + 6 + Records, Finance, Taxes, Guaranteed Annual Income,1968 + + + + + + 79 + 7 + Records, Finance, Finance Committee – General,1968 + + + + + + 79 + 8 + Records, Finance, Gold Cover,1968 + + + + + + 79 + 9 + Records, Finance, Industrial Bonds,1968 + + + + + + 79 + 10 + Records, Finance, Interstate Taxation,1968 + + + + + + 79 + 11 + Records, Finance, Multistate Tax Compact Act,1968 + + + + + + 79 + 12 + Records, Finance, Social Security, Medicine - 3 folders,1968 + + + + + + 79 + 13 + Records, Finance, Social Security, Medicine - 3 folders,1968 + + + + + + 79 + 14 + Records, Finance, Social Security, Medicine - 3 folders,1968 + + + + + + 79 + 15 + Records, Finance, Social Security, Spending - 2 folders,1968 + + + + + + 79 + 16 + Records, Finance, Social Security, Spending - 2 folders,1968 + + + + + + 79 + 17 + Records, Finance, Taxes, A-Z - 22 folders,1968 + + + + + + 79 + 18 + Records, Finance, Taxes, A-Z - 22 folders,1968 + + + + + + 79 + 19 + Records, Finance, Taxes, A-Z - 22 folders,1968 + + + + + + 79 + 20 + Records, Finance, Taxes, A-Z - 22 folders,1968 + + + + + + 79 + 21 + Records, Finance, Taxes, A-Z - 22 folders,1968 + + + + + + 79 + 22 + Records, Finance, Taxes, A-Z - 22 folders,1968 + + + + + + 79 + 23 + Records, Finance, Taxes, A-Z - 22 folders,1968 + + + + + + 79 + 24 + Records, Finance, Taxes, A-Z - 22 folders,1968 + + + + + + 79 + 25 + Records, Finance, Taxes, A-Z - 22 folders,1968 + + + + + + 79 + 26 + Records, Finance, Taxes, A-Z - 22 folders,1968 + + + + + + 79 + 27 + Records, Finance, Taxes, A-Z - 22 folders,1968 + + + + + + 79 + 28 + Records, Finance, Taxes, A-Z - 22 folders,1968 + + + + + + 79 + 29 + Records, Finance, Taxes, A-Z - 22 folders,1968 + + + + + + 79 + 30 + Records, Finance, Taxes, A-Z - 22 folders,1968 + + + + + + 79 + 31 + Records, Finance, Taxes, A-Z - 22 folders,1968 + + + + + + 79 + 32 + Records, Finance, Taxes, A-Z - 22 folders,1968 + + + + + + 79 + 33 + Records, Finance, Taxes, A-Z - 22 folders,1968 + + + + + + 79 + 34 + Records, Finance, Taxes, A-Z - 22 folders,1968 + + + + + + 79 + 35 + Records, Finance, Taxes, A-Z - 22 folders,1968 + + + + + + 79 + 36 + Records, Finance, Taxes, A-Z - 22 folders,1968 + + + + + + 79 + 37 + Records, Finance, Taxes, A-Z - 22 folders,1968 + + + + + + 79 + 38 + Records, Finance, Taxes, A-Z - 22 folders,1968 + + + + + + 79 + 39 + Records, Finance, Import Quotas - 2 folders,1968 + + + + + + 79 + 40 + Records, Finance, Import Quotas - 2 folders,1968 + + + + + + 79 + 41 + Records, Finance, Tariffs, Japanese Purchases,1968 + + + + + + 80 + 1 + Records, Foreign Relations, Poland/Anti-Semitism, 2 folders,1968 + + + + + + 80 + 2 + Records, Foreign Relations, Poland/Anti-Semitism, 2 folders,1968 + + + + + + 80 + 3 + Records, Foreign Relations, Gold Cover,1968 + + + + + + 80 + 4 + Records, Foreign Relations, General, A-Z, 21 folders,1968 + + + + + + 80 + 5 + Records, Foreign Relations, General, A-Z, 21 folders,1968 + + + + + + 80 + 6 + Records, Foreign Relations, General, A-Z, 21 folders,1968 + + + + + + 80 + 7 + Records, Foreign Relations, General, A-Z, 21 folders,1968 + + + + + + 80 + 8 + Records, Foreign Relations, General, A-Z, 21 folders,1968 + + + + + + 80 + 9 + Records, Foreign Relations, General, A-Z, 21 folders,1968 + + + + + + 80 + 10 + Records, Foreign Relations, General, A-Z, 21 folders,1968 + + + + + + 80 + 11 + Records, Foreign Relations, General, A-Z, 21 folders,1968 + + + + + + 80 + 12 + Records, Foreign Relations, General, A-Z, 21 folders,1968 + + + + + + 80 + 13 + Records, Foreign Relations, General, A-Z, 21 folders,1968 + + + + + + 80 + 14 + Records, Foreign Relations, General, A-Z, 21 folders,1968 + + + + + + 80 + 15 + Records, Foreign Relations, General, A-Z, 21 folders,1968 + + + + + + 80 + 16 + Records, Foreign Relations, General, A-Z, 21 folders,1968 + + + + + + 80 + 17 + Records, Foreign Relations, General, A-Z, 21 folders,1968 + + + + + + 80 + 18 + Records, Foreign Relations, General, A-Z, 21 folders,1968 + + + + + + 80 + 19 + Records, Foreign Relations, General, A-Z, 21 folders,1968 + + + + + + 80 + 20 + Records, Foreign Relations, General, A-Z, 21 folders,1968 + + + + + + 80 + 21 + Records, Foreign Relations, General, A-Z, 21 folders,1968 + + + + + + 80 + 22 + Records, Foreign Relations, General, A-Z, 21 folders,1968 + + + + + + 80 + 23 + Records, Foreign Relations, General, A-Z, 21 folders,1968 + + + + + + 80 + 24 + Records, Foreign Relations, General, A-Z, 21 folders,1968 + + + + + + 80 + 25 + Records, Foreign Relations, Territorial Waters, 12 Mile Limit,1968 + + + + + + 80 + 26 + Records, Foreign Relations, Statements on Vietnam,1968 + + + + + + 80 + 27 + Records, Foreign Relations, Laymen and Clergy Concerned About Vietnam,1968 + + + + + + 80 + 28 + Records, Foreign Relations,Vietnam, A-R, 18 folders,1968 + + + + + + 80 + 29 + Records, Foreign Relations,Vietnam, A-R, 18 folders,1968 + + + + + + 80 + 30 + Records, Foreign Relations,Vietnam, A-R, 18 folders,1968 + + + + + + 80 + 31 + Records, Foreign Relations,Vietnam, A-R, 18 folders,1968 + + + + + + 80 + 32 + Records, Foreign Relations,Vietnam, A-R, 18 folders,1968 + + + + + + 80 + 33 + Records, Foreign Relations,Vietnam, A-R, 18 folders,1968 + + + + + + 80 + 34 + Records, Foreign Relations,Vietnam, A-R, 18 folders,1968 + + + + + + 80 + 35 + Records, Foreign Relations,Vietnam, A-R, 18 folders,1968 + + + + + + 80 + 36 + Records, Foreign Relations,Vietnam, A-R, 18 folders,1968 + + + + + + 80 + 37 + Records, Foreign Relations,Vietnam, A-R, 18 folders,1968 + + + + + + 80 + 38 + Records, Foreign Relations,Vietnam, A-R, 18 folders,1968 + + + + + + 80 + 39 + Records, Foreign Relations,Vietnam, A-R, 18 folders,1968 + + + + + + 80 + 40 + Records, Foreign Relations,Vietnam, A-R, 18 folders,1968 + + + + + + 80 + 41 + Records, Foreign Relations,Vietnam, A-R, 18 folders,1968 + + + + + + 80 + 42 + Records, Foreign Relations,Vietnam, A-R, 18 folders,1968 + + + + + + 80 + 43 + Records, Foreign Relations,Vietnam, A-R, 18 folders,1968 + + + + + + 80 + 44 + Records, Foreign Relations,Vietnam, A-R, 18 folders,1968 + + + + + + 80 + 45 + Records, Foreign Relations,Vietnam, A-R, 18 folders,1968 + + + + + + 81 + 1 + Records, Foreign Relations, Vietnam (continued) S-Z, 6 folders,1968 + + + + + + 81 + 2 + Records, Foreign Relations, Vietnam (continued) S-Z, 6 folders,1968 + + + + + + 81 + 3 + Records, Foreign Relations, Vietnam (continued) S-Z, 6 folders,1968 + + + + + + 81 + 4 + Records, Foreign Relations, Vietnam (continued) S-Z, 6 folders,1968 + + + + + + 81 + 5 + Records, Foreign Relations, Vietnam (continued) S-Z, 6 folders,1968 + + + + + + 81 + 6 + Records, Foreign Relations, Vietnam (continued) S-Z, 6 folders,1968 + + + + + + 81 + 7 + Records, Foreign Relations, Miscellaneous,1968 + + + + + + 81 + 8 + Records, Government Operations, General - Committee,1968 + + + + + + 81 + 9 + Records, Government Operations, Civil Defense Survey,1968 + + + + + + 81 + 10 + Records, Interior and Insular Affairs, General, 2 folders,1968 + + + + + + 81 + 11 + Records, Interior and Insular Affairs, General, 2 folders,1968 + + + + + + 81 + 12 + Records, Judiciary, General, 5 folders,1968 + + + + + + 81 + 13 + Records, Judiciary, General, 5 folders,1968 + + + + + + 81 + 14 + Records, Judiciary, General, 5 folders,1968 + + + + + + 81 + 15 + Records, Judiciary, General, 5 folders,1968 + + + + + + 81 + 16 + Records, Judiciary, General, 5 folders,1968 + + + + + + 81 + 17 + Records, Judiciary, Civil Rights, 3 folders,1968 + + + + + + 81 + 18 + Records, Judiciary, Civil Rights, 3 folders,1968 + + + + + + 81 + 19 + Records, Judiciary, Civil Rights, 3 folders,1968 + + + + + + 81 + 20 + Records, Judiciary, Riots, A-Z (no u,x), 24 folders,1968 + + + + + + 81 + 21 + Records, Judiciary, Riots, A-Z (no u,x), 24 folders,1968 + + + + + + 81 + 22 + Records, Judiciary, Riots, A-Z (no u,x), 24 folders,1968 + + + + + + 81 + 23 + Records, Judiciary, Riots, A-Z (no u,x), 24 folders,1968 + + + + + + 81 + 24 + Records, Judiciary, Riots, A-Z (no u,x), 24 folders,1968 + + + + + + 81 + 25 + Records, Judiciary, Riots, A-Z (no u,x), 24 folders,1968 + + + + + + 81 + 26 + Records, Judiciary, Riots, A-Z (no u,x), 24 folders,1968 + + + + + + 81 + 27 + Records, Judiciary, Riots, A-Z (no u,x), 24 folders,1968 + + + + + + 81 + 28 + Records, Judiciary, Riots, A-Z (no u,x), 24 folders,1968 + + + + + + 81 + 29 + Records, Judiciary, Riots, A-Z (no u,x), 24 folders,1968 + + + + + + 81 + 30 + Records, Judiciary, Riots, A-Z (no u,x), 24 folders,1968 + + + + + + 81 + 31 + Records, Judiciary, Riots, A-Z (no u,x), 24 folders,1968 + + + + + + 81 + 32 + Records, Judiciary, Riots, A-Z (no u,x), 24 folders,1968 + + + + + + 81 + 33 + Records, Judiciary, Riots, A-Z (no u,x), 24 folders,1968 + + + + + + 81 + 34 + Records, Judiciary, Riots, A-Z (no u,x), 24 folders,1968 + + + + + + 81 + 35 + Records, Judiciary, Riots, A-Z (no u,x), 24 folders,1968 + + + + + + 81 + 36 + Records, Judiciary, Riots, A-Z (no u,x), 24 folders,1968 + + + + + + 81 + 37 + Records, Judiciary, Riots, A-Z (no u,x), 24 folders,1968 + + + + + + 81 + 38 + Records, Judiciary, Riots, A-Z (no u,x), 24 folders,1968 + + + + + + 81 + 39 + Records, Judiciary, Riots, A-Z (no u,x), 24 folders,1968 + + + + + + 81 + 40 + Records, Judiciary, Riots, A-Z (no u,x), 24 folders,1968 + + + + + + 81 + 41 + Records, Judiciary, Riots, A-Z (no u,x), 24 folders,1968 + + + + + + 81 + 42 + Records, Judiciary, Riots, A-Z (no u,x), 24 folders,1968 + + + + + + 81 + 43 + Records, Judiciary, Riots, A-Z (no u,x), 24 folders,1968 + + + + + + 82 + 1 + Records, Judiciary, Copyrights, Patents,1968 + + + + + + 82 + 2 + Records, Judiciary, Electoral College,1968 + + + + + + 82 + 3 + Records, Judiciary, Ervin Substitute (HR 2516),1968 + + + + + + 82 + 4 + Records, Judiciary, Firearms - 14 folders,1968 + + + + + + 82 + 5 + Records, Judiciary, Firearms - 14 folders,1968 + + + + + + 82 + 6 + Records, Judiciary, Firearms - 14 folders,1968 + + + + + + 82 + 7 + Records, Judiciary, Firearms - 14 folders,1968 + + + + + + 82 + 8 + Records, Judiciary, Firearms - 14 folders,1968 + + + + + + 82 + 9 + Records, Judiciary, Firearms - 14 folders,1968 + + + + + + 82 + 10 + Records, Judiciary, Firearms - 14 folders,1968 + + + + + + 82 + 11 + Records, Judiciary, Firearms - 14 folders,1968 + + + + + + 82 + 12 + Records, Judiciary, Firearms - 14 folders,1968 + + + + + + 82 + 13 + Records, Judiciary, Firearms - 14 folders,1968 + + + + + + 82 + 14 + Records, Judiciary, Firearms - 14 folders,1968 + + + + + + 82 + 15 + Records, Judiciary, Firearms - 14 folders,1968 + + + + + + 82 + 16 + Records, Judiciary, Firearms - 14 folders,1968 + + + + + + 82 + 17 + Records, Judiciary, Firearms - 14 folders,1968 + + + + + + 82 + 18 + Records, Judiciary, Gun Control,1968 + + + + + + 82 + 19 + Records, Judiciary, Immigration and Naturalization,1968 + + + + + + 82 + 20 + Records, Judiciary, Martin Luther King's Birthday, National Holiday,1968 + + + + + + 82 + 21 + Records, Judiciary, Monday Holiday Bill,1968 + + + + + + 82 + 22 + Records, Judiciary, 18 Year Old Vote,1968 + + + + + + 82 + 23 + Records, Judiciary, National Coin Week,1968 + + + + + + 82 + 24 + Records, Judiciary, NLRB, Labor Court,1968 + + + + + + 82 + 25 + Records, Judiciary, Internal Security - 2 folders,1968 + + + + + + 82 + 26 + Records, Judiciary, Internal Security - 2 folders,1968 + + + + + + 83 + 1 + Records, League of Women Voters, Traverse City,1968 + + + + + + 83 + 2 + Records, National Foundation on Arts and Humanities (HR 11308),1968 + + + + + + 83 + 3 + Records, Local Lodge 837,1968 + + + + + + 83 + 4 + Records, Alonzo Sawyers,1968 + + + + + + 83 + 5 + Records, Joint Administration of Industries Fund (HR 15198),1968 + + + + + + 83 + 6 + Records, Poverty,1968 + + + + + + 83 + 7 + Records, Education, Sept.-Dec. 1968,1968 + + + + + + 83 + 8 + Records, Education, Jan. -Aug. 1968 - 2 folders,1968 + + + + + + 83 + 9 + Records, Education, Jan. -Aug. 1968 - 2 folders,1968 + + + + + + 83 + 10 + Records, Health,1968 + + + + + + 83 + 11 + Records, School Lunch,1968 + + + + + + 83 + 12 + Records, Pollution,1968 + + + + + + 83 + 13 + Records, Industrial Fund Proposal (S 3149),1968 + + + + + + 83 + 14 + Records, Strikes,1968 + + + + + + 83 + 15 + Records, Detroit Newspaper Strike,1967 + + + + + + 83 + 16 + Records, Detroit Newspaper Strike - 2 folders,1968 + + + + + + 83 + 17 + Records, Detroit Newspaper Strike - 2 folders,1968 + + + + + + 84 + 1 + Records, Labor and Public Welfare, General, 3 folders,1968 + + + + + + 84 + 2 + Records, Labor and Public Welfare, General, 3 folders,1968 + + + + + + 84 + 3 + Records, Labor and Public Welfare, General, 3 folders,1968 + + + + + + 84 + 4 + Records, Labor and Public Welfare, Labor, 2 folders,1968 + + + + + + 84 + 5 + Records, Labor and Public Welfare, Labor, 2 folders,1968 + + + + + + 84 + 6 + Records, Labor and Public Welfare, Office of Economic Opportunity, Employment,1968 + + + + + + 84 + 7 + Records, Labor and Public Welfare, Wage and Price Controls,1968 + + + + + + 84 + 8 + Records, Labor and Public Welfare, Retirement,1968 + + + + + + 84 + 9 + Records, Labor and Public Welfare, National Labor Relations Board,1968 + + + + + + 84 + 10 + Records, Labor and Public Welfare, Labor and Management Relations,1968 + + + + + + 84 + 11 + Records, Labor and Public Welfare, Copper Strike,1968 + + + + + + 84 + 12 + Records, Labor and Public Welfare, Unsigned Mail,1968 + + + + + + 84 + 13 + Records, Labor and Public Welfare, Migratory Workers,1968 + + + + + + 84 + 14 + Records, Labor and Public Welfare, Unions,1968 + + + + + + 84 + 15 + Records, Post Office and Civil Service, Public Works Committee, General, 2 folders,1968 + + + + + + 84 + 16 + Records, Post Office and Civil Service, Public Works Committee, General, 2 folders,1968 + + + + + + 84 + 17 + Records, Rules and Administration Committee - General,1968 + + + + + + 84 + 18 + Records, Post Office and Civil Service, Baltic State Stamp,1968 + + + + + + 84 + 19 + Records, Veterans, Committee - General,1968 + + + + + + 84 + 20 + Records, Veterans, Income Limitations,1968 + + + + + + 84 + 21 + Records, Special Committee on Aging,1968 + + + + + + 84 + 22 + Records, Select Small Business,1968 + + + + + + 84 + 23 + Records, Joint Committee on Atomic Energy,1968 + + + + + + 84 + 24 + Records, Select Committee on Standards and Conduct,1968 + + + + + + 84 + 25 + Records, Post Office and Civil Service, Committee - General, 3 folders,1968 + + + + + + 84 + 26 + Records, Post Office and Civil Service, Committee - General, 3 folders,1968 + + + + + + 84 + 27 + Records, Post Office and Civil Service, Committee - General, 3 folders,1968 + + + + + + 85 + 1 + Records, Requests, General (B) - re: Vietnam,1968-1969 + + + + + + 85 + 2 + Records, Issues, General (A-E), 13 folders,1969 + + + + + + 85 + 3 + Records, Issues, General (A-E), 13 folders,1969 + + + + + + 85 + 4 + Records, Issues, General (A-E), 13 folders,1969 + + + + + + 85 + 5 + Records, Issues, General (A-E), 13 folders,1969 + + + + + + 85 + 6 + Records, Issues, General (A-E), 13 folders,1969 + + + + + + 85 + 7 + Records, Issues, General (A-E), 13 folders,1969 + + + + + + 85 + 8 + Records, Issues, General (A-E), 13 folders,1969 + + + + + + 85 + 9 + Records, Issues, General (A-E), 13 folders,1969 + + + + + + 85 + 10 + Records, Issues, General (A-E), 13 folders,1969 + + + + + + 85 + 11 + Records, Issues, General (A-E), 13 folders,1969 + + + + + + 85 + 12 + Records, Issues, General (A-E), 13 folders,1969 + + + + + + 85 + 13 + Records, Issues, General (A-E), 13 folders,1969 + + + + + + 85 + 14 + Records, Issues, General (A-E), 13 folders,1969 + + + + + + 85 + 15 + Records, Issues, General (F-H), 7 folders,1969 + + + + + + 85 + 16 + Records, Issues, General (F-H), 7 folders,1969 + + + + + + 85 + 17 + Records, Issues, General (F-H), 7 folders,1969 + + + + + + 85 + 18 + Records, Issues, General (F-H), 7 folders,1969 + + + + + + 85 + 19 + Records, Issues, General (F-H), 7 folders,1969 + + + + + + 85 + 20 + Records, Issues, General (F-H), 7 folders,1969 + + + + + + 85 + 21 + Records, Issues, General (F-H), 7 folders,1969 + + + + + + 86 + 1 + Records, Issues, General, (I-R), 11 folders,1969 + + + + + + 86 + 2 + Records, Issues, General, (I-R), 11 folders,1969 + + + + + + 86 + 3 + Records, Issues, General, (I-R), 11 folders,1969 + + + + + + 86 + 4 + Records, Issues, General, (I-R), 11 folders,1969 + + + + + + 86 + 5 + Records, Issues, General, (I-R), 11 folders,1969 + + + + + + 86 + 6 + Records, Issues, General, (I-R), 11 folders,1969 + + + + + + 86 + 7 + Records, Issues, General, (I-R), 11 folders,1969 + + + + + + 86 + 8 + Records, Issues, General, (I-R), 11 folders,1969 + + + + + + 86 + 9 + Records, Issues, General, (I-R), 11 folders,1969 + + + + + + 86 + 10 + Records, Issues, General, (I-R), 11 folders,1969 + + + + + + 86 + 11 + Records, Issues, General, (I-R), 11 folders,1969 + + + + + + 86 + 12 + Records, Issues, General, (R-Z), 11 folders,1969 + + + + + + 86 + 13 + Records, Issues, General, (R-Z), 11 folders,1969 + + + + + + 86 + 14 + Records, Issues, General, (R-Z), 11 folders,1969 + + + + + + 86 + 15 + Records, Issues, General, (R-Z), 11 folders,1969 + + + + + + 86 + 16 + Records, Issues, General, (R-Z), 11 folders,1969 + + + + + + 86 + 17 + Records, Issues, General, (R-Z), 11 folders,1969 + + + + + + 86 + 18 + Records, Issues, General, (R-Z), 11 folders,1969 + + + + + + 86 + 19 + Records, Issues, General, (R-Z), 11 folders,1969 + + + + + + 86 + 20 + Records, Issues, General, (R-Z), 11 folders,1969 + + + + + + 86 + 21 + Records, Issues, General, (R-Z), 11 folders,1969 + + + + + + 86 + 22 + Records, Issues, General, (R-Z), 11 folders,1969 + + + + + + 87 + 1 + Records, A and SS Committee - General,1969 + + + + + + 87 + 2 + Records, Agriculture and Forestry (A-Z), 19 folders,1969 + + + + + + 87 + 3 + Records, Agriculture and Forestry (A-Z), 19 folders,1969 + + + + + + 87 + 4 + Records, Agriculture and Forestry (A-Z), 19 folders,1969 + + + + + + 87 + 5 + Records, Agriculture and Forestry (A-Z), 19 folders,1969 + + + + + + 87 + 6 + Records, Agriculture and Forestry (A-Z), 19 folders,1969 + + + + + + 87 + 7 + Records, Agriculture and Forestry (A-Z), 19 folders,1969 + + + + + + 87 + 8 + Records, Agriculture and Forestry (A-Z), 19 folders,1969 + + + + + + 87 + 9 + Records, Agriculture and Forestry (A-Z), 19 folders,1969 + + + + + + 87 + 10 + Records, Agriculture and Forestry (A-Z), 19 folders,1969 + + + + + + 87 + 11 + Records, Agriculture and Forestry (A-Z), 19 folders,1969 + + + + + + 87 + 12 + Records, Agriculture and Forestry (A-Z), 19 folders,1969 + + + + + + 87 + 13 + Records, Agriculture and Forestry (A-Z), 19 folders,1969 + + + + + + 87 + 14 + Records, Agriculture and Forestry (A-Z), 19 folders,1969 + + + + + + 87 + 15 + Records, Agriculture and Forestry (A-Z), 19 folders,1969 + + + + + + 87 + 16 + Records, Agriculture and Forestry (A-Z), 19 folders,1969 + + + + + + 87 + 17 + Records, Agriculture and Forestry (A-Z), 19 folders,1969 + + + + + + 87 + 18 + Records, Agriculture and Forestry (A-Z), 19 folders,1969 + + + + + + 87 + 19 + Records, Agriculture and Forestry (A-Z), 19 folders,1969 + + + + + + 87 + 20 + Records, Agriculture and Forestry (A-Z), 19 folders,1969 + + + + + + 87 + 21 + Records, Agriculture Committee 200 4/14/69- Laboratory Animal Welfare,1969 + + + + + + 87 + 22 + Records, Armed Services, General (H-L, no M), 4 folders,1969 + + + + + + 87 + 23 + Records, Armed Services, General (H-L, no M), 4 folders,1969 + + + + + + 87 + 24 + Records, Armed Services, General (H-L, no M), 4 folders,1969 + + + + + + 87 + 25 + Records, Armed Services, General (H-L, no M), 4 folders,1969 + + + + + + 87 + 26 + Records, Armed Services - Petition W.O.M.A.N. Organization 3/24/69,1969 + + + + + + 87 + 27 + Records, Armed Services - 401 8/26/69 - Draft,1969 + + + + + + 87 + 28 + Records, Armed Services - 401 9/11/69 - Draft,1969 + + + + + + 87 + 29 + Records, Armed Services - 401 10/15/69 - Draft,1969 + + + + + + 87 + 30 + Records, Armed Services - 409 8/26/69 - M.I.R.V.,1969 + + + + + + 87 + 31 + Records, Armed Services - Committee - Response to our A.B.M. letter,1969 + + + + + + 87 + 32 + Records, Appropriations, General, (A-M), 13 folders,1969 + + + + + + 87 + 33 + Records, Appropriations, General, (A-M), 13 folders,1969 + + + + + + 87 + 34 + Records, Appropriations, General, (A-M), 13 folders,1969 + + + + + + 87 + 35 + Records, Appropriations, General, (A-M), 13 folders,1969 + + + + + + 87 + 36 + Records, Appropriations, General, (A-M), 13 folders,1969 + + + + + + 87 + 37 + Records, Appropriations, General, (A-M), 13 folders,1969 + + + + + + 87 + 38 + Records, Appropriations, General, (A-M), 13 folders,1969 + + + + + + 87 + 39 + Records, Appropriations, General, (A-M), 13 folders,1969 + + + + + + 87 + 40 + Records, Appropriations, General, (A-M), 13 folders,1969 + + + + + + 87 + 41 + Records, Appropriations, General, (A-M), 13 folders,1969 + + + + + + 87 + 42 + Records, Appropriations, General, (A-M), 13 folders,1969 + + + + + + 87 + 43 + Records, Appropriations, General, (A-M), 13 folders,1969 + + + + + + 87 + 44 + Records, Appropriations, General, (A-M), 13 folders,1969 + + + + + + 87 + 45 + Records, Appropriations Committee - 300 10/24/69 - Medical Research Cuts,1969 + + + + + + 87 + 46 + Records, Appropriations Committee - Support for Education,1969 + + + + + + 88 + 1 + Records, Appropriations, General, (N-Z), 8 folders,1969 + + + + + + 88 + 2 + Records, Appropriations, General, (N-Z), 8 folders,1969 + + + + + + 88 + 3 + Records, Appropriations, General, (N-Z), 8 folders,1969 + + + + + + 88 + 4 + Records, Appropriations, General, (N-Z), 8 folders,1969 + + + + + + 88 + 5 + Records, Appropriations, General, (N-Z), 8 folders,1969 + + + + + + 88 + 6 + Records, Appropriations, General, (N-Z), 8 folders,1969 + + + + + + 88 + 7 + Records, Appropriations, General, (N-Z), 8 folders,1969 + + + + + + 88 + 8 + Records, Appropriations, General, (N-Z), 8 folders,1969 + + + + + + 88 + 9 + Records, Appropriations Committee - 300 10/15/69 Medical Research Cuts,1969 + + + + + + 88 + 10 + Records, Armed Services, General (A-G, N-Z), 15 folders,1969 + + + + + + 88 + 11 + Records, Armed Services, General (A-G, N-Z), 15 folders,1969 + + + + + + 88 + 12 + Records, Armed Services, General (A-G, N-Z), 15 folders,1969 + + + + + + 88 + 13 + Records, Armed Services, General (A-G, N-Z), 15 folders,1969 + + + + + + 88 + 14 + Records, Armed Services, General (A-G, N-Z), 15 folders,1969 + + + + + + 88 + 15 + Records, Armed Services, General (A-G, N-Z), 15 folders,1969 + + + + + + 88 + 16 + Records, Armed Services, General (A-G, N-Z), 15 folders,1969 + + + + + + 88 + 17 + Records, Armed Services, General (A-G, N-Z), 15 folders,1969 + + + + + + 88 + 18 + Records, Armed Services, General (A-G, N-Z), 15 folders,1969 + + + + + + 88 + 19 + Records, Armed Services, General (A-G, N-Z), 15 folders,1969 + + + + + + 88 + 20 + Records, Armed Services, General (A-G, N-Z), 15 folders,1969 + + + + + + 88 + 21 + Records, Armed Services, General (A-G, N-Z), 15 folders,1969 + + + + + + 88 + 22 + Records, Armed Services, General (A-G, N-Z), 15 folders,1969 + + + + + + 88 + 23 + Records, Armed Services, General (A-G, N-Z), 15 folders,1969 + + + + + + 88 + 24 + Records, Armed Services, General (A-G, N-Z), 15 folders,1969 + + + + + + 89 + 1 + Records, Banking and Currency, General, (A-Z), 19 folders,1969 + + + + + + 89 + 2 + Records, Banking and Currency, General, (A-Z), 19 folders,1969 + + + + + + 89 + 3 + Records, Banking and Currency, General, (A-Z), 19 folders,1969 + + + + + + 89 + 4 + Records, Banking and Currency, General, (A-Z), 19 folders,1969 + + + + + + 89 + 5 + Records, Banking and Currency, General, (A-Z), 19 folders,1969 + + + + + + 89 + 6 + Records, Banking and Currency, General, (A-Z), 19 folders,1969 + + + + + + 89 + 7 + Records, Banking and Currency, General, (A-Z), 19 folders,1969 + + + + + + 89 + 8 + Records, Banking and Currency, General, (A-Z), 19 folders,1969 + + + + + + 89 + 9 + Records, Banking and Currency, General, (A-Z), 19 folders,1969 + + + + + + 89 + 10 + Records, Banking and Currency, General, (A-Z), 19 folders,1969 + + + + + + 89 + 11 + Records, Banking and Currency, General, (A-Z), 19 folders,1969 + + + + + + 89 + 12 + Records, Banking and Currency, General, (A-Z), 19 folders,1969 + + + + + + 89 + 13 + Records, Banking and Currency, General, (A-Z), 19 folders,1969 + + + + + + 89 + 14 + Records, Banking and Currency, General, (A-Z), 19 folders,1969 + + + + + + 89 + 15 + Records, Banking and Currency, General, (A-Z), 19 folders,1969 + + + + + + 89 + 16 + Records, Banking and Currency, General, (A-Z), 19 folders,1969 + + + + + + 89 + 17 + Records, Banking and Currency, General, (A-Z), 19 folders,1969 + + + + + + 89 + 18 + Records, Banking and Currency, General, (A-Z), 19 folders,1969 + + + + + + 89 + 19 + Records, Banking and Currency, General, (A-Z), 19 folders,1969 + + + + + + 89 + 20 + Records, Commerce, General, 5 folders,1969 + + + + + + 89 + 21 + Records, Commerce, General, 5 folders,1969 + + + + + + 89 + 22 + Records, Commerce, General, 5 folders,1969 + + + + + + 89 + 23 + Records, Commerce, General, 5 folders,1969 + + + + + + 89 + 24 + Records, Commerce, General, 5 folders,1969 + + + + + + 89 + 25 + Records, Commerce, Aviation, 2 folders,1969 + + + + + + 89 + 26 + Records, Commerce, Aviation, 2 folders,1969 + + + + + + 89 + 27 + Records, Commerce, Communications, 3 folders,1969 + + + + + + 89 + 28 + Records, Commerce, Communications, 3 folders,1969 + + + + + + 89 + 29 + Records, Commerce, Communications, 3 folders,1969 + + + + + + 89 + 30 + Records, Commerce, Consumers, 4 folders,1969 + + + + + + 89 + 31 + Records, Commerce, Consumers, 4 folders,1969 + + + + + + 89 + 32 + Records, Commerce, Consumers, 4 folders,1969 + + + + + + 89 + 33 + Records, Commerce, Consumers, 4 folders,1969 + + + + + + 89 + 34 + Records, Commerce, Merchant Marine and Fisheries,1969 + + + + + + 89 + 35 + Records, Commerce, Surface Transportation, 2 folders,1969 + + + + + + 89 + 36 + Records, Commerce, Surface Transportation, 2 folders,1969 + + + + + + 90 + 1 + Records, Finance, General, (A-L), 24 folders,1969 + + + + + + 90 + 2 + Records, Finance, General, (A-L), 24 folders,1969 + + + + + + 90 + 3 + Records, Finance, General, (A-L), 24 folders,1969 + + + + + + 90 + 4 + Records, Finance, General, (A-L), 24 folders,1969 + + + + + + 90 + 5 + Records, Finance, General, (A-L), 24 folders,1969 + + + + + + 90 + 6 + Records, Finance, General, (A-L), 24 folders,1969 + + + + + + 90 + 7 + Records, Finance, General, (A-L), 24 folders,1969 + + + + + + 90 + 8 + Records, Finance, General, (A-L), 24 folders,1969 + + + + + + 90 + 9 + Records, Finance, General, (A-L), 24 folders,1969 + + + + + + 90 + 10 + Records, Finance, General, (A-L), 24 folders,1969 + + + + + + 90 + 11 + Records, Finance, General, (A-L), 24 folders,1969 + + + + + + 90 + 12 + Records, Finance, General, (A-L), 24 folders,1969 + + + + + + 90 + 13 + Records, Finance, General, (A-L), 24 folders,1969 + + + + + + 90 + 14 + Records, Finance, General, (A-L), 24 folders,1969 + + + + + + 90 + 15 + Records, Finance, General, (A-L), 24 folders,1969 + + + + + + 90 + 16 + Records, Finance, General, (A-L), 24 folders,1969 + + + + + + 90 + 17 + Records, Finance, General, (A-L), 24 folders,1969 + + + + + + 90 + 18 + Records, Finance, General, (A-L), 24 folders,1969 + + + + + + 90 + 19 + Records, Finance, General, (A-L), 24 folders,1969 + + + + + + 90 + 20 + Records, Finance, General, (A-L), 24 folders,1969 + + + + + + 90 + 21 + Records, Finance, General, (A-L), 24 folders,1969 + + + + + + 90 + 22 + Records, Finance, General, (A-L), 24 folders,1969 + + + + + + 90 + 23 + Records, Finance, General, (A-L), 24 folders,1969 + + + + + + 90 + 24 + Records, Finance, General, (A-L), 24 folders,1969 + + + + + + 91 + 1 + Records, Finance, General, (M-Z), 20 folders,1969 + + + + + + 91 + 2 + Records, Finance, General, (M-Z), 20 folders,1969 + + + + + + 91 + 3 + Records, Finance, General, (M-Z), 20 folders,1969 + + + + + + 91 + 4 + Records, Finance, General, (M-Z), 20 folders,1969 + + + + + + 91 + 5 + Records, Finance, General, (M-Z), 20 folders,1969 + + + + + + 91 + 6 + Records, Finance, General, (M-Z), 20 folders,1969 + + + + + + 91 + 7 + Records, Finance, General, (M-Z), 20 folders,1969 + + + + + + 91 + 8 + Records, Finance, General, (M-Z), 20 folders,1969 + + + + + + 91 + 9 + Records, Finance, General, (M-Z), 20 folders,1969 + + + + + + 91 + 10 + Records, Finance, General, (M-Z), 20 folders,1969 + + + + + + 91 + 11 + Records, Finance, General, (M-Z), 20 folders,1969 + + + + + + 91 + 12 + Records, Finance, General, (M-Z), 20 folders,1969 + + + + + + 91 + 13 + Records, Finance, General, (M-Z), 20 folders,1969 + + + + + + 91 + 14 + Records, Finance, General, (M-Z), 20 folders,1969 + + + + + + 91 + 15 + Records, Finance, General, (M-Z), 20 folders,1969 + + + + + + 91 + 16 + Records, Finance, General, (M-Z), 20 folders,1969 + + + + + + 91 + 17 + Records, Finance, General, (M-Z), 20 folders,1969 + + + + + + 91 + 18 + Records, Finance, General, (M-Z), 20 folders,1969 + + + + + + 91 + 19 + Records, Finance, General, (M-Z), 20 folders,1969 + + + + + + 91 + 20 + Records, Finance, General, (M-Z), 20 folders,1969 + + + + + + 91 + 21 + Records, Anzus Interparliamentary Conference,1969 + + + + + + 91 + 22 + Records, Foreign Relations, General, (A-H), 8 folders,1969 + + + + + + 91 + 23 + Records, Foreign Relations, General, (A-H), 8 folders,1969 + + + + + + 91 + 24 + Records, Foreign Relations, General, (A-H), 8 folders,1969 + + + + + + 91 + 25 + Records, Foreign Relations, General, (A-H), 8 folders,1969 + + + + + + 91 + 26 + Records, Foreign Relations, General, (A-H), 8 folders,1969 + + + + + + 91 + 27 + Records, Foreign Relations, General, (A-H), 8 folders,1969 + + + + + + 91 + 28 + Records, Foreign Relations, General, (A-H), 8 folders,1969 + + + + + + 91 + 29 + Records, Foreign Relations, General, (A-H), 8 folders,1969 + + + + + + 92 + 1 + Records, Foreign Relations, General (I-Z), 12 folders,1969 + + + + + + 92 + 2 + Records, Foreign Relations, General (I-Z), 12 folders,1969 + + + + + + 92 + 3 + Records, Foreign Relations, General (I-Z), 12 folders,1969 + + + + + + 92 + 4 + Records, Foreign Relations, General (I-Z), 12 folders,1969 + + + + + + 92 + 5 + Records, Foreign Relations, General (I-Z), 12 folders,1969 + + + + + + 92 + 6 + Records, Foreign Relations, General (I-Z), 12 folders,1969 + + + + + + 92 + 7 + Records, Foreign Relations, General (I-Z), 12 folders,1969 + + + + + + 92 + 8 + Records, Foreign Relations, General (I-Z), 12 folders,1969 + + + + + + 92 + 9 + Records, Foreign Relations, General (I-Z), 12 folders,1969 + + + + + + 92 + 10 + Records, Foreign Relations, General (I-Z), 12 folders,1969 + + + + + + 92 + 11 + Records, Foreign Relations, General (I-Z), 12 folders,1969 + + + + + + 92 + 12 + Records, Foreign Relations, General (I-Z), 12 folders,1969 + + + + + + 92 + 13 + Records, Foreign Relations, Vietnam, (A-Z), 19 folders,1969 + + + + + + 92 + 14 + Records, Foreign Relations, Vietnam, (A-Z), 19 folders,1969 + + + + + + 92 + 15 + Records, Foreign Relations, Vietnam, (A-Z), 19 folders,1969 + + + + + + 92 + 16 + Records, Foreign Relations, Vietnam, (A-Z), 19 folders,1969 + + + + + + 92 + 17 + Records, Foreign Relations, Vietnam, (A-Z), 19 folders,1969 + + + + + + 92 + 18 + Records, Foreign Relations, Vietnam, (A-Z), 19 folders,1969 + + + + + + 92 + 19 + Records, Foreign Relations, Vietnam, (A-Z), 19 folders,1969 + + + + + + 92 + 20 + Records, Foreign Relations, Vietnam, (A-Z), 19 folders,1969 + + + + + + 92 + 21 + Records, Foreign Relations, Vietnam, (A-Z), 19 folders,1969 + + + + + + 92 + 22 + Records, Foreign Relations, Vietnam, (A-Z), 19 folders,1969 + + + + + + 92 + 23 + Records, Foreign Relations, Vietnam, (A-Z), 19 folders,1969 + + + + + + 92 + 24 + Records, Foreign Relations, Vietnam, (A-Z), 19 folders,1969 + + + + + + 92 + 25 + Records, Foreign Relations, Vietnam, (A-Z), 19 folders,1969 + + + + + + 92 + 26 + Records, Foreign Relations, Vietnam, (A-Z), 19 folders,1969 + + + + + + 92 + 27 + Records, Foreign Relations, Vietnam, (A-Z), 19 folders,1969 + + + + + + 92 + 28 + Records, Foreign Relations, Vietnam, (A-Z), 19 folders,1969 + + + + + + 92 + 29 + Records, Foreign Relations, Vietnam, (A-Z), 19 folders,1969 + + + + + + 92 + 30 + Records, Foreign Relations, Vietnam, (A-Z), 19 folders,1969 + + + + + + 92 + 31 + Records, Foreign Relations, Vietnam, (A-Z), 19 folders,1969 + + + + + + 92 + 32 + Records, Government Operations, General, (A-Z), 18 folders,1969 + + + + + + 92 + 33 + Records, Government Operations, General, (A-Z), 18 folders,1969 + + + + + + 92 + 34 + Records, Government Operations, General, (A-Z), 18 folders,1969 + + + + + + 92 + 35 + Records, Government Operations, General, (A-Z), 18 folders,1969 + + + + + + 92 + 36 + Records, Government Operations, General, (A-Z), 18 folders,1969 + + + + + + 92 + 37 + Records, Government Operations, General, (A-Z), 18 folders,1969 + + + + + + 92 + 38 + Records, Government Operations, General, (A-Z), 18 folders,1969 + + + + + + 92 + 39 + Records, Government Operations, General, (A-Z), 18 folders,1969 + + + + + + 92 + 40 + Records, Government Operations, General, (A-Z), 18 folders,1969 + + + + + + 92 + 41 + Records, Government Operations, General, (A-Z), 18 folders,1969 + + + + + + 92 + 42 + Records, Government Operations, General, (A-Z), 18 folders,1969 + + + + + + 92 + 43 + Records, Government Operations, General, (A-Z), 18 folders,1969 + + + + + + 92 + 44 + Records, Government Operations, General, (A-Z), 18 folders,1969 + + + + + + 92 + 45 + Records, Government Operations, General, (A-Z), 18 folders,1969 + + + + + + 92 + 46 + Records, Government Operations, General, (A-Z), 18 folders,1969 + + + + + + 92 + 47 + Records, Government Operations, General, (A-Z), 18 folders,1969 + + + + + + 92 + 48 + Records, Government Operations, General, (A-Z), 18 folders,1969 + + + + + + 92 + 49 + Records, Government Operations, General, (A-Z), 18 folders,1969 + + + + + + 92 + 50 + Records, Interior and Insular Affairs, General, (A-Z), 19 folders,1969 + + + + + + 92 + 51 + Records, Interior and Insular Affairs, General, (A-Z), 19 folders,1969 + + + + + + 92 + 52 + Records, Interior and Insular Affairs, General, (A-Z), 19 folders,1969 + + + + + + 92 + 53 + Records, Interior and Insular Affairs, General, (A-Z), 19 folders,1969 + + + + + + 92 + 54 + Records, Interior and Insular Affairs, General, (A-Z), 19 folders,1969 + + + + + + 92 + 55 + Records, Interior and Insular Affairs, General, (A-Z), 19 folders,1969 + + + + + + 92 + 56 + Records, Interior and Insular Affairs, General, (A-Z), 19 folders,1969 + + + + + + 92 + 57 + Records, Interior and Insular Affairs, General, (A-Z), 19 folders,1969 + + + + + + 92 + 58 + Records, Interior and Insular Affairs, General, (A-Z), 19 folders,1969 + + + + + + 92 + 59 + Records, Interior and Insular Affairs, General, (A-Z), 19 folders,1969 + + + + + + 92 + 60 + Records, Interior and Insular Affairs, General, (A-Z), 19 folders,1969 + + + + + + 92 + 61 + Records, Interior and Insular Affairs, General, (A-Z), 19 folders,1969 + + + + + + 92 + 62 + Records, Interior and Insular Affairs, General, (A-Z), 19 folders,1969 + + + + + + 92 + 63 + Records, Interior and Insular Affairs, General, (A-Z), 19 folders,1969 + + + + + + 92 + 64 + Records, Interior and Insular Affairs, General, (A-Z), 19 folders,1969 + + + + + + 92 + 65 + Records, Interior and Insular Affairs, General, (A-Z), 19 folders,1969 + + + + + + 92 + 66 + Records, Interior and Insular Affairs, General, (A-Z), 19 folders,1969 + + + + + + 92 + 67 + Records, Interior and Insular Affairs, General, (A-Z), 19 folders,1969 + + + + + + 92 + 68 + Records, Interior and Insular Affairs, General, (A-Z), 19 folders,1969 + + + + + + 92 + 69 + Records, S. J. Res. 610 Women's Equal Rights,1969 + + + + + + 92 + 70 + Records, Judiciary, General, (A-B), 4 folders,1969 + + + + + + 92 + 71 + Records, Judiciary, General, (A-B), 4 folders,1969 + + + + + + 92 + 72 + Records, Judiciary, General, (A-B), 4 folders,1969 + + + + + + 92 + 73 + Records, Judiciary, General, (A-B), 4 folders,1969 + + + + + + 93 + 1 + Records, Judiciary, General, (C-J), 14 folders,1969 + + + + + + 93 + 2 + Records, Judiciary, General, (C-J), 14 folders,1969 + + + + + + 93 + 3 + Records, Judiciary, General, (C-J), 14 folders,1969 + + + + + + 93 + 4 + Records, Judiciary, General, (C-J), 14 folders,1969 + + + + + + 93 + 5 + Records, Judiciary, General, (C-J), 14 folders,1969 + + + + + + 93 + 6 + Records, Judiciary, General, (C-J), 14 folders,1969 + + + + + + 93 + 7 + Records, Judiciary, General, (C-J), 14 folders,1969 + + + + + + 93 + 8 + Records, Judiciary, General, (C-J), 14 folders,1969 + + + + + + 93 + 9 + Records, Judiciary, General, (C-J), 14 folders,1969 + + + + + + 93 + 10 + Records, Judiciary, General, (C-J), 14 folders,1969 + + + + + + 93 + 11 + Records, Judiciary, General, (C-J), 14 folders,1969 + + + + + + 93 + 12 + Records, Judiciary, General, (C-J), 14 folders,1969 + + + + + + 93 + 13 + Records, Judiciary, General, (C-J), 14 folders,1969 + + + + + + 93 + 14 + Records, Judiciary, General, (C-J), 14 folders,1969 + + + + + + 93 + 15 + Records, Fortas Nomination, (Con),1969 + + + + + + 93 + 16 + Records, General, (K-Z), 21 folders,1969 + + + + + + 93 + 17 + Records, General, (K-Z), 21 folders,1969 + + + + + + 93 + 18 + Records, General, (K-Z), 21 folders,1969 + + + + + + 93 + 19 + Records, General, (K-Z), 21 folders,1969 + + + + + + 93 + 20 + Records, General, (K-Z), 21 folders,1969 + + + + + + 93 + 21 + Records, General, (K-Z), 21 folders,1969 + + + + + + 93 + 22 + Records, General, (K-Z), 21 folders,1969 + + + + + + 93 + 23 + Records, General, (K-Z), 21 folders,1969 + + + + + + 93 + 24 + Records, General, (K-Z), 21 folders,1969 + + + + + + 93 + 25 + Records, General, (K-Z), 21 folders,1969 + + + + + + 93 + 26 + Records, General, (K-Z), 21 folders,1969 + + + + + + 93 + 27 + Records, General, (K-Z), 21 folders,1969 + + + + + + 93 + 28 + Records, General, (K-Z), 21 folders,1969 + + + + + + 93 + 29 + Records, General, (K-Z), 21 folders,1969 + + + + + + 93 + 30 + Records, General, (K-Z), 21 folders,1969 + + + + + + 93 + 31 + Records, General, (K-Z), 21 folders,1969 + + + + + + 93 + 32 + Records, General, (K-Z), 21 folders,1969 + + + + + + 93 + 33 + Records, General, (K-Z), 21 folders,1969 + + + + + + 93 + 34 + Records, General, (K-Z), 21 folders,1969 + + + + + + 93 + 35 + Records, General, (K-Z), 21 folders,1969 + + + + + + 93 + 36 + Records, General, (K-Z), 21 folders,1969 + + + + + + 94 + 1 + Records, Judiciary, Civil Rights, (I-J, P-Q),1969 + + + + + + 94 + 2 + Records, Judiciary, Crime and Disorder, (A-E, H, N-Q, U-Z),1969 + + + + + + 94 + 3 + Records, Judiciary, Fortas Nomination - Anti-Semitic,1969 + + + + + + 94 + 4 + Records, Judiciary, Fortas Nomination – S.C.N./Research,1969 + + + + + + 94 + 5 + Records, Judiciary, Fortas Nomination - Pro,1969 + + + + + + 94 + 6 + Records, Judiciary, Court Decisions,1969 + + + + + + 94 + 7 + Records, General Legislative Correspondence, H-N* (*League of Women Voters filed with L), 24 folders,1968 + + + + + + 94 + 8 + Records, General Legislative Correspondence, H-N* (*League of Women Voters filed with L), 24 folders,1968 + + + + + + 94 + 9 + Records, General Legislative Correspondence, H-N* (*League of Women Voters filed with L), 24 folders,1968 + + + + + + 94 + 10 + Records, General Legislative Correspondence, H-N* (*League of Women Voters filed with L), 24 folders,1968 + + + + + + 94 + 11 + Records, General Legislative Correspondence, H-N* (*League of Women Voters filed with L), 24 folders,1968 + + + + + + 94 + 12 + Records, General Legislative Correspondence, H-N* (*League of Women Voters filed with L), 24 folders,1968 + + + + + + 94 + 13 + Records, General Legislative Correspondence, H-N* (*League of Women Voters filed with L), 24 folders,1968 + + + + + + 94 + 14 + Records, General Legislative Correspondence, H-N* (*League of Women Voters filed with L), 24 folders,1968 + + + + + + 94 + 15 + Records, General Legislative Correspondence, H-N* (*League of Women Voters filed with L), 24 folders,1968 + + + + + + 94 + 16 + Records, General Legislative Correspondence, H-N* (*League of Women Voters filed with L), 24 folders,1968 + + + + + + 94 + 17 + Records, General Legislative Correspondence, H-N* (*League of Women Voters filed with L), 24 folders,1968 + + + + + + 94 + 18 + Records, General Legislative Correspondence, H-N* (*League of Women Voters filed with L), 24 folders,1968 + + + + + + 94 + 19 + Records, General Legislative Correspondence, H-N* (*League of Women Voters filed with L), 24 folders,1968 + + + + + + 94 + 20 + Records, General Legislative Correspondence, H-N* (*League of Women Voters filed with L), 24 folders,1968 + + + + + + 94 + 21 + Records, General Legislative Correspondence, H-N* (*League of Women Voters filed with L), 24 folders,1968 + + + + + + 94 + 22 + Records, General Legislative Correspondence, H-N* (*League of Women Voters filed with L), 24 folders,1968 + + + + + + 94 + 23 + Records, General Legislative Correspondence, H-N* (*League of Women Voters filed with L), 24 folders,1968 + + + + + + 94 + 24 + Records, General Legislative Correspondence, H-N* (*League of Women Voters filed with L), 24 folders,1968 + + + + + + 94 + 25 + Records, General Legislative Correspondence, H-N* (*League of Women Voters filed with L), 24 folders,1968 + + + + + + 94 + 26 + Records, General Legislative Correspondence, H-N* (*League of Women Voters filed with L), 24 folders,1968 + + + + + + 94 + 27 + Records, General Legislative Correspondence, H-N* (*League of Women Voters filed with L), 24 folders,1968 + + + + + + 94 + 28 + Records, General Legislative Correspondence, H-N* (*League of Women Voters filed with L), 24 folders,1968 + + + + + + 94 + 29 + Records, General Legislative Correspondence, H-N* (*League of Women Voters filed with L), 24 folders,1968 + + + + + + 94 + 30 + Records, General Legislative Correspondence, H-N* (*League of Women Voters filed with L), 24 folders,1968 + + + + + + 107 + 1 + Records, Judiciary, W-Z, 4 folders,1970 + + + + + + 107 + 2 + Records, Judiciary, W-Z, 4 folders,1970 + + + + + + 107 + 3 + Records, Judiciary, W-Z, 4 folders,1970 + + + + + + 107 + 4 + Records, Judiciary, W-Z, 4 folders,1970 + + + + + + 107 + 5 + Records, Municipal Bonds-Rent Deduction (HR 6368) 1961,1961 + + + + + + 107 + 6 + Records, Freedom Commission, Freedom Academy (HR 8954) 1961,1961 + + + + + + 107 + 7 + Records, Freedom Commission, Freedom Academy (HR 1366) 1960-62,1960-1962 + + + + + + 107 + 8 + Records, Surplus Agriculture Commodities, Emergency Feed (HR 6522) 1959-1963,1959-1963 + + + + + + 107 + 9 + Records, Internal Revenue Code, To Amend (HR 5977) 1961,1961 + + + + + + 107 + 10 + Records, Authorize Use of Great Lakes Vessels (HR 5311) 1959,1959 + + + + + + 107 + 11 + Records, Federal Coal Mine Safety Act, To Amend (HR 5312) 1958-59,1958-1959 + + + + + + 107 + 12 + Records, Universal Military Training and Service Act (HR 5338) 1959,1959 + + + + + + 107 + 13 + Records, Student Records Postage Rate (HR 6367) 1958,1958 + + + + + + 107 + 14 + Records, Bimla Singh Narang, Private Bill (HR 3916) 1961,1961 + + + + + + 107 + 15 + Records, Oil Pollution Act, To Amend (HR 6626) 1960-61,1960-1961 + + + + + + 107 + 16 + Records, Environment, A-Z, 23 folders,1972 + + + + + + 107 + 17 + Records, Environment, A-Z, 23 folders,1972 + + + + + + 107 + 18 + Records, Environment, A-Z, 23 folders,1972 + + + + + + 107 + 19 + Records, Environment, A-Z, 23 folders,1972 + + + + + + 107 + 20 + Records, Environment, A-Z, 23 folders,1972 + + + + + + 107 + 21 + Records, Environment, A-Z, 23 folders,1972 + + + + + + 107 + 22 + Records, Environment, A-Z, 23 folders,1972 + + + + + + 107 + 23 + Records, Environment, A-Z, 23 folders,1972 + + + + + + 107 + 24 + Records, Environment, A-Z, 23 folders,1972 + + + + + + 107 + 25 + Records, Environment, A-Z, 23 folders,1972 + + + + + + 107 + 26 + Records, Environment, A-Z, 23 folders,1972 + + + + + + 107 + 27 + Records, Environment, A-Z, 23 folders,1972 + + + + + + 107 + 28 + Records, Environment, A-Z, 23 folders,1972 + + + + + + 107 + 29 + Records, Environment, A-Z, 23 folders,1972 + + + + + + 107 + 30 + Records, Environment, A-Z, 23 folders,1972 + + + + + + 107 + 31 + Records, Environment, A-Z, 23 folders,1972 + + + + + + 107 + 32 + Records, Environment, A-Z, 23 folders,1972 + + + + + + 107 + 33 + Records, Environment, A-Z, 23 folders,1972 + + + + + + 107 + 34 + Records, Environment, A-Z, 23 folders,1972 + + + + + + 107 + 35 + Records, Environment, A-Z, 23 folders,1972 + + + + + + 107 + 36 + Records, Environment, A-Z, 23 folders,1972 + + + + + + 107 + 37 + Records, Environment, A-Z, 23 folders,1972 + + + + + + 107 + 38 + Records, Environment, A-Z, 23 folders,1972 + + + + + + 107 + 39 + Records, Excise Tax, New Cars,undated + + + + + + 107 + 40 + Records, Foreign Relations, Vietnam, 6 folders,undated + + + + + + 107 + 41 + Records, Foreign Relations, Vietnam, 6 folders,undated + + + + + + 107 + 42 + Records, Foreign Relations, Vietnam, 6 folders,undated + + + + + + 107 + 43 + Records, Foreign Relations, Vietnam, 6 folders,undated + + + + + + 107 + 44 + Records, Foreign Relations, Vietnam, 6 folders,undated + + + + + + 107 + 45 + Records, Foreign Relations, Vietnam, 6 folders,undated + + + + + + 107 + 46 + Records, Foreign Relations - 4/1972, 2 folders,1972 + + + + + + 107 + 47 + Records, Foreign Relations - 4/1972, 2 folders,1972 + + + + + + 108 + 1 + Records, Foreign Relations, 1-3/1972, 3 folders,1972 + + + + + + 108 + 2 + Records, Foreign Relations, 1-3/1972, 3 folders,1972 + + + + + + 108 + 3 + Records, Foreign Relations, 1-3/1972, 3 folders,1972 + + + + + + 108 + 4 + Records, Great Lakes,1972 + + + + + + 108 + 5 + Records, Foreign Relations, General, 6 folders,1972 + + + + + + 108 + 6 + Records, Foreign Relations, General, 6 folders,1972 + + + + + + 108 + 7 + Records, Foreign Relations, General, 6 folders,1972 + + + + + + 108 + 8 + Records, Foreign Relations, General, 6 folders,1972 + + + + + + 108 + 9 + Records, Foreign Relations, General, 6 folders,1972 + + + + + + 108 + 10 + Records, Foreign Relations, General, 6 folders,1972 + + + + + + 108 + 11 + Records, Foreign Relations, Aid,1972 + + + + + + 108 + 12 + Records, Foreign Relations, Prisoners of War,1972 + + + + + + 108 + 13 + Records, Foreign Relations,Vietnamese Orphan Act,1972 + + + + + + 108 + 14 + Records, Foreign Relations, China Trip by Nixon,1972 + + + + + + 108 + 15 + Records, Government Operations, Executive Reorganization,1972 + + + + + + 108 + 16 + Records, Labor, Transportation Strikes (S560),1972 + + + + + + 108 + 17 + Records, Labor, Landrum-Griffin Act,1972 + + + + + + 108 + 18 + Records, 5-8/1972, Labor, 14 folders,1972 + + + + + + 108 + 19 + Records, 5-8/1972, Labor, 14 folders,1972 + + + + + + 108 + 20 + Records, 5-8/1972, Labor, 14 folders,1972 + + + + + + 108 + 21 + Records, 5-8/1972, Labor, 14 folders,1972 + + + + + + 108 + 22 + Records, 5-8/1972, Labor, 14 folders,1972 + + + + + + 108 + 23 + Records, 5-8/1972, Labor, 14 folders,1972 + + + + + + 108 + 24 + Records, 5-8/1972, Labor, 14 folders,1972 + + + + + + 108 + 25 + Records, 5-8/1972, Labor, 14 folders,1972 + + + + + + 108 + 26 + Records, 5-8/1972, Labor, 14 folders,1972 + + + + + + 108 + 27 + Records, 5-8/1972, Labor, 14 folders,1972 + + + + + + 108 + 28 + Records, 5-8/1972, Labor, 14 folders,1972 + + + + + + 108 + 29 + Records, 5-8/1972, Labor, 14 folders,1972 + + + + + + 108 + 30 + Records, 5-8/1972, Labor, 14 folders,1972 + + + + + + 108 + 31 + Records, 5-8/1972, Labor, 14 folders,1972 + + + + + + 108 + 32 + Records, Labor, Metric System,1972 + + + + + + 109 + 1 + Records, Michigan State Legislation, General, 8 folders,1972 + + + + + + 109 + 2 + Records, Michigan State Legislation, General, 8 folders,1972 + + + + + + 109 + 3 + Records, Michigan State Legislation, General, 8 folders,1972 + + + + + + 109 + 4 + Records, Michigan State Legislation, General, 8 folders,1972 + + + + + + 109 + 5 + Records, Michigan State Legislation, General, 8 folders,1972 + + + + + + 109 + 6 + Records, Michigan State Legislation, General, 8 folders,1972 + + + + + + 109 + 7 + Records, Michigan State Legislation, General, 8 folders,1972 + + + + + + 109 + 8 + Records, Michigan State Legislation, General, 8 folders,1972 + + + + + + 109 + 9 + Records, Military, Excluding Veterans Affairs,1972 + + + + + + 109 + 10 + Records, Parks, 3 folders,1972 + + + + + + 109 + 11 + Records, Parks, 3 folders,1972 + + + + + + 109 + 12 + Records, Parks, 3 folders,1972 + + + + + + 109 + 13 + Records, Patents and Copyrights,1972 + + + + + + 109 + 14 + Records, Pay Board,1972 + + + + + + 109 + 15 + Records, No Address- Miscellaneous Topics,1972 + + + + + + 109 + 16 + Records, Parks, 9-12/1972,1972 + + + + + + 109 + 17 + Records, Natural Resources,1972 + + + + + + 109 + 18 + Records, Pensions, 1-12/1972, 5 folders,1972 + + + + + + 109 + 19 + Records, Pensions, 1-12/1972, 5 folders,1972 + + + + + + 109 + 20 + Records, Pensions, 1-12/1972, 5 folders,1972 + + + + + + 109 + 21 + Records, Pensions, 1-12/1972, 5 folders,1972 + + + + + + 109 + 22 + Records, Pensions, 1-12/1972, 5 folders,1972 + + + + + + 109 + 23 + Records, Politics, 6-12/1972, 6 folders,1972 + + + + + + 109 + 24 + Records, Politics, 6-12/1972, 6 folders,1972 + + + + + + 109 + 25 + Records, Politics, 6-12/1972, 6 folders,1972 + + + + + + 109 + 26 + Records, Politics, 6-12/1972, 6 folders,1972 + + + + + + 109 + 27 + Records, Politics, 6-12/1972, 6 folders,1972 + + + + + + 109 + 28 + Records, Politics, 6-12/1972, 6 folders,1972 + + + + + + 109 + 29 + Records, Politics, Nader,1972 + + + + + + 110 + 1 + Records, Gun Control, 4 folders,1972 + + + + + + 110 + 2 + Records, Gun Control, 4 folders,1972 + + + + + + 110 + 3 + Records, Gun Control, 4 folders,1972 + + + + + + 110 + 4 + Records, Gun Control, 4 folders,1972 + + + + + + 110 + 5 + Records, Health, 5-7/1972, 3 folders,1972 + + + + + + 110 + 6 + Records, Health, 5-7/1972, 3 folders,1972 + + + + + + 110 + 7 + Records, Health, 5-7/1972, 3 folders,1972 + + + + + + 110 + 8 + Records, Health, other the Drugs, 9 folders,1972 + + + + + + 110 + 9 + Records, Health, other the Drugs, 9 folders,1972 + + + + + + 110 + 10 + Records, Health, other the Drugs, 9 folders,1972 + + + + + + 110 + 11 + Records, Health, other the Drugs, 9 folders,1972 + + + + + + 110 + 12 + Records, Health, other the Drugs, 9 folders,1972 + + + + + + 110 + 13 + Records, Health, other the Drugs, 9 folders,1972 + + + + + + 110 + 14 + Records, Health, other the Drugs, 9 folders,1972 + + + + + + 110 + 15 + Records, Health, other the Drugs, 9 folders,1972 + + + + + + 110 + 16 + Records, Health, other the Drugs, 9 folders,1972 + + + + + + 110 + 17 + Records, Housing,1972 + + + + + + 110 + 18 + Records, Immigration,1972 + + + + + + 110 + 19 + Records, Indians,1972 + + + + + + 110 + 20 + Records, Miscellaneous Issues, 9 folders,1972 + + + + + + 110 + 21 + Records, Miscellaneous Issues, 9 folders,1972 + + + + + + 110 + 22 + Records, Miscellaneous Issues, 9 folders,1972 + + + + + + 110 + 23 + Records, Miscellaneous Issues, 9 folders,1972 + + + + + + 110 + 24 + Records, Miscellaneous Issues, 9 folders,1972 + + + + + + 110 + 25 + Records, Miscellaneous Issues, 9 folders,1972 + + + + + + 110 + 26 + Records, Miscellaneous Issues, 9 folders,1972 + + + + + + 110 + 27 + Records, Miscellaneous Issues, 9 folders,1972 + + + + + + 110 + 28 + Records, Miscellaneous Issues, 9 folders,1972 + + + + + + 111 + 1 + Records, Miscellaneous Issues (A-B, D, G-O), 23 folders,1972 + + + + + + 111 + 2 + Records, Miscellaneous Issues (A-B, D, G-O), 23 folders,1972 + + + + + + 111 + 3 + Records, Miscellaneous Issues (A-B, D, G-O), 23 folders,1972 + + + + + + 111 + 4 + Records, Miscellaneous Issues (A-B, D, G-O), 23 folders,1972 + + + + + + 111 + 5 + Records, Miscellaneous Issues (A-B, D, G-O), 23 folders,1972 + + + + + + 111 + 6 + Records, Miscellaneous Issues (A-B, D, G-O), 23 folders,1972 + + + + + + 111 + 7 + Records, Miscellaneous Issues (A-B, D, G-O), 23 folders,1972 + + + + + + 111 + 8 + Records, Miscellaneous Issues (A-B, D, G-O), 23 folders,1972 + + + + + + 111 + 9 + Records, Miscellaneous Issues (A-B, D, G-O), 23 folders,1972 + + + + + + 111 + 10 + Records, Miscellaneous Issues (A-B, D, G-O), 23 folders,1972 + + + + + + 111 + 11 + Records, Miscellaneous Issues (A-B, D, G-O), 23 folders,1972 + + + + + + 111 + 12 + Records, Miscellaneous Issues (A-B, D, G-O), 23 folders,1972 + + + + + + 111 + 13 + Records, Miscellaneous Issues (A-B, D, G-O), 23 folders,1972 + + + + + + 111 + 14 + Records, Miscellaneous Issues (A-B, D, G-O), 23 folders,1972 + + + + + + 111 + 15 + Records, Miscellaneous Issues (A-B, D, G-O), 23 folders,1972 + + + + + + 111 + 16 + Records, Miscellaneous Issues (A-B, D, G-O), 23 folders,1972 + + + + + + 111 + 17 + Records, Miscellaneous Issues (A-B, D, G-O), 23 folders,1972 + + + + + + 111 + 18 + Records, Miscellaneous Issues (A-B, D, G-O), 23 folders,1972 + + + + + + 111 + 19 + Records, Miscellaneous Issues (A-B, D, G-O), 23 folders,1972 + + + + + + 111 + 20 + Records, Miscellaneous Issues (A-B, D, G-O), 23 folders,1972 + + + + + + 111 + 21 + Records, Miscellaneous Issues (A-B, D, G-O), 23 folders,1972 + + + + + + 111 + 22 + Records, Miscellaneous Issues (A-B, D, G-O), 23 folders,1972 + + + + + + 111 + 23 + Records, Miscellaneous Issues (A-B, D, G-O), 23 folders,1972 + + + + + + 111 + 24 + Records, Children and Youth,1972 + + + + + + 111 + 25 + Records, Civil Rights, 3 folders,1972 + + + + + + 111 + 26 + Records, Civil Rights, 3 folders,1972 + + + + + + 111 + 27 + Records, Civil Rights, 3 folders,1972 + + + + + + 111 + 28 + Records, Civil Rights, First Amendment,1972 + + + + + + 111 + 29 + Records, Civil Rights,Voting,1972 + + + + + + 111 + 30 + Records, Civil Rights, Racial and Sex,1972 + + + + + + 111 + 31 + Records, Civil Service,1972 + + + + + + 111 + 32 + Records, Commerce,1972 + + + + + + 111 + 33 + Records, Commerce, Trade,1972 + + + + + + 112 + 1 + Records, Communications, 4 folders,1972 + + + + + + 112 + 2 + Records, Communications, 4 folders,1972 + + + + + + 112 + 3 + Records, Communications, 4 folders,1972 + + + + + + 112 + 4 + Records, Communications, 4 folders,1972 + + + + + + 112 + 5 + Records, Congress, 2 folders,1972 + + + + + + 112 + 6 + Records, Congress, 2 folders,1972 + + + + + + 112 + 7 + Records, Consumers 1-12, 1972, 9 folders,1972 + + + + + + 112 + 8 + Records, Consumers 1-12, 1972, 9 folders,1972 + + + + + + 112 + 9 + Records, Consumers 1-12, 1972, 9 folders,1972 + + + + + + 112 + 10 + Records, Consumers 1-12, 1972, 9 folders,1972 + + + + + + 112 + 11 + Records, Consumers 1-12, 1972, 9 folders,1972 + + + + + + 112 + 12 + Records, Consumers 1-12, 1972, 9 folders,1972 + + + + + + 112 + 13 + Records, Consumers 1-12, 1972, 9 folders,1972 + + + + + + 112 + 14 + Records, Consumers 1-12, 1972, 9 folders,1972 + + + + + + 112 + 15 + Records, Consumers 1-12, 1972, 9 folders,1972 + + + + + + 112 + 16 + Records, Crime 1-12/1972, 2 folders,1972 + + + + + + 112 + 17 + Records, Crime 1-12/1972, 2 folders,1972 + + + + + + 112 + 18 + Records, Draft, Amnesty,1972 + + + + + + 112 + 20 + Records, Defense,1972 + + + + + + 112 + 21 + Records, District of Columbia,1972 + + + + + + 112 + 22 + Records, Drugs,1972 + + + + + + 112 + 23 + Records, Education/Inflation/Budget 1-10/1972, 4 folders,1972 + + + + + + 112 + 24 + Records, Education/Inflation/Budget 1-10/1972, 4 folders,1972 + + + + + + 112 + 25 + Records, Education/Inflation/Budget 1-10/1972, 4 folders,1972 + + + + + + 112 + 26 + Records, Education/Inflation/Budget 1-10/1972, 4 folders,1972 + + + + + + 112 + 27 + Records, Education 2-12/1972, 6 folders,1972 + + + + + + 112 + 28 + Records, Education 2-12/1972, 6 folders,1972 + + + + + + 112 + 29 + Records, Education 2-12/1972, 6 folders,1972 + + + + + + 112 + 30 + Records, Education 2-12/1972, 6 folders,1972 + + + + + + 112 + 31 + Records, Education 2-12/1972, 6 folders,1972 + + + + + + 112 + 32 + Records, Education 2-12/1972, 6 folders,1972 + + + + + + 113 + 1 + Records, Education Parks, 2 folders,1972 + + + + + + 113 + 2 + Records, Education Parks, 2 folders,1972 + + + + + + 113 + 3 + Records, Elections,1972 + + + + + + 113 + 4 + Records, White House, Detroit Concert Band,1970 + + + + + + 113 + 5 + Records, Files,1966-1977 + + + + + + 113 + 6 + Records, General, A-Y (no E, G, I-J, L, U-X, Z), 2 folders,1970 + + + + + + 113 + 7 + Records, General, A-Y (no E, G, I-J, L, U-X, Z), 2 folders,1970 + + + + + + 113 + 8 + Records, Messages, General- Press Room,1971 + + + + + + 113 + 9 + Records, Busing Rally File,1972 + + + + + + 113 + 10 + Records, Pornography,1972 + + + + + + 113 + 11 + Records, Population Control,1972 + + + + + + 113 + 12 + Records, Postal Service (not cases), 2 folders,1972 + + + + + + 113 + 13 + Records, Postal Service (not cases), 2 folders,1972 + + + + + + 113 + 14 + Records, Postal Service, Commerative Stamp,1972 + + + + + + 113 + 15 + Records, Prisons,1972 + + + + + + 113 + 16 + Records, Public Works,1972 + + + + + + 113 + 17 + Records, Retirement, 2 folders,1972 + + + + + + 113 + 18 + Records, Retirement, 2 folders,1972 + + + + + + 113 + 19 + Records, Revenue Sharing, 2 folders,1972 + + + + + + 113 + 20 + Records, Revenue Sharing, 2 folders,1972 + + + + + + 113 + 21 + Records, School Prayer,1972 + + + + + + 113 + 22 + Records, Senior Citizens,1972 + + + + + + 113 + 23 + Records, Taxes, 4-8/1972, 5 folders,1972 + + + + + + 113 + 24 + Records, Taxes, 4-8/1972, 5 folders,1972 + + + + + + 113 + 25 + Records, Taxes, 4-8/1972, 5 folders,1972 + + + + + + 113 + 26 + Records, Taxes, 4-8/1972, 5 folders,1972 + + + + + + 113 + 27 + Records, Taxes, 4-8/1972, 5 folders,1972 + + + + + + 113 + 28 + Records, Social Security (Medicare) 1-4/1972, 6 folders,1972 + + + + + + 113 + 29 + Records, Social Security (Medicare) 1-4/1972, 6 folders,1972 + + + + + + 113 + 30 + Records, Social Security (Medicare) 1-4/1972, 6 folders,1972 + + + + + + 113 + 31 + Records, Social Security (Medicare) 1-4/1972, 6 folders,1972 + + + + + + 113 + 32 + Records, Social Security (Medicare) 1-4/1972, 6 folders,1972 + + + + + + 113 + 33 + Records, Social Security (Medicare) 1-4/1972, 6 folders,1972 + + + + + + 114 + 1 + Records, Social Security 5-8/1972, 5 folders,1972 + + + + + + 114 + 2 + Records, Social Security 5-8/1972, 5 folders,1972 + + + + + + 114 + 3 + Records, Social Security 5-8/1972, 5 folders,1972 + + + + + + 114 + 4 + Records, Social Security 5-8/1972, 5 folders,1972 + + + + + + 114 + 5 + Records, Social Security 5-8/1972, 5 folders,1972 + + + + + + 114 + 6 + Records, Social Security, 9-12/1972, 6 folders,1972 + + + + + + 114 + 7 + Records, Social Security, 9-12/1972, 6 folders,1972 + + + + + + 114 + 8 + Records, Social Security, 9-12/1972, 6 folders,1972 + + + + + + 114 + 9 + Records, Social Security, 9-12/1972, 6 folders,1972 + + + + + + 114 + 10 + Records, Social Security, 9-12/1972, 6 folders,1972 + + + + + + 114 + 11 + Records, Social Security, 9-12/1972, 6 folders,1972 + + + + + + 114 + 12 + Records, Space Program,1972 + + + + + + 114 + 13 + Records, Taxes 1-2, 4, 9-12/1972, 7 folders,1972 + + + + + + 114 + 14 + Records, Taxes 1-2, 4, 9-12/1972, 7 folders,1972 + + + + + + 114 + 15 + Records, Taxes 1-2, 4, 9-12/1972, 7 folders,1972 + + + + + + 114 + 16 + Records, Taxes 1-2, 4, 9-12/1972, 7 folders,1972 + + + + + + 114 + 17 + Records, Taxes 1-2, 4, 9-12/1972, 7 folders,1972 + + + + + + 114 + 18 + Records, Taxes 1-2, 4, 9-12/1972, 7 folders,1972 + + + + + + 114 + 19 + Records, Taxes 1-2, 4, 9-12/1972, 7 folders,1972 + + + + + + 114 + 20 + Records, Taxes 1-2, 4, 9-12/1972, Business,1972 + + + + + + 114 + 21 + Records, Taxes 1-2, 4, 9-12/1972, Income,1972 + + + + + + 114 + 22 + Records, Taxes 1-2, 4, 9-12/1972, Property,1972 + + + + + + 114 + 23 + Records, Transportation, 8-12/1972, 4 folders,1972 + + + + + + 114 + 24 + Records, Transportation, 8-12/1972, 4 folders,1972 + + + + + + 114 + 25 + Records, Transportation, 8-12/1972, 4 folders,1972 + + + + + + 114 + 26 + Records, Transportation, 8-12/1972, 4 folders,1972 + + + + + + 114 + 27 + Records, Transportation, 1-6/1972, 3 folders,1972 + + + + + + 114 + 28 + Records, Transportation, 1-6/1972, 3 folders,1972 + + + + + + 114 + 29 + Records, Transportation, 1-6/1972, 3 folders,1972 + + + + + + 115 + 1 + Records, Utilities,1972 + + + + + + 115 + 2 + Records, Veterans Affairs 1-12/1972, 9 folders,1972 + + + + + + 115 + 3 + Records, Veterans Affairs 1-12/1972, 9 folders,1972 + + + + + + 115 + 4 + Records, Veterans Affairs 1-12/1972, 9 folders,1972 + + + + + + 115 + 5 + Records, Veterans Affairs 1-12/1972, 9 folders,1972 + + + + + + 115 + 6 + Records, Veterans Affairs 1-12/1972, 9 folders,1972 + + + + + + 115 + 7 + Records, Veterans Affairs 1-12/1972, 9 folders,1972 + + + + + + 115 + 8 + Records, Veterans Affairs 1-12/1972, 9 folders,1972 + + + + + + 115 + 9 + Records, Veterans Affairs 1-12/1972, 9 folders,1972 + + + + + + 115 + 10 + Records, Veterans Affairs 1-12/1972, 9 folders,1972 + + + + + + 115 + 11 + Records, Welfare 1-12/1972, 9 folders,1972 + + + + + + 115 + 12 + Records, Welfare 1-12/1972, 9 folders,1972 + + + + + + 115 + 13 + Records, Welfare 1-12/1972, 9 folders,1972 + + + + + + 115 + 14 + Records, Welfare 1-12/1972, 9 folders,1972 + + + + + + 115 + 15 + Records, Welfare 1-12/1972, 9 folders,1972 + + + + + + 115 + 16 + Records, Welfare 1-12/1972, 9 folders,1972 + + + + + + 115 + 17 + Records, Welfare 1-12/1972, 9 folders,1972 + + + + + + 115 + 18 + Records, Welfare 1-12/1972, 9 folders,1972 + + + + + + 115 + 19 + Records, Welfare 1-12/1972, 9 folders,1972 + + + + + + 115 + 20 + Records, Agriculture 1-12/1972, 11 folders,1972 + + + + + + 115 + 21 + Records, Agriculture 1-12/1972, 11 folders,1972 + + + + + + 115 + 22 + Records, Agriculture 1-12/1972, 11 folders,1972 + + + + + + 115 + 23 + Records, Agriculture 1-12/1972, 11 folders,1972 + + + + + + 115 + 24 + Records, Agriculture 1-12/1972, 11 folders,1972 + + + + + + 115 + 25 + Records, Agriculture 1-12/1972, 11 folders,1972 + + + + + + 115 + 26 + Records, Agriculture 1-12/1972, 11 folders,1972 + + + + + + 115 + 27 + Records, Agriculture 1-12/1972, 11 folders,1972 + + + + + + 115 + 28 + Records, Agriculture 1-12/1972, 11 folders,1972 + + + + + + 115 + 29 + Records, Agriculture 1-12/1972, 11 folders,1972 + + + + + + 115 + 30 + Records, Agriculture 1-12/1972, 11 folders,1972 + + + + + + 115 + 31 + Records, Animals 5-12/1972, 4 folders,1972 + + + + + + 115 + 32 + Records, Animals 5-12/1972, 4 folders,1972 + + + + + + 115 + 33 + Records, Animals 5-12/1972, 4 folders,1972 + + + + + + 115 + 34 + Records, Animals 5-12/1972, 4 folders,1972 + + + + + + 115 + 35 + Records, Anti-Trust and Monopolies,undated + + + + + + 115 + 36 + Records, Appropriations 1-8/1972, 7 folders,1972 + + + + + + 115 + 37 + Records, Appropriations 1-8/1972, 7 folders,1972 + + + + + + 115 + 38 + Records, Appropriations 1-8/1972, 7 folders,1972 + + + + + + 115 + 39 + Records, Appropriations 1-8/1972, 7 folders,1972 + + + + + + 115 + 40 + Records, Appropriations 1-8/1972, 7 folders,1972 + + + + + + 115 + 41 + Records, Appropriations 1-8/1972, 7 folders,1972 + + + + + + 115 + 42 + Records, Appropriations 1-8/1972, 7 folders,1972 + + + + + + 116 + 1 + Records, Appropriations 9-12/1972 4 folders,1972 + + + + + + 116 + 2 + Records, Appropriations 9-12/1972 4 folders,1972 + + + + + + 116 + 3 + Records, Appropriations 9-12/1972 4 folders,1972 + + + + + + 116 + 4 + Records, Appropriations 9-12/1972 4 folders,1972 + + + + + + 116 + 5 + Records, Armed Services 1-12/1972, 8 folders,1972 + + + + + + 116 + 6 + Records, 5-Armed Services 1-12/1972, 8 folders,1972 + + + + + + 116 + 7 + Records, 5-Armed Services 1-12/1972, 8 folders,1972 + + + + + + 116 + 8 + Records, 5-Armed Services 1-12/1972, 8 folders,1972 + + + + + + 116 + 9 + Records, 5-Armed Services 1-12/1972, 8 folders,1972 + + + + + + 116 + 10 + Records, 5-Armed Services 1-12/1972, 8 folders,1972 + + + + + + 116 + 11 + Records, 5-Armed Services 1-12/1972, 8 folders,1972 + + + + + + 116 + 12 + Records, 5-Armed Services 1-12/1972, 8 folders,1972 + + + + + + 116 + 13 + Records, Armed Services,1972 + + + + + + 116 + 14 + Records, Automobile Industry,1972 + + + + + + 116 + 15 + Records, Busing 5-8/1972, 5 folders,1972 + + + + + + 116 + 16 + Records, Busing 5-8/1972, 5 folders,1972 + + + + + + 116 + 17 + Records, Busing 5-8/1972, 5 folders,1972 + + + + + + 116 + 18 + Records, Busing 5-8/1972, 5 folders,1972 + + + + + + 116 + 19 + Records, Busing 5-8/1972, 5 folders,1972 + + + + + + 116 + 20 + Records, Busing 7-12/1972, 11 folders,1972 + + + + + + 116 + 21 + Records, Busing 7-12/1972, 11 folders,1972 + + + + + + 116 + 22 + Records, Busing 7-12/1972, 11 folders,1972 + + + + + + 116 + 23 + Records, Busing 7-12/1972, 11 folders,1972 + + + + + + 116 + 24 + Records, Busing 7-12/1972, 11 folders,1972 + + + + + + 116 + 25 + Records, Busing 7-12/1972, 11 folders,1972 + + + + + + 116 + 26 + Records, Busing 7-12/1972, 11 folders,1972 + + + + + + 116 + 27 + Records, Busing 7-12/1972, 11 folders,1972 + + + + + + 116 + 28 + Records, Busing 7-12/1972, 11 folders,1972 + + + + + + 116 + 29 + Records, Busing 7-12/1972, 11 folders,1972 + + + + + + 116 + 30 + Records, Busing 7-12/1972, 11 folders,1972 + + + + + + 117 + 1 + Records, Busing 9-12/1972, 5 folders,1972 + + + + + + 117 + 2 + Records, Busing 9-12/1972, 5 folders,1972 + + + + + + 117 + 3 + Records, Busing 9-12/1972, 5 folders,1972 + + + + + + 117 + 4 + Records, Busing 9-12/1972, 5 folders,1972 + + + + + + 117 + 5 + Records, Busing 9-12/1972, 5 folders,1972 + + + + + + 117 + 6 + Records, Animals 1-4/1972, 3 folders,1972 + + + + + + 117 + 7 + Records, Animals 1-4/1972, 3 folders,1972 + + + + + + 117 + 8 + Records, Animals 1-4/1972, 3 folders,1972 + + + + + + 117 + 9 + Records, Requests, I and M,1970 + + + + + + 117 + 10 + Records, Juvenile Delinquency, Issues, A-Z, 21 folders,1972 + + + + + + 117 + 11 + Records, Juvenile Delinquency, Issues, A-Z, 21 folders,1972 + + + + + + 117 + 12 + Records, Juvenile Delinquency, Issues, A-Z, 21 folders,1972 + + + + + + 117 + 13 + Records, Juvenile Delinquency, Issues, A-Z, 21 folders,1972 + + + + + + 117 + 14 + Records, Juvenile Delinquency, Issues, A-Z, 21 folders,1972 + + + + + + 117 + 15 + Records, Juvenile Delinquency, Issues, A-Z, 21 folders,1972 + + + + + + 117 + 16 + Records, Juvenile Delinquency, Issues, A-Z, 21 folders,1972 + + + + + + 117 + 17 + Records, Juvenile Delinquency, Issues, A-Z, 21 folders,1972 + + + + + + 117 + 18 + Records, Juvenile Delinquency, Issues, A-Z, 21 folders,1972 + + + + + + 117 + 19 + Records, Juvenile Delinquency, Issues, A-Z, 21 folders,1972 + + + + + + 117 + 20 + Records, Juvenile Delinquency, Issues, A-Z, 21 folders,1972 + + + + + + 117 + 21 + Records, Juvenile Delinquency, Issues, A-Z, 21 folders,1972 + + + + + + 117 + 22 + Records, Juvenile Delinquency, Issues, A-Z, 21 folders,1972 + + + + + + 117 + 23 + Records, Juvenile Delinquency, Issues, A-Z, 21 folders,1972 + + + + + + 117 + 24 + Records, Juvenile Delinquency, Issues, A-Z, 21 folders,1972 + + + + + + 117 + 25 + Records, Juvenile Delinquency, Issues, A-Z, 21 folders,1972 + + + + + + 117 + 26 + Records, Juvenile Delinquency, Issues, A-Z, 21 folders,1972 + + + + + + 117 + 27 + Records, Juvenile Delinquency, Issues, A-Z, 21 folders,1972 + + + + + + 117 + 28 + Records, Juvenile Delinquency, Issues, A-Z, 21 folders,1972 + + + + + + 117 + 29 + Records, Juvenile Delinquency, Issues, A-Z, 21 folders,1972 + + + + + + 117 + 30 + Records, Juvenile Delinquency, Issues, A-Z, 21 folders,1972 + + + + + + 117 + 31 + Records, Juvenile Delinquency, Private Bills,1972 + + + + + + 117 + 32 + Records, Judiciary Supreme Court, 6 folders,1972 + + + + + + 117 + 33 + Records, Judiciary Supreme Court, 6 folders,1972 + + + + + + 117 + 34 + Records, Judiciary Supreme Court, 6 folders,1972 + + + + + + 117 + 35 + Records, Judiciary Supreme Court, 6 folders,1972 + + + + + + 117 + 36 + Records, Judiciary Supreme Court, 6 folders,1972 + + + + + + 117 + 37 + Records, Judiciary Supreme Court, 6 folders,1972 + + + + + + 118 + 1 + Records, Agriculture and Forestry, A-Z, 6 folders,1972 + + + + + + 118 + 2 + Records, Agriculture and Forestry, A-Z, 6 folders,1972 + + + + + + 118 + 3 + Records, Agriculture and Forestry, A-Z, 6 folders,1972 + + + + + + 118 + 4 + Records, Agriculture and Forestry, A-Z, 6 folders,1972 + + + + + + 118 + 5 + Records, Agriculture and Forestry, A-Z, 6 folders,1972 + + + + + + 118 + 6 + Records, Agriculture and Forestry, A-Z, 6 folders,1972 + + + + + + 118 + 7 + Records, Miscellaneous Issues, 13 folders,1972 + + + + + + 118 + 8 + Records, Miscellaneous Issues, 13 folders,1972 + + + + + + 118 + 9 + Records, Miscellaneous Issues, 13 folders,1972 + + + + + + 118 + 10 + Records, Miscellaneous Issues, 13 folders,1972 + + + + + + 118 + 11 + Records, Miscellaneous Issues, 13 folders,1972 + + + + + + 118 + 12 + Records, Miscellaneous Issues, 13 folders,1972 + + + + + + 118 + 13 + Records, Miscellaneous Issues, 13 folders,1972 + + + + + + 118 + 14 + Records, Miscellaneous Issues, 13 folders,1972 + + + + + + 118 + 15 + Records, Miscellaneous Issues, 13 folders,1972 + + + + + + 118 + 16 + Records, Miscellaneous Issues, 13 folders,1972 + + + + + + 118 + 17 + Records, Miscellaneous Issues, 13 folders,1972 + + + + + + 118 + 18 + Records, Miscellaneous Issues, 13 folders,1972 + + + + + + 118 + 19 + Records, Miscellaneous Issues, 13 folders,1972 + + + + + + 118 + 20 + Records, Appropriations/HR 18515 - Labor - HEW,1972 + + + + + + 118 + 21 + Records, Appropriations, A-S, 16 folders,1972 + + + + + + 118 + 22 + Records, Appropriations, A-S, 16 folders,1972 + + + + + + 118 + 23 + Records, Appropriations, A-S, 16 folders,1972 + + + + + + 118 + 24 + Records, Appropriations, A-S, 16 folders,1972 + + + + + + 118 + 25 + Records, Appropriations, A-S, 16 folders,1972 + + + + + + 118 + 26 + Records, Appropriations, A-S, 16 folders,1972 + + + + + + 118 + 27 + Records, Appropriations, A-S, 16 folders,1972 + + + + + + 118 + 28 + Records, Appropriations, A-S, 16 folders,1972 + + + + + + 118 + 29 + Records, Appropriations, A-S, 16 folders,1972 + + + + + + 118 + 30 + Records, Appropriations, A-S, 16 folders,1972 + + + + + + 118 + 31 + Records, Appropriations, A-S, 16 folders,1972 + + + + + + 118 + 32 + Records, Appropriations, A-S, 16 folders,1972 + + + + + + 118 + 33 + Records, Appropriations, A-S, 16 folders,1972 + + + + + + 118 + 34 + Records, Appropriations, A-S, 16 folders,1972 + + + + + + 118 + 35 + Records, Appropriations, A-S, 16 folders,1972 + + + + + + 118 + 36 + Records, Appropriations, A-S, 16 folders,1972 + + + + + + 119 + 1 + Records, Appropriations, T-Z, 4 folders,1970 + + + + + + 119 + 2 + Records, Appropriations, T-Z, 4 folders,1970 + + + + + + 119 + 3 + Records, Appropriations, T-Z, 4 folders,1970 + + + + + + 119 + 4 + Records, Appropriations, T-Z, 4 folders,1970 + + + + + + 119 + 5 + Records, Appropriations,Vocational Rehab.,1970 + + + + + + 119 + 6 + Records, Armed Services, A-Z, 20 folders,1970 + + + + + + 119 + 7 + Records, Armed Services, A-Z, 20 folders,1970 + + + + + + 119 + 8 + Records, Armed Services, A-Z, 20 folders,1970 + + + + + + 119 + 9 + Records, Armed Services, A-Z, 20 folders,1970 + + + + + + 119 + 10 + Records, Armed Services, A-Z, 20 folders,1970 + + + + + + 119 + 11 + Records, Armed Services, A-Z, 20 folders,1970 + + + + + + 119 + 12 + Records, Armed Services, A-Z, 20 folders,1970 + + + + + + 119 + 13 + Records, Armed Services, A-Z, 20 folders,1970 + + + + + + 119 + 14 + Records, Armed Services, A-Z, 20 folders,1970 + + + + + + 119 + 15 + Records, Armed Services, A-Z, 20 folders,1970 + + + + + + 119 + 16 + Records, Armed Services, A-Z, 20 folders,1970 + + + + + + 119 + 17 + Records, Armed Services, A-Z, 20 folders,1970 + + + + + + 119 + 18 + Records, Armed Services, A-Z, 20 folders,1970 + + + + + + 119 + 19 + Records, Armed Services, A-Z, 20 folders,1970 + + + + + + 119 + 20 + Records, Armed Services, A-Z, 20 folders,1970 + + + + + + 119 + 21 + Records, Armed Services, A-Z, 20 folders,1970 + + + + + + 119 + 22 + Records, Armed Services, A-Z, 20 folders,1970 + + + + + + 119 + 23 + Records, Armed Services, A-Z, 20 folders,1970 + + + + + + 119 + 24 + Records, Armed Services, A-Z, 20 folders,1970 + + + + + + 119 + 25 + Records, Armed Services, A-Z, 20 folders,1970 + + + + + + 119 + 26 + Records, Armed Services, Disposal of Nerve Gas,1970 + + + + + + 119 + 27 + Records, Armed Services, Safeguard ABM Petition,1970 + + + + + + 119 + 28 + Records, Banking and Currency, A-W (no X-Z), 13 folders,1970 + + + + + + 119 + 29 + Records, Banking and Currency, A-W (no X-Z), 13 folders,1970 + + + + + + 119 + 30 + Records, Banking and Currency, A-W (no X-Z), 13 folders,1970 + + + + + + 119 + 31 + Records, Banking and Currency, A-W (no X-Z), 13 folders,1970 + + + + + + 119 + 32 + Records, Banking and Currency, A-W (no X-Z), 13 folders,1970 + + + + + + 119 + 33 + Records, Banking and Currency, A-W (no X-Z), 13 folders,1970 + + + + + + 119 + 34 + Records, Banking and Currency, A-W (no X-Z), 13 folders,1970 + + + + + + 119 + 35 + Records, Banking and Currency, A-W (no X-Z), 13 folders,1970 + + + + + + 119 + 36 + Records, Banking and Currency, A-W (no X-Z), 13 folders,1970 + + + + + + 119 + 37 + Records, Banking and Currency, A-W (no X-Z), 13 folders,1970 + + + + + + 119 + 38 + Records, Banking and Currency, A-W (no X-Z), 13 folders,1970 + + + + + + 119 + 39 + Records, Banking and Currency, A-W (no X-Z), 13 folders,1970 + + + + + + 119 + 40 + Records, Banking and Currency, A-W (no X-Z), 13 folders,1970 + + + + + + 120 + 1 + Records, Commerce, Committee, General, 4 folders,1970 + + + + + + 120 + 2 + Records, Commerce, Committee, General, 4 folders,1970 + + + + + + 120 + 3 + Records, Commerce, Committee, General, 4 folders,1970 + + + + + + 120 + 4 + Records, Commerce, Committee, General, 4 folders,1970 + + + + + + 120 + 5 + Records, Commerce, Aviation, A-Z (no E, T-V, X-Z), 3 folders,1970 + + + + + + 120 + 6 + Records, Commerce, Aviation, A-Z (no E, T-V, X-Z), 3 folders,1970 + + + + + + 120 + 7 + Records, Commerce, Aviation, A-Z (no E, T-V, X-Z), 3 folders,1970 + + + + + + 120 + 8 + Records, Commerce, Communications - out of state,1970 + + + + + + 120 + 9 + Records, Commerce, Communications, A-W (no F, I-J, Q, V, X-Z), 3 folders,1970 + + + + + + 120 + 10 + Records, Commerce, Communications, A-W (no F, I-J, Q, V, X-Z), 3 folders,1970 + + + + + + 120 + 11 + Records, Commerce, Communications, A-W (no F, I-J, Q, V, X-Z), 3 folders,1970 + + + + + + 120 + 12 + Records, Commerce, Consumer, A-Y (no I-J, X, Z), 6 folders,1970 + + + + + + 120 + 13 + Records, Commerce, Consumer, A-Y (no I-J, X, Z), 6 folders,1970 + + + + + + 120 + 14 + Records, Commerce, Consumer, A-Y (no I-J, X, Z), 6 folders,1970 + + + + + + 120 + 15 + Records, Commerce, Consumer, A-Y (no I-J, X, Z), 6 folders,1970 + + + + + + 120 + 16 + Records, Commerce, Consumer, A-Y (no I-J, X, Z), 6 folders,1970 + + + + + + 120 + 17 + Records, Commerce, Consumer, A-Y (no I-J, X, Z), 6 folders,1970 + + + + + + 120 + 18 + Records, Commerce, Merchant Marine and Fisheries, B-W (no A, N-O, Q, U-V, X-Z), 4 folders,1970 + + + + + + 120 + 19 + Records, Commerce, Merchant Marine and Fisheries, B-W (no A, N-O, Q, U-V, X-Z), 4 folders,1970 + + + + + + 120 + 20 + Records, Commerce, Merchant Marine and Fisheries, B-W (no A, N-O, Q, U-V, X-Z), 4 folders,1970 + + + + + + 120 + 21 + Records, Commerce, Merchant Marine and Fisheries, B-W (no A, N-O, Q, U-V, X-Z), 4 folders,1970 + + + + + + 120 + 22 + Records, Commerce, Surface Transportation, A-Z, 6 folders,1970 + + + + + + 120 + 23 + Records, Commerce, Surface Transportation, A-Z, 6 folders,1970 + + + + + + 120 + 24 + Records, Commerce, Surface Transportation, A-Z, 6 folders,1970 + + + + + + 120 + 25 + Records, Commerce, Surface Transportation, A-Z, 6 folders,1970 + + + + + + 120 + 26 + Records, Commerce, Surface Transportation, A-Z, 6 folders,1970 + + + + + + 120 + 27 + Records, Commerce, Surface Transportation, A-Z, 6 folders,1970 + + + + + + 120 + 28 + Records, Commerce, District of Columbia,1970 + + + + + + 120 + 29 + Records, Commerce, Finance, A-C, 7 folders,1970 + + + + + + 120 + 30 + Records, Commerce, Finance, A-C, 7 folders,1970 + + + + + + 120 + 31 + Records, Commerce, Finance, A-C, 7 folders,1970 + + + + + + 120 + 32 + Records, Commerce, Finance, A-C, 7 folders,1970 + + + + + + 120 + 33 + Records, Commerce, Finance, A-C, 7 folders,1970 + + + + + + 120 + 34 + Records, Commerce, Finance, A-C, 7 folders,1970 + + + + + + 120 + 35 + Records, Commerce, Finance, A-C, 7 folders,1970 + + + + + + 121 + 1 + Records, Finance, D-M, 15 folders,1970 + + + + + + 121 + 2 + Records, Finance, D-M, 15 folders,1970 + + + + + + 121 + 3 + Records, Finance, D-M, 15 folders,1970 + + + + + + 121 + 4 + Records, Finance, D-M, 15 folders,1970 + + + + + + 121 + 5 + Records, Finance, D-M, 15 folders,1970 + + + + + + 121 + 6 + Records, Finance, D-M, 15 folders,1970 + + + + + + 121 + 7 + Records, Finance, D-M, 15 folders,1970 + + + + + + 121 + 8 + Records, Finance, D-M, 15 folders,1970 + + + + + + 121 + 9 + Records, Finance, D-M, 15 folders,1970 + + + + + + 121 + 10 + Records, Finance, D-M, 15 folders,1970 + + + + + + 121 + 11 + Records, Finance, D-M, 15 folders,1970 + + + + + + 121 + 12 + Records, Finance, D-M, 15 folders,1970 + + + + + + 121 + 13 + Records, Finance, D-M, 15 folders,1970 + + + + + + 121 + 14 + Records, Finance, D-M, 15 folders,1970 + + + + + + 121 + 15 + Records, Finance, D-M, 15 folders,1970 + + + + + + 121 + 16 + Records, Finance, Michigan Credit Union League Medicaid, Medicare,1970 + + + + + + 121 + 17 + Records, Finance, N-Z, 13 folders,1970 + + + + + + 121 + 18 + Records, Finance, N-Z, 13 folders,1970 + + + + + + 121 + 19 + Records, Finance, N-Z, 13 folders,1970 + + + + + + 121 + 20 + Records, Finance, N-Z, 13 folders,1970 + + + + + + 121 + 21 + Records, Finance, N-Z, 13 folders,1970 + + + + + + 121 + 22 + Records, Finance, N-Z, 13 folders,1970 + + + + + + 121 + 23 + Records, Finance, N-Z, 13 folders,1970 + + + + + + 121 + 24 + Records, Finance, N-Z, 13 folders,1970 + + + + + + 121 + 25 + Records, Finance, N-Z, 13 folders,1970 + + + + + + 121 + 26 + Records, Finance, N-Z, 13 folders,1970 + + + + + + 121 + 27 + Records, Finance, N-Z, 13 folders,1970 + + + + + + 121 + 28 + Records, Finance, N-Z, 13 folders,1970 + + + + + + 121 + 29 + Records, Finance, N-Z, 13 folders,1970 + + + + + + 122 + 1 + Records, Foreign Relations, B-F (no A), 6 folders,1970 + + + + + + 122 + 2 + Records, Foreign Relations, B-F (no A), 6 folders,1970 + + + + + + 122 + 3 + Records, Foreign Relations, B-F (no A), 6 folders,1970 + + + + + + 122 + 4 + Records, Foreign Relations, B-F (no A), 6 folders,1970 + + + + + + 122 + 5 + Records, Foreign Relations, B-F (no A), 6 folders,1970 + + + + + + 122 + 6 + Records, Foreign Relations, B-F (no A), 6 folders,1970 + + + + + + 122 + 7 + Records, Foreign Relations, Genocide Treaty,1970 + + + + + + 122 + 8 + Records, Foreign Relations, Foreign Relations, G-M, 7 folders,1970 + + + + + + 122 + 9 + Records, Foreign Relations, Foreign Relations, G-M, 7 folders,1970 + + + + + + 122 + 10 + Records, Foreign Relations, Foreign Relations, G-M, 7 folders,1970 + + + + + + 122 + 11 + Records, Foreign Relations, Foreign Relations, G-M, 7 folders,1970 + + + + + + 122 + 12 + Records, Foreign Relations, Foreign Relations, G-M, 7 folders,1970 + + + + + + 122 + 13 + Records, Foreign Relations, Foreign Relations, G-M, 7 folders,1970 + + + + + + 122 + 14 + Records, Foreign Relations, Foreign Relations, G-M, 7 folders,1970 + + + + + + 122 + 15 + Records, Foreign Relations, Foreign Relations, Middle East,1970 + + + + + + 122 + 16 + Records, Messages, Nat, 4-11/1972, 8 folders,1972 + + + + + + 122 + 17 + Records, Messages, Nat, 4-11/1972, 8 folders,1972 + + + + + + 122 + 18 + Records, Messages, Nat, 4-11/1972, 8 folders,1972 + + + + + + 122 + 19 + Records, Messages, Nat, 4-11/1972, 8 folders,1972 + + + + + + 122 + 20 + Records, Messages, Nat, 4-11/1972, 8 folders,1972 + + + + + + 122 + 21 + Records, Messages, Nat, 4-11/1972, 8 folders,1972 + + + + + + 122 + 22 + Records, Messages, Nat, 4-11/1972, 8 folders,1972 + + + + + + 122 + 23 + Records, Messages, Nat, 4-11/1972, 8 folders,1972 + + + + + + 122 + 24 + Records, POW,1971-1973 + + + + + + 122 + 25 + Records, (Press Office Operations), Correspondence ,1973 + + + + + + 122 + 26 + Records, (Press Office Operations), Correspondence, Matt Surrell,1972 + + + + + + 122 + 27 + Records, (Press Office Operations), Correspondence, 3,12/1971,1971 + + + + + + 122 + 28 + Records, (Press Office Operations), Correspondence, Matt Surrell, Personal,1970 + + + + + + 122 + 29 + Records, (Press Office Operations), Correspondence 10-12/1970,1970 + + + + + + 123 + 1 + Records, Agriculture, 6 folders,1973 + + + + + + 123 + 2 + Records, Agriculture, 6 folders,1973 + + + + + + 123 + 3 + Records, Agriculture, 6 folders,1973 + + + + + + 123 + 4 + Records, Agriculture, 6 folders,1973 + + + + + + 123 + 5 + Records, Agriculture, 6 folders,1973 + + + + + + 123 + 6 + Records, Agriculture, 6 folders,1973 + + + + + + 123 + 7 + Records, Animals, 4 folders,1973 + + + + + + 123 + 8 + Records, Animals, 4 folders,1973 + + + + + + 123 + 9 + Records, Animals, 4 folders,1973 + + + + + + 123 + 10 + Records, Animals, 4 folders,1973 + + + + + + 123 + 11 + Records, Appropriations, 3-11/173, 12 folders,1973 + + + + + + 123 + 12 + Records, Appropriations, 3-11/173, 12 folders,1973 + + + + + + 123 + 13 + Records, Appropriations, 3-11/173, 12 folders,1973 + + + + + + 123 + 14 + Records, Appropriations, 3-11/173, 12 folders,1973 + + + + + + 123 + 15 + Records, Appropriations, 3-11/173, 12 folders,1973 + + + + + + 123 + 16 + Records, Appropriations, 3-11/173, 12 folders,1973 + + + + + + 123 + 17 + Records, Appropriations, 3-11/173, 12 folders,1973 + + + + + + 123 + 18 + Records, Appropriations, 3-11/173, 12 folders,1973 + + + + + + 123 + 19 + Records, Appropriations, 3-11/173, 12 folders,1973 + + + + + + 123 + 20 + Records, Appropriations, 3-11/173, 12 folders,1973 + + + + + + 123 + 21 + Records, Appropriations, 3-11/173, 12 folders,1973 + + + + + + 123 + 22 + Records, Appropriations, 3-11/173, 12 folders,1973 + + + + + + 124 + 1 + Records, Appropriations, 3 folders,1973 + + + + + + 124 + 2 + Records, Appropriations, 3 folders,1973 + + + + + + 124 + 3 + Records, Appropriations, 3 folders,1973 + + + + + + 124 + 4 + Records, Armed Services, 5 folders,1973 + + + + + + 124 + 5 + Records, Armed Services, 5 folders,1973 + + + + + + 124 + 6 + Records, Armed Services, 5 folders,1973 + + + + + + 124 + 7 + Records, Armed Services, 5 folders,1973 + + + + + + 124 + 8 + Records, Armed Services, 5 folders,1973 + + + + + + 124 + 9 + Records, Automobile Industry, 2 folders,1973 + + + + + + 124 + 10 + Records, Automobile Industry, 2 folders,1973 + + + + + + 124 + 11 + Records, Banking, 2 folders,1973 + + + + + + 124 + 12 + Records, Banking, 2 folders,1973 + + + + + + 124 + 13 + Records, Busing, 5 folders,1973 + + + + + + 124 + 14 + Records, Busing, 5 folders,1973 + + + + + + 124 + 15 + Records, Busing, 5 folders,1973 + + + + + + 124 + 16 + Records, Busing, 5 folders,1973 + + + + + + 124 + 17 + Records, Busing, 5 folders,1973 + + + + + + 124 + 18 + Records, Children and Youth,1973 + + + + + + 124 + 19 + Records, Civil Rights,1973 + + + + + + 124 + 20 + Records, Civil Service, 4 folders,1973 + + + + + + 124 + 21 + Records, Civil Service, 4 folders,1973 + + + + + + 124 + 22 + Records, Civil Service, 4 folders,1973 + + + + + + 124 + 23 + Records, Civil Service, 4 folders,1973 + + + + + + 124 + 24 + Records, Commerce, Trade 1-12/1973, 4 folders,1973 + + + + + + 124 + 25 + Records, Commerce, Trade 1-12/1973, 4 folders,1973 + + + + + + 124 + 26 + Records, Commerce, Trade 1-12/1973, 4 folders,1973 + + + + + + 124 + 27 + Records, Commerce, Trade 1-12/1973, 4 folders,1973 + + + + + + 124 + 28 + Records, Communications, 10 folders,1973 + + + + + + 124 + 29 + Records, Communications, 10 folders,1973 + + + + + + 124 + 30 + Records, Communications, 10 folders,1973 + + + + + + 124 + 31 + Records, Communications, 10 folders,1973 + + + + + + 124 + 32 + Records, Communications, 10 folders,1973 + + + + + + 124 + 33 + Records, Communications, 10 folders,1973 + + + + + + 124 + 34 + Records, Communications, 10 folders,1973 + + + + + + 124 + 35 + Records, Communications, 10 folders,1973 + + + + + + 124 + 36 + Records, Communications, 10 folders,1973 + + + + + + 124 + 37 + Records, Communications, 10 folders,1973 + + + + + + 125 + 1 + Records, U.S. Congress, 4 folders,1973 + + + + + + 125 + 2 + Records, U.S. Congress, 4 folders,1973 + + + + + + 125 + 3 + Records, U.S. Congress, 4 folders,1973 + + + + + + 125 + 4 + Records, U.S. Congress, 4 folders,1973 + + + + + + 125 + 5 + Records, Consumers 1-11/1973, 2 folders,1973 + + + + + + 125 + 6 + Records, Consumers 1-11/1973, 2 folders,1973 + + + + + + 125 + 7 + Records, Consumers 1-12/1973, 3 folders,1973 + + + + + + 125 + 8 + Records, Consumers 1-12/1973, 3 folders,1973 + + + + + + 125 + 9 + Records, Consumers 1-12/1973, 3 folders,1973 + + + + + + 125 + 10 + Records, Crime 1-12/1973, 5 folders,1973 + + + + + + 125 + 11 + Records, Crime 1-12/1973, 5 folders,1973 + + + + + + 125 + 12 + Records, Crime 1-12/1973, 5 folders,1973 + + + + + + 125 + 13 + Records, Crime 1-12/1973, 5 folders,1973 + + + + + + 125 + 14 + Records, Crime 1-12/1973, 5 folders,1973 + + + + + + 125 + 15 + Records, Day Care,1973 + + + + + + 125 + 16 + Records, Defense,1973 + + + + + + 125 + 17 + Records, District of Columbia,1973 + + + + + + 125 + 18 + Records, Dividends,1973 + + + + + + 125 + 19 + Records, Draft, Amnesty,1973 + + + + + + 125 + 20 + Records, Drugs, 2 folders,1973 + + + + + + 125 + 21 + Records, Drugs, 2 folders,1973 + + + + + + 125 + 22 + Records, Legislative,1973 + + + + + + 125 + 23 + Records, Watergate, 2 folders,1973 + + + + + + 125 + 24 + Records, Watergate, 2 folders,1973 + + + + + + 125 + 25 + Records, Economy, Inflation, Budget, 5 folders,1973 + + + + + + 125 + 26 + Records, Economy, Inflation, Budget, 5 folders,1973 + + + + + + 125 + 27 + Records, Economy, Inflation, Budget, 5 folders,1973 + + + + + + 125 + 28 + Records, Economy, Inflation, Budget, 5 folders,1973 + + + + + + 125 + 29 + Records, Economy, Inflation, Budget, 5 folders,1973 + + + + + + 125 + 30 + Records, Economy, Inflation, 3 folders,1973 + + + + + + 125 + 31 + Records, Economy, Inflation, 3 folders,1973 + + + + + + 125 + 32 + Records, Economy, Inflation, 3 folders,1973 + + + + + + 126 + 1 + Records, Education, 8 folders,1973 + + + + + + 126 + 2 + Records, Education, 8 folders,1973 + + + + + + 126 + 3 + Records, Education, 8 folders,1973 + + + + + + 126 + 4 + Records, Education, 8 folders,1973 + + + + + + 126 + 5 + Records, Education, 8 folders,1973 + + + + + + 126 + 6 + Records, Education, 8 folders,1973 + + + + + + 126 + 7 + Records, Education, 8 folders,1973 + + + + + + 126 + 8 + Records, Education, 8 folders,1973 + + + + + + 126 + 9 + Records, Elections, 3 folders,1973 + + + + + + 126 + 10 + Records, Elections, 3 folders,1973 + + + + + + 126 + 11 + Records, Elections, 3 folders,1973 + + + + + + 126 + 12 + Records, Energy, 14 folders,1973 + + + + + + 126 + 13 + Records, Energy, 14 folders,1973 + + + + + + 126 + 14 + Records, Energy, 14 folders,1973 + + + + + + 126 + 15 + Records, Energy, 14 folders,1973 + + + + + + 126 + 16 + Records, Energy, 14 folders,1973 + + + + + + 126 + 17 + Records, Energy, 14 folders,1973 + + + + + + 126 + 18 + Records, Energy, 14 folders,1973 + + + + + + 126 + 19 + Records, Energy, 14 folders,1973 + + + + + + 126 + 20 + Records, Energy, 14 folders,1973 + + + + + + 126 + 21 + Records, Energy, 14 folders,1973 + + + + + + 126 + 22 + Records, Energy, 14 folders,1973 + + + + + + 126 + 23 + Records, Energy, 14 folders,1973 + + + + + + 126 + 24 + Records, Energy, 14 folders,1973 + + + + + + 126 + 25 + Records, Energy, 14 folders,1973 + + + + + + 126 + 26 + Records, Environment, 5 folders,1973 + + + + + + 126 + 27 + Records, Environment, 5 folders,1973 + + + + + + 126 + 28 + Records, Environment, 5 folders,1973 + + + + + + 126 + 29 + Records, Environment, 5 folders,1973 + + + + + + 126 + 30 + Records, Environment, 5 folders,1973 + + + + + + 127 + 1 + Records, Exports,1973 + + + + + + 127 + 2 + Records, Federal Reserve Board,1973 + + + + + + 127 + 3 + Records, Foreign Relations 10-12/1973, 6 folders,1973 + + + + + + 127 + 4 + Records, Foreign Relations 10-12/1973, 6 folders,1973 + + + + + + 127 + 5 + Records, Foreign Relations 10-12/1973, 6 folders,1973 + + + + + + 127 + 6 + Records, Foreign Relations 10-12/1973, 6 folders,1973 + + + + + + 127 + 7 + Records, Foreign Relations 10-12/1973, 6 folders,1973 + + + + + + 127 + 8 + Records, Foreign Relations 10-12/1973, 6 folders,1973 + + + + + + 127 + 9 + Records, Environment, 5 folders,1973 + + + + + + 127 + 10 + Records, Environment, 5 folders,1973 + + + + + + 127 + 11 + Records, Environment, 5 folders,1973 + + + + + + 127 + 12 + Records, Environment, 5 folders,1973 + + + + + + 127 + 13 + Records, Environment, 5 folders,1973 + + + + + + 127 + 14 + Records, Foreign Aid - 4-5/1973, 4 folders,1973 + + + + + + 127 + 15 + Records, Foreign Aid - 4-5/1973, 4 folders,1973 + + + + + + 127 + 16 + Records, Foreign Aid - 4-5/1973, 4 folders,1973 + + + + + + 127 + 17 + Records, Foreign Aid - 4-5/1973, 4 folders,1973 + + + + + + 127 + 18 + Records, Foreign Relations 1-4/1973, 3 folders,1973 + + + + + + 127 + 19 + Records, Foreign Relations 1-4/1973, 3 folders,1973 + + + + + + 127 + 20 + Records, Foreign Relations 1-4/1973, 3 folders,1973 + + + + + + 127 + 21 + Records, Foreign Relations, Vietnam 1-5/1973, 4 folders,1973 + + + + + + 127 + 22 + Records, Foreign Relations, Vietnam 1-5/1973, 4 folders,1973 + + + + + + 127 + 23 + Records, Foreign Relations, Vietnam 1-5/1973, 4 folders,1973 + + + + + + 127 + 24 + Records, Foreign Relations, Vietnam 1-5/1973, 4 folders,1973 + + + + + + 127 + 25 + Records, Foreign Relations, 4-7/1973, 7 folders,1973 + + + + + + 127 + 26 + Records, Foreign Relations, 4-7/1973, 7 folders,1973 + + + + + + 127 + 27 + Records, Foreign Relations, 4-7/1973, 7 folders,1973 + + + + + + 127 + 28 + Records, Foreign Relations, 4-7/1973, 7 folders,1973 + + + + + + 127 + 29 + Records, Foreign Relations, 4-7/1973, 7 folders,1973 + + + + + + 127 + 30 + Records, Foreign Relations, 4-7/1973, 7 folders,1973 + + + + + + 127 + 31 + Records, Foreign Relations, 4-7/1973, 7 folders,1973 + + + + + + 128 + 1 + Records, Foreign Relations 8-9/1973, 2 folders,1973 + + + + + + 128 + 2 + Records, Foreign Relations 8-9/1973, 2 folders,1973 + + + + + + 128 + 3 + Records, Government Operations, 2 folders,1973 + + + + + + 128 + 4 + Records, Government Operations, 2 folders,1973 + + + + + + 128 + 5 + Records, Gun Control, 2 folders,1973 + + + + + + 128 + 6 + Records, Gun Control, 2 folders,1973 + + + + + + 128 + 7 + Records, Great Lakes,1973 + + + + + + 128 + 8 + Records, Health, 1-11/1973, 15 folders,1973 + + + + + + 128 + 9 + Records, Health, 1-11/1973, 15 folders,1973 + + + + + + 128 + 10 + Records, Health, 1-11/1973, 15 folders,1973 + + + + + + 128 + 11 + Records, Health, 1-11/1973, 15 folders,1973 + + + + + + 128 + 12 + Records, Health, 1-11/1973, 15 folders,1973 + + + + + + 128 + 13 + Records, Health, 1-11/1973, 15 folders,1973 + + + + + + 128 + 14 + Records, Health, 1-11/1973, 15 folders,1973 + + + + + + 128 + 15 + Records, Health, 1-11/1973, 15 folders,1973 + + + + + + 128 + 16 + Records, Health, 1-11/1973, 15 folders,1973 + + + + + + 128 + 17 + Records, Health, 1-11/1973, 15 folders,1973 + + + + + + 128 + 18 + Records, Health, 1-11/1973, 15 folders,1973 + + + + + + 128 + 19 + Records, Health, 1-11/1973, 15 folders,1973 + + + + + + 128 + 20 + Records, Health, 1-11/1973, 15 folders,1973 + + + + + + 128 + 21 + Records, Health, 1-11/1973, 15 folders,1973 + + + + + + 128 + 22 + Records, Health, 1-11/1973, 15 folders,1973 + + + + + + 128 + 23 + Records, Housing, 3 folders,1973 + + + + + + 128 + 24 + Records, Housing, 3 folders,1973 + + + + + + 128 + 25 + Records, Housing, 3 folders,1973 + + + + + + 128 + 26 + Records, Immigration,1973 + + + + + + 128 + 27 + Records, Imports,1973 + + + + + + 128 + 28 + Records, Indians,1973 + + + + + + 129 + 1 + Records, Miscellaneous Issues, 1-8/1973, 22 folders,1973 + + + + + + 129 + 2 + Records, Miscellaneous Issues, 1-8/1973, 22 folders,1973 + + + + + + 129 + 3 + Records, Miscellaneous Issues, 1-8/1973, 22 folders,1973 + + + + + + 129 + 4 + Records, Miscellaneous Issues, 1-8/1973, 22 folders,1973 + + + + + + 129 + 5 + Records, Miscellaneous Issues, 1-8/1973, 22 folders,1973 + + + + + + 129 + 6 + Records, Miscellaneous Issues, 1-8/1973, 22 folders,1973 + + + + + + 129 + 7 + Records, Miscellaneous Issues, 1-8/1973, 22 folders,1973 + + + + + + 129 + 8 + Records, Miscellaneous Issues, 1-8/1973, 22 folders,1973 + + + + + + 129 + 9 + Records, Miscellaneous Issues, 1-8/1973, 22 folders,1973 + + + + + + 129 + 10 + Records, Miscellaneous Issues, 1-8/1973, 22 folders,1973 + + + + + + 129 + 11 + Records, Miscellaneous Issues, 1-8/1973, 22 folders,1973 + + + + + + 129 + 12 + Records, Miscellaneous Issues, 1-8/1973, 22 folders,1973 + + + + + + 129 + 13 + Records, Miscellaneous Issues, 1-8/1973, 22 folders,1973 + + + + + + 129 + 14 + Records, Miscellaneous Issues, 1-8/1973, 22 folders,1973 + + + + + + 129 + 15 + Records, Miscellaneous Issues, 1-8/1973, 22 folders,1973 + + + + + + 129 + 16 + Records, Miscellaneous Issues, 1-8/1973, 22 folders,1973 + + + + + + 129 + 17 + Records, Miscellaneous Issues, 1-8/1973, 22 folders,1973 + + + + + + 129 + 18 + Records, Miscellaneous Issues, 1-8/1973, 22 folders,1973 + + + + + + 129 + 19 + Records, Miscellaneous Issues, 1-8/1973, 22 folders,1973 + + + + + + 129 + 20 + Records, Miscellaneous Issues, 1-8/1973, 22 folders,1973 + + + + + + 129 + 21 + Records, Miscellaneous Issues, 1-8/1973, 22 folders,1973 + + + + + + 129 + 22 + Records, Miscellaneous Issues, 1-8/1973, 22 folders,1973 + + + + + + 130 + 1 + Records, Miscellaneous Issues, 9-12/1973, 14 folders,1973 + + + + + + 130 + 2 + Records, Miscellaneous Issues, 9-12/1973, 14 folders,1973 + + + + + + 130 + 3 + Records, Miscellaneous Issues, 9-12/1973, 14 folders,1973 + + + + + + 130 + 4 + Records, Miscellaneous Issues, 9-12/1973, 14 folders,1973 + + + + + + 130 + 5 + Records, Miscellaneous Issues, 9-12/1973, 14 folders,1973 + + + + + + 130 + 6 + Records, Miscellaneous Issues, 9-12/1973, 14 folders,1973 + + + + + + 130 + 7 + Records, Miscellaneous Issues, 9-12/1973, 14 folders,1973 + + + + + + 130 + 8 + Records, Miscellaneous Issues, 9-12/1973, 14 folders,1973 + + + + + + 130 + 9 + Records, Miscellaneous Issues, 9-12/1973, 14 folders,1973 + + + + + + 130 + 10 + Records, Miscellaneous Issues, 9-12/1973, 14 folders,1973 + + + + + + 130 + 11 + Records, Miscellaneous Issues, 9-12/1973, 14 folders,1973 + + + + + + 130 + 12 + Records, Miscellaneous Issues, 9-12/1973, 14 folders,1973 + + + + + + 130 + 13 + Records, Miscellaneous Issues, 9-12/1973, 14 folders,1973 + + + + + + 130 + 14 + Records, Miscellaneous Issues, 9-12/1973, 14 folders,1973 + + + + + + 130 + 15 + Records, Judiciary 1-12/1973, 5 folders,1973 + + + + + + 130 + 16 + Records, Judiciary 1-12/1973, 5 folders,1973 + + + + + + 130 + 17 + Records, Judiciary 1-12/1973, 5 folders,1973 + + + + + + 130 + 18 + Records, Judiciary 1-12/1973, 5 folders,1973 + + + + + + 130 + 19 + Records, Judiciary 1-12/1973, 5 folders,1973 + + + + + + 130 + 20 + Records, Juvenile Delinquency,1973 + + + + + + 130 + 21 + Records, Labor 1-12/1973, 8 folders,1973 + + + + + + 130 + 22 + Records, Labor 1-12/1973, 8 folders,1973 + + + + + + 130 + 23 + Records, Labor 1-12/1973, 8 folders,1973 + + + + + + 130 + 24 + Records, Labor 1-12/1973, 8 folders,1973 + + + + + + 130 + 25 + Records, Labor 1-12/1973, 8 folders,1973 + + + + + + 130 + 26 + Records, Labor 1-12/1973, 8 folders,1973 + + + + + + 130 + 27 + Records, Labor 1-12/1973, 8 folders,1973 + + + + + + 130 + 28 + Records, Labor 1-12/1973, 8 folders,1973 + + + + + + 130 + 29 + Records, Labor Disputes,1973 + + + + + + 130 + 30 + Records, Labor, Unemployment,1973 + + + + + + 130 + 31 + Records, Landrum-Griffin Act,1973 + + + + + + 130 + 32 + Records, Legal Services,1973 + + + + + + 130 + 33 + Records, Metric System,1973 + + + + + + 130 + 34 + Records, Michigan 9-12/1973, 2 folders,1973 + + + + + + 130 + 35 + Records, Michigan 9-12/1973, 2 folders,1973 + + + + + + 130 + 36 + Records, Michigan State Legislation 1-6/1973, 2 folders,1973 + + + + + + 130 + 37 + Records, Michigan State Legislation 1-6/1973, 2 folders,1973 + + + + + + 131 + 1 + Records, Natural Resources,1973 + + + + + + 131 + 2 + Records, No Address,1973 + + + + + + 131 + 3 + Records, Nominations, Cabinet 1-12/1973, 3 folders ,1973 + + + + + + 131 + 4 + Records, Nominations, Cabinet 1-12/1973, 3 folders,1973 + + + + + + 131 + 5 + Records, Nominations, Cabinet 1-12/1973, 3 folders,1973 + + + + + + 131 + 6 + Records, Parks - 1-12/1973, 4 folders,1973 + + + + + + 131 + 7 + Records, Parks - 1-12/1973, 4 folders,1973 + + + + + + 131 + 8 + Records, Parks - 1-12/1973, 4 folders,1973 + + + + + + 131 + 9 + Records, Parks - 1-12/1973, 4 folders,1973 + + + + + + 131 + 10 + Records, Patents and Copyrights 4-12/73,1973 + + + + + + 131 + 11 + Records, Pay Board,1973 + + + + + + 131 + 12 + Records, Pensions - 1-12/1973, 12 folders,1973 + + + + + + 131 + 13 + Records, Pensions - 1-12/1973, 12 folders,1973 + + + + + + 131 + 14 + Records, Pensions - 1-12/1973, 12 folders,1973 + + + + + + 131 + 15 + Records, Pensions - 1-12/1973, 12 folders,1973 + + + + + + 131 + 16 + Records, Pensions - 1-12/1973, 12 folders,1973 + + + + + + 131 + 17 + Records, Pensions - 1-12/1973, 12 folders,1973 + + + + + + 131 + 18 + Records, Pensions - 1-12/1973, 12 folders,1973 + + + + + + 131 + 19 + Records, Pensions - 1-12/1973, 12 folders,1973 + + + + + + 131 + 20 + Records, Pensions - 1-12/1973, 12 folders,1973 + + + + + + 131 + 21 + Records, Pensions - 1-12/1973, 12 folders,1973 + + + + + + 131 + 22 + Records, Pensions - 1-12/1973, 12 folders,1973 + + + + + + 131 + 23 + Records, Pensions - 1-12/1973, 12 folders,1973 + + + + + + 131 + 24 + Records, Petitions,1973 + + + + + + 131 + 25 + Records, Politics 12/72-10/73, 3 folders,1972-1973 + + + + + + 131 + 26 + Records, Politics 12/72-10/73, 3 folders,1972-1973 + + + + + + 131 + 27 + Records, Politics 12/72-10/73, 3 folders,1972-1973 + + + + + + 131 + 28 + Records, Postal Service - 1/73-1/7, 4 folders,1973 + + + + + + 131 + 29 + Records, Postal Service - 1/73-1/7, 4 folders,1973 + + + + + + 131 + 30 + Records, Postal Service - 1/73-1/7, 4 folders,1973 + + + + + + 131 + 31 + Records, Postal Service - 1/73-1/7, 4 folders,1973 + + + + + + 131 + 32 + Records, Pornography 1-12/73,1973 + + + + + + 131 + 33 + Records, Public Works 1-12/73,1973 + + + + + + 131 + 34 + Records, Poverty 4-6/73,1973 + + + + + + 131 + 35 + Records, Prisons 3-4/73,1973 + + + + + + 132 + 1 + Records, Retirement,1973 + + + + + + 132 + 2 + Records, Revenue Sharing,1973 + + + + + + 132 + 3 + Records, School Prayer,1973 + + + + + + 132 + 4 + Records, Senior Citizens, 2 folders,1973 + + + + + + 132 + 5 + Records, Senior Citizens, 2 folders,1973 + + + + + + 132 + 6 + Records, Small Business,1973 + + + + + + 132 + 7 + Records, Social Security - 1-12/73, 11 folders,1973 + + + + + + 132 + 8 + Records, Social Security - 1-12/73, 11 folders,1973 + + + + + + 132 + 9 + Records, Social Security - 1-12/73, 11 folders,1973 + + + + + + 132 + 10 + Records, Social Security - 1-12/73, 11 folders,1973 + + + + + + 132 + 11 + Records, Social Security - 1-12/73, 11 folders,1973 + + + + + + 132 + 12 + Records, Social Security - 1-12/73, 11 folders,1973 + + + + + + 132 + 13 + Records, Social Security - 1-12/73, 11 folders,1973 + + + + + + 132 + 14 + Records, Social Security - 1-12/73, 11 folders,1973 + + + + + + 132 + 15 + Records, Social Security - 1-12/73, 11 folders,1973 + + + + + + 132 + 16 + Records, Social Security - 1-12/73, 11 folders,1973 + + + + + + 132 + 17 + Records, Social Security - 1-12/73, 11 folders,1973 + + + + + + 132 + 18 + Records, Social Security - 1-12/73, 11 folders,1973 + + + + + + 132 + 19 + Records, Space Program,1973 + + + + + + 133 + 1 + Records, Taxes, 1-12/1973, 11 folders,1973 + + + + + + 133 + 2 + Records, Taxes, 1-12/1973, 11 folders,1973 + + + + + + 133 + 3 + Records, Taxes, 1-12/1973, 11 folders,1973 + + + + + + 133 + 4 + Records, Taxes, 1-12/1973, 11 folders,1973 + + + + + + 133 + 5 + Records, Taxes, 1-12/1973, 11 folders,1973 + + + + + + 133 + 6 + Records, Taxes, 1-12/1973, 11 folders,1973 + + + + + + 133 + 7 + Records, Taxes, 1-12/1973, 11 folders,1973 + + + + + + 133 + 8 + Records, Taxes, 1-12/1973, 11 folders,1973 + + + + + + 133 + 9 + Records, Taxes, 1-12/1973, 11 folders,1973 + + + + + + 133 + 10 + Records, Taxes, 1-12/1973, 11 folders,1973 + + + + + + 133 + 11 + Records, Taxes, 1-12/1973, 11 folders,1973 + + + + + + 133 + 12 + Records, Transportation, 1-12/1973, 12 folders,1973 + + + + + + 133 + 13 + Records, Transportation, 1-12/1973, 12 folders,1973 + + + + + + 133 + 14 + Records, Transportation, 1-12/1973, 12 folders,1973 + + + + + + 133 + 15 + Records, Transportation, 1-12/1973, 12 folders,1973 + + + + + + 133 + 16 + Records, Transportation, 1-12/1973, 12 folders,1973 + + + + + + 133 + 17 + Records, Transportation, 1-12/1973, 12 folders,1973 + + + + + + 133 + 18 + Records, Transportation, 1-12/1973, 12 folders,1973 + + + + + + 133 + 19 + Records, Transportation, 1-12/1973, 12 folders,1973 + + + + + + 133 + 20 + Records, Transportation, 1-12/1973, 12 folders,1973 + + + + + + 133 + 21 + Records, Transportation, 1-12/1973, 12 folders,1973 + + + + + + 133 + 22 + Records, Transportation, 1-12/1973, 12 folders,1973 + + + + + + 133 + 23 + Records, Transportation, 1-12/1973, 12 folders,1973 + + + + + + 134 + 1 + Records, Utilities,1973 + + + + + + 134 + 2 + Records, Vice President,1973 + + + + + + 134 + 3 + Records, Wage -Price Controls, 1-12.18\97, 12 folders,1997 + + + + + + 134 + 4 + Records, Wage -Price Controls, 1-12.18\97, 12 folders,1997 + + + + + + 134 + 5 + Records, Wage -Price Controls, 1-12.18\97, 12 folders,1997 + + + + + + 134 + 6 + Records, Wage -Price Controls, 1-12.18\97, 12 folders,1997 + + + + + + 134 + 7 + Records, Wage -Price Controls, 1-12.18\97, 12 folders,1997 + + + + + + 134 + 8 + Records, Wage -Price Controls, 1-12.18\97, 12 folders,1997 + + + + + + 134 + 9 + Records, Wage -Price Controls, 1-12.18\97, 12 folders,1997 + + + + + + 134 + 10 + Records, Wage -Price Controls, 1-12.18\97, 12 folders,1997 + + + + + + 134 + 11 + Records, Wage -Price Controls, 1-12.18\97, 12 folders,1997 + + + + + + 134 + 12 + Records, Wage -Price Controls, 1-12.18\97, 12 folders,1997 + + + + + + 134 + 13 + Records, Wage -Price Controls, 1-12.18\97, 12 folders,1997 + + + + + + 134 + 14 + Records, Wage -Price Controls, 1-12.18\97, 12 folders,1997 + + + + + + 134 + 15 + Records, Watergate, 6-12/1973, 13 folders,1973 + + + + + + 134 + 16 + Records, Watergate, 6-12/1973, 13 folders,1973 + + + + + + 134 + 17 + Records, Watergate, 6-12/1973, 13 folders,1973 + + + + + + 134 + 18 + Records, Watergate, 6-12/1973, 13 folders,1973 + + + + + + 134 + 19 + Records, Watergate, 6-12/1973, 13 folders,1973 + + + + + + 134 + 20 + Records, Watergate, 6-12/1973, 13 folders,1973 + + + + + + 134 + 21 + Records, Watergate, 6-12/1973, 13 folders,1973 + + + + + + 134 + 22 + Records, Watergate, 6-12/1973, 13 folders,1973 + + + + + + 134 + 23 + Records, Watergate, 6-12/1973, 13 folders,1973 + + + + + + 134 + 24 + Records, Watergate, 6-12/1973, 13 folders,1973 + + + + + + 134 + 25 + Records, Watergate, 6-12/1973, 13 folders,1973 + + + + + + 134 + 26 + Records, Watergate, 6-12/1973, 13 folders,1973 + + + + + + 134 + 27 + Records, Watergate, 6-12/1973, 13 folders,1973 + + + + + + 134 + 28 + Records, Watergate Investigation,1973 + + + + + + 134 + 29 + Records, Welfare, 1-12/1973, 4 folders,1973 + + + + + + 134 + 30 + Records, Welfare, 1-12/1973, 4 folders,1973 + + + + + + 134 + 31 + Records, Welfare, 1-12/1973, 4 folders,1973 + + + + + + 134 + 32 + Records, Welfare, 1-12/1973, 4 folders,1973 + + + + + + 134 + 33 + Records, Veterans 3-12/1973, 3 folders,1973 + + + + + + 134 + 34 + Records, Veterans 3-12/1973, 3 folders,1973 + + + + + + 134 + 35 + Records, Veterans 3-12/1973, 3 folders,1973 + + + + + + 134 + 36 + Records, Veterans Affairs 1-12/1973, 4 folders,1973 + + + + + + 134 + 37 + Records, Veterans Affairs 1-12/1973, 4 folders,1973 + + + + + + 134 + 38 + Records, Veterans Affairs 1-12/1973, 4 folders,1973 + + + + + + 134 + 39 + Records, Veterans Affairs 1-12/1973, 4 folders,1973 + + + + + + 134 + 40 + Records, Foreign Relations,1973 + + + + + + 135 + 1 + Records, Legislative General, C-F, T, 21 folders,1971 + + + + + + 135 + 2 + Records, Legislative General, C-F, T, 21 folders,1971 + + + + + + 135 + 3 + Records, Legislative General, C-F, T, 21 folders,1971 + + + + + + 135 + 4 + Records, Legislative General, C-F, T, 21 folders,1971 + + + + + + 135 + 5 + Records, Legislative General, C-F, T, 21 folders,1971 + + + + + + 135 + 6 + Records, Legislative General, C-F, T, 21 folders,1971 + + + + + + 135 + 7 + Records, Legislative General, C-F, T, 21 folders,1971 + + + + + + 135 + 8 + Records, Legislative General, C-F, T, 21 folders,1971 + + + + + + 135 + 9 + Records, Legislative General, C-F, T, 21 folders,1971 + + + + + + 135 + 10 + Records, Legislative General, C-F, T, 21 folders,1971 + + + + + + 135 + 11 + Records, Legislative General, C-F, T, 21 folders,1971 + + + + + + 135 + 12 + Records, Legislative General, C-F, T, 21 folders,1971 + + + + + + 135 + 13 + Records, Legislative General, C-F, T, 21 folders,1971 + + + + + + 135 + 14 + Records, Legislative General, C-F, T, 21 folders,1971 + + + + + + 135 + 15 + Records, Legislative General, C-F, T, 21 folders,1971 + + + + + + 135 + 16 + Records, Legislative General, C-F, T, 21 folders,1971 + + + + + + 135 + 17 + Records, Legislative General, C-F, T, 21 folders,1971 + + + + + + 135 + 18 + Records, Legislative General, C-F, T, 21 folders,1971 + + + + + + 135 + 19 + Records, Legislative General, C-F, T, 21 folders,1971 + + + + + + 135 + 20 + Records, Legislative General, C-F, T, 21 folders,1971 + + + + + + 135 + 21 + Records, Legislative General, C-F, T, 21 folders,1971 + + + + + + 136 + 1 + Records, Michigan Cases, R-Z, 7 folders,1971 + + + + + + 136 + 2 + Records, Michigan Cases, R-Z, 7 folders,1971 + + + + + + 136 + 3 + Records, Michigan Cases, R-Z, 7 folders,1971 + + + + + + 136 + 4 + Records, Michigan Cases, R-Z, 7 folders,1971 + + + + + + 136 + 5 + Records, Michigan Cases, R-Z, 7 folders,1971 + + + + + + 136 + 6 + Records, Michigan Cases, R-Z, 7 folders,1971 + + + + + + 136 + 7 + Records, Michigan Cases, R-Z, 7 folders,1971 + + + + + + 136 + 8 + Records, Michigan Notices, 4 folders,1971 + + + + + + 136 + 9 + Records, Michigan Notices, 4 folders,1971 + + + + + + 136 + 10 + Records, Michigan Notices, 4 folders,1971 + + + + + + 136 + 11 + Records, Michigan Notices, 4 folders,1971 + + + + + + 136 + 12 + Records, Files for the Attic/Archives 1968-1970,1968-1970 + + + + + + 136 + 13 + Records, General - no address,1971 + + + + + + 136 + 14 + Records, General, A,C-D, 3 folders,1971 + + + + + + 136 + 15 + Records, General, A,C-D, 3 folders,1971 + + + + + + 136 + 16 + Records, General, A,C-D, 3 folders,1971 + + + + + + 137 + 1 + Records, Foreign Relations, N-Q, 2 folders,1971 + + + + + + 137 + 2 + Records, Foreign Relations, N-Q, 2 folders,1971 + + + + + + 137 + 3 + Records, Foreign Relations, Pakistan, 2 folders,1971 + + + + + + 137 + 4 + Records, Foreign Relations, Pakistan, 2 folders,1971 + + + + + + 137 + 5 + Records, Foreign Relations, POWs and MIAs, 4 folders,1971 + + + + + + 137 + 6 + Records, Foreign Relations, POWs and MIAs, 4 folders,1971 + + + + + + 137 + 7 + Records, Foreign Relations, POWs and MIAs, 4 folders,1971 + + + + + + 137 + 8 + Records, Foreign Relations, POWs and MIAs, 4 folders,1971 + + + + + + 137 + 9 + Records, Foreign Relations, R-V, 6 folders,1971 + + + + + + 137 + 10 + Records, Foreign Relations, R-V, 6 folders,1971 + + + + + + 137 + 11 + Records, Foreign Relations, R-V, 6 folders,1971 + + + + + + 137 + 12 + Records, Foreign Relations, R-V, 6 folders,1971 + + + + + + 137 + 13 + Records, Foreign Relations, R-V, 6 folders,1971 + + + + + + 137 + 14 + Records, Foreign Relations, R-V, 6 folders,1971 + + + + + + 137 + 15 + Records, Foreign Relations, United Nations,1971 + + + + + + 137 + 16 + Records, Foreign Relations, W-Z, 2 folders,1971 + + + + + + 137 + 17 + Records, Foreign Relations, W-Z, 2 folders,1971 + + + + + + 138 + 1 + Records, Commerce Committee General - 6 folders,1971 + + + + + + 138 + 2 + Records, Commerce Committee General - 6 folders,1971 + + + + + + 138 + 3 + Records, Commerce Committee General - 6 folders,1971 + + + + + + 138 + 4 + Records, Commerce Committee General - 6 folders,1971 + + + + + + 138 + 5 + Records, Commerce Committee General - 6 folders,1971 + + + + + + 138 + 6 + Records, Commerce Committee General - 6 folders,1971 + + + + + + 138 + 7 + Records, Commerce Environment,1971 + + + + + + 138 + 8 + Records, Commerce, Aviation, A-Z - 20 folders,1971 + + + + + + 138 + 9 + Records, Commerce, Aviation, A-Z - 20 folders,1971 + + + + + + 138 + 10 + Records, Commerce, Aviation, A-Z - 20 folders,1971 + + + + + + 138 + 11 + Records, Commerce, Aviation, A-Z - 20 folders,1971 + + + + + + 138 + 12 + Records, Commerce, Aviation, A-Z - 20 folders,1971 + + + + + + 138 + 13 + Records, Commerce, Aviation, A-Z - 20 folders,1971 + + + + + + 138 + 14 + Records, Commerce, Aviation, A-Z - 20 folders,1971 + + + + + + 138 + 15 + Records, Commerce, Aviation, A-Z - 20 folders,1971 + + + + + + 138 + 16 + Records, Commerce, Aviation, A-Z - 20 folders,1971 + + + + + + 138 + 17 + Records, Commerce, Aviation, A-Z - 20 folders,1971 + + + + + + 138 + 18 + Records, Commerce, Aviation, A-Z - 20 folders,1971 + + + + + + 138 + 19 + Records, Commerce, Aviation, A-Z - 20 folders,1971 + + + + + + 138 + 20 + Records, Commerce, Aviation, A-Z - 20 folders,1971 + + + + + + 138 + 21 + Records, Commerce, Aviation, A-Z - 20 folders,1971 + + + + + + 138 + 22 + Records, Commerce, Aviation, A-Z - 20 folders,1971 + + + + + + 138 + 23 + Records, Commerce, Aviation, A-Z - 20 folders,1971 + + + + + + 138 + 24 + Records, Commerce, Aviation, A-Z - 20 folders,1971 + + + + + + 138 + 25 + Records, Commerce, Aviation, A-Z - 20 folders,1971 + + + + + + 138 + 26 + Records, Commerce, Aviation, A-Z - 20 folders,1971 + + + + + + 138 + 27 + Records, Commerce, Aviation, A-Z - 20 folders,1971 + + + + + + 138 + 28 + Records, Commerce, Communications, A-W (no X-Z) - 18 folders,1971 + + + + + + 138 + 29 + Records, Commerce, Communications, A-W (no X-Z) - 18 folders,1971 + + + + + + 138 + 30 + Records, Commerce, Communications, A-W (no X-Z) - 18 folders,1971 + + + + + + 138 + 31 + Records, Commerce, Communications, A-W (no X-Z) - 18 folders,1971 + + + + + + 138 + 32 + Records, Commerce, Communications, A-W (no X-Z) - 18 folders,1971 + + + + + + 138 + 33 + Records, Commerce, Communications, A-W (no X-Z) - 18 folders,1971 + + + + + + 138 + 34 + Records, Commerce, Communications, A-W (no X-Z) - 18 folders,1971 + + + + + + 138 + 35 + Records, Commerce, Communications, A-W (no X-Z) - 18 folders,1971 + + + + + + 138 + 36 + Records, Commerce, Communications, A-W (no X-Z) - 18 folders,1971 + + + + + + 138 + 37 + Records, Commerce, Communications, A-W (no X-Z) - 18 folders,1971 + + + + + + 138 + 38 + Records, Commerce, Communications, A-W (no X-Z) - 18 folders,1971 + + + + + + 138 + 39 + Records, Commerce, Communications, A-W (no X-Z) - 18 folders,1971 + + + + + + 138 + 40 + Records, Commerce, Communications, A-W (no X-Z) - 18 folders,1971 + + + + + + 138 + 41 + Records, Commerce, Communications, A-W (no X-Z) - 18 folders,1971 + + + + + + 138 + 42 + Records, Commerce, Communications, A-W (no X-Z) - 18 folders,1971 + + + + + + 138 + 43 + Records, Commerce, Communications, A-W (no X-Z) - 18 folders,1971 + + + + + + 138 + 44 + Records, Commerce, Communications, A-W (no X-Z) - 18 folders,1971 + + + + + + 138 + 45 + Records, Commerce, Communications, A-W (no X-Z) - 18 folders,1971 + + + + + + 138 + 46 + Records, Commerce, Consumers, A-Z - 16 folders,1971 + + + + + + 138 + 47 + Records, Commerce, Consumers, A-Z - 16 folders,1971 + + + + + + 138 + 48 + Records, Commerce, Consumers, A-Z - 16 folders,1971 + + + + + + 138 + 49 + Records, Commerce, Consumers, A-Z - 16 folders,1971 + + + + + + 138 + 50 + Records, Commerce, Consumers, A-Z - 16 folders,1971 + + + + + + 138 + 51 + Records, Commerce, Consumers, A-Z - 16 folders,1971 + + + + + + 138 + 52 + Records, Commerce, Consumers, A-Z - 16 folders,1971 + + + + + + 138 + 53 + Records, Commerce, Consumers, A-Z - 16 folders,1971 + + + + + + 138 + 54 + Records, Commerce, Consumers, A-Z - 16 folders,1971 + + + + + + 138 + 55 + Records, Commerce, Consumers, A-Z - 16 folders,1971 + + + + + + 138 + 56 + Records, Commerce, Consumers, A-Z - 16 folders,1971 + + + + + + 138 + 57 + Records, Commerce, Consumers, A-Z - 16 folders,1971 + + + + + + 138 + 58 + Records, Commerce, Consumers, A-Z - 16 folders,1971 + + + + + + 138 + 59 + Records, Commerce, Consumers, A-Z - 16 folders,1971 + + + + + + 138 + 60 + Records, Commerce, Consumers, A-Z - 16 folders,1971 + + + + + + 138 + 61 + Records, Commerce, Consumers, A-Z - 16 folders,1971 + + + + + + 138 + 62 + Records, Legislative, General,1971 + + + + + + 138 + 63 + Records, Legislative, General, A-B - 5 folders,1971 + + + + + + 138 + 64 + Records, Legislative, General, A-B - 5 folders,1971 + + + + + + 138 + 65 + Records, Legislative, General, A-B - 5 folders,1971 + + + + + + 138 + 66 + Records, Legislative, General, A-B - 5 folders,1971 + + + + + + 138 + 67 + Records, Legislative, General, A-B - 5 folders,1971 + + + + + + 139 + 1 + Records, Finance Committee, T-W - 3 folders,1971 + + + + + + 139 + 2 + Records, Finance Committee, T-W - 3 folders,1971 + + + + + + 139 + 3 + Records, Finance Committee, T-W - 3 folders,1971 + + + + + + 139 + 4 + Records, Finance Committee, Tax Relief,1971 + + + + + + 139 + 5 + Records, Finance Committee, X-Z,1971 + + + + + + 139 + 6 + Records, Finance Committee, Welfare Reform - 3 folders,1971 + + + + + + 139 + 7 + Records, Finance Committee, Welfare Reform - 3 folders,1971 + + + + + + 139 + 8 + Records, Finance Committee, Welfare Reform - 3 folders,1971 + + + + + + 139 + 9 + Records, Finance Committee, I-L - 4 folders,1971 + + + + + + 139 + 10 + Records, Finance Committee, I-L - 4 folders,1971 + + + + + + 139 + 11 + Records, Finance Committee, I-L - 4 folders,1971 + + + + + + 139 + 12 + Records, Finance Committee, I-L - 4 folders,1971 + + + + + + 139 + 13 + Records, Finance Committee, M,1971 + + + + + + 139 + 14 + Records, Foreign Relations, A-H - 10 folders,1971 + + + + + + 139 + 15 + Records, Foreign Relations, A-H - 10 folders,1971 + + + + + + 139 + 16 + Records, Foreign Relations, A-H - 10 folders,1971 + + + + + + 139 + 17 + Records, Foreign Relations, A-H - 10 folders,1971 + + + + + + 139 + 18 + Records, Foreign Relations, A-H - 10 folders,1971 + + + + + + 139 + 19 + Records, Foreign Relations, A-H - 10 folders,1971 + + + + + + 139 + 20 + Records, Foreign Relations, A-H - 10 folders,1971 + + + + + + 139 + 21 + Records, Foreign Relations, A-H - 10 folders,1971 + + + + + + 139 + 22 + Records, Foreign Relations, A-H - 10 folders,1971 + + + + + + 139 + 23 + Records, Foreign Relations, A-H - 10 folders,1971 + + + + + + 139 + 24 + Records, Foreign Relations, Holgate,1971 + + + + + + 140 + 1 + Records, Finance, Health Insurance,1971 + + + + + + 140 + 2 + Records, Finance, H-I,1971 + + + + + + 140 + 3 + Records, Finance, Investment Tax,1971 + + + + + + 140 + 4 + Records, Finance, Inflation,1971 + + + + + + 140 + 5 + Records, Finance Committee, K-R - 10 folders,1971 + + + + + + 140 + 6 + Records, Finance Committee, K-R - 10 folders,1971 + + + + + + 140 + 7 + Records, Finance Committee, K-R - 10 folders,1971 + + + + + + 140 + 8 + Records, Finance Committee, K-R - 10 folders,1971 + + + + + + 140 + 9 + Records, Finance Committee, K-R - 10 folders,1971 + + + + + + 140 + 10 + Records, Finance Committee, K-R - 10 folders,1971 + + + + + + 140 + 11 + Records, Finance Committee, K-R - 10 folders,1971 + + + + + + 140 + 12 + Records, Finance Committee, K-R - 10 folders,1971 + + + + + + 140 + 13 + Records, Finance Committee, K-R - 10 folders,1971 + + + + + + 140 + 14 + Records, Finance Committee, K-R - 10 folders,1971 + + + + + + 140 + 15 + Records, Finance, Revenue Sharing - 4 folders,1971 + + + + + + 140 + 16 + Records, Finance, Revenue Sharing - 4 folders,1971 + + + + + + 140 + 17 + Records, Finance, Revenue Sharing - 4 folders,1971 + + + + + + 140 + 18 + Records, Finance, Revenue Sharing - 4 folders,1971 + + + + + + 140 + 19 + Records, Finance, S - 4 folders,1971 + + + + + + 140 + 20 + Records, Finance, S - 4 folders,1971 + + + + + + 140 + 21 + Records, Finance, S - 4 folders,1971 + + + + + + 140 + 22 + Records, Finance, S - 4 folders,1971 + + + + + + 140 + 23 + Records, Finance, Social Security, 10-12/71 - 8 folders,1971 + + + + + + 140 + 24 + Records, Finance, Social Security, 10-12/71 - 8 folders,1971 + + + + + + 140 + 25 + Records, Finance, Social Security, 10-12/71 - 8 folders,1971 + + + + + + 140 + 26 + Records, Finance, Social Security, 10-12/71 - 8 folders,1971 + + + + + + 140 + 27 + Records, Finance, Social Security, 10-12/71 - 8 folders,1971 + + + + + + 140 + 28 + Records, Finance, Social Security, 10-12/71 - 8 folders,1971 + + + + + + 140 + 29 + Records, Finance, Social Security, 10-12/71 - 8 folders,1971 + + + + + + 140 + 30 + Records, Finance, Social Security, 10-12/71 - 8 folders,1971 + + + + + + 141 + 1 + Records, Finance, Social Security, 1-9/71 - 6 folders,1971 + + + + + + 141 + 2 + Records, Finance, Social Security, 1-9/71 - 6 folders,1971 + + + + + + 141 + 3 + Records, Finance, Social Security, 1-9/71 - 6 folders,1971 + + + + + + 141 + 4 + Records, Finance, Social Security, 1-9/71 - 6 folders,1971 + + + + + + 141 + 5 + Records, Finance, Social Security, 1-9/71 - 6 folders,1971 + + + + + + 141 + 6 + Records, Finance, Social Security, 1-9/71 - 6 folders,1971 + + + + + + 141 + 7 + Records, Finance, Social Security, A-M - 12 folders,1971 + + + + + + 141 + 8 + Records, Finance, Social Security, A-M - 12 folders,1971 + + + + + + 141 + 9 + Records, Finance, Social Security, A-M - 12 folders,1971 + + + + + + 141 + 10 + Records, Finance, Social Security, A-M - 12 folders,1971 + + + + + + 141 + 11 + Records, Finance, Social Security, A-M - 12 folders,1971 + + + + + + 141 + 12 + Records, Finance, Social Security, A-M - 12 folders,1971 + + + + + + 141 + 13 + Records, Finance, Social Security, A-M - 12 folders,1971 + + + + + + 141 + 14 + Records, Finance, Social Security, A-M - 12 folders,1971 + + + + + + 141 + 15 + Records, Finance, Social Security, A-M - 12 folders,1971 + + + + + + 141 + 16 + Records, Finance, Social Security, A-M - 12 folders,1971 + + + + + + 141 + 17 + Records, Finance, Social Security, A-M - 12 folders,1971 + + + + + + 141 + 18 + Records, Finance, Social Security, A-M - 12 folders,1971 + + + + + + 141 + 19 + Records, Finance, Social Security, Malpractice Defense,1971 + + + + + + 141 + 20 + Records, Armed Services, General - 2 folders,1971 + + + + + + 141 + 21 + Records, Armed Services, General - 2 folders,1971 + + + + + + 141 + 22 + Records, Armed Services, N-V - 5 folders,1971 + + + + + + 141 + 23 + Records, Armed Services, N-V - 5 folders,1971 + + + + + + 141 + 24 + Records, Armed Services, N-V - 5 folders,1971 + + + + + + 141 + 25 + Records, Armed Services, N-V - 5 folders,1971 + + + + + + 141 + 26 + Records, Armed Services, N-V - 5 folders,1971 + + + + + + 141 + 27 + Records, Petition, Selective Service Act, W-Z - 2 folders,1971 + + + + + + 141 + 28 + Records, Petition, Selective Service Act, W-Z - 2 folders,1971 + + + + + + 141 + 29 + Records, Petition, Selective Service Act, Draft Exemption for Doctors (S2210),1971 + + + + + + 141 + 30 + Records, Banking and Currency, A-Z - 20 folders,1971 + + + + + + 141 + 31 + Records, Banking and Currency, A-Z - 20 folders,1971 + + + + + + 141 + 32 + Records, Banking and Currency, A-Z - 20 folders,1971 + + + + + + 141 + 33 + Records, Banking and Currency, A-Z - 20 folders,1971 + + + + + + 141 + 34 + Records, Banking and Currency, A-Z - 20 folders,1971 + + + + + + 141 + 35 + Records, Banking and Currency, A-Z - 20 folders,1971 + + + + + + 141 + 36 + Records, Banking and Currency, A-Z - 20 folders,1971 + + + + + + 141 + 37 + Records, Banking and Currency, A-Z - 20 folders,1971 + + + + + + 141 + 38 + Records, Banking and Currency, A-Z - 20 folders,1971 + + + + + + 141 + 39 + Records, Banking and Currency, A-Z - 20 folders,1971 + + + + + + 141 + 40 + Records, Banking and Currency, A-Z - 20 folders,1971 + + + + + + 141 + 41 + Records, Banking and Currency, A-Z - 20 folders,1971 + + + + + + 141 + 42 + Records, Banking and Currency, A-Z - 20 folders,1971 + + + + + + 141 + 43 + Records, Banking and Currency, A-Z - 20 folders,1971 + + + + + + 141 + 44 + Records, Banking and Currency, A-Z - 20 folders,1971 + + + + + + 141 + 45 + Records, Banking and Currency, A-Z - 20 folders,1971 + + + + + + 141 + 46 + Records, Banking and Currency, A-Z - 20 folders,1971 + + + + + + 141 + 47 + Records, Banking and Currency, A-Z - 20 folders,1971 + + + + + + 141 + 48 + Records, Banking and Currency, A-Z - 20 folders,1971 + + + + + + 141 + 49 + Records, Banking and Currency, A-Z - 20 folders,1971 + + + + + + 142 + 1 + Records, Appropriations, Nurse Training Act,1971 + + + + + + 142 + 2 + Records, Appropriations, P-Q,1971 + + + + + + 142 + 3 + Records, Appropriations, R-S - 3 folders,1971 + + + + + + 142 + 4 + Records, Appropriations, R-S - 3 folders,1971 + + + + + + 142 + 5 + Records, Appropriations, R-S - 3 folders,1971 + + + + + + 142 + 6 + Records, Appropriations, S.S.T.,1971 + + + + + + 142 + 7 + Records, Appropriations, T-Z - 4 folders,1971 + + + + + + 142 + 8 + Records, Appropriations, T-Z - 4 folders,1971 + + + + + + 142 + 9 + Records, Appropriations, T-Z - 4 folders,1971 + + + + + + 142 + 10 + Records, Appropriations, T-Z - 4 folders,1971 + + + + + + 142 + 11 + Records, Agriculture and Forestry, S-Z - 5 folders,1971 + + + + + + 142 + 12 + Records, Agriculture and Forestry, S-Z - 5 folders,1971 + + + + + + 142 + 13 + Records, Agriculture and Forestry, S-Z - 5 folders,1971 + + + + + + 142 + 14 + Records, Agriculture and Forestry, S-Z - 5 folders,1971 + + + + + + 142 + 15 + Records, Agriculture and Forestry, S-Z - 5 folders,1971 + + + + + + 142 + 16 + Records, Appropriations, General,1971 + + + + + + 142 + 17 + Records, Appropriations, A-K - 11 folders,1971 + + + + + + 142 + 18 + Records, Appropriations, A-K - 11 folders,1971 + + + + + + 142 + 19 + Records, Appropriations, A-K - 11 folders,1971 + + + + + + 142 + 20 + Records, Appropriations, A-K - 11 folders,1971 + + + + + + 142 + 21 + Records, Appropriations, A-K - 11 folders,1971 + + + + + + 142 + 22 + Records, Appropriations, A-K - 11 folders,1971 + + + + + + 142 + 23 + Records, Appropriations, A-K - 11 folders,1971 + + + + + + 142 + 24 + Records, Appropriations, A-K - 11 folders,1971 + + + + + + 142 + 25 + Records, Appropriations, A-K - 11 folders,1971 + + + + + + 142 + 26 + Records, Appropriations, A-K - 11 folders,1971 + + + + + + 142 + 27 + Records, Appropriations, A-K - 11 folders,1971 + + + + + + 142 + 28 + Records, Appropriations, Kalamazoo,1971 + + + + + + 142 + 29 + Records, Appropriations, L-O - 3 folders,1971 + + + + + + 142 + 30 + Records, Appropriations, L-O - 3 folders,1971 + + + + + + 142 + 31 + Records, Appropriations, L-O - 3 folders,1971 + + + + + + 142 + 32 + Records, Aeronautical and Space Sciences,1971 + + + + + + 142 + 33 + Records, Agriculture and Forestry, General,1971 + + + + + + 142 + 34 + Records, Agriculture and Forestry, A-R - 14 folders,1971 + + + + + + 142 + 35 + Records, Agriculture and Forestry, A-R - 14 folders,1971 + + + + + + 142 + 36 + Records, Agriculture and Forestry, A-R - 14 folders,1971 + + + + + + 142 + 37 + Records, Agriculture and Forestry, A-R - 14 folders,1971 + + + + + + 142 + 38 + Records, Agriculture and Forestry, A-R - 14 folders,1971 + + + + + + 142 + 39 + Records, Agriculture and Forestry, A-R - 14 folders,1971 + + + + + + 142 + 40 + Records, Agriculture and Forestry, A-R - 14 folders,1971 + + + + + + 142 + 41 + Records, Agriculture and Forestry, A-R - 14 folders,1971 + + + + + + 142 + 42 + Records, Agriculture and Forestry, A-R - 14 folders,1971 + + + + + + 142 + 43 + Records, Agriculture and Forestry, A-R - 14 folders,1971 + + + + + + 142 + 44 + Records, Agriculture and Forestry, A-R - 14 folders,1971 + + + + + + 142 + 45 + Records, Agriculture and Forestry, A-R - 14 folders,1971 + + + + + + 142 + 46 + Records, Agriculture and Forestry, A-R - 14 folders,1971 + + + + + + 142 + 47 + Records, Agriculture and Forestry, A-R - 14 folders,1971 + + + + + + 143 + 1 + Records, Legislation General, G-J - 8 folders,1971 + + + + + + 143 + 2 + Records, Legislation General, G-J - 8 folders,1971 + + + + + + 143 + 3 + Records, Legislation General, G-J - 8 folders,1971 + + + + + + 143 + 4 + Records, Legislation General, G-J - 8 folders,1971 + + + + + + 143 + 5 + Records, Legislation General, G-J - 8 folders,1971 + + + + + + 143 + 6 + Records, Legislation General, G-J - 8 folders,1971 + + + + + + 143 + 7 + Records, Legislation General, G-J - 8 folders,1971 + + + + + + 143 + 8 + Records, Legislation General, G-J - 8 folders,1971 + + + + + + 143 + 9 + Records, Legislation General, Jansma, Mrs. Phyllis,1971 + + + + + + 143 + 10 + Records, Legislation General, K-M - 11 folders,1971 + + + + + + 143 + 11 + Records, Legislation General, K-M - 11 folders,1971 + + + + + + 143 + 12 + Records, Legislation General, K-M - 11 folders,1971 + + + + + + 143 + 13 + Records, Legislation General, K-M - 11 folders,1971 + + + + + + 143 + 14 + Records, Legislation General, K-M - 11 folders,1971 + + + + + + 143 + 15 + Records, Legislation General, K-M - 11 folders,1971 + + + + + + 143 + 16 + Records, Legislation General, K-M - 11 folders,1971 + + + + + + 143 + 17 + Records, Legislation General, K-M - 11 folders,1971 + + + + + + 143 + 18 + Records, Legislation General, K-M - 11 folders,1971 + + + + + + 143 + 19 + Records, Legislation General, K-M - 11 folders,1971 + + + + + + 143 + 20 + Records, Legislation General, K-M - 11 folders,1971 + + + + + + 143 + 21 + Records, Legislation General, N-Q - 6 folders,1971 + + + + + + 143 + 22 + Records, Legislation General, N-Q - 6 folders,1971 + + + + + + 143 + 23 + Records, Legislation General, N-Q - 6 folders,1971 + + + + + + 143 + 24 + Records, Legislation General, N-Q - 6 folders,1971 + + + + + + 143 + 25 + Records, Legislation General, N-Q - 6 folders,1971 + + + + + + 143 + 26 + Records, Legislation General, N-Q - 6 folders,1971 + + + + + + 143 + 27 + Records, Legislation General, John Feikens,1971 + + + + + + 143 + 28 + Records, Legislation General, R- 4 folders,1971 + + + + + + 143 + 29 + Records, Legislation General, R- 4 folders,1971 + + + + + + 143 + 30 + Records, Legislation General, R- 4 folders,1971 + + + + + + 143 + 31 + Records, Legislation General, R- 4 folders,1971 + + + + + + 144 + 1 + Records, Legislation, General, S-Z - 13 folders,1971 + + + + + + 144 + 2 + Records, Legislation, General, S-Z - 13 folders,1971 + + + + + + 144 + 3 + Records, Legislation, General, S-Z - 13 folders,1971 + + + + + + 144 + 4 + Records, Legislation, General, S-Z - 13 folders,1971 + + + + + + 144 + 5 + Records, Legislation, General, S-Z - 13 folders,1971 + + + + + + 144 + 6 + Records, Legislation, General, S-Z - 13 folders,1971 + + + + + + 144 + 7 + Records, Legislation, General, S-Z - 13 folders,1971 + + + + + + 144 + 8 + Records, Legislation, General, S-Z - 13 folders,1971 + + + + + + 144 + 9 + Records, Legislation, General, S-Z - 13 folders,1971 + + + + + + 144 + 10 + Records, Legislation, General, S-Z - 13 folders,1971 + + + + + + 144 + 11 + Records, Legislation, General, S-Z - 13 folders,1971 + + + + + + 144 + 12 + Records, Legislation, General, S-Z - 13 folders,1971 + + + + + + 144 + 13 + Records, Legislation, General, S-Z - 13 folders,1971 + + + + + + 144 + 14 + Records, Commerce, Consumers, T-Z - 4 folders,1971 + + + + + + 144 + 15 + Records, Commerce, Consumers, T-Z - 4 folders,1971 + + + + + + 144 + 16 + Records, Commerce, Consumers, T-Z - 4 folders,1971 + + + + + + 144 + 17 + Records, Commerce, Consumers, T-Z - 4 folders,1971 + + + + + + 144 + 18 + Records, Merchant Marine and Fisheries, A-Z - 21 folders,1971 + + + + + + 144 + 19 + Records, Merchant Marine and Fisheries, A-Z - 21 folders,1971 + + + + + + 144 + 20 + Records, Merchant Marine and Fisheries, A-Z - 21 folders,1971 + + + + + + 144 + 21 + Records, Merchant Marine and Fisheries, A-Z - 21 folders,1971 + + + + + + 144 + 22 + Records, Merchant Marine and Fisheries, A-Z - 21 folders,1971 + + + + + + 144 + 23 + Records, Merchant Marine and Fisheries, A-Z - 21 folders,1971 + + + + + + 144 + 24 + Records, Merchant Marine and Fisheries, A-Z - 21 folders,1971 + + + + + + 144 + 25 + Records, Merchant Marine and Fisheries, A-Z - 21 folders,1971 + + + + + + 144 + 26 + Records, Merchant Marine and Fisheries, A-Z - 21 folders,1971 + + + + + + 144 + 27 + Records, Merchant Marine and Fisheries, A-Z - 21 folders,1971 + + + + + + 144 + 28 + Records, Merchant Marine and Fisheries, A-Z - 21 folders,1971 + + + + + + 144 + 29 + Records, Merchant Marine and Fisheries, A-Z - 21 folders,1971 + + + + + + 144 + 30 + Records, Merchant Marine and Fisheries, A-Z - 21 folders,1971 + + + + + + 144 + 31 + Records, Merchant Marine and Fisheries, A-Z - 21 folders,1971 + + + + + + 144 + 32 + Records, Merchant Marine and Fisheries, A-Z - 21 folders,1971 + + + + + + 144 + 33 + Records, Merchant Marine and Fisheries, A-Z - 21 folders,1971 + + + + + + 144 + 34 + Records, Merchant Marine and Fisheries, A-Z - 21 folders,1971 + + + + + + 144 + 35 + Records, Merchant Marine and Fisheries, A-Z - 21 folders,1971 + + + + + + 144 + 36 + Records, Merchant Marine and Fisheries, A-Z - 21 folders,1971 + + + + + + 144 + 37 + Records, Merchant Marine and Fisheries, A-Z - 21 folders,1971 + + + + + + 144 + 38 + Records, Merchant Marine and Fisheries, A-Z - 21 folders,1971 + + + + + + 144 + 39 + Records, Surface Transportation, A-Z - 20 folders,1971 + + + + + + 144 + 40 + Records, Surface Transportation, A-Z - 20 folders,1971 + + + + + + 144 + 41 + Records, Surface Transportation, A-Z - 20 folders,1971 + + + + + + 144 + 42 + Records, Surface Transportation, A-Z - 20 folders,1971 + + + + + + 144 + 43 + Records, Surface Transportation, A-Z - 20 folders,1971 + + + + + + 144 + 44 + Records, Surface Transportation, A-Z - 20 folders,1971 + + + + + + 144 + 45 + Records, Surface Transportation, A-Z - 20 folders,1971 + + + + + + 144 + 46 + Records, Surface Transportation, A-Z - 20 folders,1971 + + + + + + 144 + 47 + Records, Surface Transportation, A-Z - 20 folders,1971 + + + + + + 144 + 48 + Records, Surface Transportation, A-Z - 20 folders,1971 + + + + + + 144 + 49 + Records, Surface Transportation, A-Z - 20 folders,1971 + + + + + + 144 + 50 + Records, Surface Transportation, A-Z - 20 folders,1971 + + + + + + 144 + 51 + Records, Surface Transportation, A-Z - 20 folders,1971 + + + + + + 144 + 52 + Records, Surface Transportation, A-Z - 20 folders,1971 + + + + + + 144 + 53 + Records, Surface Transportation, A-Z - 20 folders,1971 + + + + + + 144 + 54 + Records, Surface Transportation, A-Z - 20 folders,1971 + + + + + + 144 + 55 + Records, Surface Transportation, A-Z - 20 folders,1971 + + + + + + 144 + 56 + Records, Surface Transportation, A-Z - 20 folders,1971 + + + + + + 144 + 57 + Records, Surface Transportation, A-Z - 20 folders,1971 + + + + + + 144 + 58 + Records, Surface Transportation, A-Z - 20 folders,1971 + + + + + + 144 + 59 + Records, District of Columbia,1971 + + + + + + 144 + 60 + Records, Finance, General,1971 + + + + + + 144 + 61 + Records, Adoption Program - 3 folders,1971 + + + + + + 144 + 62 + Records, Adoption Program - 3 folders,1971 + + + + + + 144 + 63 + Records, Adoption Program - 3 folders,1971 + + + + + + 144 + 64 + Records, Adoption Program, A-B - 3 folders,1971 + + + + + + 144 + 65 + Records, Adoption Program, A-B - 3 folders,1971 + + + + + + 144 + 66 + Records, Adoption Program, A-B - 3 folders,1971 + + + + + + 145 + 1 + Records, Finance, C-E - 3 folders,1971 + + + + + + 145 + 2 + Records, Finance, C-E - 3 folders,1971 + + + + + + 145 + 3 + Records, Finance, C-E - 3 folders,1971 + + + + + + 145 + 4 + Records, Finance, Excise Tax,1971 + + + + + + 145 + 5 + Records, Finance, F-H - 3 folders,1971 + + + + + + 145 + 6 + Records, Finance, F-H - 3 folders,1971 + + + + + + 145 + 7 + Records, Finance, F-H - 3 folders,1971 + + + + + + 145 + 8 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 9 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 10 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 11 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 12 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 13 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 14 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 15 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 16 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 17 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 18 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 19 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 20 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 21 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 22 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 23 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 24 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 25 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 26 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 27 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 28 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 29 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 30 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 31 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 32 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 33 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 34 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 35 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 36 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 37 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 38 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 39 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 40 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 41 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 42 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 43 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 44 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 45 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 46 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 47 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 48 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 49 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 50 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 51 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 52 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 53 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 54 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 55 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 56 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 57 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 58 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 59 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 60 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 61 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 62 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 63 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 64 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 65 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 66 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 67 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 68 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 69 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 70 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 71 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 145 + 72 + Records, Postmaster Applications and Notes, R-Z - 64 folders,1967-1972 + + + + + + 146 + 1 + Records, Abortion,1974 + + + + + + 146 + 2 + Records, Animals - 8 folders,1974 + + + + + + 146 + 3 + Records, Animals - 8 folders,1974 + + + + + + 146 + 4 + Records, Animals - 8 folders,1974 + + + + + + 146 + 5 + Records, Animals - 8 folders,1974 + + + + + + 146 + 6 + Records, Animals - 8 folders,1974 + + + + + + 146 + 7 + Records, Animals - 8 folders,1974 + + + + + + 146 + 8 + Records, Animals - 8 folders,1974 + + + + + + 146 + 9 + Records, Animals - 8 folders,1974 + + + + + + 146 + 10 + Records, Agricultures - 10 folders,1974 + + + + + + 146 + 11 + Records, Agricultures - 10 folders,1974 + + + + + + 146 + 12 + Records, Agricultures - 10 folders,1974 + + + + + + 146 + 13 + Records, Agricultures - 10 folders,1974 + + + + + + 146 + 14 + Records, Agricultures - 10 folders,1974 + + + + + + 146 + 15 + Records, Agricultures - 10 folders,1974 + + + + + + 146 + 16 + Records, Agricultures - 10 folders,1974 + + + + + + 146 + 17 + Records, Agricultures - 10 folders,1974 + + + + + + 146 + 18 + Records, Agricultures - 10 folders,1974 + + + + + + 146 + 19 + Records, Agricultures - 10 folders,1974 + + + + + + 146 + 20 + Records, Anti-Trust,1974 + + + + + + 146 + 21 + Records, Appropriations - 8 folders,1974 + + + + + + 146 + 22 + Records, Appropriations - 8 folders,1974 + + + + + + 146 + 23 + Records, Appropriations - 8 folders,1974 + + + + + + 146 + 24 + Records, Appropriations - 8 folders,1974 + + + + + + 146 + 25 + Records, Appropriations - 8 folders,1974 + + + + + + 146 + 26 + Records, Appropriations - 8 folders,1974 + + + + + + 146 + 27 + Records, Appropriations - 8 folders,1974 + + + + + + 146 + 28 + Records, Appropriations - 8 folders,1974 + + + + + + 146 + 29 + Records, Automobile Industry,1974 + + + + + + 147 + 1 + Records, Armed Services - 5 folders,1974 + + + + + + 147 + 2 + Records, Armed Services - 5 folders,1974 + + + + + + 147 + 3 + Records, Armed Services - 5 folders,1974 + + + + + + 147 + 4 + Records, Armed Services - 5 folders,1974 + + + + + + 147 + 5 + Records, Armed Services - 5 folders,1974 + + + + + + 147 + 6 + Records, Amnesty - 2 folders,1974 + + + + + + 147 + 7 + Records, Amnesty - 2 folders,1974 + + + + + + 147 + 8 + Records, Automobile Industry - 6 folders,1974 + + + + + + 147 + 9 + Records, Automobile Industry - 6 folders,1974 + + + + + + 147 + 10 + Records, Automobile Industry - 6 folders,1974 + + + + + + 147 + 11 + Records, Automobile Industry - 6 folders,1974 + + + + + + 147 + 12 + Records, Automobile Industry - 6 folders,1974 + + + + + + 147 + 13 + Records, Automobile Industry - 6 folders,1974 + + + + + + 147 + 14 + Records, Banking - 4 folders,1974 + + + + + + 147 + 15 + Records, Banking - 4 folders,1974 + + + + + + 147 + 16 + Records, Banking - 4 folders,1974 + + + + + + 147 + 17 + Records, Banking - 4 folders,1974 + + + + + + 147 + 18 + Records, Busing - 5 folders,1974 + + + + + + 147 + 19 + Records, Busing - 5 folders,1974 + + + + + + 147 + 20 + Records, Busing - 5 folders,1974 + + + + + + 147 + 21 + Records, Busing - 5 folders,1974 + + + + + + 147 + 22 + Records, Busing - 5 folders,1974 + + + + + + 147 + 23 + Records, Children and Youth,1974 + + + + + + 147 + 24 + Records, Civil Rights,1974 + + + + + + 147 + 25 + Records, Civil Service - 3 folders,1974 + + + + + + 147 + 26 + Records, Civil Service - 3 folders,1974 + + + + + + 147 + 27 + Records, Civil Service - 3 folders,1974 + + + + + + 147 + 28 + Records, Commerce - 4 folders,1974 + + + + + + 147 + 29 + Records, Commerce - 4 folders,1974 + + + + + + 147 + 30 + Records, Commerce - 4 folders,1974 + + + + + + 147 + 31 + Records, Commerce - 4 folders,1974 + + + + + + 147 + 32 + Records, Commerce (trade) - 3 folders,1974 + + + + + + 147 + 33 + Records, Commerce (trade) - 3 folders,1974 + + + + + + 147 + 34 + Records, Commerce (trade) - 3 folders,1974 + + + + + + 148 + 1 + Records, Congress - 3 folders,1974 + + + + + + 148 + 2 + Records, Congress - 3 folders,1974 + + + + + + 148 + 3 + Records, Congress - 3 folders,1974 + + + + + + 148 + 4 + Records, Communications - 3 folders,1974 + + + + + + 148 + 5 + Records, Communications - 3 folders,1974 + + + + + + 148 + 6 + Records, Communications - 3 folders,1974 + + + + + + 148 + 7 + Records, Consumers - 3 folders,1974 + + + + + + 148 + 8 + Records, Consumers - 3 folders,1974 + + + + + + 148 + 9 + Records, Consumers - 3 folders,1974 + + + + + + 148 + 10 + Records, Crime,1974 + + + + + + 148 + 11 + Records, Drugs,1974 + + + + + + 148 + 12 + Records, Economy - 9 folders,1974 + + + + + + 148 + 13 + Records, Economy - 9 folders,1974 + + + + + + 148 + 14 + Records, Economy - 9 folders,1974 + + + + + + 148 + 15 + Records, Economy - 9 folders,1974 + + + + + + 148 + 16 + Records, Economy - 9 folders,1974 + + + + + + 148 + 17 + Records, Economy - 9 folders,1974 + + + + + + 148 + 18 + Records, Economy - 9 folders,1974 + + + + + + 148 + 19 + Records, Economy - 9 folders,1974 + + + + + + 148 + 20 + Records, Economy - 9 folders,1974 + + + + + + 148 + 21 + Records, Economy/Inflation/Budget -1-3/74 - 5 folders,1974 + + + + + + 148 + 22 + Records, Economy/Inflation/Budget -1-3/74 - 5 folders,1974 + + + + + + 148 + 23 + Records, Economy/Inflation/Budget -1-3/74 - 5 folders,1974 + + + + + + 148 + 24 + Records, Economy/Inflation/Budget -1-3/74 - 5 folders,1974 + + + + + + 148 + 25 + Records, Economy/Inflation/Budget -1-3/74 - 5 folders,1974 + + + + + + 148 + 26 + Records, Issues 11/74 - 6 folders,1974 + + + + + + 148 + 27 + Records, Issues 11/74 - 6 folders,1974 + + + + + + 148 + 28 + Records, Issues 11/74 - 6 folders,1974 + + + + + + 148 + 29 + Records, Issues 11/74 - 6 folders,1974 + + + + + + 148 + 30 + Records, Issues 11/74 - 6 folders,1974 + + + + + + 148 + 31 + Records, Issues 11/74 - 6 folders,1974 + + + + + + 148 + 32 + Records, Economy/Inflation/Budget 1-6/74 - 9 folders,1974 + + + + + + 148 + 33 + Records, Economy/Inflation/Budget 1-6/74 - 9 folders,1974 + + + + + + 148 + 34 + Records, Economy/Inflation/Budget 1-6/74 - 9 folders,1974 + + + + + + 148 + 35 + Records, Economy/Inflation/Budget 1-6/74 - 9 folders,1974 + + + + + + 148 + 36 + Records, Economy/Inflation/Budget 1-6/74 - 9 folders,1974 + + + + + + 148 + 37 + Records, Economy/Inflation/Budget 1-6/74 - 9 folders,1974 + + + + + + 148 + 38 + Records, Economy/Inflation/Budget 1-6/74 - 9 folders,1974 + + + + + + 148 + 39 + Records, Economy/Inflation/Budget 1-6/74 - 9 folders,1974 + + + + + + 148 + 40 + Records, Economy/Inflation/Budget 1-6/74 - 9 folders,1974 + + + + + + 149 + 1 + Records, Education - 1-12/74 - 6 folders,1974 + + + + + + 149 + 2 + Records, Education - 1-12/74 - 6 folders,1974 + + + + + + 149 + 3 + Records, Education - 1-12/74 - 6 folders,1974 + + + + + + 149 + 4 + Records, Education - 1-12/74 - 6 folders,1974 + + + + + + 149 + 5 + Records, Education - 1-12/74 - 6 folders,1974 + + + + + + 149 + 6 + Records, Education - 1-12/74 - 6 folders,1974 + + + + + + 149 + 7 + Records, Elections - 5 folders,1974 + + + + + + 149 + 8 + Records, Elections - 5 folders,1974 + + + + + + 149 + 9 + Records, Elections - 5 folders,1974 + + + + + + 149 + 10 + Records, Elections - 5 folders,1974 + + + + + + 149 + 11 + Records, Elections - 5 folders,1974 + + + + + + 149 + 12 + Records, Energy,1974 + + + + + + 149 + 13 + Records, Environment,1974 + + + + + + 149 + 14 + Records, Export-Import Bank - 4 folders,1974 + + + + + + 149 + 15 + Records, Export-Import Bank - 4 folders,1974 + + + + + + 149 + 16 + Records, Export-Import Bank - 4 folders,1974 + + + + + + 149 + 17 + Records, Export-Import Bank - 4 folders,1974 + + + + + + 149 + 18 + Records, Federal Reserve Board - 4 folders,1974 + + + + + + 149 + 19 + Records, Federal Reserve Board - 4 folders,1974 + + + + + + 149 + 20 + Records, Federal Reserve Board - 4 folders,1974 + + + + + + 149 + 21 + Records, Federal Reserve Board - 4 folders,1974 + + + + + + 149 + 22 + Records, Government Operations - 3 folders,1974 + + + + + + 149 + 23 + Records, Government Operations - 3 folders,1974 + + + + + + 149 + 24 + Records, Government Operations - 3 folders,1974 + + + + + + 149 + 25 + Records, Great Lakes,1974 + + + + + + 149 + 26 + Records, Gun Control - 2 folders,1974 + + + + + + 149 + 27 + Records, Gun Control - 2 folders,1974 + + + + + + 150 + 1 + Records, Health - 8 folders,1974 + + + + + + 150 + 2 + Records, Health - 8 folders,1974 + + + + + + 150 + 3 + Records, Health - 8 folders,1974 + + + + + + 150 + 4 + Records, Health - 8 folders,1974 + + + + + + 150 + 5 + Records, Health - 8 folders,1974 + + + + + + 150 + 6 + Records, Health - 8 folders,1974 + + + + + + 150 + 7 + Records, Health - 8 folders,1974 + + + + + + 150 + 8 + Records, Health - 8 folders,1974 + + + + + + 150 + 9 + Records, Environment - 5 folders,1974 + + + + + + 150 + 10 + Records, Environment - 5 folders,1974 + + + + + + 150 + 11 + Records, Environment - 5 folders,1974 + + + + + + 150 + 12 + Records, Environment - 5 folders,1974 + + + + + + 150 + 13 + Records, Environment - 5 folders,1974 + + + + + + 150 + 14 + Records, Health - 2 folders,1974 + + + + + + 150 + 15 + Records, Health - 2 folders,1974 + + + + + + 150 + 16 + Records, Health - other than drugs - 4 folders,1974 + + + + + + 150 + 17 + Records, Health - other than drugs - 4 folders,1974 + + + + + + 150 + 18 + Records, Health - other than drugs - 4 folders,1974 + + + + + + 150 + 19 + Records, Health - other than drugs - 4 folders,1974 + + + + + + 150 + 20 + Records, Housing - 5 folders,1974 + + + + + + 150 + 21 + Records, Housing - 5 folders,1974 + + + + + + 150 + 22 + Records, Housing - 5 folders,1974 + + + + + + 150 + 23 + Records, Housing - 5 folders,1974 + + + + + + 150 + 24 + Records, Housing - 5 folders,1974 + + + + + + 150 + 25 + Records, Immigration,1974 + + + + + + 150 + 26 + Records, Indians,1974 + + + + + + 150 + 27 + Records, Intentionally Not Answered - 5 folders,1974 + + + + + + 150 + 28 + Records, Intentionally Not Answered - 5 folders,1974 + + + + + + 150 + 29 + Records, Intentionally Not Answered - 5 folders,1974 + + + + + + 150 + 30 + Records, Intentionally Not Answered - 5 folders,1974 + + + + + + 150 + 31 + Records, Intentionally Not Answered - 5 folders,1974 + + + + + + 151 + 1 + Records, Interior,1974 + + + + + + 151 + 2 + Records, Miscellaneous Issues - 5 folders,1974 + + + + + + 151 + 3 + Records, Miscellaneous Issues - 5 folders,1974 + + + + + + 151 + 4 + Records, Miscellaneous Issues - 5 folders,1974 + + + + + + 151 + 5 + Records, Miscellaneous Issues - 5 folders,1974 + + + + + + 151 + 6 + Records, Miscellaneous Issues - 5 folders,1974 + + + + + + 151 + 7 + Records, Issues 6-12/74 - 18 folders,1974 + + + + + + 151 + 8 + Records, Issues 6-12/74 - 18 folders,1974 + + + + + + 151 + 9 + Records, Issues 6-12/74 - 18 folders,1974 + + + + + + 151 + 10 + Records, Issues 6-12/74 - 18 folders,1974 + + + + + + 151 + 11 + Records, Issues 6-12/74 - 18 folders,1974 + + + + + + 151 + 12 + Records, Issues 6-12/74 - 18 folders,1974 + + + + + + 151 + 13 + Records, Issues 6-12/74 - 18 folders,1974 + + + + + + 151 + 14 + Records, Issues 6-12/74 - 18 folders,1974 + + + + + + 151 + 15 + Records, Issues 6-12/74 - 18 folders,1974 + + + + + + 151 + 16 + Records, Issues 6-12/74 - 18 folders,1974 + + + + + + 151 + 17 + Records, Issues 6-12/74 - 18 folders,1974 + + + + + + 151 + 18 + Records, Issues 6-12/74 - 18 folders,1974 + + + + + + 151 + 19 + Records, Issues 6-12/74 - 18 folders,1974 + + + + + + 151 + 20 + Records, Issues 6-12/74 - 18 folders,1974 + + + + + + 151 + 21 + Records, Issues 6-12/74 - 18 folders,1974 + + + + + + 151 + 22 + Records, Issues 6-12/74 - 18 folders,1974 + + + + + + 151 + 23 + Records, Issues 6-12/74 - 18 folders,1974 + + + + + + 151 + 24 + Records, Issues 6-12/74 - 18 folders,1974 + + + + + + 152 + 1 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 2 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 3 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 4 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 5 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 6 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 7 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 8 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 9 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 10 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 11 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 12 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 13 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 14 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 15 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 16 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 17 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 18 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 19 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 20 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 21 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 22 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 23 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 24 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 25 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 26 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 27 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 28 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 29 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 152 + 30 + Records, Miscellaneous Issues, 2-5/74 - 30 folders,1974 + + + + + + 153 + 1 + Records, Miscellaneous Issues - 12 folders,1974 + + + + + + 153 + 2 + Records, Miscellaneous Issues - 12 folders,1974 + + + + + + 153 + 3 + Records, Miscellaneous Issues - 12 folders,1974 + + + + + + 153 + 4 + Records, Miscellaneous Issues - 12 folders,1974 + + + + + + 153 + 5 + Records, Miscellaneous Issues - 12 folders,1974 + + + + + + 153 + 6 + Records, Miscellaneous Issues - 12 folders,1974 + + + + + + 153 + 7 + Records, Miscellaneous Issues - 12 folders,1974 + + + + + + 153 + 8 + Records, Miscellaneous Issues - 12 folders,1974 + + + + + + 153 + 9 + Records, Miscellaneous Issues - 12 folders,1974 + + + + + + 153 + 10 + Records, Miscellaneous Issues - 12 folders,1974 + + + + + + 153 + 11 + Records, Miscellaneous Issues - 12 folders,1974 + + + + + + 153 + 12 + Records, Miscellaneous Issues - 12 folders,1974 + + + + + + 153 + 13 + Records, Judiciary - 3 folders,1974 + + + + + + 153 + 14 + Records, Judiciary - 3 folders,1974 + + + + + + 153 + 15 + Records, Judiciary - 3 folders,1974 + + + + + + 153 + 16 + Records, Juvenile Delinquency,1974 + + + + + + 153 + 17 + Records, Labor - 4 folders,1974 + + + + + + 153 + 18 + Records, Labor - 4 folders,1974 + + + + + + 153 + 19 + Records, Labor - 4 folders,1974 + + + + + + 153 + 20 + Records, Labor - 4 folders,1974 + + + + + + 153 + 21 + Records, Legal Services,1974 + + + + + + 153 + 22 + Records, Holidays,1974 + + + + + + 153 + 23 + Records, Metric System,1974 + + + + + + 153 + 24 + Records, Michigan State Legislation - 3 folders,1974 + + + + + + 153 + 25 + Records, Michigan State Legislation - 3 folders,1974 + + + + + + 153 + 26 + Records, Michigan State Legislation - 3 folders,1974 + + + + + + 153 + 27 + Records, Natural Resources,1974 + + + + + + 153 + 28 + Records, Nominations - 3 folders,1974 + + + + + + 153 + 29 + Records, Nominations - 3 folders,1974 + + + + + + 153 + 30 + Records, Nominations - 3 folders,1974 + + + + + + 154 + 1 + Records, Parks - 2 folders,1974 + + + + + + 154 + 2 + Records, Parks - 2 folders,1974 + + + + + + 154 + 3 + Records, Petitions,1974 + + + + + + 154 + 4 + Records, Housing,1974 + + + + + + 154 + 5 + Records, Consumer Protection Agency (S 707),1974 + + + + + + 154 + 6 + Records, Politics,1974 + + + + + + 154 + 7 + Records, Pollution,1974 + + + + + + 154 + 8 + Records, Population Control,1974 + + + + + + 154 + 9 + Records, Pornography,1974 + + + + + + 154 + 10 + Records, Patents and Copyrights - 2 folders,1974 + + + + + + 154 + 11 + Records, Patents and Copyrights - 2 folders,1974 + + + + + + 154 + 12 + Records, Pensions - 4 folders,1974 + + + + + + 154 + 13 + Records, Pensions - 4 folders,1974 + + + + + + 154 + 14 + Records, Pensions - 4 folders,1974 + + + + + + 154 + 15 + Records, Pensions - 4 folders,1974 + + + + + + 154 + 16 + Records, Poverty - 2 folders,1974 + + + + + + 154 + 17 + Records, Poverty - 2 folders,1974 + + + + + + 154 + 18 + Records, Prayer - 2 folders,1974 + + + + + + 154 + 19 + Records, Prayer - 2 folders,1974 + + + + + + 154 + 20 + Records, No Address - 2 folders,1974 + + + + + + 154 + 21 + Records, No Address - 2 folders,1974 + + + + + + 154 + 22 + Records, Postal Service - 2 folders,1974 + + + + + + 154 + 23 + Records, Postal Service - 2 folders,1974 + + + + + + 154 + 24 + Records, Public Works,1974 + + + + + + 154 + 25 + Records, Retirement,1974 + + + + + + 154 + 26 + Records, Revenue Sharing,1974 + + + + + + 154 + 27 + Records, Securities and Stock Market,1974 + + + + + + 154 + 28 + Records, Senior Citizens,1974 + + + + + + 154 + 29 + Records, Small Business,1974 + + + + + + 155 + 1 + Records, Social Security - 3 folders,1974 + + + + + + 155 + 2 + Records, Social Security - 3 folders,1974 + + + + + + 155 + 3 + Records, Social Security - 3 folders,1974 + + + + + + 155 + 4 + Records, Social Security, Medicare-Medicaid - 3 folders,1974 + + + + + + 155 + 5 + Records, Social Security, Medicare-Medicaid - 3 folders,1974 + + + + + + 155 + 6 + Records, Social Security, Medicare-Medicaid - 3 folders,1974 + + + + + + 155 + 7 + Records, Social Security , Special,1974 + + + + + + 155 + 8 + Records, Space Program,1974 + + + + + + 155 + 9 + Records, Taxes - 8 folders,1974 + + + + + + 155 + 10 + Records, Taxes - 8 folders,1974 + + + + + + 155 + 11 + Records, Taxes - 8 folders,1974 + + + + + + 155 + 12 + Records, Taxes - 8 folders,1974 + + + + + + 155 + 13 + Records, Taxes - 8 folders,1974 + + + + + + 155 + 14 + Records, Taxes - 8 folders,1974 + + + + + + 155 + 15 + Records, Taxes - 8 folders,1974 + + + + + + 155 + 16 + Records, Taxes - 8 folders,1974 + + + + + + 155 + 17 + Records, Taxes - 3-4/1974,1974 + + + + + + 155 + 18 + Records, Taxes (Income and Property) 12/1973-3/1974 - 2 folders,1974 + + + + + + 155 + 19 + Records, Taxes (Income and Property) 12/1973-3/1974 - 2 folders,1974 + + + + + + 155 + 20 + Records, Utilities,1974 + + + + + + 155 + 21 + Records, Transportation - 3 folders,1974 + + + + + + 155 + 22 + Records, Transportation - 3 folders,1974 + + + + + + 155 + 23 + Records, Transportation - 3 folders,1974 + + + + + + 155 + 24 + Records, Veterans Affairs - 4 folders,1974 + + + + + + 155 + 25 + Records, Veterans Affairs - 4 folders,1974 + + + + + + 155 + 26 + Records, Veterans Affairs - 4 folders,1974 + + + + + + 155 + 27 + Records, Veterans Affairs - 4 folders,1974 + + + + + + 155 + 28 + Records, Vice-President,1974 + + + + + + 155 + 29 + Records, Wage-Price Controls - 3 folders,1974 + + + + + + 155 + 30 + Records, Wage-Price Controls - 3 folders,1974 + + + + + + 155 + 31 + Records, Wage-Price Controls - 3 folders,1974 + + + + + + 155 + 32 + Records, Watergate - 4 folders,1974 + + + + + + 155 + 33 + Records, Watergate - 4 folders,1974 + + + + + + 155 + 34 + Records, Watergate - 4 folders,1974 + + + + + + 155 + 35 + Records, Watergate - 4 folders,1974 + + + + + + 155 + 36 + Records, Energy,1974 + + + + + + 155 + 37 + Records, Welfare,1974 + + + + + + 156 + 1 + Records, White House,1974 + + + + + + 156 + 2 + Records, Defense,1974 + + + + + + 156 + 3 + Records, Labor (Minimum Wage/Unemployment),1974 + + + + + + 156 + 4 + Records, Commemorative Stamps/Post Office,1974 + + + + + + 156 + 5 + Records, Judiciary (Supreme Court),1974 + + + + + + 156 + 6 + Records, AID Foreign Relations,1974 + + + + + + 156 + 7 + Records, Foreign Relations - 3 folders,1974 + + + + + + 156 + 8 + Records, Foreign Relations - 3 folders,1974 + + + + + + 156 + 9 + Records, Foreign Relations - 3 folders,1974 + + + + + + 156 + 10 + Records, Energy,1974 + + + + + + 156 + 11 + Records, Watergate - Jan. - 3 folders,1974 + + + + + + 156 + 12 + Records, Watergate - Jan. - 3 folders,1974 + + + + + + 156 + 13 + Records, Watergate - Jan. - 3 folders,1974 + + + + + + 156 + 14 + Records, Watergate - Feb. - 4 folders,1974 + + + + + + 156 + 15 + Records, Watergate - Feb. - 4 folders,1974 + + + + + + 156 + 16 + Records, Watergate - Feb. - 4 folders,1974 + + + + + + 156 + 17 + Records, Watergate - Feb. - 4 folders,1974 + + + + + + 156 + 18 + Records, Watergate - Mar. - 2 folders,1974 + + + + + + 156 + 19 + Records, Watergate - Mar. - 2 folders,1974 + + + + + + 156 + 20 + Records, Watergate - Apr. - 2 folders,1974 + + + + + + 156 + 21 + Records, Watergate - Apr. - 2 folders,1974 + + + + + + 156 + 22 + Records, Watergate - May - 3 folders,1974 + + + + + + 156 + 23 + Records, Watergate - May - 3 folders,1974 + + + + + + 156 + 24 + Records, Watergate - May - 3 folders,1974 + + + + + + 156 + 25 + Records, Watergate - June - 1 folder,1974 + + + + + + 156 + 26 + Records, Watergate - July - 2 folders,1974 + + + + + + 156 + 27 + Records, Watergate - July - 2 folders,1974 + + + + + + 156 + 28 + Records, Issues - 4 folders,1974 + + + + + + 156 + 29 + Records, Issues - 4 folders,1974 + + + + + + 156 + 30 + Records, Issues - 4 folders,1974 + + + + + + 156 + 31 + Records, Issues - 4 folders,1974 + + + + + + 157 + 1 + Records, Dm - Dz,1976 + + + + + + 157 + 2 + Records, Fm - Fz,1976 + + + + + + 157 + 3 + Records, Gl - Gz,1976 + + + + + + 157 + 4 + Records, Hm - Hz,1976 + + + + + + 157 + 5 + Records, Sp - Sz,1976 + + + + + + 157 + 6 + Records, Z,1976 + + + + + + 157 + 7 + Records, Abortion - 2 folders,1976 + + + + + + 157 + 8 + Records, Abortion - 2 folders,1976 + + + + + + 157 + 9 + Records, Agriculture - 5 folders,1976 + + + + + + 157 + 10 + Records, Agriculture - 5 folders,1976 + + + + + + 157 + 11 + Records, Agriculture - 5 folders,1976 + + + + + + 157 + 12 + Records, Agriculture - 5 folders,1976 + + + + + + 157 + 13 + Records, Agriculture - 5 folders,1976 + + + + + + 157 + 14 + Records, Animals - 5 folders,1976 + + + + + + 157 + 15 + Records, Animals - 5 folders,1976 + + + + + + 157 + 16 + Records, Animals - 5 folders,1976 + + + + + + 157 + 17 + Records, Animals - 5 folders,1976 + + + + + + 157 + 18 + Records, Animals - 5 folders,1976 + + + + + + 157 + 19 + Records, Anti-Trust and Monopoly,1976 + + + + + + 157 + 20 + Records, Appropriations - 4 folders,1976 + + + + + + 157 + 21 + Records, Appropriations - 4 folders,1976 + + + + + + 157 + 22 + Records, Appropriations - 4 folders,1976 + + + + + + 157 + 23 + Records, Appropriations - 4 folders,1976 + + + + + + 157 + 24 + Records, Armed Services - 2 folders,1976 + + + + + + 157 + 25 + Records, Armed Services - 2 folders,1976 + + + + + + 157 + 26 + Records, Armed Services - Jan. - July, 1976, 4 folders,1976 + + + + + + 157 + 27 + Records, Armed Services - Jan. - July, 1976, 4 folders,1976 + + + + + + 157 + 28 + Records, Armed Services - Jan. - July, 1976, 4 folders,1976 + + + + + + 157 + 29 + Records, Armed Services - Jan. - July, 1976, 4 folders,1976 + + + + + + 157 + 30 + Records, Amnesty,1976 + + + + + + 157 + 31 + Records, Auto Industry,1976 + + + + + + 158 + 1 + Records, Banking - 3 folders,1976 + + + + + + 158 + 2 + Records, Banking - 3 folders,1976 + + + + + + 158 + 3 + Records, Banking - 3 folders,1976 + + + + + + 158 + 4 + Records, Busing - 2 folders,1976 + + + + + + 158 + 5 + Records, Busing - 2 folders,1976 + + + + + + 158 + 6 + Records, Children and Youth - 2 folders,1976 + + + + + + 158 + 7 + Records, Children and Youth - 2 folders,1976 + + + + + + 158 + 8 + Records, Civil Rights - 2 folders,1976 + + + + + + 158 + 9 + Records, Civil Rights - 2 folders,1976 + + + + + + 158 + 10 + Records, Civil Service - 5 folders,1976 + + + + + + 158 + 11 + Records, Civil Service - 5 folders,1976 + + + + + + 158 + 12 + Records, Civil Service - 5 folders,1976 + + + + + + 158 + 13 + Records, Civil Service - 5 folders,1976 + + + + + + 158 + 14 + Records, Civil Service - 5 folders,1976 + + + + + + 158 + 15 + Records, Commerce (Trade) - 5 folders,1976 + + + + + + 158 + 16 + Records, Commerce (Trade) - 5 folders,1976 + + + + + + 158 + 17 + Records, Commerce (Trade) - 5 folders,1976 + + + + + + 158 + 18 + Records, Commerce (Trade) - 5 folders,1976 + + + + + + 158 + 19 + Records, Commerce (Trade) - 5 folders,1976 + + + + + + 158 + 20 + Records, Commerce Committee - 2 folders,1976 + + + + + + 158 + 21 + Records, Commerce Committee - 2 folders,1976 + + + + + + 158 + 22 + Records, Communications - 3 folders,1976 + + + + + + 158 + 23 + Records, Communications - 3 folders,1976 + + + + + + 158 + 24 + Records, Communications - 3 folders,1976 + + + + + + 158 + 25 + Records, U.S. Congress - 3 folders,1976 + + + + + + 158 + 26 + Records, U.S. Congress - 3 folders,1976 + + + + + + 158 + 27 + Records, U.S. Congress - 3 folders,1976 + + + + + + 158 + 28 + Records, Consumers,1976 + + + + + + 158 + 29 + Records, Crime - 4 folders,1976 + + + + + + 158 + 30 + Records, Crime - 4 folders,1976 + + + + + + 158 + 31 + Records, Crime - 4 folders,1976 + + + + + + 158 + 32 + Records, Crime - 4 folders,1976 + + + + + + 158 + 33 + Records, Defense,1976 + + + + + + 158 + 34 + Records, District of Columbia,1976 + + + + + + 158 + 35 + Records, Drugs,1976 + + + + + + 158 + 36 + Records, Economy - 4 folders,1976 + + + + + + 158 + 37 + Records, Economy - 4 folders,1976 + + + + + + 158 + 38 + Records, Economy - 4 folders,1976 + + + + + + 158 + 39 + Records, Economy - 4 folders,1976 + + + + + + 158 + 40 + Records, Budget,1976 + + + + + + 158 + 41 + Records, Education - 4 folders,1976 + + + + + + 158 + 42 + Records, Education - 4 folders,1976 + + + + + + 158 + 43 + Records, Education - 4 folders,1976 + + + + + + 158 + 44 + Records, Education - 4 folders,1976 + + + + + + 158 + 45 + Records, Elections,1976 + + + + + + 159 + 1 + Records, Elections,1976 + + + + + + 159 + 2 + Records, Energy - 4 folders,1976 + + + + + + 159 + 3 + Records, Energy - 4 folders,1976 + + + + + + 159 + 4 + Records, Energy - 4 folders,1976 + + + + + + 159 + 5 + Records, Energy - 4 folders,1976 + + + + + + 159 + 6 + Records, Environment - 5 folders,1976 + + + + + + 159 + 7 + Records, Environment - 5 folders,1976 + + + + + + 159 + 8 + Records, Environment - 5 folders,1976 + + + + + + 159 + 9 + Records, Environment - 5 folders,1976 + + + + + + 159 + 10 + Records, Environment - 5 folders,1976 + + + + + + 159 + 11 + Records, Export-Import,1976 + + + + + + 159 + 12 + Records, Federal Reserve,1976 + + + + + + 159 + 13 + Records, Foreign Relations - 5 folders,1976 + + + + + + 159 + 14 + Records, Foreign Relations - 5 folders,1976 + + + + + + 159 + 15 + Records, Foreign Relations - 5 folders,1976 + + + + + + 159 + 16 + Records, Foreign Relations - 5 folders,1976 + + + + + + 159 + 17 + Records, Foreign Relations - 5 folders,1976 + + + + + + 159 + 18 + Records, Health - 5 folders,1976 + + + + + + 159 + 19 + Records, Health - 5 folders,1976 + + + + + + 159 + 20 + Records, Health - 5 folders,1976 + + + + + + 159 + 21 + Records, Health - 5 folders,1976 + + + + + + 159 + 22 + Records, Health - 5 folders,1976 + + + + + + 159 + 23 + Records, Housing,1976 + + + + + + 159 + 24 + Records, Immigration,1976 + + + + + + 159 + 25 + Records, Indians,1976 + + + + + + 159 + 26 + Records, Intelligence (Foreign and Domestic),1976 + + + + + + 159 + 27 + Records, Intentionally Not Answered - Dec. - 1 folder,1976 + + + + + + 160 + 1 + Records, Intentionally Not Answered - Aug.-Nov. - 4 folders,1976 + + + + + + 160 + 2 + Records, Intentionally Not Answered - Aug.-Nov. - 4 folders,1976 + + + + + + 160 + 3 + Records, Intentionally Not Answered - Aug.-Nov. - 4 folders,1976 + + + + + + 160 + 4 + Records, Intentionally Not Answered - Aug.-Nov. - 4 folders,1976 + + + + + + 160 + 5 + Records, Interior - 2 folders,1976 + + + + + + 160 + 6 + Records, Interior - 2 folders,1976 + + + + + + 160 + 7 + Records, Issues - 3 folders,1976 + + + + + + 160 + 8 + Records, Issues - 3 folders,1976 + + + + + + 160 + 9 + Records, Issues - 3 folders,1976 + + + + + + 160 + 10 + Records, Foreign Relations, General - 8 folders,1976 + + + + + + 160 + 11 + Records, Foreign Relations, General - 8 folders,1976 + + + + + + 160 + 12 + Records, Foreign Relations, General - 8 folders,1976 + + + + + + 160 + 13 + Records, Foreign Relations, General - 8 folders,1976 + + + + + + 160 + 14 + Records, Foreign Relations, General - 8 folders,1976 + + + + + + 160 + 15 + Records, Foreign Relations, General - 8 folders,1976 + + + + + + 160 + 16 + Records, Foreign Relations, General - 8 folders,1976 + + + + + + 160 + 17 + Records, Foreign Relations, General - 8 folders,1976 + + + + + + 160 + 18 + Records, Government Operations (Executive Reorganization) - 3 folders,1976 + + + + + + 160 + 19 + Records, Government Operations (Executive Reorganization) - 3 folders,1976 + + + + + + 160 + 20 + Records, Government Operations (Executive Reorganization) - 3 folders,1976 + + + + + + 160 + 21 + Records, Great Lakes,1976 + + + + + + 160 + 22 + Records, Gun Control - 2 folders,1976 + + + + + + 160 + 23 + Records, Gun Control - 2 folders,1976 + + + + + + 160 + 24 + Records, Health - 4 folders,1976 + + + + + + 160 + 25 + Records, Health - 4 folders,1976 + + + + + + 160 + 26 + Records, Health - 4 folders,1976 + + + + + + 160 + 27 + Records, Health - 4 folders,1976 + + + + + + 160 + 28 + Records, Miscellaneous Issues 2-3/1976 - 3 folders,1976 + + + + + + 160 + 29 + Records, Miscellaneous Issues 2-3/1976 - 3 folders,1976 + + + + + + 160 + 30 + Records, Miscellaneous Issues 2-3/1976 - 3 folders,1976 + + + + + + 161 + 1 + Records, Miscellaneous Issues - 4-11/1976 - 19 folders,1976 + + + + + + 161 + 2 + Records, Miscellaneous Issues - 4-11/1976 - 19 folders,1976 + + + + + + 161 + 3 + Records, Miscellaneous Issues - 4-11/1976 - 19 folders,1976 + + + + + + 161 + 4 + Records, Miscellaneous Issues - 4-11/1976 - 19 folders,1976 + + + + + + 161 + 5 + Records, Miscellaneous Issues - 4-11/1976 - 19 folders,1976 + + + + + + 161 + 6 + Records, Miscellaneous Issues - 4-11/1976 - 19 folders,1976 + + + + + + 161 + 7 + Records, Miscellaneous Issues - 4-11/1976 - 19 folders,1976 + + + + + + 161 + 8 + Records, Miscellaneous Issues - 4-11/1976 - 19 folders,1976 + + + + + + 161 + 9 + Records, Miscellaneous Issues - 4-11/1976 - 19 folders,1976 + + + + + + 161 + 10 + Records, Miscellaneous Issues - 4-11/1976 - 19 folders,1976 + + + + + + 161 + 11 + Records, Miscellaneous Issues - 4-11/1976 - 19 folders,1976 + + + + + + 161 + 12 + Records, Miscellaneous Issues - 4-11/1976 - 19 folders,1976 + + + + + + 161 + 13 + Records, Miscellaneous Issues - 4-11/1976 - 19 folders,1976 + + + + + + 161 + 14 + Records, Miscellaneous Issues - 4-11/1976 - 19 folders,1976 + + + + + + 161 + 15 + Records, Miscellaneous Issues - 4-11/1976 - 19 folders,1976 + + + + + + 161 + 16 + Records, Miscellaneous Issues - 4-11/1976 - 19 folders,1976 + + + + + + 161 + 17 + Records, Miscellaneous Issues - 4-11/1976 - 19 folders,1976 + + + + + + 161 + 18 + Records, Miscellaneous Issues - 4-11/1976 - 19 folders,1976 + + + + + + 161 + 19 + Records, Miscellaneous Issues - 4-11/1976 - 19 folders,1976 + + + + + + 161 + 20 + Records, Intentionally Not Answered,1976 + + + + + + 161 + 21 + Records, Judiciary - 5 folders,1976 + + + + + + 161 + 22 + Records, Judiciary - 5 folders,1976 + + + + + + 161 + 23 + Records, Judiciary - 5 folders,1976 + + + + + + 161 + 24 + Records, Judiciary - 5 folders,1976 + + + + + + 161 + 25 + Records, Judiciary - 5 folders,1976 + + + + + + 161 + 26 + Records, Labor - 8-12/1976 - 5 folders,1976 + + + + + + 161 + 27 + Records, Labor - 8-12/1976 - 5 folders,1976 + + + + + + 161 + 28 + Records, Labor - 8-12/1976 - 5 folders,1976 + + + + + + 161 + 29 + Records, Labor - 8-12/1976 - 5 folders,1976 + + + + + + 161 + 30 + Records, Labor - 8-12/1976 - 5 folders,1976 + + + + + + 162 + 1 + Records, Labor - 1-7/1976 8 folders,1976 + + + + + + 162 + 2 + Records, Labor - 1-7/1976 8 folders,1976 + + + + + + 162 + 3 + Records, Labor - 1-7/1976 8 folders,1976 + + + + + + 162 + 4 + Records, Labor - 1-7/1976 8 folders,1976 + + + + + + 162 + 5 + Records, Labor - 1-7/1976 8 folders,1976 + + + + + + 162 + 6 + Records, Labor - 1-7/1976 8 folders,1976 + + + + + + 162 + 7 + Records, Labor - 1-7/1976 8 folders,1976 + + + + + + 162 + 8 + Records, Labor - 1-7/1976 8 folders,1976 + + + + + + 162 + 9 + Records, Memorials, Holidays - 2 folders,1976 + + + + + + 162 + 10 + Records, Memorials, Holidays - 2 folders,1976 + + + + + + 162 + 11 + Records, Metric System,1976 + + + + + + 162 + 12 + Records, Michigan State - 2 folders,1976 + + + + + + 162 + 13 + Records, Michigan State - 2 folders,1976 + + + + + + 162 + 14 + Records, Natural Resources,1976 + + + + + + 162 + 15 + Records, No Address File,1976 + + + + + + 162 + 16 + Records, Nominations,1976 + + + + + + 162 + 17 + Records, Parks,1976 + + + + + + 162 + 18 + Records, Patents and Copyrights,1976 + + + + + + 162 + 19 + Records, Pensions,1976 + + + + + + 162 + 20 + Records, Personal,1976 + + + + + + 162 + 21 + Records, Petitions,1976 + + + + + + 162 + 22 + Records, Petitions, Anti - 2 folders,1976 + + + + + + 162 + 23 + Records, Petitions, Anti - 2 folders,1976 + + + + + + 162 + 24 + Records, Labor Party (Petition to Oust Henry Kissinger),1976 + + + + + + 162 + 25 + Records, Politics,1976 + + + + + + 162 + 26 + Records, Population Control - 5-8/1976,1976 + + + + + + 162 + 27 + Records, Pornography,1976 + + + + + + 162 + 28 + Records, Postal Service - 4 folders,1976 + + + + + + 162 + 29 + Records, Postal Service - 4 folders,1976 + + + + + + 162 + 30 + Records, Postal Service - 4 folders,1976 + + + + + + 162 + 31 + Records, Postal Service - 4 folders,1976 + + + + + + 163 + 1 + Records, Prayer 11/1976,1976 + + + + + + 163 + 2 + Records, Public Works - 4 folders,1976 + + + + + + 163 + 3 + Records, Public Works - 4 folders,1976 + + + + + + 163 + 4 + Records, Public Works - 4 folders,1976 + + + + + + 163 + 5 + Records, Public Works - 4 folders,1976 + + + + + + 163 + 6 + Records, Federal Criminal Justice Reformation Act (petitions),1976 + + + + + + 163 + 7 + Records, Anti-Discrimination Against Women (petitions),1976 + + + + + + 163 + 8 + Records, Veterans Administration Educational Benefits (petitions),1976 + + + + + + 163 + 9 + Records, Revenue Sharing,1976 + + + + + + 163 + 10 + Records, Rules,1976 + + + + + + 163 + 11 + Records, Senior Citizens,1976 + + + + + + 163 + 12 + Records, Small Business,1976 + + + + + + 163 + 13 + Records, Social Security, Medicare and Medicaid 1-12/1976 - 4 folders,1976 + + + + + + 163 + 14 + Records, Social Security, Medicare and Medicaid 1-12/1976 - 4 folders,1976 + + + + + + 163 + 15 + Records, Social Security, Medicare and Medicaid 1-12/1976 - 4 folders,1976 + + + + + + 163 + 16 + Records, Social Security, Medicare and Medicaid 1-12/1976 - 4 folders,1976 + + + + + + 163 + 17 + Records, Taxes 1-12/1976 -16 folders,1976 + + + + + + 163 + 18 + Records, Taxes 1-12/1976 -16 folders,1976 + + + + + + 163 + 19 + Records, Taxes 1-12/1976 -16 folders,1976 + + + + + + 163 + 20 + Records, Taxes 1-12/1976 -16 folders,1976 + + + + + + 163 + 21 + Records, Taxes 1-12/1976 -16 folders,1976 + + + + + + 163 + 22 + Records, Taxes 1-12/1976 -16 folders,1976 + + + + + + 163 + 23 + Records, Taxes 1-12/1976 -16 folders,1976 + + + + + + 163 + 24 + Records, Taxes 1-12/1976 -16 folders,1976 + + + + + + 163 + 25 + Records, Taxes 1-12/1976 -16 folders,1976 + + + + + + 163 + 26 + Records, Taxes 1-12/1976 -16 folders,1976 + + + + + + 163 + 27 + Records, Taxes 1-12/1976 -16 folders,1976 + + + + + + 163 + 28 + Records, Taxes 1-12/1976 -16 folders,1976 + + + + + + 163 + 29 + Records, Taxes 1-12/1976 -16 folders,1976 + + + + + + 163 + 30 + Records, Taxes 1-12/1976 -16 folders,1976 + + + + + + 163 + 31 + Records, Taxes 1-12/1976 -16 folders,1976 + + + + + + 163 + 32 + Records, Taxes 1-12/1976 -16 folders,1976 + + + + + + 163 + 33 + Records, Transportation - 2 folders,1976 + + + + + + 163 + 34 + Records, Transportation - 2 folders,1976 + + + + + + 163 + 35 + Records, Veterans Affairs - 3 folders,1976 + + + + + + 163 + 36 + Records, Veterans Affairs - 3 folders,1976 + + + + + + 163 + 37 + Records, Veterans Affairs - 3 folders,1976 + + + + + + 163 + 38 + Records, Vice President,1976 + + + + + + 164 + 1 + Records, Wage Price Controls,1976 + + + + + + 164 + 2 + Records, Welfare - 2 folders,1976 + + + + + + 164 + 3 + Records, Welfare - 2 folders,1976 + + + + + + 164 + 4 + Records, White House - 2 folders,1976 + + + + + + 164 + 5 + Records, White House - 2 folders,1976 + + + + + + 164 + 6 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 7 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 8 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 9 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 10 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 11 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 12 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 13 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 14 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 15 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 16 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 17 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 18 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 19 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 20 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 21 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 22 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 23 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 24 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 25 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 26 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 27 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 28 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 29 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 30 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 31 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 164 + 32 + Records, Energy 1-12/1976 - 27 folders,1976 + + + + + + 165 + 1 + Records, Foreign Relations, 1-10/1974 - 25 folders,1974 + + + + + + 165 + 2 + Records, Foreign Relations, 1-10/1974 - 25 folders,1974 + + + + + + 165 + 3 + Records, Foreign Relations, 1-10/1974 - 25 folders,1974 + + + + + + 165 + 4 + Records, Foreign Relations, 1-10/1974 - 25 folders,1974 + + + + + + 165 + 5 + Records, Foreign Relations, 1-10/1974 - 25 folders,1974 + + + + + + 165 + 6 + Records, Foreign Relations, 1-10/1974 - 25 folders,1974 + + + + + + 165 + 7 + Records, Foreign Relations, 1-10/1974 - 25 folders,1974 + + + + + + 165 + 8 + Records, Foreign Relations, 1-10/1974 - 25 folders,1974 + + + + + + 165 + 9 + Records, Foreign Relations, 1-10/1974 - 25 folders,1974 + + + + + + 165 + 10 + Records, Foreign Relations, 1-10/1974 - 25 folders,1974 + + + + + + 165 + 11 + Records, Foreign Relations, 1-10/1974 - 25 folders,1974 + + + + + + 165 + 12 + Records, Foreign Relations, 1-10/1974 - 25 folders,1974 + + + + + + 165 + 13 + Records, Foreign Relations, 1-10/1974 - 25 folders,1974 + + + + + + 165 + 14 + Records, Foreign Relations, 1-10/1974 - 25 folders,1974 + + + + + + 165 + 15 + Records, Foreign Relations, 1-10/1974 - 25 folders,1974 + + + + + + 165 + 16 + Records, Foreign Relations, 1-10/1974 - 25 folders,1974 + + + + + + 165 + 17 + Records, Foreign Relations, 1-10/1974 - 25 folders,1974 + + + + + + 165 + 18 + Records, Foreign Relations, 1-10/1974 - 25 folders,1974 + + + + + + 165 + 19 + Records, Foreign Relations, 1-10/1974 - 25 folders,1974 + + + + + + 165 + 20 + Records, Foreign Relations, 1-10/1974 - 25 folders,1974 + + + + + + 165 + 21 + Records, Foreign Relations, 1-10/1974 - 25 folders,1974 + + + + + + 165 + 22 + Records, Foreign Relations, 1-10/1974 - 25 folders,1974 + + + + + + 165 + 23 + Records, Foreign Relations, 1-10/1974 - 25 folders,1974 + + + + + + 165 + 24 + Records, Foreign Relations, 1-10/1974 - 25 folders,1974 + + + + + + 165 + 25 + Records, Foreign Relations, 1-10/1974 - 25 folders,1974 + + + + + + 165 + 26 + Records, Foreign Relations, Mideast,1974 + + + + + + 165 + 27 + Records, Foreign Relations, Vietnam,1974 + + + + + + 165 + 28 + Records, Abortion,1975 + + + + + + 165 + 29 + Records, Anti-Trust and Monopolies,1975 + + + + + + 165 + 30 + Records, Agriculture 3-12/1975 - 9 folders,1975 + + + + + + 165 + 31 + Records, Agriculture 3-12/1975 - 9 folders,1975 + + + + + + 165 + 32 + Records, Agriculture 3-12/1975 - 9 folders,1975 + + + + + + 165 + 33 + Records, Agriculture 3-12/1975 - 9 folders,1975 + + + + + + 165 + 34 + Records, Agriculture 3-12/1975 - 9 folders,1975 + + + + + + 165 + 35 + Records, Agriculture 3-12/1975 - 9 folders,1975 + + + + + + 165 + 36 + Records, Agriculture 3-12/1975 - 9 folders,1975 + + + + + + 165 + 37 + Records, Agriculture 3-12/1975 - 9 folders,1975 + + + + + + 165 + 38 + Records, Agriculture 3-12/1975 - 9 folders,1975 + + + + + + 166 + 1 + Records, Animals 1-12/1975 - 7 folders,1975 + + + + + + 166 + 2 + Records, Animals 1-12/1975 - 7 folders,1975 + + + + + + 166 + 3 + Records, Animals 1-12/1975 - 7 folders,1975 + + + + + + 166 + 4 + Records, Animals 1-12/1975 - 7 folders,1975 + + + + + + 166 + 5 + Records, Animals 1-12/1975 - 7 folders,1975 + + + + + + 166 + 6 + Records, Animals 1-12/1975 - 7 folders,1975 + + + + + + 166 + 7 + Records, Animals 1-12/1975 - 7 folders,1975 + + + + + + 166 + 8 + Records, Appropriations 4-12/1975 - 5 folders,1975 + + + + + + 166 + 9 + Records, Appropriations 4-12/1975 - 5 folders,1975 + + + + + + 166 + 10 + Records, Appropriations 4-12/1975 - 5 folders,1975 + + + + + + 166 + 11 + Records, Appropriations 4-12/1975 - 5 folders,1975 + + + + + + 166 + 12 + Records, Appropriations 4-12/1975 - 5 folders,1975 + + + + + + 166 + 13 + Records, Armed Services 312/1975 - 6 folders,1975 + + + + + + 166 + 14 + Records, Armed Services 312/1975 - 6 folders,1975 + + + + + + 166 + 15 + Records, Armed Services 312/1975 - 6 folders,1975 + + + + + + 166 + 16 + Records, Armed Services 312/1975 - 6 folders,1975 + + + + + + 166 + 17 + Records, Armed Services 312/1975 - 6 folders,1975 + + + + + + 166 + 18 + Records, Armed Services 312/1975 - 6 folders,1975 + + + + + + 166 + 19 + Records, Armed Services (Amnesty),1975 + + + + + + 166 + 20 + Records, Automobile Industry 3-12/1975 -3 folders,1975 + + + + + + 166 + 21 + Records, Automobile Industry 3-12/1975 -3 folders,1975 + + + + + + 166 + 22 + Records, Automobile Industry 3-12/1975 -3 folders,1975 + + + + + + 166 + 23 + Records, Banking 1-12/1975 - 2 folders,1975 + + + + + + 166 + 24 + Records, Banking 1-12/1975 - 2 folders,1975 + + + + + + 166 + 25 + Records, Busing 1-12/1975 -2 folders,1975 + + + + + + 166 + 26 + Records, Busing 1-12/1975 -2 folders,1975 + + + + + + 166 + 27 + Records, Children and Youth 1-12/1975 - 2 folders,1975 + + + + + + 166 + 28 + Records, Children and Youth 1-12/1975 - 2 folders,1975 + + + + + + 166 + 29 + Records, Civil Rights,1975 + + + + + + 166 + 30 + Records, Civil Service 1-12/1975 - 3 folders,1975 + + + + + + 166 + 31 + Records, Civil Service 1-12/1975 - 3 folders,1975 + + + + + + 166 + 32 + Records, Civil Service 1-12/1975 - 3 folders,1975 + + + + + + 167 + 1 + Records, Education - 6 folders,1975 + + + + + + 167 + 2 + Records, Education - 6 folders,1975 + + + + + + 167 + 3 + Records, Education - 6 folders,1975 + + + + + + 167 + 4 + Records, Education - 6 folders,1975 + + + + + + 167 + 5 + Records, Education - 6 folders,1975 + + + + + + 167 + 6 + Records, Education - 6 folders,1975 + + + + + + 167 + 7 + Records, Elections,1975 + + + + + + 167 + 8 + Records, Energy -12 folders,1975 + + + + + + 167 + 9 + Records, Energy -12 folders,1975 + + + + + + 167 + 10 + Records, Energy -12 folders,1975 + + + + + + 167 + 11 + Records, Energy -12 folders,1975 + + + + + + 167 + 12 + Records, Energy -12 folders,1975 + + + + + + 167 + 13 + Records, Energy -12 folders,1975 + + + + + + 167 + 14 + Records, Energy -12 folders,1975 + + + + + + 167 + 15 + Records, Energy -12 folders,1975 + + + + + + 167 + 16 + Records, Energy -12 folders,1975 + + + + + + 167 + 17 + Records, Energy -12 folders,1975 + + + + + + 167 + 18 + Records, Energy -12 folders,1975 + + + + + + 167 + 19 + Records, Energy -12 folders,1975 + + + + + + 167 + 20 + Records, Environment - 6 folders,1975 + + + + + + 167 + 21 + Records, Environment - 6 folders,1975 + + + + + + 167 + 22 + Records, Environment - 6 folders,1975 + + + + + + 167 + 23 + Records, Environment - 6 folders,1975 + + + + + + 167 + 24 + Records, Environment - 6 folders,1975 + + + + + + 167 + 25 + Records, Environment - 6 folders,1975 + + + + + + 167 + 26 + Records, Export-Import,1975 + + + + + + 167 + 27 + Records, Foreign Relations 10-12/1975 - 5 folders,1975 + + + + + + 167 + 28 + Records, Foreign Relations 10-12/1975 - 5 folders,1975 + + + + + + 167 + 29 + Records, Foreign Relations 10-12/1975 - 5 folders,1975 + + + + + + 167 + 30 + Records, Foreign Relations 10-12/1975 - 5 folders,1975 + + + + + + 167 + 31 + Records, Foreign Relations 10-12/1975 - 5 folders,1975 + + + + + + 168 + 1 + Records, Commerce 1-12/1975 - 6 folders,1975 + + + + + + 168 + 2 + Records, Commerce 1-12/1975 - 6 folders,1975 + + + + + + 168 + 3 + Records, Commerce 1-12/1975 - 6 folders,1975 + + + + + + 168 + 4 + Records, Commerce 1-12/1975 - 6 folders,1975 + + + + + + 168 + 5 + Records, Commerce 1-12/1975 - 6 folders,1975 + + + + + + 168 + 6 + Records, Commerce 1-12/1975 - 6 folders,1975 + + + + + + 168 + 7 + Records, Communications 1-12/1975 - 2 folders,1975 + + + + + + 168 + 8 + Records, Communications 1-12/1975 - 2 folders,1975 + + + + + + 168 + 9 + Records, Animals,1975 + + + + + + 168 + 10 + Records, Congress - 3 folders,1975 + + + + + + 168 + 11 + Records, Congress - 3 folders,1975 + + + + + + 168 + 12 + Records, Congress - 3 folders,1975 + + + + + + 168 + 13 + Records, Consumers -3 folders,1975 + + + + + + 168 + 14 + Records, Consumers -3 folders,1975 + + + + + + 168 + 16 + Records, Crime - 3 folders,1975 + + + + + + 168 + 17 + Records, Crime - 3 folders,1975 + + + + + + 168 + 18 + Records, Crime - 3 folders,1975 + + + + + + 168 + 19 + Records, Drugs,1975 + + + + + + 168 + 20 + Records, District of Columbia,1975 + + + + + + 168 + 21 + Records, Economy - 8 folders,1975 + + + + + + 168 + 22 + Records, Economy - 8 folders,1975 + + + + + + 168 + 23 + Records, Economy - 8 folders,1975 + + + + + + 168 + 24 + Records, Economy - 8 folders,1975 + + + + + + 168 + 25 + Records, Economy - 8 folders,1975 + + + + + + 168 + 26 + Records, Economy - 8 folders,1975 + + + + + + 168 + 27 + Records, Economy - 8 folders,1975 + + + + + + 168 + 28 + Records, Economy - 8 folders,1975 + + + + + + 168 + 29 + Records, Economy (Budget/Inflation) - 2 folders,1975 + + + + + + 168 + 30 + Records, Economy (Budget/Inflation) - 2 folders,1975 + + + + + + 169 + 1 + Records, Foreign Relations, 1-3/1975 - 5 folders,1975 + + + + + + 169 + 2 + Records, Foreign Relations, 1-3/1975 - 5 folders,1975 + + + + + + 169 + 3 + Records, Foreign Relations, 1-3/1975 - 5 folders,1975 + + + + + + 169 + 4 + Records, Foreign Relations, 1-3/1975 - 5 folders,1975 + + + + + + 169 + 5 + Records, Foreign Relations, 1-3/1975 - 5 folders,1975 + + + + + + 169 + 6 + Records, Foreign Relations, Mideast 1-9/1975 - 2 folders,1975 + + + + + + 169 + 7 + Records, Foreign Relations, Mideast 1-9/1975 - 2 folders,1975 + + + + + + 169 + 8 + Records, Foreign Relations, Vietnam 1-4/1975 - 3 folders,1975 + + + + + + 169 + 9 + Records, Foreign Relations, Vietnam 1-4/1975 - 3 folders,1975 + + + + + + 169 + 10 + Records, Foreign Relations, Vietnam 1-4/1975 - 3 folders,1975 + + + + + + 169 + 11 + Records, Very Important People (leaders, CEOs, multiple topics),1975 + + + + + + 169 + 12 + Records, Government Operations 1-12/1975,1975 + + + + + + 169 + 13 + Records, Great Lakes 5-11/1975,1975 + + + + + + 169 + 14 + Records, Gun Control 1-12/1975 -6 folders,1975 + + + + + + 169 + 15 + Records, Gun Control 1-12/1975 -6 folders,1975 + + + + + + 169 + 16 + Records, Gun Control 1-12/1975 -6 folders,1975 + + + + + + 169 + 17 + Records, Gun Control 1-12/1975 -6 folders,1975 + + + + + + 169 + 18 + Records, Gun Control 1-12/1975 -6 folders,1975 + + + + + + 169 + 19 + Records, Gun Control 1-12/1975 -6 folders,1975 + + + + + + 169 + 20 + Records, Health 9-12/1975 -5 folders,1975 + + + + + + 169 + 21 + Records, Health 9-12/1975 -5 folders,1975 + + + + + + 169 + 22 + Records, Health 9-12/1975 -5 folders,1975 + + + + + + 169 + 23 + Records, Health 9-12/1975 -5 folders,1975 + + + + + + 169 + 24 + Records, Health 9-12/1975 -5 folders,1975 + + + + + + 169 + 25 + Records, Housing,1975 + + + + + + 169 + 26 + Records, Immigration,1975 + + + + + + 169 + 27 + Records, Indians,1975 + + + + + + 169 + 28 + Records, Intentionally Not Answered 11-12/1975,1975 + + + + + + 169 + 29 + Records, Interior 11-12/1975,1975 + + + + + + 170 + 1 + Records, Health 1-8/1975 - 13 folders,1975 + + + + + + 170 + 2 + Records, Health 1-8/1975 - 13 folders,1975 + + + + + + 170 + 3 + Records, Health 1-8/1975 - 13 folders,1975 + + + + + + 170 + 4 + Records, Health 1-8/1975 - 13 folders,1975 + + + + + + 170 + 5 + Records, Health 1-8/1975 - 13 folders,1975 + + + + + + 170 + 6 + Records, Health 1-8/1975 - 13 folders,1975 + + + + + + 170 + 7 + Records, Health 1-8/1975 - 13 folders,1975 + + + + + + 170 + 8 + Records, Health 1-8/1975 - 13 folders,1975 + + + + + + 170 + 9 + Records, Health 1-8/1975 - 13 folders,1975 + + + + + + 170 + 10 + Records, Health 1-8/1975 - 13 folders,1975 + + + + + + 170 + 11 + Records, Health 1-8/1975 - 13 folders,1975 + + + + + + 170 + 12 + Records, Health 1-8/1975 - 13 folders,1975 + + + + + + 170 + 13 + Records, Health 1-8/1975 - 13 folders,1975 + + + + + + 170 + 14 + Records, Agriculture - 3 folders,undated + + + + + + 170 + 15 + Records, Agriculture - 3 folders,undated + + + + + + 170 + 16 + Records, Agriculture - 3 folders,undated + + + + + + 170 + 17 + Records, Appropriations - 3 folders,undated + + + + + + 170 + 18 + Records, Appropriations - 3 folders,undated + + + + + + 170 + 19 + Records, Appropriations - 3 folders,undated + + + + + + 170 + 20 + Records, Automobile Industry - 3 folders,undated + + + + + + 170 + 21 + Records, Automobile Industry - 3 folders,undated + + + + + + 170 + 22 + Records, Automobile Industry - 3 folders,undated + + + + + + 170 + 23 + Records, Interior,1975 + + + + + + 171 + 1 + Records, Judiciary - 9 folders,1975 + + + + + + 171 + 2 + Records, Judiciary - 9 folders,1975 + + + + + + 171 + 3 + Records, Judiciary - 9 folders,1975 + + + + + + 171 + 4 + Records, Judiciary - 9 folders,1975 + + + + + + 171 + 5 + Records, Judiciary - 9 folders,1975 + + + + + + 171 + 6 + Records, Judiciary - 9 folders,1975 + + + + + + 171 + 7 + Records, Judiciary - 9 folders,1975 + + + + + + 171 + 8 + Records, Judiciary - 9 folders,1975 + + + + + + 171 + 9 + Records, Judiciary - 9 folders,1975 + + + + + + 171 + 10 + Records, Miscellaneous Issues 1(1-31) and 7 (1-15)/1975 - 8 folders,1975 + + + + + + 171 + 11 + Records, Miscellaneous Issues 1(1-31) and 7 (1-15)/1975 - 8 folders,1975 + + + + + + 171 + 12 + Records, Miscellaneous Issues 1(1-31) and 7 (1-15)/1975 - 8 folders,1975 + + + + + + 171 + 13 + Records, Miscellaneous Issues 1(1-31) and 7 (1-15)/1975 - 8 folders,1975 + + + + + + 171 + 14 + Records, Miscellaneous Issues 1(1-31) and 7 (1-15)/1975 - 8 folders,1975 + + + + + + 171 + 15 + Records, Miscellaneous Issues 1(1-31) and 7 (1-15)/1975 - 8 folders,1975 + + + + + + 171 + 16 + Records, Miscellaneous Issues 1(1-31) and 7 (1-15)/1975 - 8 folders,1975 + + + + + + 171 + 17 + Records, Miscellaneous Issues 1(1-31) and 7 (1-15)/1975 - 8 folders,1975 + + + + + + 171 + 18 + Records, Miscellaneous Issues 2-4 (1-14)/1975 -16 folders,1975 + + + + + + 171 + 19 + Records, Miscellaneous Issues 2-4 (1-14)/1975 -16 folders,1975 + + + + + + 171 + 20 + Records, Miscellaneous Issues 2-4 (1-14)/1975 -16 folders,1975 + + + + + + 171 + 21 + Records, Miscellaneous Issues 2-4 (1-14)/1975 -16 folders,1975 + + + + + + 171 + 22 + Records, Miscellaneous Issues 2-4 (1-14)/1975 -16 folders,1975 + + + + + + 171 + 23 + Records, Miscellaneous Issues 2-4 (1-14)/1975 -16 folders,1975 + + + + + + 171 + 24 + Records, Miscellaneous Issues 2-4 (1-14)/1975 -16 folders,1975 + + + + + + 171 + 25 + Records, Miscellaneous Issues 2-4 (1-14)/1975 -16 folders,1975 + + + + + + 171 + 26 + Records, Miscellaneous Issues 2-4 (1-14)/1975 -16 folders,1975 + + + + + + 171 + 27 + Records, Miscellaneous Issues 2-4 (1-14)/1975 -16 folders,1975 + + + + + + 171 + 28 + Records, Miscellaneous Issues 2-4 (1-14)/1975 -16 folders,1975 + + + + + + 171 + 29 + Records, Miscellaneous Issues 2-4 (1-14)/1975 -16 folders,1975 + + + + + + 171 + 30 + Records, Miscellaneous Issues 2-4 (1-14)/1975 -16 folders,1975 + + + + + + 171 + 31 + Records, Miscellaneous Issues 2-4 (1-14)/1975 -16 folders,1975 + + + + + + 171 + 32 + Records, Miscellaneous Issues 2-4 (1-14)/1975 -16 folders,1975 + + + + + + 171 + 33 + Records, Miscellaneous Issues 2-4 (1-14)/1975 -16 folders,1975 + + + + + + 172 + 1 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 172 + 2 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 172 + 3 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 172 + 4 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 172 + 5 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 172 + 6 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 172 + 7 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 172 + 8 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 172 + 9 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 172 + 10 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 172 + 11 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 172 + 12 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 172 + 13 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 172 + 14 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 172 + 15 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 172 + 16 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 172 + 17 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 172 + 18 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 172 + 19 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 172 + 20 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 172 + 21 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 172 + 22 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 172 + 23 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 172 + 24 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 172 + 25 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 172 + 26 + Records, Miscellaneous Issues, 2-8/1975 - 26 folders,1975 + + + + + + 173 + 1 + Records, Miscellaneous Issues, 9-12/1975 - 19 folders,1975 + + + + + + 173 + 2 + Records, Miscellaneous Issues, 9-12/1975 - 19 folders,1975 + + + + + + 173 + 3 + Records, Miscellaneous Issues, 9-12/1975 - 19 folders,1975 + + + + + + 173 + 4 + Records, Miscellaneous Issues, 9-12/1975 - 19 folders,1975 + + + + + + 173 + 5 + Records, Miscellaneous Issues, 9-12/1975 - 19 folders,1975 + + + + + + 173 + 6 + Records, Miscellaneous Issues, 9-12/1975 - 19 folders,1975 + + + + + + 173 + 7 + Records, Miscellaneous Issues, 9-12/1975 - 19 folders,1975 + + + + + + 173 + 8 + Records, Miscellaneous Issues, 9-12/1975 - 19 folders,1975 + + + + + + 173 + 9 + Records, Miscellaneous Issues, 9-12/1975 - 19 folders,1975 + + + + + + 173 + 10 + Records, Miscellaneous Issues, 9-12/1975 - 19 folders,1975 + + + + + + 173 + 11 + Records, Miscellaneous Issues, 9-12/1975 - 19 folders,1975 + + + + + + 173 + 12 + Records, Miscellaneous Issues, 9-12/1975 - 19 folders,1975 + + + + + + 173 + 13 + Records, Miscellaneous Issues, 9-12/1975 - 19 folders,1975 + + + + + + 173 + 14 + Records, Miscellaneous Issues, 9-12/1975 - 19 folders,1975 + + + + + + 173 + 15 + Records, Miscellaneous Issues, 9-12/1975 - 19 folders,1975 + + + + + + 173 + 16 + Records, Miscellaneous Issues, 9-12/1975 - 19 folders,1975 + + + + + + 173 + 17 + Records, Miscellaneous Issues, 9-12/1975 - 19 folders,1975 + + + + + + 173 + 18 + Records, Miscellaneous Issues, 9-12/1975 - 19 folders,1975 + + + + + + 173 + 19 + Records, Miscellaneous Issues, 9-12/1975 - 19 folders,1975 + + + + + + 173 + 20 + Records, Juvenile Delinquency 5/1975,1975 + + + + + + 173 + 21 + Records, Labor 1-12/1975 - 10 folders,1975 + + + + + + 173 + 22 + Records, Labor 1-12/1975 - 10 folders,1975 + + + + + + 173 + 23 + Records, Labor 1-12/1975 - 10 folders,1975 + + + + + + 173 + 24 + Records, Labor 1-12/1975 - 10 folders,1975 + + + + + + 173 + 25 + Records, Labor 1-12/1975 - 10 folders,1975 + + + + + + 173 + 26 + Records, Labor 1-12/1975 - 10 folders,1975 + + + + + + 173 + 27 + Records, Labor 1-12/1975 - 10 folders,1975 + + + + + + 173 + 28 + Records, Labor 1-12/1975 - 10 folders,1975 + + + + + + 173 + 29 + Records, Labor 1-12/1975 - 10 folders,1975 + + + + + + 173 + 30 + Records, Labor 1-12/1975 - 10 folders,1975 + + + + + + 174 + 1 + Records, Labor/Unemployment,1975 + + + + + + 174 + 2 + Records, Metric System,1975 + + + + + + 174 + 3 + Records, Michigan State Legislation 1-12/1975 - 2 folders,1975 + + + + + + 174 + 4 + Records, Michigan State Legislation 1-12/1975 - 2 folders,1975 + + + + + + 174 + 5 + Records, Memorials and Holidays,1975 + + + + + + 174 + 6 + Records, No Address,1975 + + + + + + 174 + 7 + Records, Nominations,1975 + + + + + + 174 + 8 + Records, Retirement,1975 + + + + + + 174 + 9 + Records, Returns,1975 + + + + + + 174 + 10 + Records, Revenue Sharing,1975 + + + + + + 174 + 11 + Records, Rules,1975 + + + + + + 174 + 12 + Records, Securities and Stock Market,1975 + + + + + + 174 + 13 + Records, Senior Citizens,1975 + + + + + + 174 + 14 + Records, Small Business,1975 + + + + + + 174 + 15 + Records, Social Security - 1-12/1975 -7 folders,1975 + + + + + + 174 + 16 + Records, Social Security - 1-12/1975 -7 folders,1975 + + + + + + 174 + 17 + Records, Social Security - 1-12/1975 -7 folders,1975 + + + + + + 174 + 18 + Records, Social Security - 1-12/1975 -7 folders,1975 + + + + + + 174 + 19 + Records, Social Security - 1-12/1975 -7 folders,1975 + + + + + + 174 + 20 + Records, Social Security - 1-12/1975 -7 folders,1975 + + + + + + 174 + 21 + Records, Social Security - 1-12/1975 -7 folders,1975 + + + + + + 174 + 22 + Records, Taxes 10-12/1975 - 3 folders,1975 + + + + + + 174 + 23 + Records, Taxes 10-12/1975 - 3 folders,1975 + + + + + + 174 + 24 + Records, Taxes 10-12/1975 - 3 folders,1975 + + + + + + 174 + 25 + Records, Space Program,1975 + + + + + + 174 + 26 + Records, Taxes, Income and Property 1-9/1975 - 12 folders,1975 + + + + + + 174 + 27 + Records, Taxes, Income and Property 1-9/1975 - 12 folders,1975 + + + + + + 174 + 28 + Records, Taxes, Income and Property 1-9/1975 - 12 folders,1975 + + + + + + 174 + 29 + Records, Taxes, Income and Property 1-9/1975 - 12 folders,1975 + + + + + + 174 + 30 + Records, Taxes, Income and Property 1-9/1975 - 12 folders,1975 + + + + + + 174 + 31 + Records, Taxes, Income and Property 1-9/1975 - 12 folders,1975 + + + + + + 174 + 32 + Records, Taxes, Income and Property 1-9/1975 - 12 folders,1975 + + + + + + 174 + 33 + Records, Taxes, Income and Property 1-9/1975 - 12 folders,1975 + + + + + + 174 + 34 + Records, Taxes, Income and Property 1-9/1975 - 12 folders,1975 + + + + + + 174 + 35 + Records, Taxes, Income and Property 1-9/1975 - 12 folders,1975 + + + + + + 174 + 36 + Records, Taxes, Income and Property 1-9/1975 - 12 folders,1975 + + + + + + 174 + 37 + Records, Taxes, Income and Property 1-9/1975 - 12 folders,1975 + + + + + + 175 + 1 + Records, Wage Price Controls,1975 + + + + + + 175 + 2 + Records, Watergate ,1975 + + + + + + 175 + 3 + Records, Welfare - 1-12/1975 - 3 folders,1975 + + + + + + 175 + 4 + Records, Welfare - 1-12/1975 - 3 folders,1975 + + + + + + 175 + 5 + Records, Welfare - 1-12/1975 - 3 folders,1975 + + + + + + 175 + 6 + Records, White House - 2 folders,1975 + + + + + + 175 + 7 + Records, White House - 2 folders,1975 + + + + + + 175 + 8 + Records, Veterans 1-12/1975 - 6 folders,1975 + + + + + + 175 + 9 + Records, Veterans 1-12/1975 - 6 folders,1975 + + + + + + 175 + 10 + Records, Veterans 1-12/1975 - 6 folders,1975 + + + + + + 175 + 11 + Records, Veterans 1-12/1975 - 6 folders,1975 + + + + + + 175 + 12 + Records, Veterans 1-12/1975 - 6 folders,1975 + + + + + + 175 + 13 + Records, Veterans 1-12/1975 - 6 folders,1975 + + + + + + 175 + 14 + Records, Transportation 1-12/1975 - 7 folders,1975 + + + + + + 175 + 15 + Records, Transportation 1-12/1975 - 7 folders,1975 + + + + + + 175 + 16 + Records, Transportation 1-12/1975 - 7 folders,1975 + + + + + + 175 + 17 + Records, Transportation 1-12/1975 - 7 folders,1975 + + + + + + 175 + 18 + Records, Transportation 1-12/1975 - 7 folders,1975 + + + + + + 175 + 19 + Records, Transportation 1-12/1975 - 7 folders,1975 + + + + + + 175 + 20 + Records, Transportation 1-12/1975 - 7 folders,1975 + + + + + + 175 + 21 + Records, Utilities,1975 + + + + + + 175 + 22 + Records, Senator Griffin Form Letters 1972 - 7 folders,1972 + + + + + + 175 + 23 + Records, Senator Griffin Form Letters 1972 - 7 folders,1972 + + + + + + 175 + 24 + Records, Senator Griffin Form Letters 1972 - 7 folders,1972 + + + + + + 175 + 25 + Records, Senator Griffin Form Letters 1972 - 7 folders,1972 + + + + + + 175 + 26 + Records, Senator Griffin Form Letters 1972 - 7 folders,1972 + + + + + + 175 + 27 + Records, Senator Griffin Form Letters 1972 - 7 folders,1972 + + + + + + 175 + 28 + Records, Senator Griffin Form Letters 1972 - 7 folders,1972 + + + + + + 175 + 29 + Records, Senator Griffin Form Letters (New) 1972 - 2 folders,1972 + + + + + + 175 + 30 + Records, Senator Griffin Form Letters (New) 1972 - 2 folders,1972 + + + + + + 176 + 1 + Records, Miscellaneous Issues - 6 folders (legal size folders),1973 + + + + + + 176 + 2 + Records, Miscellaneous Issues - 6 folders (legal size folders),1973 + + + + + + 176 + 3 + Records, Miscellaneous Issues - 6 folders (legal size folders),1973 + + + + + + 176 + 4 + Records, Miscellaneous Issues - 6 folders (legal size folders),1973 + + + + + + 176 + 5 + Records, Miscellaneous Issues - 6 folders (legal size folders),1973 + + + + + + 176 + 6 + Records, Miscellaneous Issues - 6 folders (legal size folders),1973 + + + + + + 177 + 1 + Records, Senator Griffin Form Letters, 1976, 100-1700 - 3 folders,1976 + + + + + + 177 + 2 + Records, Senator Griffin Form Letters, 1976, 100-1700 - 3 folders,1976 + + + + + + 177 + 3 + Records, Senator Griffin Form Letters, 1976, 100-1700 - 3 folders,1976 + + + + + + 177 + 4 + Records, Senator Griffin Form Letters, 1975 - 4 folders,1975 + + + + + + 177 + 5 + Records, Senator Griffin Form Letters, 1975 - 4 folders,1975 + + + + + + 177 + 6 + Records, Senator Griffin Form Letters, 1975 - 4 folders,1975 + + + + + + 177 + 7 + Records, Senator Griffin Form Letters, 1975 - 4 folders,1975 + + + + + + 177 + 8 + Records, Senator Griffin Form Letters, 1974 - 3 folders,1974 + + + + + + 177 + 9 + Records, Senator Griffin Form Letters, 1974 - 3 folders,1974 + + + + + + 177 + 10 + Records, Senator Griffin Form Letters, 1974 - 3 folders,1974 + + + + + + 177 + 11 + Records, Senator Griffin Form Letters, 1973 - 2 folders,1973 + + + + + + 177 + 12 + Records, Senator Griffin Form Letters, 1973 - 2 folders,1973 + + + + + + 177 + 13 + Records, Senator Griffin Form Letters, 1977,1977 + + + + + + 177 + 14 + Records, Senator Griffin Form Letters, 1978,1978 + + + + + + 177 + 15 + Records, Mail Count Information, 1973-1976 + + + + + + 177 + 16 + Records, Senator Griffin Form Letters, 1977, 100-1000 - 3 folders,1977 + + + + + + 177 + 17 + Records, Senator Griffin Form Letters, 1977, 100-1000 - 3 folders,1977 + + + + + + 177 + 18 + Records, Senator Griffin Form Letters, 1977, 100-1000 - 3 folders,1977 + + + + + + 177 + 19 + Records, Senator Griffin Form Letters, 100-1600 - 2 folders,1976-1978 + + + + + + 177 + 20 + Records, Senator Griffin Form Letters, 1976-1978, 100-1600 - 2 folders,1976-1978 + + + + + + 177 + 21 + Records, (Trina Driessnack and Heidi Burch), 7802015851-7802016250 - 16 of 30 folders,1978 + + + + + + 177 + 22 + Records, (Trina Driessnack and Heidi Burch), 7802015851-7802016250 - 16 of 30 folders,1978 + + + + + + 177 + 23 + Records, (Trina Driessnack and Heidi Burch), 7802015851-7802016250 - 16 of 30 folders,1978 + + + + + + 177 + 24 + Records, (Trina Driessnack and Heidi Burch), 7802015851-7802016250 - 16 of 30 folders,1978 + + + + + + 177 + 25 + Records, (Trina Driessnack and Heidi Burch), 7802015851-7802016250 - 16 of 30 folders,1978 + + + + + + 177 + 26 + Records, (Trina Driessnack and Heidi Burch), 7802015851-7802016250 - 16 of 30 folders,1978 + + + + + + 177 + 27 + Records, (Trina Driessnack and Heidi Burch), 7802015851-7802016250 - 16 of 30 folders,1978 + + + + + + 177 + 28 + Records, (Trina Driessnack and Heidi Burch), 7802015851-7802016250 - 16 of 30 folders,1978 + + + + + + 177 + 29 + Records, (Trina Driessnack and Heidi Burch), 7802015851-7802016250 - 16 of 30 folders,1978 + + + + + + 177 + 30 + Records, (Trina Driessnack and Heidi Burch), 7802015851-7802016250 - 16 of 30 folders,1978 + + + + + + 177 + 31 + Records, (Trina Driessnack and Heidi Burch), 7802015851-7802016250 - 16 of 30 folders,1978 + + + + + + 177 + 32 + Records, (Trina Driessnack and Heidi Burch), 7802015851-7802016250 - 16 of 30 folders,1978 + + + + + + 177 + 33 + Records, (Trina Driessnack and Heidi Burch), 7802015851-7802016250 - 16 of 30 folders,1978 + + + + + + 177 + 34 + Records, (Trina Driessnack and Heidi Burch), 7802015851-7802016250 - 16 of 30 folders,1978 + + + + + + 177 + 35 + Records, (Trina Driessnack and Heidi Burch), 7802015851-7802016250 - 16 of 30 folders,1978 + + + + + + 177 + 36 + Records, (Trina Driessnack and Heidi Burch), 7802015851-7802016250 - 16 of 30 folders,1978 + + + + + + 177 + 37 + Records, (Mail Counts, Gary Russell),1973-1978 + + + + + + 177 + 38 + Records, Off Set Letters (Dear Friend), 1973,1973 + + + + + + 177 + 39 + Records, Off Set Letters (Dear Friend), 1974,1974 + + + + + + 177 + 40 + Records, Off Set Letters (Dear Friend), 1975,1975 + + + + + + 177 + 41 + Records, Off Set Letters (Dear Friend), 1976,1976 + + + + + + 178 + 1 + Records, (Trina Driessnack and Heidi Burch), 7802016251- 7802016600 - 14 of 30 folders,1978 + + + + + + 178 + 2 + Records, (Trina Driessnack and Heidi Burch), 7802016251- 7802016600 - 14 of 30 folders,1978 + + + + + + 178 + 3 + Records, (Trina Driessnack and Heidi Burch), 7802016251- 7802016600 - 14 of 30 folders,1978 + + + + + + 178 + 4 + Records, (Trina Driessnack and Heidi Burch), 7802016251- 7802016600 - 14 of 30 folders,1978 + + + + + + 178 + 5 + Records, (Trina Driessnack and Heidi Burch), 7802016251- 7802016600 - 14 of 30 folders,1978 + + + + + + 178 + 6 + Records, (Trina Driessnack and Heidi Burch), 7802016251- 7802016600 - 14 of 30 folders,1978 + + + + + + 178 + 7 + Records, (Trina Driessnack and Heidi Burch), 7802016251- 7802016600 - 14 of 30 folders,1978 + + + + + + 178 + 8 + Records, (Trina Driessnack and Heidi Burch), 7802016251- 7802016600 - 14 of 30 folders,1978 + + + + + + 178 + 9 + Records, (Trina Driessnack and Heidi Burch), 7802016251- 7802016600 - 14 of 30 folders,1978 + + + + + + 178 + 10 + Records, (Trina Driessnack and Heidi Burch), 7802016251- 7802016600 - 14 of 30 folders,1978 + + + + + + 178 + 11 + Records, (Trina Driessnack and Heidi Burch), 7802016251- 7802016600 - 14 of 30 folders,1978 + + + + + + 178 + 12 + Records, (Trina Driessnack and Heidi Burch), 7802016251- 7802016600 - 14 of 30 folders,1978 + + + + + + 178 + 13 + Records, (Trina Driessnack and Heidi Burch), 7802016251- 7802016600 - 14 of 30 folders,1978 + + + + + + 178 + 14 + Records, (Trina Driessnack and Heidi Burch), 7802016251- 7802016600 - 14 of 30 folders,1978 + + + + + + 178 + 15 + Records, 7802016601-7802017100 - 19 folders,undated + + + + + + 178 + 16 + Records, 7802016601-7802017100 - 19 folders,undated + + + + + + 178 + 17 + Records, 7802016601-7802017100 - 19 folders,undated + + + + + + 178 + 18 + Records, 7802016601-7802017100 - 19 folders,undated + + + + + + 178 + 19 + Records, 7802016601-7802017100 - 19 folders,undated + + + + + + 178 + 20 + Records, 7802016601-7802017100 - 19 folders,undated + + + + + + 178 + 21 + Records, 7802016601-7802017100 - 19 folders,undated + + + + + + 178 + 22 + Records, 7802016601-7802017100 - 19 folders,undated + + + + + + 178 + 23 + Records, 7802016601-7802017100 - 19 folders,undated + + + + + + 178 + 24 + Records, 7802016601-7802017100 - 19 folders,undated + + + + + + 178 + 25 + Records, 7802016601-7802017100 - 19 folders,undated + + + + + + 178 + 26 + Records, 7802016601-7802017100 - 19 folders,undated + + + + + + 178 + 27 + Records, 7802016601-7802017100 - 19 folders,undated + + + + + + 178 + 28 + Records, 7802016601-7802017100 - 19 folders,undated + + + + + + 178 + 29 + Records, 7802016601-7802017100 - 19 folders,undated + + + + + + 178 + 30 + Records, 7802016601-7802017100 - 19 folders,undated + + + + + + 178 + 31 + Records, 7802016601-7802017100 - 19 folders,undated + + + + + + 178 + 32 + Records, 7802016601-7802017100 - 19 folders,undated + + + + + + 178 + 33 + Records, 7802016601-7802017100 - 19 folders,undated + + + + + + 179 + 1 + Records, (Trina Driessnack and Heidi Burch), Computer Index, Entries Arranged by Document Number,1978 + + + + + + 180 + 1 + Records, (Trina Driessnack and Heidi Burch), Computer Index, Entries Arranged by Topic,1978 + + + + + + 181 + 1 + Records, (Trina Driessnack and Heidi Burch), Computer Index, Entries Arranged by Topic,1978 + + + + + + 182 + 1 + Records, (Trina Driessnack and Heidi Burch), Computer Index, Entries Arranged by City,1978 + + + + + + 183 + 1 + Records, (Trina Driessnack and Heidi Burch), Computer Index, Entries Arranged by Date,1978 + + + + + + 184 + 1 + Records, (Trina Driessnack and Heidi Burch), Computer Index, Entries Arranged by Name,1978 + + + + + + 185 + 1 + Records, Miscellaneous Legislative Corresp. - 5 folders,1969-1976 + + + + + + 185 + 2 + Records, Miscellaneous Legislative Corresp. - 5 folders,1969-1976 + + + + + + 185 + 3 + Records, Miscellaneous Legislative Corresp. - 5 folders,1969-1976 + + + + + + 185 + 4 + Records, Miscellaneous Legislative Corresp. - 5 folders,1969-1976 + + + + + + 185 + 5 + Records, Miscellaneous Legislative Corresp. - 5 folders,1969-1976 + + + + + + + Senator Robert P. Griffin Papers Collection - Series #4.5, Correspondence‑Issues (out of order) Series, (168 cubic feet - 1957‑1978 and undated + + + + 95 + 1 + Records, Labor and Public Welfare, Committee, General,1969 + + + + + + 95 + 2 + Records, Labor and Public Welfare, Education, (A-Z), 18 folders,1969 + + + + + + 95 + 3 + Records, Labor and Public Welfare, Education, (A-Z), 18 folders,1969 + + + + + + 95 + 4 + Records, Labor and Public Welfare, Education, (A-Z), 18 folders,1969 + + + + + + 95 + 5 + Records, Labor and Public Welfare, Education, (A-Z), 18 folders,1969 + + + + + + 95 + 6 + Records, Labor and Public Welfare, Education, (A-Z), 18 folders,1969 + + + + + + 95 + 7 + Records, Labor and Public Welfare, Education, (A-Z), 18 folders,1969 + + + + + + 95 + 8 + Records, Labor and Public Welfare, Education, (A-Z), 18 folders,1969 + + + + + + 95 + 9 + Records, Labor and Public Welfare, Education, (A-Z), 18 folders,1969 + + + + + + 95 + 10 + Records, Labor and Public Welfare, Education, (A-Z), 18 folders,1969 + + + + + + 95 + 11 + Records, Labor and Public Welfare, Education, (A-Z), 18 folders,1969 + + + + + + 95 + 12 + Records, Labor and Public Welfare, Education, (A-Z), 18 folders,1969 + + + + + + 95 + 13 + Records, Labor and Public Welfare, Education, (A-Z), 18 folders,1969 + + + + + + 95 + 14 + Records, Labor and Public Welfare, Education, (A-Z), 18 folders,1969 + + + + + + 95 + 15 + Records, Labor and Public Welfare, Education, (A-Z), 18 folders,1969 + + + + + + 95 + 16 + Records, Labor and Public Welfare, Education, (A-Z), 18 folders,1969 + + + + + + 95 + 17 + Records, Labor and Public Welfare, Education, (A-Z), 18 folders,1969 + + + + + + 95 + 18 + Records, Labor and Public Welfare, Education, (A-Z), 18 folders,1969 + + + + + + 95 + 19 + Records, Labor and Public Welfare, Education, (A-Z), 18 folders,1969 + + + + + + 95 + 20 + Records, Labor and Public Welfare, Employment, Manpower (B-Y, no A or X-Z), 19 folders,1969 + + + + + + 95 + 21 + Records, Labor and Public Welfare, Employment, Manpower (B-Y, no A or X-Z), 19 folders,1969 + + + + + + 95 + 22 + Records, Labor and Public Welfare, Employment, Manpower (B-Y, no A or X-Z), 19 folders,1969 + + + + + + 95 + 23 + Records, Labor and Public Welfare, Employment, Manpower (B-Y, no A or X-Z), 19 folders,1969 + + + + + + 95 + 24 + Records, Labor and Public Welfare, Employment, Manpower (B-Y, no A or X-Z), 19 folders,1969 + + + + + + 95 + 25 + Records, Labor and Public Welfare, Employment, Manpower (B-Y, no A or X-Z), 19 folders,1969 + + + + + + 95 + 26 + Records, Labor and Public Welfare, Employment, Manpower (B-Y, no A or X-Z), 19 folders,1969 + + + + + + 95 + 27 + Records, Labor and Public Welfare, Employment, Manpower (B-Y, no A or X-Z), 19 folders,1969 + + + + + + 95 + 28 + Records, Labor and Public Welfare, Employment, Manpower (B-Y, no A or X-Z), 19 folders,1969 + + + + + + 95 + 29 + Records, Labor and Public Welfare, Employment, Manpower (B-Y, no A or X-Z), 19 folders,1969 + + + + + + 95 + 30 + Records, Labor and Public Welfare, Employment, Manpower (B-Y, no A or X-Z), 19 folders,1969 + + + + + + 95 + 31 + Records, Labor and Public Welfare, Employment, Manpower (B-Y, no A or X-Z), 19 folders,1969 + + + + + + 95 + 32 + Records, Labor and Public Welfare, Employment, Manpower (B-Y, no A or X-Z), 19 folders,1969 + + + + + + 95 + 33 + Records, Labor and Public Welfare, Employment, Manpower (B-Y, no A or X-Z), 19 folders,1969 + + + + + + 95 + 34 + Records, Labor and Public Welfare, Employment, Manpower (B-Y, no A or X-Z), 19 folders,1969 + + + + + + 95 + 35 + Records, Labor and Public Welfare, Employment, Manpower (B-Y, no A or X-Z), 19 folders,1969 + + + + + + 95 + 36 + Records, Labor and Public Welfare, Employment, Manpower (B-Y, no A or X-Z), 19 folders,1969 + + + + + + 95 + 37 + Records, Labor and Public Welfare, Employment, Manpower (B-Y, no A or X-Z), 19 folders,1969 + + + + + + 95 + 38 + Records, Labor and Public Welfare, Employment, Manpower (B-Y, no A or X-Z), 19 folders,1969 + + + + + + 95 + 39 + Records, Labor and Public Welfare, Health, (A-Z), 20 folders,1969 + + + + + + 95 + 40 + Records, Labor and Public Welfare, Health, (A-Z), 20 folders,1969 + + + + + + 95 + 41 + Records, Labor and Public Welfare, Health, (A-Z), 20 folders,1969 + + + + + + 95 + 42 + Records, Labor and Public Welfare, Health, (A-Z), 20 folders,1969 + + + + + + 95 + 43 + Records, Labor and Public Welfare, Health, (A-Z), 20 folders,1969 + + + + + + 95 + 44 + Records, Labor and Public Welfare, Health, (A-Z), 20 folders,1969 + + + + + + 95 + 45 + Records, Labor and Public Welfare, Health, (A-Z), 20 folders,1969 + + + + + + 95 + 46 + Records, Labor and Public Welfare, Health, (A-Z), 20 folders,1969 + + + + + + 95 + 47 + Records, Labor and Public Welfare, Health, (A-Z), 20 folders,1969 + + + + + + 95 + 48 + Records, Labor and Public Welfare, Health, (A-Z), 20 folders,1969 + + + + + + 95 + 49 + Records, Labor and Public Welfare, Health, (A-Z), 20 folders,1969 + + + + + + 95 + 50 + Records, Labor and Public Welfare, Health, (A-Z), 20 folders,1969 + + + + + + 95 + 51 + Records, Labor and Public Welfare, Health, (A-Z), 20 folders,1969 + + + + + + 95 + 52 + Records, Labor and Public Welfare, Health, (A-Z), 20 folders,1969 + + + + + + 95 + 53 + Records, Labor and Public Welfare, Health, (A-Z), 20 folders,1969 + + + + + + 95 + 54 + Records, Labor and Public Welfare, Health, (A-Z), 20 folders,1969 + + + + + + 95 + 55 + Records, Labor and Public Welfare, Health, (A-Z), 20 folders,1969 + + + + + + 95 + 56 + Records, Labor and Public Welfare, Health, (A-Z), 20 folders,1969 + + + + + + 95 + 57 + Records, Labor and Public Welfare, Health, (A-Z), 20 folders,1969 + + + + + + 95 + 58 + Records, Labor and Public Welfare, Health, (A-Z), 20 folders,1969 + + + + + + 95 + 59 + Records, Labor and Public Welfare, Landrum-Griffin - Prof. Thomas Christensen - NYU,1969 + + + + + + 95 + 60 + Records, Labor and Public Welfare, Employment, Manpower and "A" Poverty,1969 + + + + + + 95 + 61 + Records, Labor and Public Welfare, Labor, (A-Z), 20 folders,1969 + + + + + + 95 + 62 + Records, Labor and Public Welfare, Labor, (A-Z), 20 folders,1969 + + + + + + 95 + 63 + Records, Labor and Public Welfare, Labor, (A-Z), 20 folders,1969 + + + + + + 95 + 64 + Records, Labor and Public Welfare, Labor, (A-Z), 20 folders,1969 + + + + + + 95 + 65 + Records, Labor and Public Welfare, Labor, (A-Z), 20 folders,1969 + + + + + + 95 + 66 + Records, Labor and Public Welfare, Labor, (A-Z), 20 folders,1969 + + + + + + 95 + 67 + Records, Labor and Public Welfare, Labor, (A-Z), 20 folders,1969 + + + + + + 95 + 68 + Records, Labor and Public Welfare, Labor, (A-Z), 20 folders,1969 + + + + + + 95 + 69 + Records, Labor and Public Welfare, Labor, (A-Z), 20 folders,1969 + + + + + + 95 + 70 + Records, Labor and Public Welfare, Labor, (A-Z), 20 folders,1969 + + + + + + 95 + 71 + Records, Labor and Public Welfare, Labor, (A-Z), 20 folders,1969 + + + + + + 95 + 72 + Records, Labor and Public Welfare, Labor, (A-Z), 20 folders,1969 + + + + + + 95 + 73 + Records, Labor and Public Welfare, Labor, (A-Z), 20 folders,1969 + + + + + + 95 + 74 + Records, Labor and Public Welfare, Labor, (A-Z), 20 folders,1969 + + + + + + 95 + 75 + Records, Labor and Public Welfare, Labor, (A-Z), 20 folders,1969 + + + + + + 95 + 76 + Records, Labor and Public Welfare, Labor, (A-Z), 20 folders,1969 + + + + + + 95 + 77 + Records, Labor and Public Welfare, Labor, (A-Z), 20 folders,1969 + + + + + + 95 + 78 + Records, Labor and Public Welfare, Labor, (A-Z), 20 folders,1969 + + + + + + 95 + 79 + Records, Labor and Public Welfare, Labor, (A-Z), 20 folders,1969 + + + + + + 95 + 80 + Records, Labor and Public Welfare, Labor, (A-Z), 20 folders,1969 + + + + + + 95 + 81 + Records, Labor and Public Welfare, Railroad Retirement, 2 folders,1969 + + + + + + 95 + 82 + Records, Labor and Public Welfare, Railroad Retirement, 2 folders,1969 + + + + + + 96 + 1 + Records, Labor and Public Welfare, Veterans Affairs, (A-Z, no U-V), 19 folders,1969 + + + + + + 96 + 2 + Records, Labor and Public Welfare, Veterans Affairs, (A-Z, no U-V), 19 folders,1969 + + + + + + 96 + 3 + Records, Labor and Public Welfare, Veterans Affairs, (A-Z, no U-V), 19 folders,1969 + + + + + + 96 + 4 + Records, Labor and Public Welfare, Veterans Affairs, (A-Z, no U-V), 19 folders,1969 + + + + + + 96 + 5 + Records, Labor and Public Welfare, Veterans Affairs, (A-Z, no U-V), 19 folders,1969 + + + + + + 96 + 6 + Records, Labor and Public Welfare, Veterans Affairs, (A-Z, no U-V), 19 folders,1969 + + + + + + 96 + 7 + Records, Labor and Public Welfare, Veterans Affairs, (A-Z, no U-V), 19 folders,1969 + + + + + + 96 + 8 + Records, Labor and Public Welfare, Veterans Affairs, (A-Z, no U-V), 19 folders,1969 + + + + + + 96 + 9 + Records, Labor and Public Welfare, Veterans Affairs, (A-Z, no U-V), 19 folders,1969 + + + + + + 96 + 10 + Records, Labor and Public Welfare, Veterans Affairs, (A-Z, no U-V), 19 folders,1969 + + + + + + 96 + 11 + Records, Labor and Public Welfare, Veterans Affairs, (A-Z, no U-V), 19 folders,1969 + + + + + + 96 + 12 + Records, Labor and Public Welfare, Veterans Affairs, (A-Z, no U-V), 19 folders,1969 + + + + + + 96 + 13 + Records, Labor and Public Welfare, Veterans Affairs, (A-Z, no U-V), 19 folders,1969 + + + + + + 96 + 14 + Records, Labor and Public Welfare, Veterans Affairs, (A-Z, no U-V), 19 folders,1969 + + + + + + 96 + 15 + Records, Labor and Public Welfare, Veterans Affairs, (A-Z, no U-V), 19 folders,1969 + + + + + + 96 + 16 + Records, Labor and Public Welfare, Veterans Affairs, (A-Z, no U-V), 19 folders,1969 + + + + + + 96 + 17 + Records, Labor and Public Welfare, Veterans Affairs, (A-Z, no U-V), 19 folders,1969 + + + + + + 96 + 18 + Records, Labor and Public Welfare, Veterans Affairs, (A-Z, no U-V), 19 folders,1969 + + + + + + 96 + 19 + Records, Labor and Public Welfare, Veterans Affairs, (A-Z, no U-V), 19 folders,1969 + + + + + + 96 + 20 + Records, Post Office and Civil Service, General, (A-Z), 19 folders,1969 + + + + + + 96 + 21 + Records, Post Office and Civil Service, General, (A-Z), 19 folders,1969 + + + + + + 96 + 22 + Records, Post Office and Civil Service, General, (A-Z), 19 folders,1969 + + + + + + 96 + 23 + Records, Post Office and Civil Service, General, (A-Z), 19 folders,1969 + + + + + + 96 + 24 + Records, Post Office and Civil Service, General, (A-Z), 19 folders,1969 + + + + + + 96 + 25 + Records, Post Office and Civil Service, General, (A-Z), 19 folders,1969 + + + + + + 96 + 26 + Records, Post Office and Civil Service, General, (A-Z), 19 folders,1969 + + + + + + 96 + 27 + Records, Post Office and Civil Service, General, (A-Z), 19 folders,1969 + + + + + + 96 + 28 + Records, Post Office and Civil Service, General, (A-Z), 19 folders,1969 + + + + + + 96 + 29 + Records, Post Office and Civil Service, General, (A-Z), 19 folders,1969 + + + + + + 96 + 30 + Records, Post Office and Civil Service, General, (A-Z), 19 folders,1969 + + + + + + 96 + 31 + Records, Post Office and Civil Service, General, (A-Z), 19 folders,1969 + + + + + + 96 + 32 + Records, Post Office and Civil Service, General, (A-Z), 19 folders,1969 + + + + + + 96 + 33 + Records, Post Office and Civil Service, General, (A-Z), 19 folders,1969 + + + + + + 96 + 34 + Records, Post Office and Civil Service, General, (A-Z), 19 folders,1969 + + + + + + 96 + 35 + Records, Post Office and Civil Service, General, (A-Z), 19 folders,1969 + + + + + + 96 + 36 + Records, Post Office and Civil Service, General, (A-Z), 19 folders,1969 + + + + + + 96 + 37 + Records, Post Office and Civil Service, General, (A-Z), 19 folders,1969 + + + + + + 96 + 38 + Records, Post Office and Civil Service, General, (A-Z), 19 folders,1969 + + + + + + 96 + 39 + Records, Public Works, General, (A-Z), 20 folders,1969 + + + + + + 96 + 40 + Records, Public Works, General, (A-Z), 20 folders,1969 + + + + + + 96 + 41 + Records, Public Works, General, (A-Z), 20 folders,1969 + + + + + + 96 + 42 + Records, Public Works, General, (A-Z), 20 folders,1969 + + + + + + 96 + 43 + Records, Public Works, General, (A-Z), 20 folders,1969 + + + + + + 96 + 44 + Records, Public Works, General, (A-Z), 20 folders,1969 + + + + + + 96 + 45 + Records, Public Works, General, (A-Z), 20 folders,1969 + + + + + + 96 + 46 + Records, Public Works, General, (A-Z), 20 folders,1969 + + + + + + 96 + 47 + Records, Public Works, General, (A-Z), 20 folders,1969 + + + + + + 96 + 48 + Records, Public Works, General, (A-Z), 20 folders,1969 + + + + + + 96 + 49 + Records, Public Works, General, (A-Z), 20 folders,1969 + + + + + + 96 + 50 + Records, Public Works, General, (A-Z), 20 folders,1969 + + + + + + 96 + 51 + Records, Public Works, General, (A-Z), 20 folders,1969 + + + + + + 96 + 52 + Records, Public Works, General, (A-Z), 20 folders,1969 + + + + + + 96 + 53 + Records, Public Works, General, (A-Z), 20 folders,1969 + + + + + + 96 + 54 + Records, Public Works, General, (A-Z), 20 folders,1969 + + + + + + 96 + 55 + Records, Public Works, General, (A-Z), 20 folders,1969 + + + + + + 96 + 56 + Records, Public Works, General, (A-Z), 20 folders,1969 + + + + + + 96 + 57 + Records, Public Works, General, (A-Z), 20 folders,1969 + + + + + + 96 + 58 + Records, Public Works, General, (A-Z), 20 folders,1969 + + + + + + 96 + 59 + Records, Joint Economic Committee,1969 + + + + + + 96 + 60 + Records, Rules and Administration,1969 + + + + + + 96 + 61 + Records, Joint Committee on Atomic Energy,1969 + + + + + + 96 + 62 + Records, Select Small Business Committee,1969 + + + + + + 96 + 63 + Records, Select Committee on Standards and Conduct,1969 + + + + + + 96 + 64 + Records, Special Committee on Aging,1969 + + + + + + 96 + 65 + Records, Joint Committee on Organization of Congress,1969 + + + + + + 96 + 66 + Records, General, A-B, 6 folders,1970 + + + + + + 96 + 67 + Records, General, A-B, 6 folders,1970 + + + + + + 96 + 68 + Records, General, A-B, 6 folders,1970 + + + + + + 96 + 69 + Records, General, A-B, 6 folders,1970 + + + + + + 96 + 70 + Records, General, A-B, 6 folders,1970 + + + + + + 96 + 71 + Records, General, A-B, 6 folders,1970 + + + + + + 97 + 1 + Records, General, B-F (continued), 13 folders,1970 + + + + + + 97 + 2 + Records, General, B-F (continued), 13 folders,1970 + + + + + + 97 + 3 + Records, General, B-F (continued), 13 folders,1970 + + + + + + 97 + 4 + Records, General, B-F (continued), 13 folders,1970 + + + + + + 97 + 5 + Records, General, B-F (continued), 13 folders,1970 + + + + + + 97 + 6 + Records, General, B-F (continued), 13 folders,1970 + + + + + + 97 + 7 + Records, General, B-F (continued), 13 folders,1970 + + + + + + 97 + 8 + Records, General, B-F (continued), 13 folders,1970 + + + + + + 97 + 9 + Records, General, B-F (continued), 13 folders,1970 + + + + + + 97 + 10 + Records, General, B-F (continued), 13 folders,1970 + + + + + + 97 + 11 + Records, General, B-F (continued), 13 folders,1970 + + + + + + 97 + 12 + Records, General, B-F (continued), 13 folders,1970 + + + + + + 97 + 13 + Records, General, B-F (continued), 13 folders,1970 + + + + + + 97 + 14 + Records, Legislation Files,1969 + + + + + + 97 + 15 + Records, Rural Carrier-Williamsburg,1969 + + + + + + 97 + 16 + Records, General, G-L, 11 folders,1970 + + + + + + 97 + 17 + Records, General, G-L, 11 folders,1970 + + + + + + 97 + 18 + Records, General, G-L, 11 folders,1970 + + + + + + 97 + 19 + Records, General, G-L, 11 folders,1970 + + + + + + 97 + 20 + Records, General, G-L, 11 folders,1970 + + + + + + 97 + 21 + Records, General, G-L, 11 folders,1970 + + + + + + 97 + 22 + Records, General, G-L, 11 folders,1970 + + + + + + 97 + 23 + Records, General, G-L, 11 folders,1970 + + + + + + 97 + 24 + Records, General, G-L, 11 folders,1970 + + + + + + 97 + 25 + Records, General, G-L, 11 folders,1970 + + + + + + 97 + 26 + Records, General, G-L, 11 folders,1970 + + + + + + 98 + 1 + Records, General, M-O, 8 folders,1970 + + + + + + 98 + 2 + Records, General, M-O, 8 folders,1970 + + + + + + 98 + 3 + Records, General, M-O, 8 folders,1970 + + + + + + 98 + 4 + Records, General, M-O, 8 folders,1970 + + + + + + 98 + 5 + Records, General, M-O, 8 folders,1970 + + + + + + 98 + 6 + Records, General, M-O, 8 folders,1970 + + + + + + 98 + 7 + Records, General, M-O, 8 folders,1970 + + + + + + 98 + 8 + Records, General, M-O, 8 folders,1970 + + + + + + 98 + 9 + Records, General, R-Z, 14 folders,1970 + + + + + + 98 + 10 + Records, General, R-Z, 14 folders,1970 + + + + + + 98 + 11 + Records, General, R-Z, 14 folders,1970 + + + + + + 98 + 12 + Records, General, R-Z, 14 folders,1970 + + + + + + 98 + 13 + Records, General, R-Z, 14 folders,1970 + + + + + + 98 + 14 + Records, General, R-Z, 14 folders,1970 + + + + + + 98 + 15 + Records, General, R-Z, 14 folders,1970 + + + + + + 98 + 16 + Records, General, R-Z, 14 folders,1970 + + + + + + 98 + 17 + Records, General, R-Z, 14 folders,1970 + + + + + + 98 + 18 + Records, General, R-Z, 14 folders,1970 + + + + + + 98 + 19 + Records, General, R-Z, 14 folders,1970 + + + + + + 98 + 20 + Records, General, R-Z, 14 folders,1970 + + + + + + 98 + 21 + Records, General, R-Z, 14 folders,1970 + + + + + + 98 + 22 + Records, General, R-Z, 14 folders,1970 + + + + + + 99 + 1 + Records, Supreme Court, Fortas Nomination Correspondence, A-F, 21 folders,1968 + + + + + + 99 + 2 + Records, Supreme Court, Fortas Nomination Correspondence, A-F, 21 folders,1968 + + + + + + 99 + 3 + Records, Supreme Court, Fortas Nomination Correspondence, A-F, 21 folders,1968 + + + + + + 99 + 4 + Records, Supreme Court, Fortas Nomination Correspondence, A-F, 21 folders,1968 + + + + + + 99 + 5 + Records, Supreme Court, Fortas Nomination Correspondence, A-F, 21 folders,1968 + + + + + + 99 + 6 + Records, Supreme Court, Fortas Nomination Correspondence, A-F, 21 folders,1968 + + + + + + 99 + 7 + Records, Supreme Court, Fortas Nomination Correspondence, A-F, 21 folders,1968 + + + + + + 99 + 8 + Records, Supreme Court, Fortas Nomination Correspondence, A-F, 21 folders,1968 + + + + + + 99 + 9 + Records, Supreme Court, Fortas Nomination Correspondence, A-F, 21 folders,1968 + + + + + + 99 + 10 + Records, Supreme Court, Fortas Nomination Correspondence, A-F, 21 folders,1968 + + + + + + 99 + 11 + Records, Supreme Court, Fortas Nomination Correspondence, A-F, 21 folders,1968 + + + + + + 99 + 12 + Records, Supreme Court, Fortas Nomination Correspondence, A-F, 21 folders,1968 + + + + + + 99 + 13 + Records, Supreme Court, Fortas Nomination Correspondence, A-F, 21 folders,1968 + + + + + + 99 + 14 + Records, Supreme Court, Fortas Nomination Correspondence, A-F, 21 folders,1968 + + + + + + 99 + 15 + Records, Supreme Court, Fortas Nomination Correspondence, A-F, 21 folders,1968 + + + + + + 99 + 16 + Records, Supreme Court, Fortas Nomination Correspondence, A-F, 21 folders,1968 + + + + + + 99 + 17 + Records, Supreme Court, Fortas Nomination Correspondence, A-F, 21 folders,1968 + + + + + + 99 + 18 + Records, Supreme Court, Fortas Nomination Correspondence, A-F, 21 folders,1968 + + + + + + 99 + 19 + Records, Supreme Court, Fortas Nomination Correspondence, A-F, 21 folders,1968 + + + + + + 99 + 20 + Records, Supreme Court, Fortas Nomination Correspondence, A-F, 21 folders,1968 + + + + + + 99 + 21 + Records, Supreme Court, Fortas Nomination Correspondence, A-F, 21 folders,1968 + + + + + + 100 + 1 + Records, Supreme Court, Fortas Nomination Correspondence, G-O, 19 folders,1968 + + + + + + 100 + 2 + Records, Supreme Court, Fortas Nomination Correspondence, G-O, 19 folders,1968 + + + + + + 100 + 3 + Records, Supreme Court, Fortas Nomination Correspondence, G-O, 19 folders,1968 + + + + + + 100 + 4 + Records, Supreme Court, Fortas Nomination Correspondence, G-O, 19 folders,1968 + + + + + + 100 + 5 + Records, Supreme Court, Fortas Nomination Correspondence, G-O, 19 folders,1968 + + + + + + 100 + 6 + Records, Supreme Court, Fortas Nomination Correspondence, G-O, 19 folders,1968 + + + + + + 100 + 7 + Records, Supreme Court, Fortas Nomination Correspondence, G-O, 19 folders,1968 + + + + + + 100 + 8 + Records, Supreme Court, Fortas Nomination Correspondence, G-O, 19 folders,1968 + + + + + + 100 + 9 + Records, Supreme Court, Fortas Nomination Correspondence, G-O, 19 folders,1968 + + + + + + 100 + 10 + Records, Supreme Court, Fortas Nomination Correspondence, G-O, 19 folders,1968 + + + + + + 100 + 11 + Records, Supreme Court, Fortas Nomination Correspondence, G-O, 19 folders,1968 + + + + + + 100 + 12 + Records, Supreme Court, Fortas Nomination Correspondence, G-O, 19 folders,1968 + + + + + + 100 + 13 + Records, Supreme Court, Fortas Nomination Correspondence, G-O, 19 folders,1968 + + + + + + 100 + 14 + Records, Supreme Court, Fortas Nomination Correspondence, G-O, 19 folders,1968 + + + + + + 100 + 15 + Records, Supreme Court, Fortas Nomination Correspondence, G-O, 19 folders,1968 + + + + + + 100 + 16 + Records, Supreme Court, Fortas Nomination Correspondence, G-O, 19 folders,1968 + + + + + + 100 + 17 + Records, Supreme Court, Fortas Nomination Correspondence, G-O, 19 folders,1968 + + + + + + 100 + 18 + Records, Supreme Court, Fortas Nomination Correspondence, G-O, 19 folders,1968 + + + + + + 100 + 19 + Records, Supreme Court, Fortas Nomination Correspondence, G-O, 19 folders,1968 + + + + + + 100 + 20 + Records, Supreme Court, Fortas Nomination Correspondence, P-R, 13 folders,1968 + + + + + + 100 + 21 + Records, Supreme Court, Fortas Nomination Correspondence, P-R, 13 folders,1968 + + + + + + 100 + 22 + Records, Supreme Court, Fortas Nomination Correspondence, P-R, 13 folders,1968 + + + + + + 100 + 23 + Records, Supreme Court, Fortas Nomination Correspondence, P-R, 13 folders,1968 + + + + + + 100 + 24 + Records, Supreme Court, Fortas Nomination Correspondence, P-R, 13 folders,1968 + + + + + + 100 + 25 + Records, Supreme Court, Fortas Nomination Correspondence, P-R, 13 folders,1968 + + + + + + 100 + 26 + Records, Supreme Court, Fortas Nomination Correspondence, P-R, 13 folders,1968 + + + + + + 100 + 27 + Records, Supreme Court, Fortas Nomination Correspondence, P-R, 13 folders,1968 + + + + + + 100 + 28 + Records, Supreme Court, Fortas Nomination Correspondence, P-R, 13 folders,1968 + + + + + + 100 + 29 + Records, Supreme Court, Fortas Nomination Correspondence, P-R, 13 folders,1968 + + + + + + 100 + 30 + Records, Supreme Court, Fortas Nomination Correspondence, P-R, 13 folders,1968 + + + + + + 100 + 31 + Records, Supreme Court, Fortas Nomination Correspondence, P-R, 13 folders,1968 + + + + + + 100 + 32 + Records, Supreme Court, Fortas Nomination Correspondence, P-R, 13 folders,1968 + + + + + + 101 + 1 + Records, Supreme Court, Fortas Nomination Correspondence, S-Z (no U-V,Y-Z), 17 folders,1968 + + + + + + 101 + 2 + Records, Supreme Court, Fortas Nomination Correspondence, S-Z (no U-V,Y-Z), 17 folders,1968 + + + + + + 101 + 3 + Records, Supreme Court, Fortas Nomination Correspondence, S-Z (no U-V,Y-Z), 17 folders,1968 + + + + + + 101 + 4 + Records, Supreme Court, Fortas Nomination Correspondence, S-Z (no U-V,Y-Z), 17 folders,1968 + + + + + + 101 + 5 + Records, Supreme Court, Fortas Nomination Correspondence, S-Z (no U-V,Y-Z), 17 folders,1968 + + + + + + 101 + 6 + Records, Supreme Court, Fortas Nomination Correspondence, S-Z (no U-V,Y-Z), 17 folders,1968 + + + + + + 101 + 7 + Records, Supreme Court, Fortas Nomination Correspondence, S-Z (no U-V,Y-Z), 17 folders,1968 + + + + + + 101 + 8 + Records, Supreme Court, Fortas Nomination Correspondence, S-Z (no U-V,Y-Z), 17 folders,1968 + + + + + + 101 + 9 + Records, Supreme Court, Fortas Nomination Correspondence, S-Z (no U-V,Y-Z), 17 folders,1968 + + + + + + 101 + 10 + Records, Supreme Court, Fortas Nomination Correspondence, S-Z (no U-V,Y-Z), 17 folders,1968 + + + + + + 101 + 11 + Records, Supreme Court, Fortas Nomination Correspondence, S-Z (no U-V,Y-Z), 17 folders,1968 + + + + + + 101 + 12 + Records, Supreme Court, Fortas Nomination Correspondence, S-Z (no U-V,Y-Z), 17 folders,1968 + + + + + + 101 + 13 + Records, Supreme Court, Fortas Nomination Correspondence, S-Z (no U-V,Y-Z), 17 folders,1968 + + + + + + 101 + 14 + Records, Supreme Court, Fortas Nomination Correspondence, S-Z (no U-V,Y-Z), 17 folders,1968 + + + + + + 101 + 15 + Records, Supreme Court, Fortas Nomination Correspondence, S-Z (no U-V,Y-Z), 17 folders,1968 + + + + + + 101 + 16 + Records, Supreme Court, Fortas Nomination Correspondence, S-Z (no U-V,Y-Z), 17 folders,1968 + + + + + + 101 + 17 + Records, Supreme Court, Fortas Nomination Correspondence, S-Z (no U-V,Y-Z), 17 folders,1968 + + + + + + 101 + 18 + Records, Judiciary, Open Housing,1970 + + + + + + 101 + 19 + Records, Judiciary, Poor People's Campaign, 2 folders,1970 + + + + + + 101 + 20 + Records, Judiciary, Poor People's Campaign, 2 folders,1970 + + + + + + 101 + 21 + Records, Judiciary, Prayer,1970 + + + + + + 101 + 22 + Records, Judiciary, Robert F. Kennedy Assassination,1970 + + + + + + 101 + 23 + Records, Judiciary, Supreme Court,1970 + + + + + + 101 + 24 + Records, Labor and Public Welfare, Committee, General,1970 + + + + + + 101 + 25 + Records, Labor and Public Welfare, Education, A-Z (no E, V, X, Z), 12 folders,1970 + + + + + + 101 + 26 + Records, Labor and Public Welfare, Education, A-Z (no E, V, X, Z), 12 folders,1970 + + + + + + 101 + 27 + Records, Labor and Public Welfare, Education, A-Z (no E, V, X, Z), 12 folders,1970 + + + + + + 101 + 28 + Records, Labor and Public Welfare, Education, A-Z (no E, V, X, Z), 12 folders,1970 + + + + + + 101 + 29 + Records, Labor and Public Welfare, Education, A-Z (no E, V, X, Z), 12 folders,1970 + + + + + + 101 + 30 + Records, Labor and Public Welfare, Education, A-Z (no E, V, X, Z), 12 folders,1970 + + + + + + 101 + 31 + Records, Labor and Public Welfare, Education, A-Z (no E, V, X, Z), 12 folders,1970 + + + + + + 101 + 32 + Records, Labor and Public Welfare, Education, A-Z (no E, V, X, Z), 12 folders,1970 + + + + + + 101 + 33 + Records, Labor and Public Welfare, Education, A-Z (no E, V, X, Z), 12 folders,1970 + + + + + + 101 + 34 + Records, Labor and Public Welfare, Education, A-Z (no E, V, X, Z), 12 folders,1970 + + + + + + 101 + 35 + Records, Labor and Public Welfare, Education, A-Z (no E, V, X, Z), 12 folders,1970 + + + + + + 101 + 36 + Records, Labor and Public Welfare, Education, A-Z (no E, V, X, Z), 12 folders,1970 + + + + + + 101 + 37 + Records, Labor and Public Welfare, Employment, A-Z (no E, C, G, R, X-Z) - 8 folders,1970 + + + + + + 101 + 38 + Records, Labor and Public Welfare, Employment, A-Z (no E, C, G, R, X-Z) - 8 folders,1970 + + + + + + 101 + 39 + Records, Labor and Public Welfare, Employment, A-Z (no E, C, G, R, X-Z) - 8 folders,1970 + + + + + + 101 + 40 + Records, Labor and Public Welfare, Employment, A-Z (no E, C, G, R, X-Z) - 8 folders,1970 + + + + + + 101 + 41 + Records, Labor and Public Welfare, Employment, A-Z (no E, C, G, R, X-Z) - 8 folders,1970 + + + + + + 101 + 42 + Records, Labor and Public Welfare, Employment, A-Z (no E, C, G, R, X-Z) - 8 folders,1970 + + + + + + 101 + 43 + Records, Labor and Public Welfare, Employment, A-Z (no E, C, G, R, X-Z) - 8 folders,1970 + + + + + + 101 + 44 + Records, Labor and Public Welfare, Employment, A-Z (no E, C, G, R, X-Z) - 8 folders,1970 + + + + + + 101 + 45 + Records, Labor and Public Welfare, Health, A-Z, 20 folders,1970 + + + + + + 101 + 46 + Records, Labor and Public Welfare, Health, A-Z, 20 folders,1970 + + + + + + 101 + 47 + Records, Labor and Public Welfare, Health, A-Z, 20 folders,1970 + + + + + + 101 + 48 + Records, Labor and Public Welfare, Health, A-Z, 20 folders,1970 + + + + + + 101 + 49 + Records, Labor and Public Welfare, Health, A-Z, 20 folders,1970 + + + + + + 101 + 50 + Records, Labor and Public Welfare, Health, A-Z, 20 folders,1970 + + + + + + 101 + 51 + Records, Labor and Public Welfare, Health, A-Z, 20 folders,1970 + + + + + + 101 + 52 + Records, Labor and Public Welfare, Health, A-Z, 20 folders,1970 + + + + + + 101 + 53 + Records, Labor and Public Welfare, Health, A-Z, 20 folders,1970 + + + + + + 101 + 54 + Records, Labor and Public Welfare, Health, A-Z, 20 folders,1970 + + + + + + 101 + 55 + Records, Labor and Public Welfare, Health, A-Z, 20 folders,1970 + + + + + + 101 + 56 + Records, Labor and Public Welfare, Health, A-Z, 20 folders,1970 + + + + + + 101 + 57 + Records, Labor and Public Welfare, Health, A-Z, 20 folders,1970 + + + + + + 101 + 58 + Records, Labor and Public Welfare, Health, A-Z, 20 folders,1970 + + + + + + 101 + 59 + Records, Labor and Public Welfare, Health, A-Z, 20 folders,1970 + + + + + + 101 + 60 + Records, Labor and Public Welfare, Health, A-Z, 20 folders,1970 + + + + + + 101 + 61 + Records, Labor and Public Welfare, Health, A-Z, 20 folders,1970 + + + + + + 101 + 62 + Records, Labor and Public Welfare, Health, A-Z, 20 folders,1970 + + + + + + 101 + 63 + Records, Labor and Public Welfare, Health, A-Z, 20 folders,1970 + + + + + + 101 + 64 + Records, Labor and Public Welfare, Health, A-Z, 20 folders,1970 + + + + + + 102 + 1 + Records, Labor and Public Welfare, Labor, A-Z, 19 folders,1970 + + + + + + 102 + 2 + Records, Labor and Public Welfare, Labor, A-Z, 19 folders,1970 + + + + + + + 102 + 4 + Records, Labor and Public Welfare, Labor, A-Z, 19 folders,1970 + + + + + + 102 + 5 + Records, Labor and Public Welfare, Labor, A-Z, 19 folders,1970 + + + + + + 102 + 6 + Records, Labor and Public Welfare, Labor, A-Z, 19 folders,1970 + + + + + + 102 + 7 + Records, Labor and Public Welfare, Labor, A-Z, 19 folders,1970 + + + + + + 102 + 8 + Records, Labor and Public Welfare, Labor, A-Z, 19 folders,1970 + + + + + + 102 + 9 + Records, Labor and Public Welfare, Labor, A-Z, 19 folders,1970 + + + + + + 102 + 10 + Records, Labor and Public Welfare, Labor, A-Z, 19 folders,1970 + + + + + + 102 + 11 + Records, Labor and Public Welfare, Labor, A-Z, 19 folders,1970 + + + + + + 102 + 12 + Records, Labor and Public Welfare, Labor, A-Z, 19 folders,1970 + + + + + + 102 + 13 + Records, Labor and Public Welfare, Labor, A-Z, 19 folders,1970 + + + + + + 102 + 14 + Records, Labor and Public Welfare, Labor, A-Z, 19 folders,1970 + + + + + + 102 + 15 + Records, Labor and Public Welfare, Labor, A-Z, 19 folders,1970 + + + + + + 102 + 16 + Records, Labor and Public Welfare, Labor, A-Z, 19 folders,1970 + + + + + + 102 + 17 + Records, Labor and Public Welfare, Labor, A-Z, 19 folders,1970 + + + + + + 102 + 18 + Records, Labor and Public Welfare, Labor, A-Z, 19 folders,1970 + + + + + + 102 + 19 + Records, Labor and Public Welfare, Labor, A-Z, 19 folders,1970 + + + + + + 102 + 20 + Records, Labor and Public Welfare, Railroad Retirement, A-Z (no E, G, N, R, X-Z), 10 folders,1970 + + + + + + 102 + 21 + Records, Labor and Public Welfare, Railroad Retirement, A-Z (no E, G, N, R, X-Z), 10 folders,1970 + + + + + + 102 + 22 + Records, Labor and Public Welfare, Railroad Retirement, A-Z (no E, G, N, R, X-Z), 10 folders,1970 + + + + + + 102 + 23 + Records, Labor and Public Welfare, Railroad Retirement, A-Z (no E, G, N, R, X-Z), 10 folders,1970 + + + + + + 102 + 24 + Records, Labor and Public Welfare, Railroad Retirement, A-Z (no E, G, N, R, X-Z), 10 folders,1970 + + + + + + 102 + 25 + Records, Labor and Public Welfare, Railroad Retirement, A-Z (no E, G, N, R, X-Z), 10 folders,1970 + + + + + + 102 + 26 + Records, Labor and Public Welfare, Railroad Retirement, A-Z (no E, G, N, R, X-Z), 10 folders,1970 + + + + + + 102 + 27 + Records, Labor and Public Welfare, Railroad Retirement, A-Z (no E, G, N, R, X-Z), 10 folders,1970 + + + + + + 102 + 28 + Records, Labor and Public Welfare, Railroad Retirement, A-Z (no E, G, N, R, X-Z), 10 folders,1970 + + + + + + 102 + 29 + Records, Labor and Public Welfare, Railroad Retirement, A-Z (no E, G, N, R, X-Z), 10 folders,1970 + + + + + + 102 + 30 + Records, Labor and Public Welfare, Veterans Affairs, A-Z (no F-G, O, Q, T-Z), 4 folders,1970 + + + + + + 102 + 31 + Records, Labor and Public Welfare, Veterans Affairs, A-Z (no F-G, O, Q, T-Z), 4 folders,1970 + + + + + + 102 + 32 + Records, Labor and Public Welfare, Veterans Affairs, A-Z (no F-G, O, Q, T-Z), 4 folders,1970 + + + + + + 102 + 33 + Records, Labor and Public Welfare, Veterans Affairs, A-Z (no F-G, O, Q, T-Z), 4 folders,1970 + + + + + + 102 + 34 + Records, Public Works, Clean Air Act, A-Z (no T, X-Y), 18 folders,1970 + + + + + + 102 + 35 + Records, Public Works, Clean Air Act, A-Z (no T, X-Y), 18 folders,1970 + + + + + + 102 + 36 + Records, Public Works, Clean Air Act, A-Z (no T, X-Y), 18 folders,1970 + + + + + + 102 + 37 + Records, Public Works, Clean Air Act, A-Z (no T, X-Y), 18 folders,1970 + + + + + + 102 + 38 + Records, Public Works, Clean Air Act, A-Z (no T, X-Y), 18 folders,1970 + + + + + + 102 + 39 + Records, Public Works, Clean Air Act, A-Z (no T, X-Y), 18 folders,1970 + + + + + + 102 + 40 + Records, Public Works, Clean Air Act, A-Z (no T, X-Y), 18 folders,1970 + + + + + + 102 + 41 + Records, Public Works, Clean Air Act, A-Z (no T, X-Y), 18 folders,1970 + + + + + + 102 + 42 + Records, Public Works, Clean Air Act, A-Z (no T, X-Y), 18 folders,1970 + + + + + + 102 + 43 + Records, Public Works, Clean Air Act, A-Z (no T, X-Y), 18 folders,1970 + + + + + + 102 + 44 + Records, Public Works, Clean Air Act, A-Z (no T, X-Y), 18 folders,1970 + + + + + + 102 + 45 + Records, Public Works, Clean Air Act, A-Z (no T, X-Y), 18 folders,1970 + + + + + + 102 + 46 + Records, Public Works, Clean Air Act, A-Z (no T, X-Y), 18 folders,1970 + + + + + + 102 + 47 + Records, Public Works, Clean Air Act, A-Z (no T, X-Y), 18 folders,1970 + + + + + + 102 + 48 + Records, Public Works, Clean Air Act, A-Z (no T, X-Y), 18 folders,1970 + + + + + + 102 + 49 + Records, Public Works, Clean Air Act, A-Z (no T, X-Y), 18 folders,1970 + + + + + + 102 + 50 + Records, Public Works, Clean Air Act, A-Z (no T, X-Y), 18 folders,1970 + + + + + + 102 + 51 + Records, Public Works, Clean Air Act, A-Z (no T, X-Y), 18 folders,1970 + + + + + + 102 + 52 + Records, Rules and Administration,1970 + + + + + + 102 + 53 + Records, Joint Committee on Atomic Energy,1970 + + + + + + 102 + 54 + Records, Select Committee on Standards and Conduct,1970 + + + + + + 102 + 55 + Records, Special Committee on Aging,1970 + + + + + + 102 + 56 + Records, Internal Security Committee,1970 + + + + + + 102 + 57 + Records, Post Office and Civil Service, A-Z, 20 folders,1970 + + + + + + 102 + 58 + Records, Post Office and Civil Service, A-Z, 20 folders,1970 + + + + + + 102 + 59 + Records, Post Office and Civil Service, A-Z, 20 folders,1970 + + + + + + 102 + 60 + Records, Post Office and Civil Service, A-Z, 20 folders,1970 + + + + + + 102 + 61 + Records, Post Office and Civil Service, A-Z, 20 folders,1970 + + + + + + 102 + 62 + Records, Post Office and Civil Service, A-Z, 20 folders,1970 + + + + + + 102 + 63 + Records, Post Office and Civil Service, A-Z, 20 folders,1970 + + + + + + 102 + 64 + Records, Post Office and Civil Service, A-Z, 20 folders,1970 + + + + + + 102 + 65 + Records, Post Office and Civil Service, A-Z, 20 folders,1970 + + + + + + 102 + 66 + Records, Post Office and Civil Service, A-Z, 20 folders,1970 + + + + + + 102 + 67 + Records, Post Office and Civil Service, A-Z, 20 folders,1970 + + + + + + 102 + 68 + Records, Post Office and Civil Service, A-Z, 20 folders,1970 + + + + + + 102 + 69 + Records, Post Office and Civil Service, A-Z, 20 folders,1970 + + + + + + 102 + 70 + Records, Post Office and Civil Service, A-Z, 20 folders,1970 + + + + + + 102 + 71 + Records, Post Office and Civil Service, A-Z, 20 folders,1970 + + + + + + 102 + 72 + Records, Post Office and Civil Service, A-Z, 20 folders,1970 + + + + + + 102 + 73 + Records, Post Office and Civil Service, A-Z, 20 folders,1970 + + + + + + 102 + 74 + Records, Post Office and Civil Service, A-Z, 20 folders,1970 + + + + + + 102 + 75 + Records, Post Office and Civil Service, A-Z, 20 folders,1970 + + + + + + 102 + 76 + Records, Post Office and Civil Service, A-Z, 20 folders,1970 + + + + + + 103 + 1 + Records, Fortas Nomination Correspondence, General (B, D, G-L, O, S-T, V only), 20 folders,1968 + + + + + + 103 + 2 + Records, Fortas Nomination Correspondence, General (B, D, G-L, O, S-T, V only), 20 folders,1968 + + + + + + 103 + 3 + Records, Fortas Nomination Correspondence, General (B, D, G-L, O, S-T, V only), 20 folders,1968 + + + + + + 103 + 4 + Records, Fortas Nomination Correspondence, General (B, D, G-L, O, S-T, V only), 20 folders,1968 + + + + + + 103 + 5 + Records, Fortas Nomination Correspondence, General (B, D, G-L, O, S-T, V only), 20 folders,1968 + + + + + + 103 + 6 + Records, Fortas Nomination Correspondence, General (B, D, G-L, O, S-T, V only), 20 folders,1968 + + + + + + 103 + 7 + Records, Fortas Nomination Correspondence, General (B, D, G-L, O, S-T, V only), 20 folders,1968 + + + + + + 103 + 8 + Records, Fortas Nomination Correspondence, General (B, D, G-L, O, S-T, V only), 20 folders,1968 + + + + + + 103 + 9 + Records, Fortas Nomination Correspondence, General (B, D, G-L, O, S-T, V only), 20 folders,1968 + + + + + + 103 + 10 + Records, Fortas Nomination Correspondence, General (B, D, G-L, O, S-T, V only), 20 folders,1968 + + + + + + 103 + 11 + Records, Fortas Nomination Correspondence, General (B, D, G-L, O, S-T, V only), 20 folders,1968 + + + + + + 103 + 12 + Records, Fortas Nomination Correspondence, General (B, D, G-L, O, S-T, V only), 20 folders,1968 + + + + + + 103 + 13 + Records, Fortas Nomination Correspondence, General (B, D, G-L, O, S-T, V only), 20 folders,1968 + + + + + + 103 + 14 + Records, Fortas Nomination Correspondence, General (B, D, G-L, O, S-T, V only), 20 folders,1968 + + + + + + 103 + 15 + Records, Fortas Nomination Correspondence, General (B, D, G-L, O, S-T, V only), 20 folders,1968 + + + + + + 103 + 16 + Records, Fortas Nomination Correspondence, General (B, D, G-L, O, S-T, V only), 20 folders,1968 + + + + + + 103 + 17 + Records, Fortas Nomination Correspondence, General (B, D, G-L, O, S-T, V only), 20 folders,1968 + + + + + + 103 + 18 + Records, Fortas Nomination Correspondence, General (B, D, G-L, O, S-T, V only), 20 folders,1968 + + + + + + 103 + 19 + Records, Fortas Nomination Correspondence, General (B, D, G-L, O, S-T, V only), 20 folders,1968 + + + + + + 103 + 20 + Records, Fortas Nomination Correspondence, General (B, D, G-L, O, S-T, V only), 20 folders,1968 + + + + + + 103 + 21 + Records, Foreign Relations, I-Z (no N-S), 4 folders,1970 + + + + + + 103 + 22 + Records, Foreign Relations, I-Z (no N-S), 4 folders,1970 + + + + + + 103 + 23 + Records, Foreign Relations, I-Z (no N-S), 4 folders,1970 + + + + + + 103 + 24 + Records, Foreign Relations, I-Z (no N-S), 4 folders,1970 + + + + + + 103 + 25 + Records, Foreign Relations, Vietnam, A-Z (no D-E, I-J, N-R, U, X-Z), 14 folders,1970 + + + + + + 103 + 26 + Records, Foreign Relations, Vietnam, A-Z (no D-E, I-J, N-R, U, X-Z), 14 folders,1970 + + + + + + 103 + 27 + Records, Foreign Relations, Vietnam, A-Z (no D-E, I-J, N-R, U, X-Z), 14 folders,1970 + + + + + + 103 + 28 + Records, Foreign Relations, Vietnam, A-Z (no D-E, I-J, N-R, U, X-Z), 14 folders,1970 + + + + + + 103 + 29 + Records, Foreign Relations, Vietnam, A-Z (no D-E, I-J, N-R, U, X-Z), 14 folders,1970 + + + + + + 103 + 30 + Records, Foreign Relations, Vietnam, A-Z (no D-E, I-J, N-R, U, X-Z), 14 folders,1970 + + + + + + 103 + 31 + Records, Foreign Relations, Vietnam, A-Z (no D-E, I-J, N-R, U, X-Z), 14 folders,1970 + + + + + + 103 + 32 + Records, Foreign Relations, Vietnam, A-Z (no D-E, I-J, N-R, U, X-Z), 14 folders,1970 + + + + + + 103 + 33 + Records, Foreign Relations, Vietnam, A-Z (no D-E, I-J, N-R, U, X-Z), 14 folders,1970 + + + + + + 103 + 34 + Records, Foreign Relations, Vietnam, A-Z (no D-E, I-J, N-R, U, X-Z), 14 folders,1970 + + + + + + 103 + 35 + Records, Foreign Relations, Vietnam, A-Z (no D-E, I-J, N-R, U, X-Z), 14 folders,1970 + + + + + + 103 + 36 + Records, Foreign Relations, Vietnam, A-Z (no D-E, I-J, N-R, U, X-Z), 14 folders,1970 + + + + + + 103 + 37 + Records, Foreign Relations, Vietnam, A-Z (no D-E, I-J, N-R, U, X-Z), 14 folders,1970 + + + + + + 103 + 38 + Records, Foreign Relations, Vietnam, A-Z (no D-E, I-J, N-R, U, X-Z), 14 folders,1970 + + + + + + 104 + 1 + Records, Foreign Relations, P.O.W. and M.I.A. - 2 folders,1970 + + + + + + 104 + 2 + Records, Foreign Relations, P.O.W. and M.I.A. - 2 folders,1970 + + + + + + 104 + 3 + Records, Labor and Public Welfare, General, 9 folders,1970 + + + + + + 104 + 4 + Records, Labor and Public Welfare, General, 9 folders,1970 + + + + + + 104 + 5 + Records, Labor and Public Welfare, General, 9 folders,1970 + + + + + + 104 + 6 + Records, Labor and Public Welfare, General, 9 folders,1970 + + + + + + 104 + 7 + Records, Labor and Public Welfare, General, 9 folders,1970 + + + + + + 104 + 8 + Records, Labor and Public Welfare, General, 9 folders,1970 + + + + + + 104 + 9 + Records, Labor and Public Welfare, General, 9 folders,1970 + + + + + + 104 + 10 + Records, Labor and Public Welfare, General, 9 folders,1970 + + + + + + 104 + 11 + Records, Labor and Public Welfare, General, 9 folders,1970 + + + + + + 104 + 12 + Records, Carswell Supreme Court Nomination, 2 folders,1970 + + + + + + 104 + 13 + Records, Carswell Supreme Court Nomination, 2 folders,1970 + + + + + + 104 + 14 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 104 + 15 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 104 + 16 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 104 + 17 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 104 + 18 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 104 + 19 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 104 + 20 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 104 + 21 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 104 + 22 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 104 + 23 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 104 + 24 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 104 + 25 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 104 + 26 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 104 + 27 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 104 + 28 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 104 + 29 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 104 + 30 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 104 + 31 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 104 + 32 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 104 + 33 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 104 + 34 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 104 + 35 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 104 + 36 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 104 + 37 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 104 + 38 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 104 + 39 + Records, Fortas Nomination Correspondence, General (A-H,K-P, R-W, X-Z), 26 folders,1968 + + + + + + 105 + 1 + Records, Judiciary, General,1970 + + + + + + 105 + 2 + Records, Judiciary, A-D, 10 folders,1970 + + + + + + 105 + 3 + Records, Judiciary, A-D, 10 folders,1970 + + + + + + 105 + 4 + Records, Judiciary, A-D, 10 folders,1970 + + + + + + 105 + 5 + Records, Judiciary, A-D, 10 folders,1970 + + + + + + 105 + 6 + Records, Judiciary, A-D, 10 folders,1970 + + + + + + 105 + 7 + Records, Judiciary, A-D, 10 folders,1970 + + + + + + 105 + 8 + Records, Judiciary, A-D, 10 folders,1970 + + + + + + 105 + 9 + Records, Judiciary, A-D, 10 folders,1970 + + + + + + 105 + 10 + Records, Judiciary, A-D, 10 folders,1970 + + + + + + 105 + 11 + Records, Judiciary, A-D, 10 folders,1970 + + + + + + 105 + 12 + Records, Judiciary, Carswell Nomination, 5 folders,1970 + + + + + + 105 + 13 + Records, Judiciary, Carswell Nomination, 5 folders,1970 + + + + + + 105 + 14 + Records, Judiciary, Carswell Nomination, 5 folders,1970 + + + + + + 105 + 15 + Records, Judiciary, Carswell Nomination, 5 folders,1970 + + + + + + 105 + 16 + Records, Judiciary, Carswell Nomination, 5 folders,1970 + + + + + + 105 + 17 + Records, Interior and Insular Affairs, I-Z (no E, X-Z), 10 folders,1970 + + + + + + 105 + 18 + Records, Interior and Insular Affairs, I-Z (no E, X-Z), 10 folders,1970 + + + + + + 105 + 19 + Records, Interior and Insular Affairs, I-Z (no E, X-Z), 10 folders,1970 + + + + + + 105 + 20 + Records, Interior and Insular Affairs, I-Z (no E, X-Z), 10 folders,1970 + + + + + + 105 + 21 + Records, Interior and Insular Affairs, I-Z (no E, X-Z), 10 folders,1970 + + + + + + 105 + 22 + Records, Interior and Insular Affairs, I-Z (no E, X-Z), 10 folders,1970 + + + + + + 105 + 23 + Records, Interior and Insular Affairs, I-Z (no E, X-Z), 10 folders,1970 + + + + + + 105 + 24 + Records, Interior and Insular Affairs, I-Z (no E, X-Z), 10 folders,1970 + + + + + + 105 + 25 + Records, Interior and Insular Affairs, I-Z (no E, X-Z), 10 folders,1970 + + + + + + 105 + 26 + Records, Interior and Insular Affairs, I-Z (no E, X-Z), 10 folders,1970 + + + + + + 105 + 27 + Records, Sleeping Bear Dunes, 4 folders,1970 + + + + + + 105 + 28 + Records, Sleeping Bear Dunes, 4 folders,1970 + + + + + + 105 + 29 + Records, Sleeping Bear Dunes, 4 folders,1970 + + + + + + 105 + 30 + Records, Sleeping Bear Dunes, 4 folders,1970 + + + + + + 105 + 31 + Records, Government Operations, A-J, 13 folders,1970 + + + + + + 105 + 32 + Records, Government Operations, A-J, 13 folders,1970 + + + + + + 105 + 33 + Records, Government Operations, A-J, 13 folders,1970 + + + + + + 105 + 34 + Records, Government Operations, A-J, 13 folders,1970 + + + + + + 105 + 35 + Records, Government Operations, A-J, 13 folders,1970 + + + + + + 105 + 36 + Records, Government Operations, A-J, 13 folders,1970 + + + + + + 105 + 37 + Records, Government Operations, A-J, 13 folders,1970 + + + + + + 105 + 38 + Records, Government Operations, A-J, 13 folders,1970 + + + + + + 105 + 39 + Records, Government Operations, A-J, 13 folders,1970 + + + + + + 105 + 40 + Records, Government Operations, A-J, 13 folders,1970 + + + + + + 105 + 41 + Records, Government Operations, A-J, 13 folders,1970 + + + + + + 105 + 42 + Records, Government Operations, A-J, 13 folders,1970 + + + + + + 105 + 43 + Records, Government Operations, A-J, 13 folders,1970 + + + + + + + Senator Robert P. Griffin Papers Collection - Series #5, Legislative/Voting Series, (87 cubic feet - 1958‑1979) + + + + 186 + 1 + Records, Africa, General,undated + + + + + + 186 + 2 + Records, Africa, Angola, General,undated + + + + + + 186 + 3 + Records, Africa, Angola, Griffin amendment,undated + + + + + + 186 + 4 + Records, Africa, Mozambique,undated + + + + + + 186 + 5 + Records, Africa, Namibia,undated + + + + + + 186 + 6 + Records, Africa, Rhodesia,undated + + + + + + 186 + 7 + Records, Africa, Rhodesian Chrome (Repeal Byrd Amendment),undated + + + + + + 186 + 8 + Records, Africa, Sahel,undated + + + + + + 186 + 9 + Records, Africa, South Africa (2 folders),undated + + + + + + 186 + 10 + Records, Africa, South Africa (2 folders),undated + + + + + + 186 + 11 + Records, Africa, Southern Africa,undated + + + + + + 186 + 12 + Records, Africa, Tanzania,undated + + + + + + 186 + 13 + Records, Africa, Zaire,undated + + + + + + 186 + 14 + Records, Africa, Humphrey Resolution,undated + + + + + + 186 + 15 + Records, Ambassador,undated + + + + + + 186 + 16 + Records, American Enterprise Institute For Public Policy Research (AEI),undated + + + + + + 186 + 17 + Records, Amnesty-Pardon of Vietnam Draft Resisters,1977 + + + + + + 186 + 18 + Records, APO-Privileges for Absentee Voters,undated + + + + + + 186 + 19 + Records, Arms Control, Arms Control Policy,undated + + + + + + 186 + 20 + Records, Arms Control, CTB-Comprehensive Test Ban Treay,undated + + + + + + 186 + 21 + Records, Arms Control, Arms Control & Disarmament Agency (ACAD),undated + + + + + + 186 + 22 + Records, Arms Control, Arms Control & Disarmament Agency (ACAD), General,undated + + + + + + 186 + 23 + Records, Arms Control, Arms Control & Disarmament Agency (ACAD), FY 1978,1978 + + + + + + 186 + 24 + Records, Arms Control, Arms Control & Disarmament Agency (ACAD), FY 1979 Authorization,1979 + + + + + + 186 + 25 + Records, Arms Control, Griffin Statement,undated + + + + + + 186 + 26 + Records, Arms Control, Impact Statements (2 folders),undated + + + + + + 186 + 27 + Records, Arms Control, Impact Statements (2 folders),undated + + + + + + 186 + 28 + Records, Arms Control, Mutual and Balanced Force Reduction (MBFR) Europe,undated + + + + + + 186 + 29 + Records, Arms Control, Nuclear Test Ban Resolution,undated + + + + + + 186 + 30 + Records, Arms Control, Strategic Arms Limitation Talks (SALT), General,undated + + + + + + 186 + 31 + Records, Arms Control, Strategic Arms Limitation Talks (SALT), Cruise Missiles Working File,undated + + + + + + 186 + 32 + Records, Arms Control, Strategic Arms Limitation Talks (SALT), SALT I Extension,1977 + + + + + + 186 + 33 + Records, Arms Control, Strategic Arms Limitation Talks (SALT), SALT II,undated + + + + + + 186 + 34 + Records, Arms Control, Strategic Arms Limitation Talks (SALT), SALT II, General (2 folders),undated + + + + + + 186 + 35 + Records, Arms Control, Strategic Arms Limitation Talks (SALT), SALT II, General (2 folders),undated + + + + + + 186 + 36 + Records, Arms Control, Strategic Arms Limitation Talks (SALT), SALT II, Carter Proposals,undated + + + + + + 186 + 37 + Records, Arms Control, Strategic Arms Limitation Talks (SALT), SALT II, Miscellaneous,undated + + + + + + 186 + 38 + Records, Arms Control, Strategic Arms Limitation Talks (SALT), SALT II, Congressional Research,undated + + + + + + 186 + 39 + Records, Service Threshold Test Ban Treaty (TTBT),undated + + + + + + 186 + 40 + Records, Verification - Griffin Amendment to FY78,undated + + + + + + 186 + 41 + Records, Far East, Far East Trip - Report (Nov. 1977),1977 + + + + + + 186 + 42 + Records, Far East, Asia & Pacific, Australia,undated + + + + + + 186 + 43 + Records, Far East, Asia & Pacific, Bangladesh,undated + + + + + + 186 + 44 + Records, Far East, Asia & Pacific, Cambodia, Non-Communist,undated + + + + + + 186 + 45 + Records, Far East, Asia & Pacific, Cambodia, Communist,undated + + + + + + 186 + 46 + Records, Far East, Asia & Pacific, Mayaguez,undated + + + + + + 187 + 41 + Records, Far East, China, PRC,undated + + + + + + 187 + 2 + Records, Far East, China, ROC,undated + + + + + + 187 + 3 + Records, Far East, Diego Garcia,undated + + + + + + 187 + 4 + Records, Far East, India, General,undated + + + + + + 187 + 5 + Records, Far East, India, Arms Development,undated + + + + + + 187 + 6 + Records, Far East, Japan,undated + + + + + + 187 + 7 + Records, Far East, Korea, General,undated + + + + + + 187 + 8 + Records, Far East, Korea, Human Rights,undated + + + + + + 187 + 9 + Records, Far East, Korea, Letter,undated + + + + + + 187 + 10 + Records, Far East, Korea, North,undated + + + + + + 187 + 11 + Records, Far East, Korea, North and South,undated + + + + + + 187 + 12 + Records, Far East, Korea, US Troop Withdrawal,undated + + + + + + 187 + 13 + Records, Far East, Korea, US Troops - Griffin Amendment,1977 + + + + + + 187 + 14 + Records, Far East, Marianas, General,undated + + + + + + 187 + 15 + Records, Far East, Marianas, Senator's trip,1976 + + + + + + 187 + 16 + Records, Far East, Marshall Islands,undated + + + + + + 187 + 17 + Records, Far East, Okinawa,undated + + + + + + 187 + 18 + Records, Far East, Pakistan, General,undated + + + + + + 187 + 19 + Records, Far East, Pakistan, Arms Sales and Nuclear Reprocessing Sale,undated + + + + + + 187 + 20 + Records, Far East, Philippines,undated + + + + + + 187 + 21 + Records, Far East, Vietnam, Evacuations,undated + + + + + + 187 + 22 + Records, Far East, Vietnam, MIAs, General,undated + + + + + + 187 + 23 + Records, Far East, Vietnam, MIAs, Aid to MIA Amendment,undated + + + + + + 187 + 24 + Records, Far East, Vietnam, MIAs, POW/MIA,undated + + + + + + 187 + 25 + Records, Far East, Vietnam, MIAs, Griffin Resolution,1977 + + + + + + 187 + 26 + Records, Far East, Vietnam, Nixon-Pham Van Dong letter on US Aid,1973 + + + + + + 187 + 27 + Records, Far East, Vietnam, North Vietnam,undated + + + + + + 187 + 28 + Records, Far East, Vietnam, Orphan Lift,undated + + + + + + 187 + 29 + Records, Far East, Vietnam, Political Prisoners in South Vietnam - Background paper,undated + + + + + + 187 + 30 + Records, Far East, Vietnam, Refugee Legislation,undated + + + + + + 187 + 31 + Records, Far East, Vietnam, Refugees,undated + + + + + + 187 + 32 + Records, Far East, Vietnam, Socialist Republic of Vietnam (after June 1976),1976 + + + + + + 187 + 33 + Records, Far East, Vietnam, Trade/Aid with US,undated + + + + + + 187 + 34 + Records, Far East, Vietnam, Update - Special File,undated + + + + + + 187 + 35 + Records, Board for International Broadcasting,undated + + + + + + 187 + 36 + Records, Brown, Harold (Sec. of Defense),undated + + + + + + 187 + 37 + Records, Captive Nations Week,undated + + + + + + 187 + 38 + Records, Carter, Jimmy, Campaign Statement,undated + + + + + + 187 + 39 + Records, Carter, Jimmy, Miscellaneous Cases,undated + + + + + + 187 + 40 + Records, Carter, Jimmy, June Harvey (China Trip for Student group 3/77),1977 + + + + + + 187 + 41 + Records, Carter, Jimmy, Slovik, Antionette (wife of executed PVT Eddie, 1977),1977 + + + + + + 187 + 42 + Records, Center for Strategic & Intl. Studies,undated + + + + + + 187 + 43 + Records, Communism, Communists,undated + + + + + + 187 + 44 + Records, Communism, Sino-Soviet Relations,undated + + + + + + 187 + 45 + Records, Communism, Soviet Strategy,undated + + + + + + 187 + 46 + Records, Concurrent Resolution Veto - Legal status,undated + + + + + + 187 + 47 + Records, CRS - Requests,undated + + + + + + 187 + 48 + Records, Cuba - Working file,undated + + + + + + 187 + 49 + Records, Civil Defense, Natural Disaster,undated + + + + + + 187 + 50 + Records, Civil Defense, Planning,undated + + + + + + 187 + 51 + Records, Defense, General (2 folders),undated + + + + + + 187 + 52 + Records, Defense, General (2 folders),undated + + + + + + 187 + 53 + Records, Defense, Air Force - Spending,undated + + + + + + 187 + 54 + Records, Defense, Defense Speech - Working file (Turner),1976 + + + + + + 187 + 55 + Records, Defense, Lance Missile (See also file in Safe),undated + + + + + + 187 + 56 + Records, Defense, Lance Missile (See also file in Safe), General,undated + + + + + + 187 + 57 + Records, Defense, Lance Missile (See also file in Safe), Dear Colleague, 8/1976,1976 + + + + + + 187 + 58 + Records, Defense, ICBMs - Minuteman & General,undated + + + + + + 187 + 59 + Records, Defense, Budget, History,undated + + + + + + 187 + 60 + Records, Defense, FY 1977,1977 + + + + + + 187 + 61 + Records, Defense, Army,undated + + + + + + 187 + 62 + Records, Defense, Aircraft, Advanced Tanker Cargo Aircraft (ACTA),undated + + + + + + 187 + 63 + Records, Defense, Aircraft, B-1, Congressional Action on...,undated + + + + + + 187 + 64 + Records, Defense, Aircraft, B-1, Criticism,undated + + + + + + 187 + 65 + Records, Defense, Aircraft, B-1, Proxmire-Goldwater Debates,undated + + + + + + 187 + 66 + Records, Defense, Aircraft, B-1, Miscellaneous,undated + + + + + + 187 + 67 + Records, Defense, Aircraft, F-14,undated + + + + + + 187 + 68 + Records, Defense, Aircraft, F-18,undated + + + + + + 187 + 69 + Records, Defense, Aircraft, Miscellaneous,undated + + + + + + 188 + 1 + Records, Defense, Compass Cope - RPV Program,undated + + + + + + 188 + 2 + Records, Defense, Counterforce,undated + + + + + + 188 + 3 + Records, Defense, Cruise Missile, Miscellaneous,undated + + + + + + 188 + 4 + Records, Defense, Cruise Missile, GLCM - Op. Ed. Draft (Turner),undated + + + + + + 188 + 5 + Records, Defense, Cruise Missile, Floor Action (Turner),undated + + + + + + 188 + 6 + Records, Defense, Cruise Missile, Hearings,1976 + + + + + + 188 + 7 + Records, Defense, Fuel Air Explosives,undated + + + + + + 188 + 8 + Records, Defense, Lance Missile (Non-Nuclear), Appropriations Committee Statement,1977 + + + + + + 188 + 9 + Records, Defense, Lance Missile (Non-Nuclear), Speech,1/1977,1977 + + + + + + 188 + 10 + Records, Defense, Laser Weapons,undated + + + + + + 188 + 11 + Records, Defense, Manpower (See also Draft and Volunteer Army), General,undated + + + + + + 188 + 12 + Records, Defense, Manpower (See also Draft and Volunteer Army), Cost - Pay & Allowances, benefits, etc,undated + + + + + + 188 + 13 + Records, Defense, Manpower (See also Draft and Volunteer Army), Discharges,undated + + + + + + 188 + 14 + Records, Defense, Manpower (See also Draft and Volunteer Army), Double-Dipping,undated + + + + + + 188 + 15 + Records, Defense, Manpower (See also Draft and Volunteer Army), Troops in Europe,undated + + + + + + 188 + 16 + Records, Defense, Michigan Implications,undated + + + + + + 188 + 17 + Records, Defense, Military Balance, General, 1976 and before,1976 + + + + + + 188 + 18 + Records, Defense, Military Balance, General,1977 + + + + + + 188 + 19 + Records, Defense, Military Balance, Strategic Balance, 1976 and before,1976 + + + + + + 188 + 20 + Records, Defense, Navy,undated + + + + + + 188 + 21 + Records, Defense, Neutron Bomb - Enhanced Radiation Warhead,1977 + + + + + + 188 + 22 + Records, Defense, Seafarer (ELF) (2 folders),1977 + + + + + + 188 + 23 + Records, Defense, Seafarer (ELF) (2 folders),1977 + + + + + + 188 + 24 + Records, Defense, Soviet Civil Defense Briefing Book,undated + + + + + + 188 + 25 + Records, Defense, Strategic Doctrine,undated + + + + + + 188 + 26 + Records, Defense, Tactical Nuclear Weapons,undated + + + + + + 188 + 27 + Records, Defense, Tanks, General,undated + + + + + + 188 + 28 + Records, Defense, Tanks, M60,undated + + + + + + 188 + 29 + Records, Defense, Tanks, XM-1, General,undated + + + + + + 188 + 30 + Records, Defense, Tanks, XM-1, Engine Selection,undated + + + + + + 188 + 31 + Records, Defense, Tanks, XM-1, Standardization with Leopard II,undated + + + + + + 188 + 32 + Records, Defense, Tanks, XM-1, Working File,undated + + + + + + 188 + 33 + Records, Defense, Tanks, XM-1, Miscellaneous,undated + + + + + + 189 + 1 + Records, Defense, Tanks, XM-1, Meeting with General Baer,undated + + + + + + 189 + 2 + Records, Defense, Tanks, XM-1, Site Selection,undated + + + + + + 189 + 3 + Records, Defense, Union (Armed Forces),undated + + + + + + 189 + 4 + Records, Detente, General,undated + + + + + + 189 + 5 + Records, Detente, Soviet Position on...,undated + + + + + + 189 + 6 + Records, Detente, S.Res. 406 (3/76),1976 + + + + + + 189 + 7 + Records, Detente, Speech,undated + + + + + + 189 + 8 + Records, Ecology,undated + + + + + + 189 + 9 + Records, Europe, Baltic States,undated + + + + + + 189 + 10 + Records, Europe, Czechoslovakia,undated + + + + + + 189 + 11 + Records, Europe, Czechoslovakia, Dissidents, General,undated + + + + + + 189 + 12 + Records, Europe, Czechoslovakia, Dissidents, Soviet Jews,undated + + + + + + 189 + 13 + Records, Europe, Czechoslovakia, Dissidents, Valentyn Moroz,undated + + + + + + 189 + 14 + Records, Europe, Czechoslovakia, Foriegn Gift Parcels,undated + + + + + + 189 + 15 + Records, Europe, Spain - Friendship Treaty with US,undated + + + + + + 189 + 16 + Records, Executive Agreements,undated + + + + + + 189 + 17 + Records, Export Controls,undated + + + + + + 189 + 18 + Records, Export Import (EX-IM) Bank,undated + + + + + + 189 + 19 + Records, Foreign Aid, Economic Policy, Impact on Michigan,undated + + + + + + 189 + 20 + Records, Foreign Aid, Economic Policy, Senate Concurrent Resolution,undated + + + + + + 189 + 21 + Records, Foreign Aid, NATO,undated + + + + + + 189 + 22 + Records, Foreign Aid, Germany (West),undated + + + + + + 189 + 23 + Records, Foreign Aid, Italy - Political Update,undated + + + + + + 189 + 24 + Records, Foreign Aid, Finland,undated + + + + + + 189 + 25 + Records, Foreign Aid, Finland, General,undated + + + + + + 189 + 26 + Records, Foreign Aid, Finland, Resolution,undated + + + + + + 189 + 27 + Records, Foreign Aid, Finland, Icebreaker - Coast Guard,undated + + + + + + 189 + 28 + Records, Foreign Aid, France,undated + + + + + + 189 + 29 + Records, Foreign Aid, Portugal,undated + + + + + + 189 + 30 + Records, Foreign Aid, Scandanavia - Nuclear Free Zone,undated + + + + + + 189 + 31 + Records, Foreign Aid, Soviet Union,undated + + + + + + 189 + 32 + Records, Foreign Aid, Soviet Union, General,undated + + + + + + 189 + 33 + Records, Foreign Aid, Soviet Union, Defense,undated + + + + + + 189 + 34 + Records, Foreign Aid, Soviet Union, Defense, Killer Satellites,undated + + + + + + 189 + 35 + Records, Foreign Aid, Soviet Union, Defense, Naval,undated + + + + + + 189 + 36 + Records, Foreign Aid, Soviet Union, Defense, Strategic Weapons 66,undated + + + + + + 189 + 37 + Records, Foreign Aid, Soviet Union, Public Law 480,undated + + + + + + 189 + 38 + Records, Foreign Aid, Economic & Security, FY 1977,1977 + + + + + + 189 + 39 + Records, Foreign Aid, Foreign Assistance Appopration, FY 1978,1978 + + + + + + 189 + 40 + Records, Foreign Aid, International Financial Institutions (IFI), Authorization, FY 1978,1978 + + + + + + 189 + 41 + Records, Foreign Aid, International Financial Institutions (IFI), Authorization, FY 1979,1979 + + + + + + 189 + 42 + Records, Foreign Aid, Security Policy, Assistance, FY 1979,1979 + + + + + + 189 + 43 + Records, Foreign Aid, Security Policy, Authorization, FY 1978,1978 + + + + + + 189 + 44 + Records, Foreign Aid, Security Policy, Authorization, FY 1976 (vetoed),1976 + + + + + + 189 + 45 + Records, Foreign Aid, Security Policy, Military Sales,undated + + + + + + 189 + 46 + Records, Foreign Boycotts,undated + + + + + + 189 + 47 + Records, Foreign Policy, Bipartisanship, General,undated + + + + + + 189 + 48 + Records, Foreign Policy, Bipartisanship, Griffin,undated + + + + + + 189 + 49 + Records, Foreign Policy, Congressional Influence,undated + + + + + + 189 + 50 + Records, Foreign Policy, Congressional/Legislature Relations,undated + + + + + + 189 + 51 + Records, Foreign Relations, Authorization, FY 1979 (S. 3076),1979 + + + + + + 189 + 52 + Records, Foreign Relations, Authorization, FY 1978,1978 + + + + + + 189 + 53 + Records, Foreign Relations, State Dept. Appropation, FY 1977 (HR 14239),1977 + + + + + + 189 + 54 + Records, Freedom House,undated + + + + + + 189 + 55 + Records, Jefferson, Thomas,undated + + + + + + 189 + 56 + Records, Inter national Court of Justice,undated + + + + + + 189 + 57 + Records, Griffin, Bluebook Update,undated + + + + + + 189 + 58 + Records, Griffin, Miscellaneous (Speeches, etc.),undated + + + + + + 189 + 59 + Records, Human Rights - Miscellaneous (see also Freedom House),undated + + + + + + 189 + 60 + Records, Ikle, Fred C. (Director, ACDA) - Introduction, 7/1976 (Turner),1976 + + + + + + 189 + 61 + Records, Intelligence, Central Intelligence Agency (CIA),undated + + + + + + 189 + 62 + Records, Intelligence, Foreign Intelligence Surveillance Act, 1976 (S. 3197),1976 + + + + + + 189 + 63 + Records, Intelligence, Senate Oversight Committee,undated + + + + + + 189 + 64 + Records, Intelligence, Public Disclosure of Budget, 1977 (S.Res.207),1977 + + + + + + 189 + 65 + Records, Lobby, Greek,undated + + + + + + 189 + 66 + Records, Lobby, Israel, General,undated + + + + + + 189 + 67 + Records, Lobby, Israel, Letter of Support,1975 + + + + + + 189 + 68 + Records, Lobby, New Directions,undated + + + + + + 189 + 69 + Records, Missinng In Action (MIA), Michigan (see also by name),undated + + + + + + 189 + 70 + Records, Missinng In Action (MIA), Estes, Walter O.,undated + + + + + + 189 + 71 + Records, Mid/Near East, Arms Rac,undated + + + + + + 189 + 72 + Records, Mid/Near East, Camp David Summit,undated + + + + + + 189 + 73 + Records, Cyprus - Background,undated + + + + + + 189 + 74 + Records, Third Oceans, Policy Seminar, Griffin's Speech,undated + + + + + + 189 + 75 + Records, Third Oceans, Miscellaneous,undated + + + + + + 189 + 76 + Records, Far East Trip, 11, 1977, Conference Materials,1977 + + + + + + 189 + 77 + Records, Far East Trip, 11, 1977, Letters of Thanks,1977 + + + + + + 189 + 78 + Records, Far East Trip, 11, 1977, Orientation Kit,1977 + + + + + + 189 + 79 + Records, Oceans - Deep Seabed Minera; Resources Act (S.2053) August 1978,1978 + + + + + + 189 + 80 + Records, Human Rights and Belgrade - Speech Draft, 8/19/1978,1978 + + + + + + 189 + 81 + Records, Coalition for Peace through Strength,undated + + + + + + 189 + 82 + Records, Non-Nuclear Lance,undated + + + + + + 189 + 83 + Records, Terrorism (S. 2236),undated + + + + + + 190 + 1 + Records, Cruise Missiles,1977 + + + + + + 190 + 2 + Records, Foreign Policy - Letters and Statements,undated + + + + + + 190 + 3 + Records, Ocean Seminar Briefing Book, (2 vol.),1977 + + + + + + 190 + 4 + Records, Marianas,1975 + + + + + + 190 + 5 + Records, Mid/Near East, Cyprus,1975 + + + + + + 190 + 6 + Records, Mid/Near East, Egypt - Arms Sales,undated + + + + + + 190 + 7 + Records, Mid/Near East, Greece,undated + + + + + + 190 + 8 + Records, Mid/Near East, Iran - Arms Sales,undated + + + + + + 190 + 9 + Records, Mid/Near East, Israel, General,undated + + + + + + 190 + 10 + Records, Mid/Near East, Israel, RPG Record on Aid,undated + + + + + + 190 + 11 + Records, Mid/Near East, Jordan - Arms Sales,undated + + + + + + 190 + 12 + Records, Mid/Near East, Lebanon,undated + + + + + + 190 + 13 + Records, Mid/Near East, Senator's Trips,undated + + + + + + 190 + 14 + Records, Mid/Near East, Turkey, General,undated + + + + + + 190 + 15 + Records, Mid/Near East, Turkey, Aid,undated + + + + + + 190 + 16 + Records, Mid/Near East, Turkey, Arms Embargo ,1975 + + + + + + 190 + 17 + Records, Mid/Near East, Embargo Issues,undated + + + + + + 190 + 18 + Records, Military Construction, Appropriation, FY 1977 (HR 14235),1977 + + + + + + 190 + 19 + Records, Military Construction, Appropriation, FY 1976,1976 + + + + + + 190 + 20 + Records, Military Procurement - Appropriation, FY 1977, HR 14262, HR 12438,1977 + + + + + + 190 + 21 + Records, Department of Defense (DOD) - Appropriations (HR 7933),undated + + + + + + 190 + 22 + Records, Defense Authorization Bill, FY 1979 (S. 2571),1979 + + + + + + 190 + 23 + Records, Multinational Oil,undated + + + + + + 190 + 24 + Records, National Security Poll - Michigan,undated + + + + + + 190 + 25 + Records, North Atlantic Assembly - Briefing Book Copenhagen, Denmark,1975 + + + + + + 190 + 26 + Records, Warnke, Questions,undated + + + + + + 190 + 27 + Records, Warnke, Nominations (Director of ACDA and Chief SALT Negotiator),undated + + + + + + 190 + 28 + Records, Warnke, Briefing Book,undated + + + + + + 191 + 1 + Records, Nuclear, Assistance to Egypt and Israel,undated + + + + + + 191 + 2 + Records, Nuclear, Proliferation,undated + + + + + + 191 + 3 + Records, Nuclear, Laser Fusion, General,undated + + + + + + 191 + 4 + Records, Nuclear, Laser Fusion, KMS-fusion,undated + + + + + + 191 + 5 + Records, Nuclear, Exports, 7/1976 (S. 1439),1976 + + + + + + 191 + 6 + Records, Nuclear, International Atomic Energy Agency (IAEA),undated + + + + + + 191 + 7 + Records, Nuclear, Nuclear Energy Speech,undated + + + + + + 191 + 8 + Records, Oceans, Deep Seabed Mining (S. 713),undated + + + + + + 191 + 9 + Records, Oceans, John Norton Moore - Letters, testimony, etc.,undated + + + + + + 191 + 10 + Records, Oceans, International Environment: Weather Modification,undated + + + + + + 191 + 11 + Records, Oceans, Whales,undated + + + + + + 191 + 12 + Records, Oceans, UN Conference on the Law of the Sea, Geneva,1975 + + + + + + 191 + 13 + Records, Oceans, Law of the Sea,1977 + + + + + + 191 + 14 + Records, Oceans, Law of Sea - Univ of Virginia,undated + + + + + + 191 + 15 + Records, Oceans, Foreign Relations Authorization Bill, FY 1978 (S. 1190),1978 + + + + + + 191 + 16 + Records, Oceans, Memoranda, Committee,undated + + + + + + 191 + 17 + Records, Oceans, Memoranda, Turner (unclassified),undated + + + + + + 191 + 18 + Records, Oceans, National Security Policy - Hearings, 1/1977,1977 + + + + + + 191 + 19 + Records, Oceans, Proxy Letters,undated + + + + + + 191 + 20 + Records, Oceans, Visits by Foreign Leaders,undated + + + + + + 191 + 21 + Records, Speeches, Dropping the Torch - Vietnam, 3/1975,1975 + + + + + + 191 + 22 + Records, Speeches, Turkey/Cyprus, 5/1975,1975 + + + + + + 191 + 23 + Records, Speeches, Sinai Agreement,1975 + + + + + + 191 + 24 + Records, Speeches, Symposium, 3/1977,1977 + + + + + + 191 + 25 + Records, Speeches, Law of the Sea - Reviesed Negotiating Text,undated + + + + + + 191 + 26 + Records, Peace Corps - FY 1978 Authorization, 5/1977 (S. 1235),1977 + + + + + + 191 + 27 + Records, Political Prisoners,undated + + + + + + 191 + 28 + Records, Public Opinion,undated + + + + + + 191 + 29 + Records, Radio Free Europe - Radio Liberty (International Broadcasting),undated + + + + + + 191 + 30 + Records, Reagan, Ronald,undated + + + + + + 191 + 31 + Records, Republican Policy Comm. - Subcom. on Foreign Policy & Nat Security,undated + + + + + + 191 + 32 + Records, Security and Classification,undated + + + + + + 191 + 33 + Records, Security Clearances (Turner),undated + + + + + + 191 + 34 + Records, South America - Uraguay,undated + + + + + + 191 + 35 + Records, Senate Foreign Relations Committee (SFRC), Reorganization, 1/1977,1977 + + + + + + 191 + 36 + Records, Senate Foreign Relations Committee (SFRC), Background,undated + + + + + + 191 + 37 + Records, Senate Foreign Relations Committee (SFRC), Africa Subcommittee (see also subject file),undated + + + + + + 191 + 38 + Records, Senate Foreign Relations Committee (SFRC), Classification and Leaks, 10/1975,1975 + + + + + + 191 + 39 + Records, Senate Foreign Relations Committee (SFRC), Fishery Bill, 1/1976 (HR 200),1976 + + + + + + 192 + 1 + Records, Terrorism - Abu Daoud,undated + + + + + + 192 + 2 + Records, Terrorism -- S. 2236 (RPG Cosponsored),undated + + + + + + 192 + 3 + Records, Treaties, Abrogation of,undated + + + + + + 192 + 4 + Records, Treaties, Misc.,undated + + + + + + 192 + 5 + Records, Treaties, Montreal Protocols,1975 + + + + + + 192 + 6 + Records, Treaties, Treaties and International Agmts--, International Covenants on Human Rights (7/77),1977 + + + + + + 192 + 7 + Records, Treaties, Panama Canal (Misc.),undated + + + + + + 192 + 8 + Records, Treaties, Treaties and International Agmts--,Convention on Women's Rights,undated + + + + + + 192 + 9 + Records, Treaties, Treaty powers Resolution - Clark (May 76),1976 + + + + + + 192 + 10 + Records, Treaties, Threshold Nuclear Test and Peaceful Nuclear Explosion (9/77),1977 + + + + + + 192 + 11 + Records, China Trip -- Misc.,undated + + + + + + 192 + 12 + Records, United Nations Association,undated + + + + + + 192 + 13 + Records, United Nations,undated + + + + + + 192 + 14 + Records, U.N. -- Zionism/Racism,undated + + + + + + 192 + 15 + Records, U.S.S.R. Dissidents,undated + + + + + + 192 + 16 + Records, Vance, Cyrus R. -- Sec. of State (as of Jan. 1977),1977 + + + + + + 192 + 17 + Records, Vandenberg, Arthur (See also under: Foreign Policy),undated + + + + + + 192 + 18 + Records, Veterans -- Misc.,undated + + + + + + 192 + 19 + Records, Treaties -- Genoicde Convention (June 1977),1977 + + + + + + 192 + 20 + Records, Veterans, Veterans' and Survivors' Pension Improvement Act -- S. 2384 (Aug. 78),1978 + + + + + + 192 + 21 + Records, Veterans, Cemetary (Battle Creek),undated + + + + + + 192 + 22 + Records, Veterans, GI Bill Improvement Act (S. 457) Oct 77,1977 + + + + + + 192 + 23 + Records, War Powers Resolution PL 93-148,undated + + + + + + 192 + 24 + Records, Western Hemisphere, Canada,undated + + + + + + 192 + 25 + Records, Western Hemisphere, Canada - Pipeline Treaty (5/76),1976 + + + + + + 192 + 26 + Records, Western Hemisphere, Chile,undated + + + + + + 192 + 27 + Records, Western Hemisphere, Cuba - trade (Griffin Amendment to HR 6689, For. Rel. Auth, FY78, June 77),1977 + + + + + + 192 + 28 + Records, Western Hemisphere, Cuba,undated + + + + + + 192 + 29 + Records, Western Hemisphere, Latin America - general,undated + + + + + + 192 + 30 + Records, Western Hemisphere, Venezuela,undated + + + + + + 192 + 31 + Records, World Food Conference,undated + + + + + + 192 + 32 + Records, Young, Andrew -- UN Ambassador,undated + + + + + + 192 + 33 + Records, Youth for Understanding,undated + + + + + + 192 + 34 + Records, Panama Canal Briefing Book, Vol. 1, (folder 1, A-G),undated + + + + + + 192 + 35 + Records, Panama Canal Briefing Book, Vol. 1, (folder 2, H-J),undated + + + + + + 192 + 36 + Records, Panama Canal Briefing Book, Vol. 1, (folder 3, K-M),undated + + + + + + 192 + 37 + Records, Panama Canal Briefing Book, Vol. 2, (folder 1, Mc-S),undated + + + + + + 192 + 38 + Records, Panama Canal Briefing Book, Vol. 2, (folder 2, T-X),undated + + + + + + 192 + 39 + Records, National Health Insurance, Comparsion of proposals articles and clippings,undated + + + + + + 192 + 40 + Records, National Health Insurance, National Health Insurance (NHI),undated + + + + + + 192 + 41 + Records, National Health Insurance, Interest Groups,undated + + + + + + 192 + 42 + Records, Age Discrimination (ADEA),undated + + + + + + 192 + 43 + Records, Agriculture (General),undated + + + + + + 192 + 44 + Records, Amigo Wheelchair,undated + + + + + + 192 + 45 + Records, Health Insurance Notes, Legislative Initiatives in the 95th Congress,undated + + + + + + 193 + 1 + Records, Artists' Estate Taxes,undated + + + + + + 193 + 2 + Records, Auto Emissions,undated + + + + + + 193 + 3 + Records, Balanced Budget Amendment,undated + + + + + + 193 + 4 + Records, Cadavers,undated + + + + + + 193 + 5 + Records, Coal Strike,undated + + + + + + 193 + 6 + Records, Community services Admin.,undated + + + + + + 193 + 7 + Records, Day Care Centers,undated + + + + + + 193 + 8 + Records, Deferred Payment Plans (state interest),undated + + + + + + 193 + 9 + Records, Education, Education,undated + + + + + + 193 + 10 + Records, Food Stamp Program,undated + + + + + + 193 + 11 + Records, Garrison Diversion (N. Dakota),undated + + + + + + 193 + 12 + Records, Hew Appropriations,undated + + + + + + 193 + 13 + Records, Indians,undated + + + + + + 193 + 14 + Records, Meat Standards (Hot Dog Bill),undated + + + + + + 193 + 15 + Records, Minority Business,undated + + + + + + 193 + 16 + Records, National Driver Register,undated + + + + + + 193 + 17 + Records, Postal Service Strike,undated + + + + + + 193 + 18 + Records, FY 1979 Public Works App. Bill,undated + + + + + + 193 + 19 + Records, Redwood Expansion (S. 1976),1976 + + + + + + 193 + 20 + Records, Runaway Fathers,undated + + + + + + 193 + 21 + Records, School Age Parents,undated + + + + + + 193 + 22 + Records, "Sealed" Caruretor Regul.,undated + + + + + + 193 + 23 + Records, Senate Procedure,undated + + + + + + 193 + 24 + Records, Social Services (H.R. 7200),undated + + + + + + 193 + 25 + Records, Staff Allowances for Ford,undated + + + + + + 193 + 26 + Records, Taxes, Tax Revolt,undated + + + + + + 193 + 27 + Records, Taxes, Tuition Advance Plan,undated + + + + + + 193 + 28 + Records, Taxes, Tuition Tax Credits,undated + + + + + + 193 + 29 + Records, The Elderly (Problems, Etc.),undated + + + + + + 193 + 30 + Records, Endangered Species,undated + + + + + + 193 + 31 + Records, Erisa (Pension Reform),undated + + + + + + 193 + 32 + Records, Equal Empl. Opp. - union discrim.,undated + + + + + + 193 + 33 + Records, E.S.E.A.,undated + + + + + + 193 + 34 + Records, Farewell Speeches (1976),1976 + + + + + + 193 + 35 + Records, Farmer's Deduction for Land Cost, Focus: Hope,undated + + + + + + 193 + 36 + Records, Farmer's Deduction for Land Cost, Taxing Overseas Americans,undated + + + + + + 193 + 37 + Records, Farmer's Deduction for Land Cost, Capital Gains,undated + + + + + + 193 + 38 + Records, Farmer's Deduction for Land Cost, Reform,undated + + + + + + 193 + 39 + Records, Farmer's Deduction for Land Cost, Reform (Carter package),undated + + + + + + 193 + 40 + Records, Farmer's Deduction for Land Cost, Private Foundations (S. 2204),undated + + + + + + 193 + 41 + Records, Urban Programs,undated + + + + + + 193 + 42 + Records, Unemployment Comp.-- school EEs,undated + + + + + + 193 + 43 + Records, Steel Imports,undated + + + + + + 193 + 44 + Records, Tax, Indexation Background,undated + + + + + + 193 + 45 + Records, Tax, Indexation Amendment,undated + + + + + + 193 + 46 + Records, Tax, Reduction Act of 1978,1978 + + + + + + 193 + 47 + Records, Minimum Wage,undated + + + + + + 193 + 48 + Records, OHSA,undated + + + + + + 193 + 49 + Records, Workman's Comp.,undated + + + + + + 193 + 50 + Records, Drug Regulation (S. 2755),undated + + + + + + 193 + 51 + Records, Health/Medical Services, Emergency Medical Services,undated + + + + + + 193 + 52 + Records, Health/Medical Services, HMO Bill (S. 2534),undated + + + + + + 193 + 53 + Records, Health/Medical Services, Health Insurance for Unemployed Workers,undated + + + + + + 193 + 54 + Records, Health/Medical Services, Health Planning (S. 2410),undated + + + + + + 193 + 55 + Records, Health/Medical Services, Health Manpower,undated + + + + + + 193 + 56 + Records, Health/Medical Services, Hospital Cost Containment,undated + + + + + + 193 + 57 + Records, PSRO,undated + + + + + + 193 + 58 + Records, Reyes Syndrome,undated + + + + + + 193 + 59 + Records, Saccharin,undated + + + + + + 193 + 60 + Records, Health Planning -- general (no heading on this folder),undated + + + + + + 194 + 1 + Records, Great Lakes Region (Michigan and Surrounding Areas),undated + + + + + + 194 + 2 + Records, Milliken/Corps of Engineers - Lake Superior Barrels, Cargo Preference - Great Lakes,undated + + + + + + 194 + 3 + Records, Milliken/Corps of Engineers - Lake Superior Barrels, Barrel Dumping,undated + + + + + + 194 + 4 + Records, Milliken/Corps of Engineers - Lake Superior Barrels, Cost Equalization,undated + + + + + + 194 + 5 + Records, Milliken/Corps of Engineers - Lake Superior Barrels, Cross Village Harbor,undated + + + + + + 194 + 6 + Records, Milliken/Corps of Engineers - Lake Superior Barrels, Disaster Relief,undated + + + + + + 194 + 7 + Records, Milliken/Corps of Engineers - Lake Superior Barrels, Michigan Employment,undated + + + + + + 194 + 8 + Records, Milliken/Corps of Engineers - Lake Superior Barrels, Grand Traverse Legal Services,undated + + + + + + 194 + 9 + Records, Milliken/Corps of Engineers - Lake Superior Barrels, Grand Marais Harbor,undated + + + + + + 194 + 10 + Records, Milliken/Corps of Engineers - Lake Superior Barrels, Conference of Senators,undated + + + + + + 194 + 11 + Records, Milliken/Corps of Engineers - Lake Superior Barrels, Ecology,undated + + + + + + 194 + 12 + Records, Milliken/Corps of Engineers - Lake Superior Barrels, Water levels,undated + + + + + + 194 + 13 + Records, Milliken/Corps of Engineers - Lake Superior Barrels, Icebreakers (Coast Guard),undated + + + + + + 194 + 14 + Records, Job Corps Centers, Network,undated + + + + + + 194 + 15 + Records, Michigan OSHA Funding,undated + + + + + + 194 + 16 + Records, PBB, Canadian Jinports,undated + + + + + + 194 + 17 + Records, PBB, FDA – Michigan,undated + + + + + + 194 + 18 + Records, Sleeping Bear Dunes,1977 + + + + + + 194 + 19 + Records, Michigan Social Services Claims,undated + + + + + + 194 + 20 + Records, Solar Technology Institute,undated + + + + + + 194 + 21 + Records, Michigan and the Sunbelt,undated + + + + + + 194 + 22 + Records, St. Lawrence Seaway - Welland Canal,undated + + + + + + 194 + 23 + Records, Labor Law, General Labor Law,undated + + + + + + 194 + 24 + Records, Labor Law, Labor Law (two folders),undated + + + + + + 194 + 25 + Records, Labor Law, Management Abuses,undated + + + + + + 194 + 26 + Records, Labor Law, Labor Policy Memos,1977 + + + + + + 194 + 27 + Records, Labor Law, Tax issues,undated + + + + + + 194 + 28 + Records, Labor Law, Michigan,undated + + + + + + 194 + 29 + Records, Revenue Sharing - Fund Cutoffs,undated + + + + + + 194 + 30 + Records, SEMTA, Organized Crime Strike Force,undated + + + + + + 194 + 31 + Records, CETA,undated + + + + + + 194 + 32 + Records, Humphrey - Hawkins -- S. 50 (two folders),undated + + + + + + 194 + 33 + Records, Humphrey - Hawkins -- S. 50 (two folders),undated + + + + + + 194 + 34 + Records, Vendor Payments,undated + + + + + + 194 + 35 + Records, Vocational Rehab. (S. 2600),undated + + + + + + 194 + 36 + Records, Welfare Reform, Daedalus Enterprises, INC.,undated + + + + + + 194 + 37 + Records, Diamond Reo (PBGC),undated + + + + + + 194 + 38 + Records, Consumers Power/Dept. Edison,undated + + + + + + 194 + 39 + Records, Dow Chemical,undated + + + + + + 194 + 40 + Records, DPOA Case (EEOC),undated + + + + + + 195 + 1 + Records, Electrical Workers Affidavit,undated + + + + + + 195 + 2 + Records, Erisa School Board Case,undated + + + + + + 195 + 3 + Records, Fishing Rights,undated + + + + + + 195 + 4 + Records, FHA, Menominee,undated + + + + + + 195 + 5 + Records, FHA, Traverse City Loan Project,undated + + + + + + 195 + 6 + Records, Fitch Williams Case,undated + + + + + + 195 + 7 + Records, Georgia - Pacific,undated + + + + + + 195 + 8 + Records, Hastings Manufacturing,undated + + + + + + 195 + 9 + Records, Tapes of Griffin and Rosen,undated + + + + + + 195 + 10 + Records, Hayes - Albion Ex-Im Bank,undated + + + + + + 195 + 11 + Records, HUD Housing Tours,undated + + + + + + 195 + 12 + Records, Kelsey - Hayes (DOD),undated + + + + + + 195 + 13 + Records, Luedtke Engineering,undated + + + + + + 195 + 14 + Records, Ann Arbor VA Hosp. Physician,undated + + + + + + 195 + 15 + Records, Macomb Sewer Break,undated + + + + + + 195 + 16 + Records, Paraquat,undated + + + + + + 195 + 17 + Records, Sealed Power,undated + + + + + + 195 + 18 + Records, Steelcase,undated + + + + + + 195 + 19 + Records, Training for Trust (Focus: HOPE),undated + + + + + + 195 + 20 + Records, U.P. Land Sale (forestry),undated + + + + + + 195 + 21 + Records, Warner Vineyards (Wine Labeling),undated + + + + + + 195 + 22 + Records, Legislative Memos, etc.,undated + + + + + + 195 + 23 + Records, Co-sponsorships, Letters signed, etc.,undated + + + + + + 195 + 24 + Records, Memos, etc. - Received back from Senator Milliken,undated + + + + + + 195 + 25 + Records, Training For Trust (Focus: HOPE) Briefing Book,undated + + + + + + 195 + 26 + Records, Senator's Voting Record on Cutting Spending (1973-1978),1973-1978 + + + + + + 195 + 27 + Records, Nuclear Power/Nuclear Waste,undated + + + + + + 195 + 28 + Records, Ukranian Letter,undated + + + + + + 195 + 29 + Records, Levin Files, Levin on Taxes,undated + + + + + + 195 + 30 + Records, Levin Files, Debate Preparation,undated + + + + + + 195 + 31 + Records, Levin Files, Detroit Economic Club Speech,undated + + + + + + 195 + 32 + Records, Levin Files, Levin Ads,undated + + + + + + 195 + 33 + Records, Levin Files, Levin Biography,undated + + + + + + 195 + 34 + Records, Levin Files, Congressional Pay Raise,undated + + + + + + 195 + 35 + Records, Levin Files, Voting Attendance,undated + + + + + + 195 + 36 + Records, Levin Files, Where is Levin,undated + + + + + + 195 + 37 + Records, Levin Files, Kept Griffin Busy in 1977,1977 + + + + + + 195 + 38 + Records, Levin Files, Votes missed due to Speeches,undated + + + + + + 195 + 39 + Records, Levin Files, Levin Charges,undated + + + + + + 195 + 40 + Records, Democratic Platform and UAW Platform,undated + + + + + + 195 + 41 + Records, Memorandum (folder is not marked),undated + + + + + + 195 + 42 + Records, U.S. Representation Allowances November 19, 1975,1975 + + + + + + 196 + 1 + Records, Middle East, Trip - Nov. 1, 1976 (Briefing Book),1976 + + + + + + + 196 + 3 + Records, Middle East, Treaties Jan., 1978. DRAFT - Option paper,1978 + + + + + + 196 + 4 + Records, Middle East, Treaties - Draft Option Paper - Corrected master,undated + + + + + + 196 + 5 + Records, Foreign Relations Committee Manual, Notebooks, Nov. 4, 1976, Panama Canal,1976 + + + + + + 196 + 6 + Records, Sixth Circuit Judicial Conference Notebook, Folder 1,undated + + + + + + 196 + 7 + Records, Sixth Circuit Judicial Conference Notebook, Folder 2,undated + + + + + + 196 + 8 + Records, Criminal Code Certification (S. 1437),undated + + + + + + 196 + 9 + Records, Natural Gas Policy Act of 1977,1977 + + + + + + 196 + 10 + Records, Airline Noise Standards, Briefing Book in S. 3279,undated + + + + + + 196 + 11 + Records, Cross Lake Service Files of Railway Company, Folder 1,undated + + + + + + 196 + 12 + Records, Cross Lake Service Files of Railway Company, Folder 2,undated + + + + + + 196 + 13 + Records, Cross Lake Service Files of Railway Company, Folder 3,undated + + + + + + 196 + 14 + Records, Natural Gas Proposal, Briefing Book (Aug. 1978), Cargo Preference,1978 + + + + + + 196 + 15 + Records, Natural Gas Proposal, Briefing Book (Aug. 1978), Notebook,1978 + + + + + + 196 + 16 + Records, Natural Gas Proposal, Briefing Book (Aug. 1978), LNG,1978 + + + + + + 196 + 17 + Records, Housing, Amendments of 1978,1978 + + + + + + 196 + 18 + Records, Housing, Community Development Act 1978,1978 + + + + + + 196 + 19 + Records, Cargo Preference, Deep Seabed Mining (two folders),undated + + + + + + 196 + 20 + Records, Cargo Preference, Deep Seabed Mining (two folders),undated + + + + + + 197 + 1 + Records, Cargo Preference, Deep Seabed Mining (two folders),undated + + + + + + 197 + 2 + Records, Cargo Preference, Deep Seabed Mining (two folders),undated + + + + + + 197 + 3 + Records, Pooling Agreements/ Antitrust,undated + + + + + + 197 + 4 + Records, D.C. Representation,undated + + + + + + 197 + 5 + Records, Investment Costs in converting of coal,1978 + + + + + + 197 + 6 + Records, Mackinac Bridge Debt,undated + + + + + + 197 + 7 + Records, Motor Vehicle Regulatory Reform,undated + + + + + + 197 + 8 + Records, National Bank Act-Venture,undated + + + + + + 197 + 9 + Records, OT Retting S. 1185,undated + + + + + + 197 + 10 + Records, Panama Canal Treaty,undated + + + + + + 197 + 11 + Records, Possible Cosponsorship,undated + + + + + + 197 + 12 + Records, Recombinant DNA,undated + + + + + + 197 + 13 + Records, St. Lawrence Seaway,undated + + + + + + 197 + 14 + Records, Sleeping Bear Scenic Parkway,undated + + + + + + 197 + 15 + Records, TRIS,undated + + + + + + 197 + 16 + Records, Voter Initiative,undated + + + + + + 197 + 17 + Records, Wiretap S. 1566,undated + + + + + + 197 + 18 + Records, Busing Bill S.1651,undated + + + + + + 197 + 19 + Records, Child Pornography,undated + + + + + + 197 + 20 + Records, D.C. Convention Center,undated + + + + + + 197 + 21 + Records, Consumer Controversies Resolution Act, S.957,undated + + + + + + 197 + 22 + Records, Energy, Energy Matters,undated + + + + + + 197 + 23 + Records, Energy, General,undated + + + + + + 197 + 24 + Records, HUD - Proposed transfer of office to Detroit (Grand Rapids),undated + + + + + + 197 + 25 + Records, Great Lakes Guarantees,undated + + + + + + 197 + 26 + Records, Illegal Aliens,undated + + + + + + 197 + 27 + Records, Import Issues,undated + + + + + + 197 + 28 + Records, Interlock,undated + + + + + + 197 + 29 + Records, Law Review,undated + + + + + + 197 + 30 + Records, Legal Serivces Bill,undated + + + + + + 197 + 31 + Records, Air Cargo Deregulation,undated + + + + + + 197 + 32 + Records, Airbags,undated + + + + + + 197 + 33 + Records, Amateur Sports Act,undated + + + + + + 197 + 34 + Records, Antitrust Enforcement Act,undated + + + + + + 197 + 35 + Records, Banks - NOW,undated + + + + + + 197 + 36 + Records, Airline Regulatory Reform,undated + + + + + + 197 + 37 + Records, Product Liability (two folders),undated + + + + + + 197 + 38 + Records, Housing, General,undated + + + + + + 197 + 39 + Records, Housing, HUD/FHA/Detroit Scandal (clippings),undated + + + + + + 197 + 40 + Records, Bankruptcy Law revision,undated + + + + + + 197 + 41 + Records, Export/Import Bank Act,undated + + + + + + 197 + 42 + Records, Renegotiation Act,undated + + + + + + 197 + 43 + Records, Regulation Q,undated + + + + + + 197 + 44 + Records, Housing & Community Development,undated + + + + + + 197 + 45 + Records, Legislation,undated + + + + + + 197 + 46 + Records, Coop Bank,undated + + + + + + 197 + 47 + Records, Housing; low-income,undated + + + + + + 197 + 48 + Records, Truth in Lending Act,undated + + + + + + 197 + 49 + Records, Moving Forward Detroit,undated + + + + + + 197 + 50 + Records, N.Y.C. Loan Guarantee,undated + + + + + + 197 + 51 + Records, Civil Service,undated + + + + + + 197 + 52 + Records, Post Office,undated + + + + + + 197 + 53 + Records, Hatch Act, number 1,undated + + + + + + 197 + 54 + Records, Hatch Act, number 2,undated + + + + + + 197 + 55 + Records, Hatch Act, summary,undated + + + + + + 197 + 56 + Records, Computer Crime,undated + + + + + + 197 + 57 + Records, Postal Reorganization HR 8603,undated + + + + + + 198 + 1 + Records, Star Route Contracts,undated + + + + + + 198 + 2 + Records, Appropriations, Supplemental Appropriation,undated + + + + + + 198 + 3 + Records, Appropriations, Treasury Appropriation FY 1979,1979 + + + + + + 198 + 4 + Records, Carter's Wealfare Program,undated + + + + + + 198 + 5 + Records, Endangered Wilderness Act,undated + + + + + + 198 + 6 + Records, Forgein Surveillance,undated + + + + + + 198 + 7 + Records, Forest Timber Bill,undated + + + + + + 198 + 8 + Records, Hatch Act,undated + + + + + + 198 + 9 + Records, Interior Appropriation,undated + + + + + + 198 + 10 + Records, RPG Admt. to Postal Reform Bill (HR 8603), 94th Cong., 2nd Sess.,undated + + + + + + 198 + 11 + Records, Energy, Gas,undated + + + + + + 198 + 12 + Records, Energy, Coal Conservation,undated + + + + + + 198 + 13 + Records, Energy, Energy,undated + + + + + + 198 + 14 + Records, Energy, Oil Shale Bill,undated + + + + + + 198 + 15 + Records, Energy, Petroleum Marketing Practices Act,undated + + + + + + 198 + 16 + Records, Energy, Pipeline,undated + + + + + + 198 + 17 + Records, Energy, Gas Guzzler Tax,undated + + + + + + 198 + 18 + Records, Energy, Savers Keepers,undated + + + + + + 198 + 19 + Records, Energy, Small Hydro Plants,undated + + + + + + 198 + 20 + Records, Energy, Energy,undated + + + + + + 198 + 21 + Records, Energy, Alaska Natural Gas,undated + + + + + + 198 + 22 + Records, Energy, Natural Gas - Oil,undated + + + + + + 198 + 23 + Records, Energy, Energy Tax Bill,undated + + + + + + 198 + 24 + Records, Energy, Griffin on Deregulation: Oil & Natural,undated + + + + + + 198 + 25 + Records, Energy, Energy Conservation S. 2057,undated + + + + + + 198 + 26 + Records, Energy, Energy Conservation,undated + + + + + + 198 + 27 + Records, Energy, Finance Conservation,undated + + + + + + 198 + 28 + Records, Energy, Conservation Proposal,undated + + + + + + 198 + 29 + Records, Energy, Truck Fuel Economy,undated + + + + + + 198 + 30 + Records, Energy, Natural Gas Policy Act - "Clarifying New Gas",undated + + + + + + 198 + 31 + Records, Energy, Alaska Oil,undated + + + + + + 198 + 32 + Records, Energy, Auto Fuel Economy,undated + + + + + + 198 + 33 + Records, Energy, Bonds Laws: S1699,undated + + + + + + 198 + 34 + Records, Energy, Fuel Economy Hearings 7/12,undated + + + + + + 198 + 35 + Records, Energy, Michigan,undated + + + + + + 198 + 36 + Records, Energy, Republican Alternative,undated + + + + + + 198 + 37 + Records, Energy, Divestiture,undated + + + + + + 198 + 38 + Records, Energy, Natural Gas,undated + + + + + + 198 + 39 + Records, Energy, Rivers & Harbors S.3823,undated + + + + + + 198 + 40 + Records, Energy, Energy,1974 + + + + + + 198 + 41 + Records, Energy, Allocation of Canadian Crude Oil,undated + + + + + + 198 + 42 + Records, No-Fault Automobile Insurance, 1976-1977,1976-1977 + + + + + + 198 + 43 + Records, No-Fault Automobile Insurance, 1978.,1978 + + + + + + 198 + 44 + Records, No-Fault Automobile Insurance, undated,undated + + + + + + 198 + 45 + Records, No-Fault Automobile Insurance, notes, n.d.,undated + + + + + + 198 + 46 + Records, No-Fault Automobile Insurance, Steinburg Memos, n.d.,undated + + + + + + 198 + 47 + Records, Notations on Particular Legislative Issues, 1977-78,1977-1978 + + + + + + 199 + 1 + Records, Commerce Comm. Summaries,undated + + + + + + 199 + 2 + Records, Consumer Protection Agency,undated + + + + + + 199 + 3 + Records, FTC Improvements Act,undated + + + + + + 199 + 4 + Records, Great Lakes Icebreakers,undated + + + + + + 199 + 5 + Records, MARAD Authorization FY 78,1978 + + + + + + 199 + 6 + Records, State Martime Academics,undated + + + + + + 199 + 7 + Records, Commerce Comm. Tucker - Cab Nomination,undated + + + + + + 199 + 8 + Records, Airline Reform, March - June 1977,1977 + + + + + + 199 + 9 + Records, Airline Reform, July 1977,1977 + + + + + + 199 + 10 + Records, Airline Reform, August - October 1977,1977 + + + + + + 199 + 11 + Records, Airline Reform, undated,undated + + + + + + 199 + 12 + Records, Airline Reform, notes,undated + + + + + + 199 + 13 + Records, No Fault Insurance,undated + + + + + + 199 + 14 + Records, Products Liability,undated + + + + + + 199 + 15 + Records, Airline Bills,undated + + + + + + 199 + 16 + Records, US - Mexico Treaty - Penal Sentences & Act,undated + + + + + + 199 + 17 + Records, Ann Arbor Court,undated + + + + + + 199 + 18 + Records, Civil Rights Comm. authorization Act S. 1231,undated + + + + + + 199 + 19 + Records, Detroit Detention Center,undated + + + + + + 199 + 20 + Records, District of Columbia Bills,undated + + + + + + 199 + 21 + Records, Diversity Jurisdiction,undated + + + + + + 199 + 22 + Records, Exclusionary Rule,undated + + + + + + 199 + 23 + Records, Federal Magistrates Act, S. 1613,undated + + + + + + 199 + 24 + Records, Hyde Amendment,undated + + + + + + 199 + 25 + Records, Judicial Tenure Act,undated + + + + + + 199 + 26 + Records, Amtrak Authorization,undated + + + + + + 199 + 27 + Records, Bottle Legislation,undated + + + + + + 199 + 28 + Records, Cargo Preference,undated + + + + + + 199 + 29 + Records, Consumer Protection Act Bill S. 1262,undated + + + + + + 199 + 30 + Records, Amtrak Nominees,undated + + + + + + 199 + 31 + Records, Icebreakers - Coast Guard,undated + + + + + + 199 + 32 + Records, Merchant & Tourism,undated + + + + + + 199 + 33 + Records, Airline Noise Legislation,undated + + + + + + 199 + 34 + Records, Conrail,undated + + + + + + 199 + 35 + Records, FTC Amendments,undated + + + + + + 199 + 36 + Records, National Mass Transportation Assistance Act, S. 208,undated + + + + + + 199 + 37 + Records, Waterway Users Charges, Folder 1,undated + + + + + + 199 + 38 + Records, Waterway Users Charges, Folder 2,undated + + + + + + 199 + 39 + Records, Commerce - Inter-City Bus Transportation,undated + + + + + + 199 + 40 + Records, Michgian Judges - Constitutional Amendment,undated + + + + + + 199 + 41 + Records, Moonie,undated + + + + + + 199 + 42 + Records, Omnibus Judgeship,undated + + + + + + 199 + 43 + Records, Narcotics,undated + + + + + + 199 + 44 + Records, Prisons,undated + + + + + + 199 + 45 + Records, Public Officials Integrity Act, S. 555,undated + + + + + + 199 + 46 + Records, State Justice Appropriations,undated + + + + + + 199 + 47 + Records, Extra, S. 1437,undated + + + + + + 199 + 48 + Records, Bottle Bill,undated + + + + + + 199 + 49 + Records, Products Liability, S. 3317,undated + + + + + + 199 + 50 + Records, Automotive,undated + + + + + + 199 + 51 + Records, Great Lakes - Finnish Icebreakers, 94th,undated + + + + + + 199 + 52 + Records, Commerce - S. 776, Toxic Substances Control Act,undated + + + + + + 199 + 53 + Records, FCC - U.S. Court of Appeals (D.C. Cir.),undated + + + + + + 199 + 54 + Records, Railroad Strike,undated + + + + + + 199 + 55 + Records, TC - North Central Lease Problem,undated + + + + + + 200 + 1 + Records, Prison Construction Bill, S. 1245,undated + + + + + + 200 + 2 + Records, Privacy Act,undated + + + + + + 200 + 3 + Records, Busing,undated + + + + + + 200 + 4 + Records, Nomination of Carswell to Supreme Court,undated + + + + + + 200 + 5 + Records, Crime Bill S. 1 - Victions of Crime,undated + + + + + + 200 + 6 + Records, Bill S. 1437,undated + + + + + + 200 + 7 + Records, Women's Lobby, Inc.,undated + + + + + + 200 + 8 + Records, Airline Regulatory Reform,undated + + + + + + 200 + 9 + Records, Winter - Icebreakers 1977,undated + + + + + + 200 + 10 + Records, Upper Great Lakes Regional Commission 1972-75,1972-1975 + + + + + + 200 + 11 + Records, Coast Guard,undated + + + + + + 200 + 12 + Records, Martime ,1976 + + + + + + 200 + 13 + Records, Merchant Marine, Constitutional Subsides,1976 + + + + + + 200 + 14 + Records, Commerce/Lake Survey Center - transfer from Detroit to Rockville,undated + + + + + + 200 + 15 + Records, Great Lakes,undated + + + + + + 200 + 16 + Records, Waterway User Charges - S. 790 (Lock & dasm 26 at Alton),undated + + + + + + 200 + 17 + Records, Commerce, Bottlers,undated + + + + + + 200 + 18 + Records, Commerce, Off Track Betting,undated + + + + + + 200 + 19 + Records, Great Lakes - Water Level,undated + + + + + + 200 + 20 + Records, Commerce - Rail Road Safety 1976,1976 + + + + + + 200 + 21 + Records, Daylight Saving Time Legislation, 1976,1976 + + + + + + 200 + 22 + Records, Consumer Food,undated + + + + + + 200 + 23 + Records, New Detroit,1976 + + + + + + 200 + 24 + Records, Coal,undated + + + + + + 200 + 25 + Records, FEA,undated + + + + + + 200 + 26 + Records, Civil Rights - Attorney's Fees,undated + + + + + + 200 + 27 + Records, Gun Control,undated + + + + + + 200 + 28 + Records, Federal Detention Center,undated + + + + + + 200 + 29 + Records, Copyright,undated + + + + + + 200 + 30 + Records, Wiretaps,undated + + + + + + 200 + 31 + Records, Solar Energy,undated + + + + + + 200 + 32 + Records, Mich State - Criminal Sc.,undated + + + + + + 200 + 33 + Records, Supreme Court Admissions Ceremony,1975 + + + + + + 200 + 34 + Records, Hatch Act,undated + + + + + + 200 + 35 + Records, Pending,undated + + + + + + 200 + 36 + Records, Unification Church,undated + + + + + + 200 + 37 + Records, Consumer Product Safety - 1978,1978 + + + + + + 200 + 38 + Records, Labor S. Res. 302,undated + + + + + + 200 + 39 + Records, IRS - Taxes, Michigan Legislators,undated + + + + + + 200 + 40 + Records, Teamsters (G. Clark) S. Res. 302,undated + + + + + + 200 + 41 + Records, Pensions - Internal Revenue Code Tax Reform,undated + + + + + + 200 + 42 + Records, Public Financing,undated + + + + + + 200 + 43 + Records, Issues,undated + + + + + + 200 + 44 + Records, Action,undated + + + + + + 200 + 45 + Records, Warsaw Convention & Montreal Protocols,undated + + + + + + 200 + 46 + Records, Anti Terrorism Bill,undated + + + + + + 200 + 47 + Records, PCP,undated + + + + + + 200 + 48 + Records, Recombinant DNA Research,undated + + + + + + 200 + 49 + Records, Vets Poppy Program, Background,undated + + + + + + 200 + 50 + Records, Vets Poppy Program, Correspondence,1976 + + + + + + 200 + 51 + Records, Vets Poppy Program, Griffin Legislation, Notes,undated + + + + + + 200 + 52 + Records, Vets Poppy Program, Speeches & Drafts,undated + + + + + + 200 + 53 + Records, Community Service, Broadcasting of Mid - America, Inc.,undated + + + + + + 200 + 54 + Records, Senate Republican Conference (Ford Resolution),undated + + + + + + 200 + 55 + Records, ERA,undated + + + + + + 200 + 56 + Records, Exclusionary Rule,undated + + + + + + 201 + 1 + Records, Victims of Crime Legislation,undated + + + + + + 201 + 2 + Records, National Tourism Policy Study,undated + + + + + + 201 + 3 + Records, Prison Construction Bill - General, 1977-78,1977-1978 + + + + + + 201 + 4 + Records, Prison Construction Bill - Speeches,undated + + + + + + 201 + 5 + Records, Commerce Committee, Dear Colleague,undated + + + + + + 201 + 6 + Records, Energy Tax Bill, Gas Guzzler Issue,undated + + + + + + 201 + 7 + Records, Small Business Act (HR 11445),undated + + + + + + 201 + 8 + Records, Fuel Assistance,undated + + + + + + 201 + 9 + Records, Presidential Nominations,undated + + + + + + 201 + 10 + Records, Case Problems,undated + + + + + + 201 + 11 + Records, Judicial Merit Selection,undated + + + + + + 201 + 12 + Records, No Fault Automobile Insurance,undated + + + + + + 201 + 13 + Records, Mass Transit Bill, Case Problem, American Seating Co.,undated + + + + + + 201 + 14 + Records, Small Business Act, Minority Contracting,undated + + + + + + 201 + 15 + Records, Civil Rights of Institutionalized Persons (S 1393),undated + + + + + + 201 + 16 + Records, Ludington Ferry Case,undated + + + + + + 201 + 17 + Records, Miscellaneous Correspondence From Staff to,undated + + + + + + 201 + 18 + Records, President's Anti-Inflation Package,undated + + + + + + 201 + 19 + Records, Air Bags,undated + + + + + + 201 + 20 + Records, Agriculture,undated + + + + + + 201 + 21 + Records, Agriculture Policy,undated + + + + + + 201 + 22 + Records, World Food Problem,undated + + + + + + 201 + 23 + Records, Disaster Loans,undated + + + + + + 201 + 24 + Records, Meat Standards,undated + + + + + + 201 + 25 + Records, Sugar Stabilization Act,undated + + + + + + 201 + 26 + Records, Emergency Agricultural Legislation - 1978,1978 + + + + + + 201 + 27 + Records, Dole's "Flexible Parity" Bill,undated + + + + + + 201 + 28 + Records, American Agricultural Movement,undated + + + + + + 201 + 29 + Records, Agriculture Briefing Book,undated + + + + + + 201 + 30 + Records, Armed Services,undated + + + + + + 201 + 31 + Records, Sanguine, Seafarer, ELF,undated + + + + + + 201 + 32 + Records, Banking, Housing, and Urban Affairs,undated + + + + + + 201 + 33 + Records, Credit Unions,undated + + + + + + 201 + 34 + Records, Motto on Coins,undated + + + + + + 201 + 35 + Records, Economy,undated + + + + + + 201 + 36 + Records, Inflation,undated + + + + + + 201 + 37 + Records, Anti-New York City Bailout,undated + + + + + + 201 + 38 + Records, HUD Cut Offs of Com. Dev. Funds,undated + + + + + + 201 + 39 + Records, Federal Budget,1977 + + + + + + 201 + 40 + Records, 1st FY’79 Budget Resolution,1979 + + + + + + 201 + 41 + Records, Commerce,undated + + + + + + 201 + 42 + Records, PBB Problem in Michigan,undated + + + + + + 201 + 43 + Records, PBB Hearing Testimonies & Statements held in Michigan,undated + + + + + + 201 + 44 + Records, Metric System,undated + + + + + + 201 + 45 + Records, Truck Weights,undated + + + + + + 201 + 46 + Records, Non-Refundable Bottles & Cans,undated + + + + + + 201 + 47 + Records, Airport User Chargers,undated + + + + + + 201 + 48 + Records, Concorde SST – WD685,undated + + + + + + 201 + 49 + Records, S.2727, Amateur Sports Act of 1978,1978 + + + + + + 201 + 50 + Records, Pro Cargo Preference Mailing List,undated + + + + + + 201 + 51 + Records, Olympic Sub-Training Site (Northern Michigan University),undated + + + + + + 201 + 52 + Records, Coastal Zone Management Act,undated + + + + + + 202 + 1 + Records, Alaska Lands Legislation (4 folders),undated + + + + + + 202 + 2 + Records, Utilities,undated + + + + + + 202 + 3 + Records, Conservation Gas,undated + + + + + + 202 + 4 + Records, Environment,undated + + + + + + 202 + 5 + Records, Interior and Insular Affairs,undated + + + + + + 202 + 6 + Records, Reserve Mining,undated + + + + + + 202 + 7 + Records, Boat Discharge Standards,undated + + + + + + 202 + 8 + Records, Great Lakes,undated + + + + + + 202 + 9 + Records, Hooker Chemical,undated + + + + + + 202 + 10 + Records, Public Works,undated + + + + + + 202 + 11 + Records, Public Service Jobs,undated + + + + + + 202 + 12 + Records, Federal Aid Highway Act of 1978,1978 + + + + + + 202 + 13 + Records, Trade,undated + + + + + + 202 + 14 + Records, Sugar Industry,undated + + + + + + 202 + 15 + Records, Consumer Protection,undated + + + + + + 202 + 16 + Records, Communications,undated + + + + + + 202 + 17 + Records, Automobile Industry,undated + + + + + + 202 + 18 + Records, Automobile Air Bags,undated + + + + + + 202 + 19 + Records, Fuel Economy Standards for "Light Trucks" and Vans,undated + + + + + + 202 + 20 + Records, Transportation,undated + + + + + + 202 + 21 + Records, Mass Transit,undated + + + + + + 202 + 22 + Records, Independent Truckers,undated + + + + + + 202 + 23 + Records, S.S. Edmund Fitzgerald (Lillie),undated + + + + + + 202 + 24 + Records, Alaskan Pipeline,undated + + + + + + 202 + 25 + Records, Energy,undated + + + + + + 202 + 26 + Records, Pere Marquette River,undated + + + + + + 202 + 27 + Records, Africa,undated + + + + + + 202 + 28 + Records, Middle East,undated + + + + + + 202 + 29 + Records, Panama Canal,undated + + + + + + 202 + 30 + Records, 200 Mile Limit,undated + + + + + + 202 + 31 + Records, MIA's,undated + + + + + + 202 + 32 + Records, Government Affairs,undated + + + + + + 202 + 33 + Records, Government Operations,undated + + + + + + 202 + 34 + Records, Regulatory Reform,undated + + + + + + 202 + 35 + Records, Civil Service,undated + + + + + + 202 + 36 + Records, Money to Congressmen,undated + + + + + + 202 + 37 + Records, Helm's Hatch Act Mailing,undated + + + + + + 202 + 38 + Records, Post Office and Civil Service,undated + + + + + + 202 + 39 + Records, Postal Service,undated + + + + + + 202 + 40 + Records, Postal Service Legislation,undated + + + + + + 202 + 41 + Records, Labor,undated + + + + + + 202 + 42 + Records, Common Situs Picketing,undated + + + + + + 202 + 43 + Records, Labor Law Reform,undated + + + + + + 202 + 44 + Records, Minimum Wage Mailing,undated + + + + + + 202 + 45 + Records, Coal Strike,undated + + + + + + 202 + 46 + Records, Health,undated + + + + + + 202 + 47 + Records, Abortion,undated + + + + + + 202 + 48 + Records, Medical Malpractice Insurance,undated + + + + + + 202 + 49 + Records, Professional Standards Review Organization,undated + + + + + + 202 + 50 + Records, Food and Drug Administrations Ban on Saccharin,undated + + + + + + 202 + 51 + Records, AMIGO Wheelchair,undated + + + + + + 202 + 52 + Records, Education,undated + + + + + + 202 + 53 + Records, Student Financial Assistance,undated + + + + + + 202 + 54 + Records, National School Board Association,undated + + + + + + 202 + 55 + Records, Department of Education,undated + + + + + + 202 + 56 + Records, Meeting with Michigan Teachers Re: Collective Bargaining,undated + + + + + + 202 + 57 + Records, Welfare,undated + + + + + + 202 + 58 + Records, Social Services,undated + + + + + + 202 + 59 + Records, Focus: Hope,undated + + + + + + 202 + 60 + Records, Pensions,undated + + + + + + 203 + 1 + Records, Taxation,undated + + + + + + 203 + 2 + Records, Inflation Neutralizer,undated + + + + + + 203 + 3 + Records, IRS Revenue Procedure, Private Schools,undated + + + + + + 203 + 4 + Records, Tax Loss for PBB Losses,undated + + + + + + 203 + 5 + Records, Tariff on Timberman's Safety Garments,undated + + + + + + 203 + 6 + Records, Gas Guzzler Tax,undated + + + + + + 203 + 7 + Records, Social Security,undated + + + + + + 203 + 8 + Records, Steel Imports,undated + + + + + + 203 + 9 + Records, Specialty Steel Imports,undated + + + + + + 203 + 10 + Records, Mechanical Fastner Industry,undated + + + + + + 203 + 11 + Records, Foreign Relations,undated + + + + + + 203 + 12 + Records, United Nations,undated + + + + + + 203 + 13 + Records, Europe,undated + + + + + + 203 + 14 + Records, Crown of St. Stephen,undated + + + + + + 203 + 15 + Records, Soviet Union,undated + + + + + + 203 + 16 + Records, Asia,undated + + + + + + 203 + 17 + Records, Campaign Financing,undated + + + + + + 203 + 18 + Records, Election of President,undated + + + + + + 203 + 19 + Records, Indians,undated + + + + + + 203 + 20 + Records, Veterans Affairs,undated + + + + + + 203 + 21 + Records, G.I. Bill Amendments, S969 (Effects on CMU),1976 + + + + + + 203 + 22 + Records, Judiciary,undated + + + + + + 203 + 23 + Records, Crime,undated + + + + + + 203 + 24 + Records, Stars and Stripes Forever,undated + + + + + + 203 + 25 + Records, Obscenity and Pornography,undated + + + + + + 203 + 26 + Records, Criminal Justice Reform Act,undated + + + + + + 203 + 27 + Records, ERA Amendment,undated + + + + + + 203 + 28 + Records, Illegal Immigrants,undated + + + + + + 203 + 29 + Records, JFK Assassination,undated + + + + + + 203 + 30 + Records, Teamsters Investigation,undated + + + + + + 203 + 31 + Records, Merit Selection of Judges,undated + + + + + + 203 + 32 + Records, Martson Mail,undated + + + + + + 203 + 33 + Records, Gun Control,undated + + + + + + 203 + 34 + Records, Anti-Trust Enforcement Act,undated + + + + + + 203 + 35 + Records, Busing,undated + + + + + + 203 + 36 + Records, Government in the "Sunshine",undated + + + + + + 203 + 37 + Records, Kincheloe Air Force Base,undated + + + + + + 203 + 38 + Records, Kincheloe Hospital Project,undated + + + + + + 203 + 39 + Records, Kalkaska Petrochemical Project,undated + + + + + + 203 + 40 + Records, Sault Ste. Marie Indian Trust Lands,undated + + + + + + 203 + 41 + Records, Traverse City Grand Requests,undated + + + + + + 203 + 42 + Records, FAA Airport Towers, Traverse City and Benton Harbor,undated + + + + + + 203 + 43 + Records, Federal Aid to Education, 88th Congress (2 folders),undated + + + + + + 203 + 44 + Records, Federal Aid to Education, 88th Congress (2 folders),undated + + + + + + 203 + 45 + Records, Higher Education Data, 87th Congress,undated + + + + + + 203 + 46 + Records, Vocational Education,undated + + + + + + 203 + 47 + Records, Education and Labor Committee - Adam Clayton Powell, Chairman,undated + + + + + + 203 + 48 + Records, Higher Education, H.R. 6143- Conference,undated + + + + + + 203 + 49 + Records, Federal Aid to Education,1957 + + + + + + 203 + 50 + Records, Federal Aid to Education,1959 + + + + + + 203 + 51 + Records, Michigan Education Association,undated + + + + + + 203 + 52 + Records, Federal Aid to Education,1960 + + + + + + 203 + 53 + Records, School Construction Bill,1960 + + + + + + 203 + 54 + Records, Federal Aid to Education,1961-1962 + + + + + + 203 + 55 + Records, Federal Aid to Education,1959 + + + + + + 203 + 56 + Records, Education – General,1965 + + + + + + 203 + 57 + Records, Education, 89th Congress,undated + + + + + + 203 + 57 + Records, Elementary and Secondary Education Act,1965 + + + + + + 204 + 1 + Records, Elementary and Pre-School Child Development Act,1965 + + + + + + 204 + 2 + Records, Elementary and Secondary Education Act,1965 + + + + + + 204 + 3 + Records, Amendments to H.R. 2362,undated + + + + + + 204 + 4 + Records, Citizens for Freedom in Education,1963 + + + + + + 204 + 5 + Records, General University Extension Act (HR 1779),1963 + + + + + + 204 + 6 + Records, Subcommittee on Education (HR 4386), 1961,1961 + + + + + + 204 + 7 + Records, Select Subcommittee on Education,undated + + + + + + 204 + 8 + Records, Legislation for the Blind,1959 + + + + + + 204 + 9 + Records, School Children's Assistance Act (HR 9803),undated + + + + + + 204 + 10 + Records, Education (HR 12070),undated + + + + + + 204 + 11 + Records, Captioned Films for the Deaf, 89th Congress (S 2511) - 2 folders,undated + + + + + + 204 + 12 + Records, Captioned Films for the Deaf, 89th Congress (S 2511) - 2 folders,undated + + + + + + 204 + 13 + Records, General University Extension Act,1962 + + + + + + 204 + 14 + Records, Adult Basic Education,undated + + + + + + 204 + 15 + Records, Special Subcommittee on Education, 88th Congress - Edith Green, Chairman,undated + + + + + + 204 + 16 + Records, Older Americans Act,1964 + + + + + + 204 + 17 + Records, National Education Improvement Act, 88th Congress,undated + + + + + + 204 + 18 + Records, Library Services Act (HR 4879),undated + + + + + + 204 + 19 + Records, Youth Conservation Corps,undated + + + + + + 204 + 20 + Records, Library Services Bill,undated + + + + + + 204 + 21 + Records, Education (HR 9586),undated + + + + + + 204 + 22 + Records, Elementary and Secondary Education, 88th Congress - National Education Improvement Act - Correspondence,undated + + + + + + 204 + 23 + Records, Youth Employment Act (HR 1890) (HR 5131) - 2 folders,undated + + + + + + 204 + 24 + Records, Youth Employment Act (HR 1890) (HR 5131) - 2 folders,undated + + + + + + 204 + 25 + Records, Youth Employment Opportunities Act of 1961,1961 + + + + + + 204 + 26 + Records, Improvement of Educational Quality Act of 1962 (HR 10145),undated + + + + + + 204 + 27 + Records, Education and Labor Committee, 1961 (General Correspondence),undated + + + + + + 204 + 28 + Records, Higher Education Act of 1965,1965 + + + + + + 204 + 29 + Records, Higher Education Correspondence,undated + + + + + + 204 + 30 + Records, Conference Report, Higher Education,undated + + + + + + 204 + 31 + Records, Higher Education Conference (HR 9567), 89th Congress,undated + + + + + + 204 + 32 + Records, Republican Task Force on Education,undated + + + + + + 204 + 33 + Records, White House Conference on Education,1965 + + + + + + 204 + 34 + Records, Federal Aid to Higher Education, Correspondence,undated + + + + + + 204 + 35 + Records, Federal Aid to Higher Education, CMU Correspondence,undated + + + + + + 204 + 36 + Records, Higher Education, Mr. Griffin, Data,1965 + + + + + + 204 + 37 + Records, Vocational Rehabilitation Act Amendment of 1965,1965 + + + + + + 204 + 38 + Records, Education and Labor Committee - Proxies, Information Data, 1965,undated + + + + + + 204 + 39 + Records, General Data and Proxy Forms, 1961-1963,1961-1963 + + + + + + 204 + 40 + Records, Correctional Rehabilitation Study Act of 1965,1965 + + + + + + 204 + 41 + Records, Ad Hoc Subcommittee, Shared Time,undated + + + + + + 204 + 42 + Records, Vocational Rehabilitation (HR 5194),undated + + + + + + 204 + 43 + Records, Education and Labor Conference, Vocational Rehabilitation,undated + + + + + + 204 + 44 + Records, Education and Labor (HR 9587),undated + + + + + + 204 + 45 + Records, Juvenile Delinquency (PL 87-274),undated + + + + + + 204 + 46 + Records, National Defense Education Act, Miscellaneous,undated + + + + + + 204 + 47 + Records, National Defense Education Act, Correspondence,undated + + + + + + 204 + 48 + Records, National Defense Education Act, Loyalty Oath,undated + + + + + + 204 + 49 + Records, National Defense Education Act, Correspondence, 1961,1961 + + + + + + 204 + 50 + Records, National Defense Education Act, Administration,undated + + + + + + 204 + 51 + Records, National Defense Education Act, Administration, Disclaimer Oath,undated + + + + + + 204 + 52 + Records, Education and Labor Committee - Student Loan Program, Statements, Data,undated + + + + + + 205 + 1 + Records, National Defense Education Act, 1961,1961 + + + + + + 205 + 2 + Records, National Education Act - Legislative History, 1958-1962,1958-1962 + + + + + + 205 + 3 + Records, National Education Act, Correspondence,undated + + + + + + 205 + 4 + Records, National Defense Education Act Amendments, 1964,1964 + + + + + + 205 + 5 + Records, Griffin NDEA,undated + + + + + + 205 + 6 + Records, Great Lakes Water Diversion Data,undated + + + + + + 205 + 7 + Records, Rivers and Harbors, Great Lakes Water Level,undated + + + + + + 205 + 8 + Records, Great Lakes Correspondence,undated + + + + + + 205 + 9 + Records, Rivers and Harbors, General,undated + + + + + + 205 + 10 + Records, Arcadia Harbor,undated + + + + + + 205 + 11 + Records, Frankfort Harbor,undated + + + + + + 205 + 12 + Records, Rivers and Harbors Projects - Miscellaneous, 9th District Mich.,undated + + + + + + 205 + 13 + Records, Grand Traverse Bay - Traverse City Harbor,undated + + + + + + 205 + 14 + Records, Grand Traverse Bay - Greilickville Harbor,undated + + + + + + 205 + 15 + Records, Holland Harbor,undated + + + + + + 205 + 16 + Records, Leland Harbor, 1963 - 2 folders,1963 + + + + + + 205 + 17 + Records, Leland Harbor, 1963 - 2 folders,1963 + + + + + + 205 + 18 + Records, Ludington Harbor,undated + + + + + + 205 + 19 + Records, Manistee Harbor,undated + + + + + + 205 + 20 + Records, Manistee Harbor Correspondence,undated + + + + + + 205 + 21 + Records, Manistee Harbor Data,undated + + + + + + 205 + 22 + Records, Muskegon Harbor, 1962-1965,1962-1965 + + + + + + 205 + 23 + Records, Muskegon Harbor,undated + + + + + + 205 + 24 + Records, Northport Harbor,undated + + + + + + 205 + 25 + Records, Pentwater Harbor,undated + + + + + + 205 + 26 + Records, Saugatuck Harbor,undated + + + + + + 205 + 27 + Records, White Lake Harbor,undated + + + + + + 205 + 28 + Records, Miscellaneous Materials on Cargo Preference,undated + + + + + + 205 + 29 + Records, Miscellaneous Materials on Air Bags - 3 folders,undated + + + + + + 205 + 30 + Records, Miscellaneous Materials on Air Bags - 3 folders,undated + + + + + + 205 + 31 + Records, Miscellaneous Materials on Air Bags - 3 folders,undated + + + + + + + 206 + 2 + Records, Supplementary Material (S 276),undated + + + + + + 206 + 3 + Records, Throw Away Bottles,undated + + + + + + 206 + 4 + Records, Airline Deregulation,undated + + + + + + 206 + 5 + Records, Air Bags - 6 folders,undated + + + + + + 206 + 6 + Records, Air Bags - Consumer Subcommittee Action,undated + + + + + + 206 + 7 + Records, Air Bags - VW Passive Belt,undated + + + + + + 206 + 8 + Records, Miscellaneous Materials on Energy,undated + + + + + + 206 + 9 + Records, Labor Miscellaneous,undated + + + + + + 206 + 10 + Records, Clean Air Act Amendments, 1975-1976 – 6 folders,1975-1976 + + + + + + 206 + 11 + Records, Common Situs Picketing,1977 + + + + + + 206 + 12 + Records, Public Works Bill,undated + + + + + + 206 + 13 + Records, Public Works Bill,1977 + + + + + + 206 + 14 + Records, Conscience Amendment to National Labor Relations Act,undated + + + + + + 206 + 15 + Records, Clean Air,undated + + + + + + 206 + 16 + Records, Labor, Common Situs Picketing,undated + + + + + + 206 + 17 + Records, Agriculture,undated + + + + + + 206 + 18 + Records, Michigan General,undated + + + + + + 206 + 19 + Records, Michigan Strawberry Council, Strawberry Grower Assn.,1961 + + + + + + 206 + 20 + Records, Michigan National Accelerator Laboratory,1965 + + + + + + 206 + 21 + Records, Michigan - Manpower Development and Training Act,undated + + + + + + 206 + 22 + Records, University of Michigan, 150th Anniversary,undated + + + + + + 206 + 23 + Records, Central Michigan University,undated + + + + + + 206 + 24 + Records, Muskegon, Brunswick Strike,undated + + + + + + 206 + 25 + Records, Muskegon, Norge Plant Closing, Correspondence,1961 + + + + + + 206 + 26 + Records, Muskegon, Norge Plant Closing,1961 + + + + + + 206 + 27 + Records, Muskegon Heights, City of,undated + + + + + + 206 + 28 + Records, Muskegon, City of, General,undated + + + + + + 206 + 29 + Records, Michigan Politics, Senatorial,1959 + + + + + + 206 + 30 + Records, Michigan Politics, Gunaca Case,undated + + + + + + 206 + 31 + Records, Michigan Constitutional Convention,undated + + + + + + 206 + 32 + Records, Constitutional Convention Clippings,undated + + + + + + 206 + 33 + Records, Michigan Constitutional Convention,1962 + + + + + + 206 + 34 + Records, Michigan Redistricting,undated + + + + + + 206 + 35 + Records, Michigan State Legislature,undated + + + + + + 206 + 36 + Records, Michigan State Government, Agencies,undated + + + + + + 206 + 37 + Records, Michigan State Department of Social Welfare,undated + + + + + + 206 + 38 + Records, Michigan Civil Rights Act,1965 + + + + + + 206 + 39 + Records, Michigan Agriculture,undated + + + + + + 206 + 40 + Records, Michigan Foreign Trade Interests,undated + + + + + + 206 + 41 + Records, Michigan Industrial Climate,undated + + + + + + 206 + 42 + Records, Michigan State Chamber of Commerce,1961-1964 + + + + + + 206 + 43 + Records, Michigan Water Resources Commission, Water Pollution,undated + + + + + + 206 + 44 + Records, Michigan General Statistical Information,undated + + + + + + 207 + 1 + Records, Michigan Society for Mental Health,undated + + + + + + 207 + 2 + Records, Municipal Projects,undated + + + + + + 207 + 3 + Records, State Bar Association,1958 + + + + + + 207 + 4 + Records, State Farm Bureau,1966 + + + + + + 207 + 5 + Records, Archie Farm Bureau Group,1963 + + + + + + 207 + 6 + Records, State Highway Programs, Correspondence,1956-1966 + + + + + + 207 + 7 + Records, State Highway Programs, Data,1965 + + + + + + 207 + 8 + Records, Medical Care Program,undated + + + + + + 207 + 9 + Records, Hospital for Mentally Retarded,undated + + + + + + 207 + 10 + Records, Michigan Tax Structure,undated + + + + + + 207 + 11 + Records, Department of Conservation,1963-1966 + + + + + + 207 + 12 + Records, Aid to Dependent Children,undated + + + + + + 207 + 13 + Records, Manpower and Development Training Act,undated + + + + + + 207 + 14 + Records, Gemini 4 Spacecraft,1965 + + + + + + 207 + 15 + Records, Benzie County Information,undated + + + + + + 207 + 16 + Records, Benzie County, City of Frankfort,undated + + + + + + 207 + 17 + Records, Proposed Reapportionment for Michigan,undated + + + + + + 207 + 18 + Records, Michigan Redistricting - 2 folders,undated + + + + + + 207 + 19 + Records, Michigan Redistricting - 2 folders,undated + + + + + + 207 + 20 + Records, Grand Traverse County Information,undated + + + + + + 207 + 21 + Records, Lake County Information,undated + + + + + + 207 + 22 + Records, Mason County,undated + + + + + + 207 + 23 + Records, Muskegon County,undated + + + + + + 207 + 24 + Records, Newaygo County,undated + + + + + + 207 + 25 + Records, Oceana County,undated + + + + + + 207 + 26 + Records, Michigan Governors,1963-1965 + + + + + + 207 + 27 + Records, Michigan State Society,undated + + + + + + 207 + 28 + Records, Michigan Week,undated + + + + + + 207 + 29 + Records, International Cooperation Subcommittee, Laos,undated + + + + + + 207 + 30 + Records, Trip to Europe, Correspondence,1962 + + + + + + 207 + 31 + Records, Trip to Europe, Data,1962 + + + + + + 207 + 32 + Records, Trip to Europe, Publicity,1962 + + + + + + 207 + 33 + Records, Latin America Trip, Subcommittee,1961 + + + + + + 207 + 34 + Records, Publicity - Trip to Europe,undated + + + + + + 207 + 35 + Records, Department of Urban Affairs Correspondence,undated + + + + + + 207 + 36 + Records, Foreign Operations and Government Information Subcommittee (3 folders),undated + + + + + + 207 + 37 + Records, Foreign Operations and Government Information Subcommittee (3 folders),undated + + + + + + 207 + 38 + Records, Foreign Operations and Government Information Subcommittee (3 folders),undated + + + + + + 207 + 39 + Records, Reno Highway Hearing,undated + + + + + + 207 + 40 + Records, Reorganization Plan #5,1961 + + + + + + 207 + 41 + Records, Department of Urban Affairs (HR 8429),undated + + + + + + 207 + 42 + Records, Reno Hearings,1959 + + + + + + 207 + 43 + Records, Caribbean Trip,1960 + + + + + + 207 + 44 + Records, Mexico Study Trip (Honduras, W. Indies, Puerto Rico),1959 + + + + + + 207 + 45 + Records, Arts and Humanities Correspondence,undated + + + + + + 207 + 46 + Records, Polygraph Hearings - 3 folders,1964 + + + + + + 207 + 47 + Records, Polygraph Hearings - 3 folders,1964 + + + + + + 207 + 48 + Records, Polygraph Hearings - 3 folders,1964 + + + + + + 207 + 49 + Records, Government Operations,1965 + + + + + + 207 + 50 + Records, Foreign Operations and Government Information,undated + + + + + + 207 + 51 + Records, Reorganization Plan #3,undated + + + + + + 207 + 52 + Records, Government Operations, Moss Subcommittee,undated + + + + + + 207 + 53 + Records, Moss Subcommittee, Freedom of Information,undated + + + + + + 207 + 54 + Records, Government Operations Committee, Data,undated + + + + + + 207 + 55 + Records, Government Operations, Railroad Safety,undated + + + + + + 207 + 56 + Records, Government Operations, Control of Population Growth,undated + + + + + + 207 + 57 + Records, Government Operations, Concessions National Park,undated + + + + + + 207 + 58 + Records, Government Operations, Judicial Review of Administration,undated + + + + + + 207 + 59 + Records, Government Operations, Payments-in-lieu of Taxes,undated + + + + + + 208 + 1 + Records, Foreign Operations and Government Information Subcommittee,undated + + + + + + 208 + 2 + Records, Lobbying by Government Agencies,undated + + + + + + 208 + 3 + Records, Government Operations, Correspondence,undated + + + + + + 208 + 4 + Records, Department of Housing and Urban Development (HR 6927),undated + + + + + + 208 + 5 + Records, Government Operations, General,1961 + + + + + + 208 + 6 + Records, Administration Committee,undated + + + + + + 208 + 7 + Records, Agriculture Committee, General,undated + + + + + + 208 + 8 + Records, Migratory Labor Correspondence,undated + + + + + + 208 + 9 + Records, Farm Bill, Griffin Amendment,1962 + + + + + + 208 + 10 + Records, Feed Grains (HR 4997) Griffin Amendment,undated + + + + + + 208 + 11 + Records, Farm Program, Correspondence,1965 + + + + + + 208 + 12 + Records, Joint Committee on Organization of Congress - 4 folders,undated + + + + + + 208 + 13 + Records, Joint Committee on Organization of Congress - 4 folders,undated + + + + + + 208 + 14 + Records, Joint Committee on Organization of Congress - 4 folders,undated + + + + + + 208 + 15 + Records, Joint Committee on Organization of Congress - 4 folders,undated + + + + + + 208 + 16 + Records, Appropriations Committee, General,undated + + + + + + 208 + 17 + Records, Armed Services Committee, General,undated + + + + + + 208 + 18 + Records, Armed Services Committee, Procurement,undated + + + + + + 208 + 19 + Records, Banking and Currency Committee, Fishing,undated + + + + + + 208 + 20 + Records, Industry,1966 + + + + + + 208 + 21 + Records, Banking and Currency Committee, Housing and Urban Development,1965 + + + + + + 208 + 22 + Records, Banking and Currency Committee, General,undated + + + + + + 208 + 23 + Records, District of Columbia Committee,undated + + + + + + 208 + 24 + Records, Discharge Petition,undated + + + + + + 208 + 25 + Records, Foreign Affairs Committee, Foreign Aid, Correspondence,undated + + + + + + 208 + 26 + Records, Foreign Affairs Committee, General,undated + + + + + + 208 + 27 + Records, House Administration Committee, General,undated + + + + + + 208 + 28 + Records, House Administration Committee, Mississippi Election,undated + + + + + + 208 + 29 + Records, Interior and Insular Affairs Committee,undated + + + + + + 208 + 30 + Records, Interstate and Foreign Commerce, General,undated + + + + + + 208 + 31 + Records, Judiciary Committee, General,undated + + + + + + 208 + 32 + Records, Judiciary, Prayer Correspondence,1965 + + + + + + 208 + 33 + Records, Judiciary, Immigration Laws, Correspondence,undated + + + + + + 208 + 34 + Records, Judiciary, Immigration Laws, Proposed Changes,1964 + + + + + + 208 + 35 + Records, Judiciary, Congressional and Legislative Apportionment,undated + + + + + + 208 + 36 + Records, Judiciary, Presidential Inability, Vice Presidential Vacancy,undated + + + + + + 208 + 37 + Records, Sunday Voting,undated + + + + + + 208 + 38 + Records, Judiciary, Right to Vote,undated + + + + + + 208 + 39 + Records, Judiciary, Right to Vote, Correspondence,undated + + + + + + 209 + 1 + Records, Judiciary, Truth in Packaging - 2 folders,undated + + + + + + 209 + 2 + Records, Judiciary, Truth in Packaging - 2 folders,undated + + + + + + 209 + 3 + Records, Judiciary, Four Year Term for Members, Correspondence,undated + + + + + + 209 + 4 + Records, Judiciary, Electoral College, Election of President,undated + + + + + + 209 + 5 + Records, Merchant Marine and Fisheries,undated + + + + + + 209 + 6 + Records, Public Health Hospitals,undated + + + + + + 209 + 7 + Records, Post Office and Civil Service,undated + + + + + + 209 + 8 + Records, Post Office and Civil Service, Congressional Pay Raise,undated + + + + + + 209 + 9 + Records, Post Office and Civil Service, General,undated + + + + + + 209 + 10 + Records, Public Works, General,undated + + + + + + 209 + 11 + Records, Public Works, Water Pollution Act,undated + + + + + + 209 + 12 + Records, Public Works, Mackinac Bridge,undated + + + + + + 209 + 13 + Records, Billboard Legislation (HR 8489),undated + + + + + + 209 + 14 + Records, Rules Committee, General,undated + + + + + + 209 + 15 + Records, Rules Committee (H Res 53) - Un-American Activities Committee - 2 folders,undated + + + + + + 209 + 16 + Records, Rules Committee (H Res 53) - Un-American Activities Committee - 2 folders,undated + + + + + + 209 + 17 + Records, Science and Astronautics Committee, General,undated + + + + + + 209 + 18 + Records, Small Business Committee,undated + + + + + + 209 + 19 + Records, Un-American Activities,undated + + + + + + 209 + 20 + Records, Un-American Activities - Data,undated + + + + + + 209 + 21 + Records, Un-American Activities, Operation Abolition,undated + + + + + + 209 + 22 + Records, Veterans Affairs Committee,undated + + + + + + 209 + 23 + Records, Veterans Affairs Committee, Closing of VA Hospital,undated + + + + + + 209 + 24 + Records, Ways and Means, Social Security Correspondence,undated + + + + + + 209 + 25 + Records, Ways and Means, General,undated + + + + + + 209 + 26 + Records, Ways and Means, Excise Taxes, 1964-1965,1964-1965 + + + + + + 209 + 27 + Records, Ways and Means, Anti-Dumping Act,undated + + + + + + 209 + 28 + Records, Ways and Means, Herlong-Baker,undated + + + + + + 209 + 29 + Records, Ways and Means, Herlong-Baker, Data,undated + + + + + + 209 + 30 + Records, Ways and Means, Auto Excise Tax,undated + + + + + + 209 + 31 + Records, Ways and Means, State Taxing Power,undated + + + + + + 209 + 32 + Records, Ways and Means, Dodd Anti-Gun Bill,undated + + + + + + 209 + 33 + Records, Ways and Means, Firearms,undated + + + + + + 210 + 1 + Records, Ways and Means, Medicare,1965 + + + + + + 210 + 2 + Records, Eldercare Act (HR 3727),undated + + + + + + 210 + 3 + Records, Ways and Means, Medicare, Against,undated + + + + + + 210 + 4 + Records, Ways and Means, General,1962 + + + + + + 210 + 5 + Records, Ways and Means, Townsend Plan,undated + + + + + + 210 + 6 + Records, Ways and Means, Unemployment,undated + + + + + + 210 + 7 + Records, Ways and Means, Unemployment Compensation,undated + + + + + + 210 + 8 + Records, Ways and Means, Trade Expansion Correspondence,undated + + + + + + 210 + 9 + Records, Ways and Means, Unemployment Compensation, Correspondence,undated + + + + + + 210 + 10 + Records, Senate Race Correspondence,1966 + + + + + + 210 + 11 + Records, Education and Labor, Ad Hoc Subcommittee, Poverty, Correspondence,undated + + + + + + 210 + 12 + Records, Education and Labor, Economic Operation Amendments (HR 8283),1965 + + + + + + 210 + 13 + Records, Education and Labor, War on Poverty, Examples,1965 + + + + + + 210 + 14 + Records, Education and Labor, Ad Hoc Subcommittee, Poverty War Program,1964 + + + + + + 210 + 15 + Records, Ad Hoc Subcommittee, Poverty, Data, Fair Labor Standards Amendments - 2 folders,1965 + + + + + + 210 + 16 + Records, Ad Hoc Subcommittee, Poverty, Data, Fair Labor Standards Amendments - 2 folders,1965 + + + + + + 210 + 17 + Records, Ad Hoc Subcommittee, Poverty, Data, Minimum Wage,1965 + + + + + + 210 + 18 + Records, Ad Hoc Subcommittee, Poverty, Data, Labor (HR 5690),1965 + + + + + + 210 + 19 + Records, Ad Hoc Subcommittee, Poverty, Data, Labor, Correspondence (HR 8259),1965 + + + + + + 210 + 20 + Records, Ad Hoc Subcommittee, Poverty, Data, War on Poverty, Correspondence, 1965Labor (HR 8944),1965 + + + + + + 210 + 21 + Records, Ad Hoc Subcommittee, Poverty, Data, National Labor Relations Board,1965 + + + + + + 210 + 22 + Records, Ad Hoc Subcommittee, Poverty, Data, Education and Labor Committee, General,1965 + + + + + + 210 + 23 + Records, Ad Hoc Subcommittee, Poverty, Data, Service Contracts, 1965 (HR 10238),1965 + + + + + + 210 + 24 + Records, Ad Hoc Subcommittee, Poverty, Data, Service Contracts Act (HR 6088),1963 + + + + + + 210 + 25 + Records, Sleeping Bear Dunes, Correspondence (HR 2400),undated + + + + + + 210 + 26 + Records, Sleeping Bear Dunes, Letters from 9th District,undated + + + + + + 210 + 27 + Records, Sleeping Bear Dunes, Letters from 9th District,undated + + + + + + 210 + 28 + Records, Sleeping Bear Dunes, Clippings,undated + + + + + + 211 + 1 + Records, Sleeping Bear Dunes, Correspondence,undated + + + + + + 211 + 2 + Records, Miscellaneous Materials on Sleeping Bear Dunes,undated + + + + + + 211 + 3 + Records, Sleeping Bear Dunes, Data Introduced by Mr. Griffin,undated + + + + + + 211 + 4 + Records, Sleeping Bear Dunes, Correspondence (S 936),undated + + + + + + 211 + 5 + Records, Sleeping Bear Dunes, Trip to Traverse City, Hearings,undated + + + + + + 211 + 6 + Records, Other Park Bills,undated + + + + + + 211 + 7 + Records, Sleeping Bear Dunes, Data (S 936),undated + + + + + + 211 + 8 + Records, Sleeping Bear Dunes, Data,1965-1966 + + + + + + 211 + 9 + Records, Sleeping Bear Dunes, Letters,1965 + + + + + + 211 + 10 + Records, Sleeping Bear Dunes, Data, Senate Passed Bill,undated + + + + + + 212 + 1 + Records, Sleeping Bear Dunes, Office File (S 792),undated + + + + + + 212 + 2 + Records, The Cain Incident,undated + + + + + + 212 + 3 + Records, Sleeping Bear Dunes (S 792),1963 + + + + + + 212 + 4 + Records, Sleeping Bear Dunes, Correspondence,1962 + + + + + + 212 + 5 + Records, Sleeping Bear Dunes, Correspondence, State Passed Bill,undated + + + + + + 212 + 6 + Records, Sleeping Bear Dunes,1965 + + + + + + 212 + 7 + Records, Isle Royale National Park, National Park Service,1964 + + + + + + 213 + 1 + Records, Landrum - Griffin Act: Background Information,undated + + + + + + 213 + 2 + Records, Landrum - Griffin Act: Background Information - Notebook,undated + + + + + + 213 + 3 + Records, Landrum - Griffin Act: Legislation,undated + + + + + + 213 + 4 + Records, Landrum - Griffin Act: Notebook,undated + + + + + + 213 + 5 + Records, Landrum - Griffin Act: Correspondence - Letters - 2 folders,undated + + + + + + 213 + 6 + Records, Landrum - Griffin Act: Correspondence - Letters - 2 folders,undated + + + + + + 213 + 7 + Records, Landrum - Griffin Act: Correspondence - Telegrams - 2 folders,undated + + + + + + 213 + 8 + Records, Landrum - Griffin Act: Correspondence - Telegrams - 2 folders,undated + + + + + + 213 + 9 + Records, Landrum - Griffin Act: Correspondence – Postcards,undated + + + + + + 214 + 1 + Records, Interstate and Foreign Commerce Committee, Railroad Dispute - 2 folders,undated + + + + + + 214 + 2 + Records, Interstate and Foreign Commerce Committee, Railroad Dispute - 2 folders,undated + + + + + + 214 + 3 + Records, Interstate and Foreign Commerce Committee (HR 4700-01),undated + + + + + + 214 + 4 + Records, Interstate and Foreign Commerce Committee, Quality Stabilization,1963 + + + + + + 214 + 5 + Records, Interstate and Foreign Commerce Committee, Hospital and Medical Facilities,undated + + + + + + 214 + 6 + Records, Interstate and Foreign Commerce Committee, cigarette Smoking and Advertising,undated + + + + + + 214 + 7 + Records, Interstate and Foreign Commerce Committee, General,undated + + + + + + 214 + 8 + Records, Interstate and Foreign Commerce Committee, Firearms Legislation,undated + + + + + + 214 + 9 + Records, Interior and Insular Committee, Land and Water Conservation,undated + + + + + + 214 + 10 + Records, Interior and Insular Affairs, Outdoor Recreation,undated + + + + + + 214 + 11 + Records, Interior and Insular Affairs, Land and Water Conservation Bill,undated + + + + + + 214 + 12 + Records, Interior and Insular Affairs, General,undated + + + + + + 214 + 13 + Records, Interior and Insular Affairs, Preservation of Shoreline Areas,undated + + + + + + 214 + 14 + Records, Interior and Insular Affairs, Land and Water Conservation Fund Act of 1963,1963 + + + + + + 214 + 15 + Records, Agriculture Committee, Cotton Bill,1963 + + + + + + 214 + 16 + Records, Agriculture Committee, Wheat Certification Program,undated + + + + + + 214 + 17 + Records, Agriculture Committee, General,undated + + + + + + 214 + 18 + Records, Agriculture Committee, Milk Marketing Order (S 1915),undated + + + + + + 214 + 19 + Records, Agriculture Committee, Farm Program, 1962-1964,1962-1964 + + + + + + 214 + 20 + Records, Agriculture Committee, Migratory Labor Correspondence,undated + + + + + + 214 + 21 + Records, Agriculture Committee, Migratory Labor Data,undated + + + + + + 214 + 22 + Records, Agriculture Committee, Sugar Act,undated + + + + + + 214 + 23 + Records, Appropriations Committee,undated + + + + + + 214 + 24 + Records, Armed Services Committee, General,undated + + + + + + 214 + 25 + Records, Banking and Currency Committee, General,undated + + + + + + 214 + 26 + Records, Banking and Currency Committee, Mass Transportation (HR 3881),undated + + + + + + 214 + 27 + Records, Mass Transit,undated + + + + + + 214 + 28 + Records, Banking and Currency Committee, Truth in Lending,undated + + + + + + 214 + 29 + Records, Banking and Currency Committee, Area Redevelopment Act Amendments, 1963,undated + + + + + + 214 + 30 + Records, Foreign Affairs Committee, General,undated + + + + + + 214 + 31 + Records, Foreign Affairs Committee, Youth Peace Corps,undated + + + + + + 214 + 32 + Records, Foreign Affairs Committee, Foreign Aid, Data,undated + + + + + + 214 + 33 + Records, Foreign Affairs, Treaty Banning Nuclear Weapons Test,undated + + + + + + 214 + 34 + Records, Foreign Affairs, Cuba,undated + + + + + + 214 + 35 + Records, Subcommittee on Transportation and Communications,undated + + + + + + 214 + 36 + Records, Interstate and Foreign Commerce, Natural Gas Act Amendments,undated + + + + + + 215 + 1 + Records, Interior and Insular Affairs Committee, General,undated + + + + + + 215 + 2 + Records, Interior and Insular Affairs , Domestic Minerals Act of 1958,1958 + + + + + + 215 + 3 + Records, Interstate and Foreign Commerce, General,undated + + + + + + 215 + 4 + Records, Interior and Insular Affairs, Hells Canyon Dam, Data,undated + + + + + + 215 + 5 + Records, Foreign Affairs, Foreign Aid,undated + + + + + + 215 + 6 + Records, Interstate and Foreign Commerce, Hoxsey,undated + + + + + + 215 + 7 + Records, Interstate and Foreign Commerce, Transportation Act of 1958,1958 + + + + + + 215 + 8 + Records, Interstate Commerce, General Correspondence,undated + + + + + + 215 + 9 + Records, District of Columbia Committee, General,undated + + + + + + 215 + 10 + Records, Foreign Affairs, General,undated + + + + + + 215 + 11 + Records, Foreign Affairs, General Correspondence,undated + + + + + + 215 + 12 + Records, Foreign Affairs Committee, Foreign Aid, Correspondence,1957 + + + + + + 215 + 13 + Records, Banking and Currency, Housing Legislation,undated + + + + + + 215 + 14 + Records, Agriculture, Copies of Bills and Reports,undated + + + + + + 215 + 15 + Records, Agriculture, Livestock Check-Off Bill,undated + + + + + + 215 + 16 + Records, Agriculture, Dairy Supports,undated + + + + + + 215 + 17 + Records, Appropriations, General,undated + + + + + + 215 + 18 + Records, Appropriations,1958 + + + + + + 215 + 19 + Records, Appropriations, Budget, Economy in Government,undated + + + + + + 215 + 20 + Records, Appropriations, Economy in Government,undated + + + + + + 215 + 21 + Records, Armed Services, Girard Case,undated + + + + + + 215 + 22 + Records, Armed Services, General,undated + + + + + + 215 + 23 + Records, Armed Services, Reorganization of Defense Department,undated + + + + + + 215 + 24 + Records, Joint Committee on Atomic Energy,undated + + + + + + 215 + 25 + Records, Banking and Currency, General,undated + + + + + + 215 + 26 + Records, Banking and Currency, Area Redevelopment Bill,undated + + + + + + 215 + 27 + Records, Legislation, Pending,1957 + + + + + + 215 + 28 + Records, Legislative Recommendations,1958 + + + + + + 215 + 29 + Records, House and Senate, General - 2 folders,undated + + + + + + 215 + 30 + Records, House and Senate, General - 2 folders,undated + + + + + + 215 + 31 + Records, Agriculture, Correspondence,1957 + + + + + + 215 + 32 + Records, Agriculture, Correspondence,1958 + + + + + + 216 + 1 + Records, House of Representatives, List of New Members,undated + + + + + + 216 + 2 + Records, Appropriations,1963 + + + + + + 216 + 3 + Records, Prayer Letters - 2 folders,undated + + + + + + 216 + 4 + Records, Prayer Letters - 2 folders,undated + + + + + + 216 + 5 + Records, Ways and Means, Taxes,undated + + + + + + 216 + 6 + Records, Ways and Means, Trade Expansion Act,undated + + + + + + 216 + 7 + Records, Armed Services, 1963,1963 + + + + + + 216 + 8 + Records, Ways and Means, Medicare, Correspondence – 1963-1964,1963-1964 + + + + + + 216 + 9 + Records, Ways and Means, Forand Bill, 1960,1960 + + + + + + 217 + 1 + Records, Ways and Means, Medicare, 1963,1963 + + + + + + 217 + 2 + Records, Ways and Means, Social Security,undated + + + + + + 217 + 3 + Records, Ways and Means, Tax Bill Correspondence, 1963,1963 + + + + + + 217 + 4 + Records, Ways and Means, Tax Cut Correspondence, 1963,1963 + + + + + + 217 + 5 + Records, Ways and Means, Medicare, Correspondence, Con, 1963-64,1963-1964 + + + + + + 217 + 6 + Records, Judiciary, Veterans Charter Bill,undated + + + + + + 217 + 7 + Records, Judiciary, Civil Rights Bill,undated + + + + + + 217 + 8 + Records, Judiciary, Anti-Trust Amendment,undated + + + + + + 217 + 9 + Records, Judiciary, General,undated + + + + + + 217 + 10 + Records, Judiciary, Presidential Disability,undated + + + + + + 217 + 11 + Records, Judiciary, Jencks Case, Vice President Nixon=s Remarks,undated + + + + + + 217 + 12 + Records, Judiciary, States Rights,undated + + + + + + 217 + 13 + Records, Judiciary, Immigration,undated + + + + + + 217 + 14 + Records, Ways and Means, General,undated + + + + + + 217 + 15 + Records, Ways and Means, King-Jenkins bill,undated + + + + + + 217 + 16 + Records, Ways and Means, Social Security,undated + + + + + + 217 + 17 + Records, Ways and Means, Reciprocal Trade Agreement,undated + + + + + + 217 + 18 + Records, Ways and Means, Foreign Trade Act,undated + + + + + + 217 + 19 + Records, Ways and Means, Reciprocal Trade Agreement,undated + + + + + + 217 + 20 + Records, Ways and Means, Reciprocal Trade Agreement, Data, Explanations,undated + + + + + + 217 + 21 + Records, Ways and Means, Reciprocal Trade Agreement, Extension,undated + + + + + + 217 + 22 + Records, Ways and Means, Taxes, Correspondence,undated + + + + + + 217 + 23 + Records, Post Office and Civil Service, Civil Service,undated + + + + + + 217 + 24 + Records, Post Office and Civil Service, Postal Rate Increase,undated + + + + + + 218 + 1 + Records, Ways and Means, Unemployment Compensation,undated + + + + + + 218 + 2 + Records, Veterans Affairs, General,undated + + + + + + 218 + 3 + Records, Un-American Activities,undated + + + + + + 218 + 4 + Records, Veterans Affairs (H R 52),undated + + + + + + 218 + 5 + Records, Veterans Affairs, Spanish American Widows Pension,undated + + + + + + 218 + 6 + Records, Public Works, General Rules,undated + + + + + + 218 + 7 + Records, Small Business,undated + + + + + + 218 + 8 + Records, Merchant Marine and Fisheries, General,undated + + + + + + 218 + 9 + Records, Post Office, Civil Service, General,undated + + + + + + 218 + 10 + Records, Post Office, Civil Service,undated + + + + + + 218 + 11 + Records, Retirement,undated + + + + + + 218 + 12 + Records, Postal Rate Increase Correspondence, 1958,1958 + + + + + + 218 + 13 + Records, Committees, 1961,1961 + + + + + + 218 + 14 + Records, Legislative Proposals, General,undated + + + + + + 218 + 15 + Records, Appropriations,undated + + + + + + 218 + 16 + Records, Agriculture, Farm Bill, Che4rries,undated + + + + + + 218 + 17 + Records, Banking and Currency, Area Redevelopment,undated + + + + + + 218 + 18 + Records, Banking and Currency, Housing,undated + + + + + + 218 + 19 + Records, Armed Services, General,undated + + + + + + 218 + 20 + Records, Joint Committee on Atomic Energy,undated + + + + + + 218 + 21 + Records, Banking and Currency, General,undated + + + + + + 218 + 22 + Records, Banking and Currency, Data,undated + + + + + + 218 + 23 + Records, Medical Care Program,undated + + + + + + 218 + 24 + Records, Veterans Affairs Com., General (87th Congress),undated + + + + + + 218 + 25 + Records, Small Business Com., General,undated + + + + + + 218 + 26 + Records, Un-American Activities Committee - General,undated + + + + + + 218 + 27 + Records, Foreign Affairs- General, 1959,1959 + + + + + + 218 + 28 + Records, Ways and Means Com., Social Security-1957,1957 + + + + + + 218 + 29 + Records, Judiciary Com., Veterans Charter Bill – 1957,1957 + + + + + + 218 + 30 + Records, Post Office and Civil Service, Postal Pay Inc. Leg.,undated + + + + + + 218 + 31 + Records, Post Office and Civil Service Committee, Postal Pay – Petition,undated + + + + + + 218 + 32 + Records, International and Foreign Commerce, Agricultural Committee – Trucking Exemptions (H.R. 5823),undated + + + + + + 218 + 33 + Records, Judiciary Committee, Senate Investigation of Gasoline Prices – 1957,1957 + + + + + + 218 + 34 + Records, Foreign Affairs Committee, Conally Amendment,undated + + + + + + 218 + 35 + Records, Interstate and Foreign Commerce Committee-General Correspondence,undated + + + + + + 218 + 36 + Records, District of Columbia Committee – General,undated + + + + + + 218 + 37 + Records, Foreign Affair, U.N. Bond Purchase Correspondence – 1962,1962 + + + + + + 219 + 1 + Records, Ways and Means, Meat and Meat Products Import Limitation,undated + + + + + + 219 + 2 + Records, Un-American Activities, Communist Propaganda in U.S.,undated + + + + + + 219 + 3 + Records, Ways and Means, Social Secuity Correspondence,undated + + + + + + 219 + 4 + Records, Ways and Means, General, 88th Congress,undated + + + + + + 219 + 5 + Records, Judiciary, civil Rights Data, 88th Congress,undated + + + + + + 219 + 6 + Records, Post Office, Pay Increase (HR 8986),undated + + + + + + 219 + 7 + Records, Civil Service,undated + + + + + + 219 + 8 + Records, Veterans Affairs, World War I Pensions - 2 folders,undated + + + + + + 219 + 9 + Records, Veterans Affairs, World War I Pensions - 2 folders,undated + + + + + + 219 + 10 + Records, Veterans Affairs, General,undated + + + + + + 219 + 11 + Records, Public Works, Appalachian Regional Development Act of 1964 (HR 11065),1964 + + + + + + 219 + 12 + Records, Public Works, Acceleration Act,undated + + + + + + 219 + 13 + Records, Science and Astronautics, General,undated + + + + + + 219 + 14 + Records, Post Office and Civil Service, Postal Rate Increase,1961 + + + + + + 219 + 15 + Records, Public Works, General Correspondence,undated + + + + + + 219 + 16 + Records, Post Office and Civil Service, Postal Pay,undated + + + + + + 219 + 17 + Records, Post Office and Civil Service 1960-1962,1960-1962 + + + + + + 219 + 18 + Records, Post Office and Civil Service,undated + + + + + + 219 + 19 + Records, Merchant Marine and Fisheries, General,undated + + + + + + 219 + 20 + Records, Judiciary, Federal Court, Western District,undated + + + + + + 219 + 21 + Records, Judiciary, Equal Rights Amendment,undated + + + + + + 219 + 22 + Records, Judiciary, Anti-Trust Amendments Correspondence,undated + + + + + + 219 + 23 + Records, Judiciary, General,undated + + + + + + 219 + 24 + Records, Interstate and Foreign Commerce, Transportation, Railroads,1961 + + + + + + 219 + 25 + Records, Interstate and Foreign Commerce, TV Education ( HR 132),undated + + + + + + 219 + 26 + Records, Interstate and Foreign Commerce, Fair Trade, Correspondence,undated + + + + + + 219 + 27 + Records, Interstate and Foreign Commerce, Quality Stabilization Bill,undated + + + + + + 219 + 28 + Records, Interstate and Foreign Commerce, Health Professions Education,undated + + + + + + 219 + 29 + Records, Interoir and Insular Affairs, General,undated + + + + + + 219 + 30 + Records, Ways and Means, Tax Bill,1963 + + + + + + 219 + 31 + Records, Ways and Means, Medical Care Program,undated + + + + + + 220 + 1 + Records, Ways and Means, Taxes, Data - 2 folders,undated + + + + + + 220 + 2 + Records, Ways and Means, Taxes, Data - 2 folders,undated + + + + + + 220 + 3 + Records, Ways and Means, Savings and Loan,undated + + + + + + 220 + 4 + Records, Ways and Means, Telephone Tax,undated + + + + + + 220 + 5 + Records, Ways and Means, Highway Tax Proposal,undated + + + + + + 220 + 6 + Records, Ways and Means, Taxes General (HR 10650),undated + + + + + + 220 + 7 + Records, Ways and Means, General,undated + + + + + + 220 + 8 + Records, Interstate and Foreign Commerce, Health Profession and Education,undated + + + + + + 220 + 9 + Records, Interstate and Foreign Commerce, Mental Illness and Mental Retardation, Correspondence,undated + + + + + + 220 + 10 + Records, Judiciary, General,undated + + + + + + 220 + 11 + Records, Judiciary, Supreme Court Decision on Prayer,undated + + + + + + 220 + 12 + Records, Judiciary, Prayer Amendments, Con,undated + + + + + + 220 + 13 + Records, Judiciary, Civil Rights, Correspondence,1964 + + + + + + 220 + 14 + Records, Judiciary, States Rights,undated + + + + + + 220 + 15 + Records, Judiciary, Anti-Trust Amendment, Data,undated + + + + + + 220 + 16 + Records, Merchant Marine and Fisheries, General,undated + + + + + + 220 + 17 + Records, Merchant Marine and Fisheries, Merchant Marine Act,undated + + + + + + 220 + 18 + Records, Post Office and civil Service - General,undated + + + + + + 220 + 19 + Records, Post Office and Civil Service, Census and Government,undated + + + + + + 220 + 20 + Records, Ways and Means, Trade Expansion Act,1962 + + + + + + 220 + 21 + Records, Ways and Means, Keogh Bill, voluntary Retirement Plan for Self-Employed,undated + + + + + + 220 + 22 + Records, Agriculture, Farm Program, Correspondence,undated + + + + + + 220 + 23 + Records, Agriculture, Farm Program, Data,undated + + + + + + 220 + 24 + Records, Ways and Means, HR 9726,undated + + + + + + 220 + 25 + Records, Ways and Means, Medical Case Correspondence – Against,undated + + + + + + 221 + 1 + Records, Ways and Means, Medical Case Correspondence – For,undated + + + + + + 221 + 2 + Records, Ways and Means, Keogh Bill, Voluntary Retirement Plan for Self-Employed, Correspondence,undated + + + + + + 221 + 3 + Records, Ways and Means, U.S. Bond Interest Rate,undated + + + + + + 221 + 4 + Records, Ways and Means, Trade Expansion Act, Correspondence,undated + + + + + + 221 + 5 + Records, Ways and Means, Medical Care,undated + + + + + + 221 + 6 + Records, Legislative Proposals,1959 + + + + + + 221 + 7 + Records, Legislative Proposals,1960 + + + + + + 221 + 8 + Records, Agriculture, General,1959 + + + + + + 221 + 9 + Records, Agriculture, General,undated + + + + + + 221 + 10 + Records, Agriculture, Farm Labor Bill (HR 12176),undated + + + + + + 221 + 11 + Records, Agriculture, Food Stamp Plan,undated + + + + + + 221 + 12 + Records, Agriculture, Migratory Labor, Correspondence,undated + + + + + + 221 + 13 + Records, Agriculture, Wheat Bills (HR 10774 and HR 10666),undated + + + + + + 221 + 14 + Records, Appropriations Committee,1959-1960 + + + + + + 221 + 15 + Records, Joint Committee on Atomic Energy, General,undated + + + + + + 221 + 16 + Records, Banking and Currency, General,1959 + + + + + + 221 + 17 + Records, Banking and Currency, General,1960 + + + + + + 221 + 18 + Records, Banking and Currency, Area Redevelopment,undated + + + + + + 221 + 19 + Records, Banking and Currency, Federal Credit Unions,undated + + + + + + 221 + 20 + Records, Banking and Currency, Housing Bill,1959 + + + + + + 221 + 21 + Records, Banking and Currency, Housing Bill,1960 + + + + + + 221 + 22 + Records, District of Columbia, General,1959 + + + + + + 221 + 23 + Records, Foreign Affairs, U-2 Incident,undated + + + + + + 221 + 24 + Records, House Administration,undated + + + + + + 221 + 25 + Records, Interior and Insular Affairs, General,1959 + + + + + + 221 + 26 + Records, Interior and Insular Affairs, Hawaii Statehood,1959 + + + + + + 221 + 27 + Records, Interior and Insular Affairs, Hawaii and Alaska Statehood,undated + + + + + + 221 + 28 + Records, Interstate and Foreign Commerce, General,1959 + + + + + + 221 + 29 + Records, Interstate and Foreign Commerce, General,1960 + + + + + + 221 + 30 + Records, Interstate and Foreign Commerce, Federal Airport Legislation,1959 + + + + + + 221 + 31 + Records, Ways and Means, Social Security,undated + + + + + + 221 + 32 + Records, Ways and Means, General,undated + + + + + + 221 + 33 + Records, Ways and Means, Taxes, 4% Dividend Credit,undated + + + + + + 221 + 34 + Records, Ways and Means, Townsend Legislation,undated + + + + + + 221 + 35 + Records, Ways and Means, Problems of the Aged,undated + + + + + + 221 + 36 + Records, Ways and Means, Voluntary Pension Plan for Self-Employed (Jenkins-Keogh Bills),undated + + + + + + 221 + 37 + Records, Ways and Means, Forand Bill, Social Security Health Benefits Correspondence,undated + + + + + + 222 + 1 + Records, Ways and Means, Forand Bill, Social Security Health Benefits Data,undated + + + + + + 222 + 2 + Records, Ways and Means, Townsend Plan, Old Age Pensions,undated + + + + + + 222 + 3 + Records, Ways and Means, Taxes on Telephone Service,undated + + + + + + 222 + 4 + Records, Ways and Means, Taxes,1959 + + + + + + 222 + 5 + Records, Ways and Means, Taxes,undated + + + + + + 222 + 6 + Records, Ways and Means, Unemployment Conference, April 8, 1959,1959 + + + + + + 222 + 7 + Records, Ways and Means, Forand Bill, Social Security Amendment,undated + + + + + + 222 + 8 + Records, Ways and Means, Unemployment Compensation, Data,1958 + + + + + + 222 + 9 + Records, Interstate Commerce, Fair Trade Legislation,undated + + + + + + 222 + 10 + Records, Interstate Commerce, Railroad Retirement Act,1959 + + + + + + 222 + 11 + Records, Judiciary, General,1959 + + + + + + 222 + 12 + Records, Judiciary, General,1960 + + + + + + 222 + 13 + Records, Judiciary, Defense Facilities Protection Act of 1959,1959 + + + + + + 222 + 14 + Records, Judiciary, Sunday for National Elections,1959 + + + + + + 222 + 15 + Records, Judiciary, States Rights Bill (HR 3),1959 + + + + + + 222 + 16 + Records, Judiciary, Civil Rights,1959 + + + + + + 222 + 17 + Records, Judiciary, Anti-Trust Amendments,undated + + + + + + 222 + 18 + Records, Merchant Marine and Fisheries, General,1959 + + + + + + 222 + 19 + Records, Post Office and Civil Service,1959-1960 + + + + + + 222 + 20 + Records, Post Office and Civil Service, Postal Rate Increase,1959 + + + + + + 222 + 21 + Records, Post Office and Civil Service, Postal Pay Increase,undated + + + + + + 222 + 22 + Records, Public Works, General,1959 + + + + + + 222 + 23 + Records, Rules, General,1959 + + + + + + 222 + 24 + Records, Rules, Abolish Un-Americana Activities Committee,1959 + + + + + + 222 + 25 + Records, Science and Astronautics Committee,1960 + + + + + + 222 + 26 + Records, Un-American Activities, General,1959 + + + + + + 222 + 27 + Records, Veterans Affairs, General,undated + + + + + + + 222 + 29 + Records, Veterans Affairs, Petition Pensions,undated + + + + + + 222 + 30 + Records, Veterans Affairs, World War I Pensions,1959 + + + + + + 223 + 1 + Records, Landrum-Griffin Act, R-5970,undated + + + + + + 223 + 2 + Records, Labor Management Reform, Correspondence,1959-1960 + + + + + + 223 + 3 + Records, Labor Management Reform, Common Situs, Correspondence,undated + + + + + + 223 + 4 + Records, Landrum-Griffin Act, Administration of the Act, Data,undated + + + + + + 223 + 5 + Records, Griffin Labor Reform Bill (HR 8401),undated + + + + + + 223 + 6 + Records, Labor Management Reform, Common Situs Picketing,undated + + + + + + 223 + 7 + Records, Education and Labor, General Correspondence,1960 + + + + + + 223 + 8 + Records, Education and Labor, Fair Labor Standards Correspondence,undated + + + + + + 223 + 9 + Records, Education and Labor, General Correspondence,1959 + + + + + + 223 + 10 + Records, Education and Labor, General Correspondence,1957-1958 + + + + + + 223 + 11 + Records, Education and Labor, Age Discrimination,undated + + + + + + 223 + 12 + Records, Education and Labor, Juvenile Delinquency,undated + + + + + + 223 + 13 + Records, Education and Labor, Harbor Workers Compensation Act,undated + + + + + + 223 + 14 + Records, Education and Labor, White House Conference on Aging,undated + + + + + + 223 + 15 + Records, Education and Labor, PL 815 and PL 874,1958 + + + + + + 223 + 16 + Records, Education and Labor, National Defense Education Act of 1958,1958 + + + + + + 224 + 1 + Records, Welfare and Pension Plans Disclosure, S 2888 and HR 13507,undated + + + + + + 224 + 2 + Records, Education and Labor, Labor Standards, Hearing,undated + + + + + + 224 + 3 + Records, Education and Labor, Science and Education Bills,undated + + + + + + 224 + 4 + Records, Education and Labor, Scholarship Loans Correspondence,undated + + + + + + 224 + 5 + Records, Education and Labor, School Assistance Act of 1958,1958 + + + + + + 224 + 6 + Records, Education and Labor, Kennedy-Ives Bill, Correspondence,undated + + + + + + 224 + 7 + Records, Education and Labor, Subcommittee on Taft-Hartley - 2 folders,undated + + + + + + 224 + 8 + Records, Welfare and Pension Plans Disclosure (S 2888 and HR 13507),undated + + + + + + 224 + 9 + Records, Landrum - Griffin , Correspondence,undated + + + + + + 224 + 10 + Records, Landrum-Griffin, District Correspondence,1959 + + + + + + 224 + 11 + Records, Labor Management, Correspondence,1959 + + + + + + 224 + 12 + Records, Labor Management, Proposals,1959 + + + + + + 224 + 13 + Records, Labor Management, Testimony of James Searer,undated + + + + + + 224 + 14 + Records, Labor Management, Senate Debate, Kennedy Bill (S 1555),undated + + + + + + 225 + 1 + Records, Labor Management, Kennedy Bill Data,1959 + + + + + + 225 + 2 + Records, Landrum - Griffin, Statements Made by Mr. Griffin Re: Bill,undated + + + + + + 225 + 3 + Records, Senator Griffin, Communications From,undated + + + + + + 225 + 4 + Records, Federal Aid to Education, Assistance under P.L. 815 and P.L. 874,undated + + + + + + 225 + 5 + Records, Education and Labor,undated + + + + + + 225 + 6 + Records, Equal Rights Amendment,undated + + + + + + 225 + 7 + Records, Supreme Court,undated + + + + + + 225 + 8 + Records, Landrum – Griffin,undated + + + + + + 225 + 9 + Records, Labor Matters Pending,1966 + + + + + + 225 + 10 + Records, Leigh Products, Incorporated, Private Claim,undated + + + + + + 225 + 11 + Records, Pornthip Nutayothin, Private Bill (S 2762),undated + + + + + + 225 + 12 + Records, Education Tax Credit (HR 8539),undated + + + + + + 225 + 13 + Records, Statements Before Judiciary Committee on Apportionment Amendment,undated + + + + + + 225 + 14 + Records, Joint Congressional Committee (HJ Res 569) - 2 folders,undated + + + + + + 225 + 15 + Records, Joint Congressional Committee (HJ Res 569) - 2 folders,undated + + + + + + 225 + 16 + Records, Joint Congressional Committee on Collective Bargaining Strikes,undated + + + + + + 225 + 17 + Records, Railroad Strike - 3 folders,undated + + + + + + 225 + 18 + Records, Railroad Strike - 3 folders,undated + + + + + + 225 + 19 + Records, Railroad Strike - 3 folders,undated + + + + + + 225 + 20 + Records, Civil Rights (HR 3155),undated + + + + + + 225 + 21 + Records, Civil Rights, Correspondence (HR 3135),undated + + + + + + 225 + 22 + Records, Internal Revenue Coed, To Amend (HR 6772),undated + + + + + + 225 + 23 + Records, Mine Safety Act (HR 6773),undated + + + + + + 225 + 24 + Records, Education, Non Discrimination (HR 6964),undated + + + + + + 225 + 25 + Records, 88th Congress, 2nd Session,undated + + + + + + 225 + 26 + Records, Relief of Displaced Nationals in Netherlands (S 2642),undated + + + + + + 225 + 27 + Records, Apportionment (HJ Res 259),undated + + + + + + 225 + 28 + Records, Extending Greetings to Pope Paul VI,undated + + + + + + 225 + 29 + Records, 150th Anniversary of Coast Guard (HJ Res 558),undated + + + + + + 225 + 30 + Records, World Food Study Commission (HJ Res 722),undated + + + + + + 225 + 31 + Records, Tax Credit (HR 3936) - 2 folders,undated + + + + + + 225 + 32 + Records, Tax Credit (HR 3936) - 2 folders,undated + + + + + + 225 + 33 + Records, Bernard Zuchowski, Private Bill (HR 4073) - 2 folders,undated + + + + + + 225 + 34 + Records, Bernard Zuchowski, Private Bill (HR 4073) - 2 folders,undated + + + + + + 225 + 35 + Records, Relief of Displace Nationals in Netherlands (HR 4492),undated + + + + + + 225 + 36 + Records, Protection of President and Vice President (HR 774),undated + + + + + + 225 + 37 + Records, Office of Community Development,undated + + + + + + 225 + 38 + Records, Teacher's Deduction Bill (HR 6275),undated + + + + + + 225 + 39 + Records, Tuition Income Tax Credit (HR 5862),undated + + + + + + 225 + 40 + Records, With-Holding Information (HR 5015),undated + + + + + + 225 + 41 + Records, Voting Rights Act of 1965 (HR 7215),1965 + + + + + + 225 + 42 + Records, Tax Credit for Expenses in Higher Education (HR 9398),undated + + + + + + 225 + 43 + Records, Mortgages - Industrial Plants (HR 5391),undated + + + + + + 225 + 44 + Records, Labor Court (HR 11217) - Correspondence,undated + + + + + + 225 + 45 + Records, Labor Court (HR 11217) - Data,undated + + + + + + 225 + 46 + Records, Guarantee Equal Justice Under Law (HR 13330),undated + + + + + + 225 + 47 + Records, Industrial Plants (HR 5391) Feb. 24, 1965,1965 + + + + + + 225 + 48 + Records, Create a Delegation to a Convention of N. Atlantic Nations (HJ Res. 1070),undated + + + + + + 225 + 49 + Records, Item Veto - (R.J. Res. 228),undated + + + + + + 225 + 50 + Records, Disapproval of Reorganization Plan (H Res 756) Mar. 9, 1966,1966 + + + + + + 225 + 51 + Records, Legislation Introduced by Rep. Griffin, 85th Cong., 1st Sess.,undated + + + + + + 225 + 52 + Records, "Good Neighbor Day" (H Con Res 436),undated + + + + + + 226 + 1 + Records, Onion Futures, Correspondence,undated + + + + + + 226 + 2 + Records, Onion Futures, Speech Material,undated + + + + + + 226 + 3 + Records, Onion Futures, Bills, Reports, and Data,undated + + + + + + 226 + 4 + Records, National Grange Headquarters, Data,undated + + + + + + 226 + 5 + Records, National Grange Headquarters, Correspondence,undated + + + + + + 226 + 6 + Records, Federal Employees Compensation Act (HR 6308),undated + + + + + + 226 + 7 + Records, U.S. Academy of Science (HR 10159), Data,undated + + + + + + 226 + 8 + Records, U.S. Academy of Science (HR 10159), Correspondence,undated + + + + + + 226 + 9 + Records, Private Bill, Otto Gray,undated + + + + + + 226 + 10 + Records, Petitions (HR 4148) - Michigan Boaters/Clean Waters,undated + + + + + + 226 + 11 + Records, Common Situs Picketing, Data,undated + + + + + + 226 + 12 + Records, Common Situs Picketing, Correspondence,1961-1962 + + + + + + 226 + 13 + Records, Common Situs Picketing, Hearings,1960 + + + + + + 226 + 14 + Records, Common Situs Picketing, Correspondence,1965-1966 + + + + + + 226 + 15 + Records, Common Situs Picketing, Data,1965 + + + + + + 226 + 16 + Records, Common Situs Picketing, Data,1961 + + + + + + 226 + 17 + Records, Landrum - Griffin, Administration of the Act,undated + + + + + + 226 + 18 + Records, Labor Management, Correspondence,1961-1962 + + + + + + 226 + 19 + Records, Fair Labor Standards, Amendments,1966 + + + + + + 226 + 20 + Records, Migratory Labor, Data,undated + + + + + + 226 + 21 + Records, Landrum - Griffin,undated + + + + + + 227 + 1 + Records, Labor, Overtime Penalty Pay Act (HR 9802),undated + + + + + + 227 + 2 + Records, Labor, Overtime Penalty Pay Act, Correspondence,undated + + + + + + 227 + 3 + Records, Landrum – Griffin, Administration of the Act,1960 + + + + + + 227 + 4 + Records, Landrum – Griffin, Griffin Statements,undated + + + + + + 227 + 5 + Records, Landrum – Griffin, Union of Operating Engineers Local,undated + + + + + + 227 + 6 + Records, Landrum – Griffin, Decisions of National Labor Relations Board,undated + + + + + + 227 + 7 + Records, Landrum – Griffin, Chamber of Commerce Speech,undated + + + + + + 227 + 8 + Records, Landrum – Griffin, Law Review Article,undated + + + + + + 227 + 9 + Records, Landrum – Griffin, Clippings, etc. - Data,1965 + + + + + + 227 + 10 + Records, Landrum – Griffin, Correspondence,1964-1965 + + + + + + 227 + 11 + Records, Landrum – Griffin, Supreme Court Decision,1965 + + + + + + 227 + 12 + Records, Wage Hour Amendments,undated + + + + + + 227 + 13 + Records, Labor Management, National Strikes, Labor Disputes,undated + + + + + + 227 + 14 + Records, Economic Club of Detroit, Speech on Labor Reform Bill,undated + + + + + + 227 + 15 + Records, National Independent Union Council, Meeting in Grand Rapids,undated + + + + + + 227 + 16 + Records, International Society of Skilled Trades,undated + + + + + + 227 + 17 + Records, Joseph Dunnebeck,1966 + + + + + + 227 + 18 + Records, Challenge of Labor Management Relations, Speech,1960 + + + + + + 227 + 19 + Records, Labor Management, Organizational Black Mail Picketing,undated + + + + + + 227 + 20 + Records, Labor Management, Women Labor Force,undated + + + + + + 227 + 21 + Records, Law Review Article,1962 + + + + + + 227 + 22 + Records, House Debate (S 3974),1958 + + + + + + 227 + 23 + Records, Congressional Record, Statements by Robert Griffin,undated + + + + + + 227 + 24 + Records, Labor Management, Discrimination,undated + + + + + + 227 + 25 + Records, Labor Management, Data,1962 + + + + + + 227 + 26 + Records, Fortas Nomination, Press Releases, Floor Statements, etc.,undated + + + + + + 227 + 27 + Records, American Bar Association and Ethics,undated + + + + + + 227 + 28 + Records, Griffin Speech Drafts,undated + + + + + + 228 + 1 + Records, Fortas Nomination, Chapters,undated + + + + + + 228 + 2 + Records, Fortas Nomination,undated + + + + + + 228 + 3 + Records, Miscellaneous,undated + + + + + + 228 + 4 + Records, Fortas Withdrawal,undated + + + + + + 228 + 5 + Records, Martindale-Hubbel and Jaworski, Law Firms,undated + + + + + + 228 + 6 + Records, Goldberg,undated + + + + + + 228 + 7 + Records, Thornberry Selection,undated + + + + + + 228 + 8 + Records, Griffin on Lou Gordon Show,undated + + + + + + 228 + 9 + Records, Advice and Consent of Senate,undated + + + + + + 228 + 10 + Records, Resignations from and Nomination to Supreme Court,undated + + + + + + 228 + 11 + Records, Baldwin-Patent Appeals Case,undated + + + + + + 228 + 12 + Records, Monitoring System, Hoffa,undated + + + + + + 228 + 13 + Records, Labor, Overtime Penalty Act (HR 8260),undated + + + + + + 228 + 14 + Records, Davis-Bacon Act,undated + + + + + + 228 + 15 + Records, Employee Civil Rights Act (HR 10039), 1965 Religious Objections,1965 + + + + + + 228 + 16 + Records, Taft-Hartley Act (HR 4350), Section 14b - 2 folders,undated + + + + + + 228 + 17 + Records, Taft-Hartley Act (HR 4350), Section 14b - 2 folders,undated + + + + + + 228 + 18 + Records, Davis-Bacon, Proposed Revision of Regulations,undated + + + + + + 228 + 19 + Records, Davis-Bacon, To Amend (HR 9656),undated + + + + + + 228 + 20 + Records, Davis-Bacon, Fringe Benefits,undated + + + + + + 228 + 21 + Records, Davis-Bacon, Judicial Review,undated + + + + + + 228 + 22 + Records, Davis-Bacon, Work Hours Act,undated + + + + + + 228 + 23 + Records, National Service Corps - 2 folders,undated + + + + + + 228 + 24 + Records, National Service Corps - 2 folders,undated + + + + + + 228 + 25 + Records, Labor (HR 7075),undated + + + + + + 228 + 26 + Records, Education and Labor Legislation, Walsh-Healy,undated + + + + + + 228 + 27 + Records, Farm Labor Bills,undated + + + + + + 228 + 28 + Records, International Labor Conference,undated + + + + + + 228 + 29 + Records, Migratory Farm Labor Legislation,undated + + + + + + 228 + 30 + Records, Taft-Hartley Act, Section 14 (b), Data,undated + + + + + + 228 + 31 + Records, Taft-Hartley Act, General Background,undated + + + + + + 228 + 32 + Records, Labor Legislation, Right to Work,undated + + + + + + 228 + 33 + Records, Common Situs Picketing, Statement for Use in Letters,undated + + + + + + 228 + 34 + Records, National Service Corps (HR 5625) - 2 folders,undated + + + + + + 228 + 35 + Records, National Service Corps (HR 5625) - 2 folders,undated + + + + + + 228 + 36 + Records, Davis-Bacon, Correspondence,undated + + + + + + 229 + 1 + Records, Labor, Fair Labor Act, Correspondence,undated + + + + + + 229 + 2 + Records, Hearings on National Labor Relations Act,undated + + + + + + 229 + 3 + Records, Special Subcommittee on Labor, Frank Thompson, Chairman,undated + + + + + + 229 + 4 + Records, Unemployment and the Impact of Automation,undated + + + + + + 229 + 5 + Records, Minimum Wage Data,undated + + + + + + 229 + 6 + Records, Prohibit Strikes at Military Installations (HR 9555),undated + + + + + + 229 + 7 + Records, National Labor Relations Board,undated + + + + + + 229 + 8 + Records, Equal Employment Opportunity Act,undated + + + + + + 229 + 9 + Records, Secret Strike Ballot,undated + + + + + + 229 + 10 + Records, National Labor Relations Board Investigation,undated + + + + + + 229 + 11 + Records, Equal Opportunity Act (HR 10144) - 2 folders,undated + + + + + + 229 + 12 + Records, Equal Opportunity Act (HR 10144) - 2 folders,undated + + + + + + 229 + 13 + Records, Manpower and Training Development Act of 1961,1961 + + + + + + 229 + 14 + Records, Amend Manpower Development and Training,undated + + + + + + 229 + 15 + Records, Speech Material, Labor,undated + + + + + + 229 + 16 + Records, Fair Labor Standards, Hours of Work (HR 355, 3102, 3320),undated + + + + + + 229 + 17 + Records, Fair Labor Standards, Amendments,1964 + + + + + + 229 + 18 + Records, Right to Vote Act,undated + + + + + + 229 + 19 + Records, Equal Pay Act of 1963 (HR 3861),1963 + + + + + + 229 + 20 + Records, National Labor Relations Act, Section 14 (b), Speech Material,undated + + + + + + 229 + 21 + Records, Equal Pay Act of 1963, Correspondence,1963 + + + + + + 229 + 22 + Records, Welfare and Pension Plans, Data,undated + + + + + + 229 + 23 + Records, Occupational Safety Act of 1962,1962 + + + + + + 229 + 24 + Records, Equal Pay Act of 1962 (HR 11677),1962 + + + + + + 229 + 25 + Records, Special Subcommittee to Investigate Garment Industry,undated + + + + + + 229 + 26 + Records, Griffin Notes, Executive Hearings,undated + + + + + + 229 + 27 + Records, Education and Labor, HR 10767,undated + + + + + + 229 + 28 + Records, Labor-Management, Union Political Activities,undated + + + + + + 229 + 29 + Records, Labor-Management, Industrywide Bargaining,undated + + + + + + 229 + 30 + Records, Landrum-Griffin, Iron Age,undated + + + + + + 229 + 31 + Records, Landrum-Griffin, NLRB, Floor Remarks (Oct 7, 1963),1963 + + + + + + 229 + 32 + Records, Landrum-Griffin, NLRB, Administration of the Act - Correspondence,undated + + + + + + 229 + 33 + Records, Landrum-Griffin, Administrations of the Act Statements - 2 folders,undated + + + + + + 229 + 34 + Records, Landrum-Griffin, Administrations of the Act Statements - 2 folders,undated + + + + + + 229 + 35 + Records, Landrum-Griffin, Mr. Landrum, HR 8246,undated + + + + + + 229 + 36 + Records, Landrum-Griffin, NLRB, Administration of the Act,undated + + + + + + 229 + 37 + Records, Landrum-Griffin, Bonding Provisions of Labor Management Reporting Disclosure,undated + + + + + + 229 + 38 + Records, Landrum-Griffin, Bonding Provisions,undated + + + + + + 229 + 39 + Records, Landrum-Griffin, Clippings, Statements, General Data,undated + + + + + + 230 + 1 + Records, Arts and Humanities,undated + + + + + + 230 + 2 + Records, Equal Employment Opportunity Act of 1965,1965 + + + + + + 230 + 3 + Records, Prohibit Racial, Religious Discrimination in Employment,undated + + + + + + 230 + 4 + Records, National Labor Relations Board, Annual Reports,undated + + + + + + 230 + 5 + Records, Thompson Subcommittee, Investigation of NLRB,1965 + + + + + + 230 + 6 + Records, Arts and Humanities,undated + + + + + + 230 + 7 + Records, Metal and Non-Metallic Mine Safety,undated + + + + + + 230 + 8 + Records, Federal Coal Mine Safety Act,undated + + + + + + 230 + 9 + Records, Coal Mine Safety Legislation,undated + + + + + + 230 + 10 + Records, Michigan Politics, Ninth District, Missaukee County,undated + + + + + + 230 + 11 + Records, Election Information, Officials, Clubs, Missaukee County,undated + + + + + + 230 + 12 + Records, Election Information, Officials, Clubs, Mecosta County,undated + + + + + + 230 + 13 + Records, Election Information, Officials, Clubs, Montcalm County,undated + + + + + + 230 + 14 + Records, Election Information, Officials, Clubs, Osceola County,undated + + + + + + 230 + 15 + Records, Congratulations, Benzie County,1963 + + + + + + 230 + 16 + Records, Congratulations, Grand Traverse County,1963 + + + + + + 230 + 17 + Records, Congratulations, Lake County,1963 + + + + + + 230 + 18 + Records, Congratulations, Leelanau County,1963 + + + + + + 230 + 19 + Records, Congratulations, Manistee County,1963 + + + + + + 230 + 20 + Records, Congratulations, Mason County,1963 + + + + + + 230 + 21 + Records, Congratulations, Muskegon County,1963 + + + + + + 230 + 22 + Records, VanderJagt Anadramous Fish Bill (HR 7947),undated + + + + + + 230 + 23 + Records, Hearings, Great Lakes Maritime Problems,1967 + + + + + + 230 + 24 + Records, Army Corps of Engineers, Dredging Pollution Problem,undated + + + + + + 230 + 25 + Records, Upper Great Lakes - Data,undated + + + + + + 230 + 26 + Records, St. Lawrence, Tolls,1969 + + + + + + 230 + 27 + Records, St. Lawrence Seaway, Rail Rate Discrimination Case,undated + + + + + + 230 + 28 + Records, Upper Great Lakes Regional Commission,,undated + + + + + + 230 + 29 + Records, Michigan Projects,undated + + + + + + 230 + 30 + Records, Upper Great Lakes Regional Commission,undated + + + + + + 231 + 1 + Records, Upper Great Lakes Regional Commission,undated + + + + + + 231 + 2 + Records, Great Lakes,undated + + + + + + 231 + 3 + Records, Great Lakes Basin Commission - 2 folders,undated + + + + + + 231 + 4 + Records, Commercial Fishing, Coho Salmon Program,undated + + + + + + 231 + 5 + Records, Lamprey Control,undated + + + + + + 231 + 6 + Records, U.S. and Canada International Joint Commission,undated + + + + + + 231 + 7 + Records, Great Lakes Fishery Commission,undated + + + + + + 231 + 8 + Records, St. Lawrence Seaway Development Corporation,undated + + + + + + 231 + 9 + Records, Alewife - Anadromous Fish Act,undated + + + + + + 231 + 10 + Records, Alewife Hearings, Muskegon,undated + + + + + + 231 + 11 + Records, Great Lakes, Legislation,undated + + + + + + 231 + 12 + Records, Ohio River, Lake Erie Canal,undated + + + + + + 231 + 13 + Records, Tourism,undated + + + + + + 231 + 14 + Records, Legislation, Co-Sponsored and Introduced,undated + + + + + + 231 + 15 + Records, 92nd Congress, Legislation, Co-Sponsored and Introduced,1971-1972 + + + + + + 231 + 16 + Records, Diplomatic Relations with the Vatican,undated + + + + + + 231 + 17 + Records, Staff Manual, Draft,undated + + + + + + 231 + 18 + Records, Finance Committee, General,undated + + + + + + 231 + 19 + Records, Finance Committee, Interest Equalization Act,undated + + + + + + 231 + 20 + Records, Finance Committee, Sulphur Tax,undated + + + + + + 231 + 21 + Records, Finance Committee, Economy,undated + + + + + + 231 + 22 + Records, Revenue Sharing,undated + + + + + + 231 + 23 + Records, Revenue Sharing, Michigan,undated + + + + + + 231 + 24 + Records, General Telephone Tax Legislation,undated + + + + + + 231 + 25 + Records, Unemployment Compensation,undated + + + + + + 231 + 26 + Records, Deductibility of Expenses to State Legislators,undated + + + + + + 231 + 27 + Records, Foreign Trade and Investment Act,undated + + + + + + 231 + 28 + Records, U.S. - Canada Automotive Trade Agreement,undated + + + + + + 231 + 29 + Records, John B. Connally Nomination,undated + + + + + + 232 + 1 + Records, Investment Credit, ADR,undated + + + + + + 232 + 2 + Records, Value Added Tax,undated + + + + + + 232 + 3 + Records, Cemetery, Perpetual Case Fund,undated + + + + + + 232 + 4 + Records, The Failing Machine Tool Industry,undated + + + + + + 232 + 5 + Records, Pension Reform,undated + + + + + + 232 + 6 + Records, Family Assistance Act,undated + + + + + + 232 + 7 + Records, Subcommittee on International Trade,undated + + + + + + 232 + 8 + Records, Welfare Regulations,undated + + + + + + 232 + 9 + Records, Busing, Bibliographies,undated + + + + + + 232 + 10 + Records, Busing, Bills, Amendments, Reports,undated + + + + + + 232 + 11 + Records, Busing, Statements,undated + + + + + + 232 + 12 + Records, Busing, Busing - 2 folders,undated + + + + + + 232 + 13 + Records, Busing, Busing - 2 folders,undated + + + + + + 232 + 14 + Records, Busing, S.J. Res. 164,undated + + + + + + 232 + 15 + Records, Busing, Clippings,undated + + + + + + 232 + 16 + Records, Busing, Michigan Cases - 2 folders,undated + + + + + + 232 + 17 + Records, Busing, Michigan Cases - 2 folders,undated + + + + + + 233 + 1 + Records, Busing - Detroit Plans by Judge Roth - 4 folders,undated + + + + + + 233 + 2 + Records, Busing - Detroit Plans by Judge Roth - 4 folders,undated + + + + + + 233 + 3 + Records, Busing - Detroit Plans by Judge Roth - 4 folders,undated + + + + + + 233 + 4 + Records, Busing - Detroit Plans by Judge Roth - 4 folders,undated + + + + + + 233 + 5 + Records, Background Materials - HR1,undated + + + + + + 233 + 6 + Records, Part B Premium - HR1,undated + + + + + + 233 + 7 + Records, Title I - Cash Benefits,undated + + + + + + 233 + 8 + Records, Title II – Medicare/Medicaid,undated + + + + + + 233 + 9 + Records, Title III - ABD,undated + + + + + + 233 + 10 + Records, Clinical Lab. Amendment - HR1,undated + + + + + + 233 + 11 + Records, Title IV – General,undated + + + + + + 233 + 12 + Records, California/NY - Experiments,undated + + + + + + 233 + 13 + Records, Work Reqt./Work Experience Programs,undated + + + + + + 233 + 14 + Records, Payment Level,undated + + + + + + 233 + 15 + Records, Social Services Adoption Amendment,undated + + + + + + 233 + 16 + Records, HR1 (Child Care),undated + + + + + + 233 + 17 + Records, Child Care - Special Projects,undated + + + + + + 233 + 18 + Records, Welfare Employee Organizations,undated + + + + + + 233 + 19 + Records, R1 Brief Amendments - Alternate Bills,undated + + + + + + 234 + 1 + Records, HR 1, Social Security Amendments Act - 2 folders,undated + + + + + + 234 + 2 + Records, HR 1, Social Security Amendments Act - 2 folders,undated + + + + + + 234 + 3 + Records, Interest Group Concerns,undated + + + + + + 234 + 4 + Records, HR 1, Social Security Amendments Act - 3 folders,undated + + + + + + 234 + 5 + Records, HR 1, Social Security Amendments Act - 3 folders,undated + + + + + + 234 + 6 + Records, HR 1, Social Security Amendments Act - 3 folders,undated + + + + + + 234 + 7 + Records, Richard Stoesser and the Midland County Board of Commissioners,undated + + + + + + 234 + 8 + Records, HR 1,undated + + + + + + 234 + 9 + Records, Michigan Materials – 2 folders,undated + + + + + + 234 + 10 + Records, Michigan Materials – 2 folders,undated + + + + + + 234 + 11 + Records, HR 10947, Floor Action,undated + + + + + + 234 + 12 + Records, Light Truck Parts – Tax,undated + + + + + + 234 + 13 + Records, HR 10947, Interest Groups,undated + + + + + + 234 + 14 + Records, Audit 692,undated + + + + + + 234 + 15 + Records, Tax Bill,undated + + + + + + 234 + 16 + Records, National Health Insurance,undated + + + + + + 234 + 17 + Records, Health Insurance Act S-4297,undated + + + + + + 234 + 18 + Records, Nixon Economic Plan,undated + + + + + + 234 + 19 + Records, President's New Economic Program, Tax Proposals,undated + + + + + + 234 + 20 + Records, Economic Stabilization Act (S 2891),undated + + + + + + 234 + 21 + Records, New Economic Program, Phase II,undated + + + + + + 235 + 1 + Records, Aging, Association for the Advancement of Aging Research,undated + + + + + + 235 + 2 + Records, Agriculture, General,undated + + + + + + 235 + 3 + Records, Agriculture, Cherries,undated + + + + + + 235 + 4 + Records, Agriculture, Rural Community Development, Special Revenue Sharing,undated + + + + + + 235 + 5 + Records, Agriculture, School Breakfast,undated + + + + + + 235 + 6 + Records, Agriculture, School Lunch,undated + + + + + + 235 + 7 + Records, Ludington Harbor,undated + + + + + + 235 + 8 + Records, Appropriations, Pictured Rocks National Lakeshore,undated + + + + + + 235 + 9 + Records, Appropriations, Lamprey Control,undated + + + + + + 235 + 10 + Records, Export-Import Bank,undated + + + + + + 235 + 11 + Records, Banking, Lockheed,undated + + + + + + 235 + 12 + Records, Budget,1972 + + + + + + 235 + 13 + Records, Joseph L. Sax (S 1031),undated + + + + + + 235 + 14 + Records, District of Columbia, Home Rule,undated + + + + + + 235 + 15 + Records, Government Operations, Reorganization Plan #1,undated + + + + + + 235 + 16 + Records, Government Operations, Legislative Reorganization,undated + + + + + + 235 + 17 + Records, Legislative Reorganization,undated + + + + + + 235 + 18 + Records, Soviet Jews, Persecution of,undated + + + + + + 235 + 19 + Records, Foreign Relations: S 731 - Curbs on the President's War Powers,undated + + + + + + 235 + 20 + Records, Senior Citizen Housing Shortage Petitions - 2 folders,undated + + + + + + 235 + 21 + Records, Senior Citizen Housing Shortage Petitions - 2 folders,undated + + + + + + 235 + 22 + Records, President's Education Message,undated + + + + + + 235 + 23 + Records, Administration Proposals ,1969-1970 + + + + + + 235 + 24 + Records, Unemployment,undated + + + + + + 235 + 25 + Records, Labor - General,undated + + + + + + 235 + 26 + Records, Emergency Employment Act, Wayne County,undated + + + + + + 235 + 27 + Records, Emergency Employment Act,undated + + + + + + 235 + 28 + Records, Construction Industry Stabilization,undated + + + + + + 235 + 29 + Records, Labor Law Reform,undated + + + + + + 235 + 30 + Records, Emergency Transportation Strikes,undated + + + + + + 235 + 31 + Records, Manpower Special Revenue Sharing,undated + + + + + + 235 + 32 + Records, Minimum Wage,undated + + + + + + 235 + 33 + Records, Union Power in Politics,undated + + + + + + 235 + 34 + Records, Right to Work,undated + + + + + + 235 + 35 + Records, Wage Settlements,undated + + + + + + 235 + 36 + Records, Landrum-Griffin, Georgia Law Review,undated + + + + + + 235 + 37 + Records, Landrum-Griffin, Law Review Article,undated + + + + + + 235 + 38 + Records, Landrum-Griffin, Landrum-Griffin Act,undated + + + + + + 235 + 39 + Records, United Mine Workers Law Suits - 2 folders,undated + + + + + + 235 + 40 + Records, United Mine Workers Law Suits - 2 folders,undated + + + + + + 236 + 1 + Records, Equal Employment Opportunity Commission,undated + + + + + + 236 + 2 + Records, United Mine Workers - 3 folders,undated + + + + + + 236 + 3 + Records, United Mine Workers - 3 folders,undated + + + + + + 236 + 4 + Records, United Mine Workers - 3 folders,undated + + + + + + 236 + 5 + Records, Neighborhood Youth Groups,undated + + + + + + 236 + 6 + Records, Follow-Through Programs,undated + + + + + + 236 + 7 + Records, Education, Revenue Sharing,undated + + + + + + 236 + 8 + Records, Education, Property Taxes,undated + + + + + + 236 + 9 + Records, Tax Credits for Higher Education,undated + + + + + + 236 + 10 + Records, Education Bill (S 1557),undated + + + + + + 236 + 11 + Records, Emergency School Aid and Quality Integrated Education Act of 1971, S 1557,1971 + + + + + + 236 + 12 + Records, Desegregation (HR 19446),1970 + + + + + + 236 + 13 + Records, Higher Education Act (S 659), Busing Issue,undated + + + + + + 236 + 14 + Records, Busing, Senator's Amendment, Floor Folders,undated + + + + + + 236 + 15 + Records, Busing, Senator's Statements,undated + + + + + + 236 + 16 + Records, Educational Parks,undated + + + + + + 236 + 17 + Records, Conference Report File (S 659) May 1972,1972 + + + + + + 236 + 18 + Records, Busing, Senator's Folder (S J Res 165),undated + + + + + + 236 + 19 + Records, Busing, Committee Material and Non-Busing Issues,undated + + + + + + 236 + 20 + Records, Higher Education Act (S 659),undated + + + + + + 236 + 21 + Records, Allied Services Act,undated + + + + + + 236 + 22 + Records, Higher Education Act, House Action,undated + + + + + + 236 + 23 + Records, McCardle and Other Precedents,undated + + + + + + 236 + 24 + Records, Opponents Arguments,undated + + + + + + 236 + 25 + Records, Printed Amendments (S 659),undated + + + + + + 236 + 26 + Records, Analysis of Proposed Amendments,undated + + + + + + 236 + 27 + Records, Urban Terrorism, Police,undated + + + + + + 236 + 28 + Records, Barbara Hale Case, Kentucky,undated + + + + + + 236 + 29 + Records, Family Physicians Scholarship Act,undated + + + + + + 236 + 30 + Records, Health Care,undated + + + + + + 236 + 31 + Records, Oil Imports (DOW),undated + + + + + + 236 + 32 + Records, Consumers Power, Residual Fuel Oil Development,undated + + + + + + 236 + 33 + Records, Allocation of Canadian Crude Imports,undated + + + + + + 236 + 34 + Records, Sleeping Bear Duns (S 1023) - 2 folders,undated + + + + + + 236 + 35 + Records, Sleeping Bear Duns (S 1023) - 2 folders,undated + + + + + + 236 + 36 + Records, Indians,undated + + + + + + 236 + 37 + Records, Sleeping Bear Dunes, Hearings,1970 + + + + + + 236 + 38 + Records, Welfare, Extension of O.E.O. (S 2007),undated + + + + + + 237 + 1 + Records, Drug Control,1971 + + + + + + 237 + 2 + Records, Runaway Youth Act (S 2829),undated + + + + + + 237 + 3 + Records, Alcoholism,undated + + + + + + 237 + 4 + Records, G.S.A., Opinion on HR 3345, Fair Competition on Sub/Contractors,undated + + + + + + 237 + 5 + Records, National Canners - Pending,undated + + + + + + 237 + 6 + Records, Cyclamates (S 4000) - 2 folders,undated + + + + + + 237 + 7 + Records, Cyclamates (S 4000) - 2 folders,undated + + + + + + 237 + 8 + Records, Pueblo de Toas Indians, 60 Years of Injustice,undated + + + + + + 237 + 9 + Records, Tributes,undated + + + + + + 237 + 10 + Records, Oil Imports, Griffin Remarks,undated + + + + + + 237 + 11 + Records, Oil Imports, Research Material,undated + + + + + + 237 + 12 + Records, Oil Imports, Correspondence,undated + + + + + + 237 + 13 + Records, Oil Imports, R.P.G. Letters,undated + + + + + + 237 + 14 + Records, Oil Imports, Clanton Memos,undated + + + + + + 237 + 15 + Records, National Voter Registration,undated + + + + + + 237 + 16 + Records, Nuclear Plant Controversy,undated + + + + + + 237 + 17 + Records, Anti-Trust, Gasoline Prices in Michigan,undated + + + + + + 237 + 18 + Records, Constitutional Amendments,undated + + + + + + 237 + 19 + Records, School Prayer,undated + + + + + + 237 + 20 + Records, Gun Control - 2 folders,undated + + + + + + 237 + 21 + Records, Gun Control - 2 folders,undated + + + + + + 237 + 22 + Records, Victims of Crime,undated + + + + + + 237 + 23 + Records, Prison Reform,undated + + + + + + 237 + 24 + Records, Pre-Trial Detention,undated + + + + + + 237 + 25 + Records, Capital Punishment,undated + + + + + + 237 + 26 + Records, Judiciary, General,undated + + + + + + 237 + 27 + Records, Judiciary, Kleindienst Nomination,undated + + + + + + 237 + 28 + Records, Judiciary, Robert Varner,undated + + + + + + 237 + 29 + Records, Judiciary, Dean Charles Joiner,undated + + + + + + 237 + 30 + Records, Judiciary, Gravel Case,undated + + + + + + 237 + 31 + Records, Judiciary, Cyclamates,undated + + + + + + 237 + 32 + Records, Judiciary, Nominations,undated + + + + + + 237 + 33 + Records, Washington Peace Demonstration,undated + + + + + + 237 + 34 + Records, Constitutional Amendment, Maximum Age for Senators,undated + + + + + + 238 + 1 + Records, Supreme Court Nominations,undated + + + + + + 238 + 2 + Records, Impeachment of Justice Douglas,undated + + + + + + 238 + 3 + Records, Law Enforcement,undated + + + + + + 238 + 4 + Records, Rule 22,undated + + + + + + 238 + 5 + Records, ABA and Confirmation Process,undated + + + + + + 238 + 6 + Records, Pornography Report,undated + + + + + + 238 + 7 + Records, Separation of Powers, Pocket Veto,undated + + + + + + 238 + 8 + Records, Court Reform,undated + + + + + + 238 + 9 + Records, Constitutional Amendment HJ Res 681 - Abolishing Electoral College,undated + + + + + + 238 + 10 + Records, George E. Woods Nomination,undated + + + + + + 238 + 11 + Records, Constitutional Amendment, Electoral College Reform,undated + + + + + + 238 + 12 + Records, 18 Year Old Vote,undated + + + + + + 238 + 13 + Records, Voting Rights,undated + + + + + + 238 + 14 + Records, Nixon Civil Rights Record,undated + + + + + + 238 + 15 + Records, Labor Court Speech - 2 folders,undated + + + + + + 238 + 16 + Records, Labor Court Speech - 2 folders,undated + + + + + + 238 + 17 + Records, St. Lawrence Seaway 10th Anniversary,undated + + + + + + 238 + 18 + Records, Proposals for 92nd Congress,undated + + + + + + 238 + 19 + Records, Abolish NLRB, Establish Labor Court (S 103),undated + + + + + + 238 + 20 + Records, Private Bill, Waldemar E. Kunstmann (S 106),undated + + + + + + 238 + 21 + Records, Labor Management (S Res 319),undated + + + + + + 238 + 22 + Records, Televising Senate Debates,undated + + + + + + 238 + 23 + Records, Private Bill, Edward Regan (S 1666),undated + + + + + + 238 + 24 + Records, Financial Disclosure by Members of Federal Judiciary,undated + + + + + + 238 + 25 + Records, Foster Children Bill (S 2112), Background Material,undated + + + + + + 238 + 26 + Records, Dependency Exemption for Foster Children (S 2112),undated + + + + + + 238 + 27 + Records, Fiscal Year Appropriation Act (S 4616),undated + + + + + + 238 + 28 + Records, Aid to Biafra (S Con Res 3),undated + + + + + + 238 + 29 + Records, Expansion of Right to Vote (S J Res 59),undated + + + + + + 238 + 30 + Records, Emigration of Iraqi Jews (S Res 172),undated + + + + + + 238 + 31 + Records, Study on Freight Rates,undated + + + + + + 238 + 32 + Records, Treatment of Prisoners of War (S Res 243),undated + + + + + + 238 + 33 + Records, Co-Sponsor: Amendment 1062 to H J R 264, ERA,undated + + + + + + 238 + 34 + Records, Direct Election Amendment (S J Res 1),undated + + + + + + 238 + 35 + Records, Legislative Reorganization (S 844),undated + + + + + + 238 + 36 + Records, Airlines Special Services Enabling Act (S 1179),undated + + + + + + 238 + 37 + Records, Taxation of Multistate Taxpayers (S 1198),undated + + + + + + 238 + 38 + Records, Amend Clayton Act (S 1494),undated + + + + + + 238 + 39 + Records, Tax Loss Farming (S 1560),undated + + + + + + 238 + 40 + Records, Door to Door Sales Act (S 1599),undated + + + + + + 238 + 41 + Records, Eisenhower Dam (S 1613),undated + + + + + + 238 + 42 + Records, Tax Sharing Act (S 1634),undated + + + + + + 238 + 43 + Records, Township Officials on Intergovernmental Relations Committee,undated + + + + + + 238 + 44 + Records, Agriculture Adjustment Act of 1969 (S 2524),1969 + + + + + + 238 + 45 + Records, Immigration, West Hemisphere Quotas (S 2593),undated + + + + + + 238 + 46 + Records, Protecting Shores of U.S. (S 2662),undated + + + + + + 238 + 47 + Records, Incorporation of Catholic War Veterans (S 2790),undated + + + + + + 238 + 48 + Records, Revenue Sharing Act of 1969 (S 2948),1969 + + + + + + 238 + 49 + Records, Griffin Legislation,undated + + + + + + 238 + 50 + Records, Rename Senate Office Buildings, Dirksen and Barkley,undated + + + + + + + 238 + 52 + Records, Law Enforcement and Assistance Programs (S 3541),undated + + + + + + 238 + 53 + Records, Alcoholism Act of 1970 (S 3835),1970 + + + + + + 238 + 54 + Records, Family Physician Scholarships (S 4208),undated + + + + + + 238 + 55 + Records, Domestic Development Bank Act,undated + + + + + + 238 + 56 + Records, Shoreline Erosion (S 4591),undated + + + + + + 238 + 57 + Records, 91st Congress Review,undated + + + + + + 238 + 58 + Records, 91st Congress Legislation,undated + + + + + + 238 + 59 + Records, Senator's Legislative Efforts in Past Congresses,undated + + + + + + 238 + 60 + Records, Provisions Relating to Labor Court,undated + + + + + + 238 + 61 + Records, Father Marquette Lock (S 2696),undated + + + + + + 239 + 1 + Records, 89th Congress, Bill Sponsored,undated + + + + + + 239 + 2 + Records, Labor Court (S 3631),undated + + + + + + 239 + 3 + Records, Poverty Crusade Act (S 3630),undated + + + + + + 239 + 4 + Records, Social Security (S 3850),undated + + + + + + 239 + 5 + Records, No Excise Tax for Servicemen on Airlines (S 3838),undated + + + + + + 239 + 6 + Records, Tax Deduction for Crime Victims (S 3778),undated + + + + + + 239 + 7 + Records, School for the Deaf (S 3758),undated + + + + + + 239 + 8 + Records, Federal Employees Privacy (S 3703),undated + + + + + + 239 + 9 + Records, St. Lawrence Seaway (S 3698),undated + + + + + + 239 + 10 + Records, St. Lawrence Seaway (S 3010),undated + + + + + + 239 + 11 + Records, TV Coverage of Senate Debates (S J Res 288),undated + + + + + + 239 + 12 + Records, Compensation for Crime Victims (S 646),undated + + + + + + 239 + 13 + Records, Air and Water Pollution (S 3598),undated + + + + + + 239 + 14 + Records, Teacher Tax Deduction (S 3565),undated + + + + + + 239 + 15 + Records, National Crime Center (S 3718),undated + + + + + + 239 + 16 + Records, Columbus Day (S 168),undated + + + + + + 239 + 17 + Records, Achieving Peace in Middle East (S Res 155),undated + + + + + + 239 + 18 + Records, Three Mile Limit (S J Res 136),undated + + + + + + 239 + 19 + Records, Stamp to Honor 50th Anniversary of Baltic States (S 2541),undated + + + + + + 239 + 20 + Records, Metric System (S 2356),undated + + + + + + 239 + 21 + Records, Metric Bill Data,undated + + + + + + 239 + 22 + Records, Draft Deferments for Community College Students (S 3019),undated + + + + + + 239 + 23 + Records, Joint Committee on Industry Bargaining (S J Res 66),undated + + + + + + 239 + 24 + Records, Establish Labor Court (S 1353),undated + + + + + + 239 + 25 + Records, Mid-East Arms Race (S Res 293),undated + + + + + + 239 + 26 + Records, Private Bill, Arthur Anderson (S 1841),undated + + + + + + 239 + 27 + Records, National Clean Water Week (S Res 193),undated + + + + + + 239 + 28 + Records, Private Bill, Pornthip Nutayothin (S 2762),undated + + + + + + 239 + 29 + Records, Federal Housing Administration Sewer and Water Disposal,undated + + + + + + 239 + 30 + Records, Draft, Universal Service System, Volunteer Army,undated + + + + + + 239 + 31 + Records, War Powers,undated + + + + + + 239 + 32 + Records, NATO - 2 folders,undated + + + + + + 239 + 33 + Records, NATO - 2 folders,undated + + + + + + 239 + 34 + Records, Budget,undated + + + + + + 239 + 35 + Records, Executive Reorganization,undated + + + + + + 239 + 36 + Records, Executive Privilege,undated + + + + + + 239 + 37 + Records, Government Reorganization,undated + + + + + + 239 + 38 + Records, Postal Service,undated + + + + + + 239 + 39 + Records, Earl Voss,undated + + + + + + 239 + 40 + Records, Civil Rights,undated + + + + + + 239 + 41 + Records, World Economy,undated + + + + + + 239 + 42 + Records, Calley,undated + + + + + + 239 + 43 + Records, Budget, Defense,undated + + + + + + 239 + 44 + Records, Griffin Amendment to Cooper-Church (Military Sales Act),undated + + + + + + 239 + 45 + Records, Griffin Amendment to Foreign Military Sales Act - 2 folders,undated + + + + + + 239 + 46 + Records, Griffin Amendment to Foreign Military Sales Act - 2 folders,undated + + + + + + 239 + 47 + Records, Defense,undated + + + + + + 239 + 48 + Records, ABM Safeguard,undated + + + + + + 239 + 49 + Records, ABM,undated + + + + + + 239 + 50 + Records, Aid,undated + + + + + + 239 + 51 + Records, Disarmament, General,undated + + + + + + 239 + 52 + Records, Disarmament, SALT,undated + + + + + + 239 + 53 + Records, Great Lakes,undated + + + + + + 239 + 54 + Records, Emergency Broadcast System,undated + + + + + + 239 + 55 + Records, Petrov, Vladmir,undated + + + + + + 239 + 56 + Records, Defense, Strategy Balance - 2 folders,undated + + + + + + 239 + 57 + Records, Defense, Strategy Balance - 2 folders,undated + + + + + + 239 + 58 + Records, Draft Floor Speech,undated + + + + + + 240 + 1 + Records, Health Care, General,undated + + + + + + 240 + 2 + Records, Abortion,undated + + + + + + 240 + 3 + Records, Drugs, General,undated + + + + + + 240 + 4 + Records, National Health Insurance,undated + + + + + + 240 + 5 + Records, Aging,undated + + + + + + 240 + 6 + Records, Housing and Urban Affairs, General,undated + + + + + + 240 + 7 + Records, Housing, HUD, FHA Subsidized Housing,undated + + + + + + 240 + 8 + Records, Housing/Policy/Nixon Administration,undated + + + + + + 240 + 9 + Records, HUD/Legislation/OUD/Banking Committee,undated + + + + + + 240 + 10 + Records, Housing,undated + + + + + + 240 + 11 + Records, Labor,undated + + + + + + 240 + 12 + Records, Machine Tools,undated + + + + + + 240 + 13 + Records, Occupational Safety and Health Act,undated + + + + + + 240 + 14 + Records, Revenue Sharing,undated + + + + + + 240 + 15 + Records, Space Program - General,undated + + + + + + 240 + 16 + Records, Transportation, Mass Transit,undated + + + + + + 240 + 17 + Records, Auto Safety,undated + + + + + + 240 + 18 + Records, Railroads,undated + + + + + + 240 + 19 + Records, Emergency Transportation Strike,undated + + + + + + 240 + 20 + Records, Veterans,undated + + + + + + 240 + 21 + Records, Food Stamps,undated + + + + + + 240 + 22 + Records, Social Security,undated + + + + + + 240 + 23 + Records, Welfare Reform,undated + + + + + + 240 + 24 + Records, HEW - Labor - OEO Appropriations Bill,undated + + + + + + 240 + 25 + Records, Family Assistance Plan,undated + + + + + + 240 + 26 + Records, Michigan State - Medical Society,undated + + + + + + 240 + 27 + Records, Summer Lunch Program,undated + + + + + + 240 + 28 + Records, Welfare,undated + + + + + + 240 + 29 + Records, Youth - General,undated + + + + + + 240 + 30 + Records, Youth/Boyscouts,undated + + + + + + 240 + 31 + Records, Age of Majority,undated + + + + + + 240 + 32 + Records, China - 2 folders,undated + + + + + + 240 + 33 + Records, China - 2 folders,undated + + + + + + 240 + 34 + Records, Bangladesh,undated + + + + + + 240 + 35 + Records, Messages, Political,undated + + + + + + 240 + 36 + Records, Messages G-Z - 14 folders,1971 + + + + + + 240 + 37 + Records, Messages G-Z - 14 folders,1971 + + + + + + 240 + 38 + Records, Messages G-Z - 14 folders,1971 + + + + + + 240 + 39 + Records, Messages G-Z - 14 folders,1971 + + + + + + 240 + 40 + Records, Messages G-Z - 14 folders,1971 + + + + + + 240 + 41 + Records, Messages G-Z - 14 folders,1971 + + + + + + 240 + 42 + Records, Messages G-Z - 14 folders,1971 + + + + + + 240 + 43 + Records, Messages G-Z - 14 folders,1971 + + + + + + 240 + 44 + Records, Messages G-Z - 14 folders,1971 + + + + + + 240 + 45 + Records, Messages G-Z - 14 folders,1971 + + + + + + 240 + 46 + Records, Messages G-Z - 14 folders,1971 + + + + + + 240 + 47 + Records, Messages G-Z - 14 folders,1971 + + + + + + 240 + 48 + Records, Messages G-Z - 14 folders,1971 + + + + + + 240 + 49 + Records, Messages G-Z - 14 folders,1971 + + + + + + 240 + 50 + Records, Anthony Wayne Day July 11,undated + + + + + + 240 + 51 + Records, Congratulations - Woodrow Wilson Fellowship,undated + + + + + + 240 + 52 + Records, Congratulations - Shelby High,undated + + + + + + 240 + 53 + Records, Environment, General,undated + + + + + + 240 + 54 + Records, Air Pollution - 2 folders,undated + + + + + + 240 + 55 + Records, Air Pollution - 2 folders,undated + + + + + + 240 + 56 + Records, Natural Resources, Alaska,undated + + + + + + 240 + 57 + Records, Nuclear Power,undated + + + + + + 240 + 58 + Records, Saint Lawrence Seaway,undated + + + + + + 240 + 59 + Records, SST,undated + + + + + + 240 + 60 + Records, Nuclear Power,undated + + + + + + 241 + 1 + Records, Agriculture, General,undated + + + + + + 241 + 2 + Records, Butz, Ref. Agricultural and Rural, R-110,undated + + + + + + 241 + 3 + Records, Foreign Policy,undated + + + + + + 241 + 4 + Records, Ethnic,undated + + + + + + 241 + 5 + Records, Summer Jobs,undated + + + + + + 241 + 6 + Records, Trade,undated + + + + + + 241 + 7 + Records, Inflation,undated + + + + + + 241 + 8 + Records, Productivity,undated + + + + + + 241 + 9 + Records, Gun Control,undated + + + + + + 241 + 10 + Records, Hijacking,undated + + + + + + 241 + 11 + Records, Law and Order,undated + + + + + + 241 + 12 + Records, Rate (Ref. Crime),undated + + + + + + 241 + 13 + Records, Campus Disorder,undated + + + + + + 241 + 14 + Records, Radical Terrorism,undated + + + + + + 241 + 15 + Records, FBI, Hoover,undated + + + + + + 241 + 16 + Records, Appropriations,undated + + + + + + 241 + 17 + Records, Committee on Rules and Administration,undated + + + + + + 241 + 18 + Records, Civil Rights, General,undated + + + + + + 241 + 19 + Records, Education, General,undated + + + + + + 241 + 20 + Records, Busing, General,undated + + + + + + 241 + 21 + Records, Trade, Oil Imports,undated + + + + + + 241 + 22 + Records, Trade, U.S. - Canada Auto Products,undated + + + + + + 241 + 23 + Records, Unemployment - 2 folders,undated + + + + + + 241 + 24 + Records, Unemployment - 2 folders,undated + + + + + + 241 + 25 + Records, Wage-Price Policies,undated + + + + + + 241 + 26 + Records, Democratic Reaction to Nixon=s Economic Program,undated + + + + + + 241 + 27 + Records, Academic,undated + + + + + + 241 + 28 + Records, Elementary and Secondary,undated + + + + + + 241 + 29 + Records, Public School Finance,undated + + + + + + 241 + 30 + Records, Soviet Jews,undated + + + + + + 241 + 31 + Records, Ireland, Northern,undated + + + + + + 241 + 32 + Records, Rumania,undated + + + + + + 241 + 33 + Records, Genocide,undated + + + + + + 241 + 34 + Records, Panama Canal,undated + + + + + + 241 + 35 + Records, Middle East, General,undated + + + + + + 241 + 36 + Records, Israel,undated + + + + + + 241 + 37 + Records, Cambodia,undated + + + + + + 241 + 38 + Records, Laos,undated + + + + + + 241 + 39 + Records, Vietnam, September 1971,1971 + + + + + + 241 + 40 + Records, Vietnam, July 1971,1971 + + + + + + 241 + 41 + Records, Vietnam, Nixon=s Peace Proposal,undated + + + + + + 241 + 42 + Records, Vietnam, Prisoners of War - 6 folders,undated + + + + + + 241 + 43 + Records, Vietnam, Prisoners of War - 6 folders,undated + + + + + + 241 + 44 + Records, Vietnam, Prisoners of War - 6 folders,undated + + + + + + 241 + 45 + Records, Vietnam, Prisoners of War - 6 folders,undated + + + + + + 241 + 46 + Records, Vietnam, Prisoners of War - 6 folders,undated + + + + + + 241 + 47 + Records, Vietnam, Prisoners of War - 6 folders,undated + + + + + + 241 + 48 + Records, Vietnam, Michigan Prisoners of War,undated + + + + + + 241 + 49 + Records, Vietnam, Withdrawal,undated + + + + + + 241 + 50 + Records, European Trip, November 1970,1970 + + + + + + 241 + 51 + Records, Greece,undated + + + + + + 242 + 1 + Records, Foreign Relations, Poat's Nomination, A.I.D.,undated + + + + + + 242 + 2 + Records, Foreign Relations, Vietnam,undated + + + + + + 242 + 3 + Records, Foreign Relations, Vietnam Economic Aid,undated + + + + + + 242 + 4 + Records, Foreign Relations, Vietnam, Executive Service Corps,undated + + + + + + 242 + 5 + Records, Foreign Relations, AID,undated + + + + + + 242 + 6 + Records, Interior, Sleeping Bear Dunes,undated + + + + + + 242 + 7 + Records, Michigan Highway Safety,undated + + + + + + 242 + 8 + Records, Electoral Reform Questionnaires - General,undated + + + + + + 242 + 9 + Records, Alabama,undated + + + + + + 242 + 10 + Records, Alaska,undated + + + + + + 242 + 11 + Records, Arkansas,undated + + + + + + 242 + 12 + Records, Delaware,undated + + + + + + 242 + 13 + Records, Georgia,undated + + + + + + 242 + 14 + Records, Hawaii & Indiana,undated + + + + + + 242 + 15 + Records, Idaho,undated + + + + + + 242 + 16 + Records, Louisiana,undated + + + + + + 242 + 17 + Records, Maine,undated + + + + + + 242 + 18 + Records, Maryland,undated + + + + + + 242 + 19 + Records, Montana,undated + + + + + + 242 + 20 + Records, Mississippi,undated + + + + + + 242 + 21 + Records, Nevada,undated + + + + + + 242 + 22 + Records, New Hampshire & New Mexico,undated + + + + + + 242 + 23 + Records, North Carolina,undated + + + + + + 242 + 24 + Records, North Dakota,undated + + + + + + 242 + 25 + Records, Oklahoma,undated + + + + + + 242 + 26 + Records, Oregon,undated + + + + + + 242 + 27 + Records, Rhode Island,undated + + + + + + 242 + 28 + Records, South Carolina,undated + + + + + + 242 + 29 + Records, South Dakota,undated + + + + + + 242 + 30 + Records, Texas,undated + + + + + + 242 + 31 + Records, Utah,undated + + + + + + 242 + 32 + Records, Vermont,undated + + + + + + 242 + 33 + Records, Virginia,undated + + + + + + 242 + 34 + Records, Wyoming,undated + + + + + + 243 + 1 + Records, Equal Rights Amendment, Miscellaneous Material - 6 folders,undated + + + + + + 243 + 2 + Records, Equal Rights Amendment, Miscellaneous Material - 6 folders,undated + + + + + + 243 + 3 + Records, Equal Rights Amendment, Miscellaneous Material - 6 folders,undated + + + + + + 243 + 4 + Records, Equal Rights Amendment, Miscellaneous Material - 6 folders,undated + + + + + + 243 + 5 + Records, Equal Rights Amendment, Miscellaneous Material - 6 folders,undated + + + + + + 243 + 6 + Records, Equal Rights Amendment, Miscellaneous Material - 6 folders,undated + + + + + + 243 + 7 + Records, Busing Petitions - 17 folders (continued into Box #59),undated + + + + + + 243 + 8 + Records, Busing Petitions - 17 folders (continued into Box #59),undated + + + + + + 243 + 9 + Records, Busing Petitions - 17 folders (continued into Box #59),undated + + + + + + 243 + 10 + Records, Busing Petitions - 17 folders (continued into Box #59),undated + + + + + + 243 + 11 + Records, Busing Petitions - 17 folders (continued into Box #59),undated + + + + + + 243 + 12 + Records, Busing Petitions - 17 folders (continued into Box #59),undated + + + + + + 243 + 13 + Records, Busing Petitions - 17 folders (continued into Box #59),undated + + + + + + 243 + 14 + Records, Busing Petitions - 17 folders (continued into Box #59),undated + + + + + + 243 + 15 + Records, Busing Petitions - 17 folders (continued into Box #59),undated + + + + + + 243 + 16 + Records, Busing Petitions - 17 folders (continued into Box #59),undated + + + + + + 243 + 17 + Records, Busing Petitions - 17 folders (continued into Box #59),undated + + + + + + 243 + 18 + Records, Busing Petitions - 17 folders (continued into Box #59),undated + + + + + + 243 + 19 + Records, Busing Petitions - 17 folders (continued into Box #59),undated + + + + + + 243 + 20 + Records, Busing Petitions - 17 folders (continued into Box #59),undated + + + + + + 243 + 21 + Records, Busing Petitions - 17 folders (continued into Box #59),undated + + + + + + 243 + 22 + Records, Busing Petitions - 17 folders (continued into Box #59),undated + + + + + + 243 + 23 + Records, Busing Petitions - 17 folders (continued into Box #59),undated + + + + + + 244 + 1 + Records, Health Manpower Assistance Act (S 1183),undated + + + + + + 244 + 2 + Records, 2 Year Extension of O.E.O. (S 1290),undated + + + + + + 244 + 3 + Records, Newsmen's Privilege Act (S 1311),undated + + + + + + 244 + 4 + Records, Below-Cost Sales Prohibited (S 1457),undated + + + + + + 244 + 5 + Records, Maternity Benefits for Discharged Servicemen's Wives,undated + + + + + + 244 + 6 + Records, National Health Insurance Partnership Act (S 1623),undated + + + + + + 244 + 7 + Records, National Marketing and Bargaining Act (S 1775),undated + + + + + + 244 + 8 + Records, Act to Conquer Cancer (S 1828),undated + + + + + + 244 + 9 + Records, Federal Appropriations Reform Act (S 1875),undated + + + + + + 244 + 10 + Records, Reduced Fares for Aging Americans (S 1942),undated + + + + + + 244 + 11 + Records, Special Action Office for Drug Abuse (S 2097),undated + + + + + + 244 + 12 + Records, Narcotic Addict Rehabilitation Amendments (S 2140),undated + + + + + + 244 + 13 + Records, Juvenile Delinquency Prevention (S 2148),undated + + + + + + 244 + 14 + Records, Postage-Free Mail for Servicemen Overseas (S 2332),undated + + + + + + 244 + 15 + Records, National Sickle Cell Anemia Prevention Act (S 2676),undated + + + + + + 244 + 16 + Records, Community School Center Development Act (S 2689),undated + + + + + + 244 + 17 + Records, Economic Stabilization Act Amendments (S 2712),undated + + + + + + 244 + 18 + Records, Equality for Dependency States (S 2738),undated + + + + + + 244 + 19 + Records, Export Expansion Act of 1972 (S 2754),1972 + + + + + + 244 + 20 + Records, Marine Mammal Protection Act (S 2871),undated + + + + + + 244 + 21 + Records, Permit POW/MIA Sons to Enter Service Academies (S 2945),undated + + + + + + 244 + 22 + Records, Interstate Commerce Commission, C&O to Traverse City,undated + + + + + + 244 + 23 + Records, Internal Revenue Service, Detroit Data Center,undated + + + + + + 244 + 24 + Records, National Labor Relations Board,undated + + + + + + 244 + 25 + Records, Office of Economic Opportunity, Farmers Union,undated + + + + + + 244 + 26 + Records, Office of Economic Opportunity, Oceana County,undated + + + + + + 244 + 27 + Records, Office of Economic Opportunity, Wayne County,undated + + + + + + 244 + 28 + Records, Office of Economic Opportunity, Benton Harbor,undated + + + + + + 244 + 29 + Records, Office of Economic Opportunity, General,undated + + + + + + 244 + 30 + Records, Office of Economic Opportunity, Lansing, Four Cap Sheep Program,undated + + + + + + 244 + 31 + Records, Office of Economic Opportunity, Legal Services - 2 folders,undated + + + + + + 244 + 32 + Records, Office of Economic Opportunity, Legal Services - 2 folders,undated + + + + + + 244 + 33 + Records, Office of Emergency Preparedness,undated + + + + + + 244 + 34 + Records, Office of Management and Budget,undated + + + + + + 244 + 35 + Records, Oil Import Appeals Board,undated + + + + + + 244 + 36 + Records, Pay Board Fringe Benefits,undated + + + + + + 244 + 37 + Records, Small Business Administration,undated + + + + + + 244 + 38 + Records, General Services Administration,undated + + + + + + 245 + 1 + Records, Civil Aeronautics Board,undated + + + + + + 245 + 2 + Records, Eligibility for Reimbursement,undated + + + + + + 245 + 3 + Records, Environmental Problems, Notes and References,undated + + + + + + 245 + 4 + Records, Environmental Problems, Nuclear Safety,undated + + + + + + 245 + 5 + Records, Environmental Problems, Fusion Power,undated + + + + + + 245 + 6 + Records, Environmental Protection Agency,undated + + + + + + 245 + 7 + Records, Energy,undated + + + + + + 245 + 8 + Records, Atomic Energy Commission,undated + + + + + + 245 + 9 + Records, Bank of the Commonwealth,undated + + + + + + 245 + 10 + Records, Federal Mediation and Conciliation Service,undated + + + + + + 245 + 11 + Records, Federal Trade Commission,undated + + + + + + 245 + 12 + Records, General Accounting Office,undated + + + + + + 245 + 13 + Records, NASA,undated + + + + + + 245 + 14 + Records, Casey Nomination,undated + + + + + + 245 + 15 + Records, Miscellaneous Correspondence - 6 folders,undated + + + + + + 245 + 16 + Records, Miscellaneous Correspondence - 6 folders,undated + + + + + + 245 + 17 + Records, Miscellaneous Correspondence - 6 folders,undated + + + + + + 245 + 18 + Records, Miscellaneous Correspondence - 6 folders,undated + + + + + + 245 + 19 + Records, Miscellaneous Correspondence - 6 folders,undated + + + + + + 245 + 20 + Records, Miscellaneous Correspondence - 6 folders,undated + + + + + + 245 + 21 + Records, Veterans Administration,undated + + + + + + 245 + 22 + Records, Labor and Public Welfare, Railroad Union Dispute,undated + + + + + + 245 + 23 + Records, Railroad Shop Craft Dispute, SJ Res 81,undated + + + + + + 245 + 24 + Records, Ordman,undated + + + + + + 245 + 25 + Records, Higher Education,undated + + + + + + 245 + 26 + Records, Labor, Landrum - Griffin,undated + + + + + + 245 + 27 + Records, Labor, Minimum Wage,undated + + + + + + 245 + 28 + Records, Labor, Miscellaneous - 2 folders,undated + + + + + + 245 + 29 + Records, Labor, Miscellaneous - 2 folders,undated + + + + + + 245 + 30 + Records, Labor, Taft - Hartley 14 (b),undated + + + + + + 245 + 31 + Records, Labor, Unemployment,undated + + + + + + 245 + 32 + Records, National Resources,undated + + + + + + 245 + 33 + Records, National Economy,undated + + + + + + 245 + 34 + Records, N.A.T.O. Speeches,undated + + + + + + 245 + 35 + Records, Newsletter Releases, Future File,undated + + + + + + 245 + 36 + Records, National Defense,undated + + + + + + 245 + 37 + Records, Public Welfare, Unemployment,undated + + + + + + 245 + 38 + Records, Public Works,undated + + + + + + 245 + 39 + Records, Poverty Transportation,undated + + + + + + 245 + 40 + Records, Reapportionment,undated + + + + + + 245 + 41 + Records, Vietnam,undated + + + + + + 246 + 1 + Records, Education,undated + + + + + + 246 + 2 + Records, Education, Lower and Secondary Education,undated + + + + + + 246 + 3 + Records, International Relations,undated + + + + + + 246 + 4 + Records, Education, Labor Committee, 14 (b) Speech and Statement,undated + + + + + + 246 + 5 + Records, Labor, General,undated + + + + + + 246 + 6 + Records, Civil Rights (HR 2516),undated + + + + + + 246 + 7 + Records, Communism,undated + + + + + + 246 + 8 + Records, Finance, Tax,undated + + + + + + 246 + 9 + Records, Draft,undated + + + + + + 246 + 10 + Records, Government,undated + + + + + + 246 + 11 + Records, Campaign, Politics,undated + + + + + + 246 + 12 + Records, Communications,undated + + + + + + 246 + 13 + Records, Civil Service,undated + + + + + + 246 + 14 + Records, Agriculture,undated + + + + + + 246 + 15 + Records, Auto Safety,undated + + + + + + 246 + 16 + Records, Aged, Medicare,undated + + + + + + 246 + 17 + Records, Bills and Resolutions Introduced,undated + + + + + + 246 + 18 + Records, Biography,undated + + + + + + 246 + 19 + Records, Civil Rights,undated + + + + + + 246 + 20 + Records, Bonnie and Clyde" and the "Incident,undated + + + + + + 246 + 21 + Records, Bills, Giannone,undated + + + + + + 246 + 22 + Records, Housing Case, Regency,undated + + + + + + 246 + 23 + Records, Keweenaw Weather Map,undated + + + + + + 246 + 24 + Records, Wayne State, Defacto Segregation Center,undated + + + + + + 246 + 25 + Records, Army, Sentinel System Command,undated + + + + + + 246 + 26 + Records, State Department, Customs Bureau Tariff, Wheat Imports,undated + + + + + + 246 + 27 + Records, Petro-Chemical Oil Imports,undated + + + + + + 246 + 28 + Records, MSU Poultry Research Lab,undated + + + + + + 246 + 29 + Records, Verna Mize Case,undated + + + + + + 246 + 30 + Records, Arnheiter Case,undated + + + + + + 246 + 31 + Records, Alewife Protein Concentrate Process,undated + + + + + + 246 + 32 + Records, Michigan Fallout Shelter Program,undated + + + + + + 246 + 33 + Records, Duck Banding,undated + + + + + + 246 + 34 + Records, Troy Man Missing in Romania,undated + + + + + + 246 + 35 + Records, Nelson Amendment ("Green Thumb"),undated + + + + + + 246 + 36 + Records, Patrick V. McNamara Building,undated + + + + + + 246 + 37 + Records, U.S. - Mexico Border, Industrialization Program,undated + + + + + + 246 + 38 + Records, Maritime Administration,undated + + + + + + 246 + 39 + Records, Giffels and Rossetti Export Licenses, U.S.S.R.,undated + + + + + + 246 + 40 + Records, Oil Imports and Executive Orders,undated + + + + + + 246 + 41 + Records, Detroit, Economic Development Request,undated + + + + + + 246 + 42 + Records, Sugar Quotas, Michigan Beets,undated + + + + + + 246 + 43 + Records, New Detroit, Policy Study Proposition,undated + + + + + + 246 + 44 + Records, Frankfort, Manistee Boat Disaster,undated + + + + + + 246 + 45 + Records, Forest Baxter, Air Pollution Control,undated + + + + + + 246 + 46 + Records, Coldwater Draft Board Case,undated + + + + + + 246 + 47 + Records, Shaener-Muskegon Sewer Treatment,undated + + + + + + 246 + 48 + Records, Senator's Appointment as Member of U.S. Commission to UNESCO,undated + + + + + + 246 + 49 + Records, Father Marquette Trail,undated + + + + + + 246 + 50 + Records, Root-Adams Electronic Case,undated + + + + + + 246 + 51 + Records, Calumet City Editorial Complaint,undated + + + + + + 246 + 52 + Records, M-16 Rifles to Singapore,undated + + + + + + 246 + 53 + Records, Steel Imports, Steel Tariffs,undated + + + + + + 246 + 54 + Records, Rand Cancer Serum Case,undated + + + + + + 246 + 55 + Records, Southfield Plain Flood Project,undated + + + + + + 246 + 56 + Records, Magnesium Stockpile Disposal (HR 5785),undated + + + + + + 246 + 57 + Records, Proposed Urban Renewal Amendment,undated + + + + + + 246 + 58 + Records, U.|S. Weather Bureau, Michigan Sheriffs,undated + + + + + + 246 + 59 + Records, Sleeping Bear Dunes,undated + + + + + + 246 + 60 + Records, Sleeping Bear Dunes, Hart,1967 + + + + + + 246 + 61 + Records, Labor, Campaign Propaganda,1966 + + + + + + 246 + 62 + Records, Election Reform, Political Contributions,undated + + + + + + 246 + 63 + Records, Poverty,1967 + + + + + + 246 + 64 + Records, Emergency Employment Act of 1967,1967 + + + + + + 246 + 65 + Records, Economic Opportunity Amendment (S 2388),undated + + + + + + 246 + 66 + Records, Gun Legislation,undated + + + + + + 246 + 67 + Records, Ways and Means, Firearms,1965 + + + + + + 246 + 68 + Records, Firearms,1967 + + + + + + 246 + 69 + Records, Firearms,1966 + + + + + + 246 + 70 + Records, Newsletter,undated + + + + + + 246 + 71 + Records, Civil Rights, Suggestions and Proposals,undated + + + + + + 246 + 72 + Records, Miscellaneous,undated + + + + + + 246 + 73 + Records, Senator Percy,undated + + + + + + 246 + 74 + Records, Congratulatory Telegrams,undated + + + + + + 247 + 1 + Records, Rules Committee on Ford Vice Presidential Nomination,undated + + + + + + 247 + 2 + Records, Relief for the Archdiocese of Detroit,undated + + + + + + 247 + 3 + Records, Senate Standing Rules,undated + + + + + + 247 + 4 + Records, Busing Amendment (S 659),undated + + + + + + 247 + 5 + Records, Busing Amendments,undated + + + + + + 247 + 6 + Records, Busing Constitutional Amendment (S J Res 164),undated + + + + + + 247 + 7 + Records, Tax Loopholes Threatening Small Farmers (S 4008),undated + + + + + + 247 + 8 + Records, Advisory Committee Inter-Governmental Relations (S 3128),undated + + + + + + 247 + 9 + Records, Vietnamese Orphan Act (S 3534),undated + + + + + + 247 + 10 + Records, Labor Court of 1972 (S 3114) - 2 folders,1972 + + + + + + 247 + 11 + Records, Labor Court of 1972 (S 3114) - 2 folders,1972 + + + + + + 247 + 12 + Records, National Cemetery at Fort Custer (S 2998),undated + + + + + + 247 + 13 + Records, Protection of Animals in Transit (S 3009),undated + + + + + + 247 + 14 + Records, Detergent Control Act,undated + + + + + + 247 + 15 + Records, Motor Vehicle Air Pollution Control Act (S 2250),undated + + + + + + 247 + 16 + Records, Tax Adjustment for Small Business (S 2165),undated + + + + + + 247 + 17 + Records, Medical Doctors as Inductees (S 2210),undated + + + + + + 247 + 18 + Records, Housing and Urban Development Act of 1970,1970 + + + + + + 247 + 19 + Records, Veterans Education Assistance (S 2063),undated + + + + + + 247 + 20 + Records, Defense of Malpractice Suits (S 1078),undated + + + + + + 247 + 21 + Records, National Advisory Council on Migratory Labor (S 554),undated + + + + + + 247 + 22 + Records, Air Pollution,undated + + + + + + 247 + 23 + Records, Repeal of Federal Excise Tax on Autos (S 2286),undated + + + + + + 247 + 24 + Records, Pensions, Amends IRC (S 2485),undated + + + + + + 247 + 25 + Records, Detergent Control Act (S 2553),undated + + + + + + 247 + 26 + Records, Jack Bradshaw,undated + + + + + + 247 + 27 + Records, Ida Kinstmann (S 690),undated + + + + + + 247 + 28 + Records, Abdul Muhsin Galozi (S 2378),undated + + + + + + 247 + 29 + Records, Display of State Flags at Washington Monument (S J Res 62),undated + + + + + + 247 + 30 + Records, Physical and Mental Fitness Inductees (HR 6531),undated + + + + + + 247 + 31 + Records, Portrait for Vandenburg Room (S Res 263),undated + + + + + + 247 + 32 + Records, Shore Erosion Private Property (S 278),undated + + + + + + 247 + 33 + Records, Enactment of Last Regular Appropriations Act (S 553),undated + + + + + + 247 + 34 + Records, Emergency Public Interest Protection (S 560),undated + + + + + + 247 + 35 + Records, News Clippings and Releases (S 560),undated + + + + + + 247 + 36 + Records, Work by Others (S 560),undated + + + + + + 247 + 37 + Records, Staff Work (S 560),undated + + + + + + 247 + 38 + Records, Dock Strike,undated + + + + + + 247 + 39 + Records, Judgement in Favor of Grand River Indians (S 3813),undated + + + + + + 247 + 40 + Records, State and Local Fiscal Assistance Act (S 3657),undated + + + + + + 247 + 41 + Records, Extend Power of Attorney for POW's and MIA's (S 3202),undated + + + + + + 247 + 42 + Records, Prevent Transportation of Infected Turtles (S 3002),undated + + + + + + 247 + 43 + Records, Compensation for Victims of Crime (S 2994),undated + + + + + + 247 + 44 + Records, Exempt from Taxation POW and MIA Compensation (S 2944),undated + + + + + + 247 + 45 + Records, Expand Health Maintenance Organization (S 1182),undated + + + + + + 247 + 46 + Records, Amend Higher Education Act (S 1123),undated + + + + + + 247 + 47 + Records, Shoreline Erosion Control Act (S 1052),undated + + + + + + 247 + 48 + Records, National Day of Prayer for China (S Con Res 57),undated + + + + + + 247 + 49 + Records, POW's and MIA's (S Con Res 89),undated + + + + + + 247 + 50 + Records, Clean Up America Day (SJ Res 158),undated + + + + + + 247 + 51 + Records, Week of Concern for POW and MIA (S J Res 189),undated + + + + + + 247 + 52 + Records, Honoring Harry Truman at 88 (S Res 292),undated + + + + + + 248 + 1 + Records, Airbags,undated + + + + + + 248 + 2 + Records, Alaska National Interest Lands (S 1787),undated + + + + + + 248 + 3 + Records, Alaskan Oil,undated + + + + + + 248 + 4 + Records, Alaskan Gas,undated + + + + + + 248 + 5 + Records, Appropriations, Requests,undated + + + + + + 248 + 6 + Records, Appropriations, Laser Fusion/KMS,undated + + + + + + 248 + 7 + Records, Appropriations, Interior,undated + + + + + + 248 + 8 + Records, Appropriations, Supplemental, FY '77,undated + + + + + + 248 + 9 + Records, Arctic Natural Gas,undated + + + + + + 248 + 10 + Records, William Beckham,undated + + + + + + 248 + 11 + Records, Budget, FY '78 - 2 folders,undated + + + + + + 248 + 12 + Records, Budget, FY '78 - 2 folders,undated + + + + + + 248 + 13 + Records, Byrd Amendment,undated + + + + + + 248 + 14 + Records, Canadian Oil Imports,undated + + + + + + 248 + 15 + Records, Canadian Pipeline Treaty,undated + + + + + + 248 + 16 + Records, Clinch River Breeder Reactor,undated + + + + + + 248 + 17 + Records, Countercyclical Aid,undated + + + + + + 248 + 18 + Records, Conservation Gas,undated + + + + + + 248 + 19 + Records, Cutter Nomination,undated + + + + + + 248 + 20 + Records, Economic Indicators,undated + + + + + + 248 + 21 + Records, Economic Stimulus,undated + + + + + + 248 + 22 + Records, Employment - Michigan,undated + + + + + + 248 + 23 + Records, Energy Dept.,undated + + + + + + 248 + 24 + Records, Energy, General Background Data,undated + + + + + + 248 + 25 + Records, Energy, Energy Plan,undated + + + + + + 248 + 26 + Records, Energy, Energy Plan, Michigan Impact,undated + + + + + + 248 + 27 + Records, Energy, Efficiency of Consumer Products,undated + + + + + + 248 + 28 + Records, Energy, National Energy Act,undated + + + + + + 248 + 29 + Records, Omnibus Energy Legislation,undated + + + + + + 248 + 30 + Records, Omnibus Energy Legislation, Additional Information,undated + + + + + + 248 + 31 + Records, El Paso Natural Gas Project,undated + + + + + + 248 + 32 + Records, ERDA Authorization Bill,undated + + + + + + 248 + 33 + Records, Automobile Exise Tax,undated + + + + + + 248 + 34 + Records, Federal Credit Unions,undated + + + + + + 248 + 35 + Records, Federal Screw Works,undated + + + + + + 248 + 36 + Records, Financial Support Fund (S 1907),undated + + + + + + 248 + 37 + Records, Footwear,undated + + + + + + 248 + 38 + Records, Gasoline Decontrol,undated + + + + + + 248 + 39 + Records, Great Lakes Vessel Owners Liability,undated + + + + + + 248 + 40 + Records, Limitation of Indian Hunting and Fishing Rights (H J Res 206),undated + + + + + + 248 + 41 + Records, International Paper Company,undated + + + + + + 248 + 42 + Records, International Security Assistance (S 1160),undated + + + + + + 249 + 1 + Records, Issue Memos to Senator,undated + + + + + + 249 + 2 + Records, Lake Erie Natural Gas,undated + + + + + + 249 + 3 + Records, International Trade of U.S. Economics,undated + + + + + + + 249 + 5 + Records, Mushrooms,undated + + + + + + 249 + 6 + Records, NASA Authorization,undated + + + + + + 249 + 7 + Records, Natural Gas, Legislation (S 2310),undated + + + + + + 249 + 8 + Records, Natural Gas, Cutbacks,undated + + + + + + 249 + 9 + Records, Natural Gas, Deregulation - 2 folders,undated + + + + + + 249 + 10 + Records, Natural Gas, Deregulation - 2 folders,undated + + + + + + 249 + 11 + Records, Natural Gas, Emergency Allocation (S 474),undated + + + + + + 249 + 12 + Records, Casework,undated + + + + + + 249 + 13 + Records, Veterans Administration, District of Columbia,undated + + + + + + 249 + 14 + Records, Asparagus,undated + + + + + + 249 + 15 + Records, Belanger,undated + + + + + + 249 + 16 + Records, Amtrak, Ann Arbor,undated + + + + + + 249 + 17 + Records, Cedar Point - 2 folders,undated + + + + + + 249 + 18 + Records, Cedar Point - 2 folders,undated + + + + + + 249 + 19 + Records, Federal Communications Commission, Colby,undated + + + + + + 249 + 20 + Records, Degrow, Highway Beautification,undated + + + + + + 249 + 21 + Records, Federal Energy Administration, Detroit Edison,undated + + + + + + 249 + 22 + Records, Dexter Griffin,undated + + + + + + 249 + 23 + Records, E2 Flow,undated + + + + + + 249 + 24 + Records, Fish Nets,undated + + + + + + 249 + 25 + Records, Hiller Fuel,undated + + + + + + 249 + 26 + Records, George Raship,undated + + + + + + 249 + 27 + Records, Marine Center,undated + + + + + + 249 + 28 + Records, North Central Airlines,undated + + + + + + 249 + 29 + Records, Under Hill,undated + + + + + + 249 + 30 + Records, Wayne State,undated + + + + + + 249 + 31 + Records, 1973 Supreme Court Swearing In,1973 + + + + + + 249 + 32 + Records, 1974 Supreme Court Searing In,1974 + + + + + + 249 + 33 + Records, Zantop Airlines,undated + + + + + + 249 + 34 + Records, Campeau,undated + + + + + + 250 + 1 + Records, Campeau,undated + + + + + + 250 + 2 + Records, Ecorse Publishing,undated + + + + + + 250 + 3 + Records, Miscellaneous,undated + + + + + + 250 + 4 + Records, Yanitz, Citizen Band Radio,undated + + + + + + 250 + 5 + Records, Abortion,undated + + + + + + 250 + 6 + Records, Anti-Trust,undated + + + + + + 250 + 7 + Records, Busing- 2 folders,undated + + + + + + 250 + 8 + Records, Busing- 2 folders,undated + + + + + + 250 + 9 + Records, Halleck,undated + + + + + + 250 + 10 + Records, Judicial Annuities Act (S 12),undated + + + + + + 250 + 11 + Records, Polograph,undated + + + + + + 250 + 12 + Records, School Bus, Proclamation,undated + + + + + + 250 + 13 + Records, Sixth Circuit,undated + + + + + + 250 + 14 + Records, Supreme Court,undated + + + + + + 250 + 15 + Records, Private Bills,undated + + + + + + 250 + 16 + Records, S Con Res 77,undated + + + + + + 250 + 17 + Records, Background,undated + + + + + + 250 + 18 + Records, Intruders, Deadly Force,undated + + + + + + 250 + 19 + Records, Committee, Pro,undated + + + + + + 250 + 20 + Records, Carter, Bell,undated + + + + + + 250 + 21 + Records, Air Fares,undated + + + + + + 250 + 22 + Records, Concords,undated + + + + + + 250 + 23 + Records, Aviation - 3 folders,undated + + + + + + 250 + 24 + Records, Aviation - 3 folders,undated + + + + + + 250 + 25 + Records, Aviation - 3 folders,undated + + + + + + 250 + 26 + Records, Cable Television,undated + + + + + + 250 + 27 + Records, Cable, Pole Attachment Bill,undated + + + + + + 250 + 28 + Records, Telephone,undated + + + + + + 250 + 29 + Records, Public Broadcasting,undated + + + + + + 250 + 30 + Records, Telecommunications,undated + + + + + + 250 + 31 + Records, Carter, Emergency Gas,undated + + + + + + 250 + 32 + Records, Auto Safety, Air Bags,undated + + + + + + 250 + 33 + Records, Auto Safety, Standards,undated + + + + + + 251 + 1 + Records, Wine Tax Legislation,undated + + + + + + 251 + 2 + Records, Phosphate,undated + + + + + + 251 + 3 + Records, Amtrak,undated + + + + + + 251 + 4 + Records, Auto Dumping,undated + + + + + + 251 + 5 + Records, Auto Crash Parts,undated + + + + + + 251 + 6 + Records, Airbags,undated + + + + + + 251 + 7 + Records, Airbags, Seatbelts,undated + + + + + + 251 + 8 + Records, Automotive,undated + + + + + + 251 + 9 + Records, Research and Development - 2 folders,undated + + + + + + 251 + 10 + Records, Research and Development - 2 folders,undated + + + + + + 251 + 11 + Records, Toxic Substance Legislation,undated + + + + + + 251 + 12 + Records, Appropriations,undated + + + + + + 251 + 13 + Records, Drafts,undated + + + + + + 251 + 14 + Records, Science Technology Committee (S 32),undated + + + + + + 251 + 15 + Records, Abortion,undated + + + + + + 251 + 16 + Records, Busing, Remarks,undated + + + + + + 251 + 17 + Records, Introduction and Copies of S Res 302,undated + + + + + + 251 + 18 + Records, New York Fiscal Crisis,undated + + + + + + 251 + 19 + Records, S J Res 1,undated + + + + + + 251 + 20 + Records, Artic Gas,undated + + + + + + 251 + 21 + Records, Atomic Energy,undated + + + + + + 251 + 22 + Records, Nuclear Energy,undated + + + + + + 251 + 23 + Records, Lobby Disclosure,undated + + + + + + 251 + 24 + Records, metro Parks,undated + + + + + + 251 + 25 + Records, New River,undated + + + + + + 251 + 26 + Records, Payments-in-Lieu,undated + + + + + + 251 + 27 + Records, Indians,undated + + + + + + 251 + 28 + Records, Indian Dunes,undated + + + + + + 251 + 29 + Records, Coal Leasing,undated + + + + + + 252 + 1 + Records, Floor Remarks,undated + + + + + + 252 + 2 + Records, Dear Colleague, Sponsors,undated + + + + + + 252 + 3 + Records, Federal Judges,undated + + + + + + 252 + 4 + Records, Youth Unemployment,undated + + + + + + 252 + 5 + Records, Pardon,undated + + + + + + 252 + 6 + Records, Budget,undated + + + + + + 252 + 7 + Records, Government Operations,undated + + + + + + 252 + 8 + Records, Interior,undated + + + + + + 252 + 9 + Records, Legislative Proposals,undated + + + + + + 252 + 10 + Records, Negative Option,undated + + + + + + 252 + 11 + Records, Regulatory Reform,undated + + + + + + 252 + 12 + Records, Law Enforcement Assistance Administration,undated + + + + + + 252 + 13 + Records, Calendars,undated + + + + + + 252 + 14 + Records, Judiciary,undated + + + + + + 252 + 15 + Records, Crime Statistics,undated + + + + + + 252 + 16 + Records, Law Enforcement Assistance Administration,undated + + + + + + 252 + 17 + Records, Detroit Transit,undated + + + + + + 252 + 18 + Records, Federal Trade Commission, Holder in Due Course,undated + + + + + + 252 + 19 + Records, Foreign Commerce and Tourism,undated + + + + + + 252 + 20 + Records, Insulation Proposal,undated + + + + + + 252 + 21 + Records, Internal Revenue Service,undated + + + + + + 252 + 22 + Records, Task Force,undated + + + + + + 252 + 23 + Records, Korshak, New York Times,undated + + + + + + 252 + 24 + Records, Teamsters Speech,undated + + + + + + 252 + 25 + Records, S Res 89,undated + + + + + + 252 + 26 + Records, Hoffa,undated + + + + + + 252 + 27 + Records, Speech,undated + + + + + + 252 + 28 + Records, Contacts, S Res 302,undated + + + + + + 252 + 29 + Records, Permanent Subcommittee on Investigation,undated + + + + + + 252 + 30 + Records, Police Public Worker,undated + + + + + + 252 + 31 + Records, Comprehensive Employment and Training Act, Detroit,undated + + + + + + 252 + 32 + Records, Comprehensive Employment and Training Act, Migrants,undated + + + + + + 252 + 33 + Records, ERISA,undated + + + + + + 252 + 34 + Records, Occupational Health and Safety Act, Cherry Briners,undated + + + + + + 252 + 35 + Records, Soo Indians,undated + + + + + + 252 + 36 + Records, SERI,undated + + + + + + 252 + 37 + Records, Architectural Barriers,undated + + + + + + 252 + 38 + Records, Fair Labor Standards,undated + + + + + + 252 + 39 + Records, Miscellaneous,undated + + + + + + 252 + 40 + Records, PBB,1975 + + + + + + 252 + 41 + Records, PBB,1974 + + + + + + 252 + 42 + Records, PBB, March 1 - March 10, 1977,1977 + + + + + + 252 + 43 + Records, PBB, Updated,undated + + + + + + 252 + 44 + Records, PBB, January - May, 1977 - 5 folders,1977 + + + + + + 252 + 45 + Records, PBB, January - May, 1977 - 5 folders,1977 + + + + + + 252 + 46 + Records, PBB, January - May, 1977 - 5 folders,1977 + + + + + + 252 + 47 + Records, PBB, January - May, 1977 - 5 folders,1977 + + + + + + 252 + 48 + Records, PBB, January - May, 1977 - 5 folders,1977 + + + + + + 252 + 49 + Records, Notes,undated + + + + + + 252 + 50 + Records, Air Standards,undated + + + + + + 252 + 51 + Records, Child and Family Services (S 626),undated + + + + + + 252 + 52 + Records, Great Lakes,undated + + + + + + 252 + 53 + Records, Great Lakes Demo,undated + + + + + + 252 + 54 + Records, Great Lakes Navigation Demo - 2 folders,undated + + + + + + 252 + 55 + Records, Great Lakes Navigation Demo - 2 folders,undated + + + + + + 252 + 56 + Records, Notes and Miscellaneous,undated + + + + + + 252 + 57 + Records, Highways (S 2711),undated + + + + + + 252 + 58 + Records, Reserve,1971-1973 + + + + + + 252 + 59 + Records, Reserve,1974 + + + + + + 252 + 60 + Records, Reserve,1975 + + + + + + 252 + 61 + Records, Reserve,1976 + + + + + + 252 + 62 + Records, Reserve,1977 + + + + + + 252 + 63 + Records, McClure Investment Capital/Job Bill (S 2465),undated + + + + + + 252 + 64 + Records, Jack Maschaff, Veteran,undated + + + + + + 252 + 65 + Records, N.L.R.B.,undated + + + + + + 252 + 66 + Records, Environmental Study Conference,undated + + + + + + 252 + 67 + Records, Osteopathic Hospital,undated + + + + + + 252 + 68 + Records, Kim Cheloe Air Force Base,undated + + + + + + 252 + 69 + Records, Deferred Payments New,undated + + + + + + 252 + 70 + Records, Father Marquette,undated + + + + + + 252 + 71 + Records, D.E.S.,undated + + + + + + 252 + 72 + Records, Heart and Lungs Vitamin (S 988),undated + + + + + + 252 + 73 + Records, Humphrey - Hawkins (S 50),undated + + + + + + 252 + 74 + Records, S 2657 - Higher Education,undated + + + + + + 252 + 75 + Records, Indians (S 1657),undated + + + + + + 252 + 76 + Records, Isle Royale Wilderness,undated + + + + + + 253 + 1 + Records, Labor, HEW, FY '77 Appropriations,1977 + + + + + + 253 + 2 + Records, Labor, HEW, FY '76 Appropriations,1976 + + + + + + 253 + 3 + Records, NIOSH,undated + + + + + + 253 + 4 + Records, OIL - Labor,undated + + + + + + 253 + 5 + Records, Public Works, Appropriations,undated + + + + + + 253 + 6 + Records, Public Works, General,undated + + + + + + 253 + 7 + Records, Water Pollution ( S2710),undated + + + + + + 253 + 8 + Records, Griffin Statements - Various,undated + + + + + + 253 + 9 + Records, General Ecology and Environment,undated + + + + + + 253 + 10 + Records, Dr. Ludwig, Ecology,undated + + + + + + 253 + 11 + Records, College and University Involvement,undated + + + + + + 253 + 12 + Records, Defense,undated + + + + + + 253 + 13 + Records, Runaway Youths,undated + + + + + + 253 + 14 + Records, Federal Meat Inspection Act,undated + + + + + + 253 + 15 + Records, HR 8617 re: Federal Employee,undated + + + + + + 253 + 16 + Records, Miscellaneous Folder,undated + + + + + + 253 + 17 + Records, Battle Creek Port of Entry,undated + + + + + + 253 + 18 + Records, Community Services Administration,undated + + + + + + 253 + 19 + Records, Environmental Protection Agency, Hancock, Michigan,undated + + + + + + 253 + 20 + Records, Food and Drug Administration, Cherries,undated + + + + + + 253 + 21 + Records, Poe Lock,undated + + + + + + 253 + 22 + Records, Soo Locks,undated + + + + + + 253 + 23 + Records, Soo Power,undated + + + + + + 253 + 24 + Records, Detroit Crime,undated + + + + + + 253 + 25 + Records, Health Maintenance Organizations,undated + + + + + + 253 + 26 + Records, Health Service Area,undated + + + + + + 253 + 27 + Records, Health Maintenance Organizations, Detroit,undated + + + + + + 253 + 28 + Records, Health Maintenance Organizations, Lansing,undated + + + + + + 253 + 29 + Records, Raco Missile Base,undated + + + + + + 253 + 30 + Records, Copper Range,undated + + + + + + 253 + 31 + Records, Environmental Research Institute of Michigan (ERIM),undated + + + + + + 253 + 32 + Records, Federal Energy Administration - Alternative Proposals,undated + + + + + + 253 + 33 + Records, Indians,undated + + + + + + 253 + 34 + Records, Michigan Economic Action Council,undated + + + + + + 253 + 35 + Records, Roosevelt Park,undated + + + + + + 253 + 36 + Records, Steel District,undated + + + + + + 253 + 37 + Records, Upper Peninsula Fire,undated + + + + + + 253 + 38 + Records, Uranium, Upper Peninsula,undated + + + + + + 253 + 39 + Records, Seafarer,undated + + + + + + 253 + 40 + Records, Seafarer,1974 + + + + + + 253 + 41 + Records, Project Seafarer,undated + + + + + + 253 + 42 + Records, Sanguine,1973 + + + + + + 253 + 43 + Records, Sanguine, January - June 1975,1975 + + + + + + 253 + 44 + Records, Welfare, Miscellaneous,1976 + + + + + + 253 + 45 + Records, Kinchloe - 4 folders,undated + + + + + + 253 + 46 + Records, Kinchloe - 4 folders,undated + + + + + + 253 + 47 + Records, Kinchloe - 4 folders,undated + + + + + + 253 + 48 + Records, Kinchloe - 4 folders,undated + + + + + + 253 + 49 + Records, Kinchleo - General,undated + + + + + + 253 + 50 + Records, Abortion - 4 folders,undated + + + + + + 253 + 51 + Records, Abortion - 4 folders,undated + + + + + + 253 + 52 + Records, Abortion - 4 folders,undated + + + + + + 253 + 53 + Records, Abortion - 4 folders,undated + + + + + + 253 + 54 + Records, Agriculture, General,1976 + + + + + + 253 + 55 + Records, Education,1976 + + + + + + 253 + 56 + Records, Health,1976 + + + + + + 253 + 57 + Records, Miscellaneous,undated + + + + + + 254 + 1 + Records, Legislation, Miscellaneous,undated + + + + + + 254 + 2 + Records, Blind Legislation,undated + + + + + + 254 + 3 + Records, Amend Welfare and Pension Plans Disclosure (S 75),undated + + + + + + 254 + 4 + Records, Family Planning,undated + + + + + + 254 + 5 + Records, Jim Hill,undated + + + + + + 254 + 6 + Records, Correspondences,undated + + + + + + 254 + 7 + Records, Arguments against Water Project,undated + + + + + + 254 + 8 + Records, PBB Contamination, January through April 1976,1976 + + + + + + 254 + 9 + Records, PBB Contamination, May through December 1976,1976 + + + + + + 254 + 10 + Records, PBB Contamination, Agriculture/PBB Contamination,undated + + + + + + 254 + 11 + Records, PBB Contamination, Senator's PBB Briefing Book,undated + + + + + + 254 + 12 + Records, Clean Air Act, Auto Emissions,undated + + + + + + 254 + 13 + Records, Baker Amendment,undated + + + + + + 254 + 14 + Records, Economic Impacts,undated + + + + + + 254 + 15 + Records, Clean Air Reports and Studies,undated + + + + + + 254 + 16 + Records, Health Effects,undated + + + + + + 254 + 17 + Records, RPG Speech Drafts,undated + + + + + + 254 + 18 + Records, Newspaper and Magazine Articles,undated + + + + + + 254 + 19 + Records, Clean Air Act Amendments,undated + + + + + + 254 + 20 + Records, Technology,undated + + + + + + 254 + 21 + Records, Warranty Provisions,undated + + + + + + 255 + 1 + Records, Clean Air Act - 2 folders,undated + + + + + + 255 + 2 + Records, Clean Air Act - 2 folders,undated + + + + + + 255 + 3 + Records, Solar Energy Research Institute,undated + + + + + + 255 + 4 + Records, West Michigan Poison Center - Auto Emissions,undated + + + + + + 255 + 5 + Records, Panama Canal Treaties, Griffin Statements,undated + + + + + + 255 + 6 + Records, Panama Canal Treaties, History, Miscellaneous,undated + + + + + + 255 + 7 + Records, Panama Canal Treaties, Economic Implications,undated + + + + + + 255 + 8 + Records, Panama Canal Treaties, Treaty Procedure,undated + + + + + + 255 + 9 + Records, Panama Canal Treaties, Drugs and Panamanian Leaders,undated + + + + + + 255 + 10 + Records, Panama Canal Treaties, Floor Leader Information,undated + + + + + + 255 + 11 + Records, Panama Canal Treaties, Amendments,undated + + + + + + 255 + 12 + Records, Panama Canal Treaties, Seal Level Canal Alternatives,undated + + + + + + 255 + 13 + Records, Panama Canal Treaties, Panamanian Statements,undated + + + + + + 255 + 14 + Records, Panama Canal Treaties, Letters from Former Ambassadors,undated + + + + + + 255 + 15 + Records, Panama Canal Treaties, Suez Precedent,undated + + + + + + 255 + 16 + Records, Panama Canal Treaties, Amendments, Understanding,undated + + + + + + 255 + 17 + Records, Sol Lenowitz Nomination,undated + + + + + + 255 + 18 + Records, Plebiscite, Need for New,undated + + + + + + 255 + 19 + Records, Joint Statement (Carter and Torrijos),undated + + + + + + 255 + 20 + Records, Turner Drafts of Minority Views,undated + + + + + + 256 + 1 + Records, Miscellaneous Materials on Panama Canal Treaties - 2 folders,undated + + + + + + 256 + 2 + Records, Miscellaneous Materials on Panama Canal Treaties - 2 folders,undated + + + + + + 256 + 3 + Records, Panama Canal Treaties, Congressional Research Service,undated + + + + + + 256 + 4 + Records, Panama Canal Treaties, Pros and Cons Memorandum,undated + + + + + + 256 + 5 + Records, Panama Canal Treaties, Background,undated + + + + + + 256 + 6 + Records, Panama Canal Treaties, Separation of Powers, Judiciary,undated + + + + + + 256 + 7 + Records, Panama Canal Treaties, Intelligence Gathering Activities,undated + + + + + + 256 + 8 + Records, Panama Canal Treaties, Questions for Witnesses,undated + + + + + + 256 + 9 + Records, Panama Canal Treaties, Defense Issues,undated + + + + + + 256 + 10 + Records, Panama Canal Treaties, Miscellaneous,undated + + + + + + 256 + 11 + Records, Panama Canal Treaties, Manuscripts, Griffin,undated + + + + + + 256 + 12 + Records, Panama Canal Treaties, Miscellaneous Materials - 2 folders,undated + + + + + + 256 + 13 + Records, Panama Canal Treaties, Miscellaneous Materials - 2 folders,undated + + + + + + 256 + 14 + Records, Panama Canal Treaties, Rebuttal to Leonard Testimony,undated + + + + + + 256 + 15 + Records, Panama Canal Treaties, Con Testimony - 2 folders,undated + + + + + + 256 + 16 + Records, Panama Canal Treaties, Con Testimony - 2 folders,undated + + + + + + 256 + 17 + Records, Panama Canal Treaties, Pro Testimony,undated + + + + + + 256 + 18 + Records, Panama Canal Treaties, Rebutal to George Leonard Testimony – 9/77,1977 + + + + + + 256 + 19 + Records, Panama Canal Treaties, Foreign Relations Committee,undated + + + + + + 256 + 20 + Records, Panama Canal Treaties, Legal Files #4,undated + + + + + + 256 + 21 + Records, RPG Memoranda,undated + + + + + + 256 + 22 + Records, Republicans and Treaties,undated + + + + + + 256 + 23 + Records, Nominations - Paul Warnke, Miscellaneous,undated + + + + + + 256 + 24 + Records, Nominations - Paul Warnke, Confirmation Hearings,undated + + + + + + 256 + 25 + Records, Nominations - Paul Warnke, Griffin Statements - 3 folders,undated + + + + + + 256 + 26 + Records, Nominations - Paul Warnke, Griffin Statements - 3 folders,undated + + + + + + 256 + 27 + Records, Nominations - Paul Warnke, Griffin Statements - 3 folders,undated + + + + + + 257 + 1 + Records, Sinai Agreement,undated + + + + + + 257 + 2 + Records, Mid/Near East, Sinai Technicians,undated + + + + + + 257 + 3 + Records, Mid/Near East, Cyprus (1974 and before),1974 + + + + + + 257 + 4 + Records, Kissinger, Henry,undated + + + + + + 257 + 5 + Records, Foreign Relations Authorization Act, FY '76,1976 + + + + + + 257 + 6 + Records, Foreign Relations Authorization Act, FY '77,1977 + + + + + + 257 + 7 + Records, Foreign Aid, FY '76,1976 + + + + + + 257 + 8 + Records, Foreign Aid, FY '76 and '77 - 2 folders,1976-1977 + + + + + + 257 + 9 + Records, Foreign Aid, FY '76 and '77 - 2 folders,1976-1977 + + + + + + 257 + 10 + Records, Foreign Aid, FY '75,1975 + + + + + + 257 + 11 + Records, Kissinger, Henry, Miscellaneous Speeches,undated + + + + + + 257 + 12 + Records, MIA, Working File,undated + + + + + + 257 + 13 + Records, MIA, Wozniak, Fred,undated + + + + + + 257 + 14 + Records, MIA, Huard, James,undated + + + + + + 257 + 15 + Records, Kincheloe AFB, Base Closure Adjustment (S 1901),undated + + + + + + 257 + 16 + Records, Kincheloe AFB, Economic Adjustment Program,undated + + + + + + 257 + 17 + Records, Kincheloe AFB, Closing,undated + + + + + + 257 + 18 + Records, MIAs,undated + + + + + + 257 + 19 + Records, F-15 Sales,undated + + + + + + 257 + 20 + Records, F-15 Sales to Mid-East,undated + + + + + + 257 + 21 + Records, Kincheloe Summary Material,undated + + + + + + 257 + 22 + Records, Kincheloe, 1977,1977 + + + + + + 257 + 23 + Records, Martin, Graham A, Nomination,undated + + + + + + 257 + 24 + Records, Seafarer,undated + + + + + + 257 + 25 + Records, Representational Allowance,undated + + + + + + 257 + 26 + Records, Detroit Passport Office,undated + + + + + + 257 + 27 + Records, Magnuson Fishery Bill (S 961) - 2 folders,undated + + + + + + 257 + 28 + Records, Magnuson Fishery Bill (S 961) - 2 folders,undated + + + + + + 257 + 29 + Records, North Atlantic Assembly,undated + + + + + + 257 + 30 + Records, Griffin Statements (S 961),undated + + + + + + 257 + 31 + Records, Griffin Amendment (S 961),undated + + + + + + 257 + 32 + Records, Kenneth Fry, Wounded Marine,undated + + + + + + 258 + 1 + Records, Foreign Relations Committee, Confirmation, Nat Davis,undated + + + + + + 258 + 2 + Records, Foreign Relations Committee, Confirmation, J. Lehman,undated + + + + + + 258 + 3 + Records, Foreign Relations Committee, International News Summary,undated + + + + + + 258 + 4 + Records, Foreign Relations Committee, Foreign Policy Hearing,undated + + + + + + 258 + 5 + Records, Europe, Finland, Ambassador Mark Evans,undated + + + + + + 258 + 6 + Records, Criminal Justice and Reform Act,undated + + + + + + 258 + 7 + Records, Captive Nations, President Ford,undated + + + + + + 258 + 8 + Records, George Bush, CIA Director,undated + + + + + + 258 + 9 + Records, Asia and Pacific, SEATO,undated + + + + + + 258 + 10 + Records, Amnesty,undated + + + + + + 258 + 11 + Records, Military Construction Authorization, FY '77,1977 + + + + + + 258 + 12 + Records, Military Procurement Authorization, FY '76,1976 + + + + + + 258 + 13 + Records, War Powers, Clippings, Floor Remarks, Bills,undated + + + + + + 258 + 14 + Records, War Powers, Resolutions Review,undated + + + + + + 258 + 15 + Records, War Powers, Other Material,undated + + + + + + 258 + 16 + Records, POW's,undated + + + + + + 258 + 17 + Records, POW's and MIA's,undated + + + + + + 258 + 18 + Records, Asia and Pacific, Vietnam - 3 folders,undated + + + + + + 258 + 19 + Records, Asia and Pacific, Vietnam - 3 folders,undated + + + + + + 258 + 20 + Records, Asia and Pacific, Vietnam - 3 folders,undated + + + + + + 258 + 21 + Records, Asia and Pacific, Political Prisoners,undated + + + + + + 258 + 22 + Records, Asia and Pacific, Vietnam, Non-Communist,undated + + + + + + 258 + 23 + Records, Tax Credit for School Tuition,undated + + + + + + 258 + 24 + Records, Specialty Steel Imports,undated + + + + + + 258 + 25 + Records, International Development Association,undated + + + + + + 258 + 26 + Records, Tax Reform Bill (HR 10612),undated + + + + + + 258 + 27 + Records, Trade, Clips,undated + + + + + + 258 + 28 + Records, Agriculture,undated + + + + + + 258 + 29 + Records, International Trade Commission, Honey,undated + + + + + + 258 + 30 + Records, Industrial Diamond Association,undated + + + + + + 258 + 31 + Records, Multi-National Corporations,undated + + + + + + 258 + 32 + Records, Michigan Sugar Company,undated + + + + + + 258 + 33 + Records, Coopersville,undated + + + + + + 258 + 34 + Records, Ford Motor Company,undated + + + + + + 259 + 1 + Records, Divestiture,undated + + + + + + 259 + 2 + Records, Export Administration Act of 1976,1976 + + + + + + 259 + 3 + Records, Banking,undated + + + + + + 259 + 4 + Records, Fiscal 1977 Budget,1977 + + + + + + 259 + 5 + Records, Housing Amendments of 1976,1976 + + + + + + 259 + 6 + Records, Revenue Sharing,undated + + + + + + 259 + 7 + Records, Legislation, Tax,undated + + + + + + 259 + 8 + Records, Foreign Source Income,undated + + + + + + 259 + 9 + Records, Export/Import Bank,undated + + + + + + 259 + 10 + Records, Ford Economic Accomplishments,undated + + + + + + 259 + 11 + Records, Employee Stock Ownership Plan (ESOP),undated + + + + + + 259 + 12 + Records, Michigan Economic - Reference,undated + + + + + + 259 + 13 + Records, Detroit Housing,undated + + + + + + 259 + 14 + Records, Revenue Sharing,undated + + + + + + 259 + 15 + Records, Michigan Beet Sugar,undated + + + + + + 259 + 16 + Records, Mushroom Imports,undated + + + + + + 259 + 17 + Records, Job Tax Credit Legislation,undated + + + + + + 259 + 18 + Records, World Peace Tax Fund,undated + + + + + + 259 + 19 + Records, Community Development Assistance (S 2986),undated + + + + + + 259 + 20 + Records, S Con Res 139, FY '77,1977 + + + + + + 259 + 21 + Records, Tax Issue, State Legislators, Denny Cawthorne,undated + + + + + + 259 + 22 + Records, Truck and Bus Excise Taxes,undated + + + + + + 259 + 23 + Records, Alaskan Pipeline,undated + + + + + + 259 + 24 + Records, Amendments and Joint Resolutions,undated + + + + + + 259 + 25 + Records, American Mining Congress,undated + + + + + + 259 + 26 + Records, American Mining Congress Speech - 2 folders,undated + + + + + + 259 + 27 + Records, American Mining Congress Speech - 2 folders,undated + + + + + + 259 + 28 + Records, American Motors, Holmes Foundary Scrap Steel,undated + + + + + + 259 + 29 + Records, Amour, Herrick, Allen, Hall and Baily, Shamrock Airlines,undated + + + + + + 259 + 30 + Records, Atomic Powered Electric Plants,undated + + + + + + 259 + 31 + Records, Consumer Power,undated + + + + + + 259 + 32 + Records, Energy,undated + + + + + + 259 + 33 + Records, Energy, Severence Tax on Montana Coal,undated + + + + + + 259 + 34 + Records, Energy Crisis, Oil Shortage,undated + + + + + + 259 + 35 + Records, Excise Tax on Trucks,undated + + + + + + 259 + 36 + Records, Floor Speeches,undated + + + + + + 259 + 37 + Records, Federal Housing Act of 1974,1974 + + + + + + 259 + 38 + Records, Federal Judgeships,undated + + + + + + 259 + 39 + Records, Fitch, WC, Depreciation Programs,undated + + + + + + 259 + 40 + Records, Federal Food, Drug, and Cosmetics Act,undated + + + + + + 259 + 41 + Records, Financial Institutions (S 2640),undated + + + + + + 259 + 42 + Records, Foreign Economic Policy, OPIC,undated + + + + + + 259 + 43 + Records, Health Maintenance Organizations,undated + + + + + + 259 + 44 + Records, IGA, Private Label Food,undated + + + + + + 259 + 45 + Records, Indians, Detroit,undated + + + + + + 259 + 46 + Records, Labor, Management Trust Funds,undated + + + + + + 259 + 47 + Records, Legislative Memos - 5 folders,undated + + + + + + 259 + 48 + Records, Legislative Memos - 5 folders,undated + + + + + + 259 + 49 + Records, Legislative Memos - 5 folders,undated + + + + + + 259 + 50 + Records, Legislative Memos - 5 folders,undated + + + + + + 259 + 51 + Records, Legislative Memos - 5 folders,undated + + + + + + 260 + 1 + Records, Diabetes,undated + + + + + + 260 + 2 + Records, East Detroit Police,undated + + + + + + 260 + 3 + Records, Independent Energy Problems,undated + + + + + + 260 + 4 + Records, Economic Development Corporation - Genesee County,undated + + + + + + 260 + 5 + Records, Cooperative Services, Inc.,undated + + + + + + 260 + 6 + Records, Michigan Shore Erosion,undated + + + + + + 260 + 7 + Records, St. Regis Hotel, Detroit,undated + + + + + + 260 + 8 + Records, Michigan Mushroom Growers,undated + + + + + + 260 + 9 + Records, Michigan Oil Import Regulations,undated + + + + + + 260 + 10 + Records, Miscellaneous,undated + + + + + + 260 + 11 + Records, City of Lincoln Park,undated + + + + + + 260 + 12 + Records, Win Schuler's, Inc.,undated + + + + + + 260 + 13 + Records, Win Schuler's Bar,undated + + + + + + 260 + 14 + Records, Thank You - Correspondence,undated + + + + + + 260 + 15 + Records, Agriculture,undated + + + + + + 260 + 16 + Records, Anti-Trust (Cutler Plastics),undated + + + + + + 260 + 17 + Records, Automobiles,undated + + + + + + 260 + 18 + Records, Civil Aeronautics Board,undated + + + + + + 260 + 19 + Records, Commerce,undated + + + + + + 260 + 20 + Records, Communications,undated + + + + + + 260 + 21 + Records, Civil Rights,undated + + + + + + 260 + 22 + Records, Energy,undated + + + + + + 260 + 23 + Records, Environment,undated + + + + + + 260 + 24 + Records, Federal Communications Commission,undated + + + + + + 260 + 25 + Records, Federal Retirement System for Certain State,undated + + + + + + 260 + 26 + Records, Employees,undated + + + + + + 260 + 27 + Records, Health,undated + + + + + + 260 + 28 + Records, Housing,undated + + + + + + 260 + 29 + Records, Issues,undated + + + + + + 260 + 30 + Records, Judiciary,undated + + + + + + 260 + 31 + Records, Judiciary, Additional Judges for Michigan,undated + + + + + + 260 + 32 + Records, Labor,undated + + + + + + 260 + 33 + Records, Michigan, Manistee Harbor Wreck (S 2789),undated + + + + + + 260 + 34 + Records, Michigan, Public Works,undated + + + + + + 260 + 35 + Records, Older Americans,undated + + + + + + 260 + 36 + Records, Pensions,undated + + + + + + 260 + 37 + Records, Requests, A-D,undated + + + + + + 260 + 38 + Records, Requests, E-H,undated + + + + + + 260 + 39 + Records, Requests, I-O,undated + + + + + + 260 + 40 + Records, Requests, P-Z,undated + + + + + + 260 + 41 + Records, Social Security,undated + + + + + + 260 + 42 + Records, Taxes,undated + + + + + + 260 + 43 + Records, Trans-Alaskan Pipeline,undated + + + + + + 260 + 44 + Records, Veterans,undated + + + + + + 260 + 45 + Records, Welfare,undated + + + + + + 261 + 1 + Records, Letters from Congressmen,undated + + + + + + 261 + 2 + Records, Lottery Tax, Michigan,undated + + + + + + 261 + 3 + Records, Michigan Oil and Gas,undated + + + + + + 261 + 4 + Records, Michigan Unemployment Compensation,undated + + + + + + 261 + 5 + Records, National Health Plan,undated + + + + + + 261 + 6 + Records, National Professions Foundation Act of 1973,1973 + + + + + + 261 + 7 + Records, New York Stock Exchange,undated + + + + + + 261 + 8 + Records, Northeast Railroads,undated + + + + + + 261 + 9 + Records, Obscenity,undated + + + + + + 261 + 10 + Records, Office of Management and Budget,undated + + + + + + 261 + 11 + Records, Request - January - March 1974,1974 + + + + + + 261 + 12 + Records, Rockefeller,undated + + + + + + 261 + 13 + Records, Clyde Flynn - Legislative Memos - 2 folders,undated + + + + + + 261 + 14 + Records, Clyde Flynn - Legislative Memos - 2 folders,undated + + + + + + 261 + 15 + Records, Rough Drafts,undated + + + + + + 261 + 16 + Records, Saxbe, William,undated + + + + + + 261 + 17 + Records, School Lunches,undated + + + + + + 261 + 18 + Records, Sleeping Bear Dunes National Lakeshore,undated + + + + + + 261 + 19 + Records, Special Prosecutor,undated + + + + + + 261 + 20 + Records, Soviet Union Trade,undated + + + + + + 261 + 21 + Records, Trade,undated + + + + + + 261 + 22 + Records, United Auto Workers,undated + + + + + + 261 + 23 + Records, US Savings and Loan League,undated + + + + + + 261 + 24 + Records, War Powers,undated + + + + + + 261 + 25 + Records, Watergate Speech,undated + + + + + + 261 + 26 + Records, Woodworth, Fred,undated + + + + + + 261 + 27 + Records, Water Pollution,undated + + + + + + 261 + 28 + Records, Whittaker - Expanded Employee Ownership Act,undated + + + + + + 261 + 29 + Records, Wyman, Durkin - 2 folders,undated + + + + + + 261 + 30 + Records, Wyman, Durkin - 2 folders,undated + + + + + + 261 + 31 + Records, Clanton Files, Canadian Natural Gas,undated + + + + + + + 261 + 33 + Records, Clanton Files, McCormick Experimental Forest,undated + + + + + + 261 + 34 + Records, Clanton Files, Memos,undated + + + + + + 261 + 35 + Records, Gil Clark, Miscellaneous - 6 folders,undated + + + + + + 261 + 36 + Records, Gil Clark, Miscellaneous - 6 folders,undated + + + + + + 261 + 37 + Records, Gil Clark, Miscellaneous - 6 folders,undated + + + + + + 261 + 38 + Records, Gil Clark, Miscellaneous - 6 folders,undated + + + + + + 261 + 39 + Records, Gil Clark, Miscellaneous - 6 folders,undated + + + + + + 261 + 40 + Records, Gil Clark, Miscellaneous - 6 folders,undated + + + + + + 262 + 1 + Records, Memos, Jim Hill - 4 folders,undated + + + + + + 262 + 2 + Records, Memos, Jim Hill - 4 folders,undated + + + + + + 262 + 3 + Records, Memos, Jim Hill - 4 folders,undated + + + + + + 262 + 4 + Records, Memos, Jim Hill - 4 folders,undated + + + + + + 262 + 5 + Records, Memos, Bob Turner - 3 folders,undated + + + + + + 262 + 6 + Records, Memos, Bob Turner - 3 folders,undated + + + + + + 262 + 7 + Records, Memos, Bob Turner - 3 folders,undated + + + + + + 262 + 8 + Records, Memos, Phil Van Dam,undated + + + + + + 262 + 9 + Records, Memos, Joe Wolf - 2 folders,undated + + + + + + 262 + 10 + Records, Memos, Joe Wolf - 2 folders,undated + + + + + + 262 + 11 + Records, Memos, Charles Greenleaf,undated + + + + + + 262 + 12 + Records, Memos, Jim DeFrancis,undated + + + + + + 262 + 13 + Records, Memos, Al Applegate,undated + + + + + + 262 + 14 + Records, Memos, Rick Harris - 2 folders,undated + + + + + + 262 + 15 + Records, Memos, Rick Harris - 2 folders,undated + + + + + + 262 + 16 + Records, Memos, David Koehler,undated + + + + + + 262 + 17 + Records, Memos, Bob Lewis,undated + + + + + + 262 + 18 + Records, Memos, James Schoener,undated + + + + + + 262 + 19 + Records, Memos, Tom Owsley,undated + + + + + + 262 + 20 + Records, Memos, Marc Steinberg,undated + + + + + + 262 + 21 + Records, Consumer Affairs, General,undated + + + + + + 262 + 22 + Records, Consumer Protection Agency,undated + + + + + + 262 + 23 + Records, Consumer Controversy Legislation,undated + + + + + + 262 + 24 + Records, Public Broadcasting Recording Requirement,undated + + + + + + 262 + 25 + Records, Communications,undated + + + + + + 262 + 26 + Records, Commercial Broadcast Recordkeeping Proposal,undated + + + + + + 262 + 27 + Records, Coors Nomination,undated + + + + + + 262 + 28 + Records, Quello Nomination,undated + + + + + + 262 + 29 + Records, Commercial Broadcasting,undated + + + + + + 262 + 30 + Records, Fairness Doctrine,undated + + + + + + 262 + 31 + Records, Copyrights,undated + + + + + + 262 + 32 + Records, Competition and the Telephone Industry,undated + + + + + + 262 + 33 + Records, Laws Expiring 1969,1969 + + + + + + 262 + 34 + Records, Cable TV,undated + + + + + + 262 + 35 + Records, TV Violence and Obscenity,undated + + + + + + 262 + 36 + Records, All Channel Radio (S 585),undated + + + + + + 262 + 37 + Records, TV Sports Blackout Legislation,undated + + + + + + 262 + 38 + Records, James Quell Nomination to FCC, Correspondence,undated + + + + + + 262 + 39 + Records, James Quell Nomination to FCC, Miscellaneous,undated + + + + + + 263 + 1 + Records, Coastal Zone Legislation,undated + + + + + + 263 + 2 + Records, Lake Michigan Rail Car Ferries,undated + + + + + + 263 + 3 + Records, Railway Express Agency,undated + + + + + + 263 + 4 + Records, Amtrak,undated + + + + + + 263 + 5 + Records, Regional Rail Reorganization Act,undated + + + + + + 263 + 6 + Records, Agency for International Development,undated + + + + + + 263 + 7 + Records, Agriculture,undated + + + + + + 263 + 8 + Records, Department of Defense,undated + + + + + + 263 + 9 + Records, Seaway Tolls,undated + + + + + + 263 + 10 + Records, Great Lakes Maritime Regional Office,undated + + + + + + 263 + 11 + Records, Lamphrey Eel Control Legislation,undated + + + + + + 263 + 12 + Records, Great Lakes Pilotage,undated + + + + + + 263 + 13 + Records, Hawaiian Dock Strike,undated + + + + + + 263 + 14 + Records, Recycling Legislation,undated + + + + + + 263 + 15 + Records, East European Trip,undated + + + + + + 263 + 16 + Records, Export Expansion Legislation,undated + + + + + + 263 + 17 + Records, Tourism,undated + + + + + + 263 + 18 + Records, Coast Guard Closing in Michigan,undated + + + + + + 263 + 19 + Records, Great Lakes Shipping,undated + + + + + + 263 + 20 + Records, Seaway Ship Design,undated + + + + + + 263 + 21 + Records, General,undated + + + + + + 263 + 22 + Records, Miscellaneous Memos,undated + + + + + + 263 + 23 + Records, Energy Policy and Conservation Act of 1975,1975 + + + + + + 263 + 24 + Records, Donation of Papers to CMU,undated + + + + + + 263 + 25 + Records, Upper Peninsula Trip, July 20, 1977,1977 + + + + + + 263 + 26 + Records, Nixon Papers,undated + + + + + + 263 + 27 + Records, Airbags,undated + + + + + + 263 + 28 + Records, Tax Consequences of Changes in Residence (S 1034),undated + + + + + + 263 + 29 + Records, Briefing Books on Cargo Preference,undated + + + + + + 263 + 30 + Records, Nominations, Robert H. Nooter to A.I.D.,undated + + + + + + 263 + 31 + Records, North Central Airlines,undated + + + + + + 263 + 32 + Records, Nuclear Waste,undated + + + + + + 263 + 33 + Records, Outer Continental Shelf (S 9),undated + + + + + + 263 + 34 + Records, OPEC, Financial Implications,undated + + + + + + 263 + 35 + Records, Power Plants (Oil vs. Coal Use),undated + + + + + + 263 + 36 + Records, Public Utility Financing,undated + + + + + + 263 + 37 + Records, Residual Oil,undated + + + + + + 263 + 38 + Records, Rhodesian Chrome,undated + + + + + + 263 + 39 + Records, Africa, Rhodesian Chrome,undated + + + + + + 263 + 40 + Records, Security Assistance,undated + + + + + + 264 + 1 + Records, Sick Pay Exclusion,undated + + + + + + 264 + 2 + Records, Specialty Steel,undated + + + + + + 264 + 3 + Records, Surface Mining (S 7),undated + + + + + + 264 + 4 + Records, Double Taxation of U.S. Citizens Abroad,undated + + + + + + 264 + 5 + Records, Sugar Industry,undated + + + + + + 264 + 6 + Records, Tax Cut,undated + + + + + + 264 + 7 + Records, Tax Reform Act,1977 + + + + + + 264 + 8 + Records, Termini, Paula, Peace Corps Volunteer Arrested in Columbia,undated + + + + + + 264 + 9 + Records, Treaties, Mexico and Canadian Penal Treaty,undated + + + + + + 264 + 10 + Records, Unemployment Compensation Extension,undated + + + + + + 264 + 11 + Records, White House,undated + + + + + + 264 + 12 + Records, President's Economic Program 10/8/74,1974 + + + + + + 264 + 13 + Records, State of the Union,1975 + + + + + + 264 + 14 + Records, Economic Development Administration Grants - 2 folders,undated + + + + + + 264 + 15 + Records, Economic Development Administration Grants - 2 folders,undated + + + + + + 264 + 16 + Records, Photosynthesis Energy Factory,undated + + + + + + 264 + 17 + Records, Solar Energy Research Institute,undated + + + + + + 264 + 18 + Records, Solar Electric Generator, Dow Corning,undated + + + + + + 264 + 19 + Records, Traverse City, Dams, Paul Hazelton,undated + + + + + + 264 + 20 + Records, Environmental Recovery of America (Letter to ERDA),undated + + + + + + 264 + 21 + Records, Environmental Research Institute of Michigan,undated + + + + + + 264 + 22 + Records, University of Michigan, Dept. of Naval Architecture,undated + + + + + + 264 + 23 + Records, Kalamazoo Airport,undated + + + + + + 264 + 24 + Records, Cedar River Harbor Project, Public Works Appropriation,undated + + + + + + 264 + 25 + Records, Southeastern Michigan Technical Assistance Program (SEMTAP),undated + + + + + + 264 + 26 + Records, Charles E. Potter,undated + + + + + + 264 + 27 + Records, Legislation,undated + + + + + + 264 + 28 + Records, Legislation, Co-Sponsored,undated + + + + + + 264 + 29 + Records, Legislation, Not Co-Sponsored,undated + + + + + + 264 + 30 + Records, Banking,undated + + + + + + 264 + 31 + Records, Lincoln Day Speeches,undated + + + + + + 264 + 32 + Records, L.A. Memos,1977 + + + + + + 264 + 33 + Records, Commission on Senate Operations,undated + + + + + + 264 + 34 + Records, Code of Ethics,undated + + + + + + 264 + 35 + Records, Public Officials Integrity Act (S 555),undated + + + + + + 264 + 36 + Records, Rule XXII Reform,undated + + + + + + 264 + 37 + Records, Budget - Committees,undated + + + + + + 264 + 38 + Records, Public Financing of Elections,undated + + + + + + 264 + 39 + Records, Sunset Legislation - 3 folders,undated + + + + + + 264 + 40 + Records, Sunset Legislation - 3 folders,undated + + + + + + 264 + 41 + Records, Sunset Legislation - 3 folders,undated + + + + + + 264 + 42 + Records, Sunset Hearings - 4 folders,undated + + + + + + 264 + 43 + Records, Sunset Hearings - 4 folders,undated + + + + + + 264 + 44 + Records, Sunset Hearings - 4 folders,undated + + + + + + 264 + 45 + Records, Sunset Hearings - 4 folders,undated + + + + + + 264 + 46 + Records, Vice Presidential Selection,undated + + + + + + 264 + 47 + Records, Vice President and Electoral College,undated + + + + + + 264 + 48 + Records, Vice President, Residence (Bills, Comm., etc.),undated + + + + + + 264 + 49 + Records, Bureaucracy,undated + + + + + + 264 + 50 + Records, Primary Elections,undated + + + + + + 264 + 51 + Records, Universal Voter Registration,undated + + + + + + 264 + 52 + Records, Law Library, CRS Reorganization,undated + + + + + + 264 + 53 + Records, Designated Depository Libraries,undated + + + + + + 264 + 54 + Records, Library of Congress - Reorganization,undated + + + + + + 264 + 55 + Records, "Cause" Project,undated + + + + + + 264 + 56 + Records, Hearings on S. 1566: Wiretapping,undated + + + + + + 264 + 57 + Records, Wayne State vs. VA,undated + + + + + + 264 + 58 + Records, Future of S.2 and S.600,undated + + + + + + 264 + 59 + Records, Memos - Miscellaneous,undated + + + + + + 264 + 60 + Records, Rule 22, S. Res 5,undated + + + + + + 264 + 61 + Records, S Res 5,undated + + + + + + 264 + 62 + Records, Rule 22,undated + + + + + + 264 + 63 + Records, Rule 22 – Project,undated + + + + + + 264 + 64 + Records, S2, Sunset,undated + + + + + + 264 + 65 + Records, S J Res 1 Markup,undated + + + + + + 265 + 1 + Records, Sunbelt, Correspondence,undated + + + + + + 265 + 2 + Records, Sunbelt, Michigan,undated + + + + + + 265 + 3 + Records, Sunbelt, Final Speech Draft,undated + + + + + + 265 + 4 + Records, Sunbelt, Articles,undated + + + + + + 265 + 5 + Records, Sunbelt, Coalition,undated + + + + + + 265 + 6 + Records, Sunbelt, Legislation,undated + + + + + + 265 + 7 + Records, Sunbelt, General/Miscellaneous,undated + + + + + + 265 + 8 + Records, Sunbelt, Regional Transfers,undated + + + + + + 265 + 9 + Records, Sunbelt, Reports,undated + + + + + + 265 + 10 + Records, Background on Greece, Turkey, Cyprus - 2 folders,undated + + + + + + 265 + 11 + Records, Background on Greece, Turkey, Cyprus - 2 folders,undated + + + + + + 265 + 12 + Records, Treaties - U.S. - U.K. Tax Treaty - 3 folders,undated + + + + + + 265 + 13 + Records, Treaties - U.S. - U.K. Tax Treaty - 3 folders,undated + + + + + + 265 + 14 + Records, Treaties - U.S. - U.K. Tax Treaty - 3 folders,undated + + + + + + 265 + 15 + Records, U.S. - U.K. Tax Treaty - Speech Background,undated + + + + + + 265 + 16 + Records, Questionnaires,1978 + + + + + + 265 + 17 + Records, Questionnaires, Answered,1978 + + + + + + 265 + 18 + Records, Tax Indexation,undated + + + + + + 265 + 19 + Records, Tuition, Tax Credits,undated + + + + + + 265 + 20 + Records, Griffin re: Education,undated + + + + + + 265 + 21 + Records, Labor Dispute, Coal Stocks,undated + + + + + + 265 + 22 + Records, Special: President Ford,undated + + + + + + 265 + 23 + Records, S - 1380,undated + + + + + + 265 + 24 + Records, Political Privileges of Labor Unions,undated + + + + + + 265 + 25 + Records, Finalization of Vice President Project,undated + + + + + + 265 + 26 + Records, Troops Overseas,undated + + + + + + 266 + 1 + Records, Nabisco,undated + + + + + + 266 + 2 + Records, Staff Drafts,undated + + + + + + 266 + 3 + Records, Retirement,undated + + + + + + 266 + 4 + Records, Labor Law Reform,undated + + + + + + 266 + 5 + Records, Williams, Javits Labor Law Reform Bill,undated + + + + + + 266 + 6 + Records, Home Builders, Background,undated + + + + + + 266 + 7 + Records, Home Builders, Speech,undated + + + + + + 266 + 8 + Records, Food Marketing Institute,undated + + + + + + 266 + 9 + Records, Blind Achievement Award,undated + + + + + + 266 + 10 + Records, Martin Marietta Employees,undated + + + + + + 266 + 11 + Records, Bill Analysis Memos, Notebook (1974, 1976, 1978),1974-1978 + + + + + + 266 + 12 + Records, Michigan Petroleum Association,undated + + + + + + 267 + 1 + Records, Gordie Howe,undated + + + + + + 267 + 2 + Records, University of Michigan Great Lakes Research,undated + + + + + + 267 + 3 + Records, Watergate,undated + + + + + + 267 + 4 + Records, Watergate Mail,undated + + + + + + 267 + 5 + Records, Ypsilanti Public Schools - Proposal for ESAA Title VII, Basic Grant,undated + + + + + + 267 + 6 + Records, Miscellaneous Materials on Labor Law Reform - 3 folders,undated + + + + + + 267 + 7 + Records, Miscellaneous Materials on Labor Law Reform - 3 folders,undated + + + + + + 267 + 8 + Records, Miscellaneous Materials on Labor Law Reform - 3 folders,undated + + + + + + 267 + 9 + Records, William C. Kavanaugh,undated + + + + + + 267 + 10 + Records, 76 GOP Convention, Whips for Ford, RPG's Notes,undated + + + + + + 267 + 11 + Records, Bendix Corporation,undated + + + + + + 267 + 12 + Records, Labor Reform,undated + + + + + + 267 + 13 + Records, Letters to President Carter,undated + + + + + + 267 + 14 + Records, Fortas Case,undated + + + + + + 267 + 15 + Records, Senator's Library in Detroit,undated + + + + + + 267 + 16 + Records, Books Inventory,undated + + + + + + 267 + 17 + Records, Nancy Hildebrand's Notebook re: Records Management,undated + + + + + + 267 + 18 + Records, Miscellaneous Whip Office File,undated + + + + + + 267 + 19 + Records, Bills Sponsored and Cosponsored, 90th Congress,undated + + + + + + 267 + 20 + Records, Barrel Dumping in Lake Superior 1977,1977 + + + + + + 267 + 21 + Records, Cross Village Harbor of Refuge 1978,1978 + + + + + + 267 + 22 + Records, Coast Guard Authorization Bill 1976,1976 + + + + + + 267 + 23 + Records, Grand Marais Breakwall 1978,1978 + + + + + + 267 + 24 + Records, Maritime Authorization Bill 1976,1976 + + + + + + 267 + 25 + Records, Marigold as a National Flower 1975,1975 + + + + + + 267 + 26 + Records, Staff Memos,undated + + + + + + + Senator Robert P. Griffin Papers Collection - Series #6, Legislative - Voting Sub-Series, (87 cubic feet - 1958‑1979) + + + + 268 + 1 + Records, 89th Congress, 2nd Session, (90th, 1st) 260-320, 321-418, 419-497,undated + + + + + + 268 + 2 + Records, (90th, 1st) 61-148,undated + + + + + + 268 + 3 + Records, (90th, 1st) 149-245,undated + + + + + + 268 + 4 + Records, (90th, 1st) 246-314,undated + + + + + + 268 + 5 + Records, (90th, 2nd) Index, 319-386,undated + + + + + + 268 + 6 + Records, (90th, 2nd) 387-450,undated + + + + + + 268 + 7 + Records, (90th, 2nd) 451-526,undated + + + + + + 268 + 8 + Records, (90th, 2nd) 527-595,undated + + + + + + 268 + 9 + Records, (91st, 1st) Index, 1-71,undated + + + + + + 268 + 10 + Records, (91st, 1st) 72-143,undated + + + + + + 268 + 11 + Records, (91st, 1st) 144-196,undated + + + + + + 268 + 12 + Records, (91st, 1st) 197-245,undated + + + + + + 268 + 13 + Records, (91st, 2nd) Index, 246-313,undated + + + + + + 268 + 14 + Records, (91st, 2nd) 314-409,undated + + + + + + 268 + 15 + Records, (91st, 2nd) 410-496,undated + + + + + + 268 + 16 + Records, (91st, 2nd) 497-584,undated + + + + + + 268 + 17 + Records, (91st, 2nd) 585-667,undated + + + + + + 268 + 18 + Records, (92nd, 1st) Index, 1-80,undated + + + + + + 268 + 19 + Records, (92nd, 1st) 81-190,undated + + + + + + 268 + 20 + Records, (92nd, 1st) 191-280,undated + + + + + + 269 + 1 + Records, (92nd, 1st) 281-364,undated + + + + + + 269 + 2 + Records, (92nd, 1st) 365-423,undated + + + + + + 269 + 3 + Records, (92nd, 2nd) Index, 424-500,undated + + + + + + 269 + 4 + Records, (92nd, 2nd) 501-[576],undated + + + + + + 269 + 5 + Records, (92nd, 2nd) 577-671,undated + + + + + + 269 + 6 + Records, (92nd, 2nd) 672-766,undated + + + + + + 269 + 7 + Records, (92nd, 2nd) 767-875,undated + + + + + + 269 + 8 + Records, (92nd, 2nd) 876-955,undated + + + + + + 269 + 9 + Records, (93rd, 1st) Index [1]-89,undated + + + + + + 269 + 10 + Records, (93rd, 1st) 90-165,undated + + + + + + 269 + 11 + Records, (93rd, 1st) 166-259,undated + + + + + + 269 + 12 + Records, (93rd, 1st) 260-359,undated + + + + + + 269 + 13 + Records, (93rd, 1st) 360-459,undated + + + + + + 269 + 14 + Records, (93rd, 1st) 460-559,undated + + + + + + 269 + 15 + Records, (93rd, 1st) 560-594,undated + + + + + + 269 + 16 + Records, (93rd, 2nd) Index, 1-108,undated + + + + + + 269 + 17 + Records, (93rd, 2nd) 109-[189],undated + + + + + + 269 + 18 + Records, (93rd, 2nd) 190-239,undated + + + + + + 269 + 19 + Records, (93rd, 2nd) Index, [240]-335,undated + + + + + + 269 + 20 + Records, (93rd, 2nd) 336-440,undated + + + + + + 269 + 21 + Records, (93rd, 2nd) 441-544,undated + + + + + + 269 + 22 + Records, (94th, 1st) Index, 1-107,undated + + + + + + 269 + 23 + Records, (94th, 1st) 108-225,undated + + + + + + 270 + 1 + Records, (94th, 1st) 226 - ?,undated + + + + + + 270 + 2 + Records, (94th, 1st) 369-487,undated + + + + + + 270 + 3 + Records, (94th, 1st) 488-611,undated + + + + + + 270 + 4 + Records, (94th, 2nd) Index-116,undated + + + + + + 270 + 5 + Records, (94th, 2nd) 117-238,undated + + + + + + 270 + 6 + Records, (94th, 2nd) 239-349,undated + + + + + + 270 + 7 + Records, (94th, 2nd) 350-483,undated + + + + + + 270 + 8 + Records, (94th, 2nd) 484-599,undated + + + + + + 270 + 9 + Records, (94th, 2nd) 600-700,undated + + + + + + 270 + 10 + Records, (95th, 1st) Index-115,undated + + + + + + 270 + 11 + Records, (95th, 1st) 116-203,undated + + + + + + 270 + 12 + Records, (95th, 1st) 204-299,undated + + + + + + 270 + 13 + Records, (95th, 1st) 300-399,undated + + + + + + 270 + 14 + Records, (95th, 1st) 400-524,undated + + + + + + 270 + 15 + Records, (95th, 1st) 525-636,undated + + + + + + 270 + 16 + Records, (95th, 2nd) Index-138,undated + + + + + + 270 + 17 + Records, (95th, 2nd) 139-286,undated + + + + + + 270 + 18 + Records, (95th, 2nd) 287-416,undated + + + + + + 271 + 1 + Records, 1965-1970 A-D,1965-1970 + + + + + + 271 + 2 + Records, 1965-1970 E-L,1965-1970 + + + + + + 271 + 3 + Records, 1965-1970 M-Y,1965-1970 + + + + + + 271 + 4 + Records, 1971-June 1972 A-E,1971-1972 + + + + + + 271 + 5 + Records, 1971-June 1972 F-,1971-1972 + + + + + + 271 + 6 + Records, 1973 Index, A-Z,1973 + + + + + + 271 + 7 + Records, 1974 Index, A-W,1974 + + + + + + 271 + 8 + Records, 1975 A-Y,1975 + + + + + + 271 + 9 + Records, 1976 A-E,1976 + + + + + + 271 + 10 + Records, 1976 E-Y,1976 + + + + + + 272 + 1 + Records, Griffin Voting Record (2 folders),1957-1966 + + + + + + 272 + 2 + Records, Griffin Voting Record (2 folders),1957-1966 + + + + + + 272 + 3 + Records, Voting Record, 87th Congress ,undated + + + + + + 272 + 4 + Records, Voting Record, 88th Congress, First Session ,undated + + + + + + 272 + 5 + Records, Voting Record, 88th Congress, Second Session,undated + + + + + + 272 + 6 + Records, Voting Record, 89th Congress, First Session,undated + + + + + + 272 + 7 + Records, Voting Record, 89th Congress, Second Session,undated + + + + + + 272 + 8 + Records, House Roll Call Votes ,1957-1966 + + + + + + 272 + 9 + Records, Legislative Memos, Inactive, 94th Congress- 4 folders,undated + + + + + + 272 + 10 + Records, Legislative Memos, Inactive, 94th Congress- 4 folders,undated + + + + + + 272 + 11 + Records, Legislative Memos, Inactive, 94th Congress- 4 folders,undated + + + + + + 272 + 12 + Records, Legislative Memos, Inactive, 94th Congress- 4 folders,undated + + + + + + 272 + 13 + Records, Legislative Memos, active, 94th Congress,undated + + + + + + 272 + 14 + Records, Voting Record, 85th Congress, First Session,undated + + + + + + 272 + 15 + Records, Voting Record, 85th Congress, Second Session,undated + + + + + + 272 + 16 + Records, Voting Record, 86th Congress, First Session,undated + + + + + + 272 + 17 + Records, Voting Record, 86th Congress, Second Session,undated + + + + + + 272 + 18 + Records, Voting Record, Various Bills,1958 + + + + + + 272 + 19 + Records, Voting Record,1965 + + + + + + + Senator Robert P. Griffin Papers Collection - Series #7, Personal Series, (5.25 cubic feet - 1956‑1978, 1987, 1995, and undated) + + + + 273 + 1 + Records, Appointment Book, 1970,1970 + + + + + + 273 + 2 + Records, Notes from Senators Desk, 1971 - 2 folders,1971 + + + + + + 273 + 3 + Records, Notes from Senators Desk, 1971 - 2 folders,1971 + + + + + + 273 + 4 + Records, Visitor Cards, Visitors to Washington Office, 1969-1970, re: Legislation and Appointment- 2 folders,1969-1970 + + + + + + 273 + 5 + Records, Visitor Cards, Visitors to Washington Office, 1969-1970, re: Legislation and Appointment- 2 folders,1969-1970 + + + + + + 273 + 6 + Records, Visitor Cards, Visitors to Washington Office, 1973-1974, re: Legislation – 2 folders,1973-1974 + + + + + + 273 + 7 + Records, Visitor Cards, Visitors to Washington Office, 1973-1974, re: Legislation – 2 folders,1973-1974 + + + + + + 273 + 8 + Records, Miscellaneous Senator Griffin kept at home, 1956 - vest and matchbook,1956 + + + + + + 273 + 9 + Records, Miscellaneous Senator Griffin kept at home, 1957,1957 + + + + + + 273 + 10 + Records, Miscellaneous Senator Griffin kept at home, 1959,1959 + + + + + + 273 + 11 + Records, Miscellaneous Senator Griffin kept at home, 1960-1963,1960-1963 + + + + + + 273 + 12 + Records, Miscellaneous Senator Griffin kept at home, 1965-1966,1965-1966 + + + + + + 273 + 13 + Records, Miscellaneous Senator Griffin kept at home, 1967-1968 (includes political badges/ribbons),1967-1968 + + + + + + 273 + 14 + Records, Miscellaneous Senator Griffin kept at home, 1971,1971 + + + + + + 273 + 15 + Records, Miscellaneous Senator Griffin kept at home, Marge: Monroe, 5/24/72,1972 + + + + + + 273 + 16 + Records, Miscellaneous Senator Griffin kept at home, Marge, 1972,1972 + + + + + + 273 + 17 + Records, Miscellaneous Senator Griffin kept at home, Senator Griffin Speeches and Remarks,undated + + + + + + 273 + 18 + Records, Miscellaneous Senator Griffin kept at home, 1972 - campaign stickers,1972 + + + + + + 273 + 19 + Records, Miscellaneous Senator Griffin kept at home, Marge Griffin Travel Schedules, 1972,1972 + + + + + + 273 + 20 + Records, Miscellaneous Senator Griffin kept at home, Marge Griffin Coffee Guest Lists, 1972,1972 + + + + + + 273 + 21 + Records, Miscellaneous Senator Griffin kept at home, Marge Griffin Correspondence, 1966-1972,1966-1972 + + + + + + 273 + 22 + Records, Miscellaneous Senator Griffin kept at home, Memos and Christmas Car,d 1973,1973 + + + + + + 273 + 23 + Records, Miscellaneous Senator Griffin kept at home, File on trip to Hartford, 1960,1960 + + + + + + 274 + 1 + Records, Visitors to Washington Office, A-S (Legislation),undated + + + + + + 274 + 2 + Records, Visitors to Washington Office, T-Z,undated + + + + + + 274 + 3 + Records, Guest Books, 1967-1978, 5 books,1967-1978 + + + + + + 274 + 4 + Records, Marge Griffin's Cookbook, First Edition,undated + + + + + + 274 + 5 + Records, Postcards,undated + + + + + + 274 + 6 + Records, Griffin Biographies and Pictures, A Mild-Mannered Man of Steel, Article,undated + + + + + + 274 + 7 + Records, Griffin Personal, 1957-1961, 1964,1957-1961, 1964 + + + + + + 274 + 8 + Records, Office, Rayburn Building, 1964,1964 + + + + + + 274 + 9 + Records, Griffin Christmas Cards 1965, 1961-1963,1965, 1961-1963 + + + + + + 274 + 10 + Records, Griffin, Biographical Material, 1959,1959 + + + + + + 274 + 11 + Records, R. Whitmer, Memos, etc.,undated + + + + + + 274 + 12 + Records, Supreme Court,undated + + + + + + 274 + 13 + Records, Griffin Personal, 1967 – Photograph,1967 + + + + + + 274 + 14 + Records, The Gap", RPG Article in "Viewpoints,undated + + + + + + 274 + 15 + Records, Griffin Personal, 1966 Senate,1966 + + + + + + 274 + 16 + Records, New Citizen Congratulations Letters, 1966,1966 + + + + + + 274 + 17 + Records, 9th District Office, Holland,undated + + + + + + 274 + 18 + Records, 9th District, Traverse City,undated + + + + + + 274 + 19 + Records, Mail Tabulations,undated + + + + + + 274 + 20 + Records, Coast Guard Academy, Board of Visitors, 1967,1967 + + + + + + 274 + 21 + Records, Griffin Personal,undated + + + + + + 274 + 22 + Records, National Cherry Queen,undated + + + + + + 274 + 23 + Records, POW Luncheon,undated + + + + + + 274 + 24 + Records, Notes from Senator's Desk - Rough Drafts of Speeches,undated + + + + + + 274 + 25 + Records, Notes from Senator's Desk,undated + + + + + + 274 + 26 + Records, Griffin Personal,undated + + + + + + 274 + 27 + Records, Election Night,undated + + + + + + 274 + 28 + Records, Reading File, A-Z,undated + + + + + + 274 + 29 + Records, Seldman Reception- 10/20/1969,1969 + + + + + + 275 + 1 + Records, White House,undated + + + + + + 275 + 2 + Records, Family,undated + + + + + + 275 + 3 + Records, Personal, Miscellaneous,undated + + + + + + 275 + 4 + Records, Personal,undated + + + + + + 275 + 5 + Records, Michigan,undated + + + + + + 275 + 6 + Records, Letters Re: Conversation with General Mai Van Bo,undated + + + + + + 275 + 7 + Records, RPG, Statements, 1969,1969 + + + + + + 275 + 8 + Records, Commerce Committee,undated + + + + + + 275 + 9 + Records, Rules Committee,undated + + + + + + 275 + 10 + Records, Foreign Relations Committee,undated + + + + + + 275 + 11 + Records, Political - Personal,undated + + + + + + 275 + 12 + Records, Memos to Senator,undated + + + + + + 275 + 13 + Records, Memos from Detroit,undated + + + + + + 275 + 14 + Records, Memos from Senator to Staff,undated + + + + + + 275 + 15 + Records, Personal Correspondence - 2 folders,undated + + + + + + 275 + 16 + Records, Personal Correspondence - 2 folders,undated + + + + + + 275 + 17 + Records, Michigan Information,undated + + + + + + 275 + 18 + Records, White House Commerce Committee,undated + + + + + + 275 + 19 + Records, Foreign Relations Committee,undated + + + + + + 275 + 20 + Records, Rules Committee,undated + + + + + + 275 + 21 + Records, Back Up Schedule, January - December - 12 folders,undated + + + + + + 275 + 22 + Records, Back Up Schedule, January - December - 12 folders,undated + + + + + + 275 + 23 + Records, Back Up Schedule, January - December - 12 folders,undated + + + + + + 275 + 24 + Records, Back Up Schedule, January - December - 12 folders,undated + + + + + + 275 + 25 + Records, Back Up Schedule, January - December - 12 folders,undated + + + + + + 275 + 26 + Records, Back Up Schedule, January - December - 12 folders,undated + + + + + + 275 + 27 + Records, Back Up Schedule, January - December - 12 folders,undated + + + + + + 275 + 28 + Records, Back Up Schedule, January - December - 12 folders,undated + + + + + + 275 + 29 + Records, Back Up Schedule, January - December - 12 folders,undated + + + + + + 275 + 30 + Records, Back Up Schedule, January - December - 12 folders,undated + + + + + + 275 + 31 + Records, Back Up Schedule, January - December - 12 folders,undated + + + + + + 275 + 32 + Records, Back Up Schedule, January - December - 12 folders,undated + + + + + + 275 + 33 + Records, Memos, Senator to Staff,undated + + + + + + 275 + 34 + Records, Memos, To Staff,undated + + + + + + 275 + 35 + Records, Michigan Information,undated + + + + + + 275 + 36 + Records, Office Information,undated + + + + + + 275 + 37 + Records, Miscellaneous,undated + + + + + + 275 + 38 + Records, Personal,undated + + + + + + 275 + 39 + Records, Nixon Impeachment,undated + + + + + + 275 + 40 + Records, Back Up Schedule May - December - 8 folders,undated + + + + + + 275 + 41 + Records, Back Up Schedule May - December - 8 folders,undated + + + + + + 275 + 42 + Records, Back Up Schedule May - December - 8 folders,undated + + + + + + 275 + 43 + Records, Back Up Schedule May - December - 8 folders,undated + + + + + + 275 + 44 + Records, Back Up Schedule May - December - 8 folders,undated + + + + + + 275 + 45 + Records, Back Up Schedule May - December - 8 folders,undated + + + + + + 275 + 46 + Records, Back Up Schedule May - December - 8 folders,undated + + + + + + 275 + 47 + Records, Back Up Schedule May - December - 8 folders,undated + + + + + + 275 + 48 + Records, J.A. Griffin Funeral Arrangements,undated + + + + + + 275 + 49 + Records, Back Up Schedule, January-April 1975 - 4 folders,1975 + + + + + + 275 + 50 + Records, Back Up Schedule, January-April 1975 - 4 folders,1975 + + + + + + 275 + 51 + Records, Back Up Schedule, January-April 1975 - 4 folders,1975 + + + + + + 275 + 52 + Records, Back Up Schedule, January-April 1975 - 4 folders,1975 + + + + + + 275 + 53 + Records, Office Information,undated + + + + + + 275 + 54 + Records, Personal,undated + + + + + + 276 + 1 + Records, Appointment Book 1971,1971 + + + + + + 276 + 2 + Records, Trips 1968,1968 + + + + + + 276 + 3 + Records, Invitations 1969 - 2 folders,1969 + + + + + + 276 + 4 + Records, Invitations 1969 - 2 folders,1969 + + + + + + 276 + 5 + Records, Trips 1968 - Copies of Itineraries for Senator's Michigan Trips,1968 + + + + + + 276 + 6 + Records, Trips 1967,1967 + + + + + + 276 + 7 + Records, Trips 1967 - Copies of Itineraries of trips to Michigan,1967 + + + + + + 276 + 8 + Records, White House,undated + + + + + + 276 + 9 + Records, Commerce Committee,undated + + + + + + 276 + 10 + Records, Foreign Relations Committee,undated + + + + + + 276 + 11 + Records, Rules Committee,undated + + + + + + + 276 + 13 + Records, Memos to Senator,undated + + + + + + 276 + 14 + Records, Memos from Senator to Staff,undated + + + + + + 276 + 15 + Records, Michigan Information,undated + + + + + + 276 + 16 + Records, Memos to the Senator 1976,1976 + + + + + + 276 + 17 + Records, Memos from the Senator to Staff 1976,1976 + + + + + + 276 + 18 + Records, Michigan Information 1976,1976 + + + + + + 276 + 19 + Records, Office Information 1976,1976 + + + + + + 276 + 20 + Records, Personal,undated + + + + + + 276 + 21 + Records, Rules Committee,undated + + + + + + 276 + 22 + Records, Saints and Sinners Luncheon,undated + + + + + + 276 + 23 + Records, Daily Schedule Back Up, January - December 1976 - 12 folders,1976 + + + + + + 276 + 24 + Records, Daily Schedule Back Up, January - December 1976 - 12 folders,1976 + + + + + + 276 + 25 + Records, Daily Schedule Back Up, January - December 1976 - 12 folders,1976 + + + + + + 276 + 26 + Records, Daily Schedule Back Up, January - December 1976 - 12 folders,1976 + + + + + + 276 + 27 + Records, Daily Schedule Back Up, January - December 1976 - 12 folders,1976 + + + + + + 276 + 28 + Records, Daily Schedule Back Up, January - December 1976 - 12 folders,1976 + + + + + + 276 + 29 + Records, Daily Schedule Back Up, January - December 1976 - 12 folders,1976 + + + + + + 276 + 30 + Records, Daily Schedule Back Up, January - December 1976 - 12 folders,1976 + + + + + + 276 + 31 + Records, Daily Schedule Back Up, January - December 1976 - 12 folders,1976 + + + + + + 276 + 32 + Records, Daily Schedule Back Up, January - December 1976 - 12 folders,1976 + + + + + + 276 + 33 + Records, Daily Schedule Back Up, January - December 1976 - 12 folders,1976 + + + + + + 276 + 34 + Records, Daily Schedule Back Up, January - December 1976 - 12 folders,1976 + + + + + + 276 + 35 + Records, Daily Schedule Back Up, January - December 1977 - 12 folders,1977 + + + + + + 276 + 36 + Records, Daily Schedule Back Up, January - December 1977 - 12 folders,1977 + + + + + + 276 + 37 + Records, Daily Schedule Back Up, January - December 1977 - 12 folders,1977 + + + + + + 276 + 38 + Records, Daily Schedule Back Up, January - December 1977 - 12 folders,1977 + + + + + + 276 + 39 + Records, Daily Schedule Back Up, January - December 1977 - 12 folders,1977 + + + + + + 276 + 40 + Records, Daily Schedule Back Up, January - December 1977 - 12 folders,1977 + + + + + + 276 + 41 + Records, Daily Schedule Back Up, January - December 1977 - 12 folders,1977 + + + + + + 276 + 42 + Records, Daily Schedule Back Up, January - December 1977 - 12 folders,1977 + + + + + + 276 + 43 + Records, Daily Schedule Back Up, January - December 1977 - 12 folders,1977 + + + + + + 276 + 44 + Records, Daily Schedule Back Up, January - December 1977 - 12 folders,1977 + + + + + + 276 + 45 + Records, Daily Schedule Back Up, January - December 1977 - 12 folders,1977 + + + + + + 276 + 46 + Records, Daily Schedule Back Up, January - December 1977 - 12 folders,1977 + + + + + + 276 + 47 + Records, Daily Schedule Back Up, January - December 1977 - 12 folders,1977 + + + + + + 276 + 48 + Records, Memos, Senator to Staff 1977,1977 + + + + + + 276 + 49 + Records, Memos, To Senator 1977,1977 + + + + + + 276 + 50 + Records, Office Information,undated + + + + + + 276 + 51 + Records, Personal,undated + + + + + + 276 + 52 + Records, White House,undated + + + + + + 276 + 53 + Records, Rules Committee,undated + + + + + + 276 + 54 + Records, Commerce Committee,undated + + + + + + 276 + 55 + Records, Foreign Policy and National Security Subcommittee,undated + + + + + + 276 + 56 + Records, Foreign Relations Committee,undated + + + + + + 277 + 1 + Records, Daily Schedule Back Up, January - November 1978 - 11 folders,1978 + + + + + + 277 + 2 + Records, Daily Schedule Back Up, January - November 1978 - 11 folders,1978 + + + + + + 277 + 3 + Records, Daily Schedule Back Up, January - November 1978 - 11 folders,1978 + + + + + + 277 + 4 + Records, Daily Schedule Back Up, January - November 1978 - 11 folders,1978 + + + + + + 277 + 5 + Records, Daily Schedule Back Up, January - November 1978 - 11 folders,1978 + + + + + + 277 + 6 + Records, Daily Schedule Back Up, January - November 1978 - 11 folders,1978 + + + + + + 277 + 7 + Records, Daily Schedule Back Up, January - November 1978 - 11 folders,1978 + + + + + + 277 + 8 + Records, Daily Schedule Back Up, January - November 1978 - 11 folders,1978 + + + + + + 277 + 9 + Records, Daily Schedule Back Up, January - November 1978 - 11 folders,1978 + + + + + + 277 + 10 + Records, Daily Schedule Back Up, January - November 1978 - 11 folders,1978 + + + + + + 277 + 11 + Records, Daily Schedule Back Up, January - November 1978 - 11 folders,1978 + + + + + + 277 + 12 + Records, White House,undated + + + + + + 277 + 13 + Records, Commerce Committee,undated + + + + + + 277 + 14 + Records, Foreign Relations Committee,undated + + + + + + 277 + 15 + Records, Rules Committee,undated + + + + + + 277 + 16 + Records, Memos from Senator to Staff,undated + + + + + + 277 + 17 + Records, Memos to Senator,undated + + + + + + 277 + 18 + Records, Office Information,undated + + + + + + 277 + 19 + Records, Personal,undated + + + + + + 277 + 20 + Records, Republican Policy,undated + + + + + + 277 + 21 + Records, Trip to New Zealand, Jan. 12 - Jan 15, 1976,1976 + + + + + + 277 + 22 + Records, Trip to Australia, Jan 06 - Jan 11, 1976,1976 + + + + + + 277 + 23 + Records, Trip to Saipan and Guam, Jan 05 - Jan 06, 1976,1976 + + + + + + 277 + 24 + Records, Soviet Union Trip 1973,1973 + + + + + + 277 + 25 + Records, Cambodia 1973,1973 + + + + + + 277 + 26 + Records, European Trip (General) 1973,1973 + + + + + + 277 + 27 + Records, Czechoslovakia Trip 1973,1973 + + + + + + 277 + 28 + Records, Poland Trip, 1973,1973 + + + + + + 277 + 29 + Records, Brussels, Belgium Trip 1973,1973 + + + + + + 277 + 30 + Records, U.S. Sen Robert P. Griffin... (publication),undated + + + + + + 277 + 31 + Records, Speech Material File, Rough Drafts, 1967,1967 + + + + + + 277 + 32 + Records, Speech Notes, 1971,1971 + + + + + + 277 + 33 + Records, Speech Material, 1973,1973 + + + + + + 277 + 34 + Records, Campaign Speeches, 1972,1972 + + + + + + 277 + 35 + Records, Speech Material, President vs. Democratic Congress, 1973,1973 + + + + + + 277 + 36 + Records, Republican Convention Notes, 1976,1976 + + + + + + 277 + 37 + Records, Ford Hearings for Vice President, 1973,1973 + + + + + + 277 + 38 + Records, Ford's Pardon Decision,undated + + + + + + 277 + 39 + Records, Senator's Announced Retirement, Apr 29 1977,1977 + + + + + + 277 + 40 + Records, Republican Leadership Meeting Notes,undated + + + + + + 277 + 41 + Records, Certificates, 1971-1976 (OVERSIZED - removed to prevent wrinkling, in folder on top of box),1971-1976 + + + + + + 277 + 42 + Records, President Ford's Trip to Michigan, July 11-13 1975,1975 + + + + + + 277 + 43 + Records, Supreme Court Vacancy, 1975,1975 + + + + + + 277 + 44 + Records, Senate Leadership Reorganization, 1975,1975 + + + + + + 277 + 45 + Records, Election of Minority Leader, 1969,1969 + + + + + + 277 + 46 + Records, List of Legislation Co-sponsored by Griffin 1st Session 90th 1967,1967 + + + + + + 277 + 47 + Records, Trip to Vietnam, 1966,1966 + + + + + + 277 + 48 + Records, Staff Manual,undated + + + + + + 277 + 49 + Records, Guest Book, 1967 - 2 folders,1967 + + + + + + 277 + 50 + Records, Guest Book, 1967 - 2 folders,1967 + + + + + + 277 + 51 + Records, Guest Book, 1968-1972,1968-1972 + + + + + + 277 + 52 + Records, Office Memos,undated + + + + + + 277 + 53 + Records, Remarks before U.A.W. - C.A.P. 1972 and CMU Alumni News 1956,1956 + + + + + + 277 + 54 + Records, Staff Manual,undated + + + + + + 277 + 55 + Records, Leadership Notes, 1976-1977,1976-1977 + + + + + + 416 + 1 + Records, Mr. Speaker/Page Place (Interview with Senator Robert P. Griffin), Thomas Brownscombe/Library of Congress, Washington, D.C., 1977,1977 + + + + + + 416 + 2 + Records, Michigan Reports, photocopies of pages documenting the career of Justice Robert P. Griffin, 1987, 1995 ,1987,1995 + + + + + + 416 + 4 + Records, Photographs, Sen. and Mrs. Griffin with Sen. Bob Dole, 1999, Sen. Griffin with Congressman Al Cederberg, 1999,1999 + + + + + + 416 + 5 + Records, Centraline, 8/9/1999, Robert and Marjorie Griffin Endowed Chair at CMU,1999 + + + + + + + Senator Robert P. Griffin Papers Collection - Series #8, Political Series, (10.5 cubic feet - 1943-1994, and undated) + + + + 278 + 1 + Records, Postmaster, Hale, Iosco Co.,undated + + + + + + 278 + 2 + Records, Postmaster, Hamilton, Allegan Co.,undated + + + + + + 278 + 3 + Records, Postmaster, Hancock,undated + + + + + + 278 + 4 + Records, Postmaster, Hancock, Jackson Co.,undated + + + + + + 278 + 5 + Records, Postmaster, Harbert, Berrien Co.,undated + + + + + + 278 + 6 + Records, Postmaster, Harbor Beach, Huron Co.,undated + + + + + + 278 + 7 + Records, Postmaster, Harsens Island, St. Clair Co.,undated + + + + + + 278 + 8 + Records, Postmaster, Hartland, Livingston Co.,undated + + + + + + 278 + 9 + Records, Postmaster, Haslett Post Office (Expansion Postal Facilities),undated + + + + + + 278 + 10 + Records, Postmaster, Hastings, Barry Co.,undated + + + + + + 278 + 11 + Records, Postmaster, Hawks, Presque Isle Co.,undated + + + + + + 278 + 12 + Records, Postmaster, Henderson, Shiawassee Co.,undated + + + + + + 278 + 13 + Records, Post Office - Herman, Discontinued,undated + + + + + + 278 + 14 + Records, Postmaster, Hermansville, Menominee Co.,undated + + + + + + 278 + 15 + Records, Postmaster, Hickory Corners, Barry Co.,undated + + + + + + 278 + 16 + Records, Postmaster, Higgins Lake, Roscommon Co.,undated + + + + + + 278 + 17 + Records, Postmaster, Holland, Ottawa Co.,undated + + + + + + 278 + 18 + Records, Postmaster, Holly, Oakland Co.,undated + + + + + + 278 + 19 + Records, Postmaster, Holt, Ingham Co.,undated + + + + + + 278 + 20 + Records, Postmaster, Homer, Calhoun Co.,undated + + + + + + 278 + 21 + Records, Postmaster, Howell, Livingston Co.,undated + + + + + + 278 + 22 + Records, Postmaster, Post-Office - Hoxeyville,undated + + + + + + 278 + 23 + Records, Postmaster, Hudson, Lenawee Co.,undated + + + + + + 278 + 24 + Records, Postmaster, Hudsonville, Ottawa Co.,undated + + + + + + 278 + 25 + Records, Postmasters, Ida,undated + + + + + + 278 + 26 + Records, Postmasters, Imlay City, Lapeer Co.,undated + + + + + + 278 + 27 + Records, Postmasters, Interlochen,undated + + + + + + 278 + 28 + Records, Postmasters, Ironwood, Gogebic Co.,undated + + + + + + 278 + 29 + Records, Post Office - Jackson,undated + + + + + + 278 + 30 + Records, Postmaster - Kalamazoo,undated + + + + + + 278 + 31 + Records, Post Office - Kalamazoo,undated + + + + + + 278 + 32 + Records, Post Office - Kalkaska,undated + + + + + + 278 + 33 + Records, Postmasters - Kawkawlin,undated + + + + + + 278 + 34 + Records, Post Office – Kendall,undated + + + + + + 278 + 35 + Records, Postmaster - Kinde, Huron Co.,undated + + + + + + 278 + 36 + Records, Postmaster – Kingsley,undated + + + + + + 278 + 37 + Records, Postmaster – Jeddo, St. Clair Co.,undated + + + + + + 278 + 38 + Records, Post Office - Lake Ann, Rural Delivery Extension,undated + + + + + + 278 + 39 + Records, Postmaster - Lake Odessa, Ionia Co.,undated + + + + + + 278 + 40 + Records, Post Office - Lake Orion,undated + + + + + + 278 + 41 + Records, Postmasters, Lake Orion, Oakland Co.,undated + + + + + + 278 + 42 + Records, Postmasters, Lawton,undated + + + + + + 278 + 43 + Records, Postmasters, L=Anse, Baraga Co.,undated + + + + + + 278 + 44 + Records, Postmasters, Leland, Leelanau Co.,undated + + + + + + 278 + 45 + Records, Post Office - Leonard,undated + + + + + + 278 + 46 + Records, Postmasters, Leroy, Osceola Co.,undated + + + + + + 278 + 47 + Records, Postmasters, Lewiston, Montmorency Co.,undated + + + + + + 278 + 48 + Records, Postmasters, Lincoln,undated + + + + + + 278 + 49 + Records, Postmasters, Lincoln Park,undated + + + + + + 278 + + Records, Post Office - Lincoln Park,undated + + + + + + 278 + 51 + Records, Postmaster, Linden, Genesee Co.,undated + + + + + + 278 + 52 + Records, Postmaster, Lowell, Kent Co.,undated + + + + + + 278 + 53 + Records, Postmaster, Ludington, Mason,undated + + + + + + 278 + 54 + Records, Postmaster, Mancelona, Antrim Co.,undated + + + + + + 278 + + Records, Postmaster, Manchester, Washtena Co.,undated + + + + + + 278 + 56 + Records, Postmaster, Manitou Beach, Lenawee Co.,undated + + + + + + 278 + 57 + Records, Postmaster, Maple City, Leelanau Co.,undated + + + + + + 278 + 58 + Records, Postmaster, Marine City, St. Clair Co.,undated + + + + + + 278 + 59 + Records, Postmaster, Marion, Osceola Co.,undated + + + + + + 278 + 60 + Records, Postmaster, Marquette, Marquette Co.,undated + + + + + + 278 + 61 + Records, Post Office - Mattawan,undated + + + + + + 278 + 62 + Records, Postmaster, Mayfield, Grand Traverse,undated + + + + + + 278 + 63 + Records, Postmaster, Mears,undated + + + + + + 278 + 64 + Records, Postmaster, Mecosta, Mecosta Co.,undated + + + + + + 278 + 65 + Records, Postmaster, Memphis, St. Clair Co.,undated + + + + + + 278 + 66 + Records, Postmaster, Mendon, St. Joseph Co.,undated + + + + + + 278 + 67 + Records, Post Office - Mendon, St. Joseph Co.,undated + + + + + + 278 + 68 + Records, Post Office- Menominee, Menominee Co,undated + + + + + + 278 + 69 + Records, Postmasters - Middleville,undated + + + + + + 278 + 70 + Records, Post Office - Midland,undated + + + + + + 278 + 71 + Records, Postmaster, Milan, Washtenaw Co.,undated + + + + + + 278 + 72 + Records, Postmaster, Mohawk, Keweenaw Co.,undated + + + + + + 278 + 73 + Records, Postmaster, Moline, Allegan Co.,undated + + + + + + 278 + 74 + Records, Postmaster, Montgomery, Hillsdale Co.,undated + + + + + + 278 + 75 + Records, Postmaster, Montrose, Genesee Co.,undated + + + + + + 278 + 76 + Records, Postmaster, Morenci,undated + + + + + + 278 + 77 + Records, Postmaster, Morley, Mecosta Co.,undated + + + + + + 278 + 78 + Records, Postmaster, Mosherville, Hillsdale Co.,undated + + + + + + 278 + 79 + Records, Postmaster, Mt. Clemens,undated + + + + + + 278 + 80 + Records, Post Office - Mt. Clemens,undated + + + + + + 278 + 81 + Records, Postmaster, Mulliken, Eaton Co.,undated + + + + + + 278 + 82 + Records, Postmaster, Munith, Jackson Co.,undated + + + + + + 278 + 83 + Records, Postmaster, Muir, Ionia Co.,undated + + + + + + 278 + 84 + Records, Post Office - Muskegon,undated + + + + + + 278 + 85 + Records, Post Office - Muskegon Heights,undated + + + + + + 278 + 86 + Records, Postmaster - Nashville, Barry Co.,undated + + + + + + 278 + 87 + Records, Post Office - Nashville,undated + + + + + + 278 + 88 + Records, Postmaster -National City, Iosco Co.,undated + + + + + + 278 + 89 + Records, Postmaster, Negaunee, Marquette Co.,undated + + + + + + 278 + 90 + Records, Postmaster, New Troy, Berrien Co.,undated + + + + + + 278 + 91 + Records, Postmaster, North Branch, Lapeer Co.,undated + + + + + + 278 + 92 + Records, Post Office (Seasonal) - Northport Point,undated + + + + + + 278 + 93 + Records, Postmaster - Northville, Wayne Co.,undated + + + + + + 278 + 94 + Records, Post Office - Norway,undated + + + + + + 278 + 95 + Records, Postmaster, Novi,undated + + + + + + 278 + 96 + Records, Postmaster, Oakley, Saginaw Co.,undated + + + + + + 278 + 97 + Records, Postmaster, Oden, Emmet,undated + + + + + + 278 + 98 + Records, Postmaster, Okemos, Ingham Co.,undated + + + + + + 278 + 99 + Records, Postmaster, Olivet, Eaton Co.,undated + + + + + + 278 + 100 + Records, Postmaster, Omena, Leelanau Co.,undated + + + + + + 278 + 101 + Records, Postmaster, Onaway, Presque Isle Co.,undated + + + + + + 278 + 102 + Records, Postmaster, Ortonville, Oakland Co.,undated + + + + + + 278 + 103 + Records, Postmaster, Oshtemo, Kalamazoo Co.,undated + + + + + + 278 + 104 + Records, Postmaster, Otisville, Genesee Co.,undated + + + + + + 278 + 105 + Records, Postmaster, Ovid, Clinton Co.,undated + + + + + + 278 + 106 + Records, Postmaster, Owendale, Huron co.,undated + + + + + + 278 + 107 + Records, Postmaster, Owosso, Shiawassee Co.,undated + + + + + + 278 + 108 + Records, Postmaster, Oxford, Oakland Co.,undated + + + + + + 278 + 109 + Records, Postmaster, Painesdale, Houghton Co.,undated + + + + + + 278 + 110 + Records, Post Office - Paulding,undated + + + + + + 278 + 111 + Records, Postmaster - Pellston, Emmet Co.,undated + + + + + + 278 + 112 + Records, Post Office - Pentwater,undated + + + + + + 278 + 113 + Records, Postmaster - Petersburg, Monroe Co.,undated + + + + + + 278 + 114 + Records, Postmaster - Plymouth, Wayne Co.,undated + + + + + + 278 + 115 + Records, Post Office - Portage (Postal Facility),undated + + + + + + 278 + 116 + Records, Postmaster, Port Austin, Huron Co.,undated + + + + + + 278 + 117 + Records, Postmaster, Port Sanilac, Sanilac Co.,undated + + + + + + 278 + 118 + Records, Postmaster, Posen, Presque Isle Co.,undated + + + + + + 278 + 119 + Records, Postmaster, Potterville, Eaton Co.,undated + + + + + + 278 + 120 + Records, Postmaster, Prattville, Hillsdale Co.,undated + + + + + + 278 + 121 + Records, Postmaster, Presque Isle, Presque Isle Co.,undated + + + + + + 278 + 122 + Records, Postmaster, Greenbush, Alcona Co.,undated + + + + + + 278 + 123 + Records, Postmaster, Grosse Ile,undated + + + + + + 278 + 124 + Records, Postmaster, Gwinn, Marquette Co.,undated + + + + + + 278 + 125 + Records, Postmaster Applications and Notes, A-G, New Postmaster Letters,undated + + + + + + 278 + 126 + Records, Postmaster - General,1969 + + + + + + 278 + 127 + Records, Postmaster - Appointments (Computer Printouts) 12/13/68,1968 + + + + + + 278 + 128 + Records, Acting Postmasters Appointed,undated + + + + + + 278 + 129 + Records, Post Office/Postmaster Appointments/General,undated + + + + + + 278 + 130 + Records, Post Office Department – Personnel Action Notices,undated + + + + + + 278 + 131 + Records, Post Office - Personnel Notices,undated + + + + + + 278 + 132 + Records, Postmaster - General,undated + + + + + + 278 + 133 + Records, Post Office Data: Postmaster & Gen. Postmaster,undated + + + + + + 278 + 134 + Records, Postmaster – Examinations,undated + + + + + + 279 + 1 + Records, Postmaster, Alba, Antrim Co.,undated + + + + + + 279 + 2 + Records, Postmaster, Algonac, St. Clair Co.,undated + + + + + + 279 + 3 + Records, Postmaster, Allegan, Allegan Co.,undated + + + + + + 279 + 4 + Records, Postmaster, Allendale, Ottawa Co.,undated + + + + + + 279 + + Records, Postmaster, Alpha, Iron Co.,undated + + + + + + 279 + 6 + Records, Postmaster, Amasa, Iron Co.,undated + + + + + + 279 + 7 + Records, Postmaster, Anchorville,undated + + + + + + 279 + 8 + Records, Postmaster, Ashley, Gratiot Co.,undated + + + + + + 279 + 9 + Records, Postmaster, Atlanta, Montmorency Co.,undated + + + + + + 279 + 10 + Records, Postmaster, Augusta, Kalamazoo Co.,undated + + + + + + 279 + 11 + Records, Postmaster, Bangor, Van Buren Co.,undated + + + + + + 279 + 12 + Records, Postmaster, Battle Creek,undated + + + + + + 279 + 13 + Records, Postmaster, Bay City,undated + + + + + + 279 + 14 + Records, Post Office - Belleville,undated + + + + + + 279 + 15 + Records, Postmaster, Benton Harbor, Berrien Co.,undated + + + + + + 279 + 16 + Records, Postmaster, Bessemer, Gogebic Co.,undated + + + + + + 279 + 17 + Records, Postmaster, Big Rapids, Mecosta Co.,undated + + + + + + 279 + 18 + Records, Postmaster, Birch Run, Saginaw Co.,undated + + + + + + 279 + 19 + Records, Post Office - Birmingham,undated + + + + + + 279 + 20 + Records, Postmaster, Bitely, Newaygo Co.,undated + + + + + + 279 + 21 + Records, Postmaster, Blissfield, Lenawee Co.,undated + + + + + + 279 + 22 + Records, Postmaster, Bloomfield Hills, Oakland Co.,undated + + + + + + 279 + 23 + Records, Postmaster, Bridgeport, Saginaw Co.,undated + + + + + + 279 + 24 + Records, Postmaster, Caledonia, Kent Co.,undated + + + + + + 279 + 25 + Records, Postmaster, Calumet, Houghton Co.,undated + + + + + + 279 + 26 + Records, Postmaster, Cassapolis, Cass Co.,undated + + + + + + 279 + 27 + Records, Postmaster, Buckley, Wexford Co.,undated + + + + + + 279 + 28 + Records, Postmaster, Cadillac, Wexford Co.,undated + + + + + + 279 + 29 + Records, Postmaster, Centreville, St. Joseph Co.,undated + + + + + + 279 + 30 + Records, Post Office - Charlotte,undated + + + + + + 279 + 31 + Records, Propose Rural Route Changes at Charlotte Post Office,undated + + + + + + 279 + 32 + Records, Postmaster - Chassell, Houghton Co.,undated + + + + + + 279 + 33 + Records, Postmaster - Chesaning, Saginaw Co.,undated + + + + + + 279 + 34 + Records, Post Office - Climax,undated + + + + + + 279 + 35 + Records, Postmaster, Comins, Oscoda Co.,undated + + + + + + 279 + 36 + Records, Postmaster, Conway, Emmet Co.,undated + + + + + + 279 + 37 + Records, Postmaster, Cooks, Schoolcraft Co.,undated + + + + + + 279 + 38 + Records, Postmaster, Copper Harbor, Keweenaw Co.,undated + + + + + + 279 + 39 + Records, Copper Harbor Post Office,undated + + + + + + 279 + 40 + Records, Post Office - Coral,undated + + + + + + 279 + 41 + Records, Postmaster - Cornell, Delta Co.,undated + + + + + + 279 + 42 + Records, Post Office - Cornell,undated + + + + + + 279 + 43 + Records, Postmaster - Corunna,undated + + + + + + 279 + 44 + Records, Post Office Dept. - Cross Village,undated + + + + + + 279 + 45 + Records, Postmaster - Crystal Falls, Iron Co.,undated + + + + + + 279 + 46 + Records, Postmaster - Dearborn Heights, Wayne Co. 15th District,undated + + + + + + 279 + 47 + Records, Post Office - Dearborn Heights,undated + + + + + + 279 + 48 + Records, Postmaster - Decker, Sanilac Co.,undated + + + + + + 279 + 49 + Records, Post Office - Detroit,undated + + + + + + 279 + + Records, Post Office Dept. - Detroit Northwestern Station (Joy Road),undated + + + + + + 279 + 51 + Records, Post Office Dept. - Marine Postal Service,undated + + + + + + 279 + 52 + Records, Postmaster, Dowling, Barry Co.,undated + + + + + + 279 + 53 + Records, Postmaster, Eaton Rapids, Eaton Co.,undated + + + + + + 279 + 54 + Records, Postmaster, Eau Claire, Berrien Co.,undated + + + + + + 279 + + Records, Elkton - Post Office,undated + + + + + + 279 + 56 + Records, Post Office - Ensign,undated + + + + + + 279 + 57 + Records, Postmaster - Erie, Monroe Co.,undated + + + + + + 279 + 58 + Records, Post Office - Escanaba,undated + + + + + + 279 + 59 + Records, Postmaster - Fairgrove, Tuscola Co.,undated + + + + + + 279 + 60 + Records, Post Office - Farmington,undated + + + + + + 279 + 61 + Records, Postmaster - Farwell, Clare Co.,undated + + + + + + 279 + 62 + Records, Postmaster - Fennville, Allegan Co.,undated + + + + + + 279 + 63 + Records, Post Office - Fennville,undated + + + + + + 279 + 64 + Records, Postmaster, Fenton, Genesee Co.,undated + + + + + + 279 + 65 + Records, Postmaster, Flat Rock, Wayne Co.,undated + + + + + + 279 + 66 + Records, Postmaster, Flint, Genesee Co.,undated + + + + + + 279 + 67 + Records, Post Office - Flushing,undated + + + + + + 279 + 68 + Records, Post Office - Franklin,undated + + + + + + 279 + 69 + Records, Postmaster, Gaastra, Iron Co.,undated + + + + + + 279 + 70 + Records, Postmaster, Galesburg, Kalamazoo Co.,undated + + + + + + 279 + 71 + Records, Postmaster, Garden City, Wayne Co.-15th Dist.,undated + + + + + + 279 + 72 + Records, Post Office - Garden City,undated + + + + + + 279 + 73 + Records, Postmaster - Gaylord, Otsego Co.,undated + + + + + + 279 + 74 + Records, Post Office - Gibralter,undated + + + + + + 279 + 75 + Records, Postmaster, Glen Arbor, Leelanau Co.,undated + + + + + + 279 + 76 + Records, Postmaster, Grand Rapids,1969 + + + + + + 279 + 77 + Records, Postmaster, Grand Rapids,1967-1968 + + + + + + 279 + 78 + Records, Postmaster, Post Office - Grand Rapids,undated + + + + + + 279 + 79 + Records, Romney Speech by Griffin,1968 + + + + + + 279 + 80 + Records, Griffin Correspondence (Senate Elect),1968 + + + + + + 279 + 81 + Records, Ethnic Groups Results, 1966 Election,1966 + + + + + + 279 + 82 + Records, Recent Statewide Elections,1966 + + + + + + 279 + 83 + Records, County by County Results,1966 + + + + + + 279 + 84 + Records, Griffin Remarks and Notes,1968 + + + + + + 279 + 85 + Records, District Results,1966 + + + + + + 279 + 86 + Records, City Results,1966 + + + + + + 279 + 87 + Records, Federal District Judge Candidates: Edward Piggins,undated + + + + + + 279 + 88 + Records, Federal District Judge Candidates: Philip Pratt,undated + + + + + + 279 + 89 + Records, Federal District Judge Candidates: Paul J. Kowives,undated + + + + + + 279 + 90 + Records, Federal District Judge Candidates: Henry Heading,undated + + + + + + 279 + 91 + Records, Federal District Judge Candidates: Charles W. Joiner (Dean, MSU Law School),undated + + + + + + 279 + 92 + Records, Federal District Judge Candidates: Cornelia Kennedy,undated + + + + + + 279 + 93 + Records, Federal District Judge Candidates: Wallace Kent,undated + + + + + + 279 + 94 + Records, Federal District Judge Candidates: John Dethmers,undated + + + + + + 279 + 95 + Records, Federal District Judge Candidates: Albert J. Engel, Jr.,undated + + + + + + 279 + 96 + Records, Federal District Judge Candidates: John Feikens,undated + + + + + + 279 + 97 + Records, Federal District Judge Candidates: Tyrone Gillespie,undated + + + + + + 280 + 1 + Records, Federal District Judge Candidates: John Gillis,undated + + + + + + 280 + 2 + Records, Federal District Judge Candidates: Griffiths-Kennedy,undated + + + + + + 280 + 3 + Records, Federal District Judge Candidates: Judge Robert Demascio - 2 folders,undated + + + + + + 280 + 4 + Records, Federal District Judge Candidates: Judge Robert Demascio - 2 folders,undated + + + + + + 280 + + Records, Federal District Judge Candidates: Judge Brennan,undated + + + + + + 280 + 6 + Records, Federal District Judge Candidates: Judge Benjamin Burdick,undated + + + + + + 280 + 7 + Records, Federal District Judge Candidates: Walter Cynar - 3 folders,undated + + + + + + 280 + 8 + Records, Federal District Judge Candidates: Walter Cynar - 3 folders,undated + + + + + + 280 + 9 + Records, Federal District Judge Candidates: Walter Cynar - 3 folders,undated + + + + + + 280 + 10 + Records, Federal District Judge Candidates: Judge Information,undated + + + + + + 280 + 11 + Records, Federal District Judge Candidates: Robert Danhoff,undated + + + + + + 280 + 12 + Records, Federal District Judge Candidates: Bernard Davidson,undated + + + + + + 280 + 13 + Records, Federal District Judge Candidates: Ralph Guy,undated + + + + + + 280 + 14 + Records, Federal District Judge Candidates: James Churchill,undated + + + + + + 280 + 15 + Records, Eastern District D.A., Brickley Replacement,undated + + + + + + 280 + 16 + Records, U.S. Marshall, Eastern District,undated + + + + + + 280 + 17 + Records, Eastern District Judge/U.S. Attorney,undated + + + + + + 280 + 18 + Records, St. Lawrence Seaway Development Corp.,undated + + + + + + 280 + 19 + Records, Assistant U.S. Attorney, Western District,undated + + + + + + 280 + 20 + Records, District Attorney, Eastern District,undated + + + + + + 280 + 21 + Records, Great Lakes Basin Commission,undated + + + + + + 280 + 22 + Records, George Woods,undated + + + + + + 280 + 23 + Records, U.S. Supreme Court Applications,undated + + + + + + 280 + 24 + Records, Applicants for Judgeship Vacancies,undated + + + + + + 280 + 25 + Records, Eastern District Federal Judge,undated + + + + + + 280 + 26 + Records, District Attorney Eastern District,undated + + + + + + 280 + 27 + Records, Assistant U.S. Attorney Eastern District,undated + + + + + + 280 + 28 + Records, A.S.C.S. Applicants,undated + + + + + + 280 + 29 + Records, Anthony Rozman,undated + + + + + + 280 + 30 + Records, James L. Ryan,undated + + + + + + 280 + 31 + Records, Judge Peter Spivak,undated + + + + + + 280 + 32 + Records, Marvin Washington,undated + + + + + + 280 + 33 + Records, John Milanski,undated + + + + + + 280 + 34 + Records, Michael O=Hara,undated + + + + + + 280 + 35 + Records, Great Lakes Pollution Control Agreement 12/3/71,1971 + + + + + + 280 + 36 + Records, Giles S. Rich,undated + + + + + + 281 + 1 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 1-18 (19 folders),undated + + + + + + 281 + 2 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 1-18 (19 folders),undated + + + + + + 281 + 3 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 1-18 (19 folders),undated + + + + + + 281 + 4 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 1-18 (19 folders),undated + + + + + + 281 + + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 1-18 (19 folders),undated + + + + + + 281 + 6 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 1-18 (19 folders),undated + + + + + + 281 + 7 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 1-18 (19 folders),undated + + + + + + 281 + 8 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 1-18 (19 folders),undated + + + + + + 281 + 9 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 1-18 (19 folders),undated + + + + + + 281 + 10 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 1-18 (19 folders),undated + + + + + + 281 + 11 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 1-18 (19 folders),undated + + + + + + 281 + 12 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 1-18 (19 folders),undated + + + + + + 281 + 13 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 1-18 (19 folders),undated + + + + + + 281 + 14 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 1-18 (19 folders),undated + + + + + + 281 + 15 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 1-18 (19 folders),undated + + + + + + 281 + 16 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 1-18 (19 folders),undated + + + + + + 281 + 17 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 1-18 (19 folders),undated + + + + + + 281 + 18 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 1-18 (19 folders),undated + + + + + + 281 + 19 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 1-18 (19 folders),undated + + + + + + 282 + 1 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 19-34 (17 folders),undated + + + + + + 282 + 2 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 19-34 (17 folders),undated + + + + + + 282 + 3 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 19-34 (17 folders),undated + + + + + + 282 + 4 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 19-34 (17 folders),undated + + + + + + 282 + + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 19-34 (17 folders),undated + + + + + + 282 + 6 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 19-34 (17 folders),undated + + + + + + 282 + 7 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 19-34 (17 folders),undated + + + + + + 282 + 8 + Records,Select Committee Hearings on Presidential Campaign Activities, Volumes 19-34 (17 folders),undated + + + + + + 282 + 9 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 19-34 (17 folders),undated + + + + + + 282 + 10 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 19-34 (17 folders),undated + + + + + + 282 + 11 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 19-34 (17 folders),undated + + + + + + 282 + 12 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 19-34 (17 folders),undated + + + + + + 282 + 13 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 19-34 (17 folders),undated + + + + + + 282 + 14 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 19-34 (17 folders),undated + + + + + + 282 + 15 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 19-34 (17 folders),undated + + + + + + 282 + 16 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 19-34 (17 folders),undated + + + + + + 282 + 17 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 19-34 (17 folders),undated + + + + + + 283 + 1 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 35-53 (19 folders),undated + + + + + + 283 + 2 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 35-53 (19 folders),undated + + + + + + 283 + 3 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 35-53 (19 folders),undated + + + + + + 283 + 4 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 35-53 (19 folders),undated + + + + + + 283 + + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 35-53 (19 folders),undated + + + + + + 283 + 6 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 35-53 (19 folders),undated + + + + + + 283 + 7 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 35-53 (19 folders),undated + + + + + + 283 + 8 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 35-53 (19 folders),undated + + + + + + 283 + 9 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 35-53 (19 folders),undated + + + + + + 283 + 10 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 35-53 (19 folders),undated + + + + + + 283 + 11 + Records,Select Committee Hearings on Presidential Campaign Activities, Volumes 35-53 (19 folders),undated + + + + + + 283 + 12 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 35-53 (19 folders),undated + + + + + + 283 + 13 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 35-53 (19 folders),undated + + + + + + 283 + 14 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 35-53 (19 folders),undated + + + + + + 283 + 15 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 35-53 (19 folders),undated + + + + + + 283 + 16 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 35-53 (19 folders),undated + + + + + + 283 + 17 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 35-53 (19 folders),undated + + + + + + 283 + 18 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 35-53 (19 folders),undated + + + + + + 283 + 19 + Records, Select Committee Hearings on Presidential Campaign Activities, Volumes 35-53 (19 folders),undated + + + + + + 284 + 1 + Records, Appointment Books, undated,undated + + + + + + 284 + 2 + Records, Lincoln Day Dinners (Barry & Houghton County),1968 + + + + + + 284 + 3 + Records, Lincoln Day Luncheon – 2/17/1968,1968 + + + + + + 284 + 4 + Records, Fortas and Thornberry Nomination,undated + + + + + + 284 + + Records, Speech Drafts, speeches ,1967-1968 + + + + + + 284 + 6 + Records, Michigan Politicians,undated + + + + + + 284 + 7 + Records, Griffin Campaign Correspondence,1966 + + + + + + 284 + 8 + Records, Michigan Group Trips to D.C. ,1968 + + + + + + 284 + 9 + Records, Detroit Newspaper Strike,undated + + + + + + 284 + 10 + Records, Poor People's March - speech drafts,undated + + + + + + 284 + 11 + Records, Questionnaire,1965 + + + + + + 284 + 12 + Records, Political Status of Griffin,1968 + + + + + + 284 + 13 + Records, Republican National Convention,1968 + + + + + + 284 + 14 + Records, Lenore Romney Campaign,1970 + + + + + + 284 + 15 + Records, Republican State Central,1969 + + + + + + 284 + 16 + Records, Javits,1969 + + + + + + 284 + 17 + Records, Original Drafts,1969 + + + + + + 284 + 18 + Records, Original Drafts,1970 + + + + + + 284 + 19 + Records, Michigan Historical Collections,undated + + + + + + 284 + 20 + Records, Nationalities,undated + + + + + + 284 + 21 + Records, Telegrams, Drafts,undated + + + + + + 284 + 22 + Records, Republican Leadership,undated + + + + + + 284 + 23 + Records, Web - Pomerene Act,undated + + + + + + 284 + 24 + Records, AVital Speeches@,undated + + + + + + 284 + 25 + Records, Questionnaires,undated + + + + + + 284 + 26 + Records, Michigan State,undated + + + + + + 284 + 27 + Records, Political,1971 + + + + + + 284 + 28 + Records, Memos,undated + + + + + + 284 + 29 + Records, Sol Collins,undated + + + + + + 284 + 30 + Records, U.S. Senate Rep. Policy Committee Photo,undated + + + + + + 284 + 31 + Records, The Fortas Case - 2 folders,undated + + + + + + 284 + 32 + Records, The Fortas Case - 2 folders,undated + + + + + + 284 + 33 + Records, Michigan, Detroit Tigers,undated + + + + + + 284 + 34 + Records, Constituent Mail,undated + + + + + + 284 + 35 + Records, Griffin Remarks before Mich. Legislature- 2/17/71,1971 + + + + + + 284 + 36 + Records, Review of American Federalism,undated + + + + + + 284 + 37 + Records, Fortas Chronology,undated + + + + + + 284 + 38 + Records, US Marshall - Eastern District – 1969,1969 + + + + + + 285 + 1 + Records, Harry A. Blackmun,undated + + + + + + 285 + 2 + Records, Carswell,undated + + + + + + 285 + 3 + Records, Various Materials on Appointments,undated + + + + + + 285 + 4 + Records, Carswell and Florida State College of Law,undated + + + + + + 285 + + Records, Carswell, Opinions,undated + + + + + + 285 + 6 + Records, Carswell, Griffin Remarks,undated + + + + + + 285 + 7 + Records, Statement and Correspondence by Members, House and Senate,undated + + + + + + 285 + 8 + Records, Haynsworth Nomination,undated + + + + + + 285 + 9 + Records, Clement J. Haynsworth Hearings,1969 + + + + + + 285 + 10 + Records, Clement J. Haynsworth, Memo,undated + + + + + + 285 + 11 + Records, Haynsworth Nomination,undated + + + + + + 285 + 12 + Records, Griffin Remarks on Fortas and Haynsworth,undated + + + + + + 285 + 13 + Records, Griffin AThe Senate=s Role of Advice and Consent Nominations@ Journal of Law Reform,1969 + + + + + + 285 + 14 + Records, Abe Fortas,undated + + + + + + 285 + 15 + Records, Fortas Testimony,undated + + + + + + 285 + 16 + Records, Fortas Conflict of Interest,undated + + + + + + 285 + 17 + Records, Fortas Background,undated + + + + + + 285 + 18 + Records, Senator's Positions and Statements,undated + + + + + + 285 + 19 + Records, Anti-Semitism,undated + + + + + + 285 + 20 + Records, Cronyism,undated + + + + + + 285 + 21 + Records, Kudos to Griffin,undated + + + + + + 285 + 22 + Records, Strategy Meetings,undated + + + + + + 285 + 23 + Records, Seminar Fund,undated + + + + + + 285 + 24 + Records, Fortas, Wolfson, Correspondence,undated + + + + + + 285 + 25 + Records, Renquist - Powell,undated + + + + + + 285 + 26 + Records, Retirement Date Central Poll,undated + + + + + + 285 + 27 + Records, Warren Earl Burger,undated + + + + + + 285 + 28 + Records, S 2109,undated + + + + + + 285 + 29 + Records, Warren Burger Background,undated + + + + + + 285 + 30 + Records, Associations and Organizations, General,undated + + + + + + 285 + 31 + Records, Press Blitz,undated + + + + + + 285 + 32 + Records, Nominee for President,1968 + + + + + + 285 + 33 + Records, Republican National Convention,undated + + + + + + 285 + 34 + Records, Romney Comments,undated + + + + + + 285 + 35 + Records, Federal Judges,undated + + + + + + 285 + 36 + Records, State Finance Committee Fund Raising Letter,undated + + + + + + 285 + 37 + Records, Republican National Convention,1976 + + + + + + 285 + 38 + Records, Griffin Press,undated + + + + + + 285 + 39 + Records, Reagan/Schweiker,undated + + + + + + 285 + 40 + Records, Notebook, Senator’s,undated + + + + + + 285 + 41 + Records, Michigan State Republican Committee,undated + + + + + + 286 + 1 + Records, 1973 V.P. Gerald Ford Impeachment,1973 + + + + + + 286 + 2 + Records, Impeachment,undated + + + + + + 286 + 3 + Records, Michigan Statewide Study for Alger Boyer,1970 + + + + + + 286 + 4 + Records, Market Opinion Research Study,undated + + + + + + 286 + + Records, Polling, Primary,undated + + + + + + 286 + 6 + Records, Polling, General,undated + + + + + + 286 + 7 + Records, Polling,1978 + + + + + + 286 + 8 + Records, Senator's Personal Campaign Files, Opening Statement Detroit Economic Club,undated + + + + + + 286 + 9 + Records, Senator's Personal Campaign Files, Speeches,undated + + + + + + 286 + 10 + Records, Senator's Personal Campaign Files, Miscellaneous,undated + + + + + + 286 + 11 + Records, Senator's Personal Campaign Files, Issues (Misc.),undated + + + + + + 286 + 12 + Records, Senator's Personal Campaign Files, Levin Charge,undated + + + + + + 286 + 13 + Records, Senator's Personal Campaign Files, Levin,undated + + + + + + 286 + 14 + Records, Senator's Personal Campaign Files, Speech Material,undated + + + + + + 286 + 15 + Records, Retirement, Voting Attendance, and Record, Nuclear Energy,undated + + + + + + 286 + 16 + Records, Retirement, Voting Attendance, and Record, Draft, Speech Would Have Delivered Before UAW-CAP,undated + + + + + + 286 + 17 + Records, Retirement, Voting Attendance, and Record, Newspaper Endorsements, memo from Margaret Foster,undated + + + + + + 286 + 18 + Records, Retirement, Voting Attendance, and Record, Draft, Primary Election Night Speech, Aug. 8, 1978,1978 + + + + + + 286 + 19 + Records, Retirement, Voting Attendance, and Record, Draft, General Election Night Speech, Nov. 8, 1978,1978 + + + + + + 418 + 1 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 1-Introduction, 10/1968,1968 + + + + + + 418 + 2 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 2-How It Began, 6-12/1968, undated,1968 + + + + + + 418 + 3 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 3-The Controversy Grows, 6-9/1968 [no Chapt. 4],1968 + + + + + + 418 + 4 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 5-Presenting the Case, 7/1968 [no Chapt. 4],1968 + + + + + + 418 + + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 6-Fortas As A Witness, 10/1965-11/1969, undated,1965-1969 + + + + + + 418 + 6 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 7-Non-judicial Roles & History, 7-8/1968,1968 + + + + + + 418 + 7 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 8-The Warren Backlash, 6-10/1968, undated,1968 + + + + + + 418 + 8 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 9-Pornography Becomes An Issue, 8/1968-4/1969,1968-1969 + + + + + + 418 + 9 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 9-Pornography Becomes An Issue – Obscenity, 12/1960-4/1969,1960-1969 + + + + + + 418 + 10 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 10-Opposition Hardens, Fortas’ Background, “Curious Yellow”, 1965-2/1969, undated,1965-1969 + + + + + + 418 + 11 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 11-The Fortas Seminar Fee, 1966-4/1969,1966-1969 + + + + + + 418 + 12 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 12-Other Unanswered Questions, 3/1962-9/1968, undated,1962-1968 + + + + + + 419 + 1 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 13-Professional Qualifications and the A.B.A., 1964-3/1969, undated - 2 folders,1964-1969 + + + + + + 419 + 2 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 13-Professional Qualifications and the A.B.A., 1964-3/1969, undated - 2 folders,1964-1969 + + + + + + 419 + 3 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 14-Thornberry: The Forgotten Nominee, 1961-7/1968, undated,1961-1968 + + + + + + 419 + 4 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 15-Toward A Showdown, 9/1968,1968 + + + + + + 419 + + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 16-Floor Debate: Part I, 1943-1969, undated,1968 + + + + + + 419 + 6 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 17-Floor Debate: Part II, 9-10/1968, undated,1968 + + + + + + 419 + 7 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 18-Withdrawl of Fortas Nomination, 9-12/1968 [no Chapt. 19],1968 + + + + + + 419 + 8 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 20-Epilogue (The Resignation), 4-6/1969 [no Chapt. 19],1969 + + + + + + 419 + 9 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 20-Epilogue (The Resignation), Fortas-Wolfson Releases, 5/1969,1969 + + + + + + 419 + 10 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 20-Epilogue (The Resignation), Fortas-Wolfson Editorials, 12/1968-5/1969, undated,1968-1969 + + + + + + 419 + 11 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 20-Epilogue (The Resignation), Fortas-Wolfson Griffin Clippings, 5-8/1969,1969 + + + + + + 419 + 11 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Ann Arbor (Mich.) Obscene Film Articles, 1/1967-7/1968,1967-1968 + + + + + + 419 + 12 + Records,Abe Fortas Research Materials, arranged alphabetically by topic: Cecil’s Fortas Draft (1st Draft of Chapts. 10-14], undated,undated + + + + + + 419 + 13 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Columns, Favorable, 7-9/1968, undated,undated + + + + + + 420 + 1 + Records, Correspondence re: Book, 12/1968-12/1969,1968-1969 + + + + + + 420 + 2 + Records, Editorials- Anti-semitism, 7-9/1968, undated,1968 + + + + + + 420 + 3 + Records, Editorials- Favorable, Michigan, 6-10/1968, undated,1968 + + + + + + 420 + 4 + Records, Editorials- Neutral, Michigan, 6-10/1968,1968 + + + + + + 420 + + Records, Editorials- Unfavorable, Michigan, 7-12/1968,1968 + + + + + + 420 + 6 + Records, Hard Times, No. 36, 6/16-23/1969,1969 + + + + + + 420 + 7 + Records, Letters to Editor, 9-10/1968, undated,1968 + + + + + + 420 + 8 + Records, Miscellaneous Materials, 1953-1990, undated,1953-1990 + + + + + + 420 + 9 + Records, Miscellaneous re: Fortas, Judicial selection, Brown vs. Bd. Of Education, 1968-1994,1968-1994 + + + + + + 420 + 10 + Records, Newspaper Clippings, Related Materials, 7-9/1968 - 4 folders,1968 + + + + + + 420 + 11 + Records, Newspaper Clippings, Related Materials, 7-9/1968 - 4 folders,1968 + + + + + + 420 + 12 + Records, Newspaper Clippings, Related Materials, 7-9/1968 - 4 folders,1968 + + + + + + 420 + 13 + Records, Newspaper Clippings, Related Materials, 7-9/1968 - 4 folders,1968 + + + + + + 421 + 1 + Records, Newspaper Clippings, Related Materials, 10-12/1968, undated - 2 folders,1968 + + + + + + 421 + 2 + Records, Newspaper Clippings, Related Materials, 10-12/1968, undated - 2 folders,1968 + + + + + + 421 + 3 + Records, Newsweek, 5/19/1969-Fortas on Cover,1969 + + + + + + 421 + 4 + Records, Nominations of Abe Fotras and Homer Thornberry: Hearings Before the Committee on the Judiciary, U.S. Senate…, 9/13, 16/1968,1968 + + + + + + 421 + + Records, Senate Reprints, Chronology, AEP Index, 6-10/1968, undated,1968 + + + + + + 421 + 6 + Records, Supreme Court Editorials, Favorable, 6-10/1968,1968 + + + + + + 421 + 7 + Records, Supreme Court Editorials, Neutral, 7-10/1968,1968 + + + + + + 421 + 8 + Records, Supreme Court Editorials, Unfavorable, 6-10/1968, undated,1968 + + + + + + 421 + 9 + Records, Supreme Court Historical Society, The Jewish Justices of the Supreme Court Revisited: Brandeis to Fortas, 1994 (special edition of the Journal of Supreme Court History),1994 + + + + + + 421 + 10 + Records, Vacancy Issue, 6-9/1968, undated,1968 + + + + + + + Senator Robert P. Griffin Papers Collection - Series #8, Press Series, (114 cubic feet - 1940‑1978, bulk 1957‑1978) + + + + 287 + 1 + Records, (Til Bright), Subject Card File Box #1, #2, These card files provide an index to most (but not all) of the Senator's floor remarks, press releases, public speeches, and bills introduced during the two term Senate period. Cards are arranged alphabetically, by subject, includes Congressional record inserts, press releases, and speeches.,1966-1978 + + + + + + 288 + 1 + Records, (Til Bright), Subject Card File, Box #3, This card file provides an index to most (but not all) of the Senator=s floor remarks, press releases, public speeches, and bills introduced during the two term Senate period. Cards are arranged alphabetically, by subject, includes Congressional record inserts, press releases, and speeches.,1966-1978 + + + + + + 289 + 1 + Records, (Til Bright), Date Card File 1966-1972, Box #4, Date Card File 1973-1978, Box #5, These card files provide an index to most (but not all) of the Senator=s floor remarks, press releases, public speeches, and bills introduced during the two term Senate period. Cards are arranged chronologically.,1966-1978 + + + + + + 290 + 1 + Records, Mailing to District, Questionnaire, Computer Printouts (examples of questionnaires found in top printout),1963-1966, 1965 + + + + + + 291 + 1 + Records, Public Relations, General,1966 + + + + + + 291 + 2 + Records, Speeches, Miscellaneous,1966 + + + + + + 291 + 3 + Records, RPG (Griffin) on the Issues, Index,1972 + + + + + + 291 + 4 + Records, Appearances and Speeches, General ,1967-1972 + + + + + + 291 + 5 + Records, Appearances and Speeches, Personalities, Griffin on Vandenberg,1967-1972 + + + + + + 291 + 6 + Records, Appearances and Speeches, Vandenberg Speech, 10/16/1974 at University of Michigan,1974 + + + + + + 291 + 7 + Records, Appearances and Speeches, Vandenberg Plaque Speech, 4/4/1967,1967 + + + + + + 291 + 8 + Records, Appearances and Speeches, Lincoln Day, 1967,1967 + + + + + + 291 + 9 + Records, Appearances and Speeches, Lincoln Day, 1968,1968 + + + + + + 291 + 10 + Records, Appearances and Speeches, Lincoln Day, 1969,1969 + + + + + + 291 + 11 + Records, Appearances and Speeches, Lincoln Day, 1970 ,1970 + + + + + + 291 + 12 + Records, Appearances and Speeches, Lincoln Day, 1972 (no 1971),1972 + + + + + + 291 + 13 + Records, Appearances and Speeches, Birthday Dinners,1967-1972 + + + + + + 291 + 14 + Records, Appearances and Speeches, Articles, Books, and Awards,1967-1972 + + + + + + 291 + 15 + Records, Biographical, Wife and Family,1967-1972 + + + + + + 291 + 16 + Records, Biographical, Illnesses and Injury,1967-1972 + + + + + + 291 + 17 + Records, Biographical, 1966 and Before,1966 + + + + + + 291 + 18 + Records, Biographical, 1967,1967 + + + + + + 291 + 19 + Records, Biographical, 1968,1968 + + + + + + 291 + 20 + Records, Biographical, 1969,1969 + + + + + + 291 + 21 + Records, Biographical, 1970,1970 + + + + + + 291 + 22 + Records, Biographical, 1971,1971 + + + + + + 291 + 23 + Records, Agriculture, General,1967-1972 + + + + + + 291 + 24 + Records, Agriculture, Feed Grain Farm Bill,1967-1972 + + + + + + 291 + 25 + Records, Auto Industry, General,1967-1972 + + + + + + 291 + 26 + Records, Auto Industry, Ford Engine Emissions Problem,1967-1972 + + + + + + 291 + 27 + Records, Auto Industry, U.S. -Canadian Auto Trade Agreement,1967-1972 + + + + + + 291 + 28 + Records, Auto Industry, Auto Safety,1967-1972 + + + + + + 291 + 29 + Records, Auto Industry, Anti-Trust,1967-1972 + + + + + + 291 + 30 + Records, Auto Industry, Automotive Pollution,1967-1972 + + + + + + 291 + 31 + Records, Auto Industry, Electric Car,1967-1972 + + + + + + 291 + 32 + Records, Auto Industry, Auto Excise Tax,1967-1972 + + + + + + 291 + 33 + Records, Civil Rights, General,1967-1972 + + + + + + 291 + 34 + Records, Civil Rights, Angela Davis,1967-1972 + + + + + + 291 + 35 + Records, Civil Rights, Blacks in U. S. and Michigan,1967-1972 + + + + + + 291 + 36 + Records, Civil Rights, Minority Groups, Spanish Speaking,1967-1972 + + + + + + 291 + 37 + Records, Civil Rights, Ethnic Groups,1967-1972 + + + + + + 291 + 38 + Records, Civil Rights, Columbus Day,1967-1972 + + + + + + 291 + 39 + Records, Civil Rights, EEOC,1967-1972 + + + + + + 291 + 40 + Records, Civil Rights, Indians,1967-1972 + + + + + + 291 + 41 + Records, Civil Rights, Integration of Education,1967-1972 + + + + + + 291 + 42 + Records, Civil Rights, Integration, Clubs,1967-1972 + + + + + + 291 + 43 + Records, Civil Rights, NAACP,1967-1972 + + + + + + 291 + 44 + Records, Civil Rights, Open Occupancy,1967-1972 + + + + + + 291 + 45 + Records, Civil Rights, Integration, Hospitals,1967-1972 + + + + + + 291 + 46 + Records, Civil Rights, Voting Rights,1967-1972 + + + + + + 291 + 47 + Records, Civil Rights, Protest,1967-1972 + + + + + + 291 + 48 + Records, Civil Rights, White Panthers,1967-1972 + + + + + + 291 + 49 + Records, Civil Rights, Women's Rights,1967-1972 + + + + + + 291 + 50 + Records, Communications, Letters,1967-1972 + + + + + + 291 + 51 + Records, Communications, Editorials on RPG (Griffin),1967-1972 + + + + + + 291 + 52 + Records, Communications, Classification of Government Documents,1967-1972 + + + + + + 291 + 53 + Records, Communications, Press,1967-1972 + + + + + + 291 + 54 + Records, Communications, TV, Radio,1967-1972 + + + + + + 291 + 55 + Records, Communications, Sports TV Blackouts,1967-1972 + + + + + + 291 + 56 + Records, Communications, Printed Matter,1967-1972 + + + + + + 291 + 57 + Records, Congress, Voting Philosophy,1967-1972 + + + + + + 291 + 58 + Records, Congress, Cloture,1967-1972 + + + + + + 291 + 59 + Records, Congress, Legislation,1967-1972 + + + + + + 291 + 59 + Records, Congress, Ethics,1967-1972 + + + + + + 291 + 60 + Records, Congress, Nader Project,1967-1972 + + + + + + 291 + 61 + Records, Congress, General Congress,1967-1972 + + + + + + 291 + 62 + Records, Congress, Republican Congress,1967-1972 + + + + + + 291 + 63 + Records,Congress, Republicans,1967-1972 + + + + + + 292 + 1 + Records,Congress, Senate,1967-1972 + + + + + + 292 + 2 + Records,Congress, Staff,1967-1972 + + + + + + 292 + 3 + Records,Congress, Committee Appointments,1967-1972 + + + + + + 292 + 4 + Records,Courts, General Courts,1967-1972 + + + + + + 292 + 5 + Records,Courts, Haynsworth - 5 folders,1967-1972 + + + + + + 292 + 6 + Records,Courts, Haynsworth - 5 folders,1967-1972 + + + + + + 292 + 7 + Records,Courts, Haynsworth - 5 folders,1967-1972 + + + + + + 292 + 8 + Records,Courts, Haynsworth - 5 folders,1967-1972 + + + + + + 292 + 9 + Records,Courts, Haynsworth - 5 folders,1967-1972 + + + + + + 292 + 10 + Records,Courts, Carswell,1967-1972 + + + + + + 292 + 11 + Records,Courts, Harvey Appointment,1967-1972 + + + + + + 292 + 12 + Records,Courts, Engel Appointment,1967-1972 + + + + + + 292 + 13 + Records,Courts, General Courts,1967-1972 + + + + + + 292 + 14 + Records,Courts, Nominations to Federal Courts, Charles Joiner,1967-1972 + + + + + + 292 + 15 + Records,Courts, Nominations to Federal Courts, W. Wallace Kent,1967-1972 + + + + + + 292 + 16 + Records,Courts, Nominations to Federal Courts, John Feikens,1967-1972 + + + + + + 292 + 17 + Records,Courts, Nominations to Federal Courts, Robert DeMascio,1967-1972 + + + + + + 292 + 18 + Records,Courts, Nominations to Federal Courts, Philip Pratt,1967-1972 + + + + + + 292 + 19 + Records,Courts, Fortas - 2 folders,1967-1972 + + + + + + 292 + 20 + Records,Courts, Fortas - 2 folders,1967-1972 + + + + + + 292 + 21 + Records,Courts, Supreme Court,1967-1972 + + + + + + 292 + 22 + Records,Courts, Cornelia Kennedy,1967-1972 + + + + + + 292 + 23 + Records,Courts, Urging Griffiths and Kennedy to Supreme Court,1967-1972 + + + + + + 292 + 24 + Records,Courts, Blackmun - 2 folders,1967-1972 + + + + + + 292 + 25 + Records,Courts, Blackmun - 2 folders,1967-1972 + + + + + + 292 + 26 + Records,Courts, Douglas Impeachment,1967-1972 + + + + + + 292 + 27 + Records,Courts, Rehnquist,1967-1972 + + + + + + 292 + 28 + Records,Courts, Judicial Reform,1967-1972 + + + + + + 292 + 29 + Records,Courts, Guy VanDam,1967-1972 + + + + + + 292 + 30 + Records,Courts, Warren Resignation,1967-1972 + + + + + + 292 + 31 + Records,Courts, Financial Disclosure,1967-1972 + + + + + + 292 + 32 + Records,Courts, Law and Order,1967-1972 + + + + + + 292 + 33 + Records,Courts, Pornography,1967-1972 + + + + + + 292 + 34 + Records,Courts, Compensation,1967-1972 + + + + + + 292 + 35 + Records,Courts, Bombing of Capital,1967-1972 + + + + + + 292 + 36 + Records,Courts, Campus Disorders,1967-1972 + + + + + + 292 + 37 + Records,Courts, Disorders, Radical,1967-1972 + + + + + + 292 + 38 + Records,Crime, Gun Control,1967-1972 + + + + + + 292 + 39 + Records,Crime, FBI and J. Edgar Hoover,1967-1972 + + + + + + 292 + 40 + Records,Crime, National Rifle Association and Gun Control,1967-1972 + + + + + + 292 + 41 + Records,Economy, General - 2 folders,1967-1972 + + + + + + 292 + 42 + Records,Economy, General - 2 folders,1967-1972 + + + + + + 292 + 43 + Records,Economy, Consumer Affairs,1967-1972 + + + + + + 292 + 44 + Records,Economy, Inflation,1967-1972 + + + + + + 292 + 45 + Records,Economy, Inflation and Wartime Economy,1967-1972 + + + + + + 292 + 46 + Records,Economy, Labor/HEW Appropriations Veto,1967-1972 + + + + + + 292 + 47 + Records,Economy, Oil Imports,1967-1972 + + + + + + 292 + 48 + Records,Economy, Minimum Wage,1967-1972 + + + + + + 292 + 49 + Records,Economy, Poverty and Office of Economic Opportunity,1967-1972 + + + + + + 292 + 50 + Records,Economy, Trade,1967-1972 + + + + + + 292 + 51 + Records,Economy, Michigan Tourism,1967-1972 + + + + + + 292 + 52 + Records,Economy, Unemployment and Compensation,1967-1972 + + + + + + 292 + 53 + Records,Economy, UGLRC (Upper Great Lakes Regional Commission),1967-1972 + + + + + + 292 + 54 + Records,Economy, Wage Price Policies,1967-1972 + + + + + + 292 + 55 + Records,Economy, Tax, General,1967-1972 + + + + + + 292 + 56 + Records,Economy, Educational Tax Credits,1967-1972 + + + + + + 292 + 57 + Records,Economy, Tax Reform,1967-1972 + + + + + + 292 + 58 + Records,Economy, Oil Depletion Allowances,1967-1972 + + + + + + 292 + 59 + Records,Economy, Investment Tax Credit,1967-1972 + + + + + + 292 + 60 + Records,Economy, Grants,1967-1972 + + + + + + 292 + 61 + Records,Economy, IRS Data Service, Detroit ,1967-1972 + + + + + + 292 + 62 + Records,Economy, Lockheed Loans,1967-1972 + + + + + + 292 + 63 + Records,Economy, Truth in Lending,1967-1972 + + + + + + 292 + 64 + Records,Economy, Tax Exempt Bonds,1967-1972 + + + + + + 292 + 65 + Records,Economy, Busing, General – 6 folders,1967-1972 + + + + + + 292 + 66 + Records,Economy, Busing, Oct. 1972 Legislation,1972 + + + + + + 292 + 67 + Records,Economy, Busing, Statutory Amendment Introduced,1967-1972 + + + + + + 292 + 68 + Records,Economy, Busing, Legislative Amendment,1967-1972 + + + + + + 292 + 69 + Records,Economy, Busing, Ferndale Desegregation,1967-1972 + + + + + + 292 + 70 + Records,Economy, Busing, Kalamazoo,1967-1972 + + + + + + 292 + 71 + Records,Economy, Busing, Constitutional Amendment,1967-1972 + + + + + + 292 + 72 + Records,Economy, Busing, Legislative Amendment,1967-1972 + + + + + + 292 + 73 + Records,Economy, Community Colleges,1967-1972 + + + + + + 292 + 74 + Records,Economy, Educators,1967-1972 + + + + + + 292 + 75 + Records,Economy, Educators, Teachers Corps,1967-1972 + + + + + + 292 + 76 + Records,Economy, Prayers in School,1967-1972 + + + + + + 292 + 77 + Records,Economy, Colleges and Universities,1967-1972 + + + + + + 292 + 78 + Records,Elections, Electoral College, Direct Popular Election,1967-1972 + + + + + + 292 + 79 + Records,Elections, Campaign Spending,1967-1972 + + + + + + 292 + 80 + Records,Elections, Griffin for Vice-President ,1967-1972 + + + + + + 292 + 81 + Records,Elections, Eighteen Year Old Vote,1967-1972 + + + + + + 292 + 82 + Records,Elections, Ripon Society,1967-1972 + + + + + + 292 + 83 + Records,Elections, Democrats,1967-1972 + + + + + + 292 + 84 + Records,Elections, Republican Party, Michigan,1967-1972 + + + + + + 292 + 85 + Records,Elections, Republicans Presidential Nomination, 1968,1968 + + + + + + 292 + 86 + Records,Elections, Reapportionment 1968,1968 + + + + + + 292 + 87 + Records,Elections, Campaign Clippings, 1970,1970 + + + + + + 292 + 88 + Records,Environment, General,1967-1972 + + + + + + 292 + 89 + Records,Environment, Animal Protection and Control,1967-1972 + + + + + + 292 + 90 + Records,Environment, Alaska Pipeline,1967-1972 + + + + + + 292 + 91 + Records,Environment, Ecology Role for VISTA,1967-1972 + + + + + + 292 + 92 + Records,Environment, Isle Royale National Park,1967-1972 + + + + + + 292 + 93 + Records,Environment, Pollution,1967-1972 + + + + + + 292 + 94 + Records,Environment, Pollution, American Road,1967-1972 + + + + + + 292 + 95 + Records,Environment, Michigan=s Rivers and Harbors,1967-1972 + + + + + + 292 + 96 + Records,Environment, Water Pollution,1967-1972 + + + + + + 292 + 97 + Records,Environment, Phosphates,1967-1972 + + + + + + 292 + 98 + Records,Environment, Coho Salmon,1967-1972 + + + + + + 292 + 99 + Records,Environment, Pointe Mouille Game Area,1967-1972 + + + + + + 292 + 100 + Records,Environment, Atomic Energy Commission Reactor,1967-1972 + + + + + + 292 + 101 + Records,Environment, Alewife Fish,1967-1972 + + + + + + 292 + 102 + Records,Environment, Conservation,1967-1972 + + + + + + 292 + 103 + Records,Environment, SST,1967-1972 + + + + + + 292 + 104 + Records,Environment, Reserve Mining Case, Lake Superior Pollution,1967-1972 + + + + + + 292 + 105 + Records,Foreign Affairs, Foreign Policy, general,1967-1972 + + + + + + 292 + 106 + Records,Foreign Affairs, East-West Relations and Trade,1967-1972 + + + + + + 292 + 107 + Records,Foreign Affairs, Foreign Economic Aid,1967-1972 + + + + + + 292 + 108 + Records,Foreign Affairs, Immigration,1967-1972 + + + + + + 292 + 109 + Records,Foreign Affairs, Territorial Waters,1967-1972 + + + + + + 292 + 110 + Records,Foreign Affairs, United Nations,1967-1972 + + + + + + 292 + 111 + Records,Foreign Affairs, UNESCO,1967-1972 + + + + + + 292 + 112 + Records,Foreign Affairs, China,1967-1972 + + + + + + 292 + 113 + Records,Foreign Affairs, China, Nationalist,1967-1972 + + + + + + 292 + 114 + Records,Foreign Affairs, Middle East,1967-1972 + + + + + + 293 + 1 + Records,Vietnam War, RPG (Griffin)=s Amendment to Cooper-Church,1967-1972 + + + + + + 293 + 2 + Records,Vietnam War, South Vietnam,1967-1972 + + + + + + 293 + 3 + Records,Vietnam War, Vietnam Dissent,1967-1972 + + + + + + 293 + 4 + Records,Vietnam War, Project Xuan Thuy,1967-1972 + + + + + + 293 + 5 + Records,Vietnam War, Vietnam Withdrawal,1967-1972 + + + + + + 293 + 6 + Records,Vietnam War, Trip to Vietnam,1967-1972 + + + + + + 293 + 7 + Records,Vietnam War, POWs,1967-1972 + + + + + + 293 + 8 + Records,Vietnam War, Cambodia,1967-1972 + + + + + + 293 + 9 + Records,Vietnam War, Laos,1967-1972 + + + + + + 293 + 10 + Records,Foreign Affairs, USSR Jews,1967-1972 + + + + + + 293 + 11 + Records,Foreign Affairs, Nixon Doctrine,1967-1972 + + + + + + 293 + 12 + Records,Foreign Affairs, Cuba,1967-1972 + + + + + + 293 + 13 + Records,Foreign Affairs, Prisoners of War,1967-1972 + + + + + + 293 + 14 + Records,Foreign Affairs, France,1967-1972 + + + + + + 293 + 15 + Records,Military Affairs (non-Vietnam), General,1967-1972 + + + + + + 293 + 16 + Records,Military Affairs (non-Vietnam), Academy Appointments,1967-1972 + + + + + + 293 + 17 + Records,Military Affairs (non-Vietnam), Draft,1967-1972 + + + + + + 293 + 18 + Records,Military Affairs (non-Vietnam), Kincheloe Air Force Base,1967-1972 + + + + + + 293 + 19 + Records,Military Affairs (non-Vietnam), Reserves,1967-1972 + + + + + + 293 + 20 + Records,Military Affairs (non-Vietnam), National Guard,1967-1972 + + + + + + 293 + 21 + Records,Military Affairs (non-Vietnam), Disarmament, SALT,1967-1972 + + + + + + 293 + 22 + Records,Military Affairs (non-Vietnam), Poison Gas,1967-1972 + + + + + + 293 + 23 + Records,Military Affairs (non-Vietnam), Draft of Police and Firemen,1967-1972 + + + + + + 293 + 24 + Records,Military Affairs (non-Vietnam), Vietnam Duty of Ontonagon,1967-1972 + + + + + + 293 + 25 + Records,Military Affairs (non-Vietnam), Volunteer Army,1967-1972 + + + + + + 293 + 26 + Records,Military Affairs (non-Vietnam), Pueblo,1967-1972 + + + + + + 293 + 27 + Records,Military Affairs (non-Vietnam), Emergency Broadcast System,1967-1972 + + + + + + 293 + 28 + Records,Military Affairs (non-Vietnam), Treaties,1967-1972 + + + + + + 293 + 29 + Records,Military Affairs (non-Vietnam), Coast Guard,1967-1972 + + + + + + 293 + 30 + Records,Military Affairs (non-Vietnam), Armed Forces,1967-1972 + + + + + + 293 + 31 + Records,Military Affairs (non-Vietnam), NATO,1967-1972 + + + + + + 293 + 32 + Records,Military Affairs (non-Vietnam), Missile Program,1967-1972 + + + + + + 293 + 33 + Records,Great Lakes, Seaway,1967-1972 + + + + + + 293 + 34 + Records,Great Lakes, Sleeping Bear Dunes,1967-1972 + + + + + + 293 + 35 + Records,Great Lakes, Sault Locks, Army Corps of Engineers,1967-1972 + + + + + + 293 + 36 + Records,Great Lakes, Pollution,1967-1972 + + + + + + 293 + 37 + Records,Great Lakes, RPG (Griffin)=s Six-Point Cleanup,1967-1972 + + + + + + 293 + 38 + Records,Great Lakes, Lamprey Eel,1967-1972 + + + + + + 293 + 39 + Records,Great Lakes, Upper Great Lakes Regional Commission ,1967-1972 + + + + + + 293 + 40 + Records,Government Operations, Federal Employees,1967-1972 + + + + + + 293 + 41 + Records,Government Operations, Federal Appointments,1967-1972 + + + + + + 293 + 42 + Records,Government Operations, Federal Agencies,1967-1972 + + + + + + 293 + 43 + Records,Government Operations, Credibility Gap,1967-1972 + + + + + + 293 + 44 + Records,Government Operations, Cabinet Appointments,1967-1972 + + + + + + 293 + 45 + Records,Government Operations, Intergovernmental Relations,1967-1972 + + + + + + 293 + 46 + Records,Government Operations, Government Reorganization,1967-1972 + + + + + + 293 + 47 + Records,Government Operations, McNamara Federal Office Building,1967-1972 + + + + + + 293 + 48 + Records,Government Operations, Post Office, Franking,1967-1972 + + + + + + 293 + 49 + Records,Government Operations, Finance Committee,1967-1972 + + + + + + 293 + 50 + Records,Government Operations, Weather Bureau,1967-1972 + + + + + + 293 + 51 + Records,Government Operations, State of the Union,1967-1972 + + + + + + 293 + 52 + Records,Government Operations, Metric System,1967-1972 + + + + + + 293 + 53 + Records,Government Operations, Post Office,1967-1972 + + + + + + 293 + 54 + Records,Government Operations, Postmasters,1967-1972 + + + + + + 293 + 55 + Records,Government Operations, National Debt and Debt Ceiling,1967-1972 + + + + + + 293 + 56 + Records,Health, Abortion,1967-1972 + + + + + + 293 + 57 + Records,Health, NARCO,1967-1972 + + + + + + 293 + 58 + Records,Health, Drugs (general),1967-1972 + + + + + + 293 + 59 + Records,Health, Health Care (general),1967-1972 + + + + + + 293 + 60 + Records,Health, Retardation,1967-1972 + + + + + + 293 + 61 + Records,Health, Drugs, Alcohol,1967-1972 + + + + + + 293 + 62 + Records,Health, Drugstores,1967-1972 + + + + + + 293 + 63 + Records,Health, Hospitals,1967-1972 + + + + + + 293 + 64 + Records,Health, Hospitals, Detroit Drug Center,1967-1972 + + + + + + 293 + 65 + Records,Health, Medicare, Medicaid,1967-1972 + + + + + + 293 + 66 + Records,Health, Smoking,1967-1972 + + + + + + 293 + 67 + Records,Health, Cyclamates,1967-1972 + + + + + + 293 + 68 + Records,Housing, General,1967-1972 + + + + + + 293 + 69 + Records,Housing, Urban Affairs, urban Coalition,1967-1972 + + + + + + 293 + 70 + Records,Housing, Rent Supplements,1967-1972 + + + + + + 293 + 71 + Records,Housing, Revenue Sharing,1967-1972 + + + + + + 293 + 72 + Records,Labor, B. Kennedy on Landrum-Griffin,1967-1972 + + + + + + 293 + 73 + Records,Labor, Industry Wide Bargaining,1967-1972 + + + + + + 293 + 74 + Records,Labor, Strikes, Compulsory Arbitration General,1967-1972 + + + + + + 293 + 75 + Records,Labor, Landrum-Griffin,1967-1972 + + + + + + 293 + 76 + Records,Labor, Job Corps,1967-1972 + + + + + + 293 + 77 + Records,Labor, Strikes,1967-1972 + + + + + + 293 + 78 + Records,Labor, Public Employees, Strikes,1967-1972 + + + + + + 293 + 79 + Records,Labor, Newspaper, Strikes,1967-1972 + + + + + + 293 + 80 + Records,Labor, Labor Court and NLRB ,1967-1972 + + + + + + 294 + 1 + Records,Labor, Mine Safety,1966, 1967-1972, 1973-1976 + + + + + + 294 + 2 + Records,Labor, Detroit Labor Day Ceremonies,1966, 1967-1972, 1973-1976 + + + + + + 294 + 3 + Records,Labor, Unions, Migratory Farmers,1966, 1967-1972, 1973-1976 + + + + + + 294 + 4 + Records,Personal Philosophy, Philosophy,1966, 1967-1972, 1973-1976 + + + + + + 294 + 5 + Records,Personal Philosophy, Freedom,1966, 1967-1972, 1973-1976 + + + + + + 294 + 6 + Records,Personal Philosophy, Freedom of Speech,1966, 1967-1972, 1973-1976 + + + + + + 294 + 7 + Records,Personal Philosophy, Religion,1966, 1967-1972, 1973-1976 + + + + + + 294 + 8 + Records,Personalities, Newsmen,1966, 1967-1972, 1973-1976 + + + + + + 294 + 9 + Records,Personalities, Press on RPG,1966, 1967-1972, 1973-1976 + + + + + + 294 + 10 + Records,Personalities, Griffin on Athletes, AAU-NCAA Feud,1966, 1967-1972, 1973-1976 + + + + + + 294 + 11 + Records,Personalities, Griffin on Detroit Lions,1966, 1967-1972, 1973-1976 + + + + + + 294 + 12 + Records,Personalities, Griffin on Detroit Tigers,1966, 1967-1972, 1973-1976 + + + + + + 294 + 13 + Records,Personalities, Griffin on George Dondero (former Congressman),1966, 1967-1972, 1973-1976 + + + + + + 294 + 14 + Records,Personalities, Griffin on Charles DeGaulle,1966, 1967-1972, 1973-1976 + + + + + + 294 + 15 + Records,Personalities, Griffin on Everett Dirksen,1966, 1967-1972, 1973-1976 + + + + + + 294 + 16 + Records,Personalities, Griffin on Eisenhower,1966, 1967-1972, 1973-1976 + + + + + + 294 + 17 + Records,Personalities, Griffin on Famous Artists,1966, 1967-1972, 1973-1976 + + + + + + 294 + 18 + Records,Labor, Transportation Strikes,1966, 1967-1972, 1973-1976 + + + + + + 294 + 19 + Records,Labor, Manpower Development and Training Act,1966, 1967-1972, 1973-1976 + + + + + + 294 + 20 + Records,Labor, Pensions,1966, 1967-1972, 1973-1976 + + + + + + 294 + 21 + Records,Labor, Public Service Jobs,1966, 1967-1972, 1973-1976 + + + + + + 294 + 22 + Records,Labor, Right to Work,1966, 1967-1972, 1973-1976 + + + + + + 294 + 23 + Records,Labor, United Mine Workers Election,1966, 1967-1972, 1973-1976 + + + + + + 294 + 24 + Records,Personalities, Griffin on Congressman Jerry Ford,1966, 1967-1972, 1973-1976 + + + + + + 294 + 25 + Records,Personalities, Griffin on Orville Freeman,1966, 1967-1972, 1973-1976 + + + + + + 294 + 26 + Records,Personalities, Griffin on Charles Goodell (NY),1966, 1967-1972, 1973-1976 + + + + + + 294 + 27 + Records,Personalities, Griffin on Jimmy Hoffa,1966, 1967-1972, 1973-1976 + + + + + + 294 + 28 + Records,Personalities, Griffin on Clare Hoffman,1966, 1967-1972, 1973-1976 + + + + + + 294 + 29 + Records,Personalities, Griffin on J. Edgar Hoover,1966, 1967-1972, 1973-1976 + + + + + + 294 + 30 + Records,Personalities, Griffin on Duane Hackney (Flint Airman),1966, 1967-1972, 1973-1976 + + + + + + 294 + 31 + Records,Personalities, Griffin on Walter Hagen,1966, 1967-1972, 1973-1976 + + + + + + 294 + 32 + Records,Personalities, Griffin on Lou Gordon,1966, 1967-1972, 1973-1976 + + + + + + 294 + 33 + Records,Personalities, Griffin on Senator Hart,1966, 1967-1972, 1973-1976 + + + + + + 294 + 34 + Records,Personalities, Griffin on Lyndon Johnson,1966, 1967-1972, 1973-1976 + + + + + + 294 + 35 + Records,Personalities, Griffin on Dwight Johnson (Medal of Honor),1966, 1967-1972, 1973-1976 + + + + + + 294 + 36 + Records,Personalities, Griffin on Frank Kelley,1966, 1967-1972, 1973-1976 + + + + + + 294 + 37 + Records,Personalities, Griffin on Martin Luther King,1966, 1967-1972, 1973-1976 + + + + + + 294 + 38 + Records,Personalities, Griffin on Nixon,1966, 1967-1972, 1973-1976 + + + + + + 294 + 39 + Records,Personalities, Griffin on Rockefeller,1966, 1967-1972, 1973-1976 + + + + + + 294 + 40 + Records,Personalities, Griffin on Romney,1966, 1967-1972, 1973-1976 + + + + + + 294 + 41 + Records,Personalities, Griffin on Robert Kennedy,1966, 1967-1972, 1973-1976 + + + + + + 294 + 42 + Records,Personalities, Griffin on Riegle,1966, 1967-1972, 1973-1976 + + + + + + 294 + 43 + Records,Personalities, Griffin on Simokaitis,1966, 1967-1972, 1973-1976 + + + + + + 294 + 44 + Records,Personalities, Griffin on Sgt. John Wolfe,1966, 1967-1972, 1973-1976 + + + + + + 294 + 45 + Records,Personalities, Griffin on George Wallace,1966, 1967-1972, 1973-1976 + + + + + + 294 + 46 + Records,Personalities, Griffin on G. Mennen Williams,1966, 1967-1972, 1973-1976 + + + + + + 294 + 47 + Records,Personalities, Griffin on Leonard Woodcock,1966, 1967-1972, 1973-1976 + + + + + + 294 + 48 + Records,Veterans Affairs,1966, 1967-1972, 1973-1976 + + + + + + 294 + 49 + Records,Disabled Americans Veterans,1966, 1967-1972, 1973-1976 + + + + + + 294 + 50 + Records,Jobs for Veterans,1966, 1967-1972, 1973-1976 + + + + + + 294 + 51 + Records,Welfare, General,1966, 1967-1972, 1973-1976 + + + + + + 294 + 52 + Records,Welfare, Child Adoption,1966, 1967-1972, 1973-1976 + + + + + + 294 + 53 + Records,Welfare, Foster Children,1966, 1967-1972, 1973-1976 + + + + + + 294 + 54 + Records,Welfare, Child Development Legislation,1966, 1967-1972, 1973-1976 + + + + + + 294 + 55 + Records,Welfare, Casework Related Stories,1966, 1967-1972, 1973-1976 + + + + + + 294 + 56 + Records,Welfare, Human Investment Act,1966, 1967-1972, 1973-1976 + + + + + + 294 + 57 + Records,Welfare, Guaranteed Income,1966, 1967-1972, 1973-1976 + + + + + + 294 + 58 + Records,Welfare, Opportunity Crusade,1966, 1967-1972, 1973-1976 + + + + + + 294 + 59 + Records,Welfare, Summer Lunch Program,1966, 1967-1972, 1973-1976 + + + + + + 294 + 60 + Records,Youth, Youth Employment,1966, 1967-1972, 1973-1976 + + + + + + 294 + 61 + Records,Elderly,1966, 1967-1972, 1973-1976 + + + + + + 294 + 62 + Records,Social Security,1966, 1967-1972, 1973-1976 + + + + + + 294 + 63 + Records,Senior Citizens, Reduced Air Fares,1966, 1967-1972, 1973-1976 + + + + + + 294 + 64 + Records,Great Lakes, St. Mary=s River Channel,1966, 1967-1972, 1973-1976 + + + + + + 294 + 65 + Records,Great Lakes, Extended Shipping Season,1966, 1967-1972, 1973-1976 + + + + + + 294 + 66 + Records,Great Lakes, St. Lawrence Seaway,1966, 1967-1972, 1973-1976 + + + + + + 294 + 67 + Records,Transportation,1966, 1967-1972, 1973-1976 + + + + + + 294 + 68 + Records,Transportation, Airlines,1966, 1967-1972, 1973-1976 + + + + + + 294 + 69 + Records,Transportation, Mass Transit,1966, 1967-1972, 1973-1976 + + + + + + 294 + 70 + Records,Transportation, Mackinac Railcar Ferry,1966, 1967-1972, 1973-1976 + + + + + + 294 + 71 + Records,Transportation, Ferry Service,1966, 1967-1972, 1973-1976 + + + + + + 294 + 72 + Records,Transportation, Travel,1966, 1967-1972, 1973-1976 + + + + + + 294 + 73 + Records,Transportation, Railroads,1966, 1967-1972, 1973-1976 + + + + + + 294 + 74 + Records,News Shield,1966, 1967-1972, 1973-1976 + + + + + + 294 + 75 + Records,Griffin Amendment to the Constitution, Election of VP,1966, 1967-1972, 1973-1976 + + + + + + 294 + 76 + Records,Business, Free Enterprise,1966, 1967-1972, 1973-1976 + + + + + + 294 + 77 + Records,Spalding Stamp,1966, 1967-1972, 1973-1976 + + + + + + 294 + 78 + Records,Presidential Addresses and Reaction,1966, 1967-1972, 1973-1976 + + + + + + 294 + 79 + Records,Consumerism,1966, 1967-1972, 1973-1976 + + + + + + 294 + 80 + Records,Auto Industry,1966, 1967-1972, 1973-1976 + + + + + + 294 + 81 + Records,Abortion,1966, 1967-1972, 1973-1976 + + + + + + 294 + 82 + Records,Index,1966, 1967-1972, 1973-1976 + + + + + + 294 + 83 + Records,Auto Industry, Ford Engine Emissions Problems,1966, 1967-1972, 1973-1976 + + + + + + 294 + 84 + Records,Black Economic Status and Business,1966, 1967-1972, 1973-1976 + + + + + + 294 + 85 + Records,Ethnic Groups, General Civil Rights,1966, 1967-1972, 1973-1976 + + + + + + 294 + 86 + Records,Health Management, Indian, Michigan Civil Rights,1966, 1967-1972, 1973-1976 + + + + + + 294 + 87 + Records,Indians, Michigan Civil Rights,1966, 1967-1972, 1973-1976 + + + + + + 294 + 88 + Records,Cambodia Broadcast Project,1966, 1967-1972, 1973-1976 + + + + + + 294 + 89 + Records,Crime,1966, 1967-1972, 1973-1976 + + + + + + 294 + 90 + Records,Michigan Credit Union,1966, 1967-1972, 1973-1976 + + + + + + 294 + 91 + Records,Unemployment,1966, 1967-1972, 1973-1976 + + + + + + 294 + 92 + Records,Busing, General,1966, 1967-1972, 1973-1976 + + + + + + 294 + 93 + Records,Busing, NAG,1966, 1967-1972, 1973-1976 + + + + + + 294 + 94 + Records,Parochial Schools,1966, 1967-1972, 1973-1976 + + + + + + 294 + 95 + Records,Party Republican (Michigan Elections),1966, 1967-1972, 1973-1976 + + + + + + 294 + 96 + Records,Republican Convention (Michigan Elections),1966, 1967-1972, 1973-1976 + + + + + + 294 + 97 + Records,Student Environment Confederation,1966, 1967-1972, 1973-1976 + + + + + + 294 + 98 + Records,Isle Royale,1966, 1967-1972, 1973-1976 + + + + + + 294 + 99 + Records,Great Lakes, Corps of Engineers Shipping Season,1966, 1967-1972, 1973-1976 + + + + + + 294 + 100 + Records,Reserve Mining-4 folders,1966, 1967-1972, 1973-1976 + + + + + + 294 + 101 + Records,Reserve Mining-4 folders,1966, 1967-1972, 1973-1976 + + + + + + 294 + 102 + Records,Reserve Mining-4 folders,1966, 1967-1972, 1973-1976 + + + + + + 294 + 103 + Records,Reserve Mining-4 folders,1966, 1967-1972, 1973-1976 + + + + + + 294 + 104 + Records,Great Lakes,1966, 1967-1972, 1973-1976 + + + + + + 294 + 105 + Records,Great Lakes, Basin Commission,1966, 1967-1972, 1973-1976 + + + + + + 294 + 106 + Records,Upper Great Lakes Region D Committee,1966, 1967-1972, 1973-1976 + + + + + + 294 + 107 + Records,Federal Outlays in Michigan,1966, 1967-1972, 1973-1976 + + + + + + 294 + 108 + Records,Abortion,1966, 1967-1972, 1973-1976 + + + + + + 294 + 109 + Records,Drugs, General,1966, 1967-1972, 1973-1976 + + + + + + 294 + 110 + Records,Hospitals, Detroit Drug Center,1966, 1967-1972, 1973-1976 + + + + + + 294 + 111 + Records,Waterways,1966, 1967-1972, 1973-1976 + + + + + + 294 + 112 + Records,Auto Insurance – 4 folders,1966, 1967-1972, 1973-1976 + + + + + + 294 + 113 + Records,Auto Insurance – 4 folders,1966, 1967-1972, 1973-1976 + + + + + + 294 + 114 + Records,Auto Insurance – 4 folders,1966, 1967-1972, 1973-1976 + + + + + + 294 + 115 + Records,Auto Insurance – 4 folders,1966, 1967-1972, 1973-1976 + + + + + + 294 + 116 + Records,Leased Cars,1966, 1967-1972, 1973-1976 + + + + + + 294 + 117 + Records,Mackinac Car Ferry,1966, 1967-1972, 1973-1976 + + + + + + 294 + 118 + Records,Studded Car Tires,1966, 1967-1972, 1973-1976 + + + + + + 294 + 119 + Records,Nicaraguan Affair,1966, 1967-1972, 1973-1976 + + + + + + 294 + 120 + Records,Project Xuan Thuy,1966, 1967-1972, 1973-1976 + + + + + + 294 + 121 + Records,Indian Affairs,1966, 1967-1972, 1973-1976 + + + + + + 294 + 122 + Records,Alcoholism,1966, 1967-1972, 1973-1976 + + + + + + 294 + 123 + Records,Drafts of Letters,1966, 1967-1972, 1973-1976 + + + + + + 294 + 124 + Records,Drafts of Statements,1966, 1967-1972, 1973-1976 + + + + + + 294 + 125 + Records,Griffin Legislation,1966, 1967-1972, 1973-1976 + + + + + + 294 + 126 + Records,Labor Legislation,1966, 1967-1972, 1973-1976 + + + + + + 294 + 127 + Records,Focus Hope,1966, 1967-1972, 1973-1976 + + + + + + 295 + 1 + Records,Speeches-2 folders,1966-1972 + + + + + + 295 + 2 + Records,Speeches-2 folders,1966-1972 + + + + + + 295 + 3 + Records,Lincoln Day,1966-1972 + + + + + + 295 + 4 + Records,Speech File, Good Quotes,1966-1972 + + + + + + 295 + 5 + Records,Indians, Department of Housing and Urban Development,1966-1972 + + + + + + 295 + 6 + Records,Bureau of Indian Affairs, Law, and Order,1966-1972 + + + + + + 295 + 7 + Records,Indians, Health,1966-1972 + + + + + + 295 + 8 + Records,Michigan Indian Health Board,1966-1972 + + + + + + 295 + 9 + Records,Indians, Small Business Administration,1966-1972 + + + + + + 295 + 10 + Records,UAW Leadership Against Griffin, 9/8/72,1972 + + + + + + 295 + 11 + Records,UAW Cobo Hall Speech, 9/6/72,1972 + + + + + + 295 + 12 + Records,Griffin Knocks Kelly Quotation, 8/31/72,1972 + + + + + + 295 + 13 + Records,Griffin Heartened by St. Joseph Reception, 8/31/72,1972 + + + + + + 295 + 14 + Records,Eagleton Rouses State Democrats for McGovern, 8/28/72,1972 + + + + + + 295 + 15 + Records,Black Caucus Warns Kelly, 8/28/72,1972 + + + + + + 295 + 16 + Records,Blacks Prod Kelly on Busing, 8/28/72,1972 + + + + + + 295 + 17 + Records,Preview of Bi-lingual Studies, 8/28/72,1972 + + + + + + 295 + 18 + Records,Senator Praises UAW, 7/5/72,1972 + + + + + + 295 + 19 + Records,State Democrat Stalwarts Now Has Beens, 7/9/72,1972 + + + + + + 295 + 20 + Records,Griffin Sites Bill to Protest Pensions, 6/29/72,1972 + + + + + + 295 + 21 + Records,Where it is Worst, 6/29/72,1972 + + + + + + 295 + 22 + Records,Environment Cleanup Plan, 6/28/72,1972 + + + + + + 295 + 23 + Records,Griffin Prospects Brightening, 6/28/72,1972 + + + + + + 295 + 24 + Records,Case for Reelecting Griffin, 6/19/72,1972 + + + + + + 295 + 25 + Records,Kelly Turns Another Flip Flop, 6/13/72,1972 + + + + + + 295 + 26 + Records,Kelly Signs Petition Urging Pot Amendment, 6/12/72,1972 + + + + + + 295 + 27 + Records,And the Model T Kept Puttering Along, 6/1/72,1972 + + + + + + 295 + 28 + Records,Model T Battles a 72, 5/29/72,1972 + + + + + + 295 + 29 + Records,What Wallace=s Victory Meant, 5/28/72,1972 + + + + + + 295 + 30 + Records,Endorsement for Griffin Plan, 5/27/72,1972 + + + + + + 295 + 31 + Records,Meany Urges Democrats to Back Busing, 5/15/72,1972 + + + + + + 295 + 32 + Records,Griffin Seeks 20 Million in Upper Great Lakes Funds, 5/12/72,1972 + + + + + + 295 + 33 + Records,Reopening the Pipeline, 4/26/72,1972 + + + + + + 295 + 34 + Records,Busing Plan Constitutional, 3/21/72,1972 + + + + + + 295 + 35 + Records,Pension Dreams of Clare Workers Vanish with Job, 4/24/72,1972 + + + + + + 295 + 36 + Records,Nixon Letter Praising Griffin, 4/18/72,1972 + + + + + + 295 + 37 + Records,How About Some Justice for Victims of Crime, 4/16/72,1972 + + + + + + 295 + 38 + Records,Vets Have Earned Break, 3/29/72,1972 + + + + + + 295 + 39 + Records,Labor Chief Off Base on Griffin, 3/17/72,1972 + + + + + + 295 + 40 + Records,Normal Family Life Important, 3/2/72,1972 + + + + + + 295 + 41 + Records,Court Action, Mining Journal, 2/23/72,1972 + + + + + + 295 + 42 + Records,Griffin Still has a Better Idea on Auto Pollution, 5/17/72,1972 + + + + + + 295 + 43 + Records,Republicans Lay Cornerstone for Griffin Re-election, 2/13/71,1971 + + + + + + 295 + 44 + Records,Griffin Leads Nixon Effort to Avert Rail Strike, 2/4/71,1971 + + + + + + 295 + 45 + Records,Michigan's Griffin Could be GOP Leader, 1/24/71,1971 + + + + + + 295 + 46 + Records,Wheels within Wheels, 1/15/71,1971 + + + + + + 295 + 47 + Records,A Visit with Griffin, 1/8/71,1971 + + + + + + 295 + 48 + Records,Griffin Readies Strong Speech Opposing Bill to Restrict Trade, 12/20/70,1970 + + + + + + 295 + 49 + Records,Griffin Asks Freedom for 1500 POW's, 12/15/70,1970 + + + + + + 295 + 50 + Records,Free POW's Griffin Asks, 12/15/70,1970 + + + + + + 295 + 51 + Records,Griffin Urges Guidelines for Wages, Prices, 12/3/70,1970 + + + + + + 295 + 52 + Records,Griffin Win Victory with Indian Bill, 12/3/70,1970 + + + + + + 295 + 53 + Records,A Hanoi Lesson for Senators, 11/21/70,1970 + + + + + + 295 + 54 + Records,U.S. to Send Arms Israel Requires, 9/25/70,1970 + + + + + + 295 + 55 + Records,Griffin vs. SST, 9/1/70,1970 + + + + + + 295 + 56 + Records,An Alternative to Presidential Runoff, 6/23/70,1970 + + + + + + 295 + 57 + Records,Weekend Trip Back Home, 3/29/70,1970 + + + + + + 295 + 58 + Records,Griffin Healer in GOP, 1/25/70,1970 + + + + + + 295 + 59 + Records,Fascinating Bob Griffin in TV Blue Shirt, 1/19/70,1970 + + + + + + 295 + 60 + Records,Griffin Challenging President on Voting Bill, 12/16/69,1969 + + + + + + 295 + 61 + Records,Senator Griffin and New Youth, 12/17/69,1969 + + + + + + 295 + 62 + Records,Senator Griffin=s Latest Fight, Haynsworth, 12/9/69,1969 + + + + + + 295 + 63 + Records,Griffin Wants Conservative if Haynsworth Rejected, 10/16/69,1969 + + + + + + 295 + 64 + Records,GOP Broke Ties to South by Electing Scott and Griffin, 9/27/69,1969 + + + + + + 295 + 65 + Records,Griffin Adds to Political Feats with Whip Post, 9/25/69,1969 + + + + + + 295 + 66 + Records,Griffin in #2 Senate Post, 9/25/69,1969 + + + + + + 295 + 67 + Records,Ethics Gets Nudge from Griffin, 5/27/69,1969 + + + + + + 295 + 68 + Records,Griffin Merits Profile in Courage, 5/8/69,1969 + + + + + + 295 + 69 + Records,Griffin=s Goliaths Fall Hard, 10/3/68,1968 + + + + + + 295 + 70 + Records,Fortas Foe, RPG, 9/28/68,1968 + + + + + + 295 + 71 + Records,Interview with Baltimore Jewish Times, 9/6/68,1968 + + + + + + 295 + 72 + Records,GOP Could have had Griffin as #2, 8/17/68,1968 + + + + + + 295 + 73 + Records,Griffin, Perennial Winning Underdog, 7/18/68,1968 + + + + + + 295 + 74 + Records,Griffin Champion at Doing the Impossible, 7/14/68,1968 + + + + + + 295 + 75 + Records,Freshman Given High Marks in Senatorial Test, 6/10/68,1968 + + + + + + 295 + 76 + Records,Dirksen School Bus Defeat Reflects Rise of Griffin, 12/10/67,1967 + + + + + + 295 + 77 + Records,Right to Work Fight Misses the Point, 2/26/66,1966 + + + + + + 295 + 78 + Records,GOP to Honor Senator Griffin, 10/17/71,1971 + + + + + + 295 + 79 + Records,Busing Opponents Pour Out Letters, 10/15/71,1971 + + + + + + 295 + 80 + Records,Ripon Society Makes a Switch, 10/9/71,1971 + + + + + + 295 + 81 + Records,Griffin Attacks School Busing, 9/25/71,1971 + + + + + + 295 + 82 + Records,Assessing the Mighty Tough (And Maybe Shy) Senator Griffin, 10/3/71,1971 + + + + + + 295 + 83 + Records,Dems Favor School Busing, 10/3/71,1971 + + + + + + 295 + 84 + Records,Busing Montage, 9/25/71,1971 + + + + + + 295 + 85 + Records,Griffin Boosts Mrs. Griffiths, Judge Kennedy for High Court, 9/21/71,1971 + + + + + + 295 + 86 + Records,U.S. Adoption Exchange Proposed, 9/13/71,1971 + + + + + + 295 + 87 + Records,Griffin Bills to Deal with Retiree Plans, 9/8/71,1971 + + + + + + 295 + 88 + Records,No Comment from Unions on Griffin Pension Bills, 9/10/71,1971 + + + + + + 295 + 89 + Records,Griffin Will Submit 2 Bills to Protect Workers= Pensions, 9/6/71,1971 + + + + + + 295 + 90 + Records,Griffin Prepares Bills to Safeguard Private Pensions, 9/6/71,1971 + + + + + + 295 + 91 + Records,A Faulty Crystal Ball, 9/4/71,1971 + + + + + + 295 + 92 + Records,Modern Adoption Methods Ease Plight of Children, 8/18/71,1971 + + + + + + 295 + 93 + Records,Adoption Plan Needs Adoption, 8/19/71,1971 + + + + + + 295 + 94 + Records,Senator Griffin Listened, 8/12/71,1971 + + + + + + 295 + 95 + Records,Deserved Support for Griffin, 7/2/71,1971 + + + + + + 295 + 96 + Records,Michigan=s Griffin: Diligence His Forte, 8/1/71,1971 + + + + + + 295 + 97 + Records,Labor Act Revisions Suggested, 7/14/71,1971 + + + + + + 295 + 98 + Records,Griffin Says Labor Act has not been Enforced, 7/14/71,1971 + + + + + + 295 + 99 + Records,Auto Clean Air Bill by Griffin Good Logic, 7/14/71,1971 + + + + + + 295 + 100 + Records,Senator Griffin=s Plan Good, 7/13/71,1971 + + + + + + 295 + 101 + Records,Congress is Seeking to Tighten the Rein on Executive, 7/11/71,1971 + + + + + + 295 + 102 + Records,DeMascio Proposed for Federal Court, 3/3/71,1971 + + + + + + 295 + 103 + Records,Griffin Facing Battle for >72, 2/27/71,1971 + + + + + + 295 + 104 + Records,Their Ailments Didn't Stop the Draft, 2/23/71,1971 + + + + + + 295 + 105 + Records,Original Paste-Ups,1966-1972 + + + + + + 295 + 106 + Records,Statements,1966-1972 + + + + + + 295 + 107 + Records,Why Conservatives Against Griffin, 2/22/72,1972 + + + + + + 295 + 108 + Records,Defeat of Nixon, Griffin at Top of Labors 72 Agenda, 2/2/72,1972 + + + + + + 295 + 109 + Records,Co-Author Asks Tougher Landrum-Griffin Act, 1/18/72,1972 + + + + + + 295 + 110 + Records,Lack of Unity Weakens Democratic Party, 1/12/72,1972 + + + + + + 295 + 111 + Records,EPA Chief Bucks GOP Donors, 12/30/71,1971 + + + + + + 295 + 112 + Records,Political Clout at Work, 12/28/71,1971 + + + + + + 295 + 113 + Records,Sunday News Appraises RPG, 12/26/71,1971 + + + + + + 295 + 114 + Records,Christmas Comes Early for Minority Whip, 12/23/71,1971 + + + + + + 295 + 115 + Records,Supplemental Food Program, 12/20/71,1971 + + + + + + 295 + 116 + Records,15,000 Moms, Tots get Food Aid, 12/14/71,1971 + + + + + + 295 + 117 + Records,Griffin's Battle for Food Aid, 12/14/71,1971 + + + + + + 295 + 118 + Records,Fight for Food Program Wins Boast in Aid for Detroit, 12/14/71,1971 + + + + + + 295 + 119 + Records,How Rehnquist Filibuster Failed, 12/14/71,1971 + + + + + + 295 + 120 + Records,Griffin Votes Tied to Butz Pledge, 12/12/71,1971 + + + + + + 295 + 121 + Records,Supplemental Food Program, 12/6/71,1971 + + + + + + 295 + 122 + Records,Buckley Supports Griffin, 11/21/71,1971 + + + + + + 295 + 123 + Records,Political Favor for Reserve, 11/21/71,1971 + + + + + + 295 + 124 + Records,Longer Shipping Season, 11/19/71,1971 + + + + + + 295 + 125 + Records,Reductions at Soo Locks, 11/17/71,1971 + + + + + + 295 + 126 + Records,Griffin's Views on Israel, 11/12/71,1971 + + + + + + 295 + 127 + Records,Griffin Gets Early Start in Fight for Political Life, 10/31/71,1971 + + + + + + 295 + 128 + Records,Safe Methadone Plan Asked, 10/29/71,1971 + + + + + + 295 + 129 + Records,Threat to Michigan=s Pride, 10/29/71,1971 + + + + + + 295 + 130 + Records,Lobbyists Swarm on Capitol to Head off Pollution Order, 10/29/71,1971 + + + + + + 295 + 131 + Records,Stalemate, 10/27/71,1971 + + + + + + 295 + 132 + Records,Griffin-Dole Favor Cuts in Aid to UN, 10/27/71,1971 + + + + + + 295 + 133 + Records,Letter from Governor Anderson, 10/27/71,1971 + + + + + + 295 + 134 + Records,Effort Made to Aid Spanish Speaking Americans, 5/16/71,1971 + + + + + + 295 + 135 + Records,Griffin Balks at Guarantee for Huge Lockheed Loan, 5/6/71,1971 + + + + + + 295 + 136 + Records,Griffin Rejects Nixon Pitch for Lockheed Loan, 5/6/71,1971 + + + + + + 295 + 137 + Records,Capturing a City of Goliaths,1966-1972 + + + + + + 295 + 138 + Records,Great Lakes Defender, 4/21/71,1971 + + + + + + 295 + 139 + Records,Griffin Hinges Total Pullout on POW Release, 4/2/71,1971 + + + + + + 295 + 140 + Records,Griffin Urges Total Pullout if POW=s are Released, 4/1/71,1971 + + + + + + 295 + 141 + Records,Political Abilities of Griffin May Help, 4/1/71,1971 + + + + + + 295 + 142 + Records,Senator Griffin Goes to Bat for Latins in State, 3/21/71,1971 + + + + + + 295 + 143 + Records,Senator Griffin Continues Fight to Help Rank-File Miners, 3/17/71,1971 + + + + + + 295 + 144 + Records,Griffin Off and Running, 3/14/71,1971 + + + + + + 295 + 145 + Records,Draft: Improve or End, 3/6/71,1971 + + + + + + 295 + 146 + Records,Griffin Urges Auto Pollution Antitrust Waiver, 7/11/71,1971 + + + + + + 295 + 147 + Records,Griffin on China Thaw, 5/23/71,1971 + + + + + + 295 + 148 + Records,Griffin's China Statement Significant and Laudatory, 5/22/71,1971 + + + + + + 295 + 149 + Records,Latest Crisis, Griffin Gamble May Get Action, 5/21/71,1971 + + + + + + 295 + 150 + Records,End to Rail Strike Speeded by Griffin, 5/19/71,1971 + + + + + + 295 + 151 + Records,Griffin Urges Seat in UN for Red China, 5/17/71,1971 + + + + + + 295 + 152 + Records,Senator Griffin's Victory Beats Odds, 12/14/72,1972 + + + + + + 295 + 153 + Records,Griffin Off and Running, 11/14/72,1972 + + + + + + 295 + 154 + Records,Future gets Rosy for Griffin, 11/9/72,1972 + + + + + + 295 + 155 + Records,Kelley Cuts Griffin's Lead in Poll, 11/6/72,1972 + + + + + + 295 + 156 + Records,We Back Griffin, 10/24/72,1972 + + + + + + 295 + 157 + Records,Griffin Widens Lead to 10 Points Over Kelley, 10/16/72,1972 + + + + + + 295 + 158 + Records,A Vote for Griffin, 10/15/72,1972 + + + + + + 295 + 159 + Records,Senator Griffin, 10/14/72,1972 + + + + + + 295 + 160 + Records,A Vote for Kelley is a Vote for Busing, 10/10/72,1972 + + + + + + 295 + 161 + Records,The Great Debate, Griffin vs. Kelley, 10/8/72,1972 + + + + + + 295 + 162 + Records,Congress Must Protect Workers on Pension, 10/5/72,1972 + + + + + + 295 + 163 + Records,Why Kelley Falters, 10/3/72,1972 + + + + + + 295 + 164 + Records,She's a Seasoned Campaigner, 10/2/72,1972 + + + + + + 295 + 165 + Records,Griffin's Lead Widens, Kelley Slips in Poll, 10/2/72,1972 + + + + + + 295 + 166 + Records,Griffin, Kelley, Ruppe Speak out on Taconite, 9/21/72,1972 + + + + + + 295 + 167 + Records,Labor Attitudes, 9/16/72,1972 + + + + + + 295 + 168 + Records,Senator Griffin Takes Case to Labor, 9/14/72,1972 + + + + + + 295 + 169 + Records,Kelley-Griffin Race is Close, 9/11/72,1972 + + + + + + 295 + 170 + Records,Nixon Leads McGovern in State Poll, 9/10/72,1972 + + + + + + 295 + 171 + Records,Speech, Remarks,1966-1972 + + + + + + 295 + 172 + Records,Young Republican Leadership, 1968-69,1968-1969 + + + + + + 295 + 173 + Records,Political Humor,1966-1972 + + + + + + 295 + 174 + Records,Domestic, General,1966-1972 + + + + + + 295 + 175 + Records,Poems and the Square,1966-1972 + + + + + + 295 + 176 + Records,Republican, General,1966-1972 + + + + + + 295 + 177 + Records,Republican, Others,1966-1972 + + + + + + 295 + 178 + Records,Albion Commencement, 1970,1970 + + + + + + 295 + 179 + Records,Northern Michigan University Commencement,1966-1972 + + + + + + 295 + 180 + Records,Eastern Michigan, 1/26/69,1969 + + + + + + 295 + 181 + Records,Central Michigan, 1/28/67,1967 + + + + + + 295 + 182 + Records,Saginaw High School,1966-1972 + + + + + + 295 + 183 + Records,Kansas Speech,1966-1972 + + + + + + 295 + 184 + Records,Republican, General,1966-1972 + + + + + + 295 + 185 + Records,Personnel,1966-1972 + + + + + + 295 + 186 + Records,Post Office,1966-1972 + + + + + + 296 + 1 + Records,Speech Material,1957-1970 + + + + + + 296 + 2 + Records,Speech Draft,1957-1970 + + + + + + 296 + 3 + Records,Vietnam Speech,1957-1970 + + + + + + 296 + 4 + Records,Miscellaneous Speeches, 1967-68,1967-1968 + + + + + + 296 + 5 + Records,Media, TV, Newspapers,1957-1970 + + + + + + 296 + 6 + Records,Population Control,1957-1970 + + + + + + 296 + 7 + Records,Speech Material,1957-1970 + + + + + + 296 + 8 + Records,Revenue Sharing,1957-1970 + + + + + + 296 + 9 + Records,Businessmen, Politics,1957-1970 + + + + + + 296 + 10 + Records,Labor,1957-1970 + + + + + + 296 + 11 + Records,Taxes,1957-1970 + + + + + + 296 + 12 + Records,Student Revolts,1957-1970 + + + + + + 296 + 13 + Records,Anti-Ballistic Missiles,1957-1970 + + + + + + 296 + 14 + Records,Laos,1957-1970 + + + + + + 296 + 15 + Records,Vietnam,1957-1970 + + + + + + 296 + 16 + Records,Floor Speech, Gordon Allott,1957-1970 + + + + + + 296 + 17 + Records,Middle East,1957-1970 + + + + + + 296 + 18 + Records,Griffin Voting Record,1957-1970 + + + + + + 296 + 19 + Records,Michigan Mines,1957-1970 + + + + + + 296 + 20 + Records,Election, Resolved,1957-1970 + + + + + + 296 + 21 + Records,American Assassination Bill, 1/19/65, 45" disc record,1965 + + + + + + 296 + 22 + Records,I.S.C. Meeting on Water Level, 1/21/65, 45" disc record and transcription,1965 + + + + + + 296 + 23 + Records,No topic, 1/29/65, 45" disc record,1965 + + + + + + 296 + 24 + Records,14 b Unions (Taft Hartley Law), 2/1/64, 45" disc record,1964 + + + + + + 296 + 25 + Records,Right-to-Know Legislation, 2/15/65, 45" disc record,1965 + + + + + + 296 + 26 + Records,Sleeping Bear Dunes, 2/25/65, 45" disc record,1965 + + + + + + 296 + 27 + Records,Education Bill, 3/5/65, 45" disc record,1965 + + + + + + 296 + 28 + Records,Public Law 78-Migratory Labor, 3/12/65, 45" disc record,1965 + + + + + + 296 + 29 + Records,Civil Rights, 3/19/65, 45" disc record,1965 + + + + + + 296 + 30 + Records,Supreme Court Decision on Landrum-Griffin Act, 6/11/65, 45" disc record and news release,1965 + + + + + + 296 + 31 + Records,Water Pollution, undated, 45" disc record,1957-1970 + + + + + + 296 + 32 + Records,Joint Committee on the Organization of Congress, 4/2/65, 45" disc record,1965 + + + + + + 296 + 33 + Records,14 (b) Taft-Hartley Law, 5/21/65, 45" disc record and news release,1965 + + + + + + 296 + 34 + Records,Housing Subsidy, 5/28/65, 45" disc record and transcription,1965 + + + + + + 296 + 35 + Records,Farm Labor, 6/18/65, 45" disc record and news release,1965 + + + + + + 296 + 36 + Records,Cherries, 7/23/65, 45" disc record,1965 + + + + + + 296 + 37 + Records,Vietnam Trip, Draft Laws, 5/4/66, 45" disc record,1966 + + + + + + 296 + 38 + Records,Rayburn Strikes-Unnecessary Spending, Draft Deferment, 45" disc record,1957-1970 + + + + + + 296 + 39 + Records,Inflation, undated, 45" disc record,1957-1970 + + + + + + 296 + 40 + Records,Senate Candidacy, 2/7/66, 45" disc record,1966 + + + + + + 296 + 41 + Records,Electoral College Proposal by President Johnson, 1/21/66, 45" disc record and news release,1966 + + + + + + 296 + 42 + Records,Powell Subcommittee Investigating War on Poverty, undated, 45" disc record and transcript,1957-1970 + + + + + + 296 + 43 + Records,Teachers Corps, 10/8/65, 45" disc record and news release,1965 + + + + + + 296 + 44 + Records,Trailer Tour 1964, photos and negatives,1964 + + + + + + 296 + 45 + Records,Trailer Tour 1964, schedules,1964 + + + + + + 296 + 46 + Records,Trailer Tour 1960,1960 + + + + + + 296 + 47 + Records,Trailer Tour 1962, press releases,1962 + + + + + + 296 + 48 + Records,Trailer Tour 1962, schedules,1962 + + + + + + 296 + 49 + Records,Trailer Tour 1961,1961 + + + + + + 296 + 50 + Records,Trailer Tour 1961, schedules,1961 + + + + + + 296 + 51 + Records,Trailer Tour 1961, press releases,1961 + + + + + + 296 + 52 + Records,Trailer Tour 1960, schedules,1960 + + + + + + 296 + 54 + Records,Miscellaneous Clippings, 1961-62,1961-1962 + + + + + + 296 + 55 + Records,Radio-TV, 1963, includes 3-45" disc records and transcripts,1963 + + + + + + 296 + 56 + Records,Ford-Griffin Telecasts, 1963-64,1963-1964 + + + + + + 296 + 57 + Records,Radio-TV, 1960-61,1960-1961 + + + + + + 296 + 58 + Records,News Releases, 1965 (photo),1965 + + + + + + 296 + 59 + Records,Radio-TV, undated notes and cherry pie photos,1957-1970 + + + + + + 296 + 60 + Records,Radio-TV, 1966,1966 + + + + + + 296 + 61 + Records,Radio-TV, 1964-65,1964-1965 + + + + + + 296 + 62 + Records,Iron Age, 10/17/63, cover-Congressman Landrum-Griffin,1963 + + + + + + 296 + 63 + Records,Congressman Bob Griffin (Living for Young Homemakers, 7/1960, pp. 48-49),1960 + + + + + + 296 + 64 + Records,Griffin News Releases, 1966,1966 + + + + + + 296 + 65 + Records,The Draft, 5/5/66 (also Inspection trip to Vietnam 5/6/66),1966 + + + + + + 296 + 66 + Records,Student Loan, 4/27/66,1966 + + + + + + 296 + 67 + Records,Bill to Eradicate Discrimination in Jury Selection, 4/20/66,1966 + + + + + + 296 + 68 + Records,Credibility Gap, 4/13/66,1966 + + + + + + 296 + 69 + Records,Freedom of Information, 4/6/66,1966 + + + + + + 296 + 70 + Records,Viet Vitamins, 4/1/66,1966 + + + + + + 296 + 71 + Records,Vietnam Trip, 3/21/66,1966 + + + + + + 296 + 72 + Records,Accomplishments Under the Landrum-Griffin Act, 3/15/66,1966 + + + + + + 296 + 73 + Records,Transfer of Community Relations Service to Justice, 3/9/66,1966 + + + + + + 296 + 74 + Records,Education, Letter of Katzenbach, 3/6/66,1966 + + + + + + 296 + 75 + Records,Civil Rights Bill, 3/6/66,1966 + + + + + + 296 + 76 + Records,Right to Work Fight Misses the Point, 2/26/66, (reprint from Saturday Evening Post),1966 + + + + + + 296 + 77 + Records,Senate Candidacy, 2/10/66,1966 + + + + + + 296 + 78 + Records,Computer System, 1/28/66,1966 + + + + + + 296 + 79 + Records,Electoral College, 1/24/66, radio,1966 + + + + + + 296 + 80 + Records,Electoral College, 1/21/66, press,1966 + + + + + + 296 + 81 + Records,Sleeping Bear Dunes, 1/21/66,1966 + + + + + + 296 + 82 + Records,Sleeping Bear Dunes, 1/1966, statement,1966 + + + + + + 296 + 83 + Records,Map of Proposed Sleeping Bear Area,1957-1970 + + + + + + 296 + 84 + Records,Academies, 1/27/66,1966 + + + + + + 296 + 85 + Records,Assassination of President Federal Crime, 1/18/95,1995 + + + + + + 296 + 86 + Records,Rough Draft, Jaycee Awards Dinner, 1/17/66, speech,1966 + + + + + + 296 + 87 + Records,Labor Court Bill, 9/22/65,1965 + + + + + + 296 + 88 + Records,N.A.T.O., 11/22/65,1965 + + + + + + 296 + 89 + Records,Speech, AThe 89th Congress@ before the Economic Club of Detroit, 11/15/65,1965 + + + + + + 296 + 90 + Records,Welcoming Pope Paul VI, 10/2/65,1965 + + + + + + 296 + 91 + Records,Jobs in State Department and U.S.I.A., 9/29/65,1965 + + + + + + 296 + 92 + Records,District Republicans at Fairlane in Dearborn, 9/19/65,1965 + + + + + + 296 + 93 + Records,Academies, 9/16/65,1965 + + + + + + 296 + 94 + Records,Excerpts from Speech at Corn Picking Contest, 10/22/65,1965 + + + + + + 296 + 95 + Records,Redistricting, 9/2/65,1965 + + + + + + 296 + 96 + Records,Education, 9/1/65,1965 + + + + + + 296 + 97 + Records,Annual Meeting of ABA at Miami Beach, 8/9/65, speech,1965 + + + + + + 296 + 98 + Records,Annual Meeting of ABA, 8/9/65, press release,1965 + + + + + + 296 + 99 + Records,Cherries, 7/26/65,1965 + + + + + + 297 + 1 + Records,Sleeping Bear Dunes (Statement made by RPG before S. Parks and Rec. Subcommittee, 7/13/65),1965 + + + + + + 297 + 2 + Records,Survey of 9th District Foreign Affairs, Labor Unions, etc., 6/21/65,1965 + + + + + + 297 + 3 + Records,Federal Action to Insure Adequate Supply of Farm Labor, 6/21/65,1965 + + + + + + 297 + 4 + Records,Supreme Court Decision on Landrum-Griffin, 6/14/65,1965 + + + + + + 297 + 5 + Records,Supreme Court Ruling Re: Landrum-Griffin Act, 6/12/65,1965 + + + + + + 297 + 6 + Records,National Church Council Re: 14 (b), 6/9/65,1965 + + + + + + 297 + 7 + Records,Reprint of 14 (b) Speech Delivered in House of Representatives by RPG, 2/4/65,1965 + + + + + + 297 + 8 + Records,On Proposal to Repeal 14 (b), 6/4/65,1965 + + + + + + 297 + 9 + Records,On Proposal to Repeal 14 (b), 5/26/65,1965 + + + + + + 297 + 10 + Records,Witness, A.C. Skinner, 5/26/65,1965 + + + + + + 297 + 11 + Records,Water Quality Act, 4/26/65,1965 + + + + + + 297 + 12 + Records,Secret Strike Ballot, 2/20/65,1965 + + + + + + 297 + 13 + Records,Civil Rights Bill for Workers, 1965, press release,1965 + + + + + + 297 + 14 + Records,Great Lakes Water Levels, 1/21/65,1965 + + + + + + 297 + 15 + Records,Academies, 1/25/65,1965 + + + + + + 297 + 16 + Records,Tax Deduction for College Expenses, 2/1/65,1965 + + + + + + 297 + 17 + Records,Remarks by RPG before the Milwaukee Advertising Club, 2/27/65,1965 + + + + + + 297 + 18 + Records,Rules Committee Debate, 1/30/61, Washington Report,1961 + + + + + + 297 + 19 + Records,Commencement Material,1957-1975 + + + + + + 297 + 20 + Records,Government Reorganization,1957-1975 + + + + + + 297 + 21 + Records,Government Reform,1957-1975 + + + + + + 297 + 22 + Records,Background on Busing (Michigan),1957-1975 + + + + + + 297 + 23 + Records,Roth, General,1957-1975 + + + + + + 297 + 24 + Records,Busing,1957-1975 + + + + + + 297 + 25 + Records,Polls,1957-1975 + + + + + + 297 + 26 + Records,Kelley, Conflicting Positions,1957-1975 + + + + + + 297 + 27 + Records,Quotables,1957-1975 + + + + + + 297 + 28 + Records,Crime,1957-1975 + + + + + + 297 + 29 + Records,Michigan's Robert P. Griffin (Bluebook), 1972,1972 + + + + + + 297 + 30 + Records,Bluebook Draft and Distribution List, 1972?, Issue Files,1972 + + + + + + 297 + 31 + Records,Agriculture,1957-1975 + + + + + + 297 + 32 + Records,Americanism,1957-1975 + + + + + + 297 + 33 + Records,Animals,1957-1975 + + + + + + 297 + 34 + Records,Anti-trust,1957-1975 + + + + + + 297 + 35 + Records,Armed Forces,1957-1975 + + + + + + 297 + 36 + Records,Appropriations,1957-1975 + + + + + + 297 + 37 + Records,Athletics,1957-1975 + + + + + + 297 + 38 + Records,Auto Industry,1957-1975 + + + + + + 297 + 39 + Records,Banking,1957-1975 + + + + + + 297 + 40 + Records,Business,1957-1975 + + + + + + 297 + 41 + Records,Busing,1957-1975 + + + + + + 297 + 42 + Records,Coal,1957-1975 + + + + + + 297 + 43 + Records,Civil Disorders,1957-1975 + + + + + + 297 + 44 + Records,Civil Rights,1957-1975 + + + + + + 297 + 45 + Records,Communications,1957-1975 + + + + + + 297 + 46 + Records,Consumers,1957-1975 + + + + + + 297 + 47 + Records,Congress,1957-1975 + + + + + + 297 + 48 + Records,Crime,1957-1975 + + + + + + 297 + 49 + Records,Cyclamates,1957-1975 + + + + + + 297 + 50 + Records,District of Columbia,1957-1975 + + + + + + 297 + 51 + Records,Defense,1957-1975 + + + + + + 297 + 52 + Records,Drugs,1957-1975 + + + + + + 297 + 53 + Records,Energy,1957-1975 + + + + + + 297 + 54 + Records,Economy,1957-1975 + + + + + + 297 + 55 + Records,Education,1957-1975 + + + + + + 297 + 56 + Records,Elections,1957-1975 + + + + + + 297 + 57 + Records,Environment,1957-1975 + + + + + + 297 + 58 + Records,FBI, Issues/Foreign Relations,1957-1975 + + + + + + 297 + 59 + Records,General,1957-1975 + + + + + + 297 + 60 + Records,America,1957-1975 + + + + + + 297 + 61 + Records,Baltic States,1957-1975 + + + + + + 297 + 62 + Records,Canada,1957-1975 + + + + + + 297 + 63 + Records,Captive Nations,1957-1975 + + + + + + 297 + 64 + Records,China,1957-1975 + + + + + + 297 + 65 + Records,Cuba,1957-1975 + + + + + + 297 + 66 + Records,Egypt,1957-1975 + + + + + + 297 + 67 + Records,Finland,1957-1975 + + + + + + 297 + 68 + Records,France,1957-1975 + + + + + + 297 + 69 + Records,Hungary,1957-1975 + + + + + + 297 + 70 + Records,Iraq,1957-1975 + + + + + + 297 + 71 + Records,Israel,1957-1975 + + + + + + 297 + 72 + Records,Japan,1957-1975 + + + + + + 297 + 73 + Records,Kenya,1957-1975 + + + + + + 297 + 74 + Records,Korea,1957-1975 + + + + + + 297 + 75 + Records,Mexico,1957-1975 + + + + + + 297 + 76 + Records,Middle East,1957-1975 + + + + + + 297 + 77 + Records,Nigeria,1957-1975 + + + + + + 297 + 78 + Records,Okinawa,1957-1975 + + + + + + 297 + 79 + Records,Pakistan,1957-1975 + + + + + + 297 + 80 + Records,Peru,1957-1975 + + + + + + 297 + 81 + Records,Poland,1957-1975 + + + + + + 297 + 82 + Records,Romania,1957-1975 + + + + + + 297 + 83 + Records,USSR,1957-1975 + + + + + + 297 + 84 + Records,Government Reform and Operations,1957-1975 + + + + + + 297 + 85 + Records,Great Lakes,1957-1975 + + + + + + 297 + 86 + Records,Griffin, Appointments, Tributes,1957-1975 + + + + + + 297 + 87 + Records,Gun Control,1957-1975 + + + + + + 297 + 88 + Records,Health,1957-1975 + + + + + + 297 + 89 + Records,Housing,1957-1975 + + + + + + 297 + 90 + Records,Indians,1957-1975 + + + + + + 297 + 100 + Records,Judiciary,1957-1975 + + + + + + 297 + 101 + Records,Labor,1957-1975 + + + + + + 297 + 102 + Records,Sea Lamprey,1957-1975 + + + + + + 297 + 103 + Records,Michigan,1957-1975 + + + + + + 297 + 104 + Records,Minorities,1957-1975 + + + + + + 297 + 105 + Records,Miscellaneous,1957-1975 + + + + + + 297 + 106 + Records,Nixon Administration,1957-1975 + + + + + + 297 + 107 + Records,Pensions,1957-1975 + + + + + + 297 + 108 + Records,Personalities and Tributes,1957-1975 + + + + + + 297 + 109 + Records,Politics,1957-1975 + + + + + + 297 + 110 + Records,Pornography,1957-1975 + + + + + + 297 + 111 + Records,Post Office,1957-1975 + + + + + + 297 + 112 + Records,Poverty,1957-1975 + + + + + + 297 + 113 + Records,POW's,1957-1975 + + + + + + 297 + 114 + Records,Prison Reform,1957-1975 + + + + + + 297 + 115 + Records,Public Works,1957-1975 + + + + + + 297 + 116 + Records,Revenue Sharing,1957-1975 + + + + + + 297 + 117 + Records,School Prayer,1957-1975 + + + + + + 297 + 118 + Records,Senior Citizens,1957-1975 + + + + + + 297 + 119 + Records,Social Problems,1957-1975 + + + + + + 297 + 120 + Records,Social Security,1957-1975 + + + + + + 297 + 121 + Records,Space Program,1957-1975 + + + + + + 297 + 122 + Records,Supreme Court,1957-1975 + + + + + + 297 + 123 + Records,Taxes,1957-1975 + + + + + + 297 + 124 + Records,Territorial Limitations,1957-1975 + + + + + + 297 + 125 + Records,Transportation,1957-1975 + + + + + + 297 + 126 + Records,Trade,1957-1975 + + + + + + 297 + 127 + Records,Urban Problems,1957-1975 + + + + + + 297 + 128 + Records,Veterans,1957-1975 + + + + + + 297 + 129 + Records,Vietnam,1957-1975 + + + + + + 297 + 130 + Records,Youth,1957-1975 + + + + + + 297 + 131 + Records,News Clips, 1970,1970 + + + + + + 297 + 132 + Records,Newspaper Clippings, Watergate, 4/27-5/22/1973,1973 + + + + + + 297 + 133 + Records,Truck Body and Equipment Association, 11/10/75,1975 + + + + + + 297 + 134 + Records,Glass Containers, 10/14/75,1975 + + + + + + 297 + 135 + Records,Glass Containers Manufacturers Institute, 10/13/75,1975 + + + + + + 297 + 136 + Records,National Association of Food Chains, 10/13/75,1975 + + + + + + 297 + 137 + Records,Jackson County 300 Club Dinner, 9/9/75,1975 + + + + + + 297 + 138 + Records,Prince William County Republicans (Virginia),1957-1975 + + + + + + 297 + 139 + Records,Dedication of Vanderberg Plaque on Mackinac Island, 9/14/75,1975 + + + + + + 297 + 140 + Records,Newspaper Clippings, 1975,1975 + + + + + + 297 + 141 + Records,Notes on Jordan Missile Sales, undated,undated + + + + + + 297 + 142 + Records,Sugar Beet, 8/22/75-2 folders,1975 + + + + + + 297 + 143 + Records,American Polygraph Association, 8/7/75,1975 + + + + + + 297 + 144 + Records,Insurance Information Institute, 6/3/75,1975 + + + + + + 298 + 1 + Records,Oil and Gas Association, 5/23/75, 2 folders,1975 + + + + + + 298 + 2 + Records,Oil and Gas Association, 5/23/75, 2 folders,1975 + + + + + + 298 + 3 + Records,Centurions Inc., 5/22/75,1975 + + + + + + 298 + 4 + Records,Financial Executive Institute,1973-1975 + + + + + + 298 + 5 + Records,Washtenaw County Republican Dinner, 5/2/75,1975 + + + + + + 298 + 6 + Records,Detroit Chapter of the Financial Executives Institute, Eve. 4/28/1975,1975 + + + + + + 298 + 7 + Records,Spring Reunion of Scottish Rite Masons, 4/26/75,1975 + + + + + + 298 + 8 + Records,Newaygo County Lincoln Day Dinner, 4/25/75,1975 + + + + + + 298 + 9 + Records,American Banking Association, 4/3/75,1975 + + + + + + 298 + 10 + Records,Automotive Services Industry, 3/10/75,1975 + + + + + + 298 + 11 + Records,Ottawa County, 3/7/75,1975 + + + + + + 298 + 12 + Records,Young Republicans Leadership Conference, 3/1/75, 2 folders,1975 + + + + + + 298 + 13 + Records,Young Republicans Leadership Conference, 3/1/75, 2 folders,1975 + + + + + + 298 + 14 + Records,Sanilac County Lincoln Day Dinner, 3/21/75,1975 + + + + + + 298 + 15 + Records,State Republican Convention, 2/14-2/15/75, 2 folders,1975 + + + + + + 298 + 16 + Records,State Republican Convention, 2/14-2/15/75, 2 folders,1975 + + + + + + 298 + 17 + Records,National Machine Tool Builders, 11/7/75, 4 folders,1975 + + + + + + 298 + 18 + Records,National Machine Tool Builders, 11/7/75, 4 folders,1975 + + + + + + 298 + 19 + Records,National Machine Tool Builders, 11/7/75, 4 folders,1975 + + + + + + 298 + 20 + Records,National Machine Tool Builders, 11/7/75, 4 folders,1975 + + + + + + 298 + 21 + Records,Saints and Sinners, 12/17/75,1975 + + + + + + 298 + 22 + Records,Zionism, 11/13/75,1975 + + + + + + 298 + 23 + Records,Michigan Children Letter, 11/5/75,1975 + + + + + + 298 + 24 + Records,Michigan Turkesy, 11/19/75,1975 + + + + + + 298 + 25 + Records,President Ford=s News Conference, 11/3/75,1975 + + + + + + 298 + 26 + Records,William Rosenberg Remarks, Interior and Insular Affairs Committee, 9/8/75,1975 + + + + + + 298 + 27 + Records,Traverse City Cherry Festival, 11/7/75,1975 + + + + + + 298 + 28 + Records,25th Amendment Testimony, 3/11/75,1975 + + + + + + 298 + 29 + Records,RPG Biography, 1/75,1975 + + + + + + 298 + 30 + Records,Michigan Plant and Equipment,1973-1975 + + + + + + 298 + 31 + Records,Commencement Address, Northwestern College, 6/10/73,1973 + + + + + + 298 + 32 + Records,Holland Chamber of Commerce, 10/73,1973 + + + + + + 298 + 33 + Records,Kansas Senator Dole Speech, 9/22/74,1974 + + + + + + 298 + 34 + Records,ANPA Dinner Session, 10/8/74,1974 + + + + + + 298 + 35 + Records,Kissinger Introduction, 11/24/75,1975 + + + + + + 298 + 36 + Records,National Association of Retail Druggists Convention,1973-1975 + + + + + + 298 + 37 + Records,Retail Druggists, 10/15/75,1975 + + + + + + 298 + 38 + Records,Truck Body and Equipment Association, 11/10/75,1975 + + + + + + 298 + 39 + Records,Camellia Bowl,1973-1975 + + + + + + 298 + 40 + Records,Camellia Bowl Resolution,1973-1975 + + + + + + 298 + 41 + Records,Congressional Record Insert, Hugh Scott,1973-1975 + + + + + + 298 + 42 + Records,Congressional Record Insert, New York and Detroit, 11/4/75,1975 + + + + + + 298 + 43 + Records,Congressional Record Insert, Dr. Milton Muelder, 10/21/75,1975 + + + + + + 298 + 44 + Records,Congressional Record Insert, Malaise of a Nation, 10/1/75,1975 + + + + + + 298 + 45 + Records,Congressional Record Insert, Hoffa Case, Implications,1973-1975 + + + + + + 298 + 46 + Records,Congressional Record Insert, Kiwanis Club of Okemos,1973-1975 + + + + + + 298 + 47 + Records,Congressional Record Insert, New Hampshire Election, 1/23/75,1975 + + + + + + 298 + 48 + Records,Congressional Record Insert, Modern Furniture Exhibit,1973-1975 + + + + + + 298 + 49 + Records,Congressional Record Insert, Busing, 3/1/74,1974 + + + + + + 298 + 50 + Records,Congressional Record Insert, Lithuanian 56th Anniversary,1973-1975 + + + + + + 298 + 51 + Records,Congressional Record Insert, Finnish Americans, 2/8/74,1974 + + + + + + 298 + 52 + Records,Congressional Record Insert, Hudson High School,1973-1975 + + + + + + 298 + 53 + Records,Congressional Record Insert, SCLC Opposes Forced Busing,1973-1975 + + + + + + 298 + 54 + Records,Congressional Record Insert, Detroit's Warning to Nation,1973-1975 + + + + + + 298 + 55 + Records,Floor Statement, Energy Independence Agency, 10/8/75,1975 + + + + + + 298 + 56 + Records,Floor Statement, Wyman, Durkin Contest, 6/12/75,1975 + + + + + + 298 + 57 + Records,Floor Statement, Dropping the Torch, (Aid to Indochina), 3/26/75,1975 + + + + + + 298 + 58 + Records,Floor Statement, Dropping the Torch, (Cambodia, Vietnamese Aid), 3/75,1975 + + + + + + 298 + 59 + Records,Floor Statement, Dropping the Torch, 3/26/75,1975 + + + + + + 298 + 60 + Records,Floor Statement, Trade Reform Act, 12/13/74,1974 + + + + + + 298 + 61 + Records,CBS Morning News,1973-1975 + + + + + + 298 + 62 + Records,CBS A.M. News, 1/14/75,1975 + + + + + + 298 + 63 + Records,Backgrounder, 1/30/75,1975 + + + + + + 298 + 64 + Records,Press Conference, RPG, Scott, Wyman-Durkin, 1/17/75,1975 + + + + + + 298 + 65 + Records,PR: Special Report, Teamsters Leadership,1973-1975 + + + + + + 298 + 66 + Records,PR: UN Resolution Calling Zionism Racism, 11/13/75,1975 + + + + + + 298 + 67 + Records,PR: Draft, Railroads, Seafarer, Isle Royale,1973-1975 + + + + + + 298 + 68 + Records,PR: Teamster Resolution, 11/19/75,1975 + + + + + + 298 + 69 + Records,Teamster Probe, Hudson,1973-1975 + + + + + + 298 + 70 + Records,Video Tape, Fitzgerald, Zionism, Racism, 11/13/75,1975 + + + + + + 298 + 71 + Records,Gas Milage Bill,1973-1975 + + + + + + 298 + 72 + Records,Seafarer, 7/8/75,1975 + + + + + + 298 + 73 + Records,25th Amendment, Briefing Bill, 3/11/75,1975 + + + + + + 298 + 74 + Records,Repeal of 10% Federal Excise Tax on Trucks, Buses,1973-1975 + + + + + + 298 + 75 + Records,USRA Organization Plan, 2/26/75,1975 + + + + + + 298 + 76 + Records,Unemployment Benefit Extension, 2/16/75,1975 + + + + + + 298 + 77 + Records,Judge Churchill Confirmation, 12/12/74,1974 + + + + + + 298 + 78 + Records,Indiana Electric Association, 10/18/74,1974 + + + + + + 298 + 79 + Records,American Newspaper Publishers, 10/8/74,1974 + + + + + + 298 + 80 + Records,East Central Michigan Comprehensive Health Planning Council Bay City, 10/30/74,1974 + + + + + + 298 + 81 + Records,Boy Scouts, Traverse City, 11/7/74,1974 + + + + + + 298 + 82 + Records,Livonia Chamber of Commerce, 4/13/74,1974 + + + + + + 298 + 83 + Records,Wharton School, 11/19/74,1974 + + + + + + 298 + 84 + Records,Fishing Tackle Manufacturers Association, 11/15/74,1974 + + + + + + 298 + 85 + Records,Auto Industry, 11/21/74,1974 + + + + + + 298 + 86 + Records,Rockefeller, Senate Confirmation, Not Used, 12/9/74,1974 + + + + + + 298 + 87 + Records,Foreign Aid, General,1973-1975 + + + + + + 299 + 1 + Records,Foreign Aid, Mid East,1973-1975 + + + + + + 299 + 2 + Records,Foreign Aid, Vietnam,1973-1975 + + + + + + 299 + 3 + Records,Tax Cuts,1973-1975 + + + + + + 299 + 4 + Records,Floor Statement, Richardson, 9/5/73,1973 + + + + + + 299 + 5 + Records,Scottish Rite Masons Spring Reunion, Detroit, 4/26/75,1975 + + + + + + 299 + 6 + Records,Mackinaw Island Republican Conference, 9/15/73,1973 + + + + + + 299 + 7 + Records,American Bankers Association, Las Vegas, 4/3/75,1975 + + + + + + 299 + 8 + Records,Bloomfield Hills Fundraiser, 12/4/73,1973 + + + + + + 299 + 9 + Records,Kent County Republican Committee Dinner, 1/17/74,1974 + + + + + + 299 + 10 + Records,Cliff Taylor Remarks, 9/13/74,1974 + + + + + + 299 + 11 + Records,Dan Angel Remarks, 9/13/74,1974 + + + + + + 299 + 12 + Records,Battle of Point Pleasant, 10/10/74,1974 + + + + + + 299 + 13 + Records,Basic October Speech,1973-1975 + + + + + + 299 + 14 + Records,October and November Speech Reference File,1973-1975 + + + + + + 299 + 15 + Records,Ford Introduction to Rules Committee, 11/1/73,1973 + + + + + + 299 + 16 + Records,Alaska Pipeline, 11/7/73,1973 + + + + + + 299 + 17 + Records,Bloomfield Hills Country Club, 12/4/73,1973 + + + + + + 299 + 18 + Records,National Association of Temporary Services, 5/2/74,1974 + + + + + + 299 + 19 + Records,Republican State Convention, 2/17/73,1973 + + + + + + 299 + 20 + Records,Calvin Bullock Forum, NYC, 2/26/73,1973 + + + + + + 299 + 21 + Records,Mackinaw Island Conference, 9/15/73,1973 + + + + + + 299 + 22 + Records,Agnew Resignation, 10/10/73,1973 + + + + + + 299 + 23 + Records,Delaware County Republican Dinner, 10/15/73,1973 + + + + + + 299 + 24 + Records,17th Congressional District Republican Dinner, 10/19/73,1973 + + + + + + 299 + 25 + Records,Holland Chamber of Commerce, 10/22/73,1973 + + + + + + 299 + 26 + Records,Republican State Finance Committee, 10/26/73,1973 + + + + + + 299 + 27 + Records,Christian Science Monitor Column, 10/25/73,1973 + + + + + + 299 + 28 + Records,Ypsilanti Rotary Club, 5/14/73,1973 + + + + + + 299 + 29 + Records,Commencement Address Northwestern Michigan College, 6/10/73,1973 + + + + + + 299 + 30 + Records,Detroit College of Law, 6/15/73,1973 + + + + + + 299 + 31 + Records,Lincoln Day Dinner, 2/12/73,1973 + + + + + + 299 + 32 + Records,Lincoln Day Dinner, 2/16/73,1973 + + + + + + 299 + 33 + Records,Commencement Address West Bloomfield High School, 6/7/73,1973 + + + + + + 299 + 34 + Records,Traverse City Rotary Club, 8/14/73,1973 + + + + + + 299 + 35 + Records,American Mining Congress, 9/10/73,1973 + + + + + + 299 + 36 + Records,Vice President Amendment, 10/23/73,1973 + + + + + + 299 + 37 + Records,Basic October Speeches,1973-1975 + + + + + + 299 + 38 + Records,GOP State Convention, 8/24/74,1974 + + + + + + 299 + 39 + Records,Ann Arbor Rotary Club, 10/28/74,1974 + + + + + + 299 + 40 + Records,Philadelphia Speech, 9/6/74,1974 + + + + + + 299 + 41 + Records,St. Clair Speech, 9/9/74,1974 + + + + + + 299 + 42 + Records,Eighth Congressional District,1973-1975 + + + + + + 299 + 43 + Records,Oakland County Young Republicans, 9/16/74,1974 + + + + + + 299 + 44 + Records,Dan Angel, 9/13/74,1974 + + + + + + 299 + 45 + Records,Republican Stat Nationalities Council, 9/13/74,1974 + + + + + + 299 + 46 + Records,Cliff Taylor, 9/16/74,1974 + + + + + + 299 + 47 + Records,Kansas Speech, 9/22/74,1974 + + + + + + 299 + 48 + Records,Republican State Nationalities Council, 9/28/74,1974 + + + + + + 299 + 49 + Records,Milliken Fund Raiser, 10/10/74,1974 + + + + + + 299 + 50 + Records,Rule 29, Testimony, 4/27/74,1974 + + + + + + 299 + 51 + Records,Muskegon GOP, 5/10/74,1974 + + + + + + 299 + 52 + Records,IDA Floor Statement, 5/29/74,1974 + + + + + + 299 + 53 + Records,TRW Reductions,1973-1975 + + + + + + 299 + 54 + Records,Justice, Mary Coleman, 6/4/74,1974 + + + + + + 299 + 55 + Records,ESCH Forum, 6/28/74, 2 folders,1974 + + + + + + 299 + 55 + Records,ESCH Forum, 6/28/74, 2 folders,1974 + + + + + + 299 + 56 + Records,National Council,1973-1975 + + + + + + 299 + 57 + Records,ESCH,1973-1975 + + + + + + 299 + 58 + Records,Pension Reform, 8/16/74,1974 + + + + + + 299 + 59 + Records,Cars and Trucks, Fuel Economy Standards, 2/1/74,1974 + + + + + + 299 + 60 + Records,Lincoln Day, Salem, NH, 2/9/74,1974 + + + + + + 299 + 61 + Records,Cast Medals Federation, 2/19/74,1974 + + + + + + 299 + 62 + Records,Busing Testimony, Judicial Committee, 2/19/74,1974 + + + + + + 299 + 63 + Records,Emergency Energy Bill, 2/21/74,1974 + + + + + + 299 + 64 + Records,Jackson, Lincoln Day, 2/22/74,1974 + + + + + + 299 + 65 + Records,Michigan Jaycees, 2/23/74,1974 + + + + + + 299 + 66 + Records,Fort Myers Lincoln Day, 3/9/74,1974 + + + + + + 299 + 67 + Records,Hearst Youth Foundation, 1975,1975 + + + + + + 299 + 68 + Records,October Speeches, Draft 10/24/74,1974 + + + + + + 299 + 69 + Records,Presidential Classroom, 3-4/1974,1974 + + + + + + 299 + 70 + Records,Chamberlain Retirement Party, Lansing, 2/13/75,1975 + + + + + + 299 + 71 + Records,Labor Speeches,1973-1975 + + + + + + 300 + 1 + Records,China Trip, Speech Material,1973-1978 + + + + + + 300 + 2 + Records,Lincoln Day, Speech Material,1973-1978 + + + + + + 300 + 3 + Records,Miscellaneous Notes, undated,1973-1978 + + + + + + 300 + 4 + Records,Ford Presidency, 1975 Speech,1975 + + + + + + 300 + 5 + Records,Walker Speech Draft,1973-1978 + + + + + + 300 + 6 + Records,Miscellaneous Speeches, 1974-5 and undated,1974-1975 + + + + + + 300 + 7 + Records,Energy Speech Material,1973-1978 + + + + + + 300 + 8 + Records,What's Right About America,1973-1978 + + + + + + 300 + 9 + Records,Congress,1973-1978 + + + + + + 300 + 10 + Records,Michigan Sales Tax Proposal,1973-1978 + + + + + + 300 + 11 + Records,Michigan Mass Transit,1973-1978 + + + + + + 300 + 12 + Records,Senate Cloture Rule,1973-1978 + + + + + + 300 + 13 + Records,Great Lakes Pollution, 1971-2,1971-1972 + + + + + + 300 + 14 + Records,Abortion,1973-1978 + + + + + + 300 + 15 + Records,Byington Nomination,1973-1978 + + + + + + 300 + 16 + Records,Clean Air Act Amendments (S 3219),1973-1978 + + + + + + 300 + 17 + Records,Criminal Justice Reform Act (S 1),1973-1978 + + + + + + 300 + 18 + Records,Michigan Rail Service,1973-1978 + + + + + + 300 + 19 + Records,Sleeping Bear Dunes,1973-1978 + + + + + + 300 + 20 + Records,Speech Material,1973-1978 + + + + + + 300 + 21 + Records,Biography,1973-1978 + + + + + + 300 + 22 + Records,Biography: Some Highlights in the Career of Bob Griffin, 2 folders,1973-1978 + + + + + + 300 + 23 + Records,Biography: Some Highlights in the Career of Bob Griffin, 2 folders,1973-1978 + + + + + + 300 + 24 + Records,What Others Say about Bob Griffin: General,1973-1978 + + + + + + 300 + 25 + Records,What Others Say about Bob Griffin: Editorials,1973-1978 + + + + + + 300 + 26 + Records,What Others Say about Bob Griffin: Columns,1973-1978 + + + + + + 300 + 27 + Records,What Others Say about Bob Griffin: Others,1973-1978 + + + + + + 300 + 28 + Records,Agriculture: Food Prices and Farm Income,1973-1978 + + + + + + 300 + 29 + Records,Agriculture: Sugar,1973-1978 + + + + + + 300 + 30 + Records,Agriculture: Transportation Strikes,1973-1978 + + + + + + 300 + 31 + Records,Agriculture: Hot Dog Bill,1973-1978 + + + + + + 300 + 32 + Records,Agriculture: PBB,1973-1978 + + + + + + 300 + 33 + Records,Agriculture: OSHA Reforms,1973-1978 + + + + + + 300 + 34 + Records,Agriculture: Michigan Navy Beans,1973-1978 + + + + + + 300 + 35 + Records,Agriculture, Other Measures,1973-1978 + + + + + + 300 + 36 + Records,Auto Industry: Good Quotes,1973-1978 + + + + + + 300 + 37 + Records,Auto Industry: Emission and Safety Standards, General,1973-1978 + + + + + + 300 + 38 + Records,Auto Industry: Emission and Safety Standards, Airbags/Seatbelts,1973-1978 + + + + + + 300 + 39 + Records,Auto Industry: Emission and Safety Standards, Clean Air,1973-1978 + + + + + + 300 + 40 + Records,Auto Industry: Repeal of Excise Tax,1973-1978 + + + + + + 300 + 41 + Records,Auto Industry: United Auto Workers,1973-1978 + + + + + + 300 + 42 + Records,Auto Industry: VW Dumping,1973-1978 + + + + + + 300 + 43 + Records,Auto Industry: Other Measures,1973-1978 + + + + + + 300 + 44 + Records,Busing: The Griffin Proposal,1973-1978 + + + + + + 300 + 45 + Records,Busing: Historical Perspective,1973-1978 + + + + + + 300 + 46 + Records,Busing: Politics of Busing,1973-1978 + + + + + + 300 + 47 + Records,Busing: Courts and Common Sense,1973-1978 + + + + + + 300 + 48 + Records,Busing: Other Measures,1973-1978 + + + + + + 300 + 49 + Records,Civil Rights: Good Quotes,1973-1978 + + + + + + 300 + 50 + Records,Civil Rights: Equal Rights for Women,1973-1978 + + + + + + 300 + 51 + Records,Civil Rights: 1970 Voting Rights Act,1973-1978 + + + + + + 300 + 52 + Records,Civil Rights: Equal Employment Opportunities,1973-1978 + + + + + + 300 + 53 + Records,Civil Rights: Indian Rights,1973-1978 + + + + + + 300 + 54 + Records,Civil Rights: Other Measures,1973-1978 + + + + + + 300 + 55 + Records,Commerce: Good Quotes,1973-1978 + + + + + + 300 + 56 + Records,Trade,1973-1978 + + + + + + 300 + 57 + Records,Trade/Cargo Preference,1973-1978 + + + + + + 300 + 58 + Records,Trade/Tourism,1973-1978 + + + + + + 300 + 59 + Records,Trade/Maritime,1973-1978 + + + + + + 300 + 60 + Records,Communications,1973-1978 + + + + + + 300 + 61 + Records,Communications, Media,1973-1978 + + + + + + 300 + 62 + Records,TV Sports Blackout,1973-1978 + + + + + + 300 + 63 + Records,Transportation,1973-1978 + + + + + + 300 + 64 + Records,Transportation/Michigan Railroads,1973-1978 + + + + + + 300 + 65 + Records,Transportation/Icebreakers,1973-1978 + + + + + + 300 + 66 + Records,Airlines,1973-1978 + + + + + + 300 + 67 + Records,Great Lakes,1973-1978 + + + + + + 300 + 68 + Records,Ludington Car Ferry,1973-1978 + + + + + + 300 + 69 + Records,Other Measures,1973-1978 + + + + + + 300 + 70 + Records,Congress: Good Quotes,1973-1978 + + + + + + 300 + 71 + Records,Congress: Congressional Performance,1973-1978 + + + + + + 300 + 72 + Records,Congress: Pay Raise,1973-1978 + + + + + + 300 + 73 + Records,Congress: Cloture, Rule XXII,1973-1978 + + + + + + 300 + 74 + Records,Congress: Hart, Phil,1973-1978 + + + + + + 300 + 75 + Records,Congress: Mansfield, Mike,1973-1978 + + + + + + 300 + 76 + Records,Congress: Ethics,1973-1978 + + + + + + 300 + 77 + Records,Congress: GOP Leadership Election, 1977,1973-1978 + + + + + + 301 + 1 + Records,Congress: RPG Retirement and Future,1978 + + + + + + 301 + 2 + Records,Congress: Committee Reorganization,1978 + + + + + + 301 + 3 + Records,Congress: Computer Contracts,1978 + + + + + + 301 + 4 + Records,Congress: Humphrey, Hubert,1978 + + + + + + 301 + 5 + Records,Congress: Other Measures,1978 + + + + + + 301 + 6 + Records,Federal Government Reform: Campaign Reform,1978 + + + + + + 301 + 7 + Records,Federal Government Reform: Voter Registration Bill,1978 + + + + + + 301 + 8 + Records,Federal Government Reform: Postal Service,1978 + + + + + + 301 + 9 + Records,Crime: Good Quotes,1978 + + + + + + 301 + 10 + Records,Crime: Aid to Crime Victims,1978 + + + + + + 301 + 11 + Records,Crime: Pornography Crackdown,1978 + + + + + + 301 + 12 + Records,Crime: Gun Control,1978 + + + + + + 301 + 13 + Records,Crime: Criminal Code, Reform of S 1,1978 + + + + + + 301 + 14 + Records,Crime: Prison Construction,1978 + + + + + + 301 + 15 + Records,Crime: Detroit Detention Center,1978 + + + + + + 301 + 16 + Records,Crime: Other Measures,1978 + + + + + + 301 + 17 + Records,Crime: Law Enforcement Revenue Sharing,1978 + + + + + + 301 + 18 + Records,Drugs: Good Quotes,1978 + + + + + + 301 + 19 + Records,Drugs: Drug Law Reform, Narcotics, Sentencing, and Seizure,1978 + + + + + + 301 + 20 + Records,Drugs: Alcoholism,1978 + + + + + + 301 + 21 + Records,Drugs: Other Measures,1978 + + + + + + 301 + 22 + Records,Economy: Good Quotes,1978 + + + + + + 301 + 23 + Records,Economy: Responsible Taxation,1978 + + + + + + 301 + 24 + Records,Economy: Responsible Taxation (Tax Cut Bill),1978 + + + + + + 301 + 25 + Records,Economy: Nixon, Ford, Carter Economic Policies,1978 + + + + + + 301 + 26 + Records,Economy: Revenue Sharing,1978 + + + + + + 301 + 27 + Records,Economy: Jobs and Tax Credits,1978 + + + + + + 301 + 28 + Records,Economy: Inflation,1978 + + + + + + 301 + 29 + Records,Economy: New York City Financial Crisis,1978 + + + + + + 301 + 30 + Records,Economy: Housing and Urban Affairs, General Budget,1978 + + + + + + 301 + 31 + Records,Economy: Pork Barrel Battle,1978 + + + + + + 301 + 32 + Records,Economy: Michigan,1978 + + + + + + 301 + 33 + Records,Economy: Other Measures,1978 + + + + + + 301 + 34 + Records,Economy: Responsible Taxation (Tax Reform),1978 + + + + + + 301 + 35 + Records,Economy: Responsible Taxation (Administration Proposals),1978 + + + + + + 301 + 36 + Records,Economy: Responsible Taxation (Tax Indexing),1978 + + + + + + 301 + 37 + Records,Education: Good Quotes,1978 + + + + + + 301 + 38 + Records,Education: Vocation, Training,1978 + + + + + + 301 + 39 + Records,Education: Student Loan Program,1978 + + + + + + 301 + 40 + Records,Education: Higher Education Tax Credits,1978 + + + + + + 301 + 41 + Records,Education: Other Measures,1978 + + + + + + 301 + 42 + Records,Education: Non-public Schools,1978 + + + + + + 301 + 43 + Records,Energy: Good Quotes,1978 + + + + + + 301 + 44 + Records,Energy: Alaska/Canada Gas Pipeline,1978 + + + + + + 301 + 45 + Records,Energy: Solar Energy,1978 + + + + + + 301 + 46 + Records,Energy: Administration Proposals,1978 + + + + + + 301 + 47 + Records,Energy: Natural Gas,1978 + + + + + + 301 + 48 + Records,Energy: Gasoline, Supplies, Consumption, and Prices,1978 + + + + + + 301 + 49 + Records,Energy: Other Measures,1978 + + + + + + 301 + 50 + Records,Environment: Good Quotes,1978 + + + + + + 301 + 51 + Records,Environment: Watchdog of the Great Lakes,1978 + + + + + + 301 + 52 + Records,Environment: Water Pollution, 1971-1978 Funds,1971-1978 + + + + + + 301 + 53 + Records,Environment: Reserve Mining Dumping,1978 + + + + + + 301 + 54 + Records,Environment: Wilderness Areas and Parks (Sleeping Bear Dunes),1978 + + + + + + 301 + 55 + Records,Environment: Wilderness Areas and Parks (Isle Royale),1978 + + + + + + 301 + 56 + Records,Environment: Wilderness Areas and Parks (Father Marquette Memorial),1978 + + + + + + 301 + 57 + Records,Environment: Wilderness Areas and Parks (Wild and Scenic Rivers),1978 + + + + + + 301 + 58 + Records,Environment: Animal Protection,1978 + + + + + + 301 + 59 + Records,Environment: Natural Disaster Assistance,1978 + + + + + + 301 + 60 + Records,Environment: Other Issues,1978 + + + + + + 301 + 61 + Records,Federal Government Reform: Good Quotes,1978 + + + + + + 301 + 62 + Records,Federal Government Reform: Direct Popular Election,1978 + + + + + + 301 + 63 + Records,Federal Government Reform: Executive Reorganization,1978 + + + + + + 301 + 64 + Records,Federal Government Reform: Congressional Reform,1978 + + + + + + 301 + 65 + Records,Federal Government Reform: Federal Employees, Civil Service,1978 + + + + + + 301 + 66 + Records,Federal Government Reform: Sunshine Legislation,1978 + + + + + + 301 + 67 + Records,Federal Government Reform: Sunset Legislation,1978 + + + + + + 301 + 68 + Records,Federal Government Reform: Big Government,1978 + + + + + + 301 + 69 + Records,Federal Government Reform: Other Measures,1978 + + + + + + 301 + 70 + Records,Foreign Affairs: Good Quotes,1978 + + + + + + 301 + 71 + Records,Foreign Affairs: Peking and Moscow,1978 + + + + + + 301 + 72 + Records,Foreign Affairs: Peking and Moscow (Soviet Union),1978 + + + + + + 301 + 73 + Records,Foreign Affairs: Middle East,1978 + + + + + + 301 + 74 + Records,Foreign Affairs: Middle East (Cyprus),1978 + + + + + + 301 + 75 + Records,Foreign Affairs: Middle East (Israel),1978 + + + + + + 301 + 76 + Records,Foreign Affairs: Middle East (Sinai Agreement),1978 + + + + + + 301 + 77 + Records,Foreign Affairs: Middle East (Egypt),1978 + + + + + + 301 + 78 + Records,Foreign Affairs: Panama Canal, Congressional Record,1978 + + + + + + 301 + 79 + Records,Foreign Affairs: Panama Canal, Newspaper Articles,1978 + + + + + + 301 + 80 + Records,Foreign Affairs: Panama Canal, Speeches,1978 + + + + + + 301 + 81 + Records,Foreign Affairs: Panama Canal, Reprints,1978 + + + + + + 301 + 82 + Records,Foreign Affairs: Foreign Trade (Foreign Military Sales),1978 + + + + + + 301 + 83 + Records,Foreign Affairs: Congress and Foreign Policy,1978 + + + + + + 301 + 84 + Records,Foreign Affairs: Foreign Assistance,1978 + + + + + + 301 + 85 + Records,Foreign Affairs: Indo-China (POW's and MIA's),1978 + + + + + + 302 + 1 + Records,Foreign Relations: Indo-China, POW's and MIA's,1978 + + + + + + 302 + 2 + Records,Foreign Relations: Africa, Angola,1978 + + + + + + 302 + 3 + Records,Foreign Relations: Asia, Pacific,1978 + + + + + + 302 + 4 + Records,Foreign Relations: Congress, Foreign Policy (Foreign Relations Committee),1978 + + + + + + 302 + 5 + Records,Foreign Relations: Congress, Foreign Policy (Detroit Passport Office),1978 + + + + + + 302 + 6 + Records,Foreign Relations: Europe, General,1978 + + + + + + 302 + 7 + Records,Foreign Relations: Human Rights,1978 + + + + + + 302 + 8 + Records,Foreign Relations: United Nations,1978 + + + + + + 302 + 9 + Records,Foreign Relations: Western Hemisphere,1978 + + + + + + 302 + 10 + Records,Foreign Relations: Kissinger,1978 + + + + + + 302 + 11 + Records,Foreign Relations: Administration Proposals,1978 + + + + + + 302 + 12 + Records,Foreign Relations: Other Measures,1978 + + + + + + 302 + 13 + Records,Health and Social Services: Good Quotes,1978 + + + + + + 302 + 14 + Records,Health and Social Services: Health Insurance,1978 + + + + + + 302 + 15 + Records,Health and Social Services: Feeding the Poor (Food Stamps),1978 + + + + + + 302 + 16 + Records,Health and Social Services: Feeding the Poor (Focus: Hope),1978 + + + + + + 302 + 17 + Records,Health and Social Services: Urban Homesteading,1978 + + + + + + 302 + 18 + Records,Health and Social Services: Welfare,1978 + + + + + + 302 + 19 + Records,Health and Social Services: Consumerism: Consumer Protection Agency,1978 + + + + + + 302 + 20 + Records,Health and Social Services: Administration Proposals,1978 + + + + + + 302 + 21 + Records,Health and Social Services: Consumerism,1978 + + + + + + 302 + 22 + Records,Health and Social Services: Other Measures,1978 + + + + + + 302 + 23 + Records,Health and Social Services: Abortion,1978 + + + + + + 302 + 24 + Records,Health and Social Services: Health & Consumers,1978 + + + + + + 302 + 25 + Records,Labor: Good Quotes,1978 + + + + + + 302 + 26 + Records,Labor: Landrum-Griffin,1978 + + + + + + 302 + 27 + Records,Labor: Landrum-Griffin (Labor Law Reform),1978 + + + + + + 302 + 28 + Records,Labor: U.S. Labor Court,1978 + + + + + + 302 + 29 + Records,Labor: Industry wide Strikes,1978 + + + + + + 302 + 30 + Records,Labor: Unemployment Compensation,1978 + + + + + + 302 + 31 + Records,Labor: Teamsters/Hoffa,1978 + + + + + + 302 + 32 + Records,Labor: Teamsters Pensions and Investigation,1978 + + + + + + 302 + 33 + Records,Labor: Common Situs,1978 + + + + + + 302 + 34 + Records,Labor: Transportation Strike,1978 + + + + + + 302 + 35 + Records,Labor: OSHA,1978 + + + + + + 302 + 36 + Records,Labor: Other Labor Achievements,1978 + + + + + + 302 + 37 + Records,National Defense: Good Quotes,1978 + + + + + + 302 + 38 + Records,National Defense: Arms Limitation Agreements,1978 + + + + + + 302 + 39 + Records,National Defense: Arms Limitation Agreements (Warnke Nomination),1978 + + + + + + 302 + 40 + Records,National Defense: Maintaining Our Strength,1978 + + + + + + 302 + 41 + Records,National Defense: Maintaining Our Strength (B-1 Bomber),1978 + + + + + + 302 + 42 + Records,National Defense: Maintaining Our Strength (XM-1 Tank),1978 + + + + + + 302 + 43 + Records,National Defense: Maintaining Our Strength (Lance Missile),1978 + + + + + + 302 + 44 + Records,National Defense: Maintaining Our Strength (Cruise Missile),1978 + + + + + + 302 + 45 + Records,National Defense: Maintaining Our Strength (Kincheloe),1978 + + + + + + 302 + 46 + Records,National Defense: Maintaining Our Strength (Seafarer),1978 + + + + + + 302 + 47 + Records,National Defense: Military Draft,1978 + + + + + + 302 + 48 + Records,National Defense: Servicemen, Veterans,1978 + + + + + + 302 + 49 + Records,National Defense: Servicemen and Veterans (Amnesty),1978 + + + + + + 302 + 50 + Records,National Defense: Other Measures,1978 + + + + + + 302 + 51 + Records,Miscellaneous: America,1978 + + + + + + 302 + 52 + Records,Miscellaneous: Bicentennial,1978 + + + + + + 302 + 53 + Records,Miscellaneous: Michigan Case,1978 + + + + + + 302 + 54 + Records,Miscellaneous: Other Measures,1978 + + + + + + 302 + 55 + Records,Miscellaneous: Personalities,1978 + + + + + + 302 + 56 + Records,Older Americans: Good Quotes,1978 + + + + + + 302 + 57 + Records,Older Americans: Comprehensive Reform,1978 + + + + + + 302 + 58 + Records,Older Americans: Medicare,1978 + + + + + + 302 + 59 + Records,Older Americans: Social Security,1978 + + + + + + 302 + 60 + Records,Older Americans: Other Accomplishments,1978 + + + + + + 302 + 61 + Records,Politics: President Nixon,1978 + + + + + + 302 + 62 + Records,Politics: President Ford,1978 + + + + + + 302 + 63 + Records,Politics: President Nixon (Watergate, general),1978 + + + + + + 302 + 64 + Records,Politics: President Nixon (Watergate, Ervin Committee),1978 + + + + + + 302 + 65 + Records,Politics: President Nixon (Watergate, Tapes),1978 + + + + + + 302 + 66 + Records,Politics: President Nixon (Watergate, Impeachment),1978 + + + + + + 302 + 67 + Records,Politics: President Nixon (Watergate, Nixon Resignation),1978 + + + + + + 302 + 68 + Records,Politics: President Nixon (Watergate, Nixon Pardon),1978 + + + + + + 302 + 69 + Records,Politics: Nomination as Vice President, Ford,1978 + + + + + + 302 + 70 + Records,Politics: Federal Building, Grand Rapids,1978 + + + + + + 302 + 71 + Records,Politics: President Carter,1978 + + + + + + 302 + 72 + Records,Politics: Vice President, Rockefeller,1978 + + + + + + 302 + 73 + Records,Politics: Vice President, Rockefeller (Nomination),1978 + + + + + + 302 + 74 + Records,Politics: Vice President, Official Residence,1978 + + + + + + 302 + 75 + Records,Politics: Vice President, Selection of...,1978 + + + + + + 302 + 76 + Records,Politics: Republican Politics, National,1978 + + + + + + 302 + 77 + Records,Politics: Republican Politics, Michigan,1978 + + + + + + 302 + 78 + Records,Politics: Elections, 1976, Presidential (Primaries),1976 + + + + + + 302 + 79 + Records,Politics: Elections, 1976, Presidential (Conventions),1976 + + + + + + 302 + 80 + Records,Politics: Elections, 1976, Presidential,1976 + + + + + + 303 + 1 + Records,Politics: Elections, Reform of Contested Election Procedure,1957-1965, 1978 + + + + + + 303 + 2 + Records,Politics: Elections, RPG Senatorial Campaign, 3 folders,1957-1965, 1978 + + + + + + 303 + 3 + Records,Politics: Elections, RPG Senatorial Campaign, 3 folders,1957-1965, 1978 + + + + + + 303 + 4 + Records,Politics: Elections, RPG Senatorial Campaign, 3 folders,1957-1965, 1978 + + + + + + 303 + 5 + Records,Politics: Nominations,1957-1965, 1978 + + + + + + 303 + 6 + Records,Politics: Other Measures,1957-1965, 1978 + + + + + + 303 + 7 + Records,Supreme Court: Good Quotes,1957-1965, 1978 + + + + + + 303 + 8 + Records,Supreme Court: Douglas Supreme Court Seat,1957-1965, 1978 + + + + + + 303 + 9 + Records,Supreme Court: Other Measures,1957-1965, 1978 + + + + + + 303 + 10 + Records,Levin: Post Primary,1957-1965, 1978 + + + + + + 303 + 11 + Records,Levin: Speeches, Debates,1957-1965, 1978 + + + + + + 303 + 12 + Records,Levin: Polls,1957-1965, 1978 + + + + + + 303 + 13 + Records,Levin: Campaign Funds,1957-1965, 1978 + + + + + + 303 + 14 + Records,Levin: Levin vs. Griffin on the Issues,1957-1965, 1978 + + + + + + 303 + 15 + Records,Levin: Articles, Voting Records,1957-1965, 1978 + + + + + + 303 + 16 + Records,Levin: Levin Ad No. 1, Answer to Charges,1957-1965, 1978 + + + + + + 303 + 17 + Records,Levin: Memos Done,1957-1965, 1978 + + + + + + 303 + 18 + Records,Levin: Levin Issues Book,1957-1965, 1978 + + + + + + 303 + 19 + Records,Levin: Griffin, Riegle Vote Comparison,1957-1965, 1978 + + + + + + 303 + 20 + Records,Levin: UAW (1978 Newspaper Clipping),1957-1965, 1978 + + + + + + 303 + 21 + Records,Governor's Race,1957-1965, 1978 + + + + + + 303 + 22 + Records,Honorariums,1957-1965, 1978 + + + + + + 303 + 23 + Records,Griffin Spending Cuts,1957-1965, 1978 + + + + + + 303 + 24 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 25 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 26 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 27 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 28 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 29 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 30 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 31 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 32 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 33 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 34 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 35 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 36 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 37 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 38 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 39 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 40 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 41 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 42 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 43 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 44 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 45 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 47 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 48 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 49 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 50 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 51 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 52 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 53 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 54 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 55 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 56 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 57 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 58 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 59 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 60 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 61 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 62 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 63 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 64 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 65 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 66 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 67 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 68 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 69 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 70 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 71 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 72 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 73 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 74 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 75 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 76 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 77 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 78 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 79 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 80 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 81 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 82 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 83 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 84 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 85 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 86 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 87 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 88 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 89 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 90 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 91 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 92 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 93 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 94 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 95 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 96 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 97 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 98 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 99 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 100 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 101 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 102 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 103 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 104 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 105 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 106 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 107 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 108 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 109 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 110 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 111 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 112 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 113 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 114 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 115 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 116 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 117 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 118 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 119 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 120 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 121 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 122 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 123 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 124 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 125 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 126 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 127 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 128 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 129 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 130 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 131 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 132 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 133 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 134 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 135 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 136 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 137 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 138 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 139 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 140 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 141 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 142 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 143 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 144 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 145 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 146 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 147 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 148 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 149 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 150 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 151 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 152 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 153 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 154 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 155 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 156 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 157 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 158 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 159 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 160 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 161 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 162 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 163 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 164 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 165 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 166 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 167 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 168 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 169 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 170 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 171 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 172 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 173 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 174 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 175 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 176 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 177 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 178 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 179 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 180 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 181 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 182 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 183 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 184 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 185 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 186 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 187 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 188 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 303 + 189 + Records,Photographs, Senator with Visitors to Washington Office, 166 folders,1957-1965, 1978 + + + + + + 304 + 1 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 2 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 3 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 4 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 5 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 6 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 7 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 8 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 9 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 10 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 11 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 12 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 13 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 14 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 15 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 16 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 17 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 18 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 19 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 20 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 21 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 22 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 23 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 24 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 25 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 26 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 27 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 28 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 29 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 30 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 31 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 32 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 33 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 34 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 35 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 36 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 37 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 38 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 39 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 40 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 41 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 42 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 43 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 44 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 45 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 46 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 47 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 48 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 49 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 50 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 51 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 52 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 53 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 54 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 55 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 56 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 57 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 58 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 59 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 60 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 61 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 62 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 63 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 64 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 65 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 66 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 67 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 68 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 69 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 70 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 71 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 72 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 73 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 74 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 75 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 76 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 77 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 78 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 79 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 80 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 81 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 82 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 83 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 84 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 85 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 86 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 87 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 88 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 89 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 90 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 91 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 92 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 93 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 94 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 95 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 96 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 97 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 98 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 99 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 100 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 101 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 102 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 103 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 104 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 105 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 106 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 107 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 108 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 109 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 110 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 111 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 112 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 113 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 114 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 115 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 116 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 117 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 118 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 119 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 120 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 121 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 122 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 123 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 124 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 125 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 126 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 127 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 128 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 129 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 130 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 131 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 132 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 133 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 134 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 135 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 136 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 137 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 304 + 138 + Records,Photographs, Senator with Visitors to Washington Office, 138 folders,1966-1971 + + + + + + 305 + 1 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 2 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 3 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 4 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 5 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 6 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 7 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 8 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 9 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 10 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 11 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 12 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 13 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 14 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 15 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 16 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 17 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 18 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 19 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 20 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 21 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 22 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 23 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 24 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 25 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 26 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 27 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 28 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 29 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 30 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 31 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 32 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 33 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 34 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 35 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 36 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 37 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 38 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 39 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 40 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 41 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 42 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 43 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 44 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 45 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 46 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 47 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 48 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 49 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 50 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 51 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 52 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 53 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 54 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 55 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 56 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 57 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 58 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 59 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 60 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 61 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 62 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 63 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 64 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 65 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 66 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 67 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 68 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 69 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 70 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 71 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 72 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 73 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 74 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 75 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 76 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 77 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 78 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 79 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 80 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 81 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 82 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 83 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 84 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 85 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 86 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 87 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 88 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 89 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 90 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 91 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 92 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 93 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 94 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 95 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 96 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 97 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 98 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 99 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 100 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 101 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 102 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 103 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 104 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 105 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 106 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 107 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 108 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 109 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 110 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 111 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 112 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 113 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 114 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 115 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 116 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 117 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 118 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 119 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 120 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 121 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 122 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 123 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 124 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 125 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 126 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 127 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 128 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 129 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 130 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 131 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 132 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 133 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 134 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 135 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 136 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 137 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 138 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 139 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 140 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 141 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 142 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 143 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 144 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 145 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 146 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 147 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 148 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 149 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 150 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 151 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 152 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 153 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 154 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 155 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 156 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 157 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 158 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 159 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 160 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 161 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 162 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 163 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 164 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 165 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 166 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 167 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 168 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 169 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 170 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 171 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 172 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 173 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 174 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 175 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 176 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 177 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 178 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 179 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 180 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 181 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 182 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 183 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 184 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 185 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 186 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 187 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 188 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 189 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 190 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 191 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 192 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 193 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 194 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 195 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 196 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 197 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 198 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 199 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 200 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 201 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 202 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 203 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 204 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 205 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 206 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 207 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 208 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 209 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 210 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 211 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 305 + 212 + Records,Photographs, Senator with Visitors to Washington Office, 212 folders,1972-1974 + + + + + + 306 + 1 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 2 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 3 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 4 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 5 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 6 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 7 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 8 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 9 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 10 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 11 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 12 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 13 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 14 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 15 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 16 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 17 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 18 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 19 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 20 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 21 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 22 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 23 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 24 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 25 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 26 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 27 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 28 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 29 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 30 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 31 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 32 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 33 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 34 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 35 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 36 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 37 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 38 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 39 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 40 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 41 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 42 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 43 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 44 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 45 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 46 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 47 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 48 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 49 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 50 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 51 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 52 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 53 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 54 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 55 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 56 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 57 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 58 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 59 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 60 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 61 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 62 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 63 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 64 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 65 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 66 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 67 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 68 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 69 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 70 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 71 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 72 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 73 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 74 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 75 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 76 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 77 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 78 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 79 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 80 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 81 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 82 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 83 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 84 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 85 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 86 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 87 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 88 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 89 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 90 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 91 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 92 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 93 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 94 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 95 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 96 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 97 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 98 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 99 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 100 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 101 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 102 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 103 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 104 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 105 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 106 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 107 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 108 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 109 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 110 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 111 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 112 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 113 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 114 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 115 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 116 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 117 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 118 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 119 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 120 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 121 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 122 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 123 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 124 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 125 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 126 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 127 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 128 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 129 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 130 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 131 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 132 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 133 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 134 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 136 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 137 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 138 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 139 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 140 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 141 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 142 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 143 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 144 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 145 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 146 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 147 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 148 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 149 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 150 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 151 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 152 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 153 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 154 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 155 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 156 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 157 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 158 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 159 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 160 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 161 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 162 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 163 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 164 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 165 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 166 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 167 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 168 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 169 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 170 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 171 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 172 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 173 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 174 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 175 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 176 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 177 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 178 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 179 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 180 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 181 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 182 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 183 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 184 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 185 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 186 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 187 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 188 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 189 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 190 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 191 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 192 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 193 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 194 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 195 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 196 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 197 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 198 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 199 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 200 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 201 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 202 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 203 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 204 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 205 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 206 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 207 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 208 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 209 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 210 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 211 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 212 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 213 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 214 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 215 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 216 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 217 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 218 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 219 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 220 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 221 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 222 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 223 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 224 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 225 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 226 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 227 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 228 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 229 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 230 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 306 + 231 + Records,Photographs, Senator with Visitors to Washington Office, 231 folders,1975-1977 + + + + + + 307 + 1 + Records,Saints and Sinners, 3/25/76,1976 + + + + + + 307 + 2 + Records,Time, Inc., Leadership Conference, 9/26/76, 2 folders,1976 + + + + + + 307 + 3 + Records,Time, Inc., Leadership Conference, 9/26/76, 2 folders,1976 + + + + + + 307 + 4 + Records,Cleveland Speech, 10/7/96,1996 + + + + + + 307 + 5 + Records,Grocery Manufacturers, 12/8/76,1976 + + + + + + 307 + 6 + Records,Gelman Instrument, 2/16/77,1977 + + + + + + 307 + 7 + Records,Ukrainian Day, 1/23/77,1977 + + + + + + 307 + 8 + Records,Lincoln Day Speeches, 1967-1973,1967-1973 + + + + + + 307 + 9 + Records,Lincoln Day Reference, 1974,1974 + + + + + + 307 + 10 + Records,Griffin Political Speeches, 1973-1974,1973-1974 + + + + + + 307 + 11 + Records,RPG Retrospective, Staff Drafts,1976-1978 + + + + + + 307 + 12 + Records,RPG Retrospective, Minority Committee Staff,1976-1978 + + + + + + 307 + 13 + Records,Speeches, Material, 1974-1978,1974-1978 + + + + + + 307 + 14 + Records,Speeches, Drafts, 1974-1978, 2 folders,1974-1978 + + + + + + 307 + 15 + Records,Speeches, Drafts, 1974-1978, 2 folders,1974-1978 + + + + + + 307 + 16 + Records,Future Speeches, 1977,1977 + + + + + + 307 + 17 + Records,Humor File, I and II, 2 folders,1976-1978 + + + + + + 307 + 18 + Records,Humor File, I and II, 2 folders,1976-1978 + + + + + + 307 + 19 + Records,Briefing Book,1976-1978 + + + + + + 307 + 20 + Records,Campaign Releases,1976-1978 + + + + + + 307 + 21 + Records,First Debate,1976-1978 + + + + + + 307 + 22 + Records,Levin,1976-1978 + + + + + + 307 + 23 + Records,Literature,1976-1978 + + + + + + 307 + 24 + Records,Memos, Correspondence,1976-1978 + + + + + + 307 + 25 + Records,Opportunities,1976-1978 + + + + + + 307 + 26 + Records,Patterson Suit,1976-1978 + + + + + + 307 + 27 + Records,Polls, Editorials,1976-1978 + + + + + + 307 + 28 + Records,Press Hit,1976-1978 + + + + + + 307 + 29 + Records,Radio Spots,1976-1978 + + + + + + 307 + 30 + Records,Schedules,1976-1978 + + + + + + 307 + 31 + Records,Speeches,1976-1978 + + + + + + 307 + 32 + Records,Voting Record,1976-1978 + + + + + + 307 + 33 + Records,RPG Retirement,1976-1978 + + + + + + 307 + 34 + Records,Pre, 2/13/78,1978 + + + + + + 307 + 35 + Records,Immediate Reaction, 2/78,1978 + + + + + + 307 + 36 + Records,May,1976-1978 + + + + + + 307 + 37 + Records,June,1976-1978 + + + + + + 307 + 38 + Records,July,1976-1978 + + + + + + 307 + 39 + Records,August,1976-1978 + + + + + + 307 + 40 + Records,September,1976-1978 + + + + + + 307 + 41 + Records,October,1976-1978 + + + + + + 307 + 42 + Records,November,1976-1978 + + + + + + 308 + 1 + Records,Biographical Sketch,1976-1978 + + + + + + 308 + 2 + Records,Hamilton and Howard,1976-1978 + + + + + + 308 + 3 + Records,Mailings,1976-1978 + + + + + + 308 + 4 + Records,Miscellaneous,1976-1978 + + + + + + 308 + 5 + Records,Newsletter Ideas,1976-1978 + + + + + + 308 + 6 + Records,Newsletter Materials,1976-1978 + + + + + + 308 + 7 + Records,Pending,1976-1978 + + + + + + 308 + 8 + Records,Foreign Policy,1976-1978 + + + + + + 308 + 9 + Records,Abortion,1976-1978 + + + + + + 308 + 10 + Records,Airbags I and II,1976-1978 + + + + + + 308 + 11 + Records,Auto Strike,1976-1978 + + + + + + 308 + 12 + Records,Cargo Preference,1976-1978 + + + + + + 308 + 13 + Records,Cargo Preference, Deep Seabed Mining,1976-1978 + + + + + + 308 + 14 + Records,Cargo Preference, Liquified Natural Gas,1976-1978 + + + + + + 308 + 15 + Records,Clean Air,1976-1978 + + + + + + 308 + 16 + Records,Computer Scandal,1976-1978 + + + + + + 308 + 17 + Records,Consumer Protection Agency,1976-1978 + + + + + + 308 + 18 + Records,Energy,1976-1978 + + + + + + 308 + 19 + Records,Energy Conference, 1978,1978 + + + + + + 308 + 20 + Records,Equal Rights Amendment,1976-1978 + + + + + + 308 + 21 + Records,S. 974-Excise Tax,1976-1978 + + + + + + 308 + 22 + Records,Federal Election Commission,1976-1978 + + + + + + 308 + 23 + Records,Fish Flap,1976-1978 + + + + + + 308 + 24 + Records,Focus: Hope,1976-1978 + + + + + + 308 + 25 + Records,Fuel Economy,1976-1978 + + + + + + 308 + 26 + Records,GOP Convention, 1976,1976-1978 + + + + + + 308 + 27 + Records,Great Lakes,1976-1978 + + + + + + 308 + 28 + Records,Hart, Phil,1976-1978 + + + + + + 308 + 29 + Records,Jobs, Counter cyclical,1976-1978 + + + + + + 308 + 30 + Records,Kincheloe Air Force Base,1976-1978 + + + + + + 308 + 31 + Records,Labor Reform,1976-1978 + + + + + + 308 + 32 + Records,Lake Survey Center,1976-1978 + + + + + + 308 + 33 + Records,Lance Missile,1976-1978 + + + + + + 308 + 34 + Records,Legislation, 1978,1978 + + + + + + 308 + 35 + Records,MIA's,1976-1978 + + + + + + 308 + 36 + Records,Michigan Presidential Primary,1976-1978 + + + + + + 308 + 37 + Records,Miscellaneous Michigan Issues,1976-1978 + + + + + + 308 + 38 + Records,Natural Gas,1976-1978 + + + + + + 308 + 39 + Records,Panama Canal,1976-1978 + + + + + + 308 + 40 + Records,Pay Raise,1976-1978 + + + + + + 308 + 41 + Records,PBB,1976-1978 + + + + + + 308 + 42 + Records,Pooling Agreements,1976-1978 + + + + + + 308 + 43 + Records,Presidential Campaign,1976-1978 + + + + + + 308 + 44 + Records,Prison Construction (S 1245),1976-1978 + + + + + + 308 + 45 + Records,Reserve Mining,1976-1978 + + + + + + 308 + 46 + Records,Runaway Fathers,1976-1978 + + + + + + 308 + 47 + Records,S 1,1976-1978 + + + + + + 308 + 48 + Records,Hugh Scott,1976-1978 + + + + + + 308 + 49 + Records,Seafarer,1976-1978 + + + + + + 308 + 50 + Records,Sports Blackout Legislation,1976-1978 + + + + + + 308 + 51 + Records,Tax Indexation,1976-1978 + + + + + + 308 + 52 + Records,Teamsters,1976-1978 + + + + + + 308 + 53 + Records,Urban Homesteading,1976-1978 + + + + + + 308 + 54 + Records,Van Dam,1976-1978 + + + + + + 308 + 55 + Records,Veterans Hospital,1976-1978 + + + + + + 308 + 56 + Records,Voter Registration,1976-1978 + + + + + + 308 + 57 + Records,Warnke,1976-1978 + + + + + + 308 + 58 + Records,Water Conservation,1976-1978 + + + + + + 308 + 59 + Records,Notes, Press Conferences, Meetings, Etc.,1976-1978 + + + + + + 308 + 60 + Records,Newsletters,1976-1978 + + + + + + 308 + 61 + Records,Press Releases, 1975,1975 + + + + + + 308 + 62 + Records,Press Releases, Biographical Information,1976-1978 + + + + + + 309 + 1 + Records,Tax Indexation,1966-1972, 1976-1978 + + + + + + 309 + 2 + Records,RPG Stop U.S. Funds to Anti-Israel Campaign,1966-1972, 1976-1978 + + + + + + 309 + 3 + Records,Grand Marais Harbor,1966-1972, 1976-1978 + + + + + + 309 + 4 + Records,Rail Strike,1966-1972, 1976-1978 + + + + + + 309 + 5 + Records,Bruce Catton, Civil War Reporter,1966-1972, 1976-1978 + + + + + + 309 + 6 + Records,Mideast Resolution,1966-1972, 1976-1978 + + + + + + 309 + 7 + Records,Tuition Tax Credit, Radio Spot,1966-1972, 1976-1978 + + + + + + 309 + 8 + Records,Boating Safety,1966-1972, 1976-1978 + + + + + + 309 + 9 + Records,Academy Nominations, 1978,1978 + + + + + + 309 + 10 + Records,RPG Battling the Bureaucracy,1966-1972, 1976-1978 + + + + + + 309 + 11 + Records,RPG Urges Relief of U.S. Citizens,1966-1972, 1976-1978 + + + + + + 309 + 12 + Records,PCP,1966-1972, 1976-1978 + + + + + + 309 + 13 + Records,Educational Savings Bonds Program,1966-1972, 1976-1978 + + + + + + 309 + 14 + Records,Icebreaker,1966-1972, 1976-1978 + + + + + + 309 + 15 + Records,Holocaust,1966-1972, 1976-1978 + + + + + + 309 + 16 + Records,Press Releases, 1976,1976 + + + + + + 309 + 17 + Records,Senate Youth Program,1966-1972, 1976-1978 + + + + + + 309 + 18 + Records,Cargo Preference for San Diego Tribune,1966-1972, 1976-1978 + + + + + + 309 + 19 + Records,Public Works Bill,1966-1972, 1976-1978 + + + + + + 309 + 20 + Records,Griffin Donates Papers to CMU,1966-1972, 1976-1978 + + + + + + 309 + 21 + Records,Little Economist,1966-1972, 1976-1978 + + + + + + 309 + 22 + Records,Thaddeus Kosciuszko,1966-1972, 1976-1978 + + + + + + 309 + 23 + Records,Senator James Allen,1966-1972, 1976-1978 + + + + + + 309 + 24 + Records,Hubert Humphrey,1966-1972, 1976-1978 + + + + + + 309 + 25 + Records,Metcalf Eulogy,1966-1972, 1976-1978 + + + + + + 309 + 26 + Records,Hart Memorial Concert,1966-1972, 1976-1978 + + + + + + 309 + 27 + Records,Vendenberg Building,1966-1972, 1976-1978 + + + + + + 309 + 28 + Records,Interlochen,1966-1972, 1976-1978 + + + + + + 309 + 29 + Records,Good Morning America, 5/12/76,1976 + + + + + + 309 + 30 + Records,Working Files (old),1966-1972, 1976-1978 + + + + + + 309 + 31 + Records,Helen Cope,1966-1972, 1976-1978 + + + + + + 309 + 32 + Records,Panax Cope,1966-1972, 1976-1978 + + + + + + 309 + 33 + Records,RPG Trip, South Pacific,1966-1972, 1976-1978 + + + + + + 309 + 34 + Records,RPG Trip, Japan, Taiwan,1966-1972, 1976-1978 + + + + + + 309 + 35 + Records,WGPR Opening, 9/23/73,1973 + + + + + + 309 + 36 + Records,Miss Deaf America, 1976,1976 + + + + + + 309 + 37 + Records,Martin Marietta,1966-1972, 1976-1978 + + + + + + 309 + 38 + Records,Air Bag Reprint, American Legion Magazine, 6/77,1977 + + + + + + 309 + 39 + Records,Air Bags, Floor Statement,1966-1972, 1976-1978 + + + + + + 309 + 40 + Records,Michigan Cancer Foundation,1966-1972, 1976-1978 + + + + + + 309 + 41 + Records,Biographies,1966-1972, 1976-1978 + + + + + + 309 + 42 + Records,Suggested Speech Information,1966-1972, 1976-1978 + + + + + + 309 + 43 + Records,Speech Information, 5/17/76,1976 + + + + + + 309 + 44 + Records,Academy Nominations, 1976,1976 + + + + + + 309 + 45 + Records,Academy Nominations, 1977,1977 + + + + + + 309 + 46 + Records,Newsletter, 1975,1975 + + + + + + 309 + 47 + Records,Newsletter, 1976,1976 + + + + + + 309 + 48 + Records,Newsletter, 12/76,1976 + + + + + + 309 + 49 + Records,Newsletter, Spring 1978,1978 + + + + + + 309 + 50 + Records,Welcome to Washington Brochure,1966-1972, 1976-1978 + + + + + + 309 + 51 + Records,Up-Front Materials,1966-1972, 1976-1978 + + + + + + 309 + 52 + Records,Postcards,1966-1972, 1976-1978 + + + + + + 309 + 53 + Records,Floor Statement on Fiscal Responsibility of Congress,1966-1972, 1976-1978 + + + + + + 309 + 54 + Records,Speech Material, Miami, 1972,1972 + + + + + + 309 + 55 + Records,Floor Statement, Tribute to Sen. Len Jordan, 1976,1976 + + + + + + 309 + 56 + Records,Speech Material, Great Lakes Environment Conference,1966-1972, 1976-1978 + + + + + + 309 + 57 + Records,Speech Material, 1969-1971,1969-1971 + + + + + + 309 + 58 + Records,Speech Material, Gun Control, Government Spending, 1966,1966 + + + + + + 309 + 59 + Records,Speech Material, Truth in Government, 1966,1966 + + + + + + 309 + 60 + Records,Speech Material, Michigan State Contractors and Suppliers,1966-1972, 1976-1978 + + + + + + 309 + 61 + Records,Speech Material, Inflation, 1966,1966 + + + + + + 309 + 62 + Records,Speech Material, Commencements, 3 folders,1966-1972, 1976-1978 + + + + + + 309 + 63 + Records,Speech Material, Commencements, 3 folders,1966-1972, 1976-1978 + + + + + + 309 + 64 + Records,Speech Material, Commencements, 3 folders,1966-1972, 1976-1978 + + + + + + 310 + 1 + Records,Speeches, 1970-1976,1970-1976 + + + + + + 310 + 2 + Records,Speeches, 1970-1971,1970-1971 + + + + + + 310 + 3 + Records,Speeches, 1973-1974,1973-1974 + + + + + + 310 + 4 + Records,Griffin Speech Notes, Inflation, Economics, High Interest, 1966,1966 + + + + + + 310 + 5 + Records,Griffin Speech Notes, 1972,1972 + + + + + + 310 + 6 + Records,Quotations and Speech Shorts,1966-1972, 1976-1978 + + + + + + 310 + 7 + Records,Speech Material, Labor,1966-1972, 1976-1978 + + + + + + 310 + 8 + Records,Speech Material, Economy,1966-1972, 1976-1978 + + + + + + 310 + 9 + Records,Speech Drafts,1966-1972, 1976-1978 + + + + + + 310 + 10 + Records,Current Political Speech Material, 1973-1974,1973-1974 + + + + + + 310 + 11 + Records,General Remarks on Watergate, Spring 1973,1973 + + + + + + 310 + 12 + Records,Nat McKittrich,1966-1972, 1976-1978 + + + + + + 310 + 13 + Records,Speech, Comparing GOP with Democrats Since 1900,1900 + + + + + + 310 + 14 + Records,Speech Material, Republicanism, 1966,1966 + + + + + + 310 + 15 + Records,Griffin Quotes from Famous Issues and Speeches,1966-1972, 1976-1978 + + + + + + 310 + 16 + Records,Transcript, Issues and Answers@ RPG with Sen. Byrd,1966-1972, 1976-1978 + + + + + + 310 + 17 + Records,Ask Senator Griffin Storybook@,1966-1972, 1976-1978 + + + + + + 310 + 18 + Records,Teamsters: Index,1966-1972, 1976-1978 + + + + + + 310 + 19 + Records,Teamsters: Congress Related,1966-1972, 1976-1978 + + + + + + 310 + 20 + Records,Teamsters: Editorials, Michigan,1966-1972, 1976-1978 + + + + + + 310 + 21 + Records,Teamsters: Editorials, Other than Michigan,1966-1972, 1976-1978 + + + + + + 310 + 22 + Records,Teamsters: Executive Branch Probes,1966-1972, 1976-1978 + + + + + + 310 + 23 + Records,Teamsters: Fitzsimmons Responses,1966-1972, 1976-1978 + + + + + + 310 + 24 + Records,Teamsters: Giacalone,1966-1972, 1976-1978 + + + + + + 310 + 25 + Records,Teamsters: Grand Jury, Detroit,1966-1972, 1976-1978 + + + + + + 310 + 26 + Records,Teamsters: Hoffa, Miscellaneous,1966-1972, 1976-1978 + + + + + + 310 + 27 + Records,Teamsters: Information and Tips,1966-1972, 1976-1978 + + + + + + 310 + 28 + Records,Teamsters: Interested News People,1966-1972, 1976-1978 + + + + + + 310 + 29 + Records,Teamsters: Letters and Mail,1966-1972, 1976-1978 + + + + + + 310 + 30 + Records,Teamsters: Outdated Drafts,1966-1972, 1976-1978 + + + + + + 310 + 31 + Records,Teamsters: Permanent Investigating Subcommittee,1966-1972, 1976-1978 + + + + + + 310 + 32 + Records,Teamsters: Press Coverage, Specific,1966-1972, 1976-1978 + + + + + + 310 + 33 + Records,Teamsters: Professional Drivers Council,1966-1972, 1976-1978 + + + + + + 310 + 34 + Records,Teamsters: Resolution,1966-1972, 1976-1978 + + + + + + 310 + 35 + Records,Teamsters: Support, Non-Editorial,1966-1972, 1976-1978 + + + + + + 310 + 36 + Records,Teamsters: Mob,1966-1972, 1976-1978 + + + + + + 310 + 37 + Records,Teamsters: General,1966-1972, 1976-1978 + + + + + + 310 + 38 + Records,Labor: Common Situs,1966-1972, 1976-1978 + + + + + + 310 + 39 + Records,Labor: Jobs,1966-1972, 1976-1978 + + + + + + 310 + 40 + Records,Labor: Miscellaneous,1966-1972, 1976-1978 + + + + + + 310 + 41 + Records,Labor: Landrum-Griffin,1966-1972, 1976-1978 + + + + + + 310 + 42 + Records,Labor: Pensions,1966-1972, 1976-1978 + + + + + + 310 + 43 + Records,Politics: Political Ethics and Reform,1966-1972, 1976-1978 + + + + + + 310 + 44 + Records,Politics: Miscellaneous,1966-1972, 1976-1978 + + + + + + 310 + 45 + Records,Politics: Voting Rights,1966-1972, 1976-1978 + + + + + + 310 + 46 + Records,Politics: Wyman-Durkin,1966-1972, 1976-1978 + + + + + + 310 + 47 + Records,Politics: Ford's Tax and Spending Cut,1966-1972, 1976-1978 + + + + + + 310 + 48 + Records,Politics: Presidential,1966-1972, 1976-1978 + + + + + + 310 + 49 + Records,Politics: Rumsfeld,1966-1972, 1976-1978 + + + + + + 310 + 50 + Records,Politics: Vice President,1966-1972, 1976-1978 + + + + + + 310 + 51 + Records,Miscellaneous: Newsweek Quote,1966-1972, 1976-1978 + + + + + + 310 + 52 + Records,Miscellaneous: Icebreaker,1966-1972, 1976-1978 + + + + + + 310 + 53 + Records,Miscellaneous: Railroads, Car ferries,1966-1972, 1976-1978 + + + + + + 310 + 54 + Records,Miscellaneous: Press,1966-1972, 1976-1978 + + + + + + 310 + 55 + Records,Miscellaneous: Panama Canal, Working File,1966-1972, 1976-1978 + + + + + + 310 + 56 + Records,Miscellaneous: Panama Canal, Baker-Byrd Amendment, 3/6/78,1978 + + + + + + 310 + 57 + Records,Miscellaneous: Alaska Lands, 9/19/78,1978 + + + + + + 310 + 58 + Records,Miscellaneous: RPG's Campaign Speech File,1966-1972, 1976-1978 + + + + + + 310 + 59 + Records,Miscellaneous: Foreign Policy, Carter,1966-1972, 1976-1978 + + + + + + 310 + 60 + Records,Miscellaneous: Lockheed, Carter,1966-1972, 1976-1978 + + + + + + 310 + 61 + Records,Miscellaneous: Busing,1966-1972, 1976-1978 + + + + + + 310 + 62 + Records,Miscellaneous: Campaign Organization and Committee,1966-1972, 1976-1978 + + + + + + 310 + 63 + Records,Miscellaneous: Crime (Ford),1966-1972, 1976-1978 + + + + + + 310 + 64 + Records,Miscellaneous: Delegates (Ford),1966-1972, 1976-1978 + + + + + + 310 + 65 + Records,Miscellaneous: Eastern Europe Remark (Ford),1966-1972, 1976-1978 + + + + + + 310 + 66 + Records,Miscellaneous: Economy (Ford),1966-1972, 1976-1978 + + + + + + 310 + 67 + Records,Miscellaneous: Foreign Policy (Ford),1966-1972, 1976-1978 + + + + + + 310 + 68 + Records,Miscellaneous: General (Dole),1966-1972, 1976-1978 + + + + + + 310 + 69 + Records,Miscellaneous: General (Ford),1966-1972, 1976-1978 + + + + + + 310 + 70 + Records,Miscellaneous: Platform,1966-1972, 1976-1978 + + + + + + 310 + 71 + Records,Miscellaneous: Record,1966-1972, 1976-1978 + + + + + + 310 + 72 + Records,Miscellaneous: Taxes (Ford),1966-1972, 1976-1978 + + + + + + 310 + 73 + Records,Miscellaneous: Presidential Debate, Foreign Policy and Defense,1966-1972, 1976-1978 + + + + + + 310 + 74 + Records,Miscellaneous: Republican Presidential Politics, Ford I and II, 2 folders,1966-1972, 1976-1978 + + + + + + 310 + 75 + Records,Miscellaneous: Republican Presidential Politics, Ford I and II, 2 folders,1966-1972, 1976-1978 + + + + + + 310 + 76 + Records,Miscellaneous: Primary, Reagan I and II, 2 folders,1966-1972, 1976-1978 + + + + + + 310 + 77 + Records,Miscellaneous: Primary, Reagan I and II, 2 folders,1966-1972, 1976-1978 + + + + + + 310 + 78 + Records,Miscellaneous: Congress (Reagan),1966-1972, 1976-1978 + + + + + + 310 + 79 + Records,Miscellaneous: Schweiker (Reagan),1966-1972, 1976-1978 + + + + + + 310 + 80 + Records,Miscellaneous: End of Session,1966-1972, 1976-1978 + + + + + + 310 + 81 + Records,Miscellaneous: Helpful Office Information and Griffin Information,1970 + + + + + + 310 + 82 + Records,Miscellaneous: Campaign Financing, News Stories,1970 + + + + + + 310 + 83 + Records,Miscellaneous: Florida Trip, 3/72,1972 + + + + + + 311 + 1 + Records,Speeches by Milliken,1966-1972 + + + + + + 311 + 2 + Records,Campaign Spending,1966-1972 + + + + + + 311 + 3 + Records,Lincoln Day,1966-1972 + + + + + + 311 + 4 + Records,AHEPA Speech, Muskegon, 6/21/70,1970 + + + + + + 311 + 5 + Records,Amtrak,1966-1972 + + + + + + 311 + 6 + Records,Jack Bill Guest column, 5/1/71,1971 + + + + + + 311 + 7 + Records,Beth Abraham Synagogue Cornerstone, Detroit, 5/23/71,1971 + + + + + + 311 + 8 + Records,Birthday Dinner Material,1966-1972 + + + + + + 311 + 9 + Records,Columbus Day, Warren, 10/10/71,1971 + + + + + + 311 + 10 + Records,Detroit Police Academy,1966-1972 + + + + + + 311 + 11 + Records,Doctor Draft Speech,1966-1972 + + + + + + 311 + 12 + Records,European Troop Cut Floor Speech,1966-1972 + + + + + + 311 + 13 + Records,Draft, Exemption for Doctors,1966-1972 + + + + + + 311 + 14 + Records,Police Speech,1966-1972 + + + + + + 311 + 15 + Records,Ford Executive Talking Paper, 11/8/71,1971 + + + + + + 311 + 16 + Records,Fresno, CA, Murphy, 10/19/70,1970 + + + + + + 311 + 17 + Records,Gagetown, 5/22/71,1971 + + + + + + 311 + 18 + Records,Garden City Chamber of Commerce, 5/19/71,1971 + + + + + + 311 + 19 + Records,Gas Man's Round Table, 4/6/71,1971 + + + + + + 311 + 20 + Records,Grand Rapids Trip,1966-1972 + + + + + + 311 + 21 + Records,Industrial Relations Society, New York, 9/24/70,1970 + + + + + + 311 + 22 + Records,IRS Data Center Groundbreaking, 6/21/71,1971 + + + + + + 311 + 23 + Records,Jackson Chamber of commerce, 2/26/71,1971 + + + + + + 311 + 24 + Records,Jewish News Letter, 10/29/71,1971 + + + + + + 311 + 25 + Records,Jobs for Veterans Luncheon, 7/19/71,1971 + + + + + + 311 + 26 + Records,Knights Templar, 9/24/71,1971 + + + + + + 311 + 27 + Records,Lancaster, PA, Eshelman, 10/21/70,1970 + + + + + + 311 + 28 + Records,Lincoln day, 1971,1971 + + + + + + 311 + 29 + Records,Lions Club of Michigan, 5/15/71,1971 + + + + + + 311 + 30 + Records,Hillsdale Lincoln Day, 4/16/71,1971 + + + + + + 311 + 31 + Records,Lou Gordon Show Script, 10/15/71,1971 + + + + + + 311 + 32 + Records,Conference of Great Lakes Governors and Premiers,1966-1972 + + + + + + 311 + 33 + Records,Mai Van Bo,1966-1972 + + + + + + 311 + 34 + Records,Manpower Revenue Sharing Act of 1971, 5/25/71,1971 + + + + + + 311 + 35 + Records,Republican Convention, Mackinac Island, 9/25/71,1971 + + + + + + 311 + 36 + Records,McGovern-Hatfield, Not Delivered, 1971,1971 + + + + + + 311 + 37 + Records,Memorial Day, Trenton and Inkster, 5/71,1971 + + + + + + 311 + 38 + Records,Memorial Day, 1971,1971 + + + + + + 311 + 39 + Records,Michigan Bar Association, 1/23/71,1971 + + + + + + 311 + 40 + Records,Michigan Credit Union League, 4/17/70,1970 + + + + + + 311 + 41 + Records,Michigan Association of Counties,1966-1972 + + + + + + 311 + 42 + Records,NAACP Freedom Fund Dinner, Port Huron, 10/23/71,1971 + + + + + + 311 + 43 + Records,Motor Vehicle Air Pollution Acceleration Act, 7/12/71,1971 + + + + + + 311 + 44 + Records,Miscellaneous Notes,1966-1972 + + + + + + 311 + 45 + Records,Michigan Hospital Association, 6/25/71,1971 + + + + + + 311 + 46 + Records,NAACP Port Huron, 10/24/71,1971 + + + + + + 311 + 47 + Records,Midland Speech, 10/12/71,1971 + + + + + + 311 + 48 + Records,Military and Economic Aid, 12/19/70,1970 + + + + + + 311 + 49 + Records,Murphy vs. Tunney, CA Campaign,1966-1972 + + + + + + 311 + 50 + Records,NAACP Fight for Freedom Dinner, Detroit, 4/15/71,1971 + + + + + + 311 + 51 + Records,National Housing Center Council, 12/10/70,1970 + + + + + + 311 + 52 + Records,Moratorium, 11/70,1970 + + + + + + 311 + 53 + Records,National Pollution control conference, Detroit, 4/15/71,1971 + + + + + + 311 + 54 + Records,North Oakland County Chamber of Commerce, 10/27/70,1970 + + + + + + 311 + 55 + Records,Occupational Safety and Health,1966-1972 + + + + + + 311 + 56 + Records,Ohio Contractors Association, 1/11/76,1976 + + + + + + 311 + 57 + Records,Polish Dancer Defection, 3/27/71,1971 + + + + + + 311 + 58 + Records,Port Huron Jaycees,1966-1972 + + + + + + 311 + 59 + Records,POW Meeting, 5/20/71,1971 + + + + + + 311 + 60 + Records,POW's, Week of National Concern, 3/22-3/26/71,1971 + + + + + + 311 + 61 + Records,Campaign Material,1966-1972 + + + + + + 311 + 62 + Records,Muskie,1966-1972 + + + + + + 312 + 1 + Records,Romney,1966-1972 + + + + + + 312 + 2 + Records,1970 Senate Race, Lenore Romney,1970 + + + + + + 312 + 3 + Records,End of Session,1966-1972 + + + + + + 312 + 4 + Records,Orange book,1966-1972 + + + + + + 312 + 5 + Records,Lincoln Day,1966-1972 + + + + + + 312 + 6 + Records,EHV Correspondence,1966-1972 + + + + + + 312 + 7 + Records,Lame Duck,1972 + + + + + + 312 + 8 + Records,Poll Show-Griffin 1966,1966 + + + + + + 312 + 9 + Records,Campaign,1972 + + + + + + 312 + 10 + Records,Auto Excise Tax,1972 + + + + + + 312 + 11 + Records,Busing General,1972 + + + + + + 312 + 12 + Records,Democratic Mayors for Griffin,1972 + + + + + + 312 + 13 + Records,Democratic State Convention,1972 + + + + + + 312 + 14 + Records,Ethnics,1972 + + + + + + 312 + 15 + Records,Pete Fletcher,1972 + + + + + + 312 + 16 + Records,Griffin, Busing,1972 + + + + + + 312 + 17 + Records,Griffin, Campaign,1972 + + + + + + 312 + 18 + Records,Griffin, Campaign Funds,1972 + + + + + + 312 + 19 + Records,Griffin, Endorsements,1972 + + + + + + 312 + 20 + Records,Griffin, Food Sales Tax,1972 + + + + + + 312 + 21 + Records,Griffin, General,1972 + + + + + + 312 + 22 + Records,Griffin, Tax Loopholes,1972 + + + + + + 312 + 23 + Records,Griffin, UAW,1972 + + + + + + 312 + 24 + Records,Griffin, Vietnam,1972 + + + + + + 312 + 25 + Records,Griffin, Kelley,1972 + + + + + + 312 + 26 + Records,Griffin-Kelley Campaign Funds,1972 + + + + + + 312 + 27 + Records,Griffin-Kelley Debates,1972 + + + + + + 312 + 28 + Records,Griffin-Kelley Letter,1972 + + + + + + 312 + 29 + Records,Griffin-Kelley Polls,1972 + + + + + + 312 + 30 + Records,Griffin Letter to Nixon Re: Auto Prices,1972 + + + + + + 312 + 31 + Records,Griffin, Water Quality Act,1972 + + + + + + 312 + 32 + Records,Merge Griffin,1972 + + + + + + 312 + 33 + Records,GOP State Convention,1972 + + + + + + 312 + 34 + Records,Gun Control,1972 + + + + + + 312 + 35 + Records,Barbara Halpert,1972 + + + + + + 312 + 36 + Records,Human Rights Party,1972 + + + + + + 312 + 37 + Records,Kelley, Campaign,1972 + + + + + + 312 + 38 + Records,Kelley, Charges,1972 + + + + + + 312 + 39 + Records,Kelley, Endorsements,1972 + + + + + + 312 + 40 + Records,Kelley, Excise Tax,1972 + + + + + + 312 + 41 + Records,Kelley, Finance,1972 + + + + + + 312 + 42 + Records,Kelley, Franking Charges,1972 + + + + + + 312 + 43 + Records,Kelley, General,1972 + + + + + + 312 + 44 + Records,Kelley, Griffin Probe by Bar,1972 + + + + + + 312 + 45 + Records,Kelley, McGovern,1972 + + + + + + 312 + 46 + Records,Kelley, Medical Plan,1972 + + + + + + 312 + 47 + Records,Kelley, Polls,1972 + + + + + + 312 + 48 + Records,Kelley, Reserve Mining,1972 + + + + + + 312 + 49 + Records,Kelley, UAW,1972 + + + + + + 312 + 50 + Records,Kelley, Utilities,1972 + + + + + + 312 + 51 + Records,Michigan Presidential Race,1972 + + + + + + 312 + 52 + Records,Milliken, Campaigning,1972 + + + + + + 312 + 53 + Records,Miscellaneous,1972 + + + + + + 312 + 54 + Records,Nader Report,1972 + + + + + + 312 + 55 + Records,Nationalities,1972 + + + + + + 312 + 56 + Records,National Citizens Lobby,1972 + + + + + + 312 + 57 + Records,Primary Election,1972 + + + + + + 312 + 58 + Records,Press Relations Newswire,1972 + + + + + + 312 + 59 + Records,Senator,1972 + + + + + + 312 + 60 + Records,State Senator Flap,1972 + + + + + + 312 + 61 + Records,Truth Squad, Kelley Campaign Funds,1972 + + + + + + 312 + 62 + Records,TV Advertising,1972 + + + + + + 312 + 63 + Records,Unemployment,1972 + + + + + + 312 + 64 + Records,Upper Great Lakes Regional Commission,1972 + + + + + + 312 + 65 + Records,Watergate Wiretapping,1972 + + + + + + 312 + 66 + Records,WZKO-TV, Free Air Time,1972 + + + + + + 312 + 67 + Records,Kelley, Ads,1972 + + + + + + 312 + 68 + Records,Kelley, Press Releases,1972 + + + + + + 312 + 69 + Records,Kelley, Press Conference, RPG campaign Finance, 9/23/72,1972 + + + + + + 312 + 70 + Records,Kelley, Press Conference, 11/11/72,1972 + + + + + + 312 + 71 + Records,Kelley, Press Conference, 9/8/72,1972 + + + + + + 312 + 72 + Records,Kelley, Press Conference, 8/31/72,1972 + + + + + + 312 + 73 + Records,Kelley, Speech, Michigan Association of Non-Public Schools, 8/28/72,1972 + + + + + + 312 + 74 + Records,Kelley, Statement on Channel 7, 8/2/72,1972 + + + + + + 312 + 75 + Records,Kelley, Press Conference, Sheraton Hotel, 7/24/72,1972 + + + + + + 312 + 76 + Records,Kelley, Campaign Finances,1972 + + + + + + 312 + 77 + Records,Kelley, Health Care, 9/13/72,1972 + + + + + + 312 + 78 + Records,Kelley, Blacks Prod Kelley on Busing, Free Press, 8/28/72,1972 + + + + + + 312 + 79 + Records,Kelley, Interview by Dave Taylor, WJR,1972 + + + + + + 312 + 80 + Records,Kelley, Reprint of Free Press Quote and RPG Comment, Cobo Hall,1972 + + + + + + 312 + 81 + Records,Senator Griffin=s Endorsements,1972 + + + + + + 312 + 82 + Records,Michigan Press in Miami,1972 + + + + + + 312 + 83 + Records,Florida Newspaper Clippings,1972 + + + + + + 312 + 84 + Records,Mrs. Griffin Schedules,1972 + + + + + + 312 + 85 + Records,Biography, Mrs. Griffin,1972 + + + + + + 312 + 86 + Records,Scandinavian Festival, Mrs. Griffin,1972 + + + + + + 312 + 87 + Records,Battle Creek Busing Manifesto,1972 + + + + + + 312 + 88 + Records,RPG vs. Kelley on Busing,1972 + + + + + + 312 + 89 + Records,Griffin Club Newsletter,1972 + + + + + + 312 + 90 + Records,To Robert Fryer, 9/29/72,1972 + + + + + + 312 + 91 + Records,Sunday Meetings,1972 + + + + + + 312 + 92 + Records,Open Letter from Senior Citizens,1972 + + + + + + 312 + 93 + Records,Nixon Bowling Award,1972 + + + + + + 312 + 94 + Records,Neighbors for Griffin,1972 + + + + + + 312 + 95 + Records,Nader Profile,1972 + + + + + + 312 + 96 + Records,Schedules,1972 + + + + + + 312 + 97 + Records,Press Schedules,1972 + + + + + + 312 + 98 + Records,Brochure,1972 + + + + + + 312 + 99 + Records,Staff and Press ID Labels,1972 + + + + + + 312 + 100 + Records,Miscellaneous Memos,1972 + + + + + + 312 + 101 + Records,Advertising, Meet Michigan=s Muscle,1972 + + + + + + 312 + 102 + Records,Advertising, Radio Commercials,1972 + + + + + + 312 + 103 + Records,Advertising, The Economic Club of Detroit,1972 + + + + + + 312 + 104 + Records,Advertising, Youth and Experience Recording (red record),1972 + + + + + + 312 + 105 + Records,Cable TV Interview,1972 + + + + + + 312 + 106 + Records,Ask Senator Griffin , TV Show, WKZO Kalamazoo, 10/24/72,1972 + + + + + + 312 + 107 + Records,Ask Senator Griffin , TV Show, WJBK Detroit, 10/27/72,1972 + + + + + + 312 + 108 + Records,Editorial Endorsements,1972 + + + + + + 312 + 109 + Records,McGovern Tax Reform,1972 + + + + + + 312 + 110 + Records,RPG Announces Candidacy, 6/14/72,1972 + + + + + + 312 + 111 + Records,League of Women Voters Form,1972 + + + + + + 312 + 112 + Records,Contracts for Debate with Frank Kelley,1972 + + + + + + 312 + 113 + Records,Election Results,1972 + + + + + + 312 + 114 + Records,Macomb Daily Questionnaire,1972 + + + + + + 312 + 115 + Records,Scheduling Committee,1972 + + + + + + 312 + 116 + Records,Campaign Polls, 11/6/72,1972 + + + + + + 312 + 117 + Records,Campaign Polls, 10/16/72,1972 + + + + + + 312 + 118 + Records,Campaign Polls, 9/11/72,1972 + + + + + + 312 + 119 + Records,Campaign Polls, 9/10/72,1972 + + + + + + 312 + 120 + Records,Campaign Polls, 3/72,1972 + + + + + + 312 + 121 + Records,Campaign Polls, Phone Poll in Macomb County, 10/72,1972 + + + + + + 312 + 122 + Records,Press Releases, 1972 Campaign,1972 + + + + + + 312 + 123 + Records,Election Eve Statement, 11/6/72,1972 + + + + + + 312 + 124 + Records,RPG to Seek Food Cost Slash, 11/4/72,1972 + + + + + + 312 + 125 + Records,Bill Would Restore Hot Dog Law, 11/2/72,1972 + + + + + + 312 + 126 + Records,Eight City, Two Day Blitz, 11/1/72,1972 + + + + + + 312 + 127 + Records,Oakland Press Endorses RPG, 11/1/72,1972 + + + + + + 312 + 128 + Records,Comments on Kelley=s Stams at Press Conference, 11/1/72,1972 + + + + + + 312 + 129 + Records,Hart, RPG to Break Ground for McNamara Building, 1031/72,1972 + + + + + + 312 + 130 + Records,Endorsed by Police Officers Association, 10/31/72,1972 + + + + + + 312 + 131 + Records,Endorsed by Citizens for Educational Freedom, 10/31/72,1972 + + + + + + 312 + 132 + Records,Endorsed by Sportsmens Alliance, 10/30/72,1972 + + + + + + 312 + 133 + Records,Bay City Pancake Breakfast, 10/29/72,1972 + + + + + + 312 + 134 + Records,Statement by P. Fletcher on Kelley, Crime, 10/29/72,1972 + + + + + + 312 + 135 + Records,Economic Club Debate, 10/29/72,1972 + + + + + + 312 + 136 + Records,Nixon Visit, 10/27/72,1972 + + + + + + 312 + 137 + Records,Remarks on WJBK, Vietnam, 10/27/72,1972 + + + + + + 312 + 138 + Records,Letter from Nixon, 10/27/72,1972 + + + + + + 312 + 139 + Records,On Vietnam War Developments, 10/26/72,1972 + + + + + + 312 + 140 + Records,Remarks by Senator Dominick on Busing, 10/26/72,1972 + + + + + + 312 + 141 + Records,Senator Brock at Western Michigan University, 10/26/72,1972 + + + + + + 312 + 142 + Records,Senator Taft on Busing, 10/26/72,1972 + + + + + + 312 + 143 + Records,Senators Visit Michigan for RPG, 10/26/72,1972 + + + + + + 312 + 144 + Records,Advisory on the Blitz, 10/26/72,1972 + + + + + + 312 + 145 + Records,Newspaper Endorsements, 10/25/72,1972 + + + + + + 312 + 146 + Records,Griffin-Kelley, Surrogates, 10/25/72,1972 + + + + + + 312 + 147 + Records,The Blitz, 10/25/72,1972 + + + + + + 312 + 148 + Records,Ann Arbor News Endorsement, 10/23/72,1972 + + + + + + 312 + 149 + Records,Remarks in Hazel Park, 10/23/72,1972 + + + + + + 312 + 150 + Records,Griffin-Nixon, End of War, 10/23/72,1972 + + + + + + 312 + 151 + Records,Endorsed by Hazel Park Mayor, 10/23/72,1972 + + + + + + 312 + 152 + Records,Endorsed by Ethnic Action Committee, 10/22/72,1972 + + + + + + 312 + 153 + Records,LANSING State Journal Poll, 10/22/72,1972 + + + + + + 312 + 154 + Records,On U.S. Russian Agreement,1972 + + + + + + 312 + 155 + Records,On Government Spending,1972 + + + + + + 312 + 156 + Records,Seven U.S. Senators to Visit Michigan, 10/21/72,1972 + + + + + + 312 + 157 + Records,On Nader Congress, Report, 10/21/72,1972 + + + + + + 312 + 158 + Records,Revenue Sharing Ceremony in Philadelphia, 10/20/72,1972 + + + + + + 312 + 159 + Records,Senator Scott at Eisenhower Dinner, 10/19/72,1972 + + + + + + 312 + 160 + Records,Macomb County Democrats, 10/19/72,1972 + + + + + + 312 + 161 + Records,Chrysler Corporation Hiring More Workers, 10/19/72,1972 + + + + + + 312 + 162 + Records,Agnew at Calvin College, 10/18/72,1972 + + + + + + 312 + 163 + Records,Override of Water Quality Act, 10/17/72,1972 + + + + + + 312 + 164 + Records,TV Blackouts, 10/17/72,1972 + + + + + + 312 + 165 + Records,Bowling Tournament, 10/16/72,1972 + + + + + + 312 + 166 + Records,Detroit News Poll, 10/16/72,1972 + + + + + + 312 + 167 + Records,Panax Endorsement, 10/14/72,1972 + + + + + + 312 + 168 + Records,Comments on Vietnam, 10/14/72,1972 + + + + + + 312 + 169 + Records,Labor Department Funds for Detroit Metro Area, 10/14/72,1972 + + + + + + 312 + 170 + Records,Senator Bill Triples Funding for GLRC, 10/13/72,1972 + + + + + + 312 + 171 + Records,Busing, Senate, 10/12/72,1972 + + + + + + 312 + 172 + Records,Busing, Filibuster, 10/12/72,1972 + + + + + + 312 + 173 + Records,Busing, McGovern, 10/11/72,1972 + + + + + + 313 + 1 + Records,Busing, Senate, 10/10/72,1972 + + + + + + 313 + 2 + Records,Busing, Supreme Court, 10/10/72,1972 + + + + + + 313 + 3 + Records,Tierney of Garden City Urges RPG Reelection, 10/10/72,1972 + + + + + + 313 + 4 + Records,Anti-Busing Organizations, 10/8/72,1972 + + + + + + 313 + 5 + Records,Professional Football, 10/8/72,1972 + + + + + + 313 + 6 + Records,Eight Detroit Mayors Endorse RPG, 10/8/72,1972 + + + + + + 313 + 7 + Records,Water Quality Bill, 10/7/72,1972 + + + + + + 313 + 8 + Records,Agnew on Griffin, 10/7/72,1972 + + + + + + 313 + 9 + Records,Anti-Busing Legislation, 10/6/72,1972 + + + + + + 313 + 10 + Records,Pension Reform Bill, 10/4/72,1972 + + + + + + 313 + 11 + Records,Detroit News Poll, 10/2/72,1972 + + + + + + 313 + 12 + Records,Griffin TV Ads, 10/30/72,1972 + + + + + + 313 + 13 + Records,Great Lakes Soil Erosion Bill, 9/30/72,1972 + + + + + + 313 + 14 + Records,Pension Reform Bill, 9/30/72,1972 + + + + + + 313 + 15 + Records,Consumer Protection Bill, 9/29/72,1972 + + + + + + 313 + 16 + Records,Shoreline Erosion Legislation, 9/27/72,1972 + + + + + + 313 + 17 + Records,Strengthen Pension Bill, 9/27/72,1972 + + + + + + 313 + 18 + Records,Pension Reform Legislation , 9/25/72,1972 + + + + + + 313 + 19 + Records,Pension Reform Legislation , 9/24/72,1972 + + + + + + 313 + 20 + Records,Response to Kelley, 9/23/72,1972 + + + + + + 313 + 21 + Records,TV Blackouts, 9/22/72,1972 + + + + + + 313 + 22 + Records,Reduced Air Fare for Senior Citizens, 9/22/72,1972 + + + + + + 313 + 23 + Records,RPG, Ford Stam on McGovern, 9/20/72,1972 + + + + + + 313 + 24 + Records,Close Tax Loophole to Aid Small Farmers, 9/20/72,1972 + + + + + + 313 + 25 + Records,Blasts Kelley-Come-Lately, Reserve Mining, 9/16/72,1972 + + + + + + 313 + 26 + Records,Spence Abraham, Youth for Griffin, 9/22/72,1972 + + + + + + 313 + 27 + Records,Statement of Dearborn, Mayor Hubbard, 9/15/72,1972 + + + + + + 313 + 28 + Records,Democrats for Griffin, 9/15/72,1972 + + + + + + 313 + 29 + Records,TV Blackouts, 9/14/72,1972 + + + + + + 313 + 30 + Records,Opposes Railway Express, 9/14/72,1972 + + + + + + 313 + 31 + Records,Trenton Picnic for RPG, 9/16/72,1972 + + + + + + 313 + 32 + Records,Urges GAO Probe of Nursing Homes, 9/15/72,1972 + + + + + + 313 + 33 + Records,Revenue Sharing, 9/11/72,1972 + + + + + + 313 + 34 + Records,Detroit News Poll, 9/11/72,1972 + + + + + + 313 + 35 + Records,United Auto Workers, 9/7/72,1972 + + + + + + 313 + 36 + Records,Busing, 9/5/72,1972 + + + + + + 313 + 37 + Records,Aid Families of Policemen, Firemen, 9/5/72,1972 + + + + + + 313 + 38 + Records,Labor Day, 9/4/72,1972 + + + + + + 313 + 39 + Records,McGovern Hitler Quip at Nixon, 9/3/72,1972 + + + + + + 313 + 40 + Records,UGLRC Approves Funding, 9/1/72,1972 + + + + + + 313 + 41 + Records,Griffin Club Announces Members, 8/30/72,1972 + + + + + + 313 + 42 + Records,Griffin Letter to Kelley, Debates, 8/31/72,1972 + + + + + + 313 + 43 + Records,Price Committee Refusal to Grant Ford, GM Increase, 8/29/72,1972 + + + + + + 313 + 44 + Records,Statement of Inkster Mayor Bivens, 8/25/72,1972 + + + + + + 313 + 45 + Records,Travels to Marquette and Escanaba, 8/18/72,1972 + + + + + + 313 + 47 + Records,Sickle Cell Anemia, 8/4/72,1972 + + + + + + 313 + 48 + Records,Letter to Kelley, Debate, 7/28/72,1972 + + + + + + 313 + 49 + Records,Open Letter to Kelley on Busing, 7/26/72,1972 + + + + + + 313 + 50 + Records,Truth Squad Press Releases,1972 + + + + + + 313 + 51 + Records,Statement by Lowell Weicker,1972 + + + + + + 313 + 52 + Records,Statement by P. Fletcher, 10/10/72,1972 + + + + + + 313 + 53 + Records,Statement by Senator Robert Vander Laan, 10/13/72,1972 + + + + + + 313 + 54 + Records,Statement by Senator John Toepp, 10/13/72,1972 + + + + + + 313 + 55 + Records,Kelley Caught Not Telling Truth, 10/6/72,1972 + + + + + + 313 + 56 + Records,Billboards, R. Wojtowicz, 10/6/72,1972 + + + + + + 313 + 57 + Records,Statement by P.B. Fletcher on Finances, 9/29/72,1972 + + + + + + 313 + 58 + Records,Statement by William McLaughlin, 9/29/72,1972 + + + + + + 313 + 59 + Records,RPG=s Campaign Contributions, 9/29/72,1972 + + + + + + 313 + 60 + Records,Busing, Kelley Statements, 9/21/72,1972 + + + + + + 313 + 61 + Records,Democratic Mayors to Kelley, Anti-Busing, 9/21/72,1972 + + + + + + 313 + 62 + Records,Statement by Walter Bezz, Mayor of East Detroit,1972 + + + + + + 313 + 63 + Records,Statement by P. Fletcher, 9/21/72,1972 + + + + + + 313 + 64 + Records,Statement by Bill Farr, Finances,1972 + + + + + + 313 + 65 + Records,Statement by P. Fletcher, Crime,1972 + + + + + + 313 + 66 + Records,Statement by Dively, Campaign Contributions,1972 + + + + + + 313 + 67 + Records,Campaign Material,1972 + + + + + + 313 + 68 + Records,Campaign, Busing,1972 + + + + + + 313 + 69 + Records,Press conferences,1972 + + + + + + 313 + 70 + Records,Voter Polls,1972 + + + + + + 313 + 71 + Records,Good Letters,1972 + + + + + + 313 + 72 + Records,Hand-Out Pieces,1972 + + + + + + 313 + 73 + Records,Channel 2, WJBR-TV,1972 + + + + + + 313 + 74 + Records,Detroit TV News Coverage, Monitoring Reports,1972 + + + + + + 313 + 75 + Records,Press Releases, 1972 Campaign,1972 + + + + + + 313 + 76 + Records,Weisenfeld,1972 + + + + + + 314 + 1 + Records,Interviews and News Conferences, Box 1,1973-1978 + + + + + + 314 + 2 + Records,Ford as Vice President, Before Confirmation, 10/11/73,1973 + + + + + + 314 + 3 + Records,Q & A at Eisenhower Day Dinner, Detroit, 10/19/73,1973 + + + + + + 314 + 4 + Records,SCOTUS, Presidential Tapes (Watergate), 7/24/74,1974 + + + + + + 314 + 5 + Records,School Busing, Milliken vs. Bradley, 7/25/74,1974 + + + + + + 314 + 6 + Records,Call for Nixon Resignation, 8/5/74,1974 + + + + + + 314 + 7 + Records,Ford Vice President Choice and Transition, 8/11/74,1974 + + + + + + 314 + 8 + Records,Legislation Pending, Economy, 9/4/74,1974 + + + + + + 314 + 9 + Records,Ford Pardon of Nixon, 9/9/74,1974 + + + + + + 314 + 10 + Records,Auto Industry, 12/6/74,1974 + + + + + + 314 + 11 + Records,25th Amendment, 3/11/75,1975 + + + + + + 314 + 12 + Records,Gas Price Compromise, 7/24/75,1975 + + + + + + 314 + 13 + Records,Gas Prices, Mideast/Sinai, Hoffa, 9/12/75,1975 + + + + + + 314 + 14 + Records,Hoffa, Turkish Arms, 10/3/75,1975 + + + + + + 314 + 15 + Records,Cabinet Changes, Rockefeller, 11/4/75,1975 + + + + + + 314 + 16 + Records,Teamster, GOP Leadership, 12/5/75,1975 + + + + + + 314 + 17 + Records,Budget Reaction, Upcoming Election Year, 1/21/76,1976 + + + + + + 314 + 18 + Records,Public Works Veto, 2/19/76,1976 + + + + + + 314 + 19 + Records,Interviews and News Conferences, Box 2,1973-1978 + + + + + + 314 + 20 + Records,Michigan Presidential Primary, 5/12/76,1976 + + + + + + 314 + 21 + Records,GOP Convention, 7/22/76,1976 + + + + + + 314 + 22 + Records,Reagan Selection of Schweiker as Running Mate, 7/26/76,1976 + + + + + + 314 + 23 + Records,Unity Meet (Laxalt, Rhodes, RPG), 8/2/76,1976 + + + + + + 314 + 24 + Records,RPG at Newsmaker Breakfast, 8/5/76,1976 + + + + + + 314 + 25 + Records,Ford's Presidency, 9/13/76,1976 + + + + + + 314 + 26 + Records,RPG on CBS ACapitol Cloakroom,@ 9/29/76,1976 + + + + + + 314 + 27 + Records,RPG Interview with Bruce Martin, 9/30/76,1976 + + + + + + 314 + 28 + Records,RPG News Conference in Cleveland, 10/7/76,1976 + + + + + + 314 + 29 + Records,RPG with Bill Simon, News Conference in Detroit, 10/15/76,1976 + + + + + + 314 + 30 + Records,Post-Presidential Election, 11/4/76,1976 + + + + + + 314 + 31 + Records,Leadership Loss, 1/4/77,1977 + + + + + + 314 + 32 + Records,A9:00 in the Morning,@ 1/5/77,1977 + + + + + + 314 + 33 + Records,Auto Emissions News Conference, 3/1/77,1977 + + + + + + 314 + 34 + Records,Interviews and News Conferences, Box 3,1973-1978 + + + + + + 314 + 35 + Records,Bob Lee of WWTV, Cadillac, 3/7/77,1977 + + + + + + 314 + 36 + Records,Energy Interview with WCAR Radio Detroit, 3/14/77Snowmobiles on Federal Land, 3/22/77,1977 + + + + + + 314 + 37 + Records,PBB Testimony, 4/2/77,1977 + + + + + + 314 + 38 + Records,RPG Questioning Lou Gordon on PBB, 4/3/77,1977 + + + + + + 314 + 39 + Records,RPG Interview with Bill Plante of CBS Re: Teamsters, 5/10/77,1977 + + + + + + 314 + 40 + Records,RPG Interview with Brian Yaroch, 6/21/77,1977 + + + + + + 314 + 41 + Records,RPG Interview on Auto Topics, 7/19/77,1977 + + + + + + 314 + 42 + Records,RPG Interview with Traverse City Record Eagle, 8/17/77,1977 + + + + + + 314 + 43 + Records,RPG Interview on Cargo Preference, 9/20/77,1977 + + + + + + 314 + 44 + Records,Pressure to Reconsider Senate Race, 12/19/77,1977 + + + + + + 314 + 45 + Records,RPG Interview with Bob Lec in Cadillac, 1/16/78,1978 + + + + + + 314 + 46 + Records,RPG Interview on Panama Canal, 2/2/78,1978 + + + + + + 314 + 47 + Records,Interviews and News Conferences, Box 4,1973-1978 + + + + + + 314 + 48 + Records,RPG News Conference in Detroit, 2/13/78,1978 + + + + + + 314 + 49 + Records,Questions and Answers,@ 4/21/78,1978 + + + + + + 314 + 50 + Records,RPG Interview with WOTV in Grand Rapids, 7/24/78,1978 + + + + + + 314 + 51 + Records,RPG on CBS Capitol Cloakroom, 8/16/78,1978 + + + + + + 315 + 1 + Records,Speeches, Box 1, Eisenhower Day Dinner, Detroit, 10/19/73,1973 + + + + + + 315 + 2 + Records,Speeches, Box 1, Kiwanis, Warren, 10/31/74,1974 + + + + + + 315 + 3 + Records,Speeches, Box 1, Scenic Trails Council, Traverse City, 11/7/74,1974 + + + + + + 315 + 4 + Records,Speeches, Box 1, Chamber of Commerce, Livonia, 11/13/74,1974 + + + + + + 315 + 5 + Records,Speeches, Box 1, Chamber of Commerce, Grand Rapids, 2/14/75,1975 + + + + + + 315 + 6 + Records,Speeches, Box 1, State GOP Convention, Grand Rapids, 2/15/75,1975 + + + + + + 315 + 7 + Records,Speeches, Box 1, Sanilac County Lincoln Day Dinner, Marlette, 2/21/75,1975 + + + + + + 315 + 8 + Records,Speeches, Box 1, Young Republicans, DC, 3/1/75,1975 + + + + + + 315 + 9 + Records,Speeches, Box 1, Shiawassee County Lincoln Day, Owosso, 3/8/75,1975 + + + + + + 315 + 10 + Records,Speeches, Box 1, 300 Club, Jackson, 9/9/75,1975 + + + + + + 315 + 11 + Records,Speeches, Box 1, Prince William GOP Meeting Manassas, VA, 9/16/75,1975 + + + + + + 315 + 12 + Records,Speeches, Box 1, National Association of Food Chains, DC, 10/13/75,1975 + + + + + + 315 + 13 + Records,Speeches, Box 1, National Association of Electric Co=s, DC, 3/3/76,1976 + + + + + + 315 + 14 + Records,Speeches, Box 1, NE GOP Regional Conference, DC, 2/26/75,1975 + + + + + + 315 + 15 + Records,Speeches, Box 1, Time Inc. Leadership Conference, DC, 9/26/75,1975 + + + + + + 315 + 16 + Records,Speeches, Box 2, GOP Fund-raiser, Cleveland, 10/7/76,1976 + + + + + + 315 + 17 + Records,Speeches, Box 2, Wayne County Chamber of Commerce, Grosse Isle, 10/20/76,1976 + + + + + + 315 + 18 + Records,Speeches, Box 2, American Paper Institute, DC, 10/26/76,1976 + + + + + + 315 + 19 + Records,Speeches, Box 2, Grocery Manufacturer=s Assn., 12/8/76,1976 + + + + + + 315 + 20 + Records,Speeches, Box 2, Eisenhower Dinner, Farmington Hills, 1/27/77,1977 + + + + + + 315 + 21 + Records,Speeches, Box 2, Gelman Instrument Co. Lincoln Day Dinner, Ann Arbor, 2/16/77,1977 + + + + + + 315 + 22 + Records,Speeches, Box 2, Republican State Convention, Detroit, 2/19/77,1977 + + + + + + 315 + 23 + Records,Speeches, Box 2, RPG Lincoln Day Dinner, Lenawee County, 3/18/77,1977 + + + + + + 315 + 24 + Records,Speeches, Box 2, Lincoln Day Dinner Speech, Kalamazoo, 4/16/77,1977 + + + + + + 315 + 25 + Records,Speeches, Box 2, Grand Rapids Economic Club, Grand Rapids, 5/23/77,1977 + + + + + + 315 + 26 + Records,Speeches, Box 2, West Branch Community Luncheon, West Branch, 6/11/77,1977 + + + + + + 315 + 27 + Records,Speeches, Box 2, GOP Fall Leadership Conference, Mackinaw Island, 9/18/77,1977 + + + + + + 315 + 28 + Records,Speeches, Box 2, HHH Saints and Sinners, Traverse City, 1/14/78,1978 + + + + + + 315 + 29 + Records,Speeches, Box 2, Ex-SOB=s, DC, 2/6/78,1978 + + + + + + 315 + 30 + Records,Speeches, Box 3, Detroit Bar Association, Detroit, 5/3/78,1978 + + + + + + 315 + 31 + Records,Speeches, Box 3, Kiwanis Mtg. and Press Comments, Marquette, 6/12/78,1978 + + + + + + 315 + 32 + Records,Speeches, Box 3, Michigan Assn. of Broadcasters, Hidden Valley, 9/15/78,1978 + + + + + + 315 + 33 + Records,Speeches, Box 3, Michigan Municipal League, Mackinaw Island, 9/16/78,1978 + + + + + + 315 + 34 + Records,Speeches, Box 3, Michigan State Chamber of Commerce, Lansing, 9/27/78,1978 + + + + + + 315 + 35 + Records,Radio Spots, Box 4, Rail Reorganization, 2/26/75,1975 + + + + + + 315 + 36 + Records,Radio Spots, Box 4, Excise Tax, VW Probe, 3/7/75,1975 + + + + + + 315 + 37 + Records,Radio Spots, Box 4, Auto Exhaust, Fuel Economy, 7/15/75,1975 + + + + + + 315 + 38 + Records,Radio Spots, Box 4, VW Probe, 8/8/75,1975 + + + + + + 315 + 39 + Records,Radio Spots, Box 4, Mideast Peace Agreement, 9/5/75,1975 + + + + + + 315 + 40 + Records,Radio Spots, Box 4, Cabinet Changes, Rockefeller, 11/4/75,1975 + + + + + + 315 + 41 + Records,Radio Spots, Box 4, Sinking of Fitzgerald, Zionism, 11/13/75,1975 + + + + + + 315 + 42 + Records,Radio Spots, Box 4, Teamsters, GOP Leadership, 12/5/75,1975 + + + + + + 315 + 43 + Records,Radio Spots, Box 4, Kinchelo AFB, 3/11/76,1976 + + + + + + 315 + 44 + Records,Radio Spots, Box 4, Milliken Spots on Carter, 10/14/76,1976 + + + + + + 315 + 45 + Records,Radio Spots, Box 4, RPG on the Death of Senator Hart, 12/26/76,1976 + + + + + + 315 + 46 + Records,Radio Spots, Box 4, RPG Actuality on Lance Missile, 2/22/77,1977 + + + + + + 315 + 47 + Records,Radio Spots, Box 4, RPG on President Carter=s Energy Program, 4/20/77,1977 + + + + + + 315 + 48 + Records,Radio Spots, Box 4, Death of Hubert Humphrey, 1/14/78,1978 + + + + + + 315 + 49 + Records,Radio Spots, Box 4, RPG Announces Candidacy, 2/3/78,1978 + + + + + + 315 + 50 + Records,Radio Spots, Box 4, RPG on Ruppe's Announcement no to Run, 2/15/78,1978 + + + + + + 315 + 51 + Records,Radio Spots, Box 4, RPG Reaction to Patterson Lawsuit, 6/13/78,1978 + + + + + + 315 + 52 + Records,Radio Spots, Box 4, RPG on Dismissal of Patterson Lawsuit, 6/26/78,1978 + + + + + + 315 + 53 + Records,Radio Spots, Box 4, Tuition Tax Credits, 8/15/78,1978 + + + + + + 315 + 54 + Records,Radio Spots, Box 4, RPG on DC Representation, 8/22/78,1978 + + + + + + 315 + 55 + Records,Radio Spots, Box 4, RPG on Macomb Sewer Break, 8/25/78,1978 + + + + + + 315 + 56 + Records,Radio Spots, Box 4, RPG Blasts COPE, 9/12/78,1978 + + + + + + 315 + 57 + Records,Radio Spots, Box 4, Levin on Natural Gas, 6/23/78,1978 + + + + + + 315 + 58 + Records,Radio Spots, Box 4, Levin Commercial,1966-1978 + + + + + + 316 + 1 + Records,Special Projects, Box 1, Fisherman's Island State Park, 7/22/70,1970 + + + + + + 316 + 2 + Records,Special Projects, Box 1, Opening WGPR-TV, Detroit, 9/18/75,1975 + + + + + + 316 + 3 + Records,Special Projects, Box 1, WGMS Salute to the States, 10/28/75,1975 + + + + + + 316 + 4 + Records,Special Projects, Box 1, Voice of America, 6/21/76,1976 + + + + + + 316 + 5 + Records,Special Projects, Box 1, Bicentennial Salute, 7/76,1976 + + + + + + 316 + 6 + Records,Special Projects, Box 1, Dedication of Phil Hart Visitor=s Center, 12/10/76,1976 + + + + + + 316 + 7 + Records,Special Projects, Box 1, Special Program on Seafarer, WNMU, 1/77,1977 + + + + + + 316 + 8 + Records,Special Projects, Box 1, RPG, Manistique, WTIQ, 3/25/77,1977 + + + + + + 316 + 9 + Records,Special Projects, Box 1, RPG Meeting with Close-Up Group, 4/27/77,1977 + + + + + + 316 + 10 + Records,Miscellaneous, Box 2, Youth and Experience, Summer 1966-2 tapes,1966 + + + + + + 316 + 11 + Records,Miscellaneous, Box 2, RPG Urging Ford Confirmation as Vice President, 10/73,1973 + + + + + + 316 + 12 + Records,Miscellaneous, Box 2, GOP Convention, 8/24/74,1974 + + + + + + 316 + 13 + Records,Miscellaneous, Box 2, RPG 25th Amendment Hearing, 3/11/75,1975 + + + + + + 316 + 14 + Records,Miscellaneous, Box 2, Evacuation of Vietnamese Orphans, 4/75,1975 + + + + + + 316 + 15 + Records,Miscellaneous, Box 2, Visit to Kincheloe AFB, 6/13/75,1975 + + + + + + 316 + 16 + Records,Miscellaneous, Box 2, Traverse City Golf and Country Club, 7/11/75,1975 + + + + + + 316 + 17 + Records,Miscellaneous, Box 2, Saints and Sinners, 3/25/76-7 tapes,1976 + + + + + + 316 + 18 + Records,Miscellaneous, Box 3, Michigan Presidential Primary Campaigning, 5/76,1976 + + + + + + 316 + 19 + Records,Miscellaneous, Box 3, Senator Humphrey at Griffin Roast, 1/16/78,1978 + + + + + + 316 + 20 + Records,Miscellaneous, Box 3, RPG Opening Remarks, Panama Canal, 2/8/78,1978 + + + + + + 316 + 21 + Records,Miscellaneous, Box 3, Mysterious Caller from State Dept., Panama Canal, 4/7/78,1978 + + + + + + 316 + 22 + Records,Miscellaneous, Box 3, National Public Radio, Panama Canal, 4/10/78,1978 + + + + + + 316 + 23 + Records,Miscellaneous, Box 3, RPG and Riegle, AClose-Up,@ 4/27/78, RPG, Senate Debate on Neel Nomination, 4/27/78,1978 + + + + + + 316 + 24 + Records,Miscellaneous, Box 3, NBC, Simpson Interview with Helen Cope, 5/9/78,1978 + + + + + + 316 + 25 + Records,Miscellaneous, Box 3, Brooks Patterson News Conference, 6/13/78,1978 + + + + + + 316 + 26 + Records,Miscellaneous, Box 3, Patterson, Grand Rapids Non-Debate, 7/10/78,1978 + + + + + + 316 + 27 + Records,Miscellaneous, Box 3, Excerpts from RPG Victory Statement, 8/8/78,1978 + + + + + + 316 + 28 + Records,Miscellaneous, Box 3, Grand Marais, 8/12/78,1978 + + + + + + 316 + 29 + Records,Miscellaneous, Box 3, RPG with ERA Extension Women, 9/26/78,1978 + + + + + + 316 + 30 + Records,Miscellaneous, Box 3, Baker Radio Spot, Jerry Ford at Dearborn, 11/6/78,1978 + + + + + + 316 + 31 + Records,Miscellaneous, Box 3, RPG Interview with Women Re: Ford Campaign, 1976,1976 + + + + + + 316 + 32 + Records,Miscellaneous, Box 3, RPG at Jerry Ford Roast, Detroit, 10/6/77,1977 + + + + + + 316 + 33 + Records,Miscellaneous, Box 3, Intern Tim With Crank Caller,1966-1978 + + + + + + 316 + 34 + Records,Box 4, Kelley Press Conference, Detroit, 7/24/72,1972 + + + + + + 316 + 35 + Records,Box 4, Griffin GOP Convention Speech and Press Conf., 6/17/72,1972 + + + + + + 316 + 36 + Records,Box 4, Save RPG Anti-Bus Group, 10/8/72,1972 + + + + + + 316 + 37 + Records,Box 4, Agnew-Speech to Polish-American Congress, 10/7/72,1972 + + + + + + 316 + 38 + Records,Box 4, Agnew-Calvin College, 10/17/72,1972 + + + + + + 316 + 39 + Records,Box 4, Saginaw News, Background, 1972,1972 + + + + + + 316 + 40 + Records,Box 4, Kelley, 11/1/72,1972 + + + + + + 316 + 41 + Records,Box 4, Speech of Senator Buckley, 5/18/72,1972 + + + + + + 316 + 42 + Records,Box 4, Griffin, Speaking of Campaign Issues,1966-1978 + + + + + + 316 + 43 + Records,Box 4, Kelley on Spotlight, Channel 7 WXYZ-TV, 10/29/72,1972 + + + + + + 316 + 44 + Records,Box 4, Griffin Campaign Rally,1966-1978 + + + + + + 316 + 45 + Records,Box 4, Frank Kelley on Busing, 1972,1972 + + + + + + 316 + 46 + Records,Box 4, Interview with Frank Kelley, 1972,1972 + + + + + + 316 + 47 + Records,Box 4, Griffin on Spotlight Campaign,1966-1978 + + + + + + 316 + 48 + Records,Box 4, 4th Annual Eisenhower Dinner,1966-1978 + + + + + + 316 + 49 + Records,Box 4, RPG Speech before Fire Chiefs Organization, Alpena,1966-1978 + + + + + + 316 + 50 + Records,Box 4, RPG at White House, Busing, 10/10/72,1972 + + + + + + 316 + 51 + Records,Box 4, Farmington's Speech, Interview at Children's,1966-1978 + + + + + + 316 + 52 + Records,Box 4, Hospital, 8/4/72,1972 + + + + + + 316 + 53 + Records,Box 4, UAW Cap. Conference, Frank Kelley, 9/6/72,1972 + + + + + + 316 + 54 + Records,Box 4, Campaign, 1972,1972 + + + + + + 316 + 55 + Records,Box 4, Kelley Interview, 10/19/72,1972 + + + + + + 316 + 56 + Records,Box 4, Nixon at Tri-Cities, 10/28/72,1972 + + + + + + 316 + 57 + Records,Box 4, Kelley Journal, 1972,1972 + + + + + + 316 + 58 + Records,Box 4, Kelley Candidacy Announcement, Lansing, 6/20/72,1972 + + + + + + 316 + 59 + Records,Box 4, Levin, 10/23/74,1974 + + + + + + 316 + 60 + Records,Box 4, Kelley-Griffin, Hidden Valley, 6/16/72,1972 + + + + + + 316 + 61 + Records,Box 4, Nixon, 9/29/71,1971 + + + + + + 316 + 62 + Records,Box 4, Michigan Press-Wed., 5/17/72,1972 + + + + + + 316 + 63 + Records,Box 4, Muskegon, 8/5/72,1972 + + + + + + 316 + 64 + Records,Box 4, Spotlight, Senator Griffin, 10/20/72,1972 + + + + + + 316 + 65 + Records,Box 4, Journal, 10/16/72,1972 + + + + + + 316 + 66 + Records,Box 4, Detroit Press, Kelley TV Ads, 9/15/72,1972 + + + + + + 316 + 67 + Records,Box 4, VP Speaks at Fund-raiser for Republican Bob Price, 4/27/74,1974 + + + + + + 316 + 68 + Records,Box 4, Lincoln Day Dinner, 3/9/74,1974 + + + + + + 316 + 69 + Records,Box 4, Press Conference, Orlando, Florida Central Showcase, 27 min., 3/30/72,1972 + + + + + + 316 + 70 + Records,Box 4, Program: RPG on Campaign Issues,1966-1978 + + + + + + 316 + 71 + Records,Box 4, Packwood Speech, Traverse City, 11/6/71,1971 + + + + + + 316 + 72 + Records,Box 4, Jackson's Lion's Club, 10/74,1974 + + + + + + 316 + 73 + Records,Box 4, Frank Kelley at VAW, 10/28/72,1972 + + + + + + 316 + 74 + Records,Box 4, Watchdog Center, Sales TV,1966-1978 + + + + + + 316 + 75 + Records,Box 4, Farmers Dilemma, 2/73,1973 + + + + + + 316 + 76 + Records,Box 4, 1972 Campaign and Radio Ads,1972 + + + + + + 316 + 77 + Records,Box 4, Griffin with Adams Ostrowski at Campaign Dinner, 1972,1972 + + + + + + 317 + 1 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 5" reel) A4, 9/2/66, U. of Detroit and Supermarket,1966 + + + + + + 317 + 2 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 5" reel) A5, 1A, Roe, Griffin Parade, Songs, Griffin Girls,1967-1972 + + + + + + 317 + 3 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 5" reel) A7, 2A, Talking with Polish Leader,1967-1972 + + + + + + 317 + 4 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 5" reel) A8, 2B, Wild Sound from Convention Music-demonstration,1967-1972 + + + + + + 317 + 5 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 5" reel) A6, 3B, Tail End of Convention Speech,1967-1972 + + + + + + 317 + 6 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 5" reel) A1, 3B, Newspix Inc., Griffin Speech con=t., Griffin-Romney Interview, Romney Statement Alone,1967-1972 + + + + + + 317 + 7 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 5" reel) A2, 1, Newspix Inc. Griffin U. of Detroit, Griffin Supermarket,1967-1972 + + + + + + 317 + 8 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 5" reel) A3, 3A, War on Poverty vs. Inflation,1967-1972 + + + + + + 317 + 9 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 5" reel) A3, 3A, Steel vs. Bacon,1967-1972 + + + + + + 317 + 10 + Records, Audio/Visual: Miscellaneous Films and Tapes, (Tape, 5" reel) A3, 3A, Freeman Slip,1967-1972 + + + + + + 317 + 11 + Records, Audio/Visual: Miscellaneous Films and Tapes, (Tape, 5" reel) A3, 3A, Blome Inflation on Farmer, If you talk to farmer, Eisenhower yrs. 84,1967-1972 + + + + + + 317 + 12 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 5" reel) A3, 3A, Interest Rates,1967-1972 + + + + + + 317 + 13 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 5" reel) A3, 3A, Retche,1967-1972 + + + + + + 317 + 14 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 5" reel) A3, 3A, Cut Backs on Non-Defense Spending,1967-1972 + + + + + + 317 + 15 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 5" reel) A3, 3A, Retake Cuts Back on Education,1967-1972 + + + + + + 317 + 16 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 5" reel) A3, 3A, Vietnam,1967-1972 + + + + + + 317 + 17 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 5" reel) A3, 3A, How Extrialate Self Vietnam,1967-1972 + + + + + + 317 + 18 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 5" reel) A3, 3A, Vietnam insert C,1967-1972 + + + + + + 317 + 19 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 5" reel) B1, Sen. Griffin, 5 min., #1,1967-1972 + + + + + + 317 + 20 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 5" reel) B2, Sen. Griffin, 5 min., #1,1967-1972 + + + + + + 317 + 21 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 2 3/4" reel) #102 Sen. Griffin, 60 sec. spot,1967-1972 + + + + + + 317 + 22 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 2 3/4" reel) #103 (20, #103),1967-1972 + + + + + + 317 + 23 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 2 3/4" reel) 20 sec. Radio, 1962 Eisenhower Endorsement,1962 + + + + + + 317 + 24 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 2 3/4" reel) 20 sec. Radio, Preceding Message from General Dwight D. Eisenhower--Political Announcement Paid by Griffin for Congress Committee,1967-1972 + + + + + + 317 + 25 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 2 3/4" reel) (20, #103),1967-1972 + + + + + + 317 + 26 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 2 3/4" reel) (#2-60 sec.) Sen. Griffin,1967-1972 + + + + + + 317 + 27 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 2 3/4" reel) 20 sec. Radio,1967-1972 + + + + + + 317 + 28 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 2 3/4" reel) 60 sec. Spot Sen. Griffin,1967-1972 + + + + + + 317 + 29 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Tape, 2 3/4" reel) (No Reel),1967-1972 + + + + + + 317 + 30 + Records,Audio/Visual: Miscellaneous Films and Tapes, (8 Track) Maybe AGive Bob the Ball@ Campaign Theme,1967-1972 + + + + + + 317 + 31 + Records,Audio/Visual: Miscellaneous Films and Tapes, (8 mm film, 7") Washtenaw Campaign and Election Night from Richard and Janice Caldwell,1967-1972 + + + + + + 317 + 32 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Film, 7 1/2" reel) Sen. Griffin Interviewed by Frank Fortune of WBEN-TV in Buffalo, ALet=s Look at Congress,@ 15 min., transcribed copy in file in Griffin press conferences, 10/5/67,1967-1972 + + + + + + 317 + 33 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Film, 6 1/2" reel) Griffin, 60, #4 Revised-Narr.,1967-1972 + + + + + + 317 + 34 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Film, 9 1/2" Kodal reel) Griffin,1967-1972 + + + + + + 317 + 35 + Records,Audio/Visual: Miscellaneous Films and Tapes, (Film, 10 1/2" reel) AThe Time is Now@ (Print #103) (Brandt Enos Associates),1967-1972 + + + + + + 318 + 1 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Film 3 3/4" reel) Cavanaugh, Answers Schools Comment, 8/5/66,1966 + + + + + + 318 + 2 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Film 3 3/4" reel) Cavanaugh (Political),1967-1972 + + + + + + 318 + 3 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Film 3 3/4" reel) Scholle-Election Comments,1967-1972 + + + + + + 318 + 4 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2 3/4") 60 sec., #101, Sen. Griffin TV Commercial, bad sound track,1967-1972 + + + + + + 318 + 5 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2 3/4") 60 sec., #102, Sen. Griffin TV Commercial, bad sound track,1967-1972 + + + + + + 318 + 6 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2 3/4") 60 sec., #102, Sen. Griffin,1967-1972 + + + + + + 318 + 7 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2 3/4") 60 sec., #102, Sen. Griffin Audio Spot,1967-1972 + + + + + + 318 + 8 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2", no reel) VAVITS,1967-1972 + + + + + + 318 + 9 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (5" Film reel) 3-1 min. Spots, Griffin Fund-raising--Radio,1967-1972 + + + + + + 318 + 10 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (4" Film reel) Griffin Commercial,1967-1972 + + + + + + 318 + 11 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, UPS Newsfilm,1967-1972 + + + + + + 318 + 12 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (7" Film reel) Detroit Econ. Club Debate, 10/17/66,1966 + + + + + + 318 + 13 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (7" Film reel) Econ. Club Debate, 10/17/66,1966 + + + + + + 318 + 14 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2 3/4") 1966 Campaign, 5 min. TV ads from WJBK-TV--7 count,1966 + + + + + + 318 + 15 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2 3/4") 1966 Campaign, 5 min. TV ads from 3 1/2' reel--1 count,1966 + + + + + + 318 + 16 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2 3/4") 1966 Campaign, 5 min. TV ads from 5" reel--1 count,1966 + + + + + + 318 + 17 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (No reels, 2" Tape) 1966 Campaign TV Spots from WXYZ -TV--2 count,1966 + + + + + + 318 + 18 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (No reels, 2" Tape) 1966 Campaign TV Spots from WXYZ -TV 2 1/2" tape--2 count,1966 + + + + + + 318 + 19 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (No reels, 2" Tape) 1966 Campaign TV Spots from WXYZ -TV 5" film reel--1 count,1966 + + + + + + 318 + 20 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2 3/4") #A, 20 sec., Ads for TV,1967-1972 + + + + + + 318 + 21 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2 3/4") #104, 20 sec., Ads for TV,1967-1972 + + + + + + 318 + 22 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2 3/4") 60 sec. Spot, #101,1967-1972 + + + + + + 318 + 23 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (5" film reel) 2-5 min. Show, Sen. Griffin,1967-1972 + + + + + + 318 + 24 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (5" film reel) 2-5 min. TV Commercial, Sen. Bob Griffin,1967-1972 + + + + + + 318 + 25 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 1 3/4", no reel) WWJ-TV, Griffin Campaign, L6-5-28-24--1,1967-1972 + + + + + + 318 + 26 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2 1/2", no reel) Newscasts, Griffin Campaign, L6-8-31-96--1,1967-1972 + + + + + + 318 + 27 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 1 3/4", no reel) Newscasts, Sen. Jaults Campaign for Griffin, L6-112-6-116--1,1967-1972 + + + + + + 318 + 28 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2 1/2", no reel) Newscasts, Griffin--1,1967-1972 + + + + + + 318 + 29 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2", no reel) Newscasts, Romney--Griffin=s Campaign, L6-9-2-96--1,1967-1972 + + + + + + 318 + 30 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2 3/4", no reel) Newscasts, Rep. Griffith=s Inflation, L6-9-9-122--1,1967-1972 + + + + + + 318 + 31 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2", no reel) Newscasts, Griffin AI will attend.@ L6-9-5-104--2,1967-1972 + + + + + + 318 + 32 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2 1/2", no reel) Newscasts, Griffin/Teamster and Nail Strike, L7-4-10-102--1,1967-1972 + + + + + + 318 + 33 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2 3/4", no reel) Newscasts, Griffin, Soapy Illness and New Poll, L6-9-19-12--1,1967-1972 + + + + + + 318 + 34 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2", no reel) Newscasts, Scholle-Romney-Griffin, L6-9-5-105--1,1967-1972 + + + + + + 318 + 35 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2 1/2", no reel) Newscasts, Griffin-Press Helps William=s Campaign, L6-8-12-165--1,1967-1972 + + + + + + 318 + 36 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2 1/2", no reel) Newscasts, Griffin-Inflation, L6-9-9-122--1,1967-1972 + + + + + + 318 + 37 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2 1/2", no reel) Newscasts, Griffin-Election Comment, L6-8-3-111--1,1967-1972 + + + + + + 318 + 38 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 3", no reel) Newscasts, Rep. Griffin--1,1967-1972 + + + + + + 318 + 39 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2 3/4") Scholle Blasts Griffin, L6-10-26-76; Griffin Blasts Scholle, L1-26-75; William Blasts Griffin, L6-10-26-83,1967-1972 + + + + + + 318 + 40 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2") Griffin Thanks Voters, L6-12-9-15,1967-1972 + + + + + + 318 + 41 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2") Sen. Griffin, CIA Students, L7-2-17-111,1967-1972 + + + + + + 318 + 42 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2") Griffin-Politics, Inflation, L6-11-24-97,1967-1972 + + + + + + 318 + 43 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2 1/2") Griffin-Car Inspection Laws, L7-2-16-97,1967-1972 + + + + + + 318 + 44 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2") Griffin-Romney Pocatello Problem, L7-2-22-137,1967-1972 + + + + + + 318 + 45 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2 1/2") Griffin-Kennedy Visit Vietnam, L7-2-13-18,1967-1972 + + + + + + 318 + 46 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 3") Romney-Griffin Action Team Plane Leaves, L6-11-31-143,1967-1972 + + + + + + 318 + 47 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 2 1/2") Griffin Visits Boyhood School Home, L6-10-16-31,1967-1972 + + + + + + 318 + 48 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 1 1/2") Griffin, L6-11-10-4,1967-1972 + + + + + + 318 + 49 + Records,Audio/Visual: Audio Tapes/Miscellaneous Films and Tapes, (Tape 1 3/4") Griffin-Romney, L7-2-10-72,1967-1972 + + + + + + 319 + 1 + Records,Audio/Visual: (Tape 3 1/4x1/4") Audiotape-Griffin Q&A in Senate Radio-TV, Gallery following Defeat of the Mansfield Amendment re: U.S. Nato Troop Levels, 5/20/71,1971 + + + + + + 319 + 2 + Records,Audio/Visual: (Tape 5 1/4x1/4") Sen. Griffin, 11/1/71,1971 + + + + + + 319 + 3 + Records,Audio/Visual: (Tape 5 1/4x1/4") AMeet the Member@, Sen. Griffin of MI, 11/30/70,1970 + + + + + + 319 + 4 + Records,Audio/Visual: (Tape 7 1/4x1/4") Griffin before National Press Club, 7/30/68,1968 + + + + + + 319 + 5 + Records,Audio/Visual: (Tape 7 1/4x1/4") Tydings Press Conf. Re: their Direct Pop. Election Amendment, Washington, 6/18/70,1970 + + + + + + 319 + 6 + Records,Audio/Visual: (Tape 7 1/4x1/4") Press Club Speech, 7/30/68,1968 + + + + + + 319 + 7 + Records,Audio/Visual: (Tape 7 1/4x1/4") Econ. Club-Griffin-Williams Debate, 10/17/66,1966 + + + + + + 319 + 8 + Records,Audio/Visual: (Tape 7 1/4x1/4") Vandenberg Luncheon, 4/5/67,1967 + + + + + + 319 + 9 + Records,Audio/Visual: (Tape 7 1/4x1/4") Mutual-Capitol Comment, 4/12/67,1967 + + + + + + 319 + 10 + Records,Audio/Visual: (Tape 7 1/4x1/4") Press Conf., 5/2/67,1967 + + + + + + 319 + 11 + Records,Audio/Visual: (Tape 7 1/4x1/4") Yr. End Summation of Congress RPG and Hart, 12/14/67,1967 + + + + + + 319 + 12 + Records,Audio/Visual: (Tape 7 1/4x1/4") National Press Club Speech, 7/30/68,1968 + + + + + + 319 + 13 + Records,Audio/Visual: (Tape 7 1/4x1/4") Focus-RPG (WJR Radio), 8/15/66,1966 + + + + + + 319 + 14 + Records,Audio/Visual: (Tape 7 1/4x1/4") Republican Convention-Keynote Speech, 8/66,1966 + + + + + + 319 + 15 + Records,Audio/Visual: (Tape 7 1/4x1/4") Press Conference Morning After Primary, 8/66,1966 + + + + + + 319 + 16 + Records,Audio/Visual: (Tape 7 1/4x1/4") Republican Keynote Speech Convention, 8/66,1966 + + + + + + 319 + 17 + Records,Audio/Visual: (Tape 7 1/4x1/4") Press Conference-Primary Night, 8/66,1966 + + + + + + 319 + 18 + Records,Audio/Visual: (Tape 7 1/4x1/4") WMSB-TV, Lansing, 10/11/66,1966 + + + + + + 319 + 19 + Records,Audio/Visual: (Tape 7 1/4x1/4") MJBK Telethon, 10/11/66,1966 + + + + + + 319 + 20 + Records,Audio/Visual: (Tape 7 1/4x1/4") NBC Image America: Web of Government Rep. Griffin, 3/29/60,1960 + + + + + + 319 + 21 + Records,Audio/Visual: (Tape 7 1/4x1/4") NBC Image America: Politics Rep. Griffin, 4/6/90,1990 + + + + + + 319 + 22 + Records,Audio/Visual: (Tape 7 1/4x1/4") Paul Revere Program-U. Of Oregon, Rep. Griffin, 1961,1961 + + + + + + 319 + 23 + Records,Audio/Visual: (Tape 7 1/4x1/4") WWJ A5 O=Clock Forum@ G.M. Williams, 7/27/66,1966 + + + + + + 319 + 24 + Records,Audio/Visual: (Tape 7 1/4x1/4") WXYZ Primary Special, 7/31/66,1966 + + + + + + 319 + 25 + Records,Audio/Visual: (Tape 7 1/4x1/4") Gordon Net, 7/21/73,1973 + + + + + + 319 + 26 + Records,Audio/Visual: (Tape 7 1/4x1/4") Senators Bayh and Griffin, AMA, 3/11/-,1966-1972 + + + + + + 319 + 27 + Records,Audio/Visual: (Tape 7 1/4x1/4") AGive Bob the Ball,@3/75,1975 + + + + + + 319 + 28 + Records,Audio/Visual: (Tape 7 1/4x1/4") Bob Griffin Tape,1966-1972 + + + + + + 319 + 29 + Records,Audio/Visual: (Tape 7 1/4x1/4") Griffin News Conf. Re: Passage Cooper-Church Amendment, 6/30/70,1970 + + + + + + 319 + 30 + Records,Audio/Visual: (Tape 7 1/4x1/4") Griffin-@What=s the Issue?@ re: Electoral Reform, 7/31/70,1970 + + + + + + 319 + 31 + Records,Audio/Visual: (Tape 7 1/4x1/4") Griffin-Gurney-Broyhill-Brown, Press Conf. Re: Layals opposition program, 7/9/70,1970 + + + + + + 319 + 32 + Records,Audio/Visual: (Tape 7 1/4x1/4") Lou Gordon Show, 9/20/70,1970 + + + + + + 319 + 33 + Records,Audio/Visual: (Tape 7 1/4x1/4") Griffin WBRB Mt. Clemens Sound-Off, 10/28/70,1970 + + + + + + 319 + 34 + Records,Audio/Visual: (Tape 7 1/4x1/4") Griffin on WXYZ-TV >Spotlight,= 11/22/70,1970 + + + + + + 319 + 35 + Records,Audio/Visual: (Tape 7 1/4x1/4") Griffin Speech to National Housing Center Council, Wash. DC, 12/10/70,1970 + + + + + + 319 + 36 + Records,Audio/Visual: (Tape 7 1/4x1/4") Griffin CBS >Capitol Cloakroom=-China, Agnew, Economy, Campaign Sp., 8/4/71,1971 + + + + + + 319 + 37 + Records,Audio/Visual: (Tape 7 1/4x1/4") Griffin Sp. On Great Lakes Pollution Conf. Of Great Lakes Gov=s/Premiers, 8/16/71,1971 + + + + + + 319 + 38 + Records,Audio/Visual: (Tape 7 1/4x1/4") Griffin on CBS with Sen. Harris re: European Troop Cutback, 5/18/71,1971 + + + + + + 319 + 39 + Records,Audio/Visual: (Tape 7 1/4x1/4") Griffin U.P.I.=s Washington Window, 3/7/71,1971 + + + + + + 319 + 40 + Records,Audio/Visual: (Tape 7 1/4x1/4") Griffin >What=s the Issue?= U.S. Chamber of Commerce re: Transportation Strikes, 3/10/71,1971 + + + + + + 319 + 41 + Records,Audio/Visual: (Tape 7 1/4x1/4") Griffin Address to Economic Club of Detroit, 5/17/71,1971 + + + + + + 319 + 42 + Records,Audio/Visual: (Tape 7 1/4x1/4") Griffin Testimony before Senate Labor Subcommittee Re: probe into UMW affairs, 7/13/71,1971 + + + + + + 320 + 1 + Records,Audio/Visual: Miscellaneous Tapes (3 1/4x1/4" Audio Tapes) Ford as V.P., 12/4/73,1973 + + + + + + 320 + 2 + Records,Audio/Visual: Miscellaneous Tapes (3 1/4x1/4" Audio Tapes) Ford as V.P., 12/4/73,1973 + + + + + + 320 + 3 + Records,Audio/Visual: Miscellaneous Tapes (3 1/4x1/4" Audio Tapes) Unlabeled, 12/4/73,1973 + + + + + + 320 + 4 + Records,Audio/Visual: Miscellaneous Tapes (3 1/4x1/4" Audio Tapes) Unlabeled, 12/4/73,1973 + + + + + + 320 + 5 + Records,Audio/Visual: Miscellaneous Tapes (Cassette) Cavanaugh and Williams Lansing AFL-CIO, 6/1/66, side 1,1966 + + + + + + 320 + 6 + Records,Audio/Visual: Miscellaneous Tapes (Cassette) Williams on Griffin's Appointment, side 2,1967-1972 + + + + + + 320 + 7 + Records,Audio/Visual: Miscellaneous Tapes (5 1/4x1/4" Audio Tapes) WJBK-TV Interview, (in envelope), 5/10/67,1967 + + + + + + 320 + 8 + Records,Audio/Visual: Miscellaneous Tapes (5 1/4x1/4" Audio Tapes) Griffin 1966 Campaign Song, ALet=s Keep Him There,@ (in metal case),1966 + + + + + + 320 + 9 + Records,Audio/Visual: Miscellaneous Tapes (5 1/4x1/4" Audio Tapes) China Interview Adam Gallon TV-2, 7/17/73,1973 + + + + + + 320 + 10 + Records,Audio/Visual: Miscellaneous Tapes (5 1/4x1/4" Audio Tapes) Sen. Griffin, Interview with Carl Cederberg with WILX-TV, 1/24/75,1975 + + + + + + 320 + 11 + Records,Audio/Visual: Miscellaneous Tapes (5 1/4x1/4" Audio Tapes) Lansing Area Peace Council, no date,undated + + + + + + 320 + 12 + Records,Audio/Visual: Miscellaneous Tapes (5 1/4x1/4" Audio Tapes) WJR Sen. Griffin and Lloyd Schwartz, 7/27/71,1971 + + + + + + 320 + 13 + Records,Audio/Visual: Miscellaneous Tapes (5 1/4x1/4" Audio Tapes) Interview with Sen. Allott on Supreme Court, 7/9/68,1968 + + + + + + 320 + 14 + Records,Audio/Visual: Miscellaneous Tapes (5 1/4x1/4" Audio Tapes) Partial Lou Gordon Recording/Transcribed, 7/7/68,1968 + + + + + + 320 + 15 + Records,Audio/Visual: Miscellaneous Tapes (5 1/4x1/4" Audio Tapes) Gordon City High School, MI Commencement Address, 6/17/68,1968 + + + + + + 320 + 16 + Records,Audio/Visual: Miscellaneous Tapes (5 1/4x1/4" Audio Tapes) Griffin Girls, 8/9/66,1966 + + + + + + 320 + 17 + Records,Audio/Visual: Miscellaneous Tapes (5 1/4x1/4" Audio Tapes) Griffin Comments on Dodd and Censure, 6/22/67,1967 + + + + + + 320 + 18 + Records,Audio/Visual: Miscellaneous Tapes (5 1/4x1/4" Audio Tapes) Griffin Address Mackinac Island, 9/24/67,1967 + + + + + + 320 + 19 + Records,Audio/Visual: Miscellaneous Tapes (5 1/4x1/4" Audio Tapes) WKBZ Muskegon Interview with Griffin, 1/20/69,1969 + + + + + + 320 + 20 + Records,Audio/Visual: Miscellaneous Tapes (5 1/4x1/4" Audio Tapes) Pres. Nixon at Tri-City Airport, 10/28/72, (7 1/4x1/4" Audio Tapes),1972 + + + + + + 320 + 21 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) Griffin and Lou Gordon WKBD-TV, 7/7/68,1968 + + + + + + 320 + 22 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) Griffin-Taft News Conference, 5/7/69,1969 + + + + + + 320 + 23 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) Macki Island Speech re: Haynsworth, 9/14/69,1969 + + + + + + 320 + 24 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) Lou Gordon, 11/2/69,1969 + + + + + + 320 + 25 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) Lunch at Mayflower, Muskegon, 11/17/71,1971 + + + + + + 320 + 26 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) Griffin Interview by Nick Arama WTRX, Flint, 9/18/72,1972 + + + + + + 320 + 27 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) Griffin Telethon WKZO-TV Kalamazoo, 10/24/72NBC Today Show, Watergate, China, 7/20/73,1972 + + + + + + 320 + 28 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) China Special WWJ-TV, 7/18/73,1973 + + + + + + 320 + 29 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) Buzz the Fuzz, 12/16/71,1971 + + + + + + 320 + 30 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) Griffin's Dinner, Raleigh House, 11/6/71, reels 1-4,1971 + + + + + + 320 + 31 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) Griffin on WJR's AFocus@ Program, 12/21/71,1971 + + + + + + 320 + 32 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) Spotlight-Griffin as Guest, 2/11/72,1972 + + + + + + 320 + 33 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) Salute to the States, MI, WGMS-FM, 10/26/71,1971 + + + + + + 320 + 34 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) Griffin Speech to MI Jaycees, Port Huron, National Priorities, 8/22/70,1970 + + + + + + 320 + 35 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) Joe Harnell, Arch., undated,undated + + + + + + 320 + 36 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) RPG Speech at Committee of 100 Miami Beach, 3/2/70,1970 + + + + + + 320 + 37 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) Press Conference, 9/20/68,1968 + + + + + + 320 + 38 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) Griffin-=Leading Questions= Should House Approve Labor Bill, 6/14/68,1968 + + + + + + 320 + 39 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) CBS-Capitol Cloakroom, >Washington Week,= 7/2/68,1968 + + + + + + 320 + 40 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) Delegates and Alternates National Convention, 5/11/68,1968 + + + + + + 320 + 41 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) International Platform Association with Ralph Nader, 7/21/66,1966 + + + + + + 320 + 42 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) Flint Kiwanis Speech, 5/20/66,1966 + + + + + + 320 + 43 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) Washington Press Conference, 5/16/66,1966 + + + + + + 320 + 44 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) Focus-WJR Radio, 8/15/67,1967 + + + + + + 320 + 45 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) Press Conference, 10/13/67,1967 + + + + + + 320 + 46 + Records,Audio/Visual: Miscellaneous Tapes (7 1/4x1/4" Audio Tapes) Voice of America Interview, 1/31/68,1968 + + + + + + 321 + 1 + Records,Audio/Visual: (7 1/4x1/4" Tapes) Griffin Girls,1972-1978 + + + + + + 321 + 2 + Records,Audio/Visual: (7 1/4x1/4" Tapes) Griffin Before Election, Nixon,1972-1978 + + + + + + 321 + 3 + Records,Audio/Visual: (7 1/4x1/4" Tapes) Program on POW's, WRBJ, Saint Johns,1972-1978 + + + + + + 321 + 4 + Records,Audio/Visual: (7 1/4x1/4" Tapes) Birmingham Women's Club,1972-1978 + + + + + + 321 + 5 + Records,Audio/Visual: (7 1/4x1/4" Tapes) Hidden Valley Speech to Editorial Writers,1972-1978 + + + + + + 321 + 6 + Records,Audio/Visual: (3 1/4x1/4" Tapes) Arms Agreement, New Ford Model, Pension Legislation, 1972,1972 + + + + + + 321 + 7 + Records,Audio/Visual: (7 1/4x1/4" Tapes) Audio/Visual: RPG on Unemployment,1972-1978 + + + + + + 321 + 8 + Records,Audio/Visual: (3 1/4x1/4" Tapes) TV Blackouts, Pension Reform,1972-1978 + + + + + + 321 + 9 + Records,Audio/Visual: (7 1/4x1/4" Tapes) RPG Speech, Campaign Issues,1972-1978 + + + + + + 321 + 10 + Records,Audio/Visual: (7 1/4x1/4" Tapes) Agnew Addressing Students, Four More Years,1972-1978 + + + + + + 321 + 11 + Records,Audio/Visual: (7 1/4x1/4" Tapes) Griffin on Spotlight,1972-1978 + + + + + + 321 + 12 + Records,Audio/Visual: (7 1/4x1/4" Tapes) Kelley on Busing, Campaign Issues,1972-1978 + + + + + + 321 + 13 + Records,Audio/Visual: (7 1/4x1/4" Tapes) Joint Press Conference, RPG and Kelley,1972-1978 + + + + + + 321 + 14 + Records,Audio/Visual: (7 1/4x1/4" Tapes) Nixon Urging RPG Reelection,1972-1978 + + + + + + 321 + 15 + Records,Audio/Visual: (7 1/4x1/4" Tapes) Election, Issues,1972-1978 + + + + + + 321 + 16 + Records,Audio/Visual: (7 1/4x1/4" Tapes) Kelley Interview, Says RPG won't Debate Him,1972-1978 + + + + + + 321 + 17 + Records,Audio/Visual: (7 1/4x1/4" Tapes) Interview, Frank Kelley,1972-1978 + + + + + + 321 + 18 + Records,Audio/Visual: (7 1/4x1/4" Tapes) RPG, Senior Citizens Before Election,1972-1978 + + + + + + 321 + 19 + Records,Audio/Visual: (3 1/4x1/4" Tapes) RPG, WJR, Government Series, 1971,1971 + + + + + + 321 + 20 + Records,Audio/Visual: (7 1/4x1/4" Tapes) Issues and Answers, 1974,1974 + + + + + + 321 + 21 + Records,Audio/Visual: (7 1/4x1/4" Tapes) Lou Gordon Show,1972-1978 + + + + + + 321 + 22 + Records,Audio/Visual: (7 1/4x1/4" Tapes) RPG Interview James Watt, Director Bureau of Outdoor Recreation,1972-1978 + + + + + + 321 + 23 + Records,Audio/Visual: (7 1/4x1/4" Tapes) Reporters Roundup, 1975,1975 + + + + + + 321 + 24 + Records,Audio/Visual: (7 1/4x1/4" Tapes) Capitol Cloakroom, 1978,1978 + + + + + + 322 + 1 + Records,Audio/Visual: (3/4x10 1/2" Tapes) A Bill Becomes a Law, 2 tapes,1957-1972 + + + + + + 322 + 2 + Records,Audio/Visual: (3/4x10 1/2" Tapes) A Bill Becomes a Law, 2 tapes,1957-1972 + + + + + + 322 + 3 + Records,Audio/Visual: (3/4x10 1/2" Tapes) Landrum-Griffin Law,1957-1972 + + + + + + 322 + 4 + Records,Audio/Visual: (3/4x10 1/2" Tapes) Landrum-Griffin Act, A Bill Becomes a Law,1957-1972 + + + + + + 322 + 5 + Records,Audio/Visual: (3/4x7" Tapes) Senator and President in White House,1957-1972 + + + + + + 322 + 6 + Records,Audio/Visual: (3/4x7" Tapes) Griffin Spots, 1966,1966 + + + + + + 322 + 7 + Records,Audio/Visual: (3/4x9 1/4" Tapes) Griffin Campaign Spots,1957-1972 + + + + + + 322 + 8 + Records,Audio/Visual: (3/4x3 1/2" Tapes) Agriffin@,1957-1972 + + + + + + 322 + 9 + Records,Audio/Visual: (5/8x4 1/2" Tapes) Interview, Griffin with Eisenhower on White House Steps,1957-1972 + + + + + + 322 + 10 + Records,Audio/Visual: (3/4x12 1/4" Tapes) Griffin TV Newsfilm, 2,1957-1972 + + + + + + 323 + 1 + Records,Audio/Visual: Griffin Birthday Party, 11/6/71, 16 mm, 10 1/2"reel, WJBK-TV, magnetic strip film, soundtrack WJR-TV, 12/14/71, 3 1/2" film reel,1971 + + + + + + 323 + 2 + Records,Audio/Visual: Press Conference at Metro Airport, 12 rolls of film, 16 mm, 6 1/2" each,1971-1972 + + + + + + 323 + 3 + Records,Audio/Visual: Griffin Birthday Dinner, 11/6/71, 5 1/2" film,1971 + + + + + + 323 + 4 + Records,Audio/Visual: Nixon, 3/72, 10 1/2" film reel,1972 + + + + + + 323 + 5 + Records,Audio/Visual: Griffin and Nixon at White House, 10/6/72, 5" film reel, 16 mm,1972 + + + + + + 324 + 1 + Records,Audio/Visual: Miscellaneous,undated + + + + + + 324 + 2 + Records,Audio/Visual: Ford-Griffin, 7", 7/17/63,1963 + + + + + + 324 + 3 + Records,Audio/Visual: Carl Sandburg before House of Representatives, 7", 2/20/59,1959 + + + + + + 324 + 4 + Records,Audio/Visual: McIntosh Postal Service, 7 1/2",undated + + + + + + 324 + 5 + Records,Audio/Visual: 2nd Inaugural, Color, McIntosh, 9 1/2",undated + + + + + + 324 + 6 + Records,Audio/Visual: Original Senators Black and White TV, Programs filmed in the Senate Recording Studio from 1/1/67 - 12/31/67, 6 1/2"-2,1967 + + + + + + 324 + 7 + Records,Audio/Visual:16 mm Original Negatives, 2-20 - 1-60 sec. Spots, (WA #66071), ASen. Griffin@-2,undated + + + + + + 324 + 8 + Records,Audio/Visual: 5 min. TV Commercial, 5"-2, UPI Newspix Inc.,undated + + + + + + 324 + 9 + Records,Audio/Visual: 5 min. Show, 4 3/4", UPI Newspix Inc.,undated + + + + + + 324 + 10 + Records,Audio/Visual: One is Racheads/Cong. Griffin, 4 1/2"-2, UPI Newspix Inc.,undated + + + + + + 324 + 11 + Records,Audio/Visual: 3" film, UPI Newspix Inc.,undated + + + + + + 324 + 12 + Records,Audio/Visual:AThe FBI Story@ 25 min., 10 1/2",undated + + + + + + 324 + 13 + Records,Audio/Visual: Griffin Show, 10 ½",undated + + + + + + 325 + 1 + Records,Audio/Visual: Miscellaneous (10 1/2x1/2" Films) Managed News and Clay Report on Mutual Security, 3/3/63,1963 + + + + + + 325 + 2 + Records,Audio/Visual: Miscellaneous (10 1/2x1/2" Films) With John Byma on ATax Pension and Tax Reduction@ 3/17/63,1963 + + + + + + 325 + 3 + Records,Audio/Visual: Miscellaneous (10 1/2x1/2" Films) Ford and Griffin Cuban and Federal Aid to Education, 3/3/63,1963 + + + + + + 325 + 4 + Records,Audio/Visual: Miscellaneous (10 1/2x1/2" Films) Griffin-Ford WZZM-TV, Organization Congress and Conference, Budget and Fiscal Policy, 2/3/63,1963 + + + + + + 325 + 5 + Records,Audio/Visual: Miscellaneous (10 1/2x1/2" Films) Griffin and Cong. Ford, Sleeping Bear Dunes Park and Defense Budget, 2/17/63,1963 + + + + + + 325 + 6 + Records,Audio/Visual: Miscellaneous (10 1/2x1/2" Films) Man on the Hill,undated + + + + + + 326 + 1 + Records,Audio/Visual: Miscellaneous, Mixed Measurements of Films,undated + + + + + + 326 + 2 + Records,Audio/Visual: Griffin Newspix 1966, 8 reels in 1 container,1966 + + + + + + 326 + 3 + Records,Audio/Visual: Griffin Programs 1961, negatives, 5 reels,1961 + + + + + + 326 + 5 + Records,Audio/Visual: Griffin: Trims and Outs, 12 reels,undated + + + + + + 326 + 6 + Records,Audio/Visual: ASenator Griffin@, 16 min, original negatives,undated + + + + + + 327 + 1 + Records,Photographs: RPG and Hart, Senate Baseball Game, 7/26/74,1974 + + + + + + 327 + 2 + Records,Photographs: RPG, Senator Hart with VFW Poppy Girl, 1974,1974 + + + + + + 327 + 3 + Records,Photographs: Harvey and Engel, Confirmed, 12/73,1973 + + + + + + 327 + 4 + Records,Photographs: Scott, Griffin, Ford, Confer, 12/73,1973 + + + + + + 327 + 5 + Records,Photographs: Ford with MI Republican Delegation, 12/73,1973 + + + + + + 327 + 6 + Records,Photographs: RPG with Mayor Elect Young of Detroit, 11/30/73,1973 + + + + + + 327 + 7 + Records,Photographs: RPG and Ford with Sweet Adelines, 10/15/73,1973 + + + + + + 327 + 8 + Records,Photographs: Griffin Shows Ford Hot Seat, 11/1/73,1973 + + + + + + 327 + 9 + Records,Photographs: RPG Meets Chou En-Lai, 7/20/73,1973 + + + + + + 327 + 10 + Records,Photographs: Hot Dog Battle Heats up in Congress, 6/14/73,1973 + + + + + + 327 + 11 + Records,Photographs: University of Michigan Doctorate, 5/8/73,1973 + + + + + + 327 + 12 + Records,Photographs: RPG with Brezhnev, 4/73,1973 + + + + + + 327 + 13 + Records,Photographs: Cherry Blossom Queen, Trudy Yarnell, 4/73,1973 + + + + + + 327 + 14 + Records,Photographs: RPG with Sen. Brooke, 1/3/73,1973 + + + + + + 327 + 15 + Records,Photographs: RPG with Dr. Floyd Riddick, 10/11/72,1972 + + + + + + 327 + 16 + Records,Photographs: Plaque from Bowling Prop of Michigan, 9/72,1972 + + + + + + 327 + 17 + Records,Photographs: RPG with Robert Fearing, 9/72,1972 + + + + + + 327 + 18 + Records,Photographs: RPG Meets Amvet Leaders, 8/72,1972 + + + + + + 327 + 19 + Records,Photographs: POW's and Mail,1969-1974 + + + + + + 327 + 20 + Records,Photographs: RPG with Michigan Girl, National Poster Contest, 5/72,1972 + + + + + + 327 + 21 + Records,Photographs: RPG with Mrs. Griffin and Lawrence Welk, Birthday Party,1969-1974 + + + + + + 327 + 22 + Records,Photographs: RPG with D. Oberlin, St. Lawrence Seaway Administration,1969-1974 + + + + + + 327 + 23 + Records,Photographs: Paddles for Peace,1969-1974 + + + + + + 327 + 24 + Records,Photographs: Sen. Hart, 2/15/72,1972 + + + + + + 327 + 25 + Records,Photographs: Senate Youth Program, 2/2/72,1972 + + + + + + 327 + 26 + Records,Photographs: Debra Kanter, First Girl Page from Michigan, 2/1/72,1972 + + + + + + 327 + 27 + Records,Photographs: Nixon Repealing Auto Excise Tax, 12/10/71,1971 + + + + + + 327 + 28 + Records,Photographs: Beautiful Award for Michigan, 11/71,1971 + + + + + + 327 + 29 + Records,Photographs: Rogers and Laird, 11/20/71,1971 + + + + + + 327 + 30 + Records,Photographs: Apollo 15 Astronauts, 9/10/71,1971 + + + + + + 327 + 31 + Records,Photographs: Chairman, Great Lakes Regional Committee,9/15/71,1971 + + + + + + 327 + 32 + Records,Photographs: Detroit Tigers, Lolich, Kaline, Freehan, 9/10/71,1971 + + + + + + 327 + 33 + Records,Photographs: Sol Edelstein, 6/20/71,1971 + + + + + + 327 + 34 + Records,Photographs: Jean Dixon, 5/71,1971 + + + + + + 327 + 35 + Records,Photographs: Congressman Donald Riegle, David Laro, 1971,1971 + + + + + + 327 + 36 + Records,Photographs: President Nixon and Cystic Fibrosis Poster Child, 4/30/71,1971 + + + + + + 327 + 37 + Records,Photographs: Graham Steenhover, Ping Pong Man, 4/23/71,1971 + + + + + + 327 + 38 + Records,Photographs: Bomb Damage at Capitol, 3/71,1971 + + + + + + 327 + 39 + Records,Photographs: Lincoln Statue, 1971,1971 + + + + + + 327 + 40 + Records,Photographs: RPG, Hart, Cherry Blossom Princess, 2/71,1971 + + + + + + 327 + 41 + Records,Photographs: Senate Youth Program Delegates, 2/12/71,1971 + + + + + + 327 + 42 + Records,Photographs: Michael Kraft Article to Weeklies, 1/8/71,1971 + + + + + + 327 + 43 + Records,Photographs: Radio Free Asia, 12/21/70,1970 + + + + + + 327 + 44 + Records,Photographs: Oberlin, Volpe, Seaway Party, 10/70,1970 + + + + + + 327 + 45 + Records,Photographs: Future Farmers from Michigan, 8/4/70,1970 + + + + + + 327 + 46 + Records,Photographs: Pope Paul VI, 11/15/70,1970 + + + + + + 327 + 47 + Records,Photographs: Arch N. Booth, What=s the Issue, 7/29/70,1970 + + + + + + 327 + 48 + Records,Photographs: Two Delegates to Boys Nation, 7/23/70,1970 + + + + + + 327 + 49 + Records,Photographs: Agricultural Queens, 5/13/70,1970 + + + + + + 327 + 50 + Records,Photographs: Judge Blackmun, Nominee for Supreme Court, 4/28/70,1970 + + + + + + 327 + 51 + Records,Photographs: Nixon, Mr. and Mrs. James Walker, 3/9/70,1970 + + + + + + 327 + 52 + Records,Photographs: Dorn Diehl, Agriculture Official, 9/19/69,1969 + + + + + + 327 + 53 + Records,Photographs: RPG and Mrs. Griffin, 1970-1971,1970-1971 + + + + + + 327 + 54 + Records,Ask Sen. Griffin Column: Academies,1969-1974 + + + + + + 327 + 55 + Records,Ask Sen. Griffin Column: Amnesty,1969-1974 + + + + + + 327 + 56 + Records,Ask Sen. Griffin Column: Veterans,1969-1974 + + + + + + 327 + 57 + Records,Ask Sen. Griffin Column: Senate Pages,1969-1974 + + + + + + 327 + 58 + Records,Ask Sen. Griffin Column: Peace Corps,1969-1974 + + + + + + 327 + 59 + Records,Ask Sen. Griffin Column: Dr. Samuel Mudd,1969-1974 + + + + + + 327 + 60 + Records,Ask Sen. Griffin Column: Vietnam,1969-1974 + + + + + + 327 + 61 + Records,Ask Sen. Griffin Column: Widowed Mother,1969-1974 + + + + + + 327 + 62 + Records,Ask Sen. Griffin Column: Medicare,1969-1974 + + + + + + 327 + 63 + Records,Ask Sen. Griffin Column: Food Prices,1969-1974 + + + + + + 327 + 64 + Records,Ask Sen. Griffin Column: Portraits,1969-1974 + + + + + + 327 + 65 + Records,Ask Sen. Griffin Column: Adoption Programs,1969-1974 + + + + + + 327 + 66 + Records,Ask Sen. Griffin Column: Commission,1969-1974 + + + + + + 327 + 67 + Records,Ask Sen. Griffin Column: Mobile Homes,1969-1974 + + + + + + 327 + 68 + Records,Ask Sen. Griffin Column: Sickle Cell Anemia,1969-1974 + + + + + + 327 + 69 + Records,Ask Sen. Griffin Column: Salmonella Poisoning,1969-1974 + + + + + + 327 + 70 + Records,Ask Sen. Griffin Column: Adopt Vietnamese,1969-1974 + + + + + + 327 + 71 + Records,Ask Sen. Griffin Column: Mammals,1969-1974 + + + + + + 327 + 72 + Records,Ask Sen. Griffin Column: Armed Services,1969-1974 + + + + + + 327 + 73 + Records,Ask Sen. Griffin Column: Florida,1969-1974 + + + + + + 327 + 74 + Records,Ask Sen. Griffin Column: Divorce,1969-1974 + + + + + + 327 + 75 + Records,Ask Sen. Griffin Column: Disabled,1969-1974 + + + + + + 327 + 76 + Records,Ask Sen. Griffin Column: Married Life,1969-1974 + + + + + + 327 + 77 + Records,Ask Sen. Griffin Column: Newspapers,1969-1974 + + + + + + 327 + 78 + Records,Ask Sen. Griffin Column: House of Representatives,1969-1974 + + + + + + 327 + 79 + Records,Ask Sen. Griffin Column: Job in November,1969-1974 + + + + + + 327 + 80 + Records,Ask Sen. Griffin Column: Ship,1969-1974 + + + + + + 327 + 81 + Records,Ask Sen. Griffin Column: Mexican Border,1969-1974 + + + + + + 327 + 82 + Records,Ask Sen. Griffin Column: Farm,1969-1974 + + + + + + 327 + 83 + Records,Ask Sen. Griffin Column: Army,1969-1974 + + + + + + 327 + 84 + Records,Ask Sen. Griffin Column: Neighbor,1969-1974 + + + + + + 327 + 85 + Records,Ask Sen. Griffin Column: Mini Bike,1969-1974 + + + + + + 327 + 86 + Records,Ask Sen. Griffin Column: Stationed,1969-1974 + + + + + + 327 + 87 + Records,Ask Sen. Griffin Column: Sea Hunt,1969-1974 + + + + + + 327 + 88 + Records,Ask Sen. Griffin Column: Ecology,1969-1974 + + + + + + 327 + 89 + Records,Ask Sen. Griffin Column: Washington Office,1969-1974 + + + + + + 327 + 90 + Records,Ask Sen. Griffin Column: Youngsters,1969-1974 + + + + + + 327 + 91 + Records,Ask Sen. Griffin Column: Recycling,1969-1974 + + + + + + 327 + 92 + Records,Ask Sen. Griffin Column: Den Mother,1969-1974 + + + + + + 327 + 93 + Records,Ask Sen. Griffin Column: Discharge from Army,1969-1974 + + + + + + 327 + 94 + Records,Ask Sen. Griffin Column: Land,1969-1974 + + + + + + 327 + 95 + Records,Ask Sen. Griffin Column: Retired,1969-1974 + + + + + + 327 + 96 + Records,Ask Sen. Griffin Column: Draft,1969-1974 + + + + + + 327 + 97 + Records,Ask Sen. Griffin Column: Senator=s Approval Column,1969-1974 + + + + + + 327 + 98 + Records,Ask Sen. Griffin Column: Approved Q&A,1969-1974 + + + + + + 327 + 99 + Records,Ask Sen. Griffin Column: Clippings re: Column,1969-1974 + + + + + + 327 + 100 + Records,Ask Sen. Griffin Column: Ask Senator Griffin: Used-2 folders,1969-1974 + + + + + + 327 + 101 + Records,Ask Sen. Griffin Column: Ask Senator Griffin: Used-2 folders,1969-1974 + + + + + + 327 + 102 + Records,Ask Sen. Griffin Column: Zip Code Directory, IRS Problems,1969-1974 + + + + + + 327 + 103 + Records,Ask Sen. Griffin Column: Unusual Events in Nature, Voice of America,1969-1974 + + + + + + 327 + 104 + Records,Ask Sen. Griffin Column: Junk Mail,1969-1974 + + + + + + 327 + 105 + Records,Ask Sen. Griffin Column: Soviet Union,1969-1974 + + + + + + 327 + 106 + Records,Ask Sen. Griffin Column: Face the Nation,1969-1974 + + + + + + 327 + 107 + Records,Ask Sen. Griffin Column: Peace Corps,1969-1974 + + + + + + 327 + 108 + Records,Ask Sen. Griffin Column: Heroin Hotline,1969-1974 + + + + + + 327 + 109 + Records,Ask Sen. Griffin Column: U.S. Information Agency Films,1969-1974 + + + + + + 327 + 110 + Records,Ask Sen. Griffin Column: POW Income Tax,1969-1974 + + + + + + 327 + 111 + Records,Ask Sen. Griffin Column: Golden Age Passport,1969-1974 + + + + + + 327 + 112 + Records,Ask Sen. Griffin Column: Underwater Nut,1969-1974 + + + + + + 327 + 113 + Records,Ask Sen. Griffin Column: Eligible for Draft,1969-1974 + + + + + + 327 + 114 + Records,Ask Sen. Griffin Column: Zip Codes,1969-1974 + + + + + + 327 + 115 + Records,Ask Sen. Griffin Column: Bookstore,1969-1974 + + + + + + 327 + 116 + Records,Ask Sen. Griffin Column: Blind,1969-1974 + + + + + + 327 + 117 + Records,Ask Sen. Griffin Column: College Senior,1969-1974 + + + + + + 327 + 118 + Records,Ask Sen. Griffin Column: Letter for Column,1969-1974 + + + + + + 327 + 119 + Records,Ask Sen. Griffin Column: Flood Insurance, Cherry Blossoms,1969-1974 + + + + + + 327 + 120 + Records,Ask Sen. Griffin Column: Griffin Cookbook, FBI Requirements,1969-1974 + + + + + + 327 + 121 + Records,Ask Sen. Griffin Column: Congressional Record, Dog License,1969-1974 + + + + + + 327 + 122 + Records,Ask Sen. Griffin Column: Veterans Benefits, College, Environmental Protection Agency,1969-1974 + + + + + + 327 + 123 + Records,Ask Sen. Griffin Column: IRS Returns, IKE Dollars,1969-1974 + + + + + + 327 + 124 + Records,Ask Sen. Griffin Column: Stamp Collecting, Ombudsman for Business,1969-1974 + + + + + + 327 + 125 + Records,Ask Sen. Griffin Column: In God We Trust, Library of Congress Books,1969-1974 + + + + + + 327 + 126 + Records,Ask Sen. Griffin Column: Federal Aviation administration, Mobile Homes,1969-1974 + + + + + + 327 + 127 + Records,Ask Sen. Griffin Column: Air Force Haircut, Olympic Team,1969-1974 + + + + + + 327 + 128 + Records,Ask Sen. Griffin Column: Flag Flying 24 Hours, Veterans Watts Line,1969-1974 + + + + + + 327 + 129 + Records,Ask Sen. Griffin Column: Senate Traditions, IRS Office Hours,1969-1974 + + + + + + 327 + 130 + Records,Ask Sen. Griffin Column: Clean Environment, American Indians,1969-1974 + + + + + + 327 + 131 + Records,Ask Sen. Griffin Column: Social Security, Extension West Front of Capitol,1969-1974 + + + + + + 327 + 132 + Records,Ask Sen. Griffin Column: Adolph Hitler, Golden Passport,1969-1974 + + + + + + 327 + 133 + Records,Ask Sen. Griffin Column: Baggage Searches, Land Holders,1969-1974 + + + + + + 327 + 134 + Records,Ask Sen. Griffin Column: Social Security Disability Payments,Assateaque Island,1969-1974 + + + + + + 327 + 135 + Records,Ask Sen. Griffin Column: Delta Queen, Nixon FBI Agent,1969-1974 + + + + + + 327 + 136 + Records,Ask Sen. Griffin Column: Football Blackouts, Women in Armed Forces,1969-1974 + + + + + + 327 + 137 + Records,Ask Sen. Griffin Column: Animal Collisions, Restoration of Old Supreme Court,1969-1974 + + + + + + 327 + 138 + Records,Ask Sen. Griffin Column: Eligibility Age Serving in Congress, Joint U.S.-Russian Space,1969-1974 + + + + + + 327 + 139 + Records,Ask Sen. Griffin Column: Washington Monument, National Cemeteries,1969-1974 + + + + + + 327 + 140 + Records,Ask Sen. Griffin Column: Army Recruiting, Survivor Benefits,1969-1974 + + + + + + 327 + 141 + Records,Ask Sen. Griffin Column: National Holiday, 1st Moon Landing, Goals for Americans,1969-1974 + + + + + + 327 + 142 + Records,Ask Sen. Griffin Column: Metric System, Senate Elections,1969-1974 + + + + + + 327 + 143 + Records,Ask Sen. Griffin Column: Financial Aid, Colleges, Vocational Schools,1969-1974 + + + + + + 327 + 144 + Records,Ask Sen. Griffin Column: ROTC for Women, Deafens Recycling,1969-1974 + + + + + + 327 + 145 + Records,Ask Sen. Griffin Column: Consumers Guide, Mail Problems,1969-1974 + + + + + + 327 + 146 + Records,Ask Sen. Griffin Column: Business Loans for Veterans, Methaqualone,1969-1974 + + + + + + 327 + 147 + Records,Ask Sen. Griffin Column: Capitol Fire, Tax Deductions,1969-1974 + + + + + + 327 + 148 + Records,Ask Sen. Griffin Column: Old Folks Plane Fares, Federal Employees,1969-1974 + + + + + + 327 + 149 + Records,Ask Sen. Griffin Column: Kohoutek Comet, Social Security,1969-1974 + + + + + + 327 + 150 + Records,Ask Sen. Griffin Column: Rotunda, National Center for Voluntary Action,1969-1974 + + + + + + 327 + 151 + Records,Ask Sen. Griffin Column: Pennies, Credit for Women,1969-1974 + + + + + + 327 + 152 + Records,Ask Sen. Griffin Column: Lost Social Security Cards, Signing up for Medicare,1969-1974 + + + + + + 327 + 153 + Records,Ask Sen. Griffin Column: IRS Income Small Tax Cases, Veterans Disability Claims,1969-1974 + + + + + + 327 + 154 + Records,Ask Sen. Griffin Column: Column Survey,1969-1974 + + + + + + 327 + 155 + Records,Ask Sen. Griffin Column: World Hunger, Working Women's Guide,1969-1974 + + + + + + 327 + 156 + Records,Ask Sen. Griffin Column: Farmer, Food Prices,1969-1974 + + + + + + 327 + 157 + Records,Ask Sen. Griffin Column: Housewife, Summer Jobs,1969-1974 + + + + + + 327 + 158 + Records,Ask Sen. Griffin Column: Family Trees, Drinking,1969-1974 + + + + + + 327 + 159 + Records,Ask Sen. Griffin Column: Repair Shop, Medicare,1969-1974 + + + + + + 327 + 160 + Records,Ask Sen. Griffin Column: Biting the Bullet, MI Colleagues,1969-1974 + + + + + + 327 + 161 + Records,Ask Sen. Griffin Column: Inflation, Bill Status,1969-1974 + + + + + + 327 + 162 + Records,Ask Sen. Griffin Column: Win Button, Flu,1969-1974 + + + + + + 327 + 163 + Records,Ask Sen. Griffin Column: Canned Fruits, Pornography,1969-1974 + + + + + + 327 + 164 + Records,Ask Sen. Griffin Column: Mortgage, Antique Shop,1969-1974 + + + + + + 327 + 165 + Records,Ask Sen. Griffin Column: Donate Kidneys, Energy Crisis,1969-1974 + + + + + + 327 + 166 + Records,Ask Sen. Griffin Column: Scout Troop, China Trip,1969-1974 + + + + + + 327 + 167 + Records,Ask Sen. Griffin Column: Airline Bumps, Bicycling Maps,1969-1974 + + + + + + 327 + 168 + Records,Ask Sen. Griffin Column: Bicentennial, AMan of Congress@,1969-1974 + + + + + + 327 + 169 + Records,Ask Sen. Griffin Column: Women FBI Agents, Coast Guard,1969-1974 + + + + + + 327 + 170 + Records,Ask Sen. Griffin Column: MI Tourist Council, AWise Home Buying@,1969-1974 + + + + + + 327 + 171 + Records,Ask Sen. Griffin Column: Mangoes, Microwave Ovens,1969-1974 + + + + + + 327 + 172 + Records,Ask Sen. Griffin Column: Law Degrees, Nutrition,1969-1974 + + + + + + 327 + 173 + Records,Ask Sen. Griffin Column: Harbor's Guide, AMan on the Campus@,1969-1974 + + + + + + 327 + 174 + Records,Ask Sen. Griffin Column: Braille Books, Environmental Merit Award,1969-1974 + + + + + + 327 + 175 + Records,Ask Sen. Griffin Column: W-4E Form, Jerry Ford Medallions,1969-1974 + + + + + + 327 + 176 + Records,Ask Sen. Griffin Column: Run-Away Toll Free Hotline, Coast Guard,1969-1974 + + + + + + 327 + 178 + Records,Ask Sen. Griffin Column: Hank Aaron, National Part Reservations,1969-1974 + + + + + + 327 + 179 + Records,Ask Sen. Griffin Column: Timber Wolves, Age Discrimination,1969-1974 + + + + + + 327 + 180 + Records,Ask Sen. Griffin Column: Motor Cycle Helmets, Insurance by Mail-Order,1969-1974 + + + + + + 327 + 181 + Records,Ask Sen. Griffin Column: Air Conditioners, Visitors Visas,1969-1974 + + + + + + 327 + 182 + Records,Ask Sen. Griffin Column: Penny Roundup, Overseas Business,1969-1974 + + + + + + 327 + 183 + Records,Ask Sen. Griffin Column: Cigarette Smoking, Arlington Cemetery,1969-1974 + + + + + + 327 + 184 + Records,Ask Sen. Griffin Column: Postage Rates, Army Scholarships,1969-1974 + + + + + + 327 + 185 + Records,Ask Sen. Griffin Column: Streaking, Home Repairs Information,1969-1974 + + + + + + 327 + 186 + Records,Ask Sen. Griffin Column: Letter to Editors to Keep Sending,1969-1974 + + + + + + 327 + 187 + Records,Ask Sen. Griffin Column: Patents Pending, Women Statues in Capitol,1969-1974 + + + + + + 327 + 188 + Records,Ask Sen. Griffin Column: Overseas Jobs, Plant Care,1969-1974 + + + + + + 327 + 189 + Records,Ask Sen. Griffin Column: Retirement Volunteer Work, VD Information,1969-1974 + + + + + + 327 + 190 + Records,Ask Sen. Griffin Column: Smoking on Buses, Name Changes,1969-1974 + + + + + + 327 + 191 + Records,Ask Sen. Griffin Column: Student Loans, Chain Letters,1969-1974 + + + + + + 327 + 192 + Records,Ask Sen. Griffin Column: Gas Milage, Savings Bonds,1969-1974 + + + + + + 327 + 193 + Records,Ask Sen. Griffin Column: FEO Hotline, Prayer Room,1969-1974 + + + + + + 327 + 194 + Records,Ask Sen. Griffin Column: Temporary Social Security Card, Ratfish,1969-1974 + + + + + + 327 + 195 + Records,Ask Sen. Griffin Column: Endangered Species,1969-1974 + + + + + + 327 + 196 + Records,Ask Sen. Griffin Column: Love Stamp, Alien Parakeets,1969-1974 + + + + + + 327 + 197 + Records,Ask Sen. Griffin Column: Federal Information Center, Highway Speeding,1969-1974 + + + + + + 327 + 198 + Records,Ask Sen. Griffin Column: Baby Cribs, Matrimonial Prospects,1969-1974 + + + + + + 327 + 199 + Records,Ask Sen. Griffin Column: Pandas, Korean GI Bill,1969-1974 + + + + + + 327 + 200 + Records,Ask Sen. Griffin Column: Car Pool, Holiday Mail,1969-1974 + + + + + + 327 + 201 + Records,Ask Sen. Griffin Column: Population, Congressional Scouts,1969-1974 + + + + + + 327 + 202 + Records,Ask Sen. Griffin Column: Marihuana Report, Baby Sitters Guide,1969-1974 + + + + + + 327 + 203 + Records,Ask Sen. Griffin Column: Johnny Horizon >76,=@ State Department,1969-1974 + + + + + + 327 + 204 + Records,Ask Sen. Griffin Column: White House Rooms, Noise Pollution,1969-1974 + + + + + + 327 + 205 + Records,Ask Sen. Griffin Column: 911 Emergency Number,1969-1974 + + + + + + 327 + 206 + Records,Ask Sen. Griffin Column: Approved by RPG for Column-2 folders,1969-1974 + + + + + + 327 + 207 + Records,Ask Sen. Griffin Column: Approved by RPG for Column-2 folders,1969-1974 + + + + + + 327 + 208 + Records,Ask Sen. Griffin Column: Copy Submitted to Senator for Approval,1969-1974 + + + + + + 328 + 1 + Records,China, WWI,1973-1978 + + + + + + 328 + 2 + Records,Cherry Royal Parade,1973-1978 + + + + + + 328 + 3 + Records,President's Visit to Traverse City,1973-1978 + + + + + + 328 + 4 + Records,Grant Announcement, Fisherman's Island State Park,1973-1978 + + + + + + 328 + 5 + Records,The Poisoning of Michigan,@ PBS/PBB,1973-1978 + + + + + + 328 + 6 + Records,Griffin for U.S. Senate, 1978,1978 + + + + + + 329 + 1 + Records,Returning Government to the People,@ RPG on SST,1971-1972 + + + + + + 329 + 2 + Records,Auto Excise Tax, Nixon's Supreme Court Nominations, 2 1/2" videotape,1971-1972 + + + + + + 329 + 3 + Records,Saving Jobs at the Soo Locks,1971-1972 + + + + + + 329 + 4 + Records,Auto Excise Tax, Nomination of Butz and Rehnquist,1971-1972 + + + + + + 329 + 5 + Records,Meany's Resignation, Detroit School Busing,1971-1972 + + + + + + 329 + 6 + Records,ITT Hearings, Anti-Busing Legislation, West Coast Dock Strikes,1971-1972 + + + + + + 330 + 1 + Records,Arms Control, Ford Emissions Problems, Pension Reform,1972 + + + + + + 330 + 2 + Records,Arms Limitation, Computer Adoption Amendment, Kleindienst,1972 + + + + + + 330 + 3 + Records,Candidate for Reelection,1972 + + + + + + 330 + 4 + Records,Busing, Inflation, Pullout of Indochina,1972 + + + + + + 330 + 5 + Records,No Tax Increases Under Nixon, Revenue Sharing, Meat Prices,1972 + + + + + + 330 + 6 + Records,Pension Reform, Consumer Bill, Rivers and Harbors Act,1972 + + + + + + 330 + 7 + Records,Busing, Veteran's Pension, Water Pollution Bill,1972 + + + + + + 331 + 1 + Records,Ask Senator Griffin Column:,1957-1976 + + + + + + 331 + 2 + Records,911 Emergency Number,1957-1976 + + + + + + 331 + 3 + Records,White House Rooms, Noise Pollution,1957-1976 + + + + + + 331 + 4 + Records,Johnny Horizon >76,=@ State Department,1957-1976 + + + + + + 331 + 5 + Records,Car Pool, Holiday Mail,1957-1976 + + + + + + 331 + 6 + Records,Marihuana Report, Baby Sitters Guide,1957-1976 + + + + + + 331 + 7 + Records,Pandas, Korean GI Bill,1957-1976 + + + + + + 331 + 8 + Records,Population, Congressional Scouts,1957-1976 + + + + + + 331 + 9 + Records,Baby Cribs, Matrimonial Prospects,1957-1976 + + + + + + 331 + 10 + Records,Federal Information Center, Highway Speeding,1957-1976 + + + + + + 331 + 11 + Records,Love Stamp, Alien Parakeets,1957-1976 + + + + + + 331 + 12 + Records,Endangered Species,1957-1976 + + + + + + 331 + 13 + Records,Temporary Social Security Card, Ratfish,1957-1976 + + + + + + 331 + 14 + Records,Federal Energy Office Hotline, Prayer Room,1957-1976 + + + + + + 331 + 15 + Records,Gas Milage, Savings Bonds,1957-1976 + + + + + + 331 + 16 + Records,Student Loans, Chain Letters,1957-1976 + + + + + + 331 + 17 + Records,Smoking on Buses, Name Changes,1957-1976 + + + + + + 331 + 18 + Records,Retirement Volunteer Work, VD Information,1957-1976 + + + + + + 331 + 19 + Records,Federal Overseas Jobs, Plant Care,1957-1976 + + + + + + 331 + 20 + Records,Patents Pending, Women Statues in Capitol,1957-1976 + + + + + + 331 + 21 + Records,Letter to Editors,1957-1976 + + + + + + 331 + 22 + Records,Streaking, Home Repairs Information,1957-1976 + + + + + + 331 + 23 + Records,Postage Rates, Army Scholarships,1957-1976 + + + + + + 331 + 24 + Records,Cigarette Smoking, Arlington Cemetery,1957-1976 + + + + + + 331 + 25 + Records,Penny Roundup, Overseas Business,1957-1976 + + + + + + 331 + 26 + Records,Motor Cycle Helmets, Insurance by Mail-Order,1957-1976 + + + + + + 331 + 27 + Records,Timber Wolves, Age Discrimination,1957-1976 + + + + + + 331 + 28 + Records,Hank Aaron, National Part Reservations,1957-1976 + + + + + + 331 + 29 + Records,Air Conditioners, Visitors Visas,1957-1976 + + + + + + 331 + 30 + Records,Runaway Toll Free Hotline, Coast Guard,1957-1976 + + + + + + 331 + 31 + Records,Physical Fitness, Federal Register,1957-1976 + + + + + + 331 + 32 + Records,W-4E Form, Jerry Ford Medallions,1957-1976 + + + + + + 331 + 33 + Records,Braille Books, Environmental Merit Award,1957-1976 + + + + + + 331 + 34 + Records,Harbor's Guide, AMan on the Campus@,1957-1976 + + + + + + 331 + 35 + Records,Law Degrees, Nutrition,1957-1976 + + + + + + 331 + 36 + Records,MI Tourist Council, AWise Home Buying@,1957-1976 + + + + + + 331 + 37 + Records,Women FBI Agents, Coast Guard,1957-1976 + + + + + + 331 + 38 + Records,Bicentennial, AMan of Congress@,1957-1976 + + + + + + 331 + 39 + Records,Airline Bumps, Bicycling Maps,1957-1976 + + + + + + 331 + 40 + Records,Scout Troop, China Trip,1957-1976 + + + + + + 331 + 41 + Records,Donate Kidneys, Energy Crisis,1957-1976 + + + + + + 331 + 42 + Records,Mortgage, Antique Shop,1957-1976 + + + + + + 331 + 43 + Records,Win Button, Flu,1957-1976 + + + + + + 331 + 44 + Records,Canned Fruits, Pornography,1957-1976 + + + + + + 331 + 45 + Records,Inflation, Bill Status,1957-1976 + + + + + + 331 + 46 + Records,Biting the Bullet, MI Colleagues,1957-1976 + + + + + + 331 + 47 + Records,Repair Shop, Medicare,1957-1976 + + + + + + 331 + 48 + Records,Family Trees, Drinking,1957-1976 + + + + + + 331 + 49 + Records,Food Prices Factbook, Register for Draft,1957-1976 + + + + + + 331 + 50 + Records,World Hunger, Working Woman's World,1957-1976 + + + + + + 331 + 51 + Records,Tar and Nicotine Contest, Interlock,1957-1976 + + + + + + 331 + 52 + Records,Income Tax Booklet, Congressional Retirements,1957-1976 + + + + + + 331 + 53 + Records,Clemency, Equal Rights Amendment,1957-1976 + + + + + + 331 + 54 + Records,Summer Jobs with Government, Boating Classes,1957-1976 + + + + + + 331 + 55 + Records,Consumers, Speed Limit,1957-1976 + + + + + + 331 + 56 + Records,Vietnam Veteran's Bonus, Financial Aid for College Students,1957-1976 + + + + + + 331 + 57 + Records,Income Tax Rebate, Matrimonial Chances,1957-1976 + + + + + + 331 + 58 + Records,Farmers Home Administration Loans, Gas Milage,1957-1976 + + + + + + 331 + 59 + Records,Dependence on Foreign Oil, Federal Sponsored Careers in Science,1957-1976 + + + + + + 331 + 60 + Records,Mortgage Rates, Pension Reform,1957-1976 + + + + + + 331 + 61 + Records,Women Presidential Candidates, Victory Gardens,1957-1976 + + + + + + 331 + 62 + Records,Cigarette Smoking Habits, Automobile Rebate Tax,1957-1976 + + + + + + 331 + 63 + Records,Deserting Parents, Flame Resistant Sleepware,1957-1976 + + + + + + 331 + 64 + Records,Scout Troop Help for Vietnam Orphans, Occupational Titles,1957-1976 + + + + + + 331 + 65 + Records,National Gallery of Art, Foster Grandparents,1957-1976 + + + + + + 331 + 66 + Records,IRS Rebate Checks, Foreign Drug Laws,1957-1976 + + + + + + 331 + 67 + Records,American Women, Canning Jars and Lids,1957-1976 + + + + + + 331 + 68 + Records,Chaplain of U.S., Smokey the Bear,1957-1976 + + + + + + 331 + 69 + Records,Statuary Hall, Breast Cancer Pamphlets,1957-1976 + + + + + + 331 + 70 + Records,Airlines and Luggage, Restored Capitol Chamber,1957-1976 + + + + + + 331 + 71 + Records,Utility Rates, Canada Touring,1957-1976 + + + + + + 331 + 72 + Records,Social Security Account, Moving Company Reliability,1957-1976 + + + + + + 331 + 73 + Records,Flag Day, Social Security Card,1957-1976 + + + + + + 331 + 74 + Records,Overseas Health, Zero Population,1957-1976 + + + + + + 331 + 75 + Records,Letter Bombs, Energy Conservation,1957-1976 + + + + + + 331 + 76 + Records,Bicentennial Coins, Bicentennial Events Book,1957-1976 + + + + + + 331 + 77 + Records,Water Safety, Senior Junior Titles,1957-1976 + + + + + + 331 + 78 + Records,Hijacking, Document Reproductions,1957-1976 + + + + + + 331 + 79 + Records,Flag Stripes, Fuel Economy Pamphlet,1957-1976 + + + + + + 331 + 80 + Records,Title IX, Emergency Booklet,1957-1976 + + + + + + 331 + 81 + Records,Air Travel, National Parks Information,1957-1976 + + + + + + 331 + 82 + Records,Microwave Ovens,1957-1976 + + + + + + 331 + 83 + Records,Technical Ideas, Carpools,1957-1976 + + + + + + 331 + 84 + Records,Bicentennial Star, School Curriculum for Public Jobs,1957-1976 + + + + + + 331 + 85 + Records,Fire Prevention, List of Congressmen and Senators,1957-1976 + + + + + + 331 + 86 + Records,White House Tours, Private Pension Plans,1957-1976 + + + + + + 331 + 87 + Records,Pornographic Mail,1957-1976 + + + + + + 331 + 88 + Records,Draft Column,1957-1976 + + + + + + 331 + 89 + Records,Miscellaneous Drafts of Speeches (with RPG Editing): Original Drafts-Speeches, 1966,1966 + + + + + + 331 + 90 + Records,Miscellaneous Drafts of Speeches (with RPG Editing): Vietnam Speech, 1966,1966 + + + + + + 331 + 91 + Records,Miscellaneous Drafts of Speeches (with RPG Editing): Speeches, 1966,1966 + + + + + + 331 + 92 + Records,Miscellaneous Drafts of Speeches (with RPG Editing): Speeches, Foreign Relations, no date,undated + + + + + + 331 + 93 + Records,Miscellaneous Drafts of Speeches (with RPG Editing): Original Drafts, Speeches, 1967,1967 + + + + + + 331 + 94 + Records,Miscellaneous Drafts of Speeches (with RPG Editing): Speech, Foreign Affairs, Captive Nations, no date,undated + + + + + + 331 + 95 + Records,Miscellaneous Drafts of Speeches (with RPG Editing): Drafts prepared by Peter's Department for Senator's 96 Miscellaneous Drafts of Speeches (with RPG Editing): Attention, 1967,undated + + + + + + 331 + 97 + Records,Miscellaneous Drafts of Speeches (with RPG Editing): Original Speech Drafts, 1968,1968 + + + + + + 331 + 98 + Records,Miscellaneous Drafts of Speeches (with RPG Editing): Speeches, 1968,1968 + + + + + + 331 + 99 + Records,Miscellaneous Drafts of Speeches (with RPG Editing): Speeches, 1969,1969 + + + + + + 331 + 100 + Records,Miscellaneous Drafts of Speeches (with RPG Editing): Speeches, 1970,1970 + + + + + + 331 + 101 + Records,Miscellaneous Drafts of Speeches (with RPG Editing): Speeches, no date,undated + + + + + + 331 + 102 + Records,Miscellaneous Drafts of Speeches (with RPG Editing): Speeches and Draft of Speeches, 1974,1974 + + + + + + 331 + 103 + Records,Miscellaneous Drafts of Speeches (with RPG Editing): Campaign Speech Kit, 1958,1958 + + + + + + 331 + 104 + Records,Photographs: RPG and Jaycees, Announcement of >59 10 Outstanding Young Men,1957-1976 + + + + + + 331 + 105 + Records,Photographs: RPG, Mrs. G. with friends at Jaycees Outstanding Young Man Dinner, 1/60,1957-1976 + + + + + + 331 + 106 + Records,Photographs: RPG Testimonial Dinner Program, 1/20/64,1964 + + + + + + 331 + 107 + Records,Photographs: RPG with Reps. Landrum, Morton, and Gov. Romney, 1/20/64,1964 + + + + + + 331 + 108 + Records,Photographs: RPG at Home with Mrs. G., Rick, Paul, and Jim, 1957,1957 + + + + + + 331 + 109 + Records,Photographs: RPG with Governor William G. Milliken, 1976,1976 + + + + + + 331 + 110 + Records,Photographs: Certificate, Lansing Goodwill Ambassador,1957-1976 + + + + + + 331 + 111 + Records,Photographs: Certificate, Young Republican Campaign School, 8/74,1974 + + + + + + 331 + 112 + Records,Photographs: RPG, Eisenhower, and Congressman on White House Steps,1957-1976 + + + + + + 331 + 113 + Records,Photographs: RPG with John F. Kennedy and William H. Ayres,1957-1976 + + + + + + 331 + 114 + Records,Photographs: RPG at White House Bill Signing (President Johnson),1957-1976 + + + + + + 331 + 115 + Records,Photographs: RPG, Sen. Bob Dole, and Pres. Nixon in White House Rose Garden, 1970,1970 + + + + + + 331 + 116 + Records,Photographs: RPG, Pres. Nixon, and Mickey Lolich (Detroit Tiger) in Oval Office,1957-1976 + + + + + + 331 + 117 + Records,Photographs: RPG with Pres. Nixon in Oval Office,1957-1976 + + + + + + 331 + 118 + Records,Photographs: RPG with Ford and Bipartisan Leadership at White House, 1/20/76,1976 + + + + + + 331 + 119 + Records,Photographs: Senate Republican Leadership, 1973,1973 + + + + + + 331 + 120 + Records,Photographs: RPG with Scott and Allott, 1971,1971 + + + + + + 331 + 121 + Records,Photographs: RPG with Scott, 1969,1969 + + + + + + 331 + 122 + Records,Photographs: RPG at Joint Session, Swearing in of Vice Pres. Ford, 12/6/73,1973 + + + + + + 331 + 123 + Records,Photographs: RPG with Rep. Fred Hartley, Autographed,1957-1976 + + + + + + 331 + 124 + Records,Photographs: RPG with Rep. Joseph Martin, Autographed,1957-1976 + + + + + + 331 + 125 + Records,Photographs: RPG with HEW Secretary Arthur H. Fleming, undated,undated + + + + + + 331 + 126 + Records,Photographs: Rep. James Harvey, Autographed,1957-1976 + + + + + + 331 + 127 + Records,Photographs: RPG with Sen. Edward Brooke and Coretta S. King,1957-1976 + + + + + + 331 + 128 + Records,Photographs: RPG with Elly Peterson at Farewell Luncheon, 12/70,1970 + + + + + + 331 + 129 + Records,Photographs: RPG in Senate Dining Room with Milliken, 1968,1968 + + + + + + 331 + 130 + Records,Photographs: RPG at GOP Leadership Meeting, White House, 6/23/76,1976 + + + + + + 331 + 131 + Records,Photographs: Senate GOP Leadership, Young, Scott, RPG, Smith, Allott,1957-1976 + + + + + + 331 + 132 + Records,Photographs: RPG with Sen. Everett Dirkson and Comedian Red Skelton,1957-1976 + + + + + + 331 + 133 + Records,Photographs: Jill Griffin Kissing RPG, 5/16/66,1966 + + + + + + 331 + 134 + Records,Photographs: MI Republican House Members with Gov. George Romney,1957-1976 + + + + + + 331 + 135 + Records,Photographs: RPG with Rep. Al Quie and Clark MacGregor, 1964,1964 + + + + + + 331 + 136 + Records,Photographs: RPG with Agriculture Secretary Ezra Taft Benson,1957-1976 + + + + + + 331 + 137 + Records,Photographs: RPG with Agriculture Secretary Ezra Taft Benson,1957-1976 + + + + + + 331 + 138 + Records,Photographs: Postmaster General Winton Blount, Autographed,1957-1976 + + + + + + 331 + 139 + Records,Photographs: RPG with Postmaster General Arthur Summerfield,1957-1976 + + + + + + 331 + 140 + Records,Photographs: RPG with Treasury Secretary George Humphrey,1957-1976 + + + + + + 331 + 141 + Records,Photographs: RPG with Treasury Secretary Robert Anderson,1957-1976 + + + + + + 331 + 142 + Records,Photographs: RPG with William P. Rogers,1957-1976 + + + + + + 331 + 143 + Records,Photographs: Reproduction of RPG Saints and Sinners, Autographed,1957-1976 + + + + + + 331 + 144 + Records,Photographs: RPG with Neil McElroy, Autographed,1957-1976 + + + + + + 331 + 145 + Records,Photographs: RPG with 6 MI Congressmen and Rep. H. R. Cross,1957-1976 + + + + + + 331 + 146 + Records,Photographs: RPG with Reps. Goodell, Dominick, and Anderson,1957-1976 + + + + + + 331 + 147 + Records,Photographs: RPG with Rep. Bob Michel at Congressional Baseball Game,1957-1976 + + + + + + 331 + 148 + Records,Photographs: RPG with Phillip Landrum,1957-1976 + + + + + + 331 + 149 + Records,Photographs: RPG with Reps. Barden, Halleck, Landrum, and Kearns,1957-1976 + + + + + + 331 + 150 + Records,Photographs: RPG and Mrs. G. with Rep. And Mrs. Broomfield,1957-1976 + + + + + + 331 + 151 + Records,Photographs: RPG with Former Rep. Albert J. Engel,1957-1976 + + + + + + 331 + 152 + Records,Photographs: RPG and Mrs. G. with Pope Paul VI, the Vatican, 11/70,1970 + + + + + + 331 + 153 + Records,Photographs: RPG with Admiral Rawson Bennett,1957-1976 + + + + + + 331 + 154 + Records,Photographs: RPG with Mrs. Paul Goebel, Grand Rapids, and Werner Von Braun (Nuclear Scientist),1957-1976 + + + + + + 331 + 155 + Records,Photographs: RPG with Detroit Tigers, 3/72-3 photos,1972 + + + + + + 331 + 156 + Records,Photographs: RPG with Reps. Meader, Hardy, Hill, and Curtis, 1959,1959 + + + + + + 331 + 157 + Records,Photographs: RPG with Reps. Meader, Hardy, Latin American Trip, 1959,1959 + + + + + + 331 + 158 + Records,Photographs: RPG with Monagan and Broomfield, Krakow, Poland, Children=s Hospital, 1962-2 photos,1962 + + + + + + 331 + 159 + Records,Photographs: RPG with Henry Ford II and Fr. Malcolm Carron, U of Detroit, 1972-2 photos,1972 + + + + + + 331 + 160 + Records,Photographs: RPG with Judge Hunsberger and Family of Traverse City,1957-1976 + + + + + + 331 + 161 + Records,Photographs: RPG with Pam Eldred of Birmingham, Miss America, 1970,1970 + + + + + + 331 + 162 + Records,Photographs: RPG with Chin Can of Muskegon and Members of his Family, 1957-1976 + + + + + + 331 + 163 + Records,Photographs: RPG on the Air, 1970,1970 + + + + + + 331 + 164 + Records,Photographs: RPG Portrait,1957-1976 + + + + + + 331 + 165 + Records,Photographs: RPG and sons at West Point,1957-1976 + + + + + + 332 + 1 + Records,News Releases, Remarks, Statements, 1957-1959,1957-1959 + + + + + + 332 + 2 + Records,News Releases, Remarks, Statements, 1960-1965,1960-1965 + + + + + + 332 + 3 + Records,News Releases, Remarks, Statements, undated,undated + + + + + + 332 + 4 + Records,Washington Report, 1/1/59-10/19/65,1959-1965 + + + + + + 332 + 5 + Records,Film Script, 1960,1960 + + + + + + 332 + 6 + Records,Patty Carvin Show, script, 3 photos, 1 disc record, 6/27/60,1960 + + + + + + 332 + 7 + Records,Landrum-Griffin Act Benefits the Working Man, 8/23/60,1960 + + + + + + 332 + 8 + Records,Union Corruption Dips Under Landrum-Griffin Law, 9/14/60,1960 + + + + + + 332 + 9 + Records,TV Broadcast with Mr. Alger, 8/10/61-2 photos,1961 + + + + + + 332 + 10 + Records,Taft Memorial Dedication, 4/14/59,1959 + + + + + + 332 + 11 + Records,RPG Photos, Press Conference, undated-3,undated + + + + + + 332 + 12 + Records,Radio and TV, 1959-1961,1959-1961 + + + + + + 332 + 13 + Records,Statement, Reverse the Denver Building Decision, Common Situs Picketing, 3/8/60,1960 + + + + + + 332 + 14 + Records,The Late Albert Engel, Sr., Congressional,1956-1975 + + + + + + 332 + 15 + Records,Record Insert, 1/19/60,1960 + + + + + + 332 + 16 + Records,RPG with Ed Swett, photo, 1959,1959 + + + + + + 332 + 17 + Records,RPG with Members of Michigan Petroleum Association, photo, 1959,1959 + + + + + + 332 + 18 + Records,RPG with Robert Pearce and James Brammer, photo,1956-1975 + + + + + + 332 + 19 + Records,Radio TV Interview with Hon. Charles Halleck, script and disc record, 2/11/59,1959 + + + + + + 332 + 20 + Records,Radio TV Interview with Dr. Walter Judd, script and disc record, 6/5/59,1959 + + + + + + 332 + 21 + Records,Radio TV Interview with Cong. John Dent, script and disc record, 6/18/59,1959 + + + + + + 332 + 22 + Records,Radio TV Interview with Dr. Lawrence Derthick, script and disc record, 2/27/59,1959 + + + + + + 332 + 23 + Records,The Leading Question, RPG and Cong. John Dent, script and 2 disc records, 6/26/59,1959 + + + + + + 332 + 24 + Records,Interview of Hon. Albert Quie, script and disc record, 7/22/59,1959 + + + + + + 332 + 25 + Records,Interview of Hon. Frederick H. Mueller, script and disc record, 9/3/59,1959 + + + + + + 332 + 26 + Records,Interview with Hon. George Meader, script, 5/1/59,1959 + + + + + + 332 + 27 + Records,RPG with Pres. Eisenhower, photo,1956-1975 + + + + + + 332 + 28 + Records,Radio TV Programs, 1959,1959 + + + + + + 332 + 29 + Records,TV Interview with James Mitchell, 5/5/59,1959 + + + + + + 332 + 30 + Records,Interview of Vice President Nixon on Labor Bill and Presidential Trips, script, news release, and disc record, 9/3/59,1959 + + + + + + 332 + 31 + Records,Interview of John McClellan, 6/330/59,1959 + + + + + + 332 + 32 + Records,Meeting the Challenges of the Sixties, Pamphlet,1956-1975 + + + + + + 332 + 33 + Records,Action on Cuba, Cadillac Evening News, 1962,1962 + + + + + + 332 + 34 + Records,News Release, 1962,1962 + + + + + + 332 + 35 + Records,Should Labor Laws be Toughened?,1956-1975 + + + + + + 332 + 36 + Records,Study Shows Union Rights Protected, 10/14/63,1963 + + + + + + 332 + 37 + Records,Challenge on Rights, Grand Rapids Press, 8/3/63,1963 + + + + + + 332 + 38 + Records,Griffin Joins Bible Crusade, Muskegon Chronicle, 1963,1963 + + + + + + 332 + 39 + Records,News Release, 1963,1963 + + + + + + 332 + 40 + Records,Committee Statement, Sleeping Bear Dunes, 3/28/63,1963 + + + + + + 332 + 41 + Records,Senator and Copemish High School, 1963,1963 + + + + + + 332 + 42 + Records,News Releases, 1964,1964 + + + + + + 332 + 43 + Records,TV Film, Memorial Day, 1964,1964 + + + + + + 332 + 44 + Records,4-H Group, 7/64,1964 + + + + + + 332 + 45 + Records,Newsletter with Questionnaire, 4/65,1965 + + + + + + 332 + 46 + Records,Washington Reports (Notebook), 1957-1965,1957-1965 + + + + + + 332 + 47 + Records,Telephoned Press Releases, 1964-1967,1964-1967 + + + + + + 332 + 48 + Records,Romney Sets Price on Right-to-Work, 3/8/65,1965 + + + + + + 332 + 49 + Records,Press Releases, 1958-1966,1958-1966 + + + + + + 332 + 50 + Records,News Releases, 1966,1966 + + + + + + 332 + 51 + Records,Dear Congressman Griffin, Notebook, 1965-5 folders,1965 + + + + + + 332 + 52 + Records,Dear Congressman Griffin, Notebook, 1965-5 folders,1965 + + + + + + 332 + 53 + Records,Dear Congressman Griffin, Notebook, 1965-5 folders,1965 + + + + + + 332 + 54 + Records,Dear Congressman Griffin, Notebook, 1965-5 folders,1965 + + + + + + 332 + 55 + Records,Dear Congressman Griffin, Notebook, 1965-5 folders,1965 + + + + + + 332 + 56 + Records,Ask Senator Griffin Column, Notebook, 1975,1975 + + + + + + 332 + 57 + Records,News Releases, 1959-1960,1959-1960 + + + + + + 332 + 58 + Records,Simulcasts ca., 1957-8, 9 disc records,1957-1958 + + + + + + 332 + 59 + Records,Simulcasts ca., 1957-8, 9 disc records,1957-1958 + + + + + + 332 + 60 + Records,Simulcasts ca., 1957-8, 9 disc records,1957-1958 + + + + + + 332 + 61 + Records,Simulcasts ca., 1957-8, 9 disc records,1957-1958 + + + + + + 332 + 62 + Records,Simulcasts ca., 1957-8, 9 disc records,1957-1958 + + + + + + 332 + 63 + Records,Simulcasts ca., 1957-8, 9 disc records,1957-1958 + + + + + + 332 + 64 + Records,Simulcasts ca., 1957-8, 9 disc records,1957-1958 + + + + + + 332 + 65 + Records,Simulcasts ca., 1957-8, 9 disc records,1957-1958 + + + + + + 332 + 66 + Records,Simulcasts ca., 1957-8, 9 disc records,1957-1958 + + + + + + 332 + 67 + Records,Griffin, Biographical,1956-1975 + + + + + + 332 + 68 + Records,Gemini 4, Record, scripts and disc record,1956-1975 + + + + + + 332 + 69 + Records,Radio-TV Scripts ca. 1957-8, 9 disc records,1957-1958 + + + + + + 332 + 70 + Records,Radio-TV Scripts ca. 1957-8, 9 disc records,1957-1958 + + + + + + 332 + 71 + Records,Radio-TV Scripts ca. 1957-8, 9 disc records,1957-1958 + + + + + + 332 + 72 + Records,Radio-TV Scripts ca. 1957-8, 9 disc records,1957-1958 + + + + + + 332 + 73 + Records,Radio-TV Scripts ca. 1957-8, 9 disc records,1957-1958 + + + + + + 332 + 74 + Records,Radio-TV Scripts ca. 1957-8, 9 disc records,1957-1958 + + + + + + 332 + 75 + Records,Radio-TV Scripts ca. 1957-8, 9 disc records,1957-1958 + + + + + + 332 + 76 + Records,Radio-TV Scripts ca. 1957-8, 9 disc records,1957-1958 + + + + + + 332 + 77 + Records,Radio-TV Scripts ca. 1957-8, 9 disc records,1957-1958 + + + + + + 332 + 78 + Records,Radio and TV Program Material, 1957-8,1957-1958 + + + + + + 332 + 79 + Records,Press Releases, 1958,1958 + + + + + + 332 + 80 + Records,News Media ca., 1958,1958 + + + + + + 332 + 81 + Records,Radio and Tv, 1957-8,1957-1958 + + + + + + 332 + 82 + Records,Press Releases, 1957,1957 + + + + + + 332 + 83 + Records,RPG with Cadillac/Lake City Constituents, photo, undated,undated + + + + + + 333 + 1 + Records,Campaign Material, Jewish, 1966,1966 + + + + + + 333 + 2 + Records,Campaign Material, 1966,1966 + + + + + + 333 + 3 + Records,Campaign Material, Teenage Republican Camp, 1966,1966 + + + + + + 333 + 4 + Records,Campaign Material, 1966,1966 + + + + + + 333 + 5 + Records,Dr. Samuel Mudd, Lincoln Assassination,1966-1975 + + + + + + 333 + 6 + Records,Radio TV Comment Ideas, 1972,1972 + + + + + + 333 + 7 + Records,Biography, Marjorie Griffin, 1972,1972 + + + + + + 333 + 8 + Records,Press Releases, 1966,1966 + + + + + + 333 + 9 + Records,Press Releases, 1967,1967 + + + + + + 333 + 10 + Records,News Releases, 1967,1967 + + + + + + 333 + 11 + Records,Newsletter Samples, 1966,1966 + + + + + + 333 + 12 + Records,Washington Report, 2/3/66,1966 + + + + + + 333 + 13 + Records,Newsletters, 1/13/66-2/3/66,1966 + + + + + + 333 + 14 + Records,Telegrams, 1967,1967 + + + + + + 333 + 15 + Records,Press Releases, 1966,1966 + + + + + + 333 + 16 + Records,Detroit News, AAll Enemies of Labor,@ 1966,1966 + + + + + + 333 + 17 + Records,RPG on Vandenberg, 1975,1975 + + + + + + 333 + 18 + Records,Press Releases, 1967-69,1967-1969 + + + + + + 333 + 19 + Records,Press Releases, 1/12/68,1968 + + + + + + 333 + 20 + Records,Press Releases, 1/12/69,1969 + + + + + + 333 + 21 + Records,Grant Information, 1971,1971 + + + + + + 333 + 22 + Records,Newspaper Clippings, 1971,1971 + + + + + + 333 + 23 + Records,Newspaper Clippings, Campaign, 1971,1971 + + + + + + 333 + 24 + Records,Press Releases, Statements, and Newspaper Clippings, 1971,1971 + + + + + + 333 + 25 + Records,Staff Memos, 1969-71, 1973-74,1973-1974 + + + + + + 333 + 26 + Records,Booth Newspapers, Weekly Report, 1973,1973 + + + + + + 333 + 27 + Records,Interview Notes, 1973-74,1973-1974 + + + + + + 333 + 28 + Records,Ideas from Peers Section, undated,undated + + + + + + 333 + 29 + Records,Ask RPG File-Paul, 6/26/75,1975 + + + + + + 333 + 30 + Records,Column Ideas Needing Action, 1974,1974 + + + + + + 333 + 31 + Records,Possible Press Releases, 1970,1970 + + + + + + 333 + 32 + Records,Background Notes, 1970-72,1970-1972 + + + + + + 333 + 33 + Records,Columns/Rejected, 1975,1975 + + + + + + 334 + 1 + Records,Radio and TV Scripts, 1966-1972-2 folders,1966-1972 + + + + + + 334 + 2 + Records,Radio and TV Scripts, 1966-1972-2 folders,1966-1972 + + + + + + 334 + 3 + Records,Public Opinion Polls,1968-1972 + + + + + + 334 + 4 + Records,Michigan GOP Polls, 1968,1968 + + + + + + 334 + 5 + Records,Public Opinion Polls, 1968,1968 + + + + + + 334 + 6 + Records,Polls, National Issues, 1972,1972 + + + + + + 334 + 7 + Records,Public Opinion, Presidential,1968-1972 + + + + + + 334 + 8 + Records,Press Releases, 1970-2 folders,1970-1972 + + + + + + 334 + 9 + Records,Press Releases, 1970-2 folders,1970-1972 + + + + + + 334 + 10 + Records,Memos, 1971,1971 + + + + + + 334 + 11 + Records,Memos, 1972,1972 + + + + + + 334 + 12 + Records,Messages, 1972,1972 + + + + + + 334 + 13 + Records,An Introduction of Senator Robert P. Griffin,1968-1972 + + + + + + 334 + 14 + Records,Grants, 1971,1971 + + + + + + 334 + 15 + Records,Radio Feeds by Dave Green-3 folders,1968-1972 + + + + + + 334 + 16 + Records,Radio Feeds by Dave Green-3 folders,1968-1972 + + + + + + 334 + 17 + Records,Radio Feeds by Dave Green-3 folders,1968-1972 + + + + + + 334 + 18 + Records,Reader's Digest, 1972,1972 + + + + + + 334 + 19 + Records,Roger Ailes, 1972,1972 + + + + + + 334 + 20 + Records,Simulcasts,1968-1972 + + + + + + 334 + 21 + Records,TV-Radio News Ideas, 1971,1971 + + + + + + 334 + 22 + Records,Draft of Blue Book, 1972-5 folders,1972 + + + + + + 334 + 23 + Records,Draft of Blue Book, 1972-5 folders,1972 + + + + + + 334 + 24 + Records,Draft of Blue Book, 1972-5 folders,1972 + + + + + + 334 + 25 + Records,Draft of Blue Book, 1972-5 folders,1972 + + + + + + 334 + 26 + Records,Draft of Blue Book, 1972-5 folders,1972 + + + + + + 334 + 27 + Records,National Executive Conference, 7/23/74-3 folders,1974 + + + + + + 334 + 28 + Records,National Executive Conference, 7/23/74-3 folders,1974 + + + + + + 334 + 29 + Records,National Executive Conference, 7/23/74-3 folders,1974 + + + + + + 334 + 30 + Records,Ed Deeb Correspondence,1968-1972 + + + + + + 334 + 31 + Records,Ethnic,1968-1972 + + + + + + 334 + 32 + Records,Auto Industry,1968-1972 + + + + + + 334 + 33 + Records,Al Apple Gate,1968-1972 + + + + + + 334 + 34 + Records,Miscellaneous,1968-1972 + + + + + + 334 + 35 + Records,Office Staff Manual, 1972,1972 + + + + + + 334 + 36 + Records,Voting Analysis,1968-1972 + + + + + + 334 + 37 + Records,Griffin on Congress, Filibusters,1968-1972 + + + + + + 334 + 38 + Records,Congressional Record Inserts, 1970,1970 + + + + + + 334 + 39 + Records,Congressional Record Inserts, 1971,1971 + + + + + + 334 + 40 + Records,Congressional Record Inserts, 1972,1972 + + + + + + 334 + 41 + Records,Statements and Releases, 1971-2 folders,1971-1972 + + + + + + 334 + 42 + Records,Statements and Releases, 1971-2 folders,1971-1972 + + + + + + 335 + 1 + Records,Radio Spot Endorsements and Written Endorsements, 1974,1974 + + + + + + 335 + 2 + Records,Press Releases, 1971,1971 + + + + + + 335 + 3 + Records,Public Relations Committee,1969-1976 + + + + + + 335 + 4 + Records,Miscellaneous Newspaper Article Reprints,1969-1976 + + + + + + 335 + 5 + Records,Jack Hushen Memos, 1969-1970,1969-1970 + + + + + + 335 + 6 + Records,China Trip Notebook, 1/13/76,1976 + + + + + + 335 + 7 + Records,Tax Revision Reference Books, 1973,1973 + + + + + + 335 + 8 + Records,Meet the Press Notebook, 10/7/73,1973 + + + + + + 335 + 9 + Records,News Articles, 1972-2 folders,1972 + + + + + + 335 + 10 + Records,News Articles, 1972-2 folders,1972 + + + + + + 335 + 11 + Records,News Articles, Campaign, 1972,1972 + + + + + + 335 + 12 + Records,News Releases, 1972-2 folders,1972 + + + + + + 335 + 13 + Records,News Releases, 1972-2 folders,1972 + + + + + + 335 + 14 + Records,News Articles, Busing, 1972-2 folders,1972 + + + + + + 335 + 15 + Records,News Articles, Busing, 1972-2 folders,1972 + + + + + + 336 + 1 + Records,Press Release, 1967-2 folders,1967 + + + + + + 336 + 2 + Records,Press Release, 1967-2 folders,1967 + + + + + + 336 + 3 + Records,1968 Press Releases,1968 + + + + + + 336 + 4 + Records,Reaction to State of Union Messages,1967-1971 + + + + + + 336 + 5 + Records,Bill of Rights to Amateur Athletes,1967-1971 + + + + + + 336 + 6 + Records,50th Anniversary of Ukrainian Independence,1967-1971 + + + + + + 336 + 7 + Records,Detroit Newspaper Strike, Labor Racketeering,1967-1971 + + + + + + 336 + 8 + Records,GOP Labor Goals, State of Union Rebuttal,1967-1971 + + + + + + 336 + 9 + Records,Asks Teamsters Investigation,1967-1971 + + + + + + 336 + 10 + Records,Urges Settlement, Newspaper Strike,1967-1971 + + + + + + 336 + 11 + Records,Telephoned Press Releases,1967-1971 + + + + + + 336 + 12 + Records,Legislation to Widen U.S. Territorial Waters,1967-1971 + + + + + + 336 + 13 + Records,Federal Assistance to Clean Up Dead Alewives,1967-1971 + + + + + + 336 + 14 + Records,Federal Support for Salmon Planting in Great Lakes,1967-1971 + + + + + + 336 + 15 + Records,Credibility Gap, Pueblo Statements,1967-1971 + + + + + + 336 + 16 + Records,Petra Kahn, Volunteer Worker,1967-1971 + + + + + + 336 + 17 + Records,Support for 12-Mile Limit Changes,1967-1971 + + + + + + 336 + 18 + Records,GOP Expects Widespread Election Gains,1967-1971 + + + + + + 336 + 19 + Records,Michigan Great State to Visit,1967-1971 + + + + + + 336 + 20 + Records,Student Draft Deferment,1967-1971 + + + + + + 336 + 21 + Records,House May Select Next President Because of Wallace,1967-1971 + + + + + + 336 + 22 + Records,Academy Nominations,1967-1971 + + + + + + 336 + 23 + Records,Legislation to Draft-Defer Community College Students,1967-1971 + + + + + + 336 + 24 + Records,Lawrence Meyer Appointed to Staff,1967-1971 + + + + + + 336 + 25 + Records,Johnson Policies Inconsistent,1967-1971 + + + + + + 336 + 26 + Records,Meets with Top American Legion Leaders,1967-1971 + + + + + + 336 + 27 + Records,Wallace Poses Threat to Two Party System,1967-1971 + + + + + + 336 + 28 + Records,Ilmar Heinaru Joins Staff,1967-1971 + + + + + + 336 + 29 + Records,Gold Crisis, Dollar Slump,1967-1971 + + + + + + 336 + 30 + Records,Corporal Bova, Statement,1967-1971 + + + + + + 336 + 31 + Records,National Labor Relations Board, Failures, Labor Court,1967-1971 + + + + + + 336 + 32 + Records,Opposed to Trade Barriers,1967-1971 + + + + + + 336 + 33 + Records,Reaction to Johnson Withdrawal from Reelection,1967-1971 + + + + + + 336 + 34 + Records,12 Mile Limit,1967-1971 + + + + + + 336 + 35 + Records,Bill of Rights for Amateur Athletes,1967-1971 + + + + + + 336 + 36 + Records,Civil Rights Act of 1968,1967-1971 + + + + + + 336 + 37 + Records,Grant for Monroe Anti-Poverty Program,1967-1971 + + + + + + 336 + 38 + Records,Volunteer Day, Aquinas College,1967-1971 + + + + + + 336 + 39 + Records,Strengthening U.S. Merchant Marine,1967-1971 + + + + + + 336 + 40 + Records,Low-Rent Housing for Chippewa Indians,1967-1971 + + + + + + 336 + 41 + Records,Amateur Athletic Union, National Collegiate Athletic Assn.,1967-1971 + + + + + + 336 + 42 + Records,Johnson Announcement, Vietnam Peace Talks,1967-1971 + + + + + + 336 + 43 + Records,Esch Dinner, Fund Raising for Candidates,1967-1971 + + + + + + 336 + 44 + Records,Pollution, Tax Credits,1967-1971 + + + + + + 336 + 45 + Records,G. Mennen Williams, Ambassador to Philippines,1967-1971 + + + + + + 336 + 46 + Records,G. Mennen Williams, Appointed Ambassador to Philippines,1967-1971 + + + + + + 336 + 47 + Records,Mail Received in DC Office,1967-1971 + + + + + + 336 + 48 + Records,91st Anniversary of Rumanian Independence,1967-1971 + + + + + + 336 + 49 + Records,One Million for Black River Construction,1967-1971 + + + + + + 336 + 50 + Records,U N Non-Proliferation Treaty,1967-1971 + + + + + + 336 + 51 + Records,Welcome WWAM, Cadillac on Air,1967-1971 + + + + + + 336 + 52 + Records,Seeks Conference for Non-Proliferation Treaty,1967-1971 + + + + + + 336 + 53 + Records,United Auto Workers Suspension by AFL-CIO,1967-1971 + + + + + + 336 + 54 + Records,Resolution on Non-Proliferation Treaty,1967-1971 + + + + + + 336 + 55 + Records,Griffin on Crime Control-Federal Employee Participation in Riots, 5/22/68,1968 + + + + + + 336 + 56 + Records,Crime Control Bill, Federal Employee Participation Riots, 5/28/68,1968 + + + + + + 336 + 57 + Records,Expel Students in Campus Revolts,1967-1971 + + + + + + 336 + 58 + Records,Social Security Benefits,1967-1971 + + + + + + 336 + 59 + Records,Death of Robert Kennedy,1967-1971 + + + + + + 336 + 60 + Records,Gun Legislation, Auto Registration,1967-1971 + + + + + + 336 + 61 + Records,Building Trade Strike,1967-1971 + + + + + + 336 + 62 + Records,Settling Building Trades Strike,1967-1971 + + + + + + 336 + 63 + Records,Garden City High School Commencement,1967-1971 + + + + + + 336 + 64 + Records,Griffin on Gun Legislation, 6/15/68,1968 + + + + + + 336 + 65 + Records,Presidential Scholars,1967-1971 + + + + + + 336 + 66 + Records,Chief Justice Warren's Resignation,1967-1971 + + + + + + 336 + 67 + Records,Improved Weather Warning System,1967-1971 + + + + + + 336 + 68 + Records,Chief Justice Warren, 6/24/68,1968 + + + + + + 336 + 69 + Records,Chief Justice Appointment, 6/27/68,1968 + + + + + + 336 + 70 + Records,Griffin on Chief Justice-Support from Liberal Demos, 6/28/68,1968 + + + + + + 336 + 71 + Records,Senator Tower Joins Chief Justice Controversy,6/28/68,1968 + + + + + + 336 + 72 + Records,Kosygin's Call for Arms Control in Mideast,1967-1971 + + + + + + 336 + 73 + Records,Capitol Cloakroom, Supreme Court Nomination, 7/2/68,1968 + + + + + + 336 + 74 + Records,Fortas Testimony Diaphanous, 7/16/68,1968 + + + + + + 336 + 75 + Records,Supreme Court Nomination, Excerpts, Speech, 7/19/68,1968 + + + + + + 336 + 76 + Records,Captive Nations Week, 7/23/68,1968 + + + + + + 336 + 77 + Records,Press Club Luncheon, Supreme Court Nominations, 7/30/68,1968 + + + + + + 336 + 78 + Records,Press Club Luncheon, Questions and Answers,1967-1971 + + + + + + 336 + 79 + Records,Metric System,1967-1971 + + + + + + 336 + 80 + Records,To Nominate Romney for Presidency, 8/5/68,1968 + + + + + + 336 + 81 + Records,Plank on Court Nominees Adopted by GOP Platform, 8/5/68,1968 + + + + + + 336 + 82 + Records,Speech-Griffin Nominating Romney for President, 8/7/68,1968 + + + + + + 336 + 83 + Records,Requests to Reopen Fortas Hearings,1967-1971 + + + + + + 336 + 84 + Records,Fortas= Nomination Will not be Rubber-stamped,1967-1971 + + + + + + 336 + 85 + Records,Military Academies Deadline,1967-1971 + + + + + + 336 + 86 + Records,Supports Gubow for Federal Judgeship,1967-1971 + + + + + + 336 + 87 + Records,Predicts Fortas will not Reappear Before Judiciary,1967-1971 + + + + + + 336 + 88 + Records,Fortas Failure to Appear will Leave Record Incomplete,1967-1971 + + + + + + 336 + 89 + Records,LBJ Should Withdraw Fortas Nomination,1967-1971 + + + + + + 336 + 90 + Records,Press Conference, Fortas,1967-1971 + + + + + + 336 + 91 + Records,Opens Debate Against Fortas,1967-1971 + + + + + + 336 + 92 + Records,LBJ's Decision not to Nominate Another Justice,1967-1971 + + + + + + 336 + 93 + Records,On Detroit Tigers Winning World Series,1967-1971 + + + + + + 336 + 94 + Records,RPG on Post Office Fine,1967-1971 + + + + + + 336 + 95 + Records,Urge Voters to Support Water Pollution Control,1967-1971 + + + + + + 336 + 96 + Records,Electoral College Reform (Bulletin-Republican Women's Federation of Michigan), 11/15/68,1968 + + + + + + 336 + 97 + Records,Electoral College Reform, 11/23/68,1968 + + + + + + 336 + 98 + Records,End National Labor Relations Board, MI State Bar Journal,1967-1971 + + + + + + 336 + 99 + Records,Electoral College Reform,1967-1971 + + + + + + 336 + 100 + Records,Romney's Appointment to HUD Secretary,1967-1971 + + + + + + 336 + 101 + Records,Says He's Cleared by Post Office Policy Statement,1967-1971 + + + + + + 336 + 102 + Records,1969 Press Releases: Announces Candidacy for Policy Committee,1969 + + + + + + 336 + 103 + Records,1969 Press Releases: Reintroduces Two Labor Bills,1969 + + + + + + 336 + 104 + Records,1969 Press Releases: Urges Nixon Withhold Action of Trans-Pacific Route,1969 + + + + + + 336 + 105 + Records,1969 Press Releases: Nixon Decision to Rescind Trans-Pacific Route,1969 + + + + + + 336 + 106 + Records,1969 Press Releases: Eastern Michigan University Commencement,1969 + + + + + + 336 + 107 + Records,1969 Press Releases: Named to Two Government Operation Subcommittees,1969 + + + + + + 336 + 108 + Records,1969 Press Releases: Government Studies Kincheloe Closing,1969 + + + + + + 336 + 109 + Records,1969 Press Releases: Academy Nominations,1969 + + + + + + 336 + 110 + Records,1969 Press Releases: Two Black Air Force Academy Nominees,1969 + + + + + + 336 + 111 + Records,1969 Press Releases: Gets Bill Passed for Out-of-Work GIs,1969 + + + + + + 336 + 112 + Records,1969 Press Releases: Senate Youth Program,1969 + + + + + + 336 + 113 + Records,1969 Press Releases: Talks to Spring Arbor College Students,1969 + + + + + + 336 + 114 + Records,1969 Press Releases: On Nixon Recommendation for Electoral College,1969 + + + + + + 336 + 115 + Records,1969 Press Releases: Letter to DOT Secretary Volpe about Seaway,1969 + + + + + + 336 + 116 + Records,1969 Press Releases: National Science Foundation Grants-6 Michigan Universities, 3/15/69,1969 + + + + + + 336 + 117 + Records,1969 Press Releases: National Science Foundation Grants-U of M, MSU, 3/18/69,1969 + + + + + + 336 + 118 + Records,1969 Press Releases: National Science Foundation Fellowships-Detroit Area Residents, 3/19/69,1969 + + + + + + 336 + 119 + Records,1969 Press Releases: Appointed to Consumer Subcommittee,1969 + + + + + + 336 + 120 + Records,1969 Press Releases: To Get American Legion 50th Anniversary Medallion,1969 + + + + + + 336 + 121 + Records,1969 Press Releases: Reintroduces 12-Mile Limit Bill,1969 + + + + + + 336 + 122 + Records,1969 Press Releases: On Eisenhower's Death,1969 + + + + + + 336 + 123 + Records,1969 Press Releases: Calls on Broadcasters to Police Selves,1969 + + + + + + 336 + 124 + Records,1969 Press Releases: Introduces 10th Anniversary Bill, St. Lawrence Seaway,1969 + + + + + + 336 + 125 + Records,1969 Press Releases: Asks Stamp to Honor Dr. Martin Luther King,1969 + + + + + + 336 + 126 + Records,1969 Press Releases: Letter to Secretary Finch Re: Hospital Closing,1969 + + + + + + 336 + 127 + Records,1969 Press Releases: On Navy Academy Appointee,1969 + + + + + + 336 + 128 + Records,1969 Press Releases: Backs 7% Surtax for Anti-Pollution Equipment,1969 + + + + + + 336 + 129 + Records,1969 Press Releases: Introduces Legislation Re: Towns Having a Voice,1969 + + + + + + 336 + 130 + Records,1969 Press Releases: Announces Air Force Academy Appointee,1969 + + + + + + 336 + 131 + Records,1969 Press Releases: Resolution 20th Anniversary State of Israel, 5/3/68,1969 + + + + + + 336 + 132 + Records,1969 Press Releases: Reaction to Life Magazine Article on Fortas,1969 + + + + + + 336 + 133 + Records,1969 Press Releases: Hopes Fortas Will Testify,1969 + + + + + + 336 + 134 + Records,1969 Press Releases: Joint Sponsorship of Financial Disclosure,1969 + + + + + + 336 + 135 + Records,1969 Press Releases: Floor Remarks on Financial Disclosure,1969 + + + + + + 336 + 136 + Records,1969 Press Releases: Introduces Bill on Tax Relief for Foster Parents,1969 + + + + + + 336 + 137 + Records,1969 Press Releases: Project Thank You, GIs in Vietnam,1969 + + + + + + 336 + 138 + Records,1969 Press Releases: Statement on Fortas Resignation,1969 + + + + + + 336 + 139 + Records,1969 Press Releases: Three Redford Township Youths Appointed to Military Academies,1969 + + + + + + 336 + 140 + Records,1969 Press Releases: On President's Nomination of Burger as Chief Justice,1969 + + + + + + 336 + 141 + Records,1969 Press Releases: Goes to Inter-Parliamentary Conference,1969 + + + + + + 336 + 142 + Records,1969 Press Releases: On Armenian Independence Day,1969 + + + + + + 336 + 143 + Records,1969 Press Releases: Baltic States Genocide Day,1969 + + + + + + 336 + 144 + Records,1969 Press Releases: Project ATall Turf@,1969 + + + + + + 336 + 145 + Records,1969 Press Releases: EDA Grants,1969 + + + + + + 336 + 146 + Records,1969 Press Releases: $30 Million in Military Contracts,1969 + + + + + + 336 + 147 + Records,1969 Press Releases: Polls State Legislatures on Electoral College,1969 + + + + + + 336 + 148 + Records,1969 Press Releases: Reform,1969 + + + + + + 336 + 149 + Records,1969 Press Releases: Withdraws Nomination of George Woods, USDA,1969 + + + + + + 336 + 150 + Records,1969 Press Releases: Letter to Nixon Re: Desegregation Guidelines,1969 + + + + + + 336 + 151 + Records,1969 Press Releases: ABM for RSCC Newsletter,1969 + + + + + + 336 + 152 + Records,1969 Press Releases: Contract to Universal Airlines,1969 + + + + + + 336 + 153 + Records,1969 Press Releases: Supports Cutback on Oil Depletion Allowance,1969 + + + + + + 336 + 154 + Records,1969 Press Releases: Military Sea Transportation Service, Great Lakes,1969 + + + + + + 336 + 155 + Records,1969 Press Releases: Letters to GSA and Public Works Re: IRS Center,1969 + + + + + + 336 + 156 + Records,1969 Press Releases: Results of Poll, Electoral College, 8/7/69,1969 + + + + + + 336 + 157 + Records,1969 Press Releases: Co-sponsors Bill to Grant Federal Charter to Catholic War Veterans, 8/8/69,1969 + + + + + + 336 + 158 + Records,1969 Press Releases: Co-sponsors Bill to Grant Federal Charter to JWV (Jewish War Veterans), 8/8/69,1969 + + + + + + 336 + 159 + Records,1969 Press Releases: Electoral Reform, Guest Column for TerHorst,1969 + + + + + + 336 + 160 + Records,1969 Press Releases: Law Enforcement Training Grants,1969 + + + + + + 336 + 161 + Records,1969 Press Releases: On Death of Senator Dirksen,1969 + + + + + + 336 + 162 + Records,1969 Press Releases: Bill to Aid Blind,1969 + + + + + + 336 + 163 + Records,1969 Press Releases: Announces Candidacy for Whip,1969 + + + + + + 336 + 164 + Records,1969 Press Releases: Floor Statement, Vietnam,1969 + + + + + + 336 + 165 + Records,1969 Press Releases: Floor Statement, Vietnam Moratorium,1969 + + + + + + 336 + 166 + Records,1969 Press Releases: Lamprey Eel Control,1969 + + + + + + 336 + 167 + Records,1969 Press Releases: Tax Credit for Education,1969 + + + + + + 336 + 168 + Records,1969 Press Releases: Opposes Haynsworth Nomination,1969 + + + + + + 336 + 169 + Records,1969 Press Releases: On Death of Mother-in-Law,1969 + + + + + + 336 + 170 + Records,1969 Press Releases: Leadership Posts Held by Michigan Senators,1969 + + + + + + 336 + 171 + Records,1969 Press Releases: Urges More Funds for Great Lakes Antipollution,1969 + + + + + + 336 + 172 + Records,1969 Press Releases: Supports Nixon on Vietnam,1969 + + + + + + 336 + 173 + Records,1969 Press Releases: On Outside Income for Federal Judges,1969 + + + + + + 336 + 174 + Records,1969 Press Releases: Hopeful on Passage of Draft Lottery,1969 + + + + + + 336 + 175 + Records,1969 Press Releases: Great Lakes Antipollution Program to be Enacted,1969 + + + + + + 336 + 176 + Records,1969 Press Releases: Traffic Problems at Drawbridge at Zilwaukee,1969 + + + + + + 336 + 177 + Records,1969 Press Releases: Re: Moratorium March in Washington,1969 + + + + + + 336 + 178 + Records,1969 Press Releases: Supports Cut in Oil Depletion Allowance,1969 + + + + + + 336 + 179 + Records,1969 Press Releases: Agnew Network TV News Coverage,1969 + + + + + + 336 + 180 + Records,1969 Press Releases: Antipollution Program Headed for Enactment,1969 + + + + + + 336 + 181 + Records,1969 Press Releases: Passage of Draft Reform Bill,1969 + + + + + + 336 + 182 + Records,1969 Press Releases: Statement on Haynsworth Defeat,1969 + + + + + + 336 + 183 + Records,1969 Press Releases: Tax Reform Bill to Clear Senate,1969 + + + + + + 336 + 184 + Records,1969 Press Releases: On Vietnam Massacre,1969 + + + + + + 336 + 185 + Records,1969 Press Releases: Finnish Independence Day,1969 + + + + + + 336 + 186 + Records,1969 Press Releases: Tax Exemption for Parents of Foster Children,1969 + + + + + + 336 + 187 + Records,1969 Press Releases: Guest Column for Holmes Alexander,1969 + + + + + + 336 + 188 + Records,1969 Press Releases: Announces Project Xuan Thuy,1969 + + + + + + 336 + 189 + Records,1969 Press Releases: Tax Reform,1969 + + + + + + 336 + 190 + Records,1969 Press Releases: Christmas Card to Xuan Thuy, 12/11/69,1969 + + + + + + 336 + 191 + Records,1969 Press Releases: Griffin Asks TV Station to Help Publicize Xuan Thuy, 12/15/69,1969 + + + + + + 336 + 192 + Records,1969 Press Releases: Asks Publicity for Project Xuan Thuy, 12/16/69,1969 + + + + + + 336 + 193 + Records,1969 Press Releases: Detroit's People's Committee Civic League,1969 + + + + + + 336 + 194 + Records,1969 Press Releases: Outlook for 1970's,1969 + + + + + + 336 + 195 + Records,1969 Press Releases: Telegrams, Contracts,1969 + + + + + + 336 + 196 + Records,1969 Press Releases: Telegrams, Small Business and Economic Development,1969 + + + + + + 336 + 197 + Records,1969 Press Releases: Telegrams, Urban Renewal and HUD,1969 + + + + + + 336 + 198 + Records,1969 Press Releases: Telegrams, Community Action Programs,1969 + + + + + + 336 + 199 + Records,1969 Press Releases: Telegrams, Health and Education,1969 + + + + + + 336 + 200 + Records,1969 Press Releases: Telegrams, Headstart and Summer Headstart, 1969,1969 + + + + + + 336 + 201 + Records,1970 Press Release, 2 folders,1970 + + + + + + 336 + 202 + Records,1970 Press Release, 2 folders,1970 + + + + + + 336 + 203 + Records,Index to 1971 Press Releases, 5 folders,1971 + + + + + + 336 + 204 + Records,Index to 1971 Press Releases, 5 folders,1971 + + + + + + 336 + 205 + Records,Index to 1971 Press Releases, 5 folders,1971 + + + + + + 336 + 206 + Records,Index to 1971 Press Releases, 5 folders,1971 + + + + + + 336 + 207 + Records,Index to 1971 Press Releases, 5 folders,1971 + + + + + + 336 + 208 + Records,Political Upheaval in Poland,1967-1971 + + + + + + 336 + 209 + Records,Benefits to POW Families,1967-1971 + + + + + + 336 + 210 + Records,Michael Kraft, Reuters Profile of RPG,1967-1971 + + + + + + 336 + 211 + Records,Reforming Rules of Senate,1967-1971 + + + + + + 336 + 212 + Records,Reducing Corps of Engineers at Sault Saint Marie,1967-1971 + + + + + + 336 + 213 + Records,1970 Congressional Accomplishments,1970 + + + + + + 336 + 214 + Records,Lake Superior; Reserve Mining,1967-1971 + + + + + + 336 + 215 + Records,Death of Senator Richard B. Russell,1967-1971 + + + + + + 336 + 216 + Records,Need for Judicial and Correctional Reform,1967-1971 + + + + + + 336 + 217 + Records,South Vietnamese Release of Prisoners,1967-1971 + + + + + + 336 + 218 + Records,State of Union Message,1967-1971 + + + + + + 336 + 219 + Records,Ukrainian Independence Day,1967-1971 + + + + + + 336 + 220 + Records,Oppose Abandonment Straits of Mackinac Ferry,1967-1971 + + + + + + 336 + 221 + Records,Committee Assignments for 92nd Congress,1967-1971 + + + + + + 336 + 222 + Records,Revenue Sharing, SEMCOG,1967-1971 + + + + + + 336 + 223 + Records,Academy Nominations,1967-1971 + + + + + + 336 + 224 + Records,Nixon's Emergency Strike Legislation,1967-1971 + + + + + + 336 + 225 + Records,Nixon's Environmental Message to Congress,1967-1971 + + + + + + 336 + 226 + Records,Senator Long Welcomes RPG to Finance Committee,1967-1971 + + + + + + 336 + 227 + Records,Urges Policies for Improved Rural America,1967-1971 + + + + + + 336 + 228 + Records,Co-sponsored Bill to Establish Educational Centers,1967-1971 + + + + + + 336 + 229 + Records,Lithuanian Independence Day,1967-1971 + + + + + + 336 + 230 + Records,Lithuanian Condemned in USSR,1967-1971 + + + + + + 336 + 231 + Records,Revenue Sharing, GOP Achievement,1967-1971 + + + + + + 336 + 232 + Records,50th Anniversary Armenian Revolution,1967-1971 + + + + + + 336 + 233 + Records,Grand Rapids, $2.2 Million in Revenue Sharing,1967-1971 + + + + + + 336 + 234 + Records,Draft Reform,1967-1971 + + + + + + 336 + 235 + Records,Civil Defense Emergency Warning System,1967-1971 + + + + + + 336 + 236 + Records,Revenue Sharing Figures for Michigan,1967-1971 + + + + + + 336 + 237 + Records,Grants, Migrant and Seasonal Farm Workers,1967-1971 + + + + + + 336 + 238 + Records,Sponsors Anti-Smut Bill,1967-1971 + + + + + + 336 + 239 + Records,Corn Due for Starving Deer in Michigan,1967-1971 + + + + + + 336 + 240 + Records,Response to Senate Democratic Conference Resolution,1967-1971 + + + + + + 336 + 242 + Records,TV Sports Blackouts,1967-1971 + + + + + + 336 + 243 + Records,Bombing of U.S. Capitol,1967-1971 + + + + + + 336 + 244 + Records,Military Draft,1967-1971 + + + + + + 336 + 245 + Records,Extending G.L. Shipping Season,1967-1971 + + + + + + 336 + 246 + Records,Angela Davis and POWs,1967-1971 + + + + + + 336 + 247 + Records,18-Year-Old Vote,1967-1971 + + + + + + 336 + 248 + Records,Soviet Scientists and Angela Davis,1967-1971 + + + + + + 336 + 249 + Records,Boost Social Security Benefits,1967-1971 + + + + + + 336 + 250 + Records,Death of Whitney M. Young, Jr.,1967-1971 + + + + + + 336 + 251 + Records,Officials to Detroit, Remedy Spanish American Situation,1967-1971 + + + + + + 336 + 252 + Records,Co-sponsors Higher Education Opportunity Act,1967-1971 + + + + + + 336 + 253 + Records,Licensing of 3rd Minority SBIC in Michigan,1967-1971 + + + + + + 336 + 254 + Records,Polish (Violinist) Defector,1967-1971 + + + + + + 336 + 255 + Records,Changing Filibuster Rule,1967-1971 + + + + + + 336 + 256 + Records,Co-sponsors Newsmen's Privilege Act,1967-1971 + + + + + + 336 + 257 + Records,Program for Spanish Americans Only Gets Lip Service,1967-1971 + + + + + + 336 + 258 + Records,Follow-up on Polish Defector,1967-1971 + + + + + + 336 + 259 + Records,Reserve Mining, Lake Superior,1967-1971 + + + + + + 336 + 260 + Records,To Repeal Bill Authorizing Arrest Without Due Process,1967-1971 + + + + + + 336 + 261 + Records,Should Adopt Wage-Price Guidelines,1967-1971 + + + + + + 336 + 262 + Records,Nixon, Withdrawal from Vietnam,1967-1971 + + + + + + 336 + 263 + Records,$4.4 Million Grant for Air Conditioned Buses,1967-1971 + + + + + + 336 + 264 + Records,$20.5 Million to Detroit for Model Cities,1967-1971 + + + + + + 336 + 265 + Records,Employing Disadvantaged Youths,1967-1971 + + + + + + 336 + 266 + Records,Funds for Youth Summer Job Program,1967-1971 + + + + + + 336 + 267 + Records,Muskie Speech Re: FBI,1967-1971 + + + + + + 336 + 268 + Records,Excerpts from National Pollution Control Conference,1967-1971 + + + + + + 336 + 269 + Records,Lift of Trade, Travel Restrictions on China,1967-1971 + + + + + + 336 + 270 + Records,FBI and Muskie,1967-1971 + + + + + + 336 + 271 + Records,Telegram, Spanish Speaking Information Center, Flint,1967-1971 + + + + + + 336 + 272 + Records,Grant to Upper Great Lakes Timber,1967-1971 + + + + + + 336 + 273 + Records,Grant to Northern Beef Demonstration Center,1967-1971 + + + + + + 336 + 274 + Records,Urge Approval of Pictured Rocks Appropriations,1967-1971 + + + + + + 336 + 275 + Records,Introduces Social Security Measures,1967-1971 + + + + + + 336 + 276 + Records,Mansfield Amendment to Cut Troops in Europe,1967-1971 + + + + + + 336 + 277 + Records,Elevation of Chinese-American Talks,1967-1971 + + + + + + 336 + 278 + Records,Mansfield Amendment,1967-1971 + + + + + + 336 + 279 + Records,Nelson Amendment on Troop Withdrawal,1967-1971 + + + + + + 336 + 280 + Records,Bill Ending Railroad Strike,1967-1971 + + + + + + 336 + 281 + Records,Progress of SALT Talks,1967-1971 + + + + + + 336 + 282 + Records,Wayne County Grant, Organizes Crime Task Force,1967-1971 + + + + + + 349 + 1 + Records,Breakfast with Republican Leaders, 12/72,1972 + + + + + + 349 + 2 + Records,RPG Campaign, 1966,1966 + + + + + + 349 + 3 + Records,RPG with Constituents, 1966 Campaign,1966 + + + + + + 349 + 4 + Records,RPG Campaigning at Detroit's Eastern Market, 1966,1966 + + + + + + 349 + 5 + Records,RPG with Constituents, 1966 Campaign,1966 + + + + + + 349 + 6 + Records,RPG with George Washington at 1966 Campaign,1966 + + + + + + 349 + 7 + Records,RPG with Constituent Nun, 1966 Campaign,1966 + + + + + + 349 + 8 + Records,RPG at Breakfast Huddle with Gov. George Romney and Secretary of State Candidate,1966-1972 + + + + + + 349 + 9 + Records,George Washington, Campaign,1966-1972 + + + + + + 349 + 10 + Records,1966 Campaign,1966 + + + + + + 350 + 1 + Records,Box 1231, Sen. RPG, WUHQ--Battle Creek, 8/1/73,1973 + + + + + + 350 + 2 + Records,Box 1232, Sen. RPG, WKZO-TV Kalamazoo, 7/1/73,1973 + + + + + + 350 + 3 + Records,Box 1233, Sen. RPG, Senate Chamber, Pollution Interview, Working Man, Busing, undated,undated + + + + + + 350 + 4 + Records,Box 1234, Sen. RPG, WLUC-TV Marquette, 8/1/73,1973 + + + + + + 350 + 5 + Records,Box 1235, Sen. RPG, 7/1/73,1973 + + + + + + 350 + 6 + Records,Box 1236, Sen. RPG, undated,undated + + + + + + 350 + 7 + Records,Box 1237, Sen. RPG, in old listing--Lime Light, 8/6/73, on video listed as--WPBN-TV Traverse City, 7/1/73,1973 + + + + + + 350 + 8 + Records,Box 1238, Sen. RPG, in old listing--Griffin Club, 7/18/73, on video listed as--Griffin China Special, 7/18/73,1973 + + + + + + 351 + 1 + Records,Photographs: Folder 1, Sen. Author Vandenberg,1940-1978 + + + + + + 351 + 2 + Records,Photographs: Folder 1, RPG with Freshman Varsity Football Team, 1940,1940 + + + + + + 351 + 3 + Records,Photographs: Folder 1, RPG Football Picture, 1940,1940 + + + + + + 351 + 4 + Records,Photographs: Folder 1, RPG on Capitol Steps, 1966,1966 + + + + + + 351 + 5 + Records,Photographs: Folder 1, RPG with Eisenhower in Gettysburg Office, 8/66,1966 + + + + + + 351 + 6 + Records,Photographs: Folder 1, Brooke, RPG, Percy, Hatfield, Hansen, and Baker, 1/67,1967 + + + + + + 351 + 7 + Records,Photographs: Folder 1, Senator and Mrs. Griffin, 3/23/69,1969 + + + + + + 351 + 8 + Records,Photographs: Folder 2, RPG, Nixon in Oval Office, 7/17/69,1969 + + + + + + 351 + 9 + Records,Photographs: Folder 2, RPG with Nixon and GOP Leadership at White House, 8/69,1969 + + + + + + 351 + 10 + Records,Photographs: Folder 2, RPG with Nixon and Bipartisan Leadership at White House, 1969,1969 + + + + + + 351 + 11 + Records,Photographs: Folder 2, RPG with Nixon and Bipartisan Leadership at White House, 1969,1969 + + + + + + 351 + 12 + Records,Photographs: Folder 2, RPG with Nixon and James Walkers of Fremont at White House, 1970,1970 + + + + + + 351 + 13 + Records,Photographs: Folder 2, Senator and Mrs. Griffin with RPG's Parents, White House, 1970,1970 + + + + + + 351 + 14 + Records,Photographs: Folder 2, Senator and Mrs. Griffin with Pope Paul VI, 11/70,1970 + + + + + + 351 + 15 + Records,Photographs: Folder 2, RPG with Mayor-Elect Coleman Young of Detroit, 11/23/70,1970 + + + + + + 351 + 16 + Records,Photographs: Folder 2, RPG with Nixon at White House Briefing on Budget, 1/71,1971 + + + + + + 351 + 17 + Records,Photographs: Folder 2, RPG with Nixon at White House Briefing, 1/28/71,1971 + + + + + + 351 + 18 + Records,Photographs: Folder 2, RPG with Nixon and Cystic Fibrosis Child, 4/26/71, 3 photos,1971 + + + + + + 351 + 19 + Records,Photographs: Folder 2, RPG with Nixon and Bipartisan Leadership at White House, 1971,1971 + + + + + + 351 + 20 + Records,Photographs: Folder 2, RPG, Nixon, and Poznan Choit at White House, 6/3/71, 3 photos and press releases,1971 + + + + + + 351 + 21 + Records,Photographs: Folder 3, RPG with Detroit Tigers in Rose Garden, 8/7/71, 2 photos,1971 + + + + + + 351 + 22 + Records,Photographs: Folder 3, RPG, Nixon, and Milliken at Detroit Airport, 8/23/71,1971 + + + + + + 351 + 23 + Records,Photographs: Folder 3, RPG at Italian-American Awards Banquet, 10/2/71,1971 + + + + + + 351 + 24 + Records,Photographs: Folder 3, RPG and Nixon at Phase II of Economic Program Meeting, 10/71,1971 + + + + + + 351 + 25 + Records,Photographs: Folder 3, RPG and Nixon at White House Breakfast Meeting, 11/23/71,1971 + + + + + + 351 + 26 + Records,Photographs: Folder 3, RPG with Nixon at Signing of Revenue Act of 1971, 12/10/71,1971 + + + + + + 351 + 27 + Records,Photographs: Folder 3, RPG at Hospital, Campaign, 1972,1972 + + + + + + 351 + 28 + Records,Photographs: Folder 3, Head Sketch of RPG, 1972, sketch, photo, and note,1972 + + + + + + 351 + 29 + Records,Photographs: Folder 3, RPG with Nixon at White House Breakfast, 2/8/72,1972 + + + + + + 351 + 30 + Records,Photographs: Folder 4, RPG and Hart, Commerce Committee, Low Income Housing, 1972,1972 + + + + + + 351 + 31 + Records,Photographs: Folder 4, RPG, Nixon, and Bipartisan Leadership at White House, 1972,1972 + + + + + + 351 + 32 + Records,Photographs: Folder 4, RPG at Podium, GOP National Convention, Miami, 8/72, 3 photos,1972 + + + + + + 351 + 33 + Records,Photographs: Folder 4, RPG with Nixon at Tri-City Airport, 10/28/72,1972 + + + + + + 351 + 34 + Records,Photographs: Folder 4, RPG, Nixon, Agnew at Foreign Relations Breakfast, 1973,1973 + + + + + + 351 + 35 + Records,Photographs: Folder 4, RPG, Nixon, and Senators at White House, 5/8/73,1973 + + + + + + 351 + 36 + Records,Photographs: Folder 4, RPG, Nixon, and Senators in Oval Office, 5/10/73,1973 + + + + + + 351 + 37 + Records,Photographs: Folder 4, Senator and Mrs. Griffin with Chou En Lai, Peking, 7/73,1973 + + + + + + 351 + 38 + Records,Photographs: Folder 4, RPG with Republican Leadership, White House, 8/6/73,1973 + + + + + + 351 + 39 + Records,Photographs: Folder 5, RPG and Ford at Vice President=s Confirmation Hearings, 1973,1973 + + + + + + 351 + 40 + Records,Photographs: Folder 5, RPG and Nixon with GOP Coordinating Committee, 1973,1973 + + + + + + 351 + 41 + Records,Photographs: Folder 5, RPG at Leadership Meeting, White House, 2/2/74,1974 + + + + + + 351 + 42 + Records,Photographs: Folder 5, RPG, Nixon, and Cederberg on Air Force 1, 4/10/74,1974 + + + + + + 351 + 43 + Records,Photographs: Folder 5, RPG, Nixon, and Bipartisan Leadership at White House, 1974,1974 + + + + + + 351 + 44 + Records,Photographs: Folder 5, RPG Head Shot Taken at Griffin-Hart Baseball Game, 1974,1974 + + + + + + 351 + 45 + Records,Photographs: Folder 5, RPG, Ford, and Broomfield at White House, 12/6/74,1974 + + + + + + 351 + 46 + Records,Photographs: Folder 5, RPG, Stevens, Stafford, Scott, Rockefeller, Tower, and Percy, autographed, 1975,1975 + + + + + + 351 + 47 + Records,Photographs: Folder 5, RPG with Ford at Cherry Festival Parade, 7/75,1975 + + + + + + 351 + 48 + Records,Photographs: Folder 5, RPG with Kissinger, 11/23/75,1975 + + + + + + 351 + 49 + Records,Photographs: Folder 5, Foreign Relations Comm. Returning from Trip, 1/76,1976 + + + + + + 351 + 50 + Records,Photographs: Folder 6, RPG, Milliken, Rockefeller, and Hubbard, 1/30/76,1976 + + + + + + 351 + 51 + Records,Photographs: Folder 6, RPG Presenting Basketball to Bayh on Capitol Steps, 1976,1976 + + + + + + 351 + 52 + Records,Photographs: Folder 6, RPG, Brown, Wharton, Carr, and Hart at Spruce Planting, 1976,1976 + + + + + + 351 + 53 + Records,Photographs: Folder 6, RPG with Jill in Front of Capitol, 8/26/76,1976 + + + + + + 351 + 54 + Records,Photographs: Folder 6, RPG at Leadership Meeting, White House, 8/31/76,1976 + + + + + + 351 + 55 + Records,Photographs: Folder 6, Republican Conference, 1/4/77,1977 + + + + + + 351 + 56 + Records,Photographs: Folder 6, RPG, Trudeau, and Sparkman, 3/77,1977 + + + + + + 351 + 57 + Records,Photographs: Folder 6, RPG at Bill=s Beefsteak, Detroit, 3/77,1977 + + + + + + 351 + 58 + Records,Photographs: Folder 6, RPG with Carter in Oval Office, 9/26/77,1977 + + + + + + 351 + 59 + Records,Photographs: Folder 6, St. Valentine's Day Massacre Day Cartoon, 1978,1978 + + + + + + 351 + 60 + Records,Posters, Why Five Democratic Mayors are Going to Vote for A Republican Senator,1940-1978 + + + + + + 351 + 61 + Records,Posters, Griffin Special >72 (Race Car Driver),1940-1978 + + + + + + 351 + 62 + Records,Posters, The Very Least You Should Know About Senator Bob Griffin, 10/30/72,1978 + + + + + + 351 + 63 + Records,Posters, What is Your Position on Busing?,1940-1978 + + + + + + 351 + 64 + Records,Photos (Matted), RPG 7, 9, 11,1940-1978 + + + + + + 351 + 65 + Records,Photos (Matted), Seal/Mr. Griffin Sign, Shot of Door to Room 353,1940-1978 + + + + + + 351 + 66 + Records,Photos (Matted), Constituent in Room 353,1940-1978 + + + + + + 351 + 67 + Records,Photos (Matted), Suite Room 353,1940-1978 + + + + + + 351 + 68 + Records,Photos (Matted), D.C. Office,1940-1978 + + + + + + 351 + 69 + Records,Photos (Matted), Desk in Room 353,1940-1978 + + + + + + 351 + 70 + Records,Photos (Matted), Smiling,1940-1978 + + + + + + 351 + 71 + Records,Photos (Matted), Tired, Covers Eyes with Hands,1940-1978 + + + + + + 351 + 72 + Records,Photos (Matted), RPG,1940-1978 + + + + + + 351 + 73 + Records,Photos (Matted), Detroit's Dining Room,1940-1978 + + + + + + 351 + 74 + Records,Photos (Matted), 1971 or 1972 Dedication of Eisenhower High School, Utica, MI (Nixon at Podium),1971-1972 + + + + + + 351 + 75 + Records,Detroit Free Press Cartoon,1940-1978 + + + + + + 351 + 76 + Records,RPG and Alice in Wonderland, no date,undated + + + + + + 351 + 77 + Records,Indian Summer, 11/2/66,1966 + + + + + + 351 + 78 + Records,The People Lost Touch with Us, 11/10/66,1966 + + + + + + 351 + 79 + Records,There Seems to be One Empty Chair, 9/28/66,1966 + + + + + + 351 + 80 + Records,I Got Mine, 9/2/66,1966 + + + + + + 351 + 81 + Records,On Your Marks, 5/14/66,1966 + + + + + + 351 + 82 + Records,They=ll Never Go Down in History like Lincoln and Douglas!, 10/30/66,1966 + + + + + + 351 + 83 + Records,Political Dowry, no date,undated + + + + + + 351 + 84 + Records,Democrat Stairs, no date,undated + + + + + + 351 + 85 + Records,Hart/Griffin, 11/63,1963 + + + + + + 351 + 86 + Records,Neck and Neck at the Quarter Mile Turn, 9/28/66,1966 + + + + + + 351 + 87 + Records,Plaque: To RPG from Charab Lubavitch of Michigan, 3/30/77,1977 + + + + + + 351 + 88 + Records,Picture: RPG/Missile/Wilber M. Brucker, Sec.,1940-1978 + + + + + + 351 + 89 + Records,Of Army, 2/13/59,1959 + + + + + + 351 + 90 + Records,1960-1970 Senate Republican Conference,1960-1970 + + + + + + 351 + 91 + Records,RPG Bachrach Portraits, 9 large, 8 small,1940-1978 + + + + + + 352 + 1 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1957, 2 folders,1957 + + + + + + 352 + 2 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1957, 2 folders,1957 + + + + + + 352 + 3 + Records,Newspaper Clippings, Sorted by Topic, Agriculture, 1957, 13 folders,1957 + + + + + + 352 + 4 + Records,Newspaper Clippings, Sorted by Topic, Communications, Postal Service, 1957, 13 folders,1957 + + + + + + 352 + 5 + Records,Newspaper Clippings, Sorted by Topic, Defense, 1957, 13 folders,1957 + + + + + + 352 + 6 + Records,Newspaper Clippings, Sorted by Topic, Economy, 1957, 13 folders,1957 + + + + + + 352 + 7 + Records,Newspaper Clippings, Sorted by Topic, Education, 1957, 13 folders,1957 + + + + + + 352 + 8 + Records,Newspaper Clippings, Sorted by Topic, Environment, European Pine Shoot Moth, 1957, 13 folders,1957 + + + + + + 352 + 9 + Records,Newspaper Clippings, Sorted by Topic, Foreign Relations,1957, 13 folders,1957 + + + + + + 352 + 10 + Records,Newspaper Clippings, Sorted by Topic, Government, 1957, 13 folders,1957 + + + + + + 352 + 11 + Records,Newspaper Clippings, Sorted by Topic, Health, 1957, 13 folders,1957 + + + + + + 352 + 12 + Records,Newspaper Clippings, Sorted by Topic, Labor, 1957, 13 folders,1957 + + + + + + 352 + 13 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement, 1957, 13 folders,1957 + + + + + + 352 + 14 + Records,Newspaper Clippings, Sorted by Topic, Science, 1957, 13 folders,1957 + + + + + + 352 + 15 + Records,Newspaper Clippings, Sorted by Topic, Transportation, 1957, 13 folders,1957 + + + + + + 352 + 16 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1958, 3 folders,1958 + + + + + + 352 + 17 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1958, 3 folders,1958 + + + + + + 352 + 18 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1958, 3 folders,1958 + + + + + + 352 + 19 + Records,Newspaper Clippings, Sorted by Topic, Agriculture, 1958, 13 folders,1958 + + + + + + 352 + 20 + Records,Newspaper Clippings, Sorted by Topic, Communication, 1958, 13 folders,1958 + + + + + + 352 + 21 + Records,Newspaper Clippings, Sorted by Topic, Defense, 1958, 13 folders,1958 + + + + + + 352 + 22 + Records,Newspaper Clippings, Sorted by Topic, Economy, 1958, 13 folders,1958 + + + + + + 352 + 23 + Records,Newspaper Clippings, Sorted by Topic, Education, 1958, 13 folders,1958 + + + + + + 352 + 24 + Records,Newspaper Clippings, Sorted by Topic, Environment, 1958, 13 folders,1958 + + + + + + 352 + 25 + Records,Newspaper Clippings, Sorted by Topic, Foreign Relations, 1958, 13 folders,1958 + + + + + + 352 + 26 + Records,Newspaper Clippings, Sorted by Topic, Government, 1958, 13 folders,1958 + + + + + + 352 + 27 + Records,Newspaper Clippings, Sorted by Topic, Health, 1958, 13 folders,1958 + + + + + + 352 + 28 + Records,Newspaper Clippings, Sorted by Topic, Labor, 1958, 13 folders,1958 + + + + + + 352 + 29 + Records,Newspaper Clippings, Sorted by Topic, Politics, 1958, 13 folders,1958 + + + + + + 352 + 30 + Records,Newspaper Clippings, Sorted by Topic, Science, 1958, 13 folders,1958 + + + + + + 352 + 31 + Records,Newspaper Clippings, Sorted by Topic, Transportation, 1958, 13 folders,1958 + + + + + + 353 + 1 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1959, 13 folders,1959 + + + + + + 353 + 2 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1959, 13 folders,1959 + + + + + + 353 + 3 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1959, 13 folders,1959 + + + + + + 353 + 4 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1959, 13 folders,1959 + + + + + + 353 + 5 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1959, 13 folders,1959 + + + + + + 353 + 6 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1959, 13 folders,1959 + + + + + + 353 + 7 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1959, 13 folders,1959 + + + + + + 353 + 8 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1959, 13 folders,1959 + + + + + + 353 + 9 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1959, 13 folders,1959 + + + + + + 353 + 10 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1959, 13 folders,1959 + + + + + + 353 + 11 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1959, 13 folders,1959 + + + + + + 353 + 12 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1959, 13 folders,1959 + + + + + + 353 + 13 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1959, 13 folders,1959 + + + + + + 353 + 14 + Records,Newspaper Clippings, Sorted by Topic, Agriculture, 1959, 17 folders,1959 + + + + + + 353 + 15 + Records,Newspaper Clippings, Sorted by Topic, Communications, 1959, 17 folders,1959 + + + + + + 353 + 16 + Records,Newspaper Clippings, Sorted by Topic, Defense, 1959, 17 folders,1959 + + + + + + 353 + 17 + Records,Newspaper Clippings, Sorted by Topic, Economy, 1959, 17 folders,1959 + + + + + + 353 + 18 + Records,Newspaper Clippings, Sorted by Topic, Education, 1959, 17 folders,1959 + + + + + + 353 + 19 + Records,Newspaper Clippings, Sorted by Topic, Environment, 1959, 17 folders,1959 + + + + + + 353 + 20 + Records,Newspaper Clippings, Sorted by Topic, Foreign Relations, 1959, 17 folders,1959 + + + + + + 353 + 21 + Records,Newspaper Clippings, Sorted by Topic, Government, 1959, 17 folders,1959 + + + + + + 353 + 22 + Records,Newspaper Clippings, Sorted by Topic, Labor, 1959, 17 folders,1959 + + + + + + 353 + 23 + Records,Newspaper Clippings, Sorted by Topic, Landrum-Griffin, 1959, 17 folders,1959 + + + + + + 353 + 24 + Records,Newspaper Clippings, Sorted by Topic, Landrum-Griffin, 1959, 17 folders,1959 + + + + + + 353 + 25 + Records,Newspaper Clippings, Sorted by Topic, Landrum-Griffin, 1959, 17 folders,1959 + + + + + + 353 + 26 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement, 1959, 17 folders,1959 + + + + + + 353 + 27 + Records,Newspaper Clippings, Sorted by Topic, Political, 1959, 17 folders,1959 + + + + + + 353 + 28 + Records,Newspaper Clippings, Sorted by Topic, Science, 1959, 17 folders,1959 + + + + + + 353 + 29 + Records,Newspaper Clippings, Sorted by Topic, Transportation, 1959, 17 folders,1959 + + + + + + 353 + 30 + Records,Newspaper Clippings, Sorted by Topic, Welfare, 1959, 17 folders,1959 + + + + + + 353 + 47 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1960, 12 folders,1960 + + + + + + 353 + 48 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1960, 12 folders,1960 + + + + + + 353 + 49 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1960, 12 folders,1960 + + + + + + 353 + 50 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1960, 12 folders,1960 + + + + + + 353 + 51 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1960, 12 folders,1960 + + + + + + 353 + 52 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1960, 12 folders,1960 + + + + + + 353 + 53 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1960, 12 folders,1960 + + + + + + 353 + 54 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1960, 12 folders,1960 + + + + + + 353 + 55 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1960, 12 folders,1960 + + + + + + 353 + 56 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1960, 12 folders,1960 + + + + + + 353 + 57 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1960, 12 folders,1960 + + + + + + 353 + 58 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1960, 12 folders,1960 + + + + + + 353 + 59 + Records,Newspaper Clippings, Sorted by Topic, Defense, 1960, 12 folders,1960 + + + + + + 353 + 60 + Records,Newspaper Clippings, Sorted by Topic, Economy, 1960, 12 folders,1960 + + + + + + 353 + 61 + Records,Newspaper Clippings, Sorted by Topic, Education, 1960, 12 folders,1960 + + + + + + 353 + 62 + Records,Newspaper Clippings, Sorted by Topic, Environment, 1960, 12 folders,1960 + + + + + + 353 + 63 + Records,Newspaper Clippings, Sorted by Topic, Foreign Relations, 1960, 12 folders,1960 + + + + + + 353 + 64 + Records,Newspaper Clippings, Sorted by Topic, Government, 1960, 12 folders,1960 + + + + + + 353 + 65 + Records,Newspaper Clippings, Sorted by Topic, Labor, 1960, 12 folders,1960 + + + + + + 353 + 66 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement, 1960, 12 folders,1960 + + + + + + 353 + 67 + Records,Newspaper Clippings, Sorted by Topic, Political, 1960, 12 folders,1960 + + + + + + 353 + 68 + Records,Newspaper Clippings, Sorted by Topic, Political, 1960, 12 folders,1960 + + + + + + 353 + 69 + Records,Newspaper Clippings, Sorted by Topic, Political, 1960, 12 folders,1960 + + + + + + 353 + 70 + Records,Newspaper Clippings, Sorted by Topic, Transportation, 1960, 12 folders,1960 + + + + + + 354 + 1 + Records,Newspaper Clippings, Jan.-Dec. 1961, 12 folders,1961 + + + + + + 354 + 2 + Records,Newspaper Clippings, Jan.-Dec. 1961, 12 folders,1961 + + + + + + 354 + 3 + Records,Newspaper Clippings, Jan.-Dec. 1961, 12 folders,1961 + + + + + + 354 + 4 + Records,Newspaper Clippings, Jan.-Dec. 1961, 12 folders,1961 + + + + + + 354 + 5 + Records,Newspaper Clippings, Jan.-Dec. 1961, 12 folders,1961 + + + + + + 354 + 6 + Records,Newspaper Clippings, Jan.-Dec. 1961, 12 folders,1961 + + + + + + 354 + 7 + Records,Newspaper Clippings, Jan.-Dec. 1961, 12 folders,1961 + + + + + + 354 + 8 + Records,Newspaper Clippings, Jan.-Dec. 1961, 12 folders,1961 + + + + + + 354 + 9 + Records,Newspaper Clippings, Jan.-Dec. 1961, 12 folders,1961 + + + + + + 354 + 10 + Records,Newspaper Clippings, Jan.-Dec. 1961, 12 folders,1961 + + + + + + 354 + 11 + Records,Newspaper Clippings, Jan.-Dec. 1961, 12 folders,1961 + + + + + + 354 + 12 + Records,Newspaper Clippings, Jan.-Dec. 1961, 12 folders,1961 + + + + + + 354 + 13 + Records,Newspaper Clippings, Topics, Agriculture, 1961, 14 folders,1961 + + + + + + 354 + 14 + Records,Newspaper Clippings, Topics, Defense, 1961, 14 folders,1961 + + + + + + 354 + 15 + Records,Newspaper Clippings, Topics, Economy, 1961, 14 folders,1961 + + + + + + 354 + 16 + Records,Newspaper Clippings, Topics, Education, 1961, 14 folders,1961 + + + + + + 354 + 17 + Records,Newspaper Clippings, Topics, Environment, 1961, 14 folders,1961 + + + + + + 354 + 18 + Records,Newspaper Clippings, Topics, Foreign Relations, 1961, 14 folders,1961 + + + + + + 354 + 19 + Records,Newspaper Clippings, Topics, Government, 1961, 14 folders,1961 + + + + + + 354 + 20 + Records,Newspaper Clippings, Topics, Health, 1961, 14 folders,1961 + + + + + + 354 + 21 + Records,Newspaper Clippings, Topics, Labor, 1961, 14 folders,1961 + + + + + + 354 + 22 + Records,Newspaper Clippings, Topics, Law Enforcement, 1961, 14 folders,1961 + + + + + + 354 + 23 + Records,Newspaper Clippings, Topics, Political, 1961, 14 folders,1961 + + + + + + 354 + 24 + Records,Newspaper Clippings, Topics, Science, 1961, 14 folders,1961 + + + + + + 354 + 25 + Records,Newspaper Clippings, Topics, Transportation, 1961, 14 folders,1961 + + + + + + 354 + 26 + Records,Newspaper Clippings, Topics, Welfare, 1961, 14 folders,1961 + + + + + + 354 + 27 + Records,Newspaper Clippings, Jan.-Dec. 1962, 12 folders,1962 + + + + + + 354 + 28 + Records,Newspaper Clippings, Jan.-Dec. 1962, 12 folders,1962 + + + + + + 354 + 29 + Records,Newspaper Clippings, Jan.-Dec. 1962, 12 folders,1962 + + + + + + 354 + 30 + Records,Newspaper Clippings, Jan.-Dec. 1962, 12 folders,1962 + + + + + + 354 + 31 + Records,Newspaper Clippings, Jan.-Dec. 1962, 12 folders,1962 + + + + + + 354 + 32 + Records,Newspaper Clippings, Jan.-Dec. 1962, 12 folders,1962 + + + + + + 354 + 33 + Records,Newspaper Clippings, Jan.-Dec. 1962, 12 folders,1962 + + + + + + 354 + 34 + Records,Newspaper Clippings, Jan.-Dec. 1962, 12 folders,1962 + + + + + + 354 + 35 + Records,Newspaper Clippings, Jan.-Dec. 1962, 12 folders,1962 + + + + + + 354 + 36 + Records,Newspaper Clippings, Jan.-Dec. 1962, 12 folders,1962 + + + + + + 354 + 37 + Records,Newspaper Clippings, Jan.-Dec. 1962, 12 folders,1962 + + + + + + 354 + 38 + Records,Newspaper Clippings, Jan.-Dec. 1962, 12 folders,1962 + + + + + + 354 + 39 + Records,Newspaper Clippings, Topics, Agriculture, 1962, 11 folders,1962 + + + + + + 354 + 40 + Records,Newspaper Clippings, Topics, Economy, 1962, 11 folders,1962 + + + + + + 354 + 41 + Records,Newspaper Clippings, Topics, Education, 1962, 11 folders,1962 + + + + + + 354 + 42 + Records,Newspaper Clippings, Topics, Environment, 1962, 11 folders,1962 + + + + + + 354 + 43 + Records,Newspaper Clippings, Topics, Foreign Relations, 1962, 11 folders,1962 + + + + + + 354 + 44 + Records,Newspaper Clippings, Topics, Government, 1962, 11 folders,1962 + + + + + + 354 + 45 + Records,Newspaper Clippings, Topics, Health, 1962, 11 folders,1962 + + + + + + 354 + 46 + Records,Newspaper Clippings, Topics, Labor, 1962, 11 folders,1962 + + + + + + 354 + 47 + Records,Newspaper Clippings, Topics, Law Enforcement, 1962, 11 folders,1962 + + + + + + 354 + 48 + Records,Newspaper Clippings, Topics, Political, 1962, 11 folders,1962 + + + + + + 354 + 49 + Records,Newspaper Clippings, Topics, Transportation, 1962, 11 folders,1962 + + + + + + 354 + 50 + Records,Newspaper Clippings, Jan.-Dec. 1963, 12 folders,1963 + + + + + + 354 + 51 + Records,Newspaper Clippings, Jan.-Dec. 1963, 12 folders,1963 + + + + + + 354 + 52 + Records,Newspaper Clippings, Jan.-Dec. 1963, 12 folders,1963 + + + + + + 354 + 53 + Records,Newspaper Clippings, Jan.-Dec. 1963, 12 folders,1963 + + + + + + 354 + 54 + Records,Newspaper Clippings, Jan.-Dec. 1963, 12 folders,1963 + + + + + + 354 + 55 + Records,Newspaper Clippings, Jan.-Dec. 1963, 12 folders,1963 + + + + + + 354 + 56 + Records,Newspaper Clippings, Jan.-Dec. 1963, 12 folders,1963 + + + + + + 354 + 57 + Records,Newspaper Clippings, Jan.-Dec. 1963, 12 folders,1963 + + + + + + 354 + 58 + Records,Newspaper Clippings, Jan.-Dec. 1963, 12 folders,1963 + + + + + + 354 + 59 + Records,Newspaper Clippings, Jan.-Dec. 1963, 12 folders,1963 + + + + + + 354 + 60 + Records,Newspaper Clippings, Jan.-Dec. 1963, 12 folders,1963 + + + + + + 354 + 61 + Records,Newspaper Clippings, Jan.-Dec. 1963, 12 folders,1963 + + + + + + 354 + 62 + Records,Newspaper Clippings, 1963, 1 folder,1963 + + + + + + 354 + 63 + Records,Newspaper Clippings, Sorted by Topic, Agriculture, 1963, 16 folders,1963 + + + + + + 354 + 64 + Records,Newspaper Clippings, Sorted by Topic, Communication, 1963, 16 folders,1963 + + + + + + 354 + 65 + Records,Newspaper Clippings, Sorted by Topic, Defense, 1963, 16 folders,1963 + + + + + + 354 + 66 + Records,Newspaper Clippings, Sorted by Topic, Economy, 1963, 16 folders,1963 + + + + + + 354 + 67 + Records,Newspaper Clippings, Sorted by Topic, Education, 1963, 16 folders,1963 + + + + + + 354 + 68 + Records,Newspaper Clippings, Sorted by Topic, Environment (Sleeping Bear Dunes), 1963, 16 folders,1963 + + + + + + 354 + 69 + Records,Newspaper Clippings, Sorted by Topic, Environment (Sleeping Bear Dunes) Jan.-Feb.,1963, 16 folders,1963 + + + + + + 354 + 70 + Records,Newspaper Clippings, Sorted by Topic, Environment (Sleeping Bear Dunes) May-Dec., 1963, 16 folders,1963 + + + + + + 354 + 71 + Records,Newspaper Clippings, Sorted by Topic, Foreign Relations, 1963, 16 folders,1963 + + + + + + 354 + 72 + Records,Newspaper Clippings, Sorted by Topic, Government, 1963, 16 folders,1963 + + + + + + 354 + 73 + Records,Newspaper Clippings, Sorted by Topic, Health, 1963, 16 folders,1963 + + + + + + 354 + 74 + Records,Newspaper Clippings, Sorted by Topic, Labor, 1963, 16 folders,1963 + + + + + + 354 + 75 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement, 1963, 16 folders,1963 + + + + + + 354 + 76 + Records,Newspaper Clippings, Sorted by Topic, Political, 1963, 16 folders,1963 + + + + + + 354 + 77 + Records,Newspaper Clippings, Sorted by Topic, Transportation, 1963, 16 folders,1963 + + + + + + 354 + 78 + Records,Newspaper Clippings, Sorted by Topic, Welfare, 1963, 16 folders,1963 + + + + + + 355 + 1 + Records,Newspaper Clippings, Sorted by Date, 1964, 12 folders,1964 + + + + + + 355 + 2 + Records,Newspaper Clippings, Sorted by Date, 1964, 12 folders,1964 + + + + + + 355 + 3 + Records,Newspaper Clippings, Sorted by Date, 1964, 12 folders,1964 + + + + + + 355 + 4 + Records,Newspaper Clippings, Sorted by Date, 1964, 12 folders,1964 + + + + + + 355 + 5 + Records,Newspaper Clippings, Sorted by Date, 1964, 12 folders,1964 + + + + + + 355 + 6 + Records,Newspaper Clippings, Sorted by Date, 1964, 12 folders,1964 + + + + + + 355 + 7 + Records,Newspaper Clippings, Sorted by Date, 1964, 12 folders,1964 + + + + + + 355 + 8 + Records,Newspaper Clippings, Sorted by Date, 1964, 12 folders,1964 + + + + + + 355 + 9 + Records,Newspaper Clippings, Sorted by Date, 1964, 12 folders,1964 + + + + + + 355 + 10 + Records,Newspaper Clippings, Sorted by Date, 1964, 12 folders,1964 + + + + + + 355 + 11 + Records,Newspaper Clippings, Sorted by Date, 1964, 12 folders,1964 + + + + + + 355 + 12 + Records,Newspaper Clippings, Sorted by Date, 1964, 12 folders,1964 + + + + + + 355 + 13 + Records,Newspaper Clippings, Sorted by Topic, Agriculture, 1964, 13 folders,1964 + + + + + + 355 + 14 + Records,Newspaper Clippings, Sorted by Topic, Defense, 1964, 13 folders,1964 + + + + + + 355 + 15 + Records,Newspaper Clippings, Sorted by Topic, Economy, 1964, 13 folders,1964 + + + + + + 355 + 16 + Records,Newspaper Clippings, Sorted by Topic, Education, 1964, 13 folders,1964 + + + + + + 355 + 17 + Records,Newspaper Clippings, Sorted by Topic, Environment, 1964, 13 folders,1964 + + + + + + 355 + 18 + Records,Newspaper Clippings, Sorted by Topic, Foreign Relations, 1964, 13 folders,1964 + + + + + + 355 + 19 + Records,Newspaper Clippings, Sorted by Topic, Government, 1964, 13 folders,1964 + + + + + + 355 + 20 + Records,Newspaper Clippings, Sorted by Topic, Health, 1964, 13 folders,1964 + + + + + + 355 + 21 + Records,Newspaper Clippings, Sorted by Topic, Labor, 1964, 13 folders,1964 + + + + + + 355 + 22 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement, 1964, 13 folders,1964 + + + + + + 355 + 23 + Records,Newspaper Clippings, Sorted by Topic, Political, 1964, 13 folders,1964 + + + + + + 355 + 24 + Records,Newspaper Clippings, Sorted by Topic, Transportation, 1964, 13 folders,1964 + + + + + + 355 + 25 + Records,Newspaper Clippings, Sorted by Topic, Welfare, 1964, 13 folders,1964 + + + + + + 355 + 26 + Records,Newspaper Clippings, 1963, no specific month,1963 + + + + + + 355 + 27 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1965, 12 folders,1965 + + + + + + 355 + 28 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1965, 12 folders,1965 + + + + + + 355 + 29 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1965, 12 folders,1965 + + + + + + 355 + 30 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1965, 12 folders,1965 + + + + + + 355 + 31 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1965, 12 folders,1965 + + + + + + 355 + 32 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1965, 12 folders,1965 + + + + + + 355 + 33 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1965, 12 folders,1965 + + + + + + 355 + 34 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1965, 12 folders,1965 + + + + + + 355 + 35 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1965, 12 folders,1965 + + + + + + 355 + 36 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1965, 12 folders,1965 + + + + + + 355 + 37 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1965, 12 folders,1965 + + + + + + 355 + 38 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1965, 12 folders,1965 + + + + + + 355 + 39 + Records,Newspaper Clippings, Sorted by Topic, Agriculture, 1965, 14 folders,1965 + + + + + + 355 + 40 + Records,Newspaper Clippings, Sorted by Topic, Defense, 1965, 14 folders,1965 + + + + + + 355 + 41 + Records,Newspaper Clippings, Sorted by Topic, Economy, 1965, 14 folders,1965 + + + + + + 355 + 42 + Records,Newspaper Clippings, Sorted by Topic, Education, 1965, 14 folders,1965 + + + + + + 355 + 43 + Records,Newspaper Clippings, Sorted by Topic, Environment, 1965, 14 folders,1965 + + + + + + 355 + 44 + Records,Newspaper Clippings, Sorted by Topic, Foreign Relations, 1965, 14 folders,1965 + + + + + + 355 + 45 + Records,Newspaper Clippings, Sorted by Topic, Government, 1965, 14 folders,1965 + + + + + + 355 + 46 + Records,Newspaper Clippings, Sorted by Topic, Health, 1965, 14 folders,1965 + + + + + + 355 + 47 + Records,Newspaper Clippings, Sorted by Topic, Housing, 1965, 14 folders,1965 + + + + + + 355 + 48 + Records,Newspaper Clippings, Sorted by Topic, Labor, 1965, 14 folders,1965 + + + + + + 355 + 49 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement, 1965, 14 folders,1965 + + + + + + 355 + 50 + Records,Newspaper Clippings, Sorted by Topic, Political, 1965, 14 folders,1965 + + + + + + 355 + 51 + Records,Newspaper Clippings, Sorted by Topic, Transportation, 1965, 14 folders,1965 + + + + + + 355 + 52 + Records,Newspaper Clippings, Sorted by Topic, Welfare, 1965, 14 folders,1965 + + + + + + 356 + 1 + Records,Newspaper Clippings, January, 89th Congress, 2nd Session - June, 89th Congress, 2nd Session, 1966, 21 folders,1966 + + + + + + 356 + 2 + Records,Newspaper Clippings, January, 89th Congress, 2nd Session - June, 89th Congress, 2nd Session, 1966, 21 folders,1966 + + + + + + 356 + 3 + Records,Newspaper Clippings, January, 89th Congress, 2nd Session - June, 89th Congress, 2nd Session, 1966, 21 folders,1966 + + + + + + 356 + 4 + Records,Newspaper Clippings, January, 89th Congress, 2nd Session - June, 89th Congress, 2nd Session, 1966, 21 folders,1966 + + + + + + 356 + 5 + Records,Newspaper Clippings, January, 89th Congress, 2nd Session - June, 89th Congress, 2nd Session, 1966, 21 folders,1966 + + + + + + 356 + 6 + Records,Newspaper Clippings, January, 89th Congress, 2nd Session - June, 89th Congress, 2nd Session, 1966, 21 folders,1966 + + + + + + 356 + 7 + Records,Newspaper Clippings, January, 89th Congress, 2nd Session - June, 89th Congress, 2nd Session, 1966, 21 folders,1966 + + + + + + 356 + 8 + Records,Newspaper Clippings, January, 89th Congress, 2nd Session - June, 89th Congress, 2nd Session, 1966, 21 folders,1966 + + + + + + 356 + 9 + Records,Newspaper Clippings, January, 89th Congress, 2nd Session - June, 89th Congress, 2nd Session, 1966, 21 folders,1966 + + + + + + 356 + 10 + Records,Newspaper Clippings, January, 89th Congress, 2nd Session - June, 89th Congress, 2nd Session, 1966, 21 folders,1966 + + + + + + 356 + 11 + Records,Newspaper Clippings, January, 89th Congress, 2nd Session - June, 89th Congress, 2nd Session, 1966, 21 folders,1966 + + + + + + 356 + 12 + Records,Newspaper Clippings, January, 89th Congress, 2nd Session - June, 89th Congress, 2nd Session, 1966, 21 folders,1966 + + + + + + 356 + 13 + Records,Newspaper Clippings, January, 89th Congress, 2nd Session - June, 89th Congress, 2nd Session, 1966, 21 folders,1966 + + + + + + 356 + 14 + Records,Newspaper Clippings, January, 89th Congress, 2nd Session - June, 89th Congress, 2nd Session, 1966, 21 folders,1966 + + + + + + 356 + 15 + Records,Newspaper Clippings, January, 89th Congress, 2nd Session - June, 89th Congress, 2nd Session, 1966, 21 folders,1966 + + + + + + 356 + 16 + Records,Newspaper Clippings, January, 89th Congress, 2nd Session - June, 89th Congress, 2nd Session, 1966, 21 folders,1966 + + + + + + 356 + 17 + Records,Newspaper Clippings, January, 89th Congress, 2nd Session - June, 89th Congress, 2nd Session, 1966, 21 folders,1966 + + + + + + 356 + 18 + Records,Newspaper Clippings, January, 89th Congress, 2nd Session - June, 89th Congress, 2nd Session, 1966, 21 folders,1966 + + + + + + 356 + 19 + Records,Newspaper Clippings, January, 89th Congress, 2nd Session - June, 89th Congress, 2nd Session, 1966, 21 folders,1966 + + + + + + 356 + 20 + Records,Newspaper Clippings, January, 89th Congress, 2nd Session - June, 89th Congress, 2nd Session, 1966, 21 folders,1966 + + + + + + 356 + 21 + Records,Newspaper Clippings, January, 89th Congress, 2nd Session - June, 89th Congress, 2nd Session, 1966, 21 folders,1966 + + + + + + 356 + 22 + Records,Newspaper Clippings, Sorted by Date, Jul.-Sept. 1966, 18 folders,1966 + + + + + + 356 + 23 + Records,Newspaper Clippings, Sorted by Date, Jul.-Sept. 1966, 18 folders,1966 + + + + + + 356 + 24 + Records,Newspaper Clippings, Sorted by Date, Jul.-Sept. 1966, 18 folders,1966 + + + + + + 356 + 25 + Records,Newspaper Clippings, Sorted by Date, Jul.-Sept. 1966, 18 folders,1966 + + + + + + 356 + 26 + Records,Newspaper Clippings, Sorted by Date, Jul.-Sept. 1966, 18 folders,1966 + + + + + + 356 + 27 + Records,Newspaper Clippings, Sorted by Date, Jul.-Sept. 1966, 18 folders,1966 + + + + + + 356 + 28 + Records,Newspaper Clippings, Sorted by Date, Jul.-Sept. 1966, 18 folders,1966 + + + + + + 356 + 29 + Records,Newspaper Clippings, Sorted by Date, Jul.-Sept. 1966, 18 folders,1966 + + + + + + 356 + 30 + Records,Newspaper Clippings, Sorted by Date, Jul.-Sept. 1966, 18 folders,1966 + + + + + + 356 + 31 + Records,Newspaper Clippings, Sorted by Date, Jul.-Sept. 1966, 18 folders,1966 + + + + + + 356 + 32 + Records,Newspaper Clippings, Sorted by Date, Jul.-Sept. 1966, 18 folders,1966 + + + + + + 356 + 33 + Records,Newspaper Clippings, Sorted by Date, Jul.-Sept. 1966, 18 folders,1966 + + + + + + 356 + 34 + Records,Newspaper Clippings, Sorted by Date, Jul.-Sept. 1966, 18 folders,1966 + + + + + + 356 + 35 + Records,Newspaper Clippings, Sorted by Date, Jul.-Sept. 1966, 18 folders,1966 + + + + + + 356 + 36 + Records,Newspaper Clippings, Sorted by Date, Jul.-Sept. 1966, 18 folders,1966 + + + + + + 356 + 37 + Records,Newspaper Clippings, Sorted by Date, Jul.-Sept. 1966, 18 folders,1966 + + + + + + 356 + 38 + Records,Newspaper Clippings, Sorted by Date, Jul.-Sept. 1966, 18 folders,1966 + + + + + + 356 + 39 + Records,Newspaper Clippings, Sorted by Date, Jul.-Sept. 1966, 18 folders,1966 + + + + + + 357 + 1 + Records,Newspaper Clippings, Sorted by Date, Jul.-Sept. 1966, 18 folders,1966 + + + + + + 357 + 2 + Records,Newspaper Clippings, Sorted by Date, Jul.-Sept. 1966, 18 folders,1966 + + + + + + 357 + 3 + Records,Newspaper Clippings, Sorted by Date, Jul.-Sept. 1966, 18 folders,1966 + + + + + + 357 + 4 + Records,Newspaper Clippings, Sorted by Date, October, 89th Congress, 2nd Session-December, 89th Congress, 2nd Session, 1966, 17 folders,1966 + + + + + + 357 + 5 + Records,Newspaper Clippings, Sorted by Date, October, 89th Congress, 2nd Session-December, 89th Congress, 2nd Session, 1966, 17 folders,1966 + + + + + + 357 + 6 + Records,Newspaper Clippings, Sorted by Date, October, 89th Congress, 2nd Session-December, 89th Congress, 2nd Session, 1966, 17 folders,1966 + + + + + + 357 + 7 + Records,Newspaper Clippings, Sorted by Date, October, 89th Congress, 2nd Session-December, 89th Congress, 2nd Session, 1966, 17 folders,1966 + + + + + + 357 + 8 + Records,Newspaper Clippings, Sorted by Date, October, 89th Congress, 2nd Session-December, 89th Congress, 2nd Session, 1966, 17 folders,1966 + + + + + + 357 + 9 + Records,Newspaper Clippings, Sorted by Date, October, 89th Congress, 2nd Session-December, 89th Congress, 2nd Session, 1966, 17 folders,1966 + + + + + + 357 + 10 + Records,Newspaper Clippings, Sorted by Date, October, 89th Congress, 2nd Session-December, 89th Congress, 2nd Session, 1966, 17 folders,1966 + + + + + + 357 + 11 + Records,Newspaper Clippings, Sorted by Date, October, 89th Congress, 2nd Session-December, 89th Congress, 2nd Session, 1966, 17 folders,1966 + + + + + + 357 + 12 + Records,Newspaper Clippings, Sorted by Date, October, 89th Congress, 2nd Session-December, 89th Congress, 2nd Session, 1966, 17 folders,1966 + + + + + + 357 + 13 + Records,Newspaper Clippings, Sorted by Date, October, 89th Congress, 2nd Session-December, 89th Congress, 2nd Session, 1966, 17 folders,1966 + + + + + + 357 + 14 + Records,Newspaper Clippings, Sorted by Date, October, 89th Congress, 2nd Session-December, 89th Congress, 2nd Session, 1966, 17 folders,1966 + + + + + + 357 + 15 + Records,Newspaper Clippings, Sorted by Date, October, 89th Congress, 2nd Session-December, 89th Congress, 2nd Session, 1966, 17 folders,1966 + + + + + + 357 + 16 + Records,Newspaper Clippings, Sorted by Date, October, 89th Congress, 2nd Session-December, 89th Congress, 2nd Session, 1966, 17 folders,1966 + + + + + + 357 + 17 + Records,Newspaper Clippings, Sorted by Date, October, 89th Congress, 2nd Session-December, 89th Congress, 2nd Session, 1966, 17 folders,1966 + + + + + + 357 + 18 + Records,Newspaper Clippings, Sorted by Date, October, 89th Congress, 2nd Session-December, 89th Congress, 2nd Session, 1966, 17 folders,1966 + + + + + + 357 + 19 + Records,Newspaper Clippings, Sorted by Date, October, 89th Congress, 2nd Session-December, 89th Congress, 2nd Session, 1966, 17 folders,1966 + + + + + + 357 + 20 + Records,Newspaper Clippings, Sorted by Date, October, 89th Congress, 2nd Session-December, 89th Congress, 2nd Session, 1966, 17 folders,1966 + + + + + + 358 + 1 + Records,Newspaper Clippings, Sorted by Topic, Defense, 1966, 25 folders,1966 + + + + + + 358 + 2 + Records,Newspaper Clippings, Sorted by Topic, Defense/Vietnam, 1966, 25 folders,1966 + + + + + + 358 + 3 + Records,Newspaper Clippings, Sorted by Topic, Defense/Vietnam, 1966, 25 folders,1966 + + + + + + 358 + 4 + Records,Newspaper Clippings, Sorted by Topic, Economy, 1966, 25 folders,1966 + + + + + + 358 + 5 + Records,Newspaper Clippings, Sorted by Topic, Education, 1966, 25 folders,1966 + + + + + + 358 + 6 + Records,Newspaper Clippings, Sorted by Topic, Communications, 1966, 25 folders,1966 + + + + + + 358 + 7 + Records,Newspaper Clippings, Sorted by Topic, Consumers, 1966, 25 folders,1966 + + + + + + 358 + 8 + Records,Newspaper Clippings, Sorted by Topic, Agriculture, 1966, 25 folders,1966 + + + + + + 358 + 9 + Records,Newspaper Clippings, Sorted by Topic, Energy, 1966, 25 folders,1966 + + + + + + 358 + 10 + Records,Newspaper Clippings, Sorted by Topic, Environment, 1966, 25 folders,1966 + + + + + + 358 + 11 + Records,Newspaper Clippings, Sorted by Topic, Foreign Relations, 1966, 25 folders,1966 + + + + + + 358 + 12 + Records,Newspaper Clippings, Sorted by Topic, Government, 1966, 25 folders,1966 + + + + + + 358 + 13 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, Appointment to Senate, 1966, 25 folders,1966 + + + + + + 358 + 14 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 25 folders,1966 + + + + + + 358 + 15 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 25 folders,1966 + + + + + + 358 + 16 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 25 folders,1966 + + + + + + 358 + 17 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 25 folders,1966 + + + + + + 358 + 18 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 25 folders,1966 + + + + + + 358 + 19 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 25 folders,1966 + + + + + + 358 + 20 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 25 folders,1966 + + + + + + 358 + 21 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 25 folders,1966 + + + + + + 358 + 22 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 25 folders,1966 + + + + + + 358 + 23 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 25 folders,1966 + + + + + + 358 + 24 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 25 folders,1966 + + + + + + 358 + 25 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 25 folders,1966 + + + + + + 359 + 1 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 23 folders,1966 + + + + + + 359 + 2 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 23 folders,1966 + + + + + + 359 + 3 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 23 folders,1966 + + + + + + 359 + 4 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 23 folders,1966 + + + + + + 359 + 5 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 23 folders,1966 + + + + + + 359 + 6 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 23 folders,1966 + + + + + + 359 + 7 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 23 folders,1966 + + + + + + 359 + 8 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 23 folders,1966 + + + + + + 359 + 9 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 23 folders,1966 + + + + + + 359 + 10 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 23 folders,1966 + + + + + + 359 + 11 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 23 folders,1966 + + + + + + 359 + 12 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 23 folders,1966 + + + + + + 359 + 13 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 23 folders,1966 + + + + + + 359 + 14 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 23 folders,1966 + + + + + + 359 + 15 + Records,Newspaper Clippings, Sorted by Topic, Government/Campaign 1966, 23 folders,1966 + + + + + + 359 + 16 + Records,Newspaper Clippings, Sorted by Topic, Health 1966, 23 folders,1966 + + + + + + 359 + 17 + Records,Newspaper Clippings, Sorted by Topic, Housing 1966, 23 folders,1966 + + + + + + 359 + 18 + Records,Newspaper Clippings, Sorted by Topic, Labor 1966, 23 folders,1966 + + + + + + 359 + 19 + Records,Newspaper Clippings, Sorted by Topic, Labor 1966, 23 folders,1966 + + + + + + 359 + 20 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement 1966, 23 folders,1966 + + + + + + 359 + 21 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement 1966, 23 folders,1966 + + + + + + 359 + 22 + Records,Newspaper Clippings, Sorted by Topic, Science 1966, 23 folders,1966 + + + + + + 359 + 23 + Records,Newspaper Clippings, Sorted by Topic, Transportation 1966, 23 folders,1966 + + + + + + 359 + 24 + Records,Newspaper Clippings, Sorted by Topic, Welfare 1966, 23 folders,1966 + + + + + + 360 + 1 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1967, 12 folders,1967 + + + + + + 360 + 2 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1967, 12 folders,1967 + + + + + + 360 + 3 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1967, 12 folders,1967 + + + + + + 360 + 4 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1967, 12 folders,1967 + + + + + + 360 + 5 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1967, 12 folders,1967 + + + + + + 360 + 6 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1967, 12 folders,1967 + + + + + + 360 + 7 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1967, 12 folders,1967 + + + + + + 360 + 8 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1967, 12 folders,1967 + + + + + + 360 + 9 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1967, 12 folders,1967 + + + + + + 360 + 10 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1967, 12 folders,1967 + + + + + + 360 + 11 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1967, 12 folders,1967 + + + + + + 360 + 12 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1967, 12 folders,1967 + + + + + + 360 + 13 + Records,Newspaper Clippings, 1967, no specific month,1967 + + + + + + 360 + 14 + Records,Newspaper Clippings, Sorted by Topic, Agriculture 1967, 19 folders,1967 + + + + + + 360 + 15 + Records,Newspaper Clippings, Sorted by Topic, Communications 1967, 19 folders,1967 + + + + + + 360 + 16 + Records,Newspaper Clippings, Sorted by Topic, Defense 1967, 19 folders,1967 + + + + + + 360 + 17 + Records,Newspaper Clippings, Sorted by Topic, Defense/Vietnam 1967, 19 folders,1967 + + + + + + 360 + 18 + Records,Newspaper Clippings, Sorted by Topic, Economy 1967, 19 folders,1967 + + + + + + 360 + 19 + Records,Newspaper Clippings, Sorted by Topic, Education 1967, 19 folders,1967 + + + + + + 360 + 20 + Records,Newspaper Clippings, Sorted by Topic, Energy 1967, 19 folders,1967 + + + + + + 360 + 21 + Records,Newspaper Clippings, Sorted by Topic, Environment 1967, 19 folders,1967 + + + + + + 360 + 22 + Records,Newspaper Clippings, Sorted by Topic, Foreign Relations 1967, 19 folders,1967 + + + + + + 360 + 23 + Records,Newspaper Clippings, Sorted by Topic, Government 1967, 19 folders,1967 + + + + + + 360 + 24 + Records,Newspaper Clippings, Sorted by Topic, Health 1967, 19 folders,1967 + + + + + + 360 + 25 + Records,Newspaper Clippings, Sorted by Topic, Housing 1967, 19 folders,1967 + + + + + + 360 + 26 + Records,Newspaper Clippings, Sorted by Topic, Labor 1967, 19 folders,1967 + + + + + + 360 + 27 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement 1967, 19 folders,1967 + + + + + + 360 + 28 + Records,Newspaper Clippings, Sorted by Topic, Political 1967, 19 folders,1967 + + + + + + 360 + 29 + Records,Newspaper Clippings, Sorted by Topic, Political 1967, 19 folders,1967 + + + + + + 360 + 30 + Records,Newspaper Clippings, Sorted by Topic, Science 1967, 19 folders,1967 + + + + + + 360 + 31 + Records,Newspaper Clippings, Sorted by Topic, Transportation 1967, 19 folders,1967 + + + + + + 360 + 32 + Records,Newspaper Clippings, Sorted by Topic, Welfare 1967, 19 folders,1967 + + + + + + 361 + 1 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1968, 15 folders,1968 + + + + + + 361 + 2 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1968, 15 folders,1968 + + + + + + 361 + 3 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1968, 15 folders,1968 + + + + + + 361 + 4 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1968, 15 folders,1968 + + + + + + 361 + 5 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1968, 15 folders,1968 + + + + + + 361 + 6 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1968, 15 folders,1968 + + + + + + 361 + 7 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1968, 15 folders,1968 + + + + + + 361 + 8 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1968, 15 folders,1968 + + + + + + 361 + 9 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1968, 15 folders,1968 + + + + + + 361 + 10 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1968, 15 folders,1968 + + + + + + 361 + 11 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1968, 15 folders,1968 + + + + + + 361 + 12 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1968, 15 folders,1968 + + + + + + 361 + 13 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1968, 15 folders,1968 + + + + + + 361 + 14 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1968, 15 folders,1968 + + + + + + 361 + 15 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1968, 15 folders,1968 + + + + + + 361 + 16 + Records,Newspaper Clippings, Sorted by Topic, Consumers 1968, 22 folders,1968 + + + + + + 361 + 17 + Records,Newspaper Clippings, Sorted by Topic, Defense 1968, 22 folders,1968 + + + + + + 361 + 18 + Records,Newspaper Clippings, Sorted by Topic, Defense/Vietnam 1968, 22 folders,1968 + + + + + + 361 + 19 + Records,Newspaper Clippings, Sorted by Topic, Economy 1968, 22 folders,1968 + + + + + + 361 + 20 + Records,Newspaper Clippings, Sorted by Topic, Education 1968, 22 folders,1968 + + + + + + 361 + 21 + Records,Newspaper Clippings, Sorted by Topic, Environment 1968, 22 folders,1968 + + + + + + 361 + 22 + Records,Newspaper Clippings, Sorted by Topic, Foreign Relations 1968, 22 folders,1968 + + + + + + 361 + 23 + Records,Newspaper Clippings, Sorted by Topic, Government 1968, 22 folders,1968 + + + + + + 361 + 24 + Records,Newspaper Clippings, Sorted by Topic, Health 1968, 22 folders,1968 + + + + + + 361 + 25 + Records,Newspaper Clippings, Sorted by Topic, Housing 1968, 22 folders,1968 + + + + + + 361 + 26 + Records,Newspaper Clippings, Sorted by Topic, Labor 1968, 22 folders,1968 + + + + + + 361 + 27 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement 1968, 22 folders,1968 + + + + + + 361 + 28 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement/Fortas 1968, 22 folders,1968 + + + + + + 361 + 29 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement/Fortas 1968, 22 folders,1968 + + + + + + 361 + 30 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement/Fortas 1968, 22 folders,1968 + + + + + + 361 + 31 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement/Fortas 1968, 22 folders,1968 + + + + + + 361 + 32 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement/Fortas 1968, 22 folders,1968 + + + + + + 361 + 33 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement/Fortas 1968, 22 folders,1968 + + + + + + 361 + 34 + Records,Newspaper Clippings, Sorted by Topic, Political 1968, 22 folders,1968 + + + + + + 361 + 35 + Records,Newspaper Clippings, Sorted by Topic, Science 1968, 22 folders,1968 + + + + + + 361 + 36 + Records,Newspaper Clippings, Sorted by Topic, Transportation 1968, 22 folders,1968 + + + + + + 361 + 37 + Records,Newspaper Clippings, Sorted by Topic, Welfare 1968, 22 folders,1968 + + + + + + 362 + 1 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1969, 12 folders,1969 + + + + + + 362 + 2 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1969, 12 folders,1969 + + + + + + 362 + 3 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1969, 12 folders,1969 + + + + + + 362 + 4 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1969, 12 folders,1969 + + + + + + 362 + 5 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1969, 12 folders,1969 + + + + + + 362 + 6 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1969, 12 folders,1969 + + + + + + 362 + 7 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1969, 12 folders,1969 + + + + + + 362 + 8 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1969, 12 folders,1969 + + + + + + 362 + 9 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1969, 12 folders,1969 + + + + + + 362 + 10 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1969, 12 folders,1969 + + + + + + 362 + 11 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1969, 12 folders,1969 + + + + + + 362 + 12 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1969, 12 folders,1969 + + + + + + 362 + 13 + Records,Newspaper Clippings, Sorted by Topic, Agriculture 1969, 18 folders,1969 + + + + + + 362 + 14 + Records,Newspaper Clippings, Sorted by Topic, Communications 1969, 18 folders,1969 + + + + + + 362 + 15 + Records,Newspaper Clippings, Sorted by Topic, Defense 1969, 18 folders,1969 + + + + + + 362 + 16 + Records,Newspaper Clippings, Sorted by Topic, Defense/Vietnam 1969, 18 folders,1969 + + + + + + 362 + 17 + Records,Newspaper Clippings, Sorted by Topic, Economy 1969, 18 folders,1969 + + + + + + 362 + 18 + Records,Newspaper Clippings, Sorted by Topic, Education 1969, 18 folders,1969 + + + + + + 362 + 19 + Records,Newspaper Clippings, Sorted by Topic, Energy 1969, 18 folders,1969 + + + + + + 362 + 20 + Records,Newspaper Clippings, Sorted by Topic, Environment 1969, 18 folders,1969 + + + + + + 362 + 21 + Records,Newspaper Clippings, Sorted by Topic, Foreign Relations 1969, 18 folders,1969 + + + + + + 362 + 22 + Records,Newspaper Clippings, Sorted by Topic, Government 1969, 18 folders,1969 + + + + + + 362 + 23 + Records,Newspaper Clippings, Sorted by Topic, Health 1969, 18 folders,1969 + + + + + + 362 + 24 + Records,Newspaper Clippings, Sorted by Topic, Housing 1969, 18 folders,1969 + + + + + + 362 + 25 + Records,Newspaper Clippings, Sorted by Topic, Labor 1969, 18 folders,1969 + + + + + + 362 + 26 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement 1969, 18 folders,1969 + + + + + + 362 + 27 + Records,Newspaper Clippings, Sorted by Topic, Political 1969, 18 folders,1969 + + + + + + 362 + 28 + Records,Newspaper Clippings, Sorted by Topic, Science 1969, 18 folders,1969 + + + + + + 362 + 29 + Records,Newspaper Clippings, Sorted by Topic, Transportation 1969, 18 folders,1969 + + + + + + 362 + 30 + Records,Newspaper Clippings, Sorted by Topic, Welfare 1969, 18 folders,1969 + + + + + + 362 + 31 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1970, 13 folders,1970 + + + + + + 362 + 32 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1970, 13 folders,1970 + + + + + + 362 + 33 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1970, 13 folders,1970 + + + + + + 362 + 34 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1970, 13 folders,1970 + + + + + + 362 + 35 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1970, 13 folders,1970 + + + + + + 362 + 36 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1970, 13 folders,1970 + + + + + + 362 + 37 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1970, 13 folders,1970 + + + + + + 362 + 38 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1970, 13 folders,1970 + + + + + + 362 + 39 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1970, 13 folders,1970 + + + + + + 362 + 40 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1970, 13 folders,1970 + + + + + + 362 + 41 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1970, 13 folders,1970 + + + + + + 362 + 42 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1970, 13 folders,1970 + + + + + + 362 + 43 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1970, 13 folders,1970 + + + + + + 363 + 1 + Records,Newspaper Clippings, Sorted by Topic, Agriculture 1970, 17 folders,1970 + + + + + + 363 + 2 + Records,Newspaper Clippings, Sorted by Topic, Communications 1970, 17 folders,1970 + + + + + + 363 + 3 + Records,Newspaper Clippings, Sorted by Topic, Defense 1970, 17 folders,1970 + + + + + + 363 + 4 + Records,Newspaper Clippings, Sorted by Topic, Defense/Vietnam 1970, 17 folders,1970 + + + + + + 363 + 5 + Records,Newspaper Clippings, Sorted by Topic, Defense/Vietnam (Cambodia) 1970, 17 folders,1970 + + + + + + 363 + 6 + Records,Newspaper Clippings, Sorted by Topic, Economy 1970, 17 folders,1970 + + + + + + 363 + 7 + Records,Newspaper Clippings, Sorted by Topic, Education 1970, 17 folders,1970 + + + + + + 363 + 8 + Records,Newspaper Clippings, Sorted by Topic, Environment 1970, 17 folders,1970 + + + + + + 363 + 9 + Records,Newspaper Clippings, Sorted by Topic, Foreign Relations 1970, 17 folders,1970 + + + + + + 363 + 10 + Records,Newspaper Clippings, Sorted by Topic, Government 1970, 17 folders,1970 + + + + + + 363 + 11 + Records,Newspaper Clippings, Sorted by Topic, Health 1970, 17 folders,1970 + + + + + + 363 + 12 + Records,Newspaper Clippings, Sorted by Topic, Housing 1970, 17 folders,1970 + + + + + + 363 + 13 + Records,Newspaper Clippings, Sorted by Topic, Labor 1970, 17 folders,1970 + + + + + + 363 + 14 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement 1970, 17 folders,1970 + + + + + + 363 + 15 + Records,Newspaper Clippings, Sorted by Topic, Political 1970, 17 folders,1970 + + + + + + 363 + 16 + Records,Newspaper Clippings, Sorted by Topic, Transportation 1970, 17 folders,1970 + + + + + + 363 + 17 + Records,Newspaper Clippings, Sorted by Topic, Welfare 1970, 17 folders,1970 + + + + + + 363 + 18 + Records,Newspaper Clippings, Sorted by Topic, Agriculture 1971,1971 + + + + + + 363 + 19 + Records,Newspaper Clippings, Sorted by Topic, Defense 1971,1971 + + + + + + 363 + 20 + Records,Newspaper Clippings, Sorted by Topic, Defense/Vietnam 1971,1971 + + + + + + 363 + 21 + Records,Newspaper Clippings, Sorted by Topic, Economy 1971,1971 + + + + + + 363 + 22 + Records,Newspaper Clippings, Sorted by Topic, Education 1971,1971 + + + + + + 363 + 23 + Records,Newspaper Clippings, Sorted by Topic, Energy 1971,1971 + + + + + + 363 + 24 + Records,Newspaper Clippings, Sorted by Topic, Environment 1971,1971 + + + + + + 363 + 25 + Records,Newspaper Clippings, Sorted by Topic, Foreign Relations 1971,1971 + + + + + + 363 + 26 + Records,Newspaper Clippings, Sorted by Topic, Government 1971,1971 + + + + + + 363 + 27 + Records,Newspaper Clippings, Sorted by Topic, Health 1971,1971 + + + + + + 363 + 28 + Records,Newspaper Clippings, Sorted by Topic, Housing 1971,1971 + + + + + + 363 + 29 + Records,Newspaper Clippings, Sorted by Topic, Labor 1971,1971 + + + + + + 363 + 30 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement 1971,1971 + + + + + + 363 + 31 + Records,Newspaper Clippings, Sorted by Topic, Political 1971,1971 + + + + + + 363 + 32 + Records,Newspaper Clippings, Sorted by Topic, Political 1971,1971 + + + + + + 363 + 33 + Records,Newspaper Clippings, Sorted by Topic, Science 1971,1971 + + + + + + 363 + 34 + Records,Newspaper Clippings, Sorted by Topic, Transportation 1971,1971 + + + + + + 363 + 35 + Records,Newspaper Clippings, Sorted by Topic, Welfare 1971,1971 + + + + + + 363 + 36 + Records,Newspaper Clippings, Sorted by Date, Jan. 1971,1971 + + + + + + 364 + 1 + Records,Newspaper Clippings, Sorted by Date, Feb. 1971,1971 + + + + + + 364 + 2 + Records,Newspaper Clippings, Sorted by Date, Mar.-Dec. 1971, 12 folders,1971 + + + + + + 364 + 3 + Records,Newspaper Clippings, Sorted by Date, Mar.-Dec. 1971, 12 folders,1971 + + + + + + 364 + 4 + Records,Newspaper Clippings, Sorted by Date, Mar.-Dec. 1971, 12 folders,1971 + + + + + + 364 + 5 + Records,Newspaper Clippings, Sorted by Date, Mar.-Dec. 1971, 12 folders,1971 + + + + + + 364 + 6 + Records,Newspaper Clippings, Sorted by Date, Mar.-Dec. 1971, 12 folders,1971 + + + + + + 364 + 8 + Records,Newspaper Clippings, Sorted by Date, Mar.-Dec. 1971, 12 folders,1971 + + + + + + 364 + 9 + Records,Newspaper Clippings, Sorted by Date, Mar.-Dec. 1971, 12 folders,1971 + + + + + + 364 + 10 + Records,Newspaper Clippings, Sorted by Date, Mar.-Dec. 1971, 12 folders,1971 + + + + + + 364 + 11 + Records,Newspaper Clippings, Sorted by Date, Mar.-Dec. 1971, 12 folders,1971 + + + + + + 364 + 12 + Records,Newspaper Clippings, Sorted by Date, Mar.-Dec. 1971, 12 folders,1971 + + + + + + 364 + 13 + Records,Newspaper Clippings, Sorted by Date, Mar.-Dec. 1971, 12 folders,1971 + + + + + + 364 + 14 + Records,Newspaper Clippings, Sorted by Date, Jan.-Feb. 1972, 9 folders,1972 + + + + + + 364 + 15 + Records,Newspaper Clippings, Sorted by Date, Jan.-Feb. 1972, 9 folders,1972 + + + + + + 364 + 16 + Records,Newspaper Clippings, Sorted by Date, Jan.-Feb. 1972, 9 folders,1972 + + + + + + 364 + 17 + Records,Newspaper Clippings, Sorted by Date, Jan.-Feb. 1972, 9 folders,1972 + + + + + + 364 + 18 + Records,Newspaper Clippings, Sorted by Date, Jan.-Feb. 1972, 9 folders,1972 + + + + + + 364 + 19 + Records,Newspaper Clippings, Sorted by Date, Jan.-Feb. 1972, 9 folders,1972 + + + + + + 364 + 20 + Records,Newspaper Clippings, Sorted by Date, Jan.-Feb. 1972, 9 folders,1972 + + + + + + 364 + 21 + Records,Newspaper Clippings, Sorted by Date, Jan.-Feb. 1972, 9 folders,1972 + + + + + + 364 + 22 + Records,Newspaper Clippings, Sorted by Date, Jan.-Feb. 1972, 9 folders,1972 + + + + + + 365 + 1 + Records,Newspaper Clippings, Sorted by Date, Mar.-Dec. 1972, 13 folders,1972 + + + + + + 365 + 2 + Records,Newspaper Clippings, Sorted by Date, Mar.-Dec. 1972, 13 folders,1972 + + + + + + 365 + 3 + Records,Newspaper Clippings, Sorted by Date, Mar.-Dec. 1972, 13 folders,1972 + + + + + + 365 + 4 + Records,Newspaper Clippings, Sorted by Date, Mar.-Dec. 1972, 13 folders,1972 + + + + + + 365 + 5 + Records,Newspaper Clippings, Sorted by Date, Mar.-Dec. 1972, 13 folders,1972 + + + + + + 365 + 6 + Records,Newspaper Clippings, Sorted by Date, Mar.-Dec. 1972, 13 folders,1972 + + + + + + 365 + 7 + Records,Newspaper Clippings, Sorted by Date, Mar.-Dec. 1972, 13 folders,1972 + + + + + + 365 + 8 + Records,Newspaper Clippings, Sorted by Date, Mar.-Dec. 1972, 13 folders,1972 + + + + + + 365 + 9 + Records,Newspaper Clippings, Sorted by Date, Mar.-Dec. 1972, 13 folders,1972 + + + + + + 365 + 10 + Records,Newspaper Clippings, Sorted by Date, Mar.-Dec. 1972, 13 folders,1972 + + + + + + 365 + 11 + Records,Newspaper Clippings, Sorted by Date, Mar.-Dec. 1972, 13 folders,1972 + + + + + + 365 + 12 + Records,Newspaper Clippings, Sorted by Date, Mar.-Dec. 1972, 13 folders,1972 + + + + + + 365 + 13 + Records,Newspaper Clippings, Sorted by Date, Mar.-Dec. 1972, 13 folders,1972 + + + + + + 365 + 14 + Records,Newspaper Clippings, Sorted by Topic, Agriculture 1972,1972 + + + + + + 365 + 15 + Records,Newspaper Clippings, Sorted by Topic, Communications 1972,1972 + + + + + + 365 + 16 + Records,Newspaper Clippings, Sorted by Topic, Consumers 1972,1972 + + + + + + 365 + 17 + Records,Newspaper Clippings, Sorted by Topic, Defense 1972,1972 + + + + + + 365 + 18 + Records,Newspaper Clippings, Sorted by Topic, Economy 1972,1972 + + + + + + 365 + 19 + Records,Newspaper Clippings, Sorted by Topic, Education (Busing) 1972,1972 + + + + + + 365 + 20 + Records,Newspaper Clippings, Sorted by Topic, Busing 1972,1972 + + + + + + 365 + 21 + Records,Newspaper Clippings, Sorted by Topic, Energy 1972,1972 + + + + + + 365 + 22 + Records,Newspaper Clippings, Sorted by Topic, Environment 1972,1972 + + + + + + 365 + 23 + Records,Newspaper Clippings, Sorted by Topic, Government 1972,1972 + + + + + + 365 + 24 + Records,Newspaper Clippings, Sorted by Topic, Government 1972,1972 + + + + + + 365 + 25 + Records,Newspaper Clippings, Sorted by Topic, Government (Campaign) Feb.-May 1972,1972 + + + + + + 366 + 1 + Records,Newspaper Clippings, Sorted by Topic, Government (Campaign) June-Dec. 1972,1972 + + + + + + 366 + 2 + Records,Newspaper Clippings, Sorted by Topic, Foreign Relations 1972,1972 + + + + + + 366 + 3 + Records,Newspaper Clippings, Sorted by Topic, Health 1972,1972 + + + + + + 366 + 4 + Records,Newspaper Clippings, Sorted by Topic, Housing 1972,1972 + + + + + + 366 + 5 + Records,Newspaper Clippings, Sorted by Topic, Labor 1972,1972 + + + + + + 366 + 6 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement 1972,1972 + + + + + + 366 + 7 + Records,Newspaper Clippings, Sorted by Topic, Transportation 1972,1972 + + + + + + 366 + 8 + Records,Newspaper Clippings, Sorted by Topic, Welfare 1972,1972 + + + + + + 366 + 9 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1973, 14 folders,1973 + + + + + + 366 + 10 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1973, 14 folders,1973 + + + + + + 366 + 11 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1973, 14 folders,1973 + + + + + + 366 + 12 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1973, 14 folders,1973 + + + + + + 366 + 13 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1973, 14 folders,1973 + + + + + + 366 + 14 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1973, 14 folders,1973 + + + + + + 366 + 15 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1973, 14 folders,1973 + + + + + + 366 + 16 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1973, 14 folders,1973 + + + + + + 366 + 17 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1973, 14 folders,1973 + + + + + + 366 + 18 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1973, 14 folders,1973 + + + + + + 366 + 19 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1973, 14 folders,1973 + + + + + + 366 + 20 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1973, 14 folders,1973 + + + + + + 366 + 21 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1973, 14 folders,1973 + + + + + + 366 + 22 + Records,Newspaper Clippings, Sorted by Date, Jan.-Dec. 1973, 14 folders,1973 + + + + + + 367 + 1 + Records,Newspaper Clippings, Sorted by Topic, Agriculture 1973,1973 + + + + + + 367 + 2 + Records,Newspaper Clippings, Sorted by Topic, Communications 1973,1973 + + + + + + 367 + 3 + Records,Newspaper Clippings, Sorted by Topic, Consumer 1973,1973 + + + + + + 367 + 4 + Records,Newspaper Clippings, Sorted by Topic, Defense 1973,1973 + + + + + + 367 + 5 + Records,Newspaper Clippings, Sorted by Topic, Economy 1973,1973 + + + + + + 367 + 6 + Records,Newspaper Clippings, Sorted by Topic, Education (General) 1973,1973 + + + + + + 367 + 7 + Records,Newspaper Clippings, Sorted by Topic, Education (Busing) 1973,1973 + + + + + + 367 + 8 + Records,Newspaper Clippings, Sorted by Topic, Energy 1973,1973 + + + + + + 367 + 9 + Records,Newspaper Clippings, Sorted by Topic, Environment 1973,1973 + + + + + + 367 + 10 + Records,Newspaper Clippings, Sorted by Topic, Foreign Relations 1973,1973 + + + + + + 367 + 11 + Records,Newspaper Clippings, Sorted by Topic, Foreign Relations 1973,1973 + + + + + + 367 + 12 + Records,Newspaper Clippings, Sorted by Topic, Government 1973,1973 + + + + + + 367 + 13 + Records,Newspaper Clippings, Sorted by Topic, Government 1973,1973 + + + + + + 367 + 14 + Records,Newspaper Clippings, Sorted by Topic, Government 1973,1973 + + + + + + 367 + 15 + Records,Newspaper Clippings, Sorted by Topic, Government 1973,1973 + + + + + + 367 + 16 + Records,Newspaper Clippings, Sorted by Topic, Government 1973,1973 + + + + + + 367 + 17 + Records,Newspaper Clippings, Sorted by Topic, Government 1973,1973 + + + + + + 367 + 18 + Records,Newspaper Clippings, Sorted by Topic, Government 1973,1973 + + + + + + 367 + 19 + Records,Newspaper Clippings, Sorted by Topic, Health 1973,1973 + + + + + + 367 + 20 + Records,Newspaper Clippings, Sorted by Topic, Housing 1973,1973 + + + + + + 367 + 21 + Records,Newspaper Clippings, Sorted by Topic, Labor 1973,1973 + + + + + + 367 + 22 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement 1973,1973 + + + + + + 367 + 23 + Records,Newspaper Clippings, Sorted by Topic, Transportation 1973,1973 + + + + + + 367 + 24 + Records,Newspaper Clippings, Sorted by Topic, Welfare 1973,1973 + + + + + + 367 + 25 + Records,Newspaper Clippings, Sorted by Date, Jan.-June 1974, 7 folders,1974 + + + + + + 367 + 26 + Records,Newspaper Clippings, Sorted by Date, Jan.-June 1974, 7 folders,1974 + + + + + + 367 + 27 + Records,Newspaper Clippings, Sorted by Date, Jan.-June 1974, 7 folders,1974 + + + + + + 367 + 28 + Records,Newspaper Clippings, Sorted by Date, Jan.-June 1974, 7 folders,1974 + + + + + + 367 + 29 + Records,Newspaper Clippings, Sorted by Date, Jan.-June 1974, 7 folders,1974 + + + + + + 367 + 30 + Records,Newspaper Clippings, Sorted by Date, Jan.-June 1974, 7 folders,1974 + + + + + + 367 + 31 + Records,Newspaper Clippings, Sorted by Date, Jan.-June 1974, 7 folders,1974 + + + + + + 368 + 1 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1974, 17 folders,1974 + + + + + + 368 + 2 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1974, 17 folders,1974 + + + + + + 368 + 3 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1974, 17 folders,1974 + + + + + + 368 + 4 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1974, 17 folders,1974 + + + + + + 368 + 5 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1974, 17 folders,1974 + + + + + + 368 + 6 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1974, 17 folders,1974 + + + + + + 368 + 7 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1974, 17 folders,1974 + + + + + + 368 + 8 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1974, 17 folders,1974 + + + + + + 368 + 9 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1974, 17 folders,1974 + + + + + + 368 + 10 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1974, 17 folders,1974 + + + + + + 368 + 11 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1974, 17 folders,1974 + + + + + + 368 + 12 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1974, 17 folders,1974 + + + + + + 368 + 13 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1974, 17 folders,1974 + + + + + + 368 + 14 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1974, 17 folders,1974 + + + + + + 368 + 15 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1974, 17 folders,1974 + + + + + + 368 + 16 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1974, 17 folders,1974 + + + + + + 368 + 17 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1974, 17 folders,1974 + + + + + + 368 + 18 + Records,Newspaper Clippings, Sorted by Topic, Agriculture/MI Wine Growers 1974,1974 + + + + + + 368 + 19 + Records,Newspaper Clippings, Sorted by Topic, Agriculture/General 1974,1974 + + + + + + 368 + 20 + Records,Newspaper Clippings, Sorted by Topic, Agriculture/Fertilizer Supply 1974,1974 + + + + + + 368 + 21 + Records,Newspaper Clippings, Sorted by Topic, Communication 1974,1974 + + + + + + 368 + 22 + Records,Newspaper Clippings, Sorted by Topic, Consumers/General 1974,1974 + + + + + + 368 + 23 + Records,Newspaper Clippings, Sorted by Topic, Consumers/RPG's Consumer Controversies Resolution Act 1974,1974 + + + + + + 368 + 24 + Records,Newspaper Clippings, Sorted by Topic, Consumers/Consumer Protection Agency 1974,1974 + + + + + + 368 + 25 + Records,Newspaper Clippings, Sorted by Topic, Defense/Ford Amnesty Plan 1974,1974 + + + + + + 368 + 26 + Records,Newspaper Clippings, Sorted by Topic, Defense/MI Contracts 1974,1974 + + + + + + 368 + 27 + Records,Newspaper Clippings, Sorted by Topic, Defense/Ford Veto of Vet's Bill Defense/Armory Rental 1974,1974 + + + + + + 368 + 28 + Records,Newspaper Clippings, Sorted by Topic, Defense/Misc. 1974,1974 + + + + + + 368 + 29 + Records,Newspaper Clippings, Sorted by Topic, Defense/Academy Nominations 1974,1974 + + + + + + 368 + 30 + Records,Newspaper Clippings, Sorted by Topic, Economy/Tax Cuts 1974,1974 + + + + + + 368 + 31 + Records,Newspaper Clippings, Sorted by Topic, Economy/Federal Pay Raise Economy/General 1974,1974 + + + + + + 368 + 32 + Records,Newspaper Clippings, Sorted by Topic, Economy/Wage-Price Control 1974,1974 + + + + + + 368 + 33 + Records,Newspaper Clippings, Sorted by Topic, Education/Busing 1974,1974 + + + + + + 368 + 34 + Records,Newspaper Clippings, Sorted by Topic, Education/Parochial 1974,1974 + + + + + + 368 + 35 + Records,Newspaper Clippings, Sorted by Topic, Education/General 1974,1974 + + + + + + 368 + 36 + Records,Newspaper Clippings, Sorted by Topic, Environment 1974,1974 + + + + + + 369 + 1 + Records,Newspaper Clippings, Sorted by Topic, Foreign Relations 1974,1974 + + + + + + 369 + 2 + Records,Newspaper Clippings, Sorted by Topic, Government 1974,1974 + + + + + + 369 + 3 + Records,Newspaper Clippings, Sorted by Topic, Government 1974,1974 + + + + + + 369 + 4 + Records,Newspaper Clippings, Sorted by Topic, Government 1974,1974 + + + + + + 369 + 5 + Records,Newspaper Clippings, Sorted by Topic, Government: Campaign Michigan 1974,1974 + + + + + + 369 + 6 + Records,Newspaper Clippings, Sorted by Topic, Government: Campaign Michigan 1974,1974 + + + + + + 369 + 7 + Records,Newspaper Clippings, Sorted by Topic, Government: Campaign Michigan 1974,1974 + + + + + + 369 + 8 + Records,Newspaper Clippings, Sorted by Topic, Government, Campaign Reform 1974,1974 + + + + + + 369 + 9 + Records,Newspaper Clippings, Sorted by Topic, Government, Miscellaneous 1974,1974 + + + + + + 369 + 10 + Records,Newspaper Clippings, Sorted by Topic, Government, Watergate, 1/11/74-76,1974 + + + + + + 369 + 11 + Records,Newspaper Clippings, Sorted by Topic, Government, Watergate, 1/11/74-76,1974 + + + + + + 369 + 12 + Records,Newspaper Clippings, Sorted by Topic, Government, Watergate, 1/11/74-76,1974 + + + + + + 369 + 13 + Records,Newspaper Clippings, Sorted by Topic, Government, Watergate, 1/11/74-76,1974 + + + + + + 369 + 14 + Records,Newspaper Clippings, Sorted by Topic, Government, Watergate, 1/11/74-76,1974 + + + + + + 369 + 15 + Records,Newspaper Clippings, Sorted by Topic, Government, Watergate, 1/11/74-76,1974 + + + + + + 369 + 16 + Records,Newspaper Clippings, Sorted by Topic, Health 1974,1974 + + + + + + 369 + 17 + Records,Newspaper Clippings, Sorted by Topic, Housing 1974,1974 + + + + + + 369 + 18 + Records,Newspaper Clippings, Sorted by Topic, Labor 1974,1974 + + + + + + 369 + 19 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement 1974,1974 + + + + + + 369 + 20 + Records,Newspaper Clippings, Sorted by Topic, Transportation 1974,1974 + + + + + + 369 + 21 + Records,Newspaper Clippings, Sorted by Topic, Transportation 1974,1974 + + + + + + 370 + 1 + Records,Newspaper Clippings, Sorted by Date, Jan.-Jul. 1975, 12 folders,1975 + + + + + + 370 + 2 + Records,Newspaper Clippings, Sorted by Date, Jan.-Jul. 1975, 12 folders,1975 + + + + + + 370 + 3 + Records,Newspaper Clippings, Sorted by Date, Jan.-Jul. 1975, 12 folders,1975 + + + + + + 370 + 4 + Records,Newspaper Clippings, Sorted by Date, Jan.-Jul. 1975, 12 folders,1975 + + + + + + 370 + 5 + Records,Newspaper Clippings, Sorted by Date, Jan.-Jul. 1975, 12 folders,1975 + + + + + + 370 + 6 + Records,Newspaper Clippings, Sorted by Date, Jan.-Jul. 1975, 12 folders,1975 + + + + + + 370 + 7 + Records,Newspaper Clippings, Sorted by Date, Jan.-Jul. 1975, 12 folders,1975 + + + + + + 370 + 8 + Records,Newspaper Clippings, Sorted by Date, Jan.-Jul. 1975, 12 folders,1975 + + + + + + 370 + 9 + Records,Newspaper Clippings, Sorted by Date, Jan.-Jul. 1975, 12 folders,1975 + + + + + + 370 + 10 + Records,Newspaper Clippings, Sorted by Date, Jan.-Jul. 1975, 12 folders,1975 + + + + + + 370 + 11 + Records,Newspaper Clippings, Sorted by Date, Jan.-Jul. 1975, 12 folders,1975 + + + + + + 370 + 12 + Records,Newspaper Clippings, Sorted by Date, Jan.-Jul. 1975, 12 folders,1975 + + + + + + 370 + 13 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1975, 16 folders,1975 + + + + + + 370 + 14 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1975, 16 folders,1975 + + + + + + 370 + 15 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1975, 16 folders,1975 + + + + + + 370 + 16 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1975, 16 folders,1975 + + + + + + 370 + 17 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1975, 16 folders,1975 + + + + + + 370 + 18 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1975, 16 folders,1975 + + + + + + 370 + 19 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1975, 16 folders,1975 + + + + + + 370 + 20 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1975, 16 folders,1975 + + + + + + 370 + 21 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1975, 16 folders,1975 + + + + + + 370 + 22 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1975, 16 folders,1975 + + + + + + 370 + 23 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1975, 16 folders,1975 + + + + + + 370 + 24 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1975, 16 folders,1975 + + + + + + 370 + 25 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1975, 16 folders,1975 + + + + + + 370 + 26 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1975, 16 folders,1975 + + + + + + 370 + 27 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1975, 16 folders,1975 + + + + + + 370 + 28 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1975, 16 folders,1975 + + + + + + 371 + 1 + Records,Newspaper Clippings, Sorted by Topic, Agriculture 1975,1975 + + + + + + 371 + 2 + Records,Newspaper Clippings, Sorted by Topic, Communications 1975,1975 + + + + + + 371 + 3 + Records,Newspaper Clippings, Sorted by Topic, Consumers 1975,1975 + + + + + + 371 + 4 + Records,Newspaper Clippings, Sorted by Topic, Defense 1975,1975 + + + + + + 371 + 5 + Records,Newspaper Clippings, Sorted by Topic, Economy 1975,1975 + + + + + + 371 + 6 + Records,Newspaper Clippings, Sorted by Topic, Education 1975,1975 + + + + + + 371 + 7 + Records,Newspaper Clippings, Sorted by Topic, Energy 1975,1975 + + + + + + 371 + 8 + Records,Newspaper Clippings, Sorted by Topic, Environment 1975,1975 + + + + + + 371 + 9 + Records,Newspaper Clippings, Sorted by Topic, Foreign Relations 1975,1975 + + + + + + 371 + 10 + Records,Newspaper Clippings, Sorted by Topic, Foreign Relations 1975,1975 + + + + + + 371 + 11 + Records,Newspaper Clippings, Sorted by Topic, Government 1975,1975 + + + + + + 371 + 12 + Records,Newspaper Clippings, Sorted by Topic, Government 1975,1975 + + + + + + 371 + 13 + Records,Newspaper Clippings, Sorted by Topic, Government 1975,1975 + + + + + + 371 + 14 + Records,Newspaper Clippings, Sorted by Topic, Government 1975,1975 + + + + + + 371 + 15 + Records,Newspaper Clippings, Sorted by Topic, Government 1975,1975 + + + + + + 371 + 16 + Records,Newspaper Clippings, Sorted by Topic, Government 1975,1975 + + + + + + 371 + 17 + Records,Newspaper Clippings, Sorted by Topic, Government 1975,1975 + + + + + + 371 + 18 + Records,Newspaper Clippings, Sorted by Topic, Government 1975,1975 + + + + + + 371 + 19 + Records,Newspaper Clippings, Sorted by Topic, Government 1975,1975 + + + + + + 371 + 20 + Records,Newspaper Clippings, Sorted by Topic, Government 1975,1975 + + + + + + 371 + 21 + Records,Newspaper Clippings, Sorted by Topic, Government 1975,1975 + + + + + + 371 + 22 + Records,Newspaper Clippings, Sorted by Topic, Government 1975,1975 + + + + + + 371 + 23 + Records,Newspaper Clippings, Sorted by Topic, Government 1975,1975 + + + + + + 371 + 24 + Records,Newspaper Clippings, Sorted by Topic, Government 1975,1975 + + + + + + 371 + 25 + Records,Newspaper Clippings, Sorted by Topic, Government 1975,1975 + + + + + + 371 + 26 + Records,Newspaper Clippings, Sorted by Topic, Health 1975,1975 + + + + + + 371 + 27 + Records,Newspaper Clippings, Sorted by Topic, Housing 1975,1975 + + + + + + 371 + 28 + Records,Newspaper Clippings, Sorted by Topic, Labor 1975,1975 + + + + + + 371 + 29 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement 1975,1975 + + + + + + 371 + 30 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement 1975,1975 + + + + + + 371 + 31 + Records,Newspaper Clippings, Sorted by Topic, Transportation 1975,1975 + + + + + + 371 + 32 + Records,Newspaper Clippings, Sorted by Topic, Transportation 1975,1975 + + + + + + 371 + 33 + Records,Newspaper Clippings, Sorted by Topic, Transportation 1975,1975 + + + + + + 371 + 34 + Records,Newspaper Clippings, Sorted by Topic, Welfare 1975,1975 + + + + + + 372 + 1 + Records,Newspaper Clippings, Sorted by Date, Jan.-Jul. 8,1976, 13 folders,1976 + + + + + + 372 + 2 + Records,Newspaper Clippings, Sorted by Date, Jan.-Jul. 8,1976, 13 folders,1976 + + + + + + 372 + 3 + Records,Newspaper Clippings, Sorted by Date, Jan.-Jul. 8,1976, 13 folders,1976 + + + + + + 372 + 4 + Records,Newspaper Clippings, Sorted by Date, Jan.-Jul. 8,1976, 13 folders,1976 + + + + + + 372 + 5 + Records,Newspaper Clippings, Sorted by Date, Jan.-Jul. 8,1976, 13 folders,1976 + + + + + + 372 + 6 + Records,Newspaper Clippings, Sorted by Date, Jan.-Jul. 8,1976, 13 folders,1976 + + + + + + 372 + 7 + Records,Newspaper Clippings, Sorted by Date, Jan.-Jul. 8,1976, 13 folders,1976 + + + + + + 372 + 8 + Records,Newspaper Clippings, Sorted by Date, Jan.-Jul. 8,1976, 13 folders,1976 + + + + + + 372 + 9 + Records,Newspaper Clippings, Sorted by Date, Jan.-Jul. 8,1976, 13 folders,1976 + + + + + + 372 + 10 + Records,Newspaper Clippings, Sorted by Date, Jan.-Jul. 8,1976, 13 folders,1976 + + + + + + 372 + 11 + Records,Newspaper Clippings, Sorted by Date, Jan.-Jul. 8,1976, 13 folders,1976 + + + + + + 372 + 12 + Records,Newspaper Clippings, Sorted by Date, Jan.-Jul. 8,1976, 13 folders,1976 + + + + + + 372 + 13 + Records,Newspaper Clippings, Sorted by Date, Jan.-Jul. 8,1976, 13 folders,1976 + + + + + + 372 + 14 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1976, 19 folders,1976 + + + + + + 372 + 15 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1976, 19 folders,1976 + + + + + + 372 + 16 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1976, 19 folders,1976 + + + + + + 372 + 17 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1976, 19 folders,1976 + + + + + + 372 + 18 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1976, 19 folders,1976 + + + + + + 372 + 19 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1976, 19 folders,1976 + + + + + + 372 + 20 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1976, 19 folders,1976 + + + + + + 372 + 21 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1976, 19 folders,1976 + + + + + + 372 + 22 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1976, 19 folders,1976 + + + + + + 372 + 23 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1976, 19 folders,1976 + + + + + + 372 + 24 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1976, 19 folders,1976 + + + + + + 372 + 25 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1976, 19 folders,1976 + + + + + + 372 + 26 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1976, 19 folders,1976 + + + + + + 372 + 27 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1976, 19 folders,1976 + + + + + + 372 + 28 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1976, 19 folders,1976 + + + + + + 372 + 29 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1976, 19 folders,1976 + + + + + + 372 + 30 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1976, 19 folders,1976 + + + + + + 372 + 31 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1976, 19 folders,1976 + + + + + + 372 + 32 + Records,Newspaper Clippings, Sorted by Date, Jul.-Dec. 1976, 19 folders,1976 + + + + + + 372 + 33 + Records,Newspaper Clippings, Sorted by Topic, Consumers Jan.-Jul. 1975,1975 + + + + + + 372 + 34 + Records,Newspaper Clippings, Sorted by Topic, Defense Jan.-Jul. 1975,1975 + + + + + + 372 + 35 + Records,Newspaper Clippings, Sorted by Topic, Economy Jan.-Jul. 1975,1975 + + + + + + 372 + 36 + Records,Newspaper Clippings, Sorted by Topic, Environment Jan.-Jul. 1975,1975 + + + + + + 372 + 37 + Records,Newspaper Clippings, Sorted by Topic, Foreign Policy Jan.-Jul. 1975,1975 + + + + + + 372 + 38 + Records,Newspaper Clippings, Sorted by Topic, Government, Campaign Jan.-Jul. 1975,1975 + + + + + + 372 + 39 + Records,Newspaper Clippings, Sorted by Topic, Government, Campaign Jan.-Jul. 1975,1975 + + + + + + 372 + 40 + Records,Newspaper Clippings, Sorted by Topic, Government, Campaign Jan.-Jul. 1975,1975 + + + + + + 372 + 41 + Records,Newspaper Clippings, Sorted by Topic, Government, Campaign Jan.-Jul. 1975,1975 + + + + + + 372 + 42 + Records,Newspaper Clippings, Sorted by Topic, Government Jan.-Jul. 1975,1975 + + + + + + 372 + 43 + Records,Newspaper Clippings, Sorted by Topic, Government Jan.-Jul. 1975,1975 + + + + + + 372 + 44 + Records,Newspaper Clippings, Sorted by Topic, Government Jan.-Jul. 1975,1975 + + + + + + 372 + 45 + Records,Newspaper Clippings, Sorted by Topic, Government Jan.-Jul. 1975,1975 + + + + + + 372 + 46 + Records,Newspaper Clippings, Sorted by Topic, Government Jan.-Jul. 1975,1975 + + + + + + 372 + 47 + Records,Newspaper Clippings, Sorted by Topic, Government Jan.-Jul. 1975,1975 + + + + + + 373 + 1 + Records,Newspaper Clippings, Sorted by Topic, Government 1976,1976 + + + + + + 373 + 2 + Records,Newspaper Clippings, Sorted by Topic, Government 1976,1976 + + + + + + 373 + 3 + Records,Newspaper Clippings, Sorted by Topic, Government 1976,1976 + + + + + + 373 + 4 + Records,Newspaper Clippings, Sorted by Topic, Government 1976,1976 + + + + + + 373 + 5 + Records,Newspaper Clippings, Sorted by Topic, Government 1976,1976 + + + + + + 373 + 6 + Records,Newspaper Clippings, Sorted by Topic, Government 1976,1976 + + + + + + 373 + 7 + Records,Newspaper Clippings, Sorted by Topic, Government 1976,1976 + + + + + + 373 + 8 + Records,Newspaper Clippings, Sorted by Topic, Government 1976,1976 + + + + + + 373 + 9 + Records,Newspaper Clippings, Sorted by Topic, Health 1976,1976 + + + + + + 373 + 10 + Records,Newspaper Clippings, Sorted by Topic, Housing 1976,1976 + + + + + + 373 + 11 + Records,Newspaper Clippings, Sorted by Topic, Labor 1976,1976 + + + + + + 373 + 12 + Records,Newspaper Clippings, Sorted by Topic, Labor 1976,1976 + + + + + + 373 + 13 + Records,Newspaper Clippings, Sorted by Topic, Labor 1976,1976 + + + + + + 373 + 14 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement 1976,1976 + + + + + + 373 + 15 + Records,Newspaper Clippings, Sorted by Topic, Transportation 1976,1976 + + + + + + 373 + 16 + Records,Newspaper Clippings, Sorted by Topic, Welfare 1976,1976 + + + + + + 373 + 17 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 1977, 17 folders,1977 + + + + + + 373 + 18 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 1977, 17 folders,1977 + + + + + + 373 + 19 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 1977, 17 folders,1977 + + + + + + 373 + 20 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 1977, 17 folders,1977 + + + + + + 373 + 21 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 1977, 17 folders,1977 + + + + + + 373 + 22 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 1977, 17 folders,1977 + + + + + + 373 + 23 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 1977, 17 folders,1977 + + + + + + 373 + 24 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 1977, 17 folders,1977 + + + + + + 373 + 25 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 1977, 17 folders,1977 + + + + + + 373 + 26 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 1977, 17 folders,1977 + + + + + + 373 + 27 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 1977, 17 folders,1977 + + + + + + 373 + 28 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 1977, 17 folders,1977 + + + + + + 373 + 29 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 1977, 17 folders,1977 + + + + + + 373 + 30 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 1977, 17 folders,1977 + + + + + + 373 + 31 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 1977, 17 folders,1977 + + + + + + 373 + 32 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 1977, 17 folders,1977 + + + + + + 373 + 33 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 1977, 17 folders,1977 + + + + + + 374 + 1 + Records,Newspaper Clippings, Sorted by Date, May-Dec. 1977, 17 folders,1977 + + + + + + 374 + 2 + Records,Newspaper Clippings, Sorted by Date, May-Dec. 1977, 17 folders,1977 + + + + + + 374 + 3 + Records,Newspaper Clippings, Sorted by Date, May-Dec. 1977, 17 folders,1977 + + + + + + 374 + 4 + Records,Newspaper Clippings, Sorted by Date, May-Dec. 1977, 17 folders,1977 + + + + + + 374 + 5 + Records,Newspaper Clippings, Sorted by Date, May-Dec. 1977, 17 folders,1977 + + + + + + 374 + 6 + Records,Newspaper Clippings, Sorted by Date, May-Dec. 1977, 17 folders,1977 + + + + + + 374 + 7 + Records,Newspaper Clippings, Sorted by Date, May-Dec. 1977, 17 folders,1977 + + + + + + 374 + 8 + Records,Newspaper Clippings, Sorted by Date, May-Dec. 1977, 17 folders,1977 + + + + + + 374 + 9 + Records,Newspaper Clippings, Sorted by Date, May-Dec. 1977, 17 folders,1977 + + + + + + 374 + 10 + Records,Newspaper Clippings, Sorted by Date, May-Dec. 1977, 17 folders,1977 + + + + + + 374 + 11 + Records,Newspaper Clippings, Sorted by Date, May-Dec. 1977, 17 folders,1977 + + + + + + 374 + 12 + Records,Newspaper Clippings, Sorted by Date, May-Dec. 1977, 17 folders,1977 + + + + + + 374 + 13 + Records,Newspaper Clippings, Sorted by Date, May-Dec. 1977, 17 folders,1977 + + + + + + 374 + 14 + Records,Newspaper Clippings, Sorted by Date, May-Dec. 1977, 17 folders,1977 + + + + + + 374 + 15 + Records,Newspaper Clippings, Sorted by Date, May-Dec. 1977, 17 folders,1977 + + + + + + 374 + 16 + Records,Newspaper Clippings, Sorted by Date, May-Dec. 1977, 17 folders,1977 + + + + + + 374 + 17 + Records,Newspaper Clippings, Sorted by Date, May-Dec. 1977, 17 folders,1977 + + + + + + 374 + 18 + Records,Newspaper Clippings, Sorted by Topic, Agriculture 1977,1977 + + + + + + 374 + 19 + Records,Newspaper Clippings, Sorted by Topic, Agriculture 1977,1977 + + + + + + 374 + 20 + Records,Newspaper Clippings, Sorted by Topic, Consumers 1977,1977 + + + + + + 374 + 21 + Records,Newspaper Clippings, Sorted by Topic, Communications 1977,1977 + + + + + + 374 + 22 + Records,Newspaper Clippings, Sorted by Topic, Defense 1977,1977 + + + + + + 374 + 23 + Records,Newspaper Clippings, Sorted by Topic, Economy 1977,1977 + + + + + + 374 + 24 + Records,Newspaper Clippings, Sorted by Topic, Education 1977,1977 + + + + + + 374 + 25 + Records,Newspaper Clippings, Sorted by Topic, Energy 1977,1977 + + + + + + 374 + 26 + Records,Newspaper Clippings, Sorted by Topic, Environment 1977,1977 + + + + + + 374 + 27 + Records,Newspaper Clippings, Sorted by Topic, Environment 1977,1977 + + + + + + 375 + 1 + Records,Newspaper Clippings, Sorted by Topic, Foreign Relations 1977,1977 + + + + + + 375 + 2 + Records,Newspaper Clippings, Sorted by Topic, Government 1977,1977 + + + + + + 375 + 3 + Records,Newspaper Clippings, Sorted by Topic, Government 1977,1977 + + + + + + 375 + 4 + Records,Newspaper Clippings, Sorted by Topic, Government 1977,1977 + + + + + + 375 + 5 + Records,Newspaper Clippings, Sorted by Topic, Government 1977,1977 + + + + + + 375 + 6 + Records,Newspaper Clippings, Sorted by Topic, Government 1977,1977 + + + + + + 375 + 7 + Records,Newspaper Clippings, Sorted by Topic, Government 1977,1977 + + + + + + 375 + 8 + Records,Newspaper Clippings, Sorted by Topic, Government 1977,1977 + + + + + + 375 + 9 + Records,Newspaper Clippings, Sorted by Topic, Government 1977,1977 + + + + + + 375 + 10 + Records,Newspaper Clippings, Sorted by Topic, Government 1977,1977 + + + + + + 375 + 11 + Records,Newspaper Clippings, Sorted by Topic, Government 1977,1977 + + + + + + 375 + 12 + Records,Newspaper Clippings, Sorted by Topic, Government 1977,1977 + + + + + + 375 + 13 + Records,Newspaper Clippings, Sorted by Topic, Government 1977,1977 + + + + + + 375 + 14 + Records,Newspaper Clippings, Sorted by Topic, Government 1977,1977 + + + + + + 375 + 15 + Records,Newspaper Clippings, Sorted by Topic, Government 1977,1977 + + + + + + 375 + 16 + Records,Newspaper Clippings, Sorted by Topic, Government 1977,1977 + + + + + + 375 + 17 + Records,Newspaper Clippings, Sorted by Topic, Government 1977,1977 + + + + + + 375 + 18 + Records,Newspaper Clippings, Sorted by Topic, Government 1977,1977 + + + + + + 375 + 19 + Records,Newspaper Clippings, Sorted by Topic, Health 1977,1977 + + + + + + 375 + 20 + Records,Newspaper Clippings, Sorted by Topic, Housing 1977,1977 + + + + + + 375 + 21 + Records,Newspaper Clippings, Sorted by Topic, Labor 1977,1977 + + + + + + 375 + 22 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement 1977,1977 + + + + + + 375 + 23 + Records,Newspaper Clippings, Sorted by Topic, Transportation 1977,1977 + + + + + + 375 + 24 + Records,Newspaper Clippings, Sorted by Topic, Welfare 1977,1977 + + + + + + 376 + 1 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 17, 1978, 15 folders,1978 + + + + + + 376 + 2 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 17, 1978, 15 folders,1978 + + + + + + 376 + 3 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 17, 1978, 15 folders,1978 + + + + + + 376 + 4 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 17, 1978, 15 folders,1978 + + + + + + 376 + 5 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 17, 1978, 15 folders,1978 + + + + + + 376 + 6 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 17, 1978, 15 folders,1978 + + + + + + 376 + 7 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 17, 1978, 15 folders,1978 + + + + + + 376 + 8 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 17, 1978, 15 folders,1978 + + + + + + 376 + 9 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 17, 1978, 15 folders,1978 + + + + + + 376 + 10 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 17, 1978, 15 folders,1978 + + + + + + 376 + 11 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 17, 1978, 15 folders,1978 + + + + + + 376 + 12 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 17, 1978, 15 folders,1978 + + + + + + 376 + 13 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 17, 1978, 15 folders,1978 + + + + + + 376 + 14 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 17, 1978, 15 folders,1978 + + + + + + 376 + 15 + Records,Newspaper Clippings, Sorted by Date, Jan.-May 17, 1978, 15 folders,1978 + + + + + + 376 + 16 + Records,Newspaper Clippings, Sorted by Date, May 18-June 1978, 7 folders,1978 + + + + + + 376 + 17 + Records,Newspaper Clippings, Sorted by Date, May 18-June 1978, 7 folders,1978 + + + + + + 376 + 18 + Records,Newspaper Clippings, Sorted by Date, May 18-June 1978, 7 folders,1978 + + + + + + 376 + 19 + Records,Newspaper Clippings, Sorted by Date, May 18-June 1978, 7 folders,1978 + + + + + + 376 + 20 + Records,Newspaper Clippings, Sorted by Date, May 18-June 1978, 7 folders,1978 + + + + + + 376 + 21 + Records,Newspaper Clippings, Sorted by Date, May 18-June 1978, 7 folders,1978 + + + + + + 376 + 22 + Records,Newspaper Clippings, Sorted by Date, May 18-June 1978, 7 folders,1978 + + + + + + 377 + 1 + Records,Newspaper Clippings, Sorted by Date, July-Aug. 12, 1978, 9 folders,1978 + + + + + + 377 + 2 + Records,Newspaper Clippings, Sorted by Date, July-Aug. 12, 1978, 9 folders,1978 + + + + + + 377 + 3 + Records,Newspaper Clippings, Sorted by Date, July-Aug. 12, 1978, 9 folders,1978 + + + + + + 377 + 4 + Records,Newspaper Clippings, Sorted by Date, July-Aug. 12, 1978, 9 folders,1978 + + + + + + 377 + 5 + Records,Newspaper Clippings, Sorted by Date, July-Aug. 12, 1978, 9 folders,1978 + + + + + + 377 + 6 + Records,Newspaper Clippings, Sorted by Date, July-Aug. 12, 1978, 9 folders,1978 + + + + + + 377 + 7 + Records,Newspaper Clippings, Sorted by Date, July-Aug. 12, 1978, 9 folders,1978 + + + + + + 377 + 8 + Records,Newspaper Clippings, Sorted by Date, July-Aug. 12, 1978, 9 folders,1978 + + + + + + 377 + 9 + Records,Newspaper Clippings, Sorted by Date, July-Aug. 12, 1978, 9 folders,1978 + + + + + + 377 + 10 + Records,Newspaper Clippings, Sorted by Date, Aug.-Oct. 1978, 15 folders,1978 + + + + + + 377 + 11 + Records,Newspaper Clippings, Sorted by Date, Aug.-Oct. 1978, 15 folders,1978 + + + + + + 377 + 12 + Records,Newspaper Clippings, Sorted by Date, Aug.-Oct. 1978, 15 folders,1978 + + + + + + 377 + 13 + Records,Newspaper Clippings, Sorted by Date, Aug.-Oct. 1978, 15 folders,1978 + + + + + + 377 + 14 + Records,Newspaper Clippings, Sorted by Date, Aug.-Oct. 1978, 15 folders,1978 + + + + + + 377 + 15 + Records,Newspaper Clippings, Sorted by Date, Aug.-Oct. 1978, 15 folders,1978 + + + + + + 377 + 16 + Records,Newspaper Clippings, Sorted by Date, Aug.-Oct. 1978, 15 folders,1978 + + + + + + 377 + 17 + Records,Newspaper Clippings, Sorted by Date, Aug.-Oct. 1978, 15 folders,1978 + + + + + + 377 + 18 + Records,Newspaper Clippings, Sorted by Date, Aug.-Oct. 1978, 15 folders,1978 + + + + + + 377 + 19 + Records,Newspaper Clippings, Sorted by Date, Aug.-Oct. 1978, 15 folders,1978 + + + + + + 377 + 20 + Records,Newspaper Clippings, Sorted by Date, Aug.-Oct. 1978, 15 folders,1978 + + + + + + 377 + 21 + Records,Newspaper Clippings, Sorted by Date, Aug.-Oct. 1978, 15 folders,1978 + + + + + + 377 + 22 + Records,Newspaper Clippings, Sorted by Date, Aug.-Oct. 1978, 15 folders,1978 + + + + + + 377 + 23 + Records,Newspaper Clippings, Sorted by Date, Aug.-Oct. 1978, 15 folders,1978 + + + + + + 377 + 24 + Records,Newspaper Clippings, Sorted by Date, Aug.-Oct. 1978, 15 folders,1978 + + + + + + 378 + 1 + Records,Newspaper Clippings, Sorted by Date, Oct.-Dec. 1978, 15 folders,1978 + + + + + + 378 + 2 + Records,Newspaper Clippings, Sorted by Date, Oct.-Dec. 1978, 15 folders,1978 + + + + + + 378 + 3 + Records,Newspaper Clippings, Sorted by Date, Oct.-Dec. 1978, 15 folders,1978 + + + + + + 378 + 4 + Records,Newspaper Clippings, Sorted by Date, Oct.-Dec. 1978, 15 folders,1978 + + + + + + 378 + 5 + Records,Newspaper Clippings, Sorted by Date, Oct.-Dec. 1978, 15 folders,1978 + + + + + + 378 + 6 + Records,Newspaper Clippings, Sorted by Date, Oct.-Dec. 1978, 15 folders,1978 + + + + + + 378 + 7 + Records,Newspaper Clippings, Sorted by Date, Oct.-Dec. 1978, 15 folders,1978 + + + + + + 378 + 8 + Records,Newspaper Clippings, Sorted by Date, Oct.-Dec. 1978, 15 folders,1978 + + + + + + 378 + 9 + Records,Newspaper Clippings, Sorted by Date, Oct.-Dec. 1978, 15 folders,1978 + + + + + + 378 + 10 + Records,Newspaper Clippings, Sorted by Date, Oct.-Dec. 1978, 15 folders,1978 + + + + + + 378 + 11 + Records,Newspaper Clippings, Sorted by Date, Oct.-Dec. 1978, 15 folders,1978 + + + + + + 378 + 12 + Records,Newspaper Clippings, Sorted by Date, Oct.-Dec. 1978, 15 folders,1978 + + + + + + 378 + 13 + Records,Newspaper Clippings, Sorted by Date, Oct.-Dec. 1978, 15 folders,1978 + + + + + + 378 + 14 + Records,Newspaper Clippings, Sorted by Date, Oct.-Dec. 1978, 15 folders,1978 + + + + + + 378 + 15 + Records,Newspaper Clippings, Sorted by Date, Oct.-Dec. 1978, 15 folders,1978 + + + + + + 378 + 16 + Records,Newspaper Clippings, Sorted by Topic, Agriculture 1978,1978 + + + + + + 378 + 17 + Records,Newspaper Clippings, Sorted by Topic, Communications 1978,1978 + + + + + + 378 + 18 + Records,Newspaper Clippings, Sorted by Topic, Consumers 1978,1978 + + + + + + 378 + 19 + Records,Newspaper Clippings, Sorted by Topic, Defense 1978,1978 + + + + + + 378 + 20 + Records,Newspaper Clippings, Sorted by Topic, Economy 1978,1978 + + + + + + 378 + 21 + Records,Newspaper Clippings, Sorted by Topic, Economy 1978,1978 + + + + + + 378 + 22 + Records,Newspaper Clippings, Sorted by Topic, Education 1978,1978 + + + + + + 378 + 23 + Records,Newspaper Clippings, Sorted by Topic, Education 1978,1978 + + + + + + 378 + 24 + Records,Newspaper Clippings, Sorted by Topic, Energy 1978,1978 + + + + + + 378 + 25 + Records,Newspaper Clippings, Sorted by Topic, Environment 1978,1978 + + + + + + 378 + 26 + Records,Newspaper Clippings, Sorted by Topic, Foreign Relations 1978,1978 + + + + + + 378 + 27 + Records,Newspaper Clippings, Sorted by Topic, Foreign Relations 1978,1978 + + + + + + 378 + 28 + Records,Newspaper Clippings, Sorted by Topic, Foreign Relations 1978,1978 + + + + + + 379 + 1 + Records,Newspaper Clippings, Sorted by Topic, Health 1978,1978 + + + + + + 379 + 2 + Records,Newspaper Clippings, Sorted by Topic, Housing 1978,1978 + + + + + + 379 + 3 + Records,Newspaper Clippings, Sorted by Topic, Law Enforcement 1978,1978 + + + + + + 379 + 4 + Records,Newspaper Clippings, Sorted by Topic, Labor 1978,1978 + + + + + + 379 + 5 + Records,Newspaper Clippings, Sorted by Topic, Transportation 1978,1978 + + + + + + 379 + 6 + Records,Newspaper Clippings, Sorted by Topic, Welfare 1978,1978 + + + + + + 379 + 7 + Records,Newspaper Clippings, Sorted by Topic, Government 1978,1978 + + + + + + 379 + 8 + Records,Newspaper Clippings, Government, 6/11/78, 17 folders,1978 + + + + + + 379 + 9 + Records,Newspaper Clippings, Government, 6/11/78, 17 folders,1978 + + + + + + 379 + 10 + Records,Newspaper Clippings, Government, 6/11/78, 17 folders,1978 + + + + + + 379 + 11 + Records,Newspaper Clippings, Government, 6/11/78, 17 folders,1978 + + + + + + 379 + 12 + Records,Newspaper Clippings, Government, 6/11/78, 17 folders,1978 + + + + + + 379 + 13 + Records,Newspaper Clippings, Government, 6/11/78, 17 folders,1978 + + + + + + 379 + 14 + Records,Newspaper Clippings, Government, 6/11/78, 17 folders,1978 + + + + + + 379 + 15 + Records,Newspaper Clippings, Government, 6/11/78, 17 folders,1978 + + + + + + 379 + 16 + Records,Newspaper Clippings, Government, 6/11/78, 17 folders,1978 + + + + + + 379 + 17 + Records,Newspaper Clippings, Government, 6/11/78, 17 folders,1978 + + + + + + 379 + 18 + Records,Newspaper Clippings, Government, 6/11/78, 17 folders,1978 + + + + + + 379 + 19 + Records,Newspaper Clippings, Government, 6/11/78, 17 folders,1978 + + + + + + 379 + 20 + Records,Newspaper Clippings, Government, 6/11/78, 17 folders,1978 + + + + + + 379 + 21 + Records,Newspaper Clippings, Government, 6/11/78, 17 folders,1978 + + + + + + 379 + 22 + Records,Newspaper Clippings, Government, 6/11/78, 17 folders,1978 + + + + + + 379 + 23 + Records,Newspaper Clippings, Government, 6/11/78, 17 folders,1978 + + + + + + 379 + 24 + Records,Newspaper Clippings, Government, 6/11/78, 17 folders,1978 + + + + + + 380 + 1 + Records,Newspaper Clippings, Sorted by Topic, 1978, 15 folders,1978 + + + + + + 380 + 2 + Records,Newspaper Clippings, Sorted by Topic, 1978, 15 folders,1978 + + + + + + 380 + 3 + Records,Newspaper Clippings, Sorted by Topic, 1978, 15 folders,1978 + + + + + + 380 + 4 + Records,Newspaper Clippings, Sorted by Topic, 1978, 15 folders,1978 + + + + + + 380 + 5 + Records,Newspaper Clippings, Sorted by Topic, 1978, 15 folders,1978 + + + + + + 380 + 6 + Records,Newspaper Clippings, Sorted by Topic, 1978, 15 folders,1978 + + + + + + 380 + 7 + Records,Newspaper Clippings, Sorted by Topic, 1978, 15 folders,1978 + + + + + + 380 + 8 + Records,Newspaper Clippings, Sorted by Topic, 1978, 15 folders,1978 + + + + + + 380 + 9 + Records,Newspaper Clippings, Sorted by Topic, 1978, 15 folders,1978 + + + + + + 380 + 10 + Records,Newspaper Clippings, Sorted by Topic, 1978, 15 folders,1978 + + + + + + 380 + 11 + Records,Newspaper Clippings, Sorted by Topic, 1978, 15 folders,1978 + + + + + + 380 + 12 + Records,Newspaper Clippings, Sorted by Topic, 1978, 15 folders,1978 + + + + + + 380 + 13 + Records,Newspaper Clippings, Sorted by Topic, 1978, 15 folders,1978 + + + + + + 380 + 14 + Records,Newspaper Clippings, Sorted by Topic, 1978, 15 folders,1978 + + + + + + 380 + 15 + Records,Newspaper Clippings, Sorted by Topic, 1978, 15 folders,1978 + + + + + + 380 + 16 + Records,Government,undated + + + + + + 380 + 17 + Records,Newspaper Clippings, Sorted by Topic, 1978,1978 + + + + + + 380 + 18 + Records,Government, 8 folders,undated + + + + + + 380 + 19 + Records,Government, 8 folders,undated + + + + + + 380 + 20 + Records,Government, 8 folders,undated + + + + + + 380 + 21 + Records,Government, 8 folders,undated + + + + + + 380 + 22 + Records,Government, 8 folders,undated + + + + + + 380 + 23 + Records,Government, 8 folders,undated + + + + + + 380 + 24 + Records,Government, 8 folders,undated + + + + + + 380 + 25 + Records,Government, 8 folders,undated + + + + + + 381 + 1 + Records,Newspaper Clippings, Sorted by Topic, 1978,1978 + + + + + + 381 + 2 + Records,Government, 7 folders,1967-1973, 1978 + + + + + + 381 + 3 + Records,Government, 7 folders,1967-1973, 1978 + + + + + + 381 + 4 + Records,Government, 7 folders,1967-1973, 1978 + + + + + + 381 + 5 + Records,Government, 7 folders,1967-1973, 1978 + + + + + + 381 + 6 + Records,Government, 7 folders,1967-1973, 1978 + + + + + + 381 + 7 + Records,Government, 7 folders,1967-1973, 1978 + + + + + + 381 + 8 + Records,Government, 7 folders,1967-1973, 1978 + + + + + + 381 + 9 + Records,Public Speeches, 1967, Plastics Industry Society, 1/31,1967 + + + + + + 381 + 10 + Records,Public Speeches, 1967, Lincoln Day Dinner, 2/12,1967 + + + + + + 381 + 11 + Records,Public Speeches, 1967, Lithuanian Independence Day, 2/19,1967 + + + + + + 381 + 12 + Records,Public Speeches, 1967, Chamber of Commerce, 4/10,1967 + + + + + + 381 + 13 + Records,Public Speeches, 1967, Central Michigan University, 6/10,1967 + + + + + + 381 + 14 + Records,Public Speeches, 1967, State Kiwanis Convention, 9/18,1967 + + + + + + 381 + 15 + Records,Public Speeches, 1967, Republican Leadership Conference, 9/24,1967 + + + + + + 381 + 16 + Records,Public Speeches, 1967, Ukrainian Insurgent Army, 10/14,1967 + + + + + + 381 + 17 + Records,Public Speeches, 1967, Annual Zach Chandler Dinner, 10/23,1967 + + + + + + 381 + 18 + Records,Public Speeches, 1967, American Institute of Banking, 11/2,1967 + + + + + + 381 + 19 + Records,Public Speeches, 1967, PA Council of Republican Women, 11/13,1967 + + + + + + 381 + 20 + Records,Public Speeches, 1968, Republican Associates, 1/12,1968 + + + + + + 381 + 21 + Records,Public Speeches, 1968, Lincoln Day Dinner, 2/12,1968 + + + + + + 381 + 22 + Records,Public Speeches, 1968, Polish League of American Vets, 4/25,1968 + + + + + + 381 + 23 + Records,Public Speeches, 1968, Republican State Convention, 4/27,1968 + + + + + + 381 + 24 + Records,Public Speeches, 1968, 13th Annual NAACP Dinner, 4/28,1968 + + + + + + 381 + 25 + Records,Public Speeches, 1968, Southern Newspaper Publishers, 5/20,1968 + + + + + + 381 + 26 + Records,Public Speeches, 1968, Garden City High School, 6/13,1968 + + + + + + 381 + 27 + Records,Public Speeches, 1968, National Press Club, 7/30,1968 + + + + + + 381 + 28 + Records,Public Speeches, 1968, Republican National Convention, 8/7,1968 + + + + + + 381 + 29 + Records,Public Speeches, 1968, State Legislative Leaders, 12/5,1968 + + + + + + 381 + 30 + Records,Public Speeches, 1969, Chamber of Commerce Dinner, 1/30,1969 + + + + + + 381 + 31 + Records,Public Speeches, 1969, Eastern Michigan University, 1/26,1969 + + + + + + 381 + 32 + Records,Public Speeches, 1969, Lincoln Day Dinner, 2/12,1969 + + + + + + 381 + 33 + Records,Public Speeches, 1969, State Republican Convention, 2/15,1969 + + + + + + 381 + 34 + Records,Public Speeches, 1969, Milwaukee Advertising Club, 2/27,1969 + + + + + + 381 + 35 + Records,Public Speeches, 1969, Executives' Club, 3/14,1969 + + + + + + 381 + 36 + Records,Public Speeches, 1969, Home Appliance Manufacturers, 5/23,1969 + + + + + + 381 + 37 + Records,Public Speeches, 1969, Hillsdale College Commencement, 6/1,1969 + + + + + + 381 + 38 + Records,Public Speeches, 1969, Republican State Central Committee, 6/14,1969 + + + + + + 381 + 39 + Records,Public Speeches, 1969, Epworth Heights Anniversary, 8/2,1969 + + + + + + 381 + 40 + Records,Public Speeches, 1969, Republican Leadership Conference, 9/14,1969 + + + + + + 381 + 41 + Records,Public Speeches, 1969, MI GOP Nationality Dinner, 11/16,1969 + + + + + + 381 + 42 + Records,Public Speeches, 1969, MI Consolidated Gas Company, 11/17,1969 + + + + + + 381 + 43 + Records,Public Speeches, 1970, SW MI Economic Club, 1/16,1970 + + + + + + 381 + 44 + Records,Public Speeches, 1970, Lincoln Day Dinner, 2/11,1970 + + + + + + 381 + 45 + Records,Public Speeches, 1970, Rollins College, 2/22,1970 + + + + + + 381 + 46 + Records,Public Speeches, 1970, Miami Committee of 100, 3/2,1970 + + + + + + 381 + 47 + Records,Public Speeches, 1970, MI Junior Chamber of Commerce, 3/22,1970 + + + + + + 381 + 48 + Records,Public Speeches, 1970, Radio Audience, May,1970 + + + + + + 381 + 49 + Records,Public Speeches, 1970, Engineering Society, 5/7,1970 + + + + + + 381 + 50 + Records,Public Speeches, 1970, Northern Michigan University, 5/31,1970 + + + + + + 381 + 51 + Records,Public Speeches, 1970, Albion College, 6/7,1970 + + + + + + 381 + 52 + Records,Public Speeches, 1970, Kiwanis International, 6/22,1970 + + + + + + 381 + 53 + Records,Public Speeches, 1970, Illinois Candidates Dinner, 7/29,1970 + + + + + + 381 + 54 + Records,Public Speeches, 1970, Michigan Jaycees, 8/22,1970 + + + + + + 381 + 55 + Records,Public Speeches, 1970, MI Republican State Convention, 8/29,1970 + + + + + + 381 + 56 + Records,Public Speeches, 1970, Evening with Ralph Smith, 9/14,1970 + + + + + + 381 + 57 + Records,Public Speeches, 1970, Industrial Relations Society, 9/24,1970 + + + + + + 381 + 58 + Records,Public Speeches, 1970, Kansas Federation of GOP Women, 10/24,1970 + + + + + + 381 + 59 + Records,Public Speeches, 1970, Jack Danforth Fund Raiser, 10/31,1970 + + + + + + 381 + 60 + Records,Public Speeches, 1970, National Housing Center Council, 12/10,1970 + + + + + + 381 + 61 + Records,Public Speeches, 1971, MI Bar Association, 1/23,1971 + + + + + + 381 + 62 + Records,Public Speeches, 1971, Ukrainian Congress Committee, 1/23,1971 + + + + + + 381 + 63 + Records,Public Speeches, 1971, SE MI Council of Governments, 1/30,1971 + + + + + + 381 + 64 + Records,Public Speeches, 1971, MI State Agricultural Services, 2/12,1971 + + + + + + 381 + 65 + Records,Public Speeches, 1971, Republican State Convention, 2/13,1971 + + + + + + 381 + 66 + Records,Public Speeches, 1971, Lincoln Day Dinner, 2/13,1971 + + + + + + 381 + 67 + Records,Public Speeches, 1971, Michigan State Legislature, 2/17,1971 + + + + + + 381 + 68 + Records,Public Speeches, 1971, Chamber of Commerce, 2/26,1971 + + + + + + 381 + 69 + Records,Public Speeches, 1971, Garden City Chamber of Commerce, 3/19,1971 + + + + + + 381 + 70 + Records,Public Speeches, 1971, Gasmen=s Round Table, 4/6,1971 + + + + + + 381 + 71 + Records,Public Speeches, 1971, Pollution Control Conference, 4/15,1971 + + + + + + 381 + 72 + Records,Public Speeches, 1971, Western Michigan University, 4/17,1971 + + + + + + 381 + 73 + Records,Public Speeches, 1971, NAACP Fight for Freedom Dinner, 4/25,1971 + + + + + + 381 + 74 + Records,Public Speeches, 1971, Economic Club, 5/17,1971 + + + + + + 381 + 75 + Records,Public Speeches, 1971, Southfield Lathrup Senior High School, 5/23,1971 + + + + + + 381 + 76 + Records,Public Speeches, 1971, Detroit Institute of Technology, 6/2,1971 + + + + + + 381 + 77 + Records,Public Speeches, 1971, Detroit Catholic Central High School, 6/6,1971 + + + + + + 381 + 78 + Records,Public Speeches, 1971, Grand Valley State College, 6/13,1971 + + + + + + 381 + 79 + Records,Public Speeches, 1971, Cherry Capital Airport Dedication, 6/20,1971 + + + + + + 381 + 80 + Records,Public Speeches, 1971, MI Hospital Association, 6/25,1971 + + + + + + 381 + 81 + Records,Public Speeches, 1971, Small Business Investment Companies, 6/26,1971 + + + + + + 381 + 82 + Records,Public Speeches, 1971, Jobs for Vets Conference, 7/19,1971 + + + + + + 381 + 83 + Records,Public Speeches, 1971, Conference of Great Lakes Governors, 8/16,1971 + + + + + + 381 + 84 + Records,Public Speeches, 1971, Michigan Association of Counties, 8/23,1971 + + + + + + 381 + 85 + Records,Public Speeches, 1971, B'nai B'rith State Advisory Board, 9/12,1971 + + + + + + 381 + 86 + Records,Public Speeches, 1971, Republican Party Conference, 9/25,1971 + + + + + + 381 + 87 + Records,Public Speeches, 1971, Ford Executives, 11/8,1971 + + + + + + 381 + 88 + Records,Public Speeches, 1971, Rubber Manufacturers Association, 11/18,1971 + + + + + + 381 + 89 + Records,Public Speeches, 1971, Washington Press Club, 12/8,1971 + + + + + + 381 + 90 + Records,Public Speeches, 1972, MI Agricultural Conference, 1/12,1972 + + + + + + 381 + 91 + Records,Public Speeches, 1972, Jaycees Awards Banquet, 1/17,1972 + + + + + + 381 + 92 + Records,Public Speeches, 1972, Jaycees, 1/24,1972 + + + + + + 381 + 93 + Records,Public Speeches, 1972, Hi-Twelve Club, 1/27,1972 + + + + + + 381 + 94 + Records,Public Speeches, 1972, Lincoln Day Dinner, 2/5,1972 + + + + + + 381 + 95 + Records,Public Speeches, 1972, Rotary Club, 2/7,1972 + + + + + + 381 + 96 + Records,Public Speeches, 1972, Michigan Food Dealers Meeting, 2/8,1972 + + + + + + 381 + 97 + Records,Public Speeches, 1972, Lincoln Tribute, 2/11,1972 + + + + + + 381 + 98 + Records,Public Speeches, 1972, Rotary Club, 2/17,1972 + + + + + + 381 + 99 + Records,Public Speeches, 1972, Lincoln Day Dinner, 2/18,1972 + + + + + + 381 + 100 + Records,Public Speeches, 1972, Chamber of Commerce, 3/3,1972 + + + + + + 381 + 101 + Records,Public Speeches, 1972, Kennel Review Awards Dinner, 4/10,1972 + + + + + + 381 + 102 + Records,Public Speeches, 1972, Lincoln Day Dinner, 3/11,1972 + + + + + + 381 + 103 + Records,Public Speeches, 1972, Lincoln Day Dinner, 4/7,1972 + + + + + + 381 + 104 + Records,Public Speeches, 1972, Chamber of Commerce, 4/14,1972 + + + + + + 381 + 105 + Records,Public Speeches, 1972, YMCA-Great Lakes Regional Assembly, 4/14,1972 + + + + + + 381 + 106 + Records,Public Speeches, 1972, American-Israel Public Affairs Committee, 4/19,1972 + + + + + + 381 + 107 + Records,Public Speeches, 1972, Lincoln Day Dinner, 4/28,1972 + + + + + + 381 + 108 + Records,Public Speeches, 1972, Republican State Nationalities Council, 4/29,1972 + + + + + + 381 + 109 + Records,Public Speeches, 1972, Lincoln Day Dinner, 5/27,1972 + + + + + + 381 + 110 + Records,Public Speeches, 1972, Chamber of Commerce, Detroit, MI, 6/6Republican State Convention, 6/17,1972 + + + + + + 381 + 111 + Records,Public Speeches, 1972, Miss Michigan Pageant, 6/24,1972 + + + + + + 381 + 112 + Records,Public Speeches, 1972, President's Dinner, 6/26,1972 + + + + + + 381 + 113 + Records,Public Speeches, 1972, Anti-Busing Rally, 8/4,1972 + + + + + + 382 + 1 + Records,Public Speeches, 1972, Republican National Convention, 8/17,1972 + + + + + + 382 + 2 + Records,Public Speeches, 1972, Republican National Convention, 8/23,1972 + + + + + + 382 + 3 + Records,Public Speeches, 1972, MI Association of Non-Public Schools, 8/28,1972 + + + + + + 382 + 4 + Records,Public Speeches, 1972, Detroit Business College, Sept.,1972 + + + + + + 382 + 5 + Records,Public Speeches, 1972, Republican State Convention, 9/2,1972 + + + + + + 382 + 6 + Records,Public Speeches, 1972, UAW-CAP Conference, 9/6,1972 + + + + + + 382 + 7 + Records,Public Speeches, 1972, Nixon-Griffin Headquarters, 10/2,1972 + + + + + + 382 + 8 + Records,Public Speeches, 1972, Introduction of Spiro T. Agnew, 10/18,1972 + + + + + + 382 + 9 + Records,Public Speeches, 1972, Installation of Dr. Raymond Fleck of Marysgrove College as President, 10/19,1972 + + + + + + 382 + 10 + Records,Public Speeches, 1972, Endorsement of Mayor Cormier, 10/23,1972 + + + + + + 382 + 11 + Records,Public Speeches, 1972, Women's Economic Club, 10/24,1972 + + + + + + 382 + 12 + Records,Public Speeches, 1972, Economic Club, 10/30,1972 + + + + + + 382 + 13 + Records,Public Speeches, 1972, Groundbreaking Ceremony, 11/1,1972 + + + + + + 382 + 14 + Records,Public Speeches, 1972, Republican State Central Meeting, 12/9,1972 + + + + + + 382 + 15 + Records,Public Speeches, 1973, Williamsburg, Feb.,1973 + + + + + + 382 + 16 + Records,Public Speeches, 1973, Lincoln Day Dinner, 2/12,1973 + + + + + + 382 + 17 + Records,Public Speeches, 1973, Statewide Lincoln Day Dinner, 2/16,1973 + + + + + + 382 + 18 + Records,Public Speeches, 1973, Republican State Convention, 2/17,1973 + + + + + + 382 + 19 + Records,Public Speeches, 1973, Calvin Bullock Forum, 2/26,1973 + + + + + + 382 + 20 + Records,Public Speeches, 1973, Rotary Club, 5/14,1973 + + + + + + 382 + 21 + Records,Public Speeches, 1973, West Bloomfield High School, 6/7,1973 + + + + + + 382 + 22 + Records,Public Speeches, 1973, Northwestern Michigan College, 6/10,1973 + + + + + + 382 + 23 + Records,Public Speeches, 1973, Detroit College of Law, 6/14,1973 + + + + + + 382 + 24 + Records,Public Speeches, 1973, Rotary Club, 8/14,1973 + + + + + + 382 + 25 + Records,Public Speeches, 1973, American Mining Congress, 9/10,1973 + + + + + + 382 + 26 + Records,Public Speeches, 1973, Republican Party of Michigan, 9/25,1973 + + + + + + 382 + 27 + Records,Public Speeches, 1973, Delaware County Republican Dinner, 10/15,1973 + + + + + + 382 + 28 + Records,Public Speeches, 1973, Eisenhower Dinner, 10/19,1973 + + + + + + 382 + 29 + Records,Public Speeches, 1973, Chamber of Commerce, 10/22,1973 + + + + + + 382 + 30 + Records,Public Speeches, 1973, Calhoun County Republican Dinner, 10/26,1973 + + + + + + 382 + 31 + Records,Public Speeches, 1974, Lincoln Day Dinner, 2/9,1974 + + + + + + 382 + 32 + Records,Public Speeches, 1974, Cast Metals Federation Dinner, 2/19,1974 + + + + + + 382 + 33 + Records,Public Speeches, 1974, Jackson County Lincoln Day Dinner, 2/22,1974 + + + + + + 382 + 34 + Records,Public Speeches, 1974, Michigan Jaycees, 2/23,1974 + + + + + + 382 + 35 + Records,Public Speeches, 1974, Lee County Lincoln Day Dinner, 3/9,1974 + + + + + + 382 + 36 + Records,Public Speeches, 1974, Salute to Guy VanderJagt, 5/10,1974 + + + + + + 382 + 37 + Records,Public Speeches, 1974, Esch Forum, 6/28,1974 + + + + + + 382 + 38 + Records,Public Speeches, 1974, National Executive Conference, 7/23,1974 + + + + + + 382 + 39 + Records,Public Speeches, 1974, Michigan GOP Conference, 8/24,1974 + + + + + + 382 + 40 + Records,Public Speeches, 1974, Continental Congress Bicentennial Dinner, 9/6,1974 + + + + + + 382 + 41 + Records,Public Speeches, 1974, Eighth District GOP, 9/9,1974 + + + + + + 382 + 42 + Records,Public Speeches, 1974, Salute to Bill Milliken, 9/13,1974 + + + + + + 382 + 43 + Records,Public Speeches, 1974, Young Republicans, 9/16,1974 + + + + + + 382 + 44 + Records,Public Speeches, 1974, Country Club Reception for Bob Dole, 9/22,1974 + + + + + + 382 + 45 + Records,Public Speeches, 1974, State Central Committee, 9/28,1974 + + + + + + 382 + 46 + Records,Public Speeches, 1974, ANPA Dinner Session, 10/8,1974 + + + + + + 382 + 47 + Records,Public Speeches, 1974, Milliken Fund Raiser, 10/10,1974 + + + + + + 382 + 48 + Records,Public Speeches, 1974, Indiana Electric Association, 10/18,1974 + + + + + + 382 + 50 + Records,Public Speeches, 1974, Scenic Trails Council, 11/7,1974 + + + + + + 382 + 51 + Records,Public Speeches, 1974, Livonia Chamber of Commerce, 11/13,1974 + + + + + + 382 + 52 + Records,Public Speeches, 1974, American Fishing Tackle Manufacturers, 11/15,1974 + + + + + + 382 + 53 + Records,Public Speeches, 1974, Wharton School Labor Relations Council, 11/19,1974 + + + + + + 382 + 54 + Records,Public Speeches, 1974, Synthetic Organic Chemical Manufacturers, 12/5,1974 + + + + + + 382 + 55 + Records,Public Speeches, 1975, Congressman Chamberlain Dinner, 2/13,1975 + + + + + + 382 + 56 + Records,Public Speeches, 1975, Chamber of Commerce, 2/14,1975 + + + + + + 382 + 57 + Records,Public Speeches, 1975, State Republican Convention, 2/15,1975 + + + + + + 382 + 58 + Records,Public Speeches, 1975, Sanilac County Lincoln Day Dinner, 2/21,1975 + + + + + + 382 + 59 + Records,Public Speeches, 1975, Young Republican Leadership Conference, 3/1,1975 + + + + + + 382 + 60 + Records,Public Speeches, 1975, Shiawassee County Lincoln Day Banquet, 3/8,1975 + + + + + + 382 + 61 + Records,Public Speeches, 1975, Automotive Service Industry, 3/10,1975 + + + + + + 382 + 62 + Records,Public Speeches, 1975, American Bankers Association, 4/3,1975 + + + + + + 382 + 63 + Records,Public Speeches, 1975, Newaygo County Lincoln Day Dinner, 4/25,1975 + + + + + + 382 + 64 + Records,Public Speeches, 1975, Spring Reunion of Scottish Rite Masons, 4/26,1975 + + + + + + 382 + 65 + Records,Public Speeches, 1975, Washtenaw County Republican Dinner, 5/2,1975 + + + + + + 382 + 66 + Records,Public Speeches, 1975, Centurion Club of Dearborn, 5/22,1975 + + + + + + 382 + 67 + Records,Public Speeches, 1975, MI Oil and Gas Association, 5/23,1975 + + + + + + 382 + 68 + Records,Public Speeches, 1975, Insurance Information Institute, 6/3,1975 + + + + + + 382 + 69 + Records,Public Speeches, 1975, Chamber of Commerce, Kalamazoo County, MI, 6/6,1975 + + + + + + 382 + 70 + Records,Public Speeches, 1975, Clarkston Senior High School, 6/7,1975 + + + + + + 382 + 71 + Records,Public Speeches, 1975, American Polygraph Association, 8/7,1975 + + + + + + 382 + 72 + Records,Public Speeches, 1975, Farmers and Manufacturers Beet Sugar Assn., 8/22,1975 + + + + + + 382 + 73 + Records,Public Speeches, 1975, Jackson County 300 Club, 9/9,1975 + + + + + + 382 + 74 + Records,Public Speeches, 1975, Prince William County Republican Meeting, 9/16,1975 + + + + + + 382 + 75 + Records,Public Speeches, 1975, Republican Rally, Detroit, MI, 10/10,1975 + + + + + + 382 + 76 + Records,Public Speeches, 1975, National Association of Food Chains, 10/13,1975 + + + + + + 382 + 77 + Records,Public Speeches, 1975, Glass Container Manufacturers Institute, 10/14,1975 + + + + + + 382 + 78 + Records,Public Speeches, 1975, National Machine Tool Builders, 11/7,1975 + + + + + + 382 + 79 + Records,Public Speeches, 1975, Truck and Body Equipment Association, 11/10,1975 + + + + + + 382 + 80 + Records,Public Speeches, 1975, Detroit Economic Club, 11/24,1975 + + + + + + 382 + 81 + Records,Public Speeches, 1976, Midwest Regional Conference, 1/30,1976 + + + + + + 382 + 82 + Records,Public Speeches, 1976, National Association of Electric Companies, 2/3,1976 + + + + + + 382 + 83 + Records,Public Speeches, 1976, Iron and Steel Institute, 2/5,1976 + + + + + + 382 + 84 + Records,Public Speeches, 1976, NE GOP Regional Conference, 2/6,1976 + + + + + + 382 + 85 + Records,Public Speeches, 1976, Sarasota Group, 2/12,1976 + + + + + + 382 + 86 + Records,Public Speeches, 1976, Fulton County GOP Banquet, 3/19,1976 + + + + + + 382 + 87 + Records,Public Speeches, 1976, Circus Saints and Sinners Luncheon, 3/25,1976 + + + + + + 382 + 88 + Records,Public Speeches, 1976, Lincoln Day Dinner, Hillsdale County, 3/27,1976 + + + + + + 382 + 89 + Records,Public Speeches, 1976, Senator Robert Taft Dinner, 4/16,1976 + + + + + + 382 + 90 + Records,Public Speeches, 1976, Michigan State Society, 3/3,1976 + + + + + + 382 + 91 + Records,Public Speeches, 1976, Michigan Association of News Broadcasters, 5/8,1976 + + + + + + 382 + 92 + Records,Public Speeches, 1976, Bicentennial Honors Dinner, 5/14,1976 + + + + + + 382 + 93 + Records,Public Speeches, 1976, Aerospace Industries Association, 5/20,1976 + + + + + + 382 + 94 + Records,Public Speeches, 1976, MI Society of Professional Engineers, 5/22,1976 + + + + + + 382 + 95 + Records,Public Speeches, 1976, West Senior High School, 6/9,1976 + + + + + + 382 + 96 + Records,Public Speeches, 1976, MI Republican Convention, 6/12,1976 + + + + + + 382 + 97 + Records,Public Speeches, 1976, Building Owners and Managers Assn., 6/21,1976 + + + + + + 382 + 98 + Records,Public Speeches, 1976, Kiwanis Club, Traverse City, 8/23,1976 + + + + + + 382 + 99 + Records,Public Speeches, 1976, Marv Esch Fund Raiser, 9/16,1976 + + + + + + 382 + 100 + Records,Public Speeches, 1976, Cliff Taylor Fund Raiser, 9/17,1976 + + + + + + 382 + 101 + Records,Public Speeches, 1976, Time, Inc. Leadership Conference, 9/26,1976 + + + + + + 382 + 102 + Records,Public Speeches, 1976, Salute to President Ford Dinner, 10/7,1976 + + + + + + 382 + 103 + Records,Public Speeches, 1976, Ontario County Republican Committee, 10/9,1976 + + + + + + 382 + 104 + Records,Public Speeches, 1976, Chamber of Commerce, Grosse Isle, MI, 10/10,1976 + + + + + + 382 + 105 + Records,Public Speeches, 1976, Columbus Day Celebration, Dearborn, MI, 10/10,1976 + + + + + + 382 + 106 + Records,Public Speeches, 1976, University of North Carolina, 10/25,1976 + + + + + + 382 + 107 + Records,Public Speeches, 1976, API/NFPA Environmental Awards Dinner, 10/26,1976 + + + + + + 382 + 108 + Records,Public Speeches, 1976, Election >76 Dinner, Waterbury, CT, 10/29,1976 + + + + + + 382 + 109 + Records,Public Speeches, 1976, Grocery Manufacturers Association, 12/8,1976 + + + + + + 382 + 110 + Records,Public Speeches, 1976, Hart Visitors Center Dedication, 12/10,1976 + + + + + + 383 + 1 + Records,Public Speeches, 1977, Ukranian Congress Committee, 1/23,1977 + + + + + + 383 + 2 + Records,Public Speeches, 1977, Eisenhower Day Dinner, 1/27,1977 + + + + + + 383 + 3 + Records,Public Speeches, 1977, Michigan State Heritage Groups, 2/3,1977 + + + + + + 383 + 4 + Records,Public Speeches, 1977, National Canners Association, 2/15,1977 + + + + + + 383 + 5 + Records,Public Speeches, 1977, Gelman Instrument Company, 2/16,1977 + + + + + + 383 + 6 + Records,Public Speeches, 1977, Lincoln Day Dinner, 2/16,1977 + + + + + + 383 + 7 + Records,Public Speeches, 1977, State GOP Convention, 2/19,1977 + + + + + + 383 + 8 + Records,Public Speeches, 1977, Labor Policy Association, 2/24,1977 + + + + + + 383 + 9 + Records,Public Speeches, 1977, Lincoln Day Dinner, 3/18,1977 + + + + + + 383 + 10 + Records,Public Speeches, 1977, Lincoln Day Dinner, 4/16,1977 + + + + + + 383 + 11 + Records,Public Speeches, 1977, NAACP AFight for Freedom@ Dinner, 4/17,1977 + + + + + + 383 + 12 + Records,Public Speeches, 1977, Detroit Management Club, 5/18,1977 + + + + + + 383 + 13 + Records,Public Speeches, 1977, Grand Rapids Economic Club, 5/23,1977 + + + + + + 383 + 14 + Records,Public Speeches, 1977, Dinner Honoring Martin Hayden, 5/30,1977 + + + + + + 383 + 15 + Records,Public Speeches, 1977, Ogemaw Heights High School, 6/11,1977 + + + + + + 383 + 16 + Records,Public Speeches, 1977, West Branch Community Luncheon, 6/11,1977 + + + + + + 383 + 17 + Records,Public Speeches, 1977, MI Association of Home Builders, 7/22,1977 + + + + + + 383 + 18 + Records,Public Speeches, 1977, MI Congress of the Professions, 8/27,1977 + + + + + + 383 + 19 + Records,Public Speeches, 1977, Kiwanis International Luncheon, 9/10,1977 + + + + + + 383 + 20 + Records,Public Speeches, 1977, GOP Conference, 9/18,1977 + + + + + + 383 + 21 + Records,Public Speeches, 1977, Chamber of Commerce, 9/19,1977 + + + + + + 383 + 22 + Records,Public Speeches, 1977, Michigan Petroleum Association, 9/19,1977 + + + + + + 383 + 23 + Records,Public Speeches, 1978, Panama Canal Treaties,1978 + + + + + + 383 + 24 + Records,Public Speeches, 1978, Paul C. Warnke Nomination,1978 + + + + + + 383 + 25 + Records,Public Speeches, 1978, Labor Policy Association,1978 + + + + + + 383 + 26 + Records,Public Speeches, 1978, GOP Conference,1978 + + + + + + 383 + 27 + Records,Public Speeches, 1978, Labor Relations Council,1978 + + + + + + 383 + 28 + Records,Public Speeches, 1978, Jerry Ford Tribute Roast,1978 + + + + + + 383 + 29 + Records,Public Speeches, 1978, Food and Marketing Inst.,1978 + + + + + + 383 + 30 + Records,Public Speeches, 1978, Montgomery County Fund Raiser,1978 + + + + + + 383 + 31 + Records,Public Speeches, 1978, Frankfort Young Lawyers Conference,1978 + + + + + + 383 + 32 + Records,Public Speeches, 1978, Japan-U.S. Ocean Forum,1978 + + + + + + 383 + 33 + Records,Public Speeches, 1978, Seminar Dynamics of Power@ Labor Policy Assn.,1978 + + + + + + 383 + 34 + Records,Public Speeches, 1978, Minority Views on Panama Canal,1978 + + + + + + 383 + 35 + Records,Public Speeches, 1978, Genesee County Lincoln Day Dinner,1978 + + + + + + 383 + 36 + Records,Public Speeches, 1978, Detroit Economic Club,1978 + + + + + + 383 + 37 + Records,Public Speeches, 1978, Michigan J. C. Legislative Assembly,1978 + + + + + + 383 + 38 + Records,Public Speeches, 1978, Panama Canal Treaties,1978 + + + + + + 383 + 39 + Records,Public Speeches, 1978, Panama Canal Treaties,1978 + + + + + + 383 + 40 + Records,Public Speeches, 1978, Eisenhower Jubilee Dinner,1978 + + + + + + 383 + 41 + Records,Public Speeches, 1978, Newaygo County Lincoln Day Dinner,1978 + + + + + + 383 + 42 + Records,Public Speeches, 1978, Industrial Relations Assn. Of Detroit,1978 + + + + + + 383 + 43 + Records,Public Speeches, 1978, VFW State Testimonial Dinner,1978 + + + + + + 383 + 44 + Records,Public Speeches, 1978, Shiawassee County Lincoln Day Dinner,1978 + + + + + + 383 + 45 + Records,Public Speeches, 1978, Lake Odessa, MI, Legislative Breakfast,1978 + + + + + + 383 + 46 + Records,Public Speeches, 1978, Law Day Observance, Oakland County Bar Assn.,1978 + + + + + + 383 + 47 + Records,Public Speeches, 1978, Detroit Bar Assn.,1978 + + + + + + 383 + 48 + Records,Public Speeches, 1978, Ottawa Area Intermediate School Dedication,1978 + + + + + + 383 + 49 + Records,Public Speeches, 1978, Grand Haven Files,1978 + + + + + + 383 + 50 + Records,Public Speeches, 1978, Optimist Club,1978 + + + + + + 383 + 51 + Records,Public Speeches, 1978, Industrial Relations Assn.,1978 + + + + + + 383 + 52 + Records,Public Speeches, 1978, Calhoun County GOP,1978 + + + + + + 383 + 53 + Records,Public Speeches, 1978, Index to RPG Speeches, 1977-78,1978 + + + + + + 383 + 54 + Records,Public Speeches, 1978, Carter's Cargo Preference Plan, 7/29/77,1978 + + + + + + 383 + 55 + Records,Public Speeches, 1978, Announcement of Candidacy for Re-election, 2/13,1978 + + + + + + 383 + 56 + Records,Public Speeches, 1978, Fruitport High School Commencement, Muskegon, 6/2,1978 + + + + + + 383 + 57 + Records,Public Speeches, 1978, Governors Conference District #529, Boyne Falls, 6/3,1978 + + + + + + 383 + 58 + Records,Public Speeches, 1978, Muskegon Medical Center, Traverse City, 6/4,1978 + + + + + + 383 + 59 + Records,Public Speeches, 1978, Lake County Lincoln Day Dinner, Baldwin, MI, 6/10,1978 + + + + + + 383 + 60 + Records,Public Speeches, 1978, Kiwanis Club, Marquette, MI, 6/12,1978 + + + + + + 383 + 61 + Records,Public Speeches, 1978, Ford Motor Co. 75th Anniversary, Washington D.C., 6/14,1978 + + + + + + 383 + 62 + Records,Public Speeches, 1978, Chamber of Commerce, Washington D.C., 6/15,1978 + + + + + + 383 + 63 + Records,Public Speeches, 1978, Rochester Republican Women's Club, Rochester MI, 6/15,1978 + + + + + + 383 + 64 + Records,Public Speeches, 1978, Kiwanis and Rotary Clubs, Traverse City, MI, 7/3,1978 + + + + + + 383 + 65 + Records,Public Speeches, 1978, Let Freedom Ring, Greenfield Village, Dearborn, MI, 7/4,1978 + + + + + + 383 + 66 + Records,Public Speeches, 1978, Bob Hope Introduction, Cherry Festival, Traverse City, MI, 7/14,1978 + + + + + + 383 + 67 + Records,Public Speeches, 1978, US-131, Howard City, MI, 7/22,1978 + + + + + + 383 + 68 + Records,Public Speeches, 1978, Chaldean-Iraqi Club, Detroit, 7/24,1978 + + + + + + 383 + 69 + Records,Public Speeches, 1978, Rotary Club, Flint, MI, 7/28,1978 + + + + + + 383 + 70 + Records,Public Speeches, 1978, Society of American Florists, Detroit, 7/28,1978 + + + + + + 383 + 71 + Records,Public Speeches, 1978, Goldwater Introduction, Saginaw, MI, 7/27-29,1978 + + + + + + 383 + 72 + Records,Public Speeches, 1978, Original Executives of MI, Cedar, MI, 8/6,1978 + + + + + + 383 + 73 + Records,Public Speeches, 1978, Primary Victory Celebration, Troy, MI, 8/8,1978 + + + + + + 383 + 74 + Records,Public Speeches, 1978, Automotive Seminar, Traverse City, 8/11,1978 + + + + + + 383 + 75 + Records,Public Speeches, 1978, Jaycees State Convention, Marquette, 8/12,1978 + + + + + + 383 + 76 + Records,Public Speeches, 1978, National Center for Human Rights, Kalamazoo, MI, 8/19,1978 + + + + + + 383 + 77 + Records,Public Speeches, 1978, GOP State Convention, Detroit, 8/26,1978 + + + + + + 383 + 78 + Records,Public Speeches, 1978, MI Assn. of Companies, Mackinac Island, 9/4,1978 + + + + + + 383 + 79 + Records,Public Speeches, 1978, MI Municipal League, Mackinac Island, 9/16,1978 + + + + + + 383 + 80 + Records,Public Speeches, 1978, USA Forum of Lions International, Detroit, 9/22,1978 + + + + + + 383 + 81 + Records,Public Speeches, 1978, MI Assn. Of Broadcasters, 9/15,1978 + + + + + + 383 + 82 + Records,Public Speeches, 1978, MI Osteopathic Assn., Traverse City, 9/23,1978 + + + + + + 383 + 83 + Records,Public Speeches, 1978, MI Department of American Legion, Troy, MI, 9/23,1978 + + + + + + 383 + 84 + Records,Public Speeches, 1978, Greek Orthodox Church, Troy, MI, 9/24,1978 + + + + + + 383 + 85 + Records,Public Speeches, 1978, Ford Fund Raiser Introduction, Detroit, 9/25,1978 + + + + + + 383 + 86 + Records,Public Speeches, 1978, Lansing Chamber of Commerce, Lansing, MI, 9/27,1978 + + + + + + 383 + 87 + Records,Public Speeches, 1978, Candidates' Night, Grand Rapids, MI, 10/19,1978 + + + + + + 383 + 88 + Records,Public Speeches, 1978, Candidates' Night, Holly, MI, 10/19,1978 + + + + + + 383 + 89 + Records,Public Speeches, 1978, Italian-American Chamber of Commerce, Detroit, 11/4,1978 + + + + + + 383 + 90 + Records,Public Speeches, 1978, Tributes to Retiring Senators, 11/9,1978 + + + + + + 383 + 91 + Records,Public Speeches, 1978, Tax Limitation Federal Style,1978 + + + + + + 384 + 1 + Records,Orange Book, 1966,1966 + + + + + + 384 + 2 + Records,Blue Book, 1972,1972 + + + + + + 384 + 3 + Records,Ivory Book, 1978,1978 + + + + + + 384 + 4 + Records,Griffin Brochures in Russian, 1966,1966 + + + + + + 384 + 5 + Records,Miscellaneous,1957-1978 + + + + + + 384 + 6 + Records,Photographs: RPG and Livonia Jaycees Survey Middle Rouge Pollution,1957-1978 + + + + + + 384 + 7 + Records,Photographs: RPG and Jack Mudrock, Senate Photographer, 1978,1978 + + + + + + 384 + 8 + Records,Photographs: RPG, Kuropas, Dobriansky, Flis, Ukrainian Reception, 1978,1978 + + + + + + 384 + 9 + Records,Photographs: RPG with Rick Duffy, Page from Howard City, 1978,1978 + + + + + + 384 + 10 + Records,Photographs: RPG with Pages David Scott and Scott Pattison, 1978,1978 + + + + + + 384 + 11 + Records,Photographs: RPG with Greg Parker, Intern, and Sen. Helms, 1978,1978 + + + + + + 384 + 12 + Records,Photographs: RPG with Wisconsin Associated Builders, 1978,1978 + + + + + + 384 + 13 + Records,Photographs: RPG with Miro Nohavec of New Jersey, 1977,1977 + + + + + + 384 + 14 + Records,Photographs: RPG with Army Buddies, 1977,1977 + + + + + + 384 + 15 + Records,Photographs: Saints and Sinners, 1976,1976 + + + + + + 384 + 16 + Records,Photographs: RPG with Arnold Levin, 1975,1975 + + + + + + 384 + 17 + Records,Photographs: RPG with Professor Niessen, 1975,1975 + + + + + + 384 + 18 + Records,Photographs: RPG with Ruth Griffin and Shirley Hodgdon, 1975,1975 + + + + + + 384 + 19 + Records,Photographs: RPG with (persons unknown), 1974,1974 + + + + + + 384 + 20 + Records,Photographs: RPG with Robin Troxwell, 1974,1974 + + + + + + 384 + 21 + Records,Photographs: RPG with Simas Kudirka, 1974,1974 + + + + + + 384 + 22 + Records,Photographs: RPG with Bing McClellan, 1974,1974 + + + + + + 384 + 23 + Records,Photographs: RPG with Page Mark Wyn, 1974,1974 + + + + + + 384 + 24 + Records,Photographs: RPG at Eisenhower Dinner, 1973,1973 + + + + + + 384 + 25 + Records,Photographs: RPG with Mr. and Mrs. Ozment, 1973,1973 + + + + + + 384 + 26 + Records,Photographs: RPG with Bussing Mail in Office, 1972,1972 + + + + + + 384 + 27 + Records,Photographs: RPG with Robert Underhill, 1972,1972 + + + + + + 384 + 28 + Records,Photographs: RPG Signing Plaque Re: Republican on Stamps, 1972,1972 + + + + + + 384 + 29 + Records,Photographs: RPG with Yeghissian, Leaphart, Rubenstein, Benesch (Interns), 1972,1972 + + + + + + 384 + 30 + Records,Photographs: RPG with Ina Strichart and Thad Berkelay (Interns), 1972,1972 + + + + + + 384 + 31 + Records,Photographs: RPG with David Bruegel (Intern), 1972,1972 + + + + + + 384 + 32 + Records,Photographs: RPG with Vanessa Stallworth, 1972,1972 + + + + + + 384 + 33 + Records,Photographs: RPG with POW Mail on Capitol Steps, 1972,1972 + + + + + + 384 + 34 + Records,Photographs: RPG with Mr. and Mrs. Warren G. Harding and Son, 1972,1972 + + + + + + 384 + 35 + Records,Photographs: RPG with Fathers Day Petition, 1972,1972 + + + + + + 384 + 36 + Records,Photographs: RPG with National Association of Retail Druggists, 1972,1972 + + + + + + 384 + 37 + Records,Photographs: RPG Receives Peace Paddles, Detroit, 1972,1972 + + + + + + 384 + 38 + Records,Photographs: RPG at Children=s Hospital, Detroit, 1972,1972 + + + + + + 384 + 39 + Records,Photographs: RPG with William R. James and Family, 1971,1971 + + + + + + 384 + 40 + Records,Photographs: RPG at Saginaw VA Hospital, 1971,1971 + + + + + + 384 + 41 + Records,Photographs: RPG with Vera Mize, 1971,1971 + + + + + + 384 + 42 + Records,Photographs: Photos from Suitcase Theater, 1971,1971 + + + + + + 384 + 43 + Records,Photographs: RPG at IRS Groundbreaking, 1971,1971 + + + + + + 384 + 44 + Records,Photographs: RPG at Grand Valley State College Commencement, 1971,1971 + + + + + + 384 + 45 + Records,Photographs: RPG with Rabbi Kanter, Rev. Elson, and Family, 1971,1971 + + + + + + 384 + 46 + Records,Photographs: RPG with Jeanne Dixon, 1971,1971 + + + + + + 384 + 47 + Records,Photographs: RPG with GOP County Chairman, Gagetown, 1971,1971 + + + + + + 384 + 48 + Records,Photographs: RPG with Cystic Fibrosis Child, 1971,1971 + + + + + + 384 + 49 + Records,Photographs: RPG with Graham Steenhoven, Ping Pong Man, 1971,1971 + + + + + + 384 + 50 + Records,Photographs: RPG with Betty Crocker Homemaker of the Year, 1971,1971 + + + + + + 384 + 51 + Records,Photographs: RPG with Neal Bykeyk, Milliken=s Bodyguard, 1971,1971 + + + + + + 384 + 52 + Records,Photographs: RPG with Harry Hall, 1971,1971 + + + + + + 384 + 53 + Records,Photographs: RPG at Snowmobile Race, Sault Sainte Marie, 1971,1971 + + + + + + 384 + 54 + Records,Photographs: RPG at Kiwanis International Convention, 1970,1970 + + + + + + 384 + 55 + Records,Photographs: RPG with House Pages, 1970,1970 + + + + + + 384 + 56 + Records,Photographs: RPG with Photography Exhibit, Arthur D=Arazier, 1970,1970 + + + + + + 384 + 57 + Records,Photographs: RPG with Republican Women of Capitol Hill Club, 1970,1970 + + + + + + 384 + 58 + Records,Photographs: RPG with Dick Kjoehede, CMU Basketball Coach, 1970,1970 + + + + + + 384 + 59 + Records,Photographs: RPG with Weisenberger Family, 1970,1970 + + + + + + 384 + 60 + Records,Photographs: RPG Receives Federal Plaque from CMU, 1970,1970 + + + + + + 384 + 61 + Records,Photographs: RPG with Snow Grigsby, 1970,1970 + + + + + + 384 + 62 + Records,Photographs: RPG with Detroiters, Alvin Bush and Irma Craft, 1970,1970 + + + + + + 384 + 63 + Records,Photographs: RPG Watches Workman Clean Statue, 1970,1970 + + + + + + 384 + 64 + Records,Photographs: Miscellaneous, 1969-1970,1969-1970 + + + + + + 384 + 65 + Records,Photographs: RPG with Ted Kowhede, 1969,1969 + + + + + + 384 + 66 + Records,Photographs: RPG Announces Results of Poll, 1969,1969 + + + + + + 384 + 67 + Records,Photographs: RPG with Vicksburg High School, 1969,1969 + + + + + + 384 + 68 + Records,Photographs: RPG with Jerris Leonard, 1968,1968 + + + + + + 384 + 69 + Records,Photographs: RPG with 2 Coast Guard Cadets at Academy in Connecticut, 1968,1968 + + + + + + 384 + 70 + Records,Photographs: RPG with Capitol Policemen, Nick Holowka, 1968,1968 + + + + + + 384 + 71 + Records,Photographs: RPG with Republican Women of Capitol Hill Club, 1968,1968 + + + + + + 384 + 72 + Records,Photographs: RPG with David Pattison and Vincent Callahan, 1967,1967 + + + + + + 384 + 73 + Records,Photographs: RPG with American University Political Science Students, 1967,1967 + + + + + + 384 + 74 + Records,Photographs: RPG with Constituents, 1967,1967 + + + + + + 384 + 75 + Records,Photographs: RPG with National Guard Association, 1967,1967 + + + + + + 384 + 76 + Records,Photographs: RPG with Rutherford P. Hayes, 1967,1967 + + + + + + 384 + 77 + Records,Photographs: RPG with Population Clock, Bureau of the Census, 1967,1967 + + + + + + 384 + 78 + Records,Photographs: RPG with William Bond and Electric Car, 1967,1967 + + + + + + 384 + 79 + Records,Photographs: RPG with Automatic Data Processing Equipment, 1966,1966 + + + + + + 384 + 80 + Records,Photographs: RPG at American Enterprise Inst. Luncheon Meeting, 1965,1965 + + + + + + 384 + 81 + Records,Photographs: RPG with Teamsters= Wives, 1963,1963 + + + + + + 384 + 82 + Records,Photographs: RPG with Republican Women of Capitol Hill Club, 1963,1963 + + + + + + 384 + 83 + Records,Photographs: RPG with Cub Scout, 1963,1963 + + + + + + 384 + 84 + Records,Photographs: RPG with Young Men of Minnesota, 1960,1960 + + + + + + 384 + 85 + Records,Photographs: RPG with Mr. and Mrs. Wood of Traverse City, 1960,1960 + + + + + + 384 + 86 + Records,Photographs: RPG with Joseph Sweeney and Family, 1959,1959 + + + + + + 384 + 87 + Records,Photographs: RPG Visiting House Barber, 1959,1959 + + + + + + 384 + 88 + Records,Photographs: RPG with Les Biederman of Traverse City, 1959,1959 + + + + + + 384 + 89 + Records,Photographs: RPG with Scout Douglas Boyd, 1959,1959 + + + + + + 384 + 90 + Records,Photographs: RPG with Bill Jabobs of Traverse City, 1959,1959 + + + + + + 384 + 91 + Records,Photographs: RPG with the Roxburghs, 1958,1958 + + + + + + 384 + 92 + Records,Photographs: RPG with William Charette at Tomb of Unknown Soldier, 1958,1958 + + + + + + 384 + 93 + Records,Photographs: RPG at Dedication of Armory Reserve Center, 1958,1958 + + + + + + 384 + 94 + Records,Photographs: RPG with Mr. and Mrs. Stuart Hubbell, 1958,1958 + + + + + + 384 + 95 + Records,Photographs: Miscellaneous Photos,1957-1978 + + + + + + 384 + 96 + Records,Photographs: RPG and Chef Weighing-In Cherries,1957-1978 + + + + + + 384 + 97 + Records,Photographs: Miscellaneous Photos (Unidentified),1957-1978 + + + + + + 384 + 98 + Records,Photographs: RPG with First Constituents to Visit Office, 1957,1957 + + + + + + 384 + 99 + Records,Photographs: RPG, Biederman, and Martin, 1957,1957 + + + + + + 384 + 100 + Records,Photographs: RPG at Young Republican Meeting in Trenton, 1957,1957 + + + + + + 384 + 101 + Records,Photographs: Griffin Awards,1957-1978 + + + + + + 384 + 102 + Records,Photographs: Griffin Cutlines, 1967-1970,1967-1970 + + + + + + 384 + 103 + Records,Photographs: RPG at Civil Defense Day Parade, Manistee, 1958,1958 + + + + + + 384 + 104 + Records,Photographs: Dignitaries of Foreign Countries: RPG with Prime Minister James Calleghan, 1977,1977 + + + + + + 384 + 105 + Records,Photographs: Dignitaries of Foreign Countries: RPG with Prime Minister Pierre Trudeau, 1977,1977 + + + + + + 384 + 106 + Records,Photographs: Dignitaries of Foreign Countries: RPG with Queen Elizabeth II and Prince Philip, 1976,1976 + + + + + + 384 + 107 + Records,Photographs: Dignitaries of Foreign Countries: RPG Receiving Magna Carta from Britain, 1976,1976 + + + + + + 384 + 108 + Records,Photographs: Dignitaries of Foreign Countries: RPG with King Juan Carlos of Spain, 1976,1976 + + + + + + 384 + 109 + Records,Photographs: Dignitaries of Foreign Countries: RPG with President Valery Giscard d'Estaing, 1976,1976 + + + + + + 384 + 110 + Records,Photographs: Dignitaries of Foreign Countries: RPG with Prime Minister Liam Cosgrave, Ireland, 1976,1976 + + + + + + 384 + 111 + Records,Photographs: Dignitaries of Foreign Countries: RPG with Prime Minister Rabin, Israel, 1976,1976 + + + + + + 384 + 112 + Records,Photographs: Dignitaries of Foreign Countries: RPG with Kwon Chung, Speaker of National Assembly, Korea, 1975,1975 + + + + + + 384 + 113 + Records,Photographs: Dignitaries of Foreign Countries: RPG with Crown Prince of Tonga, 1974,1974 + + + + + + 384 + 114 + Records,Photographs: Dignitaries of Foreign Countries: RPG with Chinese Peoples Assn. For Friendship, 1973,1973 + + + + + + 384 + 115 + Records,Photographs: Dignitaries of Foreign Countries: RPG with Pope Paul, 1970,1970 + + + + + + 384 + 116 + Records,Photographs: Dignitaries of Foreign Countries: RPG with Japanese Governors, 1969,1969 + + + + + + 384 + 117 + Records,Photographs: Dignitaries of Foreign Countries: RPG with Prime Minister Trudeau,1957-1978 + + + + + + 384 + 118 + Records,Photographs: Other VIPs: RPG with John Warner, 1976,1976 + + + + + + 384 + 119 + Records,Photographs: Other VIPs: RPG with Henry Kissinger, 1975,1975 + + + + + + 384 + 120 + Records,Photographs: Other VIPs: RPG with Secretary William Simon, 1975,1975 + + + + + + 384 + 121 + Records,Photographs: Other VIPs: RPG with Secretary Callaway, Clarke, and Niessen, 1975,1975 + + + + + + 384 + 122 + Records,Photographs: Other VIPs: RPG with Art Fletcher, 1974,1974 + + + + + + 384 + 123 + Records,Photographs: Other VIPs: RPG with Ambassador James Hodgson, 1974,1974 + + + + + + 384 + 124 + Records,Photographs: Other VIPs: Senator and Mrs. Griffin with Secretary and Mrs. Rogers, 1973,1973 + + + + + + 384 + 125 + Records,Photographs: Other VIPs: RPG with Dr. Floyd Ridick, 1972,1972 + + + + + + 384 + 126 + Records,Photographs: Other VIPs: RPG with Frank Fitzsimmons, 1972,1972 + + + + + + 384 + 127 + Records,Photographs: Other VIPs: RPG with Tom Gherardi, GSA, 1972,1972 + + + + + + 384 + 128 + Records,Photographs: Other VIPs: RPG with Bill Perry, 1972,1972 + + + + + + 384 + 129 + Records,Photographs: Other VIPs: RPG with William Ruckelshaus, 1972,1972 + + + + + + 384 + 130 + Records,Photographs: Other VIPs: RPG with R. Kruger, GSA, 1972,1972 + + + + + + 384 + 131 + Records,Photographs: Other VIPs: RPG with Postmaster General Klassen, 1972,1972 + + + + + + 384 + 132 + Records,Photographs: Other VIPs: RPG with David Oberlin, 1972,1972 + + + + + + 384 + 133 + Records,Photographs: Other VIPs: Senator and Mrs. Griffin with Lawrence Welk, 1972,1972 + + + + + + 384 + 134 + Records,Photographs: Other VIPs: RPG with Arthur Sampson, GSA,1957-1978 + + + + + + 384 + 135 + Records,Photographs: Other VIPs: RPG with John and Martha Mitchell, Red Blount,1957-1978 + + + + + + 384 + 136 + Records,Photographs: Other VIPs: RPG with Donald Johnson, VA Administrator, 1971,1971 + + + + + + 384 + 137 + Records,Photographs: Other VIPs: RPG with Allott, Rogers, and Dole, 1971,1971 + + + + + + 384 + 138 + Records,Photographs: Other VIPs:RPG with Rogers, Laird, and Allott, 1971,1971 + + + + + + 384 + 139 + Records,Photographs: Other VIPs: Griffin Birthday, 1971,1971 + + + + + + 384 + 140 + Records,Photographs: Other VIPs: RPG with Japanese Ambassador, 1971,1971 + + + + + + 384 + 141 + Records,Photographs: Other VIPs: RPG with 15 Astronauts, Apollo 15, 1971,1971 + + + + + + 384 + 142 + Records,Photographs: Other VIPs: RPG with Postmaster Blount, 1971,1971 + + + + + + 384 + 143 + Records,Photographs: Other VIPs: RPG with John Bareno, Carlos Ruiz, and Lee MacGregor, 1971,1971 + + + + + + 384 + 144 + Records,Photographs: Other VIPs: RPG with Henry Ramirez, 1973,1973 + + + + + + 384 + 145 + Records,Photographs: Other VIPs: RPG with Virginia Allan, 1972,1972 + + + + + + 384 + 146 + Records,Photographs: Other VIPs: RPG with Sal Lauricella, 1971,1971 + + + + + + 384 + 147 + Records,Photographs: Other VIPs: RPG with Dr. Elson, Senate Chaplain, and Morton Kanter,1957-1978 + + + + + + 384 + 148 + Records,Photographs: Other VIPs: RPG with Col Overly, 1971,1971 + + + + + + 384 + 149 + Records,Photographs: Other VIPs: RPG with David Oberlin, 1970,1970 + + + + + + 384 + 150 + Records,Photographs: Other VIPs: RPG with John Volpe, 1970,1970 + + + + + + 384 + 151 + Records,Photographs: Other VIPs: RPG with Bowie Kuhn, 1970,1970 + + + + + + 384 + 152 + Records,Photographs: Other VIPs: RPG with Barry Blackmun, 1970,1970 + + + + + + 384 + 153 + Records,Photographs: Other VIPs: RPG with Chef Coia, Kaplan, Parker, Cherry Pies, 1970,1970 + + + + + + 384 + 154 + Records,Photographs: Other VIPs: RPG with Miss America, Pam Eldred, 1970,1970 + + + + + + 384 + 155 + Records,Photographs: Other VIPs: RPG with Wendell Smith, National Jaycees, 1969,1969 + + + + + + 384 + 156 + Records,Photographs: Other VIPs: RPG with Carl Millan, Peter Jamison, Saul Lauricella, 1969,1969 + + + + + + 384 + 157 + Records,Photographs: Other VIPs: RPG with Members Japanese Parliament, 1969,1969 + + + + + + 384 + 158 + Records,Photographs: Other VIPs: RPG with Guy Lombardo, 1969,1969 + + + + + + 384 + 159 + Records,Photographs: Other VIPs: RPG with Canadian Delegates to Interparliamentary Conf., 1967,1967 + + + + + + 384 + 160 + Records,Photographs: Other VIPs: RPG with Senate Master Chef, Masgoret, and Cherry Pies, 1967,1967 + + + + + + 384 + 161 + Records,Photographs: Other VIPs: RPG with Red Skeleton and Everett Dirksen, 1967,1967 + + + + + + 384 + 162 + Records,Photographs: Other VIPs: RPG with J. Lewey Caraway, 1966,1966 + + + + + + 384 + 163 + Records,Photographs: Other VIPs: RPG with Republican Congressmen, Senators, and Cabinet Members,1957-1978 + + + + + + 384 + 164 + Records,Photographs: Other VIPs: RPG with SBA Administrator, McCullum, 1960,1960 + + + + + + 384 + 165 + Records,Photographs: Other VIPs: RPG with Secretary Flemming (HEW),1957-1978 + + + + + + 384 + 166 + Records,Photographs: Other VIPs: RPG with Secretary Robert Anderson (Treasury),1957-1978 + + + + + + 384 + 167 + Records,Photographs: Other VIPs: RPG with Thurston Morton, National Republican Chairman, 1959,1959 + + + + + + 384 + 168 + Records,Photographs: Other VIPs: RPG with Secretary McElroy (Defense), 1958,1958 + + + + + + 384 + 169 + Records,Photographs: Other VIPs: RPG with VA Administrator, Sumner Whittier, 1958,1958 + + + + + + 384 + 170 + Records,Photographs: Other VIPs: RPG with Secretary Bruckner (Army), 1958,1958 + + + + + + 384 + 171 + Records,Photographs: Other VIPs: RPG with Secretary Anderson (Treasury), 1958,1958 + + + + + + 384 + 172 + Records,Photographs: Other VIPs: RPG with Jack McIntosh, Sinclair Weeks, and Chamberlain, 1958,1958 + + + + + + 384 + 173 + Records,Photographs: Other VIPs: RPG with Ezra Benson, 1958,1958 + + + + + + 384 + 174 + Records,Photographs: Other VIPs: RPG with Vanguard Project Director, Dr. Hagen, 1958,1958 + + + + + + 384 + 175 + Records,Photographs: Other VIPs: RPG with Dr. Werner Project Director, Dr. Hagen, 1958,1958 + + + + + + 384 + 176 + Records,Photographs: Other VIPs: RPG with Secretary Sinclair Weeks, 1958,1958 + + + + + + 384 + 177 + Records,Photographs: Other VIPs: RPG with Postmaster Summerfield,1957-1978 + + + + + + 384 + 178 + Records,Photographs: Other VIPs: RPG with Attorney General Rogers, 1958,1958 + + + + + + 384 + 179 + Records,Photographs: Other VIPs: RPG with Elliott Richardson, 1958,1958 + + + + + + 384 + 180 + Records,Photographs: Other VIPs: RPG with Stepovitch, Governor of Alaska, 1958,1958 + + + + + + 384 + 181 + Records,Photographs: Other VIPs: RPG with Delegate Burns, 1959,1958 + + + + + + 384 + 182 + Records,Photographs: Other VIPs: RPG with General Alfred Gruenther, 1958,1958 + + + + + + 384 + 183 + Records,Photographs: Other VIPs: RPG with Humphrey, Kendall, Chamberlain, and McIntosh, 1957,1957 + + + + + + 384 + 184 + Records,Photographs: Other VIPs: RPG with Mitchell and Burgen, 1957,1957 + + + + + + 384 + 185 + Records,Photographs: Other VIPs: RPG with John Foster Dulles, 1957,1957 + + + + + + 384 + 186 + Records,Photographs: Other VIPs: RPG with Ezra Taft Benson, 1956,1956 + + + + + + 384 + 187 + Records,Photographs: Other VIPs: RPG with Secretary Arthurr Larsen (HEW), 1956,1956 + + + + + + 384 + 188 + Records,Photographs: Other VIPs: RPG with Attorney General Herbert Brownell, 1956,1956 + + + + + + 384 + 189 + Records,Photographs: Other VIPs: RPG with Len Hall, GOP Chairman, 1956,1956 + + + + + + 384 + 190 + Records,Photographs: Other VIPs: RPG with Secretary George Humphrey (Treasury), 1956,1956 + + + + + + 384 + 191 + Records,Photographs: Other VIPs: RPG with Dignitary, 1956,1956 + + + + + + 384 + 192 + Records,Photographs: Other VIPs: RPG with Admiral Rawson Bennett,1957-1978 + + + + + + 385 + 1 + Records,Public Speeches: Mackinac Island Conference, 9/25/71,1971 + + + + + + 385 + 2 + Records,Public Speeches: MI Credit Union League, 4/17/71,1971 + + + + + + 385 + 3 + Records,Public Speeches: Labor Law Study Committee, 6/19/71,1971 + + + + + + 385 + 4 + Records,Public Speeches: Nationalities Festival, 9/17/72,1972 + + + + + + 385 + 5 + Records,Public Speeches: Michigan AP Editors, 6/16/72,1972 + + + + + + 385 + 6 + Records,Public Speeches: Lincoln Day Speeches, 1974-1976,1974-1976 + + + + + + 385 + 7 + Records,Public Speeches: Business Groups, 10/76,1976 + + + + + + 385 + 8 + Records,Public Speeches: Rotary Club, Jackson, 10/28/74,1974 + + + + + + 385 + 9 + Records,Public Speeches: Saints and Sinners Roast, 2/12/76,1976 + + + + + + 385 + 10 + Records,Committee Statements: Foreign Relations, Panama Canal, Minority Views, 1/26/78,1978 + + + + + + 385 + 11 + Records,Committee Statements: Commerce, Metric Study Needed, 11/15/67,1967 + + + + + + 385 + 12 + Records,Committee Statements: Merchant Marine, Alewife, 8/5/67,1967 + + + + + + 385 + 13 + Records,Committee Statements: Judiciary, Fortas, and Thornberry, 7/11/68,1968 + + + + + + 385 + 14 + Records,Committee Statements: Separation of Powers, 7/14/69,1969 + + + + + + 385 + 15 + Records,Committee Statements: Judiciary, Haynsworth, 10/30/69,1969 + + + + + + 385 + 16 + Records,Committee Statements: Judiciary, Direct Election, 6/18/70,1970 + + + + + + 385 + 17 + Records,Committee Statements: Government Operations, Executive Reorganization, 6/71,1971 + + + + + + 385 + 18 + Records,Committee Statements: Labor, Landrum-Griffin, 7/13/71,1971 + + + + + + 385 + 19 + Records,Committee Statements: Commerce, Phosphates, 10/1/71,1971 + + + + + + 385 + 20 + Records,Committee Statements: Appropriations, McNamara Bldg., 10/19/71,1971 + + + + + + 385 + 21 + Records,Committee Statements: Appropriations, McNamara Bldg., 5/23/72,1972 + + + + + + 385 + 22 + Records,Committee Statements: Interior, Isle Royale Wilderness, 5/5/72,1972 + + + + + + 385 + 23 + Records,Committee Statements: Appropriations, Upper Great Lakes Comm., 5/4/72,1972 + + + + + + 385 + 24 + Records,Committee Statements: Criminal Law and Procedures, 4/3/72,1972 + + + + + + 385 + 25 + Records,Committee Statements: Commerce, TV Blackouts, 10/3/72,1972 + + + + + + 385 + 26 + Records,Committee Statements: Republican Women's Club of Muskegon, undated,undated + + + + + + 385 + 27 + Records,Committee Statements: Young Men of Minnesota, undated,undated + + + + + + 385 + 28 + Records,Public Speeches: Notes, 2 folders,1957-1978 + + + + + + 385 + 29 + Records,Public Speeches: Notes, 2 folders,1957-1978 + + + + + + 385 + 30 + Records,Public Speeches: Drafts,1957-1978 + + + + + + 385 + 31 + Records,Public Speeches: Miscellaneous Material,1957-1978 + + + + + + 385 + 32 + Records,Public Speeches: Selection of Supreme Court Justice, 1970,1970 + + + + + + 385 + 33 + Records,Public Speeches: International Platform Assn., 7/21/66,1966 + + + + + + 385 + 34 + Records,Public Speeches: Basic Speech, 2/70,1970 + + + + + + 385 + 35 + Records,Public Speeches: Speeches, 1971, 3 folders,1971 + + + + + + 385 + 36 + Records,Public Speeches: Speeches, 1971, 3 folders,1971 + + + + + + 385 + 37 + Records,Public Speeches: Speeches, 1971, 3 folders,1971 + + + + + + 385 + 38 + Records,Floor Remarks: Crime Remarks in Senate, 8/11/66,1966 + + + + + + 385 + 39 + Records,Floor Remarks: Joint Committee on Industry-Wide Bargaining, 1967,1967 + + + + + + 385 + 40 + Records,Floor Remarks: President's Role in Civil Disorders, 8/4/67,1967 + + + + + + 385 + 41 + Records,Floor Remarks: Celebration for Walter Hagen, 8/10/67,1967 + + + + + + 385 + 42 + Records,Floor Remarks: Flint Airman Receives Air Force Cross, 9/12/67,1967 + + + + + + 385 + 43 + Records,Floor Remarks: Draft Deferment for Police and Firemen, 10/25/67,1967 + + + + + + 385 + 44 + Records,Floor Remarks: Congressional Redistricting, 11/8/67,1967 + + + + + + 385 + 45 + Records,Floor Remarks: FMHA Blocks Rural Water Supply Systems, 11/29/67,1967 + + + + + + 385 + 46 + Records,Floor Remarks: Non-Proliferation in Middle East, 5/15/68,1968 + + + + + + 385 + 47 + Records,Floor Remarks: Asst. Attorney General Vinson Re: Title II, 5/23/68,1968 + + + + + + 385 + 48 + Records,Floor Remarks: Excerpts, 7/11/68,1968 + + + + + + 385 + 49 + Records,Floor Remarks: Fortas-Thornberry and the American Bar, 9/13/68,1968 + + + + + + 385 + 50 + Records,Floor Remarks: When is a Filibuster, 10/1/68,1968 + + + + + + 385 + 51 + Records,Floor Remarks: Minority Rule, 10/2/68,1968 + + + + + + 385 + 52 + Records,Floor Remarks: Bill of Rights for Amateur Athletes, 1/18/68,1968 + + + + + + 385 + 53 + Records,Floor Remarks: Newspaper Strike in Detroit, 1/22/68,1968 + + + + + + 385 + 54 + Records,Floor Remarks: Pueblo Incident, 1/29/68,1968 + + + + + + 385 + 55 + Records,Floor Remarks: New Policy for U.S. Territorial Waters, 2/5/68,1968 + + + + + + 385 + 56 + Records,Floor Remarks: Corner Drugstore and Credibility Gap, 2/8/68,1968 + + + + + + 385 + 57 + Records,Floor Remarks: Gold Cover Bill Debate, 3/14/68,1968 + + + + + + 385 + 58 + Records,Floor Remarks: Auto Excise Tax, 3/28/68,1968 + + + + + + 385 + 59 + Records,Floor Remarks: Transpacific Air Route, 1/23/69,1969 + + + + + + 385 + 60 + Records,Floor Remarks: Recognize 10th Anniversary of Seaway, 4/2/69,1969 + + + + + + 385 + 61 + Records,Floor Remarks: Electoral Reform, 8/8/69,1969 + + + + + + 385 + 62 + Records,Floor Remarks: Vietnam, 9/19/69,1969 + + + + + + 385 + 63 + Records,Floor Remarks: Vietnam Moratorium, 9/29/69,1969 + + + + + + 385 + 64 + Records,Floor Remarks: Project Xuan Thuy, 12/10/69,1969 + + + + + + 385 + 65 + Records,Floor Remarks: Eisenhower Tribute, 4/25/69,1969 + + + + + + 385 + 66 + Records,Floor Remarks: Release of POW's, 12/15/70,1970 + + + + + + 385 + 67 + Records,Floor Remarks: Trade Bill, 12/14/70,1970 + + + + + + 385 + 68 + Records,Floor Remarks: SST, 12/3/70,1970 + + + + + + 385 + 69 + Records,Floor Remarks: Salmon to Saxbe, 11/23/70,1970 + + + + + + 385 + 70 + Records,Floor Remarks: President's Supplemental Appropriations Request, 11/70,1970 + + + + + + 385 + 71 + Records,Floor Remarks: Bet with Saxbe on Michigan-Ohio State Football, 11/70,1970 + + + + + + 385 + 72 + Records,Floor Remarks: Emergency Public Interest Protection Act, 9/28/70,1970 + + + + + + 385 + 73 + Records,Floor Remarks: Nixon's Return from European Trip, 10/5/70,1970 + + + + + + 385 + 74 + Records,Floor Remarks: Support of Asian Self-Defense, 6/29/70,1970 + + + + + + 385 + 75 + Records,Floor Remarks: Nomination of G. Harrold Carswell, 3/17/70,1970 + + + + + + 385 + 76 + Records,Floor Remarks: Reform of Senate Rules, 1/10/71,1971 + + + + + + 385 + 77 + Records,Floor Remarks: Now the Nation Looks to Congress, 9/8/71,1971 + + + + + + 385 + 78 + Records,Floor Remarks: Busing Amendments, 2/23/72,1972 + + + + + + 385 + 79 + Records,Floor Remarks: Busing, 10/10/72,1972 + + + + + + 385 + 80 + Records,Floor Remarks: Inflation and Unemployment, 9/10/76,1976 + + + + + + 385 + 81 + Records,Floor Remarks: Michigan Day, 5/5/76,1976 + + + + + + 385 + 82 + Records,Floor Remarks: Launching POW Campaign, 12/10/69,1969 + + + + + + 385 + 83 + Records,Floor Remarks: The Senate Stands Taller, 10/1/68,1968 + + + + + + 385 + 84 + Records,Floor Remarks: Constitutional Amendment 18-Year Vote, 3/71,1971 + + + + + + 385 + 85 + Records,Floor Remarks: Pension Protection, 9/8/71,1971 + + + + + + 385 + 86 + Records,Committee Statement: Armed Services, Draft Reform, 2/22/71,1971 + + + + + + 385 + 87 + Records,Committee Statement: Vietnam, undated,undated + + + + + + 385 + 88 + Records,Committee Statement: Emergency Strike Legislation, undated,undated + + + + + + 385 + 89 + Records,Committee Statement: Occupational Safety and Health Bill, undated,undated + + + + + + 385 + 90 + Records,Committee Statement: Budget Deficit Article, 8/22/70,1970 + + + + + + 385 + 91 + Records,Committee Statement: Electoral College Reform--Radio, 7/31/70,1970 + + + + + + 385 + 92 + Records,Committee Statement: Views of RPG and Senator J.D. Tydings, 6/70,1970 + + + + + + 385 + 93 + Records,Committee Statement: Transportation Strikes--Radio, 3/11/71,1971 + + + + + + 386 + 1 + Records,RPG Publications, Complete Set, 1957-1978 index,1957-1978 + + + + + + 386 + 2 + Records,Griffin Bumper Sticker,1957-1978 + + + + + + 386 + 3 + Records,Griffin Rubber Stamps (3), Senate seal, name, and Griffin figure,1957-1978 + + + + + + 386 + 4 + Records,Media Information and Contacts, 1972, Notebook,1972 + + + + + + 386 + 5 + Records,Cassettes, Box 1, #1-22 no. 9 (see list),1957-1978 + + + + + + 386 + 6 + Records,Cassettes, Box 2, #23-4, 26-7, 30-3, 37 (see list),1957-1978 + + + + + + 387 + 1 + Records,Photographs: Members of Congress: RPG, Mrs. Griffin, Rep. and Mrs. Vander Jagt, 4/76,1976 + + + + + + 387 + 2 + Records,Photographs: Members of Congress: RPG, Buchen, and Frenzel at White House, 2/5/76,1976 + + + + + + 387 + 3 + Records,Photographs: Members of Congress: RPG and Cong. Ruppe, 4/23/75,1975 + + + + + + 387 + 4 + Records,Photographs: Members of Congress: RPG and Cong. Bella Abzug, 1975,1975 + + + + + + 387 + 5 + Records,Photographs: Members of Congress: RPG and Cong. Chamberlain with Businessmen, 5/8/74,1974 + + + + + + 387 + 6 + Records,Photographs: Members of Congress: RPG and Rep. John Rhodes at Luncheon, 5/8/74,1974 + + + + + + 387 + 7 + Records,Photographs: Members of Congress: RPG, Ambrose, Broomfield, and Cederberg, 2/73,1973 + + + + + + 387 + 8 + Records,Photographs: Members of Congress: RPG, Cong. Cederberg, and Alyne Hoggard, 7/28/72,1972 + + + + + + 387 + 9 + Records,Photographs: Members of Congress: RPG, Schweigert, and Ruppe, 7/26/72,1972 + + + + + + 387 + 10 + Records,Photographs: Members of Congress: RPG, Cederberg, Esch, and Two Girls, 7/26/72,1972 + + + + + + 387 + 11 + Records,Photographs: Members of Congress: RPG and Cong. Celler (D-NY), 4/19/72,1972 + + + + + + 387 + 12 + Records,Photographs: Members of Congress: RPG, Mayor Feder (Southfield), Broomfield, 4/7/72,1972 + + + + + + 387 + 13 + Records,Photographs: Members of Congress: RPG, Milliken, and Cederberg at Highland Festival, 1972,1972 + + + + + + 387 + 14 + Records,Photographs: Members of Congress: RPG, Mrs. Griffin, Milliken, and Matt Surrell, 9/25/71,1971 + + + + + + 387 + 15 + Records,Photographs: Members of Congress: RPG, Morgan, Broomfield, Kissinger, and Sparkmen, 10/1/76,1976 + + + + + + 387 + 16 + Records,Photographs: Members of Congress: RPG and Cong. James Harvey at Birthday Party, 9/71,1971 + + + + + + 387 + 17 + Records,Photographs: Members of Congress: RPG, Harvey, Bernie Lyons, and Pete Behr, 9/71,1971 + + + + + + 387 + 18 + Records,Photographs: Members of Congress: RPG, Mrs. Griffin, and Ford at Convention, 2/2/71,1971 + + + + + + 387 + 19 + Records,Photographs: Members of Congress: RPG with Veterans at VA Hospital in Saginaw, 10/22/70,1970 + + + + + + 387 + 20 + Records,Photographs: Members of Congress: RPG, Cederberg, and Tufty at Seaway Party, 10/70,1970 + + + + + + 387 + 21 + Records,Photographs: Members of Congress: RPG and Cong. Garry Brown, 7/1/70,1970 + + + + + + 387 + 22 + Records,Photographs: Members of Congress: RPG, Ford, Smith, and others, 6/8/70,1970 + + + + + + 387 + 23 + Records,Photographs: Members of Congress: RPG, Vander Jagt, Mr. and Mrs. Walker, Parents, 3/9/70,1970 + + + + + + 387 + 24 + Records,Photographs: Members of Congress: RPG, Harvey, and POW Wife (Kathleen Johnson), 12/12/69,1969 + + + + + + 387 + 25 + Records,Photographs: Members of Congress: RPG, Dr. and Mrs. McCollister, and Chamberlain, 11/4/69,1969 + + + + + + 387 + 26 + Records,Photographs: Members of Congress: RPG and Harvey Receive Pornography Petitions, 7/69,1969 + + + + + + 387 + 27 + Records,Photographs: Members of Congress: RPG, Riegle, Ruppe and Women=s Conference Page, 4/16/69,1969 + + + + + + 387 + 28 + Records,Photographs: Members of Congress: RPG, Smeekens, and Hutchinson, 2/7/69,1969 + + + + + + 387 + 29 + Records,Photographs: Members of Congress: RPG, Mrs. Griffin, Cong. and Mrs. Ford, Peterson, 12/17/69,1969 + + + + + + 387 + 30 + Records,Photographs: Members of Congress: RPG, O=Rourke, Beauregard, and MI Delegation, 5/4/68,1968 + + + + + + 387 + 31 + Records,Photographs: Members of Congress: RPG and William Broomfield, 2/68,1968 + + + + + + 387 + 32 + Records,Photographs: Members of Congress: RPG and Al Bentley, 10/67,1967 + + + + + + 387 + 33 + Records,Photographs: Members of Congress: RPG, Duane Hackney (USAF), and Riegle, 9/12/67,1967 + + + + + + 387 + 34 + Records,Photographs: Members of Congress: RPG, Dendrinos (Chef Pierre), and Masgoret, 5/4/67,1967 + + + + + + 387 + 35 + Records,Photographs: Members of Congress: RPG, Harvey, and Burrows Morley in Saginaw, 5/67,1967 + + + + + + 387 + 36 + Records,Photographs: Members of Congress: RPG and Vander Jagt on Supreme Court Steps, 5/19/67,1967 + + + + + + 387 + 37 + Records,Photographs: Members of Congress: RPG, Gude, and Fentress (MD GOP), 1/24/67,1967 + + + + + + 387 + 38 + Records,Photographs: Members of Congress: RPG and Riegle, 1966,1966 + + + + + + 387 + 39 + Records,Photographs: Members of Congress: RPG and Derwinski (IL), No Date,undated + + + + + + 387 + 40 + Records,Photographs: Members of Congress: RPG and Conte, No Date,undated + + + + + + 387 + 41 + Records,Photographs: Members of Congress: RPG, Dwyer, and Others Eating Tomatoes, 1966,1966 + + + + + + 387 + 42 + Records,Photographs: Members of Congress: RPG Leaving House Education and Labor Committee, 1966,1966 + + + + + + 387 + 43 + Records,Photographs: Members of Congress: RPG, Ray Bliss, Cederberg, and Brother, 1966,1966 + + + + + + 387 + 44 + Records,Photographs: Members of Congress: RPG, Byrnes, Laird, Romney, Goodell, Rumsfeld, Ford, 1966,1966 + + + + + + 387 + 45 + Records,Photographs: Members of Congress: RPG and Congressional Baseball Team, 1966,1966 + + + + + + 387 + 46 + Records,Photographs: Members of Congress: RPG and Ford Receive Prayer Petitions, 10/65,1965 + + + + + + 387 + 47 + Records,Photographs: Members of Congress: RPG and Bloomfield in Baseball Uniforms, 1965,1965 + + + + + + 387 + 48 + Records,Photographs: Members of Congress: RPG with Joint Comm. On Organization of Congress, 1965,1965 + + + + + + 387 + 49 + Records,Photographs: Members of Congress: RPG with House Minority Leader, Gerald Ford, 1965,1965 + + + + + + 387 + 50 + Records,Photographs: Members of Congress: Griffin and Cong. Harvey, 1965,1965 + + + + + + 387 + 51 + Records,Photographs: Members of Congress: RPG, Mrs. Griffin, Cong. And Mrs. James Harvey at White House, 1965,1965 + + + + + + 387 + 52 + Records,Photographs: Members of Congress: RPG and Ford on House Steps of Capitol Bldg., 1965,1965 + + + + + + 387 + 53 + Records,Photographs: Members of Congress: RPG, Ellsworth, Ford, Goodell, and Rumsfeld, 1965,1965 + + + + + + 387 + 54 + Records,Photographs: Members of Congress: Opening Day of 89th Cong., 1st Sess., 1/4/65,1965 + + + + + + 387 + 55 + Records,Photographs: Members of Congress: RPG with House Minority Leader, Gerald Ford, 1964,1964 + + + + + + 387 + 56 + Records,Photographs: Members of Congress: RPG, Harvey, Hutchinson with MI Agriculture Queens, 5/21/64,1964 + + + + + + 387 + 57 + Records,Photographs: Members of Congress: Congressional Baseball Team, 1964,1964 + + + + + + 387 + 58 + Records,Photographs: Members of Congress: RPG and Cong. Phil Landrum (Iron Age Interview), 1963,1963 + + + + + + 387 + 59 + Records,Photographs: Members of Congress: RPG and Meader at Seaway Festival, 1963,1963 + + + + + + 387 + 60 + Records,Photographs: Members of Congress: RPG, Brooke, Ford, and Goodell, 1963,1963 + + + + + + 387 + 61 + Records,Photographs: Members of Congress: RPG, Ford, and Goodell, 1/63,1963 + + + + + + 387 + 62 + Records,Photographs: Members of Congress: RPG, McDowell, Monaghan, and Broomfield at Berlin Wall, 11/62,1962 + + + + + + 387 + 63 + Records,Photographs: Members of Congress: RPG, Conte, Broyhill, Ford, and Devine at Convention, 7/60,1960 + + + + + + 387 + 64 + Records,Photographs: Members of Congress: RPG and House Education and Labor Committee, 1960,1960 + + + + + + 387 + 65 + Records,Photographs: Members of Congress: RPG and Harvey, 9/19/61,1961 + + + + + + 387 + 66 + Records,Photographs: Members of Congress: RPG and Derwinski at Dinner in Chicago, 2/5/60,1960 + + + + + + 387 + 67 + Records,Photographs: Members of Congress: RPG and Landrum, 8-9/59,1959 + + + + + + 387 + 68 + Records,Photographs: Members of Congress: RPG and other Congressmen at Dinner, 1959,1959 + + + + + + 387 + 69 + Records,Photographs: Members of Congress: RPG and TV Guests, 1959,1959 + + + + + + 387 + 70 + Records,Photographs: Members of Congress: RPG, Ford, and Secy. Benson at Egg Luncheon, 7/59,1959 + + + + + + 387 + 71 + Records,Photographs: Members of Congress: RPG, Cederberg, and Doctors Group, No Date,undated + + + + + + 387 + 72 + Records,Photographs: Members of Congress: RPG, McCormick, Martin, and MI Cherry Queen, 1958,1958 + + + + + + 387 + 73 + Records,Photographs: Members of Congress: RPG, Ford, and MI Agriculture Queens, 1958,1958 + + + + + + 387 + 74 + Records,Photographs: Members of Congress: RPG and Chamberlain with Onions, 1958,1958 + + + + + + 387 + 75 + Records,Photographs: Members of Congress: RPG, Vander Jagt, and Bryskamp (House Chaplain), 2/3/58,1958 + + + + + + 387 + 76 + Records,Photographs: Members of Congress: RPG, McIntosch, Weeks, and Chamberlain, 1958,1958 + + + + + + 387 + 77 + Records,Photographs: Members of Congress: RPG and Harris (Chairman, Foreign Relations Comm.), 1958,1958 + + + + + + 387 + 78 + Records,Photographs: Members of Congress: RPG, Chamberlain, and AC Spark Plug Men, 1957-1958,1958 + + + + + + 387 + 79 + Records,Photographs: Members of Congress: RPG, Chamberlain, McIntosch, and Broomfield, 1957,1957 + + + + + + 387 + 80 + Records,Photographs: Members of Congress: RPG, Chamberlain, Broomfield, McIntosch, and Wolcott, 1957,1957 + + + + + + 387 + 81 + Records,Photographs: Members of Congress: RPG, Chamberlain, McIntosch, Broomfield, Humphrey, etc., 1957,1957 + + + + + + 387 + 82 + Records,Photographs: Members of Congress: RPG, Broomfield, and Haskell, 1957,1957 + + + + + + 387 + 83 + Records,Photographs: Members of Congress: RPG, Broomfield, McIntosch on Nautilus, Spring 1957,1957 + + + + + + 387 + 84 + Records,Photographs: Members of Congress: RPG, Haskell, Tewes, McIntosch, and Mays, 1957-1958,1957-1958 + + + + + + 387 + 85 + Records,Photographs: Members of Congress: RPG and Broomfield, 1/57,1957 + + + + + + 387 + 86 + Records,Photographs: Members of Congress: RPG, Broomfield, Martin, McIntosch, and Chamberlain, 1958,1958 + + + + + + 387 + 87 + Records,Photographs: Members of Congress: RPG, McIntosch, Chamberlain, and Broomfield, 1958,1958 + + + + + + 387 + 88 + Records,Photographs: Members of Congress: RPG, Ford, and Monsignor Whalen of Grand Rapids, No Date,undated + + + + + + 387 + 89 + Records,Photographs: Members of Congress: RPG, chamberlain, McIntosch, and Broomfield, 1957,1957 + + + + + + 387 + 90 + Records,Photographs: Members of Congress: RPG with House Minority Leader, Joe Martin, 1957,1957 + + + + + + 387 + 91 + Records,Photographs: Members of Congress: RPG with Former Congs. Albert J. Engel, 1957,1957 + + + + + + 387 + 92 + Records,Photographs: Members of Congress: RPG and Engel, 1956,1956 + + + + + + 387 + 93 + Records,Photographs: Members of Congress: Cong. John Bennett, Upper Peninsula,1957-1978 + + + + + + 387 + 94 + Records,Photographs: Members of Congress: Congressional Baseball Team, No Date,undated + + + + + + 387 + 95 + Records,Photographs: Members of Congress: Cong. Ed Hutchinson, No Date,undated + + + + + + 387 + 96 + Records,Photographs: Michigan VIPs: RPG and John Carey (American Legion), 9/12/78,1978 + + + + + + 387 + 97 + Records,Photographs: Michigan VIPs: RPG, Jim Quello, and Jim Griffin, 4/7/77,1977 + + + + + + 387 + 98 + Records,Photographs: Michigan VIPs: RPG and Milliken at Bill=s Beefsteak, 3/77,1977 + + + + + + 387 + 99 + Records,Photographs: Michigan VIPs: RPG, Miller, Roudebush, and Chase, Whip Office, 10/18/76,1976 + + + + + + 387 + 100 + Records,Photographs: Michigan VIPs: RPG and State Sen. Carl Pursell, Whip Office, 9/15/76,1976 + + + + + + 387 + 101 + Records,Photographs: Michigan VIPs: RPG and Lou Engman, 1976,1976 + + + + + + 387 + 102 + Records,Photographs: Michigan VIPs: RPG and MI College Presidents, 12/4/75,1975 + + + + + + 387 + 103 + Records,Photographs: Michigan VIPs: RPG and Al Zaparackas, 5/23/75,1975 + + + + + + 387 + 104 + Records,Photographs: Michigan VIPs: RPG and North Oakland Chamber of Commerce, 4/29/75,1975 + + + + + + 387 + 105 + Records,Photographs: Michigan VIPs: RPG and Members Automotive Service Industry Assn., 5/10/75,1975 + + + + + + 387 + 106 + Records,Photographs: Michigan VIPs: RPG, Schoener, Mayor Johnson, Knowlton, and Frederick, 1975,1975 + + + + + + 387 + 107 + Records,Photographs: Michigan VIPs: RPG, Angel, and Garry Brown at Griffin Angel Reception, 9/74,1974 + + + + + + 387 + 108 + Records,Photographs: Michigan VIPs: RPG, Spence Abraham, Cliff Taylor, and others, 8/19/74,1974 + + + + + + 387 + 109 + Records,Photographs: Michigan VIPs: Gov. William G. Milliken, No Date,undated + + + + + + 387 + 110 + Records,Photographs: Michigan VIPs: RPG, McLaughlin, Riecker, DeFrancis, McLaughlin, Inglish, 1974,1974 + + + + + + 387 + 111 + Records,Photographs: Michigan VIPs: RPG, McNaughton, and Mayor Helman, 4/11/74,1974 + + + + + + 387 + 112 + Records,Photographs: Michigan VIPs: RPG and Detroit Mayor, Coleman Young, 1/74,1974 + + + + + + 387 + 113 + Records,Photographs: Michigan VIPs: RPG, Harvey, Engel, and Hart, 12/12/73,1973 + + + + + + 387 + 114 + Records,Photographs: Michigan VIPs: RPG, Engel, Harvey, Hart, and Families, 12/12/73,1973 + + + + + + 387 + 115 + Records,Photographs: Michigan VIPs: RPG with Mayor Elect Coleman Young, 11/30/73,1973 + + + + + + 387 + 116 + Records,Photographs: Michigan VIPs: RPG at Detroit College of Law Commencement, 6/11/73,1973 + + + + + + 387 + 117 + Records,Photographs: Michigan VIPs: RPG and State Rep. Dan Angel, 3/19/73,1973 + + + + + + 387 + 118 + Records,Photographs: Michigan VIPs: RPG, Kitty Wehrli, Dorie Jefferson, and Ted Hunt, 11/22/72,1972 + + + + + + 387 + 119 + Records,Photographs: Michigan VIPs: RPG at Party Honoring Ford at Army-Navy Club, 10/72,1972 + + + + + + 387 + 120 + Records,Photographs: Michigan VIPs: RPG with Detroit Area Mayors, 10/20/72,1972 + + + + + + 387 + 121 + Records,Photographs: Michigan VIPs: RPG and Mickey Lolich of Detroit Tigers, 9/7/72,1972 + + + + + + 387 + 122 + Records,Photographs: Michigan VIPs: RPG and Lolich, 9/72,1972 + + + + + + 387 + 123 + Records,Photographs: Michigan VIPs: RPG, Mrs. Kenneth Shouldice, and Jeff, 6/1/72,1972 + + + + + + 387 + 124 + Records,Photographs: Michigan VIPs: RPG, Mr. and Mrs. Elliott, and Keith Wilson, 5/17/72,1972 + + + + + + 387 + 125 + Records,Photographs: Michigan VIPs: RPG with American Jewish Leaders, 4/19/72,1972 + + + + + + 387 + 126 + Records,Photographs: Michigan VIPs: RPG, Bernardt Hillenbrand (NAC), and Nelson Cook (MAC), 1972,1972 + + + + + + 387 + 127 + Records,Photographs: Michigan VIPs: RPG, Charlotte Williams, and Willard Harris (MAC), 4/12/72,1972 + + + + + + 387 + 128 + Records,Photographs: Michigan VIPs: RPG and Bill Boutell (Pres. MAC), 4/12/72,1972 + + + + + + 387 + 129 + Records,Photographs: Michigan VIPs: RPG, Barry McGuire, and James Callahan (MAC), 4/12/72,1972 + + + + + + 387 + 130 + Records,Photographs: Michigan VIPs: RPG, T.J. Dwyer, and E.G. Wanger of MAC, 4/12/72,1972 + + + + + + 387 + 131 + Records,Photographs: Michigan VIPs: RPG, Robert Fitzpatrick (MAC), and Larry Naake (NAC), 4/72,1972 + + + + + + 387 + 132 + Records,Photographs: Michigan VIPs: RPG, John Brewer, and J.T. Nelson (MAC), 4/12/72,1972 + + + + + + 387 + 133 + Records,Photographs: Michigan VIPs: RPG, Mayor Kenneth Roth, and Broomfield, 3/7/72,1972 + + + + + + 387 + 134 + Records,Photographs: Michigan VIPs: RPG, Mayor Schiffer of Ferndale, 3/7/72,1972 + + + + + + 387 + 135 + Records,Photographs: Michigan VIPs: RPG and Councilman Jose Benavidas, 3/7/72,1972 + + + + + + 387 + 136 + Records,Photographs: Michigan VIPs: RPG, Garry Brown, and Mayor Frederick Brydges, 3/7/72,1972 + + + + + + 387 + 137 + Records,Photographs: Michigan VIPs: RPG, Broomfield, and Councilman Philip Peterson, 3/7/72,1972 + + + + + + 387 + 138 + Records,Photographs: Michigan VIPs: RPG, McGuire, Boutell, Bryant, and Fryer, 3/7/72,1972 + + + + + + 387 + 139 + Records,Photographs: Michigan VIPs: RPG, Brown, and Boutell (MAC), 3/7/72,1972 + + + + + + 387 + 140 + Records,Photographs: Michigan VIPs: RPG and Mayor Gordon Bryant, 3/7/72,1972 + + + + + + 387 + 141 + Records,Photographs: Michigan VIPs: RPG and Councilmen Ventura and Brown, 3/7/72,1972 + + + + + + 387 + 142 + Records,Photographs: Michigan VIPs: RPG, Mayor Roman Gribbs, and Broomfield, 3/7/72,1972 + + + + + + 387 + 143 + Records,Photographs: Michigan VIPs: RPG and Roy O. Fuentes, 2/15/72,1972 + + + + + + 387 + 144 + Records,Photographs: Michigan VIPs: RPG and Thomas F. Schweigert, 2/8/72,1972 + + + + + + 387 + 145 + Records,Photographs: Michigan VIPs: RPG, Mayor Al Martin, Mayor F.J. Dunlop, 2/4/72,1972 + + + + + + 387 + 146 + Records,Photographs: Michigan VIPs: RPG, Irene McCabe, Anthony Sanfemio, Rubino, Bezz, 2/4/72,1972 + + + + + + 387 + 147 + Records,Photographs: Michigan VIPs: RPG with John Martin, Comm. On Aging, Whip Office, 1/24/72,1972 + + + + + + 387 + 148 + Records,Photographs: Michigan VIPs: RPG and Dennis Cawthorne, 1959,1959 + + + + + + 387 + 149 + Records,Photographs: Michigan VIPs: RPG in Detroit, Focus: Hope, 12/20/71,1971 + + + + + + 387 + 150 + Records,Photographs: Michigan VIPs: RPG with Lawrence Davenport, MSU, 12/1/71,1971 + + + + + + 387 + 151 + Records,Photographs: Michigan VIPs: RPG with Milliken Receiving Beautiful MI Award, 11/12/71,1971 + + + + + + 387 + 152 + Records,Photographs: Michigan VIPs: RPG at NAACP Dinner in Port Huron, 10/24/71,1971 + + + + + + 387 + 153 + Records,Photographs: Michigan VIPs: RPG with Robert L. Ewiglenen, Ferris State College, 10/6/71,1971 + + + + + + 387 + 154 + Records,Photographs: Michigan VIPs: RPG with Rev. Banks and Chaplain of the Senate, 9/21/71,1971 + + + + + + 387 + 155 + Records,Photographs: Michigan VIPs: RPG and Mr. Schweikert of Great Lakes Reg. Comm., 9/10/71,1971 + + + + + + 387 + 156 + Records,Photographs: Michigan VIPs: RPG with Detroit Tigers, 9/10/71,1971 + + + + + + 387 + 157 + Records,Photographs: Michigan VIPs: RPG with Rep. John Engler, 9/10/71,1971 + + + + + + 387 + 158 + Records,Photographs: Michigan VIPs: RPG, Judge DeMascio, and Judge Ralph Freeman, 8/26/71,1971 + + + + + + 387 + 159 + Records,Photographs: Michigan VIPs: RPG and Judge Robert E. DeMascio, 7/71,1971 + + + + + + 387 + 160 + Records,Photographs: Michigan VIPs: RPG, Gribbs, and Veterans at Jobs for Vets Luncheon, 7/19/71,1971 + + + + + + 387 + 161 + Records,Photographs: Michigan VIPs: RPG and DeMascio, 7/5/71,1971 + + + + + + 387 + 162 + Records,Photographs: Michigan VIPs: RPG and Judge Robert E. DeMascio in VP=s Office, 7/5/71,1971 + + + + + + 387 + 163 + Records,Photographs: Michigan VIPs: RPG at Press Conference on Jobs for Vets, 6/1/71,1971 + + + + + + 387 + 164 + Records,Photographs: Michigan VIPs: RPG with Judge Pratt and Family, 6/71,1971 + + + + + + 387 + 165 + Records,Photographs: Michigan VIPs: RPG with John J. Riccardo (Chrysler), 6/10/71,1971 + + + + + + 387 + 166 + Records,Photographs: Michigan VIPs: RPG with Mayor Clarence Hanlon, 5/31/71,1971 + + + + + + 387 + 167 + Records,Photographs: Michigan VIPs: RPG and Rabbi Kanter and Large Group, 4/71,1971 + + + + + + 387 + 168 + Records,Photographs: Michigan VIPs: RPG with Group at NAACP Dinner, 4/25/71,1971 + + + + + + 387 + 169 + Records,Photographs: Michigan VIPs: RPG Receiving Honorary Degree at WMU, 4/17/71,1971 + + + + + + 387 + 170 + Records,Photographs: Michigan VIPs: RPG with Mayor Bivens (Inkster, MI), 3/71,1971 + + + + + + 387 + 171 + Records,Photographs: Michigan VIPs: RPG, Milliken at Upper Peninsula Inaugural , 3/71,1971 + + + + + + 387 + 172 + Records,Photographs: Michigan VIPs: RPG with Gustave Gaynett, Spanish American Leader, 3/71,1971 + + + + + + 387 + 173 + Records,Photographs: Michigan VIPs: RPG, Judges Feikens, Freeman, and Kennedy, 3/8/71,1971 + + + + + + 387 + 174 + Records,Photographs: Michigan VIPs: RPG with Great Lakes Senators, 3/4/71,1971 + + + + + + 387 + 175 + Records,Photographs: Michigan VIPs: RPG, Catherine McMullen, and William McLaughlin, 2/24/71,1971 + + + + + + 387 + 176 + Records,Photographs: Michigan VIPs: RPG with Cong. Garry Brown, 1971,1971 + + + + + + 387 + 177 + Records,Photographs: Michigan VIPs: RPG with Cong. William Broomfield, 1971,1971 + + + + + + 387 + 178 + Records,Photographs: Michigan VIPs: RPG with Cong. Phil Ruppe, 1971,1971 + + + + + + 387 + 179 + Records,Photographs: Michigan VIPs: RPG with Mayor Gribbs, 1971,1971 + + + + + + 387 + 180 + Records,Photographs: Michigan VIPs: RPG with Dr. Sponberg, 1970,1970 + + + + + + 387 + 181 + Records,Photographs: Michigan VIPs: RPG, Pete and Elly Peterson, etc., Retirement Party, 12/70,1970 + + + + + + 387 + 182 + Records,Photographs: Michigan VIPs: RPG with Judge W. Wallace Kent, 12/16/70,1970 + + + + + + 387 + 183 + Records,Photographs: Michigan VIPs: RPG with Judge Albert J. Engel and Wife, 12/70,1970 + + + + + + 387 + 184 + Records,Photographs: Michigan VIPs: RPG with Judge Cornelia Kennedy, 10/22/70,1970 + + + + + + 387 + 186 + Records,Photographs: Michigan VIPs: RPG, Brickley, Guy, VanTiem, Keenan, Laess, Housnen, 1970,1970 + + + + + + 387 + 187 + Records,Photographs: Michigan VIPs: RPG, Behrendt, Ostroski, Kwitt, Zlotorzynski, 1970,1970 + + + + + + 387 + 188 + Records,Photographs: Michigan VIPs: RPG, Tony Rozman, and John Beatty, Jr., 1969-1970,1969-1970 + + + + + + 387 + 189 + Records,Photographs: Michigan VIPs: RPG with UAW Members, Campaign, 1972,1972 + + + + + + 387 + 190 + Records,Photographs: Michigan VIPs: RPG with Detroit Tigers, 6/25/70,1970 + + + + + + 387 + 191 + Records,Photographs: Michigan VIPs: RPG, Judge Noel Fox, and Judge Wallace Kent, 5/15/70,1970 + + + + + + 387 + 192 + Records,Photographs: Michigan VIPs: RPG, William Bryant, and Carl Purcell, 4/5/70,1970 + + + + + + 387 + 193 + Records,Photographs: Michigan VIPs: RPG, Lee MacGregor, and Tom Tresh (Det. Tigers), 7/7/69,1969 + + + + + + 387 + 194 + Records,Photographs: Michigan VIPs: RPG, Elly Peterson, and Victor Lim, 6/69,1969 + + + + + + 387 + 195 + Records,Photographs: Michigan VIPs: RPG and Bill McLaughlin, 5/21/68,1968 + + + + + + 387 + 196 + Records,Photographs: Michigan VIPs: RPG and Milliken, Senate Dining Room, 5/8/69,1969 + + + + + + 387 + 197 + Records,Photographs: Michigan VIPs: RPG and Keystone Cops in South Haven, 4/29/69,1969 + + + + + + 387 + 198 + Records,Photographs: Michigan VIPs: RPG and Mike Dively, 3/24/69,1969 + + + + + + 387 + 199 + Records,Photographs: Michigan VIPs: RPG and John Hannah, Named to Head AID, 3/20/69,1969 + + + + + + 387 + 200 + Records,Photographs: Michigan VIPs: RPG at Lincoln Day Dinner for 16th Cong. Dist.,3/14/69,1969 + + + + + + 387 + 201 + Records,Photographs: Michigan VIPs: RPG at Lincoln Day Dinner with Ecorse Officials, 3/14/69,1969 + + + + + + 387 + 202 + Records,Photographs: Michigan VIPs: RPG, Mrs. Sam Zilly, and Hrand Hampikian, 2/24/69,1969 + + + + + + 387 + 203 + Records,Photographs: Michigan VIPs: RPG with Judge Albert Engel, Jr. and Wife, 2/19/69,1969 + + + + + + 387 + 204 + Records,Photographs: Michigan VIPs: RPG with Former State Senator John P. Smeekens, 2/7/69,1969 + + + + + + 387 + 205 + Records,Photographs: Michigan VIPs: RPG Receiving Honorary LLD at EMU, 1/69,1969 + + + + + + 387 + 206 + Records,Photographs: Michigan VIPs: RPG at Milliken's Beefsteak Birthday Party, 1969,1969 + + + + + + 387 + 207 + Records,Photographs: Michigan VIPs: RPG and Gov. Milliken, 1/21/69,1969 + + + + + + 387 + 208 + Records,Photographs: Michigan VIPs: RPG with Judge Homer Ferguson and Noble Travis, 1/17/69,1969 + + + + + + 387 + 209 + Records,Photographs: Michigan VIPs: RPG with Mother Charleszetta Waddles of Detroit, 1/18/69,1969 + + + + + + 387 + 210 + Records,Photographs: Michigan VIPs: RPG with George Romney at his Senate Hearing, 1/16/69,1969 + + + + + + 387 + 211 + Records,Photographs: Michigan VIPs: RPG with Lenore Romney, 10/29/68,1968 + + + + + + 387 + 212 + Records,Photographs: Michigan VIPs: RPG with Detroit Tigers at Capitol, 8/68,1968 + + + + + + 387 + 213 + Records,Photographs: Michigan VIPs: RPG with Alfred May, 6/68,1968 + + + + + + 387 + 214 + Records,Photographs: Michigan VIPs: RPG with John Alfred Hanna, 1967,1967 + + + + + + 387 + 215 + Records,Photographs: Michigan VIPs: RPG with William Keast, WSU President, 12/5/67,1967 + + + + + + 387 + 216 + Records,Photographs: Michigan VIPs: Dorothy Koepke and Husband, 10/5/67,1967 + + + + + + 387 + 217 + Records,Photographs: Michigan VIPs: RPG with Metropolitan Action Committee, 9/25/67,1967 + + + + + + 387 + 218 + Records,Photographs: Michigan VIPs: RPG with Metropolitan Action Committee, 9/25/67,1967 + + + + + + 387 + 219 + Records,Photographs: Michigan VIPs: RPG with Earl Kennedy, RSCC VP, 9/25/67,1967 + + + + + + 387 + 220 + Records,Photographs: Michigan VIPs: RPG with Michigan Legislators, 8/25/67,1967 + + + + + + 387 + 221 + Records,Photographs: Michigan VIPs: RPG with Gov. George Romney in Vandenberg Rm., 8/16/67,1967 + + + + + + 387 + 222 + Records,Photographs: Michigan VIPs: RPG with Vandenberg Daughters in Vandenberg Rm., 4/5/67,1967 + + + + + + 387 + 223 + Records,Photographs: Michigan VIPs: RPG and Mrs. G., Gov. Romney and Wife, Max fisher, 3/2/67,1967 + + + + + + 387 + 224 + Records,Photographs: Michigan VIPs: RPG with Walker Cisler (Detroit Edison), 2/1/67,1967 + + + + + + 387 + 225 + Records,Photographs: Michigan VIPs: RPG with Francis Kornegay and Son, Francis, 1/27/67,1967 + + + + + + 387 + 226 + Records,Photographs: Michigan VIPs: RPG with Former Detroit Lion Tackle, Floyd Jaye, 1/23/67,1967 + + + + + + 387 + 227 + Records,Photographs: Michigan VIPs: RPG with Michigan Republican Delegation, 1/10/67,1967 + + + + + + 387 + 228 + Records,Photographs: Michigan VIPs: RPG, Averell Harriman, and Romney in Muskegon, 1964,1964 + + + + + + 387 + 229 + Records,Photographs: Michigan VIPs: RPG, Gov. Romney and Cong. Goodell, 1966,1966 + + + + + + 387 + 230 + Records,Photographs: Michigan VIPs: RPG, Laird, Romney, Goodell, Cederberg, Ford, 1966,1966 + + + + + + 387 + 231 + Records,Photographs: Michigan VIPs: RPG and Detroit Tigers, 1966,1966 + + + + + + 387 + 232 + Records,Photographs: Michigan VIPs: RPG, Engstrom, Milliken, Hatfield, 1966,1966 + + + + + + 387 + 233 + Records,Photographs: Michigan VIPs: RPG with Romney After Appointment to Senate, 1966,1966 + + + + + + 387 + 234 + Records,Photographs: Michigan VIPs: RPG with MI Republican Delegation, 1966,1966 + + + + + + 387 + 235 + Records,Photographs: Michigan VIPs: RPG, Dr. Judson Faust, Honorary Degree at CMU, 1963,1963 + + + + + + 387 + 236 + Records,Photographs: Michigan VIPs: RPG with Gerber Products Co. Officials, 12/61,1961 + + + + + + 387 + 237 + Records,Photographs: Michigan VIPs: RPG, Elly Peterson, Women=s Conf. Delegates, 4/14/59,1959 + + + + + + 387 + 238 + Records,Photographs: Michigan VIPs: RPG, Milliken at Capitol, Late 1950's,1950-1959 + + + + + + 387 + 239 + Records,Photographs: Michigan VIPs: RPG, Milliken and Wife, Late 1950's,1950-1959 + + + + + + 387 + 240 + Records,Photographs: Michigan VIPs: RPG with A. J. Engel, Engelwood Plantations, 1958,1958 + + + + + + 387 + 241 + Records,Photographs: Michigan VIPs: RPG, Wendell Miles, and Harry Jennings, 7/57,1957 + + + + + + 387 + 242 + Records,Photographs: Michigan VIPs: RPG, Ford, and Monsignor Whalen, No Date,undated + + + + + + 387 + 243 + Records,Photographs: Michigan VIPs: RPG with Detroit Mayor Al Cobo, 1956,1956 + + + + + + 388 + 1 + Records,Photographs: Travel, RPG and...,1957-1978 + + + + + + 388 + 2 + Records,Photographs: Israel, 11/76,1976 + + + + + + 388 + 3 + Records,Photographs: Jerusalem Trip, 11/76,1976 + + + + + + 388 + 4 + Records,Photographs: Mrs. G. in Iran with the Shah, 11/76,1976 + + + + + + 388 + 5 + Records,Photographs: Prime Minister Muldoon of New Zealand, 1/76,1976 + + + + + + 388 + 6 + Records,Photographs: Joseph John Jova, Ambassador to Mexico, 1/76,1976 + + + + + + 388 + 7 + Records,Photographs: Armistead Selden, Jr., and Muldoon, 1/76,1976 + + + + + + 388 + 8 + Records,Photographs: During Bucharest Trip, 4/19/74,1974 + + + + + + 388 + 9 + Records,Photographs: Mrs. G. and Chinese Children, 7/73,1973 + + + + + + 388 + 10 + Records,Photographs: Group Shots with Premier Chou En-lai, Peking, 7/73,1973 + + + + + + 388 + 11 + Records,Photographs: Campaigning@ in PRC, 7/73,1973 + + + + + + 388 + 12 + Records,Photographs: Commerce Committee, with Brezhnev at Kremlin, 4/73,1973 + + + + + + 388 + 13 + Records,Photographs: Commerce Committee in Poland, Hungary, Czech., 4/73,1973 + + + + + + 388 + 14 + Records,Photographs: Brezhnev, Pearson at the Kremlin, 4/73,1973 + + + + + + 388 + 15 + Records,Photographs: Brezhnev, 4/73,1973 + + + + + + 388 + 16 + Records,Photographs: Brezhnev, Baker at the Kremlin, 4/73,1973 + + + + + + 388 + 17 + Records,Photographs: Detroit Tiger, Jim Northup, 3/18/72,1972 + + + + + + 388 + 18 + Records,Photographs: Detroit Tiger, Barney Youngblood, 3/18/72,1972 + + + + + + 388 + 19 + Records,Photographs: Detroit Tiger's Manager, Billy Martin, 3/18/72,1972 + + + + + + 388 + 20 + Records,Photographs: Detroit Tiger's Owner, John Fetzer, 3/18/72,1972 + + + + + + 388 + 21 + Records,Photographs: Detroit Tiger, Al Kaline, 3/18/72,1972 + + + + + + 388 + 22 + Records,Photographs: Detroit Tigers, Rodriguez and Freehan, 4/18/72,1972 + + + + + + 388 + 23 + Records,Photographs: Detroit Tiger, Bill Freehan, 4/18/72,1972 + + + + + + 388 + 24 + Records,Photographs: Detroit Tigers, 4/18/72,1972 + + + + + + 388 + 25 + Records,Photographs: Detroit Tiger, Ike Brown, 4/18/72,1972 + + + + + + 388 + 26 + Records,Photographs: Reunion with WWII Army Unit, 9/8/71,1971 + + + + + + 388 + 27 + Records,Photographs: Mrs. G., and Pope Paul VI, 11/15/70,1970 + + + + + + 388 + 28 + Records,Photographs: Jackson, Sparkman, Middendorf (NATO), 11/70,1970 + + + + + + 388 + 29 + Records,Photographs: Vitamins for Vietnam, 1966,1966 + + + + + + 388 + 30 + Records,Photographs: Dulles Airport Departing for Vietnam, 5/6/66,1966 + + + + + + 388 + 31 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford with Hudson 4-H Group, 3/19/74,1974 + + + + + + 388 + 32 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford with Sand Creek 4-H Group, 3/19/74,1974 + + + + + + 388 + 33 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford with Portage 4-H Group, 3/19/79,1979 + + + + + + 388 + 34 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Pres. Nixon at State of Union Address, 1/30/74,1974 + + + + + + 388 + 35 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Schweiker, Hugh Scott, and VP Ford, 12/10/73,1973 + + + + + + 388 + 36 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Cederberg, and Ford, 12/5/73,1973 + + + + + + 388 + 37 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford, and Cong. James Harvey, 12/5/73,1973 + + + + + + 388 + 38 + Records,Photographs: Presidents and Vice Presidents, RPG and...: VP Designate, Jerry Ford, 12/5/73,1973 + + + + + + 388 + 39 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford and MI Delegation, 12/5/73,1973 + + + + + + 388 + 40 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Rules Committee at Ford Confirmation Hearings, 11/1/73,1973 + + + + + + 388 + 41 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford at Senate Confirmation Hearings, 11/1/73,1973 + + + + + + 388 + 42 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Mrs. G., Ford and Wife, 10/30/73,1973 + + + + + + 388 + 43 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Nixon at Tri-City Airport, 10/28/72,1972 + + + + + + 388 + 44 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Nixon, Elliot Richardson, 1972,1972 + + + + + + 388 + 45 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Nixon, Tower, Byrd, Buckley, Baker, 1972,1972 + + + + + + 388 + 46 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Nixon, and Detroit Tiger, Mickey Lolich, 9/72,1972 + + + + + + 388 + 47 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Nixon Presenting Bowling Plaque, 8/24/72,1972 + + + + + + 388 + 48 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Agnew at Republican Convention, Miami, 8/72,1972 + + + + + + 388 + 49 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Nixon, and Senators Aboard AFL, Ellender Funeral, 1972,1972 + + + + + + 388 + 50 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Statue of Pres. Lincoln, 2/9/72,1972 + + + + + + 388 + 51 + Records,Photographs: Presidents and Vice Presidents, RPG and...: State of Union Address, 1/21/72,1972 + + + + + + 388 + 52 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford at GOP Dinner, Detroit, 10/18/71,1971 + + + + + + 388 + 53 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Nixon at Signing of Mass Transit Asst. Act, 10/15/70,1970 + + + + + + 388 + 54 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Nixon at Signing of Airport Development Act, 5/21/70,1970 + + + + + + 388 + 55 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Nixon at White House, 5/21/70,1970 + + + + + + 388 + 56 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Nixon at White House, 1969,1969 + + + + + + 388 + 57 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Nixon in White House, 5/20/69,1969 + + + + + + 388 + 58 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Luncheon in Majority Leaders Office, 11/14/69,1969 + + + + + + 388 + 59 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Nixon, and Republican Leadership in Cabinet Rm., 1969,1969 + + + + + + 388 + 60 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Nixon, at Rumsfeld Swearing-In, 5/26/69,1969 + + + + + + 388 + 61 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Agnew, and National Cherry Queen, 2/25/69,1969 + + + + + + 388 + 62 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Campaigning with Nixon in Southfield, 10/29/68,1968 + + + + + + 388 + 63 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Mrs. G., and Nixon at Republican Gala, 3/5/68,1968 + + + + + + 388 + 64 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Former Pres. Eisenhower, Gettysburg, 8/30/66,1966 + + + + + + 388 + 65 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Humphrey and Hart at Swearing-In, 5/66,1966 + + + + + + 388 + 66 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Humphrey at Swearing-In, 5/16/66,1966 + + + + + + 388 + 67 + Records,Photographs: Presidents and Vice Presidents, RPG and...: LBJ, Dent, Perkins, and Others, 8/61,1961 + + + + + + 388 + 68 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Nixon, and Cherry Queen, Late 1950's,1950-1959 + + + + + + 388 + 69 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Pres. Eisenhower, and Cong. Landrum, 9/14/59,1959 + + + + + + 388 + 70 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Nixon, McIntosh, and Broomfield, 1/15/58,1958 + + + + + + 388 + 71 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Nixon at House Recording Studio, 1957,1957 + + + + + + 388 + 72 + Records,Photographs: Presidents and Vice Presidents, RPG and...: President Eisenhower at White House, 1957,1957 + + + + + + 388 + 73 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Nixon, Potter, and Miss Michigan, 1958,1958 + + + + + + 388 + 74 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Eisenhower, and Republican Candidates, 9/56,1956 + + + + + + 388 + 75 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Mrs. G. with VP Nixon, 1956 Campaign,1956 + + + + + + 388 + 76 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Pres. Carter at White House, 9/26/77,1977 + + + + + + 388 + 77 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Carter State of Union Address, 1/77,1977 + + + + + + 388 + 78 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Carter Inauguration, 1/20/77,1977 + + + + + + 388 + 79 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford State of Union Address, 1/77,1977 + + + + + + 388 + 80 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford, and Ruppe, Meeting o Kincheloe, 12/16/76,1976 + + + + + + 388 + 81 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Pres. Ford at Bill Signing, 10/15/76,1976 + + + + + + 388 + 82 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford and Miss Deaf America, 8/76,1976 + + + + + + 388 + 83 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford and Others at Foreign Policy Announcement, 5/76,1976 + + + + + + 388 + 84 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford and Rogers Morton, 5/12/76,1976 + + + + + + 388 + 85 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford on Trip to Michigan, 5/12/76,1976 + + + + + + 388 + 86 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford, Hart, Broomfield with Easter Seal Child, 2/26/76,1976 + + + + + + 388 + 87 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Milliken, Rockefeller, and Orville Hubbard, 1/30/76,1976 + + + + + + 388 + 88 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford and Hal Haskell at White House, 12/19/75,1975 + + + + + + 388 + 89 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford, Bipartisan Leadership on Sequoia, 8/12/75,1975 + + + + + + 388 + 90 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford at Traverse City Parade, 7/75,1975 + + + + + + 388 + 91 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford, Hart, and Mansfield, 4/10/75,1975 + + + + + + 388 + 92 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford at White House Reception, 1975,1975 + + + + + + 388 + 93 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Rockefeller Hearings, 11/13/74,1974 + + + + + + 388 + 94 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Pres. Ford in Oval Office, 10/18/74,1974 + + + + + + 388 + 95 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford at Joint Session of Congress, 10/8/74,1974 + + + + + + 388 + 96 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Pres. Ford at Pension Bill Signing, 9/74,1974 + + + + + + 388 + 97 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford Transition Team, White House, 8/20/74,1974 + + + + + + 388 + 98 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Announcement of Rockefeller as Nominee, 8/20/74,1974 + + + + + + 388 + 99 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford after Swearing-In, 8/74,1974 + + + + + + 388 + 100 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Mike Radock, Ford, and Cederberg, 5/1/74,1974 + + + + + + 388 + 101 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford, Rev. Lignell, and Dr. Elson, 5/1/74,1974 + + + + + + 388 + 102 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Carter State of Union Address, 1/19/78,1978 + + + + + + 388 + 103 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford, and Judge Wendell Miles, 4/9/74,1974 + + + + + + 388 + 104 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford and Franklin JHS Students, 3/20/74,1974 + + + + + + 388 + 105 + Records,Photographs: Presidents and Vice Presidents, RPG and...: Ford with 4-H Groups, 3/19/74,1974 + + + + + + 388 + 106 + Records,Photographs: Contact Sheets: Griffin Contact Sheets, 1971,1971 + + + + + + 388 + 107 + Records,Photographs: Contact Sheets: Griffin Contact Sheets, 2/2/71,1971 + + + + + + 388 + 108 + Records,Photographs: Contact Sheets: Griffin Contact Prints, undated,undated + + + + + + 388 + 109 + Records,Photographs: Contact Sheets: Griffin Contact Sheets, undated,undated + + + + + + 388 + 110 + Records,Photographs: Contact Sheets: Griffin Today Show, Contact Sheets, 4/69,1969 + + + + + + 389 + 1 + Records,Biographies, RPG and...: Senator RPG, 3/77,1957-1978 + + + + + + 389 + 2 + Records,Biographies, RPG and...: Marjorie Jean Griffin, 1/76,1957-1978 + + + + + + 389 + 3 + Records,Biographies, RPG and...: Suggested Speech Introduction, 9/77,1957-1978 + + + + + + 389 + 4 + Records,Biographies, RPG and...: Committees and Subcommittees, 95th Congress,1957-1978 + + + + + + 389 + 5 + Records,Biographies, RPG and...: Profile by David Broder, 8/16/76,1957-1978 + + + + + + 389 + 6 + Records,Biographies, RPG and...: Profile by Christian Science Monitor, 3/29/76,1957-1978 + + + + + + 389 + 7 + Records,Biographies, RPG and...: Profiles,1957-1978 + + + + + + 389 + 8 + Records,Biographies, RPG and...: Biographical Sketch, 1/75,1957-1978 + + + + + + 389 + 9 + Records,Biographies, RPG and...: Biographies, 1973,1957-1978 + + + + + + 389 + 10 + Records,Biographies, RPG and...: Champion at Doing the Impossible,1957-1978 + + + + + + 389 + 11 + Records,Biographies, RPG and...: Did You Know that Sen. Bob Griffin...,1957-1978 + + + + + + 389 + 12 + Records,Biographies, RPG and...: Questionnaires,1957-1978 + + + + + + 389 + 13 + Records,Photographs: Family, RPG and...: Mrs. G., Passport Photos,1957-1978 + + + + + + 389 + 14 + Records,Photographs: Family, RPG and...: Mrs. G., First Lady=s Luncheon, Senate Wives, 4/78,1957-1978 + + + + + + 389 + 15 + Records,Photographs: Family, RPG and...: Announcement for Re-election, 2/78,1957-1978 + + + + + + 389 + 16 + Records,Photographs: Family, RPG and...: Mrs. G., and Jill=s Friend, Brian, 5/17/77,1957-1978 + + + + + + 389 + 17 + Records,Photographs: Family, RPG and...: Mrs. G., International Club Luncheon, 5/4/77,1957-1978 + + + + + + 389 + 18 + Records,Photographs: Family, RPG and...: Mrs. G., Mr. and Mrs. Sullivan and Son, 4/20/77,1957-1978 + + + + + + 389 + 19 + Records,Photographs: Family, RPG and...: Mrs. G. and Sullivans (Mrs. G.=s Classmate), 4/14/77,1957-1978 + + + + + + 389 + 20 + Records,Photographs: Family, RPG and...: Jill in Front of Capitol, 8/26/76,1957-1978 + + + + + + 389 + 21 + Records,Photographs: Family, RPG and...: Jill in Senator=s Dining Room, 8/26/76,1957-1978 + + + + + + 389 + 22 + Records,Photographs: Family, RPG and...: Mrs. G. and Foreign Students, 6/21/76,1957-1978 + + + + + + 389 + 23 + Records,Photographs: Family, RPG and...: Mrs. G., Jill, and Her Western HS Class, 3/76,1957-1978 + + + + + + 389 + 24 + Records,Photographs: Family, RPG and...: Jerry Griffin, Ludington, and Schweitzer, 1/6/75,1957-1978 + + + + + + 389 + 25 + Records,Photographs: Family, RPG and...: Mrs. G. and Mr. and Mrs. Jerry Griffin, 11/6/75,1957-1978 + + + + + + 389 + 26 + Records,Photographs: Family, RPG and...: Paul Griffin, Russell, Hardy, Rosen, Aresso, 10/75,1957-1978 + + + + + + 389 + 27 + Records,Photographs: Family, RPG and...: Mrs. G., Dr. Abel with Bronze Bust of RPG, 8/75,1957-1978 + + + + + + 389 + 28 + Records,Photographs: Family, RPG and...: Mrs. G., Mrs. Ford, and Jack Hushen, 7/75,1957-1978 + + + + + + 389 + 29 + Records,Photographs: Family, RPG and...: Mrs. G. at Senate Ladies Luncheon, 4/22/75,1957-1978 + + + + + + 389 + 30 + Records,Photographs: Family, RPG and...: Mrs. G. and Judges= Wives, 3/14/75,1957-1978 + + + + + + 389 + 31 + Records,Photographs: Family, RPG and...: Mrs. G. and Mrs. Nixon at Luncheon, 4/29/74,1957-1978 + + + + + + 389 + 32 + Records,Photographs: Family, RPG and...: Mrs. G., 1974,1957-1978 + + + + + + 389 + 33 + Records,Photographs: Family, RPG and...: Mrs. G. with Dr. and Mrs. Aquilar, 5/17/74,1957-1978 + + + + + + 389 + 34 + Records,Photographs: Family, RPG and...: Mrs. G. at Canadian Reception, 4/4/73,1957-1978 + + + + + + 389 + 35 + Records,Photographs: Family, RPG and...: Mrs. G., Mrs. Taft, Mrs. Stafford, Mrs. Ribicoff, 4/73,1957-1978 + + + + + + 389 + 36 + Records,Photographs: Family, RPG and...: Mrs. G. in Inauguration Parade, 2/20/73,1957-1978 + + + + + + 389 + 37 + Records,Photographs: Family, RPG and...: Mrs. G., 1972,1957-1978 + + + + + + 389 + 38 + Records,Photographs: Family, RPG and...: Mrs. G., 25th Wedding Anniversary, 5/11/72,1957-1978 + + + + + + 389 + 39 + Records,Photographs: Family, RPG and...: Mrs. G. at Lithuanian Day Luncheon, 4/13/72,1957-1978 + + + + + + 389 + 40 + Records,Photographs: Family, RPG and...: Mrs. G. at Luncheon for Mrs. Nixon, 4/11/72,1957-1978 + + + + + + 389 + 41 + Records,Photographs: Family, RPG and...: Mrs. G. in Whip Office, 2/28/72,1957-1978 + + + + + + 389 + 42 + Records,Photographs: Family, RPG and...: Mrs. G. with Nelson Gross (Drug Abuse Expert), 2/72,1957-1978 + + + + + + 389 + 43 + Records,Photographs: Family, RPG and...: Mrs. G. and Debbie Insley, 2/1/72,1957-1978 + + + + + + 389 + 44 + Records,Photographs: Family, RPG and...: Mrs. G. and Earl Butz, 2/28/72,1957-1978 + + + + + + 389 + 45 + Records,Photographs: Family, RPG and...: Mrs. G., Mrs. Hruska, and Mrs. Hutchinson, 2/25/72,1957-1978 + + + + + + 389 + 46 + Records,Photographs: Family, RPG and...: Mrs. G. at Bethesda Home, 1/15/72,1957-1978 + + + + + + 389 + 47 + Records,Photographs: Family, RPG and...: Jerry Griffin, Al Ulle, Bill Schweitzer, 12/71,1957-1978 + + + + + + 389 + 48 + Records,Photographs: Family, RPG and...: Family at Long Lake Home, 10/7/71,1957-1978 + + + + + + 389 + 49 + Records,Photographs: Family, RPG and...: Mrs. G. at Cherry Festival, Summer 1971,1957-1978 + + + + + + 389 + 50 + Records,Photographs: Family, RPG and...: Mrs. G. with Mr. and Mrs. Jay Hall, 4/1/71,1957-1978 + + + + + + 389 + 51 + Records,Photographs: Family, RPG and...: Family in Kitchen, 2/2/71,1957-1978 + + + + + + 389 + 52 + Records,Photographs: Family, RPG and...: Mrs. G. Nose-to-Nose, 2/2/71,1957-1978 + + + + + + 389 + 53 + Records,Photographs: Family, RPG and...: Mrs. G. In and Around the Capitol, 2/2/71,1957-1978 + + + + + + 389 + 54 + Records,Photographs: Family, RPG and...: Parents, 10/16/70,1957-1978 + + + + + + 389 + 55 + Records,Photographs: Family, RPG and...: Mrs. G. Near Capitol, 6/4/70,1957-1978 + + + + + + 389 + 56 + Records,Photographs: Family, RPG and...: Mrs. G. and Her Father Near Capitol, 6/4/70,1957-1978 + + + + + + 389 + 57 + Records,Photographs: Family, RPG and...: Mrs. G., Mrs. Eagleton, and Mamie Eisenhower, 4/28/70,1957-1978 + + + + + + 389 + 58 + Records,Photographs: Family, RPG and...: Mrs. G. and Senate Wives Meet Mrs. Koontz (Labor Dept.), 1970,1957-1978 + + + + + + 389 + 59 + Records,Photographs: Family, RPG and...: Mrs. G. and Mrs. Hugh Scott, 4/14/70,1957-1978 + + + + + + 389 + 60 + Records,Photographs: Family, RPG and...: Mrs. G., Mrs. Chennault, and Mrs. Allott, 4/14/70,1957-1978 + + + + + + 389 + 61 + Records,Photographs: Family, RPG and...: Family Christmas Photo, 12/69,1957-1978 + + + + + + 389 + 62 + Records,Photographs: Family, RPG and...: Mrs. G. Celebrate Whip Victory, 9/24/69,1957-1978 + + + + + + 389 + 63 + Records,Photographs: Family, RPG and...: Mrs. G. Celebrate 46th Birthday, 11/6/69,1957-1978 + + + + + + 389 + 64 + Records,Photographs: Family, RPG and...: Mrs. G. at Whip Victory Party, 10/1/69,1957-1978 + + + + + + 389 + 65 + Records,Photographs: Family, RPG and...: Mrs. G. at Senate Wives Luncheon for Mrs. Nixon, 4/21/69,1957-1978 + + + + + + 389 + 66 + Records,Photographs: Family, RPG and...: Mrs. G. with Republican Wives, 2/15/69,1957-1978 + + + + + + 389 + 67 + Records,Photographs: Family, RPG and...: Mrs. G. and Officers of Republican Cong. Wives,1/69,1957-1978 + + + + + + 389 + 68 + Records,Photographs: Family, RPG and...: Mrs. G. and Gin Chan of Muskegon, 8/21/68,1957-1978 + + + + + + 389 + 69 + Records,Photographs: Family, RPG and...: Mrs. G., Eugene Griffin and Family, 5/68,1957-1978 + + + + + + 389 + 70 + Records,Photographs: Family, RPG and...: Jerry Griffin, and Businessmen, 5/1/68,1957-1978 + + + + + + 389 + 71 + Records,Photographs: Family, RPG and...: Family at Christmas, 12/67,1957-1978 + + + + + + 389 + 72 + Records,Photographs: Family, RPG and...: Aunt and Uncle at Capitol, 6/21/67,1957-1978 + + + + + + 389 + 73 + Records,Photographs: Family, RPG and...: Mrs. G. at Reception, 1967,1957-1978 + + + + + + 389 + 74 + Records,Photographs: Family, RPG and...: Mrs. G., 1966,1957-1978 + + + + + + 389 + 75 + Records,Photographs: Family, RPG and...: Home in Traverse City, 1966,1957-1978 + + + + + + 389 + 76 + Records,Photographs: Family, RPG and...: Mrs. G. and Father, William E. Anderson, 1966,1957-1978 + + + + + + 389 + 77 + Records,Photographs: Family, RPG and...: Mrs. G.,1957-1978 + + + + + + 389 + 78 + Records,Photographs: Family, RPG and...: Family, 1966,1957-1978 + + + + + + 389 + 79 + Records,Photographs: Family, RPG and...: Mrs. G. and Jill, 1966,1957-1978 + + + + + + 389 + 80 + Records,Photographs: Family, RPG and...: Family, Christmas, 1966,1957-1978 + + + + + + 389 + 81 + Records,Photographs: Family, RPG and...: Broomfield, Mr. and Mrs. Childers, 1966,1957-1978 + + + + + + 389 + 82 + Records,Photographs: Family, RPG and...: Mrs. G. Enrolling Jill in Kindergarten, 1966,1957-1978 + + + + + + 389 + 83 + Records,Photographs: Family, RPG and...: Griffin Children Campaigning for Dad, 2/21/66,1957-1978 + + + + + + 389 + 84 + Records,Photographs: Family, RPG and...: Family on Capitol Steps for Swearing-In, 5/66,1957-1978 + + + + + + 389 + 85 + Records,Photographs: Family, RPG and...: Family on Capitol Steps for Swearing-In, 5/66,1957-1978 + + + + + + 389 + 86 + Records,Photographs: Family, RPG and...: Family at RPG Swearing-In, 5/66,1957-1978 + + + + + + 389 + 87 + Records,Photographs: Family, RPG and...: Family and Relatives at Swearing-In, 5/66,1957-1978 + + + + + + 389 + 88 + Records,Photographs: Family, RPG and...: Family and Aunt Edna Foss at Swearing-In, 5/66,1957-1978 + + + + + + 389 + 89 + Records,Photographs: Family, RPG and...: Family and Relatives at Swearing-In Lunch, 5/66,1957-1978 + + + + + + 389 + 90 + Records,Photographs: Family, RPG and...: Parents at Swearing-In, 5/66,1957-1978 + + + + + + 389 + 91 + Records,Photographs: Family, RPG and...: Aunt Edna Foss and Mother, 5/66,1957-1978 + + + + + + 389 + 92 + Records,Photographs: Family, RPG and...: Daughter Jill at Swearing-In, 5/66,1957-1978 + + + + + + 389 + 93 + Records,Photographs: Family, RPG and...: Family at Christmas, 1965,1957-1978 + + + + + + 389 + 94 + Records,Photographs: Family, RPG and...: Cousin Homer Cutler and Family, 1965,1957-1978 + + + + + + 389 + 95 + Records,Photographs: Family, RPG and...: Griffin Children on Staircase at Home, 12/64,1957-1978 + + + + + + 389 + 96 + Records,Photographs: Family, RPG and...: Griffin Family Photos, 1964,1957-1978 + + + + + + 389 + 97 + Records,Photographs: Family, RPG and...: Mrs. G.'s Brother Clyde and Family, 1961,1957-1978 + + + + + + 389 + 98 + Records,Photographs: Family, RPG and...: Brother Jerry Griffin and Wife, 1961,1957-1978 + + + + + + 389 + 99 + Records,Photographs: Family, RPG and...: Mrs. G. at 10 Outstanding Young Men Award, 1960,1957-1978 + + + + + + 389 + 100 + Records,Photographs: Family, RPG and...: Brother Jerry and Family, 1959,1957-1978 + + + + + + 389 + 101 + Records,Photographs: Family, RPG and...: Rick, Jim, and West Point Cadets, no date,1957-1978 + + + + + + 389 + 102 + Records,Photographs: Family, RPG and...: Mrs. G. with Grandmother Reeves, 1958,1957-1978 + + + + + + 389 + 103 + Records,Photographs: Family, RPG and...: Mrs. G. with Parents and Grandparents, 1958,1957-1978 + + + + + + 389 + 104 + Records,Photographs: Family, RPG and...: Griffin Family, 1958,1957-1978 + + + + + + 389 + 105 + Records,Photographs: Family, RPG and...: Griffin Family, 1957,1957-1978 + + + + + + 389 + 106 + Records,Photographs: Family, RPG and...: Griffin Family, 1956,1957-1978 + + + + + + 389 + 107 + Records,Photographs: Family, RPG and...: Family, 1956,1957-1978 + + + + + + 389 + 108 + Records,Photographs: Family, RPG and...: Mrs. G. and Ricky on Phone, 1957,1957-1978 + + + + + + 389 + 109 + Records,Photographs: Family, RPG and...: Mrs. G. on Wedding Day, 5/10/47,1957-1978 + + + + + + 389 + 110 + Records,Photographs: Family, RPG and...: Grandfather, James A. Childers, no date,undated + + + + + + 390 + 1 + Records,Cassette, Ask Senator Griffin, 10/12/78,1957-1978 + + + + + + 390 + 2 + Records,Cassette, Interview with Louise Sweeney, 3/9/76,1957-1978 + + + + + + 390 + 3 + Records,Cassette, Interview with Trevor Armbrister, 10/17/77,1957-1978 + + + + + + 390 + 4 + Records,12 Color Slides, RPG on Capitol Steps, 4/69,1957-1978 + + + + + + 390 + 5 + Records,Rubber Stamps, 2, RPG--U.S. Senator,1957-1978 + + + + + + 390 + 6 + Records,RPG Indian Headband, 1972 Campaign,1957-1978 + + + + + + 390 + 7 + Records,Campaign Photos, 1966,1957-1978 + + + + + + 390 + 8 + Records,Articles and Remarks, 1956-68 and undated,1957-1978 + + + + + + 390 + 9 + Records,Miscellaneous Staff Memos,1957-1978 + + + + + + 390 + 10 + Records,Staff Notes, Margie Lehrman,1957-1978 + + + + + + 390 + 11 + Records,RPG, Published Photos, 1970-1971,1957-1978 + + + + + + 390 + 12 + Records,RPG Post Card and 1972 Campaign,1957-1978 + + + + + + 390 + 13 + Records,Alaskan Pipeline Statement Draft, 8/73,1957-1978 + + + + + + 390 + 14 + Records,Backgrounder, 9/6/74,1957-1978 + + + + + + 390 + 15 + Records,RPG Godfrey Sperling Breakfast, 10/10/74,1957-1978 + + + + + + 390 + 16 + Records,Young People, RPG Advice,1957-1978 + + + + + + 390 + 17 + Records,Campaign Brochure, 1966,1957-1978 + + + + + + 390 + 18 + Records,Message Index, 1978,1957-1978 + + + + + + 390 + 19 + Records,Photographs: RPG and...: Gov. Milliken and VP Ford, undated,1957-1978 + + + + + + 390 + 20 + Records,Photographs: RPG and...: Rockefeller Confirmation Hearing,1957-1978 + + + + + + 390 + 21 + Records,Photographs: RPG and...: Sen. Scott, Cannon, Cook, and Gov. Rockefeller, 9/23/74,1957-1978 + + + + + + 390 + 22 + Records,Photographs: RPG and...: Sen. Agnew Hearing--Hot Dog Bill, Senators Allen, Ribicoff, and Rep. Chamberlain, 6/14/73,1957-1978 + + + + + + 390 + 23 + Records,Photographs: RPG and...: Griffin Crest in Office, 12/28/78,1957-1978 + + + + + + 390 + 24 + Records,Photographs: RPG and...: Corinne Quinn Buntin, 12/28/78,1957-1978 + + + + + + 390 + 25 + Records,26 Color Slides, 1969-72,1957-1978 + + + + + + 390 + 26 + Records,RPG's Press Secretary's Manual, 1974,1957-1978 + + + + + + 390 + 27 + Records,Griffin column Mailing Stats, 1974,1957-1978 + + + + + + 390 + 28 + Records,Photo, RPG, Barbara Bengtson, and Jack Mudrock, 1978,1957-1978 + + + + + + 390 + 29 + Records,Publicity File, 1973,1957-1978 + + + + + + 390 + 30 + Records,Press Release Letterhead and Stationary, 1977,1957-1978 + + + + + + 390 + 31 + Records,Photo, Close-Up Students with Senator, 5/9/78,1957-1978 + + + + + + 390 + 32 + Records,RPG Newsletters, 1965-75,1957-1978 + + + + + + 390 + 33 + Records,Interviews, 1968-76,1957-1978 + + + + + + 391 + 1 + Records,Photographs: RPG and...: Children for Campaign Commercial, 10/11/78,1957-1978 + + + + + + 391 + 2 + Records,Photographs: RPG and...: Mt. Pleasant, 9/78,1957-1978 + + + + + + 391 + 3 + Records,Photographs: RPG and...: Fund Raiser on Capitol Hill, 9/27/78,1957-1978 + + + + + + 391 + 4 + Records,Photographs: RPG and...: Balloon, Bridgeport Sauerkraut Festival, 1978,1957-1978 + + + + + + 391 + 5 + Records,Photographs: RPG and...: Southfield Pancake Breakfast. 6/25/78,1957-1978 + + + + + + 391 + 6 + Records,Photographs: RPG and...: Mrs. G. at Grocery Manufacturers Speech, 1978,1957-1978 + + + + + + 391 + 7 + Records,Photographs: RPG and...: Receiving Energy Conservation Manual, 6/78,1957-1978 + + + + + + 391 + 8 + Records,Photographs: RPG and...: Head Shot, Campaign, 1978,1957-1978 + + + + + + 391 + 9 + Records,Photographs: RPG and...: Milliken, Campaign, 1978,1957-1978 + + + + + + 391 + 10 + Records,Photographs: RPG and...: Announcing Decision to Seek Re-election, 2/13/78,1957-1978 + + + + + + 391 + 11 + Records,Photographs: RPG and...: Republican National Convention, 7/76,1957-1978 + + + + + + 391 + 12 + Records,Photographs: RPG and...: Ford Primary Campaign, MI, 5/18/76,1957-1978 + + + + + + 391 + 13 + Records,Photographs: RPG and...: Republican National Convention, 7/72,1957-1978 + + + + + + 391 + 14 + Records,Photographs: RPG and...: Family, Cookbook Photos, 1972,1957-1978 + + + + + + 391 + 15 + Records,Photographs: RPG and...: Bowling in MI, Campaign, 1972,1957-1978 + + + + + + 391 + 16 + Records,Photographs: RPG and...: Eight City Two Day Blitz, 11/72,1957-1978 + + + + + + 391 + 17 + Records,Photographs: RPG and...: Groundbreaking Ceremony of McNamara Bldg., 11/1/72,1957-1978 + + + + + + 391 + 18 + Records,Photographs: RPG and...: Nationalities Reception, Detroit, 1972,1957-1978 + + + + + + 391 + 19 + Records,Photographs: RPG and...: County Chairmen, 1972,1957-1978 + + + + + + 391 + 20 + Records,Photographs: RPG and...: Campaign Workers, 1972,1957-1978 + + + + + + 391 + 21 + Records,Photographs: RPG and...: Campaign Staff, 1972,1957-1978 + + + + + + 391 + 22 + Records,Photographs: RPG and...: Race Car Driver, Chuck Bartlebaugh, 1972,1957-1978 + + + + + + 391 + 23 + Records,Photographs: RPG and...: Handshaking at Plant Gate, 1972,1957-1978 + + + + + + 391 + 24 + Records,Photographs: RPG and...: Being Interviewed at Pick-Fort Shelby Hotel, 1972,1957-1978 + + + + + + 391 + 25 + Records,Photographs: RPG and...: Nixon, Trip to Eisenhower School, 1972,1957-1978 + + + + + + 391 + 26 + Records,Photographs: RPG and...: Constituents, Florida Campaign, 3/72,1957-1978 + + + + + + 391 + 27 + Records,Photographs: RPG and...: Campaign Photos, 1972,1957-1978 + + + + + + 391 + 28 + Records,Photographs: RPG and...: Wayne State Medical Center, 1972,1957-1978 + + + + + + 391 + 29 + Records,Photographs: RPG and...: Ringling Brothers Circus at Cobo Hall, 1972,1957-1978 + + + + + + 391 + 30 + Records,Photographs: RPG and...: Mrs. G. at Wolverine Reception, 9/28/72,1957-1978 + + + + + + 391 + 31 + Records,Photographs: RPG and...: at WTRX Anniversary Party, 10/72,1957-1978 + + + + + + 391 + 32 + Records,Photographs: RPG and...: Nixon Greeting Tri-City Crowd, 1972,1957-1978 + + + + + + 391 + 33 + Records,Photographs: RPG and...: Hard Hat Workers, 10/72,1957-1978 + + + + + + 391 + 34 + Records,Photographs: RPG and...: Second Baptist Church, 1972,1957-1978 + + + + + + 391 + 35 + Records,Photographs: RPG and...: Griffin Girls, 7/8/72,1957-1978 + + + + + + 391 + 36 + Records,Photographs: RPG and...: Pancake Breakfast in Detroit, 3/5/72,1957-1978 + + + + + + 391 + 37 + Records,Photographs: RPG and...: Oakland Young Republican Function, 4/72,1957-1978 + + + + + + 391 + 38 + Records,Photographs: RPG and...: Kalkaska Trout Festival, 4/72,1957-1978 + + + + + + 391 + 39 + Records,Photographs: RPG and...: Italian Community Banquet, 1/3/72,1957-1978 + + + + + + 391 + 40 + Records,Photographs: RPG and...: Griffin Girls in Hillsdale, 4/16/71,1957-1978 + + + + + + 391 + 41 + Records,Photographs: RPG and...: Republican National Convention, Miami, 8/68,1957-1978 + + + + + + 391 + 42 + Records,Photographs: RPG and...: Visits Jewish News, 11/9/67,1957-1978 + + + + + + 391 + 43 + Records,Photographs: RPG and...: Griffinaires, 3/24/67,1957-1978 + + + + + + 391 + 44 + Records,Photographs: RPG and...: Mansfield, Humphrey, Dirksen, at Swearing-In, 1/67,1957-1978 + + + + + + 391 + 45 + Records,Photographs: RPG and...: Washington Press Conference after Swearing-In, 1967,1957-1978 + + + + + + 391 + 46 + Records,Photographs: RPG and...: VP Humphrey at Swearing-In, 1966,1957-1978 + + + + + + 391 + 47 + Records,Photographs: RPG and...: Griffin Pin, 1966,1957-1978 + + + + + + 391 + 48 + Records,Photographs: RPG and...: Pins Griffin Pin on AP Photographer Griffin, 1966,1957-1978 + + + + + + 391 + 49 + Records,Photographs: RPG and...: Griffin Girls, Campaign, 1966,1957-1978 + + + + + + 391 + 50 + Records,Photographs: RPG and...: Statler Hilton on Election Night, Campaign 1966,1957-1978 + + + + + + 391 + 51 + Records,Photographs: RPG and...: Visits TRW in Warren, 10/66,1957-1978 + + + + + + 391 + 52 + Records,Photographs: RPG and...: Ankle Injury, Campaign 1966,1957-1978 + + + + + + 391 + 53 + Records,Photographs: RPG and...: Wayne State University Students, 1966,1957-1978 + + + + + + 391 + 54 + Records,Photographs: RPG and...: University of Detroit Students, 1966,1957-1978 + + + + + + 391 + 55 + Records,Photographs: RPG and...: MI Assn. Of Letter Carriers, 1966,1957-1978 + + + + + + 391 + 56 + Records,Photographs: RPG and...: Visit to Roostertail, 1966,1957-1978 + + + + + + 391 + 57 + Records,Photographs: RPG and...: Mrs. G. and Jill in Griffin Headbands, 1966,1957-1978 + + + + + + 391 + 58 + Records,Photographs: RPG and...: Homecoming to Traverse City, 1966,1957-1978 + + + + + + 391 + 59 + Records,Photographs: RPG and...: Romney, Milliken, and Esch, 1966,1957-1978 + + + + + + 391 + 60 + Records,Photographs: RPG and...: Milliken and Cavanagh, 1966,1957-1978 + + + + + + 391 + 61 + Records,Photographs: RPG and...: Mrs. G. and Mrs. Milliken Campaigning, 1966,1957-1978 + + + + + + 391 + 62 + Records,Photographs: RPG and...: Romney at State GOP Contentions, 1966,1957-1978 + + + + + + 391 + 63 + Records,Photographs: RPG and...: Parade with Griffinaires, 8/28/66,1957-1978 + + + + + + 391 + 64 + Records,Photographs: RPG and...: Russell Klinger at Ford Assembly Plant, 1966,1957-1978 + + + + + + 391 + 65 + Records,Photographs: RPG and...: Father Lawrence Kyemaalo of Ghana, 1966,1957-1978 + + + + + + 391 + 66 + Records,Photographs: RPG and...: Mailing Absentee Ballot in Detroit, 1966,1957-1978 + + + + + + 391 + 67 + Records,Photographs: RPG and...: Romney at MI State Fair, 1966,1957-1978 + + + + + + 391 + 68 + Records,Photographs: RPG and...: Griffin Girls, 1966,1957-1978 + + + + + + 391 + 69 + Records,Photographs: RPG and...: Keynotes Convention, 1966,1957-1978 + + + + + + 391 + 70 + Records,Photographs: RPG and...: Mrs. G. Campaigning, 1966,1957-1978 + + + + + + 391 + 71 + Records,Photographs: RPG and...: Romney at Lansing Press Conf. On Appt., 1966,1957-1978 + + + + + + 391 + 72 + Records,Photographs: RPG and...: Shaking Hands in Detroit, 1966,1957-1978 + + + + + + 391 + 73 + Records,Photographs: RPG and...: University of Detroit Ice Cream Poll, 1966,1957-1978 + + + + + + 391 + 74 + Records,Photographs: RPG and...: Children Campaigning for Dad, 1966,1957-1978 + + + + + + 391 + 75 + Records,Photographs: RPG and...: Griffin Headbands, 1966,1957-1978 + + + + + + 391 + 76 + Records,Photographs: RPG and...: High School Football Team, 1966,1957-1978 + + + + + + 391 + 77 + Records,Photographs: RPG and...: Petitions at Press Conf., 1966,1957-1978 + + + + + + 391 + 78 + Records,Photographs: RPG and...: Visit to Grayling, 1966,1957-1978 + + + + + + 391 + 79 + Records,Photographs: RPG and...: Gov. Romney, 1966,1957-1978 + + + + + + 391 + 80 + Records,Photographs: RPG and...: Brochure Photos, 1966,1957-1978 + + + + + + 391 + 81 + Records,Photographs: RPG and...: Campaign Staff, 1966,1957-1978 + + + + + + 391 + 82 + Records,Photographs: RPG and...: Auto Blitz, 1966,1957-1978 + + + + + + 391 + 83 + Records,Photographs: RPG and...: Miscellaneous Photos, Campaign 1966,1957-1978 + + + + + + 391 + 84 + Records,Photographs: RPG and...: George Washington, Romney, and Milliken, 1966,1957-1978 + + + + + + 391 + 85 + Records,Photographs: RPG and...: Hazel Park, 1966,1957-1978 + + + + + + 391 + 86 + Records,Photographs: RPG and...: Romney, Milliken, Ford, Cederberg, Parade, 1966,1957-1978 + + + + + + 391 + 87 + Records,Photographs: RPG and...: Humphrey at Swearing-In, 5/16/66,1957-1978 + + + + + + 391 + 88 + Records,Photographs: RPG and...: Manitou Island, 1958,1957-1978 + + + + + + 391 + 89 + Records,Photographs: RPG and...: Naval Gun Factory, 1958,1957-1978 + + + + + + 391 + 90 + Records,Photographs: RPG and...: Miscellaneous Campaign Photos, 1956,1957-1978 + + + + + + 391 + 91 + Records,Photographs: RPG and...: GOP Convention (Miami), 8/72,1957-1978 + + + + + + 392 + 1 + Records,Photographs: Griffin Only: Passport Photos, 3/77,1940-1978 + + + + + + 392 + 2 + Records,Photographs: Griffin Only: Autograph Photo, 3/77,1940-1978 + + + + + + 392 + 3 + Records,Photographs: Griffin Only: Postcard, 1977,1940-1978 + + + + + + 392 + 4 + Records,Photographs: Griffin Only: Color Portrait by Burton-Frook, 12/76,1940-1978 + + + + + + 392 + 5 + Records,Photographs: Griffin Only: Black and White Portrait by Burton-Frock, 12/76,1940-1978 + + + + + + 392 + 6 + Records,Photographs: Griffin Only: Cracking the Whip (Cartoon), 7/23/76,1940-1978 + + + + + + 392 + 7 + Records,Photographs: Griffin Only: David Clanton Hearing, 8/76,1940-1978 + + + + + + 392 + 8 + Records,Photographs: Griffin Only: Head Shot, Smiling at Microphone, 8/76,1940-1978 + + + + + + 392 + 9 + Records,Photographs: Griffin Only: Head Shot, Smiling with Chin in Hand, 8/76,1940-1978 + + + + + + 392 + 10 + Records,Photographs: Griffin Only: Head Shot, Serious Expression, 8/76,1940-1978 + + + + + + 392 + 11 + Records,Photographs: Griffin Only: Kemper Arena, Kansas City, Convention, 8/10/76,1940-1978 + + + + + + 392 + 12 + Records,Photographs: Griffin Only: Informal Shots at David Clanton Hearing, 8/76,1940-1978 + + + + + + 392 + 13 + Records,Photographs: Griffin Only: Color Proofs, 8/76,1940-1978 + + + + + + 392 + 14 + Records,Photographs: Griffin Only: Speaking, Michigan Day in Washington, 5/4/76,1940-1978 + + + + + + 392 + 15 + Records,Photographs: Griffin Only: Press Conference, Flint, 5/76,1940-1978 + + + + + + 392 + 16 + Records,Photographs: Griffin Only: Saints and Sinners Poster, 3/25/76,1940-1978 + + + + + + 392 + 17 + Records,Photographs: Griffin Only: Head Shot, Profile, Serious Expression, 12/17/75,1940-1978 + + + + + + 392 + 18 + Records,Photographs: Griffin Only: Special Autograph Photo, 8/4/75,1940-1978 + + + + + + 392 + 19 + Records,Photographs: Griffin Only: Head Shot for Bust, 6/13/75,1940-1978 + + + + + + 392 + 20 + Records,Photographs: Griffin Only: Speaking at ASIA, Chicago, 3/10/75,1940-1978 + + + + + + 392 + 21 + Records,Photographs: Griffin Only: Cover Picture for Automotive Magazine, 1/27/75,1940-1978 + + + + + + 392 + 22 + Records,Photographs: Griffin Only: Automotive News Interview, Whip Office, 12/6/74,1940-1978 + + + + + + 392 + 23 + Records,Photographs: Griffin Only: Rockefeller Confirmation Hearings, 11/13/74,1940-1978 + + + + + + 392 + 24 + Records,Photographs: Griffin Only: Nationalities Salute to Milliken, 9/13/74,1940-1978 + + + + + + 392 + 25 + Records,Photographs: Griffin Only: Giving Continental Congress Speech, 9/74,1940-1978 + + + + + + 392 + 26 + Records,Photographs: Griffin Only: Baseball Photo, Autograph for Children, 7/16/74,1940-1978 + + + + + + 392 + 27 + Records,Photographs: Griffin Only: Stacks of Federal Regulations, 7/78,1940-1978 + + + + + + 392 + 28 + Records,Photographs: Griffin Only: Tapestry Presented by Old Mission School, 6/78,1940-1978 + + + + + + 392 + 29 + Records,Photographs: Griffin Only: Phone with James Carroll, 4/18/78,1940-1978 + + + + + + 392 + 30 + Records,Photographs: Griffin Only: Panama Canal Hearings with Bob turner, 9/27/78,1940-1978 + + + + + + 392 + 31 + Records,Photographs: Griffin Only: Proof Photos by Charles Sinks, 4/77,1940-1978 + + + + + + 392 + 32 + Records,Photographs: Griffin Only: Portrait, 4/77,1940-1978 + + + + + + 392 + 33 + Records,Photographs: Griffin Only: PBB Hearings in MI, 4/77,1940-1978 + + + + + + 392 + 34 + Records,Photographs: Griffin Only: Hart Tribute in Detroit, 3/77,1940-1978 + + + + + + 392 + 35 + Records,Photographs: Griffin Only: Collage from Griffin-Hart Baseball Game, 7/16/74,1940-1978 + + + + + + 392 + 36 + Records,Photographs: Griffin Only: Ford Confirmation Hearings, 11/73,1940-1978 + + + + + + 392 + 37 + Records,Photographs: Griffin Only: Kissinger Confirmation Hearings, 9/73,1940-1978 + + + + + + 392 + 38 + Records,Photographs: Griffin Only: His Birthday Party, 11/6/73,1940-1978 + + + + + + 392 + 39 + Records,Photographs: Griffin Only: Riding in Livonia Memorial Day Parade, 1972,1940-1978 + + + + + + 392 + 40 + Records,Photographs: Griffin Only: Detroit Tigers Training Camp, 3/18/72,1940-1978 + + + + + + 392 + 41 + Records,Photographs: Griffin Only: Throwing Out First Ball at Tigers-Red Sox Game, 1972,1940-1978 + + + + + + 392 + 42 + Records,Photographs: Griffin Only: Addressing Lincoln Day Dinner in Howell, 3/11/72,1940-1978 + + + + + + 392 + 43 + Records,Photographs: Griffin Only: Head Shot by Seaway Review, 3/72,1940-1978 + + + + + + 392 + 44 + Records,Photographs: Griffin Only: Speaking to National Assn. Of Retail Druggist, 3/72,1940-1978 + + + + + + 392 + 45 + Records,Photographs: Griffin Only: Capitol Steps, 10/1/71,1940-1978 + + + + + + 392 + 46 + Records,Photographs: Griffin Only: Speaking at Republican Conference at Mackinac, 9/71,1940-1978 + + + + + + 392 + 47 + Records,Photographs: Griffin Only: Testifying on Landrum-Griffin Act, 7/13/71,1940-1978 + + + + + + 392 + 48 + Records,Photographs: Griffin Only: Inspecting Damage by Bombing, 3/1/71,1940-1978 + + + + + + 392 + 49 + Records,Photographs: Griffin Only: Head Shot Proofs, 1971,1940-1978 + + + + + + 392 + 50 + Records,Photographs: Griffin Only: Walking Across Capitol Lawn, 2/71,1940-1978 + + + + + + 392 + 51 + Records,Photographs: Griffin Only: Color Photos, 1971,1940-1978 + + + + + + 392 + 52 + Records,Photographs: Griffin Only: In Office with Staff, 1971,1940-1978 + + + + + + 392 + 53 + Records,Photographs: Griffin Only: Head Shot, 3/71-75,1940-1978 + + + + + + 392 + 54 + Records,Photographs: Griffin Only: Press Conference on CBS Free Time, 7/9/70,1940-1978 + + + + + + 392 + 55 + Records,Photographs: Griffin Only: Watches Nixon on TV Giving Address, 6/17/70,1940-1978 + + + + + + 392 + 56 + Records,Photographs: Griffin Only: Relaxes in Office, 5/25/70,1940-1978 + + + + + + 392 + 57 + Records,Photographs: Griffin Only: Gets TB Test, 2/16/70,1940-1978 + + + + + + 392 + 58 + Records,Photographs: Griffin Only: At Microphone, 1970,1940-1978 + + + + + + 392 + 59 + Records,Photographs: Griffin Only: Addressing University of MI Law School, 10/69,1940-1978 + + + + + + 392 + 60 + Records,Photographs: Griffin Only: Following Whip Victory, 9/14/69,1940-1978 + + + + + + 392 + 61 + Records,Photographs: Griffin Only: Profiles, 7/69,1940-1978 + + + + + + 392 + 62 + Records,Photographs: Griffin Only: In Front of Capitol Bldg., 5/15/69,1940-1978 + + + + + + 392 + 63 + Records,Photographs: Griffin Only: Speaking at State Convention, 2/15/69,1940-1978 + + + + + + 392 + 64 + Records,Photographs: Griffin Only: At Microphone, 1969,1940-1978 + + + + + + 392 + 65 + Records,Photographs: Griffin Only: At Conf. Of State Leg. Leaders in Hawaii, 12/68,1940-1978 + + + + + + 392 + 66 + Records,Photographs: Griffin Only: Photo on Bulletin Board, 5/68,1940-1978 + + + + + + 392 + 67 + Records,Photographs: Griffin Only: Head Shot, George Tames #2, 1968-1971,1940-1978 + + + + + + 392 + 68 + Records,Photographs: Griffin Only: Head Shot, George Tames #2, Sketch, 1968-1971,1940-1978 + + + + + + 392 + 69 + Records,Photographs: Griffin Only: Head Shot, George Tames #1, 1968-1971,1940-1978 + + + + + + 392 + 70 + Records,Photographs: Griffin Only: Head Shot, George Tames #1, for Autograph, 1968-1971,1940-1978 + + + + + + 392 + 71 + Records,Photographs: Griffin Only: Head Shot, George Tames #1, Sketch, 1968-1971,1940-1978 + + + + + + 392 + 72 + Records,Photographs: Griffin Only: Head Shot, George Tames #2, for Autograph, 1968-1971,1940-1978 + + + + + + 392 + 73 + Records,Photographs: Griffin Only: Head Shots, 1/71,1940-1978 + + + + + + 392 + 74 + Records,Photographs: Griffin Only: Color Slides, 1968-1969,1940-1978 + + + + + + 392 + 75 + Records,Photographs: Griffin Only: At Microphone, 1968,1940-1978 + + + + + + 392 + 76 + Records,Photographs: Griffin Only: Admires Gift at Staff Birthday Party, 11/8/67,1940-1978 + + + + + + 392 + 77 + Records,Photographs: Griffin Only: Lansing Press Conference, 9/18/67,1940-1978 + + + + + + 392 + 78 + Records,Photographs: Griffin Only: Wears Eye Patch Like Gen. Dayan=s, 6/27/67,1940-1978 + + + + + + 392 + 79 + Records,Photographs: Griffin Only: With Vandenberg Plaque, 4/1/67,1940-1978 + + + + + + 392 + 80 + Records,Photographs: Griffin Only: At Microphone, 1967,1940-1978 + + + + + + 392 + 81 + Records,Photographs: Griffin Only: Head Shots, 1966-1972,1940-1978 + + + + + + 392 + 82 + Records,Photographs: Griffin Only: Head Shots, May 1966-Dec. 1967,1940-1978 + + + + + + 392 + 83 + Records,Photographs: Griffin Only: Head Shot, Color, 1966,1940-1978 + + + + + + 392 + 84 + Records,Photographs: Griffin Only: Points Finger, 1966,1940-1978 + + + + + + 392 + 85 + Records,Photographs: Griffin Only: Color Formal Portrait, 1966,1940-1978 + + + + + + 392 + 86 + Records,Photographs: Griffin Only: Saturday Evening Post Photo, 1966,1940-1978 + + + + + + 392 + 87 + Records,Photographs: Griffin Only: Head Shots, 1966,1940-1978 + + + + + + 392 + 88 + Records,Photographs: Griffin Only: Gestures, 1966,1940-1978 + + + + + + 392 + 89 + Records,Photographs: Griffin Only: Works at Desk, 1966,1940-1978 + + + + + + 392 + 90 + Records,Photographs: Griffin Only: On Phone, 1966,1940-1978 + + + + + + 392 + 91 + Records,Photographs: Griffin Only: Prepares for TV Taping, 1966,1940-1978 + + + + + + 392 + 92 + Records,Photographs: Griffin Only: At Reception, 1966,1940-1978 + + + + + + 392 + 93 + Records,Photographs: Griffin Only: On Capitol Steps, 1966,1940-1978 + + + + + + 392 + 94 + Records,Photographs: Griffin Only: With U.S. Budget, 1/66 and 1/24/67,1940-1978 + + + + + + 392 + 95 + Records,Photographs: Griffin Only: Shakes First, 1966,1940-1978 + + + + + + 392 + 96 + Records,Photographs: Griffin Only: Head Shot, George Tames, #3, 1966,1940-1978 + + + + + + 392 + 97 + Records,Photographs: Griffin Only: Head Shot, George Tames #4, 1966,1940-1978 + + + + + + 392 + 98 + Records,Photographs: Griffin Only: Head Shot, 1966,1940-1978 + + + + + + 392 + 99 + Records,Photographs: Griffin Only: Microphone, 1965-66,1940-1978 + + + + + + 392 + 100 + Records,Photographs: Griffin Only: MI Award Winners Display, 1964,1940-1978 + + + + + + 392 + 101 + Records,Photographs: Griffin Only: Capitol Dome in Background, 1968,1940-1978 + + + + + + 392 + 102 + Records,Photographs: Griffin Only: Series Taken with Flag, 9/63,1940-1978 + + + + + + 392 + 103 + Records,Photographs: Griffin Only: Formal Photos, 1959,1940-1978 + + + + + + 392 + 104 + Records,Photographs: Griffin Only: Taft Memorial Dedication, 1959,1940-1978 + + + + + + 392 + 105 + Records,Photographs: Griffin Only: Mail Bag of Questionnaires, 1958,1940-1978 + + + + + + 392 + 106 + Records,Photographs: Griffin Only: Mackinac Bridge Stamp, 1958,1940-1978 + + + + + + 392 + 107 + Records,Photographs: Griffin Only: Aboard the Nautilus, 1957,1940-1978 + + + + + + 392 + 108 + Records,Photographs: Griffin Only: Head Shots, 1956-57,1940-1978 + + + + + + 392 + 109 + Records,Photographs: Griffin Only: Graduation from University of MI Law School, 1950,1940-1978 + + + + + + 392 + 110 + Records,Photographs: Griffin Only: Football Photo, 1940,1940-1978 + + + + + + 392 + 111 + Records,Photographs: Griffin Only: Cover of Living for Young Homemakers, 7/69,1940-1978 + + + + + + 392 + 112 + Records,Photographs: Griffin Only: Informal Photos Taken in Law Library, 1957,1940-1978 + + + + + + 392 + 113 + Records,Photographs: Press, RPG with...: Esther Tufty and MI Press, 6/11/76,1940-1978 + + + + + + 392 + 114 + Records,Photographs: Press, RPG with...: Gerald Marks, White House Correspondents Dinner, 1976,1940-1978 + + + + + + 392 + 115 + Records,Photographs: Press, RPG with...: Interviewers, ABC=s Issues and Answers, 3/75,1940-1978 + + + + + + 392 + 116 + Records,Photographs: Press, RPG with...: Interview with Callahan, 12/6/74,1940-1978 + + + + + + 392 + 117 + Records,Photographs: Press, RPG with...: Meet the Press, 10/7/73,1940-1978 + + + + + + 392 + 118 + Records,Photographs: Press, RPG with...: Dick Ryan, Bob Lewis, and Tom Ochiltree, 1973,1940-1978 + + + + + + 392 + 119 + Records,Photographs: Press, RPG with...: Mrs. G. and Esther Van Wagoner Tufty, 1/3/73,1940-1978 + + + + + + 392 + 120 + Records,Photographs: Press, RPG with...: Pres. Panax Newspapers, John McGoff, 1973,1940-1978 + + + + + + 392 + 121 + Records,Photographs: Press, RPG with...: Pres. Of WTRX, Bob Eastman, 4/28/72,1940-1978 + + + + + + 392 + 122 + Records,Photographs: Press, RPG with...: Les Root of WFDF, 1/27/72,1940-1978 + + + + + + 392 + 123 + Records,Photographs: Press, RPG with...: Kulsea, Vestal, Hoving, Longstaff, 12/71,1940-1978 + + + + + + 392 + 124 + Records,Photographs: Press, RPG with...: Bill Kulsea of Booth Newspapers, 11/71,1940-1978 + + + + + + 392 + 125 + Records,Photographs: Press, RPG with...: Virginia Allan of Ladies Home Journal, 4/71,1940-1978 + + + + + + 392 + 126 + Records,Photographs: Press, RPG with...: POW Press Conference, 12/14/70,1940-1978 + + + + + + 392 + 127 + Records,Photographs: Press, RPG with...: Radio Free Asia Re: POWs, 12/70,1940-1978 + + + + + + 392 + 128 + Records,Photographs: Press, RPG with...: Arch Booth, AWhat=s the Issue?@ 7/31/70,1940-1978 + + + + + + 392 + 129 + Records,Photographs: Press, RPG with...: Interviewed by Frank Tomlinson, ABC News, 1/70,1940-1978 + + + + + + 392 + 130 + Records,Photographs: Press, RPG with...: Fritz Wenzler on AWhat=s the Issue?@ 1968-1970,1940-1978 + + + + + + 392 + 131 + Records,Photographs: Press, RPG with...: Panel Show AYou and the Law,@ 12/19/69,1940-1978 + + + + + + 392 + 132 + Records,Photographs: Press, RPG with...: Receives ANewsmaker of Year@ Award from WKNR, 4/69,1940-1978 + + + + + + 392 + 133 + Records,Photographs: Press, RPG with...: Roger LeGrand of WITI-TV, 2/27/69,1940-1978 + + + + + + 392 + 134 + Records,Photographs: Press, RPG with...: National Press Corps on Fortas Nomination, 10/68,1940-1978 + + + + + + 392 + 135 + Records,Photographs: Press, RPG with...: Interviewed by Robert Albright of Washington Post, 12/67,1940-1978 + + + + + + 392 + 136 + Records,Photographs: Press, RPG with...: Interviewed by Linda Fredenberger, 6/67,1940-1978 + + + + + + 392 + 137 + Records,Photographs: Leadership, RPG with...: Republican Leadership at White House, 8/31/76,1940-1978 + + + + + + 392 + 138 + Records,Photographs: Leadership, RPG with...: White House Republican Leadership Meeting, 6/23/76,1940-1978 + + + + + + 392 + 139 + Records,Photographs: Leadership, RPG with...: Republican Leadership at White House, 5/5/76,1940-1978 + + + + + + 392 + 140 + Records,Photographs: Leadership, RPG with...: Republican Leadership at White House, 3/23/76,1940-1978 + + + + + + 392 + 141 + Records,Photographs: Leadership, RPG with...: Bipartisan Leadership Meeting, White House, 2/17/76,1940-1978 + + + + + + 392 + 142 + Records,Photographs: Leadership, RPG with...: White House Leadership Meeting, 2/2/76,1940-1978 + + + + + + 392 + 143 + Records,Photographs: Leadership, RPG with...: White House Meeting in Cabinet Room, 11/19/75,1940-1978 + + + + + + 392 + 144 + Records,Photographs: Leadership, RPG with...: Republican Leadership Meeting, 6/17/75,1940-1978 + + + + + + 392 + 145 + Records,Photographs: Leadership, RPG with...: Republican Leadership Meeting, 1975,1940-1978 + + + + + + 392 + 146 + Records,Photographs: Leadership, RPG with...: Republican Policy Committee Meeting, 1975,1940-1978 + + + + + + 392 + 147 + Records,Photographs: Leadership, RPG with...: Senate Leadership and Pages, 1975,1940-1978 + + + + + + 392 + 148 + Records,Photographs: Leadership, RPG with...: Republican Policy Committee Meeting, 1975,1940-1978 + + + + + + 392 + 149 + Records,Photographs: Leadership, RPG with...: Bipartisan Meeting at White House, 9/12/74,1940-1978 + + + + + + 393 + 1 + Records,Photographs: Staff, RPG with...: Jane Denison, 11/29/78,1978 + + + + + + 393 + 2 + Records,Photographs: Staff, RPG with...: Joan Cole, 11/29/78,1978 + + + + + + 393 + 3 + Records,Photographs: Staff, RPG with...: Bob Smalley, 11/29/78,1978 + + + + + + 393 + 4 + Records,Photographs: Staff, RPG with...: Laura Klaes, 11/29/78,1978 + + + + + + 393 + 5 + Records,Photographs: Staff, RPG with...: Fran Schoener, 11/29/78,1978 + + + + + + 393 + 6 + Records,Photographs: Staff, RPG with...: Mary Roarty, 11/29/78,1978 + + + + + + 393 + 7 + Records,Photographs: Staff, RPG with...: Sandra Lumpkin, 11/29/78,1978 + + + + + + 393 + 8 + Records,Photographs: Staff, RPG with...: Jane Morlock, 11/29/78,1978 + + + + + + 393 + 9 + Records,Photographs: Staff, RPG with...: Al Applegate, 11/29/78,1978 + + + + + + 393 + 10 + Records,Photographs: Staff, RPG with...: Denison, Applegate, Buntin, Bengtson, 11/29/78,1978 + + + + + + 393 + 11 + Records,Photographs: Staff, RPG with...: Mrs. G., Denison, Applegate, Buntin, Bengtson, 1978,1978 + + + + + + 393 + 12 + Records,Photographs: Staff, RPG with...: Trina Driessnack, 11/29/78,1978 + + + + + + 393 + 13 + Records,Photographs: Staff, RPG with...: Mike Roberts, 11/17/78,1978 + + + + + + 393 + 14 + Records,Photographs: Staff, RPG with...: Doris Shaw, 11/17/78,1978 + + + + + + 393 + 15 + Records,Photographs: Staff, RPG with...: Gary Russell, 11/17/78,1978 + + + + + + 393 + 16 + Records,Photographs: Staff, RPG with...: Margaret Foster, 11/17/78,1978 + + + + + + 393 + 17 + Records,Photographs: Staff, RPG with...: Bernice Mayfield, 11/17/78,1978 + + + + + + 393 + 18 + Records,Photographs: Staff, RPG with...: Til Bright, 11/17/78,1978 + + + + + + 393 + 19 + Records,Photographs: Staff, RPG with...: Carol Mitchell, 11/17/78,1978 + + + + + + 393 + 20 + Records,Photographs: Staff, RPG with...: Wade Wilbur, 11/17/78,1978 + + + + + + 393 + 21 + Records,Photographs: Staff, RPG with...: Walter Droskie, 11/17/78,1978 + + + + + + 393 + 22 + Records,Photographs: Staff, RPG with...: June Taylor, 11/17/78,1978 + + + + + + 393 + 23 + Records,Photographs: Staff, RPG with...: Heidi Burch, 11/17/78,1978 + + + + + + 393 + 24 + Records,Photographs: Staff, RPG with...: Nancy Franklin, 11/17/78,1978 + + + + + + 393 + 25 + Records,Photographs: Staff, RPG with...: Dawn Gifford, 11/17/78,1978 + + + + + + 393 + 26 + Records,Photographs: Staff, RPG with...: Marc Steinberg, 11/17/78,1978 + + + + + + 393 + 27 + Records,Photographs: Staff, RPG with...: Lila Effertz, 11/17/78,1978 + + + + + + 393 + 28 + Records,Photographs: Staff, RPG with...: Martin Clancy, 11/17/78,1978 + + + + + + 393 + 29 + Records,Photographs: Staff, RPG with...: Liz Hardy, 11/17/78,1978 + + + + + + 393 + 30 + Records,Photographs: Staff, RPG with...: Mary DeBarr, 11/17/78,1978 + + + + + + 393 + 31 + Records,Photographs: Staff, RPG with...: Quinton Francis and Mother Toni, 11/17/78,1978 + + + + + + 393 + 32 + Records,Photographs: Staff, RPG with...: Chris Lehman, 11/17/78,1978 + + + + + + 393 + 33 + Records,Photographs: Staff, RPG with...: Jerry Rosen, 11/17/78,1978 + + + + + + 393 + 34 + Records,Photographs: Staff, RPG with...: Sherrie Marshall, 11/17/78,1978 + + + + + + 393 + 35 + Records,Photographs: Staff, RPG with...: Ruth Basius, 11/17/78,1978 + + + + + + 393 + 36 + Records,Photographs: Staff, RPG with...: Corinne Buntin, 11/17/78,1978 + + + + + + 393 + 37 + Records,Photographs: Staff, RPG with...: Valerie Wilbur, 11/17/78,1978 + + + + + + 393 + 38 + Records,Photographs: Staff, RPG with...: Al Thea Armstrong, 11/17/78,1978 + + + + + + 393 + 39 + Records,Photographs: Staff, RPG with...: Margie Lehrman, 11/17/78,1978 + + + + + + 393 + 40 + Records,Photographs: Staff, RPG with...: Barbara Bengtson, 11/17/78,1978 + + + + + + 393 + 41 + Records,Photographs: Staff, RPG with...: Bruce and Al Thea Armstrong, 8/23/78,1978 + + + + + + 393 + 42 + Records,Photographs: Staff, RPG with...: Interns, 8/23/78,1978 + + + + + + 393 + 43 + Records,Photographs: Staff, RPG with...: Dawn Gifford and Family, 7/11/78,1978 + + + + + + 393 + 44 + Records,Photographs: Staff, RPG with...: Charlene McNerney, 6/29/78,1978 + + + + + + 393 + 45 + Records,Photographs: Staff, RPG with...: Summer Interns, 6/1/78,1978 + + + + + + 393 + 46 + Records,Photographs: Staff, RPG with...: Jane Denison and Cousin, Peter Fox, 5/31/78,1978 + + + + + + 393 + 47 + Records,Photographs: Staff, RPG with...: Liz Hardy and Family, 5/8/78,1978 + + + + + + 393 + 48 + Records,Photographs: Staff, RPG with...: Senior Intern, Helen Cope, 5/8/78,1978 + + + + + + 393 + 49 + Records,Photographs: Staff, RPG with...: Douglas McGeorge, 4/27/78,1978 + + + + + + 393 + 50 + Records,Photographs: Staff, RPG with...: Clari Miller, 2/1/78,1978 + + + + + + 393 + 51 + Records,Photographs: Staff, RPG with...: Mrs. G., Mrs. Walker, and Staff, 12/19/77,1977 + + + + + + 393 + 52 + Records,Photographs: Staff, RPG with...: Larry Smith (Intern), 12/7/77,1977 + + + + + + 393 + 53 + Records,Photographs: Staff, RPG with...: Marc Steinberg, 12/7/77,1977 + + + + + + 393 + 54 + Records,Photographs: Staff, RPG with...: Bob Lewis, 12/2/77,1977 + + + + + + 393 + 55 + Records,Photographs: Staff, RPG with...: Bob Turner at Panama Canal Hearings, 9/27/77,1977 + + + + + + 393 + 56 + Records,Photographs: Staff, RPG with...: Staff at Peter Holmes Going Away Party, 9/30/77,1977 + + + + + + 393 + 57 + Records,Photographs: Staff, RPG with...: Peter Holmes, 9/30/77,1977 + + + + + + 393 + 58 + Records,Photographs: Staff, RPG with...: Sue Corbett (Intern), 8/4/77,1977 + + + + + + 393 + 59 + Records,Photographs: Staff, RPG with...: Cathy Shafran (intern), 8/4/77,1977 + + + + + + 393 + 60 + Records,Photographs: Staff, RPG with...: Randy Jones (Intern), 8/4/77,1977 + + + + + + 393 + 61 + Records,Photographs: Staff, RPG with...: Mary Butler (Intern), 8/4/77,1977 + + + + + + 393 + 62 + Records,Photographs: Staff, RPG with...: Mike Chafty (Intern), 8/4/77,1977 + + + + + + 393 + 63 + Records,Photographs: Staff, RPG with...: Hank Chesbrough (Intern), 8/4/77,1977 + + + + + + 393 + 64 + Records,Photographs: Staff, RPG with...: Dawn Gifford, 8/4/77,1977 + + + + + + 393 + 65 + Records,Photographs: Staff, RPG with...: Brad Minnick (Intern), 8/4/77,1977 + + + + + + 393 + 66 + Records,Photographs: Staff, RPG with...: Larry Abel (Intern), 8/4/77,1977 + + + + + + 393 + 67 + Records,Photographs: Staff, RPG with...: Bill Dahling (Intern), 8/4/77,1977 + + + + + + 393 + 68 + Records,Photographs: Staff, RPG with...: John Griswold, 8/3/77,1977 + + + + + + 393 + 69 + Records,Photographs: Staff, RPG with...: Joan Donaldson, 8/3/77,1977 + + + + + + 393 + 70 + Records,Photographs: Staff, RPG with...: Summer Interns in Senator=s Dining Room, 6/77,1977 + + + + + + 393 + 71 + Records,Photographs: Staff, RPG with...: Michael Lintecum and Family, 6/2/77,1977 + + + + + + 393 + 72 + Records,Photographs: Staff, RPG with...: Lisa Shippee (Intern), 5/19/77,1977 + + + + + + 393 + 73 + Records,Photographs: Staff, RPG with...: Jim DeFrancis, and Staff at Going Away Party, 5/77,1977 + + + + + + 393 + 74 + Records,Photographs: Staff, RPG with...: Bob Turner and Parents, 4/27/77,1977 + + + + + + 393 + 75 + Records,Photographs: Staff, RPG with...: Ken Sparks (Intern), 4/25/77,1977 + + + + + + 393 + 76 + Records,Photographs: Staff, RPG with...: Applegates and Zicks, 4/12/77,1977 + + + + + + 393 + 78 + Records,Photographs: Staff, RPG with...: Gil Clark and Staff at Going Away Party, 4/1/77,1977 + + + + + + 393 + 79 + Records,Photographs: Staff, RPG with...: Lili Mezger and Mother, 3/3/77,1977 + + + + + + 393 + 80 + Records,Photographs: Staff, RPG with...: John Scholten (Intern), 2/24/77,1977 + + + + + + 393 + 81 + Records,Photographs: Staff, RPG with...: Suzanne Oetting, 1/4/77,1977 + + + + + + 393 + 82 + Records,Photographs: Staff, RPG with...: Larry Smith, 12/8/76,1976 + + + + + + 393 + 83 + Records,Photographs: Staff, RPG with...: Andy Gleason, 12/8/76,1976 + + + + + + 393 + 84 + Records,Photographs: Staff, RPG with...: David Clanton at FTC Nomination Hearing, 8/76,1976 + + + + + + 393 + 85 + Records,Photographs: Staff, RPG with...: David Clanton and Staff at Going Away Party, 8/76,1976 + + + + + + 393 + 86 + Records,Photographs: Staff, RPG with...: Orin Howell (Intern), 7/27/76,1976 + + + + + + 393 + 87 + Records,Photographs: Staff, RPG with...: Ken Sparks (Intern), 8/4/77,1977 + + + + + + 393 + 88 + Records,Photographs: Staff, RPG with...: Amy Timmer (Intern), 8/4/77,1977 + + + + + + 393 + 89 + Records,Photographs: Staff, RPG with...: Interns in Senator's Dining Room, 8/4/77,1977 + + + + + + 393 + 90 + Records,Photographs: Staff, RPG with...: Interns on Senate Steps, 8/4/77,1977 + + + + + + 393 + 91 + Records,Photographs: Staff, RPG with...: Susan Meyers (Intern) on Senate Steps, 8/4/77,1977 + + + + + + 393 + 92 + Records,Photographs: Staff, RPG with...: Brad Minnick (Intern) on Senate Steps, 8/4/77,1977 + + + + + + 393 + 93 + Records,Photographs: Staff, RPG with...: Hope Woodhouse (Intern) on Senate Steps, 7/76,1976 + + + + + + 393 + 94 + Records,Photographs: Staff, RPG with...: Stephanie Flora (Intern), 7/27/76,1976 + + + + + + 393 + 95 + Records,Photographs: Staff, RPG with...: Sherrie Landrus, 2/10/76,1976 + + + + + + 393 + 96 + Records,Photographs: Staff, RPG with...: Sherrie and Staff at Going Away Party, 1/28/76,1976 + + + + + + 393 + 97 + Records,Photographs: Staff, RPG with...: Nancy Hildenbrand, 1/23/76,1976 + + + + + + 393 + 98 + Records,Photographs: Staff, RPG with...: Cecil Holland, 12/12/75,1975 + + + + + + 393 + 99 + Records,Photographs: Staff, RPG with...: Fred Casoni and Bob Heffernan, 12/10/75,1975 + + + + + + 393 + 100 + Records,Photographs: Staff, RPG with...: Brad Minnick and Tim Helsing, 12/10/75,1975 + + + + + + 393 + 101 + Records,Photographs: Staff, RPG with...: Mrs. G. and Staff Softball Team, 9/14/75,1975 + + + + + + 393 + 102 + Records,Photographs: Staff, RPG with...: Charlene McNerney, 8/4/75,1975 + + + + + + 393 + 103 + Records,Photographs: Staff, RPG with...: Paul Ingles (Intern), 7/29/75,1975 + + + + + + 393 + 104 + Records,Photographs: Staff, RPG with...: Pages, 7/2/75,1975 + + + + + + 393 + 105 + Records,Photographs: Staff, RPG with...: Chris Behrens (Intern), 6/13/75,1975 + + + + + + 393 + 106 + Records,Photographs: Staff, RPG with...: Ken Sparks (Intern), 5/2/75,1975 + + + + + + 393 + 107 + Records,Photographs: Staff, RPG with...: Bill Cardin and Staff at Going Away Party, 2/27/75,1975 + + + + + + 393 + 108 + Records,Photographs: Staff, RPG with...: Ruppe with Jim Brady (Intern), 3/12/75,1975 + + + + + + 393 + 109 + Records,Photographs: Staff, RPG with...: Al Thea Armstrong, 2/4/75,1975 + + + + + + 393 + 110 + Records,Photographs: Staff, RPG with...: Bob Olender (Intern), 8/14/74,1974 + + + + + + 393 + 111 + Records,Photographs: Staff, RPG with...: Gail Grambau (Intern), 8/14/74,1974 + + + + + + 393 + 112 + Records,Photographs: Staff, RPG with...: Dave Lomas (Intern), 8/14/74,1974 + + + + + + 393 + 113 + Records,Photographs: Staff, RPG with...: Tom Zimmer (Intern), 8/14/74,1974 + + + + + + 393 + 114 + Records,Photographs: Staff, RPG with...: Chip Chamberlain (Intern), 8/14/74,1974 + + + + + + 393 + 115 + Records,Photographs: Staff, RPG with...: Cliff Taylor, 9/74,1974 + + + + + + 393 + 116 + Records,Photographs: Staff, RPG with...: Jim Hill (Intern), 8/14/74,1974 + + + + + + 393 + 117 + Records,Photographs: Staff, RPG with...: Jack Ritchotte (Intern), 8/14/74,1974 + + + + + + 393 + 118 + Records,Photographs: Staff, RPG with...: Summer Interns, 8/14/74,1974 + + + + + + 393 + 119 + Records,Photographs: Staff, RPG with...: Randy Jones (Intern), 7/19/74,1974 + + + + + + 393 + 120 + Records,Photographs: Staff, RPG with...: Staff at Hart-Griffin Softball Game, 7/16/74,1974 + + + + + + 393 + 121 + Records,Photographs: Staff, RPG with...: Interns, 6/14/74,1974 + + + + + + 393 + 122 + Records,Photographs: Staff, RPG with...: Sue Peck (Intern), 7/12/74,1974 + + + + + + 393 + 123 + Records,Photographs: Staff, RPG with...: Brian Donnelly, 6/11/74,1974 + + + + + + 393 + 124 + Records,Photographs: Staff, RPG with...: Carol Gould, 6/74,1974 + + + + + + 393 + 125 + Records,Photographs: Staff, RPG with...: Carol Mitchell, 6/3/74,1974 + + + + + + 393 + 126 + Records,Photographs: Staff, RPG with...: Liz Hardy and Family, 5/30/74,1974 + + + + + + 393 + 127 + Records,Photographs: Staff, RPG with...: Ken Goodyke (Intern), 5/30/74,1974 + + + + + + 393 + 128 + Records,Photographs: Staff, RPG with...: Pete and Sandy Teeley and Staff at Party, 5/28/74,1974 + + + + + + 393 + 129 + Records,Photographs: Staff, RPG with...: Meredith Mack, 5/15/74,1974 + + + + + + 393 + 130 + Records,Photographs: Staff, RPG with...: Dan Brier, 4/11/74,1974 + + + + + + 393 + 131 + Records,Photographs: Staff, RPG with...: Margaret Foster, June and Claude Dennison, 4/74,1974 + + + + + + 393 + 132 + Records,Photographs: Staff, RPG with...: Linda Ackley (Intern), 4/9/74,1974 + + + + + + 393 + 133 + Records,Photographs: Staff, RPG with...: Jodie Priest (Intern), 1/28/74,1974 + + + + + + 393 + 134 + Records,Photographs: Staff, RPG with...: Pete and Sandy Teeley at Party, 11/6/73,1973 + + + + + + 393 + 135 + Records,Photographs: Staff, RPG with...: Mrs. G. with Pete and Sandy Teeley at Party, 11/6/73,1973 + + + + + + 393 + 136 + Records,Photographs: Staff, RPG with...: Mrs. G. and Jill at Birthday Party, 11/6/73,1973 + + + + + + 393 + 137 + Records,Photographs: Staff, RPG with...: Mr. and Mrs. Walker at Party, 11/6/73,1973 + + + + + + 393 + 138 + Records,Photographs: Staff, RPG with...: Toasted by Ray Anderson at Birthday Party, 11/6/73,1973 + + + + + + 393 + 139 + Records,Photographs: Staff, RPG with...: Taking Drink for Toast at Party, 11/6/73,1973 + + + + + + 393 + 140 + Records,Photographs: Staff, RPG with...: Bill Cardin at Birthday Party, 11/6/73,1973 + + + + + + 393 + 141 + Records,Photographs: Staff, RPG with...: Summer Interns, 8/2/73,1973 + + + + + + 393 + 142 + Records,Photographs: Staff, RPG with...: Gloria Green (Intern), 1973,1973 + + + + + + 393 + 143 + Records,Photographs: Staff, RPG with...: Interns and Ruppe, 8/73,1973 + + + + + + 393 + 144 + Records,Photographs: Staff, RPG with...: Chris Park, (Intern), 7/2/73,1973 + + + + + + 393 + 145 + Records,Photographs: Staff, RPG with...: John Robandt and Family, 6/15/73,1973 + + + + + + 393 + 146 + Records,Photographs: Staff, RPG with...: Lee MacGregor, 4/16/73,1973 + + + + + + 393 + 147 + Records,Photographs: Staff, RPG with...: Rod Adelman, 3/13/73,1973 + + + + + + 393 + 148 + Records,Photographs: Staff, RPG with...: Gary Jones and Bob Smalley, 2/7/73,1973 + + + + + + 393 + 149 + Records,Photographs: Staff, RPG with...: Gary Jones, 2/7/73,1973 + + + + + + 393 + 150 + Records,Photographs: Staff, RPG with...: Margaret Treanor, 12/72,1972 + + + + + + 393 + 151 + Records,Photographs: Staff, RPG with...: Matt Surrell and Staff at Farewell Party, 11/21/72,1972 + + + + + + 393 + 152 + Records,Photographs: Staff, RPG with...: Matt Surrell and Shirley Sollers, 11/21/72,1972 + + + + + + 393 + 153 + Records,Photographs: Staff, RPG with...: Matt Surrell, 11/21/72,1972 + + + + + + 393 + 154 + Records,Photographs: Staff, RPG with...: Joan Colombo (Intern), 10/12/72,1972 + + + + + + 393 + 155 + Records,Photographs: Staff, RPG with...: Interns, 7/26/72,1972 + + + + + + 393 + 156 + Records,Photographs: Staff, RPG with...: Barbara Yared, 6/2/72,1972 + + + + + + 393 + 157 + Records,Photographs: Staff, RPG with...: Sherilyn Kay Marshall (Intern), 6/2/72,1972 + + + + + + 393 + 158 + Records,Photographs: Staff, RPG with...: Rose Mary Mrazek, 6/2/72,1972 + + + + + + 393 + 159 + Records,Photographs: Staff, RPG with...: Dale Tahtinen, 6/1/72,1972 + + + + + + 393 + 160 + Records,Photographs: Staff, RPG with...: Mike MacLeod, 5/9/72,1972 + + + + + + 393 + 161 + Records,Photographs: Staff, RPG with...: Sally Ehrle, 4/20/72,1972 + + + + + + 393 + 162 + Records,Photographs: Staff, RPG with...: Ben Burns, 4/20/72,1972 + + + + + + 393 + 163 + Records,Photographs: Staff, RPG with...: Priss Welsh and Bob Lewis, 3/9/72,1972 + + + + + + 393 + 164 + Records,Photographs: Staff, RPG with...: MacLeod, Bonine, Yared, and Jones, 3/9/72,1972 + + + + + + 393 + 165 + Records,Photographs: Staff, RPG with...: Mrs. G. with Matt Surrell, 2/72,1972 + + + + + + 393 + 166 + Records,Photographs: Staff, RPG with...: Mrs. G. with Bernice Mayfield, 2/28/72,1972 + + + + + + 393 + 167 + Records,Photographs: Staff, RPG with...: Mrs. G. with Lee MacGregor, 2/28/72,1972 + + + + + + 393 + 168 + Records,Photographs: Staff, RPG with...: Bruce Barr, Jennifer Schmidt, Gary Jones, 2/1/72,1972 + + + + + + 393 + 169 + Records,Photographs: Staff, RPG with...: Debby Kanter and Debbie Insley, 2/1/72,1972 + + + + + + 393 + 170 + Records,Photographs: Staff, RPG with...: Phil Hart and Debra Kanter, 2/1/72,1972 + + + + + + 393 + 171 + Records,Photographs: Staff, RPG with...: Debra Kanter (1st MI Girl Page), 1/31/72,1972 + + + + + + 393 + 172 + Records,Photographs: Staff, RPG with...: Debbie Kanter, 1/28/72,1972 + + + + + + 393 + 173 + Records,Photographs: Staff, RPG with...: Lee MacGregor, 1/18/72,1972 + + + + + + 393 + 174 + Records,Photographs: Staff, RPG with...: Nat Semple, 1/18/72,1972 + + + + + + 393 + 175 + Records,Photographs: Staff, RPG with...: Gary Jones, 1/14/72,1972 + + + + + + 393 + 176 + Records,Photographs: Staff, RPG with...: Hazel Rathbun and Mrs. Compton, 1/72,1972 + + + + + + 393 + 177 + Records,Photographs: Staff, RPG with...: Steve Halloway (Intern), 1971,1971 + + + + + + 393 + 178 + Records,Photographs: Staff, RPG with...: Earl Voss, 12/10/71,1971 + + + + + + 393 + 179 + Records,Photographs: Staff, RPG with...: Debbie Insley (Intern), 7/28/71,1971 + + + + + + 393 + 180 + Records,Photographs: Staff, RPG with...: Interns Joe Blount and Pam Taylor, 6/71,1971 + + + + + + 393 + 181 + Records,Photographs: Staff, RPG with...: Bob Lewis and Parents, 4/12/71,1971 + + + + + + 393 + 182 + Records,Photographs: Staff, RPG with...: Margaret Treanor and Family, 4/12/71,1971 + + + + + + 393 + 183 + Records,Photographs: Staff, RPG with...: Barbara Yared, 4/71,1971 + + + + + + 393 + 184 + Records,Photographs: Staff, RPG with...: Marilyn Caro and Nancy Summers, 3/26/71,1971 + + + + + + 393 + 185 + Records,Photographs: Staff, RPG with...: Ron Klein, 3/12/71,1971 + + + + + + 393 + 186 + Records,Photographs: Staff, RPG with...: Whip Party, 1/21/71,1971 + + + + + + 393 + 187 + Records,Photographs: Staff, RPG with...: Staff Whip Party, 1970,1970 + + + + + + 393 + 188 + Records,Photographs: Staff, RPG with...: Bernice Mayfield, 12/14/70,1970 + + + + + + 393 + 189 + Records,Photographs: Staff, RPG with...: Hazel Rathbun and Cecil Holland, 10/70,1970 + + + + + + 393 + 190 + Records,Photographs: Staff, RPG with...: Staff at Seaway Party, 10/70,1970 + + + + + + 393 + 191 + Records,Photographs: Staff, RPG with...: Staff at Hazel Rathbun=s Farewell Party, 10/16/70,1970 + + + + + + 393 + 192 + Records,Photographs: Staff, RPG with...: Rhona Gleiman, 7/24/70,1970 + + + + + + 393 + 193 + Records,Photographs: Staff, RPG with...: Til Bright on Her Birthday, 7/13/70,1970 + + + + + + 393 + 194 + Records,Photographs: Staff, RPG with...: Jack Hushen and Larry Meyer, 6/70,1970 + + + + + + 393 + 195 + Records,Photographs: Staff, RPG with...: Detroit Tigers, 6/25/70,1970 + + + + + + 393 + 196 + Records,Photographs: Staff, RPG with...: Doug Uyl and Janet Mullen (Volunteers), 6/70,1970 + + + + + + 393 + 197 + Records,Photographs: Staff, RPG with...: Wilbur Walker, 6/12/70,1970 + + + + + + 393 + 198 + Records,Photographs: Staff, RPG with...: Larry Meyer and Jack Hushen, 6/12/70,1970 + + + + + + 393 + 199 + Records,Photographs: Staff, RPG with...: Gives Gifts to Marcia Meyers and Don Polden, 5/70,1970 + + + + + + 393 + 200 + Records,Photographs: Staff, RPG with...: Georgetown University Volunteers, 5/19/70,1970 + + + + + + 393 + 201 + Records,Photographs: Staff, RPG with...: Andrea Paleologos and Staff at Farewell Party, 11/69,1969 + + + + + + 393 + 202 + Records,Photographs: Staff, RPG with...: Staff, 1/10/70,1970 + + + + + + 393 + 203 + Records,Photographs: Staff, RPG with...: Ilmar Heinaru, 11/15/69,1969 + + + + + + 393 + 204 + Records,Photographs: Staff, RPG with...: Staff Following Whip Victory, 9/24/69,1969 + + + + + + 393 + 205 + Records,Photographs: Staff, RPG with...: Dan Angel, 8/69,1969 + + + + + + 393 + 206 + Records,Photographs: Staff, RPG with...: Staff Watch Apollo Splashdown on TV, 7/24/69,1969 + + + + + + 393 + 207 + Records,Photographs: Staff, RPG with...: Gloria Green and Staff at Farewell Party, 6/69,1969 + + + + + + 393 + 208 + Records,Photographs: Staff, RPG with...: Christine Pittel (Intern), 6/69,1969 + + + + + + 393 + 209 + Records,Photographs: Staff, RPG with...: Jane Wong (Intern), 6/69,1969 + + + + + + 393 + 210 + Records,Photographs: Staff, RPG with...: Jack Hushen and Larry Meyer, 6/30/69,1969 + + + + + + 393 + 211 + Records,Photographs: Staff, RPG with...: Pauline Antzak, 5/69,1969 + + + + + + 393 + 212 + Records,Photographs: Staff, RPG with...: Margaret Treanor and Lee MacGregor, 5/69,1969 + + + + + + 393 + 213 + Records,Photographs: Staff, RPG with...: Dick Whitmer and Staff at Farewell Party, 1/21/69,1969 + + + + + + 393 + 214 + Records,Photographs: Staff, RPG with...: Griffin Club at Breakfast Meeting, 8/24/68,1969 + + + + + + 393 + 215 + Records,Photographs: Staff, RPG with...: Gives Carolyn Chapman Going Away Present, 6/14/68,1968 + + + + + + 393 + 216 + Records,Photographs: Staff, RPG with...: Sue Sladek (Intern), 6/14/68,1968 + + + + + + 393 + 217 + Records,Photographs: Staff, RPG with...: Sarah Elston (Intern), 6/14/68,1968 + + + + + + 393 + 218 + Records,Photographs: Staff, RPG with...: Lawrence Meyer, 6/14/68,1968 + + + + + + 393 + 219 + Records,Photographs: Staff, RPG with...: Barbara Lawton and Staff at Farewell Party, 5/68,1968 + + + + + + 393 + 220 + Records,Photographs: Staff, RPG with...: Kenneth Ong (Intern), 3/29/68,1968 + + + + + + 393 + 221 + Records,Photographs: Staff, RPG with...: Petra Kahn (Volunteer), 10/27/68,1968 + + + + + + 393 + 222 + Records,Photographs: Staff, RPG with...: Joe DeWeese and Staff at Farewell Party, 1/20/68,1968 + + + + + + 393 + 223 + Records,Photographs: Staff, RPG with...: Kim Barrymore (Volunteer), 10/27/68,1968 + + + + + + 393 + 224 + Records,Photographs: Staff, RPG with...: Annette Abrams, 10/67,1967 + + + + + + 393 + 225 + Records,Photographs: Staff, RPG with...: Carolyn Chapman, 9/28/67,1967 + + + + + + 393 + 226 + Records,Photographs: Staff, RPG with...: Paulette Turner and Staff at Farewell Party, 6/67,1967 + + + + + + 393 + 227 + Records,Photographs: Staff, RPG with...: Andrea Paleologos, Hushen, and Gnodtke, 4/14/67,1967 + + + + + + 393 + 228 + Records,Photographs: Staff, RPG with...: Jean Turmala and Paulette Turner, 1966,1966 + + + + + + 393 + 229 + Records,Photographs: Staff, RPG with...: Summer Interns, 1966,1966 + + + + + + 393 + 230 + Records,Photographs: Staff, RPG with...: Brian Donnelly, 1965,1965 + + + + + + 393 + 231 + Records,Photographs: Staff, RPG with...: Staff, 1965,1965 + + + + + + 393 + 232 + Records,Photographs: Staff, RPG with...: Jim and Fran Schoener and Family, 1962,1962 + + + + + + 393 + 233 + Records,Photographs: Staff, RPG with...: Staff, 1/30/61,1961 + + + + + + 393 + 234 + Records,Photographs: Staff, RPG with...: Pauline Antzak and Friend, Late 1950's,1950-1959 + + + + + + 394 + 1 + Records,Photographs: Senators, RPG with...: Presenting FTD Golden Rose to Humphrey, 7/26/77,1977 + + + + + + 394 + 2 + Records,Photographs: Senators, RPG with...: Riegle and Jim Hill at PBB Hearings, 4/77,1977 + + + + + + 394 + 3 + Records,Photographs: Senators, RPG with...: Hart Tribute, 3/77,1977 + + + + + + 394 + 4 + Records,Photographs: Senators, RPG with...: Sparkman and Michel, 1977,1977 + + + + + + 394 + 5 + Records,Photographs: Senators, RPG with...: Stevens Moving into Whip Office, 1/6/77,1977 + + + + + + 394 + 6 + Records,Photographs: Senators, RPG with...: Hatfield, 1/4/77,1977 + + + + + + 394 + 7 + Records,Photographs: Senators, RPG with...: Republican Policy Committee, 1/4/77,1977 + + + + + + 394 + 8 + Records,Photographs: Senators, RPG with...: Scott, Mansfield, Byrd with DAR, 9/13/76,1976 + + + + + + 394 + 9 + Records,Photographs: Senators, RPG with...: Bob Byrd, 5/76,1976 + + + + + + 394 + 10 + Records,Photographs: Senators, RPG with...: MI Delegation on Michigan Day, 5/5/76,1976 + + + + + + 394 + 11 + Records,Photographs: Senators, RPG with...: Hart and MSU President Wharton, 4/29/76,1976 + + + + + + 394 + 12 + Records,Photographs: Senators, RPG with...: Birch Bayh Holding Softball, 3/30/76,1976 + + + + + + 394 + 13 + Records,Photographs: Senators, RPG with...: Hugh Scott and Interns in Leader=s Office, 12/75,1975 + + + + + + 394 + 14 + Records,Photographs: Senators, RPG with...: Billy Graham and Senators, 4/11/75,1975 + + + + + + 394 + 15 + Records,Photographs: Senators, RPG with...: Gale McGee and Arnon Gafni (Israel), 4/9/75,1975 + + + + + + 394 + 16 + Records,Photographs: Senators, RPG with...: Pell at Rules Hearing on NH Senate Race, 1/30/75,1975 + + + + + + 394 + 17 + Records,Photographs: Senators, RPG with...: McClure and Hansen, 1/14/75,1975 + + + + + + 394 + 18 + Records,Photographs: Senators, RPG with...: Rules Hearing on NH Senate Race, 1/14/75,1975 + + + + + + 394 + 19 + Records,Photographs: Senators, RPG with...: Pell at Rules Hearing on NH Senate Race, 1/75,1975 + + + + + + 394 + 20 + Records,Photographs: Senators, RPG with...: Rules Committee Members and Staff, 1975,1975 + + + + + + 394 + 21 + Records,Photographs: Senators, RPG with...: Hart and 1974 Poppy Girl, 1974,1974 + + + + + + 394 + 22 + Records,Photographs: Senators, RPG with...: Hugh Scott, 12/23/74,1974 + + + + + + 394 + 23 + Records,Photographs: Senators, RPG with...: Scott, Cannon, Byrd During Rockefeller Vote, 12/74,1974 + + + + + + 394 + 24 + Records,Photographs: Senators, RPG with...: Mrs. G., Domenici, and Rhodes, Continental Cong., 9/74,1974 + + + + + + 394 + 25 + Records,Photographs: Senators, RPG with...: Republican Conference, 8/7/74,1974 + + + + + + 394 + 26 + Records,Photographs: Senators, RPG with...: Off Floor with Curtis and Wyman, 8/6/74,1974 + + + + + + 394 + 27 + Records,Photographs: Senators, RPG with...: Republican Conf. Meeting, 7/25/74,1974 + + + + + + 394 + 28 + Records,Photographs: Senators, RPG with...: Senators with Alfred Selby (Janitor), 5/74,1974 + + + + + + 394 + 29 + Records,Photographs: Senators, RPG with...: Hart with Rossi Lawyers, 5/74,1974 + + + + + + 394 + 30 + Records,Photographs: Senators, RPG with...: Mrs. G., Brock, Bennett, Landgree at Reception, 3/74,1974 + + + + + + 394 + 31 + Records,Photographs: Senators, RPG with...: Committee Meeting, 12/17/73,1973 + + + + + + 394 + 32 + Records,Photographs: Senators, RPG with...: Cook and Hatfield at Ford Hearings, 11/1/73,1973 + + + + + + 394 + 33 + Records,Photographs: Senators, RPG with...: Williams and Allen at Ford Hearings, 11/1/73,1973 + + + + + + 394 + 34 + Records,Photographs: Senators, RPG with...: Byrd at Ford Hearings, 11/1/73,1973 + + + + + + 394 + 35 + Records,Photographs: Senators, RPG with...: Cook at Ford Hearings, 11/1/73,1973 + + + + + + 394 + 36 + Records,Photographs: Senators, RPG with...: Pell, Cannon, and Cook at Ford Hearings, 11/1/73,1973 + + + + + + 394 + 37 + Records,Photographs: Senators, RPG with...: Tower, Packwood, and Scott, 9/73,1973 + + + + + + 394 + 38 + Records,Photographs: Senators, RPG with...: Percy and Scott at Kissinger Hearings, 9/7/93,1973 + + + + + + 394 + 39 + Records,Photographs: Senators, RPG with...: Packwood and Unknown Man, 8/1/73,1973 + + + + + + 394 + 40 + Records,Photographs: Senators, RPG with...: Senators at Inaugural, 1/20/73,1973 + + + + + + 394 + 41 + Records,Photographs: Senators, RPG with...: Brooke, 1/3/73,1973 + + + + + + 394 + 42 + Records,Photographs: Senators, RPG with...: Tower, Cannon, Bennett, and Scott, 1/3/73,1973 + + + + + + 394 + 43 + Records,Photographs: Senators, RPG with...: Taft, Tower, Cotton, Bennett, and Scott, 1/73,1973 + + + + + + 394 + 44 + Records,Photographs: Senators, RPG with...: Schweiker and Bartlett, 1/3/73,1973 + + + + + + 394 + 45 + Records,Photographs: Senators, RPG with...: Cannon at Ford Hearings, 11/1/73,1973 + + + + + + 394 + 46 + Records,Photographs: Senators, RPG with...: Brock, Taft, and Aiken, 1/3/73,1973 + + + + + + 394 + 47 + Records,Photographs: Senators, RPG with...: Tower, Scott, Bennett, and Cotton, 1/3/73,1973 + + + + + + 394 + 48 + Records,Photographs: Senators, RPG with...: Scott, Bennett, Brock, Tower, and Cotton, 1/3/73,1973 + + + + + + 394 + 49 + Records,Photographs: Senators, RPG with...: Carl Curtis, 1973,1973 + + + + + + 394 + 50 + Records,Photographs: Senators, RPG with...: Scott, Packwood, and Aiken, 8/72,1972 + + + + + + 394 + 51 + Records,Photographs: Senators, RPG with...: Nelson Rockefeller at Governors Lunch, 7/72,1972 + + + + + + 394 + 52 + Records,Photographs: Senators, RPG with...: Rockefeller and Milliken at Luncheon, 7/20/72,1972 + + + + + + 394 + 53 + Records,Photographs: Senators, RPG with...: Packwood and Milliken at Luncheon, 7/20/72,1972 + + + + + + 394 + 54 + Records,Photographs: Senators, RPG with...: National governor=s Conference Luncheon, 7/20/72,1972 + + + + + + 394 + 55 + Records,Photographs: Senators, RPG with...: Beall, Mansfield, Rockefeller, Mathias, etc., 7/72,1972 + + + + + + 394 + 56 + Records,Photographs: Senators, RPG with...: Rosemary Woods and Murphy, 6/28/72,1972 + + + + + + 394 + 57 + Records,Photographs: Senators, RPG with...: George Murphy, 6/28/72,1972 + + + + + + 394 + 58 + Records,Photographs: Senators, RPG with...: Irene McCabe and Brock, 4/27/72,1972 + + + + + + 394 + 59 + Records,Photographs: Senators, RPG with...: Scott and Allott, 3/13/72,1972 + + + + + + 394 + 60 + Records,Photographs: Senators, RPG with...: Cotton, Scott, Smith, and Allott, 3/13/72,1972 + + + + + + 394 + 61 + Records,Photographs: Senators, RPG with...: Scott and Allott, no date,undated + + + + + + 394 + 62 + Records,Photographs: Senators, RPG with...: Scott, Kissinger, Smith, and Allott, 1972,1972 + + + + + + 394 + 63 + Records,Photographs: Senators, RPG with...: Testifies before Commerce Committee, 2/15/72,1972 + + + + + + 394 + 64 + Records,Photographs: Senators, RPG with...: Hart at MI Wine and Cheese Party, 2/1/72,1972 + + + + + + 394 + 65 + Records,Photographs: Senators, RPG with...: Hart and Frank Rathbun, 2/1/72,1972 + + + + + + 394 + 66 + Records,Photographs: Senators, RPG with...: Scott and Allott, 1971,1971 + + + + + + 394 + 67 + Records,Photographs: Senators, RPG with...: Holton, Byrd, Milliken, Dole, and Scott, 12/71,1971 + + + + + + 394 + 68 + Records,Photographs: Senators, RPG with...: Republican Policy Luncheon, 11/17/71,1971 + + + + + + 394 + 69 + Records,Photographs: Senators, RPG with...: Republican Leadership and William Rogers, 11/71,1971 + + + + + + 394 + 70 + Records,Photographs: Senators, RPG with...: Scott and Stafford, 10/5/71,1971 + + + + + + 394 + 71 + Records,Photographs: Senators, RPG with...: Robert Taft, 10/5/71,1971 + + + + + + 394 + 72 + Records,Photographs: Senators, RPG with...: George Aiken, 10/5/71,1971 + + + + + + 394 + 73 + Records,Photographs: Senators, RPG with...: Gordon Allott, 10/5/71,1971 + + + + + + 394 + 74 + Records,Photographs: Senators, RPG with...: Republican Leadership, 10/5/71,1971 + + + + + + 394 + 75 + Records,Photographs: Senators, RPG with...: Edward Gurney, 9/29/71,1971 + + + + + + 394 + 76 + Records,Photographs: Senators, RPG with...: Bill Brock, 9/29/71,1971 + + + + + + 394 + 77 + Records,Photographs: Senators, RPG with...: Ted Stevens, 9/29/71,1971 + + + + + + 394 + 78 + Records,Photographs: Senators, RPG with...: Milton Young and Hiram Fong, 9/29/71,1971 + + + + + + 394 + 79 + Records,Photographs: Senators, RPG with...: Ed Brooke, 9/29/71,1971 + + + + + + 394 + 80 + Records,Photographs: Senators, RPG with...: Milton Young, 9/21/71,1971 + + + + + + 394 + 81 + Records,Photographs: Senators, RPG with...: Fannin and Murphy, 9/21/71,1971 + + + + + + 394 + 82 + Records,Photographs: Senators, RPG with...: Carl Curtis, 9/21/71,1971 + + + + + + 394 + 83 + Records,Photographs: Senators, RPG with...: Lowell Weiker, 9/21/71,1971 + + + + + + 394 + 84 + Records,Photographs: Senators, RPG with...: Hugh Scott, 9/21/71,1971 + + + + + + 394 + 85 + Records,Photographs: Senators, RPG with...: Clifford Case, 9/21/71,1971 + + + + + + 394 + 86 + Records,Photographs: Senators, RPG with...: William Roth, 9/21/71,1971 + + + + + + 394 + 87 + Records,Photographs: Senators, RPG with...: Bob Packwood, 9/21/71,1971 + + + + + + 394 + 88 + Records,Photographs: Senators, RPG with...: James Buckley, 9/21/71,1971 + + + + + + 394 + 89 + Records,Photographs: Senators, RPG with...: Charles Mathias, 9/21/71,1971 + + + + + + 394 + 90 + Records,Photographs: Senators, RPG with...: J. Glenn Beall, 9/21/71,1971 + + + + + + 394 + 91 + Records,Photographs: Senators, RPG with...: Howard Baker, 9/21/71,1971 + + + + + + 394 + 92 + Records,Photographs: Senators, RPG with...: William Saxbe, 9/21/71,1971 + + + + + + 394 + 93 + Records,Photographs: Senators, RPG with...: Clifford Hansen, 9/21/71,1971 + + + + + + 394 + 94 + Records,Photographs: Senators, RPG with...: Robert Dole and Jack Miller, 9/21/71,1971 + + + + + + 394 + 95 + Records,Photographs: Senators, RPG with...: Charles Percy and Robert Stafford, 9/21/71,1971 + + + + + + 394 + 96 + Records,Photographs: Senators, RPG with...: Roman Hruska, 9/21/71,1971 + + + + + + 394 + 97 + Records,Photographs: Senators, RPG with...: Pete Dominick, 9/21/71,1971 + + + + + + 394 + 98 + Records,Photographs: Senators, RPG with...: George Murphy and Unknown Man, 1971,1971 + + + + + + 394 + 99 + Records,Photographs: Senators, RPG with...: Clifford Hansen, 9/21/71,1971 + + + + + + 394 + 100 + Records,Photographs: Senators, RPG with...: McDonald and John Doherty, 8/3/71,1971 + + + + + + 394 + 101 + Records,Photographs: Senators, RPG with...: Percy and Proxmire (Great Lakes Senators), 3/8/71,1971 + + + + + + 394 + 102 + Records,Photographs: Senators, RPG with...: Charles Percy, 1971,1971 + + + + + + 394 + 103 + Records,Photographs: Senators, RPG with...: Barry Goldwater, 1971,1971 + + + + + + 394 + 104 + Records,Photographs: Senators, RPG with...: Hugh Scott, 1971,1971 + + + + + + 394 + 105 + Records,Photographs: Senators, RPG with...: Percy, Dole, and Pearson, 2/71,1971 + + + + + + 394 + 106 + Records,Photographs: Senators, RPG with...: Hart, Harvey, and Chamberlain, 2/2/71,1971 + + + + + + 394 + 107 + Records,Photographs: Senators, RPG with...: Hugh Scott, 2/2/71,1971 + + + + + + 394 + 108 + Records,Photographs: Senators, RPG with...: Republican Policy Luncheon, 2/2/71,1971 + + + + + + 394 + 109 + Records,Photographs: Senators, RPG with...: Margaret Chase Smith, 2/2/71,1971 + + + + + + 394 + 110 + Records,Photographs: Senators, RPG with...: James Buckley and Milton Young, 2/2/71,1971 + + + + + + 394 + 111 + Records,Photographs: Senators, RPG with...: Harris and Taos Pueblo Delegation, 12/1/70,1970 + + + + + + 394 + 112 + Records,Photographs: Senators, RPG with...: New GOP Senators, 11/30/70,1970 + + + + + + 394 + 113 + Records,Photographs: Senators, RPG with...: Hart, John Feikens, and Philip Pratt, 11/24/70,1970 + + + + + + 394 + 114 + Records,Photographs: Senators, RPG with...: William Saxbe and Football, 11/18/70,1970 + + + + + + 394 + 115 + Records,Photographs: Senators, RPG with...: William Saxbe with Salmon, 11/18/70,1970 + + + + + + 394 + 116 + Records,Photographs: Senators, RPG with...: William Saxbe, 11/70,1970 + + + + + + 394 + 117 + Records,Photographs: Senators, RPG with...: Seaway Party, 10/70,1970 + + + + + + 394 + 118 + Records,Photographs: Senators, RPG with...: Broyhill, Gurney, and Brown, 7/9/70,1970 + + + + + + 394 + 119 + Records,Photographs: Senators, RPG with...: Jack Danforth, 7/14/70,1970 + + + + + + 394 + 120 + Records,Photographs: Senators, RPG with...: Tydings at Press Conference, 6/18/70,1970 + + + + + + 394 + 121 + Records,Photographs: Senators, RPG with...: Presidential Scholars and Hart, 6/2/70,1970 + + + + + + 394 + 122 + Records,Photographs: Senators, RPG with...: Tydings and Mathias, 4/24/70,1970 + + + + + + 394 + 123 + Records,Photographs: Senators, RPG with...: Coretta King, Brooke, Percy, and Saxbe, 4/23/70,1970 + + + + + + 394 + 124 + Records,Photographs: Senators, RPG with...: Cotton, Magnuson, Admiral Bender, 4/16/70,1970 + + + + + + 394 + 125 + Records,Photographs: Senators, RPG with...: Hart with Supreme Court Lawyer, 4/6/70,1970 + + + + + + 394 + 126 + Records,Photographs: Senators, RPG with...: Boggs, Allott, Bennett, and Others, 2/28/70,1970 + + + + + + 394 + 127 + Records,Photographs: Senators, RPG with...: Smith, Allott, Bennett, and Hansen, 1969-70,1969-1970 + + + + + + 394 + 128 + Records,Photographs: Senators, RPG with...: Spong and Mike Forgash, 12/22/69,1969 + + + + + + 394 + 129 + Records,Photographs: Senators, RPG with...: George Murphy before Rose Bowl Game, 12/22/69,1969 + + + + + + 394 + 130 + Records,Photographs: Senators, RPG with...: Smith, Olgivie, and Clement Stone, 12/18/69,1969 + + + + + + 394 + 131 + Records,Photographs: Senators, RPG with...: Scott at Reception at Capitol Hill Club, 12/69,1969 + + + + + + 394 + 132 + Records,Photographs: Senators, RPG with...: Percy, Byrd Discuss Tax Reform with Staffer, 12/69,1969 + + + + + + 394 + 133 + Records,Photographs: Senators, RPG with...: Scott and Goodell, 10/9/69,1969 + + + + + + 394 + 134 + Records,Photographs: Senators, RPG with...: Scott at Reception, 10/8/69,1969 + + + + + + 394 + 135 + Records,Photographs: Senators, RPG with...: C. S. Mott, Arthur Summerfield, etc., 10/2/69,1969 + + + + + + 394 + 136 + Records,Photographs: Senators, RPG with...: Senate Republican Leadership, 9/24/69,1969 + + + + + + 394 + 137 + Records,Photographs: Senators, RPG with...: Mrs. G., Scott, and Kennedy, 9/24/69,1969 + + + + + + 394 + 138 + Records,Photographs: Senators, RPG with...: Scott and Mark Trice, 9/24/69,1969 + + + + + + 394 + 139 + Records,Photographs: Senators, RPG with...: Hugh Scott, 9/24/69,1969 + + + + + + 394 + 140 + Records,Photographs: Senators, RPG with...: Brooke, 9/24/69,1969 + + + + + + 394 + 141 + Records,Photographs: Senators, RPG with...: Brooke and Dirksen, 9/24/69,1969 + + + + + + 394 + 142 + Records,Photographs: Senators, RPG with...: Tower, Miller, Pearson, and Percy, 9/24/69,1969 + + + + + + 394 + 143 + Records,Photographs: Senators, RPG with...: Hugh Scott, 9/19/69,1969 + + + + + + 394 + 144 + Records,Photographs: Senators, RPG with...: Scott and Curtis, 9/19/69,1969 + + + + + + 394 + 145 + Records,Photographs: Senators, RPG with...: Bellmon, Gurney, Dominick, and Boggs, 9/19/69,1969 + + + + + + 394 + 146 + Records,Photographs: Senators, RPG with...: Oglivie and Smith, 9/19/69,1969 + + + + + + 394 + 147 + Records,Photographs: Senators, RPG with...: Secy. Schultz and Gov. Ogilvie, 9/19/69,1969 + + + + + + 394 + 148 + Records,Photographs: Senators, RPG with...: Smith and Hart, 9/18/69,1969 + + + + + + 394 + 149 + Records,Photographs: Senators, RPG with...: Committee Meeting, 9/17/69,1969 + + + + + + 394 + 150 + Records,Photographs: Senators, RPG with...: Dirksen and Catholicos Khoren, Armenian Church, 6/11/69,1969 + + + + + + 394 + 151 + Records,Photographs: Senators, RPG with...: Presidents of NBC, CBS, and ABC Testify, 3/12/69,1969 + + + + + + 394 + 152 + Records,Photographs: Senators, RPG with...: Hart and KDB Teens, 2/25/69,1969 + + + + + + 394 + 153 + Records,Photographs: Senators, RPG with...: Mrs. G. with Homer Ferguson, 1/17/69,1969 + + + + + + 394 + 154 + Records,Photographs: Senators, RPG with...: Herb Klein, Hechler, and Writer, 1/13/69,1969 + + + + + + 394 + 155 + Records,Photographs: Senators, RPG with...: Helps Count Electoral Votes for Nixon, 1/6/69,1969 + + + + + + 394 + 156 + Records,Photographs: Senators, RPG with...: Republican Truth Squad during >68 Campaign, 10/68,1968 + + + + + + 394 + 157 + Records,Photographs: Senators, RPG with...: Charles Bernard and George Murphy, 9/25/68,1968 + + + + + + 394 + 158 + Records,Photographs: Senators, RPG with...: Percy, Williams, and Baker, 9/68,1968 + + + + + + 394 + 159 + Records,Photographs: Senators, RPG with...: Charles Goodell, 9/25/68,1968 + + + + + + 394 + 160 + Records,Photographs: Senators, RPG with...: Coast Guard Academy, 5/19/68,1968 + + + + + + 394 + 161 + Records,Photographs: Senators, RPG with...: Labor and Public Welfare Committee, 1968,1968 + + + + + + 394 + 162 + Records,Photographs: Senators, RPG with...: Stennis, Church, and Javits, 3/14/68,1968 + + + + + + 394 + 163 + Records,Photographs: Senators, RPG with...: Hart with Senate Youth Program Winners, 1/24/68,1968 + + + + + + 394 + 164 + Records,Photographs: Senators, RPG with...: Senators in Republican State of Union, 1/23/68,1968 + + + + + + 394 + 165 + Records,Photographs: Senators, RPG with...: Percy, Murphy, and Ed May, 1/20/68,1968 + + + + + + 394 + 166 + Records,Photographs: Senators, RPG with...: Other Senators in Loyal Opposition Show, 1/18/68,1968 + + + + + + 394 + 167 + Records,Photographs: Senators, RPG with...: Homer Ferguson, 8/28/67,1967 + + + + + + 394 + 168 + Records,Photographs: Senators, RPG with...: Hart and State Legislators, 8/25/67,1967 + + + + + + 394 + 169 + Records,Photographs: Senators, RPG with...: Romney, 8/16/67,1967 + + + + + + 394 + 170 + Records,Photographs: Senators, RPG with...: Hart and Hope College Students with Turtles, 5/67,1967 + + + + + + 394 + 171 + Records,Photographs: Senators, RPG with...: Ferguson, Potter, Hart, Vandenberg Daughters, 4/67,1967 + + + + + + 394 + 172 + Records,Photographs: Senators, RPG with...: Hart, Broomfield, and McDonald, 3/67,1967 + + + + + + 394 + 173 + Records,Photographs: Senators, RPG with...: Dirksen and Red Skeleton, 3/23/67,1967 + + + + + + 394 + 174 + Records,Photographs: Senators, RPG with...: Chairs Public Works Subcommittee Hearing, 3/16/67,1967 + + + + + + 394 + 175 + Records,Photographs: Senators, RPG with...: Phil Hart, 3/3/67,1967 + + + + + + 394 + 176 + Records,Photographs: Senators, RPG with...: Senator Philip A. Hart, 1/24/67,1967 + + + + + + 394 + 177 + Records,Photographs: Senators, RPG with...: Hart with Senate Youth Program Winners, 1/24/67,1967 + + + + + + 394 + 178 + Records,Photographs: Senators, RPG with...: Mrs. G. at GOP State of Union Message, 1/20/67,1967 + + + + + + 394 + 179 + Records,Photographs: Senators, RPG with...: Hiram Fong and Lt. Gov. Milliken, 1/10/67,1967 + + + + + + 394 + 180 + Records,Photographs: Senators, RPG with...: Dirksen, and Lt. Gov. and Mrs. Milliken, 1/10/67,1967 + + + + + + 394 + 181 + Records,Photographs: Senators, RPG with...: Thomas H. Kuchel, 1967,1967 + + + + + + 394 + 182 + Records,Photographs: Senators, RPG with...: Homer Ferguson and Wife, 1/10/67,1967 + + + + + + 394 + 183 + Records,Photographs: Senators, RPG with...: Brooke, Percy, Hatfield, Hansen, Baker, 1/67,1967 + + + + + + 394 + 184 + Records,Photographs: Senators, RPG with...: Dirksen and Margaret Chase Smith, 1967,1967 + + + + + + 394 + 185 + Records,Photographs: Senators, RPG with...: Brooke, Dirksen at Reception for Brooke, 8/23/66,1966 + + + + + + 394 + 186 + Records,Photographs: Senators, RPG with...: Everett Dirksen and Crutches, 1966,1966 + + + + + + 394 + 187 + Records,Photographs: Senators, RPG with...: Frank Carlson and Milward Simpson, 1966,1966 + + + + + + 394 + 188 + Records,Photographs: Senators, RPG with...: Frank Carlson, 1966,1966 + + + + + + 394 + 189 + Records,Photographs: Senators, RPG with...: George Murphy and Ronald Reagan, 1966,1966 + + + + + + 394 + 190 + Records,Photographs: Senators, RPG with...: Jake Javits, 6/66,1966 + + + + + + 394 + 191 + Records,Photographs: Senators, RPG with...: VP Humphrey and Phil Hart, 5/16/66,1966 + + + + + + 394 + 192 + Records,Photographs: Senators, RPG with...: Gordon Allott, 1966,1966 + + + + + + 394 + 193 + Records,Photographs: Senators, RPG with...: Robert F. Kennedy, 1966,1966 + + + + + + 394 + 194 + Records,Photographs: Senators, RPG with...: Morton and Murphy, 1966,1966 + + + + + + 394 + 195 + Records,Photographs: Senators, RPG with...: George Murphy, 1966,1966 + + + + + + 394 + 196 + Records,Photographs: Senators, RPG with...: Dirksen and Young, 1966,1966 + + + + + + 394 + 197 + Records,Photographs: Senators, RPG with...: Young, Hickenlooper, and Saltonstall, 1966,1966 + + + + + + 394 + 198 + Records,Photographs: Senators, RPG with...: Gov. Reagan and George Murphy, 1966,1966 + + + + + + 394 + 199 + Records,Photographs: Senators, RPG with...: John Williams, 1966,1966 + + + + + + 394 + 200 + Records,Photographs: Senators, RPG with...: Jerry Ford and Unknown Man, 1964,1964 + + + + + + 394 + 201 + Records,Photographs: Senators, RPG with...: Goldwater and Miller, 1964,1964 + + + + + + 394 + 202 + Records,Photographs: Senators, RPG with...: Goldwater, Landrum, and Barden, 1959,1959 + + + + + + 394 + 203 + Records,Photographs: Senators, RPG with...: Randolph, Kennedy, Ayres, and Kearns, 1959,1959 + + + + + + 394 + 204 + Records,Photographs: Senators, RPG with...: Kennedy and Barden, 1959,1959 + + + + + + 394 + 205 + Records,Photographs: Senators, RPG with...: Goldwater, Landrum, Barden, and Kennedy, 1959,1959 + + + + + + 394 + 206 + Records,Photographs: Senators, RPG with...: Potter and Cherry Queen, 1958,1958 + + + + + + 394 + 207 + Records,Photographs: Senators, RPG with...: Halleck, Alcorn, and Potter, 1958,1958 + + + + + + 394 + 208 + Records,Photographs: Senators, RPG with...: Potter and Postmaster Gen. Summerfield, 1958,1958 + + + + + + 394 + 209 + Records,Photographs: Senators, RPG with...: Potter and Miss Michigan, 8/20/57,1957 + + + + + + 395 + 1 + Records,Griffin, 2 2 x 6" Videotapes, 6/9/72,1972 + + + + + + 395 + 2 + Records,Griffin, 2 2 x 6" Videotapes, 9/28/72,1972 + + + + + + 395 + 3 + Records,Griffin, 2 2 x 6" Videotapes, 6/2/72,1972 + + + + + + 395 + 4 + Records,Griffin, 2 2 x 6" Videotapes, 6/2/72,1972 + + + + + + 395 + 5 + Records,Griffin, 2 2 x 6" Videotapes, 11/5/72,1972 + + + + + + 395 + 6 + Records,Griffin, 2 2 x 6" Videotapes, 9/28/72,1972 + + + + + + 395 + 7 + Records,Griffin, 2 2 x 6" Videotapes, 10/5/72,1972 + + + + + + 395 + 8 + Records,Griffin, 2 2 x 6" Videotapes, 10/5/72,1972 + + + + + + 396 + 1 + Records,TV Commercial Spots, RPG: Statley-Fox, Senator Griffin, GRI 8430, Esther Barnhart, 30 sec., color, djm—1240,1978 + + + + + + 396 + 2 + Records,TV Commercial Spots, RPG: Statley-Fox, Senator Griffin, GRI 8530, Ruth Korma, 30 sec., color, djm--1239,1978 + + + + + + 396 + 3 + Records,TV Commercial Spots, RPG: Statley-Fox, Senator Griffin, GRI 8730, Joe Gamble, 30 sec., color, djm--1243,1978 + + + + + + 396 + 4 + Records,TV Commercial Spots, RPG: Statley-Fox, Senator Griffin, GRI 8830, Helen Cope, 30 sec., color, djm--1245,1978 + + + + + + 396 + 5 + Records,TV Commercial Spots, RPG: Statley-Fox, Senator Griffin, GRI 8930, Taxes, 30 sec., color, djm--1244,1978 + + + + + + 396 + 6 + Records,TV Commercial Spots, RPG: Statley-Fox, Senator Griffin, GRI 8960, Senator Griffin, 60 sec., color, djm--1241,1978 + + + + + + 396 + 7 + Records,TV Commercial Spots, RPG: Statley-Fox, Senator Griffin, GRI 9130, Inflation (2 copies), 30 sec., color, djm--1242,1978 + + + + + + 396 + 8 + Records,TV Commercial Spots, RPG: Statley-Fox, Senator Griffin, GRI 9230, Govt. Waste, 30 sec., color, djm--1238,1978 + + + + + + 396 + 9 + Records,TV Commercial Spots, RPG: Producers Color Services, Inc., Senator Bob Griffin, Burton Adv., 1 x :30, I Am Bob Griffin, Grif-001, HBC DUB 9/28/78,1978 + + + + + + 396 + 10 + Records,TV Commercial Spots, RPG: Producers Color Services, Inc., Senator Bob Griffin, Burton Adv., 2 x :30, Grif-005 AAsk Senator Griffin Tonite 7:30", Grif-006 Ask Senator Griffin-Phone, HBC DUB 10/10/78,1978 + + + + + + 397 + 1 + Records,Griffin, 2 2 x 6" Videotapes, 10/22/71,1971 + + + + + + 397 + 2 + Records,Griffin, 2 2 x 6" Videotapes, 10/5/72,1972 + + + + + + 397 + 3 + Records,Griffin, 2 2 x 6" Videotapes, 9/28/72,1972 + + + + + + 397 + 4 + Records,Griffin, 2 2 x 6" Videotapes, 3/30/72,1972 + + + + + + 397 + 5 + Records,Griffin, 2 2 x 6" Videotapes, 3/24/72,1972 + + + + + + 397 + 6 + Records,Griffin, 2 2 x 6" Videotapes, 10/5/72,1972 + + + + + + 397 + 7 + Records,Griffin, 2 2 x 6" Videotapes, 6/2/72,1972 + + + + + + 397 + 8 + Records,Griffin, 2 2 x 6" Videotapes, 9/28/72,1972 + + + + + + 398 + 1 + Records,1" x 14" film, Griffin Interviews, 1956 or 1957,1956-1957 + + + + + + 398 + 2 + Records,1" x 14" 3 films in 1 can, Griffin-Ford, undated,undated + + + + + + 398 + 3 + Records,2" x 1" videotape, RPG Interview with Bob McBride, TV-2, Spring, 1971,1971 + + + + + + 398 + 4 + Records,2" x 1" videotape, Romney-Griffin, Off the Air, Detroit, 10/11/66,1966 + + + + + + 399 + 1 + Records,2 2@ x 6" Videotapes, Griffin, 9/20/72,1972 + + + + + + 399 + 2 + Records,2 2@ x 6" Videotapes, Griffin, 8/3/72,1972 + + + + + + 399 + 3 + Records,2 2@ x 6" Videotapes, Griffin, 6/2/72,1972 + + + + + + 399 + 4 + Records,2 2@ x 6" Videotapes, Griffin, 9/28/72,1972 + + + + + + 399 + 5 + Records,2 2@ x 6" Videotapes, Griffin, 9/8/72,1972 + + + + + + 399 + 6 + Records,2 2@ x 6" Videotapes, Griffin, 10/5/72,1972 + + + + + + 399 + 7 + Records,4" x 7 2@ (Modern) Videotape,undated + + + + + + 399 + 8 + Records,Michigan Political History Society Interview with Griffin by Dennis Cawthorne, 7/25/76,1976 + + + + + + 399 + 9 + Records,Cassettes,undated + + + + + + 399 + 10 + Records,Griffin Interview, 3/2/79,1979 + + + + + + 399 + 11 + Records,Richard B. Russell Memorial Library, Oral History #68, with Griffin,undated + + + + + + 400 + 1 + Records,Griffin Show, 12" reel, 16 mm film, 10/24/72,1972 + + + + + + 401 + 1 + Records,Honorable Robert P. Griffin Face the Nation, 12" reel, 16 mm film, (CBS TV Network), 4/26/70,1970 + + + + + + 402 + 1 + Records,1957-75 Photos and Political Cartoons,1957-1975 + + + + + + 402 + 2 + Records,Griffin Political Cartoons, 1959,1959 + + + + + + 402 + 3 + Records,Sen J.F. Kennedy (D-MA) & H-S conferences on Landrum - Griffin bill, Wash., D.C., 1959,1959 + + + + + + 402 + 4 + Records,Congressman Phil Landrum (D-GA), Pres. Eisenhower & Griffin. White House after signing Landrum - Griffin Bill, 9/1959 ,1959 + + + + + + 402 + 5 + Records,Phil Landrum (D-GA) & Griffin celebrating,@ Griffin Act Passage, Wash, D.C. 9/1959 – two photos, 1 is autographed,1959 + + + + + + 402 + 6 + Records,Senators High Scott (R-PA), Wallace Bennett (R-UT), Bill Brock (R-TN, John Tower (R-TX), Griffin, and Norris Cotton (R-NH) - Senate Republican Leadership Meeting, Wash. D.C.,undated + + + + + + 402 + 7 + Records,David W. Kendall (Spec. Counsel to the President)1959, autographed White House,1959 + + + + + + 402 + 8 + Records,Congressmen Griffin, Wm. S. Broomfield (R-MI), Robert J. McIntosh (R-MI), Joseph W.,1957 + + + + + + 402 + 9 + Records,Astronaut Harrison H. Schmitt (Sen. - NM), autographed, 1975.,1975 + + + + + + 402 + 10 + Records,Pres. Urho Kekkoner, Griffin, Ambassador Mask (Evans) Austad Helsinki, Finland 9/75,1975 + + + + + + 402 + 11 + Records,Griffin Honorary LLD UM - Ann Arbor 5/5/73,1973 + + + + + + 402 + 12 + Records,Frederick H. Mueller (Secretary of Comerce ) Wash., D.C., autographed, 1959.,1959 + + + + + + 402 + 13 + Records,Griffin at Berlin Wall, Berlin, Germany 1961-62,1961-1962 + + + + + + 402 + 14 + Records,Congressmen Charles E. Goodell (R-NY), Albert H. Quie (R-MN), Wm. C. Cramer (R-FL), Tony Curtis (R-MO), Wm B. Windall (R-NV), Griffin, Melvin R. Laird (R-WI). Ayoung Turks@ Press Conference, Wash., D.C. 1965,undated + + + + + + 402 + 15 + Records,Griffin Dr. of Human Letters degree, Hillsdale College 6/1/69,1969 + + + + + + 402 + 16 + Records,Congressman Gerald Ford (R-MI), Ezra Taft Benson (Secretary of Ag.) & Griffin. Egg Promotion, Wash, D.C., 1957-58.,1957-1958 + + + + + + 402 + 17 + Records,Republican Leadership Breakfast, White House, 1974,1974 + + + + + + 403 + 1 + Records,3 3/4" Tape Griffin,undated + + + + + + 403 + 2 + Records,3 1/2" Tape Landrum-Griffin Act,undated + + + + + + 403 + 3 + Records,1/2" - 3 Tapes - R. Griffin,undated + + + + + + 403 + 4 + Records,1" Tape,undated + + + + + + 403 + 5 + Records,2 1/4" Tape,undated + + + + + + 403 + 6 + Records,4 1/4" Tape- Headquarters USA,undated + + + + + + 403 + 7 + Records,4 1/4" Tape - Griffin Reports 1956-57,1956-1957 + + + + + + + Senator Robert P. Griffin Papers Collection - Series #9, Press - out of order, (114 cubic feet), 1940‑1978, bulk 1957‑1978) + + + + 337 + 1 + Records,Social Security to Hire Spanish Americans in Detroit,1971-1972 + + + + + + 337 + 2 + Records,Poznan Boys' Choir, White House,1971-1972 + + + + + + 337 + 3 + Records,EDA Grant for Houghton County Airport,1971-1972 + + + + + + 337 + 4 + Records,Chrysler Contract, Light Trucks,1971-1972 + + + + + + 337 + 5 + Records,Educational Assistance Due Michigan Indian Children,1971-1972 + + + + + + 337 + 6 + Records,Executive Reorganization,1971-1972 + + + + + + 337 + 7 + Records,Reduced Travel Fares for Aged,1971-1972 + + + + + + 337 + 8 + Records,Dedication of Detroit Medical & Surgical Center,1971-1972 + + + + + + 337 + 9 + Records,Urges Start on Trenton Channel,1971-1972 + + + + + + 337 + 10 + Records,Program for More Minority Representation on Draft Boards,1971-1972 + + + + + + 337 + 11 + Records,More Funding to Fight Sea Lamprey,1971-1972 + + + + + + 337 + 12 + Records,Grant to Michigan Department of Natural Resources,1971-1972 + + + + + + 337 + 13 + Records,Grant to University of Michigan, Great Lakes Pollution,1971-1972 + + + + + + 337 + 14 + Records,To Draft-Exempt Doctors who Serve in Rural, Ghetto,1971-1972 + + + + + + 337 + 15 + Records,Tax Relief for Parents of College Students,1971-1972 + + + + + + 337 + 16 + Records,Asks Support for Doctor Shortage Amendment,1971-1972 + + + + + + 337 + 17 + Records,Lake Superior, Reserve Mining,1971-1972 + + + + + + 337 + 18 + Records,Measure to Speed GI Bill Payments,1971-1972 + + + + + + 337 + 19 + Records,200 Jobless to Receive Skill Trade Jobs,1971-1972 + + + + + + 337 + 20 + Records,OEO Grant, Small Claims and Out-of-Court,1971-1972 + + + + + + 337 + 21 + Records,Methadone Treatment for Addicts,1971-1972 + + + + + + 337 + 22 + Records,Second Icebreaker Assigned to Great Lakes,1971-1972 + + + + + + 337 + 23 + Records,Reserve Mining,1971-1972 + + + + + + 337 + 24 + Records,Achieving Auto Clean Air Standards,1971-1972 + + + + + + 337 + 25 + Records,Jobs for Veterans Campaign,1971-1972 + + + + + + 337 + 26 + Records,Soo Free Trade Zone,1971-1972 + + + + + + 337 + 27 + Records,Grant to Ferris State,1971-1972 + + + + + + 337 + 28 + Records,Nixon's Upcoming Trip to Red China,1971-1972 + + + + + + 337 + 29 + Records,Sea Lamprey Bill Passes Senate,1971-1972 + + + + + + 337 + 30 + Records,Selfridge AFB, Training Site for Vets,1971-1972 + + + + + + 337 + 31 + Records,Woodcock Backs RPG Exhaust Emission Bill,1971-1972 + + + + + + 337 + 32 + Records,Seeks More Funds for Great Lakes Shipping,1971-1972 + + + + + + 337 + 33 + Records,Home Insurance Program for Detroit Residents,1971-1972 + + + + + + 337 + 34 + Records,Sea Lamprey Control, Amendment Passes,1971-1972 + + + + + + 337 + 35 + Records,Emergency Transportation Strike Bill,1971-1972 + + + + + + 337 + 36 + Records,Funds Near for Sleeping Bear National Lakeshore,1971-1972 + + + + + + 337 + 37 + Records,Calls for Revising Labor Department Guidelines, Veterans,1971-1972 + + + + + + 337 + 38 + Records,Bill to Allow Utilities to Construct Low Income Housing,1971-1972 + + + + + + 337 + 39 + Records,Michigan to Honor Astronauts Scott, Irwin, and Worden,1971-1972 + + + + + + 337 + 40 + Records,U.S. Funds to Provide Jobs in Michigan,1971-1972 + + + + + + 337 + 41 + Records,Auto Excise Tax Repeal,1971-1972 + + + + + + 337 + 42 + Records,Nixon Economic Policy,1971-1972 + + + + + + 337 + 43 + Records,Muskie, Nixon Economic Program,1971-1972 + + + + + + 337 + 44 + Records,Computerized Child Adoption Program,1971-1972 + + + + + + 337 + 45 + Records,Labor Leaders, Nixon Economic Policy,1971-1972 + + + + + + 337 + 46 + Records,Auto Excise Tax Repeal,1971-1972 + + + + + + 337 + 47 + Records,Meany's Lack of Cooperation on Wage-Price Controls,1971-1972 + + + + + + 337 + 48 + Records,Grant to Purchase Lakeshore Lines by SEMTA,1971-1972 + + + + + + 337 + 49 + Records,Crime-Fighting Grant to Michigan,1971-1972 + + + + + + 337 + 50 + Records,Reception for Apollo 15 Astronauts,1971-1972 + + + + + + 337 + 51 + Records,Bill to Guarantee Pensions, Protect Workers,1971-1972 + + + + + + 337 + 52 + Records,Now Nation Looks to Congress, Economic Health,1971-1972 + + + + + + 337 + 53 + Records,Death of Senator Winston Prouty,1971-1972 + + + + + + 337 + 54 + Records,Bill to Curb Phosphate Content in Detergents,1971-1972 + + + + + + 337 + 55 + Records,Progress Report on Jobs for Veterans,1971-1972 + + + + + + 337 + 56 + Records,Nominates Kennedy, Griffiths for Supreme Court,1971-1972 + + + + + + 337 + 57 + Records,Busing,1971-1972 + + + + + + 337 + 58 + Records,Seeks V.A. Help for Spanish-Speaking Veterans,1971-1972 + + + + + + 337 + 59 + Records,Seeks Support of Phosphate Reduction Bill,1971-1972 + + + + + + 337 + 60 + Records,Pontiac Parents, Enroll Children in Schools,1971-1972 + + + + + + 337 + 61 + Records,Constitutional Amendment, Forced Busing,1971-1972 + + + + + + 337 + 62 + Records,Nuclear Power Plant, Midland,1971-1972 + + + + + + 337 + 63 + Records,More Public Service Jobs Money for Wayne County,1971-1972 + + + + + + 337 + 64 + Records,McNamara Federal Office Building,1971-1972 + + + + + + 337 + 65 + Records,Continuation of Detroit Credit Union Program,1971-1972 + + + + + + 337 + 66 + Records,Reserve Mining,1971-1972 + + + + + + 337 + 67 + Records,Praises Release of POWs, Urges Reciprocal Move,1971-1972 + + + + + + 337 + 68 + Records,Urges FDA Curb Methadone Poisoning of Children,1971-1972 + + + + + + 337 + 69 + Records,Midland Nuclear Plant,1971-1972 + + + + + + 337 + 70 + Records,Reserve Mining,1971-1972 + + + + + + 337 + 71 + Records,Motor Vehicle Information and Cost Savings Act,1971-1972 + + + + + + 337 + 72 + Records,Funding for Detroit McNamara Building,1971-1972 + + + + + + 337 + 73 + Records,Agreement U.S.--Canada on Pollution,1971-1972 + + + + + + 337 + 74 + Records,Senate Youth Program,1971-1972 + + + + + + 337 + 75 + Records,Focus: Hope,1971-1972 + + + + + + 337 + 76 + Records,Proposes National Cemetery, Fort Custer,1971-1972 + + + + + + 337 + 77 + Records,Role in Excise Tax Repeal,1971-1972 + + + + + + 337 + 78 + Records,Index to 1972 Press Releases (Notebook) – 4 folders,1971-1972 + + + + + + 337 + 79 + Records,Index to 1972 Press Releases (Notebook) – 4 folders,1971-1972 + + + + + + 337 + 80 + Records,Index to 1972 Press Releases (Notebook) – 4 folders,1971-1972 + + + + + + 337 + 81 + Records,Index to 1972 Press Releases (Notebook) – 4 folders,1971-1972 + + + + + + 337 + 82 + Records,Service Academy Nominations,1971-1972 + + + + + + 337 + 83 + Records,Reserve Mining,1971-1972 + + + + + + 337 + 84 + Records,Pensions, Emergency Strikes,1971-1972 + + + + + + 337 + 85 + Records,Need to Strengthen Landrum-Griffin,1971-1972 + + + + + + 337 + 86 + Records,$4 Million Job Training Program for Detroit,1971-1972 + + + + + + 337 + 87 + Records,Farmland Recreation Test in 5 Michigan Counties,1971-1972 + + + + + + 337 + 88 + Records,Nixon State of Union Message,1971-1972 + + + + + + 337 + 89 + Records,IRS Tax Information in Spanish,1971-1972 + + + + + + 337 + 90 + Records,Nixon Peace Proposals in Indochina,1971-1972 + + + + + + 337 + 91 + Records,Job Aid Grant to Michigan,1971-1972 + + + + + + 337 + 92 + Records,Appoints 1st Girl Page from Michigan,1971-1972 + + + + + + 337 + 93 + Records,Vietnam Peace Negotiations,1971-1972 + + + + + + 337 + 94 + Records,Paris Peace Negotiations,1971-1972 + + + + + + 337 + 95 + Records,Co-sponsors Civil Rights Commission Change,1971-1972 + + + + + + 337 + 96 + Records,Prods White House on Saving Great Lakes,1971-1972 + + + + + + 337 + 97 + Records,Speech to Rotary – Kalamazoo, 2/7/72,1972 + + + + + + 337 + 98 + Records,Funds for Education of Michigan Indian Children,1971-1972 + + + + + + 337 + 99 + Records,Calls for Compensation of Crime Victims,1971-1972 + + + + + + 337 + 100 + Records,Speed Treatment of Drug Addicts,1971-1972 + + + + + + 337 + 101 + Records,Lithuanian Independence Day,1971-1972 + + + + + + 337 + 102 + Records,Appointment of Fuentes to President's Cabinet Committee,1971-1972 + + + + + + 337 + 103 + Records,Reserve Mining,1971-1972 + + + + + + 337 + 104 + Records,Remarks in Senate, Anti-Busing Amendment, 2/23/72,1972 + + + + + + 337 + 105 + Records,Anti-Busing Amendment, 2/26/72,1972 + + + + + + 337 + 106 + Records,Is Griffin Amendment Constitutional?, 2/28/72,1972 + + + + + + 337 + 107 + Records,Nixon to Win Michigan in Reelection Bid,1971-1972 + + + + + + 337 + 108 + Records,Grant to University of Michigan Juvenile Correction Dept.,1971-1972 + + + + + + 337 + 109 + Records,Probe, Port Huron Intake Tunnel Explosion,1971-1972 + + + + + + 337 + 110 + Records,Nixon Address on Forced Busing,1971-1972 + + + + + + 337 + 111 + Records,Travels South,1971-1972 + + + + + + 337 + 112 + Records,Names Smalley to Staff,1971-1972 + + + + + + 337 + 113 + Records,Co-sponsors Bill, Expand Use of Neighborhood Schools,1971-1972 + + + + + + 337 + 114 + Records,Educational Assistance for Veterans,1971-1972 + + + + + + 337 + 115 + Records,Meany Walkout, Federal Pay Board,1971-1972 + + + + + + 337 + 116 + Records,Great Lakes Clean-Up Not Dead,1971-1972 + + + + + + 337 + 117 + Records,Victims of Crime,1971-1972 + + + + + + 337 + 118 + Records,Job Training Program for Spanish-Speaking,1971-1972 + + + + + + 337 + 119 + Records,On Marge Griffin by Esther Tufty,1971-1972 + + + + + + 337 + 120 + Records,Must Renegotiate U.S.-Canadian Auto Trade Pact,1971-1972 + + + + + + 337 + 121 + Records,Introduces Vietnamese Orphan Act,1971-1972 + + + + + + 337 + 122 + Records,Jobs Program for Michigan Department of Natural Resources,1971-1972 + + + + + + 337 + 123 + Records,Re-Open Hearings on Alaska Pipeline,1971-1972 + + + + + + 337 + 124 + Records,Death of Former Postmaster General Summerfield,1971-1972 + + + + + + 337 + 125 + Records,Nixon Troop Withdrawal Announcement,1971-1972 + + + + + + 337 + 126 + Records,To Re-Offer Busing Bill,1971-1972 + + + + + + 337 + 127 + Records,Preservation of Pointe Mouille Game Area,1971-1972 + + + + + + 337 + 128 + Records,12 Senators Ask Delay on Alaska Pipeline,1971-1972 + + + + + + 337 + 129 + Records,Death of J. Edgar Hoover,1971-1972 + + + + + + 337 + 130 + Records,Isle Royale Wilderness Bill,1971-1972 + + + + + + 337 + 131 + Records,Nixon Address on Vietnam,1971-1972 + + + + + + 337 + 132 + Records,Praises Meany Remarks on Nixon and Vietnam,1971-1972 + + + + + + 337 + 133 + Records,Urges Signing of Sickle Cell B\ill,1971-1972 + + + + + + 337 + 134 + Records,Forced Busing,1971-1972 + + + + + + 337 + 135 + Records,Urges Increase in UGLRC-Upper Great Lakes Regional Commission,1971-1972 + + + + + + 337 + 136 + Records,On Shooting Governor George Wallace,1971-1972 + + + + + + 337 + 137 + Records,Vote in Michigan for Governor Wallace,1971-1972 + + + + + + 337 + 138 + Records,Ford Motor Co.--Jobs, 5/23/72,1972 + + + + + + 337 + 139 + Records,Ford Motor Co. Engine Testing, 5/24/72,1972 + + + + + + 337 + 140 + Records,Ford Motor Co.--RPG Meets with Ruckelshaus, 5/26/72,1972 + + + + + + 337 + 141 + Records,Nixon Speech to Soviet People,1971-1972 + + + + + + 337 + 142 + Records,Before Passage, Toxic Substances Control Act,1971-1972 + + + + + + 337 + 143 + Records,Nixon Address, Joint Session of Congress,1971-1972 + + + + + + 337 + 144 + Records,To End Medicare Premiums for Senior Citizens,1971-1972 + + + + + + 337 + 145 + Records,Adoption Amendment OK=D by Finance,1971-1972 + + + + + + 337 + 146 + Records,Judge Roth=s Busing Order,1971-1972 + + + + + + 337 + 147 + Records,Announces Candidacy,1971-1972 + + + + + + 337 + 148 + Records,Nominating Petitions Filed in Lansing,1971-1972 + + + + + + 337 + 149 + Records,Blueberry Crops, Emergency Loan Areas,1971-1972 + + + + + + 337 + 150 + Records,Environment Role for VISTA Volunteers,1971-1972 + + + + + + 337 + 151 + Records,Anti-Busing Amendment,1971-1972 + + + + + + 337 + 152 + Records,Woodcock Pension Reform,1971-1972 + + + + + + 337 + 153 + Records,Compensate Firemen Victimized by Crime,1971-1972 + + + + + + 337 + 154 + Records,Judge Roth’s Busing Order,1971-1972 + + + + + + 337 + 155 + Records,Vietnam Era GI Benefits,1971-1972 + + + + + + 337 + 156 + Records,Bid-Seeking on Detroit McNamara Building,1971-1972 + + + + + + 337 + 157 + Records,Michigan Kelley Re: Busing,1971-1972 + + + + + + 337 + 158 + Records,Senate Approves RPG Bill to Protect Ocean Mammals,1971-1972 + + + + + + 337 + 159 + Records,American Hellenic Educational Progressive Association,1971-1972 + + + + + + 337 + 160 + Records,Kelley, Forced Busing, Series of Debates,1971-1972 + + + + + + 337 + 161 + Records,End-the-War Amendments,1971-1972 + + + + + + 337 + 162 + Records,Progress on Soo Foreign Trade Zone,1971-1972 + + + + + + 337 + 163 + Records,Repeal of Auto Excise Tax, Effect on Economy,1971-1972 + + + + + + 337 + 164 + Records,Urges Testing Blacks for Sickle Cell Anemia,1971-1972 + + + + + + 337 + 165 + Records,Nixon Auto Price Increase,1971-1972 + + + + + + 337 + 166 + Records,Urges Expanding UGLRC,1971-1972 + + + + + + 337 + 167 + Records,Ferry Service Between Michigan-Wisconsin Vital,1971-1972 + + + + + + 337 + 168 + Records,Committee on Resolutions, Republican National Convention,1971-1972 + + + + + + 337 + 169 + Records,UGLRC Gets Supplemental Funding,1971-1972 + + + + + + 337 + 170 + Records,Busing Plank at Republican Convention,1971-1972 + + + + + + 337 + 171 + Records,To Speak at UAW Conference in Detroit,1971-1972 + + + + + + 337 + 172 + Records,Black Representation, RNC, Mayor Bivens,1971-1972 + + + + + + 337 + 173 + Records,Refusal to Grant Ford/GM Price Increases,1971-1972 + + + + + + 337 + 174 + Records,Opposes Abandonment Rail Car Ferry,1971-1972 + + + + + + 337 + 175 + Records,Policemen/Firemen Compensation Bill Passes Senate,1971-1972 + + + + + + 337 + 176 + Records,Stop Busing,1971-1972 + + + + + + 337 + 177 + Records,UAW Endorses Opponent,1971-1972 + + + + + + 337 + 178 + Records,Nixon on Taxes,1971-1972 + + + + + + 337 + 179 + Records,Leading in Detroit News Poll,1971-1972 + + + + + + 337 + 180 + Records,Public Party Planned,1971-1972 + + + + + + 337 + 181 + Records,Opposes Railway Express Bill,1971-1972 + + + + + + 337 + 182 + Records,TV Sports Blackouts,1971-1972 + + + + + + 337 + 183 + Records,Urges GAO Probe Detroit-Area Nursing Homes,1971-1972 + + + + + + 337 + 184 + Records,Criticizes Kelley on Reserve Mining,1971-1972 + + + + + + 337 + 185 + Records,Tax Loophole, Small Farmer,1971-1972 + + + + + + 337 + 186 + Records,Defense Department to Improve Marquette County Road,1971-1972 + + + + + + 337 + 187 + Records,Reduced Air Fares for Senior Citizens,1971-1972 + + + + + + 337 + 188 + Records,Opposes Deletions in Pension Reform Bill, 9/25/72,1972 + + + + + + 337 + 189 + Records,Calls for Strengthening of Pension Bill, 9/27/72,1972 + + + + + + 337 + 190 + Records,Hails Passage of Shoreline Erosion Measure,1971-1972 + + + + + + 337 + 191 + Records,Detroit News Poll,1971-1972 + + + + + + 337 + 192 + Records,Urges Calling Up Pension Reform Bill,1971-1972 + + + + + + 337 + 193 + Records,Sees Shift in Senate Against Forced Busing, 10/6/72,1972 + + + + + + 337 + 194 + Records,On Filibuster, Anti-Busing Bill, 10/6/72,1972 + + + + + + 337 + 195 + Records,Will Vote to Override Water Quality Bill,1971-1972 + + + + + + 337 + 196 + Records,House-Passes Anti-Busing Bill, 10/10/72,1972 + + + + + + 337 + 196 + Records,Supreme Court Refusal, Roth Busing Decision, 10/10/72,1972 + + + + + + 337 + 197 + Records,Filibuster on House Anti-Busing Bill, 10/12/72,1972 + + + + + + 337 + 198 + Records,Opposes Motion to set aside further Debate on Anti-Busing Legislation, 10/12/72,1972 + + + + + + 337 + 199 + Records,Bill to Triple Funding for UGLRC,1971-1972 + + + + + + 337 + 200 + Records,Passport Office in Michigan,1971-1972 + + + + + + 337 + 201 + Records,Pollution in Lake Superior,1971-1972 + + + + + + 337 + 202 + Records,Praises Dole as Leader of RNC,1971-1972 + + + + + + 337 + 203 + Records,Death of Harry S. Truman,1971-1972 + + + + + + 338 + 1 + Records,News Releases, 1973,1973 + + + + + + 338 + 2 + Records,Newspaper Clippings, 1973,1973 + + + + + + 338 + 3 + Records,News Releases, Other than Senator's, 1973,1973 + + + + + + 338 + 4 + Records,Morning News Summaries,1973-1976 + + + + + + 338 + 5 + Records,Panax File, 1973,1973 + + + + + + 338 + 6 + Records,Peter Teeley Memos, 1973,1973 + + + + + + 338 + 7 + Records,Media Letters, 1973,1973 + + + + + + 338 + 8 + Records,1973 Press Release Index: Service Academy Nominations, 1/4,1973 + + + + + + 338 + 9 + Records,1973 Press Release Index: Fulfills Busing, Pension Pledges, 1/4,1973 + + + + + + 338 + 10 + Records,1973 Press Release Index: Grant, Detroit Neighborhood Development, 1/10,1973 + + + + + + 338 + 11 + Records,1973 Press Release Index: RPG Comments on Appointment to Foreign,1973 + + + + + + 338 + 12 + Records,1973 Press Release Index: Relations Committee, 1/12,1973 + + + + + + 338 + 13 + Records,1973 Press Release Index: Bill to Preserve Michigan Wildlife Areas, 1/17,1973 + + + + + + 338 + 14 + Records,1973 Press Release Index: Nixon's Lifting Import Quotas on Heating Oil Imports, 1/17,1973 + + + + + + 338 + 15 + Records,1973 Press Release Index: To Appear on Face the Nation, 1/21,1973 + + + + + + 338 + 16 + Records,1973 Press Release Index: Death of Lyndon B. Johnson, 1/23,1973 + + + + + + 338 + 17 + Records,1973 Press Release Index: Peace Announcement, 1/24,1973 + + + + + + 338 + 18 + Records,1973 Press Release Index: Resolution, National Day of Prayer, End Vietnam War, 1/26,1973 + + + + + + 338 + 19 + Records,1973 Press Release Index: Response to Church Bill, Vietnam, 1/26,1973 + + + + + + 338 + 20 + Records,1973 Press Release Index: Remarks, Church, Powers of Congress, 1/26,1973 + + + + + + 338 + 21 + Records,1973 Press Release Index: Pollution, Washtenaw County Soil Conservation District, Jan.,1973 + + + + + + 338 + 22 + Records,1973 Press Release Index: Pollution, Clinton County News, Jan.,1973 + + + + + + 338 + 23 + Records,1973 Press Release Index: Penn Central Strike, 2/8,1973 + + + + + + 338 + 24 + Records,1973 Press Release Index: Lincoln Day Dinner, Bismarck, ND, 2/12,1973 + + + + + + 338 + 25 + Records,1973 Press Release Index: Pension Protection Bill, Feb.,1973 + + + + + + 338 + 26 + Records,1973 Press Release Index: Michigan Republican Convention, Detroit, 2/17,1973 + + + + + + 338 + 27 + Records,1973 Press Release Index: Meat Marketing Standards, 2/23,1973 + + + + + + 338 + 28 + Records,1973 Press Release Index: Bill to Ease Gas Shortages in Midwest, 2/25,1973 + + + + + + 338 + 29 + Records,1973 Press Release Index: Capitol Cloakroom, 2/28,1973 + + + + + + 338 + 30 + Records,1973 Press Release Index: Methaqualone, 3/6,1973 + + + + + + 338 + 31 + Records,1973 Press Release Index: Medicare, Medicaid, 1974 Budget, 3/8,1973 + + + + + + 338 + 32 + Records,1973 Press Release Index: Troop Reductions in Europe, 3/22,1973 + + + + + + 338 + 33 + Records,1973 Press Release Index: Federal Spending, 3/26,1973 + + + + + + 338 + 34 + Records,1973 Press Release Index: Detroit Passport Office, 3/26,1973 + + + + + + 338 + 35 + Records,1973 Press Release Index: Watergate Incident, 3/27,1973 + + + + + + 338 + 36 + Records,1973 Press Release Index: Last Troop to Leave Vietnam, 3/28,1973 + + + + + + 338 + 37 + Records,1973 Press Release Index: Methaqualone, 4/6,1973 + + + + + + 338 + 38 + Records,1973 Press Release Index: Presidential Veto of Vocational Rehabilitation Act, 4/13,1973 + + + + + + 338 + 39 + Records,1973 Press Release Index: Forced Busing, 4/10,1973 + + + + + + 338 + 40 + Records,1973 Press Release Index: Trip to Russia, 4/23,1973 + + + + + + 338 + 41 + Records,1973 Press Release Index: Trip to Warsaw--Commerce Committee, 4/24-4/26,1973 + + + + + + 338 + 42 + Records,1973 Press Release Index: Czechoslovakia Officials, 4/27,1973 + + + + + + 338 + 43 + Records,1973 Press Release Index: Commerce comm. Trip to Soviet Union-Watergate, 5/4,1973 + + + + + + 338 + 44 + Records,1973 Press Release Index: Case-Church Amendment, 5/16,1973 + + + + + + 338 + 45 + Records,1973 Press Release Index: Pollution of Lake Superior by Reserve Mining, 6/5,1973 + + + + + + 338 + 46 + Records,1973 Press Release Index: Nixon's Going Before Press, Watergate, 6/5,1973 + + + + + + 338 + 47 + Records,1973 Press Release Index: Shell Oil Site at Kalkaska, Disturbances, 6/12,1973 + + + + + + 338 + 48 + Records,1973 Press Release Index: Designation of Soo as Foreign Trade Zone, 6/12,1973 + + + + + + 338 + 49 + Records,1973 Press Release Index: 6th Circuit Ruling on Busing, 6/13,1973 + + + + + + 338 + 50 + Records,1973 Press Release Index: Nixon's 60 Day Price Freeze, 6/13,1973 + + + + + + 338 + 51 + Records,1973 Press Release Index: Meat Standards, Hot Dogs, 6/14,1973 + + + + + + 338 + 52 + Records,1973 Press Release Index: Reserve Mining, 6/19,1973 + + + + + + 338 + 53 + Records,1973 Press Release Index: Supports Alaska Pipeline and Trans-Canadian Pipeline, 6/21,1973 + + + + + + 338 + 54 + Records,1973 Press Release Index: Watergate Tapes, 7/17,1973 + + + + + + 338 + 55 + Records,1973 Press Release Index: Today Show Tapes, Watergate, 7/20,1973 + + + + + + 338 + 56 + Records,1973 Press Release Index: Nixon=s Decision not to Release Tapes, Watergate, 7/23,1973 + + + + + + 338 + 57 + Records,1973 Press Release Index: Campaign Financing in 1972 Elections, 7/25,1973 + + + + + + 338 + 58 + Records,1973 Press Release Index: Michigan Cherries, 7/27,1973 + + + + + + 338 + 59 + Records,1973 Press Release Index: China Trip, 8/2,1973 + + + + + + 338 + 60 + Records,1973 Press Release Index: Harvey, Engel for Judge, 8/5,1973 + + + + + + 338 + 61 + Records,1973 Press Release Index: Nixon Address to Nation, Watergate, 8/15,1973 + + + + + + 338 + 62 + Records,1973 Press Release Index: Meat Standards, Hot Dog Bill, 9/13,1973 + + + + + + 338 + 63 + Records,1973 Press Release Index: Passage of TV Blackout Bill, 9/13,1973 + + + + + + 338 + 64 + Records,1973 Press Release Index: Protecting Pensions, 9/16,1973 + + + + + + 338 + 65 + Records,1973 Press Release Index: National Wild and Scenic Rivers Act, Manistee, AuSable, 9/21,1973 + + + + + + 338 + 66 + Records,1973 Press Release Index: Pile Dike, Grand Marais Harbor, 9/27,1973 + + + + + + 338 + 67 + Records,1973 Press Release Index: To Appear on Meet the Press, 10/3,1973 + + + + + + 338 + 68 + Records,1973 Press Release Index: RPG Reaction to Nomination of Ford to be V.P., 10/12,1973 + + + + + + 338 + 69 + Records,1973 Press Release Index: Ford=s Nomination to be V.P., 10/18,1973 + + + + + + 338 + 70 + Records,1973 Press Release Index: Purposes New Method for Selecting V.P., 10/23,1973 + + + + + + 338 + 71 + Records,1973 Press Release Index: Calls for Speedy Confirmation of Ford, 10/23,1973 + + + + + + 338 + 72 + Records,1973 Press Release Index: Reaction, Nixon=s Press Conference, 10/26,1973 + + + + + + 338 + 73 + Records,1973 Press Release Index: Testimony on Ford Confirmation, 11/1,1973 + + + + + + 338 + 74 + Records,1973 Press Release Index: Project Sanguine, Further Study, 11/4,1973 + + + + + + 338 + 75 + Records,1973 Press Release Index: Ford Committee, Campaign Contributions, 11/6,1973 + + + + + + 338 + 76 + Records,1973 Press Release Index: Coleman Young=s Election as Mayor of Detroit, 11/7,1973 + + + + + + 338 + 78 + Records,1973 Press Release Index: RPG Role in Halleck Ouster, 11/9,1973 + + + + + + 338 + 79 + Records,1973 Press Release Index: Article on Selection of V.P.=s, 11/13,1973 + + + + + + 338 + 80 + Records,1973 Press Release Index: Supreme Court Decision to Review Busing Case, 11/19,1973 + + + + + + 338 + 81 + Records,1973 Press Release Index: Confirmation of Ford, 11/27,1973 + + + + + + 338 + 82 + Records,1973 Press Release Index: Presidential Campaign Financing, 12/1,1973 + + + + + + 338 + 83 + Records,1973 Press Release Index: Swearing in of V.P. Ford, press, 12/6,1973 + + + + + + 338 + 84 + Records,1973 Press Release Index: Swearing in of V.P. Ford, audio/video, 12/6,1973 + + + + + + 338 + 85 + Records,1973 Press Release Index: Dick Hubbell Role in Ford Hearings, 12/7,1973 + + + + + + 338 + 86 + Records,1973 Press Release Index: Nixon=s Disclosure of Personal Finances, 12/8,1973 + + + + + + 338 + 87 + Records,1973 Press Release Index: Recommends Judge Miles, Western District, 12/10,1973 + + + + + + 338 + 88 + Records,1973 Press Release Index: National Fuels and Energy Conservation Act, 12/10,1973 + + + + + + 338 + 89 + Records,1973 Press Release Index: Confirmation of Judges Engle and Harvey, 12/13,1973 + + + + + + 338 + 90 + Records,1973 Press Release Index: Death of Senator Prentiss Brown, 12/21,1973 + + + + + + 338 + 91 + Records,1974 Press Releases Index: Quello Nomination to Federal Communications,1974 + + + + + + 338 + 92 + Records,1974 Press Releases Index: Newsletter 1974,1974 + + + + + + 338 + 93 + Records,1974 Press Releases Index: Commission, 1/23,1974 + + + + + + 338 + 94 + Records,1974 Press Releases Index: If Impeached, Nixon should Consider Resigning, 1/23,1974 + + + + + + 338 + 95 + Records,1974 Press Releases Index: Clippings to Support Nixon, 1/24,1974 + + + + + + 338 + 96 + Records,1974 Press Releases Index: Possibility of Resigning as Minority Whip, 1/29,1974 + + + + + + 338 + 97 + Records,1974 Press Releases Index: State of Union Massage, 1/30,1974 + + + + + + 338 + 98 + Records,1974 Press Releases Index: University of Michigan Ford Medallion, 1/31,1974 + + + + + + 338 + 99 + Records,1974 Press Releases Index: Cutbacks for Public Service Jobs, 2/5,1974 + + + + + + 338 + 100 + Records,1974 Press Releases Index: Service Academy Nominations, 2/7,1974 + + + + + + 338 + 101 + Records,1974 Press Releases Index: Emergency Energy Act, 2/21,1974 + + + + + + 338 + 102 + Records,1974 Press Releases Index: Republican Newsletter, 2/27,1974 + + + + + + 338 + 103 + Records,1974 Press Releases Index: Winter Shipping, Great Lakes, 3/2,1974 + + + + + + 338 + 104 + Records,1974 Press Releases Index: ICC Testimony, Rail Services Planning Office, 3/4,1974 + + + + + + 338 + 105 + Records,1974 Press Releases Index: Saving Michigan=s Gas Allocation, 3/5,1974 + + + + + + 338 + 106 + Records,1974 Press Releases Index: Food Stamps for Students, 3/13,1974 + + + + + + 338 + 107 + Records,1974 Press Releases Index: Reserve Mining, 3/13,1974 + + + + + + 338 + 108 + Records,1974 Press Releases Index: Buckley, Nixon should Resign, 3/19,1974 + + + + + + 338 + 109 + Records,1974 Press Releases Index: Trans-Canada Gas Pipeline, 3/25,1974 + + + + + + 338 + 110 + Records,1974 Press Releases Index: Impeachment Procedures, 3/28,1974 + + + + + + 338 + 111 + Records,1974 Press Releases Index: Rail Abandonments, ICC, 3/29,1974 + + + + + + 338 + 112 + Records,1974 Press Releases Index: Reserve Mining, 3/29,1974 + + + + + + 338 + 113 + Records,1974 Press Releases Index: Home for V.P., 4/4,1974 + + + + + + 338 + 114 + Records,1974 Press Releases Index: Accompanying Nixon to 8th District, 4/5,1974 + + + + + + 338 + 115 + Records,1974 Press Releases Index: Amtrak-Letter to Roger Lewis, 4/6,1974 + + + + + + 338 + 116 + Records,1974 Press Releases Index: Nixon Address, Watergate Tapes, 4/30,1974 + + + + + + 338 + 117 + Records,1974 Press Releases Index: Funding Great Lakes Projects-Letter to John C. Steunis, 5/21,1974 + + + + + + 338 + 118 + Records,1974 Press Releases Index: Funding Great Lakes Projects-Letter to Roy Ash, 5/22,1974 + + + + + + 338 + 119 + Records,1974 Press Releases Index: Cardinal Mindzenty's visit to Detroit, 5/24,1974 + + + + + + 338 + 120 + Records,1974 Press Releases Index: Adoption, Tax Deduction, 5/30,1974 + + + + + + 338 + 121 + Records,1974 Press Releases Index: Personal Finances, 7/2,1974 + + + + + + 338 + 122 + Records,1974 Press Releases Index: Death of Former Chief Justice Warren, 7/10,1974 + + + + + + 338 + 123 + Records,1974 Press Releases Index: Against Consumer Protection Agency Bill, 7/22,1974 + + + + + + 338 + 124 + Records,1974 Press Releases Index: Supreme Court Decision, Nixon Tapes, 7/24,1974 + + + + + + 338 + 125 + Records,1974 Press Releases Index: Supreme Court, Busing Decision, 7/25,1974 + + + + + + 338 + 126 + Records,1974 Press Releases Index: Nixon, Defy Subpoena, I will Vote to Impeach, 8/3,1974 + + + + + + 338 + 127 + Records,1974 Press Releases Index: Calls for Nixon Resignation, 8/5,1974 + + + + + + 338 + 128 + Records,1974 Press Releases Index: Today Show, Nixon Resignation, 8/9,1974 + + + + + + 338 + 129 + Records,1974 Press Releases Index: Issues and Answers, Nixon Resignation, CBS, 8/11,1974 + + + + + + 338 + 130 + Records,1974 Press Releases Index: Pushes for Consumer Aid, 8/15,1974 + + + + + + 338 + 131 + Records,1974 Press Releases Index: Lou Gordon Show, 8/16,1974 + + + + + + 338 + 132 + Records,1974 Press Releases Index: Recommends Judge Churchill, Federal District, 8/18,1974 + + + + + + 338 + 133 + Records,1974 Press Releases Index: Vice Presidential Nomination, 8/20,1974 + + + + + + 338 + 134 + Records,1974 Press Releases Index: Letters re: Focus Hope, 9/3,1974 + + + + + + 338 + 135 + Records,1974 Press Releases Index: CBS Morning News, 9/4,1974 + + + + + + 338 + 136 + Records,1974 Press Releases Index: Presidential Pardon, 9/9,1974 + + + + + + 338 + 137 + Records,1974 Press Releases Index: Goodell, Clemency Board,1974 + + + + + + 338 + 138 + Records,1974 Press Releases Index: Rockefeller Nomination as V.P., 10/14,1974 + + + + + + 338 + 139 + Records,1974 Press Releases Index: Focus: Hope, 10/16,1974 + + + + + + 338 + 140 + Records,1974 Press Releases Index: United Nations, 10/25,1974 + + + + + + 338 + 141 + Records,1974 Press Releases Index: Auto Industry, 11/21,1974 + + + + + + 338 + 142 + Records,1974 Press Releases Index: Veterans Bill, Inflation, 12/11,1974 + + + + + + 338 + 143 + Records,1974 Press Releases Index: Letter to Harry Calcutt, 12/16,1974 + + + + + + 338 + 144 + Records,1974 Press Releases Index: College Baseball, 12/23,1974 + + + + + + 338 + 145 + Records,1975 Press Releases: Index, 1975 and articles, 1/12, 2 folders,1975 + + + + + + 338 + 146 + Records,1975 Press Releases: Autoproducts Article,1975 + + + + + + 338 + 147 + Records,1975 Press Releases: Fact Sheet, New Hampshire Senate Contest,1975 + + + + + + 338 + 148 + Records,1975 Press Releases: Automotive Industries Article,1975 + + + + + + 338 + 149 + Records,1975 Press Releases: Depressed Auto Industry, 3/25,1975 + + + + + + 338 + 150 + Records,1975 Press Releases: Ford Address, Fall of South Vietnam,1975 + + + + + + 338 + 151 + Records,1975 Press Releases: DCASE Headquarters,1975 + + + + + + 338 + 152 + Records,1975 Press Releases: Hart’s Announced Retirement,1975 + + + + + + 338 + 153 + Records,1975 Press Releases: Cabinet Changes and Rockefeller,1975 + + + + + + 338 + 154 + Records,1975 Press Releases: New York City and Detroit-Tale of Two Cities,1975 + + + + + + 338 + 155 + Records,1975 Press Releases: Auto Fuel Economy and Research Development,1975 + + + + + + 338 + 156 + Records,1975 Press Releases: President’s Visit to Traverse City,1975 + + + + + + 338 + 157 + Records,1975 Press Releases: White House, Kitchen Cabinet,1975 + + + + + + 338 + 158 + Records,1975 Press Releases: Auto Emission Control Problem,1975 + + + + + + 338 + 159 + Records,1975 Press Releases: Jim Watt, Director of Bureau of Recreation,1975 + + + + + + 338 + 160 + Records,1975 Press Releases: Anti-Auto Dumping,1975 + + + + + + 338 + 161 + Records,1975 Press Releases: Busing,1975 + + + + + + 338 + 162 + Records,1975 Press Releases: U. S. Attorney Eastern District,1975 + + + + + + 338 + 163 + Records,1975 Press Releases: Penn Central Reorganization Plan (MI TV), 2/26,1975 + + + + + + 338 + 164 + Records,1975 Press Releases: Radio Actuality Auto Exhaust Standards, 7/16,1975 + + + + + + 338 + 165 + Records,1976 News Release Index and Release, 1/6: National Endowment of Humanities Winners,1976 + + + + + + 338 + 166 + Records,1976 News Release Index and Release, 1/6: Michigan Primary,1976 + + + + + + 338 + 167 + Records,1976 News Release Index and Release, 1/6: Van Dam to be U. S. Attorney,1976 + + + + + + 338 + 168 + Records,1976 News Release Index and Release, 1/6: Federal Grants for Indian Children,1976 + + + + + + 338 + 169 + Records,1976 News Release Index and Release, 1/6: Contested Senatorial Elections Bill,1976 + + + + + + 338 + 170 + Records,1976 News Release Index and Release, 1/6: Veteran=s Administration Hospital, Detroit,1976 + + + + + + 338 + 171 + Records,1976 News Release Index and Release, 1/6: Cruise Missiles, Congress Vetoes,1976 + + + + + + 338 + 172 + Records,1976 News Release Index and Release, 1/6: Appropriations, Marquette and Sleeping Bear Dunes,1976 + + + + + + 339 + 1 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: Bicentennial Message, 7/1,1976 + + + + + + 339 + 2 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: Public Works Jobs Bill, 7/7,1976 + + + + + + 339 + 3 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: Kincheloe, Soviet Minorities, Sleeping Bear Dunes, 7/14,1976 + + + + + + 339 + 4 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: Carter, Mondale, 7/15,1976 + + + + + + 339 + 5 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: Reagan, Schweiker, 7/26,1976 + + + + + + 339 + 6 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: Veterans Poppy Program, 7/30,1976 + + + + + + 339 + 7 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: Michigan Special Report, 8/10,1976 + + + + + + 339 + 8 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: Death of Chairman Mao, 9/9,1976 + + + + + + 339 + 9 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: Veterans Poppy Program, 9/10,1976 + + + + + + 339 + 10 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: Ford, UAW Auto Strike, 9/15,1976 + + + + + + 339 + 11 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: Mike Mansfield=s Retirement, 9/16,1976 + + + + + + 339 + 12 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: Poppy Program, Hart Office Building, Moroz, 9/17,1976 + + + + + + 339 + 13 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: Letter, Color Slides of RPG, 9/17,1976 + + + + + + 339 + 14 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: Hart Visitors Center, Sleeping Bear Dunes/Vandenberg Building, Grand Rapids, 9/21,1976 + + + + + + 339 + 15 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: Capitol Cloakroom, CBS, 9/26,1976 + + + + + + 339 + 16 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: Interview David Garcia, ABC, 9/26,1976 + + + + + + 339 + 17 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: Federal Employment System Act, 9/30,1976 + + + + + + 339 + 18 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: ATime@ Leadership Speech, 10/8,1976 + + + + + + 339 + 19 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: Detroit Veterans Hospital, 10/19,1976 + + + + + + 339 + 20 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: Photos, Letter, 8 x 10 black and white glossies of RPG, 3 poses, 11/17-19,1976 + + + + + + 339 + 21 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: Meetings, Carter, 11/23,1976 + + + + + + 339 + 22 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: Goldwater's Candidacy for Minority Leader, 12/2,1976 + + + + + + 339 + 23 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: Nominations for Service Academies, 12/17,1976 + + + + + + 339 + 24 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: Goldwater's Withdrawal from Minority Leader Contest, 12/19,1976 + + + + + + 339 + 25 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: Newsletter, Dec.,1976 + + + + + + 339 + 26 + Records,1976 Press Releases, Index, Jan.-Dec., Notebook: Death of Phil Hart, 12/26,1976 + + + + + + 339 + 27 + Records,Nine in the Morning Interview, 1/11,1977 + + + + + + 339 + 28 + Records,Conservation, Consumer Savings, Job Creation, 1/11-12,1977 + + + + + + 339 + 29 + Records,$14 Million for Detroit Detention Center, 1/14,1977 + + + + + + 339 + 30 + Records,Naming Grand Rapids Federal Bldg. For Ford, 1/18,1977 + + + + + + 339 + 31 + Records,Martin Luther King Proposal, 1/18,1977 + + + + + + 339 + 32 + Records,Terrorism, Munich, 1/18,1977 + + + + + + 339 + 33 + Records,OSHA, Farmers and Small Business, 1/21,1977 + + + + + + 339 + 34 + Records,Ontonagon Water Supply, 1/24,1977 + + + + + + 339 + 35 + Records,Ukrainian Independence, 1/26,1977 + + + + + + 339 + 36 + Records,Seafarer, 2/4,1977 + + + + + + 339 + 37 + Records,Lance Missiles, 2/8,1977 + + + + + + 339 + 38 + Records,Disillusioned Vet, 2/11,1977 + + + + + + 339 + 39 + Records,Hot Dog Bill, 2/11,1977 + + + + + + 339 + 40 + Records,Scrapping Lance Missiles, 2/22,1977 + + + + + + 339 + 41 + Records,Focus: Hope, 2/25,1977 + + + + + + 339 + 42 + Records,Warnke Nomination, Minority Views, 2/25,1977 + + + + + + 339 + 43 + Records,Warnke Nomination, Individual Views, Feb.,1977 + + + + + + 339 + 44 + Records,Narcotics Sentencing and Seizure Act, 3/1,1977 + + + + + + 339 + 45 + Records,Gordie Howe, 3/2,1977 + + + + + + 339 + 46 + Records,PBB Legislation, 3/2,1977 + + + + + + 339 + 47 + Records,Paul Warnke, Remarks for Delivery in U. S. Senate, 3/4,1977 + + + + + + 339 + 48 + Records,National Student Loan Program, 3/15,1977 + + + + + + 339 + 49 + Records,Loss of SERI to Colorado, Solar Energy, 3/24,1977 + + + + + + 339 + 50 + Records,Kincheloe AFB, 3/30,1977 + + + + + + 339 + 51 + Records,Teamsters, writers list, 3/31,1977 + + + + + + 339 + 52 + Records,Building, Updating Nation=s Prisons, 4/6,1977 + + + + + + 339 + 53 + Records,Carter Energy Program, 4/21,1977 + + + + + + 339 + 54 + Records,Tax Indexing, 4/28,1977 + + + + + + 339 + 55 + Records,Seaway Review Article, 5/2,1977 + + + + + + 339 + 56 + Records,Death of Anthony Rozman, 5/11,1977 + + + + + + 339 + 57 + Records,Firing of Philip Van Dam, 5/25,1977 + + + + + + 339 + 58 + Records,Air Bags-press release, 6/30,1977 + + + + + + 339 + 59 + Records,Air Bags-article for AAmerican Legion Magazine@ June,1977 + + + + + + 339 + 60 + Records,Tax Indexation, AFirst Monday,@ 7/15,1977 + + + + + + 339 + 61 + Records,Clean Air Conference, 7/18,1977 + + + + + + 339 + 62 + Records,John Callahan Interview, 7/19,1977 + + + + + + 339 + 63 + Records,Defense Economic Development Act, Kincheloe, 7/20,1977 + + + + + + 339 + 64 + Records,Grant, Drought, 7/21,1977 + + + + + + 339 + 65 + Records,Cargo Preference, 7/29,1977 + + + + + + 339 + 66 + Records,Universal Voter Registration, Aug.,1977 + + + + + + 339 + 67 + Records,Seafarer, 8/1,1977 + + + + + + 339 + 68 + Records,Labor Law Reforms, 8/2,1977 + + + + + + 339 + 69 + Records,Clean Air Conference, 8/3,1977 + + + + + + 339 + 70 + Records,Air Bags, Family Weekly, 8/8,1977 + + + + + + 339 + 71 + Records,Cargo Preference, 8/16,1977 + + + + + + 339 + 72 + Records,Lou Ann Taylor Joins Staff, 8/26,1977 + + + + + + 339 + 73 + Records,Cargo Preference, Federal Trade Commission Letter, 9/9,1977 + + + + + + 339 + 74 + Records,Air Bags, 9/22,1977 + + + + + + 339 + 75 + Records,Resignation of Bert Lance, 9/22,1977 + + + + + + 339 + 76 + Records,Air Bags-to MI Editorial Writers, 10/11,1977 + + + + + + 339 + 77 + Records,Reaction to Air Bag Vote, 10/12,1977 + + + + + + 339 + 78 + Records,Death of Charles Anspach, 10/26,1977 + + + + + + 339 + 79 + Records,RPG Donates Papers to CMU-special to CM Life, 10/28,1977 + + + + + + 339 + 80 + Records,RPG Donates Papers to CMU-press release, 10/29,1977 + + + + + + 339 + 81 + Records,1977 Press Release Index, Jan.-Dec., notebook,1977 + + + + + + 339 + 82 + Records,1977 Press Releases: PBB Legislation Passes Senate,1977 + + + + + + 339 + 83 + Records,1977 Press Releases: Congressional Record Reprint, Passage of PBB Bill,1977 + + + + + + 339 + 84 + Records,1977 Press Releases: RPG Hospitalization,1977 + + + + + + 339 + 85 + Records,1977 Press Releases: Savers Keepers@,1977 + + + + + + 339 + 86 + Records,1977 Press Releases: 1977 Newsletter,1977 + + + + + + 339 + 87 + Records,1977 Press Releases: RPG Announces Academy Nominations,1977 + + + + + + 339 + 88 + Records,1977 Press Releases: RPG Asks Appeals Court to Uphold Broadcast Accountability,1977 + + + + + + 339 + 89 + Records,1977 Press Releases: Press Release Index #1, Jan.-Mar. 1978,1977 + + + + + + 339 + 90 + Records,1978 Press Releases: Tax Break for Farmers,1978 + + + + + + 339 + 91 + Records,1978 Press Releases: Excerpts from Remarks on Panama Canal,1978 + + + + + + 339 + 92 + Records,1978 Press Releases: Statement, Project Seafarer,1978 + + + + + + 339 + 93 + Records,1978 Press Releases: Minority Views, Panama Canal, Committee Report, 2/4,1978 + + + + + + 339 + 94 + Records,1978 Press Releases: Congressional Record, Bill Introduced, Shore Erosion,1978 + + + + + + 339 + 95 + Records,1978 Press Releases: Radio Spots, Milliken Re-election,1978 + + + + + + 339 + 96 + Records,1978 Press Releases: Decision to Seek Re-election, press release,1978 + + + + + + 339 + 97 + Records,1978 Press Releases: RPG Announces for Re-election, press conference,1978 + + + + + + 339 + 98 + Records,1978 Press Releases: Radio Spot, Decision to seek Re-election, radio spot,1978 + + + + + + 339 + 99 + Records,1978 Press Releases: Radio Spot, Ruppe Shuns Candidacy for Senate,1978 + + + + + + 339 + 100 + Records,1978 Press Releases: Statement, Ruppe Shuns Candidacy for Senate,1978 + + + + + + 339 + 101 + Records,1978 Press Releases: Letter, Coal Strike,1978 + + + + + + 339 + 102 + Records,1978 Press Releases: Minority Views, Panama Canal Treaties, corrected edition,1978 + + + + + + 339 + 103 + Records,1978 Press Releases: Op-ed Piece, Panama Canal Views with Letter,1978 + + + + + + 339 + 104 + Records,1978 Press Releases: Speech, Panama Canal Cables,1978 + + + + + + 339 + 105 + Records,1978 Press Releases: Letter to President, Fuel Economy Standards,1978 + + + + + + 339 + 106 + Records,1978 Press Releases: TV Sports Blackouts,1978 + + + + + + 339 + 107 + Records,1978 Press Releases: Opening Remarks, Panama Canal Treaties, 2/22,1978 + + + + + + 339 + 108 + Records,1978 Press Releases: Tuition Tax Credit,1978 + + + + + + 339 + 109 + Records,1978 Press Releases: Olympics, Marquette,1978 + + + + + + 339 + 110 + Records,1978 Press Releases: RPG Joins Fight to Protect N. Michigan Rail Service,1978 + + + + + + 339 + 111 + Records,1978 Press Releases: RPG Says not to Late to Undo Panama Canal Mistake,1978 + + + + + + 339 + 112 + Records,1978 Press Releases: Tourism,1978 + + + + + + 339 + 113 + Records,1978 Press Releases: RPG says Panama ACompromise@ Invites Confrontation,1978 + + + + + + 339 + 114 + Records,1978 Press Releases: RPG Calls for Expansion of Urban Homesteading Program,1978 + + + + + + 339 + 115 + Records,1978 Press Releases: Boating Safety,1978 + + + + + + 339 + 116 + Records,1978 Press Releases: Pushes Tax Equity for Nation's Artists,1978 + + + + + + 339 + 117 + Records,1978 Press Releases: Oakland County Bar Association Law Day Speech,1978 + + + + + + 339 + 118 + Records,1978 Press Releases: Backs Bill to Remember the Victims of the Holocaust,1978 + + + + + + 339 + 119 + Records,1978 Press Releases: Great Lakes Icebreaker,1978 + + + + + + 339 + 120 + Records,1978 Press Releases: PCP Legislation,1978 + + + + + + 339 + 121 + Records,1978 Press Releases: Spring Newsletter,1978 + + + + + + 339 + 122 + Records,1978 Press Releases: Relief of U.S. Citizens Held Behind Iron Curtain,1978 + + + + + + 339 + 123 + Records,1978 Press Releases: Statement on Death of Senator James Allen,1978 + + + + + + 339 + 124 + Records,1978 Press Releases: Telegram to Secretary of State Vance,1978 + + + + + + 339 + 125 + Records,1978 Press Releases: L.B. Patterson Suit, Abusing Franking Privilege,1978 + + + + + + 339 + 126 + Records,1978 Press Releases: Cutting U.N. Funds,1978 + + + + + + 339 + 127 + Records,1978 Press Releases: Ludington Ferry,1978 + + + + + + 339 + 128 + Records,1978 Press Releases: ELF, Seafarer,1978 + + + + + + 339 + 129 + Records,1978 Press Releases: Soviet Dissidents,1978 + + + + + + 339 + 130 + Records,1978 Press Releases: Helen Cope, 88 Year Old Senior Citizen Intern,1978 + + + + + + 339 + 131 + Records,1978 Press Releases: Grand Marais Harbor,1978 + + + + + + 339 + 132 + Records,1978 Press Releases: Urban Homesteading,1978 + + + + + + 339 + 133 + Records,1978 Press Releases: Senate Plea, Release of Lev Lukyanenko, Soviet Dissident,1978 + + + + + + 339 + 134 + Records,1978 Press Releases: Mideast Peace Resolution,1978 + + + + + + 339 + 135 + Records,1978 Press Releases: Finnish Nuclear Energy,1978 + + + + + + 339 + 136 + Records,1978 Press Releases: End Deadlock on Stalled Energy Legislation,1978 + + + + + + 339 + 137 + Records,1978 Press Releases: Cargo Preference, 2 different press releases, 8/14 and 8/18,1978 + + + + + + 339 + 138 + Records,1978 Press Releases: Funding for MI Harbors, Grand Marais, Little Girl,1978 + + + + + + 339 + 139 + Records,1978 Press Releases: Tuition Tax Credit,1978 + + + + + + 339 + 140 + Records,1978 Press Releases: A Very Young Economist Explains Inflation,1978 + + + + + + 339 + 141 + Records,1978 Press Releases: Human Rights Policy Demands more than Moral Rhetoric,1978 + + + + + + 339 + 142 + Records,1978 Press Releases: Full Voice in Congress for D.C. Citizens,1978 + + + + + + 339 + 143 + Records,1978 Press Releases: Radio Actuality, D. C. Representation,1978 + + + + + + 339 + 144 + Records,1978 Press Releases: Capitol Cloakroom, CBS Radio Interview with RPG,1978 + + + + + + 339 + 145 + Records,1978 Press Releases: Radio Actuality, Macomb Sewer Line Disaster,1978 + + + + + + 339 + 146 + Records,1978 Press Releases: Finance Committee, Tax Limitation through Indexation,1978 + + + + + + 339 + 147 + Records,1978 Press Releases: Human Rights and the Helsinki-Belgrade Experience,1978 + + + + + + 339 + 148 + Records,1978 Press Releases: Mideast Summit at Camp David, press release, 8/31,1978 + + + + + + 339 + 149 + Records,1978 Press Releases: Mideast Summit at Camp David, radio actuality, 8/31,1978 + + + + + + 339 + 150 + Records,1978 Press Releases: Tax Limitation through Indexation, 9/1, 1st version of CR reprint, 8/25,1978 + + + + + + 339 + 151 + Records,1978 Press Releases: Natural Gas Bill, 9/12,1978 + + + + + + 340 + 1 + Records,Tax Limitation Through Indexation, 9/12, 2nd version of CR reprint, 8/25,1972-1978 + + + + + + 340 + 2 + Records,Alaska Lands Bill,1972-1978 + + + + + + 340 + 3 + Records,Death of Allan Blanchard,1972-1978 + + + + + + 340 + 4 + Records,Conclusion of Mideast Summit,1972-1978 + + + + + + 340 + 5 + Records,Telegram to President Carter, Rail Strike,1972-1978 + + + + + + 340 + 6 + Records,Bruce Catton,1972-1978 + + + + + + 340 + 7 + Records,Phil Hart Office Building,1972-1978 + + + + + + 340 + 8 + Records,Tax Indexation,1972-1978 + + + + + + 340 + 9 + Records,Equal Rights Amendment Extension,1972-1978 + + + + + + 340 + 10 + Records,Tax Indexation, Senators Hart, Brooke, and Dole,1972-1978 + + + + + + 340 + 11 + Records,Equal Rights Amendment, The Extension Issue,1972-1978 + + + + + + 340 + 12 + Records,Grand Marais,1972-1978 + + + + + + 340 + 13 + Records,Pooling Agreements,1972-1978 + + + + + + 340 + 14 + Records,Tax Relief for PBB Losses,1972-1978 + + + + + + 340 + 15 + Records,Consumer Interests Demand Repeal of Air Bag Order,1972-1978 + + + + + + 340 + 16 + Records,RPG Forces Compromise on AGas Guzzler@ Auto Tax,1972-1978 + + + + + + 340 + 17 + Records,U.S. Funds Halt on Anti-Israel Campaign,1972-1978 + + + + + + 340 + 18 + Records,Congress Adopts Griffin Plan for Tax Relief on PBB Losses,1972-1978 + + + + + + 340 + 19 + Records,RPG Announces Nominations for Service,1972-1978 + + + + + + 340 + 20 + Records,RPG to Become Senior Fellow at AEI,1972-1978 + + + + + + 340 + 21 + Records,Press Release Index #2,1972-1978 + + + + + + 340 + 22 + Records,Press Release Index #3,1972-1978 + + + + + + 340 + 23 + Records,Traverse City, Record Eagle, News Stories 9/6/77-12/31/77,1977 + + + + + + 340 + 24 + Records,News Stories 1/1/78-6/30/77,1977-1978 + + + + + + 340 + 25 + Records,News Stories 9/1-9/30/78,1978 + + + + + + 340 + 26 + Records,Alpena News, 7/18/78-11/6/78,1978 + + + + + + 340 + 27 + Records,Grand Rapids Press, 1/12-10/8/78,1978 + + + + + + 340 + 28 + Records,Index 1972-1976,1972-1976 + + + + + + 340 + 29 + Records,Clanton, David, Nomination for FTC Commissioner,1972-1978 + + + + + + 340 + 30 + Records,Correspondence,1972-1978 + + + + + + 340 + 31 + Records,Biographies,1972-1978 + + + + + + 340 + 32 + Records,Facts of File,1972-1978 + + + + + + 340 + 33 + Records,Grants,1972-1978 + + + + + + 340 + 34 + Records,Interview Notes,1972-1978 + + + + + + 340 + 36 + Records,Meeting, Staff,1972-1978 + + + + + + 340 + 37 + Records,Meetings, with RPG,1972-1978 + + + + + + 340 + 38 + Records,Meetings, Misc.,1972-1978 + + + + + + 340 + 39 + Records,Memos, In,1972-1978 + + + + + + 340 + 40 + Records,Memos, Out,1972-1978 + + + + + + 340 + 41 + Records,Memos, to RPG,1972-1978 + + + + + + 340 + 42 + Records,News Sessions, 11/23/76,1976 + + + + + + 340 + 43 + Records,News Conference, Detroit, 11/76,1976 + + + + + + 340 + 44 + Records,News Sessions, 9/21/76,1976 + + + + + + 340 + 45 + Records,News Sessions, 8/8/76,1976 + + + + + + 340 + 46 + Records,News Sessions, 7/2/76,1976 + + + + + + 340 + 47 + Records,News Sessions, 6/11/76,1976 + + + + + + 340 + 48 + Records,News Sessions, 5/6/76,1976 + + + + + + 340 + 49 + Records,News Sessions, 4/14/76,1976 + + + + + + 340 + 50 + Records,News Sessions, 4/2/76,1976 + + + + + + 340 + 51 + Records,News Sessions, 2/19/76,1976 + + + + + + 340 + 52 + Records,News Sessions, 2/5/76,1976 + + + + + + 340 + 53 + Records,News Sessions, 1/21/76,1976 + + + + + + 340 + 54 + Records,Ratings,1972-1978 + + + + + + 340 + 55 + Records,Recording Studio,1972-1978 + + + + + + 340 + 56 + Records,Talking Points,1972-1978 + + + + + + 340 + 57 + Records,Tapes, Library,1972-1978 + + + + + + 340 + 58 + Records,Television,1972-1978 + + + + + + 340 + 59 + Records,Foreign Policy Debate, 10/7/76,1976 + + + + + + 340 + 60 + Records,Bicentennial Recording, Mutual Broadcasting, 9/30/75,1975 + + + + + + 340 + 61 + Records,20 Slides of RPG, 1975,1975 + + + + + + 340 + 62 + Records,Interview Notes, 1975,1975 + + + + + + 340 + 63 + Records,Mail Count, 1975,1975 + + + + + + 340 + 64 + Records,Meetings, 1975,1975 + + + + + + 340 + 65 + Records,Staff Memos, Office Procedures, 1975,1975 + + + + + + 340 + 66 + Records,Memos, Out, 1975,1975 + + + + + + 340 + 67 + Records,Memos, to RPG, 1975,1975 + + + + + + 340 + 68 + Records,Messages, 1975,1975 + + + + + + 340 + 69 + Records,News Sessions, Jan.-Dec. 1975, 11 folders,1975 + + + + + + 340 + 70 + Records,News Sessions, Jan.-Dec. 1975, 11 folders,1975 + + + + + + 340 + 71 + Records,News Sessions, Jan.-Dec. 1975, 11 folders,1975 + + + + + + 340 + 72 + Records,News Sessions, Jan.-Dec. 1975, 11 folders,1975 + + + + + + 340 + 73 + Records,News Sessions, Jan.-Dec. 1975, 11 folders,1975 + + + + + + 340 + 74 + Records,News Sessions, Jan.-Dec. 1975, 11 folders,1975 + + + + + + 340 + 75 + Records,News Sessions, Jan.-Dec. 1975, 11 folders,1975 + + + + + + 340 + 76 + Records,News Sessions, Jan.-Dec. 1975, 11 folders,1975 + + + + + + 340 + 77 + Records,News Sessions, Jan.-Dec. 1975, 11 folders,1975 + + + + + + 340 + 78 + Records,News Sessions, Jan.-Dec. 1975, 11 folders,1975 + + + + + + 340 + 79 + Records,News Sessions, Jan.-Dec. 1975, 11 folders,1975 + + + + + + 340 + 80 + Records,Ratings, 1975,1975 + + + + + + 340 + 81 + Records,Requests, Media, WGMS Salute to the States, 1975,1975 + + + + + + 340 + 82 + Records,Unemployment Figures, 1975,1975 + + + + + + 340 + 83 + Records,Balance of Payments, U.S.-Canadian Auto Tariff Agreement, 2/27/73,1973 + + + + + + 340 + 84 + Records,Backgrounder, Watergate, 6/5/73,1973 + + + + + + 340 + 85 + Records,Backgrounder, China Trip, 7/17/73,1973 + + + + + + 340 + 86 + Records,Newsletter, 1972,1972 + + + + + + 340 + 87 + Records,Index, Interviews and Press Conferences, 1967-1971, 5 folders,1967-1971 + + + + + + 340 + 88 + Records,Index, Interviews and Press Conferences, 1967-1971, 5 folders,1967-1971 + + + + + + 340 + 89 + Records,Index, Interviews and Press Conferences, 1967-1971, 5 folders,1967-1971 + + + + + + 340 + 90 + Records,Index, Interviews and Press Conferences, 1967-1971, 5 folders,1967-1971 + + + + + + 340 + 91 + Records,Index, Interviews and Press Conferences, 1967-1971, 5 folders,1967-1971 + + + + + + 340 + 92 + Records,Interviews, Ratings,1972-1978 + + + + + + 340 + 93 + Records,Index-Ratings,1972-1978 + + + + + + 340 + 94 + Records,Conservative and Business Ratings, ACA, ACU, >63-63, 66-71, 1 folder,1972-1978 + + + + + + 340 + 95 + Records,Consumer Organization Ratings, 1971,1971 + + + + + + 341 + 1 + Records,Alcona County thru Manistee County,1978 + + + + + + 341 + 2 + Records,Alger County,1978 + + + + + + 341 + 3 + Records,Allegan County,1978 + + + + + + 341 + 4 + Records,Alpena County,1978 + + + + + + 341 + 5 + Records,Antrim County,1978 + + + + + + 341 + 6 + Records,Arenac County,1978 + + + + + + 341 + 7 + Records,Baraga County,1978 + + + + + + 341 + 8 + Records,Barry County,1978 + + + + + + 341 + 9 + Records,Bay County,1978 + + + + + + 341 + 10 + Records,Berrien County,1978 + + + + + + 341 + 11 + Records,Benzie County,1978 + + + + + + 341 + 12 + Records,Branch County,1978 + + + + + + 341 + 13 + Records,Calhoun County,1978 + + + + + + 341 + 14 + Records,Cass County,1978 + + + + + + 341 + 15 + Records,Charlevoix County,1978 + + + + + + 341 + 16 + Records,Cheboygan County,1978 + + + + + + 341 + 17 + Records,Chippewa County,1978 + + + + + + 341 + 18 + Records,Clare County,1978 + + + + + + 341 + 19 + Records,Clinton County,1978 + + + + + + 341 + 20 + Records,Crawford County,1978 + + + + + + 341 + 21 + Records,Delta County,1978 + + + + + + 341 + 22 + Records,Dickinson County,1978 + + + + + + 341 + 23 + Records,Eaton County,1978 + + + + + + 341 + 24 + Records,Emmet County,1978 + + + + + + 341 + 25 + Records,Genesee County,1978 + + + + + + 341 + 26 + Records,Gladwin County,1978 + + + + + + 341 + 27 + Records,Gogebic County,1978 + + + + + + 341 + 28 + Records,Grand Traverse County,1978 + + + + + + 341 + 29 + Records,Gratiot County,1978 + + + + + + 341 + 30 + Records,Hillsdale County,1978 + + + + + + 341 + 31 + Records,Houghton County,1978 + + + + + + 341 + 32 + Records,Huron County,1978 + + + + + + 341 + 33 + Records,Ingham County (City of E. Lansing only),1978 + + + + + + 341 + 34 + Records,Ingham County (City of Lansing only),1978 + + + + + + 341 + 35 + Records,Ingham County,1978 + + + + + + 341 + 36 + Records,Ionia County,1978 + + + + + + 341 + 37 + Records,osco County,1978 + + + + + + 341 + 38 + Records,Iron County,1978 + + + + + + 341 + 39 + Records,Isabella County,1978 + + + + + + 341 + 40 + Records,Jackson County,1978 + + + + + + 341 + 41 + Records,Kalkaska County,1978 + + + + + + 341 + 42 + Records,Kalamazoo County,1978 + + + + + + 341 + 43 + Records,Kent County,1978 + + + + + + 341 + 44 + Records,Keweenaw County,1978 + + + + + + 341 + 45 + Records,Lake County,1978 + + + + + + 341 + 46 + Records,Lapeer County,1978 + + + + + + 341 + 47 + Records,Leelanau County,1978 + + + + + + 341 + 48 + Records,Lenawee County,1978 + + + + + + 341 + 49 + Records,Livingston County,1978 + + + + + + 341 + 50 + Records,Luce County,1978 + + + + + + 341 + 51 + Records,Mackinac County,1978 + + + + + + 341 + 52 + Records,Macomb County,1978 + + + + + + 341 + 53 + Records,Manistee County,1978 + + + + + + 342 + 1 + Records,Marquette County thru Wexford County,1978 + + + + + + 342 + 2 + Records,Marquette County,1978 + + + + + + 342 + 3 + Records,Mason County,1978 + + + + + + 342 + 4 + Records,Mecosta County,1978 + + + + + + 342 + 5 + Records,Menominee County,1978 + + + + + + 342 + 6 + Records,Midland County,1978 + + + + + + 342 + 7 + Records,Missaukee County,1978 + + + + + + 342 + 8 + Records,Monroe County,1978 + + + + + + 342 + 9 + Records,Montcalm County,1978 + + + + + + 342 + 10 + Records,Montmorency County,1978 + + + + + + 342 + 11 + Records,Muskegon County,1978 + + + + + + 342 + 12 + Records,Newaygo County,1978 + + + + + + 342 + 13 + Records,Oakland County,1978 + + + + + + 342 + 14 + Records,Oceana County,1978 + + + + + + 342 + 15 + Records,Ogemaw County,1978 + + + + + + 342 + 16 + Records,Ontonagon County,1978 + + + + + + 342 + 17 + Records,Osceola County,1978 + + + + + + 342 + 18 + Records,Oscoda County,1978 + + + + + + 342 + 19 + Records,Otsego County,1978 + + + + + + 342 + 20 + Records,Ottawa County,1978 + + + + + + 342 + 21 + Records,Presque Isle County,1978 + + + + + + 342 + 22 + Records,Roscommon County,1978 + + + + + + 342 + 23 + Records,Saginaw County,1978 + + + + + + 342 + 24 + Records,Saint Clair County,1978 + + + + + + 342 + 25 + Records,Saint Joseph County,1978 + + + + + + 342 + 26 + Records,Sanilac County,1978 + + + + + + 342 + 27 + Records,Schoolcraft County,1978 + + + + + + 342 + 28 + Records,Shiawassee County,1978 + + + + + + 342 + 29 + Records,Tuscola County,1978 + + + + + + 342 + 30 + Records,Van Buren County,1978 + + + + + + 342 + 31 + Records,Washtenaw County (City of Ann Arbor),1978 + + + + + + 342 + 32 + Records,Wayne County (City of Detroit, 4 folders),1978 + + + + + + 342 + 33 + Records,Wayne County (City of Detroit, 4 folders),1978 + + + + + + 342 + 34 + Records,Wayne County (City of Detroit, 4 folders),1978 + + + + + + 342 + 35 + Records,Wayne County (City of Detroit, 4 folders),1978 + + + + + + 342 + 36 + Records,Wexford County,1978 + + + + + + 342 + 37 + Records,State of Michigan,1978 + + + + + + 342 + 38 + Records,Upper Peninsula Counties,1978 + + + + + + 343 + 1 + Records,Files Index,1977-1978 + + + + + + 343 + 2 + Records,Biography Information,1977-1978 + + + + + + 343 + 3 + Records,Gallup Poll,1977-1978 + + + + + + 343 + 4 + Records,Interview Notes,1977-1978 + + + + + + 343 + 5 + Records,RPG Interview, John Chambers, 1/4/77,1977 + + + + + + 343 + 6 + Records,RPG Interview, Nine in the Morning, 1/5/77,1977 + + + + + + 343 + 7 + Records,RPG Interview, Ford=s Last Days, 1/19/77,1977 + + + + + + 343 + 8 + Records,RPG Interview, Capitol Page School, 1/17/77,1977 + + + + + + 343 + 9 + Records,RPG Interview, Bob Lee, 3/7/77,1977 + + + + + + 343 + 10 + Records,RPG Interview, WCAR Radio, 3/14/77,1977 + + + + + + 343 + 11 + Records,RPG Interview, Teamsters, 5/10/77,1977 + + + + + + 343 + 12 + Records,RPG, Question and Answers, Grand Rapids Economic Club, 5/23/77,1977 + + + + + + 343 + 13 + Records,RPG Interview, Brian Yaroch, 6/21/77,1977 + + + + + + 343 + 14 + Records,RPG Interview, Joe McCaffery, Wmal, 7/12/77, and cassette,1977 + + + + + + 343 + 15 + Records,RPG Interview, Joe Callahan, 7/19/77,1977 + + + + + + 343 + 16 + Records,RPG Interview, Ron Cordary, 7/27/77,1977 + + + + + + 343 + 17 + Records,RPG Interview, Excerpts Traverse City Record Eagle, 8/17/77,1977 + + + + + + 343 + 18 + Records,RPG Interview, Cargo Preference, 9/20/70,1970 + + + + + + 343 + 19 + Records,RPG Interview, Society of Automotive Engineers, 9/22/77,1977 + + + + + + 343 + 20 + Records,RPG Interview, Norm Biondi, Tufty, 9/22/77,1977 + + + + + + 343 + 21 + Records,RPG Interview, John Chambers, 10/8/76,1976 + + + + + + 343 + 22 + Records,RPG Interview, John Chambers, 12/19/77,1977 + + + + + + 343 + 23 + Records,Mail Count, 1977,1977 + + + + + + 343 + 24 + Records,Mass Mailings, 1977,1977 + + + + + + 343 + 25 + Records,Staff Meetings Notes, Staff Manual, 1977,1977 + + + + + + 343 + 26 + Records,Meetings Notes, with RPG, 1976,1976 + + + + + + 343 + 27 + Records,Memos, Staff In, 1977, 2 folders,1977 + + + + + + 343 + 28 + Records,Memos, Staff In, 1977, 2 folders,1977 + + + + + + 343 + 29 + Records,Memos, Staff Out, 1977,1977 + + + + + + 343 + 30 + Records,Messages, Index,1977-1978 + + + + + + 343 + 31 + Records,Messages, Procedures,1977-1978 + + + + + + 343 + 32 + Records,National Republican Senatorial Committee,1977-1978 + + + + + + 343 + 33 + Records,Newsletter, 1977,1977 + + + + + + 343 + 34 + Records,Newspaper Survey, Metro Area,1977-1978 + + + + + + 343 + 35 + Records,News Sessions, Jan.-Aug. 1977, 4 folders,1977 + + + + + + 343 + 36 + Records,Presidential Classroom,1977-1978 + + + + + + 343 + 37 + Records,Press Kits,1977-1978 + + + + + + 343 + 38 + Records,Questionnaires,1977-1978 + + + + + + 343 + 39 + Records,Radio,1977-1978 + + + + + + 343 + 40 + Records,Ratings,1977-1978 + + + + + + 343 + 41 + Records,Television,1977-1978 + + + + + + 343 + 42 + Records,Who's Who in America,1977-1978 + + + + + + 343 + 43 + Records,1978 Index: Campaign Media,1978 + + + + + + 343 + 44 + Records,1978 Index: Copyrights,1978 + + + + + + 343 + 45 + Records,1978 Index: Correspondence A-Z, A-N 3 folders,1978 + + + + + + 343 + 46 + Records,1978 Index: Correspondence A-Z, A-N 3 folders,1978 + + + + + + 343 + 47 + Records,1978 Index: Correspondence A-Z, A-N 3 folders,1978 + + + + + + 343 + 48 + Records,1978 Index: Galleries, Rules, Kinsolving,1978 + + + + + + 343 + 49 + Records,1978 Index: GOP Senatorial, Bills, 1977-1978, MML,1978 + + + + + + 343 + 50 + Records,1978 Index: GOP Senatorial, Notes, 1977-1978, MML,1978 + + + + + + 343 + 51 + Records,1978 Index: Grants,1978 + + + + + + 343 + 52 + Records,1978 Index: Interview Notes,1978 + + + + + + 343 + 53 + Records,1978 Index: RPG Interview, Bob Lee, WWTV, 1/17/78,1978 + + + + + + 343 + 54 + Records,1978 Index: RPG Interview, ABC Radio, Bruce Templeton, 2/2/78,1978 + + + + + + 343 + 55 + Records,1978 Index: RPG Interview, Announcement for Reelection, 2/13/78,1978 + + + + + + 343 + 56 + Records,1978 Index: RPG Interview, Panax Editorial Board, 6/16/78,1978 + + + + + + 343 + 57 + Records,1978 Index: RPG Interview, WOTV, Grand Rapids, Aired 7/30/78,1978 + + + + + + 343 + 58 + Records,1978 Index: RPG Interview, Capitol Cloakroom, CBS Radio, 8/16/78,1978 + + + + + + 343 + 59 + Records,1978 Index: Kudos,1978 + + + + + + 343 + 60 + Records,1978 Index: Memos, In,1978 + + + + + + 343 + 61 + Records,1978 Index: Memos, to RPG, Jan.-Dec., 3 folders,1978 + + + + + + 343 + 62 + Records,1978 Index: Messages, Index and Procedure,1978 + + + + + + 343 + 63 + Records,1978 Index: MI Press,1978 + + + + + + 343 + 64 + Records,1978 Index: National Republican Senatorial Committee,1978 + + + + + + 343 + 65 + Records,1978 Index: Newsletter,1978 + + + + + + 343 + 66 + Records,1978 Index: News Session Lists,1978 + + + + + + 343 + 67 + Records,1978 Index: News Session, MI Press, 2/17/78,1978 + + + + + + 343 + 68 + Records,1978 Index: News Session, MI Press, 4/20/78,1978 + + + + + + 343 + 69 + Records,1978 Index: News Session, 353, 6/8/78,1978 + + + + + + 343 + 70 + Records,1978 Index: News Session, 8/3/78,1978 + + + + + + 343 + 71 + Records,1978 Index: Panax,1978 + + + + + + 343 + 72 + Records,1978 Index: L. Broods Patterson News Conference, 6/13/78,1978 + + + + + + 343 + 73 + Records,1978 Index: Photographers, K-Z,1978 + + + + + + 343 + 74 + Records,1978 Index: Press Release Index,1978 + + + + + + 343 + 75 + Records,1978 Index: Radio,1978 + + + + + + 343 + 76 + Records,1978 Index: Senate Ethics,1978 + + + + + + 343 + 77 + Records,1978 Index: Tapes, Library,1978 + + + + + + 343 + 78 + Records,1978 Index: Veterans, Mount Hope Cemetery,1978 + + + + + + 343 + 79 + Records,1978 Index: White House,1978 + + + + + + 343 + 80 + Records,1978 Index: Who's Who in America,1978 + + + + + + 344 + 1 + Records,Griffin on the Issues, 1972,1972 + + + + + + 344 + 2 + Records,Bills Introduced 92nd Congress, 1972,1972 + + + + + + 344 + 3 + Records,RPG Color Slides,1957-1978 + + + + + + 344 + 4 + Records,Education and Labor Committee, 1959-1960,1959-1960 + + + + + + 344 + 5 + Records,RPG with Antonio Salazar and Others, 11/62,1962 + + + + + + 344 + 6 + Records,Senate Republican Caucus, 1970,1970 + + + + + + 344 + 7 + Records,RPG Interviewing Vice President Nixon, 1957,1957 + + + + + + 344 + 8 + Records,RPG with CMU President Judson Foust, 1963,1963 + + + + + + 344 + 9 + Records,RPG with Governor George Romney, 1966,1966 + + + + + + 344 + 10 + Records,RPG with Governor George Romney, 1966,1966 + + + + + + 344 + 11 + Records,Keep Smiling!,1957-1978 + + + + + + 344 + 12 + Records,RPG with Harvey, Mott, and Hansen,1957-1978 + + + + + + 344 + 13 + Records,RPG with Scott and Allott, 1972,1972 + + + + + + 344 + 14 + Records,RPG and Ford at GOP Convention in Miami, 1968,1968 + + + + + + 344 + 15 + Records,RPG with Howard (Bo) Calloway at GOP Convention, 1968,1968 + + + + + + 344 + 16 + Records,MI Rep. Elford Cederberg,1957-1978 + + + + + + 345 + 1 + Records,Certificate, RPG's Attendance at Apollo 11 Launch, 1969,1969 + + + + + + 345 + 2 + Records,RPG with Nixon at Signing of Tax Bill, 12/71,1971 + + + + + + 345 + 3 + Records,Front Page of Moscow News with Photo of RPG, 4/28/73,1973 + + + + + + 345 + 4 + Records,Certificate, Ogemaw University, Doctor of Athletics,1957-1976 + + + + + + 345 + 5 + Records,Haynsworth Nomination to Supreme Court, Toledo Blade, 1969,1969 + + + + + + 345 + 6 + Records,Certificate, Appreciation, National Press Club, 1968,1968 + + + + + + 345 + 7 + Records,Certificate, Newsmaker of the Year, 1968,1968 + + + + + + 345 + 8 + Records,RPG and Mrs. G. at Office Door, 1969,1969 + + + + + + 345 + 9 + Records,RPG with Vice President Ford, Hugh Scott, Mike Mansfield,1957-1976 + + + + + + 345 + 10 + Records,Senate Whips, 1976, RPG with Byrd,1976 + + + + + + 345 + 11 + Records,RPG with Hugh Scott at Rockefeller's V.P. Nomination, 1974,1974 + + + + + + 345 + 12 + Records,RPG with Byrd at Ford=s V.P. Nomination, 1973,1973 + + + + + + 345 + 13 + Records,RPG and Mrs. Griffin with Congressional Delegation, 1973,1973 + + + + + + 345 + 14 + Records,Certificate Saluting RPG on Landrum-Griffin (Labor Legislation), 1959,1959 + + + + + + 345 + 15 + Records,West Bloomfield Township, 10/21/72 (Photo and invitation(copy)),1972 + + + + + + 345 + 16 + Records,RPG with President Nixon, 1969,1969 + + + + + + 345 + 17 + Records,RPG with Cotton, Scott, Smith, and Allott,1957-1976 + + + + + + 345 + 18 + Records,Proceeds from Sale of Ford Medal Go to University,1957-1976 + + + + + + 345 + 19 + Records,RPG with Sen. Cook and Sen. Hatfield,1957-1976 + + + + + + 345 + 20 + Records,Certificate, RPG Testimonial Dinner, 1/20/64,1964 + + + + + + 345 + 21 + Records,RPG, Mrs. G and Jill at his 50th Birthday Party, 1973,1973 + + + + + + 345 + 22 + Records,RPG Dons Hard Hat, 1972 (Other Man Unidentified),1972 + + + + + + 345 + 23 + Records,RPG Portrait on Capitol Steps, 1966,1966 + + + + + + 345 + 24 + Records,Congressional Seal (on bottom of box),1957-1976 + + + + + + 345 + 25 + Records,Resolution Commending RPG's Role in Fortas Nomination,1957-1976 + + + + + + 345 + 26 + Records,Richard Nixon, Autographed, 1972,1972 + + + + + + 345 + 27 + Records,Certificate, Council of Lake Erie Ports, 3/14/72,1972 + + + + + + 345 + 28 + Records,Certificate, 4th Election as Minority Whip, 1/3/75,1975 + + + + + + 345 + 29 + Records,Political Sketch of Sen. Griffin, signed by Leo Hartfield, 1968,1968 + + + + + + 345 + 30 + Records,White House State Dining Room (photo),1957-1976 + + + + + + 345 + 31 + Records,RPG with President Nixon in the Oval Office,1957-1976 + + + + + + 345 + 32 + Records,Certificate, Guardian of Berlin's Freedom,1957-1976 + + + + + + 345 + 33 + Records,Senate Republican Leadership (Young, Scott, Smith, Griffin, Allott), 1971,1971 + + + + + + 345 + 35 + Records,Griffins with the Fords,1957-1976 + + + + + + 345 + 36 + Records,Certificate, 3rd Election as Minority Whip,1957-1976 + + + + + + 345 + 37 + Records,Black and White Film, 1" x 2", Griffin Operation Abolution, undated (on side of the box),undated + + + + + + 345 + 38 + Records,2 films in 1 cannister, 1" x 4", Unemployment, A Bill Becomes A Law, and Sen. Griffin (on side of the box),1957-1976 + + + + + + 345 + 39 + Records,Griffin (16 reels, Approx. 3" in diameter) (on side of the box),1957-1976 + + + + + + 345 + 40 + Records,Film: China: Hole in the Bamboo Curtain (on side of the box),1957-1976 + + + + + + 346 + 1 + Records,RPG and Rep. Ford at Opening of Senate Rules Committee Hearings on Ford=s Nomination of Vice President, 11/1/73,1973 + + + + + + 346 + 2 + Records,RPG Portrait, circa 1967,1967 + + + + + + 346 + 3 + Records,With Nixon Family at Dedication of Eisenhower High School, Utica, MI, 1972,1972 + + + + + + 346 + 4 + Records,Whip,1967-1973 + + + + + + 346 + 5 + Records,Art Sketch,1967-1973 + + + + + + 347 + 1 + Records,Plaque, Arthur Fleming Award,1958-1977 + + + + + + 347 + 2 + Records,Plaque, Members of United Lines 100,000 Club,1958-1977 + + + + + + 347 + 3 + Records,Plaque, From Dedication of Mackinac Bridge,1958-1977 + + + + + + 347 + 4 + Records,Plaque, Chrysler Management Club, 1977,1977 + + + + + + 347 + 5 + Records,Plaque, Focus: Hope,1958-1977 + + + + + + 347 + 6 + Records,Young Republican National Advisory Board,1958-1977 + + + + + + 347 + 7 + Records,Michigan Superior Service Award,1958-1977 + + + + + + 347 + 8 + Records,Plaque, Farmington Kiwanis Club,1958-1977 + + + + + + 347 + 9 + Records,Desk Plaque, Support of Non-Nuclear Position,1958-1977 + + + + + + 347 + 10 + Records,Renaissance Center Ground Breaking,1958-1977 + + + + + + 348 + 1 + Records,RPG Ashtray,1958-1977 + + + + + + 348 + 2 + Records,Eastern Michigan University, Doctor of Laws Citation,1958-1977 + + + + + + 348 + 3 + Records,Plaque, Northwest Orient Top Flight Club,1958-1977 + + + + + + 348 + 4 + Records,Griffin Ash Trays,1958-1977 + + + + + + 348 + 5 + Records,Griffin Pins,1958-1977 + + + + + + 348 + 6 + Records,Benjamin Franklin Award,1958-1977 + + + + + + 348 + 7 + Records,Desk Plaque, Robert P. Griffin,1958-1977 + + + + + + 348 + 8 + Records,Gavel,1958-1977 + + + + + + Senator Robert P. Griffin Papers Collection - Series #10, Whip (4 cubic feet) - 1968‑1976, and undated) + + + + 404 + 1 + Records, Price-Anderson Law, HR 15323,undated + + + + + + 404 + 2 + Records, Memorandums, Staff to Senator,undated + + + + + + 404 + 3 + Records, Agricultural Appropriations Bill,undated + + + + + + 404 + 4 + Records, Aircraft Piracy,undated + + + + + + 404 + 5 + Records, Alaskan Pipeline,undated + + + + + + 404 + 6 + Records, Amateur Athletic Act of 1973,1973 + + + + + + 404 + 7 + Records, Amateur Sports Bill,undated + + + + + + 404 + 8 + Records, Appropriations, Agriculture, Environment, Consumers,undated + + + + + + 404 + 9 + Records, Appropriations, Department of State, Commerce, Justice,undated + + + + + + 404 + 10 + Records, Appropriations, Related Agencies,undated + + + + + + 404 + 11 + Records, Arms Control, Disarmaments, HR 12799,undated + + + + + + 404 + 12 + Records, Atomic Energy,undated + + + + + + 404 + 13 + Records, Bicycle Parts, Suspension of Duty, Etc., HR 6642,undated + + + + + + 404 + 14 + Records, Biomedical,undated + + + + + + 404 + 15 + Records, Broadcast License Renewal,undated + + + + + + 404 + 16 + Records, Budget Reform Conference, HR 7130,undated + + + + + + 404 + 17 + Records, Federal Election Campaign Act,undated + + + + + + 404 + 18 + Records, Campaign Reform Material,undated + + + + + + 404 + 19 + Records, Cancer Act Amendments, S 2893,undated + + + + + + 404 + 20 + Records, Cargo Preference Bill,undated + + + + + + 404 + 21 + Records, Civil Service Retirement,undated + + + + + + 404 + 22 + Records, Coal Pipeline Act of 1974,1974 + + + + + + 404 + 23 + Records, Commuter,undated + + + + + + 404 + 24 + Records, Consumer Protection,undated + + + + + + 404 + 25 + Records, Drug Abuse Prevention,undated + + + + + + 404 + 26 + Records, Congressional Budget Act,undated + + + + + + 404 + 27 + Records, Commodity Futures Trading Commission, HR 13113,undated + + + + + + 404 + 28 + Records, Copyright Bill,undated + + + + + + 404 + 29 + Records, Daylight Savings Time,undated + + + + + + 404 + 30 + Records, District of Columbia Appropriations,undated + + + + + + 404 + 31 + Records, Death Penalty,undated + + + + + + 404 + 32 + Records, Debt Limit, Campaign Financing,undated + + + + + + 404 + 33 + Records, Defense Appropriations, Supplemental, S 2999,undated + + + + + + 404 + 34 + Records, Defense Appropriations 1975,1975 + + + + + + 404 + 35 + Records, District Courts,undated + + + + + + 404 + 36 + Records, Disposal of Aluminum,undated + + + + + + 404 + 37 + Records, Duty Exemption Certain Equipment,undated + + + + + + 404 + 38 + Records, Eastern Wilderness Areas, S 3433,undated + + + + + + 404 + 40 + Records, Elementary and Secondary Education Act,undated + + + + + + 404 + 41 + Records, Emergency Medical Services, PL 93-154,undated + + + + + + 404 + 42 + Records, Increase Employment Opportunities, S 2410,undated + + + + + + 404 + 43 + Records, Energy Reorganization Act of 1974,1974 + + + + + + 404 + 44 + Records, Energy Research and Development,undated + + + + + + 404 + 45 + Records, Export-Import Bank Act, S 3917,undated + + + + + + 404 + 46 + Records, Export Controls,undated + + + + + + 404 + 47 + Records, Farm and Rural Development,undated + + + + + + 404 + 48 + Records, Federal Aid Highway Amendment, S 3934,undated + + + + + + 404 + 49 + Records, Federal Pay Increases,undated + + + + + + 404 + 50 + Records, Federal Pay Raise, 1974,1974 + + + + + + 404 + 51 + Records, Federal Rules of Evidence,undated + + + + + + 404 + 52 + Records, Financial Amendments of 1974, S 3838,1974 + + + + + + 404 + 53 + Records, Fire Prevention Act,undated + + + + + + 404 + 54 + Records, Flight Pay,undated + + + + + + 404 + 55 + Records, Foreign Assistance,undated + + + + + + 404 + 56 + Records, Foreign Assistance Act, Amendment,undated + + + + + + 404 + 57 + Records, Foreign Disaster Assistance Act,undated + + + + + + 404 + 58 + Records, Freedom of Information,undated + + + + + + 404 + 59 + Records, General Services Administration, Federal Building Fund,undated + + + + + + 404 + 60 + Records, Health Manpower Bill, S 3585,undated + + + + + + 404 + 61 + Records, Housing and Community Development, S 3066,undated + + + + + + 404 + 62 + Records, Housing Program,undated + + + + + + 404 + 63 + Records, International Court of Justice,undated + + + + + + 404 + 64 + Records, Interior and Related Agencies Appropriations, HR 16027,undated + + + + + + 404 + 65 + Records, International Development Association,undated + + + + + + 404 + 66 + Records, Labor, HEW Appropriations,undated + + + + + + 404 + 67 + Records, International Economic Policy,undated + + + + + + 404 + 68 + Records, Juvenile Justice and Delinquency Act of 1974,1974 + + + + + + 404 + 69 + Records, Legal Services,undated + + + + + + 404 + 70 + Records, Military Procurement,undated + + + + + + 404 + 71 + Records, Military Assistance to Greece,undated + + + + + + 404 + 72 + Records, Military Construction Bill, 1974,1974 + + + + + + 404 + 73 + Records, Military Construction Bill, 1973,1973 + + + + + + 404 + 74 + Records, National Labor Relations Act,undated + + + + + + 404 + 75 + Records, No Fault,undated + + + + + + 404 + 76 + Records, Minimum Wage,undated + + + + + + 404 + 77 + Records, NASA Authorization for 1975,1975 + + + + + + 404 + 79 + Records, Northeast Rail Legislation,undated + + + + + + 404 + 80 + Records, National Resource Lands Management, S 424,undated + + + + + + 404 + 81 + Records, Full Opportunity Act, S 5,undated + + + + + + 404 + 82 + Records, Outer Continental Shelf,undated + + + + + + 404 + 83 + Records, Overseas Private Investment Corporation,undated + + + + + + 404 + 84 + Records, Pension,undated + + + + + + 404 + 85 + Records, Genocide,undated + + + + + + 404 + 86 + Records, Poe Lock to Blatnik, HR 17589,undated + + + + + + 404 + 87 + Records, Postal Rate Legislation,undated + + + + + + 404 + 88 + Records, Privacy, S 3418,undated + + + + + + 404 + 89 + Records, Prisoner of War, HR 8214,undated + + + + + + 404 + 90 + Records, Psychologists and Optometrists,undated + + + + + + 404 + 91 + Records, Public Works Appropriation,undated + + + + + + 404 + 92 + Records, Railroad Retirement Act,undated + + + + + + 404 + 93 + Records, Real Estate Settlement Disclosure,undated + + + + + + 404 + 94 + Records, Recreation and Public Purposes Act,undated + + + + + + 404 + 95 + Records, Renegotiation Act, HR 14833,undated + + + + + + 404 + 96 + Records, Rhodesian Chrome,undated + + + + + + 404 + 97 + Records, Rivers and Harbors Act, S 2798,undated + + + + + + 404 + 98 + Records, Salary of Attorney General, S 2673,undated + + + + + + 404 + 99 + Records, School Lunch Program,undated + + + + + + 404 + 100 + Records, Small Business Administration,undated + + + + + + 404 + 101 + Records, Social Security Amendments HR 3153,undated + + + + + + 404 + 102 + Records, Solar Energy, S 3234,undated + + + + + + 404 + 103 + Records, St. Lawrence Seaway, HR 17558,undated + + + + + + 404 + 104 + Records, Subpoenas,undated + + + + + + 404 + 105 + Records, Surface Mining,undated + + + + + + 404 + 106 + Records, Sweden,undated + + + + + + 404 + 107 + Records, Tax Treatment Retired Servicemen,undated + + + + + + 404 + 108 + Records, Crude Feathers and Down, HR 11452,undated + + + + + + 404 + 109 + Records, Synthetic Rutile and Lotteries, HR 11830,undated + + + + + + 404 + 110 + Records, Carbonmethyl Cellulose Salts, HR 12035,undated + + + + + + 404 + 111 + Records, Certain Horses, HR 13631,undated + + + + + + 404 + 112 + Records, Zinc,undated + + + + + + 404 + 113 + Records, Yarns and Silk, HR 7780,undated + + + + + + 404 + 114 + Records, Methanol, HR 11251,undated + + + + + + 404 + 115 + Records, Trade Bill-edited,undated + + + + + + 404 + 116 + Records, U.S.I.A. Authorization,undated + + + + + + 404 + 118 + Records, Vietnam Era Veteran’s Readjustment Assistance,undated + + + + + + 404 + 119 + Records, Tax Bill,undated + + + + + + 404 + 120 + Records, War Powers,undated + + + + + + 404 + 121 + Records, Wild and Scenic Rivers Act, S 2439,undated + + + + + + 404 + 122 + Records, Interest Equalization Tax,undated + + + + + + 404 + 123 + Records, White House Employment,undated + + + + + + 404 + 124 + Records, Al Applegate, Memos to Senator,undated + + + + + + 404 + 125 + Records, Automobile Excise Tax,undated + + + + + + 404 + 126 + Records, Anti-Trust, Pollution,undated + + + + + + 404 + 127 + Records, Busing,undated + + + + + + 404 + 128 + Records, Campaign,undated + + + + + + 404 + 129 + Records, Nixon Impeachment, Resignation,undated + + + + + + 405 + 1 + Records, Rule 22,undated + + + + + + 405 + 2 + Records, Rules Committee,undated + + + + + + 405 + 3 + Records, Rural Electric Cooperative,undated + + + + + + 405 + 4 + Records, Bob Turner Memos,undated + + + + + + 405 + 5 + Records, Public Utilities Financing,undated + + + + + + 405 + 6 + Records, Prisoners of War Committee,undated + + + + + + 405 + 7 + Records, Joint Committee on Printing,undated + + + + + + 405 + 8 + Records, Pollution Material,undated + + + + + + 405 + 9 + Records, Breakdown of Bills Introduced/Co-Sponsored by RPG,undated + + + + + + 405 + 10 + Records, Miscellaneous, 1972,1972 + + + + + + 405 + 11 + Records, Miles, Judge Wendall A,undated + + + + + + 405 + 12 + Records, Minority Business,undated + + + + + + 405 + 13 + Records, Oil Problem,undated + + + + + + 405 + 14 + Records, Impeachment Rules,undated + + + + + + 405 + 15 + Records, Impeachment,undated + + + + + + 405 + 16 + Records, Constitutional Amendment,undated + + + + + + 405 + 17 + Records, Black Caucus,undated + + + + + + 405 + 18 + Records, Clanton, Dave, Memos,undated + + + + + + 405 + 19 + Records, Commemorative Stamp Honoring Pharmacy,undated + + + + + + 405 + 20 + Records, Revenue Sharing,undated + + + + + + 405 + 21 + Records, Senator's Notes on Speech, Special Interest Protection,undated + + + + + + 405 + 22 + Records, News Releases and News Letter,undated + + + + + + 405 + 23 + Records, Congressional Record Highlights,undated + + + + + + 405 + 24 + Records, Agriculture,undated + + + + + + 405 + 25 + Records, Environment,undated + + + + + + 405 + 26 + Records, Labor,undated + + + + + + 405 + 28 + Records, Draft of Orange Book (2 folders),undated + + + + + + 405 + 29 + Records, Draft of Orange Book (2 folders),undated + + + + + + 405 + 30 + Records, Busing Clips,undated + + + + + + 405 + 31 + Records, Busing, Congress,undated + + + + + + 405 + 32 + Records, Kelley Letter Documentation,undated + + + + + + 405 + 33 + Records, Kelley, Busing,undated + + + + + + 405 + 34 + Records, Griffin on Busing,undated + + + + + + 405 + 35 + Records, Platform Committee, Busing Statements,undated + + + + + + 405 + 36 + Records, Civil Rights,undated + + + + + + 406 + 1 + Records, Revenue Sharing, 1972,1972 + + + + + + 406 + 2 + Records, Speeches, Humor,undated + + + + + + 406 + 3 + Records, Speeches, GOP,undated + + + + + + 406 + 4 + Records, Speeches, SALT,undated + + + + + + 406 + 5 + Records, Vandenberg,undated + + + + + + 406 + 6 + Records, Speeches, Current,undated + + + + + + 406 + 7 + Records, Speeches, Economy,undated + + + + + + 406 + 8 + Records, Speeches, Moscow Summit,undated + + + + + + 406 + 9 + Records, Community Schools,undated + + + + + + 406 + 10 + Records, Crime,undated + + + + + + 406 + 11 + Records, Drugs, Alcoholism,undated + + + + + + 406 + 12 + Records, Economy, Griffin,undated + + + + + + 406 + 13 + Records, Peace,undated + + + + + + 406 + 14 + Records, Politics, GOP Platform,undated + + + + + + 406 + 15 + Records, Senate,undated + + + + + + 406 + 16 + Records, Speeches, Griffin, Franklin Fund Raiser, July 18, 1972,1972 + + + + + + 406 + 17 + Records, Notes, Kent County Fair, Aug. 5, 1972,1972 + + + + + + 406 + 18 + Records, Notes, Polish Festival,undated + + + + + + 406 + 19 + Records, Transcripts, Griffin,undated + + + + + + 406 + 20 + Records, Platform Testimony,undated + + + + + + 406 + 21 + Records, South East Asia, Vietnam,undated + + + + + + 406 + 22 + Records, Testimony, Republican National Convention, Aug. 17, 1972,1972 + + + + + + 406 + 23 + Records, Orange Book, Changes to be Made,undated + + + + + + 406 + 24 + Records, Farmington Rally Speech and Notes for Fair,undated + + + + + + 406 + 25 + Records, Latest Version of Orange Book,undated + + + + + + 406 + 26 + Records, American Legion,undated + + + + + + 406 + 27 + Records, Drafts,undated + + + + + + 406 + 28 + Records, Gannett Column, Floor Speech,undated + + + + + + 406 + 29 + Records, Letters,undated + + + + + + 406 + 31 + Records, Busing, Prayer Legislation,undated + + + + + + 406 + 32 + Records, Busing, Ford’s Proposals,undated + + + + + + 406 + 33 + Records, Carter, Foreign Policy,undated + + + + + + 406 + 34 + Records, Carter, Flip-Flops,undated + + + + + + 406 + 35 + Records, Crime, Michigan Statistics, 1976,1976 + + + + + + 406 + 36 + Records, Economy, Budget Impact, Michigan, FY >77,undated + + + + + + 406 + 37 + Records, Economy, Unemployment, Jobs, S 50,undated + + + + + + 406 + 38 + Records, Education, Athletics, Title IX,undated + + + + + + 406 + 39 + Records, Foreign Affairs, Africa, Koehler Papers,undated + + + + + + 406 + 40 + Records, Government, Abortion, Constitutional Amendments,undated + + + + + + 406 + 41 + Records, Government, Primary System, Koehler Paper,undated + + + + + + 406 + 42 + Records, Holmes, Baltimore Case,undated + + + + + + 406 + 43 + Records, Labor, Teamsters and Mafia,undated + + + + + + 406 + 44 + Records, Legislative Assistants, Holmes Memos to Senator,undated + + + + + + 406 + 45 + Records, Legislative Assistants, Senator on Negative Check-Off,undated + + + + + + 406 + 46 + Records, Maritime Issues, RPG Voting Record,undated + + + + + + 406 + 47 + Records, RPG, Bills Introduced and Cosponsored, 1975,1975 + + + + + + 406 + 48 + Records, RPG, Bills Introduced and Cosponsored, 1976,1976 + + + + + + 406 + 49 + Records, RPG, Speaking Engagements, 1976,1976 + + + + + + 406 + 50 + Records, RPG, Interviews,undated + + + + + + 406 + 51 + Records, Senate Business, Committee Structure Reform,undated + + + + + + 406 + 52 + Records, Transportation, Detroit Area Transit Package,undated + + + + + + 406 + 53 + Records, Whip Office, Pay Scales,undated + + + + + + 407 + 1 + Records, Index, Key to Boxes, Whip Office Files,undated + + + + + + 407 + 2 + Records, Miscellaneous, Cecil's Files,undated + + + + + + 407 + 3 + Records, Assistant Whip File,undated + + + + + + 407 + 4 + Records, Record Votes, Weekly, 94th Congress,undated + + + + + + 407 + 5 + Records, Record Votes, Weekly, 1975,1975 + + + + + + 407 + 6 + Records, Correspondence. Originated in Whip Office, 1976,1976 + + + + + + 407 + 7 + Records, Weekly Mail Counts, 1976,1976 + + + + + + 407 + 8 + Records, Weekly Mail Counts, 1975,1975 + + + + + + 407 + 9 + Records, Memos Regarding Appointments, Jan. 1976,1976 + + + + + + 407 + 10 + Records, Congressional Record Highlights, 1975,1975 + + + + + + 407 + 11 + Records, President's Veto Message, HR 5247, 2/13/76,1976 + + + + + + 407 + 12 + Records, Packwood Amendment, FEC, S 3065,undated + + + + + + 407 + 13 + Records, Biography, 1975,1975 + + + + + + 407 + 14 + Records, Letters to Election Winners/Losers,undated + + + + + + 407 + 15 + Records, News Releases, 1976,1976 + + + + + + 407 + 17 + Records, News Releases, 1975,1975 + + + + + + 407 + 18 + Records, Budget, 1975,1975 + + + + + + 407 + 19 + Records, Newsletters, 1976,1976 + + + + + + 407 + 20 + Records, Bills Introduced by RPG, 94th Congress, 2nd Session,undated + + + + + + 407 + 21 + Records, Leadership Role,undated + + + + + + 407 + 22 + Records, Ask the Senator,undated + + + + + + 407 + 23 + Records, RPG Speech to Michigan Oil and Gas Association – 5/23/75,1975 + + + + + + 407 + 24 + Records, Letter on a Good Speech,undated + + + + + + 407 + 25 + Records, Griffin Washington Report,undated + + + + + + 407 + 26 + Records, Bills Introduced in 94th Congress,undated + + + + + + 407 + 27 + Records, Bills Introduced in 93rd Congress, 1st and 2nd Sessions, 1973, 1974,1973, 1974 + + + + + + 407 + 28 + Records, Bills Introduced in 92nd Congress,undated + + + + + + 407 + 29 + Records, Bills Introduced in 91st Congress, 1st session,undated + + + + + + 407 + 30 + Records, Press Releases and Statements, 1975,1975 + + + + + + 407 + 31 + Records, Secretary of Agriculture, S 1617,undated + + + + + + 407 + 32 + Records, Appropriations Bills,undated + + + + + + 407 + 33 + Records, Amend Title 39, U.S. Code, HR 2559,undated + + + + + + 407 + 34 + Records, Cloture, Rule 22,undated + + + + + + 407 + 35 + Records, Broadcasting Legislation Material,undated + + + + + + 407 + 36 + Records, Consumer Agency Legislation, S 1177, HR 10335,undated + + + + + + 407 + 37 + Records, Federal Rules of Criminal Procedure Amend.,undated + + + + + + 407 + 38 + Records, Diego Garcia, S RES 160,undated + + + + + + 407 + 39 + Records, Detroit School Desegregation,undated + + + + + + 407 + 40 + Records, Draft Reform Legislation,undated + + + + + + 407 + 41 + Records, Education, Appropriations,undated + + + + + + 407 + 42 + Records, Repeal of Excise Tax on Trucks, Etc.,undated + + + + + + 407 + 43 + Records, DES,undated + + + + + + 407 + 44 + Records, Authorizing Appropriations for Energy Research for 1976,1976 + + + + + + 407 + 45 + Records, Excise Tax Repeal, S 974,undated + + + + + + 407 + 46 + Records, Emergency Farm Bill, HR 4296,undated + + + + + + 407 + 47 + Records, FEA, Canadian Crude Oil,undated + + + + + + 407 + 48 + Records, Foreign Relations Appropriations, S 1517,undated + + + + + + 407 + 49 + Records, Griffin Pension Bill,undated + + + + + + 407 + 50 + Records, Gun Control Legislation 1975,1975 + + + + + + 407 + 51 + Records, Health Care Legislation,undated + + + + + + 407 + 52 + Records, Housing Legislation, 1975,1975 + + + + + + 407 + 53 + Records, Indian Legislation Material,undated + + + + + + 407 + 54 + Records, Meat Inspection Act,undated + + + + + + 407 + 56 + Records, National Guard, Civil Service Retirement,undated + + + + + + 407 + 57 + Records, National School Lunch Act, Child Nutrition Act of 1966,1966 + + + + + + 407 + 58 + Records, Natural Gas Emergency Act, S 2310,undated + + + + + + 407 + 59 + Records, National Labor Relations Board,undated + + + + + + 407 + 60 + Records, Mobile Home Loan Ceilings, S 848,undated + + + + + + 407 + 61 + Records, National Productivity and Quality of Working Live, S 2195,undated + + + + + + 407 + 62 + Records, Oil Import Tariff, HR 1767,undated + + + + + + 407 + 63 + Records, Parole Commission Act, HR 5727,undated + + + + + + 407 + 64 + Records, Public Works Employment Act of 1975, S 1587,1975 + + + + + + 407 + 65 + Records, Railway Legislation,undated + + + + + + 407 + 66 + Records, Revenue Sharing,undated + + + + + + 407 + 67 + Records, Sanguine,undated + + + + + + 407 + 68 + Records, Busing, 1976,1976 + + + + + + 407 + 69 + Records, Second Supplemental Appropriations, HR 5899,undated + + + + + + 407 + 70 + Records, Securities Acts Amendment, S 249,undated + + + + + + 407 + 71 + Records, Surface Mining, S 7,undated + + + + + + 407 + 72 + Records, Department of State, Justice, and Commerce, HR 8121,undated + + + + + + 407 + 73 + Records, Tax Reduction Act of 1975, HR 2166,1975 + + + + + + 407 + 74 + Records, Vietnam Contingency, S 1484,undated + + + + + + 407 + 75 + Records, Veterans Administration Physician Pay Comparability Act,undated + + + + + + 407 + 76 + Records, Wage and Price Stability, S 409,undated + + + + + + 407 + 77 + Records, To Establish a Select Committee, S Res 302,undated + + + + + + 407 + 78 + Records, Defense Production Act of 1975, S 1537,undated + + + + + + 407 + 79 + Records, Veto to Override Veto of Appropriations of Education,undated + + + + + + 407 + 80 + Records, 200 Mile Limit, S 961,undated + + + + + + 407 + 81 + Records, James McClure,undated + + + + + + 407 + 82 + Records, Debt Ceiling, RPG Statement,undated + + + + + + 407 + 83 + Records, Carry Back Chrysler, Talking Points,undated + + + + + + 407 + 84 + Records, Dropping the Torch, Mar. 26, 1975,1975 + + + + + + 407 + 85 + Records, Speech, Scottish Rite Masons Reunion, April 26, 1975,1975 + + + + + + 407 + 86 + Records, Consumer Advocacy Bill,undated + + + + + + 407 + 87 + Records, Van Dam Memo, Federal Judge, Eastern District,undated + + + + + + 407 + 88 + Records, Durkin-Wyman Contest, Pleadings and Opinions, 1974,1974 + + + + + + 407 + 89 + Records, Durkin-Wyman Contest, 1974,1974 + + + + + + 407 + 90 + Records, Agnew,undated + + + + + + 407 + 91 + Records, Election Reform,undated + + + + + + 407 + 92 + Records, Campaign Spending,undated + + + + + + 407 + 93 + Records, News Conferences, Griffin,undated + + + + + + 407 + 95 + Records, Year End Report,undated + + + + + + 407 + 96 + Records, Whip Notebook,undated + + + + + + 407 + 97 + Records, Robert P. Griffin,undated + + + + + + 407 + 98 + Records, Hugh Scott,undated + + + + + + 407 + 99 + Records, Priorities,undated + + + + + + 407 + 100 + Records, China Background,undated + + + + + + 407 + 101 + Records, Pakistan,undated + + + + + + 407 + 102 + Records, RPG News,undated + + + + + + 407 + 103 + Records, Lottery Operations, Michigan,undated + + + + + + 407 + 104 + Records, McNamara Building,undated + + + + + + 407 + 105 + Records, Malpractice Insurance,undated + + + + + + 407 + 106 + Records, Mansfield, Mike - Tribute-Retirement,undated + + + + + + 407 + 107 + Records, Masonic Order Problem,undated + + + + + + 407 + 108 + Records, Photographs,undated + + + + + + 407 + 109 + Records, Political File,undated + + + + + + 407 + 110 + Records, Subcommittee on Privileges and Elections,undated + + + + + + 407 + 111 + Records, Republican Policy Committee,undated + + + + + + 407 + 112 + Records, Republican National Committee,undated + + + + + + 407 + 113 + Records, Bilateral Commercial Agreement Between U.S. and Romania - S Con. Res. 35,undated + + + + + + 407 + 114 + Records, Sault,undated + + + + + + 407 + 115 + Records, Schoener, Judge, Memos to Senator Scott,undated + + + + + + 407 + 116 + Records, Senatorial Requests,undated + + + + + + 407 + 117 + Records, Senator's Memos,undated + + + + + + 407 + 118 + Records, Saint Lawrence Seaway Development Corp.,undated + + + + + + 407 + 119 + Records, Staff Manual, 1972,1972 + + + + + + 407 + 120 + Records, Telecommunications, 1975,1975 + + + + + + 407 + 121 + Records, Toxic Substances,undated + + + + + + 407 + 122 + Records, Vietnam Trip, 1975,1975 + + + + + + 407 + 123 + Records, Vice President,undated + + + + + + 407 + 124 + Records, Vietnam,undated + + + + + + 407 + 125 + Records, Vice President Constitutional Amendment,undated + + + + + + 407 + 126 + Records, Voting Rights Act Extension, HR 6219,undated + + + + + + 407 + 127 + Records, Wage and Price Controls,undated + + + + + + 407 + 128 + Records, Woolfenden, Energy Conservation Devices,undated + + + + + + 407 + 129 + Records, Zinc Duty, HR 7716,undated + + + + + + 407 + 130 + Records, Cecil Holland Memos, 1968-1975,1968-1975 + + + + + + 407 + 131 + Records, Personal Response 1973-1974,1973-1974 + + + + + + 407 + 132 + Records, Auto Standards Moratorium,undated + + + + + + 407 + 134 + Records, Biography,undated + + + + + + 407 + 135 + Records, Cambodia,undated + + + + + + 407 + 136 + Records, Capitol Security,undated + + + + + + 407 + 137 + Records, Colleague,undated + + + + + + 407 + 138 + Records, Commerce Committee, 1976,1976 + + + + + + 407 + 139 + Records, Department of Defense,undated + + + + + + 407 + 140 + Records, Dow Corning,undated + + + + + + 407 + 141 + Records, Drug Enforcement,undated + + + + + + 407 + 142 + Records, Documents (Valuable),undated + + + + + + 407 + 143 + Records, Emission Control,undated + + + + + + 407 + 144 + Records, Economy,undated + + + + + + 407 + 145 + Records, FAA, Michigan Airports,undated + + + + + + 407 + 146 + Records, Federal Aid to States,undated + + + + + + 407 + 147 + Records, Federal Resources for Great Lakes States, Milliken Letter,undated + + + + + + 407 + 148 + Records, Federal Prisons,undated + + + + + + 407 + 149 + Records, Federal Power Commission,undated + + + + + + 407 + 150 + Records, Focus Hope,undated + + + + + + 407 + 151 + Records, Gerald Ford,undated + + + + + + 407 + 152 + Records, Foreign Relations Committee,undated + + + + + + 407 + 153 + Records, Phil Hart, Tribute,undated + + + + + + 407 + 154 + Records, Hoffa, Teamsters,undated + + + + + + 407 + 155 + Records, Dave Kendall,undated + + + + + + 407 + 156 + Records, Kincheloe Air Force Base Closing, 1976,1976 + + + + + + 407 + 157 + Records, LEAA Funding, 1976,1976 + + + + + + 407 + 158 + Records, Lebanon, 1976,1976 + + + + + + + Senator Robert P. Griffin Papers Collection - Series #11, Books (4.5 cubic feet) - 1959‑1960, 1968, 1973‑1974, and undated) + + + + 408 + 1 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 2 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 3 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 4 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 5 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 6 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 7 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 8 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 9 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 10 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 11 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 12 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 13 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 14 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 15 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 16 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 17 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 18 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 19 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 20 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 21 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 23 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 24 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 25 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 26 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 27 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 28 + Records, Presidential Campaign Activities, Books 3-5, 7-26 (28 volumes),undated + + + + + + 408 + 29 + Records, Presidential Campaign Activities, Legal Documents, Parts 1-2 (2 volumes),undated + + + + + + 408 + 30 + Records, Presidential Campaign Activities, Legal Documents, Parts 1-2 (2 volumes),undated + + + + + + 408 + 31 + Records, Presidential Campaign Activities, Indexes (1 volume),undated + + + + + + 408 + 32 + Records, Presidential Campaign Activities, Final Report (1 volume),undated + + + + + + 408 + 33 + Records, Presidential Campaign Activities, Impeachment of Richard M. Nixon - Report (House of Representatives) (1 volume),undated + + + + + + 409 + 1 + Records, Philip A. Hart,undated + + + + + + 409 + 2 + Records, Patrick V. McNamara,undated + + + + + + 409 + 3 + Records, Nomination of Nelson A. Rockefeller of NY to be Vice-President of U.S. Senate Report, 1974,1974 + + + + + + 409 + 4 + Records, Nomination of Gerald R. Ford of MI to be Vice-President of U.S. Senate Report, 11/23/73,1973 + + + + + + 409 + 5 + Records, Nomination of Gerald R. Ford of MI to be Vice-President of U.S. Senate Report, 11/1,5,7,14/73,1973 + + + + + + 409 + 6 + Records, Gerald R. Ford,undated + + + + + + 409 + 7 + Records, John Bonifas Bennett,undated + + + + + + 410 + 1 + Records, Hearings 1959, volumes 1-2, Parts 1-5 (2 volumes),1959 + + + + + + 410 + 2 + Records, Hearings 1959, volumes 1-2, Parts 1-5 (2 volumes),1959 + + + + + + 410 + 3 + Records, Hearings 1959-60 (3 volumes),1959-1960 + + + + + + 410 + 5 + Records, Hearings 1959-60 (3 volumes),1959-1960 + + + + + + 410 + 6 + Records, Hearings, Nomination of Abe Fortas, 1968,1968 + + + + + + 411 + 1 + Records, Statement of Information, Books I-VII, Part 2 (18 volumes),undated + + + + + + 411 + 2 + Records, Statement of Information, Books I-VII, Part 2 (18 volumes),undated + + + + + + 411 + 3 + Records, Statement of Information, Books I-VII, Part 2 (18 volumes),undated + + + + + + 411 + 4 + Records, Statement of Information, Books I-VII, Part 2 (18 volumes),undated + + + + + + 411 + 5 + Records, Statement of Information, Books I-VII, Part 2 (18 volumes),undated + + + + + + 411 + 6 + Records, Statement of Information, Books I-VII, Part 2 (18 volumes),undated + + + + + + 411 + 7 + Records, Statement of Information, Books I-VII, Part 2 (18 volumes),undated + + + + + + 411 + 8 + Records, Statement of Information, Books I-VII, Part 2 (18 volumes),undated + + + + + + 411 + 9 + Records, Statement of Information, Books I-VII, Part 2 (18 volumes),undated + + + + + + 411 + 10 + Records, Statement of Information, Books I-VII, Part 2 (18 volumes),undated + + + + + + 411 + 11 + Records, Statement of Information, Books I-VII, Part 2 (18 volumes),undated + + + + + + 411 + 12 + Records, Statement of Information, Books I-VII, Part 2 (18 volumes),undated + + + + + + 411 + 13 + Records, Statement of Information, Books I-VII, Part 2 (18 volumes),undated + + + + + + 411 + 14 + Records, Statement of Information, Books I-VII, Part 2 (18 volumes),undated + + + + + + 411 + 15 + Records, Statement of Information, Books I-VII, Part 2 (18 volumes),undated + + + + + + 411 + 16 + Records, Statement of Information, Books I-VII, Part 2 (18 volumes),undated + + + + + + 411 + 17 + Records, Statement of Information, Books I-VII, Part 2 (18 volumes),undated + + + + + + 411 + 18 + Records, Statement of Information, Books I-VII, Part 2 (18 volumes),undated + + + + + + 412 + 1 + Records, Statement of Information, Books VII, Part 3-XI (7 volumes),undated + + + + + + 412 + 3 + Records, Statement of Information, Books VII, Part 3-XI (7 volumes),undated + + + + + + 412 + 4 + Records, Statement of Information, Books VII, Part 3-XI (7 volumes),undated + + + + + + 412 + 5 + Records, Statement of Information, Books VII, Part 3-XI (7 volumes),undated + + + + + + 412 + 6 + Records, Statement of Information, Books VII, Part 3-XI (7 volumes),undated + + + + + + 412 + 7 + Records, Statement of Information, Books VII, Part 3-XI (7 volumes),undated + + + + + + 412 + 8 + Records, Appendices I-IV (4 volumes),undated + + + + + + 412 + 9 + Records, Appendices I-IV (4 volumes),undated + + + + + + 412 + 10 + Records, Appendices I-IV (4 volumes),undated + + + + + + 412 + 11 + Records, Appendices I-IV (4 volumes),undated + + + + + + 412 + 12 + Records, Comparison of White House and Judiciary Transcripts (1 volume),undated + + + + + + 412 + 13 + Records, Testimony of Witnesses, Books I-III (3 volumes),undated + + + + + + 412 + 14 + Records, Testimony of Witnesses, Books I-III (3 volumes),undated + + + + + + 412 + 15 + Records, Testimony of Witnesses, Books I-III (3 volumes),undated + + + + + + 412 + 16 + Records, Errata (1 volume),undated + + + + + + 412 + 17 + Records, Background Memorandum (1 volume),undated + + + + + + 412 + 18 + Records, Transcripts of Eight Recorded Presidential Conversations (1 volume),undated + + + + + + 412 + 19 + Records, Brief on Behalf of the President of the United States (1 volume),undated + + + + + + 412 + 20 + Records, Summary of Information (1 volume),undated + + + + + + 412 + 21 + Records, Debate on Articles of Impeachment (1 volume),undated + + + + + + 412 + 22 + Records, Impeachment of Richard M. Nixon, President of the U.S. (1 volume),undated + + + + + + + Senator Robert P. Griffin Papers Collection - Series #12, Memorabilia (3 cubic feet) and one portrait - 1956‑1978, and undated) + + + + 413 + 1 + Records, Plaque, Kennel Review Magazine,undated + + + + + + 413 + 2 + Records, Plaque, Central Michigan University,undated + + + + + + 413 + 3 + Records, Plaque, Tom O'Brien Award, 1959,1959 + + + + + + + 413 + 4 + Records, Plaque, NAACP, 1972,1972 + + + + + + 413 + 5 + Records, Statue, Watchdog of Treasury, 1969-1970,1969-1970 + + + + + + 413 + 6 + Records, Statue, Watchdog of Treasury, 1963-66,1963-1966 + + + + + + 413 + 7 + Records, Statue, Watchdog of Treasury, 1978,1978 + + + + + + 413 + 8 + Records, Statue, PGA Man of the Year, 1972,1972 + + + + + + 413 + 9 + Records, Statue, 4-H,undated + + + + + + 413 + 10 + Records, Statue, Temple Medal from Detroit Jewish News,undated + + + + + + 414 + 1 + Records, Plaque, Americans for Constitutional Action, 1957-76,1957-1976 + + + + + + 414 + 2 + Records, Plaque, Guest Conductor WGMS, 1975,1957 + + + + + + 414 + 3 + Records, Plaque, The American Legion, 1978,1978 + + + + + + 414 + 4 + Records, Plaque, Greenfield Village, Henry Ford Museum, 1978,1978 + + + + + + 414 + 5 + Records, Plaque, Genesee County Sewage Disposal System, 1973,1973 + + + + + + 414 + 6 + Records, Plaque, Veterans of Foreign Affairs, 1978,1978 + + + + + + 415 + 1 + Records, Plaque, Gospel Film, Inc. AThe Penalty of Leadership@, undated,undated + + + + + + 415 + 2 + Records, Plaque, U.S. Senate Bicentennial, 1978,1978 + + + + + + 415 + 3 + Records, Plaque, Seal of Michigan from H.J. Humphrey, 1978,1978 + + + + + + 415 + 4 + Records, Plaque, Detroit Personnel Management Association, 1977,1977 + + + + + + 415 + 5 + Records, Plaque, Congressional Varsity Award, 1957,1957 + + + + + + 415 + 6 + Records, Plaque, 4-H Citizenship Pledge, 1977,1977 + + + + + + 415 + 7 + Records, Plaque, Americans for Constitutional Action, 1976,1976 + + + + + + 415 + 8 + Records, Plaque, College Football Centennial Award, 1969,1969 + + + + + + + Senator Robert P. Griffin Papers Collection - Series #13, Exhibits Series, (.25 cubic feet) - undated) + + + + 417 + 1 + Records, Duplicates to be used for exhibit purposes,undated + + + + + + + Senator Robert P. Griffin Papers Collection - Series #14, Later Additions (2 cubic feet) - undated, 1966, 2015 + + + + 418 + 1 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 1-Introduction, 10/1968,undated + + + + + + 418 + 2 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 2-How It Began, 6-12/1968, undated,undated + + + + + + 418 + 3 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 3-The Controversy Grows, 6-9/1968; [no Chapt. 4],undated + + + + + + 418 + 4 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 5-Presenting the Case, 7/1968,undated + + + + + + 418 + 5 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 6-Fortas As A Witness, 10/1965-11/1969, undated,undated + + + + + + 418 + 6 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 7-Non-judicial Roles and History, 7-8/1968,undated + + + + + + 418 + 7 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 8-The Warren Backlash, 6-10/1968, undated,undated + + + + + + 418 + 8 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 9-Pornography Becomes An Issue, 8/1968-4/1969,undated + + + + + + 418 + 9 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 10-Opposition Hardens, Fortas’ Background, “Curious Yellow”, 1965-2/1969, undated,undated + + + + + + 418 + 10 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 11-The Fortas Seminar Fee, 1966-4/1969,undated + + + + + + 418 + 11 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 12-Other Unanswered Questions, 3/1962-9/1968, undated,undated + + + + + + 419 + 1 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 13-Professional Qualifications and the A.B.A., 1964-3/1969, undated (folder 1 of 2),undated + + + + + + 419 + 2 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 13-Professional Qualifications and the A.B.A., 1964-3/1969, undated (folder 2 of 2),undated + + + + + + 419 + 3 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 14-Thornberry: The Forgotten Nominee, 1961-7/1968, undated,undated + + + + + + 419 + 4 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 15-Toward A Showdown, 9/1968,undated + + + + + + 419 + 5 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 16-Floor Debate: Part I, 1943-1969, undated,undated + + + + + + 419 + 6 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 17-Floor Debate: Part II, 9-10/1968, undated,undated + + + + + + 419 + 7 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 18-Withdrawl of Fortas Nomination, 9-12/1968; [no Chapt. 19],undated + + + + + + 419 + 8 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 20-Epilogue (The Resignation), 4-6/1969,undated + + + + + + 419 + 9 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 20-Epilogue (The Resignation), Fortas-Wolfson Releases, 5/1969,undated + + + + + + 419 + 10 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 20-Epilogue (The Resignation), Fortas-Wolfson Editorials, 12/1968-5/1969, undated,undated + + + + + + 419 + 11 + Records, Abe Fortas Research Materials, arranged by Sen. Griffin into chapters: Chapt. 20-Epilogue (The Resignation), Fortas-Wolfson Griffin Clippings, 5-8/1969,undated + + + + + + 419 + 12 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Ann Arbor (Mich.) Obscene Film Articles, 1/1967-7/1968,undated + + + + + + 419 + 13 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Cecil’s Fortas Draft (1st Draft of Chapts. 10-14], undated,undated + + + + + + 419 + 14 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Columns, Favorable, 7-9/1968, undated,undated + + + + + + 420 + 1 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Correspondence re: Book, 12/1968-12/1969,undated + + + + + + 420 + 2 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Editorials-Anti-semitism, 7-9/1968, undated,undated + + + + + + 420 + 3 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Editorials-Favorable, Michigan, 6-10/1968, undated,undated + + + + + + 420 + 4 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Editorials-Neutral, Michigan, 6-10/1968,undated + + + + + + 420 + 5 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Editorials-Unfavorable, Michigan, 7-12/1968,undated + + + + + + 420 + 6 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Editorials-Hard Times, No. 36, 6/16-23/1969,undated + + + + + + 420 + 7 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Letters to Editor, 9-10/1968, undated,undated + + + + + + 420 + 8 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Miscellaneous Materials, 1953-1990, undated,undated + + + + + + 420 + 9 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Miscellaneous re: Fortas, Judicial selection, Brown vs. Bd. Of Education, 1968-1994,undated + + + + + + 420 + 10 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Newspaper Clippings, Related Materials, 7-9/1968 (Folder 1 of 4),undated + + + + + + 420 + 11 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Newspaper Clippings, Related Materials, 7-9/1968 (Folder 2 of 4),undated + + + + + + 420 + 12 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Newspaper Clippings, Related Materials, 7-9/1968 (Folder 3 of 4),undated + + + + + + 420 + 13 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Newspaper Clippings, Related Materials, 7-9/1968 (Folder 4 of 4),undated + + + + + + 421 + 1 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Newspaper Clippings, Related Materials, 10-12/1968, undated (Folder 1 of 2),undated + + + + + + 421 + 2 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Newspaper Clippings, Related Materials, 10-12/1968, undated (Folder 2 of 2),undated + + + + + + 421 + 3 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Newsweek, 5/19/1969-Fortas on Cover,undated + + + + + + 421 + 4 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Nominations of Abe Fotras and Homer Thornberry: Hearings Before the Committee on the Judiciary, U.S. Senate…, 9/13, 16/1968,undated + + + + + + 421 + 5 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Senate Reprints, Chronology, AEP Index, 6-10/1968, undated,undated + + + + + + 421 + 6 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Supreme Court Editorials, Favorable, 6-10/1968,undated + + + + + + 421 + 7 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Supreme Court Editorials, Neutral, 7-10/1968,undated + + + + + + 421 + 8 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Supreme Court Editorials, Unfavorable, 6-10/1968, undated,undated + + + + + + 421 + 9 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Supreme Court Historical Society, The Jewish Justices of the Supreme Court Revisited: Brandeis to Fortas, 1994 (special edition of the Journal of Supreme Court History),undated + + + + + + 421 + 10 + Records, Abe Fortas Research Materials, arranged alphabetically by topic: Vacancy Issue, 6-9/1968, undated,undated + + + + + + 422 + 1 + Records, Senate Historical Office, Negatives, Sen. R. Griffin…and Gov. G. Romney, 1967 (18); Gov. Romney and Griffin staffer, 1970 (2) ,1967, 1970 + + + + + + 422 + 2 + Records, Senate Historical Office, Negatives, Sen. R. Griffin…“Birthday” pictures with Senators, 1971 (19),1971 + + + + + + 422 + 3 + Records, Senate Historical Office, Negatives, Sen. R. Griffin…Candids at desk for newsletter, 1971 (17),1971 + + + + + + 422 + 4 + Records, Senate Historical Office, Negatives, Sen. R. Griffin…Committees, 1966-1967, 1969-1970 (18),1966-1967, 1969-1970 + + + + + + 422 + 5 + Records, Senate Historical Office, Negatives, Sen. R. Griffin…Dedicates Vandy Room, 1967 (7), In memory of Sen. Vandenberg,1967 + + + + + + 422 + 6 + Records, Senate Historical Office, Negatives, Sen. R. Griffin…Family, 1966 (5),1966 + + + + + + 422 + 7 + Records, Senate Historical Office, Negatives, Sen. R. Griffin…Great Lakes Hearing, 1971 (5),1971 + + + + + + 422 + 8 + Records, Senate Historical Office, Negatives, Sen. R. Griffin…Portraits, 1966 (53),1966 + + + + + + 422 + 9 + Records, Senate Historical Office, Negatives, Sen. R. Griffin…Portraits, 1967, 1969, 1971 (12),1967, 1969, 1971 + + + + + + 423 + 1 + Records, Senate Historical Office, Negatives, Sen. R. Griffin…Press Conferences, 1966, 1969-1970 (21),1966, 1969-1970 + + + + + + 423 + 2 + Records, Senate Historical Office, Negatives, Sen. R. Griffin…Republican Policy Luncheons, 1966, 1970-1971 (20),1966, 1970-1971 + + + + + + 423 + 3 + Records, Senate Historical Office, Negatives, Sen. R. Griffin…With Other Senators, 1966 (14),1966 + + + + + + 423 + 4 + Records, Senate Historical Office, Negatives, Sen. R. Griffin…With Other Senators, 1967 (7), 1969 (4),1967, 1969 + + + + + + 423 + 5 + Records, Senate Historical Office, Negatives, Sen. R. Griffin…With Other Senators, 1970 (5), 1971 (2),1970-1971 + + + + + + 423 + 6 + Records, Senate Historical Office, Negatives, Sen. R. Griffin…With President Eisenhower at Gettysburg, 1966 (2),1966 + + + + + + 423 + 7 + Records, Senate Historical Office, Negatives, Sen. R. Griffin…With Red Skelton, 1967; V.P. Agnew’s door, 1969; President Nixon, 1970; His Holiness Pope Paul VI, 1970,1967, 1969-1970 + + + + + + 423 + 8 + Records, Senate Historical Office, Negatives, Sen. R. Griffin…With Staffers and Pages, 1966, 1970-1971 (4),1966, 1970-1971 + + + + + + 423 + 9 + Records, Obituaries, Robert P. Griffin, 2015,2015 + + + + + +
    +
    diff --git a/sample-ead/clarke/centralmichiganuniversityUComm2018additiontemplateJune.xml b/sample-ead/clarke/centralmichiganuniversityUComm2018additiontemplateJune.xml new file mode 100644 index 0000000..801afb3 --- /dev/null +++ b/sample-ead/clarke/centralmichiganuniversityUComm2018additiontemplateJune.xml @@ -0,0 +1,34805 @@ + + + + + ehll--centralmichiganuniversityUComm2018addition + + + Finding Aid for +Central Michigan University Communications (UComm) Collection, 1946, 2018, and undated + + Collection processed and finding aid created by +many students, Marian Matyn + + + Clarke Historical Library + +2020 + + + + + Encoded finding aid created by +Marian Matyn, +2020 + + The finding aid is written in English + + + + + + Clarke Historical LibraryCentral Michigan University + Finding aid for +Central Michigan University Communications (UComm) Collection, 1946, 2018, and undated + + Finding aid created by +Lindsey Rogers, Brad Davis, typed by Clarissa Klein, Haley Schleicher, Michael Watts, M. Matyn, March 2016-March 2020 + + + + + + + + Central Michigan University. University Communications. + + +Central Michigan University Communications (UComm) Collection, + +1946, 2018, and undated, + + + + +184 cubic foot (in 193 boxes, 1 Oversized folder) and 1.2 TB digital data + + + +MSS. + + The material is in English + + +Central Michigan University Communications (UComm) Collection, 1946, 2018, and undated + + + Clarke Historical Library, Central Michigan University + + + + + +

    +Acc# 75401 +

    +
    + +

    +Central Michigan University Communications (UComm) Collection, 1946, 2018, and undated is open for research. +

    +
    + +

    +CMU except for images by Robert Barclay and Peggy Brisbane. +

    +
    + +

    +Central Michigan University Communications (UComm) Collection, 1946, 2018, and undated, Folder # , Box #, Clarke Historical Library, Central Michigan University +

    +
    +
    + +

    Organizational History:

    +

    Central Michigan University (CMU) News Bureau was established in 1946. It was renamed Information Services in 1955/1956. In 1986/1987, it merged with Information Systems/Systems Analysis. By the 1990s it was known as CMU Media Relations, and by 2008 as CMU Public Relations and Marketing (PRM). As CMU’s public relations unit, PRM was responsible for generating and controlling CMU logos, watermarks, news, images of CMU students, faculty, staff, alumni, campus, events and organizations, and communications in multiple formats. Renee T. Walker was the associate VP for PRM, from 2008 to March 2012 when the name changed to University Communications, or UComm. The use of a new, standardized CMU-wide website as a primary source for student recruitment began when Walker hired a vendor which created a completely new, reorganized plan for all CMU websites. This new plan was implemented by all units during the first half of 2013. The websites then remained largely unchanged for several years, which caused challenges throughout campus. Sherry Knight served as UComm VP, 2012-2019. CMU President Bob Davies named John Veilleux as UComm VP and chief marketing officer, effective January 8, 2020. (This information is from UComm’s website, accessed in March 2020 and collections in the Clarke.)

    +

    Biography:

    +

    Most of the images were taken by Robert Barclay who was the official CMU photographer, 1980-2013, and his wife, photographer Peggy Brisbane, who also took many images for CMU, 1985-2013. Both retired in 2013. From 2013 to 2016 Steve Jessmore was the main CMU photographer. There were also CMU student photographers who worked with them. In 2016 Adam Miedma was the UComm’s videographer

    +
    + +

    Arrangement is by the original order of each series, which varies from one series to another.

    +
    + +

    The Collection, 1946, 2018, and undated, 184 cubic foot (in 193 boxes, 1 Oversized folder) and an additional 1.2 TB of digital data beyond the digital content in the boxes, includes thirty-five series and subseries of publications and audiovisual materials, created and collected by Central Michigan University (CMU) University Communications (UComm) and its predecessor organizations. This is one of multiple donations/transfers of materials from UComm and its predecessor organizations to the Clarke. The collection is incomplete and ongoing and in good physical condition. Arrangement is by the original order of each series, which varies from one series to another.

    +

    The collection document CMU students, faculty, staff, administrators, alumni, campus, events and organizations. The original names and order for each series, which varies from one series to another, was retained as much as possible, with slight modifications to assist the researcher. Formats in the collection include: paper newsletters and inventories, note cards, negatives, photographs, some of which are on foamcor board or matted, proof, contact or galley sheets, digital images on CDs and prints of digital images, color slides, and video recordings on BetacamSP, Ampex UMaticSP microcassettes, VHS videotapes, and DVDs. Many series are a mixture of paper, photographic and digital formats. The workstation uses multiple digital software formats including microworkbk, .tif, .gif, and .mov. The DVDs include .mov or quicktime files, can be accessed using a DVD player and VLC media player software. CDs include .tif, .gif, and .jpg files. There is a microcassette recorder to access the microcassettes.

    +

    The boxes in each series, listed below, are not all physically shelved in order or next to each other due to how they were moved into the Clarke from UComm. They are listed in the Box and Folder Listing in the order in which they are shelved.

    +

    Series Description:

    +

    CDs/DVDs. This series, 1 cubic foot (1 box), 2003, 2011 and undated, is completely CDs and DVDs. They were originally packed together in multiple box lids. The series is color images or recordings of CMU people, places and events. The series is organized in chronologically by year and then alphabetically by description. Undated CDs/DVDs are at the end of the box, in alphabetical order by description. The DVDs throughout the collection can be accessed using a DVD player and VLC media player software, some use .mov or quicktime files. CDs include .tif, .gif, and .jpg files.

    +

    CMU News This series, 5 cubic feet, 2003-2005, is a CMU. UComm newsletter, which continues its predecessor series, News. CMU News series is organized by publication number and date. Boxes 60-63.

    +

    Digital Image Database Lists. This series, .5 cubic foot (in 1 box) includes 4 folders of database lists, 1997-2012. Box #191. These lists do not seem to match the digital information in the collection on DVD/CDs/ or in the workstation. It likely matches digital information retained in 2020 by UComm.

    +

    Faculty News Releases. Faculty News Releases. This series, 4 cubic feet, undated, is mostly news released by CMU and other sources about CMU faculty with a few folders of prominent CMU graduates and organizations. It is organized roughly alphabetically by surname. While materials inside folders are dated, the folders are undated. Boxes 49-52.

    +

    Headshots/Mugshots. There are three subseries to this series: Historic mugshots, small headshots and outdated headshots or individual portraits of CMU faculty, emeritus faculty, staff, sometimes including department name, and some CMU students or non-CMU speakers, Michigan people, or CMU topics, there is sometimes description such as valedictorian and homecoming queen and a year. They total 11 cubic feet, 1950s-1970s, and undated.

    +

    Historic mugshots. This series, 2 cubic feet, 1950s-1970s, and undated. Most photographs are black and white, 4x5 inches or smaller. Mug shots are often in individual original envelopes, although some envelopes include multiple images. They are organized alphabetically by surname or topic. (See also its descendant series, small headshots.) While materials inside folders may be dated, some folders are undated. Boxes 16 and 79.

    +

    Headshots, outdated. This series, 4 cubic feet, undated, is the first subseries continuing Historic Mugshots. It is organized alphabetically by surname or topic. As headshots became outdated, they were sorted into this series, while current headshots became the Small headshots series. While materials inside folders may be dated, the folders are undated. Boxes 93-96.

    +

    Small headshots. This series, 5 cubic feet, undated, is the more current Headshots images. It is a continuation of Historic mugshots and Headshots, but most of the images are smaller than those found in the earlier subseries. It is organized alphabetically by surname or topic. While materials inside folders may be dated, the folders are undated. Boxes 87-91. Box 91 also includes some Miscellaneous.

    +

    Information Services News. This series, 6 cubic feet, 1979-1997, is a newsletter which was published by UComm’s predecessor unit, CMU. Information Services. It is organized by publication number and chronologically by year. Boxes 42-47.

    +

    Microcassettes. This series includes 1 cubic foot (1 box) of Ampex UMaticSP microcassettes, 1998, 2016. They are packed into three box lids within the box, and organized in numerical order according to their labels, which is mostly chronological. The few without description are dated and are located at the end of the Box Lid #3. Only microcassette #740 has a partially illegible description. The series is color recordings of CMU people, places and events. The microcassettes can be viewed by inserting them into a microcassette recorder in the Clarke and viewing the recording in its monitor screen.

    +

    Miscellaneous and Mixed Photographs. This series, 9 cubic feet, 1991-2008, and undated, 6 boxes and 1 Oversized folder. This series includes photographs, negatives and prints, some mounted on foamcor board, and some headshots, including black and white, color, all mixed together in the boxes, and digital images and prints from digital images. Box 74 is mostly digital prints. Sometimes UComm called them Miscellaneous Photos (Photographs) and sometimes Mixed Photos (Photographs). Some of the boxes are in their original order, which is neither alphabetical nor chronological, while other boxes are organized alphabetically into broad CMU topics. Boxes 19, 21, 72-74, 91. Box 91 also includes some Miscellaneous). See also CDs/DVDs series. Also included here is 1 Oversized folder of color, matted photographs, 1980s, 2001-2018, and undated, which measure 26x18 inches on foamcor board, dated by the photographer, Peggy Brisbane.

    +

    Mixed Files. This series, 5 cubic feet, 1965-1967, 1980s, but mostly undated, is a mixture of paper and photographic materials on various CMU topics. It is organized alphabetically into broad CMU topics. There is some overlap in Boxes 75-76. While materials inside folders may be dated, the folders are mostly undated. Boxes 75-78, 124.

    +

    Name Cards. This series, approximately 2 cubic feet, undated, in five 5x7 inch note card boxes. The note cards are organized alphabetically by surname, except for the last part of W-Z was filed at the end of the M box due to space issues. There is usually one card for each CMU person in the series. Each card documents each time a person was featured in some type of news release from CMU or other sources, such as Michigan or out-of-state newspapers, and the name and date of the source. A small number of people often featured in the news have multiple cards.

    +

    Negatives: This series, 74 cubic feet, 1946, 2012, and undated, includes boxes full or almost completely full of negatives in original sleeves. The negatives are mostly organized chronologically by year with negatives in numerical order. There are some gaps in the series. Some negatives are one per sleeve, several per sleeve. Strips of negatives are in various negative sleeves. Information on the sleeve may include any or all of the following: date, negative number, strip number, or either a name or description of a CMU person, organization, building, location or event. Boxes 109-118, 125-188 Box 109 also includes one CD of images, 2005-2012. Box 184 has CDs, 2000.

    +

    News. This series, 7 cubic feet, 1983-1985 2010, mostly undated, is copies of a CMU UComm newsletter, organized rougly alphabetically into broad CMU topics. Folder are undated. This is a subseries of the series News by Publication Number/Date (see that series description). News was continued by CMU News (a CMU newsletter, see also that series description). Boxes 40-41, 48, 53-55, 57.

    +

    News by Publication Number/Date. This series, 3 cubic feet, 1997-2003, is the same CMU newsletter, but is organized by publication number and date. For anyone researching major CMU events and news in a specific time period this is a good series in which to begin your research. Boxes 56, 58-59. Some copies of News were organized into a series organized alphabetically by topic. See also the News series.

    +

    News [of] CMU Board of Trustees [Members]. This series, .25 cubic foot, undated [1970-2014], is mostly news documenting some of the CMU Board of Trustees Members who served between 1970 and 2014. There is also one folder labeled CMU Information and one folder each for Kevin Dambrot, men’s basketball coach 1991-1999, and Donita Daventport, winning women’s basketball coach 1984-1996, and Kevin F. Kelly, who was neither a member of the Board nor a CMU faculty or staff member. The folders are undated. The news in the folders was created by CMU and other sources and UComm collected it. UComm probably used the series as both an ongoing current and historical research file. The series is organized in original order, which is neither in alphabetical nor chronological order, and labeling was not systematic. The order of names and abbreviations used on folder labels varies. Matyn researched when the people were active on the Board or at CMU, and added dates in the Box and Folder Listing in square brackets. Box 67.

    +

    News of Faculty. This series, 2 cubic feet, undated [1940s-1990s] is news by CMU and other sources mainly about CMU faculty members, administrators, and some topical subjects, that UComm collected. It is roughly organized alphabetically by surname. The order of names and abbreviations used on folder labels varies. The folders are undated. Boxes 64-65.

    +

    News of Faculty, Retired. This series, 1 cubic foot, undated [1940s-1990s], is news by CMU and other sources mainly about retired CMU faculty members and a few administrators, that UComm collected. It is organized alphabetically by surname. A number of people for whom CMU buildings are or were named are included in this series. The only president included is Grawn. Folders are undated. Box 66.

    +

    The New Releases series, 5 cubic feet, 1986, undated, is a UComm newsletter organized alphabetically in broad CMU topics, such as Football, Graduate Studies, and Parking. It does not include the names of CMU people. While materials inside folders are dated, the folders are undated, except for Flood of ‘86. Boxes 97-101. Some News Releases were organized into a subseries, New Releases Faculty. See also the New Releases Faculty subseries.

    +

    Proof, Contact or Galley Sheets series, 9 cubic feet, 1946, 2010, and undated, includes proof, contact or galley sheets and some photographs, both black and white and color, in various formats mixed together in folders. Galley sheets are a page with multiple images from the negatives. Photographers reviewed these, usually circling in red crayon which images were worth printing. Sometimes they would also draw a red X through images that were not worth printing. The series is organized alphabetically by mostly broad CMU topics and most of the proof, contact or galley sheets each measure 8.5x11 inches. Boxes 15, 17, 80-86.

    +

    Slides. This series, 12 cubic feet, 1970, 1989, 1997-2012, mostly undated, includes boxes which were entirely or mostly filled with color slides of CMU, but may contain some other photographic materials. The slides are in original order and are organized variously, alphabetically by broad or specific CMU topic, in slide carousels, slide storage pages, folders or boxes. Boxes 189-190 were originally in a wooden drawer and were rehoused in two archival slide boxes. Occasionally, a few slides are also mixed in with other series. Boxes 14, 20, 68-71, 92, 102-103, 107-108, 189-190.

    +

    The Videotapes series, 31 cubic feet, 1991-2007 and undated and digital videos, 1.2 TB, 2012-2016 includes. three subseries of color videotape recordings documenting a wide variety of CMU people and events. Some of the videotapes were edited for broadcasting, while others are informal and unedited, or partially edited, with or without music, CMU logos, or credits. The two main physical subseries are Videotapes, Videotape masters (master recordings) and Videotapes (not masters). The then videographer, Adam Miedmia, was in the midst of a project to transfer videotapes onto DVDs when the collection was transferred to the Clarke. The vast majority of these Videotapes are BetacamSP format Masters, but there are some Ampex UMaticSP videotapes (measures 5.2x8.5 inches) and VHS videotapes. Both of these subseries are in numerical order by tape number, the original order in which they were transferred to the Clarke. Videotape dates are either when they were recorded or broadcasted on television, if they were broadcasted. The dates and topic for both series overlap. There are gaps in the numerical sequences and dates, and there are some unlabeled videos.

    +

    Videotape masters. This series, 11 cubic feet, 1991-2007 and undated, is the master videotapes. Boxes 1-11.

    +

    Videotapes. This series, 20 cubic feet, 1997-2007 and undated, is the non-master videotapes. Boxes 12-13, 22-39.

    +

    The last, most modern subseries of videos is Digital Videos, 1.2 TB images (with images), 2012-2016, were originally stored on the MAC Pro harddrive, but are now stored on a Clarke server labeled UComm.

    +

    The last series is the Workstation MAC DOS digital information. The following related equipment was also transferred to the Clarke by UComm: Pioneer DVD player and two parts of Sony BetacamSP Deck for video editing; and a MAC Pro with 1 harddrive containing 1.2 TB images and Videotapes, 2012-2016, a series now stored on a Clarke server labeled UComm. Please Note: A careful review found that the digital information stored on the workstation, harddrive and CDs/DVDs in the collection indicates that the vast majority are NOT duplicated in other series in this collection, nor does the workstation digital information match the database inventory lists. The workstation uses multiple digital software formats including microworkbk, .tif, .gif, and .mov. The Workstation includes the following nine digital subseries:

    +

    Workstation subseries 1: B Roll Inventory, 2000-2009, 176 KB, in microworkbk format (Note: this is larger than the Master Tape Inventory.)

    +

    Workstation subseries 2: Logging, 2007, 29 KB, is a topical list, in microworkbk format, of Videotapes consecutively #377-497 of various topics, 2004-2005. Note: BetaSP #377-419, 2004, are found in Boxes 35-37. BetaSP#420-497 are not in this collection.

    +

    Workstation subseries 3: Tape Inventory Masters, 2007, see attached list, 111KB, in microwkbk format, list of Tapes #1-690 description may include year, running time, general category Ex. Events, Sports, a printed copy of this list was in the first video box.

    +

    Workstation subseries 4: VideoBRoll.Doc, 2007, 33KB, micro…unit is a list +identified on the Workstation as minority tapes from #2-139 (very scattered). The description may include year, 1997-2001, and running time. These minority tapes numbers and dates are not found (duplicated) in the collection on either DVDs or physical videotapes. +

    +

    Workstation subseries 5: 2013 Masters, which, when opened, is dated January-September 2016. This subseries includes one folder/month for January-September 2016, each of which includes 1-5 Videotape movie formats. Ex. 1 video is 1 hr 31 mins, another is 2 hrs running time. No total storage is given.

    +

    Workstation subseries 6: Test footage football honors event 13 seconds in movie format, no year. No total storage is given.

    +

    Workstation subseries 7: Images 4,256 in .gif, .tif files. No total storage is given.

    +

    Workstation subseries 8: Movies 254, 2006-2009, some are CMU Videotapes, others are generic for editing purposes, formats are diverse. No total storage is given.

    +

    Workstation subseries 9: Documents “more than 10,000,” formats vary.

    +

    Related collections:

    +

    Researchers may also be interested in several collections in the Clarke from UComm’s predecessor units, CMU. Information Services and PRM. Please see the finding aids and catalog records for these collections. All of these collections consist of output (images and publications). None of the inner workings of the unit, for example meeting minutes of UComm staff, planning or project files or unit annual reports are in these collections. Also, the CMU Photographs (stored in vertical filing cabinets by the CMU Vertical Files), which were donated to the Clarke prior to 1996, originally came from Public Relations and Marketing and include images from Information Services. CMU Photographs is not cataloged, but an inventory is available to assist researchers.

    +

    Digitized newsletters:

    +

    Researchers may also be interested in UComm’s various newsletters, with their different names and formats over time, which were scanned as a separate project by the Clarke staff in 2019 and are available in 2020 on the Clarke’s digital collections website.

    +

    Processing Notes:

    +

    The Move and its impact on processing: The collection was transferred from UComm to Clarke February 10, 2016, suddenly, unexpectedly, very quickly and without advanced warning. This situation led to complications with the move and processing the collection. At UComm, the majority of the physical collection had been stored in hanging folders in filing cabinets and other, variously sized cabinets and assorted containers. To decrease their weight during the move, the movers shifted materials from some of drawers into large, portable moving tubs, destroying the original series order for the collection. The materials filled the entire back hall of the Clarke when they arrived.

    +

    Boxing: Matyn and her students, notably Suli Albinhamad and Cassie Olson, among others quickly boxed the collection from the filing cabinets and moving tubs into acid free cubic foot boxes, noting original order when possible. The last third of the collection was the most disorganized and is in the best order it could be restored to in a timely fashion. It was decided by Matyn and Director Frank Boles in February 2016 to reestablish box order through the finding aid and not reorganize boxes on the shelves.

    +

    Inventory: An inventory began March 4, 2016, which continued through March 2020 as archival students were available. Matyn and the following students inventoried the collection and typed the inventory: Lindsey Rogers, Brad Davis, Clarissa Klein, Haley Schleicher, and Michael Watts, who notably typed the majority of the inventory.

    +

    Rehousing: Due to the estimated substantial cost of archivally rehousing this large a collection, specifically the audiovisual materials, the decision was made by Director F. Boles and Archivist Marian Matyn in February 2016 not to rehouse the collection in acid-free folders or audiovisual archival housing. The only exception for this was slides which were stored in a wooden drawer and were rehoused in archival slide boxes #189-1990. Most of the physical collection is in hanging files in archival boxes. Negatives and slides are in their original containers.

    +

    Labeling: Most of the physical materials in the collection were originally labeled variously. Some materials are undated, and the use of acronyms, partial names, or abbreviations is common and varies throughout the collection. When necessary and if possible, Matyn added additional information to the Box and Folder Listing to aid the researcher. Labels were created by Matyn for unlabeled folders. When labels had fallen into the body of the folder, they were found and written on the folder or container. In a few cases, parts of labels or description were illegible. When title/label and description did not match, additional description, when possible, was added to assist the researcher.

    +

    Abbreviations, acronyms, and slang: Abbreviations, acronyms, or slang have been written out to assist researchers if their meaning was known. CMU acronyms that are now no longer commonly known or used were written out by Matyn the first time the acronym appears in the Box and Folder List to assist researchers. When Matyn was unable to determine what an abbreviation meant, so the original abbreviation was retained in the Box and Folder Listing.

    +

    Withdrawn materials: 14 cubic feet of material was withdrawn during processing, including: duplicates, non-CMU information, particularly publications, newspapers and newspaper clippings for Michigan newspapers and CMU publications which are digitized, search committee information for commencement speakers, CDs with customers’ orders, and obsolete storage formats which were inaccessible.

    +
    + +

    + +

    + + Subjects: + Barclay, Robert. + Brisbane, Peggy. + Jessmore, Steven C. + Miedma, Adam. + Central Michigan University. University Communications. + Central Michigan University. Public Relations and Marketing. + Central Michigan University. Information Services. + Central Michigan University. Office of the President. + Central Michigan University--History. + Central Michigan University--Sports. + Central Michigan University--Alumni and alumnae. + Central Michigan University--Buildings, structures, etc. + Central Michigan University--Centennial celebrations, etc. + Central Michigan University--Presidents. + Central Michigan University--Students. + Mount Pleasant (Mich.)--History--20th century. + Mount Pleasant (Mich.)--History--21st century. + +
    + + + + Central Michigan University Communications (UComm) Collection, 1946, 2018, and undated. + + + + 1 + 1 + Videotapes Masters: Umatic #93 Clarke Historical Library 40th Anniversary,[1994] + + + + + + 1 + 2 + Videotapes Masters: Umatic #94 CMU Aerial Footage, Campus Aerial Shots,1991 + + + + + + 1 + 3 + Videotapes Masters: Umatic #96 CMU 100 Toward Century II,1892-1992, 1992 + + + + + + 1 + 4 + Videotapes Masters: Umatic #97 File Tape (File Tapes have long lists) #1,1996 + + + + + + 1 + 5 + Videotapes Masters: BetacamSP #80 Central Connections: CMU in Northern Michigan,1998 + + + + + + 1 + 6 + Videotapes Masters: BetacamSP #81 Campus Aerials,2003 + + + + + + 1 + 7 + Videotapes Masters: BetacamSP #821997 File #1 CMU Minutes,1997 + + + + + + 1 + 8 + Videotapes Masters: BetacamSP #83 1998 File Tape,1998 + + + + + + 1 + 9 + Videotapes Masters: BetacamSP #86 2001 File Tape,20101 + + + + + + 1 + 10 + Videotapes Masters: BetacamSP #87 2002 Master Tape,2002 + + + + + + 1 + 11 + Videotapes Masters: BetacamSP #111 Motown, Jim Talking w Tourists, Turtle Research, Lighthouse,undated + + + + + + 1 + 12 + Videotapes Masters: Top layer of Box 1: BetacamSP #112 MI Story Fest,2004 + + + + + + 1 + 13 + Videotapes Masters: Top layer of Box 1: BetacamSP #113 Jim in office, various Jim and Abby, Donna Bel, Standup,undated + + + + + + 1 + 14 + Videotapes Masters: Top layer of Box 1: BetacamSP #114 Inside Central #603 Year in Review,undated + + + + + + 1 + 15 + Videotapes Masters: Top layer of Box 1: BetacamSP no # Inside Central #402,undated + + + + + + 2 + 1 + Videotapes Masters: BetacamSP #18 Master Tape,2003 + + + + + + 2 + 2 + Videotapes Masters: BetacamSP #19 Master Tape 2003 #2, Phobia, Book Buddies, MI Story Festival, Bobcat Research, Bagpipe, Capital Campaign, Student Debt,2003 + + + + + + 2 + 3 + Videotapes Masters: BetacamSP #20 Inside Central,undated + + + + + + 2 + 4 + Videotapes Masters: BetacamSP #23 Points of Pride, Women’s Chorus,undated + + + + + + 2 + 5 + Videotapes Masters: BetacamSP #24 Steve’s Points of Pride,undated + + + + + + 2 + 6 + Videotapes Masters: BetacamSP #25 Central Connections Story Master #1, Beaver Island, Health Professions; Plachta interview, Perch research, Dunbar, Island research,undated + + + + + + 2 + 7 + Videotapes Masters: BetacamSP #26 Central Connections Story Master #2, includes CEL (College of Extended Learning)/ Humanities, Miller’s Marsh, Leadership,undated + + + + + + 2 + 8 + Videotapes Masters: BetacamSP #27 Central Connections Story Master #3, includes SBI/ Entrepreneur, College Consideration,undated + + + + + + 2 + 9 + Videotapes Masters: BetacamSP #28 Points of Pride,undated + + + + + + 2 + 10 + Videotapes Masters: BetacamSP #29 Audiology,undated + + + + + + 2 + 11 + Videotapes Masters: BetacamSP #30 Building Community Through Technology,2001 + + + + + + 2 + 12 + Videotapes Masters: BetacamSP #31 Beam,2002 + + + + + + 2 + 13 + Videotapes Masters: BetacamSP #32 CMU Image; CMU and You Day,1998 + + + + + + 2 + 14 + Videotapes Masters: BetacamSP #33 Celani-Fabiano Ribbon Cutting,2006 + + + + + + 2 + 15 + Videotapes Masters: BetacamSP #34 Sprawl and Parks Insight,undated + + + + + + 2 + 16 + Videotapes Masters: BetacamSP #35 Steve’s Insight Package,undated + + + + + + 2 + 17 + Videotapes Masters: BetacamSP #36 CMU Connections Fine Arts, CCFA (College of Communications and Fine Arts),2004 + + + + + + 2 + 18 + Videotapes Masters: BetacamSP #37 Scholarship Lunch ’05,2005 + + + + + + 2 + 19 + Videotapes Masters: BetacamSP #38 Centennial Celebration, Motion Control,1992 + + + + + + 2 + 20 + Videotapes Masters: BetacamSP #39 Centennial Celebration w Dick Enberg, Tape 2, Sports Promo,1992 + + + + + + 2 + 21 + Videotapes Masters: BetacamSP #40 Centennial Celebration w Dick Enberg,1992 + + + + + + 2 + 22 + Videotapes Masters: BetacamSP #41 CMU Study Abroad,2004 + + + + + + 2 + 23 + Videotapes Masters: BetacamSP #42 CHP (College of Health Professions) Stress Test,undated + + + + + + 2 + 24 + Videotapes Masters: BetacamSP #43 Scholarship Recipient Interviews,undated + + + + + + 2 + 25 + Videotapes Masters: BetacamSP #44 BBS Logo,undated + + + + + + 2 + 26 + Videotapes Masters: BetacamSP #46 CMU On-Campus Admission,2004 + + + + + + 2 + 27 + Videotapes Masters: BetacamSP #47 CMU Admissions/Alumni, Public Relations and Marketing,2000 + + + + + + 2 + 28 + Videotapes Masters: BetacamSP #48 CMU Image,2003 + + + + + + 2 + 29 + Videotapes Masters: BetacamSP #50 CMU Image, Centered on Success,undated + + + + + + 2 + 30 + Videotapes Masters: BetacamSP #51 CEL Recruitment,2002 + + + + + + 2 + 31 + Videotapes Masters: BetacamSP #52 Transfer Admission,2002 + + + + + + 2 + 32 + Videotapes Masters: BetacamSP #53, CMU Admissions,2004 + + + + + + 2 + 33 + Videotapes Masters: BetacamSP #54 CCFA,2001 + + + + + + 2 + 34 + Videotapes Masters: BetacamSP #55 Legendary Lives Ad,2001 + + + + + + 2 + 35 + Videotapes Masters: BetacamSP #57 Freshmen Empowerment,2000 + + + + + + 2 + 36 + Videotapes Masters: BetacamSP #58 Football Highlights 2000 Season,2000 + + + + + + 2 + 37 + Videotapes Masters: BetacamSP #59 CMU Admissions,2001 + + + + + + 2 + 38 + Videotapes Masters: BetacamSP #60 International Recruitment,2000 + + + + + + 2 + 39 + Videotapes Masters: BetacamSP #61 Coll. Business Administration,2000 + + + + + + 2 + 40 + Videotapes Masters: BetacamSP #62 Legendary Lives,2000 + + + + + + 3 + 1 + Videotapes Masters: BetacamSP #615 Amy Roloff Speech, Tape #2,2007 + + + + + + 3 + 2 + Videotapes Masters: BetacamSP #616 Amy Roloff Interview, Tape #1,2007 + + + + + + 3 + 3 + Videotapes Masters: BetacamSP #616 Amy Roloff Interview, Tape #2,2007 + + + + + + 3 + 4 + Videotapes Masters: BetacamSP #618 CMU Centennial Crawl Interviews,2007 + + + + + + 3 + 5 + Videotapes Masters: BetacamSP #619 Baja Vehicle Interviews,2007 + + + + + + 3 + 6 + Videotapes Masters: BetacamSP #620 CMU Baja Car B-Roll,2007 + + + + + + 3 + 7 + Videotapes Masters: BetacamSP #621 Tim Tingle –Bobby Norfork Reception, B-Roll,2006 + + + + + + 3 + 8 + Videotapes Masters: BetacamSP #622 Tim Tingle –Bobby Norfork Reception,2006 + + + + + + 3 + 9 + Videotapes Masters: BetacamSP #623 Bill White Talk Tape #1,2006 + + + + + + 3 + 10 + Videotapes Masters: BetacamSP #624 Bill White – Bobby Norfolk,2006 + + + + + + 3 + 11 + Videotapes Masters: BetacamSP #625 CMU Cultural Crawl Art Gallery-Greenhouse, Rowe Museum, B-Roll,2007 + + + + + + 3 + 12 + Videotapes Masters: BetacamSP #626 General Wesley Clark Visit, Talk w Honors Students, Press Conference, Part 1,2007 + + + + + + 3 + 13 + Videotapes Masters: BetacamSP #627 General Wesley Clark Speech, Press Conference, Speech, Part 1,2007 + + + + + + 3 + 14 + Videotapes Masters: BetacamSP #628 General Wesley Clark Speech, Part 2,2007 + + + + + + 3 + 15 + Videotapes Masters: BetacamSP #629 Mentor Minutes Interviews, Eric Johnson, Katie Cocaccino (Part 1 Katie), type="inclusive">2007unitdate> + + + + + + 3 + 16 + Videotapes Masters: BetacamSP #630 Mentor Minutes Interviews, Katie Cocaccino (Part 2), RSO Pie B-Roll, Ashley Wise, Scott Hillman (Part 1),2007 + + + + + + 3 + 17 + Videotapes Masters: BetacamSP #631 Mentor Minutes Interviews, Scott Hillman, Eric Kmetz,2007 + + + + + + 3 + 18 + Videotapes Masters: BetacamSP #632 CEHS Groundbreaking Tape #2,2007 + + + + + + 3 + 19 + Videotapes Masters: BetacamSP #633 CEHS Groundbreaking Tape #1,2007 + + + + + + 3 + 20 + Videotapes Masters: BetacamSP #634 Jason Quigno Sculpture Installation, no Tape #,2007 + + + + + + 3 + 21 + Videotapes Masters: BetacamSP #635 Jason Quigno Sculpture Installation, Tape #3,2007 + + + + + + 3 + 22 + Videotapes Masters: BetacamSP #636 Jason Quigno Sculpture Installation, Tape #2,2007 + + + + + + 3 + 23 + Videotapes Masters: BetacamSP #637 Jason Quigno Sculpture Installation, Interview, Tape #3,2007 + + + + + + 3 + 24 + Videotapes Masters: BetacamSP #638 Special Olympics, Tape #1,2007 + + + + + + 3 + 25 + Videotapes Masters: BetacamSP #639 Special Olympics, Tape #2,2007 + + + + + + 3 + 26 + Videotapes Masters: BetacamSP #640 Special Olympics, Tape #3,2007 + + + + + + 3 + 27 + Videotapes Masters: BetacamSP #641 Special Olympics, Tape #4,2007 + + + + + + 3 + 28 + Videotapes Masters: BetacamSP #642 Special Olympics, Tape #5,2007 + + + + + + 3 + 29 + Videotapes Masters: BetacamSP #643 Orientation B-Roll,2007 + + + + + + 3 + 30 + Videotapes Masters: BetacamSP #644 Orientation Skits “Mentortainment”,2007 + + + + + + 3 + 31 + Videotapes Masters: BetacamSP #645 Science/ Math/ Tech Camp, Rockets and Lego, Building Packets,u2007 + + + + + + 3 + 32 + Videotapes Masters: BetacamSP #646 Science/ Math/ Tech Camp, Rocket Launch and Interview,2007 + + + + + + 3 + 33 + Videotapes Masters: BetacamSP #647 Science/ Math/ Tech Camp, Tape #3,2007 + + + + + + 3 + 34 + Videotapes Masters: BetacamSP #648 Football Highlights, inside label privacy promos,undated [2007] + + + + + + 3 + 35 + Videotapes Masters: BetacamSP #649 Voiceovers,Fall 2007 + + + + + + 3 + 36 + Videotapes Masters: BetacamSP #649 Voiceovers,Fall 2006 + + + + + + 3 + 37 + Videotapes Masters: BetacamSP #651 Robert Barclay Photo Exhibit at Multicultural Center,2007 + + + + + + 3 + 38 + Videotapes Masters: BetacamSP #652 Jeff Caponigro Scoreboard,2007 + + + + + + 3 + 39 + Videotapes Masters: BetacamSP #653 President Rao Scoreboard Welcome,2007 + + + + + + 3 + 40 + Videotapes Masters: BetacamSP #654 Get Acquainted day,2007 + + + + + + 4 + 1 + Videotapes Masters: BetacamSP #420 SAC (Student Activity Center) Video #2,undated + + + + + + 4 + 2 + Videotapes Masters: BetacamSP #421 SAC Video #3,undated + + + + + + 4 + 3 + Videotapes Masters: BetacamSP #422 Study Abroad Tape #1,undated + + + + + + 4 + 4 + Videotapes Masters: BetacamSP #423 Study Abroad Tape #2,undated + + + + + + 4 + 5 + Videotapes Masters: BetacamSP #424 Study Abroad Tape #3,undated + + + + + + 4 + 6 + Videotapes Masters: BetacamSP #425 Study Abroad Tape #4,undated + + + + + + 4 + 7 + Videotapes Masters: BetacamSP #426 Study Abroad Tape #5,undated + + + + + + 4 + 8 + Videotapes Masters: BetacamSP #427 International Students Tape #1,undated + + + + + + 4 + 9 + Videotapes Masters: BetacamSP #428 International Students Tape #2,undated + + + + + + 4 + 10 + Videotapes Masters: BetacamSP #429 International Students Tape #3,undated + + + + + + 4 + 11 + Videotapes Masters: BetacamSP #430 International Students Tape #4,undated + + + + + + 4 + 12 + Videotapes Masters: BetacamSP #432 Audiology Tape #1,undated + + + + + + 4 + 13 + Videotapes Masters: BetacamSP #433 Audiology Tape #2,undated + + + + + + 4 + 14 + Videotapes Masters: BetacamSP #434 Audiology Tape #3,undated + + + + + + 4 + 15 + Videotapes Masters: BetacamSP #435 Audiology Tape #5,undated + + + + + + 4 + 16 + Videotapes Masters: BetacamSP #436 Dave Heeke News Conference Tape #1,undated + + + + + + 4 + 17 + Videotapes Masters: BetacamSP #437 Dave Heeke News Conference Tape #2,undated + + + + + + 4 + 18 + Videotapes Masters: BetacamSP #438 Beaver Island #1, tour, class, interviews,2005 + + + + + + 4 + 19 + Videotapes Masters: BetacamSP #439 Beaver Island #2, interviews, B-Roll,2005 + + + + + + 4 + 20 + Videotapes Masters: BetacamSP #440 Beaver Island #3, eating, animals; Bob Kohrman Civic Engagement #1,2005 + + + + + + 4 + 21 + Videotapes Masters: BetacamSP #441 Beaver Island #4, interviews, Bob Kohrman #2, J. Gillingham #1,2005 + + + + + + 4 + 22 + Videotapes Masters: BetacamSP #442 Beaver Island #5, interview, J. Gillingham #2,2005 + + + + + + 4 + 23 + Videotapes Masters: BetacamSP#443 Body Scanner Interviews,undated + + + + + + 4 + 24 + Videotapes Masters: BetacamSP#444 Body Scanner,undated + + + + + + 4 + 25 + Videotapes Masters: BetacamSP #445 New U-The Beginning Jan. 2005; Two Month Update,March 2005 + + + + + + 4 + 26 + Videotapes Masters: BetacamSP #446 CSP Interview New U Challenge,undated + + + + + + 4 + 27 + Videotapes Masters: BetacamSP CSP B-Roll,undated + + + + + + 4 + 28 + Videotapes Masters: BetacamSP #448 MSF (Michigan Story Festival) Dubbed Steve B-Roll, Laura Simms, Taste of Story, Tape #1,[2005] + + + + + + 4 + 29 + Videotapes Masters: BetacamSP #449, MSF Tape #2,2005 + + + + + + 4 + 30 + Videotapes Masters: BetacamSP #450 Dan and Jennifer Digmann Tape #1,undated + + + + + + 4 + 31 + Videotapes Masters: BetacamSP #451 Dan and Jennifer Digmann Tape #2,undated + + + + + + 4 + 32 + Videotapes Masters: BetacamSP #452 MSF Performance Linda Park-Fuller, Laura Simms,undated + + + + + + 4 + 33 + Videotapes Masters: BetacamSP #453 MSF Interviews Linda Park-Fuller Dr. David Howell,undated + + + + + + 4 + 34 + Videotapes Masters: BetacamSP #454 MSF Interviews Charles Booker,undated + + + + + + 4 + 35 + Videotapes Masters: BetacamSP #455 Steve Poe, Deb Callison Interview Tape #1,undated + + + + + + 4 + 36 + Videotapes Masters: BetacamSP #456 Super Mileage,undated + + + + + + 4 + 37 + Videotapes Masters: BetacamSP #457 Rosebush,undated + + + + + + 5 + 1 + Videotapes Masters: BetacamSP #1 CHIP Tape #1,undated + + + + + + 5 + 2 + Videotapes Masters: BetacamSP #2 CHIP Tape #2,undated + + + + + + 5 + 3 + Videotapes Masters: BetacamSP #3 Admissions, Honors, Leadership,undated + + + + + + 5 + 4 + Videotapes Masters: BetacamSP #4 Jim Fabiano Capital Campaign Interview,undated + + + + + + 5 + 5 + Videotapes Masters: BetacamSP #5 CMU Seal, Aerial of Warriner, CMU Stadium, CMU Logo,undated + + + + + + 5 + 6 + Videotapes Masters: BetacamSP #6 Lawrence Productions, Inc. CMU Capital Campaign, trailer,2003 + + + + + + 5 + 7 + Videotapes Masters: BetacamSP #7 Jerry Campbell Capital Campaign Interview,undated + + + + + + 5 + 8 + Videotapes Masters: BetacamSP #8 Capital Campaign Interview J. Fabiano, Janet Sturm,undated + + + + + + 5 + 9 + Videotapes Masters: BetacamSP #9 Monica Out. Todd Z, Sarah E., CPS (Computer Science),undated + + + + + + 5 + 10 + Videotapes Masters: BetacamSP #10 FBS, Kesseler, Sarah, Scholarship,undated + + + + + + 5 + 11 + Videotapes Masters: BetacamSP #11 Shapiro Interview,undated + + + + + + 5 + 12 + Videotapes Masters: BetacamSP #12 Centered on Success,undated + + + + + + 5 + 13 + Videotapes Masters: BetacamSP #13 Central Connections Lem Tucker Unknown Storyteller,undated + + + + + + 5 + 14 + Videotapes Masters: BetacamSP #14 Central Connections Jeff Caponigro, Stephanie Comai, John Kulhavi,undated + + + + + + 5 + 15 + Videotapes Masters: BetacamSP #15 CMU Metro Detroit PSA (Public Service Announcement) Comcast,undated + + + + + + 5 + 16 + Videotapes Masters: BetacamSP #16 Classic Arts Showcase, PSAs,undated + + + + + + 5 + 17 + Videotapes Masters: BetacamSP #17 File Tape, includes: CMU minute, Black History Month, EMU OT TD, PA Grads, Doraldo Speaks, Festival Chorus, Discover CMU, Kids Choir, READY reading kit,1998 + + + + + + 5 + 18 + Videotapes Masters: BetacamSP #21 Admissions Open,1998 + + + + + + 5 + 19 + Videotapes Masters: BetacamSP #49 Master Tape 1,2003 + + + + + + 5 + 20 + Videotapes Masters: BetacamSP #56 Diversity Recruitment,2000 + + + + + + 5 + 21 + Videotapes Masters: BetacamSP #63 Leonard Plachta Tribute,undated + + + + + + 5 + 22 + Videotapes Masters: BetacamSP #64 Lem Tucker Tribute,1997 + + + + + + 5 + 23 + Videotapes Masters: BetacamSP #65 CEL (College of Extended Learning),1997 + + + + + + 5 + 24 + Videotapes Masters: BetacamSP #67 CHP,1999 + + + + + + 5 + 25 + Videotapes Masters: BetacamSP #68 Black History Month Vignettes, Legendary Lives, Ricardo Solomon,1999 + + + + + + 5 + 26 + Videotapes Masters: BetacamSP # 69 Special Olympics Winter Games,2001 + + + + + + 5 + 27 + Videotapes Masters: BetacamSP #71 Michigan Story Fest,2005 + + + + + + 5 + 28 + Videotapes Masters: BetacamSP #72 Michigan Story Fest,[2005] + + + + + + 5 + 29 + Videotapes Masters: BetacamSP #73 CMU Minute, Mackinac Bridge Model,undated + + + + + + 5 + 30 + Videotapes Masters: BetacamSP #74 Angela Hernandez and parents for Capital Campaign,undated + + + + + + 5 + 31 + Videotapes Masters: BetacamSP #75 CMU Minute Dubs,undated + + + + + + 5 + 32 + Videotapes Masters: BetacamSP #76 Multiple Minutes, Robot Boy, Grad, Polartech Design, CMU PSA,2005 + + + + + + 5 + 33 + Videotapes Masters: BetacamSP #77 Central Connections – EHS (Education and Human Services), CMU Minutes – Reading Clinic, Carter O, B vs. B,undated + + + + + + 5 + 34 + Videotapes Masters: BetacamSP #78 CMU Minutes, Body Scanner, Cyber Feast, Whistleblower,undated + + + + + + 5 + 35 + Videotapes Masters: BetacamSP #79 Solutions for our Future Organization, B-Roll fo WEB page with voiceovers,undated + + + + + + 5 + 36 + Videotapes Masters: BetacamSP no # Anti-Drug PSA,2009 + + + + + + 5 + 37 + Videotapes Masters: BetacamSP no # Master Tape #3,2003 + + + + + + 5 + 38 + Videotapes Masters: BetacamSP no # Image Spots in Video for CMU Info Channel,2007 + + + + + + 5 + 39 + Videotapes Masters: BetacamSP no # Image Spots,Spring 2007 + + + + + + 5 + 40 + Videotapes Masters: BetacamSP no # Image Spots, This is Central #1, #2,2007 + + + + + + 5 + 41 + Videotapes Masters: BetacamSP AMPEX 398 label on Video=Capital Campaign Kick-off, 2003; label on container is 2005 Mater Tape #1,2003 or 2005 + + + + + + 5 + 42 + Videotapes Masters: BetacamSP no # Centennial Aerials motion control, 1992; 2 pp. 1991 aerial video log,1991-1992 + + + + + + 6 + 1 + Videotapes Masters: BetacamSP #537 Terri Lynn Carrington Tape #2,undated + + + + + + 6 + 2 + Videotapes Masters: BetacamSP #538 Terri Lynn Carrington Tape #3,undated + + + + + + 6 + 3 + Videotapes Masters: BetacamSP #539 WMHW (Radio Station 91 Rock FM) Alumni Takeover Tape #2, BCA (Broadcasting and Cinematic Arts),2006 + + + + + + 6 + 4 + Videotapes Masters: BetacamSP #540 WMHW Alumni Takeover Tape #3, BCA,2006 + + + + + + 6 + 5 + Videotapes Masters: BetacamSP #541 WMHW Alumni Takeover Tape #4,2006 + + + + + + 6 + 6 + Videotapes Masters: BetacamSP #542 WMHW Alumni Takeover Tape #5, BCA,2006 + + + + + + 6 + 7 + Videotapes Masters: BetacamSP #543 Driving Simulator R-Roll, Rick Backs Story,2006 + + + + + + 6 + 8 + Videotapes Masters: BetacamSP #544 Whiskey, Tango, Foxtrot, David London Exhibition Interview, B-Roll, Tape #1,2006 + + + + + + 6 + 9 + Videotapes Masters: BetacamSP #545 Whiskey, Tango, Foxtrot, David London Exhibition Interview, B-Roll, Tape #2,2006 + + + + + + 6 + 10 + Videotapes Masters: BetacamSP #546 John Grogan at President’s Circle,2006 + + + + + + 6 + 11 + Videotapes Masters: BetacamSP #547 John Grogan at President’s Circle, Interview and Talk,2006 + + + + + + 6 + 12 + Videotapes Masters: BetacamSP #548 John Grogan at President’s Circle, Ed of Talk, Book signing,2006 + + + + + + 6 + 13 + Videotapes Masters: BetacamSP #549 Tim Tingles MSF,2006 + + + + + + 6 + 14 + Videotapes Masters: BetacamSP #550 Dick Allen Interview re: Moore Hall History,2006 + + + + + + 6 + 15 + Videotapes Masters: BetacamSP #551 International Night, Tape #1,2006 + + + + + + 6 + 16 + Videotapes Masters: BetacamSP #552 International Night, Tape #2,2006 + + + + + + 6 + 17 + Videotapes Masters: BetacamSP #553 Jim Erickson Interview, Study Abroad Open House,2006 + + + + + + 6 + 18 + Videotapes Masters: BetacamSP #554 Ted Kjolhede Interview,2006 + + + + + + 6 + 19 + Videotapes Masters: BetacamSP #555 Frank Boles Building History for IC (Inside Central), Moore Hall,2006 + + + + + + 6 + 20 + Videotapes Masters: BetacamSP #556 Terry (Terrance) Carey, Warriner Hall History, IC,2006 + + + + + + 6 + 21 + Videotapes Masters: BetacamSP #557 Warriner, Finch, Moore exteriors and interiors for Building History segments of IC (Inside Central),2006 + + + + + + 6 + 22 + Videotapes Masters: BetacamSP #558 BetacamSP #551 International Night, Tape #1,2006 + + + + + + 6 + 23 + Videotapes Masters: BetacamSP #559 Study Abroad Interviews, Tom Rohrer, Jessica O’Higgins (Part 1), Tape #1,2006 + + + + + + 6 + 24 + Videotapes Masters: BetacamSP #560 Study Abroad Interviews, Jessica O’Higgins (Part 2), Sue Knight (Part 1), Tape #2,2006 + + + + + + 6 + 25 + Videotapes Masters: BetacamSP #561 Study Abroad Interviews, Sue Knight (Part 2), Mary Vallee (Part 1), Tape #3,2006 + + + + + + 6 + 26 + Videotapes Masters: BetacamSP #562 Study Abroad Interviews, Mike Zeig, Stephen Bublitz, Tape #4,2006 + + + + + + 6 + 27 + Videotapes Masters: BetacamSP #563 Study Abroad Interviews, Mike Pisani, Kyria Batey, Carrie Webber (Part 1), Tape #5,2006 + + + + + + 6 + 28 + Videotapes Masters: BetacamSP #564 Study Abroad Interviews, Carrie Webber (part 2), Jeff Majrowski, Tape #6,2006 + + + + + + 6 + 29 + Videotapes Masters: BetacamSP #565 Study Abroad Interviews, Monica Crissman (Part 1) Tape #7,2006 + + + + + + 6 + 30 + Videotapes Masters: BetacamSP #566 Study Abroad Interviews, Monica Crissman (Part 2) Tape #8,2006 + + + + + + 6 + 31 + Videotapes Masters: BetacamSP #567 Jeff Daniels, Moore Hall Kiva, Tape #1,2006 + + + + + + 6 + 32 + Videotapes Masters: BetacamSP #568 Jeff Daniels, Moore Hall Kiva, Tape #2,2006 + + + + + + 6 + 33 + Videotapes Masters: BetacamSP #569 Pre-orientation Interviews, Kelli Kreps, Tape #4,2006 + + + + + + 6 + 34 + Videotapes Masters: BetacamSP #570 Pre-orientation Interviews, Mike Hull, Lester Booker, Jr., Tape #1,2006 + + + + + + 6 + 35 + Videotapes Masters: BetacamSP #571 Pre-orientation Interviews, Aaron Mora, Tape #2,2006 + + + + + + 6 + 36 + Videotapes Masters: BetacamSP #572 Orientation, Tape #1,2009 + + + + + + 6 + 37 + Videotapes Masters: BetacamSP #573 Orientation, Tape #2,2006 + + + + + + 6 + 38 + Videotapes Masters: BetacamSP #574 Pre-orientation Interviews, Jessica Wojciechowski Interview, Tape #3,2006 + + + + + + 7 + 1 + Videotapes Masters: BetacamSP #458 Louisiana Night: Bruce Daigrepont Cajun Band, Dikki Du, Zydeco Crew,2006 + + + + + + 7 + 2 + Videotapes Masters: BetacamSP #459 Polartech Presents #1,undated + + + + + + 7 + 3 + Videotapes Masters: BetacamSP #460 Make a Difference Day,undated + + + + + + 7 + 4 + Videotapes Masters: BetacamSP #461 Multicultural Journalism Workshop w 5 Student Interviews,undated + + + + + + 7 + 5 + Videotapes Masters: BetacamSP #462 Woldt Construction and Pearce/ Anspach Landscaping,undated + + + + + + 7 + 6 + Videotapes Masters: BetacamSP #463 Gentle Friday,2005 + + + + + + 7 + 7 + Videotapes Masters: BetacamSP #464 CHP Interns at Beaumont [Hospital],undated + + + + + + 7 + 8 + Videotapes Masters: BetacamSP #465 Girls on the Run,undated + + + + + + 7 + 9 + Videotapes Masters: BetacamSP #466 Bullying Chip Hills “B” Martha Goodrich Interview,undated + + + + + + 7 + 10 + Videotapes Masters: BetacamSP #467 Andrew Miller,undated + + + + + + 7 + 11 + Videotapes Masters: BetacamSP #468 Dir. Sangeeta Interview, B-Roll,undated + + + + + + 7 + 12 + Videotapes Masters: BetacamSP #469 Dillinger,undated + + + + + + 7 + 13 + Videotapes Masters: BetacamSP #470 Rev. Al Sharpton,undated + + + + + + 7 + 14 + Videotapes Masters: BetacamSP #471 Spring Lake, Fochtman Sign Round Lake (bad) T. Bailey 2,undated + + + + + + 7 + 15 + Videotapes Masters: BetacamSP #472 Bay View/ River 31 N and S, Glens, Farms Wal-Mart,undated + + + + + + 7 + 16 + Videotapes Masters: BetacamSP #473 FaCIT (Faculty Center for Innovative Technology) Promo B-Roll,undated + + + + + + 7 + 17 + Videotapes Masters: BetacamSP #475 FBI Whistleblower Coleen Rowley Ethics Class,undated + + + + + + 7 + 18 + Videotapes Masters: BetacamSP #476 Human Olympics,undated + + + + + + 7 + 19 + Videotapes Masters: BetacamSP #477 Exhibits Steve [Smith],undated + + + + + + 7 + 20 + Videotapes Masters: BetacamSP #478 Zeigler News Conference,undated + + + + + + 7 + 21 + Videotapes Masters: BetacamSP #479 Tsunami Relief,undated + + + + + + 7 + 22 + Videotapes Masters: BetacamSP #480 Dow Mock Drill,undated + + + + + + 7 + 23 + Videotapes Masters: BetacamSP #481 Duct Tape Dude,undated + + + + + + 7 + 24 + Videotapes Masters: BetacamSP #482 Korean Volleyball,undated + + + + + + 7 + 25 + Videotapes Masters: BetacanSP #483 Tom Borrelli,undated + + + + + + 7 + 26 + Videotapes Masters: BetacamSP #484 Waken huts,undated + + + + + + 7 + 27 + Videotapes Masters: BetacamSP #485 SAC IM (intramural) Rugby,undated + + + + + + 7 + 28 + Videotapes Masters: BetacamSP #486 Adopt a Grandpa,undated + + + + + + 7 + 29 + Videotapes Masters: BetacamSP #487 Listserve.edu Cyber Feast,undated + + + + + + 7 + 30 + Videotapes Masters: BetacamSP #488 Speech clinic,undated + + + + + + 7 + 31 + Videotapes Masters: Betacan #489 Indian Dancers Tape #2,undated + + + + + + 7 + 32 + Videotapes Masters: BetacamSP #490 Sports Facility,undated + + + + + + 7 + 33 + Videotapes Masters: BetacamSP #491 Get Acquainted Day, Fire Up Fest,2005 + + + + + + 7 + 34 + Videotapes Masters: BetacamSP #492 Wet Lab Groundbreaking,2005 + + + + + + 7 + 35 + Videotapes Masters: BetacamSP #493 Robert Boy,undated + + + + + + 7 + 36 + Videotapes Masters: BetacamSP #494 Polar Tech,undated + + + + + + 7 + 37 + Videotapes Masters: BetacamSP #495 Gagnon Mp of y,undated + + + + + + 7 + 38 + Videotapes Masters: BetacamSP #496 Coach Carter,undated + + + + + + 8 + 1 + Videotapes Masters: BetacamSP #655 Alumni Golf Outing, Interview for Margo Jonker,undated + + + + + + 8 + 2 + Videotapes Masters: BetacamSP #656 AAIA (Association on American Indian Affairs), Native American Family Olympics,2007 + + + + + + 8 + 3 + Videotapes Masters: BetacamSP #657 Margo Jonker Youth Softball Camp,2007 + + + + + + 8 + 4 + Videotapes Masters: BetacamSP #658 Margo Jonker, Julie Maxon, Leslie (Grimes) Phelan (Part 1),2007 + + + + + + 8 + 5 + Videotapes Masters: BetacamSP #659 Margo Jonker, Julie Maxon, Leslie (Grimes) Phelan (Part 2),2007 + + + + + + 8 + 6 + Videotapes Masters: BetacamSP #660 Butch Jones Welcome For Scoreboard,2007 + + + + + + 8 + 7 + Videotapes Masters: BetacamSP #661 USA Softball highlights, Margo Jonker,undated + + + + + + 8 + 8 + Videotapes Masters: BetacamSP #662 Margo Jonker News Conference,2000 + + + + + + 8 + 9 + Videotapes Masters: BetacamSP #663 Christina Vecchioni, Standups for State Champs, Tape #2,2007 + + + + + + 8 + 10 + Videotapes Masters: BetacamSP #664 Christina Vecchioni, Standups for State Champs, Tape #1,2007 + + + + + + 8 + 11 + Videotapes Masters: BetacamSP #665 Dave Heeke Interview for Margo Jonker Video and Scoreboard,2007 + + + + + + 8 + 12 + Videotapes Masters: BetacamSP #666 Amy Vandermerine Interview for Margo Jonker Video,2007 + + + + + + 8 + 13 + Videotapes Masters: BetacamSP #667 Marcy Weston Interview for Margo Jonker Video, Tape #2,2007 + + + + + + 8 + 14 + Videotapes Masters: BetacamSP #668 Marcy Weston Interview for Margo Jonker Video, Tape #1,2007 + + + + + + 8 + 15 + Videotapes Masters: BetacamSP #669 CMU Spots Tape 1, Dave G. Broll Interview,2007 + + + + + + 8 + 16 + Videotapes Masters: BetacamSP #670 CMU Spots Tape 1, Gill and Luis Interviews,2007 + + + + + + 8 + 17 + Videotapes Masters: BetacamSP #671 CMU Spots Tape 1, Jim Felton Interview, B-Roll,2007 + + + + + + 8 + 18 + Videotapes Masters: BetacamSP #672 CMU Spots Tape 1, Jim Felton Interview,2007 + + + + + + 8 + 19 + Videotapes Masters: BetacamSP #673 CMU B-Roll for Fall 2007 Image Spots, Printed to Tape from Quicktime Files, Not Camera Originals,2007 + + + + + + 8 + 20 + Videotapes Masters: BetacamSP #675 Gail Torreano Interview, B-Roll, Tape #2,2007 + + + + + + 8 + 21 + Videotapes Masters: BetacamSP #676 Gail Torreano Interview, B-Roll, Tape #1,2007 + + + + + + 8 + 22 + Videotapes Masters: BetacamSP #677 This is Central, Laura Interview, B-Roll, Tape #1,2007 + + + + + + 8 + 23 + Videotapes Masters: BetacamSP #678 This is Central, Laura Interview, Camie, B-Roll, Tape #2,2007undated + + + + + + 8 + 24 + Videotapes Masters:BetacamSP #679 This is Central, Laura Interview, Camie, B-Roll, Tape #12007 + + + + + + 8 + 25 + Videotapes Masters: BetacamSP #680 This is Central, Steve Interview, Tape #4,2007 + + + + + + 8 + 26 + Videotapes Masters: BetacamSP #681 R. Barclay Photo Exhibit, B-Roll,2007 + + + + + + 8 + 27 + Videotapes Masters: BetacamSP #682 United Way Campaign Kickoff at Central Park,2007 + + + + + + 8 + 28 + Videotapes Masters: BetacamSP #683 Kevin Corbett Interview for MSF Inside Central,2007 + + + + + + 8 + 29 + Videotapes Masters: BetacamSP #684 Fire Up Fest,2007 + + + + + + 8 + 30 + Videotapes Masters: BetacamSP #685 Michigan Story Festival Narration Steve Smith,2006 + + + + + + 8 + 31 + Videotapes Masters: BetacamSP #686 Admissions Interviews Tape #1,undated + + + + + + 8 + 32 + Videotapes Masters: BetacamSP #687 Admissions Interviews Tape #2,undated + + + + + + 8 + 33 + Videotapes Masters: BetacamSP #688 Admissions Interviews Tape #3,undated + + + + + + 8 + 34 + Videotapes Masters: BetacamSP #689 Admissions Interviews Tape #4,undated + + + + + + 8 + 35 + Videotapes Masters: BetacamSP #690 Admissions Interviews Tape #5,undated + + + + + + 9 + 1 + Videotapes Masters: BetacamSP #575 Butch Jones Press Conference Tape #1,2007 + + + + + + 9 + 2 + Videotapes Masters: BetacamSP #576 Butch Jones Press Conference Tape #2,2007 + + + + + + 9 + 3 + Videotapes Masters: BetacamSP #577 Jessica Wojciechowski Stand Up for State Champs,2007 + + + + + + 9 + 4 + Videotapes Masters: BetacamSP #578 MLK (Dr. Martin Luther King, Jr.) Unity March,2007 + + + + + + 9 + 5 + Videotapes Masters: BetacamSP #579 Jesse Jackson Press Conference,2007 + + + + + + 9 + 6 + Videotapes Masters: BetacamSP #580 Jesse Jackson Speech Tape #1,2007 + + + + + + 9 + 7 + Videotapes Masters: BetacamSP #581 Jesse Jackson Speech Tape #2,2007 + + + + + + 9 + 8 + Videotapes Masters: BetacamSP #582 Jesse Jackson Interview,2007 + + + + + + 9 + 9 + Videotapes Masters: BetacamSP #583 Jesse Jackson Q and A (Questions and Answers),2007 + + + + + + 9 + 10 + Videotapes Masters: BetacamSP #584 Trisha Laglois Interview on Residence Halls, Celani and Towers, B-Roll,2007 + + + + + + 9 + 11 + Videotapes Masters: BetacamSP BetacamSP #585 Jessica Wojciechowski Stand Up, Residence Halls and Leadership (State Champs), Res Hall Fitness Center B-Roll,2007 + + + + + + 9 + 12 + Videotapes Masters: BetacamSP #586 Res Hall B-Roll, Rooms, Restaurant, Club Room, Market Comp Lab, Celani/ Fabiano Complex,2007 + + + + + + 9 + 13 + Videotapes Masters: BetacamSP #587 Leadership Classroom R-Roll and Jessica Wojciechowski Stand Up (State Champs!),2007 + + + + + + 9 + 14 + Videotapes Masters: BetacamSP #588 Dan Church Interview and Leadership Classroom (State Champs),2007 + + + + + + 9 + 15 + Videotapes Masters: BetacamSP #589 Jessica Wojciechowski Stand Up, State Champs!,2007 + + + + + + 9 + 16 + Videotapes Masters: BetacamSP #590 Wayne Osborn, Inside Central, Research Prominence,2007 + + + + + + 9 + 17 + Videotapes Masters: BetacamSP #591 President Mike Rao Interview, Inside Central, Research Ranking Segment,2007 + + + + + + 9 + 18 + Videotapes Masters: BetacamSP #592 Career Services B-Roll,2007 + + + + + + 9 + 19 + Videotapes Masters: BetacamSP #593 Heather Smith Stand-Up For IC, Culture Crawl, Classroom, B-Roll,2007 + + + + + + 9 + 20 + Videotapes Masters: BetacamSP #594 Heather Hillman State Champs! Tape #2,2007 + + + + + + 9 + 21 + Videotapes Masters: BetacamSP #595 Heather Hillman State Champs! Tape #1,2007 + + + + + + 9 + 22 + Videotapes Masters: BetacamSP #596 State Champs! Laura Cochran Amanda Hagy Interviews,2007 + + + + + + 9 + 23 + Videotapes Masters: BetacamSP #597 State Champs! Amanda Hagy, Felisha Arvdary (no Good), Mike Foss Interviews,2007 + + + + + + 9 + 24 + Videotapes Masters: BetacamSP #598 Dani Hiar – Lab Rescue for Inside Central,2007 + + + + + + 9 + 25 + Videotapes Masters: BetacamSP #599 Dani Hiar –Lab Rescue B-Roll, Dogs Playing in Backyard,2007 + + + + + + 9 + 26 + Videotapes Masters: BetacamSP #600 Touchdowns,undated + + + + + + 9 + 27 + Videotapes Masters: BetacamSP #601 Jessica Wojciechowski Stand Ups for State Champs, Tape #1,2007 + + + + + + 9 + 28 + Videotapes Masters: BetacamSP #602 Jessica Wojciechowski Stand Ups for State Champs, Tape #2, Library and Art + Fredericks, B-Roll,2007 + + + + + + 9 + 29 + Videotapes Masters: BetacamSP #603 Art Fredericks Interview for Inside Central,2007 + + + + + + 9 + 30 + Videotapes Masters: BetacamSP #604 Keith Helferich Interview for Inside Central, Logistics Professor,2007 + + + + + + 9 + 31 + Videotapes Masters: BetacamSP #605 Keith Helferich Interview for Inside Central, B-Roll, Short,2007 + + + + + + 9 + 32 + Videotapes Masters: BetacamSP #606 State Champs – SAC (Student Activity Center) Interviews,2007 + + + + + + 9 + 33 + Videotapes Masters: BetacamSP #607 Jessica Wojciechowski Mentor Minute Stand Ups,2007 + + + + + + 9 + 34 + Videotapes Masters: BetacamSP #608 Alexandra Mascolo-David Interview for IC 605,2007 + + + + + + 9 + 35 + Videotapes Masters: BetacamSP #609 CMU Driving Stimulator VNR,2007 + + + + + + 9 + 36 + Videotapes Masters: BetacamSP #610 Faculty Excellence Awards Tape #1,2007 + + + + + + 9 + 37 + Videotapes Masters: BetacamSP #611 Faculty Excellence Awards Tape #2,2007 + + + + + + 9 + 38 + Videotapes Masters: BetacamSP #612 Math, Sci, Tech Trimester #2,undated + + + + + + 9 + 39 + Videotapes Masters: BetacamSP #613 Amy Roloff Classroom Talk ConCAA Neely-Prof,2007 + + + + + + 9 + 40 + Videotapes Masters: BetacamSP #614 Amy Roloff Dinner and Speech Tape #1,2007 + + + + + + 10 + 1 + Videotapes Masters: BetacamSP #41 Masonic Home Health Interview Michael Dodman Speech Languages, Pathology, Interview Coughlin in Class,undated + + + + + + 10 + 2 + Videotapes Masters: BetacamSP #42 ED Funding Bill,Spring 2000 + + + + + + 10 + 3 + Videotapes Masters: BetacamSP #43 Charter School Institute Open House, Tape #1, Student Exhibit, Engler Touring Building,2000 + + + + + + 10 + 4 + Videotapes Masters: BetacamSP #44 Charter School Institute Open House, Tape #2, Speeches, Ribbon Cutting, Building Exterior,2000 + + + + + + 10 + 5 + Videotapes Masters: BetacamSP #45 Triplets in Barnes,undated + + + + + + 10 + 6 + Videotapes Masters: #46 Pres. Rao Appointment and Press Conference,2000 + + + + + + 10 + 7 + Videotapes Masters: BetacamSP #47 Intelligence Test, Tape #1, Interviews w Sharon and Carl Johnson, Johnson’s Intelligence Test given to baby,undated + + + + + + 10 + 8 + Videotapes Masters: BetacamSP #48 Intelligence Test given to 3-yr-old, Tape #2,undated + + + + + + 10 + 9 + Videotapes Masters: BetacamSP #50 NAISO Meeting, Get Acquainted Day,1997 + + + + + + 10 + 10 + Videotapes Masters: BetacamSP #51 Special Olympics Polar Plunge Belleville, MI,2001 + + + + + + 10 + 11 + Videotapes Masters: BetacamSP #52 Campus Scenics,Spring 1998 + + + + + + 10 + 12 + Videotapes Masters: BetacamSP #53 no label may be Speech Therapy/Masonic Home Interview Coughlin Class CHP,undated + + + + + + 10 + 13 + Videotapes Masters: BetacamSP #54 CMU License Plate,undated + + + + + + 10 + 14 + Videotapes Masters: BetacamSP #55 Plachta at Society of State Dedication,undated + + + + + + 10 + 15 + Videotapes Masters: BetacamSP #56 no label (may be Speech Therapy/Masonic Home Interview Coughlin Class CHP),undated + + + + + + 10 + 16 + Videotapes Masters: BetacamSP #57 Freshman Empowerment Tape #2,undated + + + + + + 10 + 17 + Videotapes Masters: BetacamSP #58 Shingles Interview, Football Taping,undated + + + + + + 10 + 18 + Videotapes Masters: BetacamSP #59 Ethanol Research, 1998; Asian Heritage/ Lion Dance, 1999,1998-1999 + + + + + + 10 + 19 + Videotapes Masters: BetacamSP #60 Colin Powell, Detroit, Colin Powell Academy,1997 + + + + + + 10 + 20 + Videotapes Masters: BetacamSP #61 Battle of the Bands,2000 + + + + + + 10 + 21 + Videotapes Masters: BetacamSP #62 Martin Reinhardt, CMU Minute, graphic design,1997 + + + + + + 10 + 22 + Videotapes Masters: BetacamSP #63 Diversity Forum, CMU Minute Student Success,undated + + + + + + 10 + 23 + Videotapes Masters: BetacamSP #64 Various Business Classes, Accreditation Logo, LaBelle Entrepreneurial Center Sign,undated + + + + + + 10 + 24 + Videotapes Masters: BetacamSP #65 Kosovo Prisoners Press Conference, Plachta Testimonials,undated + + + + + + 10 + 25 + Videotapes Masters: BetacamSP #66 Leadership Camp,1998 + + + + + + 10 + 26 + Videotapes Masters: BetacamSP #67 Interactive Classroom CEL,undated + + + + + + 10 + 27 + Videotapes Masters: BetacamSP #68 no label,undated + + + + + + 10 + 28 + Videotapes Masters: BetacamSP #69 no label,undated + + + + + + 10 + 29 + Videotapes Masters: BetacamSP #70 Student Research Expo,2000 + + + + + + 10 + 30 + Videotapes Masters: BetacamSP #71 CEEP (College Education Enhancement Program for minorities) Class, John Dinse, Hispanic Taster, Mariachi Band,undated + + + + + + 10 + 31 + Videotapes Masters: BetacamSP #72 KCP (King/ Chavez/ Parks) Program,2000 + + + + + + 10 + 32 + Videotapes Masters: BetacamSP #73 MLK March, Black History Display- Multicultural Center, Soul Food Taster, #1003,1997 + + + + + + 10 + 33 + Videotapes Masters: BetacamSP #74 Kwanza Dancers, Gospel Singers, #1000, African American Events,undated + + + + + + 10 + 34 + Videotapes Masters: BetacamSP #75 International Expo,1995 + + + + + + 10 + 35 + Videotapes Masters: BetacamSP #76 CMU and You Day, Football Team March to Stadium,2000 + + + + + + 10 + 36 + Videotapes Masters: BetacamSP #77 CEL (College of Extended Learning) Computer Lab, IET (Industrial Engineering and Technology) Robot Lab,undated + + + + + + 10 + 37 + Videotapes Masters: BetacamSP #78 Sports Website, Students Return to Campus,2000 + + + + + + 10 + 38 + Videotapes Masters: BetacamSP #79 Towers Computer Lab,undated + + + + + + 10 + 39 + Videotapes Masters: BetacamSP #80 GIS, Resident Hall, B-Roll,1998 + + + + + + 10 + 40 + Videotapes Masters: BetacamSP #81 IET/ Habitat House, Troy CEL Class,1997 + + + + + + 11 + 1 + Videotapes Masters: BetacamSP #497: MLK Interview B-Roll,undated + + + + + + 11 + 2 + Videotapes Masters: BetacamSP #498 Family Olympics Tape #1,undated + + + + + + 11 + 3 + Videotapes Masters: BetacamSP #499 Family Olympics Tape #2,undated + + + + + + 11 + 4 + Videotapes Masters: BetacamSP #500 Dan Mastramaonaco,undated + + + + + + 11 + 5 + Videotapes Masters: BetacamSP #501 Pat Cocharan, Real Estate,undated + + + + + + 11 + 6 + Videotapes Masters: BetacamSP #502 Larry King - Big Brothers and Big Sisters, Glenn and Angela Stanton,undated + + + + + + 11 + 7 + Videotapes Masters: BetacamSP #503 JoAnn Hinds, Beaver Island, New Vision of Excellence,undated + + + + + + 11 + 8 + Videotapes Masters: BetacamSP #504 Scholarship Donors,undated + + + + + + 11 + 9 + Videotapes Masters: BetacamSP #505 Scholarship Donors Tape #2,undated + + + + + + 11 + 10 + Videotapes Masters: BetacamSP #506 Audiology Class and One On One,undated + + + + + + 11 + 11 + Videotapes Masters: BetacamSP #507 CMU Promise Tape #1,undated + + + + + + 11 + 12 + Videotapes Masters: BetacamSP #508 CMU Promise Tape #2,undated + + + + + + 11 + 13 + Videotapes Masters: BetacamSP #509 Dave Keilitz,undated + + + + + + 11 + 14 + Videotapes Masters: BetacamSP #510 Herb Deromedi,undated + + + + + + 11 + 15 + Videotapes Masters: BetacamSP #511 Herb Deromedi Stuff,undated + + + + + + 11 + 16 + Videotapes Masters: BetacamSP #512 Marcy Weston,undated + + + + + + 11 + 17 + Videotapes Masters: BetacamSP #513 CEL SOT’s #2,undated + + + + + + 11 + 18 + Videotapes Masters: BetacamSP #514 Herb Deromedi Stuff,undated + + + + + + 11 + 19 + Videotapes Masters: BetacamSP #515 Polartech Presentations,undated + + + + + + 11 + 20 + Videotapes Masters: BetacamSP #516 Sports Apparel Presentatins to Rebok,2006? + + + + + + 11 + 21 + Videotapes Masters: BetacamSP #517 Football Stadium Light Installation,undated + + + + + + 11 + 22 + Videotapes Masters: BetacamSP #518 Clare Playscape RPLS Student Volunteers and Faculty,2006 + + + + + + 11 + 23 + Videotapes Masters: BetacamSP #519 Honors Interview Jim Hill,undated + + + + + + 11 + 24 + Videotapes Masters: BetacamSP #520 Honors Interview Lindsey Wahowiak, Laura Bantle,undated + + + + + + 11 + 25 + Videotapes Masters: BetacamSP #521 Honors Interview Mahlon Collins (Pickford Sr. Honors Alum), Stephen June,undated + + + + + + 11 + 26 + Videotapes Masters: BetacamSP #522 Honors Interview Jenna Rickman, Emily Doerr,undated + + + + + + 11 + 27 + Videotapes Masters: BetacamSP #523 Honors Interview Emily Doerr, Dan Nowiski,undated + + + + + + 11 + 28 + Videotapes Masters: BetacamSP #524 Honors Interview Jessica Wojeiechowski, Dan Nowiski,undated + + + + + + 11 + 29 + Videotapes Masters: BetacamSP #525 Honors Interview Jenna Rickman, Philip Voss,undated + + + + + + 11 + 30 + Videotapes Masters: BetacamSP #526 Interviews for SagChip Brian Kelly, Ronnie Ekdahl,undated + + + + + + 11 + 31 + Videotapes Masters: BetacamSP #527 Capital Campaign Gala, Tape #1,2006 + + + + + + 11 + 32 + Videotapes Masters: BetacamSP #528 Capital Campaign Gala, Tape #2,2006 + + + + + + 11 + 33 + Videotapes Masters: BetacamSP #529 SagChip Pres. Rao and Chief Canto,2006 + + + + + + 11 + 34 + Videotapes Masters: BetacamSP #530 SagChip PSA, CMU Public Relations and Marketing, Tape #2,2006 + + + + + + 11 + 35 + Videotapes Masters: BetacamSP #531 Driving Simulator Tape #1, Dr. Rick Backs,2006 + + + + + + 11 + 36 + Videotapes Masters: BetacamSP #532 Driving Simulator Tape #2, Dr. Rick Backs,2006 + + + + + + 11 + 37 + Videotapes Masters: BetacamSP #534 WMHW Alumni Takeover, BCA, Tape #1,2006 + + + + + + 11 + 38 + Videotapes Masters: BetacamSP #535 Campus B-Roll, Warriner Mall, Park Library sidewalk, Anspach, Pearce, Dow Mall,2006 + + + + + + 11 + 39 + Videotapes Masters: BetacamSP #536 Terri Lynn Carrington Tape #1,undated + + + + + + 12 + 1 + Videotapes, #1-40: BetacamSP #1 Broadway Theater,undated + + + + + + 12 + 2 + Videotapes, #1-40: BetacamSP #2 Gear Up,undated + + + + + + 12 + 3 + Videotapes, #1-40: BetacamSP #3 Gear Up workshop,undated + + + + + + 12 + 4 + Videotapes, #1-40: BetacamSP #4 Op for Talent Development #1,Summer 2000 + + + + + + 12 + 5 + Videotapes, #1-40: BetacamSP BetacamSP #5 Op for Talent Development #2,Summer 2000 + + + + + + 12 + 6 + Videotapes, #1-40: BetacamSP #6 Gerald Ford Program #1, 30 minutes,undated + + + + + + 12 + 7 + Videotapes, #1-40: BetacamSP #7 Gerald Ford Program #2, 16:44,undated + + + + + + 12 + 8 + Videotapes, #1-40: BetacamSP #8 DB Central,undated + + + + + + 12 + 9 + Videotapes, #1-40: BetacamSP #9 Homecoming Parade,2000 + + + + + + 12 + 10 + Videotapes, #1-40: BetacamSP #10 Renee Shingles on TV Sports Medicine B-Roll,undated + + + + + + 12 + 11 + Videotapes, #1-40: BetacamSP #11 no label,undated + + + + + + 12 + 12 + Videotapes, #1-40: BetacamSP #12 Gait Research, Residential College, 1999; Dorm Dining and Lounge, UC #1,1999s + + + + + + 12 + 13 + Videotapes, #1-40: BetacamSP #13 no label,undated + + + + + + 12 + 14 + Videotapes, #1-40: BetacamSP #14 no label,undated + + + + + + 12 + 15 + Videotapes, #1-40: BetacamSP #15 Water Research Center,undated + + + + + + 12 + 16 + Videotapes, #1-40: BetacamSP #16 Sturgeon Research #1,undated + + + + + + 12 + 17 + Videotapes, #1-40: BetacamSP #17 Sturgeon Research #2,undated + + + + + + 12 + 18 + Videotapes, #1-40: BetacamSP #18 Sturgeon Research #3,undated + + + + + + 12 + 19 + Videotapes, #1-40: BetacamSP #19 Beaver Island Tape #1,undated + + + + + + 12 + 20 + Videotapes, #1-40: BetacamSP #20 Beaver Island Tape #2,undated + + + + + + 12 + 21 + Videotapes, #1-40: BetacamSP #21 Beaver Island Tape #3,undated + + + + + + 12 + 22 + Videotapes, #1-40: BetacamSP #22 Beaver Island Tape #4, John News Interview, Deer, Monarch Larvae and butterfly, Miller’s Marsh, Lori Kindsvatter Snake Research, Jim Gillingham, Interview,1998 + + + + + + 12 + 23 + Videotapes, #1-40: BetacamSP #23 Beaver Island Tape #5,undated + + + + + + 12 + 24 + Videotapes, #1-40: BetacamSP #24 Health Expo,undated + + + + + + 12 + 25 + Videotapes, #1-40: BetacamSP #25 Steve Kapp Interview, Physician Assistant B-Roll,1998 + + + + + + 12 + 26 + Videotapes, #1-40: BetacamSP #26 Perch Research,1998 + + + + + + 12 + 27 + Videotapes, #1-40: BetacamSP 27 Hippotherapy,undated + + + + + + 12 + 28 + Videotapes, #1-40: BetacamSP #28 Human Fitness Lab,undated + + + + + + 12 + 29 + Videotapes, #1-40: BetacamSP #29 Healthy Hearts Program,undated + + + + + + 12 + 30 + Videotapes, #1-40: BetacamSP #30 Sports Medicine (editorial note: Old facilities so use closeups),undated + + + + + + 12 + 31 + Videotapes, #1-40: BetacamSP #31 Physical Therapy,1997 + + + + + + 12 + 32 + Videotapes, #1-40: BetacamSP #32 No label,undated + + + + + + 12 + 33 + Videotapes, #1-40: BetacamSP #33Prek Class Pa at MD’s Office,undated + + + + + + 12 + 34 + Videotapes, #1-40: BetacamSP #34 Operation B-Roll,undated + + + + + + 12 + 35 + Videotapes, #1-40: BetacamSP #35 no label,undated + + + + + + 12 + 36 + Videotapes, #1-40:: BetacamSP #36 Audiology Clinic, PA in MD’s Office,undated + + + + + + 12 + 37 + VVideotapes, #1-40: BetacamSP #37 Audiology, Homecoming Parade,1998 + + + + + + 12 + 38 + Videotapes, #1-40: BetacamSP #38 Audiology Clinic B-Roll,undated + + + + + + 12 + 39 + Videotapes, #1-40: BetacamSP #39 Interviews Wellness Central,undated + + + + + + 12 + 40 + Videotapes, #1-40: BetacamSP #40 no label,undated + + + + + + 1 + 1 Oversized folder: Oversized, matted Photographs, each measures 26x18 inches on foamcor board, dated by Peggy Brisbane, the photographer: #1 three women in modern, white ballet dresses dancing, Orchesis, 2011; #2 young girl fancy shawl dancer at Powwow, 2009; #3 Cellist during a symphony concert, undated; #4 inside atrium of Park Library, undated [2001-2018]; #5 Wall between UC and Warriner, early morning winter, 2011; #6 CMU commencement graduates, Prof. Norma Bailey, undated; #7 Smith Hall exterior grillwork lamp, undated; #8 drawing Mayan pottery shards, undated; #9 Clarke Historical Library collage image of various formats, undated; #10 Warriner Hall north side in fall, undated; #11 CMU Marching Chippewas in front of Max and Emily’s, downtown Mount Pleasant in fall, undated; #12 CMU main sign (tombstone style) in summer, undated; #13 IET building and artwork in summer, undated; #14 CMU Museum collage image of various formats, undated; #15 vine covered side of a CMU academic building, undated; #16 Central baseball game, undated; #17 CMU Celebrates student research inside IET building, [1980s?]; #18 Grawn east side in summer, undated; #19 CMU history objects and information collage from Clarke Historical Library and Museum, undated,2009, 2011, undated [1908s?, 2001-2018] + + + + + + 13 + 1 + Videotapes: Master BetacamSP #66 CEL Recruitment,1998 + + + + + + 13 + 2 + Videotapes: BetacamSP #66 File Tape #1,1999 + + + + + + 13 + 3 + Videotapes: BetacamSP #85 File Tape,2000 + + + + + + 13 + 4 + Videotapes: BetacamSP #88 Master Tape,2004 + + + + + + 13 + 5 + Videotapes: BetacamSP #89 State of the University,2003 + + + + + + 13 + 6 + Videotapes: Ampex UMaticSP #91 Master Tape Central Michigan, Central Michigan Minute,undated + + + + + + 13 + 7 + Videotapes: BetacamSP #92 Dubs of Centennial and CMU Admissions, 1993, and Beaver Island, 1995,1993, 1995 + + + + + + 13 + 8 + Videotapes: Ampex UMaticSP #98 Sports File Tape #1, Gymnastics, Women’s Basketball, National Girls and Women in Sports Day, Women’s Athletics, includes Marci Weston,1996 + + + + + + 13 + 9 + Videotapes: Ampex UMaticSP #100 Master Tape Central Michigan, Central Michigan Minute,undated + + + + + + 13 + 10 + Videotapes: Ampex UMaticSP #101 CMU Minute,1996 + + + + + + 13 + 11 + Videotapes: Ampex 398 BetacamSP #108 B.1.3 Fish people, museum, Dan W., Boardwalk, Beach Plants,undated + + + + + + 13 + 12 + Videotapes: Ampex 398 BetacamSP #109 B.1.4 Boat house, downtown, raccoon, architectural drawings, bio signs, old labs, library, comp room, alligators, tiny crabs,undated + + + + + + 13 + 13 + Videotapes: Ampex 398 BetacamSp #110 B.I. 1 #110 water lab, island tour,undated + + + + + + 13 + 14 + Videotapes: BetacamSP no # Why CMU? Commercial, nanotechnology version,2006 + + + + + + 13 + 15 + Videotapes: BetacamSP no # Night of Louisiana, Lost Bayou Ramblers Cajun Band and Corey “Lil Pop” Ledet and his Zyedeco Band,2006 + + + + + + 13 + 16 + Videotapes: BetacamSP no # This is Central, raw footage Dan, Prof Oh-Lee, Tape #1,Jan. 2007 + + + + + + 13 + 17 + Videotapes: BetacamSP no # Alexandra Mascoco-David Concert for Francisco Mignone CD release, Tape #1,2007 + + + + + + 13 + 18 + Videotapes: BetacamSP no # Alexandra Mascoco-David Concert for Francisco Mignone CD release, Tape #2,2007 + + + + + + 13 + 19 + Videotapes: BetacamSP no # This is Central, raw footage Dan, Prof Oh-Lee B-Roll, Tape #2,Feb. 2007 + + + + + + 13 + 20 + Videotapes: BetacamSP no # This is Central, raw footage Dan, Raw Footage Hope Int. R-roll, Tape #3,Feb. 2007 + + + + + + 13 + 21 + Videotapes: BetacamSP no # CMU Minutes,Spring 2007 + + + + + + 13 + 22 + Videotapes: BetacamSP no # This is Central,Sept. 2007 + + + + + + 13 + 23 + Videotapes: BetacamSP no # no label,Sept. 8, 2009 + + + + + + 13 + 24 + Videotapes: BetacamSP no # CMU Anti-drug PSA [copy 1],2009 + + + + + + 13 + 25 + Videotapes: BetacamSP no # Plachta / CMU Pix #1,2000 + + + + + + 14 + 1 + On top: Slides in 1 large mailing bag of slides,1972-1974, 1984 + + + + + + 14 + 2 + Below: Approximately 1 cubic foot of assorted CMU color slides taken by Robert Barclay,1980s + + + + + + 15 + 1 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Academic Fine and Applied Arts, Music,1970-1973 + + + + + + 15 + 2 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Academic HPER, Physical Education, Modern Dance, Recreation, Health Education,1971-1972 + + + + + + 15 + 3 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Campus Buildings, K-W,1968-1969 + + + + + + 15 + 4 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Campus Buildings, R-Z,1967-1969 + + + + + + 15 + 5 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Campus Scenes,1970-1974 + + + + + + 15 + 6 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Commencement,1970-1972 + + + + + + 15 + 7 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Former President William Boyd,1963-1975 + + + + + + 15 + 8 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Former Homecoming Queens, Old Aerial Shots, Faculty,1950s + + + + + + 15 + 9 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Historical Proof Sheets,1898-1953 + + + + + + 15 + 10 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Historical Proof Sheets,1946-1947 + + + + + + 15 + 11 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Historical Proof Sheets of Former Pres. Bill Boyd,1968-1975 + + + + + + 15 + 12 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Homecoming,1973 + + + + + + 15 + 13 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Homecoming Court,1972 + + + + + + 15 + 14 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Homecoming Shots and Court, information about court members, 3 pp.,1968-1971 + + + + + + 15 + 15 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Miscellaneous Homecoming Shots,1950s-1960s + + + + + + 15 + 16 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Old Aerials,1950s + + + + + + 15 + 17 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Outdoor Scenes,1973 + + + + + + 15 + 18 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: ROTC (Reserve Officer Training Corps-Military Science) Building Takeover “Freedom Hall”,1969 + + + + + + 15 + 19 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: 75th Anniversary Recognition Awards,1972 + + + + + + 15 + 20 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Student Affairs, Chippewa Big Brother Big Sister Program,1970 + + + + + + 15 + 21 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Student Affairs, Dorm Life,1970-1973 + + + + + + 15 + 22 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Student Affairs, Financial Aid,1970-1971 + + + + + + 15 + 23 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Student Affairs, Food Cooperative,undated [1970?] + + + + + + 15 + 24 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Student Affairs, Korean Orphanage Award,1972 + + + + + + 15 + 25 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Student Affairs, Listening Ear,1970 + + + + + + 15 + 26 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Student Affairs, Married Housing,1971-1973 + + + + + + 15 + 27 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Student Affairs, Minorities, African Americans,1970-1974 + + + + + + 15 + 28 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Student Affairs, Minorities, Chicanos,1970-1972 + + + + + + 15 + 29 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Student Affairs, Program Board,1970 + + + + + + 15 + 30 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Student Affairs, Student Publications,1973 + + + + + + 15 + 31 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Student Affairs, Vets Club Trash Pickup,1970 + + + + + + 15 + 32 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Student Affairs, Volunteer Groups, State Home, 1970-1971; Girl Scouts, 1970,1970-1971; 1970 + + + + + + 15 + 33 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Student Affairs, WCHP radio station and bike marathon,1971-1972 + + + + + + 15 + 34 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Student Organizations,1969-1973 + + + + + + 15 + 35 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: University Relations, Alumni, Placement, Trustees, Development,1970-1972 + + + + + + 15 + 36 + Proof or Contact Sheets, Photographs, A-V, mostly 8.5x11 inches: Vietnam Moratorium,1969-1970 + + + + + + 16 + 1 + Historic mugshots (or individual portraits, black and white, 4x5 inches or smaller, each in own envelope, some envelopes include multiple images), 1950s-1970s. Includes faculty, emeritus faculty and staff (Dept. name is included, no year), some students with a description such as valedictorian and homecoming queen and a year. Organized alphabetically by surname in 3 sections: Abbott-Fraling,1950s-1970s + + + + + + 16 + 2 + Historic mugshots (or individual portraits, black and white, 4x5 inches or smaller, each in own envelope, some envelopes include multiple images), 1950s-1970s. Includes faculty, emeritus faculty and staff (Dept. name is included, no year), some students with a description such as valedictorian and homecoming queen and a year. Organized alphabetically by surname in 3 sections: Freidman-Loughridge,1950s-1970s + + + + + + 16 + 3 + Historic mugshots (or individual portraits, black and white, 4x5 inches or smaller, each in own envelope, some envelopes include multiple images), 1950s-1970s. Includes faculty, emeritus faculty and staff (Dept. name is included, no year), some students with a description such as valedictorian and homecoming queen and a year. Organized alphabetically by surname in 3 sections: Love-Stroyen,1950s-1970s + + + + + + 16 + 4 + Historic mugshots (or individual portraits, black and white, 4x5 inches or smaller, each in own envelope, some envelopes include multiple images), 1950s-1970s. Includes faculty, emeritus faculty and staff (Dept. name is included, no year), some students with a description such as valedictorian and homecoming queen and a year. Organized alphabetically by surname in 3 sections: Eclipse,1970 + + + + + + 17 + 1 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Elementary Education,1970s-2002 + + + + + + 17 + 2 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Energy,1970s-2002 + + + + + + 17 + 3 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: English Department,1970s-2002 + + + + + + 17 + 4 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: European Studies,1970s-2002 + + + + + + 17 + 5 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Facilities Management,1970s-2002 + + + + + + 17 + 6 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Faculty, mostly in classrooms,1990-2001 + + + + + + 17 + 7 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Faculty Association,1970s-2002 + + + + + + 17 + 8 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Finance, Real Estate, and Insurance,1970s-2002 + + + + + + 17 + 9 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Financial Aid,1970s-2002 + + + + + + 17 + 10 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Finch Fieldhouse,1970s-2002 + + + + + + 17 + 11 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Flood Damage,1970s-2002 + + + + + + 17 + 12 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Focus Hope,1970s-2002 + + + + + + 17 + 13 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Food Services,1970s-2002 + + + + + + 17 + 14 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Foreign Language,1970s-2002 + + + + + + 17 + 15 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Foust, President’s photograph on wall in Foust Building,1970s-2002 + + + + + + 17 + 16 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Foust Health Center,1970s-2002 + + + + + + 17 + 17 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Fraternities and Sororities,1970s-2002 + + + + + + 17 + 18 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Fresh Air Festival,1970s-2002 + + + + + + 17 + 19 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Freshmen Orientation,1970s-2002 + + + + + + 17 + 20 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Gentle Friday,1970s-2002 + + + + + + 17 + 21 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Geography Department,1970s-2002 + + + + + + 17 + 22 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Geology Department,1970s-2002 + + + + + + 17 + 23 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Gerontology,1970s-2002 + + + + + + 17 + 24 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Girls State,1970s-2002 + + + + + + 17 + 25 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Grad Studies,1970s-2002 + + + + + + 17 + 26 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Grawn Hall,1970s-2002 + + + + + + 17 + 27 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: G.R.I.P. (Graduation Retention Improvement program, focused on minorities),1970s-2002 + + + + + + 17 + 28 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Guest Speakers,1970s-2002 + + + + + + 17 + 29 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Health Building Construction,1970s-2002 + + + + + + 17 + 30 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Health Education Department,1970s-2002 + + + + + + 17 + 31 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Health, Physical Education and Recreation,1970s-2002 + + + + + + 17 + 32 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Health Promo and Rehab,1970s-2002 + + + + + + 17 + 33 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Health Services,1970s-2002 + + + + + + 17 + 34 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Historical,1970s-2002 + + + + + + 17 + 35 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Homecoming,1974-1975 + + + + + + 17 + 36 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Homecoming,1976 + + + + + + 17 + 37 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Homecoming,1977 + + + + + + 17 + 38 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Homecoming,1978 + + + + + + 17 + 39 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Homecoming,1979 + + + + + + 17 + 40 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Homecoming,1980 + + + + + + 17 + 41 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Homecoming,1981 + + + + + + 17 + 42 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Homecoming,1982 + + + + + + 17 + 43 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Homecoming,1983 + + + + + + 17 + 44 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Homecoming,1984 + + + + + + 17 + 45 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Homecoming,1985 + + + + + + 17 + 146 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Homecoming,1986 + + + + + + 17 + 47 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Homecoming,1987 + + + + + + 17 + 48 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Homecoming, (no 1988),1989 + + + + + + 17 + 49 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Homecoming,2000-2001 + + + + + + 17 + 50 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Homecoming Queen,1972 + + + + + + 17 + 51 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Honors Classes,1970s-2002 + + + + + + 17 + 52 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Hospitality Services,1970s-2002 + + + + + + 17 + 53 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Housing,1970s-2002 + + + + + + 17 + 54 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Human Environmental Studies (folder 1 of 2),1970s-2002 + + + + + + 17 + 55 + Contact Sheets E-H, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Human Environmental Studies (folder 2 of 2),1970s-2002 + + + + + + 18 + 1 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: I.E.T. (Industrial Engineering and Technology),1970s-2002 + + + + + + 18 + 2 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Illustrations,1970s-2002 + + + + + + 18 + 3 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Information Systems Analysis,1970s-2002 + + + + + + 18 + 4 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Institute for Career and Personal Development (ICPD),1970s-2002 + + + + + + 18 + 5 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Instructional Materials Center (IMC),1970s-2002 + + + + + + 18 + 6 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Instructional Materials Production,1970s-2002 + + + + + + 18 + 7 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: International Students,1970s-2002 + + + + + + 18 + 8 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: I.P.C. (Interpersonal Communications),1970s-2002 + + + + + + 18 + 9 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Intramurals,1970s-2002 + + + + + + 18 + 10 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Jakubauskas, Dr. Edward,1970s-2002 + + + + + + 18 + 11 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Job Training,1970s-2002 + + + + + + 18 + 12 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Journalism,1970s-2002 + + + + + + 18 + 13 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: King, Chavez, Parks,1970s-2002 + + + + + + 18 + 14 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Leadership,1970s-2002 + + + + + + 18 + 15 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Legislature,1970s-2002 + + + + + + 18 + 16 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Library,1970s-2002 + + + + + + 18 + 17 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: M3PEP (Mid-MI Minority Pre-Engineering Program),1970s-2002 + + + + + + 18 + 18 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: MAGB Awards (MI Assn. of Governing Bds of State Universities),1970s-2002 + + + + + + 18 + 19 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Maintenance Warehouse,1970s-2002 + + + + + + 18 + 20 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: MSA (Master of Science in Administration) Program,1970s-2002 + + + + + + 18 + 21 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Management Department,1970s-2002 + + + + + + 18 + 22 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Marching Band,1970s-2002 + + + + + + 18 + 23 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Marking and Hospitality Services,1970s-2002 + + + + + + 18 + 24 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Maroon Coat Society,1970s-2002 + + + + + + 18 + 25 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Math Department,1970s-2002 + + + + + + 18 + 26 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: McNair Scholars,1970s-2002 + + + + + + 18 + 27 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Medical Technology,1970s-2002 + + + + + + 18 + 28 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Michigan Institute for Adult Learning and Literacy,1970s-2002 + + + + + + 18 + 29 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Michigan Molecular Institute,1970s-2002 + + + + + + 18 + 30 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Middle Michigan Development Corp.,1970s-2002 + + + + + + 18 + 31 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Midland Center,1970s-2002 + + + + + + 18 + 32 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Military Science (ROTC),1970s-2002 + + + + + + 18 + 33 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Minority Student Services,1970s-2002 + + + + + + 18 + 34 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Moore Hall,1970s-2002 + + + + + + 18 + 35 + Contact Sheets I-M, mostly 1970s-2002, black and white and color, organized alphabetically by topic: Motor Pool,1970s-2002 + + + + + + 19 + 1 + Miscellaneous negatives and prints, black and white and color, 2 on foamcor board, a few galley prints. Includes CMU head shots, group and individual athletes, commencement, buildings, Public Broadcasting employees and electricians, miscellaneous notes,1991-2002 + + + + + + 20 + 1 + 2 slide carousels in 2 boxes of CMU Building Color Slides, 1970-1971, undated; Negatives, some color photographs of CMU people, athletic teams, buildings, and notes, 1980s,1970-1971, undated; 1980s + + + + + + 21 + 1 + Photographs and negatives in 5 small boxes, mostly 1990s: Box 21A: CMU color negatives: 1 photograph, Dave Keilitz Roast, 1994; student portraits for 1994-1995 viewbook; Chippewa Club Athlete group photograph; 1993-1994 women’s basketball team photograph; 1994 Dan Majerle portrait in CMU sweatshirt; new Music Building artist renderings; 1995 MAGB,1993-1995 + + + + + + 21 + 2 + Photographs and negatives in 5 small boxes, mostly 1990s: Box 21B: CMU color negatives: Trustees, Field Hockey, 1993; Jesse Jackson, 1993; Homecoming King/ Queen, 1993; 1994 Women’s track; 1994 softball; Maroon Coat Society,1993-1994 + + + + + + 21 + 3 + Photographs and negatives in 5 small boxes, mostly 1990s: Box 21C: CMU color negatives: Various CMU 1990s, mostly athletic team photographs, Homecoming King/ Queen,1990s + + + + + + 21 + 4 + Photographs and negatives in 5 small boxes, mostly 1990s: Box 21D: CMU color negatives, 1990s, mostly Athletic team photographs, Homecoming King/ Queen,1990s + + + + + + 21 + 5 + Photographs and negatives in 5 small boxes, mostly 1990s: Box 21E: outside label: CMU color negatives, 1990s, from Pounds. Inside labels: Printing Service Color Mug Shots Feb. 1999; African American male alums on campus mugshots,1990s; 1999 + + + + + + 22 + 1 + Videotapes: BetacamSP #114 Student Success Center, CMU Minute,1998 + + + + + + 22 + 2 + Videotapes: BetacamSP #115 Chalking and BCA Census Vote,2000 + + + + + + 22 + 3 + Videotapes: BetacamSP #116 BCA Video,2001 + + + + + + 22 + 4 + Videotapes: BetacamSP #117 no label,undated + + + + + + 22 + 5 + Videotapes: BetacamSP #118 China Daly, Remembrance,2002 + + + + + + 22 + 6 + Videotapes: BetacamSP #119 Music Building Dedication, Tape #1,1997 + + + + + + 22 + 7 + Videotapes: BetacamSP #120 Music Building Dedication, Tape #1,1997 + + + + + + 22 + 8 + Videotapes: BetacamSP #121 BCA/ PBS Basketball Broadcast,undated + + + + + + 22 + 9 + Videotapes: BetacamSP #122 Wind Ensemble, Orchesis,1999 + + + + + + 22 + 10 + Videotapes: BetacamSP #123 Lem Tucker,2000 + + + + + + 22 + 11 + Videotapes: BetacamSP #124 New Organ,undated + + + + + + 22 + 12 + Videotapes: BetacamSP #125 No label,undated + + + + + + 22 + 13 + Videotapes: BetacamSP #126 Museum Video Integrative PR group student organization,undated + + + + + + 22 + 14 + Videotapes: BetacamSP #127 Detroit Thanksgiving Parade,1998 + + + + + + 22 + 15 + Videotapes: BetacamSP #128 Graphic Design Class, Art Class, Watercolors, Weaving on Loom, Sculpting Class,2000 + + + + + + 22 + 16 + Videotapes: BetacamSP #129 Plachta Auditorium Play,undated + + + + + + 22 + 17 + Videotapes: BetacamSP #130 Alvin Ailey Dancers, CMU Dance Class,undated + + + + + + 22 + 18 + Videotapes: BetacamSP #131 Art Gallery, Maya Angelou,undated + + + + + + 22 + 19 + Videotapes: BetacamSP #132 Painting Class, Print Drafting Class,2000 + + + + + + 22 + 20 + Videotapes: BetacamSP #133 Photograph Class, Graphic Design, MIDI Lab, Recording Lab,undated + + + + + + 23 + 1 + Videotapes: BetacamSP #134 Journalism Career Day,1999 + + + + + + 23 + 2 + Videotapes: BetacamSP #135 Dow Jones Journalism Workshop #1,undated + + + + + + 23 + 3 + Videotapes: BetacamSP #136 No label,undated + + + + + + 23 + 4 + Videotapes: BetacamSP #137 DeBord – New Coach Presser,undated + + + + + + 23 + 5 + Videotapes: BetacamSP #138 Men’s Basketball,`999 + + + + + + 23 + 6 + Videotapes: BetacamSP #139 Men’s Basketball v. Ball State, color video, #1,2001 + + + + + + 23 + 7 + Videotapes: BetacamSP #140 Basketball, CMU v. WMU, Rose Rowdies, Jay Smith, “Sugars” Jersey Retired,undated + + + + + + 23 + 8 + Videotapes: BetacamSP #141 Women’s B-ball, Men’s B-ball, [Tape #1],undated + + + + + + 23 + 9 + Videotapes: BetacamSP #142 Men’s B-ball v. Ball State, #2, Feature/Color video,2001 + + + + + + 23 + 10 + Videotapes: BetacamSP #143 Dan Majerle w. Miami Heat, Action Shots,undated + + + + + + 23 + 11 + Videotapes: BetacamSP #144 Gymnastics NIT (National Invitational Tournament),2000 + + + + + + 23 + 12 + Videotapes: BetacamSP #145 Gymnastics,undated + + + + + + 23 + 13 + Videotapes: BetacamSP #146 Field Hockey,undated + + + + + + 23 + 14 + Videotapes: BetacamSP #147 Women’s Track Memorial Walk,undated + + + + + + 23 + 15 + Videotapes: BetacamSP #148 Sports Complex Site/Pre-Construction, 1997; Football CMU v. N. Illinois, Tailgating, Band, Chipettes,1997 + + + + + + 23 + 16 + Videotapes: BetacamSP #149 Press Box Construction, 1998; Press Box, Sports Complex Construction, 1998, 2000,1998; 1998, 2000 + + + + + + 23 + 17 + Videotapes: BetacamSP #150 Bucket Shots, Sports Facility,undated + + + + + + 23 + 18 + Videotapes: BetacamSP #151 MAC Gymnastic Champs,1997 + + + + + + 23 + 19 + Videotapes: BetacamSP #152 Press Box Sports Complex, Construction, 1998; Tailgating and Homecoming, CMU V. Kent State, 1998,1998; 1998 + + + + + + 23 + 20 + Videotapes: BetacamSP #153 CMU v. E. Illinois Night Game,1999 + + + + + + 24 + 1 + Videotapes: BetacamSP #154 Soccer,undated + + + + + + 24 + 2 + Videotapes: BetacamSP #155 Homecoming Pep Rally, Homecoming Parade,undated + + + + + + 24 + 3 + Videotapes: BetacamSP #156 Women’s Basketball,2000 + + + + + + 24 + 4 + Videotapes: BetacamSP #157 Opus III,2000 + + + + + + 24 + 5 + Videotapes: BetacamSP #158 Women’s Softball, Baseball,undated + + + + + + 24 + 6 + Videotapes: BetacamSP #159 Soccer, Volleyball,undated + + + + + + 24 + 7 + Videotapes: BetacamSP #160 Homecoming Football,1999 + + + + + + 24 + 8 + Videotapes: BetacamSP #161 Wrestling Action,2000 + + + + + + 24 + 9 + Videotapes: BetacamSP #162 CEL tailgating, Other Tailgating,undated + + + + + + 24 + 10 + Videotapes: BetacamSP #163 Homecoming,2001 + + + + + + 24 + 11 + Videotapes: BetacamSP #164 Football, Wester Win,2000 + + + + + + 24 + 12 + Videotapes: BetacamSP #165 Football CMU v. Akron, 1st DeBord win, Band,2000 + + + + + + 24 + 13 + Videotapes: BetacamSP #166 Football Stadium Ribbon Cutting, Tailgating, Ceremony, Press Box,1998 + + + + + + 24 + 14 + Videotapes: BetacamSP #167 Volleyball, Cross Country, Football CMU v. Miami, Fire Up Chips Cheers,1999 + + + + + + 24 + 15 + Videotapes: BetacamSP #168 Homecoming Parade, Sports Complex Groundbreaking and Speeches,1997 + + + + + + 24 + 16 + Videotapes: BetacamSP #169 Fred in Press Box, CMU v. Toledo,2001 + + + + + + 24 + 17 + Videotapes: BetacamSP #170 Sport Camps, Football, Basketball, Kiddie Soccer,undated + + + + + + 24 + 18 + Videotapes: BetacamSP #171 Baseball, Volleyball and Wrestling camps,undated + + + + + + 24 + 19 + Videotapes: BetacamSP #172 Sports Camps,2000 + + + + + + 24 + 20 + Videotapes: BetacamSP #173 Basketball Sport Camp,1999 + + + + + + 25 + 1 + Videotapes: BetacamSP 174 Sports Camps, Wrestling, Baseball, and Track,undated + + + + + + 25 + 2 + Videotapes: BetacamSP #175 Friday Night Jazz Fest Headliners,undated + + + + + + 25 + 3 + Videotapes: BetacamSP #176 Jazz,undated + + + + + + 25 + 4 + Videotapes: BetacamSP #177 Unity March,undated + + + + + + 25 + 5 + Videotapes: BetacamSP #178 Tomali B-Roll,undated + + + + + + 25 + 6 + Videotapes: BetacamSP #179 Physician’s Assistant White Coat Ceremony,undated + + + + + + 25 + 7 + Videotapes: BetacamSP #180 Wellness Tape #1,undated + + + + + + 25 + 8 + Videotapes: BetacamSP #181 Wellness Tape #2,undated + + + + + + 25 + 9 + Videotapes: BetacamSP #182 Brain Research,undated + + + + + + 25 + 10 + Videotapes: BetacamSP #183 Brain Research,undated + + + + + + 25 + 11 + Videotapes: BetacamSP #184 Honors Research Lindsay Interview and B-roll, Jessica Interview B-roll,undated + + + + + + 25 + 12 + Videotapes: BetacamSP #185 Tomalia Presser,undated + + + + + + 25 + 13 + Videotapes: BetacamSP #186 Library Opening,[2002] + + + + + + 25 + 14 + Videotapes: BetacamSP #187 Holden- Former U.S. Secretary of State, Jessica’s Food Ed. Model Presentation,undated + + + + + + 25 + 15 + Videotapes: BetacamSP #188 Special Education- Jeremy,undated + + + + + + 25 + 16 + Videotapes: BetacamSP #189 Minority Awards Banquet,undated + + + + + + 25 + 17 + Videotapes: BetacamSP #190 Library Dedication,2002 + + + + + + 25 + 18 + Videotapes: BetacamSP #191 Night of Louisiana,undated + + + + + + 25 + 19 + Videotapes: BetacamSP #192 Healthy Hearts Tape #1,undated + + + + + + 25 + 20 + Videotapes: BetacamSP #193 Healthy Hearts Tape #2,undated + + + + + + 26 + 1 + Videotapes: BetacamSP #194 Cheerleaders [Tape #1],undated + + + + + + 26 + 2 + Videotapes: BetacamSP #195 Cheerleaders, Tape #2, Cheer at Top then Interview at End,undated + + + + + + 26 + 3 + Videotapes: BetacamSP #196 Cheerleaders Tape #3,undated + + + + + + 26 + 4 + Videotapes: BetacamSP #197 Phonemics Tape #1,undated + + + + + + 26 + 5 + Videotapes: BetacamSP #198 Phonemics Tape #2, Interview only,undated + + + + + + 26 + 6 + Videotapes: BetacamSP #199 Summer Special Olympics half hour show,2001 + + + + + + 26 + 7 + Videotapes: BetacamSP #200 Leadership, Parks and Rec Climbing Wall, Bowling SAC,2001 + + + + + + 26 + 8 + Videotapes: BetacamSP #201 Tribal Signing,2002 + + + + + + 26 + 9 + Videotapes: BetacamSP #202 CEL Tape #1, Chad at house and CEL,undated + + + + + + 26 + 10 + Videotapes: BetacamSP #203 CEL Tape #2,undated + + + + + + 26 + 11 + Videotapes: BetacamSP #204 CEL Tape #3,undated + + + + + + 26 + 12 + Videotapes: BetacamSP #205 CEL Tape #4,undated + + + + + + 26 + 13 + Videotapes: BetacamSP #206 Faculty Research Expo,2001 + + + + + + 26 + 14 + Videotapes: BetacamSP #207 Brain Research Lab, 1997, CMU Seal, Woman’s Softball Win and Play,1997, undated + + + + + + 26 + 15 + Videotapes: BetacamSP #208 C=Webb for T-Curtis, Webber plays, images, More Plays, Interview,undated + + + + + + 26 + 16 + Videotapes: BetacamSP #209 Magic Johnson with MSO with LA Lakers,undated + + + + + + 26 + 17 + Videotapes: BetacamSP #210 Football IAC, Starnes and indoor complex,undated + + + + + + 26 + 18 + Videotapes: BetacamSP #211 CHP Building Groundbreaking, Fly, Various Construction, Tree Topping,2002 + + + + + + 26 + 19 + Videotapes: BetacamSP #212 label on case: Library video animation fly through, on tape: Toilet Paper Toss, Dan Majerle,undated + + + + + + 26 + 20 + Videotapes: BetacamSP #[213] CMU Indoor Practice Facility, Kelly Shorts Stadium Expansion,undated + + + + + + 27 + 1 + Videotapes: BetacamSP #214 CART Ribbon Cutting,2002 + + + + + + 27 + 2 + Videotapes: BetacamSP #215 Beaver Island, Tape #1, Bio Station, Paper making, RB Nar [Narrative], Station from beach, Cormorant research,undated + + + + + + 27 + 3 + Videotapes: BetacamSP 216 Beaver Island, Tape #2, Cormorant, Millers March, Joh Roe interview, Turtles monitor, Jim Gillingham Interview Part 1,undated + + + + + + 27 + 4 + Videotapes: BetacamSP #217 Beaver Island, Tape #3, Jim Gillingham Feature are #2, Gillingham Walk Beach, Barney’s Lake, Cormorant research barn and interview #1,undated + + + + + + 27 + 5 + Videotapes: BetacamSP #218 Beaver Island, Tape #4, Cormorant research interview #2, Monarch lardy B- roll and interview, solar thing, Gillingham in office, Undergrad nest research B-roll,undated + + + + + + 27 + 6 + Videotapes: BetacamSP #219 Beaver Island, Tape #5, undergrad nest research B-roll and interview, Gillingham B-roll eating and interview about new facility, Small mouth bass researcher, snake guy,undated + + + + + + 27 + 7 + Videotapes: BetacamSP #220 Beaver Island, Tape #6, snake guy, Lab facilities,undated + + + + + + 27 + 8 + Videotapes: BetacamSP #221 Reed Wicander,undated + + + + + + 27 + 9 + Videotapes: BetacamSP #222 Noontime runners,undated + + + + + + 27 + 10 + Videotapes: BetacamSP #223 Jay Fosgitt- cartoonist,undated + + + + + + 27 + 11 + Videotapes: BetacamSP #224 Rose trainers Tape #1,undated + + + + + + 27 + 12 + Videotapes: BetacamSP #225 Rose trainers Tape #2,undated + + + + + + 27 + 13 + Videotapes: BetacamSP #226 Thanksgiving Parade, CMU Percussion Ensemble,2002 + + + + + + 27 + 14 + Videotapes: BetacamSP #227 Jazz Festival,2003 + + + + + + 27 + 15 + Videotapes: BetacamSP #228 Delcroze Eurythmics Tape #1,undated + + + + + + 27 + 16 + Videotapes: BetacamSP #229 Delcroze Eurythmics Tape #2, Letterman Girl,undated + + + + + + 27 + 17 + Videotapes: BetacamSP #230 Student on Letterman Tape #1,undated + + + + + + 27 + 18 + Videotapes: BetacamSP #231 Tessa Holman- Sing/ Track,undated + + + + + + 27 + 19 + Videotapes: BetacamSP #232 Citizens Research Council, Spinning, Cycling, Warehouse Warriors Interview,undated + + + + + + 27 + 20 + Videotapes: BetacamSP #233 Career Day, Volleyball Player, Food Drive,undated + + + + + + 28 + 1 + Videotapes: BetacamSP #234 Night Louisiana #1,undated + + + + + + 28 + 2 + Videotapes: BetacamSP #235 Night Louisiana #2,undated + + + + + + 28 + 3 + Videotapes: BetacamSP #236 ROTC Maneuvers,undated + + + + + + 28 + 4 + Videotapes: BetacamSP #237 ROTC-Terry Moore,undated + + + + + + 28 + 5 + Videotapes: BetacamSP #238 ROTC-Roger Kessler,undated + + + + + + 28 + 6 + Videotapes: BetacamSP #239 Leadership Alpha Project LAS Dinner,undated + + + + + + 28 + 7 + Videotapes: BetacamSP #240 Leadership-Climbing Wall, etc. -Lions Club,undated + + + + + + 27 + 8 + Videotapes: BetacamSP #241 Leadership various,undated + + + + + + 27 + 9 + Videotapes: BetacamSP #242 Pow Wow- Rose Arena,undated + + + + + + 27 + 10 + Videotapes: BetacamSP #243 Pow Wow- Campground,undated + + + + + + 28 + 11 + Videotapes: BetacamSP #244 Tribe Human Resources,undated + + + + + + 28 + 12 + Videotapes: BetacamSP #245 Casino Gaming,undated + + + + + + 28 + 13 + Videotapes: BetacamSP #246 Tribal Art Display-Library,undated + + + + + + 28 + 14 + Videotapes: BetacamSP No # Central Michigan University :30 TV Spot “This is Central” Tape 2 of 4,2007 + + + + + + 28 + 15 + Videotapes: BetacamSP No # Central Michigan University :30 TV Spot “This is Central” Tape 3 of 4,2007 + + + + + + 28 + 16 + Videotapes: BetacamSP No # Central Michigan University :30 TV Spot “This is Central” 1-6,2007 + + + + + + 28 + 17 + Videotapes: BetacamSP No # CMU Minutes,Spring 2007 + + + + + + 28 + 18 + Videotapes: BetacamSP No # Client: CMU, ISCI: 8240, Title: Power :30, Agency: Production Café,undated + + + + + + 29 + 1 + Videotapes: BetacamSP #247 Service Excellence #1,undated + + + + + + 29 + 2 + Videotapes: BetacamSP #248 Service Excellence #2,undated + + + + + + 29 + 3 + Videotapes: BetacamSP #249 Service Excellence,undated + + + + + + 29 + 4 + Videotapes: BetacamSP #250 Journalism Hall of Fame Interview, Awards,undated + + + + + + 29 + 5 + Videotapes: BetacamSP #251 Resident Hall Groundbreaking, Journalism, Hall of Fame Gil Mainlancht,undated + + + + + + 29 + 6 + Videotapes: BetacamSP BetacamSP #252 Health Prof. Build [Building], Construction,undated + + + + + + 29 + 7 + Videotapes: BetacamSP #253 Residential Hall Construction early, Health Prof. Building Construction #1,2002 + + + + + + 29 + 8 + Videotapes: BetacamSP #254 Residential Hall Const. Health Prof, Building Construction #2,2002 + + + + + + 29 + 9 + Videotapes: BetacamSP #255 Tax Help, Residential Hall Interiors- Cal Seeley,undated + + + + + + 29 + 10 + Videotapes: BetacamSP #256 Gov. Granholm Visit,Jan. 2003 + + + + + + 29 + 11 + Videotapes: BetacamSP #257 AIDS Quilt,undated + + + + + + 29 + 12 + Videotapes: BetacamSP #258 Future Teacher Workshop,undated + + + + + + 29 + 13 + Videotapes: BetacamSP #259 Night Vision Unity March 2003, Big Brother at CMU #2, undated,2003, undated + + + + + + 29 + 14 + Videotapes: BetacamSP #260 Big Brothers at CMU #1,undated + + + + + + 29 + 15 + Videotapes: BetacamSP #261 Camp Quality #1,undated + + + + + + 29 + 16 + Videotapes: BetacamSP #262 Camp Quality #2,undated + + + + + + 29 + 17 + Videotapes: BetacamSP #263 Camp Quality #3,undated + + + + + + 29 + 18 + Videotapes: BetacamSP #264 Mideast Maps,undated + + + + + + 29 + 19 + Videotapes: BetacamSP #265 Mark Francek #1, MI Prof of Year,2002 + + + + + + 29 + 20 + Videotapes: BetacamSP #266 Mark Francek #2, MI Prof of Year,2002 + + + + + + 30 + 1 + Videotapes: BetacamSP #267 High Mileage car #1,undated + + + + + + 30 + 2 + Videotapes: BetacamSP #268 Student Research Expo, High Mileage Auto #2, Gentle Friday,2003 + + + + + + 30 + 3 + Videotapes: BetacamSP #269 Arachnophobia #1,undated + + + + + + 30 + 4 + Videotapes: BetacamSP #270 Arachnophobia #2,undated + + + + + + 30 + 5 + Videotapes: BetacamSP #271 Mars Girl,undated + + + + + + 30 + 6 + Videotapes: BetacamSP #272 Dendrimer Labs,undated + + + + + + 30 + 7 + Videotapes: BetacamSP #273 Mike Brown-Rose Rowdie,undated + + + + + + 30 + 8 + Videotapes: BetacamSP #274 MBB Fans,undated + + + + + + 30 + 9 + Videotapes: BetacamSP #275 Soccer Practice,undated + + + + + + 30 + 10 + Videotapes: BetacamSP #276 Marathon Class,undated + + + + + + 30 + 11 + Videotapes: BetacamSP #277 B-ball camp, PA Stuff,undated + + + + + + 30 + 12 + Videotapes: BetacamSP #278 Men’s Track,2000 + + + + + + 30 + 13 + Videotapes: BetacamSP #279 Indoor Athletic Complex, Dedication Ceremony, Weight and Turf Rooms,undated + + + + + + 31 + 1 + Videotapes: BetacamSP #280 CMU Homecoming 1952, Film xfer [transfer, undated],undated + + + + + + 31 + 2 + Videotapes: BetacamSP #281 Ann Kowaleski, msf Quilter,undated + + + + + + 31 + 3 + Videotapes: BetacamSP #282 Homecoming, Parade, Pregame,2003 + + + + + + 31 + 4 + Videotapes: BetacamSP #283 Bag Pipe Player,undated + + + + + + 31 + 5 + Videotapes: BetacamSP #286 Journalism Hall of Fame,2003 + + + + + + 31 + 6 + Videotapes: BetacamSP #287 George Campbell 90-year-old Chip Member,2003 + + + + + + 31 + 7 + Videotapes: BetacamSP #288 New Residential Hall dedication,2003 + + + + + + 31 + 8 + Videotapes: BetacamSP #289 Toilet Paper toss 100 years B-ball,2004 + + + + + + 31 + 9 + Videotapes: BetacamSP #290 Food service #1,undated + + + + + + 31 + 10 + Videotapes: BetacamSP #291 Food service #2,undated + + + + + + 31 + 11 + Videotapes: BetacamSP #292 Cell Phones on Campus,undated + + + + + + 31 + 12 + Videotapes: BetacamSP #293 Silicone Research, Bob Howell,2004 + + + + + + 31 + 13 + Videotapes: BetacamSP #294 Toast Masters,2004 + + + + + + 31 + 14 + Videotapes: BetacamSP #295 Pow-Wow,undated + + + + + + 31 + 15 + Videotapes: BetacamSP #296 Bobcat Video,undated + + + + + + 31 + 16 + Videotapes: BetacamSP #297 Groundbreaking Tribe’s treatment center,undated + + + + + + 31 + 17 + Videotapes: BetacamSP #298 Duke of Juke,undated + + + + + + 31 + 18 + Videotapes: BetacamSP #299 Fall Campus Scenic,2003 + + + + + + 31 + 19 + Videotapes: BetacamSP #300 Special Olympics Winter #1 Various Interviews including Lois Arnado/ Roger Coles,2001 + + + + + + 31 + 20 + Videotapes: BetacamSP #301 Special Olympics Winter #2, Steve Thompson, B-roll,2001 + + + + + + 32 + 1 + Videotapes: BetacamSP #302 Special Olympics Winter #3, Wertz Warriors, Opening ceremonies,2001 + + + + + + 32 + 2 + Videotapes: BetacamSP #303 Special Olympics Winter #4, Opening ceremonies, Figure Skating,2001 + + + + + + 32 + 3 + Videotapes: BetacamSP #304 Special Olympics Winter #5, Figure Skating, Alpine skiing,2001 + + + + + + 32 + 4 + Videotapes: BetacamSP #305 Special Olympics Winter #6, Cross-country skiing, YMCA,2001 + + + + + + 32 + 5 + Videotapes: BetacamSP #306 Special Olympics Winter #7. Snowshoeing,2001 + + + + + + 32 + 6 + Videotapes: BetacamSP #307 Special Olympics Summer #1, Opening Ceremonies,2001 + + + + + + 32 + 7 + Videotapes: BetacamSP #308 Special Olympics Summer #2, Opening Ceremonies,2001 + + + + + + 32 + 8 + Videotapes: BetacamSP #309 Special Olympics Summer #3, Opening Ceremonies,2001 + + + + + + 32 + 9 + Videotapes: BetacamSP #310 Special Olympics Summer #4, Various Competition,2001 + + + + + + 32 + 10 + Videotapes: BetacamSP #311 Special Olympics Summer #5, Various Competition,2001 + + + + + + 32 + 11 + Videotapes: BetacamSP #312 Special Olympics Summer #6, Various Competition,2001 + + + + + + 32 + 12 + Videotapes: BetacamSP #313 Special Olympics Summer #7, Swimming, Gymnastics,2001 + + + + + + 32 + 13 + Videotapes: BetacamSP #314 Special Olympics Summer #8, Gymnastics,2001 + + + + + + 32 + 14 + Videotapes: BetacamSP #315 Special Olympics Summer #9, Camp Bob, Gymnastics,2001 + + + + + + 32 + 15 + Videotapes: BetacamSP #316 Special Olympics Summer #10, Gymnastics, Swimming,2001 + + + + + + 32 + 16 + Videotapes: BetacamSP #317 Special Olympics Summer #11, Closing Ceremonies, Dance,2001 + + + + + + 32 + 17 + Videotapes: BetacamSP #318 Special Olympics Summer #12, PBS, Opening Ceremonies,2001 + + + + + + 32 + 18 + Videotapes: BetacamSP #319 Special Olympics Summer #13, PBS, Opening Ceremonies,2001 + + + + + + 32 + 19 + Videotapes: BetacamSP #320 Special Olympics Summer #14, PBS, Various Competition,2001 + + + + + + 32 + 20 + Videotapes: BetacamSP #321 Special Olympics Summer #15, PBS, Various Competition,2001 + + + + + + 32 + 21 + Videotapes: BetacamSP #322 Special Olympics Summer #16, PBS, Various Competition,2001 + + + + + + 33 + 1 + Videotapes: BetacamSP #323 Special Olympics Summer #17, PBS, Various Competition,2001 + + + + + + 33 + 2 + Videotapes: BetacamSP #324 Special Olympics Summer #18, PBS, Various Competition,2001 + + + + + + 33 + 3 + Videotapes: BetacamSP #325 Special Olympics Winter #1, Interviews,2002 + + + + + + 33 + 4 + Videotapes: BetacamSP #326 Special Olympics Winter #2, Speed Skating, Hornak Interview,2002 + + + + + + 33 + 5 + Videotapes: BetacamSP #327 Special Olympics Winter #3, Various Competitions,2002 + + + + + + 33 + 6 + Videotapes: BetacamSP #328 Special Olympics Winter #4, Interviews, Opening Ceremonies,2002 + + + + + + 33 + 7 + Videotapes: BetacamSP #329 Special Olympics Winter #5, Events, Various Competitions,2002 + + + + + + 33 + 8 + Videotapes: BetacamSP #330 Special Olympics Winter #6, Various Competitions,2002 + + + + + + 33 + 9 + Videotapes: BetacamSP #331 Special Olympics Winter #7, Various Competitions,2002 + + + + + + 33 + 10 + Videotapes: BetacamSP #332 Special Olympics Winter #8, Various Competitions,2002 + + + + + + 33 + 11 + Videotapes: BetacamSP #333 Special Olympics Summer #1, Jim Hornak Interview, Opening Ceremonies,2002 + + + + + + 33 + 12 + Videotapes: BetacamSP #334 Special Olympics Summer #2, Various Competition,2002 + + + + + + 33 + 13 + Videotapes: BetacamSP #335 Special Olympics Summer #3, Various Competition,2002 + + + + + + 33 + 14 + Videotapes: BetacamSP #336 Special Olympics Summer #4, Various Competition, Events,2002 + + + + + + 33 + 15 + Videotapes: BetacamSP #337 Special Olympics, Torch Run Check at MSU, Alumni Event, CMU vs MSU,undated + + + + + + 33 + 16 + Videotapes: BetacamSP #340 Office of International Education, Friendship Family,undated + + + + + + 33 + 17 + Videotapes: BetacamSP #341 Dialogue Days,2004 + + + + + + 33 + 18 + Videotapes: BetacamSP #342, Jazz Weekend,2004 + + + + + + 33 + 19 + Videotapes: BetacamSP #343 Move in day, New residential halls,2003 + + + + + + 33 + 20 + Videotapes: BetacamSP #344 Trustees Meeting,2003 + + + + + + 34 + 1 + Videotapes: BetacamSP #345 Hans Fettig, Senior Nutrient,undated + + + + + + 34 + 2 + Videotapes: BetacamSP #346 CMU Conservation,undated + + + + + + 34 + 3 + Videotapes: BetacamSP #347 Flu Shots-Health Services,undated + + + + + + 34 + 4 + Videotapes: BetacamSP #348 Book Buddies,undated + + + + + + 34 + 5 + Videotapes: BetacamSP #349 Beach Sand Bacteria #1,2003 + + + + + + 34 + 6 + Videotapes: BetacamSP #350 Beach Sand Bacteria #2,2003 + + + + + + 34 + 7 + Videotapes: BetacamSP #351 Health Professions Building, Classroom tour,undated + + + + + + 34 + 8 + Videotapes: BetacamSP #352 Health Professions Clinic,undated + + + + + + 34 + 9 + Videotapes: BetacamSP #353 CHIP Media Wall, CAVE, Sim Man,undated + + + + + + 34 + 10 + Videotapes: BetacamSP #354 MSF #1,2003 + + + + + + 34 + 11 + Videotapes: BetacamSP #355 MSF #2,2003 + + + + + + 34 + 12 + Videotapes: BetacamSP #356 MSF #3,2003 + + + + + + 34 + 13 + Videotapes: BetacamSP #357 MSF #4,2003 + + + + + + 34 + 14 + Videotapes: BetacamSP #358 Charles Weaver, B-roll,undated + + + + + + 34 + 15 + Videotapes: BetacamSP #359 Charles Weaver, Interview,2003 + + + + + + 34 + 16 + Videotapes: BetacamSP #360 English Language Institute (ELI),undated + + + + + + 34 + 17 + Videotapes: BetacamSP #361 International Club Performances,204 + + + + + + 34 + 18 + Videotapes: BetacamSP #362 Capital Campaign Reception/ Dinner,undated + + + + + + 34 + 19 + Videotapes: BetacamSP #363 Capital Campaign Dinner #2,undated + + + + + + 34 + 20 + Videotapes: BetacamSP #364 Capital Campaign Dinner #3,undated + + + + + + 35 + 1 + Videotapes: BetacamSP #365 Capital Campaign Brunch/ Reception,undated + + + + + + 35 + 2 + Videotapes: BetacamSP #366 Capital Campaign B-roll,undated + + + + + + 35 + 3 + Videotapes: BetacamSP #367 Capital Campaign B-roll #2,undated + + + + + + 35 + 4 + Videotapes: BetacamSP #368 CMU Steady Cam Video-Various #1 ,undated + + + + + + 35 + 5 + Videotapes: BetacamSP #369 CMU Steady Cam Video-Various #2,undated + + + + + + 35 + 6 + Videotapes: BetacamSP #370 CMU Kesseler Interviews #3,undated + + + + + + 35 + 7 + Videotapes: BetacamSP #371 Cap, Camp, Interview #1,undated + + + + + + 35 + 8 + Videotapes: BetacamSP #372 Cap, Camp, Interview #2,undated + + + + + + 35 + 9 + Videotapes: BetacamSP #373 Cap, Camp, Interview #3,undated + + + + + + 35 + 10 + Videotapes: BetacamSP #374 Cap, Camp, Interview #4,undated + + + + + + 35 + 11 + Videotapes: BetacamSP #375 Cap, Camp, Interview #5,undated + + + + + + 35 + 12 + Videotapes: BetacamSP #376 Campus Scenics,Spring 2003 + + + + + + 35 + 13 + Videotapes: BetacamSP #377 TP Toss [Toilet Paper Toss],2004 + + + + + + 35 + 14 + Videotapes: BetacamSP #378 Posters @ Capitol,2004 + + + + + + 35 + 15 + Videotapes: BetacamSP #379 IRS Fraud Busters,undated + + + + + + 35 + 16 + Videotapes: BetacamSP #380 Various PBS Shots ,undated + + + + + + 35 + 17 + Videotapes: BetacamSP #381 Capital Campaign wrap, Weaver Feature,undated + + + + + + 35 + 18 + Videotapes: BetacamSP #382 Health Building Ribbon Cutting,undated + + + + + + 35 + 19 + Videotapes: BetacamSP #383 Gambling Forum,undated [2004] + + + + + + 35 + 20 + Videotapes: BetacamSP #384 Student Research Expo, CMU Idol, Gambling Forum,2004 + + + + + + 36 + 1 + Videotapes: BetacamSP #385 Court in Classroom #1,undated + + + + + + 36 + 2 + Videotapes: BetacamSP #386 Court in Classroom #2,undated + + + + + + 36 + 3 + Videotapes: BetacamSP #387 Puchaiski Softball Pitcher,undated + + + + + + 36 + 4 + Videotapes: BetacamSP #388 Study Abroad Master, Internet 2,undated + + + + + + 36 + 5 + Videotapes: BetacamSP #390 CHIP Interviews (3),undated + + + + + + 36 + 6 + Videotapes: BetacamSP #391 CHIP B-roll,undated + + + + + + 36 + 7 + Videotapes: BetacamSP #392 CHIP Program Master,undated + + + + + + 36 + 8 + Videotapes: BetacamSP #393 Scholarship Testimonial Master,undated + + + + + + 36 + 9 + Videotapes: BetacamSP #394 Tribal After-School Program,undated + + + + + + 36 + 10 + Videotapes: BetacamSP #395 Testing Center,undated + + + + + + 36 + 11 + Videotapes: BetacamSP #396 B-ball in El. School,undated + + + + + + 36 + 12 + Videotapes: BetacamSP #397 Orientation Owens parts 1 and 3,undated + + + + + + 36 + 13 + Videotapes: BetacamSP #398 Orientation Owens part 2,undated + + + + + + 36 + 14 + Videotapes: BetacamSP #399 Summer Reading Clinic,undated + + + + + + 36 + 15 + Videotapes: BetacamSP #400 Massasauga Rattler Research #1,undated + + + + + + 36 + 16 + Videotapes: BetacamSP #401 Massasauga Rattler Research, Brad Swanson Interview #2,undated + + + + + + 36 + 17 + Videotapes: BetacamSP #402 Carter O Alumni visit,undated + + + + + + 36 + 18 + Videotapes: BetacamSP #403 Rao-Strider, Homecoming Parade,2004 + + + + + + 36 + 19 + Videotapes: BetacamSP #404 Weed research interview #2,undated + + + + + + 36 + 20 + Videotapes: BetacamSP #405 Airboat-Weed Research #1,undated + + + + + + 37 + 1 + Videotapes: BetacamSP #406 Brown vs Bd of Ed, Interview with Matthew Perry and Fred Gra,undated + + + + + + 37 + 2 + Videotapes: BetacamSP #407 Brown vs Bd of Ed, forum #2,undated + + + + + + 37 + 3 + Videotapes: BetacamSP #408 Music Lab,undated + + + + + + 37 + 4 + Videotapes: BetacamSP #409 Get Acquainted Day,2004 + + + + + + 37 + 5 + Videotapes: BetacamSP #410 Mainstage,2004 + + + + + + 37 + 6 + Videotapes: BetacamSP #411 Michael Moore Appearance,undated + + + + + + 37 + 7 + Videotapes: BetacamSP #412 School House Grant,undated + + + + + + 37 + 8 + Videotapes: BetacamSP #413 RPL (Recreation, Parks, and Leisure) Gobblefest Poker,undated + + + + + + 37 + 9 + Videotapes: BetacamSP #414 RPL Climbing Wall,undated + + + + + + 37 + 10 + Videotapes: BetacamSP #415 Michigan story Fest #1, Garrison Keillor,2004 + + + + + + 37 + 11 + Videotapes: BetacamSP #416 Michigan Story Fest #2,2004 + + + + + + 37 + 12 + Videotapes: BetacamSP #417 Michigan Story Fest #3,2004 + + + + + + 37 + 13 + Videotapes: BetacamSP #418 Garrison Keillor at CMU,2004 + + + + + + 37 + 14 + Videotapes: BetacamSP #419 SAC Video #1,undated + + + + + + 38 + 1 + Videotapes: BetacamSP #82 Graduation,December 2004 + + + + + + 38 + 2 + Videotapes: BetacamSP #83 Campus Tour 1998; Academic Advising, Job Fair, 1999,1998; 1999 + + + + + + 38 + 3 + Videotapes: BetacamSP #84 Sports Complex Groundbreaking, 1997; CMU and You Day, 1998,1997; 1998 + + + + + + 38 + 4 + Videotapes: BetacamSP #85 Student Success Center, 1997; Minority Residential Hall, 2000,1997; 2000 + + + + + + 38 + 5 + Videotapes: BetacamSP #86 Student Research Expo,1999 + + + + + + 38 + 6 + Videotapes: BetacamSP #87 Broadway Rehearsal,undated + + + + + + 38 + 7 + Videotapes: BetacamSP #88 Welcome Back Activities,undated + + + + + + 38 + 8 + Videotapes: BetacamSP #89 Climbing Club,undated + + + + + + 38 + 9 + Videotapes: BetacamSP #90 Civility Panel,undated + + + + + + 38 + 10 + Videotapes: BetacamSP #91 1 in 4 #1,undated + + + + + + 38 + 11 + Videotapes: BetacamSP #92 1 in 4 #2,undated + + + + + + 38 + 12 + Videotapes: BetacamSP #93 Art Van-CMU Intern, Vlassis Interview and B-roll,undated + + + + + + 39 + 1 + Videotapes: BetacamSP #94 Bandit Industries, CMU Intern,undated + + + + + + 39 + 2 + Videotapes: BetacamSP #95 Vlassis, 2 CMU Interns,undated + + + + + + 39 + 3 + Videotapes: BetacamSP #96 Troy CEL Classes,undated + + + + + + 39 + 4 + Videotapes: BetacamSP #97 Pat Summit Presser Leadership Interview, Unveiling,undated + + + + + + 39 + 5 + Videotapes: BetacamSP #98 Library Construction Update, Sandy Pety Kiewice- Alum still, Bret Holey Alum NBC,2001 + + + + + + 39 + 6 + Videotapes: BetacamSP #99 CEL Library Services,undated + + + + + + 39 + 7 + Videotapes: BetacamSP #100 Wx Shots, Library Window reflect PBS Tower,undated + + + + + + 39 + 8 + Videotapes: BetacamSP #101 Campus Scenics, Library Construction,2000 + + + + + + 39 + 9 + Videotapes: BetacamSP #102 Library Construction Tour,2000 + + + + + + 39 + 10 + Videotapes: BetacamSP ##103 No Label,undated + + + + + + 39 + 11 + Videotapes: BetacamSP 104 Library Groundbreaking, outside shots prior to construction,1999 + + + + + + 39 + 12 + Videotapes: BetacamSP #105 Library, Arches lifted in place,1999 + + + + + + 39 + 13 + Videotapes: BetacamSP #106 No Label,undated + + + + + + 39 + 14 + Videotapes: BetacamSP #107 Various Business Classes,undated + + + + + + 39 + 15 + Videotapes: BetacamSP #108 Business Classes, SAP (Systems Applications and Products in data processing) Lab, CBA sign, Grawn exteriors,undated + + + + + + 39 + 16 + Videotapes: BetacamSP #109 Orientation,2001 + + + + + + 39 + 17 + Videotapes: BetacamSP #110 Little Shop of Horrors – Play,2001 + + + + + + 39 + 18 + Videotapes: BetacamSP #111 No Labelundated + + + + + + 39 + 19 + Videotapes: BetacamSP #112 WMHW Takeover,undated + + + + + + 39 + 20 + Videotapes: BetacamSP #113 E-band,undated + + + + + + 40 + 1 + News, organized by Subjects, S-W: Student Media,1985-2000 + + + + + + 40 + 2 + News, organized by Subjects, S-W: Student Organizations,1993-2013 + + + + + + 40 + 3 + News, organized by Subjects, S-W: Students,1997-2012 + + + + + + 40 + 4 + News, organized by Subjects, S-W: Teacher Education Professional Development,1985-2014 + + + + + + 40 + 5 + News, organized by Subjects, S-W: Theatre,1989-2014 + + + + + + 40 + 6 + News, organized by Subjects, S-W: Transportation Studies Center,1994 + + + + + + 40 + 7 + News, organized by Subjects, S-W: Tuition and fees,1977-2012 + + + + + + 40 + 8 + News, organized by Subjects, S-W: University Park,1987-1992 + + + + + + 40 + 9 + News, organized by Subjects, S-W: University Relations,1987-1999 + + + + + + 40 + 10 + News, organized by Subjects, S-W: Veterans Resource Center,2012-2013 + + + + + + 40 + 11 + News, organized by Subjects, S-W: Volunteer Center,1994-2014 + + + + + + 40 + 12 + News, organized by Subjects, S-W: Women’s Studies Program,1990-2006 + + + + + + 40 + 13 + News, organized by Subjects, S-W: Wood Chip Plan,2001 + + + + + + 41 + 1 + News, organized by Subject P-S: Progress Edition,1990 + + + + + + 41 + 2 + News, organized by Subject P-S: Program Board,2002-2006 + + + + + + 41 + 3 + News, organized by Subject P-S: Provost,1986-2013 + + + + + + 41 + 4 + News, organized by Subject P-S: Psychology,1988-2014 + + + + + + 41 + 5 + News, organized by Subject P-S: Public Broadcasting,1986-2009 + + + + + + 41 + 6 + News, organized by Subject P-S: Public Relations,1990-2008 + + + + + + 41 + 7 + News, organized by Subject P-S: Public Safety,1985-2014 + + + + + + 41 + 8 + News, organized by Subject P-S: Real Estate Program,2006 + + + + + + 41 + 9 + News, organized by Subject P-S: Recreation and Park Administration,1991-2014 + + + + + + 41 + 10 + News, organized by Subject P-S: Registration,1986-2012 + + + + + + 41 + 11 + News, organized by Subject P-S: Religion,1986-2006 + + + + + + 41 + 12 + News, organized by Subject P-S: Residences and Auxiliary Services,1998-2007 + + + + + + 41 + 13 + News, organized by Subject P-S: Residential Colleges,1999-2005 + + + + + + 41 + 14 + News, organized by Subject P-S: Retirements,1990-2012 + + + + + + 41 + 15 + News, organized by Subject P-S: SAP,1998-2014 + + + + + + 41 + 16 + News, organized by Subject P-S: Saginaw Chippewa Indian Tribe,1995-2002 + + + + + + 41 + 17 + News, organized by Subject P-S: Scholarships/ Awards,1991-2013 + + + + + + 41 + 18 + News, organized by Subject P-S: School of Banking,1991-2005 + + + + + + 41 + 19 + News, organized by Subject P-S: Sculpture,1991 + + + + + + 41 + 20 + News, organized by Subject P-S: School of Public Service and Global Citizenship,2013 + + + + + + 41 + 21 + News, organized by Subject P-S: Science and Technology,2000-2005 + + + + + + 41 + 22 + News, organized by Subject P-S: Sesquicentennial of Michigan prepared by CMU,1986-1987 + + + + + + 41 + 23 + News, organized by Subject P-S: Sexual Assault Programs,1995-1996 + + + + + + 41 + 24 + News, organized by Subject P-S: Small Business Center,1989-2000 + + + + + + 41 + 25 + News, organized by Subject P-S: SmartZone,2001-2007 + + + + + + 41 + 26 + News, organized by Subject P-S: SASW (Sociology, Anthropology and Social Work),1990-2014 + + + + + + 41 + 27 + News, organized by Subject P-S: Soviet Exchange,1987-1991 + + + + + + 41 + 28 + News, organized by Subject P-S: Speakers,2012-2014 + + + + + + 41 + 29 + News, organized by Subject P-S: Special days/ events,1992-2014 + + + + + + 41 + 30 + News, organized by Subject P-S: Special Olympics,1988-2014 + + + + + + 41 + 31 + News, organized by Subject P-S: Speech Communication and Dramatic Arts,1989-2008 + + + + + + 41 + 32 + News, organized by Subject P-S: Sports Medicine,2000-2003 + + + + + + 41 + 33 + News, organized by Subject P-S: State Literacy Resource Center,1994-1998 + + + + + + 41 + 34 + News, organized by Subject P-S: Strategic Planning,1989-1990 + + + + + + 41 + 35 + News, organized by Subject P-S: Staff Personnel,1994-1996 + + + + + + 41 + 36 + News, organized by Subject P-S: Student Activity Center,1994-2001 + + + + + + 41 + 37 + News, organized by Subject P-S: Student Affairs,1984-2012 + + + + + + 41 + 38 + News, organized by Subject P-S: Student Life,1986-2008 + + + + + + 42 + 1 + Information Services News, 1979-1982: Information Services News, 201-400,1979-1980 + + + + + + 42 + 2 + Information Services News, 1979-1982: Information Services News, 401-600,1980 + + + + + + 42 + 3 + Information Services News, 1979-1982: Information Services News, 601-800,1980 + + + + + + 42 + 4 + Information Services News, 1979-1982: Information Services News, 801-1000,1980 + + + + + + 42 + 5 + Information Services News, 1979-1982: Information Services News, 1001-1200,1980 + + + + + + 42 + 6 + Information Services News, 1979-1982: Information Services News, 1201-1400,1981 + + + + + + 42 + 7 + Information Services News, 1979-1982: Information Services News, 1401-1579,1981 + + + + + + 42 + 8 + Information Services News, 1979-1982: Information Services News, 001-236,1981 + + + + + + 42 + 49 + Information Services News, 1979-1982: Information Services News, 237-532,1981-1982 + + + + + + 42 + 10 + Information Services News, 1979-1982: Information Services News, 524-751,March-June 1982 + + + + + + 43 + 1 + Information Services News, 1982-1984: Information Services News, 761-1036,July-November 1982 + + + + + + 43 + 2 + Information Services News, 1982-1984: Information Services News, 1037-207,December 1982-March 1983 + + + + + + 43 + 3 + Information Services News, 1982-1984: Information Services News, 208-500,April-September 1983 + + + + + + 43 + 4 + Information Services News, 1982-1984: Information Services News, 501-663,September-November 1983 + + + + + + 43 + 5 + Information Services News, 1982-1984: Information Services News, 664-850,1983-1984 + + + + + + 43 + 6 + Information Services News, 1982-1984: Information Services News, 851-1200,1984 + + + + + + 43 + 7 + Information Services News, 1982-1984: Information Services News, 1-199,1984 + + + + + + 43 + 8 + Information Services News, 1982-1984: Information Services News, 200-399,1984 + + + + + + 44 + 1 + Information Services News, 1984-1987: Information Services News, 400-600,1984-1985 + + + + + + 44 + 2 + Information Services News, 1984-1987: Information Services News, 601-824,1985 + + + + + + 44 + 3 + Information Services News, 1984-1987: Information Services News, 344-580,1986 + + + + + + 44 + 4 + Information Services News, 1984-1987: Information Services News, 581-759,1986 + + + + + + 44 + 5 + Information Services News, 1984-1987: Information Services News, 760-939,1986-1987 + + + + + + 44 + 6 + Information Services News, 1984-1987: Information Services News, 940-1167,1987 + + + + + + 44 + 7 + Information Services News, 1984-1987: Information Services News, 1171-1357,1987 + + + + + + 45 + 1 + Information Services News, 1987-1990: Information Services News, 1359-1608,1987-1988 + + + + + + 45 + 2 + Information Services News, 1987-1990: Information Services News, 1609-1824,1988 + + + + + + 45 + 3 + Information Services News, 1987-1990: Information Services News, 1825-2089,1988-1989 + + + + + + 45 + 4 + Information Services News, 1987-1990: Information Services News, 2090-2281,1989 + + + + + + 45 + 5 + Information Services News, 1987-1990: Information Services News, 2283-2467,1989 + + + + + + 45 + 6 + Information Services News, 1987-1990: Information Services News, 2468-2705,1989 + + + + + + 45 + 7 + Information Services News, 1987-1990: Information Services News, 2524-2876,1989-1990 + + + + + + 45 + 8 + Information Services News, 1987-1990: Information Services News, 2877-3056,1990 + + + + + + 46 + 1 + Information Services News, 1990-1994: Information Services News, 3057-3200,1990 + + + + + + 46 + 2 + Information Services News, 1990-1994: Information Services News, 3201-3404,1990-1991 + + + + + + 46 + 3 + Information Services News, 1990-1994: Information Services News, 3405-3653,1991 + + + + + + 46 + 4 + Information Services News, 1990-1994: Information Services News, 3654-3998,1991-1992 + + + + + + 46 + 5 + Information Services News, 1990-1994: Information Services News, 4000-4293,1992 + + + + + + 46 + 6 + Information Services News, 1990-1994: Information Services News, 4294-4675,1992-1993 + + + + + + 46 + 7 + Information Services News, 1990-1994: Information Services News, 4677-5008,1993-1994 + + + + + + 47 + 1 + Information Services News, 1994-1997: Information Services News, 5009-5375,1994-1995 + + + + + + 47 + 2 + Information Services News, 1994-1997: Information Services News, 5376-5639,1995 + + + + + + 47 + 3 + Information Services News, 1994-1997: Information Services News, 5641-5891,1995-1996 + + + + + + 47 + 4 + Information Services News, 1994-1997: Information Services News, 5892-6038,1996 + + + + + + 47 + 5 + Information Services News, 1994-1997: Information Services News, 6039-6102,1996 + + + + + + 47 + 6 + Information Services News, 1994-1997: Information Services News, 6103-6319,1996-1997 + + + + + + 47 + 7 + Information Services News, 1994-1997: Information Services News, 6320-6512,1997 + + + + + + 48 + 1 + News Organized by Subject, CMU buildings, A-Z: Troutman,undated + + + + + + 48 + 2 + News Organized by Subject, CMU buildings, A-Z: Trout,undated + + + + + + 48 + 3 + News Organized by Subject, CMU buildings, A-Z: University Center (UC),undated + + + + + + 48 + 4 + News Organized by Subject, CMU buildings, A-Z: Veit’s Woods,undated + + + + + + 48 + 5 + News Organized by Subject, CMU buildings, A-Z: Warriner,undated + + + + + + 48 + 6 + News Organized by Subject, CMU buildings, A-Z: Wheele,undated + + + + + + 48 + 7 + News Organized by Subject, CMU buildings, A-Z: Wightman,undated + + + + + + 48 + 8 + News Organized by Subject, CMU buildings, A-Z: Woldt,undated + + + + + + 48 + 9 + News Organized by Subject, CMU buildings, A-Z: New residence halls (by Woldt),undated + + + + + + 48 + 10 + News Organized by Subject, CMU buildings, A-Z: Wood Chip Plant,undated + + + + + + 48 + 11 + News Organized by Subject, CMU buildings, A-Z: Nation’s Bicentennial News Releases,undated + + + + + + 48 + 12 + News Organized by Subject, CMU buildings, A-Z: Old Library,undated + + + + + + 48 + 13 + News Organized by Subject, CMU buildings, A-Z: Park Library,undated + + + + + + 48 + 14 + News Organized by Subject, CMU buildings, A-Z: Park Library Addition,undated + + + + + + 48 + 15 + News Organized by Subject, CMU buildings, A-Z: Pearce Hall,undated + + + + + + 48 + 16 + News Organized by Subject, CMU buildings, A-Z: President’s House,undated + + + + + + 48 + 17 + News Organized by Subject, CMU buildings, A-Z: Gerald L. Poor Museum (old school house),undated + + + + + + 48 + 18 + News Organized by Subject, CMU buildings, A-Z: Powers Music Building,undated + + + + + + 48 + 19 + News Organized by Subject, CMU buildings, A-Z: Robinson,undated + + + + + + 48 + 20 + News Organized by Subject, CMU buildings, A-Z: Ronan,undated + + + + + + 48 + 21 + News Organized by Subject, CMU buildings, A-Z: Rose Center,undated + + + + + + 48 + 22 + News Organized by Subject, CMU buildings, A-Z: Rowe,undated + + + + + + 48 + 23 + News Organized by Subject, CMU buildings, A-Z: Rowe Hall Fire ,undated + + + + + + 48 + 24 + News Organized by Subject, CMU buildings, A-Z: Saxe,undated + + + + + + 48 + 25 + News Organized by Subject, CMU buildings, A-Z: Sloan,undated + + + + + + 48 + 26 + News Organized by Subject, CMU buildings, A-Z: Smith Hall,undated + + + + + + 48 + 27 + News Organized by Subject, CMU buildings, A-Z: Student Activity Center,undated + + + + + + 48 + 28 + News Organized by Subject, CMU buildings, A-Z: Sweeny,undated + + + + + + 48 + 29 + News Organized by Subject, CMU buildings, A-Z: Tate,undated + + + + + + 48 + 30 + News Organized by Subject, CMU buildings, A-Z: Thorpe,undated + + + + + + 48 + 31 + News Organized by Subject, CMU buildings, A-Z: Towers Additions,undated + + + + + + 48 + 32 + News Organized by Subject, CMU buildings, A-Z: Health Building,undated + + + + + + 48 + 33 + News Organized by Subject, CMU buildings, A-Z: New IET Building,undated + + + + + + 48 + 34 + News Organized by Subject, CMU buildings, A-Z: Herrig,undated + + + + + + 48 + 35 + News Organized by Subject, CMU buildings, A-Z: Kelly/ Shorts Football Stadium,undated + + + + + + 48 + 36 + News Organized by Subject, CMU buildings, A-Z: Larzelere,undated + + + + + + 48 + 37 + News Organized by Subject, CMU buildings, A-Z: Library and Information Services Center,undated + + + + + + 48 + 38 + News Organized by Subject, CMU buildings, A-Z: Married Housing,undated + + + + + + 48 + 39 + News Organized by Subject, CMU buildings, A-Z: Merrill,undated + + + + + + 48 + 40 + News Organized by Subject, CMU buildings, A-Z: Moore,undated + + + + + + 48 + 41 + News Organized by Subject, CMU buildings, A-Z: Motor Pool,undated + + + + + + 48 + 42 + News Organized by Subject, CMU buildings, A-Z: Music Building,undated + + + + + + 48 + 43 + News Organized by Subject, CMU buildings, A-Z: North Art Studio Art Building (New),undated + + + + + + 48 + 44 + News Organized by Subject, CMU buildings, A-Z: Alumni House Building,undated + + + + + + 48 + 45 + News Organized by Subject, CMU buildings, A-Z: Alumni Field,undated + + + + + + 48 + 46 + News Organized by Subject, CMU buildings, A-Z: Applied Business Studios Complex,undated + + + + + + 48 + 47 + News Organized by Subject, CMU buildings, A-Z: Anspach Hall,undated + + + + + + 48 + 48 + News Organized by Subject, CMU buildings, A-Z: Arts and Education Center,undated + + + + + + 48 + 49 + News Organized by Subject, CMU buildings, A-Z: Barnard,undated + + + + + + 48 + 50 + News Organized by Subject, CMU buildings, A-Z: Barnes,undated + + + + + + 48 + 50 + News Organized by Subject, CMU buildings, A-Z: Beddow,undated + + + + + + 48 + 51 + News Organized by Subject, CMU buildings, A-Z: Biomedical Sciences Building,undated + + + + + + 48 + 52 + News Organized by Subject, CMU buildings, A-Z: Brooks,undated + + + + + + 48 + 53 + News Organized by Subject, CMU buildings, A-Z: Bush Theater,undated + + + + + + 48 + 54 + News Organized by Subject, CMU buildings, A-Z: Calkins,undated + + + + + + 48 + 55 + News Organized by Subject, CMU buildings, A-Z: Carey,undated + + + + + + 48 + 56 + News Organized by Subject, CMU buildings, A-Z: Celani Hall,undated + + + + + + 48 + 57 + News Organized by Subject, CMU buildings, A-Z: Central Energy Facility,undated + + + + + + 48 + 58 + News Organized by Subject, CMU buildings, A-Z: Central Hall,undated + + + + + + 48 + 59 + News Organized by Subject, CMU buildings, A-Z: CMU Building (original),undated + + + + + + 48 + 60 + News Organized by Subject, CMU buildings, A-Z: CMEO Building,undated + + + + + + 48 + 61 + News Organized by Subject, CMU buildings, A-Z: Combined Services,undated + + + + + + 48 + 62 + News Organized by Subject, CMU buildings, A-Z: Clarke Historical Library,undated + + + + + + 48 + 63 + News Organized by Subject, CMU buildings, A-Z: Cobb,undated + + + + + + 48 + 64 + News Organized by Subject, CMU buildings, A-Z: Dormitories-Miscellaneous,undated + + + + + + 48 + 65 + News Organized by Subject, CMU buildings, A-Z: Dow Science,undated + + + + + + 48 + 66 + News Organized by Subject, CMU buildings, A-Z: New Education Building ,undated + + + + + + 48 + 67 + News Organized by Subject, CMU buildings, A-Z: Central Energy Facility,undated + + + + + + 48 + 68 + News Organized by Subject, CMU buildings, A-Z: Emmons,undated + + + + + + 48 + 69 + News Organized by Subject, CMU buildings, A-Z: Events Center Building,undated + + + + + + 48 + 70 + News Organized by Subject, CMU buildings, A-Z: Fabiano Hall,undated + + + + + + 48 + 71 + News Organized by Subject, CMU buildings, A-Z: Finch Fieldhouse,undated + + + + + + 48 + 72 + News Organized by Subject, CMU buildings, A-Z: Foust Hall Health Service Building,undated + + + + + + 48 + 73 + News Organized by Subject, CMU buildings, A-Z: Graduate Housing,undated + + + + + + 48 + 74 + News Organized by Subject, CMU buildings, A-Z: Grand Haven Dunes Property,undated + + + + + + 48 + 75 + News Organized by Subject, CMU buildings, A-Z: Grawn,undated + + + + + + 49 + 1 + Faculty News Releases, A-D: Joyce Lescelius Abler, Computer science,undated + + + + + + 49 + 2 + Faculty News Releases, A-D: Abraitis, Saul Justin, Library Acquisitions,undated + + + + + + 49 + 3 + Faculty News Releases, A-D: Acevedo, Ignacio,undated + + + + + + 49 + 4 + Faculty News Releases, A-D: Adams, Frederick,undated + + + + + + 49 + 5 + Faculty News Releases, A-D: Loretta M. Adams, Speech and Drama,undated + + + + + + 49 + 6 + Faculty News Releases, A-D: William L. Adams,undated + + + + + + 49 + 7 + Faculty News Releases, A-D: Adewui, Abalo,undated + + + + + + 49 + 8 + Faculty News Releases, A-D: Adinkrah, Mensah,undated + + + + + + 49 + 9 + Faculty News Releases, A-D: Ahlswede, Thomas, Computer Science,undated + + + + + + 49 + 10 + Faculty News Releases, A-D: Aikenhead, Douglas,undated + + + + + + 49 + 11 + Faculty News Releases, A-D: Aizawa, Kenneth,undated + + + + + + 49 + 12 + Faculty News Releases, A-D: Akhtar, Shakil,undated + + + + + + 49 + 13 + Faculty News Releases, A-D: Albrecht, Moonyeen,undated + + + + + + 49 + 14 + Faculty News Releases, A-D: Alvord, Lori Arviso,undated + + + + + + 49 + 15 + Faculty News Releases, A-D: Allen, Keith C., Off Campus Education,undated + + + + + + 49 + 16 + Faculty News Releases, A-D: Allen, Richard K., Speech and Drama,undated + + + + + + 49 + 17 + Faculty News Releases, A-D: Allman, Melanie,undated + + + + + + 49 + 18 + Faculty News Releases, A-D: Alls, Gregory Arthur,undated + + + + + + 49 + 19 + Faculty News Releases, A-D: Alm, Elizabeth Wheeler,undated + + + + + + 49 + 20 + Faculty News Releases, A-D: Alsager, David, Intramurals,undated + + + + + + 49 + 21 + Faculty News Releases, A-D: Althausen, John,undated + + + + + + 49 + 22 + Faculty News Releases, A-D: Alton, Anne,undated + + + + + + 49 + 23 + Faculty News Releases, A-D: Alvord, Lori Arviso,undated + + + + + + 49 + 24 + Faculty News Releases, A-D: Andera, Frank,undated + + + + + + 49 + 25 + Faculty News Releases, A-D: Anderson, Joan, Residence Hall Director,undated + + + + + + 49 + 26 + Faculty News Releases, A-D: Anderson, Tammy, SASW,undated + + + + + + 49 + 27 + Faculty News Releases, A-D: Anderson, Will,undated + + + + + + 49 + 28 + Faculty News Releases, A-D: Andrea, Frank, Business,undated + + + + + + 49 + 29 + Faculty News Releases, A-D: Andrzejewski, Mary,undated + + + + + + 49 + 30 + Faculty News Releases, A-D: Angera, Jeffrey,undated + + + + + + 49 + 31 + Faculty News Releases, A-D: Anthony, Thomas,undated + + + + + + 49 + 32 + Faculty News Releases, A-D: Antonini, Joseph E.,undated + + + + + + 49 + 33 + Faculty News Releases, A-D: Apter, Ronnie,undated + + + + + + 49 + 34 + Faculty News Releases, A-D: Arben, Philip D.,undated + + + + + + 49 + 35 + Faculty News Releases, A-D: Arbogast, Gary,undated + + + + + + 49 + 36 + Faculty News Releases, A-D: Arch, Thomas W., Student Teaching,undated + + + + + + 49 + 37 + Faculty News Releases, A-D: Arndt, Terry L.,undated + + + + + + 49 + 38 + Faculty News Releases, A-D: Arnold, Lois,undated + + + + + + 49 + 39 + Faculty News Releases, A-D: Aron, Iming W.,undated + + + + + + 49 + 40 + Faculty News Releases, A-D: Aron, Robert, Geography,undated + + + + + + 49 + 41 + Faculty News Releases, A-D: Ash, David,undated + + + + + + 49 + 42 + Faculty News Releases, A-D: Assaf, Ahmad M.,undated + + + + + + 49 + 43 + Faculty News Releases, A-D: Austin, Chris,undated + + + + + + 49 + 44 + Faculty News Releases, A-D: Aylor, May Lou,undated + + + + + + 49 + 45 + Faculty News Releases, A-D: Azkoul, Jihad,undated + + + + + + 49 + 46 + Faculty News Releases, A-D: Backs, Richard,undated + + + + + + 49 + 47 + Faculty News Releases, A-D: Bahaee, Mahmood S.,undated + + + + + + 49 + 48 + Faculty News Releases, A-D: Bahnsen Jennifer J.,undated + + + + + + 49 + 49 + Faculty News Releases, A-D: Bailey, Norma,undated + + + + + + 49 + 50 + Faculty News Releases, A-D: T. Bambas,undated + + + + + + 49 + 51 + Faculty News Releases, A-D: Bandyopadhyay, Jayanta K., Management,undated + + + + + + 49 + 52 + Faculty News Releases, A-D: Bankirer, Marcia,undated + + + + + + 49 + 53 + Faculty News Releases, A-D: Barbour, G. Jeffrey,undated + + + + + + 49 + 54 + Faculty News Releases, A-D: Barclay, Robert,undated + + + + + + 49 + 55 + Faculty News Releases, A-D: Bardens, Ann,undated + + + + + + 49 + 56 + Faculty News Releases, A-D: Barker, Deborah A.,undated + + + + + + 49 + 57 + Faculty News Releases, A-D: Barker, James,undated + + + + + + 49 + 58 + Faculty News Releases, A-D: Bailey, Robert E., Biology,undated + + + + + + 49 + 59 + Faculty News Releases, A-D: Ball, Janice Marie,undated + + + + + + 49 + 60 + Faculty News Releases, A-D: Ballenger, Bill,undated + + + + + + 49 + 61 + Faculty News Releases, A-D: Barnes, Donald C.,undated + + + + + + 49 + 62 + Faculty News Releases, A-D: Barrett, Marilyn,undated + + + + + + 49 + 63 + Faculty News Releases, A-D: Michael Barta,undated + + + + + + 49 + 64 + Faculty News Releases, A-D: Basu, Bharati, Economics,undated + + + + + + 49 + 65 + Faculty News Releases, A-D: Batcheller, James,undated + + + + + + 49 + 66 + Faculty News Releases, A-D: Bates, George,undated + + + + + + 49 + 67 + Faculty News Releases, A-D: Joyce A. Baugh,undated + + + + + + 49 + 68 + Faculty News Releases, A-D: Baxter, Martin,undated + + + + + + 49 + 69 + Faculty News Releases, A-D: Bean, Jeffrey,undated + + + + + + 49 + 70 + Faculty News Releases, A-D: Beane, Rose,undated + + + + + + 49 + 71 + Faculty News Releases, A-D: Beaulieu, Ronald,undated + + + + + + 49 + 72 + Faculty News Releases, A-D: Bechtold, Brigitte Helene,undated + + + + + + 49 + 73 + Faculty News Releases, A-D: Becker, Brian,undated + + + + + + 49 + 74 + Faculty News Releases, A-D: Terry Alan Beehr, Psychology,undated + + + + + + 49 + 75 + Faculty News Releases, A-D: Beere, Carole A., Psychology,undated + + + + + + 49 + 76 + Faculty News Releases, A-D: Beere, Donald B.,undated + + + + + + 49 + 77 + Faculty News Releases, A-D: Behm, Constance M.,undated + + + + + + 49 + 78 + Faculty News Releases, A-D: Beidleman, Tom,undated + + + + + + 49 + 79 + Faculty News Releases, A-D: Benison, Kathy,undated + + + + + + 49 + 80 + Faculty News Releases, A-D: Benjamin, Daniel W., Biology,undated + + + + + + 49 + 81 + Faculty News Releases, A-D: Benjamin, Thomas, History,undated + + + + + + 49 + 82 + Faculty News Releases, A-D: Benson, Edmund W., Chemistry,undated + + + + + + 49 + 83 + Faculty News Releases, A-D: Benson, Patricia,undated + + + + + + 49 + 84 + Faculty News Releases, A-D: Bergeson, John B.,undated + + + + + + 49 + 85 + Faculty News Releases, A-D: Berk, Ari,undated + + + + + + 49 + 86 + Faculty News Releases, A-D: Berman, Maxine,undated + + + + + + 49 + 87 + Faculty News Releases, A-D: Berman, Mitch,undated + + + + + + 49 + 88 + Faculty News Releases, A-D: Berry, Robert I.,undated + + + + + + 49 + 89 + Faculty News Releases, A-D: Bettisworth, Denny L.,undated + + + + + + 49 + 90 + Faculty News Releases, A-D: Bidasaria, Hari,undated + + + + + + 49 + 81 + Faculty News Releases, A-D: Bidwell, James K., Mathematics,undated + + + + + + 49 + 82 + Faculty News Releases, A-D: Biggs, Deborah,undated + + + + + + 49 + 83 + Faculty News Releases, A-D: Billingham, Carol J., Business,undated + + + + + + 49 + 84 + Faculty News Releases, A-D: Bisard, Walter J., Physics,undated + + + + + + 49 + 85 + Faculty News Releases, A-D: Bisard, Walter J., Physics,undated + + + + + + 49 + 86 + Faculty News Releases, A-D: Bishop, Ronald,undated + + + + + + 49 + 87 + Faculty News Releases, A-D: Bissot, Barbara A., Elementary Education,undated + + + + + + 49 + 88 + Faculty News Releases, A-D: Bishop, Ronald C., Management,undated + + + + + + 49 + 89 + Faculty News Releases, A-D: Bittlinger, Peter, Political Science,undated + + + + + + 49 + 90 + Faculty News Releases, A-D: Blackburn-Brockman, Elizabeth,undated + + + + + + 49 + 91 + Faculty News Releases, A-D: Bland, Roger G., Biology,undated + + + + + + 49 + 92 + Faculty News Releases, A-D: Blevins, Jeffrey,undated + + + + + + 49 + 93 + Faculty News Releases, A-D: Dale Blount, English,undated + + + + + + 49 + 94 + Faculty News Releases, A-D: Blystone, Kathy,undated + + + + + + 49 + 95 + Faculty News Releases, A-D: William M. Bocks,undated + + + + + + 49 + 96 + Faculty News Releases, A-D: Bolema, Theodore,undated + + + + + + 49 + 97 + Faculty News Releases, A-D: Boles, Frank,undated + + + + + + 49 + 98 + Faculty News Releases, A-D: Bonnell, Bruce,undated + + + + + + 49 + 99 + Faculty News Releases, A-D: Born, James E., Art,undated + + + + + + 49 + 100 + Faculty News Releases, A-D: Boudreau, Timothy,undated + + + + + + 49 + 101 + Faculty News Releases, A-D: Bow, James, Journalism,undated + + + + + + 49 + 102 + Faculty News Releases, A-D: Bowlby, Anneliese, Psychology,undated + + + + + + 49 + 103 + Faculty News Releases, A-D: Boylon, Elizabeth,undated + + + + + + 49 + 104 + Faculty News Releases, A-D: Belknap, Linda,undated + + + + + + 49 + 105 + Faculty News Releases, A-D: Susan M. Bradley, Accounting,undated + + + + + + 49 + 106 + Faculty News Releases, A-D: Bragg, Shirley,undated + + + + + + 49 + 107 + Faculty News Releases, A-D: Brandell, Mary Ellen, Speech and Dramatic Arts,undated + + + + + + 49 + 108 + Faculty News Releases, A-D: Brandon, David,undated + + + + + + 49 + 109 + Faculty News Releases, A-D: Brannan, Samuel J., Mathematics,undated + + + + + + 49 + 110 + Faculty News Releases, A-D: Brannan, Timothy,undated + + + + + + 49 + 111 + Faculty News Releases, A-D: Branyan, Robert L., Dean of Graduate Studies,undated + + + + + + 49 + 112 + Faculty News Releases, A-D: Brea, Jorge,undated + + + + + + 49 + 113 + Faculty News Releases, A-D: Brideall, Thomas M.,undated + + + + + + 49 + 114 + Faculty News Releases, A-D: Ann Marie N. Bridges,undated + + + + + + 49 + 115 + Faculty News Releases, A-D: Lamar Bridges,undated + + + + + + 49 + 116 + Faculty News Releases, A-D: Bridges, Sherwood,undated + + + + + + 49 + 117 + Faculty News Releases, A-D: Brisbane, Peggy,undated + + + + + + 49 + 118 + Faculty News Releases, A-D: Brockman, Elizabeth,undated + + + + + + 49 + 119 + Faculty News Releases, A-D: Bromley, Robert G.,undated + + + + + + 49 + 120 + Faculty News Releases, A-D: Bronson, Larry L., English,undated + + + + + + 49 + 121 + Faculty News Releases, A-D: Brookes, Christi,undated + + + + + + 49 + 122 + Faculty News Releases, A-D: Brookins-Fisher, Jodi,undated + + + + + + 49 + 123 + Faculty News Releases, A-D: Brown, Elizabeth J., Music,undated + + + + + + 49 + 124 + Faculty News Releases, A-D: Brown, Paula,undated + + + + + + 49 + 125 + Faculty News Releases, A-D: Brugger, Jane,undated + + + + + + 49 + 126 + Faculty News Releases, A-D: Brunner, Lawrence,undated + + + + + + 49 + 127 + Faculty News Releases, A-D: Buch, David, Music,undated + + + + + + 49 + 128 + Faculty News Releases, A-D: Buerkel, Rick,undated + + + + + + 49 + 129 + Faculty News Releases, A-D: Dr. Nancy Buerkel-Rothfuss,undated + + + + + + 49 + 130 + Faculty News Releases, A-D: Buffenbarger, Nancy, SASW,undated + + + + + + 49 + 131 + Faculty News Releases, A-D: Bunch, Rick,undated + + + + + + 49 + 132 + Faculty News Releases, A-D: Bupp, Mary,undated + + + + + + 49 + 133 + Faculty News Releases, A-D: Burch, Dwight, Music,undated + + + + + + 49 + 134 + Faculty News Releases, A-D: Burch, Nancy L.,undated + + + + + + 49 + 135 + Faculty News Releases, A-D: Burditt, Larry,undated + + + + + + 49 + 136 + Faculty News Releases, A-D: Burke, Peggy,undated + + + + + + 49 + 137 + Faculty News Releases, A-D: Burley, James R.,undated + + + + + + 49 + 138 + Faculty News Releases, A-D: Burlington, Roy, Biology,undated + + + + + + 49 + 139 + Faculty News Releases, A-D: Burns, Matthew,undated + + + + + + 49 + 140 + Faculty News Releases, A-D: Burpee, Robert,undated + + + + + + 49 + 141 + Faculty News Releases, A-D: Bush, Donald O., Secondary Education,undated + + + + + + 49 + 142 + Faculty News Releases, A-D: Bush, Jim,undated + + + + + + 49 + 143 + Faculty News Releases, A-D: Buschlen, Eric,undated + + + + + + 49 + 144 + Faculty News Releases, A-D: Bushey, Eugene, Biology,undated + + + + + + 49 + 145 + Faculty News Releases, A-D: Tom Butts,undated + + + + + + 49 + 146 + Faculty News Releases, A-D: Cain, Sandra Elaine, Early Childhood Elementary Education,undated + + + + + + 49 + 147 + Faculty News Releases, A-D: Caldwell, Larry D., Biology,undated + + + + + + 49 + 148 + Faculty News Releases, A-D: Caldwell, John Timothy, Music,undated + + + + + + 49 + 149 + Faculty News Releases, A-D: Camarena, Phame,undated + + + + + + 49 + 150 + Faculty News Releases, A-D: Campbell, Elizabeth. A., Business and Administration,undated + + + + + + 49 + 151 + Faculty News Releases, A-D: Campbell, Sarah,undated + + + + + + 49 + 152 + Faculty News Releases, A-D: Capozzi, Laura,undated + + + + + + 49 + 153 + Faculty News Releases, A-D: Cappel, James,undated + + + + + + 49 + 154 + Faculty News Releases, A-D: Carlson, Charles E., IPCD ((Institute for Personal and Career Development),undated + + + + + + 49 + 155 + Faculty News Releases, A-D: Carroll, James L., Psychology,undated + + + + + + 49 + 156 + Faculty News Releases, A-D: Carter, Gerald C., English,undated + + + + + + 49 + 157 + Faculty News Releases, A-D: Carter, Joyce,undated + + + + + + 49 + 158 + Faculty News Releases, A-D: Case, Brent,undated + + + + + + 49 + 159 + Faculty News Releases, A-D: Casey, Anne,undated + + + + + + 49 + 160 + Faculty News Releases, A-D: Caspari, Rachel,undated + + + + + + 49 + 161 + Faculty News Releases, A-D: Cavanaugh, Shane,undated + + + + + + 49 + 162 + Faculty News Releases, A-D: Celani, Tom,undated + + + + + + 49 + 163 + Faculty News Releases, A-D: Cecen, A. Aydin,undated + + + + + + 49 + 164 + Faculty News Releases, A-D: Chaffer, Almeda, Math,undated + + + + + + 49 + 165 + Faculty News Releases, A-D: Chaffer, Robert A., Math,undated + + + + + + 49 + 166 + Faculty News Releases, A-D: Chai, Minghui,undated + + + + + + 49 + 167 + Faculty News Releases, A-D: Chakraborty, Debasish,undated + + + + + + 49 + 168 + Faculty News Releases, A-D: Chandler, Judy,undated + + + + + + 49 + 169 + Faculty News Releases, A-D: Chapis, Jack, Anthropology,undated + + + + + + 49 + 170 + Faculty News Releases, A-D: Chavez, Karen L. Mohr,undated + + + + + + 49 + 171 + Faculty News Releases, A-D: Chavez, Sergio,undated + + + + + + 49 + 172 + Faculty News Releases, A-D: Chen, Li,undated + + + + + + 49 + 173 + Faculty News Releases, A-D: Chen, Mean-Shang (Daniel),undated + + + + + + 49 + 174 + Faculty News Releases, A-D: Cheng, Frank S.,undated + + + + + + 49 + 175 + Faculty News Releases, A-D: Chepaitis, Stanley,undated + + + + + + 49 + 176 + Faculty News Releases, A-D: Chinquee, Kim,undated + + + + + + 49 + 177 + Faculty News Releases, A-D: Chisholm, Joseph D.,undated + + + + + + 49 + 178 + Faculty News Releases, A-D: Christiansen, Neil,undated + + + + + + 49 + 179 + Faculty News Releases, A-D: Christie, Ray,undated + + + + + + 49 + 180 + Faculty News Releases, A-D: Church, Gerald M.,undated + + + + + + 49 + 181 + Faculty News Releases, A-D: Ciaffone, Gary G., Housing,undated + + + + + + 49 + 182 + Faculty News Releases, A-D: Clark, Claudia,undated + + + + + + 49 + 183 + Faculty News Releases, A-D: Clarkson, Susan Elaine, Housing,undated + + + + + + 49 + 184 + Faculty News Releases, A-D: Clason, Robert Grant, Math,undated + + + + + + 49 + 185 + Faculty News Releases, A-D: Clayton, Edward “TED”,undated + + + + + + 49 + 186 + Faculty News Releases, A-D: Clemmer, Richard B.,undated + + + + + + 49 + 187 + Faculty News Releases, A-D: Clifford, Loren R., Physics,undated + + + + + + 49 + 188 + Faculty News Releases, A-D: Clifton, Keith,undated + + + + + + 49 + 189 + Faculty News Releases, A-D: Clingman, Leslie, BCA,undated + + + + + + 49 + 190 + Faculty News Releases, A-D: Coffey, Thomas,undated + + + + + + 49 + 191 + Faculty News Releases, A-D: Colarelli, Stephen, Psychology,undated + + + + + + 49 + 192 + Faculty News Releases, A-D: Colby, Dorothy,undated + + + + + + 49 + 193 + Faculty News Releases, A-D: Coles, Charlie,undated + + + + + + 49 + 194 + Faculty News Releases, A-D: Coles, Roger L. Recreation and Park Administration,undated + + + + + + 49 + 195 + Faculty News Releases, A-D: Collinson, Peter, Television,undated + + + + + + 49 + 196 + Faculty News Releases, A-D: Colores, Greg,undated + + + + + + 49 + 197 + Faculty News Releases, A-D: Comer, Kelvie,undated + + + + + + 49 + 198 + Faculty News Releases, A-D: Renita M. Coney,undated + + + + + + 49 + 199 + Faculty News Releases, A-D: Conner, Susan P.,undated + + + + + + 49 + 200 + Faculty News Releases, A-D: Conners, Timothy,undated + + + + + + 49 + 201 + Faculty News Releases, A-D: Cook, Jonas,undated + + + + + + 49 + 202 + Faculty News Releases, A-D: Cook, Mitzi,undated + + + + + + 49 + 203 + Faculty News Releases, A-D: Cook, Penelope D., D.O.,undated + + + + + + 49 + 204 + Faculty News Releases, A-D: Cook, Robert,undated + + + + + + 49 + 205 + Faculty News Releases, A-D: Cook, Wells F., Business Education,undated + + + + + + 49 + 206 + Faculty News Releases, A-D: Cooley, Nancy J.,undated + + + + + + 49 + 207 + Faculty News Releases, A-D: Kathleen A. Cooper, Finance,undated + + + + + + 49 + 208 + Faculty News Releases, A-D: Corbett, Kevin,undated + + + + + + 49 + 209 + Faculty News Releases, A-D: Corcoran, Patrick,undated + + + + + + 49 + 210 + Faculty News Releases, A-D: Cosan, Robert,undated + + + + + + 49 + 211 + Faculty News Releases, A-D: Coughlin, Suzanne S.,undated + + + + + + 49 + 212 + Faculty News Releases, A-D: Counts, Montisa,undated + + + + + + 49 + 213 + Faculty News Releases, A-D: Cox, LaTanga, Admissions,undated + + + + + + 49 + 214 + Faculty News Releases, A-D: Cox, Raymond,undated + + + + + + 49 + 215 + Faculty News Releases, A-D: Mary Coxen,undated + + + + + + 49 + 216 + Faculty News Releases, A-D: Craig, John Robert,undated + + + + + + 49 + 217 + Faculty News Releases, A-D: Crandall, Yvette B., Physical Education,undated + + + + + + 49 + 218 + Faculty News Releases, A-D: Crawley, Harold B. Jr., Secondary Education,undated + + + + + + 49 + 219 + Faculty News Releases, A-D: Crespy, Charles,undated + + + + + + 49 + 220 + Faculty News Releases, A-D: Robert Croll,undated + + + + + + 49 + 221 + Faculty News Releases, A-D: Cron, William R.,undated + + + + + + 49 + 222 + Faculty News Releases, A-D: Cross, Gertrude A., Recreation and Park Administration,undated + + + + + + 49 + 223 + Faculty News Releases, A-D: Croze, Marianne,undated + + + + + + 49 + 224 + Faculty News Releases, A-D: Csapo, Nancy,undated + + + + + + 49 + 225 + Faculty News Releases, A-D: Culbertson, Jeffry D.,undated + + + + + + 49 + 226 + Faculty News Releases, A-D: Current, David, Physics Department,undated + + + + + + 49 + 227 + Faculty News Releases, A-D: Curtiss, Emma,undated + + + + + + 49 + 228 + Faculty News Releases, A-D: Cutler, Kay M.,undated + + + + + + 49 + 229 + Faculty News Releases, A-D: Cwiek, Mark,undated + + + + + + 49 + 230 + Faculty News Releases, A-D: Dai, Jie,undated + + + + + + 49 + 231 + Faculty News Releases, A-D: Dailey, William,undated + + + + + + 49 + 232 + Faculty News Releases, A-D: Damer, Cynthia,undated + + + + + + 49 + 233 + Faculty News Releases, A-D: Damito, James W.,undated + + + + + + 49 + 234 + Faculty News Releases, A-D: Daniels, Julia,undated + + + + + + 50 + 1 + Faculty News Releases, D-H: Daniels, Elaine C.,undated + + + + + + 50 + 2 + Faculty News Releases, D-H: Daniels, Jeff,undated + + + + + + 50 + 3 + Faculty News Releases, D-H: Dannenhoffer, Joanne,undated + + + + + + 50 + 4 + Faculty News Releases, D-H: Darrow, Jon E.,undated + + + + + + 50 + 5 + Faculty News Releases, D-H: Darrow, Jon E.,undated + + + + + + 50 + 6 + Faculty News Releases, D-H: Davenport, Jason,undated + + + + + + 50 + 7 + Faculty News Releases, D-H: Davenport, Richard,undated + + + + + + 50 + 8 + Faculty News Releases, D-H: Davies, Bryan,undated + + + + + + 50 + 9 + Faculty News Releases, D-H: Davis, Dena,undated + + + + + + 50 + 10 + Faculty News Releases, D-H: Davis, Jennie “June”,undated + + + + + + 50 + 11 + Faculty News Releases, D-H: Davis, Thomas,undated + + + + + + 50 + 12 + Faculty News Releases, D-H: Davison, Ian,undated + + + + + + 50 + 13 + Faculty News Releases, D-H: Day, Susan B.,undated + + + + + + 50 + 14 + Faculty News Releases, D-H: Dealing, James R., History,undated + + + + + + 50 + 15 + Faculty News Releases, D-H: Debolt, Joseph,undated + + + + + + 50 + 16 + Faculty News Releases, D-H: Debruin, Robert L.,undated + + + + + + 50 + 17 + Faculty News Releases, D-H: Dede, Alper,undated + + + + + + 50 + 18 + Faculty News Releases, D-H: DeGenova, Mary Kay,undated + + + + + + 50 + 19 + Faculty News Releases, D-H: Delia, Thomas Joseph, Chemistry,undated + + + + + + 50 + 20 + Faculty News Releases, D-H: DeMeyer, Lisa,undated + + + + + + 50 + 21 + Faculty News Releases, D-H: Demlow, Marilyn, Health Services,undated + + + + + + 50 + 22 + Faculty News Releases, D-H: DeKryger, William J., Industrial Education,undated + + + + + + 50 + 23 + Faculty News Releases, D-H: Delong, Ann M.,undated + + + + + + 50 + 24 + Faculty News Releases, D-H: Dening, James W.,undated + + + + + + 50 + 25 + Faculty News Releases, D-H: Dennis, Larry,undated + + + + + + 50 + 26 + Faculty News Releases, D-H: Deromedi, Herbert W., Physical Education,undated + + + + + + 50 + 27 + Faculty News Releases, D-H: Deunk, Norman H., Jr., Business,undated + + + + + + 50 + 28 + Faculty News Releases, D-H: Deyo, Diane,undated + + + + + + 50 + 29 + Faculty News Releases, D-H: Dilworth, David,undated + + + + + + 50 + 30 + Faculty News Releases, D-H: Dinan, John,undated + + + + + + 50 + 31 + Faculty News Releases, D-H: Dinius, Stanley,undated + + + + + + 50 + 32 + Faculty News Releases, D-H: Dinse, John H.,undated + + + + + + 50 + 33 + Faculty News Releases, D-H: Divine, Richard,undated + + + + + + 50 + 34 + Faculty News Releases, D-H: Dixon, Barbara, Music,undated + + + + + + 50 + 35 + Faculty News Releases, D-H: Doke, Kirt,undated + + + + + + 50 + 36 + Faculty News Releases, D-H: Dollard, Joan W.,undated + + + + + + 50 + 37 + Faculty News Releases, D-H: Dolley, Diane,undated + + + + + + 50 + 38 + Faculty News Releases, D-H: Domina, Tanya,undated + + + + + + 50 + 39 + Faculty News Releases, D-H: Dominguez, Jesse,undated + + + + + + 50 + 40 + Faculty News Releases, D-H: Dominguez, Paul,undated + + + + + + 50 + 41 + Faculty News Releases, D-H: Donn, Paul,undated + + + + + + 50 + 42 + Faculty News Releases, D-H: Doran, Joy,undated + + + + + + 50 + 43 + Faculty News Releases, D-H: Joy L. Doremire,undated + + + + + + 50 + 44 + Faculty News Releases, D-H: Dorrah, Harvey,undated + + + + + + 50 + 45 + Faculty News Releases, D-H: Douglass, Claudia, Biology,undated + + + + + + 50 + 46 + Faculty News Releases, D-H: Doyle, Randall,undated + + + + + + 50 + 47 + Faculty News Releases, D-H: Dressel, Janice Hartwick,undated + + + + + + 50 + 48 + Faculty News Releases, D-H: Duffield, Holley G., English,undated + + + + + + 50 + 49 + Faculty News Releases, D-H: Dunbar, Gary, Psychology,undated + + + + + + 50 + 50 + Faculty News Releases, D-H: Dunham, R. William,undated + + + + + + 50 + 51 + Faculty News Releases, D-H: Dunn, Carolyn,undated + + + + + + 50 + 52 + Faculty News Releases, D-H: George W. Dunn,undated + + + + + + 50 + 53 + Faculty News Releases, D-H: Ebel Charles, History,undated + + + + + + 50 + 54 + Faculty News Releases, D-H: Eberly, Carole,undated + + + + + + 50 + 55 + Faculty News Releases, D-H: Ebner, Robert James,undated + + + + + + 50 + 56 + Faculty News Releases, D-H: Echelberger, Matthew,undated + + + + + + 50 + 57 + Faculty News Releases, D-H: Ecker, Louis G. ,undated + + + + + + 50 + 58 + Faculty News Releases, D-H: Eddy, Pamela,undated + + + + + + 50 + 59 + Faculty News Releases, D-H: Edgar, Gerald,undated + + + + + + 50 + 60 + Faculty News Releases, D-H: Egler, Steven, Music,undated + + + + + + 50 + 61 + Faculty News Releases, D-H: Eiszler, Charles F., Jr.,undated + + + + + + 50 + 62 + Faculty News Releases, D-H: Eke, Maureen,undated + + + + + + 50 + 63 + Faculty News Releases, D-H: Ellard, Al,undated + + + + + + 50 + 64 + Faculty News Releases, D-H: Ellertson, Alan Kim,undated + + + + + + 50 + 65 + Faculty News Releases, D-H: Elliott, Gerald,undated + + + + + + 50 + 66 + Faculty News Releases, D-H: Elliott, Kathie,undated + + + + + + 50 + 67 + Faculty News Releases, D-H: El-Sawi, Nehad,undated + + + + + + 50 + 68 + Faculty News Releases, D-H: Enarson, Cam E.,undated + + + + + + 50 + 69 + Faculty News Releases, D-H: Enberg, Dick,undated + + + + + + 50 + 70 + Faculty News Releases, D-H: Endres, Thomas J., Public Broadcasting,undated + + + + + + 50 + 71 + Faculty News Releases, D-H: English, Ann Marie (Owens),undated + + + + + + 50 + 72 + Faculty News Releases, D-H: English, Kristina,undated + + + + + + 50 + 73 + Faculty News Releases, D-H: Cora Enman,undated + + + + + + 50 + 74 + Faculty News Releases, D-H: Robert Enman, Music,undated + + + + + + 50 + 75 + Faculty News Releases, D-H: Daniel Enos,undated + + + + + + 50 + 76 + Faculty News Releases, D-H: Epstein, Adam,undated + + + + + + 50 + 77 + Faculty News Releases, D-H: Ericksen, Donna,undated + + + + + + 50 + 78 + Faculty News Releases, D-H: Erzikoua, Elina,undated + + + + + + 50 + 79 + Faculty News Releases, D-H: Eskridge, Ann,undated + + + + + + 50 + 80 + Faculty News Releases, D-H: Evans, Jackie M., Elementary Education,undated + + + + + + 50 + 81 + Faculty News Releases, D-H: Eversole Daniel E.,undated + + + + + + 50 + 82 + Faculty News Releases, D-H: Eyers, Christina ,undated + + + + + + 50 + 83 + Faculty News Releases, D-H: Fahlman, Bradley,undated + + + + + + 50 + 84 + Faculty News Releases, D-H: Bradley Fahr,undated + + + + + + 50 + 85 + Faculty News Releases, D-H: Fairbanks, John, Business and Admission,undated + + + + + + 50 + 86 + Faculty News Releases, D-H: Fairbanks, Michael, Biology,undated + + + + + + 50 + 87 + Faculty News Releases, D-H: Faleer, Robert,undated + + + + + + 50 + 88 + Faculty News Releases, D-H: Falls, Lisa,undated + + + + + + 50 + 89 + Faculty News Releases, D-H: Famoye, Felix,undated + + + + + + 50 + 90 + Faculty News Releases, D-H: Fancher, Carlton, Health,undated + + + + + + 50 + 91 + Faculty News Releases, D-H: Fanning, Robert,undated + + + + + + 50 + 92 + Faculty News Releases, D-H: Farley, Dennis Scott,undated + + + + + + 50 + 93 + Faculty News Releases, D-H: Farley, William E.,undated + + + + + + 50 + 94 + Faculty News Releases, D-H: Fattah, Moataz,undated + + + + + + 50 + 95 + Faculty News Releases, D-H: Lynn Fauver,undated + + + + + + 50 + 96 + Faculty News Releases, D-H: Featheringham, Richard,undated + + + + + + 50 + 97 + Faculty News Releases, D-H: Felton, James Martin, Finance,undated + + + + + + 50 + 98 + Faculty News Releases, D-H: Ferrer, Daniel,undated + + + + + + 50 + 99 + Faculty News Releases, D-H: Fetzer, Joel,undated + + + + + + 50 + 100 + Faculty News Releases, D-H: Fevig, David,undated + + + + + + 50 + 101 + Faculty News Releases, D-H: Fields, D. Michael,undated + + + + + + 50 + 102 + Faculty News Releases, D-H: Finck, Joseph,undated + + + + + + 50 + 103 + Faculty News Releases, D-H: Frank E. Fishell, Math,undated + + + + + + 50 + 104 + Faculty News Releases, D-H: Fisher, David R.,undated + + + + + + 50 + 105 + Faculty News Releases, D-H: Fisher, John, S., Housing operations,undated + + + + + + 50 + 106 + Faculty News Releases, D-H: Fitzgerald, Pamela,undated + + + + + + 50 + 107 + Faculty News Releases, D-H: Fitzhenry, Jerome T., Journalism,undated + + + + + + 50 + 108 + Faculty News Releases, D-H: Fitzpatrick, Charles J.,undated + + + + + + 50 + 109 + Faculty News Releases, D-H: Flanagan, Mary Jane,undated + + + + + + 50 + 110 + Faculty News Releases, D-H: Fleming, Kirsten,undated + + + + + + 50 + 111 + Faculty News Releases, D-H: Fleming, Mary Lu,undated + + + + + + 50 + 112 + Faculty News Releases, D-H: Fleming, Richard Joseph,undated + + + + + + 50 + 113 + Faculty News Releases, D-H: Flory, Brenda,undated + + + + + + 50 + 114 + Faculty News Releases, D-H: Richard Ormano Flynn, HPER,undated + + + + + + 50 + 115 + Faculty News Releases, D-H: Foote, Jeffrey H.,undated + + + + + + 50 + 116 + Faculty News Releases, D-H: Ford, Ray,undated + + + + + + 50 + 117 + Faculty News Releases, D-H: Fornari, Marco,undated + + + + + + 50 + 118 + Faculty News Releases, D-H: Foster-Lifson, Rachel, Psychology,undated + + + + + + 50 + 119 + Faculty News Releases, D-H: Fox, Richard W.,undated + + + + + + 50 + 120 + Faculty News Releases, D-H: Francek, Mark,undated + + + + + + 50 + 121 + Faculty News Releases, D-H: Frank, Martha,undated + + + + + + 50 + 122 + Faculty News Releases, D-H: Fraser, Blanche,undated + + + + + + 50 + 123 + Faculty News Releases, D-H: Freling, Roger N., English,undated + + + + + + 50 + 124 + Faculty News Releases, D-H: Freeman, S. Gay,undated + + + + + + 50 + 125 + Faculty News Releases, D-H: Frey, Laura,undated + + + + + + 50 + 126 + Faculty News Releases, D-H: Frick, Hedwig Marie,undated + + + + + + 50 + 127 + Faculty News Releases, D-H: Friedman, Gary,undated + + + + + + 50 + 128 + Faculty News Releases, D-H: Friedrich, Douglas D.,undated + + + + + + 50 + 129 + Faculty News Releases, D-H: Fries, Peter H.,undated + + + + + + 50 + 130 + Faculty News Releases, D-H: Frisch, John A.,undated + + + + + + 50 + 131 + Faculty News Releases, D-H: Frodge, Nedra,undated + + + + + + 50 + 132 + Faculty News Releases, D-H: Frost, Bruce,undated + + + + + + 50 + 133 + Faculty News Releases, D-H: Fryda, Larry, IET,undated + + + + + + 50 + 134 + Faculty News Releases, D-H: Fubara, Ayayi,undated + + + + + + 50 + 135 + Faculty News Releases, D-H: Gagnon, Gary,undated + + + + + + 50 + 136 + Faculty News Releases, D-H: Sue Gibbs Gamble, Music,undated + + + + + + 50 + 137 + Faculty News Releases, D-H: Ganoe, Cathy,undated + + + + + + 50 + 138 + Faculty News Releases, D-H: Gardecki, Barrara L. Psychology,undated + + + + + + 50 + 139 + Faculty News Releases, D-H: Gardner, Alice,undated + + + + + + 50 + 140 + Faculty News Releases, D-H: Garver, Michael,undated + + + + + + 50 + 141 + Faculty News Releases, D-H: Gaskill, Peggy,undated + + + + + + 50 + 142 + Faculty News Releases, D-H: Gaskill, Peggy,undated + + + + + + 50 + 143 + Faculty News Releases, D-H: Gates-Duffield, Pamela,undated + + + + + + 50 + 144 + Faculty News Releases, D-H: Gealt, Michael A.,undated + + + + + + 50 + 145 + Faculty News Releases, D-H: Gehring, Thomas,undated + + + + + + 50 + 146 + Faculty News Releases, D-H: George, Sharon L.,undated + + + + + + 50 + 147 + Faculty News Releases, D-H: Gerkin, Holly,undated + + + + + + 50 + 148 + Faculty News Releases, D-H: Gervin, Dennis,undated + + + + + + 50 + 149 + Faculty News Releases, D-H: Getahun, Solomon,undated + + + + + + 50 + 150 + Faculty News Releases, D-H: Gibson, Bryan,undated + + + + + + 50 + 151 + Faculty News Releases, D-H: Gilb, Tyra, Music,undated + + + + + + 50 + 152 + Faculty News Releases, D-H: Gilbert, Michael,undated + + + + + + 50 + 153 + Faculty News Releases, D-H: Gilchrist, Gordon H.,undated + + + + + + 50 + 154 + Faculty News Releases, D-H: Gillingham, David,undated + + + + + + 50 + 155 + Faculty News Releases, D-H: Gillingham, James, Biology,undated + + + + + + 50 + 156 + Faculty News Releases, D-H: Gillingham, Mary,undated + + + + + + 50 + 157 + Faculty News Releases, D-H: David B. Ginsberg,undated + + + + + + 50 + 158 + Faculty News Releases, D-H: Glasius, Erik,undated + + + + + + 50 + 159 + Faculty News Releases, D-H: Goduka, Ivy,undated + + + + + + 50 + 160 + Faculty News Releases, D-H: Goenner, James,undated + + + + + + 50 + 161 + Faculty News Releases, D-H: Goldsmith, Rae,undated + + + + + + 50 + 162 + Faculty News Releases, D-H: Gonzales, Laura,undated + + + + + + 50 + 163 + Faculty News Releases, D-H: Goodrich, Elizabeth,undated + + + + + + 50 + 164 + Faculty News Releases, D-H: Goodwin, Megan Pauline,undated + + + + + + 50 + 165 + Faculty News Releases, D-H: James Gordan,undated + + + + + + 50 + 166 + Faculty News Releases, D-H: Gordan, Kelly Lynn,undated + + + + + + 50 + 167 + Faculty News Releases, D-H: Gorsich, Steven W.,undated + + + + + + 50 + 168 + Faculty News Releases, D-H: Gorton, Peter,undated + + + + + + 50 + 169 + Faculty News Releases, D-H: Goupell, Duane, OIR,undated + + + + + + 50 + 170 + Faculty News Releases, D-H: Grabinski, Roger Neil,undated + + + + + + 50 + 171 + Faculty News Releases, D-H: Grabinski, C. Joanne,undated + + + + + + 50 + 172 + Faculty News Releases, D-H: Grant, Edward,undated + + + + + + 50 + 173 + Faculty News Releases, D-H: Graves, Bennie,undated + + + + + + 50 + 174 + Faculty News Releases, D-H: Harold Graves,undated + + + + + + 50 + 175 + Faculty News Releases, D-H: Grawburg, Larry,undated + + + + + + 50 + 176 + Faculty News Releases, D-H: Gray, Deborah,undated + + + + + + 50 + 177 + Faculty News Releases, D-H: Gray, Pamela,undated + + + + + + 50 + 178 + Faculty News Releases, D-H: Green, Colleen,undated + + + + + + 50 + 179 + Faculty News Releases, D-H: Green, Denise,undated + + + + + + 50 + 180 + Faculty News Releases, D-H: Greenlund, Janice Ann,undated + + + + + + 50 + 181 + Faculty News Releases, D-H: Greenwood, Frank,undated + + + + + + 50 + 182 + Faculty News Releases, D-H: Griffiths, Ronald David,undated + + + + + + 50 + 183 + Faculty News Releases, D-H: Grossa, John, Jr., Geography,undated + + + + + + 50 + 184 + Faculty News Releases, D-H: Grossman, George William,undated + + + + + + 50 + 185 + Faculty News Releases, D-H: Guard, David,undated + + + + + + 50 + 186 + Faculty News Releases, D-H: Guerriero, Ana,undated + + + + + + 50 + 187 + Faculty News Releases, D-H: Guinn, Traci,undated + + + + + + 50 + 188 + Faculty News Releases, D-H: Gust, Dale D.,undated + + + + + + 50 + 189 + Faculty News Releases, D-H: Guy, Michael,undated + + + + + + 50 + 190 + Faculty News Releases, D-H: Haas, Carol,undated + + + + + + 50 + 191 + Faculty News Releases, D-H: Haddad, Angela,undated + + + + + + 50 + 192 + Faculty News Releases, D-H: Hadden, Lisa,undated + + + + + + 50 + 193 + Faculty News Releases, D-H: Haeger, John,undated + + + + + + 50 + 194 + Faculty News Releases, D-H: Hageman, James,undated + + + + + + 50 + 195 + Faculty News Releases, D-H: Hagens, Helen,undated + + + + + + 50 + 196 + Faculty News Releases, D-H: Haight, Sherrel,undated + + + + + + 50 + 197 + Faculty News Releases, D-H: Hakemi, Ahmad,undated + + + + + + 50 + 198 + Faculty News Releases, D-H: Hall, Mitchell,undated + + + + + + 50 + 199 + Faculty News Releases, D-H: Hall, Ruth,undated + + + + + + 50 + 200 + Faculty News Releases, D-H: Hall, Timothy,undated + + + + + + 50 + 201 + Faculty News Releases, D-H: Hallett, Bernice,undated + + + + + + 50 + 202 + Faculty News Releases, D-H: Halpret, Richard,undated + + + + + + 51 + 1 + Faculty News Releases, H-K: Alice Hamacheck,undated + + + + + + 51 + 2 + Faculty News Releases, H-K: Hamas, Michael, Biology,undated + + + + + + 51 + 3 + Faculty News Releases, H-K: Hammel, Arnold Dean,undated + + + + + + 51 + 4 + Faculty News Releases, H-K: Hammer, Roger,undated + + + + + + 51 + 5 + Faculty News Releases, H-K: Han, Henry H., Political Science,undated + + + + + + 51 + 6 + Faculty News Releases, H-K: Hancock, Merodie,undated + + + + + + 51 + 7 + Faculty News Releases, H-K: John Hansen,undated + + + + + + 51 + 8 + Faculty News Releases, H-K: Hanson, Elizabeth,undated + + + + + + 51 + 9 + Faculty News Releases, H-K: Harding, Desmond,undated + + + + + + 51 + 10 + Faculty News Releases, H-K: Harding, Scott,undated + + + + + + 51 + 11 + Faculty News Releases, H-K: Hardy, Richard, Health,undated + + + + + + 51 + 12 + Faculty News Releases, H-K: Harris, Fred,undated + + + + + + 51 + 13 + Faculty News Releases, H-K: Harrison, Julie,undated + + + + + + 51 + 14 + Faculty News Releases, H-K: Hartley, Richard L.,undated + + + + + + 51 + 15 + Faculty News Releases, H-K: Hartman, Gerald D.,undated + + + + + + 51 + 16 + Faculty News Releases, H-K: Hartman, John K.,undated + + + + + + 51 + 17 + Faculty News Releases, H-K: Hartshorne, Timothy Scotford,undated + + + + + + 51 + 18 + Faculty News Releases, H-K: Hastings, Charles,undated + + + + + + 51 + 19 + Faculty News Releases, H-K: Hatch, Roger, Religion,undated + + + + + + 51 + 20 + Faculty News Releases, H-K: Haushalter, William,undated + + + + + + 51 + 21 + Faculty News Releases, H-K: Hayen, Roger,undated + + + + + + 51 + 22 + Faculty News Releases, H-K: Hayes, Randall Bryant,undated + + + + + + 51 + 23 + Faculty News Releases, H-K: Hayes, Rebecca,undated + + + + + + 51 + 24 + Faculty News Releases, H-K: Hazekamp, Donald W., Math,undated + + + + + + 51 + 25 + Faculty News Releases, H-K: Alpha Psi Omega,undated + + + + + + 51 + 26 + Faculty News Releases, H-K: Health, Phillis,undated + + + + + + 51 + 27 + Faculty News Releases, H-K: Heeke, David,undated + + + + + + 51 + 28 + Faculty News Releases, H-K: Hein, Matthew,undated + + + + + + 51 + 29 + Faculty News Releases, H-K: Heinze, Dyke,undated + + + + + + 51 + 30 + Faculty News Releases, H-K: Helfrich, Janet S.,undated + + + + + + 51 + 31 + Faculty News Releases, H-K: Helferich, Keith,undated + + + + + + 51 + 32 + Faculty News Releases, H-K: Hella, Lori,undated + + + + + + 51 + 33 + Faculty News Releases, H-K: Jerome D. Henderson,undated + + + + + + 51 + 34 + Faculty News Releases, H-K: Henley, Mary,undated + + + + + + 51 + 35 + Faculty News Releases, H-K: Henricks, Joyce,undated + + + + + + 51 + 36 + Faculty News Releases, H-K: Henry, Maureen,undated + + + + + + 51 + 37 + Faculty News Releases, H-K: Herd-Clark, Dawn,undated + + + + + + 51 + 38 + Faculty News Releases, H-K: Herman, Nancy,undated + + + + + + 51 + 39 + Faculty News Releases, H-K: Herman, William J., TV,undated + + + + + + 51 + 40 + Faculty News Releases, H-K: Hernandez, Paul,undated + + + + + + 51 + 41 + Faculty News Releases, H-K: Herrera, Robert,undated + + + + + + 51 + 42 + Faculty News Releases, H-K: Hershey, David,undated + + + + + + 51 + 43 + Faculty News Releases, H-K: Hertzler, Philip,undated + + + + + + 51 + 44 + Faculty News Releases, H-K: Hess, George,undated + + + + + + 51 + 45 + Faculty News Releases, H-K: Heuberger, Roschelle,undated + + + + + + 51 + 46 + Faculty News Releases, H-K: Heumann, Benjamin,undated + + + + + + 51 + 47 + Faculty News Releases, H-K: Hicks, Troy,undated + + + + + + 51 + 48 + Faculty News Releases, H-K: Higgins, Monte L., Educational,undated + + + + + + 51 + 49 + Faculty News Releases, H-K: Hildebrandt, Leslie,undated + + + + + + 51 + 50 + Faculty News Releases, H-K: Hill, James P., Political Science,undated + + + + + + 51 + 51 + Faculty News Releases, H-K: Hill, James Richard,undated + + + + + + 51 + 52 + Faculty News Releases, H-K: Hill, Mary,undated + + + + + + 51 + 53 + Faculty News Releases, H-K: Hinck, Edward,undated + + + + + + 51 + 54 + Faculty News Releases, H-K: Hinck, Shelly,undated + + + + + + 51 + 55 + Faculty News Releases, H-K: Hirschi, Stanley, Physics,undated + + + + + + 51 + 56 + Faculty News Releases, H-K: Hitch, Elizabeth,undated + + + + + + 51 + 57 + Faculty News Releases, H-K: Hixson, Michael,undated + + + + + + 51 + 58 + Faculty News Releases, H-K: Hodgson, Shu-Ping C.,undated + + + + + + 51 + 59 + Faculty News Releases, H-K: Carolyn J Hoffman,undated + + + + + + 51 + 60 + Faculty News Releases, H-K: Hoffman, Holly,undated + + + + + + 51 + 61 + Faculty News Releases, H-K: Hoffman, John D.,undated + + + + + + 51 + 62 + Faculty News Releases, H-K: Hoffman, Robert E.,undated + + + + + + 51 + 63 + Faculty News Releases, H-K: Hohner, Robert,undated + + + + + + 51 + 64 + Faculty News Releases, H-K: Holder, Stephen C.,undated + + + + + + 51 + 65 + Faculty News Releases, H-K: Holland, Donald E.,undated + + + + + + 51 + 66 + Faculty News Releases, H-K: Holmes, Monica,undated + + + + + + 51 + 67 + Faculty News Releases, H-K: Hood, William,undated + + + + + + 51 + 68 + Faculty News Releases, H-K: Hopp, Neil,undated + + + + + + 51 + 69 + Faculty News Releases, H-K: Horoi, Mihai,undated + + + + + + 51 + 70 + Faculty News Releases, H-K: Hornak, James E.,undated + + + + + + 51 + 71 + Faculty News Releases, H-K: N. Joan Hornak,undated + + + + + + 51 + 72 + Faculty News Releases, H-K: Horton, Dennis L., Music,undated + + + + + + 51 + 73 + Faculty News Releases, H-K: Hough, Robin,undated + + + + + + 51 + 74 + Faculty News Releases, H-K: Houghton, Nickolas,undated + + + + + + 51 + 75 + Faculty News Releases, H-K: House-Gardner, Sharon,undated + + + + + + 51 + 76 + Faculty News Releases, H-K: Houston-Philpot, Kimberly,undated + + + + + + 51 + 77 + Faculty News Releases, H-K: Hoard, Carole,undated + + + + + + 51 + 78 + Faculty News Releases, H-K: Howard, Michelle,undated + + + + + + 51 + 79 + Faculty News Releases, H-K: Howell, Bob, Chemistry,undated + + + + + + 51 + 80 + Faculty News Releases, H-K: Howell, James F., English,undated + + + + + + 51 + 81 + Faculty News Releases, H-K: Howell, Marsha,undated + + + + + + 51 + 82 + Faculty News Releases, H-K: Howell, Sandra,undated + + + + + + 51 + 83 + Faculty News Releases, H-K: Hu, Gongzhu,undated + + + + + + 51 + 84 + Faculty News Releases, H-K: Huang, Zhenyu,undated + + + + + + 51 + 85 + Faculty News Releases, H-K: Hughes, Diana,undated + + + + + + 51 + 86 + Faculty News Releases, H-K: Hunt, Thomas Michael,undated + + + + + + 51 + 87 + Faculty News Releases, H-K: Hurtado, Luz Marcela,undated + + + + + + 51 + 88 + Faculty News Releases, H-K: Hutslar, Karen,undated + + + + + + 51 + 89 + Faculty News Releases, H-K: Hwang, Mark,undated + + + + + + 51 + 90 + Faculty News Releases, H-K: Hyames, Jeff,undated + + + + + + 51 + 91 + Faculty News Releases, H-K: Hyble Carol,undated + + + + + + 51 + 92 + Faculty News Releases, H-K: Hyde, Linda,undated + + + + + + 51 + 93 + Faculty News Releases, H-K: Hynes, Frances,undated + + + + + + 51 + 94 + Faculty News Releases, H-K: Kimberly Ingebrigtson,undated + + + + + + 51 + 95 + Faculty News Releases, H-K: Ingersoll, Chris,undated + + + + + + 51 + 96 + Faculty News Releases, H-K: Inungu, Joseph (Jeff),undated + + + + + + 51 + 97 + Faculty News Releases, H-K: Ionin, Yury,undated + + + + + + 51 + 98 + Faculty News Releases, H-K: Irwin, James,undated + + + + + + 51 + 99 + Faculty News Releases, H-K: Islam, Didarul,undated + + + + + + 51 + 100 + Faculty News Releases, H-K: Ivanitskaya, Lana,undated + + + + + + 51 + 101 + Faculty News Releases, H-K: Jackson, Jeannie,undated + + + + + + 51 + 102 + Faculty News Releases, H-K: Jackson, Koblar Alan,undated + + + + + + 51 + 103 + Faculty News Releases, H-K: Jackson, Mary-Garland,undated + + + + + + 51 + 104 + Faculty News Releases, H-K: Jackson, Shirley,undated + + + + + + 51 + 105 + Faculty News Releases, H-K: Jacob-Timm, Susan,undated + + + + + + 51 + 106 + Faculty News Releases, H-K: Jacque, Mitchell,undated + + + + + + 51 + 107 + Faculty News Releases, H-K: Jaeger, Anne M.,undated + + + + + + 51 + 108 + Faculty News Releases, H-K: Jaffa, Melvyn,undated + + + + + + 51 + 109 + Faculty News Releases, H-K: Jaksa, Stephen,undated + + + + + + 51 + 110 + Faculty News Releases, H-K: James, Patricia,undated + + + + + + 51 + 111 + Faculty News Releases, H-K: Janis, Richard E.,undated + + + + + + 52 + 112 + Faculty News Releases, H-K: Janosky, Janine,undated + + + + + + 51 + 113 + Faculty News Releases, H-K: Randolph Jaques, Accounting,undated + + + + + + 51 + 114 + Faculty News Releases, H-K: Jaquith, Charles E.,undated + + + + + + 51 + 115 + Faculty News Releases, H-K: Jarman, Dale, Math,undated + + + + + + 51 + 116 + Faculty News Releases, H-K: Jarman, Susan,undated + + + + + + 51 + 117 + Faculty News Releases, H-K: Jeffers, D.W.,undated + + + + + + 51 + 118 + Faculty News Releases, H-K: Jenicke, Lawrence,undated + + + + + + 51 + 119 + Faculty News Releases, H-K: Jenkins, William,undated + + + + + + 51 + 120 + Faculty News Releases, H-K: Jennings, Eileen,undated + + + + + + 51 + 121 + Faculty News Releases, H-K: Jennings, Sharon,undated + + + + + + 51 + 122 + Faculty News Releases, H-K: Jenson, Anton,undated + + + + + + 51 + 123 + Faculty News Releases, H-K: Jeon, Yongil,undated + + + + + + 51 + 124 + Faculty News Releases, H-K: Jesuit, David,undated + + + + + + 51 + 125 + Faculty News Releases, H-K: Jetton, Tamara,undated + + + + + + 51 + 126 + Faculty News Releases, H-K: Jex, Steve Michael,undated + + + + + + 51 + 127 + Faculty News Releases, H-K: Johnson, Carl,undated + + + + + + 51 + 128 + Faculty News Releases, H-K: Johnson, Eric, History,undated + + + + + + 51 + 129 + Faculty News Releases, H-K: Johnson, Eric, Geology,undated + + + + + + 51 + 130 + Faculty News Releases, H-K: Ken Johnson,undated + + + + + + 51 + 131 + Faculty News Releases, H-K: Johnson, Mathew,undated + + + + + + 51 + 132 + Faculty News Releases, H-K: Johnson, Raymond F.,undated + + + + + + 51 + 133 + Faculty News Releases, H-K: Johnson, Sharon, Psychology,undated + + + + + + 51 + 134 + Faculty News Releases, H-K: Johnson, Sterling,undated + + + + + + 51 + 135 + Faculty News Releases, H-K: Johnson, Steven L.,undated + + + + + + 51 + 136 + Faculty News Releases, H-K: Johnston, Ronald L., Sociology,undated + + + + + + 51 + 137 + Faculty News Releases, H-K: Jolliff, Shannon,undated + + + + + + 51 + 138 + Faculty News Releases, H-K: Jones, Daniel,undated + + + + + + 51 + 139 + Faculty News Releases, H-K: Jones, James,undated + + + + + + 51 + 140 + Faculty News Releases, H-K: Jones, Stephen,undated + + + + + + 51 + 141 + Faculty News Releases, H-K: Jones, Tommy,undated + + + + + + 51 + 142 + Faculty News Releases, H-K: Margo Jonker,undated + + + + + + 51 + 143 + Faculty News Releases, H-K: Jordan, Tyrone,undated + + + + + + 51 + 144 + Faculty News Releases, H-K: Joy, Robert,undated + + + + + + 51 + 145 + Faculty News Releases, H-K: Kenneth Jorkiewicz,undated + + + + + + 51 + 146 + Faculty News Releases, H-K: Kiser, D. Nolan, Philosophy,undated + + + + + + 51 + 147 + Faculty News Releases, H-K: Kaiser, David,undated + + + + + + 51 + 148 + Faculty News Releases, H-K: Kamenetsky, Christa, English,undated + + + + + + 51 + 149 + Faculty News Releases, H-K: Kamenetsky, Thor, Political Science,undated + + + + + + 51 + 150 + Faculty News Releases, H-K: Kaminski, George,undated + + + + + + 51 + 151 + Faculty News Releases, H-K: Kanitz, H. E. (Mike),undated + + + + + + 51 + 152 + Faculty News Releases, H-K: Karmon, David,undated + + + + + + 51 + 153 + Faculty News Releases, H-K: Kaufman, Edwin Henry, Jr., Math,undated + + + + + + 51 + 154 + Faculty News Releases, H-K: Keenan, Ann,undated + + + + + + 51 + 155 + Faculty News Releases, H-K: Keilitz, David,undated + + + + + + 51 + 156 + Faculty News Releases, H-K: Kelly, Patricia,undated + + + + + + 51 + 157 + Faculty News Releases, H-K: Kelty, Jon,undated + + + + + + 51 + 158 + Faculty News Releases, H-K: Kemp, Leroy,undated + + + + + + 51 + 159 + Faculty News Releases, H-K: Kennedy, Michael,undated + + + + + + 51 + 160 + Faculty News Releases, H-K: Kent, Maxine,undated + + + + + + 51 + 161 + Faculty News Releases, H-K: Kent, Michael A.,undated + + + + + + 51 + 162 + Faculty News Releases, H-K: Kerr, Bernard J.,undated + + + + + + 51 + 163 + Faculty News Releases, H-K: Kesterson, Sean,undated + + + + + + 51 + 164 + Faculty News Releases, H-K: Khoury, Bassam,undated + + + + + + 51 + 165 + Faculty News Releases, H-K: Kiefer, Wayne E.,undated + + + + + + 51 + 166 + Faculty News Releases, H-K: Kiesgen, Mary S.,undated + + + + + + 51 + 167 + Faculty News Releases, H-K: Kindel, Lynn G.,undated + + + + + + 51 + 168 + Faculty News Releases, H-K: Daniel Walter King, Psychology,undated + + + + + + 51 + 169 + Faculty News Releases, H-K: Lynda Anne King,undated + + + + + + 51 + 170 + Faculty News Releases, H-K: King, Robert, Biology,undated + + + + + + 51 + 171 + Faculty News Releases, H-K: Kinney, David,undated + + + + + + 51 + 172 + Faculty News Releases, H-K: Kinnicut, Patrick,undated + + + + + + 51 + 173 + Faculty News Releases, H-K: Kintzele, Philip L.,undated + + + + + + 51 + 174 + Faculty News Releases, H-K: Kipfmueller, Leo J.,undated + + + + + + 51 + 175 + Faculty News Releases, H-K: Kirby, Betty,undated + + + + + + 51 + 176 + Faculty News Releases, H-K: Kirchner, Daniel,undated + + + + + + 51 + 177 + Faculty News Releases, H-K: Kirchner, Dick,undated + + + + + + 51 + 178 + Faculty News Releases, H-K: Kirk, Barbara,undated + + + + + + 51 + 179 + Faculty News Releases, H-K: Kirk, Rodney C.,undated + + + + + + 51 + 180 + Faculty News Releases, H-K: Kizer, David L.,undated + + + + + + 51 + 181 + Faculty News Releases, H-K: Kloha, Brad,undated + + + + + + 51 + 182 + Faculty News Releases, H-K: Klopcic, Leroy,undated + + + + + + 51 + 183 + Faculty News Releases, H-K: Kluver, Darie,undated + + + + + + 51 + 184 + Faculty News Releases, H-K: Klymyshyn, Ulana,undated + + + + + + 51 + 185 + Faculty News Releases, H-K: Knight, Sherry,undated + + + + + + 51 + 186 + Faculty News Releases, H-K: Knight, Susan,undated + + + + + + 51 + 187 + Faculty News Releases, H-K: Kobisz, Vitold, Art,undated + + + + + + 51 + 188 + Faculty News Releases, H-K: Kocar, Marcella Jane,undated + + + + + + 52 + 1 + Faculty News Releases, K-R: Koehler, Lawrence D., Biology,undated + + + + + + 52 + 2 + Faculty News Releases, K-R: Kohrman, Robert,undated + + + + + + 52 + 3 + Faculty News Releases, K-R: Konkle, Dan,undated + + + + + + 52 + 4 + Faculty News Releases, K-R: Kontio, Arthur L., Biology,undated + + + + + + 52 + 5 + Faculty News Releases, K-R: Koper, Peter Thomas,undated + + + + + + 52 + 6 + Faculty News Releases, K-R: Kopetz, Patricia,undated + + + + + + 52 + 7 + Faculty News Releases, K-R: Kopin, Sister Marie,undated + + + + + + 52 + 8 + Faculty News Releases, K-R: Kopke, Ken,undated + + + + + + 52 + 9 + Faculty News Releases, K-R: Kopp, Stephen,undated + + + + + + 52 + 10 + Faculty News Releases, K-R: Koppelman, Daniel,undated + + + + + + 52 + 11 + Faculty News Releases, K-R: Koppy-Austin, Michaeline,undated + + + + + + 52 + 12 + Faculty News Releases, K-R: Kortge, Dean,undated + + + + + + 52 + 13 + Faculty News Releases, K-R: Kortage, Garold [G. Dean],undated + + + + + + 52 + 14 + Faculty News Releases, K-R: Kourtev, Peter,undated + + + + + + 52 + 15 + Faculty News Releases, K-R: Kozicki, Zigmond,undated + + + + + + 52 + 16 + Faculty News Releases, K-R: Kreiner, Dean,undated + + + + + + 52 + 17 + Faculty News Releases, K-R: Kreth, Melinda,undated + + + + + + 52 + 18 + Faculty News Releases, K-R: Kromer, Thomas P.,undated + + + + + + 52 + 19 + Faculty News Releases, K-R: Krull, John N., Biology,undated + + + + + + 52 + 20 + Faculty News Releases, K-R: Kulawik, Krzysztof,undated + + + + + + 52 + 21 + Faculty News Releases, K-R: Kurtz, Rick,undated + + + + + + 52 + 22 + Faculty News Releases, K-R: Kvet, Edward, Music,undated + + + + + + 52 + 23 + Faculty News Releases, K-R: Kytle, Ray, Jr., English,undated + + + + + + 52 + 24 + Faculty News Releases, K-R: L’Hommedieu, Barbara L.,undated + + + + + + 52 + 25 + Faculty News Releases, K-R: L’Hommedieu, Randi,undated + + + + + + 52 + 26 + Faculty News Releases, K-R: Labrie, Gilles R.,undated + + + + + + 52 + 27 + Faculty News Releases, K-R: LaFleur, Denny,undated + + + + + + 52 + 28 + Faculty News Releases, K-R: Lampky, James R.,undated + + + + + + 52 + 29 + Faculty News Releases, K-R: Lanctot, Jay J.,undated + + + + + + 52 + 30 + Faculty News Releases, K-R: Lanfear, Carol,undated + + + + + + 52 + 31 + Faculty News Releases, K-R: Lagenderfer, Joseph,undated + + + + + + 52 + 32 + Faculty News Releases, K-R: Larson, Elizabeth,undated + + + + + + 52 + 33 + Faculty News Releases, K-R: Lary, Marvis Jean,undated + + + + + + 52 + 34 + Faculty News Releases, K-R: Latty, Chris,undated + + + + + + 52 + 35 + Faculty News Releases, K-R: Lawrence, Joseph J., Sociology,undated + + + + + + 52 + 36 + Faculty News Releases, K-R: Lawrence Stephen,undated + + + + + + 52 + 37 + Faculty News Releases, K-R: Lawton, Stephen,undated + + + + + + 52 + 38 + Faculty News Releases, K-R: Lease, Joseph,undated + + + + + + 52 + 39 + Faculty News Releases, K-R: Leasher, Evelyn,undated + + + + + + 52 + 40 + Faculty News Releases, K-R: Lebeau, Estelle,undated + + + + + + 52 + 41 + Faculty News Releases, K-R: Ledlow, Gerald,undated + + + + + + 52 + 42 + Faculty News Releases, K-R: LeCaptain, Dale,undated + + + + + + 52 + 43 + Faculty News Releases, K-R: Lee, Carl,undated + + + + + + 52 + 44 + Faculty News Releases, K-R: Lee, June,undated + + + + + + 52 + 45 + Faculty News Releases, K-R: Lee, Kevin,undated + + + + + + 52 + 46 + Faculty News Releases, K-R: Lee, Robert,undated + + + + + + 52 + 47 + Faculty News Releases, K-R: Lee, Roger,undated + + + + + + 52 + 48 + Faculty News Releases, K-R: Leemaster, Helen,undated + + + + + + 52 + 49 + Faculty News Releases, K-R: Lehman, Mark,undated + + + + + + 52 + 50 + Faculty News Releases, K-R: Lein, Janet,undated + + + + + + 52 + 51 + Faculty News Releases, K-R: Leis, Nancy,undated + + + + + + 52 + 52 + Faculty News Releases, K-R: Lenker, Susan, Math,undated + + + + + + 52 + 53 + Faculty News Releases, K-R: Lenker, Terry, Math,undated + + + + + + 52 + 54 + Faculty News Releases, K-R: Lenon, Herbert L., Biology,undated + + + + + + 52 + 55 + Faculty News Releases, K-R: Leonard Susan, Development,undated + + + + + + 52 + 56 + Faculty News Releases, K-R: Lepisto, Lawrence, Business and Administration,undated + + + + + + 52 + 57 + Faculty News Releases, K-R: Lerch, Terry,undated + + + + + + 52 + 58 + Faculty News Releases, K-R: Lesiak, Judith F., Psychology,undated + + + + + + 52 + 59 + Faculty News Releases, K-R: Lesiak, Walter J., Jr., Psychology,undated + + + + + + 52 + 60 + Faculty News Releases, K-R: Leto, Michael A.,undated + + + + + + 52 + 61 + Faculty News Releases, K-R: Levine, Maureen,undated + + + + + + 52 + 62 + Faculty News Releases, K-R: Lewandos, Gleen, Chemistry,undated + + + + + + 52 + 63 + Faculty News Releases, K-R: Lewis, Albert,undated + + + + + + 52 + 64 + Faculty News Releases, K-R: Lewis, Lee,undated + + + + + + 52 + 65 + Faculty News Releases, K-R: Lewis, Wm. J., English,undated + + + + + + 52 + 66 + Faculty News Releases, K-R: Li, Bin,undated + + + + + + 52 + 67 + Faculty News Releases, K-R: Li, Xiaoping,undated + + + + + + 52 + 68 + Faculty News Releases, K-R: Libbee, Michael,undated + + + + + + 52 + 69 + Faculty News Releases, K-R: Libkuman, Terry M., Psychology,undated + + + + + + 52 + 70 + Faculty News Releases, K-R: Lieberman, Debra Jane,undated + + + + + + 52 + 71 + Faculty News Releases, K-R: Liebfritz, William,undated + + + + + + 52 + 72 + Faculty News Releases, K-R: Lile, James,undated + + + + + + 52 + 73 + Faculty News Releases, K-R: Lindahl, Robert,undated + + + + + + 52 + 74 + Faculty News Releases, K-R: Lindfors, Karl, Chemistry,undated + + + + + + 52 + 75 + Faculty News Releases, K-R: Lindley, Walter I., Jr.,undated + + + + + + 52 + 76 + Faculty News Releases, K-R: Ling, David A., Speech,undated + + + + + + 52 + 77 + Faculty News Releases, K-R: Linton, Eric,undated + + + + + + 52 + 78 + Faculty News Releases, K-R: Linud, JoAnn,undated + + + + + + 52 + 79 + Faculty News Releases, K-R: Littlefield, Alice,undated + + + + + + 52 + 80 + Faculty News Releases, K-R: Lloyd, Ernest, Music,undated + + + + + + 52 + 81 + Faculty News Releases, K-R: Lo, Celia,undated + + + + + + 52 + 82 + Faculty News Releases, K-R: Loeb, Carolyn S.,undated + + + + + + 52 + 83 + Faculty News Releases, K-R: Logomarsino, Jack, Human Nutrition,undated + + + + + + 52 + 84 + Faculty News Releases, K-R: Logsdon, Martha G.,undated + + + + + + 52 + 85 + Faculty News Releases, K-R: Long, Edgar,undated + + + + + + 52 + 86 + Faculty News Releases, K-R: Long, Nathan,undated + + + + + + 52 + 87 + Faculty News Releases, K-R: Long, Robert B.,undated + + + + + + 52 + 88 + Faculty News Releases, K-R: Lopes, John,undated + + + + + + 52 + 89 + Faculty News Releases, K-R: Lorand, John P., Chemistry,undated + + + + + + 52 + 90 + Faculty News Releases, K-R: Loubert, Peter,undated + + + + + + 52 + 91 + Faculty News Releases, K-R: Lounsbury, Jerald E.,undated + + + + + + 52 + 92 + Faculty News Releases, K-R: Love, Kevin,undated + + + + + + 52 + 93 + Faculty News Releases, K-R: Lovinger, Robert J., Psychology,undated + + + + + + 52 + 94 + Faculty News Releases, K-R: Lovinger, Sophie L., Psychology,undated + + + + + + 52 + 95 + Faculty News Releases, K-R: Luckhardt, Wesley,undated + + + + + + 52 + 96 + Faculty News Releases, K-R: Lutz, Ronald J.,undated + + + + + + 52 + 97 + Faculty News Releases, K-R: McMullen, Elsa,undated + + + + + + 52 + 98 + Faculty News Releases, K-R: Mahan, Harold D., Biology,undated + + + + + + 52 + 99 + Faculty News Releases, K-R: McCleary, Ward,undated + + + + + + 52 + 100 + Faculty News Releases, K-R: Miles, Albert S.,undated + + + + + + 52 + 101 + Faculty News Releases, K-R: Miller, Dan Pyle,undated + + + + + + 52 + 102 + Faculty News Releases, K-R: Minty, Judith, English,undated + + + + + + 52 + 103 + Faculty News Releases, K-R: Mourant, John A.,undated + + + + + + 52 + 104 + Faculty News Releases, K-R: Mulligan, William Henry, Jr.,undated + + + + + + 52 + 105 + Faculty News Releases, K-R: Obata, Yoshihiro,undated + + + + + + 52 + 106 + Faculty News Releases, K-R: Oana, Robert G.,undated + + + + + + 52 + 107 + Faculty News Releases, K-R: Ping, Charles J.,undated + + + + + + 52 + 108 + Faculty News Releases, K-R: Ribeiro, Gerardo,undated + + + + + + 53 + 1 + News, Subject D: DB Central [DeafBlind Central],undated + + + + + + 53 + 2 + News, Subject D: Dean of Students,undated + + + + + + 53 + 3 + News, Subject D: Dendritic Nanotechnologies,undated + + + + + + 53 + 4 + News, Subject D: Detroit,undated + + + + + + 53 + 5 + News, Subject D: Development,undated + + + + + + 53 + 6 + News, Subject D: DHA [Doctor of Health Administration] Program,undated + + + + + + 53 + 7 + News, Subject D: Dining Services,undated + + + + + + 53 + 8 + News, Subject D: Distinguished Service Award,undated + + + + + + 53 + 9 + News, Subject D: Office of Diversity,undated + + + + + + 53 + 10 + News, Subject D: Directory,undated + + + + + + 53 + 11 + News, Subject D: Dow Science Complex,undated + + + + + + 53 + 12 + News, Subject D: Earth’s Atmosphere Sciences,undated + + + + + + 53 + 13 + News, Subject D: Earth Day,undated + + + + + + 53 + 14 + News, Subject D: Economics,undated + + + + + + 53 + 15 + News, Subject D: Education Administration and Communication Leadership,undated + + + + + + 53 + 16 + News, Subject D: Educational Materials Center,undated + + + + + + 53 + 17 + News, Subject D: EHHS [Education, Healthy and Human Services],undated + + + + + + 53 + 18 + News, Subject D: College of EHHS,undated + + + + + + 54 + 1 + News, Subject A-B: 2010,undated + + + + + + 54 + 2 + News, Subject A-B: ADA [Americans with Disabilities Act],undated + + + + + + 54 + 3 + News, Subject A-B: AASCU [American Association of State Colleges and Universities] Bovee UC [University Center]“Memo”,undated + + + + + + 54 + 4 + News, Subject A-B: Academic Advising,undated + + + + + + 54 + 5 + News, Subject A-B: Academic Affairs File 1,undated + + + + + + 54 + 6 + News, Subject A-B: Academic Affairs File 2,undated + + + + + + 54 + 7 + News, Subject A-B: Academic Assis. Pro,undated + + + + + + 54 + 8 + News, Subject A-B: Academic Calendar,undated + + + + + + 54 + 9 + News, Subject A-B: Academic Senate,undated + + + + + + 54 + 10 + News, Subject A-B: Accounting,undated + + + + + + 54 + 11 + News, Subject A-B: Actualities,undated + + + + + + 54 + 12 + News, Subject A-B: Admissions,undated + + + + + + 54 + 13 + News, Subject A-B: Administration,undated + + + + + + 54 + 14 + News, Subject A-B: Admin. Affairs,undated + + + + + + 54 + 15 + News, Subject A-B: Affirmative Action,undated + + + + + + 54 + 16 + News, Subject A-B: Alcohol and Drug Intervention,undated + + + + + + 54 + 17 + News, Subject A-B: Prominent Alumni,undated + + + + + + 54 + 18 + News, Subject A-B: Americans with Disabilities,undated + + + + + + 54 + 19 + News, Subject A-B: AP [Advanced Placement] Compensation Communication,undated + + + + + + 54 + 20 + News, Subject A-B: Appointments,undated + + + + + + 54 + 21 + News, Subject A-B: Aramark,undated + + + + + + 54 + 22 + News, Subject A-B: Architect,undated + + + + + + 54 + 23 + News, Subject A-B: Art,undated + + + + + + 54 + 24 + News, Subject A-B: Art Reach,undated + + + + + + 54 + 25 + News, Subject A-B: Art and Science,undated + + + + + + 54 + 26 + News, Subject A-B: Athletics,undated + + + + + + 54 + 27 + News, Subject A-B: NCAA [National Collegiate Athletic Association] Self-Study,undated + + + + + + 54 + 28 + News, Subject A-B: Attorney,undated + + + + + + 54 + 29 + News, Subject A-B: Awards,undated + + + + + + 55 + 1 + News, Subject B-C: Back-To-School,undated + + + + + + 55 + 2 + News, Subject B-C: Back-To-School 1983 and 1984,1983-1984 + + + + + + 55 + 3 + News, Subject B-C: Back-To-School 1985,1985 + + + + + + 55 + 4 + News, Subject B-C: Beaver Island,undated + + + + + + 55 + 5 + News, Subject B-C: Biology Board of Trustees,undated + + + + + + 55 + 6 + News, Subject B-C: Bookstore,undated + + + + + + 55 + 7 + News, Subject B-C: Bovee UC [University Center],undated + + + + + + 55 + 8 + News, Subject B-C: Broadcast Cinematic Arts,undated + + + + + + 55 + 9 + News, Subject B-C: Broadcast News Tips,undated + + + + + + 55 + 10 + News, Subject B-C: Budget,undated + + + + + + 55 + 11 + News, Subject B-C: Business Administration,undated + + + + + + 55 + 12 + News, Subject B-C: Business and Finance,undated + + + + + + 55 + 13 + News, Subject B-C: BIS [Business Information Services],undated + + + + + + 55 + 14 + News, Subject B-C: Business Law and Regulation,undated + + + + + + 55 + 15 + News, Subject B-C: Camp,undated + + + + + + 55 + 16 + News, Subject B-C: Campus Compact,undated + + + + + + 55 + 17 + News, Subject B-C: Campus Rec,undated + + + + + + 55 + 18 + News, Subject B-C: Cantelon Investigation,undated + + + + + + 55 + 19 + News, Subject B-C: Centennial Sculpture,undated + + + + + + 55 + 20 + News, Subject B-C: Centennial,undated + + + + + + 55 + 21 + News, Subject B-C: Center for Academic Excellence,undated + + + + + + 55 + 22 + News, Subject B-C: CARRS [Center for Applied Research Studies],undated + + + + + + 55 + 23 + News, Subject B-C: Cart,undated + + + + + + 55 + 24 + News, Subject B-C: Center for Communication Programs,undated + + + + + + 55 + 25 + News, Subject B-C: Center for Cultural and Natural History,undated + + + + + + 55 + 26 + News, Subject B-C: Center for Governmental Research,undated + + + + + + 55 + 27 + News, Subject B-C: Center Economic Education,undated + + + + + + 55 + 28 + News, Subject B-C: Center for Health-Related Programs,undated + + + + + + 55 + 29 + News, Subject B-C: Center for Learning Assessment,undated + + + + + + 55 + 30 + News, Subject B-C: Center for Professional and Personal Ethics,undated + + + + + + 55 + 31 + News, Subject B-C: Center for Public Service,undated + + + + + + 56 + 1 + News by Publication Number/ Date, 2000-2003: 8631-8897,2000-2003 + + + + + + 56 + 2 + News by Publication Number/ Date, 2000-2003: 8898-9087,2000-2003 + + + + + + 56 + 3 + News by Publication Number/ Date, 2000-2003: 9088-9187,2000-2003 + + + + + + 56 + 4 + News by Publication Number/ Date, 2000-2003: 9188-9446,2000-2003 + + + + + + 56 + 5 + News by Publication Number/ Date, 2000-2003: 9447-9702,2000-2003 + + + + + + 56 + 6 + News by Publication Number/ Date, 2000-2003: 9703-9818,2000-2003 + + + + + + 57 + 1 + CMU News, Subject, C: CMU Research Corp,undated + + + + + + 57 + 2 + CMU News, Subject, C: Certificates,undated + + + + + + 57 + 3 + CMU News, Subject, C: Centralis,undated + + + + + + 57 + 4 + CMU News, Subject, C: Charter Schools,undated + + + + + + 57 + 5 + CMU News, Subject, C: Chemistry,undated + + + + + + 57 + 6 + CMU News, Subject, C: Child Development Learning Lab,undated + + + + + + 57 + 7 + CMU News, Subject, C: China Agreement,undated + + + + + + 57 + 8 + CMU News, Subject, C: Chip Card Office,undated + + + + + + 57 + 9 + CMU News, Subject, C: Chippewa Logo,undated + + + + + + 57 + 10 + CMU News, Subject, C: Chippewa Nickname (Folder 1 of 2),undated + + + + + + 57 + 1 + CMU News, Subject, C: Chippewa Nickname (Folder 2 of 2),undated + + + + + + 57 + 12 + CMU News, Subject, C: Clarke Historical Library,undated + + + + + + 57 + 13 + CMU News, Subject, C: LaBelle,undated + + + + + + 57 + 14 + CMU News, Subject, C: CMU Friends,undated + + + + + + 57 + 15 + CMU News, Subject, C: CMU Policies,undated + + + + + + 57 + 16 + CMU News, Subject, C: Collective Bargaining,undated + + + + + + 57 + 17 + CMU News, Subject, C: Combined Services,undated + + + + + + 57 + 18 + CMU News, Subject, C: Commencement File 1,undated + + + + + + 57 + 19 + CMU News, Subject, C: Commencement File 2,undated + + + + + + 57 + 20 + CMU News, Subject, C: Communication and Fine Arts,undated + + + + + + 57 + 21 + CMU News, Subject, C: Communications Disorders,undated + + + + + + 57 + 22 + CMU News, Subject, C: Community Announcements,undated + + + + + + 57 + 23 + CMU News, Subject, C: Computers,undated + + + + + + 57 + 24 + CMU News, Subject, C: Computer Science,undated + + + + + + 57 + 25 + CMU News, Subject, C: Counseling and Special Education,undated + + + + + + 57 + 26 + CMU News, Subject, C: Counseling Center,undated + + + + + + 57 + 27 + CMU News, Subject, C: Creative Arts Gallery,undated + + + + + + 57 + 28 + CMU News, Subject, C: Cutline,undated + + + + + + 58 + 1 + News by Publication Number/ Date, 1997-1999: 6513-6691,1997-1999 + + + + + + 58 + 2 + News by Publication Number/ Date, 1997-1999: 6692-6913,1997-1999 + + + + + + 58 + 3 + News by Publication Number/ Date, 1997-1999: 6915-6999,1997-1999 + + + + + + 58 + 4 + News by Publication Number/ Date, 1997-1999: 7000-7214,1997-1999 + + + + + + 58 + 5 + News by Publication Number/ Date, 1997-1999: 7215-7440,1997-1999 + + + + + + 58 + 6 + News by Publication Number/ Date, 1997-1999: 7441-7561,1997-1999 + + + + + + 59 + 1 + News by Publication Number/ Date, 2000-2001: 7562-7774,2000-2001 + + + + + + 59 + 2 + News by Publication Number/ Date, 2000-2001: 7775-7972,2000-2001 + + + + + + 59 + 3 + News by Publication Number/ Date, 2000-2001: 7973-8143,2000-2001 + + + + + + 59 + 4 + News by Publication Number/ Date, 2000-2001: 8144-8394,2000-2001 + + + + + + 59 + 5 + News by Publication Number/ Date, 2000-2001: 8395-8527,2000-2001 + + + + + + 59 + 6 + News by Publication Number/ Date, 2000-2001: 8528-8630,2000-2001 + + + + + + 60 + 1 + CMU News, 2003-2005: 9819-9992,2003-2005 + + + + + + 60 + 2 + CMU News, 2003-2005: 9993-10291,2003-2005 + + + + + + 60 + 3 + CMU News, 2003-2005: 10292-10458,2003-2005 + + + + + + 60 + 4 + CMU News, 2003-2005: 10459-10591,2003-2005 + + + + + + 60 + 5 + CMU News, 2003-2005: 10592-10946,2003-2005 + + + + + + 60 + 6 + CMU News, 2003-2005: 10947-11158,2003-2005 + + + + + + 61 + 1 + CMU News, 2005-2007: 11159-11304,2005-2007 + + + + + + 61 + 2 + CMU News, 2005-2007: 11305-11730,2005-2007 + + + + + + 61 + 3 + CMU News, 2005-2007: 11731-11835,2005-2007 + + + + + + 61 + 4 + CMU News, 2005-2007: 11836-11967,2005-2007 + + + + + + 61 + 5 + CMU News, 2005-2007: 11968-12123,2005-2007 + + + + + + 61 + 6 + CMU News, 2005-2007: 12124-12280,2005-2007 + + + + + + 61 + 7 + CMU News, 2005-2007: 12281-12394,2005-2007 + + + + + + 62 + 1 + CMU News, 2007-2012: 12395-12636,2007-2012 + + + + + + 62 + 2 + CMU News, 2007-2012: 12637-12825,2007-2012 + + + + + + 62 + 3 + CMU News, 2007-2012: 12826-12950,2007-2012 + + + + + + 62 + 4 + CMU News, 2007-2012: 12951-13112,2007-2012 + + + + + + 62 + 5 + CMU News, 2007-2012: 13113-13289,2007-2012 + + + + + + 62 + 6 + CMU News, 2007-2012: 13290-13486,2007-2012 + + + + + + 63 + 1 + (.5 cubic ft. Box): CMU News, 2013-2014: 13487-13684,2013-2014 + + + + + + 63 + 2 + (.5 cubic ft. Box): CMU News, 2013-2014: 13685-13831,2013-2014 + + + + + + 64 + 1 + News of Faculty A-P: Alexander, Charles D.,undated + + + + + + 64 + 2 + News of Faculty A-P: Anderson, C. F.,undated + + + + + + 64 + 3 + News of Faculty A-P: Andrews, Carol,undated + + + + + + 64 + 4 + News of Faculty A-P: Anthony, Robert L.,undated + + + + + + 64 + 5 + News of Faculty A-P: Arndt, August H.,undated + + + + + + 64 + 6 + News of Faculty A-P: Ashcraft, Norman,undated + + + + + + 64 + 7 + News of Faculty A-P: Babcock, Edward A., Physics,undated + + + + + + 64 + 8 + News of Faculty A-P: Baker, Jerry,undated + + + + + + 64 + 9 + News of Faculty A-P: Baumgardner, Mary A., Business Education,undated + + + + + + 64 + 10 + News of Faculty A-P: Bensley, Loren B, Jr., Health,undated + + + + + + 64 + 11 + News of Faculty A-P: Bertsch, David,undated + + + + + + 64 + 12 + News of Faculty A-P: Blackburn, George M., History,undated + + + + + + 64 + 13 + News of Faculty A-P: Kenneth T. Bordine,undated + + + + + + 64 + 14 + News of Faculty A-P: Bottaro, Mary, Physical Education,undated + + + + + + 64 + 15 + News of Faculty A-P: Bowman, George W.,undated + + + + + + 64 + 16 + News of Faculty A-P: Brewer, Helene B.,undated + + + + + + 64 + 17 + News of Faculty A-P: Briscoe, Frederick, Student Teaching,undated + + + + + + 64 + 18 + News of Faculty A-P: Brockman, Ellis R., Biology,undated + + + + + + 64 + 19 + News of Faculty A-P: Brown, Grant H., Public Services,undated + + + + + + 64 + 20 + News of Faculty A-P: Brown, Martha H., Histor,undated + + + + + + 64 + 21 + News of Faculty A-P: Buchanan, Austin J., Admissions,undated + + + + + + 64 + 22 + News of Faculty A-P: Bulger, William T., History,undated + + + + + + 64 + 23 + News of Faculty A-P: Burdette, David,undated + + + + + + 64 + 24 + News of Faculty A-P: Burg, Sally T.,undated + + + + + + 64 + 25 + News of Faculty A-P: Bye, Nikoline A., Math,undated + + + + + + 64 + 26 + News of Faculty A-P: Cantelon, John,undated + + + + + + 64 + 27 + News of Faculty A-P: Carey, Michael,undated + + + + + + 64 + 28 + News of Faculty A-P: Carey, Terrence J.,undated + + + + + + 64 + 29 + News of Faculty A-P: Duguay, Edana,undated + + + + + + 64 + 30 + News of Faculty A-P: Eber, Woodrow J.,undated + + + + + + 64 + 31 + News of Faculty A-P: Elliott, Malcom,undated + + + + + + 64 + 32 + News of Faculty A-P: Evans, Charlotte B.,undated + + + + + + 64 + 33 + News of Faculty A-P: Evans, Howard V., History,undated + + + + + + 64 + 34 + News of Faculty A-P: Fagerlund, William A.,undated + + + + + + 64 + 35 + News of Faculty A-P: Felter, Gerard R., Housing,undated + + + + + + 64 + 36 + News of Faculty A-P: Felter, Ruth S.,undated + + + + + + 64 + 37 + News of Faculty A-P: Fetting, Hans F.,undated + + + + + + 64 + 38 + News of Faculty A-P: Finch, Ronald E.,undated + + + + + + 64 + 39 + News of Faculty A-P: Finch, Ronald W.,undated + + + + + + 64 + 40 + News of Faculty A-P: Fisher, Edward, OIS,undated + + + + + + 64 + 41 + News of Faculty A-P: Ford, Lois,undated + + + + + + 64 + 42 + News of Faculty A-P: Franklin, William E., History,undated + + + + + + 64 + 43 + News of Faculty A-P: Fuller, Gerald B., Psychology,undated + + + + + + 64 + 44 + News of Faculty A-P: Fulton, Henry L., English,undated + + + + + + 64 + 45 + News of Faculty A-P: Galbraith, Ann,undated + + + + + + 64 + 46 + News of Faculty A-P: Gaskill, A. R.,undated + + + + + + 64 + 47 + News of Faculty A-P: Gates, Hill,undated + + + + + + 64 + 48 + News of Faculty A-P: Gilbert, Marion,undated + + + + + + 64 + 49 + News of Faculty A-P: Gillaspy, Gertrude,undated + + + + + + 64 + 50 + News of Faculty A-P: Gillingham, David,undated + + + + + + 64 + 51 + News of Faculty A-P: Carr, Donald W.,undated + + + + + + 64 + 52 + News of Faculty A-P: Christensen, Shawmut,undated + + + + + + 64 + 53 + News of Faculty A-P: Church, Eugene,undated + + + + + + 64 + 54 + News of Faculty A-P: Clegg, Lamont,undated + + + + + + 64 + 55 + News of Faculty A-P: Clendening, Byron J.,undated + + + + + + 64 + 56 + News of Faculty A-P: Collins, Jeanne Frances Hummel,undated + + + + + + 64 + 57 + News of Faculty A-P: Connell, Robert E.,undated + + + + + + 64 + 58 + News of Faculty A-P: Colvin, Virginia L.,undated + + + + + + 64 + 59 + News of Faculty A-P: Cooper, Emma Lou,undated + + + + + + 64 + 60 + News of Faculty A-P: Cova, Louise Ilene,undated + + + + + + 64 + 61 + News of Faculty A-P: Crippo, Doris L.,undated + + + + + + 64 + 62 + News of Faculty A-P: Croftchik, Victor P., Art,undated + + + + + + 64 + 63 + News of Faculty A-P: Cross, Lois,undated + + + + + + 64 + 64 + News of Faculty A-P: Cumming, John, Clarke Historical Library,undated + + + + + + 64 + 65 + News of Faculty A-P: D’Haillecourt, Gaston,undated + + + + + + 64 + 66 + News of Faculty A-P: Davis, Marcine C.,undated + + + + + + 64 + 67 + News of Faculty A-P: Davis, Helen,undated + + + + + + 64 + 68 + News of Faculty A-P: Davis, Virgil,undated + + + + + + 64 + 69 + News of Faculty A-P: Dawson, Lawrence R., Jr.,undated + + + + + + 64 + 70 + News of Faculty A-P: Dickerson, Burton,undated + + + + + + 64 + 71 + News of Faculty A-P: Dietrich, Richard Vincent,undated + + + + + + 64 + 72 + News of Faculty A-P: Dietz, Norman C.,undated + + + + + + 64 + 73 + News of Faculty A-P: Dreyer, Avon M,undated + + + + + + 64 + 74 + News of Faculty A-P: Goenner, Roger J.,undated + + + + + + 64 + 75 + News of Faculty A-P: Gollesch, Genevieve, Speech and Dramatic Arts,undated + + + + + + 64 + 76 + News of Faculty A-P: Gollesch, William D.,undated + + + + + + 64 + 77 + News of Faculty A-P: Goodell, David T., Elementary Education,undated + + + + + + 64 + 78 + News of Faculty A-P: Gott, Margaret E.,undated + + + + + + 64 + 79 + News of Faculty A-P: Grimley, Arlene, Library,undated + + + + + + 64 + 80 + News of Faculty A-P: Grimley, Vann,undated + + + + + + 64 + 81 + News of Faculty A-P: Grodski, Gertrude V.,undated + + + + + + 64 + 82 + News of Faculty A-P: Gump, J. R.,undated + + + + + + 64 + 83 + News of Faculty A-P: Gunton, Adah C.,undated + + + + + + 64 + 84 + News of Faculty A-P: Hakala, W. Albert, Education,undated + + + + + + 64 + 85 + News of Faculty A-P: Hansen, Jessemin P.,undated + + + + + + 64 + 86 + News of Faculty A-P: Harper, William W.,undated + + + + + + 64 + 87 + News of Faculty A-P: Harris, Wilbur S.,undated + + + + + + 64 + 88 + News of Faculty A-P: Hawlins, Williams F.,undated + + + + + + 64 + 89 + News of Faculty A-P: Hecksel, Richard E.,undated + + + + + + 64 + 90 + News of Faculty A-P: Heilbronn, Edna M.,undated + + + + + + 64 + 91 + News of Faculty A-P: Herrera, Robert E.,undated + + + + + + 64 + 92 + News of Faculty A-P: Heydenburg, Floyd A., Music,undated + + + + + + 64 + 93 + News of Faculty A-P: Hilslop, Lucile I.,undated + + + + + + 64 + 94 + News of Faculty A-P: Hohn, Matthew H., Biology,undated + + + + + + 64 + 95 + News of Faculty A-P: Holland, Jean, Psychology,undated + + + + + + 64 + 96 + News of Faculty A-P: Hoover, Regina M., English,undated + + + + + + 64 + 97 + News of Faculty A-P: Howard, Carole Alice,undated + + + + + + 64 + 98 + News of Faculty A-P: Howell, Harry E.,undated + + + + + + 64 + 99 + News of Faculty A-P: Huston, Joseph T., History,undated + + + + + + 64 + 100 + News of Faculty A-P: Ingram, Franklyn C., IET,undated + + + + + + 64 + 101 + News of Faculty A-P: Jacobson, Baruch S.,undated + + + + + + 64 + 102 + News of Faculty A-P: Jacobson, Marjory E.,undated + + + + + + 64 + 103 + News of Faculty A-P: Jennings, George F.,undated + + + + + + 64 + 104 + News of Faculty A-P: Johnston, Faith M., Biology,undated + + + + + + 64 + 105 + News of Faculty A-P: Johnson, Margaret E., Placement Office,undated + + + + + + 64 + 106 + News of Faculty A-P: Kabbe, Frederick Carl, Chemistry,undated + + + + + + 64 + 107 + News of Faculty A-P: Kadler, Eric H.,undated + + + + + + 64 + 108 + News of Faculty A-P: Kaninske, Henrietta,undated + + + + + + 64 + 109 + News of Faculty A-P: Kane, Suzanne Margaret,undated + + + + + + 64 + 110 + News of Faculty A-P: Keilitz, Dave,undated + + + + + + 64 + 111 + News of Faculty A-P: Kilbourn, Donald W.,undated + + + + + + 64 + 112 + News of Faculty A-P: Killian, Franklin K.,undated + + + + + + 64 + 113 + News of Faculty A-P: King, Barbara S.,undated + + + + + + 64 + 114 + News of Faculty A-P: Kjolhede, Ted,undated + + + + + + 64 + 115 + News of Faculty A-P: Kline, Richard R., Art,undated + + + + + + 64 + 116 + News of Faculty A-P: Knapp, Austin C.,undated + + + + + + 64 + 117 + News of Faculty A-P: Koch, Kathryn E.,undated + + + + + + 64 + 118 + News of Faculty A-P: Koenig, Frances B.,undated + + + + + + 64 + 119 + News of Faculty A-P: Kohrman, Robert E.,undated + + + + + + 64 + 120 + News of Faculty A-P: Kries, Olive H.,undated + + + + + + 64 + 121 + News of Faculty A-P: Kyser, Dewayne,undated + + + + + + 64 + 122 + News of Faculty A-P: Kyser, Mabel E.,undated + + + + + + 64 + 123 + News of Faculty A-P: Lahman, Donald E., Library,undated + + + + + + 64 + 124 + News of Faculty A-P: Lamore, Ethel B.,undated + + + + + + 64 + 125 + News of Faculty A-P: Larowe, Esther,undated + + + + + + 64 + 126 + News of Faculty A-P: Lakey, William E., Math,undated + + + + + + 64 + 127 + News of Faculty A-P: Lauer, Ernestine R.,undated + + + + + + 64 + 128 + News of Faculty A-P: Lauer, George N., Registrar,undated + + + + + + 64 + 129 + News of Faculty A-P: Legree, Homer F.,undated + + + + + + 64 + 130 + News of Faculty A-P: Levich, Calman,undated + + + + + + 64 + 131 + News of Faculty A-P: Lewis, Ronald J.,undated + + + + + + 64 + 132 + News of Faculty A-P: Lighten, Elmax, English,undated + + + + + + 64 + 133 + News of Faculty A-P: Johnson, William L.,undated + + + + + + 64 + 134 + News of Faculty A-P: Kehetian, Mitchell,undated + + + + + + 64 + 135 + News of Faculty A-P: Lindblom, Mary L.,undated + + + + + + 64 + 136 + News of Faculty A-P: Lohr, Helen,undated + + + + + + 64 + 137 + News of Faculty A-P: Lombard, James S., Jr.,undated + + + + + + 64 + 138 + News of Faculty A-P: Dr. Gilbert O. Maienknecht,undated + + + + + + 64 + 139 + News of Faculty A-P: Marquardt, Edward T.,undated + + + + + + 64 + 140 + News of Faculty A-P: Martin, George B.,undated + + + + + + 64 + 141 + News of Faculty A-P: Maxwell, Keith L.,undated + + + + + + 64 + 142 + News of Faculty A-P: Mayhew, Jean B.,undated + + + + + + 64 + 143 + News of Faculty A-P: McGaugh, Maurice E., Geography,undated + + + + + + 64 + 144 + News of Faculty A-P: McTaggart, James, Library,undated + + + + + + 64 + 145 + News of Faculty A-P: Mead, James L.,undated + + + + + + 64 + 146 + News of Faculty A-P: Mehlenbacher, Julia M.,undated + + + + + + 64 + 147 + News of Faculty A-P: Meltzer, Bernard N., Sociology,undated + + + + + + 64 + 148 + News of Faculty A-P: Miller, Harry A.,undated + + + + + + 64 + 149 + News of Faculty A-P: Mills, Elizabeth R.,undated + + + + + + 64 + 150 + News of Faculty A-P: Minelli, Ernest L.,undated + + + + + + 64 + 151 + News of Faculty A-P: Minor, Van Lieu,undated + + + + + + 64 + 152 + News of Faculty A-P: Misner, Jerold C.,undated + + + + + + 64 + 153 + News of Faculty A-P: Molson, Francis Joseph,undated + + + + + + 64 + 154 + News of Faculty A-P: Moodie, Clara L.,undated + + + + + + 64 + 155 + News of Faculty A-P: Moore, Wayne E., Geography,undated + + + + + + 64 + 156 + News of Faculty A-P: Morsink, Helen M.undated + + + + + + 64 + 157 + News of Faculty A-P: Mulholland, Marion J., English,undated + + + + + + 64 + 158 + News of Faculty A-P: Murphy, Patricia A.,undated + + + + + + 64 + 159 + News of Faculty A-P: Muyskens, Gerrit D.,undated + + + + + + 64 + 160 + News of Faculty A-P: Nash, Curtis E.,undated + + + + + + 64 + 161 + News of Faculty A-P: Fern Natzel,undated + + + + + + 64 + 162 + News of Faculty A-P: Nelson, Burton D., Geography,undated + + + + + + 64 + 163 + News of Faculty A-P: Newman, Wayne,undated + + + + + + 64 + 164 + News of Faculty A-P: Nisbet, Richard,undated + + + + + + 64 + 165 + News of Faculty A-P: Norwick, Stephen, Geography,undated + + + + + + 64 + 166 + News of Faculty A-P: Oberlander, Oliver,undated + + + + + + 64 + 167 + News of Faculty A-P: Obuchowski, Mary,undated + + + + + + 64 + 168 + News of Faculty A-P: O’Neil, Ella,undated + + + + + + 64 + 169 + News of Faculty A-P: Parfitt, Richard A.,undated + + + + + + 64 + 170 + News of Faculty A-P: Parkins, Ivan W.,undated + + + + + + 64 + 171 + News of Faculty A-P: Petras, John W., Sociology,undated + + + + + + 64 + 172 + News of Faculty A-P: Petrick, Michael,undated + + + + + + 64 + 173 + News of Faculty A-P: Pickler, Jeffrey,undated + + + + + + 64 + 174 + News of Faculty A-P: Plummer, Adelbert C.,undated + + + + + + 64 + 175 + News of Faculty A-P: Poage, Melvin, Math,undated + + + + + + 64 + 176 + News of Faculty A-P: Poor, Gerald L.,undated + + + + + + 64 + 177 + News of Faculty A-P: Pratt, Gertrude V., Math,undated + + + + + + 64 + 178 + News of Faculty A-P: Pratt, Karl C., Psychology,undated + + + + + + 64 + 179 + News of Faculty A-P: Price, Monroe S.,undated + + + + + + 65 + 1 + News of Faculty R-Z: Rau, Gilbert,undated + + + + + + 65 + 2 + News of Faculty R-Z: Read, Cecil B., Math,undated + + + + + + 65 + 3 + News of Faculty R-Z: Resetar, Albert P.,undated + + + + + + 65 + 4 + News of Faculty R-Z: Reynolds, Roy R.undated + + + + + + 65 + 5 + News of Faculty R-Z: Ricards, Sherman L., Jr.,undated + + + + + + 65 + 6 + News of Faculty R-Z: Richtmeyer, Cleon C.,undated + + + + + + 65 + 7 + News of Faculty R-Z: Robinson, Francis A.,undated + + + + + + 65 + 8 + News of Faculty R-Z: Rood, Thomas R.,undated + + + + + + 65 + 9 + News of Faculty R-Z: Rose, Dan,undated + + + + + + 65 + 10 + News of Faculty R-Z: Ragan, Russell,undated + + + + + + 65 + 11 + News of Faculty R-Z: Rankin, Robert, Psychology,undated + + + + + + 65 + 12 + News of Faculty R-Z: Reath, James E.,undated + + + + + + 65 + 13 + News of Faculty R-Z: Reynolds, M. LeRoy,undated + + + + + + 65 + 14 + News of Faculty R-Z: Riefel, Chalmers,undated + + + + + + 65 + 15 + News of Faculty R-Z: Robinson, Forrest, Music,undated + + + + + + 65 + 16 + News of Faculty R-Z: Robinson, Doris M.,undated + + + + + + 65 + 17 + News of Faculty R-Z: Rode, Kenneth P.,undated + + + + + + 65 + 18 + News of Faculty R-Z: Roe, Vidian L.,undated + + + + + + 65 + 19 + News of Faculty R-Z: Rolph, Alda T.,undated + + + + + + 65 + 20 + News of Faculty R-Z: Rolph, Mary R.,undated + + + + + + 65 + 21 + News of Faculty R-Z: Rosek, Patricia,undated + + + + + + 65 + 22 + News of Faculty R-Z: Ross, Edgar, Music,undated + + + + + + 65 + 23 + News of Faculty R-Z: Rouner, Evelyn I.,undated + + + + + + 65 + 24 + News of Faculty R-Z: Rulong, Robert,undated + + + + + + 65 + 25 + News of Faculty R-Z: Ross, L. J.,undated + + + + + + 65 + 26 + News of Faculty R-Z: Rowe, Eugene C.,undated + + + + + + 65 + 27 + News of Faculty R-Z: Ryan, Grace L.,undated + + + + + + 65 + 28 + News of Faculty R-Z: Ryder, Walter S.,undated + + + + + + 65 + 29 + News of Faculty R-Z: Saunders, Jack, Music,undated + + + + + + 65 + 30 + News of Faculty R-Z: Schneider, George A., English,undated + + + + + + 65 + 31 + News of Faculty R-Z: Schultz, Yda L., Music,undated + + + + + + 65 + 32 + News of Faculty R-Z: Schulwitz, Bonnie,undated + + + + + + 65 + 33 + News of Faculty R-Z: Serier, Lester H.,undated + + + + + + 65 + 34 + News of Faculty R-Z: Sharp, D. Louise,undated + + + + + + 65 + 35 + News of Faculty R-Z: Slater, John,undated + + + + + + 65 + 36 + News of Faculty R-Z: Sleeper, William,undated + + + + + + 65 + 37 + News of Faculty R-Z: Smith, Irvine N.,undated + + + + + + 65 + 38 + News of Faculty R-Z: Smith, Johnie,undated + + + + + + 65 + 39 + News of Faculty R-Z: Smith, Maurice L.,undated + + + + + + 65 + 40 + News of Faculty R-Z: Smith, Mayme V.,undated + + + + + + 65 + 41 + News of Faculty R-Z: Smith, Philip M.,undated + + + + + + 65 + 42 + News of Faculty R-Z: Smith, Woodward S.,undated + + + + + + 65 + 43 + News of Faculty R-Z: Somerville, Alan H.,undated + + + + + + 65 + 44 + News of Faculty R-Z: Spacie, Edwin G.,undated + + + + + + 65 + 45 + News of Faculty R-Z: Spece, Paul S.,undated + + + + + + 65 + 46 + News of Faculty R-Z: Starner, Glenn,undated + + + + + + 65 + 47 + News of Faculty R-Z: Stillings, Frank S.,undated + + + + + + 65 + 48 + News of Faculty R-Z: Stressman, John Wm.,undated + + + + + + 65 + 49 + News of Faculty R-Z: Stroyan, H.R.,undated + + + + + + 65 + 50 + News of Faculty R-Z: St. Clair, Alice N.,undated + + + + + + 65 + 51 + News of Faculty R-Z: Sauerbrun, R.,undated + + + + + + 65 + 52 + News of Faculty R-Z: Sauter, Waldo,undated + + + + + + 65 + 53 + News of Faculty R-Z: Sazima, Donald C.,undated + + + + + + 65 + 54 + News of Faculty R-Z: Schaefer, C. Dorothy,undated + + + + + + 65 + 55 + News of Faculty R-Z: Scheel, Carl A., Biology,undated + + + + + + 65 + 56 + News of Faculty R-Z: Seger, Martha,undated + + + + + + 65 + 57 + News of Faculty R-Z: Severson, Robert F.,undated + + + + + + 65 + 58 + News of Faculty R-Z: Shields, Selvin E., Lt. Col.,undated + + + + + + 65 + 59 + News of Faculty R-Z: Shonk, Carl E., Chemistry,undated + + + + + + 65 + 60 + News of Faculty R-Z: Shurtliff, Jay H.,undated + + + + + + 65 + 61 + News of Faculty R-Z: Simonds, Freddie,undated + + + + + + 65 + 62 + News of Faculty R-Z: Smith, Betty J.,undated + + + + + + 65 + 63 + News of Faculty R-Z: Smith, Earl W., English,undated + + + + + + 65 + 64 + News of Faculty R-Z: Smith, J. Harold, English,undated + + + + + + 65 + 65 + News of Faculty R-Z: Smith, Lawrence,undated + + + + + + 65 + 66 + News of Faculty R-Z: Smith, Katharine,undated + + + + + + 65 + 67 + News of Faculty R-Z: Smith, Martha,undated + + + + + + 65 + 68 + News of Faculty R-Z: Smith, Virginia,undated + + + + + + 65 + 69 + News of Faculty R-Z: Stacy, Glenn J.,undated + + + + + + 65 + 70 + News of Faculty R-Z: Somers, Charles Norman,undated + + + + + + 65 + 71 + News of Faculty R-Z: Sommer, Howard,undated + + + + + + 65 + 72 + News of Faculty R-Z: Squier, ShirleyStansberry, George E.,undated + + + + + + 65 + 73 + News of Faculty R-Z: Steg, Olaf,undated + + + + + + 65 + 74 + News of Faculty R-Z: Stegenga, Constance M.,undated + + + + + + 65 + 75 + News of Faculty R-Z: Stepanenko, Mylola,undated + + + + + + 65 + 76 + News of Faculty R-Z: Sullivan, Robert J.,undated + + + + + + 65 + 77 + News of Faculty R-Z: Swart, William L., Math,undated + + + + + + 65 + 78 + News of Faculty R-Z: Sych, Larry,undated + + + + + + 65 + 79 + News of Faculty R-Z: Tambling, Charles F.,undated + + + + + + 65 + 80 + News of Faculty R-Z: Telfer, Harold E.,undated + + + + + + 65 + 81 + News of Faculty R-Z: Thomas, Alfred S.,undated + + + + + + 65 + 82 + News of Faculty R-Z: Thorpe, Jesse B.,undated + + + + + + 65 + 83 + News of Faculty R-Z: Trout, David M.,undated + + + + + + 65 + 84 + News of Faculty R-Z: Theunissen, William,undated + + + + + + 65 + 85 + News of Faculty R-Z: Thiers, Myrle G.,undated + + + + + + 65 + 86 + News of Faculty R-Z: Thompson, Mary E.,undated + + + + + + 65 + 87 + News of Faculty R-Z: Topinka, Karel,undated + + + + + + 65 + 88 + News of Faculty R-Z: Tubbs, Jerry R.,undated + + + + + + 65 + 89 + News of Faculty R-Z: Uglam, Kenneth L., Chemistry,undated + + + + + + 65 + 90 + News of Faculty R-Z: Ux, Katherine A.,undated + + + + + + 65 + 91 + News of Faculty R-Z: Valentine, William D., Speech,undated + + + + + + 65 + 92 + News of Faculty R-Z: Vonreichbauer, William,undated + + + + + + 65 + 93 + News of Faculty R-Z: Elizabeth M. Vanover,undated + + + + + + 65 + 94 + News of Faculty R-Z: Van Dyne, Helen M.,undated + + + + + + 65 + 95 + News of Faculty R-Z: H.L. Varney,undated + + + + + + 65 + 96 + News of Faculty R-Z: Villars, Russell L.,undated + + + + + + 65 + 97 + News of Faculty R-Z: Weber, Daniel B.,undated + + + + + + 65 + 98 + News of Faculty R-Z: Westie, Charles M.,undated + + + + + + 65 + 99 + News of Faculty R-Z: Whitman, Robert N.,undated + + + + + + 65 + 100 + News of Faculty R-Z: Whitmore, Edward H.,undated + + + + + + 65 + 101 + News of Faculty R-Z: Williams, Louise A.,undated + + + + + + 65 + 102 + News of Faculty R-Z: Wills, Mary M.,undated + + + + + + 65 + 103 + News of Faculty R-Z: Walter S. Wightman,undated + + + + + + 65 + 104 + News of Faculty R-Z: Willwerth, Paul I., Music,undated + + + + + + 65 + 105 + News of Faculty R-Z: Wilson, Buena M.,undated + + + + + + 65 + 106 + News of Faculty R-Z: Wood, Carl A.,undated + + + + + + 65 + 107 + News of Faculty R-Z: Worting, C. Jarvis,undated + + + + + + 65 + 108 + News of Faculty R-Z: Wright, Dr. Willbert,undated + + + + + + 65 + 109 + News of Faculty R-Z: Waggoner, Wilbur J., Math,undated + + + + + + 65 + 110 + News of Faculty R-Z: Walden, J. B.,undated + + + + + + 65 + 111 + News of Faculty R-Z: Walker, George Henry, Jr.,undated + + + + + + 65 + 112 + News of Faculty R-Z: Wallace, Martha D.,undated + + + + + + 65 + 113 + News of Faculty R-Z: Waltmire, Robert,undated + + + + + + 65 + 114 + News of Faculty R-Z: Way, Eunice E.,undated + + + + + + 65 + 115 + News of Faculty R-Z: Weatherford, John, Library,undated + + + + + + 65 + 116 + News of Faculty R-Z: Weber, Dawn Renee,undated + + + + + + 65 + 117 + News of Faculty R-Z: J.H. Wheeler,undated + + + + + + 65 + 118 + News of Faculty R-Z: Wilcox, Harold H.,undated + + + + + + 65 + 119 + News of Faculty R-Z: Willhite, W. Lyle,undated + + + + + + 65 + 120 + News of Faculty R-Z: Williams, Forrest, Education,undated + + + + + + 65 + 121 + News of Faculty R-Z: Winger, Paul M.,undated + + + + + + 65 + 122 + News of Faculty R-Z: Wisneski, Leo,undated + + + + + + 65 + 123 + News of Faculty R-Z: Woodley, Margaret L.,undated + + + + + + 65 + 124 + News of Faculty R-Z: Wright, Kenneth,undated + + + + + + 65 + 125 + News of Faculty R-Z: Wysong, Richard,undated + + + + + + 65 + 126 + News of Faculty R-Z: Yehl, Joan Kimball,undated + + + + + + 65 + 127 + News of Faculty R-Z: Yantis, Theodore R.,undated + + + + + + 65 + 128 + News of Faculty R-Z: Zakrajsek, Todd,undated + + + + + + 65 + 129 + News of Faculty R-Z: Zawacki, Alexander J., Art,undated + + + + + + 65 + 130 + News of Faculty R-Z: Zorn, George A.,undated + + + + + + 65 + 131 + News of Faculty R-Z: Zeoli, Harold W., Math,undated + + + + + + 65 + 132 + News of Faculty R-Z: Zorn, Marilyn,undated + + + + + + 66 + 1 + News of Faculty R-Z: Adams, Karen,undated + + + + + + 66 + 2 + News of Faculty R-Z: Wheeler, Elizabeth L.,undated + + + + + + 66 + 3 + News of Faculty R-Z: Arnett, Carroll,undated + + + + + + 66 + 4 + News of Faculty R-Z: Bailey, James H.,undated + + + + + + 66 + 5 + News of Faculty R-Z: Barnard, Anna M.,undated + + + + + + 66 + 6 + News of Faculty R-Z: Barnard, Edith,undated + + + + + + 66 + 7 + News of Faculty R-Z: Barnes, Charles C.,undated + + + + + + 66 + 7 + News of Faculty R-Z: Beck, E. C.,undated + + + + + + 66 + 8 + News of Faculty R-Z: Beddow, Ira A.,undated + + + + + + 66 + 10 + News of Faculty R-Z: Bedo, Andrew, M.D.,undated + + + + + + 66 + 11 + News of Faculty R-Z: Bellows, Charles,undated + + + + + + 66 + 12 + News of Faculty R-Z: Bennett, Lyle,undated + + + + + + 66 + 13 + News of Faculty R-Z: Blankenship, Jan,undated + + + + + + 66 + 14 + News of Faculty R-Z: Bomzer, Herbert,undated + + + + + + 66 + 15 + News of Faculty R-Z: Bovee, Norvall C.,undated + + + + + + 66 + 16 + News of Faculty R-Z: Bowen, Elbert R.,undated + + + + + + 66 + 17 + News of Faculty R-Z: Bowman, James E.,undated + + + + + + 66 + 18 + News of Faculty R-Z: Bradshaw, James S.,undated + + + + + + 66 + 19 + News of Faculty R-Z: Briggs, Edgar V.,undated + + + + + + 66 + 20 + News of Faculty R-Z: Brown, Edward,undated + + + + + + 66 + 21 + News of Faculty R-Z: Browne, William P.,undated + + + + + + 66 + 22 + News of Faculty R-Z: Brooks, Kendall,undated + + + + + + 66 + 23 + News of Faculty R-Z: Bulger, Margery,undated + + + + + + 66 + 24 + News of Faculty R-Z: Burns, Oran F.,undated + + + + + + 66 + 25 + News of Faculty R-Z: Bush, Fred R.,undated + + + + + + 66 + 26 + News of Faculty R-Z: Calkins, R.D.,undated + + + + + + 66 + 27 + News of Faculty R-Z: Carey, Joseph P.,undated + + + + + + 66 + 28 + News of Faculty R-Z: Carlin, Leslie,undated + + + + + + 66 + 29 + News of Faculty R-Z: Carlson, A. A.,undated + + + + + + 66 + 30 + News of Faculty R-Z: Carr, Lucile,undated + + + + + + 66 + 31 + News of Faculty R-Z: Carson, John F.,undated + + + + + + 66 + 32 + News of Faculty R-Z: Chambers, Ima M.,undated + + + + + + 66 + 33 + News of Faculty R-Z: Chien, Gabriel,undated + + + + + + 66 + 34 + News of Faculty R-Z: Cobb, Bertha M. Ronan,undated + + + + + + 66 + 35 + News of Faculty R-Z: Cofer, Lloyd M.,undated + + + + + + 66 + 36 + News of Faculty R-Z: Comer, Ralph L.,undated + + + + + + 66 + 37 + News of Faculty R-Z: Colness R. Cedric,undated + + + + + + 66 + 38 + News of Faculty R-Z: Cook, Theodore,undated + + + + + + 66 + 39 + News of Faculty R-Z: Cratin, Paul D.,undated + + + + + + 66 + 40 + News of Faculty R-Z: Csendes, Joseph F.,undated + + + + + + 66 + 41 + News of Faculty R-Z: Cuff, Roger P.,undated + + + + + + 66 + 42 + News of Faculty R-Z: Curry, Herbert L.,undated + + + + + + 66 + 43 + News of Faculty R-Z: Curry, Laverne L.,undated + + + + + + 66 + 44 + News of Faculty R-Z: Cuthbert, N. L.,undated + + + + + + 66 + 45 + News of Faculty R-Z: Dain, Floyd R.,undated + + + + + + 66 + 46 + News of Faculty R-Z: Decker, Keith M.,undated + + + + + + 66 + 47 + News of Faculty R-Z: Dees, Levi O.,undated + + + + + + 66 + 48 + News of Faculty R-Z: Doby, Harry R.,undated + + + + + + 66 + 49 + News of Faculty R-Z: Donald, Ernest Paul,undated + + + + + + 66 + 50 + News of Faculty R-Z: DePuy, George Fred,undated + + + + + + 66 + 51 + News of Faculty R-Z: Dunbar, Winsor S.,undated + + + + + + 66 + 52 + News of Faculty R-Z: Dunsdon, Rollin O.,undated + + + + + + 66 + 53 + News of Faculty R-Z: Ellis, Art,undated + + + + + + 66 + 54 + News of Faculty R-Z: Emry, Hazel T.,undated + + + + + + 66 + 55 + News of Faculty R-Z: Eaton, Orville,undated + + + + + + 66 + 56 + News of Faculty R-Z: Ellsberg, Alan W.,undated + + + + + + 66 + 57 + News of Faculty R-Z: Enders, Calvin W.,undated + + + + + + 66 + 58 + News of Faculty R-Z: Erikson, Leo,undated + + + + + + 66 + 59 + News of Faculty R-Z: Evett, Paul L.,undated + + + + + + 66 + 60 + News of Faculty R-Z: Fagerstrom, Dalphy I.,undated + + + + + + 66 + 61 + News of Faculty R-Z: Farhat, Leo A.,undated + + + + + + 66 + 62 + News of Faculty R-Z: Fell, Robert G.,undated + + + + + + 66 + 63 + News of Faculty R-Z: Filson, Malcolm H.,undated + + + + + + 66 + 64 + News of Faculty R-Z: Firestone, Bernard J.,undated + + + + + + 66 + 65 + News of Faculty R-Z: Foley, Margaret A.,undated + + + + + + 66 + 66 + News of Faculty R-Z: Folkert, Kendall W.,undated + + + + + + 66 + 67 + News of Faculty R-Z: Form, Arnold L.,undated + + + + + + 66 + 68 + News of Faculty R-Z: Frear, Scott E.,undated + + + + + + 66 + 69 + News of Faculty R-Z: Gill, John G.,undated + + + + + + 66 + 70 + News of Faculty R-Z: Grawn, Charles T.,undated + + + + + + 66 + 71 + News of Faculty R-Z: Devens, Carol,undated + + + + + + 66 + 72 + News of Faculty R-Z: Barbara P. Greene,undated + + + + + + 66 + 73 + News of Faculty R-Z: Grove, Eugene F.,undated + + + + + + 66 + 74 + News of Faculty R-Z: Gruber, Leslie,undated + + + + + + 66 + 75 + News of Faculty R-Z: Hammack, J. Alan,undated + + + + + + 66 + 76 + News of Faculty R-Z: Hampton, Raymond E.,undated + + + + + + 66 + 77 + News of Faculty R-Z: Hansen, Lorentz,undated + + + + + + 66 + 78 + News of Faculty R-Z: Hanson, Robert D.,undated + + + + + + 66 + 79 + News of Faculty R-Z: Hays, Robert D.,undated + + + + + + 66 + 80 + News of Faculty R-Z: Hepler, John C.,undated + + + + + + 66 + 81 + News of Faculty R-Z: Herron, Russell L.,undated + + + + + + 66 + 82 + News of Faculty R-Z: Hinshaw, Dean O.,undated + + + + + + 66 + 83 + News of Faculty R-Z: Hobson, Stephen G.,undated + + + + + + 66 + 84 + News of Faculty R-Z: Hodgins, James,undated + + + + + + 66 + 85 + News of Faculty R-Z: Howe, Karl F.,undated + + + + + + 66 + 86 + News of Faculty R-Z: Irwin, John,undated + + + + + + 66 + 87 + News of Faculty R-Z: Johnson, Helen L.,undated + + + + + + 66 + 88 + News of Faculty R-Z: Johnson, Neal Leroy,undated + + + + + + 66 + 89 + News of Faculty R-Z: O’Connell, Catherine,undated + + + + + + 66 + 90 + News of Faculty R-Z: Oppenheimer, O.,undated + + + + + + 66 + 91 + News of Faculty R-Z: Osborn, John K.,undated + + + + + + 66 + 92 + News of Faculty R-Z: Park, Charles B.,undated + + + + + + 66 + 93 + News of Faculty R-Z: Park, Charles V.,undated + + + + + + 66 + 94 + News of Faculty R-Z: Owen, James,undated + + + + + + 66 + 95 + News of Faculty R-Z: Pearce, Webster,undated + + + + + + 66 + 96 + News of Faculty R-Z: Pfeiffer, Charles F.,undated + + + + + + 66 + 97 + News of Faculty R-Z: Pfister, Emil R.,undated + + + + + + 66 + 98 + News of Faculty R-Z: Pike, C. Milton, Jr.,undated + + + + + + 66 + 99 + News of Faculty R-Z: Poole, Charles P.,undated + + + + + + 66 + 100 + News of Faculty R-Z: Potter, Mary K.,undated + + + + + + 66 + 101 + News of Faculty R-Z: Powell, Richard L.,undated + + + + + + 66 + 102 + News of Faculty R-Z: Powers, J. Harold,undated + + + + + + 66 + 103 + News of Faculty R-Z: Praeger, Ethel May,undated + + + + + + 66 + 104 + News of Faculty R-Z: Jorae, Irene L.,undated + + + + + + 66 + 105 + News of Faculty R-Z: Kelly, Kenneth (Bill),undated + + + + + + 66 + 106 + News of Faculty R-Z: Khoury, Sari,undated + + + + + + 66 + 107 + News of Faculty R-Z: Knapp, Thomas S.,undated + + + + + + 66 + 108 + News of Faculty R-Z: Koeninger, Rupert C.,undated + + + + + + 66 + 109 + News of Faculty R-Z: LaLonde, John G.,undated + + + + + + 66 + 110 + News of Faculty R-Z: Lamont, John D.,undated + + + + + + 66 + 111 + News of Faculty R-Z: Lantz, P. F.,undated + + + + + + 66 + 112 + News of Faculty R-Z: Larzelere, Claude S.,undated + + + + + + 66 + 113 + News of Faculty R-Z: Lawton, David L.,undated + + + + + + 66 + 114 + News of Faculty R-Z: Lichtenfelt, Richard J.,undated + + + + + + 66 + 115 + News of Faculty R-Z: Lieberman, Leonard,undated + + + + + + 66 + 116 + News of Faculty R-Z: Lieberman, Leslie,undated + + + + + + 66 + 117 + News of Faculty R-Z: Loughridge, Rachel,undated + + + + + + 66 + 118 + News of Faculty R-Z: Love, Claude D.,undated + + + + + + 66 + 119 + News of Faculty R-Z: Lutz, Donald,undated + + + + + + 66 + 120 + News of Faculty R-Z: Maldonado, Luis,undated + + + + + + 66 + 121 + News of Faculty R-Z: Marcus, J. D.,undated + + + + + + 66 + 122 + News of Faculty R-Z: Maple, Robert P.,undated + + + + + + 66 + 123 + News of Faculty R-Z: Marshall, Herbert E.,undated + + + + + + 66 + 124 + News of Faculty R-Z: Martin, Francis,undated + + + + + + 66 + 125 + News of Faculty R-Z: Mathis, Paul Carl, II,undated + + + + + + 66 + 126 + News of Faculty R-Z: Maybee, Harper C.,undated + + + + + + 66 + 127 + News of Faculty R-Z: Maybee, Rolland,undated + + + + + + 66 + 128 + News of Faculty R-Z: McCarley, Walter W.,undated + + + + + + 66 + 129 + News of Faculty R-Z: McKenna, Edward E.,undated + + + + + + 66 + 130 + News of Faculty R-Z: McKenny, Charles,undated + + + + + + 66 + 131 + News of Faculty R-Z: McManamon, James E.,undated + + + + + + 66 + 132 + News of Faculty R-Z: McNamara, Jane,undated + + + + + + 66 + 133 + News of Faculty R-Z: McNeel, Wakelin, Jr.,undated + + + + + + 66 + 134 + News of Faculty R-Z: Mefort, C. J.,undated + + + + + + 66 + 135 + News of Faculty R-Z: Merrill, Ernest J.,undated + + + + + + 66 + 136 + News of Faculty R-Z: Millar, Margaret S.,undated + + + + + + 66 + 137 + News of Faculty R-Z: Mitchell, Henry,undated + + + + + + 66 + 138 + News of Faculty R-Z: Moore, Wilbur E.,undated + + + + + + 66 + 139 + News of Faculty R-Z: Nelson, George H.,undated + + + + + + 66 + 140 + News of Faculty R-Z: Nixon, Patricia Ann,undated + + + + + + 66 + 141 + News of Faculty R-Z: Noble, Hanson,undated + + + + + + 66 + 142 + News of Faculty R-Z: Lt. Col. William Nolde,undated + + + + + + 66 + 143 + News of Faculty R-Z: Belck, Nancy,undated + + + + + + 66 + 144 + News of Faculty R-Z: Robert Braunlich,undated + + + + + + 66 + 145 + News of Faculty R-Z: Carson, L. Michael,undated + + + + + + 66 + 146 + News of Faculty R-Z: Doyle, C. Patrick,undated + + + + + + 66 + 147 + News of Faculty R-Z: Foster, Dina,undated + + + + + + 66 + 148 + News of Faculty R-Z: John, Gay,undated + + + + + + 66 + 149 + News of Faculty R-Z: Ghanem, Salma I.,undated + + + + + + 66 + 150 + News of Faculty R-Z: Grigaliunas, William J.,undated + + + + + + 66 + 151 + News of Faculty R-Z: Hill, James,undated + + + + + + 66 + 152 + News of Faculty R-Z: Kerr, J. David,undated + + + + + + 66 + 153 + News of Faculty R-Z: Kissen, Rita,undated + + + + + + 66 + 154 + News of Faculty R-Z: Rose Marshall,undated + + + + + + 66 + 155 + News of Faculty R-Z: McLauchlin, Robert,undated + + + + + + 66 + 156 + News of Faculty R-Z: Michaud, Paul,undated + + + + + + 66 + 157 + News of Faculty R-Z: News Central,undated + + + + + + 66 + 158 + News of Faculty R-Z: Peterson, William David,undated + + + + + + 66 + 159 + News of Faculty R-Z: Repp, Thomas J.,undated + + + + + + 66 + 160 + News of Faculty R-Z: Shelton, Maria M.,undated + + + + + + 66 + 161 + News of Faculty R-Z: Spivey, Sheryl,undated + + + + + + 66 + 162 + News of Faculty R-Z: Tchudi, Susan,undated + + + + + + 66 + 163 + News of Faculty R-Z: Trainor, Sheila,undated + + + + + + 66 + 164 + News of Faculty R-Z: Staff Meetings,undated + + + + + + 66 + 165 + News of Faculty R-Z: Wardrop, Mary,undated + + + + + + 66 + 166 + News of Faculty R-Z: Ernest Yoder,undated + + + + + + 67 + 1 + (.25 cu. ft. box): News of CMU. Bd of Trustees members: Roger Kessler [chair 1995, member 1995-2003],undated + + + + + + 67 + 2 + (.25 cu. ft. box): News of CMU. Bd of Trustees members: Kulhavi, John [1996-2001],undated + + + + + + 67 + 3 + (.25 cu. ft. box): News of CMU. Bd of Trustees members: Perry, Marnette [1999-2001],undated + + + + + + 67 + 4 + (.25 cu. ft. box): News of CMU. Bd of Trustees members: Rotter, Harriet B. [1993-2000],undated + + + + + + 67 + 5 + (.25 cu. ft. box): News of CMU. Bd of Trustees members: Smith, W. Sidney [chair 1994, 1991-2000],undated + + + + + + 67 + 6 + (.25 cu. ft. box): News of CMU. Bd of Trustees members: CMU Information,undated + + + + + + 67 + 7 + (.25 cu. ft. box): News of CMU. Bd of Trustees members: Dambrot, Keith [men’s basketball coach, incident, 1991-1999],undated + + + + + + 67 + 8 + (.25 cu. ft. box): News of CMU. Bd of Trustees members: Davenport, Donita [women’s winning basketball coach, 1984-1996],undated + + + + + + 67 + 9 + (.25 cu. ft. box): News of CMU. Bd of Trustees members: Campbell, Jerry D. [chair 2000, 1995-2000],undated + + + + + + 67 + 10 + (.25 cu. ft. box): News of CMU. Bd of Trustees members: Caponigro, Jeffrey [chair 2008, 2002-2008],undated + + + + + + 67 + 11 + (.25 cu. ft. box): News of CMU. Bd of Trustees members: Comai, Stephanie [chair 2010, 2003-2010],undated + + + + + + 67 + 12 + (.25 cu. ft. box): News of CMU. Bd of Trustees members: Fabiano, James Sr. [chair 2004, 1970-1971, 2000-2005],undated + + + + + + 67 + 13 + (.25 cu. ft. box): News of CMU. Bd of Trustees members: Foster, Melanie Reinhold [chair 2003, 1998-2008],undated + + + + + + 67 + 14 + (.25 cu. ft. box): News of CMU. Bd of Trustees members: Kevin F. Kelly, undated,undated + + + + + + 67 + 15 + (.25 cu. ft. box): News of CMU. Bd of Trustees members: Dr. Sam Kottamasu [chair 2012, 2005-2012],undated + + + + + + 67 + 16 + (.25 cu. ft. box): News of CMU. Bd of Trustees members: Maryland, Patricia, Dr. [2011-2013],undated + + + + + + 67 + 17 + (.25 cu. ft. box): News of CMU. Bd of Trustees members: Torreano, Gail [chair 2009, 2003-2010],undated + + + + + + 67 + 18 + (.25 cu. ft. box): News of CMU. Bd of Trustees members: Ronald C. Edmonds [2018-],undated + + + + + + 67 + 19 + (.25 cu. ft. box): News of CMU. Bd of Trustees members: Fannon, Brian W. [chair 2013, 2007-2014],undated + + + + + + 67 + 20 + (.25 cu. ft. box): News of CMU. Bd of Trustees members: Garrett, Jacqueline [2007-2014],undated + + + + + + 67 + 21 + (.25 cu. ft. box): News of CMU. Bd of Trustees members: Marilyn French Hubbard [2005-2012],undated + + + + + + 67 + 22 + (.25 cu. ft. box): News of CMU. Bd of Trustees members: John D. Hurd [chair, 2013, 2009-2014],undated + + + + + + 68 + 1 + Colored Slides, As: Academic Assistance,undated + + + + + + 68 + 2 + Colored Slides, As: Academic Information,undated + + + + + + 68 + 3 + Colored Slides, As: Accounting Department,undated + + + + + + 68 + 4 + Colored Slides, As: Administration,undated + + + + + + 68 + 5 + Colored Slides, As: Administration 2,undated + + + + + + 68 + 6 + Colored Slides, As: Admission,undated + + + + + + 68 + 7 + Colored Slides, As: Aerials,undated + + + + + + 68 + 8 + Colored Slides, As: Alumni,undated + + + + + + 68 + 9 + Colored Slides, As: Alumni 2,undated + + + + + + 68 + 10 + Colored Slides, As: Art Department,undated + + + + + + 69 + 1 + Colored Slides, Bs: Baseball,undated + + + + + + 69 + 2 + Colored Slides, Bs: Baseball 2,undated + + + + + + 69 + 3 + Colored Slides, Bs: Baseball 3,undated + + + + + + 69 + 4 + Colored Slides, Bs: Basketball Men’s,undated + + + + + + 69 + 5 + Colored Slides, Bs: Basketball Men’s 2,undated + + + + + + 69 + 6 + Colored Slides, Bs: Women’s Basketball,undated + + + + + + 69 + 7 + Colored Slides, Bs: Women’s Basketball 2,undated + + + + + + 69 + 8 + Colored Slides, Bs: Between the ponds,undated + + + + + + 69 + 9 + Colored Slides, Bs: Beaver Island,undated + + + + + + 70 + 1 + Colored Slides, B-C: Board of Trustees,undated + + + + + + 70 + 2 + Colored Slides, B-C: Bohannon School,undated + + + + + + 70 + 3 + Colored Slides, B-C: Broadcasting and Cinematic Arts,undated + + + + + + 70 + 4 + Colored Slides, B-C: Business Administration,undated + + + + + + 70 + 5 + Colored Slides, B-C: Business Services,undated + + + + + + 70 + 6 + Colored Slides, B-C: CMU Logo,undated + + + + + + 70 + 7 + Colored Slides, B-C: Campus Scenics-Newer,undated + + + + + + 70 + 8 + Colored Slides, B-C: Campus Scenics-Newest,undated + + + + + + 70 + 9 + Colored Slides, B-C: Campus Scenics,undated + + + + + + 70 + 10 + Colored Slides, B-C: Campus Scenics-Newer,undated + + + + + + 70 + 11 + Colored Slides, B-C: Newest Campus Scenics,undated + + + + + + 70 + 12 + Colored Slides, B-C: Campus Scenics [folder 1 of 2],undated + + + + + + 70 + 13 + Colored Slides, B-C: Campus Scenics [folder 2 of 2],undated + + + + + + 71 + 1 + Colored Slides, C-F: Campus Scenics,undated + + + + + + 71 + 2 + Colored Slides, C-F: Career Information Library,undated + + + + + + 71 + 3 + Colored Slides, C-F: Career Services,undated + + + + + + 71 + 4 + Colored Slides, C-F: Centralight,undated + + + + + + 71 + 5 + Colored Slides, C-F: Chemistry Department,undated + + + + + + 71 + 6 + Colored Slides, C-F: Cheerleaders,undated + + + + + + 71 + 7 + Colored Slides, C-F: Chip Card,undated + + + + + + 71 + 8 + Colored Slides, C-F: Chip Facilities,undated + + + + + + 71 + 9 + Colored Slides, C-F: Clarke Historical Library,undated + + + + + + 71 + 10 + Colored Slides, C-F: College of Extended Learning,undated + + + + + + 71 + 11 + Colored Slides, C-F: Commencement,undated + + + + + + 71 + 12 + Colored Slides, C-F: Communication Disorders,undated + + + + + + 71 + 13 + Colored Slides, C-F: Computer Science,undated + + + + + + 71 + 14 + Colored Slides, C-F: Construction,undated + + + + + + 71 + 15 + Colored Slides, C-F: Continuing Education,undated + + + + + + 71 + 16 + Colored Slides, C-F: Counseling Center,undated + + + + + + 71 + 17 + Colored Slides, C-F: Creative Arts Gallery,undated + + + + + + 71 + 18 + Colored Slides, C-F: Cross Country,undated + + + + + + 71 + 19 + Colored Slides, C-F: Dance,undated + + + + + + 71 + 20 + Colored Slides, C-F: Development,undated + + + + + + 71 + 21 + Colored Slides, C-F: Distance Learning,undated + + + + + + 71 + 22 + Colored Slides, C-F: English,undated + + + + + + 71 + 23 + Colored Slides, C-F: Field Hockey,undated + + + + + + 72 + 1 + Mixed Photographs, A-B, P: Alumni – Colored Photographs,undated + + + + + + 72 + 2 + Mixed Photographs, A-B, P: Art Department (photographs),undated + + + + + + 72 + 3 + Mixed Photographs, A-B, P: Athletics,undated + + + + + + 72 + 4 + Mixed Photographs, A-B, P: Athletic Training,undated + + + + + + 72 + 5 + Mixed Photographs, A-B, P: Banking,undated + + + + + + 72 + 6 + Mixed Photographs, A-B, P: Beaver Island,undated + + + + + + 72 + 7 + Mixed Photographs, A-B, P: Biology,undated + + + + + + 72 + 8 + Mixed Photographs, A-B, P: Board of Trustees,undated + + + + + + 72 + 9 + Mixed Photographs, A-B, P: Bookstore,undated + + + + + + 72 + 10 + Mixed Photographs, A-B, P: Physical Education,undated + + + + + + 73 + 1 + Mixed Photographs, A: Academic Assistance,undated + + + + + + 73 + 2 + Mixed Photographs, A: Activities,undated + + + + + + 73 + 3 + Mixed Photographs, A: Accounting Department,undated + + + + + + 73 + 4 + Mixed Photographs, A: Administration,undated + + + + + + 73 + 5 + Mixed Photographs, A: Admissions,undated + + + + + + 73 + 6 + Mixed Photographs, A: Advancement,undated + + + + + + 73 + 7 + Mixed Photographs, A: Advising,undated + + + + + + 73 + 8 + Mixed Photographs, A: Aerials Campus,undated + + + + + + 73 + 9 + Mixed Photographs, A: Affirmative Action,undated + + + + + + 73 + 10 + Mixed Photographs, A: Black and White Photographs Alumni,undated + + + + + + 73 + 11 + Mixed Photographs, A: Alumni colored Photographs,undated + + + + + + 74 + 1 + Mostly Digital prints, B-C: Broadcasting and Cinematics Arts,2002-2008 + + + + + + 74 + 2 + Mostly Digital prints, B-C: Business,2002-2008 + + + + + + 74 + 3 + Mostly Digital prints, B-C: Campus Scenic,2002-2008 + + + + + + 74 + 4 + Mostly Digital prints, B-C: Campus Scenic, Group Photographs,2002-2008 + + + + + + 74 + 5 + Mostly Digital prints, B-C: Career Services,2002-2008 + + + + + + 74 + 6 + Mostly Digital prints, B-C: CEEP Program,2002-2008 + + + + + + 74 + 7 + Mostly Digital prints, B-C: Centralis Scholarship,2002-2008 + + + + + + 74 + 8 + Mostly Digital prints, B-C: Centennial,2002-2008 + + + + + + 74 + 9 + Mostly Digital prints, B-C: Center for Applied Research and Tech,2002-2008 + + + + + + 74 + 10 + Mostly Digital prints, B-C: Charter School,2002-2008 + + + + + + 74 + 11 + Mostly Digital prints, B-C: Chemistry,2002-2008 + + + + + + 74 + 12 + Mostly Digital prints, B-C: Clarke Historical Library,2002-2008 + + + + + + 74 + 13 + Mostly Digital prints, B-C: Classrooms,2002-2008 + + + + + + 74 + 14 + Mostly Digital prints, B-C: College of Extended Learning,2002-2008 + + + + + + 74 + 15 + Mostly Digital prints, B-C: Commencement, Black and white,2002-2008 + + + + + + 74 + 16 + Mostly Digital prints, B-C:Commencement, Color,2002-2008 + + + + + + 75 + 1 + Mixed Files, C-E: Centralight,undated + + + + + + 75 + 2 + Mixed Files, C-E: Centralis,undated + + + + + + 75 + 3 + Mixed Files, C-E: Century Club,undated + + + + + + 75 + 4 + Mixed Files, C-E: Student Activities Concerts,undated + + + + + + 75 + 5 + Mixed Files, C-E: Chemistry,undated + + + + + + 75 + 6 + Mixed Files, C-E: Child Development Lab,undated + + + + + + 75 + 7 + Mixed Files, C-E: Chippettes,undated + + + + + + 75 + 8 + Mixed Files, C-E: Chip Center,undated + + + + + + 75 + 9 + Mixed Files, C-E: Chippewa Club,undated + + + + + + 75 + 10 + Mixed Files, C-E: Clarke Historical Library,undated + + + + + + 75 + 11 + Mixed Files, C-E: CMU And You Day,undated + + + + + + 75 + 12 + Mixed Files, C-E: Commencement,December 1987 + + + + + + 75 + 13 + Mixed Files, C-E: College of Extending Learning,undated + + + + + + 75 + 14 + Mixed Files, C-E: Coaches with Family,undated + + + + + + 75 + 15 + Mixed Files, C-E: Commencement,December 1980 + + + + + + 75 + 16 + Mixed Files, C-E: Commencement,May 1981 + + + + + + 75 + 17 + Mixed Files, C-E: Commencement,December 1981 + + + + + + 75 + 18 + Mixed Files, C-E: Commencement,May !982 + + + + + + 75 + 19 + Mixed Files, C-E: Commencement,December !982 + + + + + + 75 + 20 + Mixed Files, C-E: Commencement,May !983 + + + + + + 75 + 21 + Mixed Files, C-E: Commencement,December !983 + + + + + + 75 + 22 + Mixed Files, C-E: Commencement,1984 + + + + + + 75 + 23 + Mixed Files, C-E: Commencement,1985 + + + + + + 75 + 24 + Mixed Files, C-E: Commencement,1986 + + + + + + 75 + 25 + Mixed Files, C-E: Commencement,undated + + + + + + 75 + 26 + Mixed Files, C-E: CDO (Communication Disorders),undated + + + + + + 75 + 27 + Mixed Files, C-E: Computer Science,undated + + + + + + 75 + 28 + Mixed Files, C-E: Concerts,undated + + + + + + 75 + 29 + Mixed Files, C-E: Continuing Education,undated + + + + + + 75 + 30 + Mixed Files, C-E: Counseling Center,undated + + + + + + 75 + 31 + Mixed Files, C-E: Copy Negatives,undated + + + + + + 75 + 32 + Mixed Files, C-E: Crowds,undated + + + + + + 75 + 33 + Mixed Files, C-E: Dance,undated + + + + + + 75 + 34 + Mixed Files, C-E: Day Care Center,undated + + + + + + 75 + 35 + Mixed Files, C-E: Counseling, Education Development,undated + + + + + + 75 + 36 + Mixed Files, C-E: Development Board,undated + + + + + + 75 + 37 + Mixed Files, C-E: Dining Services,undated + + + + + + 75 + 38 + Mixed Files, C-E: Dow Science,undated + + + + + + 75 + 39 + Mixed Files, C-E: DPS (Dept. of Public Safety),undated + + + + + + 75 + 40 + Mixed Files, C-E: Driver Education,undated + + + + + + 75 + 41 + Mixed Files, C-E: Economics Department,undated + + + + + + 75 + 42 + Mixed Files, C-E: Education,undated + + + + + + 75 + 43 + Mixed Files, C-E: Education Administration and Communication Leadership,undated + + + + + + 75 + 44 + Mixed Files, C-E: Education Health and Human Services,undated + + + + + + 75 + 45 + Mixed Files, C-E: Elderhostel,undated + + + + + + 75 + 46 + Mixed Files, C-E: Educational Mathematics Center,undated + + + + + + 76 + 1 + Mixed Files, C-H; Campus Scenics,undated + + + + + + 76 + 2 + Mixed Files, C-H; CDO,undated + + + + + + 76 + 3 + Mixed Files, C-H; Construction,undated + + + + + + 76 + 4 + Mixed Files, C-H; Counseling,undated + + + + + + 76 + 5 + Mixed Files, C-H; Crowd Scenes,undated + + + + + + 76 + 6 + Mixed Files, C-H; Crowd Athletes,undated + + + + + + 76 + 7 + Mixed Files, C-H; Computer Science,undated + + + + + + 76 + 8 + Mixed Files, C-H; European Studies,undated + + + + + + 76 + 9 + Mixed Files, C-H; Facilities Management,undated + + + + + + 76 + 10 + Mixed Files, C-H; Faculty,undated + + + + + + 76 + 11 + Mixed Files, C-H; First Year Experience,undated + + + + + + 76 + 12 + Mixed Files, C-H; Focus Hope,undated + + + + + + 76 + 13 + Mixed Files, C-H; Foreign Language,undated + + + + + + 76 + 14 + Mixed Files, C-H; Economics Department,undated + + + + + + 76 + 15 + Mixed Files, C-H; Education Administration and Communication Leadership,undated + + + + + + 76 + 16 + Mixed Files, C-H; Engineering Technology,undated + + + + + + 76 + 17 + Mixed Files, C-H; English,undated + + + + + + 76 + 18 + Mixed Files, C-H; Geography Department,undated + + + + + + 76 + 19 + Mixed Files, C-H; Geology Department,undated + + + + + + 76 + 20 + Mixed Files, C-H; Gerontology,undated + + + + + + 76 + 21 + Mixed Files, C-H; Government (State),undated + + + + + + 76 + 22 + Mixed Files, C-H; Health Building Construction,undated + + + + + + 76 + 23 + Mixed Files, C-H; Health Educational Department,undated + + + + + + 76 + 24 + Mixed Files, C-H; Hall of Fame,undated + + + + + + 77 + 1 + Mixed Photographs, H-M: Historical Science Related,undated + + + + + + 77 + 2 + Mixed Photographs, H-M: History,undated + + + + + + 77 + 3 + Mixed Photographs, H-M: Homecoming,undated + + + + + + 77 + 4 + Mixed Photographs, H-M: Homecoming 2,undated + + + + + + 77 + 5 + Mixed Photographs, H-M: Honors,undated + + + + + + 77 + 6 + Mixed Photographs, H-M: Human Environmental Studies,undated + + + + + + 77 + 7 + Mixed Photographs, H-M: Housing,undated + + + + + + 77 + 8 + Mixed Photographs, H-M: Interdisciplinary Program,undated + + + + + + 77 + 9 + Mixed Photographs, H-M: International Students,undated + + + + + + 77 + 10 + Mixed Photographs, H-M: IPCD,undated + + + + + + 77 + 11 + Mixed Photographs, H-M: Journalism Department,undated + + + + + + 77 + 12 + Mixed Photographs, H-M: Library,undated + + + + + + 77 + 13 + Mixed Photographs, H-M: Logistics,undated + + + + + + 77 + 14 + Mixed Photographs, H-M: Leadership,undated + + + + + + 77 + 15 + Mixed Photographs, H-M: Legislators,undated + + + + + + 77 + 16 + Mixed Photographs, H-M: Ling, Parks,undated + + + + + + 77 + 17 + Mixed Photographs, H-M: Landscaping,undated + + + + + + 77 + 18 + Mixed Photographs, H-M: MSA,undated + + + + + + 77 + 19 + Mixed Photographs, H-M: Marching Band,undated + + + + + + 78 + 1 + Mixed Files, M: Music,undated + + + + + + 78 + 2 + Mixed Files, M: Music 2,undated + + + + + + 78 + 3 + Mixed Files, M: Music 3,undated + + + + + + 78 + 4 + Mixed Files, M: Multicultural Center,undated + + + + + + 78 + 5 + Mixed Files, M: Math Department,undated + + + + + + 78 + 6 + Mixed Files, M: McNair Project,undated + + + + + + 78 + 7 + Mixed Files, M: Marketing and Hospitality Services,undated + + + + + + 78 + 8 + Mixed Files, M: Midland Center,undated + + + + + + 78 + 9 + Mixed Files, M: Military Science,undated + + + + + + 78 + 10 + Mixed Files, M: Mount Pleasant Community Photographs,undated + + + + + + 78 + 11 + Mixed Files, M: Cultural Museum,undated + + + + + + 79 + 1 + Mugshots: President Harold Abel,undated + + + + + + 79 + 2 + Mugshots: Abzug, Bella,undated + + + + + + 79 + 3 + Mugshots: Anderson Jack,undated + + + + + + 79 + 4 + Mugshots: Maya Angelou,undated + + + + + + 79 + 5 + Mugshots: Aranson, Jack,undated + + + + + + 79 + 6 + Mugshots: President Anspach,undated + + + + + + 79 + 7 + Mugshots: Edith Barnard,undated + + + + + + 79 + 8 + Mugshots: Dr. Barnes,undated + + + + + + 79 + 9 + Mugshots: Earle B. Barnes,undated + + + + + + 79 + 10 + Mugshots: Bear, Fred,undated + + + + + + 79 + 11 + Mugshots: Dr. E. Beck,undated + + + + + + 79 + 12 + Mugshots: Belck, Nancy,undated + + + + + + 79 + 13 + Mugshots: President Bellows,undated + + + + + + 79 + 14 + Mugshots: Lyle Bennett,undated + + + + + + 79 + 15 + Mugshots: Mary Berry,undated + + + + + + 79 + 16 + Mugshots: Binger, Paul,undated + + + + + + 79 + 17 + Mugshots: Caroline Bird,undated + + + + + + 79 + 18 + Mugshots: Walter Bizzard,undated + + + + + + 79 + 19 + Mugshots: Blackburn, George,undated + + + + + + 79 + 20 + Mugshots: Dr. Bordine,undated + + + + + + 79 + 21 + Mugshots: James Born,undated + + + + + + 79 + 22 + Mugshots: Bovee, N. C.,undated + + + + + + 79 + 23 + Mugshots: Bill Boyd,undated + + + + + + 79 + 24 + Mugshots: Bill Boyden,undated + + + + + + 79 + 25 + Mugshots: Barclay, Robert,undated + + + + + + 79 + 26 + Mugshots: Brenneis, Gene,undated + + + + + + 79 + 27 + Mugshots: Bennett, Luke,undated + + + + + + 79 + 28 + Mugshots: Brickley, James,undated + + + + + + 79 + 29 + Mugshots: Bridges, Sherwood,undated + + + + + + 79 + 30 + Mugshots: Brooks, K.P.,undated + + + + + + 79 + 31 + Mugshots: Neil Bucklew,undated + + + + + + 79 + 32 + Mugshots: William Bulger,undated + + + + + + 79 + 33 + Mugshots: Registration,undated + + + + + + 79 + 34 + Mugshots: Brown, Dr. Grant H.,undated + + + + + + 79 + 35 + Mugshots: Bucklew, Neil,undated + + + + + + 79 + 36 + Mugshots: Buckley, William F., Jr.,undated + + + + + + 79 + 37 + Mugshots: Bush, Fred,undated + + + + + + 79 + 38 + Mugshots: “Z” Budapest,undated + + + + + + 79 + 39 + Mugshots: Burns, Charles,undated + + + + + + 79 + 40 + Mugshots: Dr. Burris,undated + + + + + + 79 + 41 + Mugshots: Caldwell, Tim,undated + + + + + + 79 + 42 + Mugshots: Cantelon, John,undated + + + + + + 79 + 43 + Mugshots: Irwin Campbell,undated + + + + + + 79 + 44 + Mugshots: Carey, Joseph,undated + + + + + + 79 + 45 + Mugshots: Carey, Terry,undated + + + + + + 79 + 46 + Mugshots: Catherwood, Alec,undated + + + + + + 79 + 47 + Mugshots: Jerome Cavanaugh,undated + + + + + + 79 + 48 + Mugshots: Virginia Charon,undated + + + + + + 79 + 49 + Mugshots: Gabriel Chien,undated + + + + + + 79 + 50 + Mugshots: Shirley Chisholm,undated + + + + + + 79 + 51 + Mugshots: Kjolhede, Ted,undated + + + + + + 79 + 52 + Mugshots: Clendening, Byron,undated + + + + + + 79 + 53 + Mugshots: Cobb, Myron A.,undated + + + + + + 79 + 54 + Mugshots: Leslie Cochran,undated + + + + + + 79 + 55 + Mugshots: Cofer, Dr. Lloyd,undated + + + + + + 79 + 56 + Mugshots: Wilbur Cohen,undated + + + + + + 79 + 57 + Mugshots: Cole, Ivan,undated + + + + + + 79 + 58 + Mugshots: Coleman, William T.,undated + + + + + + 79 + 59 + Mugshots: Coles, Roger,undated + + + + + + 79 + 60 + Mugshots: Colton, Bucky,undated + + + + + + 79 + 61 + Mugshots: Cosand, Joseph,undated + + + + + + 79 + 62 + Mugshots: Coutant, Dr. Victor,undated + + + + + + 79 + 63 + Mugshots: Crandall, Yvette,undated + + + + + + 79 + 64 + Mugshots: Earl H. Cress,undated + + + + + + 79 + 65 + Mugshots: Cuff, R. R.,undated + + + + + + 79 + 66 + Mugshots: Cummings, John,undated + + + + + + 79 + 67 + Mugshots: Curry, Laverne,undated + + + + + + 79 + 68 + Mugshots: Davis, George Dr.,undated + + + + + + 79 + 69 + Mugshots: Davis, James,undated + + + + + + 79 + 70 + Mugshots: Dain, Floyd,undated + + + + + + 79 + 71 + Mugshots: Dean, John,undated + + + + + + 79 + 72 + Mugshots: De Carlo, John,undated + + + + + + 79 + 73 + Mugshots: Denison, Rollie and Olga,undated + + + + + + 79 + 74 + Mugshots: Bernadine Denning,undated + + + + + + 79 + 75 + Mugshots: Deromedi, Herbert,undated + + + + + + 79 + 76 + Mugshots: Dietrich, Richard,undated + + + + + + 79 + 77 + Mugshots: Di Bonavintura, Anthony,undated + + + + + + 79 + 78 + Mugshots: Deitz, Norman,undated + + + + + + 79 + 79 + Mugshots: Burt Dickerson,undated + + + + + + 79 + 80 + Mugshots: Barbara Dixon,undated + + + + + + 79 + 81 + Mugshots: Doan, L. I.,undated + + + + + + 79 + 82 + Mugshots: Doughty, Louie,undated + + + + + + 79 + 83 + Mugshots: Herbert H. Dow,undated + + + + + + 79 + 84 + Mugshots: Doyle, Pat,undated + + + + + + 79 + 85 + Mugshots: Dunham, R. William,undated + + + + + + 79 + 86 + Mugshots: Dr. Dunnundated + + + + + + 79 + 87 + Mugshots: Erin, Mr.,undated + + + + + + 79 + 88 + Mugshots: Pagals, Alan,undated + + + + + + 79 + 89 + Mugshots: Richard Eisenach,undated + + + + + + 79 + 90 + Mugshots: Elliott, Eugene B.,undated + + + + + + 79 + 91 + Mugshots: Arthur E. Ellis,undated + + + + + + 79 + 92 + Mugshots: Enberg, Dick,undated + + + + + + 79 + 93 + Mugshots: Ebert, Roger,undated + + + + + + 79 + 94 + Mugshots: Herron, Russ,undated + + + + + + 79 + 95 + Mugshots: President Foust,undated + + + + + + 79 + 96 + Mugshots: Grawn, Charles T.,undated + + + + + + 79 + 97 + Mugshots: Howard, Carol,undated + + + + + + 79 + 98 + Mugshots: Johnston, Faith,undated + + + + + + 79 + 99 + Mugshots: Kesseler, Roger,undated + + + + + + 79 + 100 + Mugshots: Ed Jakubauskas,undated + + + + + + 79 + 100 + Mugshots: Sydnie Smith,undated + + + + + + 79 + 100 + Mugshots: Tubbs, Jerry,undated + + + + + + 79 + 100 + Mugshots: Eugene Warriner,undated + + + + + + 80 + 1 + Contact Galley Sheets, A-B: Actuarial Science,undated + + + + + + 80 + 2 + Contact Galley Sheets, A-B: Administrative Service,undated + + + + + + 80 + 3 + Contact Galley Sheets, A-B: Administrator,undated + + + + + + 80 + 4 + Contact Galley Sheets, A-B: Adult Fitness,undated + + + + + + 80 + 5 + Contact Galley Sheets, A-B: Advancement,undated + + + + + + 80 + 6 + Contact Galley Sheets, A-B: Advising,undated + + + + + + 80 + 7 + Contact Galley Sheets, A-B: Aerials, Buildings, Campus,undated + + + + + + 80 + 8 + Contact Galley Sheets, A-B: Activities,undated + + + + + + 80 + 9 + Contact Galley Sheets, A-B: Affirmative Action,undated + + + + + + 80 + 10 + Contact Galley Sheets, A-B: Alumni Association,undated + + + + + + 80 + 11 + Contact Galley Sheets, A-B: Anspach Hall and Mall,undated + + + + + + 80 + 12 + Contact Galley Sheets, A-B: Architectural Renderings,undated + + + + + + 80 + 13 + Contact Galley Sheets, A-B: Art Department,undated + + + + + + 80 + 14 + Contact Galley Sheets, A-B: Athletics,undated + + + + + + 80 + 15 + Contact Galley Sheets, A-B: Attorney,undated + + + + + + 80 + 16 + Contact Galley Sheets, A-B: Band,undated + + + + + + 80 + 17 + Contact Galley Sheets, A-B: Banking,undated + + + + + + 80 + 18 + Contact Galley Sheets, A-B: Beaver Island,undated + + + + + + 80 + 19 + Contact Galley Sheets, A-B: Schawdron, Allen,undated + + + + + + 80 + 20 + Contact Galley Sheets, A-B: Between the Ponds,undated + + + + + + 80 + 21 + Contact Galley Sheets, A-B: Sheperdigian, A. A.,undated + + + + + + 80 + 22 + Contact Galley Sheets, A-B: Board of Trustees,undated + + + + + + 81 + 1 + Contact Galley Sheets, B-C: Bohannon School,undated + + + + + + 81 + 2 + Contact Galley Sheets, B-C: Bookstore,undated + + + + + + 81 + 3 + Contact Galley Sheets, B-C: Boyden Awards,undated + + + + + + 81 + 4 + Contact Galley Sheets, B-C: Broadcasting,undated + + + + + + 81 + 5 + Contact Galley Sheets, B-C: Brooks Hall,undated + + + + + + 81 + 6 + Contact Galley Sheets, B-C: Business Services,undated + + + + + + 81 + 7 + Contact Galley Sheets, B-C: Bush Theater,undated + + + + + + 81 + 8 + Contact Galley Sheets, B-C: Business Administration,undated + + + + + + 81 + 9 + Contact Galley Sheets, B-C: Business information System,undated + + + + + + 81 + 10 + Contact Galley Sheets, B-C: C.A.M.P.,undated + + + + + + 81 + 11 + Contact Galley Sheets, B-C: Campus Scenics,undated + + + + + + 81 + 12 + Contact Galley Sheets, B-C: Old Campus Scenics,undated + + + + + + 81 + 13 + Contact Galley Sheets, B-C: Car Coaches Club,undated + + + + + + 81 + 14 + Contact Galley Sheets, B-C: Career Information Center,undated + + + + + + 81 + 15 + Contact Galley Sheets, B-C: CEEP,undated + + + + + + 81 + 16 + Contact Galley Sheets, B-C: Centennial,undated + + + + + + 81 + 17 + Contact Galley Sheets, B-C: Center for Applied Research and Technology,undated + + + + + + 81 + 18 + Contact Galley Sheets, B-C: Center for Governmental Research,undated + + + + + + 81 + 19 + Contact Galley Sheets, B-C: Central Hall,undated + + + + + + 81 + 20 + Contact Galley Sheets, B-C: Central Avenue,undated + + + + + + 81 + 21 + Contact Galley Sheets, B-C: Centraline,undated + + + + + + 81 + 22 + Contact Galley Sheets, B-C: Commencement, May 1980,undated + + + + + + 82 + 1 + Contact Galley Sheets, M-P: Multicultural Program,undated + + + + + + 82 + 2 + Contact Galley Sheets, M-P: Multicultural Center,undated + + + + + + 82 + 3 + Contact Galley Sheets, M-P: Museum of Cultural and Natural History,undated + + + + + + 82 + 4 + Contact Galley Sheets, M-P: Music Department,undated + + + + + + 82 + 5 + Contact Galley Sheets, M-P: Music,undated + + + + + + 82 + 6 + Contact Galley Sheets, M-P: Native Americans,undated + + + + + + 82 + 7 + Contact Galley Sheets, M-P: Neithercut Woodland,undated + + + + + + 82 + 8 + Contact Galley Sheets, M-P: North Art Studio,undated + + + + + + 82 + 9 + Contact Galley Sheets, M-P: North Hall,undated + + + + + + 82 + 10 + Contact Galley Sheets, M-P: Odyssey of the Mind,undated + + + + + + 82 + 11 + Contact Galley Sheets, M-P: Off-Campus Education,undated + + + + + + 82 + 12 + Contact Galley Sheets, M-P: Off-Campus Life,undated + + + + + + 82 + 13 + Contact Galley Sheets, M-P: Orchesis,undated + + + + + + 82 + 14 + Contact Galley Sheets, M-P: OTD (Opportunity for Talent Development),undated + + + + + + 82 + 15 + Contact Galley Sheets, M-P: Orientation,undated + + + + + + 82 + 16 + Contact Galley Sheets, M-P: Outdoor Resource Center,undated + + + + + + 82 + 17 + Contact Galley Sheets, M-P: Park Library,undated + + + + + + 82 + 18 + Contact Galley Sheets, M-P: Grannell, James,undated + + + + + + 82 + 19 + Contact Galley Sheets, M-P: Diamond, Nina,undated + + + + + + 82 + 20 + Contact Galley Sheets, M-P: Physical Education,undated + + + + + + 82 + 21 + Contact Galley Sheets, M-P: Philosophy,undated + + + + + + 82 + 22 + Contact Galley Sheets, M-P: Physical Plant,undated + + + + + + 82 + 23 + Contact Galley Sheets, M-P: Physician’s Assistant Program,undated + + + + + + 82 + 24 + Contact Galley Sheets, M-P: Physical Therapy,undated + + + + + + 82 + 25 + Contact Galley Sheets, M-P: Physics Department,undated + + + + + + 83 + 1 + Contact Galley Sheets, P-S: Pine Bluff Project,undated + + + + + + 83 + 2 + Contact Galley Sheets, P-S: Plachta, Leonard,undated + + + + + + 83 + 3 + Contact Galley Sheets, P-S: No Label,undated + + + + + + 83 + 4 + Contact Galley Sheets, P-S: Pow Wow,undated + + + + + + 83 + 5 + Contact Galley Sheets, P-S: Powers Hall,undated + + + + + + 83 + 6 + Contact Galley Sheets, P-S: Gymnastics,undated + + + + + + 83 + 7 + Contact Galley Sheets, P-S: Henrie, Roger,undated + + + + + + 83 + 8 + Contact Galley Sheets, P-S: Pre-Dentistry,undated + + + + + + 83 + 9 + Contact Galley Sheets, P-S: Pre-engineering,undated + + + + + + 83 + 10 + Contact Galley Sheets, P-S: Pre-Law,undated + + + + + + 83 + 11 + Contact Galley Sheets, P-S: Pre-Veterinarian,undated + + + + + + 83 + 12 + Contact Galley Sheets, P-S: Program Board,undated + + + + + + 83 + 13 + Contact Galley Sheets, P-S: Psychology Department,undated + + + + + + 83 + 14 + Contact Galley Sheets, P-S: Public Broadcasting,undated + + + + + + 83 + 15 + Contact Galley Sheets, P-S: Public Relations,undated + + + + + + 83 + 16 + Contact Galley Sheets, P-S: Blanding, Hugh,undated + + + + + + 83 + 17 + Contact Galley Sheets, P-S: Michael Row,undated + + + + + + 83 + 18 + Contact Galley Sheets, P-S: Records Management,undated + + + + + + 83 + 19 + Contact Galley Sheets, P-S: Recreation, Parks Administration,undated + + + + + + 83 + 20 + Contact Galley Sheets, P-S: Registration,undated + + + + + + 83 + 21 + Contact Galley Sheets, P-S: Registrars,undated + + + + + + 83 + 22 + Contact Galley Sheets, P-S: Religion,undated + + + + + + 83 + 23 + Contact Galley Sheets, P-S: Religion Centers,undated + + + + + + 83 + 24 + Contact Galley Sheets, P-S: Religious Organization,undated + + + + + + 83 + 25 + Contact Galley Sheets, P-S: ROTC Military Science,undated + + + + + + 83 + 26 + Contact Galley Sheets, P-S: Ronan Hall,undated + + + + + + 83 + 27 + Contact Galley Sheets, P-S: Rose Center,undated + + + + + + 83 + 28 + Contact Galley Sheets, P-S: Rowe Hall,undated + + + + + + 83 + 29 + Contact Galley Sheets, P-S: No Label,undated + + + + + + 83 + 30 + Contact Galley Sheets, P-S: Seals, Signs, and Symbols,undated + + + + + + 83 + 3 + Contact Galley Sheets, P-S: Sloan Hall,undated + + + + + + 83 + 32 + Contact Galley Sheets, P-S: Smart Zoneundated + + + + + + 83 + 33 + Contact Galley Sheets, P-S: Sociology,undated + + + + + + 83 + 34 + Contact Galley Sheets, P-S: Special Education Class,undated + + + + + + 83 + 35 + Contact Galley Sheets, P-S: Special Effects,undated + + + + + + 83 + 36 + Contact Galley Sheets, P-S: Special Events,undated + + + + + + 83 + 37 + Contact Galley Sheets, P-S: Special Olympics,undated + + + + + + 83 + 38 + Contact Galley Sheets, P-S: Speech,undated + + + + + + 83 + 39 + Contact Galley Sheets, P-S: Speech Hearing Clinic,undated + + + + + + 83 + 40 + Contact Galley Sheets, P-S: Sports Administration,undated + + + + + + 83 + 41 + Contact Galley Sheets, P-S: Sports Camps,undated + + + + + + 83 + 42 + Contact Galley Sheets, P-S: Sports Medicine,undated + + + + + + 84 + 1 + Mixed Photographs, P-R: Pow Wow,undated + + + + + + 84 + 2 + Mixed Photographs, P-R: Psychology Department,undated + + + + + + 84 + 3 + Mixed Photographs, P-R: Public Relations,undated + + + + + + 84 + 4 + Mixed Photographs, P-R: Philosophy Department,undated + + + + + + 84 + 5 + Mixed Photographs, P-R: Physical Education,undated + + + + + + 84 + 6 + Mixed Photographs, P-R: Physics,undated + + + + + + 84 + 7 + Mixed Photographs, P-R: Physical Therapy,undated + + + + + + 84 + 8 + Mixed Photographs, P-R: Leonard Plachta,undated + + + + + + 84 + 9 + Mixed Photographs, P-R: CMU Police,undated + + + + + + 84 + 10 + Mixed Photographs, P-R: Political Science,undated + + + + + + 84 + 11 + Mixed Photographs, P-R: P.A.,undated + + + + + + 84 + 12 + Mixed Photographs, P-R: Rao, Michael,undated + + + + + + 84 + 13 + Mixed Photographs, P-R: Recreation, Parks, Leisure Services,undated + + + + + + 84 + 14 + Mixed Photographs, P-R: Religion,undated + + + + + + 85 + 1 + Mixed Photographs, T-W: Teacher Education,undated + + + + + + 85 + 2 + Mixed Photographs, T-W: Teacher Education [2],undated + + + + + + 85 + 3 + Mixed Photographs, T-W: Teen Institute,undated + + + + + + 85 + 4 + Mixed Photographs, T-W: Telecommunications,undated + + + + + + 85 + 5 + Mixed Photographs, T-W: Telecommunications 2,undated + + + + + + 85 + 6 + Mixed Photographs, T-W: Theater (Photographs),undated + + + + + + 85 + 7 + Mixed Photographs, T-W: Theater, Summer,undated + + + + + + 85 + 8 + Mixed Photographs, T-W: Theater Arts,undated + + + + + + 85 + 9 + Mixed Photographs, T-W: Theater,undated + + + + + + 85 + 10 + Mixed Photographs, T-W: Lem Tucker Scholarship,undated + + + + + + 85 + 11 + Mixed Photographs, T-W: Teen Institute 2,undated + + + + + + 85 + 12 + Mixed Photographs, T-W: Testing Center Robison Hall,undated + + + + + + 85 + 13 + Mixed Photographs, T-W: Lem Tucker Historical,undated + + + + + + 85 + 14 + Mixed Photographs, T-W: Lem Tucker Scholarship Event (Photographs),undated + + + + + + 85 + 15 + Mixed Photographs, T-W: 2010 (various images from 2010),undated + + + + + + 85 + 16 + Mixed Photographs, T-W: Volunteer Center,undated + + + + + + 85 + 17 + Mixed Photographs, T-W: University Events,undated + + + + + + 85 + 18 + Mixed Photographs, T-W: Upward Bound,undated + + + + + + 85 + 19 + Mixed Photographs, T-W: Womens Studies,undated + + + + + + 86 + 1 + Mixed Photographs, N, S-Y: Native American,undated + + + + + + 86 + 2 + Mixed Photographs, N, S-Y: Neithercut Woodland, Viets Woods,undated + + + + + + 86 + 3 + Mixed Photographs, N, S-Y: Orchesis (Dance),undated + + + + + + 86 + 4 + Mixed Photographs, N, S-Y: Orientation,undated + + + + + + 86 + 5 + Mixed Photographs, N, S-Y: Science and Tech,undated + + + + + + 86 + 6 + Mixed Photographs, N, S-Y: Seals, Signs, and Symbols,undated + + + + + + 86 + 7 + Mixed Photographs, N, S-Y: Sociology Department,undated + + + + + + 86 + 8 + Mixed Photographs, N, S-Y: Special Education Department,undated + + + + + + 86 + 9 + Mixed Photographs, N, S-Y: Special Olympics,undated + + + + + + 86 + 10 + Mixed Photographs, N, S-Y: Sports Camp,undated + + + + + + 86 + 11 + Mixed Photographs, N, S-Y: Story Telling Festivals,undated + + + + + + 86 + 12 + Mixed Photographs, N, S-Y: Student Activities Center,undated + + + + + + 86 + 13 + Mixed Photographs, N, S-Y: Student Employment,undated + + + + + + 86 + 14 + Mixed Photographs, N, S-Y: Student Research,undated + + + + + + 86 + 15 + Mixed Photographs, N, S-Y: Sports Program Ads,undated + + + + + + 86 + 16 + Mixed Photographs, N, S-Y: Stamata,undated + + + + + + 86 + 17 + Mixed Photographs, N, S-Y: Students,undated + + + + + + 86 + 18 + Mixed Photographs, N, S-Y: Student Activities,undated + + + + + + 86 + 19 + Mixed Photographs, N, S-Y: Student Activities Center,undated + + + + + + 86 + 20 + Mixed Photographs, N, S-Y: Student Affairs,undated + + + + + + 86 + 21 + Mixed Photographs, N, S-Y: Student Employment,undated + + + + + + 86 + 22 + Mixed Photographs, N, S-Y: Student Foundations,undated + + + + + + 86 + 23 + Mixed Photographs, N, S-Y: Student Organization,undated + + + + + + 86 + 24 + Mixed Photographs, N, S-Y: Student Research,undated + + + + + + 86 + 25 + Mixed Photographs, N, S-Y: Student Services,undated + + + + + + 86 + 26 + Mixed Photographs, N, S-Y: Summer Institute,undated + + + + + + 86 + 27 + Mixed Photographs, N, S-Y: Swim School,undated + + + + + + 86 + 28 + Mixed Photographs, N, S-Y: University Art Gallery,undated + + + + + + 86 + 29 + Mixed Photographs, N, S-Y: Braunlich, Robert,undated + + + + + + 86 + 30 + Mixed Photographs, N, S-Y: University Events,undated + + + + + + 86 + 31 + Mixed Photographs, N, S-Y: University Park,undated + + + + + + 86 + 32 + Mixed Photographs, N, S-Y: University Services Presentations,undated + + + + + + 86 + 33 + Mixed Photographs, N, S-Y: Upward Bound,undated + + + + + + 86 + 34 + Mixed Photographs, N, S-Y: Veterans Memorial Library,undated + + + + + + 86 + 35 + Mixed Photographs, N, S-Y: Vocational Education,undated + + + + + + 86 + 36 + Mixed Photographs, N, S-Y: Volunteering,undated + + + + + + 86 + 37 + Mixed Photographs, N, S-Y: Warriner Hall and Mall,undated + + + + + + 86 + 38 + Mixed Photographs, N, S-Y: WCML-TV,undated + + + + + + 86 + 39 + Mixed Photographs, N, S-Y: WCMU-FM,undated + + + + + + 86 + 40 + Mixed Photographs, N, S-Y: Wellness Center,undated + + + + + + 86 + 41 + Mixed Photographs, N, S-Y: Women’s Study Program,undated + + + + + + 86 + 42 + Mixed Photographs, N, S-Y: Youth Discovery,undated + + + + + + 87 + 1 + Small Headshots, A-F,undated + + + + + + 88 + 1 + Small Headshots, F-K,undated + + + + + + 89 + 1 + Small Headshots, L-Pa,undated + + + + + + 90 + 1 + Small Headshots, Pe-S,undated + + + + + + 91 + 1 + Small Headshots, T-Z / Miscellaneous,undated + + + + + + 92 + 1 + Sport Collection and Public Broadcasting, Slides, outdated, Photographs: Football,undated + + + + + + 92 + 2 + Sport Collection and Public Broadcasting, Slides, outdated, Photographs: Women’s Baseball,undated + + + + + + 92 + 3 + Sport Collection and Public Broadcasting, Slides, outdated, Photographs: Track,undated + + + + + + 92 + 4 + Sport Collection and Public Broadcasting, Slides, outdated, Photographs: Volleyball,undated + + + + + + 92 + 5 + Sport Collection and Public Broadcasting, Slides, outdated, Photographs: Soccer,undated + + + + + + 92 + 6 + Sport Collection and Public Broadcasting, Slides, outdated, Photographs: Chip Center,undated + + + + + + 92 + 7 + Sport Collection and Public Broadcasting, Slides, outdated, Photographs: Chipettes, Outdated,undated + + + + + + 92 + 8 + Sport Collection and Public Broadcasting, Slides, outdated, Photographs: Chippewa Club,undated + + + + + + 92 + 9 + Sport Collection and Public Broadcasting, Slides, outdated, Photographs: Theater,undated + + + + + + 92 + 10 + Sport Collection and Public Broadcasting, Slides, outdated, Photographs: Public Broadcasting,undated + + + + + + 93 + 1 + Headshots, A-F, outdated,undated + + + + + + 94 + 1 + Headshots, G-M outdated,undated + + + + + + 95 + 1 + Headshots, Me-T outdated,undated + + + + + + 96 + 1 + Headshots, W-Z outdated,undated + + + + + + 97 + 1 + News Releases, E-F: English,undated + + + + + + 97 + 2 + News Releases, E-F: Enrollment,undated + + + + + + 97 + 3 + News Releases, E-F: Enrollment Student Services,undated + + + + + + 97 + 4 + News Releases, E-F: Extended Learning,undated + + + + + + 97 + 5 + News Releases, E-F: External Relations,undated + + + + + + 97 + 6 + News Releases, E-F: Faculty Association,undated + + + + + + 97 + 7 + News Releases, E-F: Faculty Center for Academic Success,undated + + + + + + 97 + 8 + News Releases, E-F: Faculty Center for Innovative Teaching,undated + + + + + + 97 + 9 + News Releases, E-F: Faculty Contractual,undated + + + + + + 97 + 10 + News Releases, E-F: Feature Tip,undated + + + + + + 97 + 11 + News Releases, E-F: Finance,undated + + + + + + 97 + 12 + News Releases, E-F: FAS,undated + + + + + + 97 + 13 + News Releases, E-F: Financial Aid,undated + + + + + + 97 + 14 + News Releases, E-F: Flood of ’86,undated + + + + + + 97 + 15 + News Releases, E-F: Foreign Language,undated + + + + + + 97 + 16 + News Releases, E-F: Free Speech,undated + + + + + + 98 + 1 + News Releases, G-H: Gay and Lesbian Programs,undated + + + + + + 98 + 2 + News Releases, G-H: Geography,undated + + + + + + 98 + 3 + News Releases, G-H: Gerontology,undated + + + + + + 98 + 4 + News Releases, G-H: Gov. [Governor] Engler,undated + + + + + + 98 + 5 + News Releases, G-H: Govt. [Government] Relations,undated + + + + + + 98 + 6 + News Releases, G-H: Graduate Studies,undated + + + + + + 98 + 7 + News Releases, G-H: GRIP (Graduation, Retention Improvement Program),undated + + + + + + 98 + 8 + News Releases, G-H: Grants,undated + + + + + + 98 + 9 + News Releases, G-H: Grants and Contracts,undated + + + + + + 98 + 10 + News Releases, G-H: Graphics,undated + + + + + + 98 + 11 + News Releases, G-H: GLISS (Great Lakes Institute for Sustainable Systems),undated + + + + + + 98 + 12 + News Releases, G-H: Health Education, Health Science,undated + + + + + + 98 + 13 + News Releases, G-H: Health Professions,undated + + + + + + 98 + 14 + News Releases, G-H: Health Services,undated + + + + + + 98 + 15 + News Releases, G-H: Higher Education,undated + + + + + + 98 + 16 + News Releases, G-H: Higher Education 2,undated + + + + + + 98 + 17 + News Releases, G-H: Higher Education Week,undated + + + + + + 98 + 18 + News Releases, G-H: History Deportment,undated + + + + + + 98 + 19 + News Releases, G-H: CMU, General History,undated + + + + + + 98 + 20 + News Releases, G-H: Homecoming,undated + + + + + + 98 + 21 + News Releases, G-H: Hometowns,undated + + + + + + 98 + 22 + News Releases, G-H: Hometowns 2,undated + + + + + + 99 + 1 + News Releases, M: Mac Users Group,undated + + + + + + 99 + 2 + News Releases, M: Management,undated + + + + + + 99 + 3 + News Releases, M: Maps,undated + + + + + + 99 + 4 + News Releases, M: Marketing Hospital Service,undated + + + + + + 99 + 5 + News Releases, M: Math,undated + + + + + + 99 + 6 + News Releases, M: Math/ Science Teaching Center,undated + + + + + + 99 + 7 + News Releases, M: McNair Program,undated + + + + + + 99 + 8 + News Releases, M: Media Relations,undated + + + + + + 99 + 9 + News Releases, M: Medical Schools,undated + + + + + + 99 + 10 + News Releases, M: Michigan Associations of Governing Boards,undated + + + + + + 99 + 11 + News Releases, M: Michigan Campus Compact,undated + + + + + + 99 + 12 + News Releases, M: Michigan Geographic Alliance,undated + + + + + + 99 + 13 + News Releases, M: Michigan Institute for Adult Learning,undated + + + + + + 99 + 14 + News Releases, M: Michigan Melody,undated + + + + + + 99 + 15 + News Releases, M: Michigan Molecular Institute,undated + + + + + + 99 + 16 + News Releases, M: Michigan Press Association,undated + + + + + + 99 + 17 + News Releases, M: Michigan Schools in the Middle,undated + + + + + + 99 + 18 + News Releases, M: Midland Programs,undated + + + + + + 99 + 19 + News Releases, M: Military Science,undated + + + + + + 99 + 20 + News Releases, M: Office of Minority Affairs,undated + + + + + + 99 + 21 + News Releases, M: Miscellanies,undated + + + + + + 99 + 22 + News Releases, M: MSU News Bulletin,undated + + + + + + 99 + 23 + News Releases, M: Mount Pleasant,undated + + + + + + 99 + 24 + News Releases, M: Multicultural Programming Center,undated + + + + + + 99 + 25 + News Releases, M: Multigene,undated + + + + + + 99 + 26 + News Releases, M: Music File 3,undated + + + + + + 99 + 27 + News Releases, M: Music File 4,undated + + + + + + 100 + 1 + News Releases, M-P: Music File 2,undated + + + + + + 100 + 2 + News Releases, M-P: Music File 1,undated + + + + + + 100 + 3 + News Releases, M-P: Native American Program,undated + + + + + + 100 + 4 + News Releases, M-P: Neithercut Woodlands,undated + + + + + + 100 + 5 + News Releases, M-P: Network for Women,undated + + + + + + 100 + 6 + News Releases, M-P: News Sources,undated + + + + + + 100 + 7 + News Releases, M-P: Nontraditional Student Services,undated + + + + + + 100 + 8 + News Releases, M-P: Odyssey of the Mind,undated + + + + + + 100 + 9 + News Releases, M-P: Office of Research,undated + + + + + + 100 + 10 + News Releases, M-P: Office of Student Success,undated + + + + + + 100 + 11 + News Releases, M-P: On the Fly,undated + + + + + + 100 + 12 + News Releases, M-P: OTD (Opportunity for Talent Development,undated + + + + + + 100 + 13 + News Releases, M-P: Orchesis,undated + + + + + + 100 + 14 + News Releases, M-P: Park Library,undated + + + + + + 100 + 15 + News Releases, M-P: Parking,undated + + + + + + 100 + 16 + News Releases, M-P: Personnel Services-Faculty,undated + + + + + + 100 + 17 + News Releases, M-P: Personnel Services,undated + + + + + + 100 + 18 + News Releases, M-P: Personnel Services-Sttaff,undated + + + + + + 100 + 19 + News Releases, M-P: Philosophy,undated + + + + + + 100 + 20 + News Releases, M-P: Physical Education and Sports,undated + + + + + + 100 + 21 + News Releases, M-P: Physical Plant,undated + + + + + + 100 + 22 + News Releases, M-P: Physical Therapy,undated + + + + + + 100 + 23 + News Releases, M-P: Physician’s Assistant Program,undated + + + + + + 100 + 24 + News Releases, M-P: Physics,undated + + + + + + 100 + 25 + News Releases, M-P: Placement,undated + + + + + + 100 + 26 + News Releases, M-P: Plachta,undated + + + + + + 100 + 27 + News Releases, M-P: Political Science,undated + + + + + + 100 + 28 + News Releases, M-P: Politics-State and Local,undated + + + + + + 100 + 29 + News Releases, M-P: Politics-National,undated + + + + + + 100 + 30 + News Releases, M-P: [Gerald L.] Poor Museum,undated + + + + + + 101 + 1 + News Releases, H-L: Hometowns,undated + + + + + + 101 + 2 + News Releases, H-L: Hometown,undated + + + + + + 101 + 3 + News Releases, H-L: Honors Program,undated + + + + + + 101 + 4 + News Releases, H-L: Housing,undated + + + + + + 101 + 5 + News Releases, H-L: HEV [Health Environmental Studies],undated + + + + + + 101 + 6 + News Releases, H-L: HSBS, College of [Humanities and Social and Behavior Sciences],undated + + + + + + 101 + 7 + News Releases, H-L: Humanities Institute,undated + + + + + + 101 + 8 + News Releases, H-L: IET,undated + + + + + + 101 + 9 + News Releases, H-L: Information Technology,undated + + + + + + 101 + 10 + News Releases, H-L: Instructional Materials Center,undated + + + + + + 101 + 11 + News Releases, H-L: Institutional Research,undated + + + + + + 101 + 12 + News Releases, H-L: International Center for Applied Ethics,undated + + + + + + 101 + 13 + News Releases, H-L: International Program,undated + + + + + + 101 + 14 + News Releases, H-L: IPR Program [Integrative Public Relations],undated + + + + + + 101 + 15 + News Releases, H-L: Job Training Center,undated + + + + + + 101 + 16 + News Releases, H-L: Journalism,undated + + + + + + 101 + 17 + News Releases, H-L: LaBelle Center,undated + + + + + + 101 + 18 + News Releases, H-L: Lem Tucker Scholarship,undated + + + + + + 101 + 19 + News Releases, H-L: Leadership Institute,undated + + + + + + 102 + 1 + Colored Slides, F-I: Finance, Insurance, and Real Estate,undated + + + + + + 102 + 2 + Colored Slides, F-I: Food Services,undated + + + + + + 102 + 3 + Colored Slides, F-I: Footbal,undated + + + + + + 102 + 4 + Colored Slides, F-I: Football 2,undated + + + + + + 102 + 5 + Colored Slides, F-I: Football 3,undated + + + + + + 102 + 6 + Colored Slides, F-I: Foreign Language,undated + + + + + + 102 + 7 + Colored Slides, F-I: Geology Department,undated + + + + + + 102 + 8 + Colored Slides, F-I: Golf,undated + + + + + + 102 + 9 + Colored Slides, F-I: Greeks,undated + + + + + + 102 + 10 + Colored Slides, F-I: Gymnastics,undated + + + + + + 102 + 11 + Colored Slides, F-I: Health Services – Foust,undated + + + + + + 102 + 12 + Colored Slides, F-I: Historical,undated + + + + + + 102 + 13 + Colored Slides, F-I: History Department,undated + + + + + + 102 + 14 + Colored Slides, F-I: Homecoming,undated + + + + + + 102 + 15 + Colored Slides, F-I: Honors,undated + + + + + + 102 + 16 + Colored Slides, F-I: Housing,undated + + + + + + 102 + 17 + Colored Slides, F-I: Human Environmental Studies,undated + + + + + + 103 + 1 + Colored Slides, I-M: IET,undated + + + + + + 103 + 2 + Colored Slides, I-M: IPCD,undated + + + + + + 103 + 3 + Colored Slides, I-M: MMT (Unidentified acronymn, people in lab coats with various equipment),undated + + + + + + 103 + 4 + Colored Slides, I-M: Management Department,undated + + + + + + 103 + 5 + Colored Slides, I-M: Marching Band,undated + + + + + + 103 + 6 + Colored Slides, I-M: Marketing and Hospitality Services,undated + + + + + + 103 + 7 + Colored Slides, I-M: Math Department,undated + + + + + + 103 + 8 + Colored Slides, I-M: Medical Technology,undated + + + + + + 103 + 9 + Colored Slides, I-M: Minority Affairs,undated + + + + + + 103 + 10 + Colored Slides, I-M: Mount Pleasant Community,undated + + + + + + 103 + 11 + Colored Slides, I-M: Multi-Cultural Center,undated + + + + + + 103 + 12 + Colored Slides, I-M: Museum of Cultural and Natural History,undated + + + + + + 104 + 1 + News Releases Faculty / staff, Mac-Plachta: MacDonagh -Dumler, Etta,undated + + + + + + 104 + 2 + News Releases Faculty / staff, Mac-Plachta: MacGillivray, Maureen,undated + + + + + + 104 + 3 + News Releases Faculty / staff, Mac-Plachta: Mackey, Marcia,undated + + + + + + 104 + 4 + News Releases Faculty / staff, Mac-Plachta: Macleod, David I.,undated + + + + + + 104 + 5 + News Releases Faculty / staff, Mac-Plachta: Macleod, Elizabeth,undated + + + + + + 104 + 6 + News Releases Faculty / staff, Mac-Plachta: Macleod, Jon H.,undated + + + + + + 104 + 7 + News Releases Faculty / staff, Mac-Plachta: Marian B. Macleod,undated + + + + + + 104 + 8 + News Releases Faculty / staff, Mac-Plachta: Madison, Lynn,undated + + + + + + 104 + 9 + News Releases Faculty / staff, Mac-Plachta: Magnell, Kenneth R.,undated + + + + + + 104 + 10 + News Releases Faculty / staff, Mac-Plachta: Magnuson, Michaelina,undated + + + + + + 104 + 11 + News Releases Faculty / staff, Mac-Plachta: Mahon, Andrew,undated + + + + + + 104 + 12 + News Releases Faculty / staff, Mac-Plachta: Maksimowicz, Michelle Lee,undated + + + + + + 104 + 13 + News Releases Faculty / staff, Mac-Plachta: Malone Beach, Eileen,undated + + + + + + 104 + 14 + News Releases Faculty / staff, Mac-Plachta: Manns, Cynthia,undated + + + + + + 104 + 15 + News Releases Faculty / staff, Mac-Plachta: Manville, David,undated + + + + + + 104 + 16 + News Releases Faculty / staff, Mac-Plachta: Marcum, Tanya,undated + + + + + + 104 + 17 + News Releases Faculty / staff, Mac-Plachta: Mark, Dianne,undated + + + + + + 104 + 18 + News Releases Faculty / staff, Mac-Plachta: Marron, Maria,undated + + + + + + 104 + 19 + News Releases Faculty / staff, Mac-Plachta: Martin, Darrell Irwin,undated + + + + + + 104 + 20 + News Releases Faculty / staff, Mac-Plachta: Martin, Jay,undated + + + + + + 104 + 21 + News Releases Faculty / staff, Mac-Plachta: Martin, Sue Ann,undated + + + + + + 104 + 22 + News Releases Faculty / staff, Mac-Plachta: Mascolo-David, Alexandra,undated + + + + + + 104 + 23 + News Releases Faculty / staff, Mac-Plachta: Mason, Emmett,undated + + + + + + 104 + 24 + News Releases Faculty / staff, Mac-Plachta: Mason, John,undated + + + + + + 104 + 25 + News Releases Faculty / staff, Mac-Plachta: Masterson, Tom,undated + + + + + + 104 + 26 + News Releases Faculty / staff, Mac-Plachta: Mathews, David,undated + + + + + + 104 + 27 + News Releases Faculty / staff, Mac-Plachta: Mathis, Paul C.,undated + + + + + + 104 + 28 + News Releases Faculty / staff, Mac-Plachta: Mathur, Mary E. Fleming,undated + + + + + + 104 + 29 + News Releases Faculty / staff, Mac-Plachta: Matouka, Robert,undated + + + + + + 104 + 30 + News Releases Faculty / staff, Mac-Plachta: Matty, David,undated + + + + + + 104 + 31 + News Releases Faculty / staff, Mac-Plachta: May, Hope,undated + + + + + + 104 + 32 + News Releases Faculty / staff, Mac-Plachta: McAuliffe, John C.,undated + + + + + + 104 + 33 + News Releases Faculty / staff, Mac-Plachta: McBane, Donald,undated + + + + + + 104 + 34 + News Releases Faculty / staff, Mac-Plachta: Mcbrayer, Deborah,undated + + + + + + 104 + 35 + News Releases Faculty / staff, Mac-Plachta: McCann, Connie,undated + + + + + + 104 + 36 + News Releases Faculty / staff, Mac-Plachta: McCarthy, John L.,undated + + + + + + 104 + 37 + News Releases Faculty / staff, Mac-Plachta: McDermott, William,undated + + + + + + 104 + 38 + News Releases Faculty / staff, Mac-Plachta: McDonald, James,undated + + + + + + 104 + 39 + News Releases Faculty / staff, Mac-Plachta: McGinnis, Amy,undated + + + + + + 104 + 40 + News Releases Faculty / staff, Mac-Plachta: McGrath, John,undated + + + + + + 104 + 41 + News Releases Faculty / staff, Mac-Plachta: McLean, Athena,undated + + + + + + 104 + 42 + News Releases Faculty / staff, Mac-Plachta: McNaught, Scott,undated + + + + + + 104 + 43 + News Releases Faculty / staff, Mac-Plachta: Meadows, Elizabeth,undated + + + + + + 104 + 44 + News Releases Faculty / staff, Mac-Plachta: Meiss, Guy,undated + + + + + + 104 + 45 + News Releases Faculty / staff, Mac-Plachta: Meixner, John,undated + + + + + + 104 + 46 + News Releases Faculty / staff, Mac-Plachta: Mellinger, Axel,undated + + + + + + 104 + 47 + News Releases Faculty / staff, Mac-Plachta: Joan Memering,undated + + + + + + 104 + 48 + News Releases Faculty / staff, Mac-Plachta: Memering, Willard D.,undated + + + + + + 104 + 49 + News Releases Faculty / staff, Mac-Plachta: Merrill, William,undated + + + + + + 104 + 50 + News Releases Faculty / staff, Mac-Plachta: Merritt, Barbara Anne,undated + + + + + + 104 + 51 + News Releases Faculty / staff, Mac-Plachta: Mesler, Gary L.,undated + + + + + + 104 + 52 + News Releases Faculty / staff, Mac-Plachta: Messick, Frederic M.,undated + + + + + + 104 + 53 + News Releases Faculty / staff, Mac-Plachta: Metcalf, Douglas,undated + + + + + + 104 + 54 + News Releases Faculty / staff, Mac-Plachta: Messick, Frederic M.,undated + + + + + + 104 + 55 + News Releases Faculty / staff, Mac-Plachta: Metcalf, Douglas,undated + + + + + + 104 + 56 + News Releases Faculty / staff, Mac-Plachta: Meyer, John C.,undated + + + + + + 104 + 57 + News Releases Faculty / staff, Mac-Plachta: Miele, Tony,undated + + + + + + 104 + 58 + News Releases Faculty / staff, Mac-Plachta: Mika, Harry,undated + + + + + + 104 + 59 + News Releases Faculty / staff, Mac-Plachta: Barbara Fisher Miles,undated + + + + + + 104 + 60 + News Releases Faculty / staff, Mac-Plachta: Miles, Susan Goodrich,undated + + + + + + 104 + 61 + News Releases Faculty / staff, Mac-Plachta: Miles, Thomas J.,undated + + + + + + 104 + 62 + News Releases Faculty / staff, Mac-Plachta: Miles, William,undated + + + + + + 104 + 63 + News Releases Faculty / staff, Mac-Plachta: Miller, Gray M.,undated + + + + + + 104 + 64 + News Releases Faculty / staff, Mac-Plachta: Miller, Kent,undated + + + + + + 104 + 65 + News Releases Faculty / staff, Mac-Plachta: Miller, Kevin,undated + + + + + + 104 + 66 + News Releases Faculty / staff, Mac-Plachta: Miller, Mary Ann,undated + + + + + + 104 + 67 + News Releases Faculty / staff, Mac-Plachta: Miller, Robert H.,undated + + + + + + 104 + 68 + News Releases Faculty / staff, Mac-Plachta: Miller, William A.,undated + + + + + + 104 + 69 + News Releases Faculty / staff, Mac-Plachta: Mills, Maureen W.,undated + + + + + + 104 + 70 + News Releases Faculty / staff, Mac-Plachta: Mills, Robert C.,undated + + + + + + 104 + 71 + News Releases Faculty / staff, Mac-Plachta: Minelli, Mark,undated + + + + + + 104 + 72 + News Releases Faculty / staff, Mac-Plachta: Scott Minick,undated + + + + + + 104 + 73 + News Releases Faculty / staff, Mac-Plachta: Minkel, Thomas A.,undated + + + + + + 104 + 74 + News Releases Faculty / staff, Mac-Plachta: Minnis, Marybeth,undated + + + + + + 104 + 75 + News Releases Faculty / staff, Mac-Plachta: Minyard, Charles,undated + + + + + + 104 + 76 + News Releases Faculty / staff, Mac-Plachta: Mioduszewski, Leo,undated + + + + + + 104 + 77 + News Releases Faculty / staff, Mac-Plachta: Mishra, Nandita,undated + + + + + + 104 + 78 + News Releases Faculty / staff, Mac-Plachta: Mitchell, John B.,undated + + + + + + 104 + 79 + News Releases Faculty / staff, Mac-Plachta: Mitchell, Regina,undated + + + + + + 104 + 80 + News Releases Faculty / staff, Mac-Plachta: Moffit, Gisela,undated + + + + + + 104 + 81 + News Releases Faculty / staff, Mac-Plachta: Moffit, Thompson C.,undated + + + + + + 104 + 82 + News Releases Faculty / staff, Mac-Plachta: Mohanty, Dillip,undated + + + + + + 104 + 83 + News Releases Faculty / staff, Mac-Plachta: Monahan, John,undated + + + + + + 104 + 84 + News Releases Faculty / staff, Mac-Plachta: Monahan, Nina,undated + + + + + + 104 + 85 + News Releases Faculty / staff, Mac-Plachta: Monfils, Anna,undated + + + + + + 104 + 86 + News Releases Faculty / staff, Mac-Plachta: Monroe, James S.,undated + + + + + + 104 + 87 + News Releases Faculty / staff, Mac-Plachta: Montoye, Mary J.,undated + + + + + + 104 + 88 + News Releases Faculty / staff, Mac-Plachta: James Moody,undated + + + + + + 104 + 89 + News Releases Faculty / staff, Mac-Plachta: Moore, Colleen,undated + + + + + + 104 + 90 + News Releases Faculty / staff, Mac-Plachta: Moore, Thomas,undated + + + + + + 104 + 91 + News Releases Faculty / staff, Mac-Plachta: Morgan, Denise Lois,undated + + + + + + 104 + 92 + News Releases Faculty / staff, Mac-Plachta: Morgan, Sharon,undated + + + + + + 104 + 93 + News Releases Faculty / staff, Mac-Plachta: Morris, Gregory,undated + + + + + + 104 + 94 + News Releases Faculty / staff, Mac-Plachta: Morris, Kenneth T.,undated + + + + + + 104 + 95 + News Releases Faculty / staff, Mac-Plachta: Morrison, Richard,undated + + + + + + 104 + 96 + News Releases Faculty / staff, Mac-Plachta: Morrisroe, Julia,undated + + + + + + 104 + 97 + News Releases Faculty / staff, Mac-Plachta: Morton, Cornez,undated + + + + + + 104 + 98 + News Releases Faculty / staff, Mac-Plachta: Morrow, Earl,undated + + + + + + 104 + 99 + News Releases Faculty / staff, Mac-Plachta: Moscardelli, Deborah,undated + + + + + + 104 + 100 + News Releases Faculty / staff, Mac-Plachta: Mostrom, Elizabeth,undated + + + + + + 104 + 101 + News Releases Faculty / staff, Mac-Plachta: Motlagh, Hugh,undated + + + + + + 104 + 102 + News Releases Faculty / staff, Mac-Plachta: Moursi, Mahmoud A.,undated + + + + + + 104 + 103 + News Releases Faculty / staff, Mac-Plachta: Mower, Neil,undated + + + + + + 104 + 104 + News Releases Faculty / staff, Mac-Plachta: Mowrey, Merlyn,undated + + + + + + 104 + 105 + News Releases Faculty / staff, Mac-Plachta: Mrochinski, Linda,undated + + + + + + 104 + 106 + News Releases Faculty / staff, Mac-Plachta: Mueller, Anja,undated + + + + + + 104 + 107 + News Releases Faculty / staff, Mac-Plachta: Mull, Ian,undated + + + + + + 104 + 108 + News Releases Faculty / staff, Mac-Plachta: Murchison, Pamela W.,undated + + + + + + 104 + 109 + News Releases Faculty / staff, Mac-Plachta: Murphy, David,undated + + + + + + 104 + 110 + News Releases Faculty / staff, Mac-Plachta: Murphy, Kelly,undated + + + + + + 104 + 111 + News Releases Faculty / staff, Mac-Plachta: Murphy, Lawrence,undated + + + + + + 104 + 112 + News Releases Faculty / staff, Mac-Plachta: Murray, Lorrie,undated + + + + + + 104 + 113 + News Releases Faculty / staff, Mac-Plachta: Masial, Gloria,undated + + + + + + 104 + 114 + News Releases Faculty / staff, Mac-Plachta: Myers, David,undated + + + + + + 104 + 115 + News Releases Faculty / staff, Mac-Plachta: Nance, Douglas W.,undated + + + + + + 104 + 116 + News Releases Faculty / staff, Mac-Plachta: Naomi, Leora,undated + + + + + + 104 + 117 + News Releases Faculty / staff, Mac-Plachta: Narayan, Sivaram,undated + + + + + + 104 + 118 + News Releases Faculty / staff, Mac-Plachta: Nash-Robertson, Nina,undated + + + + + + 104 + 119 + News Releases Faculty / staff, Mac-Plachta: Nasser, Abdul,undated + + + + + + 104 + 120 + News Releases Faculty / staff, Mac-Plachta: Natke, Paul Anthony,undated + + + + + + 104 + 121 + News Releases Faculty / staff, Mac-Plachta: Neal, Albert Edward,undated + + + + + + 104 + 122 + News Releases Faculty / staff, Mac-Plachta: Neate, Wilson,undated + + + + + + 104 + 123 + News Releases Faculty / staff, Mac-Plachta: Nee, John G.,undated + + + + + + 104 + 124 + News Releases Faculty / staff, Mac-Plachta: Nellemoe, Donald,undated + + + + + + 104 + 125 + News Releases Faculty / staff, Mac-Plachta: Nelson, Burton,undated + + + + + + 104 + 126 + News Releases Faculty / staff, Mac-Plachta: Nelson, M. Dawn,undated + + + + + + 104 + 127 + News Releases Faculty / staff, Mac-Plachta: Nelson, Ron,undated + + + + + + 104 + 128 + News Releases Faculty / staff, Mac-Plachta: Nemeth, David,undated + + + + + + 104 + 129 + News Releases Faculty / staff, Mac-Plachta: Nerbonne, Michael A.,undated + + + + + + 104 + 130 + News Releases Faculty / staff, Mac-Plachta: Nevett, Terence,undated + + + + + + 104 + 131 + News Releases Faculty / staff, Mac-Plachta: Newby, Diane,undated + + + + + + 104 + 132 + News Releases Faculty / staff, Mac-Plachta: Newby, Robert,undated + + + + + + 104 + 133 + News Releases Faculty / staff, Mac-Plachta: Newland, Guy,undated + + + + + + 104 + 134 + News Releases Faculty / staff, Mac-Plachta: Newsome, Wilbert,undated + + + + + + 104 + 135 + News Releases Faculty / staff, Mac-Plachta: Nichol, John,undated + + + + + + 104 + 136 + News Releases Faculty / staff, Mac-Plachta: Nichols, Alan T.,undated + + + + + + 104 + 137 + News Releases Faculty / staff, Mac-Plachta: Nichols, Suzanne,undated + + + + + + 104 + 138 + News Releases Faculty / staff, Mac-Plachta: Nicholson, Kirsten,undated + + + + + + 104 + 139 + News Releases Faculty / staff, Mac-Plachta: Niec, Larissa,undated + + + + + + 104 + 140 + News Releases Faculty / staff, Mac-Plachta: Ncggle, Robert,undated + + + + + + 104 + 141 + News Releases Faculty / staff, Mac-Plachta: Nitschke, Earl R.,undated + + + + + + 104 + 142 + News Releases Faculty / staff, Mac-Plachta: Novosad, John P.,undated + + + + + + 104 + 143 + News Releases Faculty / staff, Mac-Plachta: Oberle, Paul J.,undated + + + + + + 104 + 144 + News Releases Faculty / staff, Mac-Plachta: O’Boyle, Irene,undated + + + + + + 104 + 145 + News Releases Faculty / staff, Mac-Plachta: Obuchowski, Peter A.,undated + + + + + + 104 + 146 + News Releases Faculty / staff, Mac-Plachta: O’Connor, Michael,undated + + + + + + 104 + 147 + News Releases Faculty / staff, Mac-Plachta: O’Dell, Judith E.,undated + + + + + + 104 + 148 + News Releases Faculty / staff, Mac-Plachta: O’Hagin, Isabel Barbara,undated + + + + + + 104 + 149 + News Releases Faculty / staff, Mac-Plachta: O’Neil, Tim,undated + + + + + + 104 + 150 + News Releases Faculty / staff, Mac-Plachta: Odelson, David,undated + + + + + + 104 + 151 + News Releases Faculty / staff, Mac-Plachta: Oh-Lee, Justin,undated + + + + + + 104 + 152 + News Releases Faculty / staff, Mac-Plachta: Okonkwo, Patrick,undated + + + + + + 104 + 153 + News Releases Faculty / staff, Mac-Plachta: Oliver, David,undated + + + + + + 104 + 154 + News Releases Faculty / staff, Mac-Plachta: Olrich, Tracy,undated + + + + + + 104 + 155 + News Releases Faculty / staff, Mac-Plachta: Karen Olson,undated + + + + + + 104 + 156 + News Releases Faculty / staff, Mac-Plachta: Ong, Sing-Cheong,undated + + + + + + 104 + 157 + News Releases Faculty / staff, Mac-Plachta: Orf, Leigh,undated + + + + + + 104 + 158 + News Releases Faculty / staff, Mac-Plachta: Orlik, Peter B.,undated + + + + + + 104 + 159 + News Releases Faculty / staff, Mac-Plachta: Otani, Hajime,undated + + + + + + 104 + 160 + News Releases Faculty / staff, Mac-Plachta: Otteman, Marcie,undated + + + + + + 104 + 161 + News Releases Faculty / staff, Mac-Plachta: Otteman, Tim,undated + + + + + + 104 + 162 + News Releases Faculty / staff, Mac-Plachta: Owens, Ann Marie,undated + + + + + + 104 + 163 + News Releases Faculty / staff, Mac-Plachta: Owens, Christopher,undated + + + + + + 104 + 164 + News Releases Faculty / staff, Mac-Plachta: Owens, Michael, Allen,undated + + + + + + 104 + 165 + News Releases Faculty / staff, Mac-Plachta: Pahz, James,undated + + + + + + 104 + 166 + News Releases Faculty / staff, Mac-Plachta: Paik, Won K.,undated + + + + + + 104 + 167 + News Releases Faculty / staff, Mac-Plachta: Palaniswami, S.,undated + + + + + + 104 + 168 + News Releases Faculty / staff, Mac-Plachta: Palen, John,undated + + + + + + 104 + 169 + News Releases Faculty / staff, Mac-Plachta: Palm, Albert F.,undated + + + + + + 104 + 170 + News Releases Faculty / staff, Mac-Plachta: Palmer, Patricia J.,undated + + + + + + 104 + 171 + News Releases Faculty / staff, Mac-Plachta: Papa, Michael,undated + + + + + + 104 + 172 + News Releases Faculty / staff, Mac-Plachta: Papa, Wendy,undated + + + + + + 104 + 173 + News Releases Faculty / staff, Mac-Plachta: Paparella, Anthony,undated + + + + + + 104 + 174 + News Releases Faculty / staff, Mac-Plachta: Pape, Bruce M. C.,undated + + + + + + 104 + 175 + News Releases Faculty / staff, Mac-Plachta: Parker, Daniel Robert,undated + + + + + + 104 + 176 + News Releases Faculty / staff, Mac-Plachta: Parmentier, Edward,undated + + + + + + 104 + 177 + News Releases Faculty / staff, Mac-Plachta: Parmer, Twinet,undated + + + + + + 104 + 178 + News Releases Faculty / staff, Mac-Plachta: Parr, Richard B.,undated + + + + + + 104 + 179 + News Releases Faculty / staff, Mac-Plachta: Paterson, Robert L., Jr.,undated + + + + + + 104 + 180 + News Releases Faculty / staff, Mac-Plachta: Patrick, Larry,undated + + + + + + 104 + 181 + News Releases Faculty / staff, Mac-Plachta: Patterson, Fred S.,undated + + + + + + 104 + 182 + News Releases Faculty / staff, Mac-Plachta: Patterson, Janet,undated + + + + + + 104 + 183 + News Releases Faculty / staff, Mac-Plachta: Paullce, Jennifer,undated + + + + + + 104 + 184 + News Releases Faculty / staff, Mac-Plachta: Peddie, Don,undated + + + + + + 104 + 185 + News Releases Faculty / staff, Mac-Plachta: Peer, Gary G.,undated + + + + + + 104 + 186 + News Releases Faculty / staff, Mac-Plachta: Pehrsson, Dale-Elizabeth,undated + + + + + + 104 + 187 + News Releases Faculty / staff, Mac-Plachta: Pellerin, George J.,undated + + + + + + 104 + 188 + News Releases Faculty / staff, Mac-Plachta: Pennewell, Thomas L.,undated + + + + + + 104 + 189 + News Releases Faculty / staff, Mac-Plachta: Perdikakis, Georgios,undated + + + + + + 104 + 190 + News Releases Faculty / staff, Mac-Plachta: Perez, Orlando,undated + + + + + + 104 + 191 + News Releases Faculty / staff, Mac-Plachta: Perkins, Jan,undated + + + + + + 104 + 192 + News Releases Faculty / staff, Mac-Plachta: Perkowski, Linda,undated + + + + + + 104 + 193 + News Releases Faculty / staff, Mac-Plachta: Perrigo, Ann,undated + + + + + + 104 + 194 + News Releases Faculty / staff, Mac-Plachta: Peters, Gary,undated + + + + + + 104 + 195 + News Releases Faculty / staff, Mac-Plachta: Peterson, Douglas,undated + + + + + + 104 + 196 + News Releases Faculty / staff, Mac-Plachta: Petersen, Quentin,undated + + + + + + 104 + 197 + News Releases Faculty / staff, Mac-Plachta: Karen L. Peterson,undated + + + + + + 104 + 198 + News Releases Faculty / staff, Mac-Plachta: Peterson, Thomas Charles,undated + + + + + + 104 + 199 + News Releases Faculty / staff, Mac-Plachta: Petkov, Valeri,undated + + + + + + 104 + 260 + News Releases Faculty / staff, Mac-Plachta: Peyrefitte, Ashton,undated + + + + + + 104 + 201 + News Releases Faculty / staff, Mac-Plachta: Pfeiffer, John R.,undated + + + + + + 104 + 202 + News Releases Faculty / staff, Mac-Plachta: Phelps, Frederick M.,undated + + + + + + 104 + 203 + News Releases Faculty / staff, Mac-Plachta: Pickler, Jeffrey Scott,undated + + + + + + 104 + 204 + News Releases Faculty / staff, Mac-Plachta: Pietrandrea, Lori Ann,undated + + + + + + 104 + 205 + News Releases Faculty / staff, Mac-Plachta: Pietraskiewicz, Nancy,undated + + + + + + 104 + 206 + News Releases Faculty / staff, Mac-Plachta: Pietz, Donald L.,undated + + + + + + 104 + 207 + News Releases Faculty / staff, Mac-Plachta: Pifer, Becky,undated + + + + + + 104 + 208 + News Releases Faculty / staff, Mac-Plachta: Pisani, Michael,undated + + + + + + 104 + 209 + News Releases Faculty / staff, Mac-Plachta: Pisoni, Charles J.,undated + + + + + + 104 + 210 + News Releases Faculty / staff, Mac-Plachta: 1972-1973 Vouchers,undated + + + + + + 104 + 211 + News Releases Faculty / staff, Mac-Plachta: President Office,undated + + + + + + 105 + 1 + News Releases and Faculty / staff, P-St: Pletcher, Timothy,undated + + + + + + 105 + 2 + News Releases and Faculty / staff, P-St: Podoll, Patricia Ann,undated + + + + + + 105 + 3 + News Releases and Faculty / staff, P-St: Podoll, William,undated + + + + + + 105 + 4 + News Releases and Faculty / staff, P-St: Poff, Michael,undated + + + + + + 105 + 5 + News Releases and Faculty / staff, P-St: Poindexter, Mark,undated + + + + + + 105 + 6 + News Releases and Faculty / staff, P-St: Poland, Cara Anne,undated + + + + + + 105 + 7 + News Releases and Faculty / staff, P-St: Polenberg, Marcia,undated + + + + + + 105 + 8 + News Releases and Faculty / staff, P-St: Polinsky, Heather,undated + + + + + + 105 + 9 + News Releases and Faculty / staff, P-St: Pompilius, Dennis,undated + + + + + + 105 + 10 + News Releases and Faculty / staff, P-St: Poole, Debra,undated + + + + + + 105 + 11 + News Releases and Faculty / staff, P-St: Pope, Arlie J.,undated + + + + + + 105 + 12 + News Releases and Faculty / staff, P-St: Potter, Janet,undated + + + + + + 105 + 13 + News Releases and Faculty / staff, P-St: Potter, Richard H.,undated + + + + + + 105 + 14 + News Releases and Faculty / staff, P-St: Powell, Michael,undated + + + + + + 105 + 15 + News Releases and Faculty / staff, P-St: Powell, Phyllis,undated + + + + + + 105 + 16 + News Releases and Faculty / staff, P-St: Poynor, Donna Marie,undated + + + + + + 105 + 17 + News Releases and Faculty / staff, P-St: Poynor, Robert E.,undated + + + + + + 105 + 18 + News Releases and Faculty / staff, P-St: Prasad, Rosemary,undated + + + + + + 105 + 19 + News Releases and Faculty / staff, P-St: Prasad, S. Benjamin,undated + + + + + + 105 + 20 + News Releases and Faculty / staff, P-St: Pretzer, Bill,undated + + + + + + 105 + 21 + News Releases and Faculty / staff, P-St: Price, Monroe S.,undated + + + + + + 105 + 22 + News Releases and Faculty / staff, P-St: Primeau, Ronald,undated + + + + + + 105 + 23 + News Releases and Faculty / staff, P-St: Purcell, Sarah,undated + + + + + + 105 + 24 + News Releases and Faculty / staff, P-St: Pybus, Dean,undated + + + + + + 105 + 25 + News Releases and Faculty / staff, P-St: Quick, Alan Frederick,undated + + + + + + 105 + 26 + News Releases and Faculty / staff, P-St: Quist-Adade, Charles,undated + + + + + + 105 + 27 + News Releases and Faculty / staff, P-St: Radawski, Daniel,undated + + + + + + 105 + 28 + News Releases and Faculty / staff, P-St: Rainwater, Agnes,undated + + + + + + 105 + 29 + News Releases and Faculty / staff, P-St: Rakesh, Leela,undated + + + + + + 105 + 30 + News Releases and Faculty / staff, P-St: Ramsey, Doris J.,undated + + + + + + 105 + 31 + News Releases and Faculty / staff, P-St: Randall, Gary,undated + + + + + + 105 + 32 + News Releases and Faculty / staff, P-St: Randolph, Willie,undated + + + + + + 105 + 33 + News Releases and Faculty / staff, P-St: Ranft, Patricia,undated + + + + + + 105 + 34 + News Releases and Faculty / staff, P-St: Rao, Michael,undated + + + + + + 105 + 35 + News Releases and Faculty / staff, P-St: Rao, Monica,undated + + + + + + 105 + 36 + News Releases and Faculty / staff, P-St: Rapaport, Ross,undated + + + + + + 105 + 37 + News Releases and Faculty / staff, P-St: Rasulis, Norman A.,undated + + + + + + 105 + 38 + News Releases and Faculty / staff, P-St: Ratcliff, Ann Elizabeth,undated + + + + + + 105 + 39 + News Releases and Faculty / staff, P-St: Raven, Joan,undated + + + + + + 105 + 40 + News Releases and Faculty / staff, P-St: Rawls, Terry,undated + + + + + + 105 + 41 + News Releases and Faculty / staff, P-St: Rayburn, Gary,undated + + + + + + 105 + 42 + News Releases and Faculty / staff, P-St: Reader, William W.,undated + + + + + + 105 + 43 + News Releases and Faculty / staff, P-St: Redden, Richard,undated + + + + + + 105 + 44 + News Releases and Faculty / staff, P-St: Redmond, Lois,undated + + + + + + 105 + 45 + News Releases and Faculty / staff, P-St: Redshaw, Matthew,undated + + + + + + 105 + 46 + News Releases and Faculty / staff, P-St: Reed, Charles E.,undated + + + + + + 105 + 47 + News Releases and Faculty / staff, P-St: Rehm, Roger,undated + + + + + + 105 + 48 + News Releases and Faculty / staff, P-St: Reighard, Jerry,undated + + + + + + 105 + 49 + News Releases and Faculty / staff, P-St: Reigler Barbara,undated + + + + + + 105 + 50 + News Releases and Faculty / staff, P-St: Reilly, Mark,undated + + + + + + 105 + 51 + News Releases and Faculty / staff, P-St: Reinhardt, Martin,undated + + + + + + 105 + 52 + News Releases and Faculty / staff, P-St: Remus, Melvyn,undated + + + + + + 105 + 53 + News Releases and Faculty / staff, P-St: Renz, Mary Ann,undated + + + + + + 105 + 54 + News Releases and Faculty / staff, P-St: Resh, Celeste English,undated + + + + + + 105 + 55 + News Releases and Faculty / staff, P-St: Reynolds, Craig,undated + + + + + + 105 + 56 + News Releases and Faculty / staff, P-St: Reynolds, Larry T.,undated + + + + + + 105 + 57 + News Releases and Faculty / staff, P-St: Rhymer, Katrina,undated + + + + + + 105 + 58 + News Releases and Faculty / staff, P-St: Frank Rice III,undated + + + + + + 105 + 59 + News Releases and Faculty / staff, P-St: Ricento, Thomas,undated + + + + + + 105 + 60 + News Releases and Faculty / staff, P-St: Richardson C. Howard,undated + + + + + + 105 + 61 + News Releases and Faculty / staff, P-St: Richardson, Marlene,undated + + + + + + 105 + 62 + News Releases and Faculty / staff, P-St: Richardson, Norma H.,undated + + + + + + 105 + 63 + News Releases and Faculty / staff, P-St: Richtig, Rena,undated + + + + + + 105 + 64 + News Releases and Faculty / staff, P-St: Richtmeyer, Lorin,undated + + + + + + 105 + 65 + News Releases and Faculty / staff, P-St: Riggs, Allan,undated + + + + + + 105 + 66 + News Releases and Faculty / staff, P-St: Ringquist, Delbert J.,undated + + + + + + 105 + 67 + News Releases and Faculty / staff, P-St: Riordan, Catherine,undated + + + + + + 105 + 68 + News Releases and Faculty / staff, P-St: Rittenberry, Joetta Jean,undated + + + + + + 105 + 69 + News Releases and Faculty / staff, P-St: Rivard, Joseph,undated + + + + + + 105 + 70 + News Releases and Faculty / staff, P-St: Rivard, William H.,undated + + + + + + 105 + 71 + News Releases and Faculty / staff, P-St: Roberts, Edward A.,undated + + + + + + 105 + 72 + News Releases and Faculty / staff, P-St: John F. Robertson,undated + + + + + + 105 + 73 + News Releases and Faculty / staff, P-St: Rocker, Janet E.,undated + + + + + + 105 + 74 + News Releases and Faculty / staff, P-St: Rodewald, Janet D.,undated + + + + + + 105 + 75 + News Releases and Faculty / staff, P-St: Kenneth Hugh Rohrer,undated + + + + + + 105 + 76 + News Releases and Faculty / staff, P-St: Rohrer, Tom,undated + + + + + + 105 + 77 + News Releases and Faculty / staff, P-St: Ronan, George,undated + + + + + + 105 + 78 + News Releases and Faculty / staff, P-St: Root, Robert,undated + + + + + + 105 + 79 + News Releases and Faculty / staff, P-St: Roscoe, Bruce,undated + + + + + + 105 + 80 + News Releases and Faculty / staff, P-St: Roscoe, Doug,undated + + + + + + 105 + 81 + News Releases and Faculty / staff, P-St: Rose, Leonie,undated + + + + + + 105 + 82 + News Releases and Faculty / staff, P-St: Rose, Sally,undated + + + + + + 105 + 83 + News Releases and Faculty / staff, P-St: Rosenbaum, Ira S.,undated + + + + + + 105 + 84 + News Releases and Faculty / staff, P-St: Rosenbaum, Marilyn,undated + + + + + + 105 + 85 + News Releases and Faculty / staff, P-St: Rosier, Katherine Brown,undated + + + + + + 105 + 86 + News Releases and Faculty / staff, P-St: Ross, George,undated + + + + + + 105 + 87 + News Releases and Faculty / staff, P-St: Ross, Peter Graham,undated + + + + + + 105 + 88 + News Releases and Faculty / staff, P-St: Ross, Shawna,undated + + + + + + 105 + 89 + News Releases and Faculty / staff, P-St: Rubin, Stuart,undated + + + + + + 105 + 90 + News Releases and Faculty / staff, P-St: Ruddy, Sally,undated + + + + + + 105 + 91 + News Releases and Faculty / staff, P-St: Ruff, Craig,undated + + + + + + 105 + 92 + News Releases and Faculty / staff, P-St: Rupe, Manuel R.,undated + + + + + + 105 + 93 + News Releases and Faculty / staff, P-St: Russell, Steven,undated + + + + + + 105 + 94 + News Releases and Faculty / staff, P-St: Rutherford, David,undated + + + + + + 105 + 95 + News Releases and Faculty / staff, P-St: Ryan, Lorrie,undated + + + + + + 105 + 96 + News Releases and Faculty / staff, P-St: Rydahl, Eugene E.,undated + + + + + + 105 + 97 + News Releases and Faculty / staff, P-St: Saathoff–Wells, Tara,undated + + + + + + 105 + 98 + News Releases and Faculty / staff, P-St: St. Andre, Richard J.,undated + + + + + + 105 + 99 + News Releases and Faculty / staff, P-St: Salem, William,undated + + + + + + 105 + 100 + News Releases and Faculty / staff, P-St: Saltarelli, William,undated + + + + + + 105 + 101 + News Releases and Faculty / staff, P-St: Samuelson, Beth,undated + + + + + + 105 + 102 + News Releases and Faculty / staff, P-St: Sanches, Yolanda,undated + + + + + + 105 + 103 + News Releases and Faculty / staff, P-St: Sander, Robert A.,undated + + + + + + 105 + 104 + News Releases and Faculty / staff, P-St: Sandstrom, Michael,undated + + + + + + 105 + 105 + News Releases and Faculty / staff, P-St: Sanford, Carol,undated + + + + + + 105 + 106 + News Releases and Faculty / staff, P-St: Sanders, Kathleen,undated + + + + + + 105 + 107 + News Releases and Faculty / staff, P-St: Sarigiani, Pamela,undated + + + + + + 105 + 108 + News Releases and Faculty / staff, P-St: Saul J. Abraitis,undated + + + + + + 105 + 109 + News Releases and Faculty / staff, P-St: Scheide, John,undated + + + + + + 105 + 110 + News Releases and Faculty / staff, P-St: Scherer, Stephen P.,undated + + + + + + 105 + 111 + News Releases and Faculty / staff, P-St: Schilling, Tim,undated + + + + + + 105 + 112 + News Releases and Faculty / staff, P-St: Schisa, Jennifer,undated + + + + + + 105 + 113 + News Releases and Faculty / staff, P-St: Schleede, John M., Jr.,undated + + + + + + 105 + 114 + News Releases and Faculty / staff, P-St: Schmidt, Bertram,undated + + + + + + 105 + 115 + News Releases and Faculty / staff, P-St: Schmidt, Joan M.,undated + + + + + + 105 + 116 + News Releases and Faculty / staff, P-St: Schmidt, Paul,undated + + + + + + 105 + 117 + News Releases and Faculty / staff, P-St: Schmiechen, James,undated + + + + + + 105 + 118 + News Releases and Faculty / staff, P-St: Schneid, Daniel,undated + + + + + + 105 + 119 + News Releases and Faculty / staff, P-St: Schneider, Walter R.,undated + + + + + + 105 + 120 + News Releases and Faculty / staff, P-St: Schock, David B.,undated + + + + + + 105 + 121 + News Releases and Faculty / staff, P-St: Richard Alan Schudiske,undated + + + + + + 105 + 122 + News Releases and Faculty / staff, P-St: Schulte, Jim,undated + + + + + + 105 + 123 + News Releases and Faculty / staff, P-St: Schultz, Gordon W.,undated + + + + + + 105 + 124 + News Releases and Faculty / staff, P-St: Schumacher, Cynthia Mary,undated + + + + + + 105 + 125 + News Releases and Faculty / staff, P-St: Scoby, Gerald,undated + + + + + + 105 + 126 + News Releases and Faculty / staff, P-St: Scott, James,undated + + + + + + 105 + 127 + News Releases and Faculty / staff, P-St: Scukanec, Gail,undated + + + + + + 105 + 128 + News Releases and Faculty / staff, P-St: Sczepanksi, Darryl,undated + + + + + + 105 + 129 + News Releases and Faculty / staff, P-St: Seaton, Sandra C.,undated + + + + + + 105 + 130 + News Releases and Faculty / staff, P-St: Seefelt, Nancy,undated + + + + + + 105 + 131 + News Releases and Faculty / staff, P-St: Paul. F. Seestedt,undated + + + + + + 105 + 132 + News Releases and Faculty / staff, P-St: Seiter, Richard D.,undated + + + + + + 105 + 133 + News Releases and Faculty / staff, P-St: Sendre, Ronald,undated + + + + + + 105 + 134 + News Releases and Faculty / staff, P-St: Senter, Mary,undated + + + + + + 105 + 135 + News Releases and Faculty / staff, P-St: Senter, Richard H.,undated + + + + + + 105 + 136 + News Releases and Faculty / staff, P-St: Serra, Vicente,undated + + + + + + 105 + 137 + News Releases and Faculty / staff, P-St: Shaffer, Tim G.,undated + + + + + + 105 + 138 + News Releases and Faculty / staff, P-St: E. Gary Shapiro,undated + + + + + + 105 + 139 + News Releases and Faculty / staff, P-St: Sharma, Ajit,undated + + + + + + 105 + 140 + News Releases and Faculty / staff, P-St: Sheffert, Sonya,undated + + + + + + 105 + 141 + News Releases and Faculty / staff, P-St: Sheffler, John,undated + + + + + + 105 + 142 + News Releases and Faculty / staff, P-St: Sherlock, Julia Barlow,undated + + + + + + 105 + 143 + News Releases and Faculty / staff, P-St: Sherwood, Charles,undated + + + + + + 105 + 144 + News Releases and Faculty / staff, P-St: Shields, Michael P.,undated + + + + + + 105 + 145 + News Releases and Faculty / staff, P-St: Shingles, Rene,undated + + + + + + 105 + 146 + News Releases and Faculty / staff, P-St: Shingles, Stan,undated + + + + + + 105 + 147 + News Releases and Faculty / staff, P-St: Shively, David,undated + + + + + + 105 + 148 + News Releases and Faculty / staff, P-St: Shively, Jack I.,undated + + + + + + 105 + 149 + News Releases and Faculty / staff, P-St: Shoemaker, Ronald D.,undated + + + + + + 105 + 150 + News Releases and Faculty / staff, P-St: Shrikhande, Mohan,undated + + + + + + 105 + 151 + News Releases and Faculty / staff, P-St: Neelima Shrikhande,undated + + + + + + 105 + 152 + News Releases and Faculty / staff, P-St: Shuler, Charles W.,undated + + + + + + 105 + 153 + News Releases and Faculty / staff, P-St: Sieradzan, Andrzej,undated + + + + + + 105 + 154 + News Releases and Faculty / staff, P-St: Silker, Gary,undated + + + + + + 105 + 155 + News Releases and Faculty / staff, P-St: Silkwood-Sherer, Deborah,undated + + + + + + 105 + 156 + News Releases and Faculty / staff, P-St: Silverthorn, Mike,undated + + + + + + 105 + 157 + News Releases and Faculty / staff, P-St: Simkins, Michael H.,undated + + + + + + 105 + 158 + News Releases and Faculty / staff, P-St: Simmons, Cynthia,undated + + + + + + 105 + 159 + News Releases and Faculty / staff, P-St: Simmons, Paul,undated + + + + + + 105 + 160 + News Releases and Faculty / staff, P-St: Sivaram Narayan,undated + + + + + + 105 + 161 + News Releases and Faculty / staff, P-St: Sive, Barkley,undated + + + + + + 105 + 162 + News Releases and Faculty / staff, P-St: Skeel, Brenda,undated + + + + + + 105 + 163 + News Releases and Faculty / staff, P-St: Slade, Deborah,undated + + + + + + 105 + 164 + News Releases and Faculty / staff, P-St: Slezak, Kayla,undated + + + + + + 105 + 165 + News Releases and Faculty / staff, P-St: Slocum, Robert,undated + + + + + + 105 + 166 + News Releases and Faculty / staff, P-St: Smiley, Larry L.,undated + + + + + + 105 + 167 + News Releases and Faculty / staff, P-St: Smith, B.R.,undated + + + + + + 105 + 168 + News Releases and Faculty / staff, P-St: Smith, Brian J.,undated + + + + + + 105 + 169 + News Releases and Faculty / staff, P-St: Smith, David,undated + + + + + + 105 + 170 + News Releases and Faculty / staff, P-St: Smith, Donald S., Jr.,undated + + + + + + 105 + 171 + News Releases and Faculty / staff, P-St: Smith, Jeffrey,undated + + + + + + 105 + 172 + News Releases and Faculty / staff, P-St: Kenneth Smith,undated + + + + + + 105 + 173 + News Releases and Faculty / staff, P-St: Smith, Robert C.,undated + + + + + + 105 + 174 + News Releases and Faculty / staff, P-St: Smith, Sandra,undated + + + + + + 105 + 175 + News Releases and Faculty / staff, P-St: Smith, Scott,undated + + + + + + 105 + 176 + News Releases and Faculty / staff, P-St: Smith, Steven,undated + + + + + + 105 + 177 + News Releases and Faculty / staff, P-St: Smith, Susan Key,undated + + + + + + 105 + 178 + News Releases and Faculty / staff, P-St: Smoke, Jerry,undated + + + + + + 105 + 179 + News Releases and Faculty / staff, P-St: Smolko, James J.,undated + + + + + + 105 + 180 + News Releases and Faculty / staff, P-St: Tim Snellenberger,undated + + + + + + 105 + 181 + News Releases and Faculty / staff, P-St: Snett, Philip I.,undated + + + + + + 105 + 182 + News Releases and Faculty / staff, P-St: Snyder, Lynne Ellen,undated + + + + + + 105 + 183 + News Releases and Faculty / staff, P-St: Sommers, Joseph,undated + + + + + + 105 + 184 + News Releases and Faculty / staff, P-St: Soni, Vidu,undated + + + + + + 105 + 185 + News Releases and Faculty / staff, P-St: Audio-Visual Education,undated + + + + + + 105 + 186 + News Releases and Faculty / staff, P-St: Spathelf, Douglas M.,undated + + + + + + 105 + 187 + News Releases and Faculty / staff, P-St: Denise Spencer,undated + + + + + + 105 + 188 + News Releases and Faculty / staff, P-St: David H. Spitler,undated + + + + + + 105 + 189 + News Releases and Faculty / staff, P-St: Spinner, Greg,undated + + + + + + 105 + 190 + News Releases and Faculty / staff, P-St: Sprague, David,undated + + + + + + 105 + 191 + News Releases and Faculty / staff, P-St: Squattrito, Philip,undated + + + + + + 105 + 192 + News Releases and Faculty / staff, P-St: Srinivas, Sudha,undated + + + + + + 105 + 193 + News Releases and Faculty / staff, P-St: St. John, Dennis,undated + + + + + + 105 + 194 + News Releases and Faculty / staff, P-St: Stabenow, Donald R.,undated + + + + + + 105 + 195 + News Releases and Faculty / staff, P-St: Stabley, Fred, Jr.,undated + + + + + + 105 + 196 + News Releases and Faculty / staff, P-St: Staddon, David,undated + + + + + + 105 + 197 + News Releases and Faculty / staff, P-St: Stafford, Elizabeth Ann,undated + + + + + + 105 + 198 + News Releases and Faculty / staff, P-St: Stahl, Stephen D.,undated + + + + + + 105 + 199 + News Releases and Faculty / staff, P-St: Stairs, David,undated + + + + + + 105 + 200 + News Releases and Faculty / staff, P-St: Stalin, Vasanth,undated + + + + + + 105 + 201 + News Releases and Faculty / staff, P-St: Stan, Susan,undated + + + + + + 105 + 202 + News Releases and Faculty / staff, P-St: Stancato, Frank A.,undated + + + + + + 105 + 203 + News Releases and Faculty / staff, P-St: Linda Seestedt,undated + + + + + + 105 + 204 + News Releases and Faculty / staff, P-St: Stanley, N.J.,undated + + + + + + 105 + 205 + News Releases and Faculty / staff, P-St: Starks, Gilbert D.,undated + + + + + + 105 + 206 + News Releases and Faculty / staff, P-St: Starnes, Mary Kay,undated + + + + + + 106 + 1 + News Releases and Faculty / staff, S-Z: Stecker, Robert A.,undated + + + + + + 106 + 2 + News Releases and Faculty / staff, S-Z: Steele, Daniel Lee,undated + + + + + + 106 + 3 + News Releases and Faculty / staff, S-Z: Steffel, Susan,undated + + + + + + 106 + 4 + News Releases and Faculty / staff, S-Z: Steinhilb, Michelle,undated + + + + + + 106 + 5 + News Releases and Faculty / staff, S-Z: Stemmeler, Michael L.,undated + + + + + + 106 + 6 + News Releases and Faculty / staff, S-Z: Stengren, George L.,undated + + + + + + 106 + 7 + News Releases and Faculty / staff, S-Z: Stephen Stahl,undated + + + + + + 106 + 8 + News Releases and Faculty / staff, S-Z: Stevenson, Blaine,undated + + + + + + 106 + 9 + News Releases and Faculty / staff, S-Z: Stevenson, John,undated + + + + + + 106 + 10 + News Releases and Faculty / staff, S-Z: Stewart, Michael,undated + + + + + + 106 + 11 + News Releases and Faculty / staff, S-Z: Stinson, Michael,undated + + + + + + 106 + 12 + News Releases and Faculty / staff, S-Z: Stock, Jamie,undated + + + + + + 106 + 13 + News Releases and Faculty / staff, S-Z: Stinson, Michael,undated + + + + + + 106 + 14 + News Releases and Faculty / staff, S-Z: Story, John N.,undated + + + + + + 106 + 15 + News Releases and Faculty / staff, S-Z: Stout, R. Gene,undated + + + + + + 106 + 16 + News Releases and Faculty / staff, S-Z: Storch, Thomas,undated + + + + + + 106 + 17 + News Releases and Faculty / staff, S-Z: Stovak, Judy,undated + + + + + + 106 + 18 + News Releases and Faculty / staff, S-Z: Stovak, Pam,undated + + + + + + 106 + 19 + News Releases and Faculty / staff, S-Z: Strachan, J. Cherie,undated + + + + + + 106 + 20 + News Releases and Faculty / staff, S-Z: Strang, Erin,undated + + + + + + 106 + 21 + News Releases and Faculty / staff, S-Z: Stratford, Michael,undated + + + + + + 106 + 22 + News Releases and Faculty / staff, S-Z: Strouse, Jerry S.,undated + + + + + + 106 + 23 + News Releases and Faculty / staff, S-Z: Sullivan, Judith,undated + + + + + + 106 + 24 + News Releases and Faculty / staff, S-Z: Sussman, Marvin Richard,undated + + + + + + 106 + 25 + News Releases and Faculty / staff, S-Z: Swahnberg, Ann,undated + + + + + + 106 + 26 + News Releases and Faculty / staff, S-Z: Swanson, Bradley,undated + + + + + + 106 + 27 + News Releases and Faculty / staff, S-Z: Swanstrom, John W.,undated + + + + + + 106 + 28 + News Releases and Faculty / staff, S-Z: Swartz, Bradford L.,undated + + + + + + 106 + 29 + News Releases and Faculty / staff, S-Z: Sweeney, Lynn,undated + + + + + + 106 + 30 + News Releases and Faculty / staff, S-Z: Genevieve M. Swindlehurst,undated + + + + + + 106 + 31 + News Releases and Faculty / staff, S-Z: Sych, Larry,undated + + + + + + 106 + 32 + News Releases and Faculty / staff, S-Z: Sykes, Rick,undated + + + + + + 106 + 33 + News Releases and Faculty / staff, S-Z: Taft-Kaufman, Jill,undated + + + + + + 106 + 34 + News Releases and Faculty / staff, S-Z: Tait, Alice,undated + + + + + + 106 + 35 + News Releases and Faculty / staff, S-Z: Tarasi, Crina,undated + + + + + + 106 + 36 + News Releases and Faculty / staff, S-Z: Tatchell, Renny Hemsley,undated + + + + + + 106 + 37 + News Releases and Faculty / staff, S-Z: Taylor, Barbara S.,undated + + + + + + 106 + 38 + News Releases and Faculty / staff, S-Z: Taylor, Christine,undated + + + + + + 106 + 39 + News Releases and Faculty / staff, S-Z: Taylor, Jason,undated + + + + + + 106 + 40 + News Releases and Faculty / staff, S-Z: Taylor, Marcy,undated + + + + + + 106 + 41 + News Releases and Faculty / staff, S-Z: Tecklenburg, Mary,undated + + + + + + 106 + 42 + News Releases and Faculty / staff, S-Z: Tedhams, Lois,undated + + + + + + 106 + 43 + News Releases and Faculty / staff, S-Z: Terrill, Marguerite,undated + + + + + + 106 + 44 + News Releases and Faculty / staff, S-Z: Thavenet, Dennis J.,undated + + + + + + 106 + 45 + News Releases and Faculty / staff, S-Z: Theeke, Herman,undated + + + + + + 106 + 46 + News Releases and Faculty / staff, S-Z: Theunissen, Bill,undated + + + + + + 106 + 47 + News Releases and Faculty / staff, S-Z: Thibodeau, Peter,undated + + + + + + 106 + 48 + News Releases and Faculty / staff, S-Z: Thomas, Arthur R.,undated + + + + + + 106 + 49 + News Releases and Faculty / staff, S-Z: Thomas, Larry L.,undated + + + + + + 106 + 50 + News Releases and Faculty / staff, S-Z: Thompson, Pamela Ann,undated + + + + + + 106 + 51 + News Releases and Faculty / staff, S-Z: Thompson, Philip,undated + + + + + + 106 + 52 + News Releases and Faculty / staff, S-Z: Thompson, Sarah,undated + + + + + + 106 + 53 + News Releases and Faculty / staff, S-Z: Thompson, Stacy W.,undated + + + + + + 106 + 54 + News Releases and Faculty / staff, S-Z: Stephen Thompson,undated + + + + + + 106 + 55 + News Releases and Faculty / staff, S-Z: Thornton, Annette,undated + + + + + + 106 + 56 + News Releases and Faculty / staff, S-Z: Tifft, Larry,undated + + + + + + 106 + 57 + News Releases and Faculty / staff, S-Z: Tigner, Ben,undated + + + + + + 106 + 58 + News Releases and Faculty / staff, S-Z: Timbers, Jill,undated + + + + + + 106 + 59 + News Releases and Faculty / staff, S-Z: Tipton, Chelsea,undated + + + + + + 106 + 60 + News Releases and Faculty / staff, S-Z: Toffolo, Dennis,undated + + + + + + 106 + 61 + News Releases and Faculty / staff, S-Z: Tolcher, Edward,undated + + + + + + 106 + 62 + News Releases and Faculty / staff, S-Z: Tomalia, Donald,undated + + + + + + 106 + 63 + News Releases and Faculty / staff, S-Z: Toms, Delores C.,undated + + + + + + 106 + 64 + News Releases and Faculty / staff, S-Z: Torgersen, Eric,undated + + + + + + 106 + 65 + News Releases and Faculty / staff, S-Z: Tormanen, Calvin,undated + + + + + + 106 + 66 + News Releases and Faculty / staff, S-Z: Torreano, Gail French,undated + + + + + + 106 + 67 + News Releases and Faculty / staff, S-Z: Torres-Rivera, Rebeca,undated + + + + + + 106 + 68 + News Releases and Faculty / staff, S-Z: Tremalin, Harold W.,undated + + + + + + 106 + 69 + News Releases and Faculty / staff, S-Z: Tresh, Tom,undated + + + + + + 106 + 70 + News Releases and Faculty / staff, S-Z: Triezenberg, Herman,undated + + + + + + 106 + 71 + News Releases and Faculty / staff, S-Z: Trionfi, Thomas Peter,undated + + + + + + 106 + 72 + News Releases and Faculty / staff, S-Z: Trullinger, Robert S., Jr.,undated + + + + + + 106 + 73 + News Releases and Faculty / staff, S-Z: Tryon James,undated + + + + + + 106 + 74 + News Releases and Faculty / staff, S-Z: Tubbs, Dawn-Marie,undated + + + + + + 106 + 75 + News Releases and Faculty / staff, S-Z: Tubbs, Maxine Klumpp,undated + + + + + + 106 + 76 + News Releases and Faculty / staff, S-Z: Tubbs, Roy T.,undated + + + + + + 106 + 77 + News Releases and Faculty / staff, S-Z: Tubbs, Thomas E.,undated + + + + + + 106 + 78 + News Releases and Faculty / staff, S-Z: Tycner, Christopher,undated + + + + + + 106 + 79 + News Releases and Faculty / staff, S-Z: Ustinova, Ksenia,undated + + + + + + 106 + 80 + News Releases and Faculty / staff, S-Z: Utecht, Kathleen M.,undated + + + + + + 106 + 81 + News Releases and Faculty / staff, S-Z: Uzarski, Donald,undated + + + + + + 106 + 82 + News Releases and Faculty / staff, S-Z: Valek, Douglas A.,undated + + + + + + 106 + 83 + News Releases and Faculty / staff, S-Z: William Emil Valle,undated + + + + + + 106 + 84 + News Releases and Faculty / staff, S-Z: Van Alsine, Matthew,undated + + + + + + 106 + 85 + News Releases and Faculty / staff, S-Z: Van Der Wende, Ken,undated + + + + + + 106 + 86 + News Releases and Faculty / staff, S-Z: Van Horn, K. Roger,undated + + + + + + 106 + 87 + News Releases and Faculty / staff, S-Z: Linda Sue Vanloon,undated + + + + + + 106 + 88 + News Releases and Faculty / staff, S-Z: Van Meer, Gretchen L.,undated + + + + + + 106 + 89 + News Releases and Faculty / staff, S-Z: Van Syckle, Neil L.,undated + + + + + + 106 + 90 + News Releases and Faculty / staff, S-Z: Varanauskas, Karen,undated + + + + + + 106 + 91 + News Releases and Faculty / staff, S-Z: Vernon, Cristen,undated + + + + + + 106 + 92 + News Releases and Faculty / staff, S-Z: Vetter, Daniel E.,undated + + + + + + 106 + 93 + News Releases and Faculty / staff, S-Z: Viau, Terry Brennan,undated + + + + + + 106 + 94 + News Releases and Faculty / staff, S-Z: Vinson, John,undated + + + + + + 106 + 95 + News Releases and Faculty / staff, S-Z: Visich, Paul,undated + + + + + + 106 + 96 + News Releases and Faculty / staff, S-Z: Voege, Janis,undated + + + + + + 106 + 97 + News Releases and Faculty / staff, S-Z: VonderEmbse, Charles,undated + + + + + + 106 + 98 + News Releases and Faculty / staff, S-Z: Voisin, Anthony,undated + + + + + + 106 + 99 + News Releases and Faculty / staff, S-Z: Vuillemot, Michael,undated + + + + + + 106 + 100 + News Releases and Faculty / staff, S-Z: Wagester, Janet,undated + + + + + + 106 + 101 + News Releases and Faculty / staff, S-Z: Wagner, Betty,undated + + + + + + 106 + 102 + News Releases and Faculty / staff, S-Z: Walker, Renee,undated + + + + + + 106 + 103 + News Releases and Faculty / staff, S-Z: Wallace, Julia,undated + + + + + + 106 + 104 + News Releases and Faculty / staff, S-Z: Wallace, Leslie,undated + + + + + + 106 + 105 + News Releases and Faculty / staff, S-Z: Waller, Steven,undated + + + + + + 106 + 106 + News Releases and Faculty / staff, S-Z: Wallin, Dean William,undated + + + + + + 106 + 107 + News Releases and Faculty / staff, S-Z: Wandless, William,undated + + + + + + 106 + 108 + News Releases and Faculty / staff, S-Z: Walsh, Katherine,undated + + + + + + 106 + 109 + News Releases and Faculty / staff, S-Z: Walston, Sydney C.,undated + + + + + + 106 + 110 + News Releases and Faculty / staff, S-Z: Walter, Theresa Beth,undated + + + + + + 106 + 111 + News Releases and Faculty / staff, S-Z: Walters, Frank Randall,undated + + + + + + 106 + 112 + News Releases and Faculty / staff, S-Z: Wandry, Donna,undated + + + + + + 106 + 113 + News Releases and Faculty / staff, S-Z: Wang, Daniel,undated + + + + + + 106 + 114 + News Releases and Faculty / staff, S-Z: Wardrop, R. F.,undated + + + + + + 106 + 115 + News Releases and Faculty / staff, S-Z: Warriner, John P.,undated + + + + + + 106 + 116 + News Releases and Faculty / staff, S-Z: Warriner, Sandra,undated + + + + + + 106 + 117 + News Releases and Faculty / staff, S-Z: Washington, Dennis,undated + + + + + + 106 + 118 + News Releases and Faculty / staff, S-Z: Wassman, Cameron,undated + + + + + + 106 + 119 + News Releases and Faculty / staff, S-Z: Marie Watson,undated + + + + + + 106 + 120 + News Releases and Faculty / staff, S-Z: Watson, Virginia,undated + + + + + + 106 + 121 + News Releases and Faculty / staff, S-Z: James Arthur Webb,undated + + + + + + 106 + 122 + News Releases and Faculty / staff, S-Z: Weber, Alan Melchior,undated + + + + + + 106 + 123 + News Releases and Faculty / staff, S-Z: Weber, Dawn,undated + + + + + + 106 + 124 + News Releases and Faculty / staff, S-Z: Weber, Leone,undated + + + + + + 106 + 125 + News Releases and Faculty / staff, S-Z: Webkamigad, Howard,undated + + + + + + 106 + 126 + News Releases and Faculty / staff, S-Z: Webster, Denise Lynn,undated + + + + + + 106 + 127 + News Releases and Faculty / staff, S-Z: Weddington, Gail,undated + + + + + + 106 + 128 + News Releases and Faculty / staff, S-Z: Weinstock, David,undated + + + + + + 106 + 129 + News Releases and Faculty / staff, S-Z: Weinstock, Jeffrey,undated + + + + + + 106 + 130 + News Releases and Faculty / staff, S-Z: Weirich, Thomas,undated + + + + + + 106 + 131 + News Releases and Faculty / staff, S-Z: Weisenburger, John E. (Perk), Jr.,undated + + + + + + 106 + 132 + News Releases and Faculty / staff, S-Z: Welsh, Bob,undated + + + + + + 106 + 133 + News Releases and Faculty / staff, S-Z: Westen, T. Edward,undated + + + + + + 106 + 134 + News Releases and Faculty / staff, S-Z: Marcy Weston,undated + + + + + + 106 + 135 + News Releases and Faculty / staff, S-Z: Whale, David,undated + + + + + + 106 + 136 + News Releases and Faculty / staff, S-Z: White, Carman,undated + + + + + + 106 + 137 + News Releases and Faculty / staff, S-Z: White, Joanna Cowan,undated + + + + + + 106 + 138 + News Releases and Faculty / staff, S-Z: White, Kennen,undated + + + + + + 106 + 139 + News Releases and Faculty / staff, S-Z: White, Nancy,undated + + + + + + 106 + 140 + News Releases and Faculty / staff, S-Z: Whitney, David,undated + + + + + + 106 + 141 + News Releases and Faculty / staff, S-Z: Whitney, Kathleen Rogers,undated + + + + + + 106 + 142 + News Releases and Faculty / staff, S-Z: Whitney, Marion,undated + + + + + + 106 + 143 + News Releases and Faculty / staff, S-Z: Wicander, Edwin,undated + + + + + + 106 + 144 + News Releases and Faculty / staff, S-Z: Wicks-Ortega, Cara,undated + + + + + + 106 + 145 + News Releases and Faculty / staff, S-Z: Wieghart, James G.,undated + + + + + + 106 + 146 + News Releases and Faculty / staff, S-Z: Wilbur, Kathy,undated + + + + + + 106 + 147 + News Releases and Faculty / staff, S-Z: Wildey, Al,undated + + + + + + 106 + 148 + News Releases and Faculty / staff, S-Z: Wildman, Thomas J.,undated + + + + + + 106 + 149 + News Releases and Faculty / staff, S-Z: Wiley, Adrienne,undated + + + + + + 106 + 150 + News Releases and Faculty / staff, S-Z: Wilkes, Barrie,undated + + + + + + 106 + 151 + News Releases and Faculty / staff, S-Z: Willermet, Cathy,undated + + + + + + 106 + 152 + News Releases and Faculty / staff, S-Z: Williams, David,undated + + + + + + 106 + 153 + News Releases and Faculty / staff, S-Z: Williams, Glen,undated + + + + + + 106 + 154 + News Releases and Faculty / staff, S-Z: Williams, James,undated + + + + + + 106 + 155 + News Releases and Faculty / staff, S-Z: Williams, Joyce,undated + + + + + + 106 + 156 + News Releases and Faculty / staff, S-Z: Williams, Kevin,undated + + + + + + 106 + 157 + News Releases and Faculty / staff, S-Z: Ron Williams,undated + + + + + + 106 + 158 + News Releases and Faculty / staff, S-Z: Williams, Samuel Wilbert III,undated + + + + + + 106 + 159 + News Releases and Faculty / staff, S-Z: Williams, Zachary,undated + + + + + + 106 + 160 + News Releases and Faculty / staff, S-Z: Williamson, John E.,undated + + + + + + 106 + 161 + News Releases and Faculty / staff, S-Z: Williamson, Patty,undated + + + + + + 106 + 162 + News Releases and Faculty / staff, S-Z: Williamson, R. Todd,undated + + + + + + 106 + 163 + News Releases and Faculty / staff, S-Z: Willwerth, Patricia,undated + + + + + + 106 + 164 + News Releases and Faculty / staff, S-Z: Wilsher, Jane,undated + + + + + + 106 + 165 + News Releases and Faculty / staff, S-Z: Wilson, Holt,undated + + + + + + 106 + 166 + News Releases and Faculty / staff, S-Z: Wilson, Jeannette D.,undated + + + + + + 106 + 167 + News Releases and Faculty / staff, S-Z: Wilson, Lee Anne,undated + + + + + + 106 + 168 + News Releases and Faculty / staff, S-Z: Wilson, Leslie,undated + + + + + + 106 + 169 + News Releases and Faculty / staff, S-Z: Wimmer, Kathrin,undated + + + + + + 106 + 170 + News Releases and Faculty / staff, S-Z: Wink, Susan Elizabeth,undated + + + + + + 106 + 171 + News Releases and Faculty / staff, S-Z: Wirz, Jennifer,undated + + + + + + 106 + 172 + News Releases and Faculty / staff, S-Z: Withers, Lesley,undated + + + + + + 106 + 173 + News Releases and Faculty / staff, S-Z: Wojcik, Carol L.,undated + + + + + + 106 + 174 + News Releases and Faculty / staff, S-Z: Wojcik, James J.,undated + + + + + + 106 + 175 + News Releases and Faculty / staff, S-Z: Wood, E. Jeanneane,undated + + + + + + 106 + 176 + News Releases and Faculty / staff, S-Z: Woods, Carlton R.,undated + + + + + + 106 + 177 + News Releases and Faculty / staff, S-Z: Woods, Suzanne,undated + + + + + + 106 + 178 + News Releases and Faculty / staff, S-Z: Woolnough, Daelyn,undated + + + + + + 106 + 179 + News Releases and Faculty / staff, S-Z: Wright, Colby,undated + + + + + + 106 + 180 + News Releases and Faculty / staff, S-Z: Write, John,undated + + + + + + 106 + 181 + News Releases and Faculty / staff, S-Z: Wujek, Daniel E.,undated + + + + + + 106 + 182 + News Releases and Faculty / staff, S-Z: Wujek, Mildred,undated + + + + + + 106 + 183 + News Releases and Faculty / staff, S-Z: Xu, Hongjiang,undated + + + + + + 106 + 184 + News Releases and Faculty / staff, S-Z: Yantis, John,undated + + + + + + 106 + 185 + News Releases and Faculty / staff, S-Z: Yeagley, William,undated + + + + + + 106 + 186 + News Releases and Faculty / staff, S-Z: Yelamarthi, Kumar,undated + + + + + + 106 + 187 + News Releases and Faculty / staff, S-Z: Yoder, Ernie,undated + + + + + + 106 + 188 + News Releases and Faculty / staff, S-Z: Young, Carol,undated + + + + + + 106 + 189 + News Releases and Faculty / staff, S-Z: Yonkman, Betsy Lee,undated + + + + + + 106 + 190 + News Releases and Faculty / staff, S-Z: Yount, Keela,undated + + + + + + 106 + 191 + News Releases and Faculty / staff, S-Z: Yu, Paul,undated + + + + + + 106 + 192 + News Releases and Faculty / staff, S-Z: Yuill, Robert S.,undated + + + + + + 106 + 193 + News Releases and Faculty / staff, S-Z: Zainea, Albert,undated + + + + + + 106 + 194 + News Releases and Faculty / staff, S-Z: Zajac, Thomas,undated + + + + + + 106 + 195 + News Releases and Faculty / staff, S-Z: Zakrajsek, Todd,undated + + + + + + 106 + 196 + News Releases and Faculty / staff, S-Z: Juan Posada Zamudio,undated + + + + + + 106 + 197 + News Releases and Faculty / staff, S-Z: Zanatta, David,undated + + + + + + 106 + 198 + News Releases and Faculty / staff, S-Z: Zaremba, Carol Jean,undated + + + + + + 106 + 199 + News Releases and Faculty / staff, S-Z: Ziemke, Patricia,undated + + + + + + 106 + 200 + News Releases and Faculty / staff, S-Z: Zimmer, Basil, Jr.,undated + + + + + + 106 + 201 + News Releases and Faculty / staff, S-Z: Zimmerman, Helene L.,undated + + + + + + 106 + 202 + News Releases and Faculty / staff, S-Z: Zionts, Laura,undated + + + + + + 106 + 203 + News Releases and Faculty / staff, S-Z: Zionts, Paul,undated + + + + + + 106 + 204 + News Releases and Faculty / staff, S-Z: Zipple, J. Tim,undated + + + + + + 106 + 205 + News Releases and Faculty / staff, S-Z: Zlotolow, Steve,undated + + + + + + 106 + 206 + News Releases and Faculty / staff, S-Z: Zolty, Thaddeus C.,undated + + + + + + 106 + 207 + News Releases and Faculty / staff, S-Z: Zuberi, Habib Akhter,undated + + + + + + 107 + 1 + Colored Slides, M-S: Music (New),undated + + + + + + 107 + 2 + Colored Slides, M-S: Orchesis,undated + + + + + + 107 + 3 + Colored Slides, M-S: Orientation,undated + + + + + + 107 + 4 + Colored Slides, M-S: Political Science Department,undated + + + + + + 107 + 5 + Colored Slides, M-S: Personnel Department,undated + + + + + + 107 + 6 + Colored Slides, M-S: Philosophy Department,undated + + + + + + 107 + 7 + Colored Slides, M-S: Physical Education,undated + + + + + + 107 + 8 + Colored Slides, M-S: Physical Therapy,undated + + + + + + 107 + 9 + Colored Slides, M-S: Physicians,undated + + + + + + 107 + 10 + Colored Slides, M-S: Physics Department,undated + + + + + + 107 + 11 + Colored Slides, M-S: Pow Wow,undated + + + + + + 107 + 12 + Colored Slides, M-S: Presidential Report,undated + + + + + + 107 + 13 + Colored Slides, M-S: Program Board Events,undated + + + + + + 107 + 14 + Colored Slides, M-S: Psychology Department,undated + + + + + + 107 + 15 + Colored Slides, M-S: Public Broadcasting,undated + + + + + + 107 + 16 + Colored Slides, M-S: Recreation Department,undated + + + + + + 107 + 17 + Colored Slides, M-S: Registration,undated + + + + + + 107 + 18 + Colored Slides, M-S: Secondary Education Department,undated + + + + + + 107 + 19 + Colored Slides, M-S: Signs, Seals, and Symbols,undated + + + + + + 107 + 20 + Colored Slides, M-S: Softball,undated + + + + + + 107 + 21 + Colored Slides, M-S: Soccer, Women’s,undated + + + + + + 107 + 22 + Colored Slides, M-S: Speakers,undated + + + + + + 107 + 23 + Colored Slides, M-S: Special Education Department,undated + + + + + + 107 + 24 + Colored Slides, M-S: Special Olympics,undated + + + + + + 107 + 25 + Colored Slides, M-S: Speech Department,undated + + + + + + 107 + 26 + Colored Slides, M-S: Sports Medicine,undated + + + + + + 107 + 27 + Colored Slides, M-S: Sports Program Ads,undated + + + + + + 108 + 1 + Colored Slides, S-W: Student Activities,undated + + + + + + 108 + 2 + Colored Slides, S-W: Student Activities Center,undated + + + + + + 108 + 3 + Colored Slides, S-W: No Label,undated + + + + + + 108 + 4 + Colored Slides, S-W: Teacher Education,undated + + + + + + 108 + 5 + Colored Slides, S-W: Testing Center,undated + + + + + + 108 + 6 + Colored Slides, S-W: Telecommunications,undated + + + + + + 108 + 7 + Colored Slides, S-W: Theatre and Dramatic Arts,undated + + + + + + 108 + 8 + Colored Slides, S-W: Track, Men’s and Women’s,undated + + + + + + 108 + 9 + Colored Slides, S-W: University Center,undated + + + + + + 108 + 10 + Colored Slides, S-W: Volleyball,undated + + + + + + 108 + 11 + Colored Slides, S-W: wrestling,undated + + + + + + 109 + 1 + Negatives, 1950s-60s, CDs,2012 + + + + + + 110 + 1 + Negatives, #761-1029,2000 + + + + + + 111 + 1 + Negatives, #1030-169,2000-2001 + + + + + + 112 + 1 + Negatives, #170-420,2001 + + + + + + 113 + 1 + Negatives, #421-699,2001 + + + + + + 114 + 1 + Negatives, #700-949, 2001,2001 + + + + + + 115 + 1 + Negatives, #950-end, 2001, 1-89, 20022001-2002 + + + + + + 116 + 1 + Negatives, #90-379,2002 + + + + + + 117 + 1 + Negatives, #380-639,2002 + + + + + + 118 + 1 + Negatives, #640-end, #1-102,2002-2005 + + + + + + 119 + 1 + Note Card Box: Name Cards, A-C,undated + + + + + + 120 + 1 + Note Card Box: Name Cards, D-Ha,undated + + + + + + 121 + 1 + Note Card Box: Name Cards, He-Mc,undated + + + + + + 122 + 1 + Note Card Box: Name Cards, M-R, W (end of Ws)-Z,undated + + + + + + 123 + 1 + Note Card Box: Name Cards, S-W (first part of Ws),undated + + + + + + 124 + 1 + Historical Photographs, Index Cards, Negatives,1973, 1965-1967 + + + + + + 125 + 1 + Negatives,1946-1962, 1968 + + + + + + 126 + 1 + Negatives,1946-1962 + + + + + + 127 + 1 + Negatives,1957-1958 + + + + + + 128 + 1 + Negatives,1957-1962 + + + + + + 129 + 1 + Negatives,1958-1959, 1960s + + + + + + 130 + 1 + Negatives,1953-1957 + + + + + + 131 + 1 + Negatives,1952-1957 + + + + + + 132 + 1 + Negatives,1951-1954 + + + + + + 133 + 1 + Negatives #187-488,1968 + + + + + + 134 + 1 + Negatives #1-349,1969 + + + + + + 135 + 1 + Negatives Strips #350-250,1969-1970 + + + + + + 136 + 1 + Negatives #1-50, 1970, #251-605, 1971,1970-1971 + + + + + + 137 + 1 + Negatives #51-399,1971 + + + + + + 138 + 1 + Negatives #400-479 1972, #1-299, 1971,1971-1972 + + + + + + 139 + 1 + Negatives #300-514 1973, #1-200, 1972,1972-1973 + + + + + + 140 + 1 + Negatives #201-599,1973 + + + + + + 141 + 1 + Negatives #600-635, 1973, 1-329, 1974,1973-1974 + + + + + + 142 + 1 + Negatives #330-656,1974 + + + + + + 143 + 1 + Negatives Strips #1-450,1975 + + + + + + 144 + 1 + Negatives Strips #451-704, 1975, #1-175, 1976,1975-1976 + + + + + + 145 + 1 + Negatives Strips #176-483, 1976, #1-69, 1977,1976-1977 + + + + + + 146 + 1 + Negatives #70-479,1977 + + + + + + 147 + 1 + Negatives #480-715, 1977, #1-199, 1978,1977-1978 + + + + + + 148 + 1 + Negatives #200, 1978, 1-200, 1979,1978-1979 + + + + + + 149 + 1 + Negatives #201-380, 1980, 1-209, 1973,1980, 1973 + + + + + + 150 + 1 + Negatives #210-539,1973 + + + + + + 151 + 1 + Negatives #540-576, 1980, #1-299, 1981,1980-1981 + + + + + + 152 + 1 + Negatives #300-441, 1981, #1-199, 1982,1981-1982 + + + + + + 153 + 1 + Negatives #200-450, 1982, #1-115, 1983,1982-1983 + + + + + + 154 + 1 + Negatives #116-443,1983 + + + + + + 155 + 1 + Negatives #1-339,1984 + + + + + + 156 + 1 + Negatives #340-505, 1984, #1-170, 1985,1984-1985 + + + + + + 157 + 1 + Negatives #171-529, 1985,1985 + + + + + + 158 + 1 + Negatives #530-653, 1985, #1-239, 1986,1985-1986 + + + + + + 159 + 1 + Negatives #240-579, 1986,1986 + + + + + + 160 + 1 + Negatives #580-653, 1986, #1-279, 1987,1986-1987 + + + + + + 161 + 1 + Negatives #280-645,1987 + + + + + + 162 + 1 + Negatives #646-672, 1987, #1-310, 1988,1987-1988 + + + + + + 163 + 1 + Negatives #311-629,1988 + + + + + + 164 + 1 + Negatives #630-684, 1988, #1-282, 1989,1988-1989 + + + + + + 165 + 1 + Negatives #283-658, 1989,1989 + + + + + + 166 + 1 + Negatives #659-728, 1989, #1-325, 1990,1989-1990 + + + + + + 167 + 1 + Negatives #326-666, 1990,1990 + + + + + + 168 + 1 + Negatives #667-727, 1990, #1-323, 1991,1990-1991 + + + + + + 169 + 1 + Negatives #324-502, 1991, #1-191, 1992,1991-1992 + + + + + + 170 + 1 + Negatives #192-532, 1992, #1-21, 1993,1992-1993 + + + + + + 171 + 1 + Negatives #22-379,1993 + + + + + + 172 + 1 + Negatives #380-540, 1993, #1-202, 1994,1993-1994 + + + + + + 173 + 1 + Negatives #203-549, 1994,1994 + + + + + + 174 + 1 + Negatives #550-578, 1994, #1-329, 1995,1994-1995 + + + + + + 175 + 1 + Negatives # 330-568, 1995, #1-95, 1996,1995-1996 + + + + + + 176 + 1 + Negatives #96-429,1996 + + + + + + 177 + 1 + Negatives #430-620, 1996, #1-139, 1997,1996-1997 + + + + + + 178 + 1 + Negatives #140-444,1997 + + + + + + 179 + 1 + Negatives #445-710, 1997, #1-96, 1998,1997-1998 + + + + + + 180 + 1 + Negatives #97-455,1998 + + + + + + 181 + 1 + Negatives #456-788,1998 + + + + + + 182 + 1 + Negatives #789-834, 1998, #1-279, 1999,1998-1999 + + + + + + 183 + 1 + Negatives #280-589, 1999,1999 + + + + + + 184 + 1 + Negatives #590-853, 1999, #1-25, CDs, 2000,1999-2000 + + + + + + 185 + 1 + Negatives #26-327,2000 + + + + + + 186 + 1 + Negatives #328-616,2000 + + + + + + 187 + 1 + Negatives #617-760,2000 + + + + + + 188 + 1 + Negatives,1940s-1960s + + + + + + 189 + 1 + (Slide Box 1): Alumni Field,undated + + + + + + 189 + 2 + (Slide Box 1): Baseball B – C,undated + + + + + + 189 + 3 + (Slide Box 1): Baseball F – K,undated + + + + + + 189 + 4 + (Slide Box 1): Baseball M – W,undated + + + + + + 189 + 5 + (Slide Box 1): Basketball,undated + + + + + + 189 + 6 + (Slide Box 1): ’75 Baseball Action ,1975 + + + + + + 189 + 7 + (Slide Box 1): ’76 Baseball Action (small slide box 1),1976 + + + + + + 189 + 8 + (Slide Box 1): ’76 Baseball Action (small slide box 2),1976 + + + + + + 189 + 9 + (Slide Box 1): California Bowl,undated + + + + + + 189 + 10 + (Slide Box 1): Cheerleaders,undated + + + + + + 189 + 11 + (Slide Box 1): Coaches and Other Personnel,undated + + + + + + 189 + 12 + (Slide Box 1): Finch,undated + + + + + + 189 + 13 + (Slide Box 1): Field Hockey,undated + + + + + + 189 + 14 + (Slide Box 1): Football,undated + + + + + + 189 + 15 + (Slide Box 1): Football Action,undated + + + + + + 189 + 16 + (Slide Box 1): Football Players,undated + + + + + + 189 + 17 + (Slide Box 1): Gymnastics,undated + + + + + + 189 + 18 + (Slide Box 1): Fred Jacoby Mid-American Conference,undated + + + + + + 189 + 19 + (Slide Box 1): Dave Keilitz Baseball,undated + + + + + + 1989 + 20 + (Slide Box 1): Ted Kjolhede,undated + + + + + + 190 + 1 + (Slide Box 2): Ken Kopke, Trainer,undated + + + + + + 190 + 2 + (Slide Box 2): Roy Kramer,undated + + + + + + 190 + 3 + (Slide Box 2): Dean Kreiner,undated + + + + + + 190 + 4 + (Slide Box 2): Logo Indian Head,undated + + + + + + 190 + 5 + (Slide Box 2): Marching Band,undated + + + + + + 190 + 6 + (Slide Box 2): Tony Miele,undated + + + + + + 190 + 7 + (Slide Box 2): Jerry Misner, Swimming,undated + + + + + + 190 + 8 + (Slide Box 2): Dick Parfitt, Basketball,undated + + + + + + 190 + 9 + (Slide Box 2): Perry Shorts Stadium (small slide box 1),undated + + + + + + 190 + 10 + (Slide Box 2): Perry Shorts Stadium (small slide box 2),undated + + + + + + 190 + 11 + (Slide Box 2): Dan Rose, Athletic Director,undated + + + + + + 190 + 12 + (Slide Box 2): Rose Center,undated + + + + + + 190 + 13 + (Slide Box 2): Don Sazima, Track,undated + + + + + + 190 + 14 + (Slide Box 2): Walt Schneider, Basketball,undated + + + + + + 190 + 15 + (Slide Box 2): Chick Sherwood, Wrestling,undated + + + + + + 190 + 16 + (Slide Box 2): Track,undated + + + + + + 190 + 17 + (Slide Box 2): Wrestling,undated + + + + + + 190 + 18 + (Slide Box 2): Wrestling Room and Gym Room,undated + + + + + + 190 + 19 + (Slide Box 2): Dean William Theunissen,undated + + + + + + 190 + 20 + (Slide Box 2): Leo Wisneski, Golf,undated + + + + + + 191 + 1 + (.5 cu. ft. box) Digital Image Database List (for 444 KB),2002-2012 + + + + + + 191 + 2 + (.5 cu. ft. box) Digital Image Database List (for 758 KB) (Folder 1 of 3),1997-2001 + + + + + + 191 + 3 + (.5 cu. ft. box) Digital Image Database List (for 758 KB) (Folder 2 of 3),1997-2001 + + + + + + 191 + 4 + (.5 cu. ft. box) Digital Image Database List (for 758 KB) (Folder 3 of 3),1997-2001 + + + + + + 192 + 1 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 179 Lem Tucker Tribute from BCA,1998 + + + + + + 192 + 2 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 786 Lem Tucker Dub from FACIT,1998 + + + + + + 192 + 3 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 784 Lem Tucker Dub from FACIT pt. 1-2,1999 + + + + + + 192 + 4 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 781 Lem Tucker Dub from FACIT,2000 + + + + + + 192 + 5 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 782 Lem Tucker Dub from FACIT pt. 1-2,2000 + + + + + + 192 + 6 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 783 Lem Tucker Dub from FACIT pt. 1,2000 + + + + + + 192 + 7 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 740 [A--- (spelling?) faded] Festival,2003 + + + + + + 192 + 8 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 833 Jerry Tubbs Warriner History,2006 + + + + + + 192 + 9 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 692 Nichol Trio,2007 + + + + + + 192 + 10 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 718 College Life and the Law Estab. Shot,2007 + + + + + + 192 + 11 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 719 College Life and the Law Handheld,2007 + + + + + + 192 + 12 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 720 College Life and the Law Stage Left,2007 + + + + + + 192 + 13 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 721 SAE Baja Championship Tape #2,2007 + + + + + + 192 + 14 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 722 SAE Baja Championship Tape #1,2007 + + + + + + 192 + 15 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 691 Herb Deromedi Interview,2000 + + + + + + 192 + 16 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 693 Leadership E. Bushley,2000 + + + + + + 192 + 17 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 694 Body Scanner AIP,2000 + + + + + + 192 + 18 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 695 Pottery Demo HGDL,2000 + + + + + + 192 + 19 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 969 Driving Simulator AIP,2003 + + + + + + 192 + 20 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 697 Campus Climate Cam 1 pt.1,2006 + + + + + + 192 + 21 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 698 R. Flesher Big Think,2007 + + + + + + 192 + 22 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 699 Art Installation R. Flesher,2007 + + + + + + 192 + 23 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 700 Pat Benson, Sarah Adams Bookmark,2007 + + + + + + 192 + 24 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 701 Diversity Sculpt N. Art Studio,undated + + + + + + 192 + 25 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 703 Extra Enberg, O’Kelly’s,2007 + + + + + + 192 + 26 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 704 Deer Center Dedication,2007 + + + + + + 192 + 27 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 705 Dick Enberg at O’Kelly’s,2007 + + + + + + 192 + 28 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 706 MS [Master]-Enberg Dedication,2007 + + + + + + 192 + 29 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 707 Nedra Frodge MSF,2007 + + + + + + 192 + 30 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 708 K. Corbett, N. Frodge MSF,2007 + + + + + + 192 + 31 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 790 Math, Sci, Tech Camps,2007 + + + + + + 192 + 32 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 737 Mike Owens Donor Appreciation,2007 + + + + + + 192 + 33 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 741 Hartzler, Nichol Trio,2007 + + + + + + 192 + 34 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 742 M. Shiley MSF,2007 + + + + + + 192 + 35 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 743 Nichol Trio with Reid MSF at Dallas,12007 + + + + + + 192 + 36 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 753 Kulhavi Kottamau Event Med Center,2007 + + + + + + 192 + 37 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 757 Special Olympics Open FieldCam pt. 1,2007 + + + + + + 192 + 38 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 757 Special Olympics Open FieldCam pt. 2,2007 + + + + + + 192 + 39 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 758 Special Olympics Open FieldCam pt. 3,2007 + + + + + + 192 + 40 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 759 Special Olympics Open Handheld pt. 1,2007 + + + + + + 192 + 41 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 760 Special Olympics Open Handheld pt. 2,2007 + + + + + + 192 + 42 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 761 Special Olympics Open UpCam pt. 1,2007 + + + + + + 192 + 43 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 762 Special Olympics Open Upcam pt. 2,2007 + + + + + + 192 + 44 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 763 Special Olympics Open Events pt. 2,2007 + + + + + + 192 + 45 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 764 Lois Arnold,2007 + + + + + + 192 + 46 + Microcassettes in 3 box lids: Box Lid 1: video microcassette no# David Gillingham Nat. Sound,2007 + + + + + + 192 + 47 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 709 Campus Climate Cam 1 pt. 2,2008 + + + + + + 192 + 48 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 710 Campus Climate Cam 2 pt. 1,2008 + + + + + + 192 + 49 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 711 Campus Climate Cam 2 pt. 2,2008 + + + + + + 192 + 50 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 712 Sarah Adams, P. Benson Cam 1,2008 + + + + + + 192 + 51 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 713 Sarah Adams, P. Benson Cam 3,2008 + + + + + + 192 + 52 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 714 Sarah Adams, P. Benson Cam 2,2008 + + + + + + 192 + 53 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 715 Glenn Ware CBA,2008 + + + + + + 192 + 54 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 723 Mike Fields,2008 + + + + + + 192 + 55 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 724 Myth Busters pt. 1,2008 + + + + + + 192 + 56 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 725 Myth Busters pt. 2,2008 + + + + + + 192 + 57 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 726 Student Environmental Alliance,2008 + + + + + + 192 + 58 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 727 SEA Deb Rowe, pt. 1,2008 + + + + + + 192 + 59 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 728 SEA Deb Rowe, pt.2,2008 + + + + + + 192 + 60 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 729 Plachta Tribute pt. 1,2008 + + + + + + 192 + 61 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 730 Plachta Tribute pt. 2,2008 + + + + + + 192 + 62 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 731 Plachta Tribute pt. 3,2008 + + + + + + 192 + 63 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 732 Plachta Tribute pt. 4,2008 + + + + + + 192 + 64 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 733 Bryan Wiefrich, Donor,2008 + + + + + + 192 + 65 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 734 Polar Plunge HVX,2008 + + + + + + 192 + 66 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 735 Polar Plunge DVX,2008 + + + + + + 192 + 67 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 736 Tim Otteman RPL Fundraisers,2008 + + + + + + 192 + 68 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 739 (1st cassette) Learn to Swim and 3 VS 3 B-ball,2008 + + + + + + 192 + 69 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 739 (2nd cassette) Donor Appreciation,2008 + + + + + + 192 + 70 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 744 Flec Car,2008 + + + + + + 192 + 71 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 745 Eliz. Carpenter Donor,2008 + + + + + + 192 + 72 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 752 Earth Day,2008 + + + + + + 192 + 73 + Microcassettes in 3 box lids: Box Lid 1: video microcassette 773 IC Stand-ups,2008 + + + + + + 192 + 74 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 746 Events Center,2008 + + + + + + 192 + 75 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 747 Dave Heeke, Events Center,2008 + + + + + + 192 + 76 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 748 Sue Guevara, Events Center,2008 + + + + + + 192 + 77 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 749 M Rao, Med Center,2008 + + + + + + 192 + 78 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 750 B Ebner Event Center,2008 + + + + + + 192 + 79 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 751 School Luncheon Alumni / Development,2008 + + + + + + 192 + 80 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 765 Herb Deromedi,2008 + + + + + + 192 + 81 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 766 Gear Up B-Roll,2008 + + + + + + 192 + 82 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 767 Gear Up Interviews,2008 + + + + + + 192 + 83 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 768 Make a Wish (MAW) Cyclists,2008 + + + + + + 192 + 84 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 756 Make a Wish (MAW) Cyclists Interview pt. 1,2008 + + + + + + 192 + 85 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 769 Make a Wish (MAW) Cyclists Interview pt. 2,2008 + + + + + + 192 + 86 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 770 Mary Henley Gear Up,2008 + + + + + + 192 + 87 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 771 Botanical Gardens Groundbreaking,2008 + + + + + + 192 + 88 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 772 Caponigro Media Lab,2008 + + + + + + 192 + 89 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 773 Caponigro Media Lab,2008 + + + + + + 192 + 90 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 774 Special O (Olympics) Events pt. 1,2008 + + + + + + 192 + 91 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 776 Scott Harding Interview,2008 + + + + + + 192 + 92 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 777 Steve Berglund Interview,2008 + + + + + + 192 + 93 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 778 Inside Central Stand Ups,2008 + + + + + + 192 + 94 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 780 Lem Tucker,2008 + + + + + + 192 + 95 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 784 Pig Out in Park,2008 + + + + + + 192 + 96 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 787 Events Center Kickoff,2008 + + + + + + 192 + 97 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 788 Frosty Willey Caldw,2008 + + + + + + 192 + 98 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 789 Rec Book Art Hardin,2008 + + + + + + 192 + 99 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 790 R Heuberger,2008 + + + + + + 192 + 100 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 791 Steve Berglund Rehearsal,2008 + + + + + + 192 + 101 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 792 Al Wiley,2008 + + + + + + 192 + 102 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 793 Gold Dragon,2008 + + + + + + 192 + 103 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 794 Steve Berglund Digressions,2008 + + + + + + 192 + 104 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 795 Frost Wyrick,2008 + + + + + + 192 + 105 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 796 Football PSAs, 2,2008 + + + + + + 192 + 106 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 797 Football PSAs [1],2008 + + + + + + 192 + 107 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 798 Wellness Fair,2008 + + + + + + 192 + 108 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 799 Dog Food,2008 + + + + + + 192 + 109 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 800 Kevin Locke pt. 1,2008 + + + + + + 192 + 110 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 801 Kevin Locke pt. 2,2008 + + + + + + 192 + 111 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 802 Tammy Griffi,2008 + + + + + + 192 + 112 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 803 Nimkee Wellness [Center],2008 + + + + + + 192 + 113 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 804 Wellness B-roll,2008 + + + + + + 192 + 114 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 805 Rock Wall,2008 + + + + + + 192 + 115 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 806 R. Schumaker,2008 + + + + + + 192 + 116 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 807 Lindsay Stand-up,2008 + + + + + + 192 + 117 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 808 Special Olympics Knitting,2008 + + + + + + 192 + 118 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 809 Special Olympics Scarves,2009 + + + + + + 192 + 119 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 810 URec SD B-roll,2009 + + + + + + 192 + 120 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 811 Chad Stirret,2009 + + + + + + 192 + 121 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 812 John Kujat,2009 + + + + + + 192 + 122 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 813 Pets and Snow,2009 + + + + + + 192 + 123 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 814 Handicap ORB CMU Rec,2009 + + + + + + 192 + 124 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 815 ESPN Guevara Ticker,2009 + + + + + + 192 + 125 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 816 IC Standups,2009 + + + + + + 192 + 126 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 817 Leroy Barnes,2009 + + + + + + 192 + 127 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 818 Menards B-roll,2009 + + + + + + 192 + 128 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 819 Ian Davison,2009 + + + + + + 192 + 129 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 820 Kathy Koch,2009 + + + + + + 192 + 130 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 821 Recycled Clothes,2009 + + + + + + 192 + 131 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 822 Prom Dress Sale,2009 + + + + + + 192 + 132 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 823 IC B-roll,2009 + + + + + + 192 + 133 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 824 Pow-Wow Interviews,2009 + + + + + + 192 + 134 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 825 Camping IC,2009 + + + + + + 192 + 135 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 826 Media Training,2009 + + + + + + 192 + 136 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 827 Salvation Army,2009 + + + + + + 192 + 137 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 828 M Rao / C Seelye,2009 + + + + + + 192 + 138 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 829 Brad Holley Grilling,2009 + + + + + + 192 + 139 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 830 SCREE,2009 + + + + + + 192 + 140 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 831 Higher Ed. Senate Testimony,2009 + + + + + + 192 + 141 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 832 Foreign Language Day,2009 + + + + + + 192 + 142 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 833 Football PSA’s pt. 2,2009 + + + + + + 192 + 143 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 834 Football PSA’s pt. 1,2009 + + + + + + 192 + 144 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 835 Exec Training,2009 + + + + + + 192 + 145 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 836 Exec Training,2009 + + + + + + 192 + 146 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 837 Sue Knight,2009 + + + + + + 192 + 147 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 838 Trash to Treasures,2009 + + + + + + 192 + 148 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 839 Special Olympics,2009 + + + + + + 192 + 149 + Microcassettes in 3 box lids: Box Lid 2: video microcassette 840 Special Olympics HVX pt. 1,2009 + + + + + + 192 + 150 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 841 Special O (Olympics) HVX pt. 2,2009 + + + + + + 192 + 151 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 842 Special O Upcam pt. 1,2009 + + + + + + 192 + 152 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 843 Special O Upcam pt. 1,2009 + + + + + + 192 + 153 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 844 Special O Fieldcam pt. 1,2009 + + + + + + 192 + 154 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 845 Special O Fieldcam pt. 2,2009 + + + + + + 192 + 155 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 846 Grandparents U pt. 1,2009 + + + + + + 192 + 156 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 847 Grandparents U pt. 2,2009 + + + + + + 192 + 157 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 848 Grandparents U pt. 3,2009 + + + + + + 192 + 158 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 849 Fashion Camp,2009 + + + + + + 192 + 159 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 850 Mussel Research,2009 + + + + + + 192 + 160 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 851 Kathy Wilbur,2009 + + + + + + 192 + 161 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 852 Cam Enarson,2009 + + + + + + 192 + 162 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 853 Anti-Drug PSAs, pt. 1,2009 + + + + + + 192 + 163 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 854 Anti-Drug PSAs, pt. 2,2009 + + + + + + 192 + 164 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 855 Tom Rohrer,2009 + + + + + + 192 + 165 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 856 Hydraid-CMURC, pt. 1,2009 + + + + + + 192 + 166 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 857 Hydraid-CMURC, pt. 2,2009 + + + + + + 192 + 167 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 858 Cool Schools,2009 + + + + + + 192 + 168 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 859 Cool Schools,2009 + + + + + + 192 + 169 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 860 Smart Cane / EHS,2009 + + + + + + 192 + 170 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 861 EHS,2009 + + + + + + 192 + 171 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 862 Retention,2009 + + + + + + 192 + 172 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 863 Cam Enarson,2009 + + + + + + 192 + 173 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 864 EHS 107,2009 + + + + + + 192 + 174 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 865 International Film Fest 1,2009 + + + + + + 192 + 175 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 866 International Film Fest 2,2009 + + + + + + 192 + 176 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 867 International Film Fest 3,2009 + + + + + + 192 + 177 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 868 Body Scanner,2009 + + + + + + 192 + 178 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 869 Carter Oosterhouse,2009 + + + + + + 192 + 179 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 870 Carter Oosterhouse,2009 + + + + + + 192 + 180 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 871 Smart Cane,2009 + + + + + + 192 + 181 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 872 Smart Cane,2009 + + + + + + 192 + 182 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 873 Football Coaches ISO,2009 + + + + + + 192 + 183 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 874 Football Coaches ISO,2009 + + + + + + 192 + 184 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 875 Football Coaches ISO,2009 + + + + + + 192 + 185 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 876 Football Coaches ISO,2009 + + + + + + 192 + 186 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 877 Panorama / Gear Up Football Coaches,2009 + + + + + + 192 + 187 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 878 Dave Lawson,2009 + + + + + + 192 + 188 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 879 Butch Jones ISO pt. 1,2009 + + + + + + 192 + 189 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 880 Butch Jones ISO pt. 2,2009 + + + + + + 192 + 190 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 881 Weinberg HVX pt 1,2009 + + + + + + 192 + 191 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 882 Weinberg HVX pt 2,2009 + + + + + + 192 + 192 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 883 Weinberg DVX pt 1,2009 + + + + + + 192 + 193 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 884 Weinberg DVX pt 2,2009 + + + + + + 192 + 194 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 885 CDLL pt 1,2009 + + + + + + 192 + 195 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 886 CDLL pt 2,2009 + + + + + + 192 + 196 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 887 Military App. pt. 1 [Note: pt. 2 is not in box],2009 + + + + + + 192 + 197 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 888 Gear Up pt 1,2009 + + + + + + 192 + 198 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 889 Gear Up pt.2,2009 + + + + + + 192 + 199 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 890 Fighting Hunger,2009 + + + + + + 192 + 200 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 891 Dream Catchers,2009 + + + + + + 192 + 201 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 892 Granholm,2009 + + + + + + 192 + 202 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 893 CEHS SRACE,2009 + + + + + + 192 + 203 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 894 School of Finance, Inst. Workshop pt. 1,2009 + + + + + + 192 + 204 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 895 School of Finance, Inst. Workshop pt. 2,2009 + + + + + + 192 + 205 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 896 Bill Lawrence,2009 + + + + + + 192 + 206 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 897 CMU Board of Trustees (BOT) pt. 1,2009 + + + + + + 192 + 207 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 898 CMU Board of Trustees (BOT) pt. 2,2009 + + + + + + 192 + 208 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 900 Xmas (Christmas) Outreach CHP / CMCH,2009 + + + + + + 192 + 209 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 901 J. Oh-Lee Parkinson’s,2009 + + + + + + 192 + 210 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 902 Barstow 1,2009 + + + + + + 192 + 211 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 903 CMU Comm, pt. 1,2009 + + + + + + 192 + 212 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 904 CMU Comm, pt. 2,2009 + + + + + + 192 + 213 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 905 CMU Comm, pt. 3,2009 + + + + + + 192 + 214 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 906 CMU Comm, pt. 4,2009 + + + + + + 192 + 215 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 907 CMU Comm pt. 1,2009 + + + + + + 192 + 216 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 908 CMU Comm pt. 2,2009 + + + + + + 192 + 217 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 909 CMU Comm pt. 3,2009 + + + + + + 192 + 218 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 910 CMU Comm pt. 4,2009 + + + + + + 192 + 219 + Microcassettes in 3 box lids: Box Lid 3: video microcassette 910 CMU Comm pt. 5,2009 + + + + + + 192 + 220 + Microcassettes in 3 box lids: Box Lid 3: video microcassette no# Jim McDonald Ghana Trip,2009 + + + + + + 192 + 221 + Microcassettes in 3 box lids: Box Lid 3: video microcassette no# Polar Plunge,Feb. 20, 2010 + + + + + + 192 + 222 + Microcassettes in 3 box lids: Box Lid 3: video microcassette no# Baseball Camp,2010 + + + + + + 192 + 223 + Microcassettes in 3 box lids: Box Lid 3: video microcassette no# OPUS,2011 + + + + + + 192 + 224 + Microcassettes in 3 box lids: Box Lid 3: video microcassette no# I am Central, Christopher Slat, Don’t squish me!,2010 + + + + + + 192 + 225 + Microcassettes in 3 box lids: Box Lid 3: video microcassette no# Danny Glover,Jan. 19, 2016 + + + + + + 193 + 1 + CDs and DVDs: Ziibiwing Center Creation DVD,2003 + + + + + + 193 + 2 + CDs and DVDs: Admissions 6 DVDs,2005 + + + + + + 193 + 3 + CDs and DVDs: Beaver Island Stories DVD,2005 + + + + + + 193 + 4 + CDs and DVDs: Herb Deromedi Tribute 2 DVDs,2005 + + + + + + 193 + 5 + CDs and DVDs: Setup for MLK Day CD,2005 + + + + + + 193 + 6 + CDs and DVDs: Michigan Story Festival / Inside Central DVD,2005 + + + + + + 193 + 7 + CDs and DVDs: Michigan Story Festival 30 second spots DVD,2005 + + + + + + 193 + 8 + CDs and DVDs: Saginaw Chippewa Indian Tribe 2 DVD,2005 + + + + + + 193 + 9 + CDs and DVDs: Mackinac Bridge During Construction, Forrest “Frosty” Wyrick, CD,2005 + + + + + + 193 + 10 + CDs and DVDs: CMU Admissions DVD,2006 + + + + + + 193 + 11 + CDs and DVDs: Audiology 2 DVDs,2006 + + + + + + 193 + 12 + CDs and DVDs: Deromedi Years DVD,1967-2006 + + + + + + 193 + 13 + CDs and DVDs: Inside Central 3 DVDs,2006 + + + + + + 193 + 14 + CDs and DVDs: Lindsay and Steve [Smith]WMHZW CD,2006 + + + + + + 193 + 15 + CDs and DVDs: Preservation Hall Jazz Band CD,2006 + + + + + + 193 + 16 + CDs and DVDs: Corine Standish audio, CD,2006 + + + + + + 193 + 17 + CDs and DVDs: Study Abroad Photos CD,2006 + + + + + + 193 + 18 + CDs and DVDs: Tim Tingle CD,2006 + + + + + + 193 + 19 + CDs and DVDs: CMU-Tribal Basketball Camp CD,2006 + + + + + + 193 + 20 + CDs and DVDs: Welcome to CMU 2 DVDs,2006 + + + + + + 193 + 21 + CDs and DVDs: WHM CMU Commercial DVD,2006 + + + + + + 193 + 22 + CDs and DVDs: Big Think Hemi Flora Photos CD,2007 + + + + + + 193 + 23 + CDs and DVDs: CEHS Final Animations and Design CD,2007 + + + + + + 193 + 24 + CDs and DVDs: CEHS Flythrough DVD,2007 + + + + + + 193 + 25 + CDs and DVDs: College Life and the Law Skit DVD,2007 + + + + + + 193 + 26 + CDs and DVDs: CMU Minutes DVD,2007 + + + + + + 193 + 27 + CDs and DVDs: Currently Speaking Kathy Donohue DVD,2007 + + + + + + 193 + 28 + CDs and DVDs: [Deromedi] Herb Retires 3 DVD,2007 + + + + + + 193 + 29 + CDs and DVDs: Nedra Frodge images 2 CD,2007 + + + + + + 193 + 30 + CDs and DVDs: Inside Central 5 DVDs,2007 + + + + + + 193 + 31 + CDs and DVDs: Jesse Jackson Speech introduction DVD,2007 + + + + + + 193 + 32 + CDs and DVDs: Jesse Jackson Speech 2 DVDs,2007 + + + + + + 193 + 33 + CDs and DVDs: Margo Jonker Voiceovers CD,2007 + + + + + + 193 + 34 + CDs and DVDs: NAP Speaker Winona Laduke CD,2007 + + + + + + 193 + 35 + CDs and DVDs: Alexandra Mascolo-David piano 2 DVDs,2007 + + + + + + 193 + 36 + CDs and DVDs: Mentor Minutes Study abroad and volunteerism DVD,2007 + + + + + + 193 + 37 + CDs and DVDs: Radio Spots CD,2007 + + + + + + 193 + 38 + CDs and DVDs: Special Olympics and Baja DVD,2007 + + + + + + 193 + 39 + CDs and DVDs: This is Central, 8 DVDs, 1 CD,2007 + + + + + + 193 + 40 + CDs and DVDs: Admissions 2 DVDs,2007 + + + + + + 193 + 41 + CDs and DVDs: Army DVD,2008 + + + + + + 193 + 42 + CDs and DVDs: P. Benson CD,2008 + + + + + 193 + 43 + CDs and DVDs: Dave Bone Admissions Interview 13 of 14 DVDs,2008 + + + + + + 193 + 44 + CDs and DVDs: Glenn Bronson 7 DVDs,2008 + + + + + + 193 + 45 + CDs and DVDs: MLK Keynote Judge Joe Brown Speech CD,2008 + + + + + + 193 + 46 + CDs and DVDs: CEHS Fly Through original version DVD,2008 + + + + + + 193 + 47 + CDs and DVDs: MTM 9and10 News Deer Center 2 DVDs,2008 + + + + + + 193 + 48 + CDs and DVDs: Michigan This Morning, Deer Driving Simulator DVD,2008 + + + + + + 193 + 49 + CDs and DVDs: Donor Appreciation 3 DVDs,2008 + + + + + + 193 + 50 + CDs and DVDs: Katie Dykehouse 7 DVDs,2008 + + + + + + 193 + 51 + CDs and DVDs: Events Center 2 DVDs,2008 + + + + + + 193 + 52 + CDs and DVDs: Mike Fields 3 DVDs,2008 + + + + + + 193 + 53 + CDs and DVDs: Fire Up Chips / Threads CD,2008 + + + + + + 193 + 54 + CDs and DVDs: December Football Spot Mike Germond CD,2008 + + + + + + 193 + 55 + CDs and DVDs: Football PSAs DVD,2008 + + + + + + 193 + 56 + CDs and DVDs: Mike Garver Interview 2 DVDs,2008 + + + + + + 193 + 57 + CDs and DVDs: Anna Hanson 3 DVDs,2008 + + + + + + 193 + 58 + CDs and DVDs: Highlights 2 DVDs,2008 + + + + + + 193 + 59 + CDs and DVDs: Honors DVD,2008 + + + + + + 193 + 60 + CDs and DVDs: Info Channel Legal DVD,2008 + + + + + + 193 + 61 + CDs and DVDs: Inside Central 6 DVDs,2008 + + + + + + 193 + 62 + CDs and DVDs: Margo Jonker Stadium Naming 7 DVDs,2008 + + + + + + 193 + 63 + CDs and DVDs: Steve Lambert Interview 6 DVDs,2008 + + + + + + 193 + 64 + CDs and DVDs: Learn to Swim Commercial DVD,2008 + + + + + + 193 + 65 + CDs and DVDs: Kevin Locke Native Dance Ensemble DVD,2008 + + + + + + 193 + 66 + CDs and DVDs: Luis Cadena Admissions interview 5 DVDs,2008 + + + + + + 193 + 67 + CDs and DVDs: Medical Center 7 DVDs,2008 + + + + + + 193 + 68 + CDs and DVDs: WEYI TV Medical School DVD,2008 + + + + + + 193 + 69 + CDs and DVDs: NBC Medical Center Coverage Eye TV Files, Steve Smith Interview DVD,2008 + + + + + + 193 + 70 + CDs and DVDs: Medical B-roll DVD,2008 + + + + + + 193 + 71 + CDs and DVDs: CMU Minutes Big Think Driving Simulator, Deromedi, Quigno, others, DVD,2008 + + + + + + 193 + 72 + CDs and DVDs: Fred Miester Tribute DVD,2008 + + + + + + 193 + 73 + CDs and DVDs: Michigan Story Festival DVD,2008 + + + + + + 193 + 74 + CDs and DVDs: Mythbusters CD,2008 + + + + + + 193 + 75 + CDs and DVDs: Off-Campus 3 DVDs,2008 + + + + + + 193 + 76 + CDs and DVDs: PZ Files Orientation 2 DVDs,2008 + + + + + + 193 + 77 + CDs and DVDs: Tim Otteman KCBS CD, 4 DVDs,2008 + + + + + + 193 + 78 + CDs and DVDs: Leonard Plachta Tribute Ceremony CD, 2 DVDs,2008 + + + + + + 193 + 79 + CDs and DVDs: Sarah Pray interview 7 DVDs,2008 + + + + + + 193 + 80 + CDs and DVDs: PRE-orientation DVD,2008 + + + + + + 193 + 81 + CDs and DVDs: Corbett / Big Think / Alum-9Dev Scoreboard 2 DVDs,2008 + + + + + + 193 + 82 + CDs and DVDs: Renee Shingles CHP Interview for Admissions Video 8 DVDs,2008 + + + + + + 193 + 83 + CDs and DVDs: Scholarship Luncheon DVD,2008 + + + + + + 193 + 84 + CDs and DVDs: Special Olympics Polar Plunge DVD,2008 + + + + + + 193 + 85 + CDs and DVDs: Special Olympics P. Benson 3DVDs,2008 + + + + + + 193 + 86 + CDs and DVDs: Kameel Sta5nley Admissions Interview 7 DVDs,2008 + + + + + + 193 + 87 + CDs and DVDs: This is Central image spots,fall 2008 + + + + + + 193 + 88 + CDs and DVDs: Lem Tucker Scans Cd, 5 DVDs,2008 + + + + + + 193 + 89 + CDs and DVDs: Jan Wagester For L. Plachta Memorial DVD,2008 + + + + + + 193 + 90 + CDs and DVDs: Australia Project 11 DVDs,2009 + + + + + + 193 + 91 + CDs and DVDs: Barstow Artist-in-residence Domestic Cyclone Exhibit Amy Reckley CD,2009 + + + + + + 193 + 92 + CDs and DVDs: Beaver Island 8 DVDs,2009 + + + + + + 193 + 93 + CDs and DVDs: Big Move and Pres Rao 3 DVDs,2009 + + + + + + 193 + 94 + CDs and DVDs: Body Scanner CD,2009 + + + + + + 193 + 95 + CDs and DVDs: Ben Carson 2 DVDs,2009 + + + + + + 193 + 96 + CDs and DVDs: Donor Appreciation 5 DVDs,2009 + + + + + + 193 + 97 + CDs and DVDs: EyeTV Archive 4 of 6 DVDs,2009 + + + + + + 193 + 98 + CDs and DVDs: Football 4 DVDs,2009 + + + + + + 193 + 99 + CDs and DVDs: Ghana Trip photos from Jim McDonald 2 DVDs,2009 + + + + + + 193 + 100 + CDs and DVDs: Information Channel Legal DVD,2009 + + + + + + 193 + 101 + CDs and DVDs: Inside Central 4 DVDs,2009 + + + + + + 193 + 102 + CDs and DVDs: MAC Championship Football Highlights DVD,2009 + + + + + + 193 + 103 + CDs and DVDs: Axel Mellinger Milky Galaxy Panorama photos, CD,2009 + + + + + + 193 + 104 + CDs and DVDs: Leonard Plachta Memorial 2 DVDs,2009 + + + + + + 193 + 105 + CDs and DVDs: Pow-wow Project #2-4 DVDs,2009 + + + + + + 193 + 106 + CDs and DVDs: Pow-wow Project 4 DVDs,2009 + + + + + + 193 + 107 + CDs and DVDs: Pres. Rao Farewell reception slideshow DVD,2009 + + + + + + 193 + 108 + CDs and DVDs: George Ross Appointment Press Conf. DVD,2009 + + + + + + 193 + 109 + CDs and DVDs: Scholarship Luncheon 4 DVDs,2009 + + + + + + 193 + 110 + CDs and DVDs: Special Olympics 2001 summer and winter pieces DVD,2009 + + + + + + 193 + 111 + CDs and DVDs: Special Olympics 2009 P2 Card 1 Day 2, DVD #2 of 2,2009 + + + + + + 193 + 112 + CDs and DVDs: Special Olympics 2009 P2 Card 1 Day 2. DVD #1-2 of 2,2009 + + + + + + 193 + 113 + CDs and DVDs: Special Olympics 2009 Card #2 backup DVD #1-4,2009 + + + + + + 193 + 114 + CDs and DVDs: Special Olympics Day 2 Tape #1 and selections for broadcast server DVD #1 of 1,2009 + + + + + + 193 + 115 + CDs and DVDs: Unleash the power Viral Video Series DVD,2009 + + + + + + 193 + 116 + CDs and DVDs: WJRT News at 5 and 6 am DVD,2009 + + + + + + 193 + 117 + CDs and DVDs: Dick Enberg for CBS DVD,2010 + + + + + + 193 + 118 + CDs and DVDs: CMU 1st Generation Students for AASCU 3 DVDs,2010 + + + + + + 193 + 119 + CDs and DVDs: GMAC Bowl 2 DVDs,2010 + + + + + + 193 + 120 + CDs and DVDs: Heather Photos CPRandM (CMU Public Relations and Marketing), UComm,2006-2010 + + + + + + 193 + 121 + CDs and DVDs: High-Impact Video Masters from Brad Ospintoski 6 DVDs,2010 + + + + + + 193 + 122 + CDs and DVDs: Polar Plunge DVD,2010 + + + + + + 193 + 123 + CDs and DVDs: George Ross Bit Comments DVD,2010 + + + + + + 193 + 124 + CDs and DVDs: George Ross Investiture Ceremony,2010 + + + + + + 193 + 125 + CDs and DVDs: Smart Cane DVD,2010 + + + + + + 193 + 126 + CDs and DVDs: Stewart Hunting 2 DVDs,2010 + + + + + + 193 + 127 + CDs and DVDs: Lem Tucker DVD,2010 + + + + + + 193 + 128 + CDs and DVDs: TVGuide B-roll 3 DVDs,2010 + + + + + + 193 + 129 + CDs and DVDs: Unleash the Power Basketball 3 DVDs,2010 + + + + + + 193 + 130 + CDs and DVDs: Night of Louisiana DVD,2011 + + + + + + 193 + 131 + CDs and DVDs: Beaver Island DVD,undated + + + + + + 193 + 132 + CDs and DVDs: Pat Benson Photos CD,undated + + + + + + 193 + 133 + CDs and DVDs: Bridge Order CD,undated + + + + + + 193 + 134 + CDs and DVDs: CMU Promise 30 seconds DVD,undated + + + + + + 193 + 135 + CDs and DVDs: Coach Reviews #2 DVD,undated + + + + + + 193 + 136 + CDs and DVDs: Deromedi for TV CD,undated + + + + + + 193 + 137 + CDs and DVDs: Disney video,undated + + + + + + 193 + 138 + CDs and DVDs: Enberg photos stuff CD,undated + + + + + + 193 + 139 + CDs and DVDs: ESPN move up CD,undated + + + + + + 193 + 140 + CDs and DVDs: Events Center video and slides, DVD,undated + + + + + + 193 + 141 + CDs and DVDs: Football footage DVD, undated / Nedra Frodge Homecoming pics CD,undated + + + + + + 193 + 142 + CDs and DVDs: Scott Harding Mackinac Photos CD,undated + + + + + + 193 + 143 + CDs and DVDs: Honors iMovie project from Tom Idema DVD,undated + + + + + + 193 + 144 + CDs and DVDs: Inside Central (IC) building History DVD,undated + + + + + + 193 + 145 + CDs and DVDs: Inside Central Old Image Spots – Tim O’Brien Why CMU?, Nanotechnology, Fight Song,undated + + + + + + 193 + 146 + CDs and DVDs: Inside Central 5 DVDs,undated + + + + + + 193 + 147 + CDs and DVDs: McCullough Q and A 2 DVDs,undated + + + + + + 193 + 148 + CDs and DVDs: Medical Footage from CHP DVD,undated + + + + + + 193 + 149 + CDs and DVDs: Moore Hall photos DVD,undated + + + + + + 193 + 150 + CDs and DVDs: Newspapers, future of, first 10 minutes of forum CD,undated + + + + + + 193 + 151 + CDs and DVDs: Night of LA (Louisiana) CD,undated + + + + + + 193 + 152 + CDs and DVDs: Leonard and Louis Plachta CDScott Harding Mackinac Photos CD,undated + + + + + + 193 + 153 + CDs and DVDs: Jason Quigno (Al Wildey) for Tim O’Brien Music CD,undated + + + + + + 193 + 154 + CDs and DVDs: Jason Quigno Photos CD,undated + + + + + + 193 + 155 + CDs and DVDs: University Recreation Logos CD,undated + + + + + + 193 + 156 + CDs and DVDs: Elizabeth Ross DVD,undated + + + + + + 193 + 157 + CDs and DVDs: Ross photos CD,undated + + + + + + 193 + 158 + CDs and DVDs: Ross Portraits CD,undated + + + + + + 193 + 159 + CDs and DVDs: Sandra and UCM CD,undated + + + + + + 193 + 160 + CDs and DVDs: Scholarship Impact Movies DVD,undated + + + + + + 193 + 161 + CDs and DVDs: State Champs Episode #516 5 DVDs,undated + + + + + + 193 + 162 + CDs and DVDs: Troy Strand for David Gillingham Radio Spot CD,undated + + + + + + 193 + 163 + CDs and DVDs: Surplus Sale quicktime file DVD,undated + + + + + + 193 + 164 + CDs and DVDs: Threads CMU / FCIT DVD,undated + + + + + 193 + 165 + CDs and DVDs: Lem Tucker Live the legacy Lead for life Journalism Scholarship and speaker series DVD,undated + + + + + + 193 + 166 + CDs and DVDs: Lem Tucker Journalism scholarship DVD,undated + + + + + +
    +
    diff --git a/sample-ead/clarke/clelandtemplate.xml b/sample-ead/clarke/clelandtemplate.xml new file mode 100644 index 0000000..74bc2cd --- /dev/null +++ b/sample-ead/clarke/clelandtemplate.xml @@ -0,0 +1,130115 @@ + + + + + ehll--cleland + + + Finding Aid for +Charles E. Cleland Native American research collection + Collection processed and finding aid created by many students, notably A. Binge and G. Agee, Sept. 2008-Feb. 2015; Marian Matyn, Sept. 2008-June 2016 + + + Clarke Historical Library + +2016 + + + + + Encoded finding aid created by +Marian Matyn, +2015-2017 + + The finding aid is written in English + + + + + + Clarke Historical LibraryCentral Michigan University + Finding aid for +Charles E. Cleland Native American research collection + Finding aid created by +many students, notably A. Binge and G. Agee, Sept. 2008-Feb. 2015; Marian Matyn, Sept. 2008-June 2016 + + + + + + + Cleland, Charles E., 1936- + + +Charles E. Cleland Native American research collection, + +1970-2008, and undated + + + +117 cubic ft. (in 122 Boxes, 9 Ov. folders) + + + +MSS. + + The material is in English + + +The collection includes mostly photocopies of materials generated by various lawsuits, and other materials documenting Native Americans of Michigan, Minnesota, and Wisconsin, and First Peoples of Ontario, Canada, their history, culture, and relationship with the presiding government.Tribes documented are noted in the subject headings. + + + Clarke Historical Library, Central Michigan University + + + + + +

    +Acc# 74763 +

    +
    + +

    +Charles E. Cleland Native American research collection is open for research. +

    +
    + +

    +Copyright is unknown. +

    +
    + +

    +Charles E. Cleland Native American research collection, Folder # , Box #, Clarke Historical Library, Central Michigan University +

    +
    +
    + +

    Biography:

    +

    Charles E. “Chuck” Cleland is the son of Margaret and Charles Cleland. He was born on February 2, 19365 in Kane, Pennsylvania. He earned degrees from Denison University, Arkansas University and his Ph.D. from the University of Michigan in 1965.

    +

    As a professor of anthropology, Cleland taught at Michigan State University from 1965 until he retired in 2000. His research focus was on Native Americans, particularly the Ojibwa. He has written a number of important books contributing to scholarship on Michigan Native Americans and archaeology including: Rites of Conquest: the History and Culture of Michigan’s Native Americans (1992); (The) Place of the Pike (Gnoozhekaaning): a History of the Bay Mills Indian Community (2001), for which he used oral histories of tribal elders and tribal archival photographs. It was selected for the 2001 Read Michigan List by the State of Michigan; Art of the Great Lakes Indians (1973); Faith in Paper: the Ethnohistory and Litigation of Upper Great Lakes Indian Treaties (2011); and An Upper Great Lakes Archaeological Odyssey: Essays in Honor of Charles E. Cleland, about the fur trade archaeology of Fort Michilimackinac.

    +

    Professor Cleland has also edited and contributed to another of other books relating to Michigan Native Americans and/or archaeology, as well as writing a number of published reports related reports. Copies of these are all available in the CMU Libraries. In addition a small collection is housed at Michigan State University which consists of copies of U.S. military documents including discharge papers of Native American scouts.

    +

    Besides his contributions to scholarship, Professor Cleland and his associates in Aurora Research Associates researched a lot of Native American history for tribal law suits against the U.S. and state governments to attain tribal recognition. Professor Cleland was often called as an expert witness to testify. As a result, he and Aurora accumulated millions of p. of copies of government and other sources, primary and secondary from a multitude of institutions and people, dating back as far as 1784, compiled statistics, maps, reports, correspondence, and court documents, and prepared statements, reports, and exhibits. It is these materials that compose this collection. Almost all the materials are photocopies dating from the 1970s-2008, except for court records and correspondence also created in this time period.

    +

    As of 2015, Professor Cleland lives in Charlevoix, Michigan, with his family. (This information is from several websites including zoominfo.com Charles Cleland; goodread.com Charles E. Cleland; Michigan State University Archives and Historical Collection Charles E. Cleland Collection finding aid at archives. Msu.edu; and the CMU CENTRA catalog, all viewed in Jan. 2015.)

    +
    + +

    Arrangement is in original order by series and subseries.

    +
    + +

    The collection includes mostly undated photocopies of materials generated by various tribal lawsuits against states and the United States (US) government in the collection. Some of the materials date back to the 1780s, but they are not originals, they are photocopies mostly made in the 1970s-1990s or later. There are some original reports and court records created during the time period of 1970-2008. The collection is rich in and dense in documenting Native Americans of Michigan, Minnesota, and Wisconsin, and First Peoples of Ontario, Canada, their history, culture, and relationship with the presiding government.

    +

    The collection is in original order. It is organized alphabetically by series by tribe or community seeking tribal status, reservation boundary (KBIC) case, tax case, or for hunting and fishing rights (Voight or LCO case) (105 boxes, 102.5 cubic feet). Within each series there are various subseries which may include: calendar documents (reference documents in chronological order), Cleland reports and reports of others (un/published), Cleland’s testimony as an expert witness, reference documents and/or un/published sources including newspaper or journal articles, books, maps, government reports, laws, land, legal and tax records, correspondence, business or personal records, excerpts from journals, diaries, and accounts, treaties, various US or Canadian court documents, miscellaneous and/or related documents, footnotes, project files, transcriptions of oral histories, finding aids, various types of maps, sketches, and genealogical and/or family charts. Some materials are bound volumes and others are oversized materials. Tribes or communities represented in the collection include:

    +

    Bad River Band of Lake Superior Chippewa (Wisconsin) 2 boxes (2 cubic ft.); Bay Mills Indian Community (Michigan) 15 boxes (14.5 cubic ft.); Fond du Lac Band of Chippewa (Minnesota) 8 boxes (7.5 cubic ft.); Forest County Potawatomi (Wisconsin), Notre Dame Project 4 boxes (4 cubic ft.); Keweenaw Bay Indian Community (KBIC, Michigan) 10 boxes (10 cubic ft.); Lac Courte Oreilles [Lake Superior Ojibwa]– Voigt Case 4 boxes (4 cubic ft.); Menominee (Wisconsin) 13 Boxes (12.5 cubic ft.); Mille Lacs Chippewa (Minnesota) 21 boxes (19 cubic ft.) (Note: Box 1 is actually half Menominee and half Mille Lacs Chippewas.); Saginaw Chippewa (Michigan) 13 boxes (13 cubic ft.); Sarnia [Chippewas of Sarnia Band (Ontario, Canada) who prefer to be known as Aamjiwnaang First Nation] 9 boxes (9 cubic ft.); Stockbridge-Munsee (Wisconsin) 8 boxes (8 cubic ft.).

    +

    Additional case and reference materials are found at the end in Boxes A-M (12 boxes, 9 Oversized folders, 13 cubic feet). These include: Box A: Bay Mills, US v. MI, 1 box (1 cubic foot); Box B: Bay Mills, US v. MI, KBIC Tax Case, KBIC Boundary Case, Crown v Sarnia, 1 box (1 cubic foot); Box C: Crown v. Sarnia 1 box (1 cubic foot); Box D: KBIC Boundary Case 1 box (1 cubic foot); Box E: KBIC Boundary Case 1 box (1 cubic foot); Box F: Saginaw Case 1 box (1 cubic foot); +Box G: Miscellaneous Unpublished reports 1 box (1 cubic foot); Box H Finding Aids 1 box (.25 cubic ft.); Box I: Various legal cases, acts, statutes, decisions in Canadian cases 1 box (1 cubic foot); Box J: LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage 1 box (1 cubic foot); Box K: Crandon Mine, Menominee Case, treaties US 1 box (1 cubic foot); Box L: Menominee Documents (really 1 Oversized folder on shelf); Box M: Calendars, Reference documents 1 box (1 cubic foot).

    +

    Also included are 5x8 inch notecards (4 boxes, 1.5 cubic foot), which usually document in one box each: KBIC, Grand Portage, MI and MN Chippewas, and Voigt.

    +

    Lastly, nine oversized folders (larger than legal-size, about .5 cubic foot) include mostly photocopies of a wide variety of maps, treaty signers, genealogy notes and family tree, and land claims.

    +

    All boxes in the collection are 1 cubic foot boxes except for the following: Boxes #15, 25, 68, 74-75 are .5 cubic foot boxes; Box #113 is .25 cubic foot box, Box #117 is really an Overszied folder; Boxes #119-122 are 5x8 inch index card boxes.

    +

    Materials were collected from a plethora of local, state, and national archives and historical institutions, as well as tribal archives, and various courts, both American and Canadian.

    +

    Abbreviations: Professor Cleland and his staff used numerous, and sometimes various, abbreviations for institutions, record groups and/or series names or other citations. Some of these were obvious to the processors, others were not. Many of these abbreviations are not identified in this finding aid. For example, enclosure is abbreviated multiple ways. These variations were retained during processing. Some of these variations are obvious and can be deduced by researchers from the materials.

    +

    Also, due to the length of the collection, a number of abbreviations and grammatical changes were implemented by the archivist.

    +

    The archivist also deleted: ["no reference" and "incomplete reference"], the, a, or an (articles) at the beginning of a title; Anonymous or Author unknown or a.u.; unknown dates, undated, ND, or n.d. and s.u. Marian also changed: Microfilm to micro and “and” to and; and abbreviated certain common words, as noted below, and the names of months.

    +

    Abbreviations used widely by Professor Cleland, his staff, and Marian the Archivist include: ABCFM=American Board of Commissioners for Foreign Missions; AFCP=American Fur Company Papers; AG=Attorney General; ARCOIA=Annual Report of Commissioners of Indian Affairs; B or Bx=Box; BBC=Bishop Baraga Collection; BIA=Bureau of Indian Affairs; ca.=circa; CCF=Central classified files; CMU=Central Michigan University; CHL=Clarke Historical Library; Co.=County; COIA=Commissioner/s of Indian Affairs; Corp.=Corporation; Dist.=District; E=East, not eastern; encl.=enclosure or enclosed; GLO=General Land Office; HR=House of Representatives; HS=Historical Society; ICC=Indian Claims Commission; IL=Illinois; IN=Indiana; JL=Journal; LC=Library of Congress; LLL=Letters of Lucius Lyon; LRBO-OHC=Little River Band-Oral History Collection; Ltd.=Limited; MH=Michigan History (a publication); MHM=Michigan History Magazine (a publication); MI=Michigan; Misc.=Miscellaneous; MPHC=Michigan Pioneer and Historical Collections (a publication); MN=Minnesota; MS=Mississippi; Mss.=Manuscript; MTRL-JP=Metro Toronto Reference Library-Jarvis Papers; N=North, not Northern; NAM=National Archives microfilm; NEB=Nebraska; NWT=Northwest Territories; OIA=Office of Indian Affairs; US=United States; PAC=Public Archives of Canada (National Archives of Canada); PAO=Public Archives of Ontario; PAO-WJLB=Public Archives of Ontario-William Jones Letterbook; Qly=quarterly; rec=received; S=South, not southern; SAM=State Archives of Michigan; TWP=township; UCA=United Church Archives; U.P.=Upper Peninsula; US=United States; UWO, RC-EP= University of Western Ontario, Regional Collection-Evans Papers; W=West, not Western; w/=with; WI=Wisconsin; WL, UWO-WP =Weldon Library, University of Western Ontario, Wawanash Papers.

    +

    Also, the original punctuation used varies. A few of the original folder labels were crossed out partially or entirely. These variations were retained during processing.

    +

    Processing Notes: Only a few duplicate copies were withdrawn from the collection. Several items which had suffered physical damage mostly due to mud or dirt stains or being badly crumpled or torn were copied and the originals were withdrawn from the collection. (The total withdrawn from this collection was less than .25 cubic ft.).

    +

    The vast majority of the collection was organized into series by tribal name or topic, foldered, and labeled before it came to the Clarke. Original folders were maintained in the collection. We endeavored as much as possible to duplicate the original label headings (which varied somewhat from series to series) in the Box and folder listing. Items that were not foldered were foldered by the archivist, and those that were unlabeled were identified and labeled by the archivist.

    +
    + +

    + +

    + + Subjects: + Cleland, Charles E. + McClurken, James M. + Clifton, James A. + Michigan. Office of Attorney General. + United States. Bureau of Indian Affairs--History. + United States. Office of Indian Affairs. + Stockbridge and Munsee Tribe of Indians. + Oral history--Michigan. + Potawatomi Indians--Government relations. + Potawatomi Indians--History. + Potawatomi Indians--Wisconsin. + Ojibwa Indians--Government relations. + Ojibwa Indians--Michigan. + Ojibwa Indians--History. + Ojibwa Indians--Genealogy. + Ojibwa Indians--Legal status, laws, etc.--Wisconsin. + Indians of North America--Michigan. + Indians of North America--Wisconsin. + Indians of North America--Minnesota. + Indians of North America--Ontario--Sarnia--Treaties. + Indians of North America--Ontario--Sarnia--Claims. + Indians of North America--Land tenure--Ontario--Sarnia. + Indians of North America--Government relations. + Indians of North America--Treaties. + Indians of North America--Land tenure. + Indians of North America--Great Lakes Region (North America)--Treaties--History. + Indians of North America-Legal status, laws, etc.--Great Lakes Region (North America)--History. + Indians of North America--Legal status, laws, etc.--History. + Indians of North America--Land tenure--Great Lakes Region (North America)--History. + Bad River Band of the Lake Superior Tribe of Chippewa Indians of the Bad River Reservation, Wisconsin. + Bay Mills Indian Community, Michigan. + Bay Mills Indian Community, Michigan--Land tenure. + Bay Mills Indian Community, Michigan--History. + Bay Mills Indian Community, Michigan--Claims. + Fond du Lac Band of Chippewa Indians. + Forest County Potawatomi Community, Wisconsin. + Lac Courte Oreilles Band of Lake Superior Chippewa Indians of Wisconsin + Menominee Indian Tribe of Wisconsin. + Menominee Indian Tribe of Wisconsin--History. + Menominee Indian Tribe of Wisconsin--Government relations. + Mille Lacs Band of Chippewa Indians. + Saginaw Chippewa Indian Tribe of Michigan--History. + Aamjiwnaang First Nation. + Crandon Mine (Wis.) + Michigan--History. + Minnesota--History. + Wisconsin--History. + Ontario--History. + +
    + + + + Charles E. Cleland Native American research collection. + + + + 1 + 1 + Box 1 Bad River Chippewa, Chronological documents: Annuity Roll 1852 Lake Superior Chippewa,undated + + + + + + 1 + 2 + Box 1 Bad River Chippewa, Chronological documents: NAM M21 R.48 P.78 [0053] Sept. 24, 1853 Nix to Gilbert,undated + + + + + + 1 + 3 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.404:88 Jan. 4, 1854 Gilbert to Manypenny,undated + + + + + + 1 + 4 + Box 1 Bad River Chippewa, Chronological documents: NAM M21 R.49 P.454-457 [0214-0216] Aug. 11, 1854 Manypenny to Gilbert,undated + + + + + + 1 + 5 + Box 1 Bad River Chippewa, Chronological documents: NAM M21 R.49 [446-457] Aug. 12, 1854 Manypenny to Gilbert,undated + + + + + + 1 + 6 + Box 1 Bad River Chippewa, Chronological documents: NAM M21 R.49:0233-0224 Aug. 14, 1854 Manypenny to Gilbert,undated + + + + + + 1 + 7 + Box 1 Bad River Chippewa, Chronological documents: NAM RG.11 M668 R.11 P. [KAPPLER (1904) P.648-652] Sept. 30, 1854 Treaty w/ Chippewa of Lake Sup. and Miss. at Lapointe,undated + + + + + + 1 + 8 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.404 P.487 Dec. 11, 1854 Gilbert to Manypenny,undated + + + + + + 1 + 9 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0027 Jan. 16, 1855,undated + + + + + + 1 + 10 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.404 P.606-610 April 10, 1855 Gilbert to Unknown,undated + + + + + + 1 + 11 + Box 1 Bad River Chippewa, Chronological documents: NAM M21 R.51 P.441-442 May 25, 1855 Manypenny to Gilbert,undated + + + + + + 1 + 12 + Box 1 Bad River Chippewa, Chronological documents: NAM M21 R.52 P.18-19 June 15, 1855 Manypenny to Gilbert,undated + + + + + + 1 + 13 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0020-0021 June 15, 1855 Manypenny to Gilbert,undated + + + + + + 1 + 14 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0119-0120 Aug. 22, 1855 Manypenny to Mix,undated + + + + + + 1 + 15 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 R.0197-0199 Sept. 5, 1855 Chiefs to Great Father,undated + + + + + + 1 + 16 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 R.0109-0110 Sept. 19, 1855,undated + + + + + + 1 + 17 + Box 1 Bad River Chippewa, Chronological documents: NAM M21 R.52 P.385 Sept. 20, 1855 Manypenny to Hendricks,undated + + + + + + 1 + 18 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0146-0147 Oct. 18, 1855,undated + + + + + + 1 + 19 + Box 1 Bad River Chippewa, Chronological documents: ARCIA Nov. 26, 1855 H.C. Gilbert,undated + + + + + + 1 + 20 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0096-0098 Dec. 7, 1855 H. Gilbert to G. Manypenny,undated + + + + + + 1 + 21 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.242-244 [1856],undated + + + + + + 1 + 22 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0254-0255 Jan. 8, 1856 We, the Indians of Bad River, to our father Mr. Manypenny,undated + + + + + + 1 + 23 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 R.0297-0300 Feb. 11, 1856,undated + + + + + + 1 + 24 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0201 Feb. 20, 1856 Gilbert to Unknown,undated + + + + + + 1 + 25 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 R.0252-253 Feb. 23, 1856 Hendricks to McClelland,undated + + + + + + 1 + 26 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0276-0278 Feb. 25, 1856 [enclosed: Feb. 25, 1856],undated + + + + + + 1 + 27 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0287-289 March 12, 1856 Manypenny to McClelland,undated + + + + + + 1 + 28 + Box 1 Bad River Chippewa, Chronological documents: NAM M21 R.53 P.500-501 March 14, 1856 Manypenny to Gilbert,undated + + + + + + 1 + 29 + Box 1 Bad River Chippewa, Chronological documents: NAM M21 R.53 P.502-503 [0228] March 15, 1856 Manypenny to Hendricks,undated + + + + + + 1 + 30 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0282 March 15, 1856 Hendricks to McClelland,undated + + + + + + 1 + 31 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0290-0292 April 16, 1856 Hendricks to Manypenny,undated + + + + + + 1 + 32 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0214-0215 May 10, 1856 Gilbert to Manypenny,undated + + + + + + 1 + 33 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0309-0311 July 10, 1856 Noble to Manypenny,undated + + + + + + 1 + 34 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0408-0411 June 5, 1857,undated + + + + + + 1 + 35 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0526-0528 Feb. 17, 1858 [Enclosed: Petition of Chiefs],undated + + + + + + 1 + 36 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0475-0478 March 4, 1858 A. Fitch to C. Mix,undated + + + + + + 1 + 37 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.406 P.175-182 April 30, 1858 Gilbert to Fuller,undated + + + + + + 1 + 38 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0482-0489 May 22, 1858,undated + + + + + + 1 + 39 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.444-446 Sept. 7, 1858 Center Enclosed: Aug. 31, 1858,undated + + + + + + 1 + 40 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 R.448-450 Sept. 15, 1858 C. Drew to C. Mix,undated + + + + + + 1 + 41 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0515 Oct. 28, 1858,undated + + + + + + 1 + 42 + Box 1 Bad River Chippewa, Chronological documents: ARCIA Nov. 6, 1858 C.K. Drew,undated + + + + + + 1 + 43 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.462-464 Nov. 20, 1858 C. Drew to W.J. (Cullen),undated + + + + + + 1 + 44 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0455-0458 Nov. 20, 1858 [Enclosed in Nov. 25, 1858],undated + + + + + + 1 + 45 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0537-0542 Jan. 28, 1859,undated + + + + + + 1 + 46 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P. Feb. 28, 1859 Drew to Cullen Enclosed: March 5, 1859 Cullen to Drew,undated + + + + + + 1 + 47 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0747 April 6, 1859,undated + + + + + + 1 + 48 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0746 April 19, 1859 H. Rice to C. Mix,undated + + + + + + 1 + 49 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0543-0544 May 30, 1859,undated + + + + + + 1 + 50 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0668-0669 July 3, 1859 C.W. Drew to Unknown,undated + + + + + + 1 + 51 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0703-0704 July 7, 1859 Fitch to Greenwood,undated + + + + + + 1 + 52 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0561 [Aug. 16, 1859] “Cross Ref. Sheet”,undated + + + + + + 1 + 53 + Box 1 Bad River Chippewa, Chronological documents: NAM M24 R.391 P.0578-0581 Sept. 22, 1859,undated + + + + + + 1 + 54 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0687 Oct. 3, 1859,undated + + + + + + 1 + 55 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.392 P.0152-0154 Feb. 2, 1860 [Enclosed: Feb. 12, 1860],undated + + + + + + 1 + 56 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.392 P.01736-0175 Feb. 24, 1860 A.G. to J. Thompson,undated + + + + + + 1 + 57 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.392 P.0049-0050 June 1, 1860,undated + + + + + + 1 + 58 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.392 P. July 22, 1860 Drew to Cullen,undated + + + + + + 1 + 59 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.392 P.0062-0066 Aug. 7, 1860 C.W. Drew to W.J. Cullen [Enclosed: July 22, 1860],undated + + + + + + 1 + 60 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.392 P.0162-0167 Oct. 31, 1860 Petition of Chachegivioh to H. Rice,undated + + + + + + 1 + 61 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.392 P. Jan. 9, 1861 Cullen to Greenwood,undated + + + + + + 1 + 62 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.392 P.0248-0251 Aug. 6, 1861 Thompson to Dole,undated + + + + + + 1 + 63 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.392 P.0218 Nov. 1, 1861,undated + + + + + + 1 + 64 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.392 P.0278-0281 Nov. 14, 1861 Thompson to Dole [Enclosed: Oct. 28, 1861, Webb to Thompson],undated + + + + + + 1 + 65 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.392 P.0294-0296 Nov. 14, 1861 Thompson to Dole [Enclosed: From Nawgounot, Chichogoway, and 5 others],undated + + + + + + 1 + 66 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.392 P.0366-0368 Feb. 6, 1862 Webb to Dole,undated + + + + + + 1 + 67 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.392 P.0370-0371 Feb. 6, 1862 Webb to Dole,undated + + + + + + 1 + 68 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.392 P.0322-0323 April, 1862 G, Day to Dole,undated + + + + + + 1 + 69 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.392 P.0434-0436 Nov. 11, 1862 C.G. Wylcoff to W. Dole,undated + + + + + + 1 + 70 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.392 P.0442-0445 Dec. 9, 1862,undated + + + + + + 1 + 71 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.392 P.0442-0445 Dec. 9, 1862,undated + + + + + + 1 + 72 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.393 P.0128-0129 Feb. 17, 1863 Webb to Dole,undated + + + + + + 1 + 73 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.393 P.0006-0007 March 6, 1863 Chiefs to Dole,undated + + + + + + 1 + 74 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.393 P.0029 May 13, 1863,undated + + + + + + 1 + 75 + Box 1 Bad River Chippewa, Chronological documents: Kappler May 25, 1863,undated + + + + + + 1 + 76 + Box 1 Bad River Chippewa, Chronological documents: [NAM M234 R.393 P.] June 3, 1863 to Dole,undated + + + + + + 1 + 77 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.393 Aug. 13, 1863 Webb to Dole,undated + + + + + + 1 + 78 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.393 P. Jan. 17, 1864 to Dole,undated + + + + + + 1 + 79 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0235 Jan. 26, 1864 Wilson to Dole,undated + + + + + + 1 + 80 + Box 1 Bad River Chippewa, Chronological documents: NAM M21 R.73 P. Jan. 29, 1864 to Edmunds,undated + + + + + + 1 + 81 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.393 P.0237 Feb. 5, 1864,undated + + + + + + 1 + 82 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.393 P. Feb. 15, 1864 Webb,undated + + + + + + 1 + 83 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.393 P.0376 Nov. 18, 1864 Chiefs and Headman to Sec. of Int.,undated + + + + + + 1 + 84 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.393 P.0561-0562 Feb. 6, 1865 Webb to Dole,undated + + + + + + 1 + 85 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.393 P.0567-0570 Feb. 11, 1865 Webb to Dole,undated + + + + + + 1 + 86 + Box 1 Bad River Chippewa, Chronological documents: NAM M.234 R.393 P.0574-0575 May 13, 1865 Warren to Mix,undated + + + + + + 1 + 87 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.393 P.0163-0165 Aug. 13, 1865 Webb to Dole,undated + + + + + + 1 + 88 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.39 P. Nov. 10, 1865 Webb to Unknown,undated + + + + + + 1 + 89 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.393 P.0702-0703 Dec. 16, 1865 Webb to Cooley,undated + + + + + + 1 + 90 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.393 P.0673-0674 Feb. 24, 1866 to Cooley,undated + + + + + + 1 + 91 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.393 P. Aug. 8, 1866 Webb Enclosed: July 18, 1866,undated + + + + + + 1 + 92 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.393 Oct. 12, 1867 to Taylor,undated + + + + + + 1 + 93 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.394 P.0337-0039 March 7, 1868 Webb to Washburn,undated + + + + + + 1 + 94 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.394 P.0297 March 24, 1865,undated + + + + + + 1 + 95 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.394 P.267-268 July 20, 1868 Cox to COIA,undated + + + + + + 1 + 96 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.394 P.0354 Aug. 24, 1868 Whittlesey to Taylor,undated + + + + + + 1 + 97 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.394 P.0537-0539 Jan. 23, 1869 Whittlesey to Taylor,undated + + + + + + 1 + 98 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.394 P.0547-0548 Feb. 4, 1869 Whittlesey to Taylor,undated + + + + + + 1 + 99 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.394 P.0555-0556 March 23, 1869 Whittlesey to COIA,undated + + + + + + 1 + 100 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.394 P.0563-0564 April 19, 1869 Whittlesey to Taylor,undated + + + + + + 1 + 101 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.394 P.0567-0569 April 28, 1869,undated + + + + + + 1 + 102 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.394 P.583-0585 June 16, 1869 Whittlesey to Conklin [Enclosed: Chiefs and Headman to COIA],undated + + + + + + 1 + 103 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.234 P.0394 July 8, 1869 Knight to Parker,undated + + + + + + 1 + 104 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.394 P.0465-0470 July 12, 1869 Knight to Parker,undated + + + + + + 1 + 105 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.394 P.0485-0486 Sept. 12, 1869 Speech of Blackbird of Bad River,undated + + + + + + 1 + 106 + Box 1 Bad River Chippewa, Chronological documents: Annuity Roll 1870 Lake Superior Chippewa,undated + + + + + + 1 + 107 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.394 P.0833-0835 Jan. 31, 1870 Clark to Parker,undated + + + + + + 1 + 108 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.394 P.0713 May 24, 1870 Knight to Parker,undated + + + + + + 1 + 109 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.394 P.0626-0631 Nov. 7, 1870 Clark to Parker,undated + + + + + + 1 + 110 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.394 P.0639 Nov. 10, 1870 Clark to Parker,undated + + + + + + 1 + 111 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.394 P.0644-0647 Nov. 24, 1870 Clark to Parker,undated + + + + + + 1 + 112 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.394 P.064-0649 Nov. 30, 1870 Clark to Parker,undated + + + + + + 1 + 113 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.394 P.0902-0903 Sept. 18, 1871 Cushman to COIA,undated + + + + + + 1 + 114 + Box 1 Bad River Chippewa, Chronological documents: NAM M21 R.103:118-120 Sept. 28, 1871 Clum to Cushman,undated + + + + + + 1 + 115 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.394 P. Jan. 22, 1872 to Walker,undated + + + + + + 1 + 116 + Box 1 Bad River Chippewa, Chronological documents: Sec. of Interior letters, Congressional Globe, Congressional Record, etc. Appropriations Act of May 20, 1872,undated + + + + + + 1 + 117 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.394 P.1049-1051 Dec. 9, 1872 Jones to Walker,undated + + + + + + 1 + 118 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.394 P.1035 Dec. 12, 1872 W.D. to Walker,undated + + + + + + 1 + 119 + Box 1 Bad River Chippewa, Chronological documents: NAM M21 R.110 P.212 Dec. 17, 1872 Walker to Unknown,undated + + + + + + 1 + 120 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.395 P.0200 April 6, 1873 Drummond to Smith,undated + + + + + + 1 + 121 + Box 1 Bad River Chippewa, Chronological documents: NAM M21 R.112 P.142 April 19, 1873 Smith to GLO,undated + + + + + + 1 + 122 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.395 P.0078-0079 June 23, 1873 Henderson to Smith,undated + + + + + + 1 + 123 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.395 P.0477 D.351 Aug. 7, 1873 Testimony of Louis E. Montfinan and John W. Ball,undated + + + + + + 1 + 124 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.395 P.0114-0115 Aug. 26, 1873 Henderson to Unknown,undated + + + + + + 1 + 125 + Box 1 Bad River Chippewa, Chronological documents: NAM M348 R.23 P. Oct. 30, 1873 Clum to Delano,undated + + + + + + 1 + 126 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.395 P.0126 Oct. 31, 1873 Henderson to Clum,undated + + + + + + 1 + 127 + Box 1 Bad River Chippewa, Chronological documents: NAM M21 R.114:424-425 Nov. 12, 1873 Smith to Unknown,undated + + + + + + 1 + 128 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.395 P.0481-486 Dec. 11, 1873 Testimony of Erwin Leghy [Enclosed: List of Bands],undated + + + + + + 1 + 129 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.395 P.0489 Dec. 22, 1873/1874 Jiga Ki’ash to Mr. Gurnoe,undated + + + + + + 1 + 130 + Box 1 Bad River Chippewa, Chronological documents: NAM M2324 R.395 P.0400-0401 Jan. 7, 1874 J. Buffalo to COIA,undated + + + + + + 1 + 131 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.395 P.0397-0399 Jan. 15, 1874 Bottunteau to Smith,undated + + + + + + 1 + 132 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.395 P.0462-0464 Jan. 23, 1874 Gurnoe to Mahan,undated + + + + + + 1 + 133 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.395 P.0402-0403 March 28, 1874 J. Buffalo to Smith,undated + + + + + + 1 + 134 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.395 P.0555 March 30, 1874 to Smith,undated + + + + + + 1 + 135 + Box 1 Bad River Chippewa, Chronological documents: NAM M21 R.116 P.536-537 April 2, 1874 Smith to Unknown,undated + + + + + + 1 + 136 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.395 P.0755 Sept. 30, 1874 Mahan to Smith Enclosed: Chiefs and Headmen of Red Cliff,undated + + + + + + 1 + 137 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.395 P.0393-0396 Dec. 1, 1874 Mahan to Unknown,undated + + + + + + 1 + 138 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.395 P.0527 Dec. 9, 1874 Henderson to Comm. GLO,undated + + + + + + 1 + 139 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.033-034 Jan. 19, 1875 Clarke to Smith,undated + + + + + + 1 + 140 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0177-0178 Jan. 27, 1875 Pratt to Mahan,undated + + + + + + 1 + 141 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0163-0166 Feb. 9, 1875 Mahan to Smith,undated + + + + + + 1 + 142 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0174 Feb. 13, 1875 Mahan to Smith,undated + + + + + + 1 + 143 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0083-0084 March 22, 1875 Delano to COIA,undated + + + + + + 1 + 144 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0098-0101 May 17, 1875,undated + + + + + + 1 + 145 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0261 June 7, 1875 Eeferson [spelled correctly] to Mahan,undated + + + + + + 1 + 146 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0280 July 8, 1875 Mahan to Smith,undated + + + + + + 1 + 147 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0016-0021 Sept. 15, 1875 Armstrong to Smith,undated + + + + + + 1 + 148 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.401-404 Sept. 27, 1875 Royce to Smith,undated + + + + + + 1 + 149 + Box 1 Bad River Chippewa, Chronological documents: NAM M348 R.27 P. Sept. 29, 1875,undated + + + + + + 1 + 150 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0317 Sept. 29, 1875 Mahan to Smith,undated + + + + + + 1 + 151 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0103-0104 Sept. 30, 1875,undated + + + + + + 1 + 152 + Box 1 Bad River Chippewa, Chronological documents: Oct. 1875 List of Allottees,undated + + + + + + 1 + 153 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0121-0128 Oct. 22, 1875 Enclosed: La Pointe Rez, etc.,undated + + + + + + 1 + 154 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0030-0031 Nov. 25, 1875 John, AJ Buffalo to COIA,undated + + + + + + 1 + 155 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.406-411 Nov. 27, 1875 Royce to Smith,undated + + + + + + 1 + 156 + Box 1 Bad River Chippewa, Chronological documents: NAM M21 R.128 Dec. 3, 1875 Smith to GLO,undated + + + + + + 1 + 157 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0541-0544 Jan. 29, 1876 Mahan to Smith,undated + + + + + + 1 + 158 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0509-0512 Feb. 11, 1876 Knight,undated + + + + + + 1 + 159 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0549-0550 Feb. 25, 1876 Mahan to Smith,undated + + + + + + 1 + 160 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0582-0583 April 8, 1876 Mahan to Smith [Enclosed: Petition from J. Antonio and J. Buffalo],undated + + + + + + 1 + 161 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0639-0640 June 20, 1876 Mahan to Smith,undated + + + + + + 1 + 162 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0675 July 26, 1876 to Smith,undated + + + + + + 1 + 163 + Box 1 Bad River Chippewa, Chronological documents: NAM M21 R.132 P.2-3 Aug. 28, 1876 Smith to Mahan,undated + + + + + + 1 + 164 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0716 Sept. 4, 1876 Mahan to Smith,undated + + + + + + 1 + 165 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0718-0719 Sept. 4, 1876 Mahan to Smith Enclosed: 2 Allottees,undated + + + + + + 1 + 166 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.397 P.0483-0485 Sept. 13, 1877 Mahan to Smith,undated + + + + + + 1 + 167 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0878-0879 Oct. 6, 1876 Tompkins to Unknown,undated + + + + + + 1 + 168 + Box 1 Bad River Chippewa, Chronological documents: NAM M21 R.132 P.151 Oct. 23, 1876 Galpin to Mahan,undated + + + + + + 1 + 169 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0834 Nov. 24, 1876 Mahan to Smith,undated + + + + + + 1 + 170 + Box 1 Bad River Chippewa, Chronological documents: NAM M348 R.28 P. Feb. 16, 1877 Smith to Thomkson,undated + + + + + + 1 + 171 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.397 P. Feb. 17, 1877,undated + + + + + + 1 + 172 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.397 P.0038-0039 Feb. 20, 1877 Chandler to Unknown Enclosed: Feb. 17, 1877,undated + + + + + + 1 + 173 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.397 P.0070-71 March 26, 1877 Mahan to Smith,undated + + + + + + 1 + 174 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.397 P.0225-0226 Sept. 21, 1877 Mahan to Smith,undated + + + + + + 1 + 175 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.397 P.0269-0270 Oct. 24, 1877 Mahan to Hoyt,undated + + + + + + 1 + 176 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.397 P.0464-466 Nov. 19, 1877,undated + + + + + + 1 + 177 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.397 P.0031-0032 Dec. 5, 1877 to Hoyt,undated + + + + + + 1 + 178 + Box 1 Bad River Chippewa, Chronological documents: NAM M21 R.140 P.216-217 Dec. 11, 1877 A. Bell to I. L. Mahan,undated + + + + + + 1 + 179 + Box 1 Bad River Chippewa, Chronological documents: NAM M21 R.138 P.276-277 Dec. 17, 1877 Hoyt to Howe,undated + + + + + + 1 + 180 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.398 P.0181 Jan. 18, 1878 Mahan to Hoyt,undated + + + + + + 1 + 181 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.398 P.0045-0049 Jan. 29, 1878 Baird to Lowrie,undated + + + + + + 1 + 182 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.398 P.0212-0213 Jan. 30, 1878 Names of Bad River Chiefs,undated + + + + + + 1 + 183 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.398 P.0214 Jan. 31, 1878 Rice Lake Chiefs to Chippeway Brothers,undated + + + + + + 1 + 184 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.398 P.0018-0019 Feb. 27, 1878 John and A.J. Buffallo to Unknown,undated + + + + + + 1 + 185 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.398 P.0164-0166 March 11, 1878 Lowrie to Hoyt Enclosed: March 2, 1878 Baird to Lowrie,undated + + + + + + 1 + 186 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.398 P.0066-0067 March 16, 1878,undated + + + + + + 1 + 187 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.398 P.0240-0243 April 8, 1878 Mahan to Hoyt,undated + + + + + + 1 + 188 + Box 1 Bad River Chippewa, Chronological documents: AM M234 R.398 P.0153 May 20, 1878 Mobley to COIA,undated + + + + + + 1 + 189 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.398 P.0338 June 24, 1878 N and F Boutin, dealers in Uc. Sp. Whitefish and Trent,undated + + + + + + 1 + 190 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.398 P.0384 July 29, 1878 Mahan to Hoyt,undated + + + + + + 1 + 191 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.398 P.0533-0535 Sept. 6, 1878 Newland to Schurtz Enclosed: May 11, 1867,undated + + + + + + 1 + 192 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.398 P.0169-0170 Oct. 11, 1878 Gurnoe to Unknown,undated + + + + + + 1 + 193 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.398 P.0477 Oct. 29, 1878 Mahan to Hoyt,undated + + + + + + 1 + 194 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.399 P.0520-0521 Dec. 14, 1878 (Mahan) to Hoyt,undated + + + + + + 1 + 195 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.399 P.0237 June 14, 1879 Walker to Mahan,undated + + + + + + 1 + 196 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.400 P.0358-0360 July 24, 1879 to Marble, Map Enclosed,undated + + + + + + 1 + 197 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.399 P.0082 Dec. 9, 1879 Stickney to Sec. of Interior,undated + + + + + + 1 + 198 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.400 P.200 July 26, 1880 Mahan to Trowbridge,undated + + + + + + 1 + 199 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.400 P.290 Sept. 22, 1880 Mahan to Trowbridge,undated + + + + + + 1 + 200 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.400 P.0072-0073 Oct. 8, 1880 to Marble,undated + + + + + + 1 + 201 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.400 P.0296-0297 Oct. 12, 1880 Mahan to Unknown,undated + + + + + + 1 + 202 + Box 1 Bad River Chippewa, Chronological documents: NAM M234 R.400 P.0371-0373 Dec. 10, 1880 Mahan to Marble,undated + + + + + + 1 + 203 + Box 1 Bad River Chippewa, Chronological documents: B.R.T.F. Dec. 9, 1887,undated + + + + + + 1 + 204 + Box 1 Bad River Chippewa, Chronological documents: 28 STAT 970 Bill to Enlarge the Red Cliff Reservation Feb. 20, 1895,undated + + + + + + 1 + 205 + Box 1 Bad River Chippewa, Chronological documents: Annuity Roll 1907 Bad River Band,undated + + + + + + 1 + 206 + Box 1 Bad River Chippewa, Chronological documents: NA RG.75 CCF-LP:3097-1913-059 Jan. 11, 1913 Adams to Abbott [Enclosed: July 1, 1977],undated + + + + + + 1 + 207 + Box 1 Bad River Chippewa, Chronological documents: NA RG.75 CCF-LP:50256-1916-115 June 7, 1916 Meritt to Rice,undated + + + + + + 1 + 208 + Box 1 Bad River Chippewa, Chronological documents: NA RG.75 CCF-LP:50256-1916-115 March 7, 1917 Meritt to Rice,undated + + + + + + 1 + 209 + Box 1 Bad River Chippewa, Chronological documents: NA RG.75 CCF-LP:28845-1917-304.2 March 19, 1917 Lamoreux to Merritt,undated + + + + + + 1 + 210 + Box 1 Bad River Chippewa, Chronological documents: NA RG75 CCF-LP:50256-1916-115 Aug. 18, 1919 Meritt to Armstrong,undated + + + + + + 1 + 211 + Box 1 Bad River Chippewa, Chronological documents: NA RG CCF-MAC:21722-1922-175 Sept. 5 [1922?],undated + + + + + + 1 + 212 + Box 1 Bad River Chippewa, Chronological documents: NA RG75 CCF-LP:49942-1923-305 [Rd, June 11, 1924] Petition at Lapointe Band,undated + + + + + + 1 + 213 + Box 1 Bad River Chippewa, Chronological documents: NA RG75 CCF-LP:78326-1925-115 Feb. 23, 1928 Morrison to Burke,undated + + + + + + 1 + 214 + Box 1 Bad River Chippewa, Chronological documents: BRTF Feb. 1988 Memorandum on Amnicon Bay Homeowner Assoc.- lease w/ Bad River,1988 + + + + + + 1 + 215 + Box 1 Bad River Chippewa, Chronological documents: BRTF June 16, 1989 resolution,1989 + + + + + + 1 + 216 + Box 1 Bad River Chippewa, Chronological documents: Madaline Island Title – Aberdeen Plant,undated + + + + + + 1 + 217 + Box 1 Bad River Chippewa, Chronological documents: ARCIA 1863 Oct. 1, 1863 L.E. Webb,undated + + + + + + 1 + 218 + Box 1 Bad River Chippewa, Chronological documents: ARCIA Oct. 31, 1870 J. Knight,undated + + + + + + 1 + 219 + Box 1 Bad River Chippewa, Chronological documents: ARCIA 1871 Nov. 1, 1871 S.N. Clark,undated + + + + + + 1 + 220 + Box 1 Bad River Chippewa, Chronological documents: ARCIA 1872,undated + + + + + + 1 + 221 + Box 1 Bad River Chippewa, Chronological documents: ARCIA 1975 Sept. 30, 1875 L.L. Mahan [Also, 1875, J. Bridgman],undated + + + + + + 1 + 222 + Box 1 Bad River Chippewa, Chronological documents: ARCIA 1876 Sept. 5, 1876 L.L. Mahan,undated + + + + + + 1 + 223 + Box 1 Bad River Chippewa, Chronological documents: ARCIA 1877 Sept. 3, 1877 I.L. Mahan,undated + + + + + + 1 + 224 + Box 1 Bad River Chippewa, Chronological documents: ARCIA 1878 Sept. 1, 1878 I.L. Mahan,undated + + + + + + 1 + 225 + Box 1 Bad River Chippewa, Chronological documents: ARCIA 1879 Nov. 1, 1879,undated + + + + + + 1 + 226 + Box 1 Bad River Chippewa, Chronological documents: ARCIA 1880 Aug. 21, 1880 S.E. Mahan,undated + + + + + + 1 + 227 + Box 1 Bad River Chippewa, Chronological documents: ARCOIA 1882,undated + + + + + + 1 + 228 + Box 1 Bad River Chippewa, Chronological documents: ARCOIA 1886,undated + + + + + + 1 + 229 + Box 1 Bad River Chippewa, Chronological documents: NA Central Map File Map 550 1859,undated + + + + + + 1 + 230 + Box 1 Bad River Chippewa, Chronological documents: NA- Chicago Map. Timber Estimates for Bad River 1918,undated + + + + + + 1 + 231 + Box 1 Bad River Chippewa, Chronological documents: Royce Maps – WI, Bureau of Ethnology 18th Annual Report 1899,undated + + + + + + 1 + 232 + Box 1 Bad River Chippewa, Chronological documents: Bureau of Land Management Reservation on Map 1953,undated + + + + + + 1 + 233 + Box 1 Bad River Chippewa, Chronological documents: DE Jong – Legislative History of Bad River Band,undated + + + + + + 1 + 234 + Box 1 Bad River Chippewa, Chronological documents: ASHLAND County PLAT Book 1986,1986 + + + + + + 1 + 235 + Box 1 Bad River Chippewa, Chronological documents: Ross, H.N. 1960 La Pointe – Village Outpost,undated + + + + + + 1 + 236 + Box 1 Bad River Chippewa, Chronological documents: Crandall, Sister Mary – WPA History Project Bad River Res.,undated + + + + + + 1 + 237 + Box 1 Bad River Chippewa, Chronological documents: Rowell, W. A. 1932 Story of the Old Mission,undated + + + + + + 1 + 238 + Box 1 Bad River Chippewa, Chronological documents: 34 STAT 382 Bill to Plot a Towndite at Bad River,undated + + + + + + 2 + 1 + Box 2 Bad River Chippewa, Chronological documents: ABCFM BA10 A512b Box 1 May 1833,undated + + + + + + 2 + 2 + Box 2 Bad River Chippewa, Chronological documents: ARCOIA 1850:75-96,undated + + + + + + 2 + 3 + Box 2 Bad River Chippewa, Chronological documents: NAM M842 R.4:754-55 July 25, 1852,undated + + + + + + 2 + 4 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.404 P.184-190 Dec. 10, 1853 Gilbert to Manypenny,undated + + + + + + 2 + 5 + Box 2 Bad River Chippewa, Chronological documents: NA RG75 T494 R.5 P.133-139 Oct. 17, 1854 Gilbert to Manypenny,undated + + + + + + 2 + 6 + Box 2 Bad River Chippewa, Chronological documents: NAM M21 R.50 Oct. 27, 1854 Manypenny to Gilbert,undated + + + + + + 2 + 7 + Box 2 Bad River Chippewa, Chronological documents: NAM M21 R.50 P.262 [0132] Dec. 2, 1854 Manypenny to Wilson,undated + + + + + + 2 + 8 + Box 2 Bad River Chippewa, Chronological documents: NA Central Map File Map 910 1855,undated + + + + + + 2 + 9 + Box 2 Bad River Chippewa, Chronological documents: NA Central Map File Map 793 1855,undated + + + + + + 2 + 10 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0112-0113 March 30, 1855 J. Wilson to Lewis,undated + + + + + + 2 + 11 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0050-0051 June 9, 1855,undated + + + + + + 2 + 12 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0105 Aug. 27, 1855 G. Manypenny to C. Mix,undated + + + + + + 2 + 13 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0122 Aug. 27, 1855 Aug. 27, 1855 G. Manypenny to C. Mix,undated + + + + + + 2 + 14 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0107 Sept. 22, 1855 T. Hendricks to G. Manypenny,undated + + + + + + 2 + 15 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0140-0144 Oct. 1855 L.H. Wheeler to G. Manypenny,undated + + + + + + 2 + 16 + Box 2 Bad River Chippewa, Chronological documents: NAM M21 R.53 P.38-39 Nov. 12, 1855 Manypenny to Baraga,undated + + + + + + 2 + 17 + Box 2 Bad River Chippewa, Chronological documents: NAM M21 R.51 P.415 Jan. 7, 1856 Manypenny to Gilbert,undated + + + + + + 2 + 18 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0367-0368 Feb. 9, 1857 5 of Buffalo’s Band to G. Manypenny,undated + + + + + + 2 + 19 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.417-418 Sept. 15, 1857 T. Hendricks to C. Mix,undated + + + + + + 2 + 20 + Box 2 Bad River Chippewa, Chronological documents: Oct. 26, 1857 Denver to Fitch,undated + + + + + + 2 + 21 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0507 May 31, 1858 T. Henricks to C. Mix,undated + + + + + + 2 + 22 + Box 2 Bad River Chippewa, Chronological documents: ARCOIA Nov. 26, 1859 C.K. Drew,undated + + + + + + 2 + 23 + Box 2 Bad River Chippewa, Chronological documents: NA Central Map File Map 549 1859,undated + + + + + + 2 + 24 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0752-0754 April, 1859 Wheeler to Mix,undated + + + + + + 2 + 25 + Box 2 Bad River Chippewa, Chronological documents: NA RG.75 E.107 “Sec. Order Fukes” Oct. 26, 1857 June 23, 1859 Drew to Cullen,undated + + + + + + 2 + 26 + Box 2 Bad River Chippewa, Chronological documents: NA RG.75 E.107 “Exec. Order Files” Aug. 16, 1859 Cullen to Greenwood,undated + + + + + + 2 + 27 + Box 2 Bad River Chippewa, Chronological documents: NAM M21 R.62 P. Sept. 17, 1859 Mix to GLO,undated + + + + + + 2 + 28 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.391 P.0588-0597 Sept. 28, 1859 C.K. Drew to W.J. (Cullen),undated + + + + + + 2 + 29 + Box 2 Bad River Chippewa, Chronological documents: ARCOIA Nov. 30, 1860 W. Cullen,undated + + + + + + 2 + 30 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.392 P.0041-0044 March 16, 1860 J.W. Cullen to A. Greenwood,undated + + + + + + 2 + 31 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.392 P.0051-0052 May 25, 1860,undated + + + + + + 2 + 32 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.392 P.0058-0059 July 27, 1860 C. Drew to W.J. Cullen,undated + + + + + + 2 + 33 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.392 P.007-0010 Aug. 24, 1860 G. Bailey to C. Mix,undated + + + + + + 2 + 34 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.392 P. Dec. 10, 1860 Drew to Cullen,undated + + + + + + 2 + 35 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.392 P.0325-0330 Dec. 16, 1862 Gates and Clarke to C.B. Smith,undated + + + + + + 2 + 36 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.393 P.0130 Feb. 18, 1863 Webb to Dole,undated + + + + + + 2 + 37 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.393 P.0088-0089 May 1, 1863,undated + + + + + + 2 + 38 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.393 P.0088-0089 May 1, 1863,undated + + + + + + 2 + 39 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.393 P.0059-0060 May 27, 1863,undated + + + + + + 2 + 40 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.393 P.0150-0151 June 26, 1863 Webb to Dole,undated + + + + + + 2 + 41 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.393 P.0166 Aug. 17, 1863 Webb to Dole,undated + + + + + + 2 + 42 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.393 P.0108-0109 Oct. 20, 1863 Webb to Thompson,undated + + + + + + 2 + 43 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.393 P.0466-470 Oct. 1864 F. McElroy to Dole,undated + + + + + + 2 + 44 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.393 P.0462-0465 Oct. 25, 1865 to Cooley,undated + + + + + + 2 + 45 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 T.395 P.0466-0465 D.351 Nov. 18, 1865,undated + + + + + + 2 + 46 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 P.393 P.0708 Feb. 10, 1866 Webb to Cooley,undated + + + + + + 2 + 47 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.393 P.0758 May 29, 1866 Webb to Cooley,undated + + + + + + 2 + 48 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.393 P.0076 June 26, 1866 Webb to D. Cooley,undated + + + + + + 2 + 49 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.394 P.0391-0394 Dec. 19, 1868 [enclosed: Dec. 7, 1868 Schultz to Fairchild],undated + + + + + + 2 + 50 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.394 P.0391-0394 Dec. 19, 1868 [enclosed: Dec. 7, 1868 Schultz to Fairchild],undated + + + + + + 2 + 51 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.394 P.0491-0494 Oct. 12, 1869 Knight to Parker,undated + + + + + + 2 + 52 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.394 P.0696 Jan. 10, 1870,undated + + + + + + 2 + 53 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.394 P. Feb. 1, 1872 Clark to Walker,undated + + + + + + 2 + 54 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.399 P.0083 May 20, 1872,undated + + + + + + 2 + 55 + Box 2 Bad River Chippewa, Chronological documents: NAM M2340 R.395 P.0472-0475 D.351 1873 Signatures of Chiefs and Headmen,undated + + + + + + 2 + 56 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.395 P.0230-0231 Aug. 7, 1873 Mahan to Smith,undated + + + + + + 2 + 57 + Box 2 Bad River Chippewa, Chronological documents: [NAM M234 R.394/395 P.] Oct. 1, 1873,undated + + + + + + 2 + 58 + Box 2 Bad River Chippewa, Chronological documents: NAM M2342 R.395 P.0127-0130 Nov. 10, 1873 [Enclosed: Oct., Chiefs of Bad River],undated + + + + + + 2 + 59 + Box 2 Bad River Chippewa, Chronological documents: NAM M21 R.114 P.363 Oct. 29, 1873 Smith to Mahan,undated + + + + + + 2 + 60 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.395 P.0469-0470 D.351 Dec. 16, 1873 Testimony of Marie Buffalo,undated + + + + + + 2 + 61 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.395 P.0535-37 May 14, 1874 Henderson to Smith,undated + + + + + + 2 + 62 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.344-345 Oct. 13, 1875 Mahan to Smith,undated + + + + + + 2 + 63 + Box 2 Bad River Chippewa, Chronological documents: NAM M21 R.128 P.134 Dec. 7, 1875,undated + + + + + + 2 + 64 + Box 2 Bad River Chippewa, Chronological documents: NAM M348 R.27 P. Feb. 1, 1876 Smith to Royce,undated + + + + + + 2 + 65 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0594-0596 April 20, 1876 Mahan to Smith,undated + + + + + + 2 + 66 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0873-0877 June 1876 Tompkins to [Enclosed: Flat Map by Tompkins],undated + + + + + + 2 + 67 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0659-0664 July 22, 1876 Mahan to Smith,undated + + + + + + 2 + 68 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.396 P.0064-0672 July 26, 1876 Mahan to Smith [Enclosed: Chiefs to Redcliff],undated + + + + + + 2 + 69 + Box 2 Bad River Chippewa, Chronological documents: NAM M21 R.132 P.160-161 Oct. 26, 1876 Galpin to Tompkins,undated + + + + + + 2 + 70 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.398 P.0259-0278 April 23, 1878 Mahan to Hoyt [Enclosed: List of heads of families and individuals, Redcliff and Bad River],undated + + + + + + 2 + 71 + Box 2 Bad River Chippewa, Chronological documents: NAM M234 R.400 P.0388-0390 Dec. 18, 1880 to Marble,undated + + + + + + 2 + 72 + Box 2 Bad River Chippewa, Chronological documents: NA Central Map File. Map 847 Feb. 15, 1915,undated + + + + + + 2 + 73 + Box 2 Bad River Chippewa, Chronological documents: NA RG.75 CCF-LP:29207-1915-115 March 12, 1915 T. Cloud to Sells,undated + + + + + + 2 + 74 + Box 2 Bad River Chippewa, Chronological documents: NA RG.75 CCF-LP:29207-1915-115 March 22, 1915 Meritt to Everest,undated + + + + + + 2 + 75 + Box 2 Bad River Chippewa, Chronological documents: NA RG.75 CCF-LP:29207-1915-115 March 26, 1915 to COIA,undated + + + + + + 2 + 76 + Box 2 Bad River Chippewa, Chronological documents: NA RG.75 CCF-LP:29207-1915-115 April 28, 1915 Meritt to Cloud,undated + + + + + + 2 + 77 + Box 2 Bad River Chippewa, Chronological documents: NA RG.75:50256-1916-116 March 12, 1919 Rice to COIA,undated + + + + + + 2 + 78 + Box 2 Bad River Chippewa, Chronological documents: NA RG.75 CCF-LP:50256-1916-115 Aug. 5, 1919 C. Armstrong and Deumoy to COIA,undated + + + + + + 2 + 79 + Box 2 Bad River Chippewa, Chronological documents: BRTF Aug. 25, 1986 M. Anderson to C. Jackson,undated + + + + + + 2 + 80 + Box 2 Bad River Chippewa, Chronological documents: BRTF Sept. 2, 1981 P. Berlin to E. Soulier,undated + + + + + + 2 + 81 + Box 2 Bad River Chippewa, Chronological documents: BRTF Nov. 17, 1994 R. Jeager to E. Drake,undated + + + + + + 2 + 82 + Box 2 Bad River Chippewa, Chronological documents: Bad River Archives Dec. 6, 1994 Memo J. Morrison to L. Morrin,undated + + + + + + 2 + 83 + Box 2 Bad River Chippewa, Chronological documents: BRTF Jan. 6, 1999 E. Drake to Superintendent,undated + + + + + + 2 + 84 + Box 2 Bad River Chippewa, Chronological documents: FMAO-BIA April 30, 1996 Nicklason Rept.-Madeline ISL, Bad River,undated + + + + + + 2 + 85 + Box 2 Bad River Chippewa, Chronological documents: FMAO-BIA June 26, 1996 (Files Minneapolis Area Office),undated + + + + + + 2 + 86 + Box 2 Bad River Chippewa, Chronological documents: BRTF Oct. 17, 1996 J. Wilmer to F. Wall,undated + + + + + + 2 + 87 + Box 2 Bad River Chippewa, Chronological documents: BIA Reservation Maps 1874, 1880, 1888, 1893, 1902, 1915, 1971 and 1987,1987 + + + + + + 2 + 88 + Box 2 Bad River Chippewa, Chronological documents: FMAO-BIA ,June 12, 1995 + + + + + + 2 + 89 + Box 2 Bad River Chippewa, Chronological documents: Madeline Island Reserve Ownership Issue (Bad River and Red Cliff bands of Chippewa, WI), Materials,1997 + + + + + + 3 + 1 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: SAM RG44 B67: F19,undated + + + + + + 3 + 2 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: [CHL-BP] Clarke Historical Library-Bingham Papers, Copies of microfilm for Reference/Citation,undated + + + + + + 3 + 3 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: Aurora Association R.A.C., Maps Guide Notes-Usage and Occupancy Sites in the 1836 Treaty Zone,undated + + + + + + 3 + 4 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V15: 16-17 Aug. 2, 1619, “Law to Promote Conversion of Indians to Christianity.” VA,undated + + + + + + 3 + 5 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V15: 40-3 Oct. 10, 1649, Law to Establish Pamunkey Reservation, VA,undated + + + + + + 3 + 6 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V4: 10-71 July 5, 1653 Orders of VA Assembly,undated + + + + + + 3 + 7 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V15: 51 Dec. 1, 1656, “Law to Protect Indians and Punish their Crimes”,undated + + + + + + 3 + 8 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V15: 54 Oct. 11, 1660, “Law to Protect Accomack Lands”,undated + + + + + + 3 + 9 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V15: 62-65 March 23, 1662, “Law to Improve Relations w/ Indians”,undated + + + + + + 3 + 10 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V6: 54-57 April 11 and 19, 1666, Speeches to MD Assembly, Treaty w/ Piscatawzy, etc.,undated + + + + + + 3 + 11 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID V6: 63 May 1, 1668 Treaty w/ Nanticokes,undated + + + + + + 3 + 12 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V4: 82-87 May 29, 1677 VA Treaty of Middle Plantation,undated + + + + + + 3 + 13 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V6: 95-96 March 28, 1678 MD Treaty w/ Nanticokes,undated + + + + + + 3 + 14 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V6: 203-6 May 14, 1692 Treaty of Piscatawzy, Mattawomans and Chopticos,undated + + + + + + 3 + 15 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V4: 108-9 April 29, 1699,undated + + + + + + 3 + 16 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V6: 212-215 April 8, 1700,undated + + + + + + 3 + 17 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V15: 101 May 12, 1704,undated + + + + + + 3 + 18 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V4: 139-42 Sept. 20, 1704 VA Council Proceedings,undated + + + + + + 3 + 19 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V4:145-7 April, 1705 Rights Tributary Tribes,undated + + + + + + 3 + 20 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V15: 124-7 Oct. 23, 1705,undated + + + + + + 3 + 21 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V4: 160-162 [1708] Petition of Pamunkeys,undated + + + + + + 3 + 22 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V4: 175-7 Oct. 11, 1711 VA Council Proceedings,undated + + + + + + 3 + 23 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V4: 177-178 Oct. 24, 1711 VA Council Proceedings,undated + + + + + + 3 + 24 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V4: 208-9 Jan. 27, 1713 VA Council Proceedings,undated + + + + + + 3 + 25 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V4: 211-216 Feb. 27, 1714 Spotswood’s Treaty w/ Tuscs,undated + + + + + + 3 + 26 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V4: 216-220 Feb. 27, 1714 Spotswood’s Treaty w/ Nottoways,undated + + + + + + 3 + 27 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V4: 220-21 Feb. 27, 1714 Spotswood’s Treaty w/ Saponi,undated + + + + + + 3 + 28 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V15: 133-139 Dec. 24, 1714,undated + + + + + + 3 + 29 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V15: 332 July 10 – Aug. 8, 1729,undated + + + + + + 3 + 30 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V6:223-225 July, 1742 Treaty w/ Ind. River Inds (Naticoke – Eastern Shore Tribe),undated + + + + + + 3 + 31 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V5: 303-306 Dec. 1, 1763 Stuart to Board of Trade,undated + + + + + + 3 + 32 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V5: 326-8 Oct. 14, 1768 Treaty of Hard Labor,undated + + + + + + 3 + 33 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V5: 350-352 Jan. 13, 1770 Stuart to Governor Botetourt,undated + + + + + + 3 + 34 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: EAID-TL V15: 351 Dec. 21, 1773,undated + + + + + + 3 + 35 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: Northwest Ordinance 1787,undated + + + + + + 3 + 36 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: Treaty of Greenville 1795,undated + + + + + + 3 + 37 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: CMU, ACFP/SSMC-GJP; MSSF52 R9 May 31, 1805,undated + + + + + + 3 + 38 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: Territorial Papers Vol. XI pp. 36-37 June 17, 1820,undated + + + + + + 3 + 39 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: HRS Papers R.59-60: 30298-30338 July, 1822 “Private JL and Notebook”,undated + + + + + + 3 + 40 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: SAM RG44, B157.F.5 July 9, 1822,undated + + + + + + 3 + 41 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: HRS Papers R.61 308xx 1824 [Population Statistics],undated + + + + + + 3 + 42 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.12:565-567 Aug. 7, 1824,undated + + + + + + 3 + 43 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.27:232-235 Sept. 22, 1830,undated + + + + + + 3 + 44 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: CHL-BP, MSSFM-5, R.930, Letters Jan. 3, 1832 Dep. of Strawweno and Waiskey,undated + + + + + + 3 + 45 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: BBC A576 ALJ-DA: 1988-95 March 8, 1832 BBC M87,undated + + + + + + 3 + 46 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.68:518 Oct. 9, 1832 (Folder 1 of 2),undated + + + + + + 3 + 47 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.68:518 Oct. 9, 1832 (Folder 2 of 2),undated + + + + + + 3 + 48 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.31:555 Oct. 31, 1832,undated + + + + + + 3 + 49 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M234 R.402: 53-54 Dec. 3, 1832,undated + + + + + + 3 + 50 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.71: 37 May 20, 1833,undated + + + + + + 3 + 51 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: LC HRS Papers R.47:30591 Feb. 5, 1834 May 27, 1833,undated + + + + + + 3 + 52 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M234 R.402:66 June 7, 1833,undated + + + + + + 3 + 53 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M234 R.402 67-68 June 10, 1833,undated + + + + + + 3 + 54 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.71:52 June 13, 1833,undated + + + + + + 3 + 55 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.71:59-60 June 20, 1833,undated + + + + + + 3 + 56 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.71:4 (P-24+24 A US v MI) June 22, 1833,undated + + + + + + 3 + 57 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.71:67-68 June 27, 1833,undated + + + + + + 3 + 58 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: BBC A-557 ALJ-DA 2036-42 Aug. 25, 1833 BBC M-87,undated + + + + + + 3 + 59 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.71 (P-26+26a US v MI) Sept. 25, 1833,undated + + + + + + 3 + 60 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.33:511 Nov. 21, 1833,undated + + + + + + 3 + 61 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: HRSP-LCM R.47:30590 Feb. 5, 1834,undated + + + + + + 3 + 62 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: LC Papers R.6:2077 March 12, 1834,undated + + + + + + 3 + 63 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: BBC M66-2 A-421 LSA XIV/VI #35:1-4 June 26, 1834,undated + + + + + + 3 + 64 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.69:67 Sept. 30, 1834,undated + + + + + + 3 + 65 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.69:72 Oct. 15, 1834,undated + + + + + + 3 + 66 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M21 R14:63-66 Oct. 23, 1834 Herring to Schoolcraft,undated + + + + + + 3 + 67 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.69:78 Oct. 25, 1834,undated + + + + + + 3 + 68 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: MPHC U.37:309-11 Dec. 29, 1834 Invoices from Biddle and Drew,undated + + + + + + 3 + 69 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: CMU AFCP/SSMC-GJP; March 10, 1835 Cole and Porter to G. Johnston,undated + + + + + + 3 + 70 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M21 R.19:251 March 31, 1835,undated + + + + + + 3 + 71 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R72 (P-37+37A US v MI) May 15, 1835,undated + + + + + + 3 + 72 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: CMU AFCP/SSMC-GJP; MSS F52R9 Aug. 24, 1835 Emmons to Geo. Johnston,undated + + + + + + 3 + 73 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.72:217 Aug. 29, 1835,undated + + + + + + 3 + 74 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: US v. MI Exhibit 106-A Sept. 12, 1835,undated + + + + + + 3 + 75 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.69:120 NAM M1 R.36:218 P-9+9A US v MI Sept. 17, 1835,undated + + + + + + 3 + 76 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R:69:137 Oct. 30, 1835,undated + + + + + + 3 + 77 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: Schoolcraft Memoirs Oct. 31, 1835,undated + + + + + + 3 + 78 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.69:140 Nov. 3, 1835,undated + + + + + + 3 + 79 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: US v. MI Exhibit 109-A Nov. 9, 1835,undated + + + + + + 3 + 80 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: US v. MI Exhibit 110-A Nov. 10, 1835,undated + + + + + + 3 + 81 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.69 (P-44+44A US v MI) Nov. 17, 1835,undated + + + + + + 3 + 82 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.72:323-24 Nov. 17, 1835,undated + + + + + + 3 + 83 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M234 R.421:768-773 Nov. 18, 1835,undated + + + + + + 3 + 84 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.69:149 Nov. 26, 1835,undated + + + + + + 3 + 85 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: US v. MI Exhibit 111-A Dec. 2, 1835,undated + + + + + + 3 + 86 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M234 R.421:722-25 Dec. 5, 1835,undated + + + + + + 3 + 87 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: US v. MI Exhibit 219-A Dec. 11, 1835,undated + + + + + + 3 + 88 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R72:346 (P-45+45A US v MI) Dec. 24, 1835,undated + + + + + + 3 + 89 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: LLL-MI Pioneer + HS Dec. 25, 1835 Vol. XXVII p. 466-467 Letters of Lucious Lyon,undated + + + + + + 3 + 90 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: HRS Papers R.7:2298 Dec. 28, 1835,undated + + + + + + 3 + 91 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: LC HRS Papers R.24 13635-13636 Dec. 29, 1835,undated + + + + + + 3 + 92 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: LC HRS Papers R.25 13930-13940 Treaty of 1836 Minutes 1836,undated + + + + + + 3 + 93 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.41:51-73 1836,undated + + + + + + 3 + 94 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: Clifton Notes 1836,undated + + + + + + 3 + 95 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: Schoolcraft 1851-1857 Vol. 6: 464-465 1836,undated + + + + + + 3 + 96 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: McCoy 1970: 494-495 1836,undated + + + + + + 3 + 97 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M234 R.770:200 Jan. 4, 1836,undated + + + + + + 3 + 98 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: HRSP-LCM R.7:2302 Jan. 13, 1836,undated + + + + + + 3 + 99 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.72:388 Jan. 25, 1836,undated + + + + + + 3 + 100 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M234 r.422:146-47 Jan. 27, 1836,undated + + + + + + 3 + 101 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: Messages of the Governor of MI S.T. Mason Feb. 1, 1836,undated + + + + + + 3 + 102 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: US v. MI Exhibit 117-A Feb. 15, 1836,undated + + + + + + 3 + 103 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: HRSP-LCM R.25:13853 Feb. 16, 1836,undated + + + + + + 3 + 104 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.69:160 (P-48 + 48A US v MI) Feb. 17, 1836,undated + + + + + + 3 + 105 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.69:163 (P-50 + 50A US v MI) Feb. 17, 1836,undated + + + + + + 3 + 106 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.69:162 Feb. 17, 1836 Clitz to Schoolcraft,undated + + + + + + 3 + 107 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.72 (P-47 +47A US v MI) Feb. 17, 1836,undated + + + + + + 3 + 108 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.69:165 (P-51 + 21A US v MI) Feb. 22, 1836,undated + + + + + + 3 + 109 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: AMFCP-CMU from Micro Mss F-49 Feb. 23, 1836,undated + + + + + + 3 + 110 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: HRS Papers R.25:13930:5-18 JL of Ottowa and Chippewa Treaty of Washington March 1836,undated + + + + + + 3 + 111 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: D-119A US v MI March 1, 1836,undated + + + + + + 3 + 112 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: AMFCP-CMU from Micro-Mss F-49 R.23:1350 March 5, 1836,undated + + + + + + 3 + 113 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: HRSP-LCM R.24:13879 Mar. 9, 1836,undated + + + + + + 3 + 114 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: AMFCP-CMU from Micro-Mss F-49 R.23:1866 March 11, 1836,undated + + + + + + 3 + 115 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: US v. MI Exhibit 120-A March 11, 1836,undated + + + + + + 3 + 116 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: US v. MI Exhibit 121-A March 11, 1836,undated + + + + + + 3 + 117 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.72:462 March 14, 1836,undated + + + + + + 3 + 118 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: US v. MI Exhibit 233-A March 17, 1836,undated + + + + + + 3 + 119 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: AFCP-CMU from Micro Mss F-49 R.23:1398 Mar. 22, 1836,undated + + + + + + 3 + 120 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: AFCP-CMU from Micro Mss F-49 R.23 :1411 Mar. 22, 1836,undated + + + + + + 3 + 121 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.72: 466 March 23, 1836,undated + + + + + + 3 + 122 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: US v. MI Exhibit 234-A March 28, 1836,undated + + + + + + 3 + 123 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M668 R8: 87-117 Supplemental Articles of March 28, 1836 Treaty Signatures affixed July 12-22, 1836,undated + + + + + + 3 + 124 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: Treaty Ottawa March 28, 1836 7 STAT: 491 Also: Potowatomi, March 26, 1836 7 STAT: 490,undated + + + + + + 3 + 125 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAMM1 R.72: 470 March 28, 1836,undated + + + + + + 3 + 126 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: Records of Treaty w/ Ottawa and Chippewas March 28, 1836,undated + + + + + + 3 + 127 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: T494 R.3: 362-4 March 30, 1836,undated + + + + + + 3 + 128 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM T494 R.3: 365-367 April 1, 1836,undated + + + + + + 3 + 129 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M21 R. 18 April 1, 1836,undated + + + + + + 3 + 130 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: Democratic Free Press April 13, 1836,undated + + + + + + 3 + 131 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.72: 486 April 29, 1836,undated + + + + + + 3 + 132 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M21 R18: 394 May 10, 1836,undated + + + + + + 3 + 133 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M21 R.18: 431 May 17, 1836,undated + + + + + + 3 + 134 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.72: 478 May 20, 1836,undated + + + + + + 3 + 135 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: Democratic Free Press D-3022 U.S u MI May 25, 1836,undated + + + + + + 3 + 136 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: US v MI Exhibit 128-A June 10, 1836,undated + + + + + + 3 + 137 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM MI R69: 171 June 16, 1836,undated + + + + + + 3 + 138 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: US v MI Exhibit 21A June 20, 1836 NAM M234 R422: 183-184,undated + + + + + + 3 + 139 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: Op. A.G. 3, 126 June 21, 1836,undated + + + + + + 3 + 140 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: LC HRS Papers R.26 14317-14319 June 27, 1836,undated + + + + + + 3 + 141 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M21 R.19z; 111-113 July 1, 1836,undated + + + + + + 3 + 142 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 (P-58 + 58A US v MI) July 9, 1836,undated + + + + + + 3 + 143 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: US v MI July 13, 1836,undated + + + + + + 3 + 144 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: HRSP-LCM R.26: 14439 July 18, 1836,undated + + + + + + 3 + 145 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.41:43 July 18, 1836,undated + + + + + + 3 + 146 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM T494 R.3: 369-370 July 18, 1836,undated + + + + + + 3 + 147 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM T494 R.3 376-377 July 22, 1836,undated + + + + + + 3 + 148 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: US v MI Exhibit 24-A Aug. 3, 1836,undated + + + + + + 3 + 149 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: CMU, AFCP/SSMC-BL; MssF52 R6 Aug. 9, 1836 Pendill to Barbezu US v. MI,undated + + + + + + 3 + 150 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: Articles of Consent to Amendments to Treaty of 1836 Sept. 1836,undated + + + + + + 3 + 151 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: CHL-BP, MSSFM-5, R.390, Letters Sept. 2, 1836 Garry to Schoolcraft US v MI,undated + + + + + + 3 + 152 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: US v MI Exhibit 151-A Oct. 22, 1836,undated + + + + + + 3 + 153 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: US v MI Exhibit 152-A Oct. 22, 1836,undated + + + + + + 3 + 154 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: Memorial to Congress JL of MI Senate 1st Session 1837,undated + + + + + + 3 + 155 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: State of the State Address Governor T. Mason JL of the MI Senate Jan. 2, 1837,undated + + + + + + 3 + 156 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: M 200 R.6: 1003 Jan. 10, 1837,undated + + + + + + 3 + 157 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R. 42: 93 Jan. 27, 1837,undated + + + + + + 3 + 158 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: US v MI Exhibit 257, Jan. 27, 1837,undated + + + + + + 3 + 159 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: D-Ex 31 + 31A US v MI Feb. 16, 1837,undated + + + + + + 3 + 160 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.42: 177 Feb. 20, 1837,undated + + + + + + 3 + 161 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.37: 168 Feb. 27, 1837,undated + + + + + + 3 + 162 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M234 R.422: 632-34 Feb. 27, 1837,undated + + + + + + 3 + 163 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M234 R.422: 631-637 Feb. 27, 1837,undated + + + + + + 3 + 164 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.37: 171 Feb. 27, 1837,undated + + + + + + 3 + 165 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM T494 R.3: 379-386 March 8, 1837,undated + + + + + + 3 + 166 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M21 R.21:204 March 23, 1837,undated + + + + + + 3 + 167 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: RG49, GLO, Division D, Entry 20 (UD 185) Letters Received, Opinions of AG 1815-1843, Box 1, opinion 72, March 29, 1837,undated + + + + + + 3 + 168 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.42:288-289 March 29, 1837,undated + + + + + + 3 + 169 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.37: 190 April 8, 1837,undated + + + + + + 3 + 170 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: HRS Papers R.59-60: 30628 April 10, 1837/ July 1836,undated + + + + + + 3 + 171 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.37: 201 April 18, 1837,undated + + + + + + 3 + 172 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.42: 345-346 April 20, 1837,undated + + + + + + 3 + 173 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.37: 214 May 10, 1837,undated + + + + + + 3 + 174 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: US v MI Exhibit 226-A June 1, 1837,undated + + + + + + 3 + 175 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M234 R. 402: 356-60, June 8, 1837,undated + + + + + + 3 + 176 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R. 37: 232 June 12, 1837,undated + + + + + + 3 + 177 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M21 R.22: 52 July 1, 1837,undated + + + + + + 3 + 178 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: D39 + 39A US v MI July 8, 1837,undated + + + + + + 3 + 179 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: CMU, AFCP/SSMC-GJP; Mss F52R9 July 23, 1837 J. Schoolcraft to G. Johnston,undated + + + + + + 3 + 180 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.37:264 July 25, 1837,undated + + + + + + 3 + 181 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM T494 R.3:543-568 July 20, 1837,undated + + + + + + 3 + 182 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.37:265 July 25, 1837,undated + + + + + + 3 + 183 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.42:625-627 July 28, 1837,undated + + + + + + 3 + 184 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: (P-62 + 62A US v MI) Sept. 15, 1837,undated + + + + + + 3 + 185 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: HRS Papers R.59-60:30628-30648 Oct. 1, 1837 – Sept. 18, 1838 [Private JL of Indian Affairs],undated + + + + + + 3 + 186 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: CMU, AFCP/SSMC-GJP; Mss F52R9 Oct. 2, 1837 Geo. Johnston to L. Lyon,undated + + + + + + 3 + 187 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: CMU, AFCP/SSMC-GJP; Mss F52R9 Oct. 21, 1837 L. Lyon to G. Johnston,undated + + + + + + 3 + 188 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: US v. MI Exhibit 50-A Oct. 23, 1837,undated + + + + + + 3 + 189 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: CMU, AFCP/SSMC-GJP; Mss F52R9 Nov. 1, 1837 Stewart to Johnston,undated + + + + + + 3 + 190 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M234 R.402: 361-370 Nov. 17, 1837,undated + + + + + + 3 + 191 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M21 R22:560-61 Nov. 27, 1837,undated + + + + + + 3 + 192 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: HRS Papers R.61:30753 Nov. 28, 1837 “Seraps: Value of Indian Property in MI”,undated + + + + + + 3 + 193 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.37:385 Dec. 26, 1837,undated + + + + + + 3 + 194 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.37:391 Dec. 30, 1837,undated + + + + + + 3 + 195 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.44:1 Jan. 1, 1838,undated + + + + + + 3 + 196 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: HRSP R.28:16021-16022 Jan. 8, 1838,undated + + + + + + 3 + 197 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: LC HRS Papers R.30:16149-16150 March 1, 1838,undated + + + + + + 3 + 198 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: Op.A.G. 3, 309 March 10, 1838,undated + + + + + + 3 + 199 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M234 R.423:146-148 April 4, 1838,undated + + + + + + 3 + 200 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.37:484 May 14, 1838,undated + + + + + + 3 + 201 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: BEHP-MIHC M5 AA. 3485 May 19 – June 24, 1838,undated + + + + + + 3 + 202 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.37:490a May 22, 1838,undated + + + + + + 3 + 203 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.37:491 May 22, 1838,undated + + + + + + 3 + 204 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M234 R.415:608-510 May 28, 1838 D-91 + 91A US v MI,undated + + + + + + 3 + 205 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: US v. MI Exhibit + 92-A June 5, 1838,undated + + + + + + 3 + 206 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.44:379 June 9, 1838,undated + + + + + + 3 + 207 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M234 R.415:611-14 June 9, 1838,undated + + + + + + 3 + 208 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: US v. MI Exhibit 94-A June 9, 1838,undated + + + + + + 3 + 209 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: HRSP-LCM R.8:2641 June 14, 1838,undated + + + + + + 3 + 210 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M234 R.415:620-22 June 18, 1838,undated + + + + + + 3 + 211 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.37:515 June 23, 1838,undated + + + + + + 3 + 212 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M234 R.415:654-657 June 24, 1838 D-95 + 95A US v MI,undated + + + + + + 3 + 213 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M234 R.415:624-26 June 26, 1838,undated + + + + + + 3 + 214 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M234 R.415:619-622 July 18, 1838 D-97 + 97A US v MI,undated + + + + + + 3 + 215 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.37:518 July 26, 1838,undated + + + + + + 3 + 216 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.45:47 July 27, 1838,undated + + + + + + 3 + 217 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: D-98 + 98A US v MI July 28, 1838,undated + + + + + + 3 + 218 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: US v. MI Exhibit 99-A Aug. 23, 1838,undated + + + + + + 3 + 219 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M234 R.415:655 Aug. 23, 1838,undated + + + + + + 3 + 220 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M234 R.415:636-43 Aug. 29, 1838,undated + + + + + + 3 + 221 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: US v. MI Exhibit 100-A Aug. 29, 1838,undated + + + + + + 3 + 222 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: D-101 + 101A US v MI Sept. 1, 1838,undated + + + + + + 3 + 223 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.45:285 Sept. 20, 1838,undated + + + + + + 3 + 224 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: US v. MI Exhibit 62-A Sept. 29, 1838,undated + + + + + + 3 + 225 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M234 R.402:889 Sept. 29, 1838,undated + + + + + + 3 + 226 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: NAM M1 R.45:284-287 Sept. 30, 1838,undated + + + + + + 3 + 227 + Box 1 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1795-1839: PHSC Box 7 Vol. 3:14 Oct. 9, 1838,undated + + + + + + 4 + 1 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: LC HRS Papers R.66:41828 1839,undated + + + + + + 4 + 2 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M1 R.47:251-256 1839,undated + + + + + + 4 + 3 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: PHSC Box 7 Vol. 3:52 1839,undated + + + + + + 4 + 4 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CHL-BP, MSSFM-5, R930, Letters Feb. 26, 1839 A. Bingham to H. Bingham,undated + + + + + + 4 + 5 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M1 R.46:383 May 22, 1839,undated + + + + + + 4 + 6 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M1 R.46:409 May 28, 1839,undated + + + + + + 4 + 7 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: State of MI RB-44:B157 F6 July 2, 1839,undated + + + + + + 4 + 8 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M1 R.47:285 Aug. 16, 1839,undated + + + + + + 4 + 9 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.403:130-140 Nov. 18, 1839,undated + + + + + + 4 + 10 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M1 R.38:268 May 18, 1840,undated + + + + + + 4 + 11 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.424:50 May 23, 1840,undated + + + + + + 4 + 12 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.427:567-69 June 9, 1840,undated + + + + + + 4 + 13 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: HRSP-LCM R.31:18084 July 11, 1840,undated + + + + + + 4 + 14 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M1 R.38:296-299 July 15, 1840,undated + + + + + + 4 + 15 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.424:164-70 July 15, 1840,undated + + + + + + 4 + 16 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.424:570-71 Aug. 10, 1840,undated + + + + + + 4 + 17 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M1 R.49:75 Aug. 21, 1840,undated + + + + + + 4 + 18 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M21 R.29:174-176 Aug. 22, 1840,undated + + + + + + 4 + 19 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: PHSC Box 7 Vol. 3:46 Sept. 14, 1840,undated + + + + + + 4 + 20 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M1 R.38:353 Sept. 24, 1840,undated + + + + + + 4 + 21 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: Michilimackinac Census Sept. 30, 1840,undated + + + + + + 4 + 22 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M21 R.29:359-60 Nov. 4, 1840,undated + + + + + + 4 + 23 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M1 R.49:415 Nov. 4, 1840,undated + + + + + + 4 + 24 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: GNS Papers R.1 Nov. 14, 1840,undated + + + + + + 4 + 25 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M1 R.38:433 Nov. 22, 1840,undated + + + + + + 4 + 26 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M21 R.30:34 Jan. 14, 1841,undated + + + + + + 4 + 27 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: PHSC Box 7 Vol. 3:50 Feb. 19, 1841,undated + + + + + + 4 + 28 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: PHSC Box 7, vol. 3:51 March 19, 1841,undated + + + + + + 4 + 29 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M1 R.50:495 April 1, 1841,undated + + + + + + 4 + 30 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.424:764-69 May 20, 1841,undated + + + + + + 4 + 31 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M21 R.30:333 (356) June 15, 1841,undated + + + + + + 4 + 32 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M21 R.30:355-356 June 15, 1841,undated + + + + + + 4 + 33 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.424:684-5 June 22, 1841,undated + + + + + + 4 + 34 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.424:689-91 June 24, 1841,undated + + + + + + 4 + 35 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.425:230-31 July 27, 1841,undated + + + + + + 4 + 36 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M1 R.51:125-126 July 30, 1841,undated + + + + + + 4 + 37 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.424:694-6 Oct. 27, 1841,undated + + + + + + 4 + 38 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.425:59-70 Oct. 30, 1841,undated + + + + + + 4 + 39 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.425:76-77 Nov. 1, 1841,undated + + + + + + 4 + 40 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: GNS Papers Dec. 4, 1841,undated + + + + + + 4 + 41 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.425:59-70 1842,undated + + + + + + 4 + 42 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M1 R.53:161-163 Aug. 1, 1842,undated + + + + + + 4 + 43 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: GNS-LCM R.1:67 Sept. 30, 1842,undated + + + + + + 4 + 44 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.425:518-21 Oct. 2, 1842,undated + + + + + + 4 + 44 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: GNS Papers R.1 Oct. 17, 1842,undated + + + + + + 4 + 45 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.425:212-12 Nov. 26, 1842,undated + + + + + + 4 + 46 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: SAM RG44 B67 F18 Dec. 14, 1842 Ball to Barry,undated + + + + + + 4 + 47 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.425:523-25 1843,undated + + + + + + 4 + 48 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M1 R.54:15 Jan. 3, 1843,undated + + + + + + 4 + 49 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.388:391 Jan. 6, 1843,undated + + + + + + 4 + 50 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M1 R.39:89 Feb. 27, 1843,undated + + + + + + 4 + 51 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: PHSC Box 7 Vol. 3:83 March 27, 1843,undated + + + + + + 4 + 52 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: ABCFM Ms. BA10 512b Box 3 May 3, 1843,undated + + + + + + 4 + 53 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.425:292-95 July 20, 1843,undated + + + + + + 4 + 54 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: PHSC Box 7 Vol. 3:97 July 23, 1843,undated + + + + + + 4 + 55 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: Op.A.G. 4, 221 Aug. 11, 1843,undated + + + + + + 4 + 56 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BBR; Mss F52R8 Aug. 29, 1843 receipt 1 Box furs,undated + + + + + + 4 + 57 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.425:516-521 Oct. 2, 1843,undated + + + + + + 4 + 58 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: SAM RG44 B67 F18 Oct. 12, 1843 Ball to Berry,undated + + + + + + 4 + 59 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, ACFP/SSMC-BBR; Mss F52 R.8 Oct. 13, 1843 receipt for furs,undated + + + + + + 4 + 60 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.425:425-31 Oct. 13, 1843,undated + + + + + + 4 + 61 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M1 R.55:529 Oct. 28, 1843,undated + + + + + + 4 + 62 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CHL-BP, MSSFM-5, R.930, Letters Feb. 2, 1844 Agreement w/ Toguampar Band,undated + + + + + + 4 + 63 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: PHSC Box 7, Vol. 3: 103, March 11, 1844,undated + + + + + + 4 + 64 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM MI R.56: 53-63 June 19, 1844,undated + + + + + + 4 + 65 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.403: 356-58 Aug. 23, 1844,undated + + + + + + 4 + 66 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M1 R. 57: 270 Sept. 16, 1844,undated + + + + + + 4 + 67 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: GNS Papers LCM R.1 Sept. 26, 1844,undated + + + + + + 4 + 68 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M1 R.57: 212 Oct. 26, 1844,undated + + + + + + 4 + 69 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M1 R.57: 172 Nov. 12, 1844,undated + + + + + + 4 + 70 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M1 R.57: 172-174 Nov. 13, 1844,undated + + + + + + 4 + 71 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M1 R.39: 527-529 Nov. 30, 1844,undated + + + + + + 4 + 72 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M1 R.58: 1 June 30, 1845,undated + + + + + + 4 + 74 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: Op. A.G. 4, 493 April 25, 1846,undated + + + + + + 4 + 75 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: HRS Papers R.61: 309xx 1848 [population stats: Grand Valley],undated + + + + + + 4 + 76 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: HRS Papers R.38: 22136 Jan. 21, 1848,undated + + + + + + 4 + 77 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M1 R.62:61 Feb. 10, 1848,undated + + + + + + 4 + 78 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M21 R.40: 413 March 23, 1848,undated + + + + + + 4 + 79 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.771: 238 April 4, 1848,undated + + + + + + 4 + 80 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BBR, MSSFS2 R.8 May 17, 1848 Receipt and Barbeau to Hulbert,undated + + + + + + 4 + 81 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M1 R.62: 241 July 16, 1848,undated + + + + + + 4 + 82 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: PHSC Box 7 Vol. 3: 171 1849,undated + + + + + + 4 + 83 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: LRMS-1131 June 9, 1849,undated + + + + + + 4 + 84 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BL; MSSF52 R.5 Oct. 4, 1849 Woodbridge to Barbau,undated + + + + + + 4 + 85 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-GJP; MSS F52 R.6 1849? Grant and Buton to Geo. Johnston,undated + + + + + + 4 + 86 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: PHSC Box 7 Vol. 2: 109 May 1, 1850,undated + + + + + + 4 + 87 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.426: 660-2 June 1, 1850,undated + + + + + + 4 + 88 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: GNS Papers R.1 June 8, 1850,undated + + + + + + 4 + 89 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: GNS Papers R.1 June 28, 1850,undated + + + + + + 4 + 90 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-GJP; MSS F52 R.9 Aug. 2, 1850,undated + + + + + + 4 + 91 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CHL-BP, MSSFM-5, R.931, Letters Sept. 23, 1850 Rev. Bingham to children,undated + + + + + + 4 + 92 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-GJP; MSS F52 R.9 Oct. 19, 1850 Chute to Geo. Johnston,undated + + + + + + 4 + 93 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.403: 584-8 Feb. 19, 1851,undated + + + + + + 4 + 94 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: Acts of the Legislature of the State of MI…1851: 249-51 Feb. 22, 1851 No.1, “Joint Resolutions in relation to Ind. Claims”,undated + + + + + + 4 + 95 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: LRMS-1131 March 31, 1851,undated + + + + + + 4 + 96 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BL; MSS F52-R.5 April 18, 1851 Ewing Chute and Co to P. Barbeau,undated + + + + + + 4 + 97 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BL; MSS F52 R.5 May 11, 1851 Ewing Chute and Co to P. Barbeau,undated + + + + + + 4 + 98 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.598: 16-17 June 4, 1851,undated + + + + + + 4 + 99 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M21 R.44: 426 June 4, 1851,undated + + + + + + 4 + 100 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R. 598: 13-15 June 30, 1851,undated + + + + + + 4 + 101 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R. 403: 602-4 July 15, 1851,undated + + + + + + 4 + 102 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.598: 51-4 July 31, 1851,undated + + + + + + 4 + 103 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: GNS Papers-LCM R.1 Aug. 11, 1851,undated + + + + + + 4 + 104 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-GJP; MSSF52 R.9 Aug. 14, 1851 Chute to Geo. Johnston,undated + + + + + + 4 + 105 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R. 598: 40-42 Sept. 2, 1851,undated + + + + + + 4 + 106 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.598: 42-44 Sept. 4, 1851,undated + + + + + + 4 + 107 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BLG; MSS F52 R.9 Dec. 1, 1851 Patent to L. Waishkey,undated + + + + + + 4 + 108 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BL; MSS F52 R.5 Feb. 1852 J. Anthony to P.Barbeau,undated + + + + + + 4 + 109 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BL; MSS F52 R.5 Feb. 2, 1852 T. Nahbenayaush to P. Barbeau,undated + + + + + + 4 + 110 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BL; MSS F52 R.5 Feb. 25, 1852 Buhl to Barbeau,undated + + + + + + 4 + 111 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BL; MSS F52 R.5 March 6, 1852 J.Anthony to P. Barbeau,undated + + + + + + 4 + 112 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.403: 701-3 April 7, 1852,undated + + + + + + 4 + 113 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BL; MSS F52 R.5 May 10, 1852 C.H. Buhl to P. Barbeau,undated + + + + + + 4 + 114 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BL; MSS F52 R.5 June 28, 1852 J. Anthony to P. Barbeau,undated + + + + + + 4 + 115 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BBR; MSS F52 R.8 Sept. 21, 1852,undated + + + + + + 4 + 116 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BL; MSS F52 R.5 Oct. 18, 1852 Kewainze Shzwwanan,undated + + + + + + 4 + 117 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BBR; MSS F52 R.8 Oct. 20, 1852 receipt from A.H. NewBald,undated + + + + + + 4 + 118 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BL; MSS F52 R.5 Dec. 13, 1852 Arnold to Barbeau,undated + + + + + + 4 + 119 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BL; MSS F52 R.5 Dec. 20, 1852 Steele + Barbeau,undated + + + + + + 4 + 120 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BL; MSS F52 R.5 Feb. 1, 1853 Netahmeens to P. Barbeau,undated + + + + + + 4 + 121 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BL; MSS F52 R.6 Feb. 15, 1853 WM. Shaw to P. Barbeau (Pendills Mill),undated + + + + + + 4 + 122 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CNS Papers – LCM R.1 March 7, 1853,undated + + + + + + 4 + 123 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.404: 5-6 May 12, 1853,undated + + + + + + 4 + 1124 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BL; MSS F52 R.5 May 24, 1853 Penly to Barbeau,undated + + + + + + 4 + 125 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.404 (P-78+ 78A US v MI) July 4, 1853,undated + + + + + + 4 + 126 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC/BLG; MSS F52 R.9 Sept. 1, 1853 Bounty Land Warrant,undated + + + + + + 4 + 127 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.404: 223-5 Oct. 22, 1853,undated + + + + + + 4 + 128 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AfCP/SSMC-BL; MSS F52 R.5 Nov. 2, 1853 Ewing Chute and Co Power of Attorney,undated + + + + + + 4 + 129 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.404: 191-195 Dec 15, 1853,undated + + + + + + 4 + 130 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.404: 229 Dec. 17, 1853 (P-81 +81A US v MI),undated + + + + + + 4 + 131 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.404: 368-80 March 6, 1854,undated + + + + + + 4 + 132 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.404: 516-19 March 14, 1854,undated + + + + + + 4 + 133 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: PHSC Box 7 Vol. 1:123 June 19, 1854,undated + + + + + + 4 + 134 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: LCM-GNS Papers R.1 July 8, 1854,undated + + + + + + 4 + 135 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BL; MSS F52 R.5 July 21, 1854 Buhl to Barbeau,undated + + + + + + 4 + 136 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: PHSC Box 7 Vol. 1: 137 Sept. 25, 1854,undated + + + + + + 4 + 137 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: LRMS- 1131 Sept. 30, 1854,undated + + + + + + 4 + 138 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CHL-BP, MSSFM-5 R.932, Letters 1855 Bingham claim,undated + + + + + + 4 + 139 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BL; MSS F52 R.5 Jan. 16, 1855 R. Godfry to P. Barbau,undated + + + + + + 4 + 140 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.404: 561-566 Jan. 16, 1855,undated + + + + + + 4 + 141 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BL; MSS F52 R.5 Jan. 24, 1855 Gilbert to Barbeau,undated + + + + + + 4 + 142 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.404: 564 Feb. 26, 1855 Cont. in Feb. 27 File,undated + + + + + + 4 + 143 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.404: 557 Feb. 27, 1855,undated + + + + + + 4 + 144 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.404: 553-556 Feb. 28, 1855,undated + + + + + + 4 + 145 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.404: 593-596 March 1, 1855,undated + + + + + + 4 + 146 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: PHSC Box 7 Vol. 1:154 March 26, 1855,undated + + + + + + 4 + 147 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: LRMS-1131 March 31, 1855,undated + + + + + + 4 + 148 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: LRMS-1131 April 6, 1855,undated + + + + + + 4 + 149 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: Kappler Vol. 2: 846 April 12, 1855,undated + + + + + + 4 + 150 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.404: 625-27 April 12, 1855,undated + + + + + + 4 + 151 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: LRMS- 1131 April 25, 1855,undated + + + + + + 4 + 152 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R. 404: 840-841 April 26, 1855,undated + + + + + + 4 + 153 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM R.404 (P-88 +88A US v MI) May 12, 1855,undated + + + + + + 4 + 154 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: Kappler Vol. 2: 287 May 18, 1855,undated + + + + + + 4 + 155 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.404: 842-43 May 21, 1855,undated + + + + + + 4 + 156 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.404: 844-51 May 21, 1855,undated + + + + + + 4 + 157 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.404: 646-49 May 22, 1855,undated + + + + + + 4 + 158 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M21 R. 51: 485 June 6, 1855,undated + + + + + + 4 + 159 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: H-211 June 6, 1855,undated + + + + + + 4 + 160 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.404: 705-07 June 9, 1855,undated + + + + + + 4 + 161 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: GJP-DPL Vox 1854-1858 June 12, 1855,undated + + + + + + 4 + 162 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R. 404: 708-10 June 13, 1855,undated + + + + + + 4 + 163 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.404: 970-977 June 15, 1855,undated + + + + + + 4 + 164 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.404: 711-12 June 19, 1855,undated + + + + + + 4 + 165 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: LRMS-1131 June 30, 1855,undated + + + + + + 4 + 166 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: LRMS-1131 July 4, 1855,undated + + + + + + 4 + 167 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BL; MSS F52 R.6 July 21, 1855 Wendell to P. Barbeau,undated + + + + + + 4 + 168 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: US v MI P-19 MI-26-73 CA. July 25, 1855,undated + + + + + + 4 + 169 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: Detroit Daily Free Press July 26, 1855,undated + + + + + + 4 + 170 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: Detroit Daily Free Press July 29, 1855,undated + + + + + + 4 + 171 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.404: 932-935 Aug. 1, 1855,undated + + + + + + 4 + 172 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: US v MI M-26-73 CA Plaintiff Exhibit-19 Aug. 7, 1855,undated + + + + + + 4 + 173 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: H 211- 3444 Aug. 7, 1855,undated + + + + + + 4 + 174 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: Detroit Free Press D-305 US v MI Aug. 9, 1855,undated + + + + + + 4 + 175 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R. 404: 577 Aug. 14, 1855,undated + + + + + + 4 + 176 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M21 R.52 Aug. 23, 1855,undated + + + + + + 4 + 177 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.404: 950 Sept. 3, 1855,undated + + + + + + 4 + 178 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M21 R.52 Sept. 5, 1855,undated + + + + + + 4 + 179 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.404: 915-17 Sept. 8, 1855,undated + + + + + + 4 + 180 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.404: 918-19 Sept. 12, 1855,undated + + + + + + 4 + 181 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.404: 953 Oct. 12, 1855,undated + + + + + + 4 + 182 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BL MSS F52 R.6 Oct. 15, 1855 Protest of Chiefs to US Senate,undated + + + + + + 4 + 183 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R. 404: 980-983 Oct. 22, 1855,undated + + + + + + 4 + 184 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: NAM M234 R.404: 815-21 Nov. 24, 1855,undated + + + + + + 4 + 185 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BL; MSS F52 R.6 Nov. 28, 1855 J.D. Cameren to P. Barbeau,undated + + + + + + 4 + 186 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BL; MSS F52 R.6 Dec. 20, 1855 William Shau to P. Barbeau (Carp River),undated + + + + + + 4 + 187 + Box 2 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1840-1855: CMU, AFCP/SSMC-BL; MSS F52 R.6 Dec. 21, 1855 Wm. Shau to P. Barbeau (Carp River),undated + + + + + + 5 + 1 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: Schoolcraft 1851-57 Vol. 5: 708 1856,undated + + + + + + 5 + 2 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: Schoolcraft 1851-57 Vol. 5: 395 1856,undated + + + + + + 5 + 3 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: H-211 Jan. 2, 1856,undated + + + + + + 5 + 4 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M348 R.9: 167-168 Jan. 2, 1856,undated + + + + + + 5 + 5 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: H-211 Jan. 3, 1856,undated + + + + + + 5 + 6 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M606 R.2: 261 Jan. 5, 1856,undated + + + + + + 5 + 7 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; MSS F52 R.6 Jan. 6, 1856 Wm. Shau to P. Barbeau (Pendills Mill),undated + + + + + + 5 + 8 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.404: 229 (P-91 + 91A US v MI) Jan. 13, 1856,undated + + + + + + 5 + 9 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; MSS F52 R.6 Jan. 18, 1856 Wm. Shau to P. Barbeau (Pendills Mill),undated + + + + + + 5 + 10 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; MSS F52 R.6 Jan. 28, 1856 Wm. Shau to P. Barbeau,undated + + + + + + 5 + 11 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; MSS F52 R.6 Feb. 1856 Wm. Shau to P. Barbeau (Shaw’s Mission),undated + + + + + + 5 + 12 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.405: 60-63 Feb. 18, 1856,undated + + + + + + 5 + 13 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; MSS F52 R.6 Feb. 24, 1856 Noble to Barbeau (D.C.),undated + + + + + + 5 + 14 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.407: 75-79 Feb. 25, 1856,undated + + + + + + 5 + 15 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.405: 244-251 Feb. 25, 1856,undated + + + + + + 5 + 16 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; MSS F52 R.6 March 1, 1856 Wm. Shau to P. Barbeau (Pendills Mill),undated + + + + + + 5 + 17 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.405: 242-243 March 1, 1856,undated + + + + + + 5 + 18 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M21 R.53: 231 March 18, 1856,undated + + + + + + 5 + 19 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M21 R.53: 234 March 19, 1856,undated + + + + + + 5 + 20 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M21 R.54: 28 March 25, 1856,undated + + + + + + 5 + 21 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.405: 295-297 April 2, 1856,undated + + + + + + 5 + 22 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R. 405: 298-300 April 5, 1856,undated + + + + + + 5 + 23 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M21 R.54:43 April 8, 1856,undated + + + + + + 5 + 24 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; MSS F52 R.6 April 8, 1856 Penly to Barbeau,undated + + + + + + 5 + 25 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.405: 307-308 April 9, 1856,undated + + + + + + 5 + 26 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R. 405: 237-238 April 14, 1856,undated + + + + + + 5 + 27 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R. 405: 239 April 18, 1856,undated + + + + + + 5 + 28 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R. 405: 239 April 18, 1856,undated + + + + + + 5 + 29 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R6 April 20, 1836 S. Lalonde to P. Barbeau,undated + + + + + + 5 + 30 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.405:252-254 April 24, 1856,undated + + + + + + 5 + 31 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.405:301-302 April 24, 1856,undated + + + + + + 5 + 32 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M21 R.54:90 April 25, 1856,undated + + + + + + 5 + 33 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M21 R.54:90 April 29, 1856,undated + + + + + + 5 + 34 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.405:94-95 May 8, 1856,undated + + + + + + 5 + 35 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.405:215-218 July 14, 1856,undated + + + + + + 5 + 36 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R6 Sept. 6, 1856 H. Shegud to P. Barbeau,undated + + + + + + 5 + 37 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R6 Sept. 24, 1856 J. Anthony (avpr.) to P. Barbeau,undated + + + + + + 5 + 38 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.405:266-267 Sept. 24, 1856,undated + + + + + + 5 + 39 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: PHSC Box 7 Vol.1:215 Oct. 9, 1856,undated + + + + + + 5 + 40 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M574 R.54:424-26 Nov. 15, 1856,undated + + + + + + 5 + 41 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M574 R.54:427-431 Nov. 15, 1856,undated + + + + + + 5 + 42 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R6 Nov. 21, 1856 Pendill to P. Barbeau,undated + + + + + + 5 + 43 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R6 Nov. 22, 1856 Anthony to Barbeau,undated + + + + + + 5 + 44 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R6 Dec. 5, 1856 Pendill to Barbeau,undated + + + + + + 5 + 45 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R6 Dec. 21, 1856 Anthony to Barbeau,undated + + + + + + 5 + 46 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R6 Feb. 1, 1857 Anthony to Barbeau,undated + + + + + + 5 + 47 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R6 Feb. 5, 1857,undated + + + + + + 5 + 48 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R6 Feb. 17, 1857 Pendill to Barbeau,undated + + + + + + 5 + 49 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R6 Feb. 21, 1857 Anthony to P. Barbeau,undated + + + + + + 5 + 50 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R6 March 20, 1857 Anthony to Barbeau,undated + + + + + + 5 + 51 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R6 April 8, 1857 Pendill to P. Barbeau,undated + + + + + + 5 + 52 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R6 April 29, 1857 Anthony to Barbeau,undated + + + + + + 5 + 53 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R6 May 26, 1857 Sugar Inventory,undated + + + + + + 5 + 54 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.405:734-736 June 10, 1857,undated + + + + + + 5 + 55 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R6 June 16, 1857 Treasury Dept. to P. Barbeau,undated + + + + + + 5 + 56 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.405:653-654 June 17, 1857,undated + + + + + + 5 + 57 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.405:765-66 July 9, 1857,undated + + + + + + 5 + 58 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: Grand Rapids Daily Enquirer and Herald 7-14-1857,undated + + + + + + 5 + 59 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: Grand Rapids Daily Enquirer and Herald 7-16-1857,undated + + + + + + 5 + 60 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: Grand Rapids Daily Enquirer and Herald 7-22-1857,undated + + + + + + 5 + 61 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: Grand Rapids Daily Enquirer and Herald 7-24-1857,undated + + + + + + 5 + 62 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.405:521-523 July 24, 1857,undated + + + + + + 5 + 63 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: Grand Rapids Daily Enquirer and Herald 7-26-1857,undated + + + + + + 5 + 64 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: Grand Rapids Daily Enquirer and Herald 7-28-1857,undated + + + + + + 5 + 65 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.405:533-536 Aug. 14, 1857,undated + + + + + + 5 + 66 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: PHSC Box 7 Vol. 2:30 Sept. 10, 1857,undated + + + + + + 5 + 67 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R6 Jan. 4, 1858 J. Anthony to P. Barbeau,undated + + + + + + 5 + 68 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R6 Jan. 21, 1858 H.B. Belanger to P. Barbeau,undated + + + + + + 5 + 69 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R6 April 8, 1858 Graff and Hoyt to P. Barbeau,undated + + + + + + 5 + 70 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: PHSC Box 7 Vol. 2:61 May 12, 1858,undated + + + + + + 5 + 71 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R6 May 15, 1858 B. Stasiano to P. Barbeau,undated + + + + + + 5 + 72 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: Grand Rapids Daily Enquirer and Herald p.2, Col.3 June 19, 1858 “Ottowas in Oceana and Mason Countries”,undated + + + + + + 5 + 73 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CHL-BP, MSSFM-5, R933 Sept. 9, 1858 Fitch to Buchanan,undated + + + + + + 5 + 74 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M R.406 (P-76 + 76A US v. MI) Oct. 2, 1858,undated + + + + + + 5 + 75 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.406:250 Oct. 21, 1858,undated + + + + + + 5 + 76 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R6 April 10, 1859 Anthony to Barbeau,undated + + + + + + 5 + 77 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.406:467-471 June 18, 1859,undated + + + + + + 5 + 78 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.406:538-542 Oct. 19, 1859,undated + + + + + + 5 + 79 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R8 [May 1860 – Mar. 1861] P. Barbeau Account Book,undated + + + + + + 5 + 80 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M653 R.541 1860 Federal Census, Chippewa Co.,undated + + + + + + 5 + 81 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.406 Mar. 10, 1860,undated + + + + + + 5 + 82 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.406:1064-1066 Oct. 8, 1861,undated + + + + + + 5 + 83 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.407:296 July 9, 1863,undated + + + + + + 5 + 84 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.407:458-459 Jan. 7, 1864,undated + + + + + + 5 + 85 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.407:460 Jan. 7, 1864,undated + + + + + + 5 + 86 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: P-90 US v. MI Jan. 12, 1864,undated + + + + + + 5 + 87 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.407 (P-100 + 100A US v. MI) Jan. 12, 1864,undated + + + + + + 5 + 88 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.407:456-457 March 25, 1864,undated + + + + + + 5 + 89 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.407 (P-99 + 99A US v. MI) May 10, 1864,undated + + + + + + 5 + 90 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: PHSC Box 7 Vol. 1:190 July 5, 1864,undated + + + + + + 5 + 91 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: RG75, NARC, D.C. Annuity Roll 1865,undated + + + + + + 5 + 92 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.407:713 Jan. 21, 1865,undated + + + + + + 5 + 93 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: ?Feb. 18, 1865,undated + + + + + + 5 + 94 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: Acts of the Legislature of the State of MI March 21, 1865 No. 350 “Act to protect and preserve the fisheries of this state”,undated + + + + + + 5 + 95 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R8 May 28, 1865 Scranton from Barbeau,undated + + + + + + 5 + 96 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BBR; Mss F52R9 July 28, 1865 Woolnough to Barbeau,undated + + + + + + 5 + 97 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: LRMS-1131 Feb. 9, 1866,undated + + + + + + 5 + 98 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: LRMS-1131 Feb. 23, 1866,undated + + + + + + 5 + 99 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: LRMS-1131 April 1, 1866,undated + + + + + + 5 + 100 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.407:1037 June 7, 1866,undated + + + + + + 5 + 101 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: LRMS-1131 July 3, 1866,undated + + + + + + 5 + 102 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R8 July 16, 1866 Roussain to Barbeau,undated + + + + + + 5 + 103 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R8 July 19, 1866 Scranton to Barbeau,undated + + + + + + 5 + 104 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-BL; Mss F52R8 July 25, 1866 Boughton, NY – Advertisement,undated + + + + + + 5 + 105 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.407:1190 Aug. 1, 1866,undated + + + + + + 5 + 106 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.407:852-865 Nov. 16, 1866,undated + + + + + + 5 + 107 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: LRMS-1131 Nov. 28, 1866,undated + + + + + + 5 + 108 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: LRMS-1131 Dec. 20, 1866,undated + + + + + + 5 + 109 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: LRMS-1131 Dec. 29, 1866,undated + + + + + + 5 + 110 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: LRMS-1131 Dec. 31, 1866,undated + + + + + + 5 + 111 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.408:234 Jan. 10, 1867,undated + + + + + + 5 + 112 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: PHSC Box A Vol. 1:511 April 2, 1867,undated + + + + + + 5 + 113 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: PHSC Box 7 Vol. 4:137 Sept. 29, 1867,undated + + + + + + 5 + 114 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: LRMS-1131 Oct. 28, 1867,undated + + + + + + 5 + 115 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: RG75, NARC, DC 1868 Annuity Roll,undated + + + + + + 5 + 116 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: SAM RG80-33, B6, F1 [1869] Field Notes of N.H. Winchell,undated + + + + + + 5 + 117 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: PHSC Box B Vol. 1:155 Feb. 11, 1869,undated + + + + + + 5 + 118 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: RG75, NARC, D.C. Annuity Roll 1870,undated + + + + + + 5 + 119 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.409:5-7 March 22, 1870,undated + + + + + + 5 + 120 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.409:190 P-102 + 102A US v. MI Apr. 15, 1870,undated + + + + + + 5 + 121 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.409:304-309 Nov. 8, 1870,undated + + + + + + 5 + 122 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.409:900-901 P-104 + 104A US v. MI Oct. 12, 1871,undated + + + + + + 5 + 123 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.409 P-105 + 105A US v. MI Dec. 8, 1871,undated + + + + + + 5 + 124 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.410:572 P-107 + 107A US v. MI Aug. 24, 1872,undated + + + + + + 5 + 125 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.410:818 P-108 + 108A US v. MI Feb. 10, 1873,undated + + + + + + 5 + 126 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.410:913 P-109 + 109A US v. MI June 13, 1873,undated + + + + + + 5 + 127 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.411 P-111 + 111A US v. MI July 5, 1875,undated + + + + + + 5 + 128 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.411 P-112 + 112A US v. MI Nov. 16, 1875,undated + + + + + + 5 + 129 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.412:132-136 Jan. 10, 1877,undated + + + + + + 5 + 130 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM 234 R.413:65-103 12-27-77,undated + + + + + + 5 + 131 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.413:53-64 1-4-78,undated + + + + + + 5 + 132 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.413:104-136 1-12-78,undated + + + + + + 5 + 133 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.413 P-110 + 110A US v. MI May 25, 1878,undated + + + + + + 5 + 134 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.413:486-490 P-113 + 113A US v. MI June 11, 1878,undated + + + + + + 5 + 135 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: LROIA MAC Agy 1870-77 Aug. 31, 1878,undated + + + + + + 5 + 136 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.413:675 P-115 + 115A US v. MI Dec. 7, 1878,undated + + + + + + 5 + 137 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.414 P-114 + 114A US v. MI 1879,undated + + + + + + 5 + 138 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.414:381-88 1879,undated + + + + + + 5 + 139 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.415:10 Jan. 6, 1879,undated + + + + + + 5 + 140 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.414:381-385 May 27, 1879,undated + + + + + + 5 + 141 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.410:398 June 12, 1879,undated + + + + + + 5 + 142 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM T9 R576 1880 Federal Census of Chippewa Co., MI,undated + + + + + + 5 + 143 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC; Mss F52 R8 Jan. 27, 1880 note: Mandoskang to Barbeau,undated + + + + + + 5 + 144 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM T9 R606 June 1880 Federal Census of MI, Schoolcraft Co.,undated + + + + + + 5 + 145 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM M234 R.415:397-402 Aug. 1880,undated + + + + + + 5 + 146 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: P-117-117A US v. MI Aug. 6, 1880,undated + + + + + + 5 + 147 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: LR-OIA 1881-1807; 1881-590 Jan. 11, 1881,undated + + + + + + 5 + 148 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: LR-OIA 1881-10305 June 14, 1881,undated + + + + + + 5 + 149 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: LR-OIA 1881-15100 8-25-81,undated + + + + + + 5 + 150 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: LR-OIA 1881-15098 8-25-81,undated + + + + + + 5 + 151 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: LR-OIA 1883-21542 Nov. 19, 1883,undated + + + + + + 5 + 152 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: LR-OIA 1884-9750 April 25, 1884,undated + + + + + + 5 + 153 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: LR-OIA 1886-12842 4-7-86,undated + + + + + + 5 + 154 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: LR-OIA 1886-20651 4-23-86,undated + + + + + + 5 + 155 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: LR-OIA 1886-24790 9-1-86,undated + + + + + + 5 + 156 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: LR-OIA 1886-31912 11-27-86,undated + + + + + + 5 + 157 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: LR-OIA 1886-31912 Nov. 29, 1886,undated + + + + + + 5 + 158 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: LR-OIA 1887-15903 6-18-87,undated + + + + + + 5 + 159 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: LR-OIA 1888-1463 1-12-88,undated + + + + + + 5 + 160 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: LR-OIA 1888-3758 2-6-88,undated + + + + + + 5 + 161 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: LR-OIA 1888-5288 2-24-88,undated + + + + + + 5 + 162 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: Detroit Tribune, p.8 col. 1 June 21, 1888 “Scientific Wanderers”,undated + + + + + + 5 + 163 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CMU, AFCP/SSMC-GJP; MSS F52 R.9 1892 Drawing by T. Nawekishick,undated + + + + + + 5 + 164 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CCF Mackinac 84031-08, 175 Dec. 16, 1907,undated + + + + + + 5 + 165 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CCF Mackinac 34382-1917, 371 March 10, 1908,undated + + + + + + 5 + 166 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CCF Bay Mills 3663-1909, 313 1-11-09,undated + + + + + + 5 + 167 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CCF Bay Mills 25502-1909, 312 3-31-09,undated + + + + + + 5 + 168 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CCF Bay Mills 29439-1909, 313 4-16-09,undated + + + + + + 5 + 169 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CCF Bay Mills 78309-1909, 308 2 9-28-09,undated + + + + + + 5 + 170 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: Richmond Family Papers Collection 94, Box 5, Folder 2 Nov. 4, 1909,undated + + + + + + 5 + 171 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: 1912 Correspondence- US AG and MI AG,undated + + + + + + 5 + 172 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CCF Bay Mills 30746-1914, 313 March 18, 1914; April 25, 1914 letter,undated + + + + + + 5 + 173 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CCF [no agency] 34439-1914, 115 April 17, 1914,undated + + + + + + 5 + 174 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CCF Mackinac 70567-1914, 309 June 26, 1914,undated + + + + + + 5 + 175 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CCF Mackinac 99440-1915, 115 9-10-15 Sept. 10, 1915,undated + + + + + + 5 + 176 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CCF Mackinac 10786-1916, 052 2-3-16 Feb. 3, 1916,undated + + + + + + 5 + 177 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CCF Mackinac 53431-1916, 210 5-25-16,undated + + + + + + 5 + 178 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CCF Mackinac 103918-1917, 125 Rec. Nov. 10, 1917,undated + + + + + + 5 + 179 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CCF Mt. Pleasant 90122-1920, 115 11-1-20,undated + + + + + + 5 + 180 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: NAM Feb. 3, 1920 14th Census of Population, 1920 Sugar Island Twp, Sheet 5A, 6A,undated + + + + + + 5 + 181 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CCF Mackinac Agency 98005-1920, 170 2-4-1921,undated + + + + + + 5 + 182 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CCF Mt. Pleasant 19006-1922, 174 3-6-22,undated + + + + + + 5 + 183 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CCF Mackinac 44729-1923, 115 May 29, 1923,undated + + + + + + 5 + 184 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CCF ConsChip 44729-1923; 115. June 8, 1923,undated + + + + + + 5 + 185 + Box 3 Bay Mills Indian Community-Inland Treaty, Calendar documents, 1856-1924: CCF Mackinac 40846-1924, 174. May 24, 1924,undated + + + + + + 6 + 1 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: 1925 Decision of the Chip County Cir. Court March 3, 1925,undated + + + + + + 6 + 2 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: CCF Mackinac 34245-1926, 115 July 12, 1926,undated + + + + + + 6 + 3 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: CCF Mackinac [#?]-1926, 115 8-30-26,undated + + + + + + 6 + 4 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: CCF Mackinac 12552-1927, 115 March 8, 1927,undated + + + + + + 6 + 5 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: CCF Mr. P. 49702-1927, 115 10-24-27,undated + + + + + + 6 + 6 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: CCF Mt. P. 59622-1927, 115 12-22-27,undated + + + + + + 6 + 7 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: CCF Mt. Pleasant 1994-1928, 175. April 16, 1928 contains June 18, 1928,undated + + + + + + 6 + 8 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: CCF Mackinac 28778-1928, 115 May 31, 1928,undated + + + + + + 6 + 9 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: CCF Mackinac 54218-1928, 115 Nov. 5, 1928,undated + + + + + + 6 + 10 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: CCF Mt. Pleasant 59295-1928, 115 11-6-28,undated + + + + + + 6 + 11 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: CCF Mt. P. 55390-1928, 115 11-12-28,undated + + + + + + 6 + 12 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: State of MI, Natural Resource Laws, V.1: 311.1-315.5 (1987) 1929 “Game Law of 1929”- Act 286 of 1929,undated + + + + + + 6 + 13 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: CCF Lac Du Flambeau 1203-1929, 723 1-7-29,undated + + + + + + 6 + 14 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: CCF Mt. P. 12207-1930, 155 3-3-1930 March 3, 1930,undated + + + + + + 6 + 15 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: CCF Mount Pleasant 44474-1930, 311 Oct. 6, 1930,undated + + + + + + 6 + 16 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: CCF 18430-1930, 121 1-19-31,undated + + + + + + 6 + 17 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: CCF Mt. P. 71953-1931, 013 12-28-31,undated + + + + + + 6 + 18 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: CCF Mackinac 48656-1932, 115 Oct. 11, 1932,undated + + + + + + 6 + 19 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: CCF Sault Ste. Marie 96000-1919, 013 3-23-35,undated + + + + + + 6 + 20 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: CCF MI Misc. 9634-1936, 066 2-21-36 Includes June 19, 1936 Letter,undated + + + + + + 6 + 21 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: Constitution and Bylaws of the Bay Mills Indian Community, Amendments 1, 2 and 3 attached P-119 Nov. 4, 1936,undated + + + + + + 6 + 22 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: CCF Great Lakes 6215-1937, 931 1-18-37,undated + + + + + + 6 + 23 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: CCF Great Lakes 11705-1937, 931 2-19-37,undated + + + + + + 6 + 24 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: CCF Great Lakes 9592-c-1936, 057 4-7-37 April 7, 1937,undated + + + + + + 6 + 25 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: Corporate Charter of the Bay Mills Indian Community MI P-119 US v MI Nov. 27, 1937,undated + + + + + + 6 + 26 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: CCF Great Lakes 9625-1936, 066 1-26-38,undated + + + + + + 6 + 27 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: CCF MI Misc. 9634-1936, 006 May 27, 1938,undated + + + + + + 6 + 28 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: CCF Great Lakes 59902-1939, 052 Sept. 18, 1939,undated + + + + + + 6 + 29 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: CCF Great Lakes 29040-1936, 931 4-8-40,undated + + + + + + 6 + 30 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: Muskegon Chronicle 7-15-1958,undated + + + + + + 6 + 31 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: SAM, ECIA (1964-5), RG. 66-7-A, B1, F9 June 22, 1964 Beeson to Orlebeke (enclosure),undated + + + + + + 6 + 32 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: SAM, ECIA (1964-5), RG. 66-7-A, B1, F10 July 16, 1964 Beeson to Rep. Nakkula,undated + + + + + + 6 + 33 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: SAM, ECIA (1964-5), RG. 66-7-A, B1, F10 July 27, 1964 Beeson to Nakkula,undated + + + + + + 6 + 34 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: SAM, ECIA (1964-5) RG. 66-7-A, B1, F4 Aug. 29, 1964 Minutes, L’Anse,undated + + + + + + 6 + 35 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: SAM, ECIA (1964-5) RG. 66-7-A, B1, F11 Sept. 21, 1964 Beeson to Heustis,undated + + + + + + 6 + 36 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: MI. Dept. of Natural Resources Press Release Sept. 21, 1971,undated + + + + + + 6 + 37 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: Resolution by the Bay Mills Executive Council July 19, 1972,undated + + + + + + 6 + 38 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: Senate Committee of Indian Affairs Hearing S. 1066 and S. 1357 2/10/1944,undated + + + + + + 6 + 39 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1829,undated + + + + + + 6 + 40 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1830,undated + + + + + + 6 + 41 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1831,undated + + + + + + 6 + 42 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1832,undated + + + + + + 6 + 43 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1833,undated + + + + + + 6 + 44 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1834,undated + + + + + + 6 + 45 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1835,undated + + + + + + 6 + 46 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1836,undated + + + + + + 6 + 47 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1837,undated + + + + + + 6 + 48 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1838,undated + + + + + + 6 + 49 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1839,undated + + + + + + 6 + 50 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 40,undated + + + + + + 6 + 51 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA: 269 1841,undated + + + + + + 6 + 52 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1841,undated + + + + + + 6 + 53 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1842,undated + + + + + + 6 + 54 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1843,undated + + + + + + 6 + 55 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1844,undated + + + + + + 6 + 56 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1845,undated + + + + + + 6 + 57 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1846,undated + + + + + + 6 + 58 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1847,undated + + + + + + 6 + 59 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1848,undated + + + + + + 6 + 60 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1849,undated + + + + + + 6 + 61 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1850,undated + + + + + + 6 + 62 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1851,undated + + + + + + 6 + 63 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1852,undated + + + + + + 6 + 64 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1853,undated + + + + + + 6 + 65 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1854,undated + + + + + + 6 + 66 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1855,undated + + + + + + 6 + 67 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1856,undated + + + + + + 6 + 68 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1857,undated + + + + + + 6 + 69 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1858,undated + + + + + + 6 + 70 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1859,undated + + + + + + 6 + 71 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1860,undated + + + + + + 6 + 72 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1861,undated + + + + + + 6 + 73 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1862,undated + + + + + + 6 + 74 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1863,undated + + + + + + 6 + 75 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1864,undated + + + + + + 6 + 76 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1865,undated + + + + + + 6 + 77 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1866,undated + + + + + + 6 + 78 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1867,undated + + + + + + 6 + 79 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1868,undated + + + + + + 6 + 80 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1869,undated + + + + + + 6 + 81 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1870,undated + + + + + + 6 + 82 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1871,undated + + + + + + 6 + 83 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1872,undated + + + + + + 6 + 84 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1873,undated + + + + + + 6 + 85 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1874,undated + + + + + + 6 + 86 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1875,undated + + + + + + 6 + 87 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1876,undated + + + + + + 6 + 88 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1877,undated + + + + + + 6 + 89 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1878,undated + + + + + + 6 + 90 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1879,undated + + + + + + 6 + 91 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1880,undated + + + + + + 6 + 92 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1881,undated + + + + + + 6 + 93 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1882,undated + + + + + + 6 + 94 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1883,undated + + + + + + 6 + 95 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1884,undated + + + + + + 6 + 96 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1885,undated + + + + + + 6 + 97 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1886,undated + + + + + + 6 + 98 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1887,undated + + + + + + 6 + 99 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: ARCOIA 1888,undated + + + + + + 6 + 100 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: MAP- Bay Mills May 16, 1855,undated + + + + + + 6 + 101 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: Kappler, Treaty w/ Ottawa and Chippewa, 1820,undated + + + + + + 6 + 102 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: Kappler, Treaty w/ the Ottawa, etc. 1821,undated + + + + + + 6 + 103 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: Kappler, Treaty w/ the Ottawa, etc. 1836,undated + + + + + + 6 + 104 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: Kappler, Treaty w/ the Chippewa, 1854,undated + + + + + + 6 + 105 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: Kappler, Treaty w/ the Ottawa and Chippewa, 1855,undated + + + + + + 6 + 106 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: Treaty w/ the Chippewa of Sault Ste. Marie, 1855,undated + + + + + + 6 + 107 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: Treaty w/ the Saginaw Chippewas, 1855,undated + + + + + + 6 + 108 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: Treaty w/ Chippewa of Saginaw, 1864,undated + + + + + + 6 + 109 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: John Farmer’s Map [as copied from An Island in Grand Traverse Bay, Lake MI 1st Series, Vol. 1 (1992) by K.C. Firestone. Original held at CHL-CMU [1862] MAP partial copy],undated + + + + + + 6 + 110 + Box 4 Bay Mills Indian Community-Inland Treaty, ARCOIAS, 1925-present: New BM docs that need Processing,undated + + + + + + 7 + 1 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: 1937 Report of the Board of Commission assembled at MI. / Mackinac Sept. 1836 on the Claims of Creditors of the Ottawas and Chippewas- Treaty of March 28, 1836,undated + + + + + + 7 + 2 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MPHC, V.18: 638-41 Detroit Free Press July 23, 1889 “St. Mary’s River and Sault Ste. Marie”,undated + + + + + + 7 + 3 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Muskegon Chronicle [1937] Romance of Muskegon 1937 Centennial Year,undated + + + + + + 7 + 4 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MPHC, v.31: 178, 200-217 Barber, Edward W. (1902) “Recollections and Lessons of a Pioneer Boyhood”,undated + + + + + + 7 + 5 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Blackbird, A.J. History of the Ottawa and Chippewa Indians,undated + + + + + + 7 + 6 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: M. Black-Rodgers- “Varieties of Starving” 1986 Ethnohistory 33(4),undated + + + + + + 7 + 7 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Blair, E.H. Indian Tribes of the Upper MS Valley and Region of the Great Lakes,undated + + + + + + 7 + 8 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Brunger, R. WM H. Brockway- a varied ministry Christian Advocate Vol. 91 No. 22 May 28, 1964,undated + + + + + + 7 + 9 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Brunger, R. John H. Pitezel- Pioneer Missionary. MI Christian Advocate Vol. XCII, No. 13 April 1, 1965,undated + + + + + + 7 + 10 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Brunger, R. John H. Pitezel Pioneer Missionary on Lake Superior. MI Christian Advocate Vol. XCII No. 14 April 18, 1965,undated + + + + + + 7 + 11 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Brunger, R. Peter Marksman- Chippewa Ind. Missionary MI Christian Advocate Vol. 93 No. 9 March 3, 1966,undated + + + + + + 7 + 12 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Brunger, R. WM H. Brockway- a varied ministry Christian Advocate Vol. 91 No. 22 May 28, 1964,undated + + + + + + 7 + 13 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: N American Review, V.30: 62-121 [Cass, Lewis] (Jan. 1830) “Removal of the Indians: Documents and Proceedings”,undated + + + + + + 7 + 14 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: N American Review, V. XXIV N. LV (1827) Cass. Lewis P.365-442 “Policy and practice…” or “Act V- Indian Treaties”,undated + + + + + + 7 + 15 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Cover/Citation for Lewis Cass article NAR, N. LXVI (Jan 1830),undated + + + + + + 7 + 16 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Constitution of State of MI 1851,undated + + + + + + 7 + 17 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Copeway, G. 1850,undated + + + + + + 7 + 18 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MHM, V. 29: 205-12 (1935) Editor Settlement of Southern MI, 1805-1837,undated + + + + + + 7 + 19 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MPHC, V. 11:161-175 [1888] Everett, Philo Recollection of the Early Exploration and Discovery of Iron Ore on Lake Superior,undated + + + + + + 7 + 20 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MPHC, V. 26: 274-297 [1896] Fetch, Alpheus Indians of MI and the cession of their lands to the US by Treaties,undated + + + + + + 7 + 21 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Fuller, George N. 1925 Messages of the Governors of MI Vol. 1: 174-175,undated + + + + + + 7 + 22 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Genealogical Data from the Diary of Rev. Abel Bingham, 1828-1840,undated + + + + + + 7 + 23 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MPHC, V.38: 56-59 Goss, Dwight “Methods of Securing Information for Local History,undated + + + + + + 7 + 24 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MPHC, V.28: 94-104 (1900) Grant, C.B. “Life and Character of Alpheus Felch”,undated + + + + + + 7 + 25 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MHM, V. 24: 361-379 (1940) Greenman, Emerson F. “Chieftainship Among MI Indians”,undated + + + + + + 7 + 26 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: N American Review, V.22: Halkett, John (Lewis Cass) (1826) “Indians of N America”,undated + + + + + + 7 + 27 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Hartwick, L.M. and W.H. Tuller (1890) Oceana County Pioneers and Business Men of Today,undated + + + + + + 7 + 28 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MPHS, V. 21: 370-71, 390-97 [1894] Hazelton “Reminiscences of 17 Years Residence in MI: 1836-53”,undated + + + + + + 7 + 29 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Henry, Alexander- Travels in Canada 1763-64,undated + + + + + + 7 + 30 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MI Pioneer and Historical Collections Vol. 2: 146-157 (1880) Hulbert, Ann “Sketches of the Life of Rev. Abel Bingham,undated + + + + + + 7 + 31 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MH, V.42: 197-214 (1958) Jamison, Knox Survey of the Public Lands,undated + + + + + + 7 + 32 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Jefferson- Notes on the State of VA,undated + + + + + + 7 + 33 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Johnston George 1905 “Reminiscences of Sault de Ste. Marie” MI Pioneer and Historical Collections Vol. XII: 605-611,undated + + + + + + 7 + 34 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Survey and Sale of MI Public Land-Dallas Jones, 1952,undated + + + + + + 7 + 35 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Docket Nos. 18-E + 58 March 28, 1836 Report by Helen Knuth,undated + + + + + + 7 + 36 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Kohl, Johann Kitchi-Gami 1985,undated + + + + + + 7 + 37 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MH, V.50: 111-138 Kuhn, Madison “Diffin Morse and the Reluctant Pioneer”,undated + + + + + + 7 + 38 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MHM, V.27: 344-376 (1933) Larzelere, Claude S. “Red Man in MI”,undated + + + + + + 7 + 39 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Laws of the Territory of MI Vol. 1 1821 (1871) “Act Regulating Fences” March 22, 1821,undated + + + + + + 7 + 40 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Laws of the Territory of MI 1833 “Act Relative to the Duties and Privileges of Twps” April 17, 1833,undated + + + + + + 7 + 41 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MPHC, V.30: 405-9 Martin, E.C. [1906] “Leaves from an Old Time JL: Lake Superior in 1847”,undated + + + + + + 7 + 42 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Mason, Schoolcraft’s Expedition 1958,undated + + + + + + 7 + 43 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Mason, P. ed. Schoolcraft’s Expedition to Lake Itasca,undated + + + + + + 7 + 44 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: McKenney, T. Tour of the Lakes,undated + + + + + + 7 + 45 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MPHC, V.13: 223-225 “Report of the Memorial Committee: Martin Ryerson”,undated + + + + + + 7 + 46 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MPHC, V.XXI: 145-147 [1894] Morehouse, Albert F. “Ionia County”,undated + + + + + + 7 + 47 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MH, V.55, N.4: 275-288 (1971) Neumeyers, Elizabeth “MI Indians Battle Against Removal”,undated + + + + + + 7 + 48 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Nichols, John 1994 Translation of Key Phrases in Treaties of 1837 and 1855. Report Mille Lacs et al. v. MN,undated + + + + + + 7 + 49 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Nute, Grace Lee 1926 “AFC’s Fishing Enterprise on Lake Superior” MO Valley Historical Review Vol. XXI: 483-503,undated + + + + + + 7 + 50 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Ostergren, R.C. Upper Midwest History Vol. 1 1981,undated + + + + + + 7 + 51 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Paine, Thomas [Feb. 14, 1776] Common Sense Introduction,undated + + + + + + 7 + 52 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Peterson, Eugene T. P.H.D. Dissertation, History of Wild Life Conservation in MI, 1859-1921,undated + + + + + + 7 + 53 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MPHC, V.31: 98-101; 134-139 [1902] Parker, N.A. “History of Benzie County by Historians of Each Twp”,undated + + + + + + 7 + 54 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MH, V.37: 355-372 (1953) Peterson, Eugene T. “MI Sportsmen’s Association: A Pioneer in Game Conservation”,undated + + + + + + 7 + 55 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Muskegon Chronicle: 1-16 July 10, 1937,undated + + + + + + 7 + 56 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MH, V.44: 129-145 (1960) Peterson, Eugene T. “Wildlife Conservation in MI”,undated + + + + + + 7 + 57 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Powell, J.D. 1899 Bureau of American Ethnology- Ind. Land Cessions of 1836,undated + + + + + + 7 + 58 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MHM, V.20: 246-57 (1936) “Pioneer Notes”,undated + + + + + + 7 + 59 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MHM, V.14: 28-29 (Winter 1930) Ranck, James B. “Lewis Cass- Squatter of Sovereignty”,undated + + + + + + 7 + 60 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Royce 1899,undated + + + + + + 7 + 61 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MH, V.60, N.2: 137-160 (1976) Rubenstein, Bruce “To Destroy a Culture: Indian Education in MI, 1855-1900”,undated + + + + + + 7 + 62 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MH, V.37: 274-298 (1953) Ruddiman, M.F. “Lewis Cass and the American Tradition”,undated + + + + + + 7 + 63 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MH, V.60, N.1: 71-93 (Spring 1976) Satz, Ronald N. “Indian Policy in the Jacksonian Era: The Old NW as a Test Case”,undated + + + + + + 7 + 64 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MHM, V.3, N.3: 367-383 Sawyer, Alvati L. (July 1919) “Forests of the U.P. and their Place in History”,undated + + + + + + 7 + 65 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Schoolcraft, Henry R. 1851 Personal Memoirs of a Residence of Thirty Years w/ the Ind. Tribes on the American Frontier,undated + + + + + + 7 + 66 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Schoolcraft- Travels in Central Portions of MS Valley- 1825,undated + + + + + + 7 + 67 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Schoolcraft, Narrative of Travels, 1953,undated + + + + + + 7 + 68 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Smith, Hugh, Merwin- Marie Snell- J.W. Collins. “Review of the Fisheries of the Great Lakes in 1885” D-317 US vs MI,undated + + + + + + 7 + 69 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MHM, V.25: 300-1, 306-9 (1941) Stern, Madeline B. “Margaret Fuller’s Summer in the W (1843)”,undated + + + + + + 7 + 70 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MHM, V. 21: 71-88 (1937) Wadsworth, B.M. “Vanishing Art of the Chippewas”,undated + + + + + + 7 + 71 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: (Ludington) Daily News (weekly from Jan 3, 1950-Nov. 13, 1950) Williams, Leonore “Reminiscences of Pentwater”,undated + + + + + + 7 + 72 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Willoughby WR 1955 St. Marys: Our First Ship Canal,undated + + + + + + 7 + 73 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: New York Daily Tribune, p.3, C. 4 and5 March 3, 1854 “Northwestern MI” Letter from I. Dame to NYDT,undated + + + + + + 7 + 74 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: (Ludington) Daily News (April 8, 1950) Crowe, James A. “Conservation Officers can Still Arrest Game Law Violators- Court Action only makes Task Harder”,undated + + + + + + 7 + 75 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: (Ludington) Daily News, p.7 (June 20, 1950) [a.u] “Bass Lake Main Indian Concentration Point”,undated + + + + + + 7 + 76 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Ludington Daily News (Oct. 10, 1950) “Miss Carrie Mears Gives Interesting Description of Village of Lincoln”,undated + + + + + + 7 + 77 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Ludington Daily News p.5 (Jan. 10, 1950) “Indian Couple Among First Custer Settlers”,undated + + + + + + 7 + 78 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Daily Mining JL (Marquette), p.5, c.2 Jan. 8, 1903 “Anent Charley Kaw-baw-gam”,undated + + + + + + 7 + 79 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Letter copied from Honorable Peter White, (1905) by Ralph D. Williams 29 Jan. 1853 Ward to Burt,undated + + + + + + 7 + 80 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Ludington Daily News p.1 (Feb. 2, 1950) “Country to Get $630 as Shared Forest Split”,undated + + + + + + 7 + 81 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MI Heritage, V.7 N.4 (1966) Bolitho, Roberta “Robert J. Graveraet”,undated + + + + + + 7 + 82 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MPHC, V.28: 544-558 (1900) “History of the Crystal Lake Twp, Benzie County”,undated + + + + + + 7 + 83 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: SAM- Executive Committee of Indian Affairs, May 5, 1964 Beeson to Orlebeke (1964-65) 66-7-A, B1, F2,undated + + + + + + 7 + 84 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: CMU, AFCP/SSMC-BL; MSS F52 R.6 Feb. 1856 Nin Louis Debassige to P. Barbeau,undated + + + + + + 7 + 85 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MHM, V.3, N.4: 475-77 (Oct. 1919) “Historical News and Comment”,undated + + + + + + 7 + 86 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MHM, V.10: 324-6 (1926) Belkrap, Charles E. “Legend of the Trailing Arbutus”,undated + + + + + + 7 + 87 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MHM, V.16: 654-65 (1931) Spooner, Harry L. “Indians of Oceana”,undated + + + + + + 7 + 88 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MHM, V.15: 459-61 (1931) Brockway, Gray (Compiler) “Letters from the Long Ago”,undated + + + + + + 7 + 89 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MH, V.50, N.2: 97-110 (June 1966) “Frontiersmanship in MI”,undated + + + + + + 7 + 90 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: MH, V.37: 374-388 (1952) Dunham, Douglas “Rix Robinson and the Indian Land Cession of 1836”,undated + + + + + + 7 + 91 + Box 5 Bay Mills Indian Community-Inland Treaty, Calendar documents, published sources: Morgan, Lewis H. (1868) American Beaver and His Works,undated + + + + + + 8 + 1 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Biography/Reference Information,undated + + + + + + 8 + 2 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Anderson, D. 1991 Variability in Trade at 18th C. Out,undated + + + + + + 8 + 3 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Armstrong, Louise V. (1938) We too Are the People,undated + + + + + + 8 + 4 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Bald, Clever 1944 “Some Myths About MI”,undated + + + + + + 8 + 5 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Baraga, Rev. F. 1976 Chippewa Indians 1847,undated + + + + + + 8 + 6 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Belknap, Charles E. (1922) Yesterdays of Grand Rapids,undated + + + + + + 8 + 7 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Blackbird, A.J. History of the Ottawa and Chippewa Indians,undated + + + + + + 8 + 8 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Black-Rogers, Mary 1986 “Varieties of Starving” Ethnohistory 33 (4): 343-383,undated + + + + + + 8 + 9 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Blois, John 1988 Gazetteer of the State of MI,undated + + + + + + 8 + 10 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Bolt, Christine (1987) American Indian Policy and American Reform,undated + + + + + + 8 + 11 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Bremer, Richard G. (1981) Indian Agent and Wilderness Scholar,undated + + + + + + 8 + 12 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: N American Review, V, XXIV, NLV (1827) Cass, Lewis “Policy and Practice”,undated + + + + + + 8 + 13 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: N American Review, V.30: 62-21 [Cass, Lewis] “Removal of Indians” (Jan. 1830),undated + + + + + + 8 + 14 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Cleland, Charles E. Prehistoric Annual Ecology and Ethnozoology of the Upper Great Lakes Region (1966),undated + + + + + + 8 + 15 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Cleland, Charles E. (1982) “Inland Shore Fishery of the Northern Great Lakes” (American Antiquity),undated + + + + + + 8 + 16 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Cleland, Charles E. (1982) “Indians in the Changing Environment” in Great Lakes Forests: an Environmental and Social History,undated + + + + + + 8 + 17 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Cleland, Charles (1991) “Cass Sassaba and Ozhawguscodaywaquay: History, Ethnohistory and Historical Reality” in Entering the Nineties: The N American Experience,undated + + + + + + 8 + 18 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Cleland, Charles E. (1992) (1991) “From Ethnohistory to Archaeology: Ottawa and Ojibway Band Territories of the Northern Great Lakes”,undated + + + + + + 8 + 29 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Cleland, Charles E. (1992) Rites of Conquest,undated + + + + + + 8 + 20 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Cleland, Charles E. (1993) “Economic and Adaptive Change Among the Lake Superior Chippewa of the 19th Century” in Ethnohistory and Archaeology,undated + + + + + + 8 + 21 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Cleland, Charles. Place of the Pike (Gnoozhekaaning) (2001),undated + + + + + + 8 + 22 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Cleland, N. (1987) “Natural Vegetation c. 1600” in Atlas of Great Lakes Indian History,undated + + + + + + 8 + 23 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Commission Finding on the Chippewa Indians of the ICC Vol. 7,undated + + + + + + 8 + 24 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Constitution of State of MI (1851),undated + + + + + + 8 + 25 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Densmore, Frances (1970) Chippewa Customs,undated + + + + + + 8 + 26 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Densmore, Frances. (1974) How Indians use Wild Plants,undated + + + + + + 8 + 27 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Dice, Lee (1943) Biotic Provinces of N. America,undated + + + + + + 8 + 28 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Dunbar, Willis (1965) MI: A History of the Wolverine State,undated + + + + + + 8 + 29 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Etten, Wm. J. [1926] Citizen’s History of Grand Rapids, MI,undated + + + + + + 8 + 30 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Everett, Franklin [1878] Memorials of the Grand River Valley,undated + + + + + + 8 + 31 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Fisher, Earnest B. (1918) Grand Rapids and Kent County, MI V.1,undated + + + + + + 8 + 32 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Fuller, George N. 1916 Economic and Social Beginnings of MI: A Study of Settlement,undated + + + + + + 8 + 33 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Gilman, Carol. (1982) Where 2 Worlds Meet: the Great Lakes Fur Trade,undated + + + + + + 8 + 34 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Gilman, Rhonda (1970) Last Days of the Upper MS Fur Trade,undated + + + + + + 8 + 35 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Gilman, Rhonda (1974) Fur Trade in the Upper MS Valley, 1630-1850,undated + + + + + + 8 + 36 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: MPHC, V.30: 172-90 (1906) Goss, Dwight “Indians of The Grand River Valley”,undated + + + + + + 8 + 37 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: MHM, V.24: 361-379 (1940) Greenman, Emerson F. “Chieftainship Among MI Indians”,undated + + + + + + 8 + 38 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Greffenius, Ruben (1968) Development of MI. Public land Policy,undated + + + + + + 8 + 39 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Haldimand, Papers Sinclair to Feb. 5, 1782,undated + + + + + + 8 + 40 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Hartwick, LM + WH Tuller (1890) Oceana Co. Pioneers + Business Men of Today,undated + + + + + + 8 + 41 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: MPHC, v. 26: “Reminiscences of Pioneer Days in Hastings, MI.” Hayes, Mrs. A.M.,undated + + + + + + 8 + 42 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: MPHS, v. 21: 370-71 [1894] Hazelton “Reminiscences of 17 yrs of Resiclencein MI” 1836-53,undated + + + + + + 8 + 43 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Hendrick, U.P. [1948/1986] Land of the Crooked Three,undated + + + + + + 8 + 44 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Henry, Alexander – Travels in Canada, 1763-64,undated + + + + + + 8 + 45 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: MPHC, v. 55[1907] “Life of Leonard Slater” Hoyt, Mrs. Mary M. Louis,undated + + + + + + 8 + 46 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Jefferson, Thomas 1805 Notes on the State of Virginia,undated + + + + + + 8 + 47 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Jenness, Dismond 1935 Ojibwe of Perry Island,undated + + + + + + 8 + 48 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Johnson, Ida A. (1971) MI Fur Trade,undated + + + + + + 8 + 49 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Survey + Sale of MI Public land – Dallas James, 1952,undated + + + + + + 8 + 50 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Kappler, C. (1904) Indian Affairs: Laws and Treaties,undated + + + + + + 8 + 51 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Kay, Jeanne 1979 WI Indian Hunting Patterns, 1634-1836,undated + + + + + + 8 + 52 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Kiebler, E.W. [1953] Old Log School by the Lake and the Surrounding Area,undated + + + + + + 8 + 53 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Knuth, Helen, Valvahan as of 3.28.36 Lands Involved in Ottowa-Chippewa Indian Cases,undated + + + + + + 8 + 54 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Kvasnicka, R. + H. Viola (1979) Commissioners of Indian Affairs, 1824-1977,undated + + + + + + 8 + 55 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: MPHC, v. 32: (1903) Leach, Dr. M.L. History of the Grand Traverse Region,undated + + + + + + 8 + 56 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Leacock, Eleanor 1954 Montagnais Hunting Terr and the Fur Trade,undated + + + + + + 8 + 57 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Lillie, Leo C. [1931] Historic Grand Haven and Ottawa Counties,undated + + + + + + 8 + 58 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Mason, Carol I. 1985 Prehistoric Maple Sugaring Sites?,undated + + + + + + 8 + 59 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Mason, Carol I. (1988) Introduction to WI Indians,undated + + + + + + 8 + 60 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Mason, P. ed. (1958) Schoolcraft’s Expedition to Lake Itasca,undated + + + + + + 8 + 61 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: McClurken, J.M., G. Cornell, J. Clifton “Ottawa” in People of the 3 Fires (1986),undated + + + + + + 8 + 62 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: McClurken, James 1988 We wish to be civilized: Ottowa-American Political Contests of the MI Frontier,undated + + + + + + 8 + 63 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: McClurken, James M. “Aug.in Hamlin Jr: Ottawa Identity,undated + + + + + + 8 + 64 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: McCoy, Isaac 1970 History of the Baptist Indian Missions,undated + + + + + + 8 + 65 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: McKenney, T. Tour of the Lakes (1827),undated + + + + + + 8 + 66 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Meeker, James E. J. Elias + J. Hein (1993) Plants Used by the Ojibwa,undated + + + + + + 8 + 67 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Moerman, Daniel E. 1986 Medicinal Plants of Native America,undated + + + + + + 8 + 68 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Monfort, Margaret 1990 Ethnic and Tribal Identity among the Saginaw Chippewa of 19 C MI,undated + + + + + + 8 + 69 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Montney, Irene H. 1964 Historical Notes in Alden and Helena Twps,undated + + + + + + 8 + 70 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Morris, Richard B. (1953) Encyclopedia of American History,undated + + + + + + 8 + 71 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Nichols, John D. (1988) “Statements Made by the Indians”: A Bilingual Petition of the Chippewas of Lake Superior, 1864, in American Anthropologist, v. 92, 1, March 1990,undated + + + + + + 8 + 72 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Nicholas, John D. 2000 Translation of Key Phrases in the Treaties of 1837 and 1855. Fish in the Lakes,undated + + + + + + 8 + 73 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Nute, Grace L. “AFC’s Fishing Enterprise on Lake Superior” MO Valley Historical Review Vol. XXI: 483-503,undated + + + + + + 8 + 74 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Ostergren, Robert 1981 Geographic Perspectives on the History of Settlement in the Upper Midwest,undated + + + + + + 8 + 75 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Paine, Thomas [Feb. 14, 1776] Common Sense Introduction,undated + + + + + + 8 + 76 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Perkins and Cleland (1998) Ethnoarchaelogical Investigations The Indian Village Site,undated + + + + + + 8 + 77 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Peterson, Eugene T. History of Wildlife Conservation in MI (1952),undated + + + + + + 8 + 78 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: MH, v. 37: (1953) “MI Sportsmen’s Association: A Pioneer in Game Conservation” Peterson, Eugene T.,undated + + + + + + 8 + 79 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: MH, v. 44: (1960) “Wildlife Conservation in MI” Peterson, Eugene T.,undated + + + + + + 8 + 80 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Potzger, J. E. 1946 “Phytosociology of the Primeval Forest in Central-Northern WI and Upper MI” in Ecological Monographs, v. 16, 3 ,undated + + + + + + 8 + 81 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Prucha, Paul. (1984) Great Father,undated + + + + + + 8 + 82 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Prucha, Paul L. (1990) Documents of US Indian Policy,undated + + + + + + 8 + 83 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Quimby, G.I. (1962) Alexander Henry in Central MI, 1763-64,undated + + + + + + 8 + 84 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Quimby, George 1962 Year w/ a Chippewa Family, 1763-64,undated + + + + + + 8 + 85 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Ranville, Judy and Nancy Campbell (1976) Memories of Mackinaw,undated + + + + + + 8 + 86 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Rostlund, Erharad (1952) Freshwater Fish and Fishing in Native N America,undated + + + + + + 8 + 87 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Sahlins, Marshall D. (1968) Tribesmen,undated + + + + + + 8 + 88 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Sahlins, Marshall 1872 Stone Age Economics,undated + + + + + + 8 + 89 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: MH, v. 60, N.1: (Spring 1976) Satz, Ronald W. Indian Policy in the Jacksonian Era: The Old Northwest as a Test Case,undated + + + + + + 8 + 90 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Schery, Robert W. (1972) Plants for Man,undated + + + + + + 8 + 91 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Schoolcraft, HR 1839 “Census of MI Indian Population under Treaty of Washington 1836”,undated + + + + + + 8 + 92 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Schoolcraft, HR 1851 Information Respecting the History, Condition and Prospects of the Indian Tribes,undated + + + + + + 8 + 93 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Schoolcraft, Henry 1851 Personal Memoirs of a Residence of Thirty Years w/ the Indian Tribes,undated + + + + + + 8 + 94 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Service, Elman R. 1968 Primitive Social Organization,undated + + + + + + 8 + 95 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Smith, Huron H. 1932 “Ethnobotany of the Ojibwe Indians” 4(3):327-525,undated + + + + + + 8 + 96 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Sword, Wiley 1985 President Washington’s Indian War: Struggle from the Old NW,undated + + + + + + 8 + 97 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Trigger, B. (1976) Children of Aataentsic,undated + + + + + + 8 + 98 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Turner, Frederick Jackson 1900 Frontier in American History,undated + + + + + + 8 + 99 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: HNF-OHS 1991 “Oral History of Francis Le Blanc History and Life Among Whotefish Bay and Camp Marquette C.C.C. Camp” US Forest Service,undated + + + + + + 8 + 100 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: HNF-OHS 1993 “Oral History of Lumbering, Forest Conditions and Native American Land Use by Elvin Smith, St. Ignace, MI” US Forest Service,undated + + + + + + 8 + 101 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Veateh, VO 1959 Presettlement Forests in MI,undated + + + + + + 8 + 102 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Voelker, David W. 1990 “Robert Stuart, a Man Who Meant Business”,undated + + + + + + 8 + 103 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: MPHC, v.38:318-321 “Indian and Pioneer life” Waite, Miss Minnie B.,undated + + + + + + 8 + 104 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: White, Richard (1991) Middle Ground,undated + + + + + + 8 + 105 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Williams, Mentor (ed.) (1953) Narrative JLs of Travels Through the Northwest Regions of the US by Henry Schoolcraft,undated + + + + + + 8 + 106 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Yarnell, Richard A. (1964) Aboriginal Relationships Between Culture and Plant Life in the Upper Great Lakes Region,undated + + + + + + 8 + 107 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Treaty of Greenville Aug. 3, 1795,undated + + + + + + 8 + 108 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Treaty w/ Ottawa, etc. 1807 7 Stat 105,undated + + + + + + 8 + 109 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Treaty w/ Chippewa 1808 7 Stat 112,undated + + + + + + 8 + 110 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Treaty w/ Wyandot 1815 7 Stat 131,undated + + + + + + 8 + 111 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Treaty w/ Ottawa, 1816 7 Stat 146,undated + + + + + + 8 + 112 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Treaty w/ Wyandot, 1817 Stat 160,undated + + + + + + 8 + 113 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Treaty w/ Chippewa, 1819 7 Stat 203,undated + + + + + + 8 + 114 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Treaty w/ Chippewa 1820 7 Stat 206,undated + + + + + + 8 + 115 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Treaty w/ Ottawa and Chippewa 1820 7 Stat 207,undated + + + + + + 8 + 116 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Treaty w/ Ottawa, 1821 7 Stat 218,undated + + + + + + 8 + 117 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Treaty w/ Choctaw, 1830 7 Stat 333,undated + + + + + + 8 + 118 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Treaty w/ Winnebago, 1832 7 Stat. 370,undated + + + + + + 8 + 119 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Treaty w/ Chickasaw, 1832 7 Stat 381,undated + + + + + + 8 + 120 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Treaty w/ Cherokee, 1835 7 Stat 478,undated + + + + + + 8 + 121 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Treaty w/ Ottawa, 1836 7 Stat 491,undated + + + + + + 8 + 122 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Treaty w/ Chippewa, 1842 7 Stat 591,undated + + + + + + 8 + 123 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Treaty w/ Chippewa, 1854 10 Stat 1109,undated + + + + + + 8 + 124 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Treaty w/ Oto and MO, 1854 10 Stat 1038,undated + + + + + + 8 + 125 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Treaty w/ Omaha, 1854 10 Stat 1043,undated + + + + + + 8 + 126 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Treaty w/ Ottawa and Chippewa July 31, 1855 11 Stat 621,undated + + + + + + 8 + 127 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Treaty w/ Chippewa – S.S. Marie Aug. 2, 1855 11 Stat 631,undated + + + + + + 8 + 128 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Treaty w/ Chippewa of Saginaw Aug. 2, 1855 11 Stat 633,undated + + + + + + 8 + 129 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Treaty w/ Creeks 1856 11 Stat 699,undated + + + + + + 8 + 130 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Report on the COIA Oct. 15, 1783 Tour of Continental Congress 25:681-683,undated + + + + + + 8 + 131 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Ordinance for the regulation of Indian Affairs Aug. 7, 1786 Tour of Continental Congress 31,undated + + + + + + 8 + 132 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NW Ordinance of July 13, 1787 Tour of Continental Congress 32,undated + + + + + + 8 + 133 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Indian Trade and Intercourse Act of 1790 US Stat 1:137-138,undated + + + + + + 8 + 134 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Trade and Intercourse Act of 1802 US Stat 2:136-146 March 30, 1802,undated + + + + + + 8 + 135 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Exclusion of British Traders Apr. 29, 1816 US Stat 3:332-333,undated + + + + + + 8 + 136 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Act Regulating Fences 1821 Laws of Territory of MI Vol. 1:843-846,undated + + + + + + 8 + 137 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Indian Removal Act May 28, 1830 4 Stat 411-412,undated + + + + + + 8 + 138 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Act relative to duties and privileges of Twps April 17, 1833,undated + + + + + + 8 + 139 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Indian Trade and Intercourse Act of June 30, 1834 US Stat 4:729-735,undated + + + + + + 8 + 140 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Territorial Papers Vol VI:36-37 June 17, 1820,undated + + + + + + 8 + 141 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Sketch of the Claims July 6, 1823,undated + + + + + + 8 + 142 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM M1 R12:565-567 Aug. 7, 1824,undated + + + + + + 8 + 143 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM M1 R27:232-235 Sept. 22, 1830,undated + + + + + + 8 + 144 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Bishop Baraga Collection A-576 ALJ-DA 1988-95 (BBC-M87) March 8, 1832,undated + + + + + + 8 + 145 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: HRS papers R.47: 30591 Feb. 5, 1834 May 27, 1833-Sept. 1837,undated + + + + + + 8 + 146 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM M1 R.71: 52 June 13, 1833,undated + + + + + + 8 + 147 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM M1 R.71: 59-60 June 20, 1833,undated + + + + + + 8 + 148 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM M1 R.35: 511 Nov. 21, 1833,undated + + + + + + 8 + 149 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: HRSP LCM Papers R.47: 30591 Feb. 5, 1834,undated + + + + + + 8 + 150 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: HRS Papers R.6: 2077 March 12, 1834,undated + + + + + + 8 + 151 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: BBC MF66-2 A-421, LSA XIV/VI, #35: 1-4 June 26, 1834,undated + + + + + + 8 + 152 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM M1 R.68 (P-28 + 28A US v. MI) July 6, 1834,undated + + + + + + 8 + 153 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM M1 R.69:51 (P-31 + 31A US v. MI) Aug 18, 1834,undated + + + + + + 8 + 154 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM M1 R69: 67 Sept. 30, 1834,undated + + + + + + 8 + 155 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM M1 R.69: 72 Oct. 15, 1834,undated + + + + + + 8 + 156 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM M1 R.69: 78 Oct. 25, 1834,undated + + + + + + 8 + 157 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM M1 R.72: 217 Aug. 29, 1835,undated + + + + + + 8 + 158 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM M1 R.36: 218 Sept. 7, 1835,undated + + + + + + 8 + 159 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM M1 R.67: 121 (P-41 +41A US v. MI) Sept. 23, 1835,undated + + + + + + 8 + 160 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: Nov. MI R.69: 140 Nov. 3, 1835,undated + + + + + + 8 + 161 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NNAM M1 R.69: 143 (P-42 + 42A US v. MI) Nov. 7, 1835,undated + + + + + + 8 + 162 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM M1 R.72: 323-324 Nov. 17, 1835,undated + + + + + + 8 + 163 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM M234 R. 421: 768-773 Nov. 18, 1835,undated + + + + + + 8 + 164 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM M234 R. 421: 722-725 Dec. 5, 1835,undated + + + + + + 8 + 165 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: LLL-Letters of L Lyon MI Pioneer and HS Vol. XXVII: 466-467 Dec. 25, 1835,undated + + + + + + 8 + 166 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM MI R.72: 348 Dec. 28, 1835,undated + + + + + + 8 + 167 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: HRSP-LCM R: 24: 13635-13636 Dec. 29, 1835 Power of Sale Agreement,undated + + + + + + 8 + 168 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: HRS Papers R.7: 2298 Dec. 29, 1835,undated + + + + + + 8 + 169 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM M1R.41: 51-73 1836,undated + + + + + + 8 + 170 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM M1 R.72: 388 Jan. 25, 1836,undated + + + + + + 8 + 171 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM M234 R. 422: 146-147 Jan. 27, 1836,undated + + + + + + 8 + 172 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: HRSP-LCM R.25: 13853-55 Feb. 16, 1836,undated + + + + + + 8 + 173 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: AMFCP-CMU from MICRO MSS R.23:49 Feb. 23, 1836,undated + + + + + + 8 + 174 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: HRS Papers R.25: 13930: 5-18 March 1836,undated + + + + + + 8 + 175 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: AMFCP from MICRO MSS F-49 R.23:1350 March 5, 1836,undated + + + + + + 8 + 176 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: HRSP-LCM R.24: 13879 March 9, 1836,undated + + + + + + 8 + 177 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: AMFCP from MICRO MSS F-49 R.23: 1866 March 11, 1836,undated + + + + + + 8 + 178 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM M1 R.72: 462 March 14, 1836,undated + + + + + + 8 + 179 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: US v. MI Ex. 233-A March 17, 1836,undated + + + + + + 8 + 180 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: AMFCP from MICRO MSS F-49 R.23: 1898 March 22, 1836,undated + + + + + + 8 + 181 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: AMFCP-CMU from MICRO MSS F-49 R.23: 1411 March 22, 1836,undated + + + + + + 8 + 182 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: US v. MI Ex. 234-A March 28, 1836,undated + + + + + + 8 + 183 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM M668 R.8: 87-117 Supplemental Articles of Treaty w. Ohawa + Chippewa March 28, 1836 Signatures affixed July 12-22, 1836,undated + + + + + + 8 + 184 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM T494 R.3:362-364 March 30, 1836,undated + + + + + + 8 + 185 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM M21 R.18 April 1, 1836,undated + + + + + + 8 + 186 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM M1 R.72: 478 May 20, 1836,undated + + + + + + 8 + 187 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: OP US AG No.3 126 June 21, 1836,undated + + + + + + 8 + 188 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: HRS Papers R. 26: 14317-19 June 27, 1836,undated + + + + + + 8 + 189 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: NAM M21 R.19: 111-113 July 1, 1836,undated + + + + + + 8 + 190 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: HRSP-LCM R.26: 14439 July 18, 1836,undated + + + + + + 8 + 191 + Box 6 Bay Mills Indian Community-Inland Treaty, Reference, Cleland reports –A: HRS Papers 1851: 180-94 Nov. 18, 1836,undated + + + + + + 9 + 1 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: ARCOIA 1837,undated + + + + + + 9 + 2 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: ABCFM BA 10.512b Box 2 Jan. 9, 1837,undated + + + + + + 9 + 3 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M1 R.37: 134 Jan. 13, 1837,undated + + + + + + 9 + 4 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M1 R.42: 93 Jan. 27, 1837,undated + + + + + + 9 + 5 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: LLC-WLCL Box Feb.-Aug. 1837 Feb. 13, 1837,undated + + + + + + 9 + 6 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M1 R.42: 177 Feb. 20, 1837,undated + + + + + + 9 + 7 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.422: 632-634 Feb. 27, 1837,undated + + + + + + 9 + 8 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M1 R.37: 171 Feb. 27, 1837,undated + + + + + + 9 + 9 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M21: 204 March 23, 1837,undated + + + + + + 9 + 10 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.36: 12 April 20, 1837,undated + + + + + + 9 + 11 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R. 402: 356-360 June 8, 1837,undated + + + + + + 9 + 12 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M21 R.22: 52 July 1, 1837,undated + + + + + + 9 + 13 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM T494 R.3: 543-568 July 20, 1837,undated + + + + + + 9 + 14 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M1 R.37: 265 July 25, 1837,undated + + + + + + 9 + 15 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: ARCOIA 1838,undated + + + + + + 9 + 16 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: PHSC Box 7, Vol.3: 14 1838,undated + + + + + + 9 + 17 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: HRSP R.28: 1602-1622 Jan. 8, 1838,undated + + + + + + 9 + 18 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: HRS Papers R.30: 16149-16150 March 1, 1838,undated + + + + + + 9 + 19 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M1 R. 37: 491 May 22, 1838,undated + + + + + + 9 + 20 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: US v. MI Ex.92-AM-26—73CA June 5, 1838,undated + + + + + + 9 + 21 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.415: 611-614 June 9, 1838,undated + + + + + + 9 + 22 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M1 R.37: 515 June 23, 1838,undated + + + + + + 9 + 23 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.415: 624-626 June 26, 1838,undated + + + + + + 9 + 24 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M1 R. 45: 47 July 27, 1838,undated + + + + + + 9 + 25 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.415: 636-43 Aug. 29, 1838,undated + + + + + + 9 + 26 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.402: 889 Sept. 29, 1838,undated + + + + + + 9 + 27 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M1 R.46: 383 May 22, 1839,undated + + + + + + 9 + 28 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: ARCOIA 1839,undated + + + + + + 9 + 29 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: ARCOIA 1840: 340,undated + + + + + + 9 + 30 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: Federal Census of Population 1840,undated + + + + + + 9 + 31 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.424: 50 May 23, 1840,undated + + + + + + 9 + 32 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R. 424: 165-170 July 15, 1840,undated + + + + + + 9 + 33 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R. 427: 570-571 Aug. 10, 1840,undated + + + + + + 9 + 34 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: PHSC Box 7, Vol.3: 46 Sept. 14, 1840,undated + + + + + + 9 + 35 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M21 R.29: 359 Nov. 4, 1840,undated + + + + + + 9 + 36 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M1 R.49: 415 Nov. 4, 1840,undated + + + + + + 9 + 37 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: ARCOIA 1841,undated + + + + + + 9 + 38 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M21 R.30: 34 Jan. 14, 1841,undated + + + + + + 9 + 39 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: PHSC Box 7, Vol.3: 50 Feb. 19, 1841,undated + + + + + + 9 + 40 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: MIMALS 2: 488-490 March 30, 1841 Schoolcraft to Crawford Nov. 30, 1841,undated + + + + + + 9 + 41 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M1 R.50: 495 April 1, 1841,undated + + + + + + 9 + 42 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 r.424: 764-769 May 20, 1841,undated + + + + + + 9 + 43 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.424: 684-685 June 22, 1841,undated + + + + + + 9 + 44 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.424: 689-691 June 24, 1841,undated + + + + + + 9 + 45 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M1 R.51: 125 July 30, 1841,undated + + + + + + 9 + 46 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.424: 694-696 Oct. 27, 1841,undated + + + + + + 9 + 47 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: ARCOIA 1842,undated + + + + + + 9 + 48 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: CHL-BP, MSSFM-5, R.930, Letters Aug. 9, 1842 Bingham to Ord,undated + + + + + + 9 + 49 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.245: 518-521 Oct. 2, 1842,undated + + + + + + 9 + 50 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.425: 213 Nov. 26, 1842,undated + + + + + + 9 + 51 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: ARCOIA 1843,undated + + + + + + 9 + 52 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R. 425: 525 1843,undated + + + + + + 9 + 53 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M1 R.39: 89 Feb. 27, 1843,undated + + + + + + 9 + 54 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: ABCFM MsBAIO A512b May 3, 1843,undated + + + + + + 9 + 55 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.425: 292 July 20, 1843,undated + + + + + + 9 + 56 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.425: 425-431 Oct. 13, 1843,undated + + + + + + 9 + 57 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M1 r.55: 529 Oct. 28, 1843,undated + + + + + + 9 + 58 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: PHSC Box 7, Vol.3: 103 March 11, 1844,undated + + + + + + 9 + 59 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R. 403 Aug. 23, 1844,undated + + + + + + 9 + 60 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M1 R.57: 270 Sept. 16, 1844,undated + + + + + + 9 + 61 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: GNS-LCM papers R.1. Sept. 26, 1844,undated + + + + + + 9 + 62 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M1 R.57: 212 Oct. 26, 1844,undated + + + + + + 9 + 63 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M1 R.57: 172 Nov. 12, 1844,undated + + + + + + 9 + 64 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M1 R.39: 527 Nov. 30, 1844,undated + + + + + + 9 + 65 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: ARCOIA 1845,undated + + + + + + 9 + 66 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M1 R.58: 1 June 30, 1845,undated + + + + + + 9 + 67 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: ARCOIA 1847,undated + + + + + + 9 + 68 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: HRS Papers R.38: 22136 Jan. 21, 1848,undated + + + + + + 9 + 69 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M1 R.62: 61 Feb. 10, 1848,undated + + + + + + 9 + 70 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R. 771: 238-241 April 4, 1848,undated + + + + + + 9 + 71 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: CMU AFCP/SS MC-BBR; MSSF52 R.8 May 17, 1848,undated + + + + + + 9 + 72 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: ARCOIA 1849,undated + + + + + + 9 + 73 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: PHSC Box 7, Vol.3: 171 1849,undated + + + + + + 9 + 74 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R. 426: 660 June 1, 1850,undated + + + + + + 9 + 75 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R. 403: 584-588 Feb. 19, 1851,undated + + + + + + 9 + 76 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: LRMS-1131 March 31, 1851,undated + + + + + + 9 + 77 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R. 598: 16 June 4. 1851,undated + + + + + + 9 + 78 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M21 R.44: 425 June 4, 1851,undated + + + + + + 9 + 79 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R. 403: 603-604 July 15, 1851,undated + + + + + + 9 + 80 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R. 598: 51-54 July 31, 1851,undated + + + + + + 9 + 81 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: GNS-LCM papers R.1 Aug. 11, 1851,undated + + + + + + 9 + 82 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R. 598: 41 Sept. 2, 1851,undated + + + + + + 9 + 83 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: CMU AFCP/SS MC-BL MSS F.52 R.5 Feb. 1852,undated + + + + + + 9 + 84 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.403: 701-703 April 7, 1852,undated + + + + + + 9 + 85 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: ARCOIA 1853,undated + + + + + + 9 + 86 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.404: 223 Oct. 22, 1853,undated + + + + + + 9 + 87 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.404: 368-380 March 6, 1854,undated + + + + + + 9 + 88 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: GNS MIHC R.1 July 8, 1854,undated + + + + + + 9 + 89 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: CMU AFCP/SS MC-BL; MSS F52 R.5 July 21, 1854,undated + + + + + + 9 + 90 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: ARCOIA 1855,undated + + + + + + 9 + 91 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.404: 561-566 Jan. 15, 1855,undated + + + + + + 9 + 92 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.404: 557-566 Feb. 27, 1855,undated + + + + + + 9 + 93 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: LRMS- 1131 March 31, 1855,undated + + + + + + 9 + 94 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: LRMS-1131 April 6, 1855,undated + + + + + + 9 + 95 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R. 404: 625-627 April 12, 1855,undated + + + + + + 9 + 96 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: LRMS- 1131 April 25, 1855,undated + + + + + + 9 + 97 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.404:840-841 Apr. 26, 1855,undated + + + + + + 9 + 98 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.404:842-843 May 21, 1855,undated + + + + + + 9 + 99 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.404:844-851 May 21, 1855,undated + + + + + + 9 + 100 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.404:646-649 May 22, 1855,undated + + + + + + 9 + 101 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M21 R.51:485-486 June 6, 1855,undated + + + + + + 9 + 102 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.404:705-707 June 9, 1855,undated + + + + + + 9 + 103 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.404:708-710 June 13, 1855,undated + + + + + + 9 + 104 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.404:711-712 June 19, 1855,undated + + + + + + 9 + 105 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: US v MI M-26-73CA Plaintiff Ex 19 July 25, 1855,undated + + + + + + 9 + 106 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: Detroit Daily Free Press July 26, 1855,undated + + + + + + 9 + 107 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: Detroit Daily Free Press July 29, 1855,undated + + + + + + 9 + 108 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: US vs MI Ex. P.19A MI-26-73CA Aug. 7, 1855,undated + + + + + + 9 + 109 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M21 R.52 Aug. 23, 1855,undated + + + + + + 9 + 110 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.404:950-952 Sept. 3, 1855,undated + + + + + + 9 + 111 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 T.404:953-955 Oct. 12, 1855,undated + + + + + + 9 + 112 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B:ARCOIA 1856,undated + + + + + + 9 + 113 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: ARCOIA 1856 Execution Document of the House of Rep. 3rd Sess, 34 Congress 574-575 H-Z11 Jan. 2, 1856,undated + + + + + + 9 + 114 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: H-211 Jan. 2, 1856,undated + + + + + + 9 + 115 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: H-211 Jan. 3, 1856,undated + + + + + + 9 + 116 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.405:60-63 Feb. 18, 1856,undated + + + + + + 9 + 117 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: ARCOIA 1857,undated + + + + + + 9 + 118 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: Grand Rapids Daily Enquirer and Herald July 26, 1857,undated + + + + + + 9 + 119 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: Grand Rapids Enquirer and Herald June 19, 1858 Ottawas of Oceana and Mason Co.,undated + + + + + + 9 + 120 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM M234 R.4 406:538-542 Oct. 19, 1859,undated + + + + + + 9 + 121 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: ARCOIA 1861:801,undated + + + + + + 9 + 122 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: SAM RG 80-83, B6, F1 1869,undated + + + + + + 9 + 123 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: NAM T9 R576 1880,undated + + + + + + 9 + 124 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: LROIA 1881-10305 June 14, 1881,undated + + + + + + 9 + 125 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: LROIA 21542-1883 Nov. 19, 1883,undated + + + + + + 9 + 126 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: ARCOIA 1885:113,undated + + + + + + 9 + 127 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: LROIA 1886-31912 Nov. 29, 1886,undated + + + + + + 9 + 128 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: Detroit Tribune June 21, 1888 Scientific Wanderers,undated + + + + + + 9 + 129 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: CCF 84031-1908, 175 Dec. 16, 1907,undated + + + + + + 9 + 130 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: CCF Bay Mills 30746-1914, 313 Apr. 25, 1914,undated + + + + + + 9 + 131 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: OP MI AG June 30, 1914,undated + + + + + + 9 + 132 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: CCF Mackinac 99440-1915 Sept. 10, 1915,undated + + + + + + 9 + 133 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: CCF Mackinac 10786-1916, 052 Dec. 3, 1916,undated + + + + + + 9 + 134 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: CCF Consolidated Chippewa 44729-1923, 115 June 8, 1923,undated + + + + + + 9 + 135 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: CCF Mt. Pleasant 49702-1927, 115 Oct. 24, 1927,undated + + + + + + 9 + 136 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: CCF Mt. Pleasant 19994-1928, 175 June 12, 1928,undated + + + + + + 9 + 137 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: CCF Mt. Pleasant 12207-1930, 115 March 3, 1930,undated + + + + + + 9 + 138 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: CCF MI Misc. 9634-1936, 066 June 19, 1936,undated + + + + + + 9 + 139 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: Muskegon Chronicle July 10, 1837 “Martin Ryerson”,undated + + + + + + 9 + 140 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: CCF Great Lakes 9592-C-1936, 057 April 7, 1937,undated + + + + + + 9 + 141 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: CCF MI Misc. 9634-1936, 006 May 27, 1938,undated + + + + + + 9 + 142 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: BMC History Dept., Tribal Archive 1985 Marie Cameron Interview,undated + + + + + + 9 + 143 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: LRBO-OHC July 29, 1990 Discussion w/ Anna and Katie Sam,undated + + + + + + 9 + 144 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: LRBO-OHC July 30, 1990 Discussion w/ Alex Sam p. 56-60LRBO-OHC July 30, 1990 Discussion w/ Katie Sam-Glocheski and C Waitner p.6-7,undated + + + + + + 9 + 145 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: LRBO-OHC July 22, 1991 Discussion w/ Steve and Dorothy Medacco p.17-22,undated + + + + + + 9 + 146 + Box 7 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Report –B: Testimony of Daniel Bailey, Chair of LRB – Committee on Ind. Affairs,undated + + + + + + 10 + 1 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Ettwageshik-Huntwork Field notes – Notebook “Bear Walkers” 1946-1947,undated + + + + + + 10 + 2 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Richmond Family Papers, Collection 94, Box 5, Folder 6. Grand Rapids Public Library. MI and Family History Division. G.R.,undated + + + + + + 10 + 3 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: BMIC- History Department- Tribal Archives (circa 1985) Marie Cameron Interviewed by Delia Bowen,undated + + + + + + 10 + 4 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: BMIC- History Department- Tribal Archives (circa 1985) James Kinney Interviewed by Delia Bowen,undated + + + + + + 10 + 5 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: BMIC- History Department- Tribal Archives (circa 1985) Francis LeBlanc Interviewed by Delia Bowen,undated + + + + + + 10 + 6 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: BMIC- History Department- Tribal Archives (circa 1985) Bertha Perrault Interviewed by Delia Bowen,undated + + + + + + 10 + 7 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: BMIC- History Department- Tribal Archives (circa 1985) Barbara Teeple Interviewed by Delia Bowen,undated + + + + + + 10 + 8 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: BMHD- Interview Abby Robertson,undated + + + + + + 10 + 9 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: HNF-OHS Contract #53-5460-00421 Catalogue #4 US Forest Service (1991) “Oral History of Jack Kinney Camp Marquette and Maple Sugar Corps”,undated + + + + + + 10 + 10 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: HNF-OHS Contract #53-5480-00421 Catalogue #5 US Forest Service (1991) “Oral History and Life along Whitefish Bay and Camp Marquette C.C. C. Camp”,undated + + + + + + 10 + 11 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: HNF-OHS Contract #53-5480-00725 Catalogue #28 US Forest Service (1993) “An Oral History of Native American Blueberry Harvests, Commercial Fishing and Life at C.C.C. Camp Marquette Recalled by Lehman Teeple of Bay Mills, MI.”,undated + + + + + + 10 + 12 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: HNF-OHS Contract #53-5480-00725 Catalogue #29 US Forest Service (1993) “An Oral History of the Pointe Auxchener Indian Settlement and Life in the Hiawatha National Forest Told by Charles Shedowin Sault Sainte Marie, MI.”,undated + + + + + + 10 + 13 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: HNF-OHS Contract #53-5480-00725 Catalogue #30 US Forest Service (1993) “An Oral History of Native American Life and Camp Marquette Recalled by William Boahbedason, St. Ignace, MI”,undated + + + + + + 10 + 14 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: HNF-OHS Contract #53-5480-00725 Catalogue #31 US Forest Service (1993) “An Oral History of Commercial Blueberry Picking and Living on Whitefish Bay Recalled by Francis LeBlanc”,undated + + + + + + 10 + 15 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: HNF-OHS Contract #53-5480-00725 Catalogue #32 US Forest Service (1993) “An Oral History of Lumbering, Forest Conditions and Native American Land Use by Elvin Smith, St Ignace, MI”,undated + + + + + + 10 + 16 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: HNF-OHS Contract #53-5480-00725 Catalogue #33 US Forest Service (1993) “An Oral History of Maple Sugaring and Native American Life in the Pine River Area Recalled by Dean Kammers, St. Ignace, MI.” ,undated + + + + + + 10 + 17 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: LRBO-OHC July 29, 1990 Discussion w/ Katie Gloscheski, Connie Waitner and Rose Sam,undated + + + + + + 10 + 18 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: LRBO-OHC July 30, 1990 Discussion w/ Alex Sam c.b. [conducted by] Jim McClurken,undated + + + + + + 10 + 19 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: LRBO-OHC July 30, 1990 Discussion w/Katie Sam-Glocheski, Connie Wainter, c.b. Jim McClurken,undated + + + + + + 10 + 20 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: LRBO-OHC Oct. 13, 1990 Campeau Series- Session One: Discussion w/ Percy Campeau, Connie Waitner, c. b. Jim McClurken,undated + + + + + + 10 + 21 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: LRBO-OHC Oct. 13, 1990 Discussion w/ Elizabeth Bailey, Margaret Chandler, c. b. Jim McClurken,undated + + + + + + 10 + 22 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: LRBO-OHC Oct. 13, 1990 Discussion w/ Elizabeth Bailey, Margaret Chandler, c. b. Jim McClurken,undated + + + + + + 10 + 23 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: LRBO-OHC July 22, 1990 Discussion w/ Steve and Dorothy Medacco, c. b. Jim McClurken,undated + + + + + + 10 + 24 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: SAM [St. Archives of MI] RGSB Conservation RG58-O17 General Land Office, 1853 Map of Sault Ste. Marie,undated + + + + + + 10 + 25 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: SAM, RG 66-7-A, B1, F1 [Exec. Committee on Indian Affairs, Correspondence], Jan. 15, 1965,undated + + + + + + 10 + 26 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: SAM, RG 66-7-A, B1, F1, Minutes of Governor’s Commission, Dec. 4-5 1964,undated + + + + + + 10 + 27 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: SAM, RG 66-7-A, B1, F1, Carmeron to Finlayson, Aug. 17, 1964,undated + + + + + + 10 + 28 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: SAM, RG 80-33, B6, F1, Field notes, letter to N. H. Winchell, [1896-1871],undated + + + + + + 10 + 29 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: SAM, MS67-115, Abrams Bros., Diary of Abel Bingham, [1828-1855],undated + + + + + + 10 + 30 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: SAM – Mitchell Map, “Tourist Map of Michigan,” 1837,undated + + + + + + 10 + 31 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: MPHC, V3:470-475 “Ionia County, the City of Ionia – its first settlement and early history”, 1881,undated + + + + + + 10 + 32 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Hickey, Rev. M., MPHC V4:22-33 (1883) “Reminiscences of Rev. M. Hickey…”,undated + + + + + + 10 + 33 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Little, Henry, MPHC v4:286-294 (1883) “Kent County, Grand Rapids history”,undated + + + + + + 10 + 34 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Hickey, Rev. M., MPHC v4:544-556 (1883) “Missionary among the Indians”,undated + + + + + + 10 + 35 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Steward, E.M.S, MPHC v6:471-473 (1883) “Incidents in the life of Mr. Eber Ward, father of Capt. E. Ward…”,undated + + + + + + 10 + 36 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: White, Geo. H., MPHC v11:86-200 (1886) “Sketch of the life of Hon. Rix Robinson, a pioneer of Western MI”,undated + + + + + + 10 + 37 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Baxter, Albert, MPHC v17:324-31 (1892) “Some fragments of beginnings in the Grand River Valley”,undated + + + + + + 10 + 38 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: MPHC, v21:671-681 [1894] Proceedings, etc. of the Muskegon Pioneer and HS “Annual picnic of the Muskegon Pioneer and Hist. Society”,undated + + + + + + 10 + 39 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Cheery, Henry R., MPHC v26:221-228 (1896) “Early history of Johnson, Barry County”,undated + + + + + + 10 + 40 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Hayes, Mrs. A. M., MPHC v26:235-41 (1896) “Reminiscences of pioneer days in Hastings”,undated + + + + + + 10 + 41 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Baxter, Albert, MPHC v26:272-4 (1896) “Muskegon pioneer remnants”,undated + + + + + + 10 + 42 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Cook, Wm. M., MPHC v26:430-440 (1896) “Memories report – Kent County”,undated + + + + + + 10 + 43 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Tower, P. MPHC v28:145-7 (1900) “Journey of Ionia’s first settlers”,undated + + + + + + 10 + 44 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Gilbert, Angie B., MPHC v29:322-335 (1901) “Tale of two cities”,undated + + + + + + 10 + 45 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Goss, Dwight, MPHC v30:172-90 (1906) “Indians of the Grand River Valley”,undated + + + + + + 10 + 46 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Wilson, Mrs. Etta Smith, MPHC v30:190-213 (1906) “Life and work of the late Rev. Geo. N. Smith, a pioneer missionary”,undated + + + + + + 10 + 47 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Hoyt, Mrs. Mary M., MPHC v30:289-302 (1906) “Early recollections of pioneer life in MI and the founding of Yankee Springs”,undated + + + + + + 10 + 48 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Thayer, Geo. W., MPHC v30:549-566 (1902) “From Vermont to Lake Superior”,undated + + + + + + 10 + 49 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Leach, Dr. M. L., MPHC, v32:14-65, 79-81, 92-99, 157-61(1903) “History of the Grand Traverse region”,undated + + + + + + 10 + 50 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Hoyt, Mrs. Mary M. Lewis, MPHC v35:142-155 (1909) “Life of Leonard Slater”,undated + + + + + + 10 + 51 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Potter, Theodore E., MPHC v35:393-412 (1907) “Boy’s story of pioneer life in MI”,undated + + + + + + 10 + 52 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Goodyear, Henry A., MPHC v35:637-643 (1907) “Indians of Barry County”,undated + + + + + + 10 + 53 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: MPHC v38:60-69 (1912) “Daniel Marsac” by John S. Hooker, “John S. Hooker of Lowell” from Grand Rapids paper, “Sophie de Marsac Campau” by Sophie Bingham Buchanan,undated + + + + + + 10 + 54 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Ball, Mrs. Lucy, MPHC v38:92-104 (1912) “Early days in Grand Rapids”,undated + + + + + + 10 + 55 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Waite, Miss Minnie B., MPHC v38:318-321 (1912) “Indians and pioneer life”,undated + + + + + + 10 + 56 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Weissert, Charles A., MPHC v38:654-673 (1912) “Indians and the trading posts in the NW of Barry County, MI”,undated + + + + + + 10 + 57 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Wright, John C., MPHC v2:81-89 (1918) “Indian legends of northern MI”,undated + + + + + + 10 + 58 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: O’Brien, Frank A., MPHC v89:225-232 (1915) “Father Frank Pierz”,undated + + + + + + 10 + 59 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Wright, John C., MHM v2N1:81-89 (1918) “Indian legends of northern MI”,undated + + + + + + 10 + 60 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Butters, Archibald, MHM v2N2:387-95 (April 1918) “Memories of northern MI”,undated + + + + + + 10 + 61 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Gagnieur, Rev. Wm. F., MHM v3N3:526-555(April 1918) “Some place names in the U.P of MI and elsewhere”,undated + + + + + + 10 + 62 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: MHM, v2N4L674-675 (1918) “Historical news: Mish-shim-me-ne-con-ing, 1845-1918”,undated + + + + + + 10 + 63 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: McConnell, Henry, MHM v5N1-2:211-216 (1921) “Early days in Petoskey”,undated + + + + + + 10 + 64 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: MHM v5N2-3:271-331 (1921) “Historical news: notes and comments”,undated + + + + + + 10 + 65 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Northrup, C.L., MHM v5N2-3:435-451 (1921) “Pioneer days in Wexford County”,undated + + + + + + 10 + 66 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: MHM v5:493 (1921) “Historical sketch of the Muskegon schools”,undated + + + + + + 10 + 67 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: MHM v6N1:49-51 (1922) “Notes and comments: Princess Ella Petoskey” reprint from Grand Rapids Herald,undated + + + + + + 10 + 68 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Robinson, Mrs. Mary F., MHM v6N2-3:277-87 (1922) “Rix Robinson, fur trader”,undated + + + + + + 10 + 69 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Jameson, Mrs., MHM v8N2:140-141 (1924) “Detroit to Mackinac Island, 1837”,undated + + + + + + 10 + 70 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Jameson, Mrs., MHM v8N4:486-533 (Oct. 1924) “Impressions of Sault Ste. Marie, 1837”,undated + + + + + + 10 + 71 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Gagnieur, Wm. F., MHM v10N3:350-358 (1926) “What the Indians knew about Manistique and Schoolcraft Co.”,undated + + + + + + 10 + 72 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Davis, Marion M., MHM v10N3:411-446 (1926) “Stories of St. Helena Island”,undated + + + + + + 10 + 73 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Swift, Ivan, MHM v11N1:185-190 (1927) “Indian”,undated + + + + + + 10 + 74 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Davis, Marion Morse, MHM v11:342-343, 368-71(1927) “Romantic chain of islands”,undated + + + + + + 10 + 75 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: MHM v11N1:684-687 (1927) “Historical notes”,undated + + + + + + 10 + 76 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Jenks, Wm. L., MHM v12:512-553 (July 1928) “Three islands”,undated + + + + + + 10 + 77 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: MHM v12:766-75 (1928) “Historical notes”,undated + + + + + + 10 + 78 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: MHM v13N1:142-151 (1929) “Historical notes”,undated + + + + + + 10 + 79 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Petoskey, Ella, MHM v13:443-48 (1929) “Chief Petoskey”,undated + + + + + + 10 + 80 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Fox, Francis Margaret, MHM v16N2:183-99 (1932) “About the Evergreen Island of St. Helena”,undated + + + + + + 10 + 81 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: MHM v16N2:262-267 (1932) “Historical notes”,undated + + + + + + 10 + 82 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Weissert, Charles A., MHM v17:321-333 (1932) “Indians of Barry Co. and the work of Leonard Slater ‘the missionary’”,undated + + + + + + 10 + 83 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: MHM v16n3:358-360 (1932) “Historical notes”, letter to editor,undated + + + + + + 10 + 84 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: MHM v16N3:360-364 (1932) “Historical notes”, reprint from Detroit Free Press,undated + + + + + + 10 + 85 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: MHM v20:257-64 (1936) “Pioneer notes”, dear editor,undated + + + + + + 10 + 86 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Brady, Eugene, MHM v21:163-177 (1937) “Few reminiscences of my life”,undated + + + + + + 10 + 87 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Higgins, John J., MHM v29:366-367 (1945) “Saw MI before the lumbering days”,undated + + + + + + 10 + 88 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: MHM v30:619-627 (1946) “Trip to Negaunee, 1868”,undated + + + + + + 10 + 89 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Butler, Albert F., MH v31N3:267-286 (1947) “Rediscovering MI’s prairies”,undated + + + + + + 10 + 90 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Harvey, S. Benjamin, MH v34:258-9 (1950) “Incident in early American history”,undated + + + + + + 10 + 91 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Hybels, Robert James, MH v34N4:309-326 (1950) “Lake Superior copper fever, 1841-1847”,undated + + + + + + 10 + 92 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Ellison, Elizabeth Love, MH v35N3:257-261 (1951) “Stories my grandmother told me”,undated + + + + + + 10 + 93 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Hanna, Francis Caswell, MH v35N4:406-14 (1951) “Harbor at Ludington”,undated + + + + + + 10 + 94 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Knaul, Edith Judkins, MH, v36N3:225-240 (1952) “Petoskey at the turn of the century”,undated + + + + + + 10 + 95 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Daw, Rona Baker, MH v38N1:24-32 (1954) “Colored yeast”,undated + + + + + + 10 + 96 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Foster, Fred W., MH v39N4:385-404 (1955) “Beaver Islands: a study in isolation and abandonment”,undated + + + + + + 10 + 97 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: O’Niel, Mary E.S., MH V41N1:167-204 (1957) “Over the years””,undated + + + + + + 10 + 98 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Stoddard, F.B., MH v42N4:324-30 (1958) “Ghost town of Assyria Twp. In Barry County”,undated + + + + + + 10 + 99 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Gordon and May, editor, MHM, v43:1-42, 129-49 (1959) “MI JL 1836, John M. Gordan”,undated + + + + + + 10 + 100 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Stebbins, Catherine L., MH v48N4:333-369 (1964) “Marquette death site”,undated + + + + + + 10 + 101 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Hamilton, Ralph, MH v493:278-293 (1965) “Marquette death site: the case for Ludington”,undated + + + + + + 10 + 102 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Vogel, Virgil J., MH v51N3:185-201 (Fall 1967) “Missionary as acculturation agent: Peter Dougherty and the Indians of Grand Traverse”,undated + + + + + + 10 + 103 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Cocks, J. Fraser III, MH v52:37-49 (1968) “George N. Smith: reformer on the frontier”,undated + + + + + + 10 + 104 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Blackburn, George M., MH v53 N1:37-47 (1969) “Foredoomed to failure: the Manistee Indian station”,undated + + + + + + 10 + 105 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Mead, Barbara, MH v63N4:6-7 (1979) “Barry County was home of many Indian settlements”,undated + + + + + + 10 + 106 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: MH v72N1:3 (1988) “Missaukee earthworks” letter to editor from Judge Wm. Peterson,undated + + + + + + 10 + 107 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: MH v72N6:8-9 (1988) “Oceana County”,undated + + + + + + 10 + 108 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Maynard, Daniel P., MH v74N2:36-40 (1990) “Marquette’s Kawbawgams”,undated + + + + + + 10 + 109 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Wathen, Elizabeth K., MI Heritage v2N2:92-94 (1960) “Muskegon’s old Indian cemetery”,undated + + + + + + 10 + 110 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Praus, Alexis A., MI Heritage v2N4:212-215 (1961) “Hieroglyphics of Truckee the Indian trader”,undated + + + + + + 10 + 111 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Smith, Margaret, MI Heritage v3N2:61-73 (Winter 1961) “Gros Cap Cemetery, Mackinac County, MI”,undated + + + + + + 10 + 112 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: Slater, Nina Kate, MI Heritage v3N3:142-54 (1962) “Angells and Lamonts”,undated + + + + + + 10 + 113 + Box 8 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report –C: JL of the Presbyterian HS v30 (1952) [June 19, 1838-July 29, 1842],undated + + + + + + 11 + 1 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Grand Rapids Enquirer Herald p.2 C[column] 3, June 19, 1858, “Ottawas of Oceana and Chippewa counties”,undated + + + + + + 11 + 2 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Detroit Tribune p.8 C1, June 21, 1888, ‘Scientific wanderers”,undated + + + + + + 11 + 3 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Detroit Daily Post p.1 C9, Feb. 3, 1872 “Indians and civilization”,undated + + + + + + 11 + 4 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Muskegon Chronicle, 1937, “Romance of Muskegon”,undated + + + + + + 11 + 5 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Dame, Joseph, New York Daily Tribune p.3 c4-5, Jan. 23, 1854, “Northwestern MI-letter”,undated + + + + + + 11 + 6 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Petoskey News-Review, March 4, 1965, “Kewadin Indians on warpath against poverty”,undated + + + + + + 11 + 7 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Cleveland, H.W.S., Atlantic Monthly v27:191-195, 1870 “Grand Traverse Region of MI”,undated + + + + + + 11 + 8 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: History of Kent County, MI, 1881,undated + + + + + + 11 + 9 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Negaunee Centennial, 1865-1965, 1965,undated + + + + + + 11 + 10 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Manton Centennial, 1872-1972,1972 + + + + + + 11 + 11 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Ionia Centennial, 1973,1973 + + + + + + 11 + 12 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Assessment of alteration general management plan, Pictured Rocks National Lakeshore,1980 + + + + + + 11 + 13 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Adams, Carl L. Riverland and the people who made them, 1958?,undated + + + + + + 11 + 14 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Arbie, Bernard. Sugarland sampler: a slice of U.P. heritage,1992 + + + + + + 11 + 15 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Armstrong, Louise V. We too are the people, 1938,undated + + + + + + 11 + 16 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Barnes, Al. Supper in the evening, 1967,undated + + + + + + 11 + 17 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Belknap, Charles E. Yesterdays of Grand Rapids, 1922,undated + + + + + + 11 + 18 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Boulton, William Complete history Alpena County, MI, 1876,undated + + + + + + 11 + 19 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Browne, Arline E. In the wake of Topinabee, pp.1-9, 1967,undated + + + + + + 11 + 20 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Carter, James L. Voyageur’s harbor, 1967,undated + + + + + + 11 + 21 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Cassuto, David. Cold running river,1994 + + + + + + 11 + 22 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Castle, Beatrice Hanscon. Grand Island story [1906/ 1975],[1975] + + + + + + 11 + 23 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Chaney, Elsket. Story of Portage, 1960,1975 + + + + + + 11 + 24 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Colby, Lila. Grand Traverse Bay in the Great Lakes Basin: a history of a changing area,1970 + + + + + + 11 + 25 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Coppess, Margaret. Island story: the history of MI’s St. Martin Island,1981 + + + + + + 11 + 26 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Cracker, Kathy N. They came to S Fox Island,1983 + + + + + + 11 + 27 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Creecy, John. Century at Harbor Point, 1878-1978, 1978,1978 + + + + + + 11 + 28 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Davenport, Eugene. Timberland times, 1950,undated + + + + + + 11 + 29 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Dickinson, Julia Terry. Story of Leelanau, 1951,undated + + + + + + 11 + 30 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Etten, Wm. J. Citizen’s history of Grand Rapids, MI, 1926,undated + + + + + + 11 + 31 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Evett, Franklin. Memorials of the Grand River Valley, 1878,undated + + + + + + 11 + 32 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Eyter, Jonathan. Muskegon County: harbor of promise,1986 + + + + + + 11 + 33 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Firestone, Kathleen Craker. Island in Grand Traverse Bay,1992 + + + + + + 11 + 34 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Fisher, Earnest B. Grand Rapids and Kent County MI, v. 1, 1918,undated + + + + + + 11 + 35 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Hartwick and Tuller. Oceana County, 1890,undated + + + + + + 11 + 36 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Haswell, Susan O. and A. R. Alanen. Garden apart: an agricultural and settlement history of MI’s Sleeping Bear Dunes National Lakeshore Region,1994 + + + + + + 11 + 37 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Hedrick, U.P. Land of the crooked tree, 1948/ 1986,1986 + + + + + + 11 + 38 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Hulbert, Wm. Davenport. White pine days on the Tahquamenon, 1949,undated + + + + + + 11 + 39 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Jacobson, Carol S. Life in the forest: history of the Montmorency County, MI,1981 + + + + + + 11 + 40 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Keewaydinoquay. Puhpohwee for the people: a narrative account of some uses of fungi among the ahnishinaabegb,1998 + + + + + + 11 + 41 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Kiebler, E.W. Old log school by the lake and the surrounding area, 1953,undated + + + + + + 11 + 42 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Lillie, Leo C. Historic Grand Haven and Ottawa County, 1931,undated + + + + + + 11 + 43 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Littell, Edmund M. 100 years in Leelanau, 1965,undated + + + + + + 11 + 44 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Lyders, Z.Z. Look at early Grand Rapids, 1966/76,1976 + + + + + + 11 + 45 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Magnahgi, Russell M. Way it happened: settling MI’s U.P.,1982 + + + + + + 11 + 46 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: May, Marge and John Hall, ed., Memories of Little Traverse Bay [after 1860],1989 + + + + + + 11 + 47 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Mason County HS. Historic Mason County, MI,1980 + + + + + + 11 + 48 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: McClurken, James M. and Alice Littlefield, ed. Native Americans and wage labor ethnohistorical perspectives,1996 + + + + + + 11 + 49 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: McCormick, Calvin. Memoir of Mrs. Eliza McCoy, 1892,undated + + + + + + 11 + 50 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: McCoy, Isaac. History of Baptist Indian Missions, 1840/1970,1970 + + + + + + 11 + 51 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Miller, Hazen L. Old AuSable,1968 + + + + + + 11 + 52 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Montney, Irene H. Historical notes on Alden and Helena twps,1964 + + + + + + 11 + 53 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Moore, Charles. History of MI, 1915,undated + + + + + + 11 + 54 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: MUCC (MI United Conservation Clubs) MI county maps and outdoor guide,1982 + + + + + + 11 + 55 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Nevill, John T. Wanderings: sketches of N. MI yesterday and today, 1955,1982 + + + + + + 11 + 56 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Newton, Stanley. Mackinac Island and Sault Ste. Marie picturesque and legendary, 1909/ 1976,1976 + + + + + + 11 + 57 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Oceana County Society. Oceana County history, 1880-1990, 1991,1991 + + + + + + 11 + 58 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Perkins and Cleland. Ethnoarchaeological investigations at the Indian village site, Manistee Co., MI,1998 + + + + + + 11 + 59 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Peters, Dr. Bernard, ed., Lake Superior JL: Bela Hubbard’s account of the 1840 Houghton expedition, 1840/1983,1983 + + + + + + 11 + 60 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Pitezel, John. Life of Peter Marksman,undated + + + + + + 11 + 61 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Pitezel, John. Lights and shades of missionary life, 1857,undated + + + + + + 11 + 62 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Potter, Elizabeth W. Story of Old Mission, 1956,undated + + + + + + 11 + 63 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Powers, Perry F. History of northern MI and its people, 1912,undated + + + + + + 11 + 64 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Ranville, Judy and Nancy Campbell. Memories of Mackinaw,1976 + + + + + + 11 + 65 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Ruchhoft, Robert H. Exploring N. Manitou, S. Manitou, High and Garden islands,1991 + + + + + + 11 + 66 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: SAM RG 65-47-A, B1, F1 R. 51-56 “Sad story of the Burt Lake Band” by Jonas Shawanese (in Totem Pole, March 5, 1956),undated + + + + + + 11 + 67 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: SAM RG 65-47-A, B1, F1 R. 51-56 “Sad story of the Burt Lake Band” by Jonas Shawanese (in Totem Pole, March 5, 1956),undated + + + + + + 11 + 68 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Smith, Ruby. Wayland, where yesterday meets today, 1966,undated + + + + + + 11 + 69 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Spooner, Harry L. First white pathfinders of Newaygo County, MI, 1956/66,undated + + + + + + 11 + 70 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Swanburg, Faye. “In the very beginning” in Who were those People? : ethnic beginnings of Alger County, MI , C.A. Symon, ed.,1984 + + + + + + 11 + 71 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Symon, Charles H., ed. Alger County centennial history, 1885-1985, 1986,1986 + + + + + + 11 + 72 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Taylor, Sprague. Tahquamenon Country: a look at its past,1991 + + + + + + 11 + 73 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Wade, Mason, ed., JL of Francis Parkman [Aug. 1845], 1947,undated + + + + + + 11 + 74 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Wheeler-Voegelin, Erminie “Anthropological report on Indian use and occupancy of northern MI” in Chippewa Indians, American Indian Ethnohistory N Central and Northeastern Indians (a Garland Series), David A. Horr, ed.,1974 + + + + + + 11 + 75 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: White, Arthur Scott. Old Grand Rapids, 1925,undated + + + + + + 11 + 76 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: White Lake Area HS. White Lake Area Historical Dist.,1976? + + + + + + 11 + 77 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Williams, Ralph D. Honorable Peter White, 1905,undated + + + + + + 11 + 78 + Box 9 Bay Mills Indian Community-Inland Treaty, Reference, Cleland report -D: Writers Program, WPA. MI: A guide to the Wolverine state, 1941/43,undated + + + + + + 12 + 1 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Index of Citied Reference,undated + + + + + + 12 + 2 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Anderson, Dean. “Variability in trade at 18th c. outposts” Chapter 14 in French colonial archaeology: IL country and the western Great Lakes, John . Walthhall, ed.,1991 + + + + + + 12 + 3 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Armstrong, Louise V. We too are the people, 1938,undated + + + + + + 12 + 4 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Bald, Clever. “Some myths about MI”, MHM, 1944.undated + + + + + + 12 + 5 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Belknap, Charles E. Yesterdays of Grand Rapids, 1922,undated + + + + + + 12 + 6 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Blackbird, Andrew J. History of the Ottawa and Chippewa Indians of MI, 1887,undated + + + + + + 12 + 7 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Blois, John T. Gazetteer of the State of MI,1988 + + + + + + 12 + 8 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Bolt, Christine. American Indian policy and American reform,1987 + + + + + + 12 + 9 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Bremer, Richard G. Indian agent and wilderness scholar: the life of Henry Rowe Schoolcraft,1987 + + + + + + 12 + 10 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Cass, Lewis. Policy and practice of the U.S. and Great Britain in the treatment of Indians, 1829,undated + + + + + + 12 + 11 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Cass, Lewis. Removal of Indians, 1830,undated + + + + + + 12 + 12 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Cleland, Charles E. “Indians in the changing environment” in Great Lakes Forests: an Environmental and social history, Susan L. Flader, ed.,1982 + + + + + + 12 + 13 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Cleland, Charles E. “Indian shore fishery of the northern Great Lakes: its development and importance in prehistory”,1982 + + + + + + 12 + 14 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Cleland, Charles. “Cass, Sassaba and Ozhawguscodaywaquay: history, ethnohistory and historic reality” (title p. only),1991 + + + + + + 12 + 15 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Cleland, Charles E. “From Ethnohistory to archaeology: Ottawa and Ojibwa band territories of the northern Great Lakes”,1992 + + + + + + 12 + 16 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Cleland, Charles E. Rites of conquest,1992 + + + + + + 12 + 17 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Cleland, Charles. “Economic and adaptive change among the Lake Superior Chippewa of the 19th century” (title p. only),1993 + + + + + + 12 + 18 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Cleland, Charles E. Place of the pike (Gnoozbekaaning): a history of the Bay Mills Indian Community,2001 + + + + + + 12 + 19 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Cleland, Charles E. Place of the pike (Gnoozbekaaning): a history of the Bay Mills Indian Community,2001 + + + + + + 12 + 20 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Cleland, N. (Natural vegetarian c. 1600 in Atlas of Great Lakes Indian History,1987 + + + + + + 12 + 21 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Commission Findings on the Chippewa ICC v. 7, Finding of fact Red Lake Band include Bay Mills Indian Community and Ottawa and Chippewa of MI v. US,undated + + + + + + 12 + 22 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Constitution of MI. Article IV, Sec. 3, 1850,undated + + + + + + 12 + 23 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Densmore, Frances. Chippewa customs,1970 + + + + + + 12 + 24 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Densmore, Frances. How Indians use wild plants (formerly: Uses of plants by the Chippewa Indians) (title p. only),1974 + + + + + + 12 + 25 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Dice, Lee R. Biotic provinces of N America (title p. only), 1943,undated + + + + + + 12 + 26 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Dunbar, Willis. MI: a history of the wolverine state, 1965,undated + + + + + + 12 + 27 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Etten, Wm. Citizen’s history of Grand Rapids, MI, 1926,undated + + + + + + 12 + 28 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Gillman, Carol. Where two worlds meet: the Great Lakes fur trade (title p. only),1982 + + + + + + 12 + 29 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Gillman, Rhonda. Last days of the Upper Missippi fur trade,1970 + + + + + + 12 + 30 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Gilman, Rhonda. Fur trade in the Upper MS Valley, 1630-1850, 1974,1974 + + + + + + 12 + 31 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Greffenius, Ruben. Development of MI public land policy Ph. D. dissertation. Univ. of MI, 1960,undated + + + + + + 12 + 32 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Greenman, E. “Chiefdomship among MI Indians”, 1940,undated + + + + + + 12 + 33 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Goss, Dwight. “Indians of the Grand River Valley”, 1906,undated + + + + + + 12 + 34 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Haldimand Papers. Feb. 5, 1772. Sinclair to Haldimand,undated + + + + + + 12 + 35 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Hartwick, L.M. and W.H. Tuller. Oceana County pioneers and business men today: history, biography, statistics and humorous incidents, 1890,undated + + + + + + 12 + 36 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Hayes, A.M. “Reminiscences of pioneer days in Hastings” (title p. only), 1869,undated + + + + + + 12 + 37 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Hazelton, George H. “Reminiscences of seventeen years residence in MI, 1836-1853”, 1894,undated + + + + + + 12 + 38 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Hendrick, U.P. Land of the crooked tree, 1896,undated + + + + + + 12 + 39 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Henry, Alexander. Travels and adventures in Canada and the Indian territories, 1760-1776” (title p. only), 1969,undated + + + + + + 12 + 40 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Hoyt, M.M. “Life of Leonard Slater”, 1907,undated + + + + + + 12 + 41 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Jefferson, Thomas. Notes on the state of Virginia, 1805,undated + + + + + + 12 + 42 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Johnson, Ida A. MI fur trade,1971 + + + + + + 12 + 43 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Jones, Dallas L. Survey and sale of public land in MI, 1815-1862, MA thesis, Cornell U., 1952,undated + + + + + + 12 + 44 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Kappler, C. Indian treaties, 1778-1883, 1904,undated + + + + + + 12 + 45 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Kay, J. “WI Indians hunting patterns, 1634-1836”,1979 + + + + + + 12 + 46 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Kiebler, E.W. Old log schoolhouse, 1953,1953 + + + + + + 12 + 47 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Knuth, Helen, Valuation as of March 28, 1936 of lands involved in Ottawa-Chippewa Indian cases,undated + + + + + + 12 + 48 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Kvasnicka, R. and H. Viola, eds. COIA, 1824-1977, 1979,1979 + + + + + + 12 + 49 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Leach, M.L. “History of Grand Traverse region”, 1883,undated + + + + + + 12 + 50 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Leacock, E. “Montagnais hunting territory and fur trade, 1954,undated + + + + + + 12 + 51 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Lillie, Leo. Historic Grand Haven and Ottawa County, 1931,undated + + + + + + 12 + 52 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Mason, Carol I. “Prehistoric maple sugaring sites?”,1985 + + + + + + 12 + 53 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Mason, Carol I. Introduction to WI Indians,1988 + + + + + + 12 + 54 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Masa, Phillip, ed. Schoolcraft’s expedition to Lake Itasca, 1958,undated + + + + + + 12 + 55 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: McClurken, J.M., G. Cornell, J. Clifton. Ottawa in People of the three fires,1988 + + + + + + 12 + 56 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: McClurken, James. We wish to be civilized: Ottawa-American political contests on the MI frontier, Ph.D. thesis, MSU,1988 + + + + + + 12 + 57 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: McClurken, James M. Augustin Hamlin, Jr.: Ottawa identity and politics of Ottawa perspective” Chapter 4 in Being and Becoming Indian… James A. Clifton, ed.,1989 + + + + + + 12 + 58 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: McCoy, Isaac. History of Baptists and Indian missions,1970 + + + + + + 12 + 59 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: McKenney, T.L. JL of the proceedings under the Treaty of Fond du Lac in sketches of a tour to the lakes, 1827,undated + + + + + + 12 + 60 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Meeker, James E., J. Elias, J. Herm Plants used by the Ojibwa (title p. only),1993 + + + + + + 12 + 61 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Moerman, Daniel E. Medicinal plants of native America (title p. only),1986 + + + + + + 12 + 62 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders:Montfort, Margaret. Ethnic and tribal identity among the Saginaw Chippewa of 1i9th century MI, MA thesis title p. only, MSU,1990 + + + + + + 12 + 63 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Montney, Irene H. Historical notes on Alden and Helena twps,1964 + + + + + + 12 + 64 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Morris, Richard B. Encyclopedia of American history, 1958,undated + + + + + + 12 + 65 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Muskegon Chronicle. Romance of Muskegon, MI, 1937,undated + + + + + + 12 + 66 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Nichols, John D. Translation of key phrases in the treaties of 1837 and 1855, a chapter in Fish in the lakes, wild rice and game in abundance,2000 + + + + + + 12 + 67 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Nute, Grace L. “American Fur Company’s fishing enterprise in Lake Superior” (title p. only), 1926,undated + + + + + + 12 + 68 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Ostergren, Robert C. “Geographic perspectives in the history of settlement in Upper Midwest”,1981 + + + + + + 12 + 69 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Paine, Thomas. Common sense (title p. only),1973 + + + + + + 12 + 70 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Perkins, Eric. Ethnoarchaeological investigations at the Indian village site, Manistee County, MI,1998 + + + + + + 12 + 71 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Petersen, Eugene T. History of wildlife conservation in MI, Ph.D. thesis, UM, 1952,undated + + + + + + 12 + 72 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Petersen, Eugene T. “MI Sportsmen’s Association: a pioneer in game conservation”, 1953,undated + + + + + + 12 + 73 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Petersen, Eugene T. “Wildlife conservation in MI”, 1960,undated + + + + + + 12 + 74 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Potzger, J.E. “Phytosociology of the primeval forest in central northern MI and upper MI and a brief post-glacial history of the lake forest formation”, 1946,undated + + + + + + 12 + 75 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Prucha, Paul F. Great Father,1984 + + + + + + 12 + 76 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Prucha, Paul F. Documents of US and Indian policy (title p. only),1990 + + + + + + 12 + 77 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Quimby, G. I. “Alexander Henry in central MI, 1763-64”, 1962,undated + + + + + + 12 + 78 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Quimby, G. I. “A year w/ a Chippewa family, 1763-1764”, 1962,undated + + + + + + 12 + 79 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Ranville, Judy and N. Campbell. Memories of Mackinaw,1976 + + + + + + 12 + 80 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Rostlund, Erhard. “Freshwater fish and fishing in native N America”, 1952,undated + + + + + + 12 + 81 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Sahlins, Marshall D. Tribesman,1968 + + + + + + 12 + 82 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Sahlins, Marshall Stone Age economics,1972 + + + + + + 12 + 83 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Satz, Ronald G. “American Indian policy in the Jacksonian Era” (title p. Only),1975 + + + + + + 12 + 84 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Schery, Robert W. Plants for man,1972 + + + + + + 12 + 85 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Schoolcraft, HR “Census of MI Indian population under the Treaty of Washington, 1836”, 1839,undated + + + + + + 12 + 86 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Schoolcraft, Henry. Personal memories of a residence of thirty years w/ the Indian tribes of the American frontiers…, 1851,undated + + + + + + 12 + 87 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Service, Elman R. Primitive social organization,1968 + + + + + + 12 + 88 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Smith, Huron. Ethnobotany of the Ojibwa Indians, 1932,undated + + + + + + 12 + 89 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Trigger, B. Children of Aataentsic,1976 + + + + + + 12 + 90 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Turner, Frederick Jackson. Frontier in American history, 1900,undated + + + + + + 12 + 91 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: USFS Hiawatha National Forest Oral History Series Oral history of Francis Le Blanc History and life among Whitefish Bay and Camp Marquette CCC Camp,1991 + + + + + + 12 + 92 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: USFS Hiawatha National Forest Oral History Series Oral history of lumbering, forest conditions and Native American land use recalled by Elvin Smith, St. Ignace, MI,1993 + + + + + + 12 + 93 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Veatch, J.O. Presettlement forest in MI,1959 + + + + + + 12 + 94 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Voelker, David W. “Robert Stuart, a man who meant business”,1990 + + + + + + 12 + 95 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Waite, M. “Indian and pioneer life”, 1954,undated + + + + + + 12 + 96 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: White, Richard. Middle ground,1991 + + + + + + 12 + 97 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Williams, Mentor, ed. Schoolcraft’s narrative JL of travels… 1953,undated + + + + + + 12 + 98 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: US Government treaties, ordinances, etc.,undated + + + + + + 12 + 99 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Treaty of Greenville, Aug. 3, 1995 - 1 Stat. 49,undated + + + + + + 12 + 100 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Treaty w/ the Ottawa, etc., 1801 - 1 Stat. 105,undated + + + + + + 12 + 101 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Treaty w/ the Chippewa, etc., 1808 - 1 Stat. 112,undated + + + + + + 12 + 102 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Treaty w/ the Wyandot, etc., 1815 - 1 Stat. 131,undated + + + + + + 12 + 103 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Treaty w/ the Ottawa, etc., 1816 - 1 Stat. 146,undated + + + + + + 12 + 104 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Treaty w/ the Wyandot, etc., 1817 - 1 Stat. 160,undated + + + + + + 12 + 105 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Treaty w/ the Chippewa, 1819 - 1 Stat. 203,undated + + + + + + 12 + 106 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Treaty w/ the Chippewa, 1820 - 1 Stat. 206,undated + + + + + + 12 + 107 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Treaty w/ the Ottawa and Chippewa, 1820 - 1 Stat. 207,undated + + + + + + 12 + 108 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Treaty w/ the Ottawa, etc., 1821 - 1 Stat. 218,undated + + + + + + 12 + 109 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Treaty w/ the Choctaw, 1830 - 1 Stat. 333,undated + + + + + + 12 + 110 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Treaty w/ the Winnebago, 1832 - 1 Stat. 370,undated + + + + + + 12 + 111 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Treaty w/ the Chickasaw, 1832 - 1 Stat. 381,undated + + + + + + 12 + 112 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Treaty w/ the Cherokee, 1835 - 1 Stat. 478,undated + + + + + + 12 + 113 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Treaty w/ the Ottawa, etc., 1837 - 1 Stat. 491,undated + + + + + + 12 + 114 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Treaty w/ the Chippewa, 1842 - 1 Stat. 591,undated + + + + + + 12 + 115 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Treaty w/ the Oto and MO, 1854 - 1 Stats. 1038,undated + + + + + + 12 + 116 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Treaty w/ the Omaha, 1854 - 10 Stats. 1043,undated + + + + + + 12 + 117 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Treaty w/ the Chippewa, 1854 - 10 Stats. 1109,undated + + + + + + 12 + 118 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Treaty w/ the Ottawa and Chippewa, July 31, 1855 - 11 Stats. 621,undated + + + + + + 12 + 119 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Treaty w/ the Chippewa of Sault Ste. Marie, Aug. 2, 1855 – 11 Stat. 631,undated + + + + + + 12 + 120 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Treaty w/ the Chippewa of Saginaw, etc., Aug. 2, 1855 – 11 Stat. 633,undated + + + + + + 12 + 121 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Treaty w/ the Creeks, etc., 1856 – 11 Stats., 699,undated + + + + + + 12 + 122 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Report of the Committee of Indian Affairs, Oct. 15, 1783, JLs of the Continental Congress 25:681-683, 693,undated + + + + + + 12 + 123 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Ordinance for the regulation of Indian affairs, Aug. 7, 1786, JLs of the Continental Congress 31:490-493,undated + + + + + + 12 + 124 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Northwest Ordinance of July 13, 1787, JLs of the Continental Congress 32:340-341,undated + + + + + + 12 + 125 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Indian Trade and Intercourse Act of 1790, US Stat. 1:137-138,undated + + + + + + 12 + 126 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Trade and Intercourse Act of March 30, 1802, US Stats. 2:139-146,undated + + + + + + 12 + 127 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Exclusion of British Traders, April 29, 1816, US Stats. 3:332-333,undated + + + + + + 12 + 128 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Act of Regulating Fences, 1821, Laws of the Territory of MI, V.1:843-846,undated + + + + + + 12 + 129 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Indian Removal Act, May 28, 1830, 4 Stat. 411-412,undated + + + + + + 12 + 130 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Act relative to the duties and privileges of Twps, April 17, 1933, Laws of the Territory of MI,undated + + + + + + 12 + 131 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Indian Trade and Intercourse Act of June 30, 1834, US Stats. 4:729-735,undated + + + + + + 12 + 132 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: Territorial Papers v. XI:36-37, June 17, 1820, L. Cass to J. Calhoun,undated + + + + + + 12 + 133 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 12:565-567, Aug. 7, 1824, G. Boyd to L. Cass,undated + + + + + + 12 + 134 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1R. 27:232-235, Sept. 22, 1830, HR Schoolcraft to L. Cass,undated + + + + + + 12 + 135 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: Bishop Baraga Collection, A-576 ALJ-DA 1988-95 (BBC-M87) Mar. 8, 1832, F. Baraga to A. Gressels,undated + + + + + + 12 + 136 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: HRSP Papers R. 47:30591, May 27, 1833 to Sept. 30, 1837, Private JL of Indian Affairs,undated + + + + + + 12 + 137 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 71:52, June 13, 1833, Biddle and Drew to H. Schoolcraft,undated + + + + + + 12 + 137 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 71:59-60, June 20, 1833, G. Johnston to H. Schoolcraft,undated + + + + + + 12 + 139 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 35:511, Nov. 21, 1833, H. Schoolcraft to G. Porter,undated + + + + + + 12 + 140 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: BBC MF 66-2, A-421. ALF XIV/VI, #35:1-4, June 26, 1834, F. Baraga to Leopoldina Foundation,undated + + + + + + 12 + 141 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 68, July 6, 1834, F. Audrain to H. Schoolcraft,undated + + + + + + 12 + 142 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 69:51, Aug. 18, 1834, H. Schoolcraft to S.T. Mason,undated + + + + + + 12 + 143 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R 69:67, Sept. 30, 1934, Notice from H. Schoolcraft,undated + + + + + + 12 + 144 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 69:72, Oct. 15, 1834, H. Schoolcraft to S.T. Mason,undated + + + + + + 12 + 145 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 69:78, Oct. 25, 1834, H. Schoolcraft to E. Herring,undated + + + + + + 12 + 146 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 72:217, Aug. 29, 1835, E. Herrig to H. Schoolcraft,undated + + + + + + 12 + 147 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 35:218, Sept. 7, 1835, H. Schoolcraft to S. Mason,undated + + + + + + 12 + 148 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 67:121, Sept. 23, 1835, Schoolcraft to Cobbs,undated + + + + + + 12 + 149 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 69:140, Nov. 3, 1835, H. Schoolcraft to E. Herrig,undated + + + + + + 12 + 150 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 69:143, Nov. 7, 1835, Schoolcraft to Cobbs,undated + + + + + + 12 + 151 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 72:323-324, Nov. 17, 1835, W. Johnston to H. Schoolcraft,undated + + + + + + 12 + 152 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 421:768-773, Nov. 18, 1835, F. Rese to J. Norwell,undated + + + + + + 12 + 153 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 421:722-725, Dec. 5, 1835, A. Hamlin to L. Cass,undated + + + + + + 12 + 154 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: LLL-Letters of Lucius Lyon, MI Pioneer and HS v. XXVII p. 4566-7, Dec. 25, 1835, L. Lyon to R. Robinson and Dec. 26, 1835, L. Lyon to J. Drew,undated + + + + + + 12 + 155 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 72:348, Dec. 28, 1835, Schoolcraft to Clitz,undated + + + + + + 12 + 156 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: HRS Papers R. 7:2298, Dec. 29, 1835, H. Schoolcraft to J. Schoolcraft,undated + + + + + + 12 + 157 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: HRSP R.23:13635, Dec. 29, 1835, Clitz to Schoolcraft,undated + + + + + + 12 + 158 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 41:51-73, 1835, K. Pritchelle to S. Mason,undated + + + + + + 12 + 159 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R.72:388, Jan. 25, 1836, C.Trowbridge to H. Schoolcraft,undated + + + + + + 12 + 160 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 422:146-147, Jan. 27, 1836, Noahquageshik et al. to A. Jackson,undated + + + + + + 12 + 161 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: HRSP-LCM R. 25:13853-55, Feb. 16, 1836, W. Johnston to H. Schoolcraft,undated + + + + + + 12 + 162 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: AMFP-CMU Micro Mss. R. 23:49, Feb. 23, 1835, W. Brewster to R. Crooks,undated + + + + + + 12 + 163 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: HRSP R. 25:13930; 5-18, March 1835, JL of the Ottawa and Chippewa Treaty of Washington, 1835, Transcript copy,undated + + + + + + 12 + 164 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: AMFCP Micro Mss. F-49. R.23:1350, March 5, 1835, M. Holiday to R. Crooks,undated + + + + + + 12 + 165 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: HRSP-LCM R. 24:13879, March 9, 1836, J. Schoolcraft to H. Schoolcraft,undated + + + + + + 12 + 166 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: AMFCP Micro Mss. F-49. R. 23:1866, March 11, 1836, M. Holiday to R. Crooks,undated + + + + + + 12 + 167 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 72:462, March 14, 1835, L. Cass to H. Schoolcraft (no material),undated + + + + + + 12 + 168 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: US v. MI M-26-73 CA Ex. 233A, March 17, 1836, M. Holiday to R. Crooks,undated + + + + + + 12 + 169 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: AMFCP-CMU Micro Mss. F-49 R. 23:1398, March 22, 1835, M. Holiday to R. Crooks,undated + + + + + + 12 + 170 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: AMFCP-CMU Micro Mss. F-49 R. 23:1411, March 22, 1836, R. Robinson to R. Crooks,undated + + + + + + 12 + 171 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: US v. MI Ex. 234-A, March 28, 1835, H. Schoolcraft to J. Schoolcraft,undated + + + + + + 12 + 172 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M668 R. 8:89-117, Treaty w/ the Ottawa and Chippewa at Washington, March 28, 1836, and supplemental articles, March 31, 1836,undated + + + + + + 12 + 173 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM T494 R. 3:362-364, March 30, 1836, H. Schoolcraft to L. Cass,undated + + + + + + 12 + 174 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M21 R. 18, April 1, 1836, L. Cass to Pres. Of the US Senate,undated + + + + + + 12 + 175 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 72:478, May 20, 1836, Resolution of the Senate of the US,undated + + + + + + 12 + 176 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: OP US AG No. 3, 126, June 21, 1836,undated + + + + + + 12 + 177 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: HRS Papers R. 26:14317-19, June 27, 1836, R. Robinson to H. Schoolcraft,undated + + + + + + 12 + 178 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M21 R. 19:111-113, July 1, 1836, L. Cass to H. White,undated + + + + + + 12 + 179 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: HRSP-LCM R. 26:14439, July 18, 1836, H. Schoolcraft to L. Cass,undated + + + + + + 12 + 180 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: HRS Papers 1851:180-194, Nov. 13, 1836, Petition of chiefs to Pres. Andrew Jackson,undated + + + + + + 12 + 181 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: ARCOIA 1837:532,undated + + + + + + 12 + 182 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 37:134, Jan. 13, 1837, H. Schoolcraft to C. A. Harris,undated + + + + + + 12 + 183 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 42:93, Jan. 27, 1837, C. Harris to H. Schoolcraft,undated + + + + + + 12 + 184 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: UC-WLCC Box Feb.-Aug. 1837, Feb. 13, 1837, Sidney Smith to L. Lyons,undated + + + + + + 12 + 185 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 42:177, Feb. 20, 1837, Lyman, Rathbone and Finary to Schoolcraft,undated + + + + + + 12 + 186 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 37:168, Feb. 27, 1837, H. Schoolcraft to C.A. Harris,undated + + + + + + 12 + 187 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 37:171, Feb. 27, 1837, H. Schoolcraft to Lyman, Rathbone and Finning,undated + + + + + + 12 + 188 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 422:632-634, Feb. 27, 1837, H. Schoolcraft to C. Harris,undated + + + + + + 12 + 189 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M21:204, March 23, 1837, C. Harris to J. Poinsett,undated + + + + + + 12 + 190 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 36:12, April 20, 1837, B.F. Butler to J. Poinsett,undated + + + + + + 12 + 191 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 402:356-360, June 8, 1837, J. McDonell to J. Clark to C. Harris,undated + + + + + + 12 + 192 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M21 R. 22:52, July 1, 1837, C. Harris to H. Schoolcraft,undated + + + + + + 12 + 193 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM T494 R. 543-568, July 20, 1837, Proceedings of a council held by Gov. H. Dodge w/ the chiefs and principle men of the Chippewa Nation,undated + + + + + + 12 + 194 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 37:265, July 25, 1837, H. Schoolcraft to J. Mullett,undated + + + + + + 12 + 195 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: ARCOIA 1838,undated + + + + + + 12 + 196 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: PHSC Box 7, Vol. 3:14, 1838, P. Dougherty to W. Lowrie,undated + + + + + + 12 + 197 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: HRSP R. 28:16021-16022, Jan. 8, 1838, contract of J. Benk and H. Schoolcraft,undated + + + + + + 12 + 198 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: HRS Papers R. 30:16149-16150, March 1, 1838, H. Schoolcraft to C. Harns,undated + + + + + + 12 + 199 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 37:491, May 22, 1838, H. Schoolcraft to J. Schoolcraft,undated + + + + + + 12 + 200 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: US v. MI Ex. 92-A, M-26-73CA, June 5, 1838, J. Ord to H. Schoolcraft,undated + + + + + + 12 + 201 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 415:611-614, June 9, 1838, J. Schoolcraft to C. Harris,undated + + + + + + 12 + 202 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 37:515, June 23, 1838, H. Schoolcraft to I. McCoy,undated + + + + + + 12 + 203 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 415:624-626, June 26, 1838, J. Schoolcraft to C. Harris,undated + + + + + + 12 + 204 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 45:47, July 27, 1838, I. McCoy to H. Schoolcraft,undated + + + + + + 12 + 205 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 415:636-643, Aug. 29, 1838, J. Schoolcraft to C. Harris,undated + + + + + + 12 + 206 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 402:889, Sept. 29, 1838, H, Schoolcraft to C. Harris,undated + + + + + + 12 + 207 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: ARCOIA 1839:477,undated + + + + + + 12 + 208 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 46:3838, May 22, 1839, J. Schoolcraft to H. Schoolcraft,undated + + + + + + 12 + 209 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 424:764-769, May 20, 1841, Apakosigan et al. to J. Tyler,undated + + + + + + 12 + 210 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 424:684-685, June 22, 1841, A. Coe to J. Bell,undated + + + + + + 12 + 211 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 424:689-691, June 24, 1841, A. Coe to J. Bell,undated + + + + + + 12 + 212 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 51:125, July 30, 1841, J. Bell to R. Stuart,undated + + + + + + 12 + 213 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: ARCOIA 1840:340,undated + + + + + + 12 + 214 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: Federal census of population, 1840,undated + + + + + + 12 + 215 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 424:50-53, May 23, 1840, Apakosigan et al. to President,undated + + + + + + 12 + 216 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 424:165-170, July 15, 1840, H. Schoolcraft to H. Crawford,undated + + + + + + 12 + 217 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 427:570-571, Aug. 10, 1840, J. Whitcomb to H. Crawford,undated + + + + + + 12 + 218 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M21 R. 29:359-60, Nov. 4, 1840, H. Crawford to H. Schoolcraft,undated + + + + + + 12 + 219 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 49:415, Nov. 4, 1840, H. Crawford to H. Schoolcraft,undated + + + + + + 12 + 220 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: ARCOIA 1841,undated + + + + + + 12 + 221 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M21 R. 30:34, Jan. 14, 1841, H. Crawford to W. Carter,undated + + + + + + 12 + 222 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: PHSC Box 7, vol. 3:50, Feb. 19, 1841, R. Dougherty to D. Wells,undated + + + + + + 12 + 223 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: MIMALR 2:488-490, March 30, 1841, H. Schoolcraft to Crawford,undated + + + + + + 12 + 224 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 50:495, April 1, 1841, E. Hains to J. Witcomb,undated + + + + + + 12 + 225 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 424:694-696, Oct. 27, 1841, A. Coe to Pres. Tyler,undated + + + + + + 12 + 226 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: ARCOIA 1842,undated + + + + + + 12 + 227 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: CHL-BP, Mss. FM-5 R. 930, Aug. 9, 1842, Bingham to Orr,undated + + + + + + 12 + 228 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 245:518-521, Oct. 2, 1842, P. Dougherty to R. Stuart,undated + + + + + + 12 + 229 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 425:213, Nov. 26, 1842, R. Stuart to H. Crawford,undated + + + + + + 12 + 230 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: ARCOIA 1843,undated + + + + + + 12 + 231 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 425:525, 1843, Aishquaqonabe et al. to President, Congress of US,undated + + + + + + 12 + 232 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 38:89, Feb. 27, 1843, R. Stuart to F. Pierz,undated + + + + + + 12 + 233 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: ABCFM Ms. BA 10.1512b, May 3, 1843, L.H. Wheeler to D. Greene,undated + + + + + + 12 + 234 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 425:292-295, July 20, 1843, F. Pierz to President,undated + + + + + + 12 + 235 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 425:425-431, Oct. 13, 1843, R. Stuart to H. Crawford,undated + + + + + + 12 + 236 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 55:529, Oct. 28, 1843, W. Johnston to R. Stuart,undated + + + + + + 12 + 237 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: PHSC Box 7, Vol.3:103, March 11, 1844, Ottawa to MI Legislature,undated + + + + + + 12 + 238 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R.403, Aug. 23, 1844, T. Blake to H. Crawford,undated + + + + + + 12 + 239 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 57:270, Sept. 16, 1844, W. MacLeod to R. Stuart,undated + + + + + + 12 + 240 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 57:212, Oct. 26, 1844, J. Rice to R. Stuart,undated + + + + + + 12 + 241 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 39:507, Nov. 30, 1844, R. Stuart to F. Pierz,undated + + + + + + 12 + 242 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: ARCOIA 1845,undated + + + + + + 12 + 243 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 58:1, June 30, 1845, F. Miller to W. Richmond,undated + + + + + + 12 + 244 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: ARCOIA, 1847,undated + + + + + + 12 + 245 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: HRS Papers, R38:22136, Jan. 21, 1848, Peer Dougherty to OIA7,undated + + + + + + 12 + 246 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M1 R. 62:61, Feb. 10, 1848, J. Selkrig to W. Richmond,undated + + + + + + 12 + 247 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R.771:238-241, April 4, 1848, W. Lowrie to W. Medill,undated + + + + + + 12 + 248 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: CMU AFCP/SS Mc-BBR; Mss. F52 R-8, May 17, 1848, Barbeau to Hulbut,undated + + + + + + 12 + 249 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: ARCOIA 1849,undated + + + + + + 12 + 250 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: PHSC Box 7, Vol. 3:171, 1849, P. Dougherty to W. Lowrie,undated + + + + + + 12 + 251 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 426:660, June 1, 1850, W. Johnston to O. Brown,undated + + + + + + 12 + 252 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 403:584-588, Feb. 19, 1851, Ottawa Chiefs to President Filmore,undated + + + + + + 12 + 253 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: LRMS -1131, March 31, 1851, J. Pratt to C. Babcock,undated + + + + + + 12 + 254 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R.598:16, June 14, 1851, P. Dougherty to W. Lowrie,undated + + + + + + 12 + 255 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M21 R. 44:425, June 4, 1851, L. Lea to E. Murray,undated + + + + + + 12 + 256 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 403:603-604, July 15, 1851, W. Richmond to L. Lea,undated + + + + + + 12 + 257 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 598:51-54, July 31, 1851, Kanapima to Chiefs,undated + + + + + + 12 + 258 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: GNS-LCM Papers, R. 7, Aug. 11, 1851, G.N. Smith Papers,undated + + + + + + 12 + 259 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 598:41, Sept. 2, 1851, E. Murray to L. Lea,undated + + + + + + 12 + 260 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: CMU AFCP/SS ML-BL Mss.F52, R. 5, Feb. 1852, Anthony to Barbeau,undated + + + + + + 12 + 261 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 403:701-703, April 7, 1852, Resolution of the Senate of the US,undated + + + + + + 12 + 262 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: ARCOIA 1853,undated + + + + + + 12 + 263 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R.404:368-380, March 6, 1854, H. Gilbert to G. Manypenny,undated + + + + + + 12 + 264 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: George Nelson Smith Diaries, July 8, 1854, Bentley Library, Ann Arbor,undated + + + + + + 12 + 265 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: CMU AFCP/SSMC-BL; Mss. F. 52 R. 5, July 21, 1854, Buhl to Barbeau,undated + + + + + + 12 + 266 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: ARCOIA 1855, 17-19, Washington: A.O.P. Nickelson, 1856, p. 1, Nickelson, 1858, p. 19,undated + + + + + + 12 + 267 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 404:561-566, Jan. 16, 1855, Kapimose et al. Memorial to COIA,undated + + + + + + 12 + 268 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM T494 R. 5:307, Document relating to the negotiations of the Treaty of Feb. 22, 1855, Transcript. P. 13,undated + + + + + + 12 + 269 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: LRMS-1131, March 31, 1855, J. Selkrig to H. Gilbert,undated + + + + + + 12 + 270 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: LRMS-1131, April 6, 1855, G. Smith to H. Gilbert,undated + + + + + + 12 + 271 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R.404:625-627, April 12, 1855, H. Gilbert to G. Manypenny,undated + + + + + + 12 + 272 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: LRMS-131, April 25, 1855, G. Manypenny to R. McClelland,undated + + + + + + 12 + 273 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 404:840-841, April 26, 1855, McClelland to G. Manypenny,undated + + + + + + 12 + 274 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 842-843, May 21, 1855, McClelland to G. Manypenny,undated + + + + + + 12 + 275 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 404:646-649, May 22, 1855, H. Gilbert to G. Manypenny,undated + + + + + + 12 + 276 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M21 R. 51:485-486, June 6, 1855, G. Manypenny to H. Gilbert,undated + + + + + + 12 + 277 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 404:705-707, June 9, 1855, H. Gilbert to G. Manypenny,undated + + + + + + 12 + 278 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 404:7098-710, June 13, 1855, H. Gilbert to G. Manypenny,undated + + + + + + 12 + 279 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 404:711-712, June 19, 1855, H. Gilbert to G. Manypenny,undated + + + + + + 12 + 280 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: US v. MI Plaintiff Exhibit P-19 MI-26-73CA, July 25, 1855, Proceeding of a Council w/ the Chippeways and Ottawas of MI held at …Detroit by the Hon. George W. Manypeny (sic) and Henry C. Gilbert,undated + + + + + + 12 + 281 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: Detroit Daily Free Press, July 26, 1855,undated + + + + + + 12 + 282 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: Detroit Daily Free Press, July 29, 1855,undated + + + + + + 12 + 283 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: US v. MI, Exhibit P. 19A, MI-26-73CA, Aug. 7, 1855, G. Manypenny and H. Gilbert to C. Mix,undated + + + + + + 12 + 284 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 404:950-952, Sept. 3, 1855, W. Richmond to G. Manypenny,undated + + + + + + 12 + 285 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 404:953-955, Oct. 12, 1855, W. Richmond to G. Manypenny,undated + + + + + + 12 + 286 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: ARCOIA 1856, Nov. 22, 1856,undated + + + + + + 12 + 287 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: ARCOIA 1856, 571-72,undated + + + + + + 12 + 288 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: H-211, Jan. 3, 1856, R. McClelland to the President,undated + + + + + + 12 + 289 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 405:60-63, Feb. 18, 1856, H. Gilbert to ?,undated + + + + + + 12 + 290 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: ARCOIA 1857 Washington: A.O.P., p. 293,undated + + + + + + 12 + 291 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: Grand Rapids Daily Enquirer and Herald, July 26, 1857, Reminiscences of Grand Rapids Indians,undated + + + + + + 12 + 292 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: Grand Rapids Enquirer and Herald, June 19, 1858, “Ottawas in Oceana and Mason counties”,undated + + + + + + 12 + 293 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: NAM M234 R. 4, 406:538-542, Oct. 19, 1859, G. Johnston to C. E. Mix,undated + + + + + + 12 + 294 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: ARCOIA 1861:801,undated + + + + + + 12 + 295 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: SAM RG 80-33, B6, F1, 1869, Field notes of N.H. Winchell,undated + + + + + + 12 + 296 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: LR-OIA, 1881-10305, June 14, 1881, G. Lee to COIA,undated + + + + + + 12 + 297 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: LR-OIA, 1883-21542, Nov. 19, 1883, Edward Shawwan, to Hiram Price,undated + + + + + + 12 + 298 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: ARCOIA 1885:113,undated + + + + + + 12 + 299 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: LROIA 1886-31912, Nov. 29, 1886, C.M. Clark to J.D.C. Atkins,undated + + + + + + 12 + 300 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: Detroit Tribune, June 21, 1888, “Scientific wanderers”,undated + + + + + + 12 + 301 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: CCF 84031-1908, 175, Dec. 16, 1908, Acting Commissioner to R.S. Buckland,undated + + + + + + 12 + 302 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: CCF Bay Mills 30746-1914, 313, April 25, 1914, C.F. Hauke to C. Pigeon,undated + + + + + + 12 + 303 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: Annual Report of MI AG on Off-reservation USUFRUCT rights, June 30, 1914,undated + + + + + + 12 + 304 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: CCF Mackinac 9944-1915, 115, Sept. 10, 1915, G. Antoine to OIA,undated + + + + + + 12 + 305 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: CCF Mackinac 10786-1916, 052, Feb. 3, 1916, E.B. Merritt to J. M. Lufkins,undated + + + + + + 12 + 306 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: CCF Consolidated Chippewa 44729-1923, 115, June 8, 1923, C. Pamossigay to COIA,undated + + + + + + 12 + 307 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: CCF Mt. Pleasant 49702-1927, 115, Oct. 24, 1927,undated + + + + + + 12 + 308 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: CCF Mt. Pleasant 19994-1928, 175, June 12, 1928, E.B. Merritt, Asst. Commissioner to J. C. Cogswell (in 4/16/28 file),undated + + + + + + 12 + 309 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: CCF Mt. Pleasant 12207-1930, 115, March 3, 1930, M. Medacco to Dear Sir,undated + + + + + + 12 + 310 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: CCF MI. Misc. 9634-1936, 066, June 19, 1936, Petition to A.J. Engel by Little Traverse Bay Ottawa (in Feb. 21, 1936 file),undated + + + + + + 12 + 311 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: Muskegon Chronicle, Sat., July 10, 1837 “Martin Ryerson”,undated + + + + + + 12 + 312 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: CCF Great Lakes 9592-C-1936, 057, April 7, 1937, Herman, Cameron to John Collier,undated + + + + + + 12 + 313 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: CCF MI Misc. 9634-1936, 006, May 27, 1938, E. Pego to J. Collier,undated + + + + + + 12 + 314 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: BMC History Dept. Tribal Archive, 1985, Marie Cameron interview conducted by Del Bowen,undated + + + + + + 12 + 315 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: LRBO OHC, July 29, 1990, Discussion w/ Anna and Katie Sam Glocheski, p.2,undated + + + + + + 12 + 316 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: LRBO-OHC (Little River Band-Oral History), July 30, 1990, Discussion w/ Alex Sam-Glocheski and Connie Waitner, conducted by J. McClurken, pp.6-7,undated + + + + + + 12 + 317 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: LRBO-OHC (Little River Band-Oral History), July 22, 1991, Discussion w/ Steve and Dorothy Medacco, complied by J. McClurken, pp. 17-20, 22,undated + + + + + + 12 + 318 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: Testimony of Daniel Bailey, Chairmen of the Little River Band before the Committee on Indian Affairs, US Senate, 103rd Congress, 2nd Sess., Feb. 10, 1994, Wash., D.C., pp. 55-57,undated + + + + + + 12 + 319 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: Database for Map Nos. 2-7, 11-13,undated + + + + + + 12 + 320 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set Materials separated by blue sheets of paper, not in folders: Documents Arranged Chronologically: Additional Supporting Documents for Cleland Report, Jan. 21, 2005,undated + + + + + + 12 + 321 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set On top of other papers, separated by yellow sheets of paper, not in folders: B. Cass, L., 1827 pp.435-442,undated + + + + + + 12 + 322 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set On top of other papers, separated by yellow sheets of paper, not in folders: D. Leach, ML, 1883, p. 83,undated + + + + + + 12 + 323 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set On top of other papers, separated by yellow sheets of paper, not in folders: E. Peterson, E., 1960 pp. 133-4,undated + + + + + + 12 + 324 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set On top of other papers, separated by yellow sheets of paper, not in folders: Posts (?) Le Blanc, p. 22,undated + + + + + + 12 + 325 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set On top of other papers, separated by yellow sheets of paper, not in folders: G. Cleland, 2001 p. 58,undated + + + + + + 12 + 326 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set On top of other papers, separated by yellow sheets of paper, not in folders: I. Ette, Wm., 1926, p. 68,undated + + + + + + 12 + 327 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set On top of other papers, separated by yellow sheets of paper, not in folders: 41. Act relative to the duties and privileges of Twps, April 17, 1833,undated + + + + + + 12 + 328 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set On top of other papers, separated by yellow sheets of paper, not in folders: 52. ARCOIA 1857, pp.287-293,undated + + + + + + 12 + 329 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set On top of other papers, separated by yellow sheets of paper, not in folders: 1. Baraga, 1976, pp. 46-47,undated + + + + + + 12 + 330 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set On top of other papers, separated by yellow sheets of paper, not in folders: 2. Black-Rogers 33(4):353-383,undated + + + + + + 12 + 331 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set On top of other papers, separated by yellow sheets of paper, not in folders: 3. Cleland, Rites, pp.234-256,undated + + + + + + 12 + 332 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set On top of other papers, separated by yellow sheets of paper, not in folders: 4. Cleland, Pike, pp. 44, 46,undated + + + + + + 12 + 333 + Box 10 Bay Mills Indian Community-Inland Treaty, Reference, Cleland Attorney Set On top of other papers, separated by yellow sheets of paper, not in folders: 5. ABCFM BA10512b, Box 2, Jan. 9, 1837,undated + + + + + + 13 + 1 + Box 11 Bay Mills Indian Community-Inland Treaty, 2005 Depositions, reports, correspondence: US v. MI, Proposed Direct Testimony,2005 + + + + + + 13 + 2 + Box 11 Bay Mills Indian Community-Inland Treaty, 2005 Depositions, reports, correspondence: US v. MI, Proposed Finding of Facts,2005 + + + + + + 13 + 3 + Box 11 Bay Mills Indian Community-Inland Treaty, 2005 Depositions, reports, correspondence: US v. MI, Correspondence,2005 + + + + + + 13 + 4 + Box 11 Bay Mills Indian Community-Inland Treaty, 2005 Depositions, reports, correspondence: Definitions of “settlement” and “indefinite”, Webster, 1928,2005 + + + + + + 13 + 5 + Box 11 Bay Mills Indian Community-Inland Treaty, 2005 Depositions, reports, correspondence: US v. MI, Legal Filing,2005 + + + + + + 13 + 6 + Box 11 Bay Mills Indian Community-Inland Treaty, 2005 Depositions, reports, correspondence: US v. MI, R. Bailey, Rebuttal Report,2005 + + + + + + 13 + 7 + Box 11 Bay Mills Indian Community-Inland Treaty, 2005 Depositions, reports, correspondence: US v. MI, J. Davis, Rebuttal Report,2005 + + + + + + 13 + 8 + Box 11 Bay Mills Indian Community-Inland Treaty, 2005 Depositions, reports, correspondence: US v. MI, Driben Report,2004 + + + + + + 13 + 9 + Box 11 Bay Mills Indian Community-Inland Treaty, 2005 Depositions, reports, correspondence: US v. MI- Karamanski Reports,2005 + + + + + + 13 + 10 + Box 11 Bay Mills Indian Community-Inland Treaty, 2005 Depositions, reports, correspondence: US v. MI, L. Kelly Report,Oct. 2004 + + + + + + 13 + 11 + Box 11 Bay Mills Indian Community-Inland Treaty, 2005 Depositions, reports, correspondence: US v. MI, L. Kelly Rebuttal Report,Feb. 3, 2005 + + + + + + 13 + 12 + Box 11 Bay Mills Indian Community-Inland Treaty, 2005 Depositions, reports, correspondence: US v. MI, R. Rhodes Rebuttal Report,2005 + + + + + + 13 + 13 + Box 11 Bay Mills Indian Community-Inland Treaty, 2005 Depositions, reports, correspondence: US v. MI, Rhodes Report,Oct. 4, 2004 + + + + + + 13 + 14 + Box 11 Bay Mills Indian Community-Inland Treaty, 2005 Depositions, reports, correspondence: US v. MI, R. Squires Report,2005 + + + + + + 13 + 15 + Box 11 Bay Mills Indian Community-Inland Treaty, 2005 Depositions, reports, correspondence: US v. MI, Report #4 Expert Testimony,2004 + + + + + + 13 + 16 + Box 11 Bay Mills Indian Community-Inland Treaty, 2005 Depositions, reports, correspondence: US v. MI, Cleland deposition, V. I-III,2005 + + + + + + 13 + 17 + Box 11 Bay Mills Indian Community-Inland Treaty, 2005 Depositions, reports, correspondence: US v. MI, Responses to Discovery,2004 + + + + + + 13 + 18 + Box 11 Bay Mills Indian Community-Inland Treaty, 2005 Depositions, reports, correspondence: US v. MI Cleland deposition, Vol. I,2005 + + + + + + 13 + 19 + Box 11 Bay Mills Indian Community-Inland Treaty, 2005 Depositions, reports, correspondence: US v. MI Cleland deposition, Vol. II,2005 + + + + + + 13 + 20 + Box 11 Bay Mills Indian Community-Inland Treaty, 2005 Depositions, reports, correspondence: US v. MI Cleland deposition, Vol. III,2005 + + + + + + 13 + 21 + Box 11 Bay Mills Indian Community-Inland Treaty, 2005 Depositions, reports, correspondence: US v. MI Corbiere deposition,2005 + + + + + + 13 + 22 + Box 11 Bay Mills Indian Community-Inland Treaty, 2005 Depositions, reports, correspondence: US v. MI Driben deposition,2005 + + + + + + 14 + 1 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M1 R.2 May 14, 1816,undated + + + + + + 14 + 2 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M1 R.12:553 Aug. 4, 1824,undated + + + + + + 14 + 3 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M1 R.12:545 Aug. 5, 1824,undated + + + + + + 14 + 4 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M1 R.15:231, Oct. 27, 1824,undated + + + + + + 14 + 5 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M21 R.3:199, Sept. 13, 1826,undated + + + + + + 14 + 6 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M1 R.24:205 May 20, 1829,undated + + + + + + 14 + 7 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M1 R.25:193 Aug. 31, 1829,undated + + + + + + 14 + 8 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: HRSP R5:1721 Feb. 21, 1829,undated + + + + + + 14 + 9 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M1 R.31:259 Sept. 1, 1932,undated + + + + + + 14 + 10 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: BBC Dec. 1, 1833,undated + + + + + + 14 + 11 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: BBC March 7, 1834,undated + + + + + + 14 + 12 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: BBC Feb. 20, 1835,undated + + + + + + 14 + 13 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: HRSP R.24:13930 March 18, 1836,undated + + + + + + 14 + 14 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: HRSP R. 24:13944 March 24, 1836,undated + + + + + + 14 + 15 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: AFCP-CMU Micro Mss. F-49 R.23:1428 March 27, 1836,undated + + + + + + 14 + 16 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R. 423:203-205 July 31, 1838,undated + + + + + + 14 + 17 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.423:191-193 Sept. 1, 1838,undated + + + + + + 14 + 18 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M1 R.37:547-564 Sept. 30, 1838,undated + + + + + + 14 + 19 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R. 423:199-201 Sept. 30, 1838,undated + + + + + + 14 + 20 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M1 R. 47:251-256 1839,undated + + + + + + 14 + 21 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: PHSC Box 7 Vol. 3:30 July 9, 1839,undated + + + + + + 14 + 22 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M1 R. 47:225-226 Aug. 8, 1839,undated + + + + + + 14 + 23 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.424:281-283 Sept. 5, 1840,undated + + + + + + 14 + 24 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 308-309 Aug. 18, 1841,undated + + + + + + 14 + 25 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.424:905-909 Aug. 18, 1841,undated + + + + + + 14 + 26 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1842:475-576 Aug. 20, 1842,undated + + + + + + 14 + 27 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1842:410-411 Sept. 1, 1842,undated + + + + + + 14 + 28 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1842:477-478 Sept. 2, 1842,undated + + + + + + 14 + 29 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M1 R.53:341-343 Nov. 1, 1842,undated + + + + + + 14 + 30 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: S. Ex. Doc. 1, 28th Cong. 1st Sess. Serial 431:330-331 Aug. 16, 1843,undated + + + + + + 14 + 31 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1844:414 April 30, 1844,undated + + + + + + 14 + 32 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1844:408-410 Aug. 30, 1844,undated + + + + + + 14 + 33 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: S. Ex. Doc. 1, 28th Cong. 2nd Sess. Serial 1449:484-485 Sept. 30, 1844,undated + + + + + + 14 + 34 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: PHSC Box 7, Vol. 3:117 June 24, 1845,undated + + + + + + 14 + 35 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.426:105-109 1846,undated + + + + + + 14 + 36 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: S. Ex. Doc. 1, 29th Cong. 2nd Sess. Serial 493:330-333 Sept. 26, 1846,undated + + + + + + 14 + 37 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 333-335 Sept. 20, 1846,undated + + + + + + 14 + 38 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: S. Ex. Doc. 1, 29th Cong. 2nd Sess. Serial 493:333-335 Sept. 30, 1846,undated + + + + + + 14 + 39 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1846:264-265 Oct. 1, 1846,undated + + + + + + 14 + 40 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 408-487 1838,undated + + + + + + 14 + 41 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 909-910 Aug. 31, 1847,undated + + + + + + 14 + 42 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1847 Aug. 31, 1847,undated + + + + + + 14 + 43 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1847:820-821 Oct. 20, 1847,undated + + + + + + 14 + 44 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 817-820 Nov. 20, 1847,undated + + + + + + 14 + 45 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M1 R.40:459 Nov. 27, 1850,undated + + + + + + 14 + 46 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M 234 R.404; 46-49 June 17, 1853,undated + + + + + + 14 + 47 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: GNS R.1 March 7, 1854,undated + + + + + + 14 + 48 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: LRMS-1131 Dec. 8, 1854,undated + + + + + + 14 + 49 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R. 404:958-963 Dec. 11, 1854,undated + + + + + + 14 + 50 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: PHSC Box 7 Vol. 1:146 Jan. 1, 1855,undated + + + + + + 14 + 51 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: LRMS-1131 April 2, 1855,undated + + + + + + 14 + 52 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: RG-49 Ind. Res. Files 1835-1898, April 5, 1855,undated + + + + + + 14 + 53 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: RG-49 Ind. Res. Files 1835-1898, April 10, 1855,undated + + + + + + 14 + 54 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: LRMS-1131 April 21, 1855,undated + + + + + + 14 + 55 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: RG 49 Ind. Res. Files 1835-1898, May 14, 1855,undated + + + + + + 14 + 56 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R. 404:817-821 July 31, 1855,undated + + + + + + 14 + 57 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1849:1143-1147 Sept. 12, 1849,undated + + + + + + 14 + 58 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1852:30-31 Sept. 20, 1852,undated + + + + + + 14 + 59 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1853:5-6 Sept. 3, 1853,undated + + + + + + 14 + 60 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1854:31-32 Sept. 1, 1854,undated + + + + + + 14 + 61 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 34-35 Sept. 10, 1854,undated + + + + + + 14 + 62 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1854:35-36 Oct. 3, 1854,undated + + + + + + 14 + 63 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R. 405:575 Jan. 1, 1857,undated + + + + + + 14 + 64 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R. 405:574 Jan. 8, 1857,undated + + + + + + 14 + 65 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: Cong. Globe 34: pp.406-408 March 3, 1857,undated + + + + + + 14 + 66 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: Grand Rapids Daily Enquirer and Herald, July 28, 1857,undated + + + + + + 14 + 67 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: PHSC Box 7, Vol.2:30 Sept. 10, 1857,undated + + + + + + 14 + 68 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R. 405:451-455 Sept. 12, 1857,undated + + + + + + 14 + 69 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: Grand Rapids Eagle and Daily Enquirer, May 28, 1858,undated + + + + + + 14 + 70 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: Grand Rapids Daily Enquirer and Herald, June 8, 1858, p. 3,undated + + + + + + 14 + 71 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: Grand Rapids Eagle, p.3 Oct. 12, 1858,undated + + + + + + 14 + 72 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1858, Nov. 10, 1858,undated + + + + + + 14 + 73 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R. 406:327-328 Feb. 14, 1859,undated + + + + + + 14 + 74 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R. 406:325 Feb. 26, 1859,undated + + + + + + 14 + 75 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R. 406:444 May 21, 1859,undated + + + + + + 14 + 76 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M3248 R. 11:195 May 30, 1859,undated + + + + + + 14 + 77 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: Grand Rapids Enquirer and Herald, p. 3, June 4, 1859,undated + + + + + + 14 + 78 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: BBC June 23, 1859,undated + + + + + + 14 + 79 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: Grand Rapids Eagle, p.2 Sept. 20, 1859,undated + + + + + + 14 + 80 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R. 406:289-293 Sept. 28, 1859,undated + + + + + + 14 + 81 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R. 406:338-542 Oct. 10, 1859,undated + + + + + + 14 + 82 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: Grand Traverse Herald, p. 2, Jan. 13, 1860,undated + + + + + + 14 + 83 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: Daily Enquirer and Herald, Grand Rapids, p. 3 May 29, 1860,undated + + + + + + 14 + 84 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1861:800-802 Nov. 12, 1861,undated + + + + + + 14 + 85 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1862:486-488 Oct. 26, 1862,undated + + + + + + 14 + 86 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: LRMS-1131 July 21, 1865,undated + + + + + + 14 + 87 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: RG 49 Ind. Res. Files 1835-1898, Aug. 15, 1865,undated + + + + + + 14 + 88 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: Act making appropriations for…Indian Dept…1861,undated + + + + + + 14 + 89 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: PHSC Box B, Vol.1:18 March 6, 1866,undated + + + + + + 14 + 90 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R. 408:162-163 June 7, 1866,undated + + + + + + 14 + 91 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R. 408:488-497 Jan. 27, 1867,undated + + + + + + 14 + 92 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R. 408:543-545 May 8, 1868,undated + + + + + + 14 + 93 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: LRMS-1131 May 10, 1868,undated + + + + + + 14 + 94 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: Congress Globe 40:2 #32 Jan. 26, 1869,undated + + + + + + 14 + 95 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R. 408:787-808 July 24-26, 1869,undated + + + + + + 14 + 96 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M21 R. 91:216-223 July 30, 1869,undated + + + + + + 14 + 97 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R. 408:772-780 Aug. 5, 1869,undated + + + + + + 14 + 98 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M21 R.92:114-115 Aug. 26, 1869,undated + + + + + + 14 + 99 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1869:875-878 Oct. 22, 1869,undated + + + + + + 14 + 100 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R. 409:557-567 Feb. 13, 1870,undated + + + + + + 14 + 101 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R. 409:175-177 March 28, 1870,undated + + + + + + 14 + 102 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: 15004cl R. 2:360-362 June 7, 1870,undated + + + + + + 14 + 103 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: PHSC Box Q Vol.6:53 Feb. 10, 1871,undated + + + + + + 14 + 104 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.409:634-636 Sept. 14, 1871,undated + + + + + + 14 + 105 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: S. Ex. Doc.. #1 42nd Cong. 2nd Sess. Ser 1505 pp.924-928 Sept. 18, 1871,undated + + + + + + 14 + 106 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: 18 Stat.381 June 10, 1872,undated + + + + + + 14 + 107 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.410:479-481 July 6, 1872,undated + + + + + + 14 + 108 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.410:282-284 July 9, 1872,undated + + + + + + 14 + 109 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.410:301-303 July 19, 1872,undated + + + + + + 14 + 110 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.410:328-333 Aug. 1, 1872,undated + + + + + + 14 + 111 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.410:186-491 Aug. 6, 1872,undated + + + + + + 14 + 112 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.410:339-340 Aug. 15, 1872,undated + + + + + + 14 + 113 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.410:380-388 Sept. 14, 1872,undated + + + + + + 14 + 114 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.410:389-392 Sept. 16, 1872,undated + + + + + + 14 + 115 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.410:411-415 Oct. 1, 1872,undated + + + + + + 14 + 116 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M606 R.12:248-249 Feb. 10, 1873,undated + + + + + + 14 + 117 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.410:965-968 May 21, 1873,undated + + + + + + 14 + 118 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.411:174-175 Dec. 22, 1874,undated + + + + + + 14 + 119 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: 18 Stat 516 March 3, 1875,undated + + + + + + 14 + 120 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.411:529-534 July 3, 1875,undated + + + + + + 14 + 121 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1875:293-295 Oct. 5, 1875,undated + + + + + + 14 + 122 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: H211 Document 2946 Jan. 25, 1876,undated + + + + + + 14 + 123 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: 19 Stat.55 May 23, 1876,undated + + + + + + 14 + 124 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1876:76-78 Aug. 31, 1876,undated + + + + + + 14 + 125 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.411:929-932 Oct. 16, 1876,undated + + + + + + 14 + 126 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1859 Sept. 28, 1859,undated + + + + + + 14 + 127 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.412:468-471 Jan. 7, 1877,undated + + + + + + 14 + 128 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.411:976-984 Jan. 10, 1877,undated + + + + + + 14 + 129 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.412:142-146 Jan. 13, 1877,undated + + + + + + 14 + 130 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.412:87-91 Jan. 23, 1877,undated + + + + + + 14 + 131 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.412:207-233 Feb. 1877,undated + + + + + + 14 + 132 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M606 R.18:126 Mar. 14, 1877,undated + + + + + + 14 + 133 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.412:178-179 Feb. 1, 1877,undated + + + + + + 14 + 134 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M348 R.29:29-30 March 28, 1877,undated + + + + + + 14 + 135 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.412:18-22 April 28, 1877,undated + + + + + + 14 + 136 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.412:343-345 June 1, 1877,undated + + + + + + 14 + 137 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.412:24-28 June 22, 1877,undated + + + + + + 14 + 138 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.412:388-389 July 24, 1877,undated + + + + + + 14 + 139 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1877:121-124 Aug. 28, 1877,undated + + + + + + 14 + 140 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.412:276-279 Sept. 20, 1877,undated + + + + + + 14 + 141 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.412:410-412 Sept. 25, 1877,undated + + + + + + 14 + 142 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: LSMS-1133 p.1-11 Oct. 1877,undated + + + + + + 14 + 143 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: LSMS-1133 p.50-51 Jan. 21, 1878,undated + + + + + + 14 + 144 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M348 R.30:462-468 April 23, 1878,undated + + + + + + 14 + 145 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1878:74-76 Sept. 1, 1878,undated + + + + + + 14 + 146 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1879:84-86 Sept. 1, 1879,undated + + + + + + 14 + 147 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.415:86-89 Dec. 24, 1879,undated + + + + + + 14 + 148 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: NAM M234 R.415:123-130 Feb. 1, 1880,undated + + + + + + 14 + 149 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: LROIA 14214-1881 Aug. 1, 1881,undated + + + + + + 14 + 150 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1881:109-110 Sept. 1, 1881,undated + + + + + + 14 + 151 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1883:94-95 Aug. 24, 1883,undated + + + + + + 14 + 152 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: LROIA 22113-1883 Nov. 10, 1883,undated + + + + + + 14 + 153 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: LROIA 22113-1883 Nov. 13, 1883,undated + + + + + + 14 + 154 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: ARCOIA 1885:113-114 Sept. 16, 1885,undated + + + + + + 14 + 155 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: LROIA 17722-1888 July 12, 1888,undated + + + + + + 14 + 156 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: Report on Indians Taxed and Not Taxed 1890 pp. 330, 334-335,undated + + + + + + 14 + 157 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: LROIA 25524-1890 Aug. 16, 1890,undated + + + + + + 14 + 158 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: LROIA 15398-1891 April 21, 1891,undated + + + + + + 14 + 159 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: LROIA 25428-1829, 1892,undated + + + + + + 14 + 160 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: LROIA 14385-1892 April 14, 1892,undated + + + + + + 14 + 161 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: Ionia Standard, p. 8 June 9, 1893,undated + + + + + + 14 + 162 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: LROIA 35775-1893 Sept. 22, 1893,undated + + + + + + 14 + 163 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: Annual Narrative and Stat Report Circular 433 July 13, 1910,undated + + + + + + 14 + 164 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: B1A Durant 45533-1908, 053 July 13, 1910,undated + + + + + + 14 + 165 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: Traverse City Record Eagle Nov. 19, 1923,undated + + + + + + 14 + 166 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: MPEMC, Ionia May 27, 1925,undated + + + + + + 14 + 167 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: MPEMC, Ionia Nov. 5, 1925,undated + + + + + + 14 + 168 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: MPEMC, Ionia 1927,undated + + + + + + 14 + 169 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: CCF Great Lakes 9949-1927:806 Feb. 12, 1927,undated + + + + + + 14 + 170 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: Ionia County Clippings June 25, 1927,undated + + + + + + 14 + 171 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: Annual Narrative and Statistical Report Sections 1-3 June 30, 1927,undated + + + + + + 14 + 172 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: Manistee News Advocate July 10, 1928,undated + + + + + + 14 + 173 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: CCF Mt. Pleasant 55390-1928:115 Dec. 20, 1928,undated + + + + + + 14 + 174 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: Annual Narrative and Statistical Report 1929,undated + + + + + + 14 + 175 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: CCF-Mt. Pleasant 71953-1931:013 Mar. 3, 1930,undated + + + + + + 14 + 176 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: Annual Narrative and Statistical Report, See 1, Circular No. 2766, 1931,undated + + + + + + 14 + 177 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: CCF-Tomah, 34687-1934:310 July 12, 1934,undated + + + + + + 14 + 178 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: CCF-Tomah, 34687-1934:310 July 12, 1934,undated + + + + + + 14 + 179 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: CCF-Tomah, 34687-1934:310 Aug. 18, 1934,undated + + + + + + 14 + 180 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: CCF-Tomah, 34687-1934:310 Oct. 1, 1934,undated + + + + + + 14 + 181 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: CCF-General Services 45653-1934:806 Dec. 3, 1934,undated + + + + + + 14 + 182 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: CCF-MI Misc. 9634-1936:066 May 8, 1936,undated + + + + + + 14 + 183 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: RG 81-1, Box 2, File 7 1937,undated + + + + + + 14 + 184 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: B1A-Sault pp.0-2, 4-5, 10-13, 17-21, 25-26. 1939,undated + + + + + + 14 + 185 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: CCF-Tomah 071 May 29, 1940,undated + + + + + + 14 + 186 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: B1A, Reality Division, Bay Mills File,Jan. 28, 1983 + + + + + + 14 + 187 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: Annales pp.102-103, 131-133. 1826,undated + + + + + + 14 + 188 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: Annales pp.491-496. 1830,undated + + + + + + 14 + 189 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: Annales pp.292-297, 306-309. 1836,undated + + + + + + 14 + 190 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: Armstrong pp.200-209, 197. 1938,undated + + + + + + 14 + 191 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: B1A-Sault, Survey of Indian Groups in the State of MI p.7 1939,undated + + + + + + 14 + 192 + Box 12 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: Transcriptions of National Archives letters re: MI Indians 1835-1928,undated + + + + + + 15 + 1 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Bailey Interview 12, Side 1, pp. 1, 3-4, 7-8, 9-10, 14-15, 20, Side 2, pp. 1, 7, 9-11,1975 + + + + + + 15 + 2 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Bailey p. 6,1990 + + + + + + 15 + 3 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Bailey pp. 54-57,1994 + + + + + + 15 + 4 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Battice Interview 29 p. 1, 4-5, 8,1995 + + + + + + 15 + 5 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Blackbird pp. 10-11, 32-33, 46-47, 52-53, 1887,undated + + + + + + 15 + 6 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Callender pp. 610, 619, 1878,undated + + + + + + 15 + 7 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Chingman, Aluina Interview 94, pp. 3-4,1976 + + + + + + 15 + 8 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Cleland p. 47,1992 + + + + + + 15 + 9 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Clifford p. 338,1988 + + + + + + 15 + 10 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Congswell, Interview 91 Side 2, pp. 8-15,1976 + + + + + + 15 + 11 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Coon Interview 27, Side 1/p. 1 Side 2/p. 11-15. Interview 28 Side 1/p. 1, 17-18,1975 + + + + + + 15 + 12 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Densmore pp. 286-295,1974 + + + + + + 15 + 13 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Dunbar pp. 358-359, 372-375,1965 + + + + + + 15 + 14 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Dunifon p. 48,1993 + + + + + + 15 + 15 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Dyer pp. 1-3 In Press,1990 + + + + + + 15 + 16 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Ettawagishik-Hentwork, Binder, 1946-1947,undated + + + + + + 15 + 17 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Ettawagishik, Willets, Kurath pp. 111-112, 1955,undated + + + + + + 15 + 18 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Ettawagishik,1994 + + + + + + 15 + 19 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Gilbert pp. 85-92,1995 + + + + + + 15 + 20 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Harbor Springs Historical Commission Forward and Intro,1983 + + + + + + 15 + 21 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Harbor Springs Historical Commission,1984 + + + + + + 15 + 22 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Hudgene Figure 39, 1953,undated + + + + + + 15 + 23 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Indian Handicraft Project,undated + + + + + + 15 + 24 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Jameson pp. 340-341, 1965,undated + + + + + + 15 + 25 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Keshik Collection,undated + + + + + + 15 + 26 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Kinietz pp. 316-325,1940 + + + + + + 15 + 27 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Kohl pp. 122-123, 134-135, 212-213, 286-289, 310-331, 378-379, 420-421, 462-4635,1985 + + + + + + 15 + 28 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Leacock and Lee pp. 8-9,1982 + + + + + + 15 + 29 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Littlefield,1989 + + + + + + 15 + 30 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Littlefield pp. 220, 224-225,1991 + + + + + + 15 + 31 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Micko Interview 58 Side 1, pp. 1-7, Side 2, pp. 4-7,1976 + + + + + + 15 + 32 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): MSU-WPA Articles Turned Over to the Conservation Dept.,undated + + + + + + 15 + 33 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): MSU-WPA Native Materials Furnished by the Conservation Dept.,undated + + + + + + 15 + 34 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): MSU-WPA News From MI Works Projects Administration,undated + + + + + + 15 + 35 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): MSU-WPA Plan of Operation,undated + + + + + + 15 + 36 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): McClurken pp. 71-88, 161-194,1988 + + + + + + 15 + 37 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Medacco pp. 18-22,1991 + + + + + + 15 + 38 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Nash pp. 7-30,1994 + + + + + + 15 + 39 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): History of Manistee County, 1882:9,undated + + + + + + 15 + 40 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Oliver pp. 13-14,1990 + + + + + + 15 + 41 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Peters p. 4,1991 + + + + + + 15 + 42 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Peterson pp. 121-122, 152-153, 165, 259-302, 305-306, 313, 1953,undated + + + + + + 15 + 43 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Peters Interview 34 Tape 1, Side 1, pp. 4-5,1975 + + + + + + 15 + 44 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Prucha pp. 689-690, 701-703, 706-709,1984 + + + + + + 15 + 45 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Radin, Paul Selected Sketches/ Drawings,undated + + + + + + 15 + 46 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Ettawageshik-Huntwork Fieldnotes Notebook “Bearwalkers”, 1946-1947,undated + + + + + + 15 + 47 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Sam pp. 12-17,undated + + + + + + 15 + 48 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Sam-Gloeheski pp. 2-6,1990 + + + + + + 15 + 49 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Schoolcraft, 1851,undated + + + + + + 15 + 50 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Schoolcraft (2), 1851-1857,undated + + + + + + 15 + 51 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Shagonaby Interview 22 pp. 11-12,1975 + + + + + + 15 + 52 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Trygg p. 8, 1964,undated + + + + + + 15 + 53 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): White, pp. 10, 167-170,undated + + + + + + 15 + 54 + Box 13 Bay Mills Indian Community-Inland Treaty, McClurken report, reference documents: (.5 cu.ft. box): Wolf pp. 296-297,1982 + + + + + + 16 + 1 + Box 14 Bay Mills Indian Community-Inland Treaty, US vs. MI Ph.1, reference documents: USA vs. State of MI, M26-73 (Includes: Court Order, Motion to Compel, Joint Proposed Findings, Opinion, and Court Proceedings Transcript vol. 3, 4, 9, 10, 11),undated + + + + + + 16 + 2 + Box 14 Bay Mills Indian Community-Inland Treaty, US vs. MI Ph.1, reference documents: USA vs. State of MI, M26-73 Post Trial Brief (Includes: Motion-Partial Stay of Judgment, Draft-Stipulations and Consent, Court Order and Opinion, and US Memo),undated + + + + + + 16 + 3 + Box 14 Bay Mills Indian Community-Inland Treaty, US vs. MI Ph.1, reference documents: US vs. MI Defendants Exhibits 3 to 284,undated + + + + + + 17 + 1 + Box 15 Bay Mills Indian Community-Inland Treaty, US vs. MI Ph.1, reference documents: Misc.,undated + + + + + + 17 + 2 + Box 15 Bay Mills Indian Community-Inland Treaty, US vs. MI Ph.1, reference documents: Affidavits,undated + + + + + + 17 + 3 + Box 15 Bay Mills Indian Community-Inland Treaty, US vs. MI Ph.1, reference documents: Exhibits,undated + + + + + + 17 + 4 + Box 15 Bay Mills Indian Community-Inland Treaty, US vs. MI Ph.1, reference documents: Exhibits to Report, USA vs. State of MI No. M26-73 C.A., USD.C.,undated + + + + + + 17 + 5 + Box 15 Bay Mills Indian Community-Inland Treaty, US vs. MI Ph.1, reference documents: US vs. MI Vol. 1 Plaintiff’s Exhibits P-8 through P-22A,undated + + + + + + 17 + 6 + Box 15 Bay Mills Indian Community-Inland Treaty, US vs. MI Ph.1, reference documents: US vs. MI Vol. 2 Plaintiff’s Exhibits P-23 through P-84,undated + + + + + + 17 + 7 + Box 15 Bay Mills Indian Community-Inland Treaty, US vs. MI Ph.1, reference documents: US vs. MI Vol. 3 Plaintiff’s Exhibits P-85 through P-124,undated + + + + + + 17 + 8 + Box 15 Bay Mills Indian Community-Inland Treaty, US vs. MI Ph.1, reference documents: US vs. MI Defendants Exhibits 290 to End,undated + + + + + + 17 + 9 + Box 15 Bay Mills Indian Community-Inland Treaty, US vs. MI Ph.1, reference documents: US vs. Bay Mills #M-85-335 CA [as assoc. w/ US vs. MI],undated + + + + + + 18 + 1 + Box 1 Fond du Lac, Calendar documents, 1820-1843: Rice MS. P.439. Box 4,undated + + + + + + 18 + 2 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM Box 1, file 1 June 12-Aug. 5 [no year],undated + + + + + + 18 + 3 + Box 1 Fond du Lac, Calendar documents, 1820-1843: WH Collections Vol. VII Sept. 27, 1820,undated + + + + + + 18 + 4 + Box 1 Fond du Lac, Calendar documents, 1820-1843: Schoolcraft, HR, 1820: 171-231 June 27, 1820,undated + + + + + + 18 + 5 + Box 1 Fond du Lac, Calendar documents, 1820-1843: JMR F.6 1822,undated + + + + + + 18 + 6 + Box 1 Fond du Lac, Calendar documents, 1820-1843: AMFCO July 20-23, 1822,undated + + + + + + 18 + 7 + Box 1 Fond du Lac, Calendar documents, 1820-1843: Henry Rice Papers, 1823, MHS (P439),undated + + + + + + 18 + 8 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. ABC 1M 783 1824 B231/e/1,undated + + + + + + 18 + 9 + Box 1 Fond du Lac, Calendar documents, 1820-1843: WTSP R.17: 81-83 Mar. 15, 1824,undated + + + + + + 18 + 10 + Box 1 Fond du Lac, Calendar documents, 1820-1843: H. Sibley Papers, Mar. 18, 1824,undated + + + + + + 18 + 11 + Box 1 Fond du Lac, Calendar documents, 1820-1843: GJJ Ms. US MSS. B9 Oct. 18, 1824,undated + + + + + + 18 + 12 + Box 1 Fond du Lac, Calendar documents, 1820-1843: GJJ Ms. US MSS. B9 Nov. 15, 1824,undated + + + + + + 18 + 13 + Box 1 Fond du Lac, Calendar documents, 1820-1843: GJJ Ms. US Mss. B9 Dec. 15, 1824,undated + + + + + + 18 + 14 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. HBC 1M 783 1825 B231/e/3,undated + + + + + + 18 + 15 + Box 1 Fond du Lac, Calendar documents, 1820-1843: Treaty- Sioux, etc. Aug. 19, 1825 7 Stat. 272,undated + + + + + + 18 + 16 + Box 1 Fond du Lac, Calendar documents, 1820-1843: Henry Rice Papers, Aug. 29, 1825,undated + + + + + + 18 + 17 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M21 R.3: 95-96 May 24, 1826,undated + + + + + + 18 + 18 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R.429: 827-830 June 16, 1826,undated + + + + + + 18 + 19 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM T494 R.1: 826-854 Aug. 2, 1826,undated + + + + + + 18 + 20 + Box 1 Fond du Lac, Calendar documents, 1820-1843: Treaty- Chippewa Aug. 5, 1826 7 Stat. 290,undated + + + + + + 18 + 21 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM T494 R.1: 833-844 Oct. 9, 1826,undated + + + + + + 18 + 22 + Box 1 Fond du Lac, Calendar documents, 1820-1843: T494 R.1: 855-869 Oct. 9, 1826,undated + + + + + + 18 + 23 + Box 1 Fond du Lac, Calendar documents, 1820-1843: Treaty- Chippewa Aug. 11, 1827 7 Stat. 303,undated + + + + + + 18 + 24 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. HBC 1M 783 1828 B231/e/1,undated + + + + + + 18 + 25 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. HBC 1M 783 June 1, 1829 B231/e/6,undated + + + + + + 18 + 26 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R. HBC IM152 Jan. 13, 1830 B231/a/9,undated + + + + + + 18 + 27 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. HBC 1M 783 May 14, 1831 B231/e/7,undated + + + + + + 18 + 28 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R. HBC IM152 May 22, 1831 B231/a/10,undated + + + + + + 18 + 29 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R. HBC IM152 Sept. 11, 1831 B231/a/11,undated + + + + + + 18 + 30 + Box 1 Fond du Lac, Calendar documents, 1820-1843: Schoolcraft, HR 1831: 114-129 Sept. 21, 1831,undated + + + + + + 18 + 31 + Box 1 Fond du Lac, Calendar documents, 1820-1843: Schoolcraft, HR 1832: 84-95 Exped to Lake Itasca,undated + + + + + + 18 + 32 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R. HBC IM152 Mar. 25, 1832 B231/a/11,undated + + + + + + 18 + 33 + Box 1 Fond du Lac, Calendar documents, 1820-1843: Allen, James, 1832: 163-193 May 9, 1832,undated + + + + + + 18 + 34 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R. IM152 May 15, 1832 B231/a/11,undated + + + + + + 18 + 35 + Box 1 Fond du Lac, Calendar documents, 1820-1843: WBP Box1/File4/p. 113-224 June 1832,undated + + + + + + 18 + 36 + Box 1 Fond du Lac, Calendar documents, 1820-1843: Boutwell, Wm, 1832: 306-347 June 5, 1832,undated + + + + + + 18 + 37 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R. HBC IM152 June 17, 1832 B231/a/12,undated + + + + + + 18 + 38 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM BA.10.A512b Box1 June 25, 1832,undated + + + + + + 18 + 39 + Box 1 Fond du Lac, Calendar documents, 1820-1843: Houghton D., 1832: 242-282 July 8, 1832,undated + + + + + + 18 + 40 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R. HBC IM152 July 27, 1832 B231/a/12,undated + + + + + + 18 + 41 + Box 1 Fond du Lac, Calendar documents, 1820-1843: Treaty- Winnebago Sept. 15, 1832 7 Stat. 370,undated + + + + + + 18 + 42 + Box 1 Fond du Lac, Calendar documents, 1820-1843: Houghton, Douglas 1832: 299-303 Sept 21, 1832,undated + + + + + + 18 + 43 + Box 1 Fond du Lac, Calendar documents, 1820-1843: Schoolcraft, HR 1832: 151-153 Nov. 21, 1832,undated + + + + + + 18 + 44 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ARCOIA Nov. 22, 1832,undated + + + + + + 18 + 45 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM BA10. A512b, Box 1 Jan. 30, 1833,undated + + + + + + 18 + 46 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM BA.10. A512b. Box1 Feb. 1, 1833,undated + + + + + + 18 + 47 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R. HBC IM152 Feb. 11, 1833 B231/a/12,undated + + + + + + 18 + 48 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM BA.10.A512b Box 1 May 1833,undated + + + + + + 18 + 49 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R.HBC IM152 May 7, 1833 B231/a/12,undated + + + + + + 18 + 50 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R. HBC IM152 June 28, 1833 B231/a/13,undated + + + + + + 18 + 51 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M842 R.4: 853-856 Sept. 28, 1833,undated + + + + + + 18 + 52 + Box 1 Fond du Lac, Calendar documents, 1820-1843: EEP Box 1, file1, No. 1 July 5- Sept. 28, 1833,undated + + + + + + 18 + 53 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M21 R.48 Oct. 21, 1833,undated + + + + + + 18 + 54 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R.ABC Im152 Nov. 13, 1833 B231/a/13,undated + + + + + + 18 + 55 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM Mss. 74 No. 94 Dec. 1, 1833,undated + + + + + + 18 + 56 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM BA.10.A512b. Box 1 Dec. 18, 1833,undated + + + + + + 18 + 57 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM BA.10.A512b Box 1 May 1833,undated + + + + + + 18 + 58 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. HBC IM 783 1833-34 B231/e/9,undated + + + + + + 18 + 59 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R.HBC IM152 Feb. 25, 1834 B231/a/14,undated + + + + + + 18 + 60 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R.HBC IM152 May 18, 1834 B231/a/14,undated + + + + + + 18 + 61 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R.HBC IM152 June 5, 1834 B231/a/14,undated + + + + + + 18 + 62 + Box 1 Fond du Lac, Calendar documents, 1820-1843: E.F. Ely JL No. 5 June 23, 1834,undated + + + + + + 18 + 63 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R.HBC IM 152 July 28, 1834 B231/a/14,undated + + + + + + 18 + 64 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R.HBC IM152 Aug. 16 1834 B231/a/14,undated + + + + + + 18 + 65 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R.HBC IM152 Oct. 15, 1834 B231/a/14,undated + + + + + + 18 + 66 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R.HBC IM152 Nov. 26, 1834 B231/a/14,undated + + + + + + 18 + 67 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R.HBC IM152 Dec. 17, 1834 B231/a/14,undated + + + + + + 18 + 68 + Box 1 Fond du Lac, Calendar documents, 1820-1843: Ely JL No. 6 Jan.-Mar. 1835,undated + + + + + + 18 + 69 + Box 1 Fond du Lac, Calendar documents, 1820-1843: Ely JL Mar. 11, 1835, No. 8,undated + + + + + + 18 + 70 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM Ms. BA.10.512b Box 1 Mar. 23, 1835,undated + + + + + + 18 + 71 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM BA.10.A512b Box 1 April 3, 1835,undated + + + + + + 18 + 72 + Box 1 Fond du Lac, Calendar documents, 1820-1843: Ely Box 1, file 9 Sept. 20, 1835-Jan. 4, 1838 JL 9,undated + + + + + + 18 + 73 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM Ms. BA.10.512b Box 1 Nov. 14, 1835,undated + + + + + + 18 + 74 + Box 1 Fond du Lac, Calendar documents, 1820-1843: Ely JL No. 10 Jan. 4, 1836,undated + + + + + + 18 + 75 + Box 1 Fond du Lac, Calendar documents, 1820-1843: Ely Box 1 file 9 Jan. 4, 1836 (9/20/1835-1/4/1838) JL 10,undated + + + + + + 18 + 76 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R.HBC IM152 Feb. 5, 1836 B231/a/15,undated + + + + + + 18 + 77 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M21 R.18 March 7, 1836,undated + + + + + + 18 + 79 + Box 1 Fond du Lac, Calendar documents, 1820-1843: Treaty- Ottawa March 28, 1836 7 Stat. 491,undated + + + + + + 18 + 70 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. M620 R.HBC IM152 May 22, 1836 B231/a/15,undated + + + + + + 18 + 80 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R.HBC IM152 Sept. 23, 1836 B231/a/16,undated + + + + + + 18 + 81 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM Ms. BA.10.512b Box 2 Oct. 1, 1836,undated + + + + + + 18 + 82 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R.HBC IM152 Oct. 10, 1836 B231/a/16,undated + + + + + + 18 + 83 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R. 498 Jan. 2, 1837,undated + + + + + + 18 + 84 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R. HBC IM152 Jan. 8, 1837 B231/a/16,undated + + + + + + 18 + 85 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM BA.10.A512b Box 1 Jan. 9, 1837,undated + + + + + + 18 + 86 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R.HBC IM152 Feb. 13, 1837 B231/a/16,undated + + + + + + 18 + 87 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R.HBC IM152 Mar. 2, 1837 B231/a/16,undated + + + + + + 18 + 88 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R.HBC IM152 Mar. 6, 1837 B231/a/16,undated + + + + + + 18 + 89 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM T494 R.3: 537-39 March 25, 1837,undated + + + + + + 18 + 90 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R.HBC IM152 Mar. 28, 1837 B231/a/16,undated + + + + + + 18 + 91 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M21 R.21: 200 May 13, 1837,undated + + + + + + 18 + 92 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R.HBC IM152 May 26, 1837 B231/a/16,undated + + + + + + 18 + 93 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R.HBC IM152 May 29, 1837 B231/a/16,undated + + + + + + 18 + 94 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R. 390 July 15, 1837,undated + + + + + + 18 + 95 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM T494 R.3: 548-568 July 20, 1837,undated + + + + + + 18 + 96 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM T494 R.3: 548-568 July 20-27, 1837,undated + + + + + + 18 + 97 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 R.HBC IM152 July 28, 1837 B231/a/17,undated + + + + + + 18 + 98 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M364 R.46: 0093 July 28, 1837,undated + + + + + + 18 + 99 + Box 1 Fond du Lac, Calendar documents, 1820-1843: Treaty of St. Peters July 29, 1837 7 Stat. 536,undated + + + + + + 18 + 100 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM T494 R. 3: 540-45 Aug. 7, 1837,undated + + + + + + 18 + 101 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 IM 152 Aug. 7, 1837 B213/a/17,undated + + + + + + 18 + 102 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM BA, 10.512b Box 2 Aug. 17, 1837,undated + + + + + + 18 + 103 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 IM 152 Aug. 22, 1837 B213/a/17,undated + + + + + + 18 + 104 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R.387: 102 Sept. 30, 1837,undated + + + + + + 18 + 105 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM T494 R.3: 546-547 Sept. 30, 1837,undated + + + + + + 18 + 106 + Box 1 Fond du Lac, Calendar documents, 1820-1843: No. 224 Treaty w/ the Sioux at Washington Sept. 29, 1837,undated + + + + + + 18 + 107 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM BA.10.512b Box 2 Oct. 4, 1837,undated + + + + + + 18 + 108 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 Doc 1 ARCOIA 1837 Dec. 1, 1837,undated + + + + + + 18 + 109 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R.948 Jan. 2, 1838,undated + + + + + + 18 + 110 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 IM 152 Feb. 14, 1838 B213/a/17,undated + + + + + + 18 + 111 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R.387 Feb. 19, 1838,undated + + + + + + 18 + 112 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R.948: 251 May 18, 1838 Dodge to Harris,undated + + + + + + 18 + 113 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 IM 152 May 24, 1838 B213/a/17,undated + + + + + + 18 + 114 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R.948: 226 July 6, 1838,undated + + + + + + 18 + 115 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R.948 Oct. 1, 1838 Dodge to Harris,undated + + + + + + 18 + 116 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM BA.10.512b Box 2 Oct. 8, 1838,undated + + + + + + 18 + 117 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM BA.10.512b Box 2 Oct. 31, 1838,undated + + + + + + 18 + 118 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R.387 Nov. 3, 1838,undated + + + + + + 18 + 119 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ARCOIA, Nov. 25, 1838,undated + + + + + + 18 + 120 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 DOC2, ARCOIA, Nov. 25, 1838,undated + + + + + + 18 + 121 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM BA10 512b Box2, Dec. 3, 1838,undated + + + + + + 18 + 122 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM MS BA10 512b Box2, Dec. 18, 1838,undated + + + + + + 18 + 123 + Box 1 Fond du Lac, Calendar documents, 1820-1843: Ely Jour No11, March 2, 20, 1839, Box1, Jan. 1838-Oct. 20, 1839,undated + + + + + + 18 + 124 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. MG20 RHBC IM 152, Aug. 19, 1839 [b231/a/18],undated + + + + + + 18 + 125 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 DOC3, ARCOIA, Oct. 18, 1839,undated + + + + + + 18 + 126 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM Box2 F8, Oct. 19, 1839,undated + + + + + + 18 + 127 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234, R388, Dec. 16, 1839,undated + + + + + + 18 + 128 + Box 1 Fond du Lac, Calendar documents, 1820-1843: HBC Ms. M620 R.HBC IM152 Jan. 30, 1840 [b231/a/18],undated + + + + + + 18 + 129 + Box 1 Fond du Lac, Calendar documents, 1820-1843: [no description] April 6, 1840,undated + + + + + + 18 + 130 + Box 1 Fond du Lac, Calendar documents, 1820-1843: Ely JL No.1547, April 13, 1840 [Box2, file 1, Feb. 25, 1840-July 30, 1842],undated + + + + + + 18 + 131 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R.388, April 24, 1840,undated + + + + + + 18 + 132 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R.388, April 29, 1840,undated + + + + + + 18 + 133 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 DOC4, ARCOIA, Sept. 22, 1840,undated + + + + + + 18 + 134 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R.388, Oct. 16, 1840,undated + + + + + + 18 + 135 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R.949, Nov. 1840,undated + + + + + + 18 + 136 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R.949, Nov. 28, 1840,undated + + + + + + 18 + 137 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R494, Nov. 30, 1840,undated + + + + + + 18 + 138 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R.949, Feb. 23, 1841,undated + + + + + + 18 + 139 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234, R.949, March 2, 1841,undated + + + + + + 18 + 140 + Box 1 Fond du Lac, Calendar documents, 1820-1843: EF ELY JL No.16, March 19, 1841,undated + + + + + + 18 + 141 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234, R.388, May 21, 1841,undated + + + + + + 18 + 142 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM Ms. BA10 512b Box 3, Aug. 1841,undated + + + + + + 18 + 143 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM Ms. BA10 512b Box 3, Sept. 23, 1841,undated + + + + + + 18 + 144 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM Ms. BA10 512b, Box 3, Sept. 28, 1841,undated + + + + + + 18 + 145 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 DOC5, ARCOIA, Sept. 30, 1841,undated + + + + + + 18 + 146 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R.388: 266-268, Oct. 2, 1841,undated + + + + + + 18 + 147 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R.388: 259, Nov. 17, 1841,undated + + + + + + 18 + 148 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R.949, Dec. 8, 1841,undated + + + + + + 18 + 149 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM Ms. BA10 512b Box 3, June 20, 1842,undated + + + + + + 18 + 150 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM Ms. BA10, 512b, Box 3, July 8, 1842,undated + + + + + + 18 + 151 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M951 R.4: 109, July 26, 1842,undated + + + + + + 18 + 152 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M1 R.53: 161, Aug. 1, 1842,undated + + + + + + 18 + 153 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM Ms. BA10 512b Box 3, Aug. 20, 1842,undated + + + + + + 18 + 154 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM Ms. BA10 512b, Box 3, Sept. 15, 1842,undated + + + + + + 18 + 155 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R. 289: 61-67, Sept. 29, 1842,undated + + + + + + 18 + 156 + Box 1 Fond du Lac, Calendar documents, 1820-1843: Treaty-Chippewa, Oct. 4, 1842,undated + + + + + + 18 + 157 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M668 R.9: 290-305, Oct. 4, 1842,undated + + + + + + 18 + 158 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM Ms. BA10 512b Box 3, Oct. 12, 1842,undated + + + + + + 18 + 159 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M1 R39, Oct. 24-26, 1842,undated + + + + + + 18 + 160 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 DOC6, ARCOIA, Oct. 28, 1842,undated + + + + + + 18 + 161 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 146-154, Oct. 28, 1842,undated + + + + + + 18 + 162 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM Ms. BA10 512b Box 3, Nov. 7, 1842,undated + + + + + + 18 + 163 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M1 R39, Nov. 19, 1842,undated + + + + + + 18 + 164 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM T494 R4: 195-97, Nov. 19, 1842,undated + + + + + + 18 + 165 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM Ms. BA10 512b Box 3, Nov. 23, 1842,undated + + + + + + 18 + 166 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM Ms. BA10 512b Box 3, Nov. 26, 1842,undated + + + + + + 18 + 167 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M348 R3: 334, Dec. 5, 1842,undated + + + + + + 18 + 168 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M348 R348: 335, Dec. 6, 1842,undated + + + + + + 18 + 169 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM Ms. BA10 512b Box 3, Dec. 8, 1842,undated + + + + + + 18 + 170 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R388, Jan. 1843,undated + + + + + + 18 + 171 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM MI R54: 225, Jan. 10, 1843,undated + + + + + + 18 + 172 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R388, Jan. 12, 1843,undated + + + + + + 18 + 173 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM Ms. BA10 512b, Box 3, March 6, 1843,undated + + + + + + 18 + 174 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM Ms. BA10 512b Box 3, March 22, 1843,undated + + + + + + 18 + 175 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R427: 516-517, April 5, 1843,undated + + + + + + 18 + 176 + Box 1 Fond du Lac, Calendar documents, 1820-1843: ABCFM Ms. BA10 512b Box 3, May 3, 1843,undated + + + + + + 18 + 177 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R388, June 2, 1843,undated + + + + + + 18 + 178 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R388, July 12, 1843,undated + + + + + + 18 + 179 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R388: 408-413, July 18-19, 1843,undated + + + + + + 18 + 180 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R388, Sept. 1843,undated + + + + + + 18 + 181 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R388, Sept. 14, 1843,undated + + + + + + 18 + 182 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R388, Sept. 16, 1843,undated + + + + + + 18 + 183 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R388, Sept. 18, 1843,undated + + + + + + 18 + 184 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R388, Sept. 19, 1843,undated + + + + + + 18 + 185 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R388, Sept. 27, 1843,undated + + + + + + 18 + 186 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R388, Oct. 6, 1843,undated + + + + + + 18 + 187 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R388, Oct. 20, 1843,undated + + + + + + 18 + 188 + Box 1 Fond du Lac, Calendar documents, 1820-1843: NAM M234 R388, Nov. 20, 1843,undated + + + + + + 19 + 1 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM Ms. BA10 512b Box 3, March 13, 1844,undated + + + + + + 19 + 2 + Box 2 Fond du Lac, Calendar documents, 1844-1854: Wheeler Papers, MHS, March 25, 1844,undated + + + + + + 19 + 3 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R389, March 29, 1844,undated + + + + + + 19 + 4 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 DOC8, ARCOIA, March 29, 1844,undated + + + + + + 19 + 5 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M951 R2: 583, May 21, 1844,undated + + + + + + 19 + 6 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 4, June 24, 1844,undated + + + + + + 19 + 7 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R389, July 1, 1844,undated + + + + + + 19 + 8 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R389, Aug. 20, 1844,undated + + + + + + 19 + 9 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 4, Sept. 5, 1844,undated + + + + + + 19 + 10 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ARCOIA, Nov. 25, 1844,undated + + + + + + 19 + 11 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 4, Jan. 22, 1845,undated + + + + + + 19 + 12 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R949, July 7, 1845,undated + + + + + + 19 + 13 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R389: 468, Aug. 6, 1845,undated + + + + + + 19 + 14 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 DOC9, ARCOIA, Oct. 3, 1845,undated + + + + + + 19 + 15 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R494, Feb. 13, 1846,undated + + + + + + 19 + 16 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R389, Feb. 26, 1846,undated + + + + + + 19 + 17 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 4, March 17, 1846,undated + + + + + + 19 + 18 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b, Box 4, March 20, 1846,undated + + + + + + 19 + 19 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 4, April 11, 1846,undated + + + + + + 19 + 20 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 4, April 29, 1846,undated + + + + + + 19 + 21 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 4, May 2, 1846,undated + + + + + + 19 + 22 + Box 2 Fond du Lac, Calendar documents, 1844-1854: S.D. 403 [29-1] 477, June 24, 1846,undated + + + + + + 19 + 23 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 4, July 1, 1846,undated + + + + + + 19 + 24 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ARCOIA, Aug. 15, 1846,undated + + + + + + 19 + 25 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M21 R38: 237-39,undated + + + + + + 19 + 26 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R949, Ex. 85, Nov. 28, 1846,undated + + + + + + 19 + 27 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R949, Nov. 30, 1846,undated + + + + + + 19 + 28 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 DOC10, ARCOIA, Nov. 30, 1846,undated + + + + + + 19 + 29 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R949, Treaty 1842, 1847,undated + + + + + + 19 + 30 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R949, Feb. 13, 1847,undated + + + + + + 19 + 31 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R949, March 26, 1847,undated + + + + + + 19 + 32 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M236, R46, June 4, 1847,undated + + + + + + 19 + 33 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R389, July 5, 1847,undated + + + + + + 19 + 34 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R389, July 31, 1847,undated + + + + + + 19 + 35 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M236, R46, Aug. 2, 1847,undated + + + + + + 19 + 36 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M668, R9, Treaty 1847, Aug. 2, 1847,undated + + + + + + 19 + 37 + Box 2 Fond du Lac, Calendar documents, 1844-1854: Treaty Chip. Mssp. + Lk. Sup., Aug. 2, 1847,undated + + + + + + 19 + 38 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM T494 R4: 468-69, Aug. 10, 1847,undated + + + + + + 19 + 39 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R389, Aug. 21, 1847,undated + + + + + + 19 + 40 + Box 2 Fond du Lac, Calendar documents, 1844-1854: Treaty Chippewa Pillager, 9 STAT. 908, Aug. 21, 1847,undated + + + + + + 19 + 41 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R389, Aug. 25, 1847,undated + + + + + + 19 + 42 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R389, Aug. 28, 1847,undated + + + + + + 19 + 43 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R389, Sept. 3, 1847,undated + + + + + + 19 + 44 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R389, Oct. 14, 1847,undated + + + + + + 19 + 45 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R389, Nov. 4, 1847,undated + + + + + + 19 + 46 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R389, Nov. 6, 1847,undated + + + + + + 19 + 47 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 DOC11, ARCOIA, 1847,undated + + + + + + 19 + 48 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M348 R5: 305-306, Dec. 10, 1847,undated + + + + + + 19 + 49 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R390, Feb. 12, 1848,undated + + + + + + 19 + 50 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, Aug. 12, 1848,undated + + + + + + 19 + 51 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, Aug. 28, 1848,undated + + + + + + 19 + 52 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R390: 79-80, Sept. 13, 1848,undated + + + + + + 19 + 53 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, Oct. 9, 1848,undated + + + + + + 19 + 54 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R390, Oct. 14, 1848,undated + + + + + + 19 + 55 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R390, Nov. 14, 1848,undated + + + + + + 19 + 56 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R390, Nov. 20, 1848,undated + + + + + + 19 + 57 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 DOC12, ARCOIA, Nov. 30, 1848,undated + + + + + + 19 + 58 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R390, Dec. 5, 1848,undated + + + + + + 19 + 59 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R390, 1849,undated + + + + + + 19 + 60 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R390, Petition, Jan. 1849, 1 extra copy,undated + + + + + + 19 + 61 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R494, 1849,undated + + + + + + 19 + 62 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R390, Jan. 30, 1849,undated + + + + + + 19 + 63 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R390, Feb. 5, 1849,undated + + + + + + 19 + 64 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, Feb. 10, 1849,undated + + + + + + 19 + 65 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, Feb. 15, 1849,undated + + + + + + 19 + 66 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R949, April 19, 1849,undated + + + + + + 19 + 67 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R389, Aug. 20, 1849,undated + + + + + + 19 + 68 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R390, Sept. 8, 1849,undated + + + + + + 19 + 69 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ARCOIA, Sept. 15, 1849,undated + + + + + + 19 + 70 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R388, Sept. 27, 1849,undated + + + + + + 19 + 71 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R428: 124-8, M675 [1849], [MN005474], Nov. 7, 1849,undated + + + + + + 19 + 72 + Box 2 Fond du Lac, Calendar documents, 1844-1854: AR M203 R4, Dec. 1, 1849,undated + + + + + + 19 + 73 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M370 R1, Chip. Annuity, 1850-1859,undated + + + + + + 19 + 74 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 DOC14, ARCOIA, 1850,undated + + + + + + 19 + 75 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R428: 150-151, Feb. 4, 1850,undated + + + + + + 19 + 76 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R2, Feb. 6, 1850,undated + + + + + + 19 + 77 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M842 R2: 28-31, Feb. 6, 1850,undated + + + + + + 19 + 78 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R43:23, Feb. 6, 1850,undated + + + + + + 19 + 79 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R428: 152, Feb. 6, 1850,undated + + + + + + 19 + 80 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, Feb. 25, 1850,undated + + + + + + 19 + 81 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R390, March 4, 1850,undated + + + + + + 19 + 82 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M842 R2: 1143-45, March 4, 1850,undated + + + + + + 19 + 83 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R390, March 9, 1850,undated + + + + + + 19 + 84 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M842 R2: 44-46, March 20, 1850,undated + + + + + + 19 + 85 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R390 M738, March 26, 1850,undated + + + + + + 19 + 86 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M842 R2: 1147-1154, M784-50, March 26, 1850,undated + + + + + + 19 + 87 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, March 28, 1850,undated + + + + + + 19 + 88 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R390, April 2, 1850,undated + + + + + + 19 + 89 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M842: 1156-1157, April 2, 1850,undated + + + + + + 19 + 90 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, May 2, 1850,undated + + + + + + 19 + 91 + Box 2 Fond du Lac, Calendar documents, 1844-1854: MCT PLA Ex. 400, May 24, 1850,undated + + + + + + 19 + 92 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, May 24, 1850,undated + + + + + + 19 + 93 + Box 2 Fond du Lac, Calendar documents, 1844-1854: Babcock Transcripts Box 1, June 13, 1850,undated + + + + + + 19 + 94 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M842 R2: 1180-81, July 3, 1850,undated + + + + + + 19 + 95 + Box 2 Fond du Lac, Calendar documents, 1844-1854: MCT DEF EX. 60, July 30, 1850,undated + + + + + + 19 + 96 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, Aug. 1850,undated + + + + + + 19 + 97 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, Aug. 2, 1850,undated + + + + + + 19 + 98 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M842 R2: 1200-1201, Aug. 27, 1850,undated + + + + + + 19 + 99 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ARCOIA, Oct. 21, 1850,undated + + + + + + 19 + 100 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, Dec. 30, 1850,undated + + + + + + 19 + 101 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R149, -- 13, 1851,undated + + + + + + 19 + 102 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R767: 61-72, Jan. 6, 1851, 1 extra copy,undated + + + + + + 19 + 103 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, Feb. 15, 1851,undated + + + + + + 19 + 104 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M842 R6: 631-36, Feb. 16, 1851,undated + + + + + + 19 + 105 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, Feb. 24, 1851,undated + + + + + + 19 + 106 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M842 R3: 637-42, Feb. 28, 1851,undated + + + + + + 19 + 107 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, March 24, 1851,undated + + + + + + 19 + 108 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, April 9, 1851,undated + + + + + + 19 + 109 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM Box 5, File 8, April 26, 1851,undated + + + + + + 19 + 110 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, April 28, 1851,undated + + + + + + 19 + 111 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, May 15, 1851,undated + + + + + + 19 + 112 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, May 17, 1851,undated + + + + + + 19 + 113 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, May 19, 1851,undated + + + + + + 19 + 114 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, May 30, 1851,undated + + + + + + 19 + 115 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M348 R6, June 3, 1851,undated + + + + + + 19 + 116 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, June 23, 1851,undated + + + + + + 19 + 117 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M842 R3: 882-85, July 1, 1851,undated + + + + + + 19 + 118 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, July 7, 1851 (Folder 1 of 2),undated + + + + + + 19 + 119 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, July 7, 1851 (Folder 2 of 2),undated + + + + + + 19 + 120 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, July 18, 1851,undated + + + + + + 19 + 121 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, Aug. 13, 1851,undated + + + + + + 19 + 122 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M842 R2: 874-79, Aug. 24, 1851,undated + + + + + + 19 + 123 + Box 2 Fond du Lac, Calendar documents, 1844-1854: MN003394, Aug. 25, 1851,undated + + + + + + 19 + 124 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M21 R45, Aug. 25, 1851,undated + + + + + + 19 + 125 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, Aug. 27, 1851,undated + + + + + + 19 + 126 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, Sept. 1, 1851,undated + + + + + + 19 + 127 + Box 2 Fond du Lac, Calendar documents, 1844-1854: Babcock Transcripts Box1, Sept. 24, 1851,undated + + + + + + 19 + 128 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, Sept. 24, 1851 (Folder 1 of 3),undated + + + + + + 19 + 129 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, Sept. 24, 1851 (Folder 2 of 3),undated + + + + + + 19 + 130 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, Sept. 24, 1851 (Folder 3 of 3),undated + + + + + + 19 + 131 + Box 2 Fond du Lac, Calendar documents, 1844-1854: [LCO] VOIGHT Ex.1, Nov. 6, 1851,undated + + + + + + 19 + 132 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 DOC15, ARCOIA, Nov. 27, 1851,undated + + + + + + 19 + 133 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ARCOIA, Nov. 27, 1851,undated + + + + + + 19 + 134 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ARCOIA Extract, Nov. 27, 1851 [Nov. 3, 1851],undated + + + + + + 19 + 135 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ARCOIA Extract, Nov. 27, 1851 [Sept. 20, 1851],undated + + + + + + 19 + 136 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, Dec. 1, 1851,undated + + + + + + 19 + 137 + Box 2 Fond du Lac, Calendar documents, 1844-1854: Babcock Transcripts Box 1, Dec. 13, 1851,undated + + + + + + 19 + 138 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 A512b Box 5, Dec. 15, 1851,undated + + + + + + 19 + 139 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R168 M32, Dec. 26, 1851,undated + + + + + + 19 + 140 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R149, 1852,undated + + + + + + 19 + 141 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M842 R4: 527-28, Jan. 8, 1852,undated + + + + + + 19 + 142 + Box 2 Fond du Lac, Calendar documents, 1844-1854: MN M370 R1, Jan. 23, 1852,undated + + + + + + 19 + 143 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R149, Jan. 25, 1852,undated + + + + + + 19 + 144 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R149, Jan. 28, 1852,undated + + + + + + 19 + 145 + Box 2 Fond du Lac, Calendar documents, 1844-1854: St. Anthony Express, Jan. 31, 1852,undated + + + + + + 19 + 146 + Box 2 Fond du Lac, Calendar documents, 1844-1854: St. Anthony Express, Jan. 31, 1852, Vol.1, No.36,undated + + + + + + 19 + 147 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R149, Feb. 4, 1852,undated + + + + + + 19 + 148 + Box 2 Fond du Lac, Calendar documents, 1844-1854: St. Paul, MN, Vol.1, No. 21, Feb. 7, 1852, Part A,undated + + + + + + 19 + 149 + Box 2 Fond du Lac, Calendar documents, 1844-1854: St. Paul, MN, Vol.1, No. 21, Feb. 7, 1852, Part B,undated + + + + + + 19 + 150 + Box 2 Fond du Lac, Calendar documents, 1844-1854: Babcock Transcripts Box 1, Feb. 7, 1852,undated + + + + + + 19 + 151 + Box 2 Fond du Lac, Calendar documents, 1844-1854: Babcock Transcripts Box 1, Feb. 28, 1852,undated + + + + + + 19 + 152 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM Box 6, File 1, March 2, 1852,undated + + + + + + 19 + 153 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ABCFM BA10 512b Box 6, March 5, 1852,undated + + + + + + 19 + 154 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R149, May 12, 1852,undated + + + + + + 19 + 155 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R149, June 3, 1852,undated + + + + + + 19 + 156 + Box 2 Fond du Lac, Calendar documents, 1844-1854: Lake Superior JL, June 16, 1852 [MN003467],undated + + + + + + 19 + 157 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R149, P42, June 30, 1852, Petition,undated + + + + + + 19 + 158 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M842 R4: 754-55, July 23, 1852,undated + + + + + + 19 + 159 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ARCOIA, Nov. 30, 1852,undated + + + + + + 19 + 160 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R149, Jan. 8, 1853,undated + + + + + + 19 + 161 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R149, Aug. 8, 1853,undated + + + + + + 19 + 162 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ARCOIA, Sept. 8, 1853,undated + + + + + + 19 + 163 + Box 2 Fond du Lac, Calendar documents, 1844-1854: Babcock Transcripts, Box 2, Oct. 8, 1853,undated + + + + + + 19 + 164 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R149, Oct. 24, 1853,undated + + + + + + 19 + 165 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R149, Nov. 1, 1853,undated + + + + + + 19 + 166 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R149, Nov. 4, 1853,undated + + + + + + 19 + 167 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM234 R150: 057, Nov. 10, 1853,undated + + + + + + 19 + 168 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R150, Nov. 13, 1853,undated + + + + + + 19 + 169 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 DOC17, ARCOIA, Nov. 26, 1853,undated + + + + + + 19 + 170 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R404: 183-190, Dec. 10, 1853,undated + + + + + + 19 + 171 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R150, Dec. 18, 1853,undated + + + + + + 19 + 172 + Box 2 Fond du Lac, Calendar documents, 1844-1854: RG 75, Ms. M390, 1854, Chip. Annuity under “37/42/54” Treaties,undated + + + + + + 19 + 173 + Box 2 Fond du Lac, Calendar documents, 1844-1854: Babcock Transcripts Box 2, April 26, 1854,undated + + + + + + 19 + 174 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M21 R49, Aug. 10, 1854,undated + + + + + + 19 + 175 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M21 R49: 446-47, Aug. 11, 1854,undated + + + + + + 19 + 176 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M21 R49 454-455, Aug. 11, 1854,undated + + + + + + 19 + 177 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M21 R49: 457, Aug. 12, 1854,undated + + + + + + 19 + 178 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M21 R49, Aug. 14, 1854, 1 extra copy,undated + + + + + + 19 + 179 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R391, Aug. 24, 1854,undated + + + + + + 19 + 180 + Box 2 Fond du Lac, Calendar documents, 1844-1854: Treaty Chippewa, Sept. 30, 1854, 10 Stat., 1109,undated + + + + + + 19 + 181 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM T494 R5: 133-39, Oct. 17, 1854,undated + + + + + + 19 + 182 + Box 2 Fond du Lac, Calendar documents, 1844-1854: Babcock Transcripts, Box 2, Oct 21, 1854,undated + + + + + + 19 + 183 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M1 R50: 161, Oct. 23, 1854,undated + + + + + + 19 + 184 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R150, Oct. 23, 1854,undated + + + + + + 19 + 185 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M21 R50: 168-69, Oct. 27, 1854,undated + + + + + + 19 + 186 + Box 2 Fond du Lac, Calendar documents, 1844-1854: Babcock Transcripts, Box 2, Oct. 28, 1854,undated + + + + + + 19 + 187 + Box 2 Fond du Lac, Calendar documents, 1844-1854: ARCOIA, Nov. 9, 1854,undated + + + + + + 19 + 188 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 R150, Nov. 10, 1854, 1 extra copy,undated + + + + + + 19 + 189 + Box 2 Fond du Lac, Calendar documents, 1844-1854: NAM M234 DOC18, ARCOIA, Nov. 25, 1854,undated + + + + + + 20 + 1 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M348 R.8:243-44 Jan. 15, 1855,undated + + + + + + 20 + 2 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M606 R.2:112 Feb. 17, 1855,undated + + + + + + 20 + 3 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M348 R.8:831-32 Feb. 23, 1855,undated + + + + + + 20 + 4 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.598 Feb. 24, 1855,undated + + + + + + 20 + 5 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M606 R.2:118 Feb. 27, 1855,undated + + + + + + 20 + 6 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.391 July 7, 1855,undated + + + + + + 20 + 7 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M578 R.22:1105 July 25, 1855,undated + + + + + + 20 + 8 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.150 Aug. 1, 1855,undated + + + + + + 20 + 9 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.150 Aug, 7, 1855,undated + + + + + + 20 + 10 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.22:1105 Aug. 1855,undated + + + + + + 20 + 11 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.150 Aug. 9, 1855,undated + + + + + + 20 + 12 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M578 R.22:199 No. 23 Aug. 27, 1855,undated + + + + + + 20 + 13 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M574 R.22:328 No. 63 Sept. 7, 1855,undated + + + + + + 20 + 14 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M578 R.22:318 Sept. 7, 1855,undated + + + + + + 20 + 15 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M574 R.22:278 Sept. 10, 1855,undated + + + + + + 20 + 16 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 DOC.19 ARCOIA Nov. 26, 1855,undated + + + + + + 20 + 17 + Box 3 Fond du Lac, Calendar documents, 1855-1879: ARCOIA Nov. 26, 1855,undated + + + + + + 20 + 18 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M574 R.22:179 No. 22 Dec. 7, 1855,undated + + + + + + 20 + 19 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 DOC.20 ARCOIA Nov. 22, 1856,undated + + + + + + 20 + 20 + Box 3 Fond du Lac, Calendar documents, 1855-1879: Babcock Transcripts Box 4 Nov. 22, 1856,undated + + + + + + 20 + 21 + Box 3 Fond du Lac, Calendar documents, 1855-1879: MN M370 R.1 1857,undated + + + + + + 20 + 22 + Box 3 Fond du Lac, Calendar documents, 1855-1879: Babcock Transcripts Box 4 Mar. 7, 1857,undated + + + + + + 20 + 23 + Box 3 Fond du Lac, Calendar documents, 1855-1879: Babcock Transcripts Box 4 Apr. 18, 1857,undated + + + + + + 20 + 24 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 DOC.21 ARCOIA Nov. 30, 1857,undated + + + + + + 20 + 25 + Box 3 Fond du Lac, Calendar documents, 1855-1879: Bardon Ms. AB247 Box 1 1858,undated + + + + + + 20 + 26 + Box 3 Fond du Lac, Calendar documents, 1855-1879: J911.C8Gba 1858,undated + + + + + + 20 + 27 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.598 Feb. 24, 1858,undated + + + + + + 20 + 28 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.391 Oct. 16, 1858,undated + + + + + + 20 + 29 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.391 Oct. 26, 1858,undated + + + + + + 20 + 30 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.391 Nov. 10, 1858 (Folder 1 of 2),undated + + + + + + 20 + 31 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.391 Nov. 10, 1858 (Folder 2 of 2),undated + + + + + + 20 + 32 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 DOC.22 ARCOIA Nov. 10, 1858,undated + + + + + + 20 + 33 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.391 Nov. 20, 1858 (Folder 1 of 3),undated + + + + + + 20 + 34 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.391 Nov. 20, 1858 (Folder 2 of 3),undated + + + + + + 20 + 35 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.391 Nov. 20, 1858 (Folder 3 of 3),undated + + + + + + 20 + 36 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.391 Dec. 2, 1858,undated + + + + + + 20 + 37 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.391 Dec. 13, 1858,undated + + + + + + 20 + 38 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.391 Dec. 17, 1858,undated + + + + + + 20 + 39 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.391 Dec. 20, 1858,undated + + + + + + 20 + 40 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.391 Dec. 21, 1858,undated + + + + + + 20 + 41 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.391 Dec. 22, 1858,undated + + + + + + 20 + 42 + Box 3 Fond du Lac, Calendar documents, 1855-1879: Bardon Ms. AB247 Box 1 1859 (Folder 1 of 2),undated + + + + + + 20 + 43 + Box 3 Fond du Lac, Calendar documents, 1855-1879: Bardon Ms. AB247 Box 1 1859 (Folder 2 of 2),undated + + + + + + 20 + 44 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.234 R.391 Feb. 10, 1859,undated + + + + + + 20 + 45 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.391 Feb. 15, 1859,undated + + + + + + 20 + 46 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.391 Feb. 18, 1859,undated + + + + + + 20 + 47 + Box 3 Fond du Lac, Calendar documents, 1855-1879: Bardon Ms. AB 247 Box1 May 28, 1859,undated + + + + + + 20 + 48 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.391 July 10, 1859,undated + + + + + + 20 + 49 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.392 Sept. 15, 1859,undated + + + + + + 20 + 50 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.598 Sept. 26, 1859,undated + + + + + + 20 + 51 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 DOC. 23 ARCOIA Oct. 24, 1859,undated + + + + + + 20 + 52 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.391 Nov. 18, 1859,undated + + + + + + 20 + 53 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.391 Nov. 25, 1859,undated + + + + + + 20 + 54 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.392 Nov. 27, 1859,undated + + + + + + 20 + 55 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.598 Nov. 28, 1859 (Folder 1 of 3),undated + + + + + + 20 + 56 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.598 Nov. 28, 1859 (Folder 2 of 3),undated + + + + + + 20 + 57 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.598 Nov. 28, 1859 (Folder 3 of 3),undated + + + + + + 20 + 58 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.392 Dec. 4, 1859,undated + + + + + + 20 + 59 + Box 3 Fond du Lac, Calendar documents, 1855-1879: ABCFM BA10 A512b Jan. 17, 1860,undated + + + + + + 20 + 60 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.392 Jan. 22, 1860,undated + + + + + + 20 + 61 + Box 3 Fond du Lac, Calendar documents, 1855-1879: ABCFM BA10 A512b Box 6 Jan. 30, 1860,undated + + + + + + 20 + 62 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.392 Feb. 1, 1860,undated + + + + + + 20 + 63 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.598 Feb. 4, 1860,undated + + + + + + 20 + 64 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 DOC.24 ARCOIA Oct. 1, 1860,undated + + + + + + 20 + 65 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.598 Nov. 1, 1860,undated + + + + + + 20 + 66 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.392 Nov. 3, 1860,undated + + + + + + 20 + 67 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.598 Nov. 20, 1860,undated + + + + + + 20 + 68 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.598:1727 Nov. 30, 1860,undated + + + + + + 20 + 69 + Box 3 Fond du Lac, Calendar documents, 1855-1879: MN M370 R.1 3QT 1861,undated + + + + + + 20 + 70 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.392 Mar. 7, 1861,undated + + + + + + 20 + 71 + Box 3 Fond du Lac, Calendar documents, 1855-1879: ARCOIA Oct. 28, 1861,undated + + + + + + 20 + 72 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M348 R.12:319-20 Feb. 25, 1862,undated + + + + + + 20 + 73 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M348 R.12:321 Feb. 27, 1862,undated + + + + + + 20 + 74 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M574 R.59:798-99 July 30, 1862,undated + + + + + + 20 + 75 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M21 R.68:495-96 July 30, 1862,undated + + + + + + 20 + 76 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M574 R.59:826-828 Sept. 2, 1862,undated + + + + + + 20 + 77 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M574 R.59:841-43 Sept. 4, 1862,undated + + + + + + 20 + 78 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M574 R.59:836-41 Sept. 17, 1862,undated + + + + + + 20 + 79 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.153 Oct. 7, 1862,undated + + + + + + 20 + 80 + Box 3 Fond du Lac, Calendar documents, 1855-1879: ARCOIA Oct. 31, 1862,undated + + + + + + 20 + 81 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.392 Nov. 3, 1862 (Folder 1 of 2),undated + + + + + + 20 + 82 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.392 Nov. 3, 1862 (Folder 2 of 2),undated + + + + + + 20 + 83 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.392 Nov. 8, 1862,undated + + + + + + 20 + 84 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.392 Nov. 10, 1862,undated + + + + + + 20 + 85 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.153 Nov. 26, 1862,undated + + + + + + 20 + 86 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.153 Nov. 29, 1862,undated + + + + + + 20 + 87 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.153 Dec. 6, 1862,undated + + + + + + 20 + 88 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.153 Dec. 10, 1862,undated + + + + + + 20 + 89 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.153 Dec. 11, 1862,undated + + + + + + 20 + 90 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.153 Dec. 12, 1862,undated + + + + + + 20 + 91 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.153 Dec. 12, 1862,undated + + + + + + 20 + 92 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.154 Dec. 12 (circa 1862-1864),undated + + + + + + 20 + 93 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.153 Dec. 15, 1862,undated + + + + + + 20 + 94 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M21 R.69:457 Dec. 23, 1862,undated + + + + + + 20 + 95 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M606 R.4:187 Dec. 24, 1862,undated + + + + + + 20 + 96 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M606 R.4:262-63 Dec. 24, 1862,undated + + + + + + 20 + 97 + Box 3 Fond du Lac, Calendar documents, 1855-1879: Bardon A.B247 Box 1 1863 Acct. Bk.,undated + + + + + + 20 + 98 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.153 Jan. 26, 1863 (Folder 1 of 2),undated + + + + + + 20 + 99 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.153 Jan. 26, 1863 (Folder 2 of 2),undated + + + + + + 20 + 100 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.153 Feb. 5, 1863,undated + + + + + + 20 + 101 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM T494 R.6:541-653 Mar. 11, 1863,undated + + + + + + 20 + 102 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M348 R.13:99-101 Mar. 11, 1863,undated + + + + + + 20 + 103 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M606 R.4:265 Mar. 12, 1863,undated + + + + + + 20 + 104 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.153 April 30, 1863,undated + + + + + + 20 + 105 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.153 May 14, 1863,undated + + + + + + 20 + 106 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M574 R.59 Treaty Sept. 15, 1863,undated + + + + + + 20 + 107 + Box 3 Fond du Lac, Calendar documents, 1855-1879: ARCOIA Oct. 1, 1863,undated + + + + + + 20 + 108 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.153 Oct. 8, 1863,undated + + + + + + 20 + 109 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.153 Oct. 13, 1863,undated + + + + + + 20 + 110 + Box 3 Fond du Lac, Calendar documents, 1855-1879: MH Collections 6:189-225 Taliaferro, 1864,undated + + + + + + 20 + 111 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.392 Jan. 22, 1864,undated + + + + + + 20 + 112 + Box 3 Fond du Lac, Calendar documents, 1855-1879: Wheeler Papers Mar. 30, 1864,undated + + + + + + 20 + 113 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.154 May 3, 1864,undated + + + + + + 20 + 114 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M348 R.13:412 May 12, 1864,undated + + + + + + 20 + 115 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M606 R.4:496 May 17, 1864,undated + + + + + + 20 + 116 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M606 R.5 Feb. 27, 1865,undated + + + + + + 20 + 117 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.393 Oct, 5, 1865,undated + + + + + + 20 + 118 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M21 R.78:329 Oct. 18, 1865,undated + + + + + + 20 + 119 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.393 Nov. 8, 1865 (Folder 1 of 2),undated + + + + + + 20 + 120 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.393 Nov. 8, 1865 (Folder 2 of 2),undated + + + + + + 20 + 121 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.393 Nov. 15, 1865,undated + + + + + + 20 + 122 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M21 R.78:534-35 Dec. 8, 1865,undated + + + + + + 20 + 123 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.393 Dec. 12, 1865,undated + + + + + + 20 + 124 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.393 Dec. 25, 1865,undated + + + + + + 20 + 125 + Box 3 Fond du Lac, Calendar documents, 1855-1879: MN M370 R.1: 1866,undated + + + + + + 20 + 126 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.393 Feb. 24, 1866,undated + + + + + + 20 + 127 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.393 B.F. “66” Feb. 24, 1866,undated + + + + + + 20 + 128 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.837:404-05 Feb. 24, 1866,undated + + + + + + 20 + 129 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.393 Feb. 27, 1866,undated + + + + + + 20 + 130 + Box 3 Fond du Lac, Calendar documents, 1855-1879: Treaty – Chippewa 14 STAT: 765 April 7, 1866,undated + + + + + + 20 + 131 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M606 R.6:228 April 11, 1866,undated + + + + + + 20 + 132 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.393 April 25, 1866,undated + + + + + + 20 + 133 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M348 R.15 April 30, 1866,undated + + + + + + 20 + 134 + Box 3 Fond du Lac, Calendar documents, 1855-1879: MN M370 R.1 May 3, 1866,undated + + + + + + 20 + 135 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.393 June 5, 1866,undated + + + + + + 20 + 136 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.155 Dec. 29, 1866,undated + + + + + + 20 + 137 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.394 Dec. 31, 1866,undated + + + + + + 20 + 138 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.394 Jan. 22, 1867,undated + + + + + + 20 + 139 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M606 R.7: March 20, 1867,undated + + + + + + 20 + 140 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.394 April 17, 1867,undated + + + + + + 20 + 141 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.155 June 6, 1867,undated + + + + + + 20 + 142 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.394 Oct. 12, 1867,undated + + + + + + 20 + 143 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.394 Nov. 13, 1867,undated + + + + + + 20 + 144 + Box 3 Fond du Lac, Calendar documents, 1855-1879: ARCOIA Nov. 15, 1867,undated + + + + + + 20 + 145 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.394:224 Dec. 10, 1867,undated + + + + + + 20 + 146 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.394 Dec. 12, 1867,undated + + + + + + 20 + 147 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.394 Jan. 20, 1868,undated + + + + + + 20 + 149 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.349 Mar. 7, 1868,undated + + + + + + 20 + 149 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.394 Nov. 10, 1868,undated + + + + + + 20 + 150 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.394:66 July 12, 1869,undated + + + + + + 20 + 151 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.349 Jan. 10, 1870,undated + + + + + + 20 + 152 + Box 3 Fond du Lac, Calendar documents, 1855-1879: ARCOIA Oct. 3, 1870,undated + + + + + + 20 + 153 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.349 Nov. 3, 1870,undated + + + + + + 20 + 154 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.349 Dec. 13, 1870,undated + + + + + + 20 + 155 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.349 Dec. 19, 1870,undated + + + + + + 20 + 156 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.349 Jan. 23, 1871,undated + + + + + + 20 + 157 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.349 Jan. 28, 1871,undated + + + + + + 20 + 158 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.349 June 13, 1871,undated + + + + + + 20 + 159 + Box 3 Fond du Lac, Calendar documents, 1855-1879: MN M370 R.1 Sept. 30, 1871,undated + + + + + + 20 + 160 + Box 3 Fond du Lac, Calendar documents, 1855-1879: ARCOIA Nov. 1, 1871,undated + + + + + + 20 + 161 + Box 3 Fond du Lac, Calendar documents, 1855-1879: MN M370 R.1 Nov. 30, 1871,undated + + + + + + 20 + 162 + Box 3 Fond du Lac, Calendar documents, 1855-1879: MN M370 R.1 Jan. 5, 31, 1872,undated + + + + + + 20 + 163 + Box 3 Fond du Lac, Calendar documents, 1855-1879: MN M370 R.1 – 3Q Sept. 30, 1872,undated + + + + + + 20 + 164 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.395 Mar. 18, 1873,undated + + + + + + 20 + 165 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.395 Mar. 21, 1873,undated + + + + + + 20 + 166 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.395 Mar. 24, 1873,undated + + + + + + 20 + 167 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.395 Sept. 22, 1873,undated + + + + + + 20 + 168 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.395 Nov. 8, 1873,undated + + + + + + 20 + 169 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.395 Nov. 9, 1873,undated + + + + + + 20 + 170 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.395 Nov. 10, 1873 (Folder 1 of 2),undated + + + + + + 20 + 171 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.395 Nov. 10, 1873 (Folder 2 of 2),undated + + + + + + 20 + 172 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.395 Nov. 12, 1873,undated + + + + + + 20 + 173 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.396 Dec. 9, 1873,undated + + + + + + 20 + 174 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.395 Jan. 19, 1874,undated + + + + + + 20 + 176 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.395 Jan. 22, 1874,undated + + + + + + 20 + 176 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.395 Jan. 30, 1874,undated + + + + + + 20 + 177 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.395 Feb. 23, 1874,undated + + + + + + 20 + 178 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.395 Feb. 23, 18, 1874,undated + + + + + + 20 + 179 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.395 Mar. 7, 1874,undated + + + + + + 20 + 180 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.395 Mar. 9, 1874,undated + + + + + + 20 + 181 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.395 Mar. 12, 1874,undated + + + + + + 20 + 182 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.395 April 7, 1874,undated + + + + + + 20 + 183 + Box 3 Fond du Lac, Calendar documents, 1855-1879: ARCOIA Aug. 29, 1874,undated + + + + + + 20 + 184 + Box 3 Fond du Lac, Calendar documents, 1855-1879: ARCOIA Nov. 1, 1874,undated + + + + + + 20 + 185 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.396 Dec. 1, 1874,undated + + + + + + 20 + 186 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R. 396 Feb. 1, 1875 (Folder 1 of 3),undated + + + + + + 20 + 187 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R. 396 Feb. 1, 1875 (Folder 2 of 3),undated + + + + + + 20 + 188 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R. 396 Feb. 1, 1875 (Folder 3 of 3),undated + + + + + + 20 + 189 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.396 Mar. 29, 1875,undated + + + + + + 20 + 190 + Box 3 Fond du Lac, Calendar documents, 1855-1879: ARCOIA Sept. 30, 1875,undated + + + + + + 20 + 191 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.396 Oct. 16, 1875,undated + + + + + + 20 + 192 + Box 3 Fond du Lac, Calendar documents, 1855-1879: ARCOIA 1875 Nov. 1, 1875,undated + + + + + + 20 + 193 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.396 Mar. 7, 1876,undated + + + + + + 20 + 194 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.396 May 23, 1876,undated + + + + + + 20 + 195 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.396 Aug. 19, 1876,undated + + + + + + 20 + 196 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.396 Aug. 25, 1876,undated + + + + + + 20 + 197 + Box 3 Fond du Lac, Calendar documents, 1855-1879: ARCOIA Sept. 1, 1876,undated + + + + + + 20 + 198 + Box 3 Fond du Lac, Calendar documents, 1855-1879: ARCOIA Sept. 5, 1876,undated + + + + + + 20 + 199 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M370 R.2 Jan. 26, 1877,undated + + + + + + 20 + 200 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.397 Feb. 1, 1877 (Folder 1 of 3),undated + + + + + + 20 + 201 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.397 Feb. 1, 1877 (Folder 2 of 3),undated + + + + + + 20 + 202 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.397 Feb. 1, 1877 (Folder 3 of 3),undated + + + + + + 20 + 203 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.397 Feb. 5, 1877,undated + + + + + + 20 + 204 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.397 Feb. 6, 1877,undated + + + + + + 20 + 205 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.397 Feb. 7, 1877,undated + + + + + + 20 + 206 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.397 Mar. 27, 1877,undated + + + + + + 20 + 207 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.397 June 7, 1877,undated + + + + + + 20 + 208 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.397 June 13, 1877,undated + + + + + + 20 + 209 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.397 June 16, 1877 (Folder 1 of 3),undated + + + + + + 20 + 210 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.397 June 16, 1877 (Folder 2 of 3),undated + + + + + + 20 + 211 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.397 June 16, 1877 (Folder 3 of 3),undated + + + + + + 20 + 212 + Box 3 Fond du Lac, Calendar documents, 1855-1879: ARCOIA Sept. 3, 1877,undated + + + + + + 20 + 213 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.397 Dec. 4, 1877 (Folder 1 of 2),undated + + + + + + 20 + 214 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.397 Dec. 4, 1877 (Folder 2 of 2),undated + + + + + + 20 + 215 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.397 Dec. 6, 1877,undated + + + + + + 20 + 216 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.398 Jan. 11, 1878,undated + + + + + + 20 + 217 + Box 3 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.398 Feb. 22, 1878,undated + + + + + + 20 + 218 + Box 3 Fond du Lac, Calendar documents, 1855-1879: ARCOIA Sept. 1, 1878,undated + + + + + + 20 + 219 + Box 3 Fond du Lac, Calendar documents, 1855-1879: ARCOIA Sept. 1, 1879,undated + + + + + + 20 + 220 + Box 4 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.399 Nov. 25, 1879 (Folder 1 of 2),undated + + + + + + 20 + 221 + Box 4 Fond du Lac, Calendar documents, 1855-1879: NAM M234 R.399 Nov. 25, 1879 (Folder 2 of 2),undated + + + + + + 21 + 1 + Box 4 Fond du Lac, Calendar documents, 1880-present: ARCOIA, Aug. 21, 1880,undated + + + + + + 21 + 2 + Box 4 Fond du Lac, Calendar documents, 1880-present: ARCOIA, Aug. 31, 1881,undated + + + + + + 21 + 3 + Box 4 Fond du Lac, Calendar documents, 1880-present: ARCOIA, Aug. 31, 1882,undated + + + + + + 21 + 4 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 9369-1883 May 21, 1883,undated + + + + + + 21 + 5 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC July 16, 1883,undated + + + + + + 21 + 6 + Box 4 Fond du Lac, Calendar documents, 1880-present: ARCOIA Aug. 15, 1883,undated + + + + + + 21 + 7 + Box 4 Fond du Lac, Calendar documents, 1880-present: ARCOIA Aug. 19, 1884,undated + + + + + + 21 + 8 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Nov. 13, 1884,undated + + + + + + 21 + 9 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC May 3, 1885,undated + + + + + + 21 + 10 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC May 15, 1885,undated + + + + + + 21 + 11 + Box 4 Fond du Lac, Calendar documents, 1880-present: ARCOIA Aug. 15, 1885,undated + + + + + + 21 + 12 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Sept. 3, 1885,undated + + + + + + 21 + 13 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Sept. 24, 1885,undated + + + + + + 21 + 14 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Nov. 27, 1885,undated + + + + + + 21 + 15 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC 1886,undated + + + + + + 21 + 16 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Jan. 21, 1886,undated + + + + + + 21 + 17 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Jan. 28, 1886,undated + + + + + + 21 + 18 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Feb. 20, 1886,undated + + + + + + 21 + 19 + Box 4 Fond du Lac, Calendar documents, 1880-present: ARCOIA Aug. 20, 1886,undated + + + + + + 21 + 20 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Dec. 5, 1886,undated + + + + + + 21 + 21 + Box 4 Fond du Lac, Calendar documents, 1880-present: ARCOIA SENATE DOC.115 Feb. 28, 1887,undated + + + + + + 21 + 22 + Box 4 Fond du Lac, Calendar documents, 1880-present: ARCOIA Sept. 21, 1887,undated + + + + + + 21 + 23 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 27663-1887 Oct. 18, 1887,undated + + + + + + 21 + 24 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 1187-1888 Jan. 7, 1888,undated + + + + + + 21 + 25 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 2514-1888 Jan. 9, 1888,undated + + + + + + 21 + 26 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 2514 1888 Jan. 27, 1888,undated + + + + + + 21 + 27 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Feb. 1, 1888,undated + + + + + + 21 + 28 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Aug. 7, 1888,undated + + + + + + 21 + 29 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Aug. 13, 1888,undated + + + + + + 21 + 30 + Box 4 Fond du Lac, Calendar documents, 1880-present: ARCOIA Aug. 29, 1888,undated + + + + + + 21 + 31 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC May 4, 1889,undated + + + + + + 21 + 32 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC July 6, 1889,undated + + + + + + 21 + 33 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Aug. 23, 1889,undated + + + + + + 21 + 34 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Sept. 2, 1889,undated + + + + + + 21 + 35 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Sept. 5, 1889,undated + + + + + + 21 + 36 + Box 4 Fond du Lac, Calendar documents, 1880-present: ARCOIA Oct. 1, 1889,undated + + + + + + 21 + 37 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC [RG75, CCF-CON.Chip.Box 508949] Oct. 20, 1889,undated + + + + + + 21 + 38 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-DC 1ST Council G.P. Oct. 20, 1889,undated + + + + + + 21 + 39 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Oct. 21, 1889,undated + + + + + + 21 + 40 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC [RC75 CC5-Con.Chip .Box 508949] Nov. 9, 1889,undated + + + + + + 21 + 41 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-DC Minutes/Boise Ft. Nov. 9, 1889,undated + + + + + + 21 + 42 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Nov. 18, 1889,undated + + + + + + 21 + 43 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC [Cons.Chip Box 508949] Nov. 18, 1889,undated + + + + + + 21 + 44 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Dec. 18, 1889,undated + + + + + + 21 + 45 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 3783-1890 Jan. 20, 1890,undated + + + + + + 21 + 46 + Box 4 Fond du Lac, Calendar documents, 1880-present: HR 247 51-1 Vol. 32 [CS. 2747] Mar. 6, 1890,undated + + + + + + 21 + 47 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-1890 Mar. 10, 1890,undated + + + + + + 21 + 48 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Aug. 25, 1890,undated + + + + + + 21 + 49 + Box 4 Fond du Lac, Calendar documents, 1880-present: ARCOIA Sept. 5, 1890,undated + + + + + + 21 + 50 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Sept. 11, 1890,undated + + + + + + 21 + 51 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Oct. 1, 1890,undated + + + + + + 21 + 52 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Mar. 3, 1891,undated + + + + + + 21 + 53 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Aug. 3, 1891,undated + + + + + + 21 + 54 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Aug. 25, 1891,undated + + + + + + 21 + 55 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Mar. 27, 1893,undated + + + + + + 21 + 56 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC July 18, 1893,undated + + + + + + 21 + 57 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Dec. 10, 1893,undated + + + + + + 21 + 58 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 22633-1894 June 12, 1894,undated + + + + + + 21 + 59 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 36033-1895 1895,undated + + + + + + 21 + 60 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC July 5, 1895,undated + + + + + + 21 + 61 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Sept. 23, 1895,undated + + + + + + 21 + 62 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Nov. 7, 1895,undated + + + + + + 21 + 63 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Dec. 16, 1895,undated + + + + + + 21 + 64 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 55, 1896,undated + + + + + + 21 + 65 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 42567-1896 Feb. 6, 1896,undated + + + + + + 21 + 66 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 6763-1896 Feb. 13, 1896,undated + + + + + + 21 + 67 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC June 26, 1896,undated + + + + + + 21 + 68 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 32760-1896 Aug. 24, 1896,undated + + + + + + 21 + 69 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Nov. 4, 1896,undated + + + + + + 21 + 70 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Dec. 5, 1896,undated + + + + + + 21 + 71 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Dec. 12, 1896,undated + + + + + + 21 + 72 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 34990 1897 1987,undated + + + + + + 21 + 73 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 34990-1897 1897 (Folder 1 of 2),undated + + + + + + 21 + 74 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 34990-1897 1897 (Folder 2 of 2),undated + + + + + + 21 + 75 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 15173-1897 1897,undated + + + + + + 21 + 76 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 15173-1897 April 15, 1897,undated + + + + + + 21 + 77 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 15173-1897 April 17, 1897,undated + + + + + + 21 + 78 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 30116 1897 July 30, 1897,undated + + + + + + 21 + 79 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 25983-1897 Aug. 30, 1897,undated + + + + + + 21 + 80 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Oct. 23, 1897,undated + + + + + + 21 + 81 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 50814 1897 Nov. 30, 1897,undated + + + + + + 21 + 82 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Dec. 23, 1897,undated + + + + + + 21 + 83 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 38367 1898 1898,undated + + + + + + 21 + 84 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Jan. 17, 1898,undated + + + + + + 21 + 85 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 40378 1898 Sept. 3, 1898,undated + + + + + + 21 + 86 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Sept. 6, 1898,undated + + + + + + 21 + 87 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Jan. 30, 1899,undated + + + + + + 21 + 88 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Feb. 1, 1899,undated + + + + + + 21 + 89 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Apr. 17, 1899,undated + + + + + + 21 + 90 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Dec. 10, 1899,undated + + + + + + 21 + 91 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Apr. 30, 1900,undated + + + + + + 21 + 92 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 55154 1900 Nov. 5, 1900,undated + + + + + + 21 + 93 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Dec. 1, 1900,undated + + + + + + 21 + 94 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Mar. 31, 1901,undated + + + + + + 21 + 95 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC April 28, 1901,undated + + + + + + 21 + 96 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 73465-1901 Dec. 16, 1901,undated + + + + + + 21 + 97 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 2842 1901 Dec. 30, 1901,undated + + + + + + 21 + 98 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Feb. 12, 1903,undated + + + + + + 21 + 99 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Oct. 5, 1904,undated + + + + + + 21 + 100 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Feb. 26, 1907,undated + + + + + + 21 + 101 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Dec. 28, 1907,undated + + + + + + 21 + 102 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 80509-1908 Nov. 23, 1908,undated + + + + + + 21 + 103 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 80509-1908 Nov. 28, 1908,undated + + + + + + 21 + 104 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 80509-1908 Dec. 4, 1908,undated + + + + + + 21 + 105 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Apr. 30, 1909,undated + + + + + + 21 + 106 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Aug. 30, 1909,undated + + + + + + 21 + 107 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Jan. 1, 1901,undated + + + + + + 21 + 108 + Box 4 Fond du Lac, Calendar documents, 1880-present: CCF 759611-1910, 150 Sept. 7, 1910,undated + + + + + + 21 + 109 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC Oct. 18, 1910,undated + + + + + + 21 + 110 + Box 4 Fond du Lac, Calendar documents, 1880-present: CCF 75379-1910, 308-2 Nov. 4, 1910,undated + + + + + + 21 + 111 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC April 6, 1911,undated + + + + + + 21 + 112 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-KC May 6, 1911,undated + + + + + + 21 + 113 + Box 4 Fond du Lac, Calendar documents, 1880-present: CCF 117485-1912, 172 Dec. 19, 1912,undated + + + + + + 21 + 114 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Feb. 16, 1915,undated + + + + + + 21 + 115 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC July 7, 1915,undated + + + + + + 21 + 116 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Oct. 9, 1915,undated + + + + + + 21 + 117 + Box 4 Fond du Lac, Calendar documents, 1880-present: CCF 119894-1915 Nov. 1-2, 1915,undated + + + + + + 21 + 118 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Nov. 8, 1915 (Folder 1 of 2),undated + + + + + + 21 + 119 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Nov. 8, 1915 (Folder 2 of 2),undated + + + + + + 21 + 120 + Box 4 Fond du Lac, Calendar documents, 1880-present: LROIA 136112-1915 Dec. 2, 1915,undated + + + + + + 21 + 121 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Jan. 15, 1916,undated + + + + + + 21 + 122 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Feb. 18, 1916,undated + + + + + + 21 + 123 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Mar. 2, 1916,undated + + + + + + 21 + 124 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Mar. 4, 1916,undated + + + + + + 21 + 125 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Mar. 29, 1916,undated + + + + + + 21 + 126 + Box 4 Fond du Lac, Calendar documents, 1880-present: CCF 7507-1916, 054 July 7, 1916,undated + + + + + + 21 + 127 + Box 4 Fond du Lac, Calendar documents, 1880-present: CCF 103870-1916, 115 Oct. 16, 1916,undated + + + + + + 21 + 128 + Box 4 Fond du Lac, Calendar documents, 1880-present: CCF 11747-1916, 054 Feb. 3, 1917,undated + + + + + + 21 + 129 + Box 4 Fond du Lac, Calendar documents, 1880-present: CCF 45176-1917 Mar. 21, 1917,undated + + + + + + 21 + 130 + Box 4 Fond du Lac, Calendar documents, 1880-present: CCF 53986-1917, 910 June 8, 1917,undated + + + + + + 21 + 131 + Box 4 Fond du Lac, Calendar documents, 1880-present: FLDP-CHIC Oct. 5, 1917,undated + + + + + + 21 + 132 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Nov. 30, 1917,undated + + + + + + 21 + 133 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Dec. 5, 1917,undated + + + + + + 21 + 134 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Mar. 16, 1918,undated + + + + + + 21 + 135 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC April 1, 1918,undated + + + + + + 21 + 136 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC April 5, 1918,undated + + + + + + 21 + 137 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC April 17, 1918,undated + + + + + + 21 + 138 + Box 4 Fond du Lac, Calendar documents, 1880-present: CCF 755-1919, 170 Feb. 24, 1919,undated + + + + + + 21 + 139 + Box 4 Fond du Lac, Calendar documents, 1880-present: CCF 39624-1920, 115 Apr. 23, 1920,undated + + + + + + 21 + 140 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC 1922,undated + + + + + + 21 + 141 + Box 4 Fond du Lac, Calendar documents, 1880-present: CCF 77994-1922, 115 Sept. 27, 1922,undated + + + + + + 21 + 142 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Stat. Report Grand Port 1923,undated + + + + + + 21 + 143 + Box 4 Fond du Lac, Calendar documents, 1880-present: CCF 82333-1923, 115 Nov. 6, 1923,undated + + + + + + 21 + 144 + Box 4 Fond du Lac, Calendar documents, 1880-present: CCF 87064-1923, 115 Dec. 3, 1923,undated + + + + + + 21 + 145 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC School Report 1924,undated + + + + + + 21 + 146 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Annual Report June 30, 1925,undated + + + + + + 21 + 147 + Box 4 Fond du Lac, Calendar documents, 1880-present: CCF 57709-1925, 115 Aug. 21, 1925,undated + + + + + + 21 + 148 + Box 4 Fond du Lac, Calendar documents, 1880-present: CCF 70818-1925, 115 Nov. 4, 1925,undated + + + + + + 21 + 149 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Property Report 1926,undated + + + + + + 21 + 150 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC May 26, 1926,undated + + + + + + 21 + 151 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC June 5, 1926,undated + + + + + + 21 + 152 + Box 4 Fond du Lac, Calendar documents, 1880-present: CCF 43033-1926, 115 Sept. 11, 1926,undated + + + + + + 21 + 153 + Box 4 Fond du Lac, Calendar documents, 1880-present: CCF 82847-1923, 115 Nov. 6, 1926,undated + + + + + + 21 + 154 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC May 28, 1927,undated + + + + + + 21 + 155 + Box 4 Fond du Lac, Calendar documents, 1880-present: CCF 51262-1927 Oct. 27, 1927,undated + + + + + + 21 + 156 + Box 4 Fond du Lac, Calendar documents, 1880-present: CCF 53455-1927, 115 Nov. 16, 1927,undated + + + + + + 21 + 157 + Box 4 Fond du Lac, Calendar documents, 1880-present: CCF 25813-1928 May 11, 1928,undated + + + + + + 21 + 158 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC 1929,undated + + + + + + 21 + 159 + Box 4 Fond du Lac, Calendar documents, 1880-present: CCF 24950-1929, 115 May 13, 1929,undated + + + + + + 21 + 160 + Box 4 Fond du Lac, Calendar documents, 1880-present: CCF 37761-1921, 113 Aug. 5, 1929,undated + + + + + + 21 + 161 + Box 4 Fond du Lac, Calendar documents, 1880-present: CFF 40932-1929, 115 Aug. 28, 1929,undated + + + + + + 21 + 162 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Annual Report 1930,undated + + + + + + 21 + 163 + Box 4 Fond du Lac, Calendar documents, 1880-present: CCF 64775-1930 Jan. 2, 1930,undated + + + + + + 21 + 164 + Box 4 Fond du Lac, Calendar documents, 1880-present: Allen E.A. Aug. 23, 1930,undated + + + + + + 21 + 165 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Annual Stat. Report 1938,undated + + + + + + 21 + 166 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Annual Stat. Report 1939,undated + + + + + + 21 + 167 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC July 5, 1939,undated + + + + + + 21 + 168 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Annual Stat. Report 1940,undated + + + + + + 21 + 169 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Annual Report 1940,undated + + + + + + 21 + 170 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Annual Stat. Report 1940,undated + + + + + + 21 + 171 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Oct. 20, 1942,undated + + + + + + 21 + 172 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Annual Report 1943,undated + + + + + + 21 + 173 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Annual Stat. Report 1943,undated + + + + + + 21 + 174 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Annual Stat. Report 1944,undated + + + + + + 21 + 175 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Jan. 6, 1944,undated + + + + + + 21 + 176 + Box 4 Fond du Lac, Calendar documents, 1880-present: CCF 17669-1938, 931 June 17, 1946,undated + + + + + + 21 + 177 + Box 4 Fond du Lac, Calendar documents, 1880-present: FDLP-CHIC Mar. 17, 1987,undated + + + + + + 21 + 178 + Box 4 Fond du Lac, Calendar documents, 1880-present: Composite Map of US #09,undated + + + + + + 21 + 179 + Box 4 Fond du Lac, Calendar documents, 1880-present: Composite Map of US #08,undated + + + + + + 21 + 180 + Box 4 Fond du Lac, Calendar documents, 1880-present: Composite Map of US #14,undated + + + + + + 21 + 181 + Box 4 Fond du Lac, Calendar documents, 1880-present: Composite Map of US #15,undated + + + + + + 21 + 182 + Box 4 Fond du Lac, Calendar documents, 1880-present: Composite Map of US #17,undated + + + + + + 21 + 183 + Box 4 Fond du Lac, Calendar documents, 1880-present: Composite Map of US #16,undated + + + + + + 21 + 184 + Box 4 Fond du Lac, Calendar documents, 1880-present: Composite Map of US #13,undated + + + + + + 21 + 185 + Box 4 Fond du Lac, Calendar documents, 1880-present: Map of Grand Portage,undated + + + + + + 21 + 186 + Box 4 Fond du Lac, Calendar documents, 1880-present: Arnold 1923,undated + + + + + + 21 + 187 + Box 4 Fond du Lac, Calendar documents, 1880-present: Boyd, George 1832,undated + + + + + + 21 + 188 + Box 4 Fond du Lac, Calendar documents, 1880-present: Carver, Jonathan,undated + + + + + + 21 + 189 + Box 4 Fond du Lac, Calendar documents, 1880-present: Doty, James D. Northern WI in 1820,undated + + + + + + 21 + 190 + Box 4 Fond du Lac, Calendar documents, 1880-present: Ellis, Albert G. 1876,undated + + + + + + 21 + 191 + Box 4 Fond du Lac, Calendar documents, 1880-present: Henry, Alexander ,undated + + + + + + 21 + 192 + Box 4 Fond du Lac, Calendar documents, 1880-present: Hudson Bay Co.,undated + + + + + + 21 + 193 + Box 4 Fond du Lac, Calendar documents, 1880-present: Kaups, M, JCG, 5:1, 61-83,Fall 1984 + + + + + + 21 + 194 + Box 4 Fond du Lac, Calendar documents, 1880-present: Kaups, Matti,Mar. 6, 1987 + + + + + + 21 + 195 + Box 4 Fond du Lac, Calendar documents, 1880-present: MacDonnell, J. 1965,undated + + + + + + 21 + 196 + Box 4 Fond du Lac, Calendar documents, 1880-present: Tanner 1956,undated + + + + + + 21 + 197 + Box 4 Fond du Lac, Calendar documents, 1880-present: MN 008302 March 25, 1827,undated + + + + + + 21 + 198 + Box 4 Fond du Lac, Calendar documents, 1880-present: MN 017020 Aug. 23, 1831,undated + + + + + + 21 + 199 + Box 4 Fond du Lac, Calendar documents, 1880-present: MN 017161 Ramsey > Lea Aug. 18, 1837,undated + + + + + + 21 + 200 + Box 4 Fond du Lac, Calendar documents, 1880-present: MN 017564 Oct. 6, 1837,undated + + + + + + 21 + 201 + Box 4 Fond du Lac, Calendar documents, 1880-present: MN 017534 Feb. 20, 1838,undated + + + + + + 21 + 202 + Box 4 Fond du Lac, Calendar documents, 1880-present: MN 007327 Dodge > Campbell May 2, 1838,undated + + + + + + 21 + 203 + Box 4 Fond du Lac, Calendar documents, 1880-present: MN 008223 July 18, 1838,undated + + + + + + 21 + 204 + Box 4 Fond du Lac, Calendar documents, 1880-present: P4064, 362, 061 Aug. 14, 1838,undated + + + + + + 21 + 205 + Box 4 Fond du Lac, Calendar documents, 1880-present: M234 R.387:299-302 Sept. 26, 1839,undated + + + + + + 21 + 206 + Box 4 Fond du Lac, Calendar documents, 1880-present: MN 007259 June 30, 1844,undated + + + + + + 21 + 207 + Box 4 Fond du Lac, Calendar documents, 1880-present: MN 010311 Rice > Medill Aug. 23, 1847,undated + + + + + + 22 + 1 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: WH Collections Vol. VII Sept. 27, 1820,undated + + + + + + 22 + 2 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Treaty Sioux 7 stat; 272 [Praire du Chien) Aug. 19, 1825,undated + + + + + + 22 + 3 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM T494 R.1 Treaty 139 June 30-Aug. 22, 1825,undated + + + + + + 22 + 4 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M21 R.3:95-6 May 24, 1826,undated + + + + + + 22 + 5 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM T494 R.1:826-854 Aug. 2, 1826,undated + + + + + + 22 + 6 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Treaty Chippewa 7 stat; 290 [Fond du Lac] Aug. 5, 1826,undated + + + + + + 22 + 7 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Treaty Chippewa 7 stat; 303 [Butte des Morts] Aug. 11, 1827,undated + + + + + + 22 + 8 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Indian Removal Act 4 stat. 411-12 May 28, 1830,undated + + + + + + 22 + 9 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Treaty Choctaw 7 stat. 333 Sept. 27, 1830,undated + + + + + + 22 + 10 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: HBC Ms. HBC 1M 783 May 14, 1831,undated + + + + + + 22 + 11 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Treaty Winnebago 7 stat. 370 Sept. 15, 1832,undated + + + + + + 22 + 12 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Treaty w/ Shawnee 7 stat. 355, 1831,undated + + + + + + 22 + 13 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Treaty Chickasaw 7 stat. 381 Oct. 20, 1832,undated + + + + + + 22 + 14 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: ABCFM BA10 A512b Box 1 May 1833,undated + + + + + + 22 + 15 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Ely JL No. 5 Ms. E-52 June 23, 1834,undated + + + + + + 22 + 16 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Ely JL No. 6 Ms. E-52 Jan.-March 1835,undated + + + + + + 22 + 17 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Treaty Cherokee 7 stat. 478 Dec. 29, 1835,undated + + + + + + 22 + 18 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Treaty Ottawa + Chippewa 7 stat; 491 March 28, 1836,undated + + + + + + 22 + 19 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: ABCFM BA10 A512b Box 2 Jan. 9, 1837 (Folder 1 of 2),undated + + + + + + 22 + 20 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: ABCFM BA10 A512b Box 2 Jan. 9, 1837 (Folder 2 of 2),undated + + + + + + 22 + 21 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M21 R.21:200 May 13, 1837,undated + + + + + + 22 + 22 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM T494 R.3:548-68 July 20, 1837,undated + + + + + + 22 + 23 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Treaty Chippewa 7 stat; 536 [St. Peters] July 29, 1837,undated + + + + + + 22 + 24 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM T494 R.3:540-5 Aug. 7, 1837,undated + + + + + + 22 + 25 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: ABCFM BA10 A512 Aug. 17, 1837,undated + + + + + + 22 + 26 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.948:251 MN 007491 Dodge > Harris May 18, 1838,undated + + + + + + 22 + 27 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.948:226 July 6, 1838,undated + + + + + + 22 + 28 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.948 Oct. 1, 1838,undated + + + + + + 22 + 29 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: ARCOIA Oct. 18, 1839,undated + + + + + + 22 + 30 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.388 Oct. 16, 1840,undated + + + + + + 22 + 31 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.388 May 21, 1841,undated + + + + + + 22 + 32 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.388:266-268 Oct. 2, 1841,undated + + + + + + 22 + 33 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.388:259 Nov. 17, 1841,undated + + + + + + 22 + 34 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: ABCFM Ms. BA10 512b Box 3 June 20, 1842,undated + + + + + + 22 + 35 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: ABCFM Ms. BA10 A512b Box 3 July 8, 1842,undated + + + + + + 22 + 36 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M951 R.4:109 July 26, 1842,undated + + + + + + 22 + 37 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M1 R.53:169-176 Aug. 1, 1842,undated + + + + + + 22 + 38 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.389:61-67 Sept. 29, 1842,undated + + + + + + 22 + 39 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Treaty Chippewa 7 stat; 591 [La Pointe] Oct. 4, 1842,undated + + + + + + 22 + 40 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: ARCOIA Oct. 28, 1842,undated + + + + + + 22 + 41 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: ABCFM Ms. BA10 A512b Box 3 Dec. 8, 1842,undated + + + + + + 22 + 42 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.388 Jan. 8, 1843,undated + + + + + + 22 + 43 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: ABCFM Ms. BA10 A512b May 3, 1843,undated + + + + + + 22 + 44 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.388 June 2, 1843,undated + + + + + + 22 + 45 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: ARCOIA Nov. 25, 1843,undated + + + + + + 22 + 46 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.389 March 29, 1844,undated + + + + + + 22 + 47 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M951 R.2:583 May 21, 1844,undated + + + + + + 22 + 48 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: ABCFM BA10 A512b Box 4 Sept. 5, 1844,undated + + + + + + 22 + 49 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.389:468 Aug. 6, 1845,undated + + + + + + 22 + 50 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: S.D. 403 [29-1] 477 June 20, 1846,undated + + + + + + 22 + 51 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.949 Nov. 28, 1846,undated + + + + + + 22 + 52 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: ARCOIA [Report of J. Hays] Oct. 8, 1846,undated + + + + + + 22 + 53 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.949 Nov. 30, 1846,undated + + + + + + 22 + 54 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.949 Mar. 26, 1847,undated + + + + + + 22 + 55 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M236 R.46 June 4, 1847,undated + + + + + + 22 + 56 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M236 R.46 Aug. 2, 1847,undated + + + + + + 22 + 57 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Treaty Chippewa 9 stat. 904 [Fond du Lac] Aug. 7, 1847,undated + + + + + + 22 + 58 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.389 Aug. 21, 1847,undated + + + + + + 22 + 59 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Treaty Chippewa/Pillager 9 stat. 908 [Leech Lake] Aug. 21, 1847,undated + + + + + + 22 + 60 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.389 Aug. 27, 1847,undated + + + + + + 22 + 61 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M24 R.389 Sept. 3, 1847,undated + + + + + + 22 + 62 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: ARCOIA (Hays to Dodge) Sept. 15, 1847,undated + + + + + + 22 + 63 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.390:79-80 Sept. 13, 1848,undated + + + + + + 22 + 64 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: ABCFM BA10 A512b Box 5 Oct. 9, 1848,undated + + + + + + 22 + 65 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.390 Nov. 14, 1848,undated + + + + + + 22 + 66 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.390 Nov. 20, 1848,undated + + + + + + 22 + 67 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.390 Dec. 5, 1848,undated + + + + + + 22 + 68 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.390 Petitions Jan, 1849,undated + + + + + + 22 + 69 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.390 Feb. 5, 1849,undated + + + + + + 22 + 70 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: ABCFM BA10 A512b Box 5 Feb. 10, 1849,undated + + + + + + 22 + 71 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M842 R.1:10-12 Medill > Ramsey June 27, 1849,undated + + + + + + 22 + 72 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: AR M204 R.2 Vol.2 p.10 Sept. 10, 1849,undated + + + + + + 22 + 73 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.428 :124-8 M675 Nov. 7, 1849,undated + + + + + + 22 + 74 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: AR M203 R.4 Dec. 1, 1849,undated + + + + + + 22 + 75 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.43:23 Feb. 6, 1850,undated + + + + + + 22 + 76 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: AR M203 R.4 March, 1850,undated + + + + + + 22 + 77 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.390 Mar. 26, 1850,undated + + + + + + 22 + 78 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.390 M784 March 26, 1850,undated + + + + + + 22 + 79 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: MCT DKT Ex. 947 May 22, 1850,undated + + + + + + 22 + 80 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: MCT PLA Ex.400 May 24, 1850,undated + + + + + + 22 + 81 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M215 R.2:1171 July 2, 1850,undated + + + + + + 22 + 82 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: MCT DEF Ex.60 July 30, 1850,undated + + + + + + 22 + 83 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: ARCOIA p.35-39 [Report of A. Ramsey] Oct. 1, 1850,undated + + + + + + 22 + 84 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: ABCFM BA10 A512b Box 5 Dec. 30, 1850,undated + + + + + + 22 + 85 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.767:61-72 Jan. 6, 1851,undated + + + + + + 22 + 86 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M348 R.6 June 3, 1851,undated + + + + + + 22 + 87 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M21 R.45 Aug. 25, 1851,undated + + + + + + 22 + 88 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: MN 003394 Aug. 25, 1851,undated + + + + + + 22 + 89 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: [LCO] Voigt Ex.1 Nov. 6, 1851,undated + + + + + + 22 + 90 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.168 M32 Dec. 26, 1851,undated + + + + + + 22 + 91 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Lake Superior JL [MN 003467] June 16, 1852,undated + + + + + + 22 + 92 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.149 P42 June 30, 1852,undated + + + + + + 22 + 93 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.404:183-190 Dec. 10, 1853,undated + + + + + + 22 + 94 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M21 R.49:454-55 Aug. 11, 1854,undated + + + + + + 22 + 95 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M21 R.49:457 Aug. 12, 1854,undated + + + + + + 22 + 96 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M21 R.49 Aug. 14, 1854,undated + + + + + + 22 + 97 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Treaty Chippewa 10 stat; 1109 [La Pointe] Sept. 30, 1854,undated + + + + + + 22 + 98 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM T494 R.5:133-39 Oct. 17, 1854,undated + + + + + + 22 + 99 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.150 Nov. 10, 1854,undated + + + + + + 22 + 100 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Congressional Globe xxx:53-4 Dec. 14, 1854,undated + + + + + + 22 + 101 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.150:222 Feb. 16, 1853,undated + + + + + + 22 + 102 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M234 R.150:242 [MN 008243] June 4/5, 1855,undated + + + + + + 22 + 103 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M578 R.22:1105 Claim No.22 July 25, 1855,undated + + + + + + 22 + 104 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M578 R.22:199 No.23 Aug. 27, 1855,undated + + + + + + 22 + 105 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M578 R.22:318 Claim 63 Sept. 7, 1855,undated + + + + + + 22 + 106 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM M578 R.22:278 Claim 64 Sept. 10, 1855,undated + + + + + + 22 + 107 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: NAM T494 R.6:541-53 March 11, 1863,undated + + + + + + 22 + 108 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Allen, James. JL and Letters, Reports of… 1958,undated + + + + + + 22 + 109 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Bald, Clever. MI in Four Centuries, 1954,undated + + + + + + 22 + 110 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Birk, Douglas A. John Sayer’s Snake River JL 1989,1989 + + + + + + 22 + 111 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Bolt, Christine. American Indian Policy and Am. Reform 1987,1987 + + + + + + 22 + 112 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Boutwall, Wm. T. JL, Letters and Reports of…, 1958,undated + + + + + + 22 + 113 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Carver, Jonathan. JLs of J. Carver… , 1976,1976 + + + + + + 22 + 114 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Cleland, C. Inland Shore Fishery of the Northern Great Lakes,1982 + + + + + + 22 + 115 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Cleland, Charles E. From Ethnohistory to Archaeology,1991 + + + + + + 22 + 116 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Cleland, Charles E. Rites of Conquest,1992 + + + + + + 22 + 117 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Cleland, C. Econ and Adaptive,1993 + + + + + + 22 + 118 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Clifton, James A. Lac Court Oreilles Band of Chippewa,1980 + + + + + + 22 + 119 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Clifton, James A. WI Death March…,1987 + + + + + + 22 + 120 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Curot, Michel. WI Fur Trader’s JL, 1903-1904,undated + + + + + + 22 + 121 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Densmore, Frances. Use of Plants by the Chippewa Ind., 1928,undated + + + + + + 22 + 122 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Dewdney, Selwyn. Sacred Scrolls of the Southern Ojibway,1975 + + + + + + 22 + 123 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Doty, James D. Northern WI in 1820, 1903,undated + + + + + + 22 + 124 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Doty, James. App. F: Acct of J Doty” in Narr. JL of Travels in 1820, 1953,undated + + + + + + 22 + 125 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Doyle, James Hon. Opinion and Order US v Bouchard,1978 + + + + + + 22 + 126 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Dunbar, Willis. MI: A History of the Wolverine State,1970 + + + + + + 22 + 127 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Gates, Charles (ed). Five Fur Traders of the NW, 1965,undated + + + + + + 22 + 128 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Gilman, Rhoda R. “Last Days of the Upper Miss. Fur Trade,” MN Hist.,1975 + + + + + + 22 + 129 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Gilman, Rhonda R. WI Mag of Hist. “Fur Trade in the Upper Miss. Valley”,1974 + + + + + + 22 + 130 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Henry, Alexander. Travels and Adventures in Canada… 1969,undated + + + + + + 22 + 131 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Hickerson, Harold. Chippewa Indians III. Ethnohist of Chippewa of Lake Superior,1974 + + + + + + 22 + 132 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Hill, Edward. American Indians: Guide to…,1981 + + + + + + 22 + 133 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Houghton, Douglas. JL, Letters and Reports of…, 1958,undated + + + + + + 22 + 134 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Johnson, Ida. MI Fur Trade, Black Letter Press,1971 + + + + + + 22 + 135 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Kappler, Charles J. Indian Treaties Vol. 2 ,1992 + + + + + + 22 + 136 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Kaups, Matti. Ojibwa Fisheries…,1984 + + + + + + 22 + 137 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Kaups, Matti. Commercialization of Resources…,1987 + + + + + + 22 + 138 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Kellogg, Louise. Early Narratives of the NW…,1917,undated + + + + + + 22 + 139 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Kohl, Johann. Kitchi-Gami: Life Among…,1985 + + + + + + 22 + 140 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Malhoit, Francois. WI Fur Traders JL, 1804-05, 1910,undated + + + + + + 22 + 141 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Mason, Phillip, ed. Schoolcraft’s Expedition to Lk. Itasca, 1958,undated + + + + + + 22 + 142 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: MacDonnell, John. Diary of J. MacDonnell, 1793, 1965,undated + + + + + + 22 + 143 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: McKenney, Thomas. Tour to the Lakes, 1959,undated + + + + + + 22 + 144 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Morris, Richard (ed.) Encyclopedia of Am. History, 1953,undated + + + + + + 22 + 145 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Nichols, John. Translation of Key Phrases in the Treaties of 1837 and 1855,undated + + + + + + 22 + 146 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Nute, Grace L. Am. Fur Co.’s Fishing Enterprise on Lake Superior, 1926,undated + + + + + + 22 + 147 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Parker, John (ed) JL of Jonathan Carver,1976 + + + + + + 22 + 148 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Prucha, Paul F. Great Father,1986 + + + + + + 22 + 149 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Sahlins, Marshall. Stone Age Economics,1972 + + + + + + 22 + 150 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Satz, Ronald. American Indian Policy in the Jacksonian Era,1975 + + + + + + 22 + 151 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Satz, Ronald. Carvey A. Harris, 1836-1839,1979 + + + + + + 22 + 152 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Sauer, Carl O. Seventeenth C. N Amer.,1980 + + + + + + 22 + 153 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Schoolcraft, HR Narrative JL of Travels in 1820,undated + + + + + + 22 + 154 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Schoolcraft, Henry R. Schoolcraft’s Expedition to Lake Itaska, 1953,undated + + + + + + 22 + 155 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Service, Elman. Primitive Social Organization,1971 + + + + + + 22 + 156 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Tanner, John. Narrative of the Captivity…, Edwin James, ed., 1956,undated + + + + + + 22 + 157 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Thwaites, Ruben G. (ed) Fur Trader’s JL 1803-04 by M. Curot, 1911,undated + + + + + + 22 + 158 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Trennert, R. Orlando Brown, 1849-1850,1979 + + + + + + 22 + 159 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Vennum, Thomas. Wild Rice and the Ojibway People,1988 + + + + + + 22 + 160 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: Warren, William. “History of Ojibway People.” MN HS Press,1984 + + + + + + 22 + 161 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: White, Bruce M. Ojibway Fur Trade Protocol,1987 + + + + + + 22 + 162 + Box 5 Fond du Lac, Calendar documents, Cleland reports, reference documents: US Dist. Court and Court of Appeals, Fond du Lac vs. Arne Carlson, Gov. of MN,1992-1995 + + + + + + 23 + 1 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: Index to and copy of Defendants First Supplementary Answers to Plaintiffs’ First set of Interrogatories,undated + + + + + + 23 + 2 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: Index to and copy of Defendants Answers to Plaintiffs’ First set of Requests for Admission, 2nd set of Interrogatories and Request for Production of Documents,undated + + + + + + 23 + 3 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 1 of 84,undated + + + + + + 23 + 4 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 2 of 84,undated + + + + + + 23 + 5 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 3 of 84,undated + + + + + + 23 + 6 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 4 of 84,undated + + + + + + 23 + 7 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 5 of 84,undated + + + + + + 23 + 8 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 6 of 84,undated + + + + + + 23 + 9 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 7 of 84,undated + + + + + + 23 + 10 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 8 of 84,undated + + + + + + 23 + 11 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 9 of 84,undated + + + + + + 23 + 12 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 10 of 84,undated + + + + + + 23 + 13 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 11 of 84,undated + + + + + + 23 + 14 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 12 of 84,undated + + + + + + 23 + 15 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 13 of 84,undated + + + + + + 23 + 16 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 14 of 84,undated + + + + + + 23 + 17 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 15 of 84,undated + + + + + + 23 + 18 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 16 of 84,undated + + + + + + 23 + 19 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 17 of 84,undated + + + + + + 23 + 20 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 18 of 84,undated + + + + + + 23 + 21 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 19 of 84,undated + + + + + + 23 + 22 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 20 of 84,undated + + + + + + 23 + 23 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 21 of 84,undated + + + + + + 23 + 24 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 22 of 84,undated + + + + + + 23 + 25 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 23 of 84,undated + + + + + + 23 + 26 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 24 of 84,undated + + + + + + 23 + 27 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 25 of 84,undated + + + + + + 23 + 28 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 26 of 84,undated + + + + + + 23 + 29 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 27 of 84,undated + + + + + + 23 + 30 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 28 of 84,undated + + + + + + 23 + 31 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 29 of 84,undated + + + + + + 23 + 32 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 30 of 84,undated + + + + + + 23 + 33 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 31 of 84,undated + + + + + + 23 + 34 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 32 of 84,undated + + + + + + 23 + 35 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 33 of 84,undated + + + + + + 23 + 36 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 34 of 84,undated + + + + + + 23 + 37 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 35 of 84,undated + + + + + + 23 + 38 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 36 of 84,undated + + + + + + 23 + 39 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 37 of 84,undated + + + + + + 23 + 40 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 38 of 84,undated + + + + + + 23 + 41 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 39 of 84,undated + + + + + + 23 + 42 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 40 of 84,undated + + + + + + 23 + 43 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 41 of 84,undated + + + + + + 23 + 44 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 42 of 84,undated + + + + + + 23 + 45 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 43 of 84,undated + + + + + + 23 + 46 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 44 of 84,undated + + + + + + 23 + 47 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 45 of 84,undated + + + + + + 23 + 48 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 46 of 84,undated + + + + + + 23 + 49 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 47 of 84,undated + + + + + + 23 + 50 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 48 of 84,undated + + + + + + 23 + 51 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 49 of 84,undated + + + + + + 23 + 52 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 50 of 84,undated + + + + + + 23 + 53 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 51 of 84,undated + + + + + + 23 + 54 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 52 of 84,undated + + + + + + 23 + 55 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 53 of 84,undated + + + + + + 23 + 56 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 54 of 84,undated + + + + + + 23 + 57 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 55 of 84,undated + + + + + + 23 + 58 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 56 of 84,undated + + + + + + 23 + 59 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 57 of 84,undated + + + + + + 23 + 60 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 58 of 84,undated + + + + + + 23 + 61 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 59 of 84,undated + + + + + + 23 + 62 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 60 of 84,undated + + + + + + 23 + 63 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 61 of 84,undated + + + + + + 23 + 64 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 62 of 84,undated + + + + + + 23 + 65 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 63 of 84,undated + + + + + + 23 + 66 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 64 of 84,undated + + + + + + 23 + 67 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 65 of 84,undated + + + + + + 23 + 68 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 66 of 84,undated + + + + + + 23 + 69 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 67 of 84,undated + + + + + + 23 + 70 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 68 of 84,undated + + + + + + 23 + 71 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 69 of 84,undated + + + + + + 23 + 72 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 70 of 84,undated + + + + + + 23 + 73 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 71 of 84,undated + + + + + + 23 + 74 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 72 of 84,undated + + + + + + 23 + 75 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 73 of 84,undated + + + + + + 23 + 76 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 74 of 84,undated + + + + + + 23 + 77 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 75 of 84,undated + + + + + + 23 + 78 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 76 of 84,undated + + + + + + 23 + 79 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 77 of 84,undated + + + + + + 23 + 80 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 78 of 84,undated + + + + + + 23 + 81 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 79 of 84,undated + + + + + + 23 + 82 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 80 of 84,undated + + + + + + 23 + 83 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 81 of 84,undated + + + + + + 23 + 84 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 82 of 84,undated + + + + + + 23 + 85 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 83 of 84,undated + + + + + + 23 + 86 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants Answer to First Set of Request Documents 84 of 84,undated + + + + + + 23 + 87 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 1 of 93,undated + + + + + + 23 + 88 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 2 of 93,undated + + + + + + 23 + 89 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 3 of 93,undated + + + + + + 23 + 90 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 4 of 93,undated + + + + + + 23 + 91 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 5 of 93,undated + + + + + + 23 + 92 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 6 of 93,undated + + + + + + 23 + 93 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 7 of 93,undated + + + + + + 23 + 94 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 8 of 93,undated + + + + + + 23 + 95 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 9 of 93,undated + + + + + + 23 + 96 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 10 of 93,undated + + + + + + 23 + 97 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 11 of 93,undated + + + + + + 23 + 98 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 12 of 93,undated + + + + + + 23 + 99 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 13 of 93,undated + + + + + + 23 + 100 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 14 of 93,undated + + + + + + 23 + 101 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 15 of 93,undated + + + + + + 23 + 102 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 16 of 93,undated + + + + + + 23 + 103 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 17 of 93,undated + + + + + + 23 + 104 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 18 of 93,undated + + + + + + 23 + 105 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 19 of 93,undated + + + + + + 23 + 106 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 20 of 93,undated + + + + + + 23 + 107 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 21 of 93,undated + + + + + + 23 + 108 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 22 of 93,undated + + + + + + 23 + 109 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 23 of 93,undated + + + + + + 23 + 110 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 24 of 93,undated + + + + + + 23 + 111 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 25 of 93,undated + + + + + + 23 + 112 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 26 of 93,undated + + + + + + 23 + 113 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 27 of 93,undated + + + + + + 23 + 114 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 28 of 93,undated + + + + + + 23 + 115 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 29 of 93,undated + + + + + + 23 + 116 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 30 of 93,undated + + + + + + 23 + 117 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 31 of 93,undated + + + + + + 23 + 118 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 32 of 93,undated + + + + + + 23 + 119 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 33 of 93,undated + + + + + + 23 + 120 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 34 of 93,undated + + + + + + 23 + 121 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 35 of 93,undated + + + + + + 23 + 122 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 36 of 93,undated + + + + + + 23 + 123 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 37 of 93,undated + + + + + + 23 + 124 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 38 of 93,undated + + + + + + 23 + 125 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 39 of 93,undated + + + + + + 23 + 126 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 40 of 93,undated + + + + + + 23 + 127 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 41 of 93,undated + + + + + + 23 + 128 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 42 of 93,undated + + + + + + 23 + 129 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 43 of 93,undated + + + + + + 23 + 130 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 44 of 93,undated + + + + + + 23 + 131 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 45 of 93,undated + + + + + + 23 + 132 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 46 of 93,undated + + + + + + 23 + 133 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 47 of 93,undated + + + + + + 23 + 134 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 48 of 93,undated + + + + + + 23 + 135 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 49 of 93,undated + + + + + + 23 + 136 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 50 of 93,undated + + + + + + 23 + 137 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 51 of 93,undated + + + + + + 23 + 138 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 52 of 93,undated + + + + + + 23 + 139 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 53 of 93,undated + + + + + + 23 + 140 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 54 of 93,undated + + + + + + 23 + 141 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 55 of 93,undated + + + + + + 23 + 142 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 56 of 93,undated + + + + + + 23 + 143 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 57 of 93,undated + + + + + + 23 + 144 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 58 of 93,undated + + + + + + 23 + 145 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 59 of 93,undated + + + + + + 23 + 146 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 60 of 93,undated + + + + + + 23 + 147 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 61 of 93,undated + + + + + + 23 + 148 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 62 of 93,undated + + + + + + 23 + 149 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 63 of 93,undated + + + + + + 23 + 150 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 64 of 93,undated + + + + + + 23 + 151 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 65 of 93,undated + + + + + + 23 + 152 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 66 of 93,undated + + + + + + 23 + 153 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 67 of 93,undated + + + + + + 23 + 154 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 68 of 93,undated + + + + + + 23 + 155 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 69 of 93,undated + + + + + + 23 + 156 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 70 of 93,undated + + + + + + 23 + 157 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 71 of 93,undated + + + + + + 23 + 158 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 72 of 93,undated + + + + + + 23 + 159 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 73 of 93,undated + + + + + + 23 + 160 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 74 of 93,undated + + + + + + 23 + 161 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 75 of 93,undated + + + + + + 23 + 162 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 76 of 93,undated + + + + + + 23 + 163 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 77 of 93,undated + + + + + + 23 + 164 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 78 of 93,undated + + + + + + 23 + 165 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 79 of 93,undated + + + + + + 23 + 166 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 80 of 93,undated + + + + + + 23 + 167 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 81 of 93,undated + + + + + + 23 + 168 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 82 of 93,undated + + + + + + 23 + 169 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 83 of 93,undated + + + + + + 23 + 170 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 84 of 93,undated + + + + + + 23 + 171 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 85 of 93,undated + + + + + + 23 + 172 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 86 of 93,undated + + + + + + 23 + 173 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 87 of 93,undated + + + + + + 23 + 174 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 88 of 93,undated + + + + + + 23 + 175 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 89 of 93,undated + + + + + + 23 + 176 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 90 of 93,undated + + + + + + 23 + 177 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 91 of 93,undated + + + + + + 23 + 178 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 92 of 93,undated + + + + + + 23 + 179 + Box 6 Fond du Lac, Calendar documents, Cleland reports, reference documents: Fond du Lac v. Carlson: State Documents cited in Defendants First Supplementary Answer Documents 93 of 93,undated + + + + + + 24 + 1 + Box 7 Fond du Lac, Defendant report, exhibit, depositions: FDLP-KC, Aug. 5, 1881,undated + + + + + + 24 + 2 + Box 7 Fond du Lac, Defendant report, exhibit, depositions: John A. Bardon Papers,undated + + + + + + 24 + 3 + Box 7 Fond du Lac, Defendant report, exhibit, depositions: Driben Exhibits,undated + + + + + + 24 + 4 + Box 7 Fond du Lac, Defendant report, exhibit, depositions: Lawson Chapter A Exhibits,undated + + + + + + 24 + 5 + Box 7 Fond du Lac, Defendant report, exhibit, depositions: Lawson Chapter B Exhibits,undated + + + + + + 24 + 6 + Box 7 Fond du Lac, Defendant report, exhibit, depositions: Lawson Chapter C Exhibits,undated + + + + + + 24 + 7 + Box 7 Fond du Lac, Defendant report, exhibit, depositions: Lawson Chapter D Exhibits, Chapter E Exhibits,undated + + + + + + 24 + 8 + Box 7 Fond du Lac, Defendant report, exhibit, depositions: Lawson Chapter F Exhibits,undated + + + + + + 25 + 1 + Box 8 Fond du Lac, Expert witness reports, court documents: (.5 cu.ft.): Printed Source: Indian People in the economy of N Eastern MN by Baumgartner and Bishop,undated + + + + + + 25 + 2 + Box 8 Fond du Lac, Expert witness reports, court documents: (.5 cu.ft.) : Published Source: WI Fur Traders JL, 1803-1804 by Curot, Michael,undated + + + + + + 25 + 3 + Box 8 Fond du Lac, Expert witness reports, court documents: Printed Source: (.5 cu.ft.); Commercialization of Resources by Kaups, Matti, Submitted March 6, 1907,undated + + + + + + 25 + 4 + Box 8 Fond du Lac, Expert witness reports, court documents: (.5 cu.ft.): Printed Source: Chippewa Indians III by Knuth, H. 1974,undated + + + + + + 25 + 5 + Box 8 Fond du Lac, Expert witness reports, court documents: (.5 cu.ft.): #5/29/159 D-Expert Witness: Driben Report: Revisionist History: Armstrong and the Executive or of Feb. 6, 1850,undated + + + + + + 25 + 6 + Box 8 Fond du Lac, Expert witness reports, court documents: (.5 cu.ft.): #5/29/159 D-Expert Witness: Driben Report: “FdL band/Chip lands + Treaty w/ Chip 1837.” Ex. 1 + 2,undated + + + + + + 25 + 7 + Box 8 Fond du Lac, Expert witness reports, court documents: (.5 cu.ft.): #5-29-591 D-Expert Witness: Driben Report: Exhibit I Affidavit,undated + + + + + + 25 + 8 + Box 8 Fond du Lac, Expert witness reports, court documents: (.5 cu.ft.): #5-29-159 D-Expert Witness: Lawson Report,undated + + + + + + 25 + 9 + Box 8 Fond du Lac, Expert witness reports, court documents: (.5 cu.ft.): #5-29-159 D-Expert Witness: Lawson Vitae,undated + + + + + + 25 + 10 + Box 8 Fond du Lac, Expert witness reports, court documents: (.5 cu.ft.): Fond du Lac vs. Arne Carlson, Governor of MN, CV 5-92-159,1993 + + + + + + 25 + 11 + Box 8 Fond du Lac, Expert witness reports, court documents: (.5 cu.ft.): Ronald N. Satz Research Report…Chippewa Treaties…,1994 + + + + + + 26 + 1 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M1 R3: 296-297, March 9, 1818,undated + + + + + + 26 + 2 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M1 R3: 298-299, March 17, 1818,undated + + + + + + 26 + 3 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M15 R4: 436-439, June 1, 1820,undated + + + + + + 26 + 4 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M1 R8: 5-6, Jan. 1, 1821,undated + + + + + + 26 + 5 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M1 R8: 244-246, March 31, 1821,undated + + + + + + 26 + 6 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M1 R8: 292-294. June 23, 1821,undated + + + + + + 26 + 7 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R304: 26-27, Nov. 13, 1824,undated + + + + + + 26 + 8 + Box 1 Forest County- Potawatomi, Notre Dame Project: AAPF, U3 (1828): 325-337, Mar. 21, 1826,undated + + + + + + 26 + 9 + Box 1 Forest County- Potawatomi, Notre Dame Project: ISL-MC, S1097, Brown Papers, July 10, 1826,undated + + + + + + 26 + 10 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R355: 761-64, Aug. 21, 1826,undated + + + + + + 26 + 11 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R420: 24, 1827,undated + + + + + + 26 + 12 + Box 1 Forest County- Potawatomi, Notre Dame Project: AAPF, U3 (1828): 230-232, Jan. 17, 1827,undated + + + + + + 26 + 13 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R304: 178-180, Feb. 24, 1827,undated + + + + + + 26 + 14 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M1 R20: 359-361, April 10, 1827,undated + + + + + + 26 + 15 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R.304: 186-187, May 5, 1827,undated + + + + + + 26 + 16 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R.304: 190-191, June 2, 1827,undated + + + + + + 26 + 17 + Box 1 Forest County- Potawatomi, Notre Dame Project: AAPF, V3 (1828): 188-193, Nov. 1, 1827,undated + + + + + + 26 + 18 + Box 1 Forest County- Potawatomi, Notre Dame Project: AAPF, V3 (1828): 320-325, Nov. 26, 1827,undated + + + + + + 26 + 19 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R354: n. f. n. Feb. 4, 1828,undated + + + + + + 26 + 20 + Box 1 Forest County- Potawatomi, Notre Dame Project: IHS-SL, M116, B1, F12, July 16, 1828,undated + + + + + + 26 + 21 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M1 R23: 241-243, July 25, 1828,undated + + + + + + 26 + 22 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M1 R23: 241-243, July 31, 1828,undated + + + + + + 26 + 23 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R354: 225, Sept. 21, 1828,undated + + + + + + 26 + 24 + Box 1 Forest County- Potawatomi, Notre Dame Project: MPHC V36 (1908): 565-566, Sept. 22, 1828, Cass, 1828,undated + + + + + + 26 + 25 + Box 1 Forest County- Potawatomi, Notre Dame Project: AAPF, V4 (1830): 156-162, Oct. 12, 1828,undated + + + + + + 26 + 26 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M1 R28: 531-535, Dec. 23, 1828,undated + + + + + + 26 + 27 + Box 1 Forest County- Potawatomi, Notre Dame Project: IHS- SL, M116, B1, F12, Dec. 25, 1828,undated + + + + + + 26 + 28 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R354: 234, Dec. 25, 1828,undated + + + + + + 26 + 29 + Box 1 Forest County- Potawatomi, Notre Dame Project: AAPF, V4 (1830): 534-546. [1829/ 1830], 1829/1830,undated + + + + + + 26 + 30 + Box 1 Forest County- Potawatomi, Notre Dame Project: NA RG75 Entry 523 [1829-1907] Register to Reserve File A, 1829-1907,undated + + + + + + 26 + 31 + Box 1 Forest County- Potawatomi, Notre Dame Project: NA RG75, Reserve File A, No. 96 [1829-1907], Monguago, 1829-1907,undated + + + + + + 26 + 32 + Box 1 Forest County- Potawatomi, Notre Dame Project: NA RG75 Reserve File A, No. 107 [1829-1907], Madeline Bertrand, 1829-1907,undated + + + + + + 26 + 33 + Box 1 Forest County- Potawatomi, Notre Dame Project: NA RG75, Reserve File A, No. 108 [1829-1907], Joseph Beard and Jr., 1829-1907,undated + + + + + + 26 + 34 + Box 1 Forest County- Potawatomi, Notre Dame Project: NA RG75, Reserve File A, No. 109 [1829-1907], Benjamin Bertrand, 1829-1907,undated + + + + + + 26 + 35 + Box 1 Forest County- Potawatomi, Notre Dame Project: NA RG75, Reserve File A, No. 110 [1829-1907], Laurent Bertrand, 1829-1907,undated + + + + + + 26 + 36 + Box 1 Forest County- Potawatomi, Notre Dame Project: NA RG75, Reserve File A: 111 [1829-1907], Therea Bertrand, 1829-1907,undated + + + + + + 26 + 37 + Box 1 Forest County- Potawatomi, Notre Dame Project: NA RG75 Reserve File A, No. 112 [1829-1907], Amable Bertrand, 1829-1907,undated + + + + + + 26 + 38 + Box 1 Forest County- Potawatomi, Notre Dame Project: NA RG75, Reserve File A, No. 116 [1829-1907], LaFrambois, 1829-1907,undated + + + + + + 26 + 39 + Box 1 Forest County- Potawatomi, Notre Dame Project: NA RG75, Reserve File A, No. 281 [1829-1907], St. Luke Bertrand, 1829-1907,undated + + + + + + 26 + 40 + Box 1 Forest County- Potawatomi, Notre Dame Project: NA RG75, Reserve File A, No. 281 ½, [1829-1907], Julie Ann Bertrand, 1829-1907,undated + + + + + + 26 + 41 + Box 1 Forest County- Potawatomi, Notre Dame Project: NA RG75, Reserve File A, No. 302 [1829-1907], Topenibe, 1829-1907,undated + + + + + + 26 + 42 + Box 1 Forest County- Potawatomi, Notre Dame Project: NA RG75, Reserve File A, No. 320 [1829-1907], Joseph Wolf, 1829-1907,undated + + + + + + 26 + 43 + Box 1 Forest County- Potawatomi, Notre Dame Project: NA RG75, Reserve File A, No. 373 [1829-1907], Madeline Bertrand, 1829-1907,undated + + + + + + 26 + 44 + Box 1 Forest County- Potawatomi, Notre Dame Project: ISA- from Micro.: Early Orig Surveys and Plats, Roll: St. Joe County, IN, 1829,undated + + + + + + 26 + 45 + Box 1 Forest County- Potawatomi, Notre Dame Project: SAM MR Map G.4070. 1829. F3, 1829, Map of the Territories of MI and WI, 1829,undated + + + + + + 26 + 46 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R420: 325, 341, [1829], 1829,undated + + + + + + 26 + 47 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R420: 272-273, Sept. 9, 1829,undated + + + + + + 26 + 48 + Box 1 Forest County- Potawatomi, Notre Dame Project: State, Letters to IN Land Offices Box 16-0-3, Tipton, Oct. 10, 1829,undated + + + + + + 26 + 49 + Box 1 Forest County- Potawatomi, Notre Dame Project: Laws of IN, 1830, Chp. LX IX: 11: 1-114, Chp. LXX: 114-116, Jan. 13, 1830, Jan. 29, 1830,undated + + + + + + 26 + 50 + Box 1 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deed, B: 449-52, June 7, 1830, July 7, 1832, May 8, 1834,undated + + + + + + 26 + 51 + Box 1 Forest County- Potawatomi, Notre Dame Project: ISA- Aud. State, Letters to IN Land Offices, Box 16-0-3, F: Tipton, July 9, 1830,undated + + + + + + 26 + 52 + Box 1 Forest County- Potawatomi, Notre Dame Project: NDA, Cal. Doc., II-4-d. July 13, 1830,undated + + + + + + 26 + 53 + Box 1 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, A: 333, ISL-from Micro, [circa Aug. 1830],undated + + + + + + 26 + 54 + Box 1 Forest County- Potawatomi, Notre Dame Project: NDA, Cal. Doc, II-4-d. Aug. 13, 1830,undated + + + + + + 26 + 55 + Box 1 Forest County- Potawatomi, Notre Dame Project: NDA, Cal. Doc, II-4-d, Aug. 17, 1830,undated + + + + + + 26 + 56 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M1 R27: 257-260, Aug. 27, 1830,undated + + + + + + 26 + 57 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R427: 11-12, Sept. 1, 1830,undated + + + + + + 26 + 58 + Box 1 Forest County- Potawatomi, Notre Dame Project: AAPF, V4 (1830): 546-550. Sept. 1, 1830,undated + + + + + + 26 + 59 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M1 R27: 83-85, Sept. 4, 1830,undated + + + + + + 26 + 60 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R420: 646-648. Sept. 7, 1830,undated + + + + + + 26 + 61 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M1 R27: 95-97, Sept. 12, 1830,undated + + + + + + 26 + 62 + Box 1 Forest County- Potawatomi, Notre Dame Project: ISA-Aud. State, MI Rd Lands, B7, Oct. 5, 1830,undated + + + + + + 26 + 63 + Box 1 Forest County- Potawatomi, Notre Dame Project: ISA-Aud. State MI Rd Lands, B7, Oct. 11, 1830,undated + + + + + + 26 + 64 + Box 1 Forest County- Potawatomi, Notre Dame Project: ISA- Aud. State, Letters to IN Land Offices Box 16-0-3, F: Tipton, Oct. 28, 1830,undated + + + + + + 26 + 65 + Box 1 Forest County- Potawatomi, Notre Dame Project: AAPF, V6 (1833): 147-153, Nov. 14, 1830,undated + + + + + + 26 + 66 + Box 1 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, A: 161-165. ISL-from Micro, Dec. 6, 1830,undated + + + + + + 26 + 67 + Box 1 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, C: 388 (ISL-from Micro), Dec. 13, 1830,undated + + + + + + 26 + 68 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M1 R27: 501, Dec. 14, 1830,undated + + + + + + 26 + 69 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M1 R27: 503-504, Dec. 16, 1830,undated + + + + + + 26 + 70 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M1 R27: 507, Dec. 16, 1830,undated + + + + + + 26 + 71 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M1 R27: 571-573, Dec. 17, 1830,undated + + + + + + 26 + 72 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R420: 527-528 [1831], 1831,undated + + + + + + 26 + 73 + Box 1 Forest County- Potawatomi, Notre Dame Project: AAPF, V6 (1833): 154-155, Jan. 14, 1831,undated + + + + + + 26 + 74 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R421: 19, Jan. 20, 1831,undated + + + + + + 26 + 75 + Box 1 Forest County- Potawatomi, Notre Dame Project: ISA-Aud. State, MI Rd Lands, B7, Feb. 2, 1831,undated + + + + + + 26 + 76 + Box 1 Forest County- Potawatomi, Notre Dame Project: NDA, Cal Doc, II-4-d, Feb. 28, 1831,undated + + + + + + 26 + 77 + Box 1 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds [V: 470], March 1, 1831,undated + + + + + + 26 + 78 + Box 1 Forest County- Potawatomi, Notre Dame Project: US Dept. of Interior, BLM, E Statement Vol. 1, p. 439, March 1, 1831,undated + + + + + + 26 + 79 + Box 1 Forest County- Potawatomi, Notre Dame Project: ISA-Aud. State, MI Rd Lands, B7, March 31, 1831,undated + + + + + + 26 + 80 + Box 1 Forest County- Potawatomi, Notre Dame Project: NDA, Cal Doc II-4-d, April 11, 1831,undated + + + + + + 26 + 81 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R421: 10, Aug. 23, 1831,undated + + + + + + 26 + 82 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R354: 442. Oct. 3, 1831,undated + + + + + + 26 + 83 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M1 R29: 21-23, Oct. 22, 1831,undated + + + + + + 26 + 84 + Box 1 Forest County- Potawatomi, Notre Dame Project: NDA, Cal. Doc., II-4-c, [1832], 1832,undated + + + + + + 26 + 85 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R421: 16-17, Jan. 23, 1832,undated + + + + + + 26 + 86 + Box 1 Forest County- Potawatomi, Notre Dame Project: Laws of IN, Chp. CXXVII, p. 122-127, Feb. 2, 1832,undated + + + + + + 26 + 87 + Box 1 Forest County- Potawatomi, Notre Dame Project: Laws of IN, 1832, Chp. CLXXXIV, p. 237, Feb. 2, 1832,undated + + + + + + 26 + 88 + Box 1 Forest County- Potawatomi, Notre Dame Project: Catholic Telegraph, Vol. 1, No. 29: 231, May 5, 1832,undated + + + + + + 26 + 89 + Box 1 Forest County- Potawatomi, Notre Dame Project: ISA-Aud. State Land Dept. from Micro, MI Rd Lands R.52: 563, June 9, 1832,undated + + + + + + 26 + 90 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R354: 478-479, June 18, 1832,undated + + + + + + 26 + 91 + Box 1 Forest County- Potawatomi, Notre Dame Project: NDA, Cal Doc. VI-3-c-4, June 29, 1832,undated + + + + + + 26 + 92 + Box 1 Forest County- Potawatomi, Notre Dame Project: SJCC-RD, Deeds, B: 449-51, July 7, 1832,undated + + + + + + 26 + 93 + Box 1 Forest County- Potawatomi, Notre Dame Project: Catholic Telegraph, Vol. 1, No. 39: 311, July 14, 1832,undated + + + + + + 26 + 94 + Box 1 Forest County- Potawatomi, Notre Dame Project: ISL-MC, L160, Tipton Papers, Sept. 15, 1832,undated + + + + + + 26 + 95 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R421: n. f. n. Oct. 9, 1832,undated + + + + + + 26 + 96 + Box 1 Forest County- Potawatomi, Notre Dame Project: ISA-Aud. State, Land Dept. from Micro, MI Rd Lands R52: 623, Oct. 17, 1832,undated + + + + + + 26 + 97 + Box 1 Forest County- Potawatomi, Notre Dame Project: ISA-Aud. State, Land Dept. from Micro, MI Rd Lands R52: 624, Oct. 17, 1832,undated + + + + + + 26 + 98 + Box 1 Forest County- Potawatomi, Notre Dame Project: ISA-Aud. State Land Dept. from Micro: MI Rd Lands R52: 697, Oct. 18, 1832,undated + + + + + + 26 + 99 + Box 1 Forest County- Potawatomi, Notre Dame Project: ISA- Aud. State Land Dept. from Micro MI Rd Lands R52: 810, Nov. 10, 1832,undated + + + + + + 26 + 100 + Box 1 Forest County- Potawatomi, Notre Dame Project: ISA- Aud. State Land Dept. from Micro MI Rd Lands R52: 811, Nov. 10, 1832,undated + + + + + + 26 + 101 + Box 1 Forest County- Potawatomi, Notre Dame Project: ISA-Aud. State, Land Dept. from Micro. MI Rd Lands, R52: 821, Nov. 14, 1832,undated + + + + + + 26 + 102 + Box 1 Forest County- Potawatomi, Notre Dame Project: Laws of IN 1832, p. 292, Dec. 1, 1832,undated + + + + + + 26 + 103 + Box 1 Forest County- Potawatomi, Notre Dame Project: NDA, Cal. Doc, II-4-c, Dec. 2, 1832,undated + + + + + + 26 + 104 + Box 1 Forest County- Potawatomi, Notre Dame Project: ISL-MC, L160, Tipton Papers, Dec. 15, 1832,undated + + + + + + 26 + 105 + Box 1 Forest County- Potawatomi, Notre Dame Project: ISL-MC, L160, Tipton Papers, Dec/ Aug. 29, 1832,undated + + + + + + 26 + 106 + Box 1 Forest County- Potawatomi, Notre Dame Project: ISL-MC, L160, Tipton Papers, Jan. 8, 1833,undated + + + + + + 26 + 107 + Box 1 Forest County- Potawatomi, Notre Dame Project: ISL-MS, L160, Tipton Papers, Jan. 12, 1833,undated + + + + + + 26 + 108 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R421: 282-284, Jan. 14, 1833,undated + + + + + + 26 + 109 + Box 1 Forest County- Potawatomi, Notre Dame Project: ISL-MS, L160, Tipton Papers, Jan. 17, 1833,undated + + + + + + 26 + 110 + Box 1 Forest County- Potawatomi, Notre Dame Project: ISL-MC, 160, Tipton Papers, Jan. 26, 1833,undated + + + + + + 26 + 111 + Box 1 Forest County- Potawatomi, Notre Dame Project: Laws of IN 1833, Chp. XXXIV: 34-35, Jan. 30, 1833,undated + + + + + + 26 + 112 + Box 1 Forest County- Potawatomi, Notre Dame Project: Laws of IN 1833, Ch. LXIXI: 75-79, Feb. 2, 1833,undated + + + + + + 26 + 113 + Box 1 Forest County- Potawatomi, Notre Dame Project: ISL-MC, L160, Tipton Papers, Feb. 28, 1833,undated + + + + + + 26 + 114 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M21 R10: 210, April 8, 1833,undated + + + + + + 26 + 115 + Box 1 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, L: 476, June 8, 1833,undated + + + + + + 26 + 116 + Box 1 Forest County- Potawatomi, Notre Dame Project: SJCC, RD-Deeds, A: 333-337, (LSL-from Micro.), July 23, 1833,undated + + + + + + 26 + 117 + Box 1 Forest County- Potawatomi, Notre Dame Project: IHS-SL, M204, B8, F15, July 31, 1833,undated + + + + + + 26 + 118 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R354: 654-5, Aug. 27, 1833,undated + + + + + + 26 + 119 + Box 1 Forest County- Potawatomi, Notre Dame Project: NDA, Cal. Doc III- 2-g-37, Sept. 1833,undated + + + + + + 26 + 120 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R354: 725-726. Sept. 2, 1833,undated + + + + + + 26 + 121 + Box 1 Forest County- Potawatomi, Notre Dame Project: Catholic Telegraph, Vol. II, No. 48: 382-383, Sept. 28, 1833,undated + + + + + + 26 + 122 + Box 1 Forest County- Potawatomi, Notre Dame Project: US Catholic Almanac, p. 56, 122, 1834,undated + + + + + + 26 + 123 + Box 1 Forest County- Potawatomi, Notre Dame Project: Laws of IN, 1834, Ch. CXXV: 199-200, Feb. 1, 1834,undated + + + + + + 26 + 124 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R354: 1044-45, Feb. 5, 1834,undated + + + + + + 26 + 125 + Box 1 Forest County- Potawatomi, Notre Dame Project: NDA, Cal. Doc, II-4-e, Feb. 15, 1834,undated + + + + + + 26 + 126 + Box 1 Forest County- Potawatomi, Notre Dame Project: SJCC-RD, Deeds, B: 451-52. May 8, 1834,undated + + + + + + 26 + 127 + Box 1 Forest County- Potawatomi, Notre Dame Project: NDA, Cal. Doc. II-4-e, May 10, 1834,undated + + + + + + 26 + 128 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R354: 920, June 19, 1834,undated + + + + + + 26 + 129 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R354: 838-839. July 3, 1834,undated + + + + + + 26 + 130 + Box 1 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, B: 117-120 (ISL from Micro), July 15, 1834,undated + + + + + + 26 + 131 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M21 R13: 201, July 16, 1834,undated + + + + + + 26 + 132 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M21 R13: 203. July 16, 1834,undated + + + + + + 26 + 133 + Box 1 Forest County- Potawatomi, Notre Dame Project: IHS-SL, M204, B1, F26, Sept. 8, 1834,undated + + + + + + 26 + 134 + Box 1 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, F:105, (ISL-from Micro), Sept. 16, 1834,undated + + + + + + 26 + 135 + Box 1 Forest County- Potawatomi, Notre Dame Project: NDA, Cal. Doc, II-4-e, Sept. 22, 1834,undated + + + + + + 26 + 136 + Box 1 Forest County- Potawatomi, Notre Dame Project: ISL-MC, S862, Per-McAvoy, [1835-1836], 1835-1836,undated + + + + + + 26 + 137 + Box 1 Forest County- Potawatomi, Notre Dame Project: SAM MR MAP G41 DO, 1835 M57, (1835), 1835,undated + + + + + + 26 + 138 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R355: 180-181, [circa 1835], 1835,undated + + + + + + 26 + 139 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R355: 244. [1835], 1835,undated + + + + + + 26 + 140 + Box 1 Forest County- Potawatomi, Notre Dame Project: NDA, Cal. Doc., III-2-g-55. Jan. 8, 1835,undated + + + + + + 26 + 141 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R427: 14-17. Jan. 15, 1835,undated + + + + + + 26 + 142 + Box 1 Forest County- Potawatomi, Notre Dame Project: NDA, Cal Doc, IV-3-1, May 28, 1835,undated + + + + + + 26 + 143 + Box 1 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, B: 442-443, (ISL- from Micro), June 17/ Sept. 28, 1835 ,undated + + + + + + 26 + 144 + Box 1 Forest County- Potawatomi, Notre Dame Project: US Dept. of Interior, BLM, Eastern Statement, Vol. 1, p. 439, Aug. 14, 1835,undated + + + + + + 26 + 145 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R361: 90, Oct. 20, 1835,undated + + + + + + 26 + 146 + Box 1 Forest County- Potawatomi, Notre Dame Project: AAPF, V 8 (1835): 318-328. Nov. 26, 1835,undated + + + + + + 26 + 147 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M21 R17: 384-385. Jan. 9, 1836,undated + + + + + + 26 + 148 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M21 R17: 458-59. Jan. 25, 1836,undated + + + + + + 26 + 149 + Box 1 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, C: 70, (ISL-from Micro), Feb. 9, 1836,undated + + + + + + 26 + 150 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R355: 533-534, Feb. 18, 1836,undated + + + + + + 26 + 151 + Box 1 Forest County- Potawatomi, Notre Dame Project: NDA, Cal Doc, III-2-g-76, Feb. 25, 1836,undated + + + + + + 26 + 152 + Box 1 Forest County- Potawatomi, Notre Dame Project: ISL-MC, L160, Tipton Papers, March 2, 1836,undated + + + + + + 26 + 153 + Box 1 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, E: 489, (ISL-from Micro), March 17, 1836,undated + + + + + + 26 + 154 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM T494 R3: 352-353. March 21, 1836,undated + + + + + + 26 + 155 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R355: 687-690. April 14, 1836,undated + + + + + + 26 + 156 + Box 1 Forest County- Potawatomi, Notre Dame Project: NDA, Cal Doc III-2-g-79, June 5, 1836,undated + + + + + + 26 + 157 + Box 1 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, C: 194. July 1, 1836,undated + + + + + + 26 + 158 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R354:944-945. Aug. 18, 1836,undated + + + + + + 26 + 159 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R355: 604-608. Sept. 29, 1836,undated + + + + + + 26 + 160 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R355: 677-686. Oct. 1836,undated + + + + + + 26 + 161 + Box 1 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, F.100, (ISL-from Micro), Oct. 1, 1836,undated + + + + + + 26 + 162 + Box 1 Forest County- Potawatomi, Notre Dame Project: NDA, Cal Doc II-4-F, Oct. 13, 1836,undated + + + + + + 26 + 163 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R355: 691-709, Oct. 18, 1836,undated + + + + + + 26 + 164 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R355: 708-9, Nov. 1836,undated + + + + + + 26 + 165 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R355: 774-775, 777-778, Nov. 4, 1836,undated + + + + + + 26 + 166 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R422: 248-9. Nov. 9, 1836,undated + + + + + + 26 + 167 + Box 1 Forest County- Potawatomi, Notre Dame Project: NAM M234 R355: 711-717. Nov. 15, 1836,undated + + + + + + 26 + 168 + Box 1 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, C: 387, ISL- from Micro, Dec. 13, 1836,undated + + + + + + 26 + 169 + Box 1 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, D: 246, (ISL-from Micro), Dec. 14, 1836,undated + + + + + + 26 + 170 + Box 1 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, F: 393-4. (ISL-from Micro), Dec. 30, 1836,undated + + + + + + 27 + 1 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R355: 824-828. Feb. 12, 1837,undated + + + + + + 27 + 2 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, (ISL- from Micro), March 2, 1837,undated + + + + + + 27 + 3 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R355: 1249-1251. April 6, 1837,undated + + + + + + 27 + 4 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R355: 1250-1251. April 6, 1837,undated + + + + + + 27 + 5 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R361: n. f. n. April 18, 1837,undated + + + + + + 27 + 6 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R361: n. f. n. May 11, 1837,undated + + + + + + 27 + 7 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R361: n. f. n. May 13, 1837,undated + + + + + + 27 + 8 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R361: n. f. n. May 16/ 26, 1837,undated + + + + + + 27 + 9 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R361: 88, May 20, 1837,undated + + + + + + 27 + 10 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R361: n. f. n. May 31, 1837,undated + + + + + + 27 + 11 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R361: 91-92. June 5, 1837,undated + + + + + + 27 + 12 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, F: 103, (ISL-from Micro), June 8 and 13, 1837,undated + + + + + + 27 + 13 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, G: 476, ISL-from Micro, June 12, 1837,undated + + + + + + 27 + 14 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R355: 1040-1047. June 22, 1837,undated + + + + + + 27 + 15 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R355: 944-947. June 27, 1837,undated + + + + + + 27 + 16 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, E: 248-249. July 17, 1837,undated + + + + + + 27 + 17 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R422: 721-31, 733-734, 739, 744-45, 764. Sept. 15, 1837,undated + + + + + + 27 + 18 + Box 2 Forest County- Potawatomi, Notre Dame Project: ISL-MC, S862, McAvoy, Sept. 30, 1837,undated + + + + + + 27 + 19 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, F: 718, March 8, 1838,undated + + + + + + 27 + 20 + Box 2 Forest County- Potawatomi, Notre Dame Project: ISL-MC, L160, Tipton Papers, B15, Sept. 2, 1838,undated + + + + + + 27 + 21 + Box 2 Forest County- Potawatomi, Notre Dame Project: ISL-MC, L160, Tipton Papers, B15, Dec. 17, 1838,undated + + + + + + 27 + 22 + Box 2 Forest County- Potawatomi, Notre Dame Project: ISL-MC, L160, Tipton Papers, B15, Dec. 20, 1838 (Folder 1 of 2),undated + + + + + + 27 + 23 + Box 2 Forest County- Potawatomi, Notre Dame Project: ISL-MC, L160, Tipton Papers, B15, Dec. 20, 1838 (Folder 2 of 2),undated + + + + + + 27 + 24 + Box 2 Forest County- Potawatomi, Notre Dame Project: ISL-MC, L160, Tipton Papers, B15, Dec. 29, 1838,undated + + + + + + 27 + 25 + Box 2 Forest County- Potawatomi, Notre Dame Project: AAPF, U12 (1839): 379-408. 1839,undated + + + + + + 27 + 26 + Box 2 Forest County- Potawatomi, Notre Dame Project: ISL-MC, L160, Tipton Papers, B16, Jan. 25, 1839,undated + + + + + + 27 + 27 + Box 2 Forest County- Potawatomi, Notre Dame Project: ISL-MC, L160, Tipton Papers, B16, Jan. 26, 1839,undated + + + + + + 27 + 28 + Box 2 Forest County- Potawatomi, Notre Dame Project: ISL-MC, L160, Tipton Papers, B16, March 30, 1839,undated + + + + + + 27 + 29 + Box 2 Forest County- Potawatomi, Notre Dame Project: ISL-MC, L160, Tipton Papers, B16, May 18, 1839,undated + + + + + + 27 + 30 + Box 2 Forest County- Potawatomi, Notre Dame Project: NDA, Cal Doc, III-2-g-101. May 20, 1839,undated + + + + + + 27 + 31 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, E: 662, June 11, 1839,undated + + + + + + 27 + 32 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R427: 299-301. Aug. 2, 1839,undated + + + + + + 27 + 33 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, M: 525 (ISL-from Micro), Aug. 14, 1839,undated + + + + + + 27 + 34 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R427: 302-304, Aug. 27, 1839,undated + + + + + + 27 + 35 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R427: 305-307. Sept. 28, 1839,undated + + + + + + 27 + 36 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R427: 308-312. Oct. 7, 1839,undated + + + + + + 27 + 37 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R361: 413-416. Jan. 4, 1840,undated + + + + + + 27 + 38 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R361: 401-403. Feb. 26, 1840,undated + + + + + + 27 + 39 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M6 R21: 460-461. Feb. 27, 1840,undated + + + + + + 27 + 40 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R361: 436-438. April 7, 1840,undated + + + + + + 27 + 41 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R361: 442-444. June 29, 1840,undated + + + + + + 27 + 42 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, F: 520. Aug. 1, 1840,undated + + + + + + 27 + 43 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, F: 519 (ISL-from Micro), Aug. 14, 1840,undated + + + + + + 27 + 44 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R361: 368-371. Aug. 24, 1840,undated + + + + + + 27 + 45 + Box 2 Forest County- Potawatomi, Notre Dame Project: AAPF, UIS (1843): 46-51. [1841],undated + + + + + + 27 + 46 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R427: 438-41. Jan. 15, 1841,undated + + + + + + 27 + 47 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, F818-9 (ISL-from Micro), May 31, 1841,undated + + + + + + 27 + 48 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, B: 80-81 (ISL-from Micro), Aug. 4, 1841,undated + + + + + + 27 + 49 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, G: 182-3 (ISL-from Micro), Sept. 13, 1841,undated + + + + + + 27 + 50 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R361: 480-481. Nov. 17, 1841,undated + + + + + + 27 + 51 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R427: 472-4. April 9, 1842,undated + + + + + + 27 + 52 + Box 2 Forest County- Potawatomi, Notre Dame Project: NDA, Cal Doc II-4-h. Dec. 1, 1842,undated + + + + + + 27 + 53 + Box 2 Forest County- Potawatomi, Notre Dame Project: NDA, Cal Doc III.-2-g-105. Dec. 11, 1842,undated + + + + + + 27 + 54 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds: 633 (ISL-from Micro), Dec. 27, 1842,undated + + + + + + 27 + 55 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, L391-392, ISL-from Micro, Feb. 27, 1843,undated + + + + + + 27 + 56 + Box 2 Forest County- Potawatomi, Notre Dame Project: Local Laws of IN 1844, Chap XVIII: 35, 44, Jan. 15, 1844,undated + + + + + + 27 + 57 + Box 2 Forest County- Potawatomi, Notre Dame Project: Laws of IN 1844, Chp XXXIII: 59-60, Chp XXXIV: 61-62, Jan. 15, 1844,undated + + + + + + 27 + 58 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, H560 (ISL-from Micro), Sept. 19, 1844,undated + + + + + + 27 + 59 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R427: 669-670. Oct. 12, 1844,undated + + + + + + 27 + 60 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M1 R58: 351-355. Jan. 14, 1845,undated + + + + + + 27 + 61 + Box 2 Forest County- Potawatomi, Notre Dame Project: NDA, Cal Doc, III-2-h-5. Jan. 24, 1845,undated + + + + + + 27 + 62 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M1 R58: 287. Feb. 19, 1845,undated + + + + + + 27 + 63 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M1 R58: 231, March 29, 1845,undated + + + + + + 27 + 64 + Box 2 Forest County- Potawatomi, Notre Dame Project: NDA, Cal Doc, III-2-h-5. April 19, 1845,undated + + + + + + 27 + 65 + Box 2 Forest County- Potawatomi, Notre Dame Project: NDA, Cal Doc, III-2-h-5. May 4, 1845,undated + + + + + + 27 + 66 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R361: 522-528. June 18, 1845,undated + + + + + + 27 + 67 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, J: 226. July 24, 1845,undated + + + + + + 27 + 68 + Box 2 Forest County- Potawatomi, Notre Dame Project: NDA C2CF Stephen Badin Papers. Nov. 3, 1845,undated + + + + + + 27 + 69 + Box 2 Forest County- Potawatomi, Notre Dame Project: NDA, M2CF, Stephen Badin Papers, Nov. 3, 1845,undated + + + + + + 27 + 70 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M1 R40: 50. Nov. 15, 1845,undated + + + + + + 27 + 71 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R361: 520-521. Dec. 29, 1845,undated + + + + + + 27 + 72 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, J: 496, ISL-from Micro, Feb. 17, 1846,undated + + + + + + 27 + 73 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M1 R40: 149, Nov. 12, 1846,undated + + + + + + 27 + 74 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M1 R61: 29-30. Jan. 26, 1847,undated + + + + + + 27 + 75 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, L442, ISL-from Micro, May 7, 1847,undated + + + + + + 27 + 76 + Box 2 Forest County- Potawatomi, Notre Dame Project: NDA, Cal Doc III-2-h-26. Nov. 13, 1847,undated + + + + + + 27 + 77 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R361: 544-548. Nov. 22, 1847,undated + + + + + + 27 + 78 + Box 2 Forest County- Potawatomi, Notre Dame Project: Abstract of Wills, Vol. 2 and 3, 1830-1870, St. Joseph Co., IN, April 22, 1848,undated + + + + + + 27 + 79 + Box 2 Forest County- Potawatomi, Notre Dame Project: NDA, Cal Doc, V-5-j-13. Dec. 20, 1848,undated + + + + + + 27 + 80 + Box 2 Forest County- Potawatomi, Notre Dame Project: NDA, Cal Doc. III-2-h-[29], 1849,undated + + + + + + 27 + 81 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, AA: 212. [before Nov. 1849], 1849,undated + + + + + + 27 + 82 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M234 R361: 569-570. Dec. 24, 1849,undated + + + + + + 27 + 83 + Box 2 Forest County- Potawatomi, Notre Dame Project: NAM M1 R40: 413, April 2, 1850,undated + + + + + + 27 + 84 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, P: 174, ISL-from Micro, May 23, 1850,undated + + + + + + 27 + 85 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RD, Deeds, P: 539, ISL-from Micro, Dec. 9, 1851,undated + + + + + + 27 + 86 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, S: 222, ISL-from Micro, Jan. 2, 1852,undated + + + + + + 27 + 87 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, Q: 56, ISL-from Micro, Jan. 7, 1852,undated + + + + + + 27 + 88 + Box 2 Forest County- Potawatomi, Notre Dame Project: NDA, Cal Doc, III-2-h-34, May 29, 1852,undated + + + + + + 27 + 89 + Box 2 Forest County- Potawatomi, Notre Dame Project: NDA, Cal Doc, III-2-h-34. July 10, 1852,undated + + + + + + 27 + 90 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, S: 293-294, ISL-from Micro, May 10, 1853,undated + + + + + + 27 + 91 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, S: 223-4, ISL-from Micro, July 25, 1853,undated + + + + + + 27 + 92 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, S: 331, ISL-from Micro, Sept. 14, 1853,undated + + + + + + 27 + 93 + Box 2 Forest County- Potawatomi, Notre Dame Project: NDA, Cal Doc. II-4-L, Sept. 15, 1853,undated + + + + + + 27 + 94 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, S: 337, ISL-from Micro, Oct. 10, 1853,undated + + + + + + 27 + 95 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, U: 471, Feb. 20, 1855,undated + + + + + + 27 + 95 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, U: 472, April 4, 1855,undated + + + + + + 27 + 96 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, U: 618-619. June 4, 1855,undated + + + + + + 27 + 97 + Box 2 Forest County- Potawatomi, Notre Dame Project: NDA, Cal Doc, VI-1-6-11, Sept. 14, 1855,undated + + + + + + 27 + 98 + Box 2 Forest County- Potawatomi, Notre Dame Project: NDA, Cal Doc, II-4-m, Sept. 29, 1855,undated + + + + + + 27 + 99 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, X: 102, ISL-from Micro, 1856,undated + + + + + + 27 + 100 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, Z: 80, ISL-from Micro, Jan. 5, 1858,undated + + + + + + 27 + 101 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, AC: 462, March 22, 1858,undated + + + + + + 27 + 102 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, Z: 81, ISL-from Micro, June 14, 1858,undated + + + + + + 27 + 103 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, Z: 85, ISL-from Micro, Oct. 5/ Sept. 3, 1858,undated + + + + + + 27 + 104 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RD, AA: 574. June 24, 1859,undated + + + + + + 27 + 105 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, AA 572-573. Mar. 20, 1860,undated + + + + + + 27 + 106 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, AA 573-574. Mar. 20, 1860,undated + + + + + + 27 + 107 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, AB: 380, ISL-from Micro, Jan. 18, 1861,undated + + + + + + 27 + 108 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, ISL-from Micro, Jan. 2, 1862,undated + + + + + + 27 + 109 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, ISL-from Micro, Aug. 8, 1862,undated + + + + + + 27 + 110 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, AD: 327, Oct. 24, 1862,undated + + + + + + 27 + 111 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, ISL-from Micro, Dec. 10, 1862,undated + + + + + + 27 + 112 + Box 2 Forest County- Potawatomi, Notre Dame Project: NDA, Cal Doc III-2-k-1, April 19, 1864,undated + + + + + + 27 + 113 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, M: 110, Jan. 8, 1868,undated + + + + + + 27 + 114 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Deeds, M: 263, April 10, 1868,undated + + + + + + 27 + 115 + Box 2 Forest County- Potawatomi, Notre Dame Project: NDA, Cal Doc, VI-3-c-4. April 28, 1881,undated + + + + + + 27 + 116 + Box 2 Forest County- Potawatomi, Notre Dame Project: NDA, Cal Doc XI-1-d, Dec. 24, 1886,undated + + + + + + 27 + 117 + Box 2 Forest County- Potawatomi, Notre Dame Project: SJCC-RO, Plat Book 4, pg. 36, Dec. 12, 1888,undated + + + + + + 27 + 118 + Box 2 Forest County- Potawatomi, Notre Dame Project: ISA-Aud. State, Land Dept. from Micro 401-D-4. Atlas of Sections, [Feb. 21, 1914],undated + + + + + + 27 + 119 + Box 2 Forest County- Potawatomi, Notre Dame Project: IN Claims Comm. Ind. of Ill, Ohio, IN, Southern MI and Southern WI, 1917, Map of IN, Treaty of Oct. 1818, 1917,undated + + + + + + 27 + 120 + Box 2 Forest County- Potawatomi, Notre Dame Project: IN Bull. Of Charities and Corrections, No. 144: 9, State of IN, [March 1926],undated + + + + + + 27 + 121 + Box 2 Forest County- Potawatomi, Notre Dame Project: NDA, PPOT, F: “Paper Re: Claims against gout”,Sept. 22, 1983 + + + + + + 27 + 122 + Box 2 Forest County- Potawatomi, Notre Dame Project: NDA, M2cF, Badin Papers,undated + + + + + + 27 + 123 + Box 2 Forest County- Potawatomi, Notre Dame Project: S Bend Tribune Publication, Discover: S Bend/ Mishawaka and Surrounding Communities,2004 + + + + + + 27 + 124 + Box 2 Forest County- Potawatomi, Notre Dame Project: Historical Background of S Bend and St. Joseph Co. in Northern IN, [1927],undated + + + + + + 27 + 125 + Box 2 Forest County- Potawatomi, Notre Dame Project: Badin, Stephen. Letters from… 1908,undated + + + + + + 27 + 126 + Box 2 Forest County- Potawatomi, Notre Dame Project: Baroux, Rev. Louis, Early Indian Mission, 1913,undated + + + + + + 27 + 127 + Box 2 Forest County- Potawatomi, Notre Dame Project: Cunningham, Wm., Land of Four Flags: Early History of the St. Jos Area Valley, 1961,undated + + + + + + 27 + 128 + Box 2 Forest County- Potawatomi, Notre Dame Project: Dickason, D. H., ‘Chief Simon Pokagon: the Indian Longfellow.” IN Mag Hist. V. LVII, N2, 127-140, June 1961,undated + + + + + + 27 + 129 + Box 2 Forest County- Potawatomi, Notre Dame Project: Dillon, John B. Excerpts from History of IN from 1816 to 1856, 1859,undated + + + + + + 27 + 130 + Box 2 Forest County- Potawatomi, Notre Dame Project: Dowagiac Daily News, Center, Edition, Oct. 13, 1948,undated + + + + + + 27 + 131 + Box 2 Forest County- Potawatomi, Notre Dame Project: Driscoll, David R. Stephen T. Badin Priest of Fron. Kentucky, Filson Club Hist. Quar. V: XXX1: 243-266, 1957,undated + + + + + + 27 + 132 + Box 2 Forest County- Potawatomi, Notre Dame Project: Dunn, J. R. Jr. 1888/ IN- Redemption from Slavery, 1916,undated + + + + + + 27 + 133 + Box 2 Forest County- Potawatomi, Notre Dame Project: Fesler, James W. Sept. “City Directories Tell Story of S. Bend” IN Mag of Hist. V: XXV, No. 3, 1939,undated + + + + + + 27 + 134 + Box 2 Forest County- Potawatomi, Notre Dame Project: Flannery, Harry W., “Notre Dame- Antecedents and Development” Mid-American Vol. IV (192_): 405-411. 1920s,undated + + + + + + 27 + 135 + Box 2 Forest County- Potawatomi, Notre Dame Project: Howe, Frances R. Story of a French Homestead in the Old NW, 1907,undated + + + + + + 27 + 136 + Box 2 Forest County- Potawatomi, Notre Dame Project: Howard, Timothy, History of St. Joseph County, IN, Vol. 1 and 2, 1907,undated + + + + + + 27 + 137 + Box 2 Forest County- Potawatomi, Notre Dame Project: Hulst, C. S. Indian Sketches: Pere Marquette and the Last of the Potawatomi Indians, 1912,undated + + + + + + 27 + 138 + Box 2 Forest County- Potawatomi, Notre Dame Project: ISL-MC, S862, Per-McAvoy, “Indian Missions of Marshall Co.,” [before 1949],undated + + + + + + 27 + 139 + Box 2 Forest County- Potawatomi, Notre Dame Project: McKee, Irving. “Centennial of the Trail of Death.” IN Mag of Hist Vol. XXXV, No. 1, 1939,undated + + + + + + 27 + 140 + Box 2 Forest County- Potawatomi, Notre Dame Project: McNamara, Wm. Catholic Church on the Northern IN Frontier 1789-1844, 1931,undated + + + + + + 27 + 141 + Box 2 Forest County- Potawatomi, Notre Dame Project: Shea, Jn. Gilmary, History of the Catholic Church in the US,undated + + + + + + 27 + 142 + Box 2 Forest County- Potawatomi, Notre Dame Project: Thompson, Joseph, “IL Part of the Diocese of Vincennes” Mid-America, Vol. IV: 255-264, 1920s,undated + + + + + + 27 + 143 + Box 2 Forest County- Potawatomi, Notre Dame Project: Walsh, Rev. Matthew J. “Notre Dame, Antecedents and Development” Mid-America, Vol. 4: 270-272. 1920s,undated + + + + + + 28 + 1 + Box 3 Forest County- Potawatomi, Notre Dame Project: FCP- Treaty History,undated + + + + + + 28 + 2 + Box 3 Forest County- Potawatomi, Notre Dame Project: Prather G. Building of the MI Road, 1941,undated + + + + + + 28 + 3 + Box 3 Forest County- Potawatomi, Notre Dame Project: Pub L. 103-323, 108 Stat 2152, codified 25 USC. 1300j Restoring Fed Services to the Pokagon Band,undated + + + + + + 28 + 4 + Box 3 Forest County- Potawatomi, Notre Dame Project: S Rept 103-266, 103rd Cong 2d sess (1994), Restoring Fed Services to the Pokagon Band,1994 + + + + + + 28 + 5 + Box 3 Forest County- Potawatomi, Notre Dame Project: H. Rept 103-620, 103rd Cong, 2nd sess (1994), Restoring Fed Services to the Pokagon Band,1994 + + + + + + 28 + 6 + Box 3 Forest County- Potawatomi, Notre Dame Project: Buechner, Cecilia, Pokagons, 1933,undated + + + + + + 28 + 7 + Box 3 Forest County- Potawatomi, Notre Dame Project: FCP- Treaty History Research- phase II,undated + + + + + + 28 + 8 + Box 3 Forest County- Potawatomi, Notre Dame Project: 27 ICC 187,undated + + + + + + 28 + 9 + Box 3 Forest County- Potawatomi, Notre Dame Project: Treaty History Research- phase III recomm,undated + + + + + + 28 + 10 + Box 3 Forest County- Potawatomi, Notre Dame Project: 43 ICC 74,Sept. 8, 1978 + + + + + + 28 + 11 + Box 3 Forest County- Potawatomi, Notre Dame Project: Hannahville/ Notre Dame Documents,undated + + + + + + 28 + 12 + Box 3 Forest County- Potawatomi, Notre Dame Project: US Dept of Int- Bur of Land Management,undated + + + + + + 28 + 13 + Box 3 Forest County- Potawatomi, Notre Dame Project: Hearings- COIA, Pokagon Bands of Potawatomi, Little Traverse Bay Bands- Ottawa, Little River Band of Ottawa,1994 + + + + + + 28 + 14 + Box 3 Forest County- Potawatomi, Notre Dame Project: Hearings COIA, Pokagon Band of Potawatomi, Little Traverse Band- Ottawa, Little River Band- Ottawa,1993 + + + + + + 28 + 15 + Box 3 Forest County- Potawatomi, Notre Dame Project: 32 ICC 461,undated + + + + + + 28 + 16 + Box 3 Forest County- Potawatomi, Notre Dame Project: Appendix to the Phase II Report on Treaties Involving the Potawatomi, Vol. II of II, Map, [Bound booklet, is not in a folder],undated + + + + + + 28 + 17 + Box 3 Forest County- Potawatomi, Notre Dame Project: Potawatomi Birthright Education- Catholics at Notre Dame,undated + + + + + + 28 + 18 + Box 3 Forest County- Potawatomi, Notre Dame Project: PND Project- correspondence and scope of work,undated + + + + + + 28 + 19 + Box 3 Forest County- Potawatomi, Notre Dame Project: FCP- ND Maps and Notes,undated + + + + + + 28 + 20 + Box 3 Forest County- Potawatomi, Notre Dame Project: FCP-ND- CAL from Nancy, clean,undated + + + + + + 28 + 21 + Box 3 Forest County- Potawatomi, Notre Dame Project: Ritch Notre Dame,undated + + + + + + 28 + 22 + Box 3 Forest County- Potawatomi, Notre Dame Project: Shab-ch-nay Project- correspondence and scope of work,undated + + + + + + 29 + 1 + Box 4 Forest County- Potawatomi, Notre Dame Project: Correspondence,undated + + + + + + 29 + 2 + Box 4 Forest County- Potawatomi, Notre Dame Project: National Register Nomination Materials,undated + + + + + + 29 + 3 + Box 4 Forest County- Potawatomi, Notre Dame Project: Oral History Transcripts (Folder 1 of 2),undated + + + + + + 29 + 4 + Box 4 Forest County- Potawatomi, Notre Dame Project: Oral History Transcripts (Folder 2 of 2),undated + + + + + + 29 + 5 + Box 4 Forest County- Potawatomi, Notre Dame Project: Maps and Photographic prints,undated + + + + + + 29 + 6 + Box 4 Forest County- Potawatomi, Notre Dame Project: Published Reports (uncataloged booklets),undated + + + + + + 29 + 7 + Box 4 Forest County- Potawatomi, Notre Dame Project: American Indian Religious Freedom Act of 1978,1978 + + + + + + 29 + 8 + Box 4 Forest County- Potawatomi, Notre Dame Project: Crandon Mine Project, Environmental Impact Statement,Feb. 2003 + + + + + + 29 + 9 + Box 4 Forest County- Potawatomi, Notre Dame Project: Mining a WI Tradition,undated + + + + + + 29 + 10 + Box 4 Forest County- Potawatomi, Notre Dame Project: Appendix B: Traditional Cultural Uses of Plants in the Inventoried Project Area,undated + + + + + + 29 + 11 + Box 4 Forest County- Potawatomi, Notre Dame Project: Draft Tribal Review- Potential socio-economic effects to the Sokaogon Chippewa, Forest County Potawatomi and Menominee from the proposed Crandon Project,Jan. 2002 + + + + + + 29 + 12 + Box 4 Forest County- Potawatomi, Notre Dame Project: Nicolet Minerals Company, Environmental Impact Report, Section 3.2, Cultural Resources,undated + + + + + + 29 + 13 + Box 4 Forest County- Potawatomi, Notre Dame Project: Crandon Mine Project, Environmental Impact Statement, Draft, Cultural Properties Technical Memorandum,April 2003 + + + + + + 29 + 14 + Box 4 Forest County- Potawatomi, Notre Dame Project: Ecological Assessment of Devils Lake, Forest County, WI, by Elizabeth I. Rogers and David Tiller,1995 + + + + + + 29 + 15 + Box 4 Forest County- Potawatomi, Notre Dame Project: Crandon Mine Project Environmental Impact Statement, Preliminary Draft, Chapter 2, Description of the Proposed Action and Alternatives,April 23, 2002 + + + + + + 29 + 16 + Box 4 Forest County- Potawatomi, Notre Dame Project: Crandon Mine Project Environmental Impact Statement, Preliminary Draft, Chapter 2, Ecological Assessment of Devils Lake, Forest County, WI, by Elizabeth I. Rogers and David Tiller,1995 + + + + + + 29 + 17 + Box 4 Forest County- Potawatomi, Notre Dame Project: Crandon Mine Project Environmental Impact Statement, Preliminary Draft, Chapter 2, Description of the Proposed Action and Alternatives,April 23, 2002 + + + + + + 30 + 1 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: SAM, RG65-5-A, Box 2, file 4, to 1824,undated + + + + + + 30 + 2 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R770. 1824,undated + + + + + + 30 + 3 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R.77, Sept. 1, 1824 (Folder 1 of 2),undated + + + + + + 30 + 4 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R770. Sept. 1, 1828 (Folder 2 of 2),undated + + + + + + 30 + 5 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R770. 1832,undated + + + + + + 30 + 6 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R.402: 236-41, July 14, 1836,undated + + + + + + 30 + 7 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R387. March 7, 1838,undated + + + + + + 30 + 8 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R388. Feb. 8, 1840,undated + + + + + + 30 + 9 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R770. Sept. 8, 1841,undated + + + + + + 30 + 10 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M21 R32. Aug. 1, 1842,undated + + + + + + 30 + 11 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R771. Sept. 1, 1842,undated + + + + + + 30 + 12 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R389. Sept. 29, 1842,undated + + + + + + 30 + 13 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R389. Oct. 2, 1842,undated + + + + + + 30 + 14 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM T494 R4. Nov. 19, 1842,undated + + + + + + 30 + 15 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: ABCFM Ms. BA 10.512b. Box 3. Nov. 23, 1842,undated + + + + + + 30 + 16 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R388. Feb. 10, 1843,undated + + + + + + 30 + 17 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M1 R54: 52-53. Feb. 15, 1843,undated + + + + + + 30 + 18 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R388. March 9, 1843,undated + + + + + + 30 + 19 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: ABCFM Ms BA10A5126, Box 3, May 3, 1843,undated + + + + + + 30 + 20 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R388. June 2, 1843,undated + + + + + + 30 + 21 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R388, July 12, 1843,undated + + + + + + 30 + 22 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R388. Aug. 5, 1843,undated + + + + + + 30 + 23 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R771. Aug. 5, 1843,undated + + + + + + 30 + 24 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R388, Sept. 30, 1843,undated + + + + + + 30 + 25 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R389, Dec. 4, 1843,undated + + + + + + 30 + 26 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R389 Dec. 10, 1843,undated + + + + + + 30 + 27 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R389 Dec. 19, 1843,undated + + + + + + 30 + 28 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M1 R56:299-300, Dec. 29, 1843,undated + + + + + + 30 + 29 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: ABCFMP-MF, R. 776: Letter # 234, Jan. 4, 1844? 1854? 1855?,undated + + + + + + 30 + 30 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R389, Jan. 19, 1844,undated + + + + + + 30 + 31 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R389, Jan. 25, 1844,undated + + + + + + 30 + 32 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R389, March 29, 1844,undated + + + + + + 30 + 33 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M1 R39: 161, Apr 20, 1844,undated + + + + + + 30 + 34 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R771, Sept. 30, 1844,undated + + + + + + 30 + 35 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: US Gen Land Office Field Notes. Copy of Notes of T51N R32W of Principle Mer. of MI. Feb. 7, 1846,undated + + + + + + 30 + 36 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R771. Oct. 1, 1846,undated + + + + + + 30 + 37 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R389, Aug. 27, 1847,undated + + + + + + 30 + 38 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R389 Sept. 21, 1844,undated + + + + + + 30 + 39 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R771, Aug. 11, 1845,undated + + + + + + 30 + 40 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R771, Sept. 27, 1845,undated + + + + + + 30 + 41 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R771, Aug. 28, 1846,undated + + + + + + 30 + 42 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R389, Sept. 10, 1847,undated + + + + + + 30 + 43 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R771, 1848,undated + + + + + + 30 + 44 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M1 R62: 58, May 11, 1848,undated + + + + + + 30 + 45 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M21 R142, June 13, 1848,undated + + + + + + 30 + 46 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M1 R40: 66, July 4, 1848,undated + + + + + + 30 + 47 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R771, Aug. 28, 1848,undated + + + + + + 30 + 48 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R390, Oct. 8, 1848,undated + + + + + + 30 + 49 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: 30th ARMSMEC, 1849,undated + + + + + + 30 + 50 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R390: 172-3, 1849,undated + + + + + + 30 + 51 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: MN HS. Nute, Gracelee, Compiler, Mss.s Relating to NW Missions, Correspondence and other papers, Jan.- Feb. 1849, Box 9, N 976, Box 14, 1849,undated + + + + + + 30 + 52 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R390, Jan. 21, 1849,undated + + + + + + 30 + 53 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R390, Jan. 27, 1849,undated + + + + + + 30 + 54 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R390, Jan. 30, 1849,undated + + + + + + 30 + 55 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R390, Feb. 5, 1849,undated + + + + + + 30 + 56 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: HR, 30th Cong., 3d Session, Misc. No. 36, Feb. 7, 1849,undated + + + + + + 30 + 57 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R390, Feb. 19, 1849,undated + + + + + + 30 + 58 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R390, Feb. 22, 1849,undated + + + + + + 30 + 59 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R390, March 17, 1849,undated + + + + + + 30 + 60 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R771, March 31, 1849,undated + + + + + + 30 + 61 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R771, Apr. 6, 1849,undated + + + + + + 30 + 62 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R390, June 15, 1849,undated + + + + + + 30 + 63 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R390, July 10, 1849,undated + + + + + + 30 + 64 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R771, Aug. 22, 1849 (Folder 1 of 2),undated + + + + + + 30 + 65 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R771, Aug. 22, 1849 (Folder 2 of 2),undated + + + + + + 30 + 66 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM RG29 M432 R351: L’Anse Twp, 1850,undated + + + + + + 30 + 67 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: 31st ARMSMEC, 1850,undated + + + + + + 30 + 68 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M21 R.43:23, Feb. 6, 1850,undated + + + + + + 30 + 69 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R390, March 4, 1850,undated + + + + + + 30 + 70 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R390, Apr. 17, 1850,undated + + + + + + 30 + 71 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R390, May 9, 1850,undated + + + + + + 30 + 72 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: Lake Superior Mining JL, May 22, 1850,undated + + + + + + 30 + 73 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R711, May 31, 1850,undated + + + + + + 30 + 74 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R771, June 13, 1850,undated + + + + + + 30 + 75 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R771, June 28, 1850,undated + + + + + + 30 + 76 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R771, July 1, 1850,undated + + + + + + 30 + 77 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R390, July 13, 1850,undated + + + + + + 30 + 78 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R771, July 15, 1850,undated + + + + + + 30 + 79 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R390, July 30, 1850,undated + + + + + + 30 + 80 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R771, Aug. 20, 1850,undated + + + + + + 30 + 81 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R771, Aug. 26, 1850,undated + + + + + + 30 + 82 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R767: n. p. n., Oct. 3, 1850,undated + + + + + + 30 + 83 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: 32nd ARMSMEC, 1851,undated + + + + + + 30 + 84 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: ARCOIA 1851: 166-169, Sept. 20, 1851,undated + + + + + + 30 + 85 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: ABCFMBA10.A512b. Aug. 13, 1851,undated + + + + + + 30 + 86 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M21 R45, Aug. 25, 1851,undated + + + + + + 30 + 87 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: MN 003395, Aug. 25, 1851,undated + + + + + + 30 + 88 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: ARCOIA 1851,undated + + + + + + 30 + 89 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R168, Sept. 18, 1851,undated + + + + + + 30 + 90 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: Lac Courte Oreilles Voigt Ex. 1, Nov. 6, 1851,undated + + + + + + 30 + 91 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R390, March 26, 1852,undated + + + + + + 30 + 92 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R390, Apr. 2, 1852,undated + + + + + + 30 + 93 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: US Statutes at Large, 32 Congress, S. 1, Ch. 95, “Act Granting to the State of MI…,” Aug. 26, 1852,undated + + + + + + 30 + 94 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: 33rd ARMSMEC, 1853,undated + + + + + + 30 + 95 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: Acts of Legislature, State of MI, No. 38: 48-51, Feb. 5, 1853,undated + + + + + + 30 + 96 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: Acts of Legislature State of MI [No. 61]: 86-87, “Act supplementary… canal St. Mary’s, Feb. 12, 1853,undated + + + + + + 30 + 97 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: MN Hist. Society. Note, Grace Lee, Compiler Mss.s Relating to NW Missions, Correspondence and Other Papers, Mar-May 1853 Box 9. N976, Box 17, March 2, 1853,undated + + + + + + 30 + 98 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M21 R48 Sept. 24, 1853,undated + + + + + + 30 + 99 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M21 R48 Oct. 22, 1853,undated + + + + + + 30 + 100 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: MN Hist. Society. Note, Grace Lee, Compiler Mss.s Relating to NW Missions, Correspondence and Other Papers, Sept. – Dec. 1853, Box 9. N976, Box 17, Nov. 2, 1853,undated + + + + + + 30 + 101 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: Lake Superior Mining JL, Nov. 5, 1853,undated + + + + + + 30 + 102 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R404: 184-190, Dec. 10, 1853,undated + + + + + + 30 + 103 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: Metropolitan, 1:609, Dec. 1853,undated + + + + + + 30 + 104 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M21 R48, Jan. 20, 1854,undated + + + + + + 30 + 105 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: Bishop Baraga Assoc. and Archives, Feb. 1, 1854,undated + + + + + + 30 + 106 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R404: 371, Mar. 6, 1854,undated + + + + + + 30 + 107 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: JL of HR, March 7, 1854,undated + + + + + + 30 + 108 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: House Bill 293, March 7, 1854,undated + + + + + + 30 + 109 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R404: 607-610, Apr. 10, 1855,undated + + + + + + 30 + 110 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: Congressional Globe, May 1, 1854,undated + + + + + + 30 + 111 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: JL of HR, May 2, 1854,undated + + + + + + 30 + 112 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: JL of the HR, May 2, 1854,undated + + + + + + 30 + 113 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: JL of US Senate, May 3, 1854,undated + + + + + + 30 + 114 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M21 R49, Aug. 10, 1854,undated + + + + + + 30 + 115 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M21 R49 Aug. 11, 1854 (Folder 1 of 2),undated + + + + + + 30 + 116 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M21 R49 Aug. 11, 1854 (Folder 2 of 2),undated + + + + + + 30 + 117 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M21 R49 Aug. 14, 1854,undated + + + + + + 30 + 118 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: Lake Superior Mining JL, Oct. 7, 1854,undated + + + + + + 30 + 119 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM T494 R5, Oct. 17, 1854,undated + + + + + + 30 + 120 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: JL of US Senate, Dec. 14, 1854,undated + + + + + + 30 + 121 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: JL of HR, Dec. 19, 1854,undated + + + + + + 30 + 122 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: JL of US Senate, Dec. 20-21, 1854,undated + + + + + + 30 + 123 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: Deed Records of Baraga Co., MI, 1855,undated + + + + + + 30 + 124 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NA RG279, Ind. Claims Commission Docket No. 18-S, FY 1856- Chippewa, 1855,undated + + + + + + 30 + 125 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NA RG279, Ind. Claims Commission, Docket No. 18-U, Exhibit No. 7-5, Jan. 10, 1855,undated + + + + + + 30 + 126 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: Executive JL, Jan. 4 and 11, 1855,undated + + + + + + 30 + 127 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: JL of the Senate, Feb. 7, 1855,undated + + + + + + 30 + 128 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: SAM RG60-8-A, B.47, F.11, Feb. 7, 1855,undated + + + + + + 30 + 129 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NA RG75, Exec. Orders relating to Indian Reservations, March 7, 1855,undated + + + + + + 30 + 130 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M21 R51: 122-3, Manypenny to Gilbert, March (21/22), 1855,undated + + + + + + 30 + 131 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R.391, March 30, 1855,undated + + + + + + 30 + 132 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: ABCFMP-MF, R76, April 24/27, 1855,undated + + + + + + 30 + 133 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M21 R51, May 25, 1855,undated + + + + + + 30 + 134 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: SAM RG68-35-A, Box 130: F8, May 25, 1855,undated + + + + + + 30 + 135 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: SAM RG 56-26, Box 130: F6 [List of lands granted to St. Mary’s Ship Canal], May 25, 1855,undated + + + + + + 30 + 136 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: SAM RG56-26, Box 130: F6, May 25, 1855,undated + + + + + + 30 + 137 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M21 R51:441-442, May 25, 1855,undated + + + + + + 30 + 138 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R391, June 12, 1855 (Folder 1 of 3),undated + + + + + + 30 + 139 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R391, June 12, 1855 (Folder 2 of 3),undated + + + + + + 30 + 140 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R391, June 12, 1855 (Folder 3 of 3),undated + + + + + + 30 + 141 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R391, June 15, 1855,undated + + + + + + 30 + 142 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M574 R.16, Claim No. 27, HL Stevens, July 20, 1855,undated + + + + + + 30 + 143 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M574 R 21, Sept. 1, 1855,undated + + + + + + 30 + 144 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M574 R16, Claim No. 66- P. Marksman, Sept. 3, 1855,undated + + + + + + 30 + 145 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M574 R21, Claim # 11, F. Baraga, Sept. 3, 1855,undated + + + + + + 30 + 146 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M574 R16, Claim No. 32- Rathbun, Sept. 5, 1855,undated + + + + + + 30 + 147 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R391, Sept. 5, 1855,undated + + + + + + 30 + 148 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M574 R21, Claim # 4, J. Hartly, Sept. 5-6, 1855,undated + + + + + + 30 + 149 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M574 R24, Claim # 64- P. Crebassa, Sept. 6, 1855,undated + + + + + + 30 + 150 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R391, Sept. 6, 1855,undated + + + + + + 30 + 151 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M574 R16, Claim No. 65, Phalm, Sept. 6, 1855,undated + + + + + + 30 + 152 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M574 R21, Claim No. 3, P. May-yaw-wash, Sept. 8, 1855,undated + + + + + + 30 + 153 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M574 R57, Claim No. 42, D. King, Sept. 8, 1855,undated + + + + + + 30 + 154 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M574 R22, Claim No. 98- E. Kedegoo, Sept. 18, 1855,undated + + + + + + 30 + 155 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R391, Sept. 19, 1855,undated + + + + + + 30 + 156 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R391, Sept. 22, 1855,undated + + + + + + 30 + 157 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R391, Nov. 5, 1855,undated + + + + + + 30 + 158 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: ARCOIA 1855, Nov. 26, 1855,undated + + + + + + 30 + 159 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M574 R16, Claim No. 31- Pratt, Dec. 8, 1855,undated + + + + + + 30 + 160 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M574 R16, Claim No. 35- G. Bedell, Dec. 8, 1855,undated + + + + + + 30 + 161 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M574 R16, Claim No. 34, Holliday, Dec. 11, 1855,undated + + + + + + 30 + 162 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M21 R53, Dec. 12, 1855,undated + + + + + + 30 + 163 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M574 R16, Claim No. 60- D. King and G. Bedell, Dec. 15, 1855,undated + + + + + + 30 + 164 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M574 R.21-1169-1171, Dec. 20, 1855,undated + + + + + + 30 + 165 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M574 R16: 541-542, Jan. 10, 1856,undated + + + + + + 30 + 166 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: 37th ARMSMEC, 1856,undated + + + + + + 30 + 167 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R391, Jan. 8, 1856,undated + + + + + + 30 + 168 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R405: 290-292, Feb. 7, 1856,undated + + + + + + 30 + 169 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R391, Feb. 25, 1856,undated + + + + + + 30 + 170 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R391, Feb. 23, 1856,undated + + + + + + 30 + 171 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R391, Feb. 25, 1856,undated + + + + + + 30 + 172 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R391, March 5, 1856,undated + + + + + + 30 + 173 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R391, March 12, 1856,undated + + + + + + 30 + 174 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R391, March 15, 1856,undated + + + + + + 30 + 175 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R405: 101-102, May 21, 1856,undated + + + + + + 30 + 176 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R391, July 8, 1856,undated + + + + + + 30 + 177 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: Exc Doc of HR, 3rd Sess., 34th Congress 1856-57, 1857,undated + + + + + + 30 + 178 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: BBC NA-01A M 95-3, Jan. 31, 1857,undated + + + + + + 30 + 179 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: SAM RG.68-35-A, Box 62: F, Calkins to Board of Control, Nov. 30, 1857,undated + + + + + + 30 + 180 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: Report of the Sec. of the Interior, 1857, Ex Doc of Sen, 1st Session, 35th Congress 1857-1858undated + + + + + + 30 + 181 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: 39th ARMSMEC, 1858,undated + + + + + + 30 + 182 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: BBC-NA-OIA M. July 22, 1858,undated + + + + + + 30 + 183 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NA RG75, Mack. Agency, Letters received, BBC; M95-4, 1858, Sept. ca. 8, 1858,undated + + + + + + 30 + 184 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: NAM M234 R406: 3-6, Oct. 1, 1858,undated + + + + + + 30 + 185 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: Exec Doc of the HR, 2nd sess, 35th Congress, 1858-1859,undated + + + + + + 30 + 186 + Box 1 Keweenaw Bay Indian Community (KBIC), Calendar documents, 1824-1859: SAM RG 56-26, Box 130: F6, Supreme CT: St. Mary’s Fall Ship Canal Co. v. Daniel Case, Auditor general, March 26, 1859,undated + + + + + + 31 + 1 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM R544, 1860 Census, L’Anse Twp., 1860,undated + + + + + + 31 + 2 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: Exec Doc of the Senate for the 2nd sess of the 36th Congress, 1860-1861,undated + + + + + + 31 + 3 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R406: 1071, Oct. 17, 1861,undated + + + + + + 31 + 4 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R407: 238-239. Feb. 25, 1863,undated + + + + + + 31 + 5 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R393. March 14, 1863,undated + + + + + + 31 + 6 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R393. March 21, 1863,undated + + + + + + 31 + 7 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R393, Apr. 1, 1863,undated + + + + + + 31 + 8 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R406: 203-204. May 14, 1863,undated + + + + + + 31 + 9 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R393. May 18, 1863,undated + + + + + + 31 + 10 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: KBIC-ROA, B2, F: Mortgage and Land Assignments, Ind. Church at Barn, July 2, 1863,undated + + + + + + 31 + 11 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R393. Sept. 21, 1863,undated + + + + + + 31 + 12 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NARS- RG 279, Annuity Roll Oct. 6, 1863,undated + + + + + + 31 + 13 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: State Hist. Society of WI Warren 1864,undated + + + + + + 31 + 14 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R393. Feb. 25, 1864,undated + + + + + + 31 + 15 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R407: 401-402, Sept. 8, 1864,undated + + + + + + 31 + 16 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R407: 404-406. Dec. 17, 1864,undated + + + + + + 31 + 17 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R393. Feb. 16, 1865,undated + + + + + + 31 + 18 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R404: 670-671. Jan. 7, 1865,undated + + + + + + 31 + 19 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R407: 729. Feb. 23, 1865,undated + + + + + + 31 + 20 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R394. June 9, 1865,undated + + + + + + 31 + 21 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: 47th ARMSMEC, 1866,undated + + + + + + 31 + 22 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R407: 890-92. Jan. 29, 1866,undated + + + + + + 31 + 23 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R393. Oct. 22, 1866,undated + + + + + + 31 + 24 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R407: 853-65. Nov. 16, 1866,undated + + + + + + 31 + 25 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R394. Feb. 5, 1867,undated + + + + + + 31 + 26 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R394. Feb. 25, 1867,undated + + + + + + 31 + 27 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R408: 95-98. July 4, 1867,undated + + + + + + 31 + 28 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R394. Oct. 12, 1867,undated + + + + + + 31 + 29 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R394. Nov. 13, 1867,undated + + + + + + 31 + 30 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R394. Dec. 10, 1867,undated + + + + + + 31 + 31 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R394. Dec. 12, 1867,undated + + + + + + 31 + 32 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R394. Jan. 16, 1868,undated + + + + + + 31 + 33 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R394. Jan. 20, 1868,undated + + + + + + 31 + 34 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R394. Jan. 25, 1868,undated + + + + + + 31 + 35 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R394. Apr. 6, 1868,undated + + + + + + 31 + 36 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R394. May 2, 1868,undated + + + + + + 31 + 37 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R394. May 12, 1868,undated + + + + + + 31 + 38 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R394, May 14, 1868,undated + + + + + + 31 + 39 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R408: 426-429. June 5, 1868,undated + + + + + + 31 + 40 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R394. July 11, 1868,undated + + + + + + 31 + 41 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R394. Aug. 27, 1868,undated + + + + + + 31 + 42 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R408: 471-472. Oct. 5, 1868,undated + + + + + + 31 + 43 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R394. Oct. 28, 1868,undated + + + + + + 31 + 44 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R394 Oct. 29, 1868,undated + + + + + + 31 + 45 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R394. Dec. 15, 1868,undated + + + + + + 31 + 46 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R394. Jan. 18, 1869,undated + + + + + + 31 + 47 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R394. Jan. 21, 1869,undated + + + + + + 31 + 48 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R408: 640-41, June 1, 1869,undated + + + + + + 31 + 49 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R394, July 13, 1869,undated + + + + + + 31 + 50 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R394. Aug. 12, 1870,undated + + + + + + 31 + 51 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R394. Oct. 12, 1870,undated + + + + + + 31 + 52 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R394, Dec. 14, 1870,undated + + + + + + 31 + 53 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R409: 535-536. March 16, 1871,undated + + + + + + 31 + 54 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R409: 914-915. Mar. 21, 1871,undated + + + + + + 31 + 55 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: SAM RG56-26, Box 130: F6, Frost to Sec. of State (MI), Oct. 16, 1871,undated + + + + + + 31 + 56 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG 75 BIA 356. May 19, 1872,undated + + + + + + 31 + 57 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, Annuity Rolls, Chippewas of Lake Superior, 1874,undated + + + + + + 31 + 58 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R411: n. p., Cowen to COIA [enclosures], Feb. 16, 1874,undated + + + + + + 31 + 59 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: Senate, 43rd Congress, 1st Session, Ex. Doc. 33, Feb. 24, 1874,undated + + + + + + 31 + 60 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M21 R116. March 21, 1874,undated + + + + + + 31 + 61 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: Report of Committee of Indian Affairs, L’Anse and Vieux De Sert Bands, from MSU Microfiche HR 1624, Fiche 10, April 11, 1874,undated + + + + + + 31 + 62 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: HR, 43d Congress, 1st Session, Report No. 396, April 11, 1874,undated + + + + + + 31 + 63 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R395. Aug. 21, 1874,undated + + + + + + 31 + 64 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R411. Oct. 6, 1874,undated + + + + + + 31 + 65 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R411: 138-143. Nov. 3, 1874,undated + + + + + + 31 + 66 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R413: 642. Nov. 22, 1878,undated + + + + + + 31 + 67 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R411: 159-166. Dec. 11, 1874,undated + + + + + + 31 + 68 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M.234 R.411: 513-514. July 21, 1875,undated + + + + + + 31 + 69 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: ARCOIA. Oct. 5, 1875,undated + + + + + + 31 + 70 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: BCC-TO, State Tax Lands, Baraga Co. 1876,undated + + + + + + 31 + 71 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: HR 44th Congress, 1st Session, Ex. Doc. No. 106, Feb. 1, 1876,undated + + + + + + 31 + 72 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R397. Nov. 22, 1877,undated + + + + + + 31 + 73 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75 E91, LR-1881-1907, Nov. 24, 1877,undated + + + + + + 31 + 74 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M21 R142. May 7, 1878,undated + + + + + + 31 + 75 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M21 R142. June 15, 1878,undated + + + + + + 31 + 76 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M21 R142. July 11, 1878,undated + + + + + + 31 + 77 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R413:642. Nov. 11, 1878,undated + + + + + + 31 + 78 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M21 R144. Dec. 27, 1878,undated + + + + + + 31 + 79 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R414: 217-218. Oct. 14, 1879,undated + + + + + + 31 + 80 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M21 R152. Oct. 17, 1879,undated + + + + + + 31 + 81 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M21 R152. Nov. 14, 1879,undated + + + + + + 31 + 82 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R415: 18-20. Jan. 27, 1880,undated + + + + + + 31 + 83 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NAM M234 R415: 138. Feb. 12, 1880,undated + + + + + + 31 + 84 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA. Jan. 22, 1881,undated + + + + + + 31 + 85 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG 75 LR- BIA, July 1, 1881,undated + + + + + + 31 + 86 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG 75 LR-BIA. July 5, 1881,undated + + + + + + 31 + 87 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA. Jan. 5, 1882,undated + + + + + + 31 + 88 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG 75 LR-BIA, Jan. 13, 1882,undated + + + + + + 31 + 89 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA, March 16, 1882,undated + + + + + + 31 + 90 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA, March 25, 1882,undated + + + + + + 31 + 91 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG 75 LR-BIA, March 28, 1882,undated + + + + + + 31 + 92 + Calendar documents, 1860-1906: RG 75 LR-BIA, Mar. 30, 1882 (Folder 1 of 2),undated + + + + + + 31 + 93 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG 75 LR-BIA, Mar. 30, 1882 (Folder 2 of 2),undated + + + + + + 31 + 94 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG 75 LR-BIA, Apr. 12, 1882,undated + + + + + + 31 + 95 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG 75 LR-BIA, Apr. 21, 1882,undated + + + + + + 31 + 96 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA Apr. 24, 1882,undated + + + + + + 31 + 97 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA. Apr. 27, 1882,undated + + + + + + 31 + 98 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG 75 LR-BIA. Apr. 29, 1882,undated + + + + + + 31 + 99 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG 75 LR-BIA. May 9, 1882,undated + + + + + + 31 + 100 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG 75 LR-BIA. June 6, 1883,undated + + + + + + 31 + 101 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG 75 LR-BIA. Nov. 12, 1883,undated + + + + + + 31 + 102 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG 75 LR-BIA. Dec. 10, 1883,undated + + + + + + 31 + 103 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA, Dec. 17, 1883,undated + + + + + + 31 + 104 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG 75 LR-BIA, Jan. 7, 1884,undated + + + + + + 31 + 105 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG 75 LR-BIA, Apr. 11, 1884,undated + + + + + + 31 + 106 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG 75 LR-BIA, Apr. 15, 1884,undated + + + + + + 31 + 107 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA, Apr. 24, 1884,undated + + + + + + 31 + 108 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA, Dec. 5, 1884,undated + + + + + + 31 + 109 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA, May 4, 1885,undated + + + + + + 31 + 110 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75-LR-BIA, May 28, 1885,undated + + + + + + 31 + 111 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA. July 22, 1885,undated + + + + + + 31 + 112 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA. Oct. 31, 1885,undated + + + + + + 31 + 113 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: ARCOIA 1886,undated + + + + + + 31 + 114 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA. Jan. 8, 1886,undated + + + + + + 31 + 115 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG 75 LR-BIA. Jan. 11, 1886,undated + + + + + + 31 + 116 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA. Jan. 16, 1886,undated + + + + + + 31 + 117 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA. Jan. 26, 1886,undated + + + + + + 31 + 118 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA. Jan. 30, 1886,undated + + + + + + 31 + 119 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG 75 LR-BIA, Feb. 3, 1886,undated + + + + + + 31 + 120 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75 E91-LR: 1886-4627, Feb. 10, 1886,undated + + + + + + 31 + 121 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA. Mar. 9, 1886,undated + + + + + + 31 + 122 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA. March 17, 1886,undated + + + + + + 31 + 123 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA. March 27, 1886,undated + + + + + + 31 + 124 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA. May 17, 1886,undated + + + + + + 31 + 125 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA. June 13, 1886,undated + + + + + + 31 + 126 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA. June 29, 1886,undated + + + + + + 31 + 127 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA. July 8, 1886,undated + + + + + + 31 + 128 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA. July 10, 1886,undated + + + + + + 31 + 129 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA. Aug. 3, 1886,undated + + + + + + 31 + 130 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR-1886-29987, Dec. 2, 1886,undated + + + + + + 31 + 131 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA, Dec. 23, 1886,undated + + + + + + 31 + 132 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA. Feb. 16, 1887,undated + + + + + + 31 + 133 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75 E91-LR: 1887-7333. March 17, 1887,undated + + + + + + 31 + 134 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR BIA, Sept. 17, 1887,undated + + + + + + 31 + 135 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR-1888: 7673, March 17, 1888,undated + + + + + + 31 + 136 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: 72nd ARMSMEC, 1890,undated + + + + + + 31 + 137 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR: 7806-1890. March 10, 1890,undated + + + + + + 31 + 138 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR-1890-9377. March 26, 1890,undated + + + + + + 31 + 139 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR-1890-11777. April 11, 1890,undated + + + + + + 31 + 140 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR-1890-12015. April 14, 1890,undated + + + + + + 31 + 141 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR-1890-12015, April 15, 1890,undated + + + + + + 31 + 142 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR-13102-1890. MAP, April 24, 1890,undated + + + + + + 31 + 143 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR: 1892-12408, March 31, 1892,undated + + + + + + 31 + 144 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: MMP-Albion, MI Conf., Pietzel Papers. Ms. 2c. Misc. Letters to Pietzel, April 12, 1892,undated + + + + + + 31 + 145 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: ARCOIA 1892. Nov. 21, 1892,undated + + + + + + 31 + 146 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91, LR-1893-8058, March 3, 1893,undated + + + + + + 31 + 147 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75 E91, LR-1893-2652? May 23, 1893,undated + + + + + + 31 + 148 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: RG75 LR-BIA. Aug. 16, 1893,undated + + + + + + 31 + 149 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR: 1894-8800, Feb. 28, 1894,undated + + + + + + 31 + 150 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR: 1894-48129. Dec. 17, 1894,undated + + + + + + 31 + 151 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR: 1895-22291. May 22, 1895,undated + + + + + + 31 + 152 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR: 1897-755. Jan. 5, 1897,undated + + + + + + 31 + 153 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75 E91-LR: 1899-43046. [1899],undated + + + + + + 31 + 154 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75 E91-LR: 1899-43046. Jan. 17, 1899,undated + + + + + + 31 + 155 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75 E91-LR: 1899-43046, May 8, 1899,undated + + + + + + 31 + 156 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75 E91-LR: 1899-43046. Sept. 8, 1899,undated + + + + + + 31 + 157 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: Local Acts, 190- No. 273. Local Acts of the Legislature of the State of MI… [1901] p. 29, Feb. 7, 1901,undated + + + + + + 31 + 158 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: 56 Congress, Session 2, CHAP. 832, US Statutes at Large… Vol. XXXI. [Washington:], March 3, 1901,undated + + + + + + 31 + 159 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75. E91-LR: 20669-1903. Oct. 31, 1901,undated + + + + + + 31 + 160 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR: 1903-60309/ Authority 78611, Oct. 6, 1902,undated + + + + + + 31 + 161 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR: 60309-1903/ Authority 78611, Nov. 6, 1902,undated + + + + + + 31 + 162 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75 E91-LR: 1902-75968, Dec. 20, 1902,undated + + + + + + 31 + 163 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR), RG75, MA-LR, B14, F: Jan. - May ’03. March 12, 1903 (Folder 1 of 2),undated + + + + + + 31 + 164 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR), RG75, MA-LR, B14, F: Jan. - May ’03. March 12, 1903 (Folder 2 of 2),undated + + + + + + 31 + 165 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR: 1903-29369. May 4, 1903,undated + + + + + + 31 + 166 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR), RG75, MA-LR, B14, F: Jan. – May ’03. May 7, 1903,undated + + + + + + 31 + 167 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-LR, B14, F: June- Aug. ’03. June 1, 1903,undated + + + + + + 31 + 168 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-LR, B14, F: June- Aug. ’03. June 5, 1903,undated + + + + + + 31 + 169 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR: 29398-1903. June 10, 1903,undated + + + + + + 31 + 170 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR: 1903-39311. June 19, 1903,undated + + + + + + 31 + 171 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR: 1903-39311. June 22, 1903,undated + + + + + + 31 + 172 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR: 36777-1903. June 24, 1903,undated + + + + + + 31 + 173 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-LR, B14, F: June- Aug. ‘03. July 23, 1903,undated + + + + + + 31 + 174 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-LR, B14, F: June- Aug. ’03. Aug. 1, 1903,undated + + + + + + 31 + 175 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-LR, B14, F: June- Aug. ’03. Aug. 4, 1903,undated + + + + + + 31 + 176 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-LR, B14, F: June- Aug. ’03. Aug. 7, 1903,undated + + + + + + 31 + 177 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-LR, B14, F: Sept. – Dec. 1903. Sept. 18, 1903,undated + + + + + + 31 + 178 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-LR, B14, F: Sept. – Dec. ’03. Sept. 19, 1903,undated + + + + + + 31 + 179 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-LR, B14, F: Sept. - Dec. ’03. Sept. 22, 1903,undated + + + + + + 31 + 180 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-LR, B14, F: Sept. – Dec. ’03. Oct. 1, 1903,undated + + + + + + 31 + 181 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-LR, B14, F: Sept. – Dec. ’03. Oct. 21, 1903,undated + + + + + + 31 + 182 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-LR, B14, F: Sept. – Dec. ’03. Oct. 26, 1903,undated + + + + + + 31 + 183 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-LR, B14, F: Sept. – Dec. ’03. Oct. 27, 1903,undated + + + + + + 31 + 184 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-LR, B14, F: Sept. - Dec. ’03. Oct. 29, 1903,undated + + + + + + 31 + 185 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-LR, B14, F: Sept. – Dec. ’03. Nov. 4, 1903,undated + + + + + + 31 + 186 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR: 74710-1903. (70179). Nov. 6, 1903,undated + + + + + + 31 + 187 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR: 1903-74710. Nov. 10, 1903,undated + + + + + + 31 + 188 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-PCLS, SDA, B1, F: 1904-6. May 23, 1904,undated + + + + + + 31 + 189 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-PCLS, SDA, B1, F: 1904-6. May 30, 1904,undated + + + + + + 31 + 190 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-PCLS, SDA, B1, F: 1904-6. June 6, 1904 (Folder 1 of 3),undated + + + + + + 31 + 191 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-PCLS, SDA, B1, F: 1904-6. June 6, 1904 (Folder 2 of 3),undated + + + + + + 31 + 192 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-PCLS, SDA, B1, F: 1904-6. June 6, 1904 (Folder 3 of 3),undated + + + + + + 31 + 193 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-PCLS, SDA, B1, F: 1904-6. June 13, 1904,undated + + + + + + 31 + 194 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-PCLS, SDA, B1: 1904-6. June 16, 1904,undated + + + + + + 31 + 195 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-PCLS, SDA, B1: 1904-6. June 30, 1904 (Folder 1 of 2),undated + + + + + + 31 + 196 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-PCLS, SDA, B1: 1904-6. June 30, 1904 (Folder 2 of 2),undated + + + + + + 31 + 197 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-PCLS, SDA, B1: 1904-6. July 3, 1904,undated + + + + + + 31 + 198 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-PCLS, SDA, B1: 1904-6. July 7, 1904,undated + + + + + + 31 + 199 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-PCLS, SDA, B1: 1904-6. July 11, 1904,undated + + + + + + 31 + 200 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-PCLS, SDA, B1: 1904-6. Aug. 1904,undated + + + + + + 31 + 201 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-PCLS, SDA, B1: 1904-6. Aug. 20, 1904,undated + + + + + + 31 + 202 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-PCLS, SDA, B1: 1904-6. Feb. 20, 1905,undated + + + + + + 31 + 203 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-PCLS, SDA, B1: 1904-6. May 15, 1905,undated + + + + + + 31 + 204 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR: 1905-41396. May 26, 1905,undated + + + + + + 31 + 205 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-PCLS, SDA, B1: 1904-6. Oct. 4, 1905,undated + + + + + + 31 + 206 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR: 90606-1905. Nov. 6, 1905. [Encl. Nov. 11, 1905], 1905,undated + + + + + + 31 + 207 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-PCLS, SDA, B1: 1904-6. Nov. 23, 1905,undated + + + + + + 31 + 208 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR: 1905-94643. Nov. 25, 1905,undated + + + + + + 31 + 209 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR: 1906-5778. Jan. 13, 1906,undated + + + + + + 31 + 210 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA PCLS, SDA, B1: 1904-6. Jan. 13, 1906,undated + + + + + + 31 + 211 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-PCLS, SDA, B1: 1904-6. Jan. 16, 1906,undated + + + + + + 31 + 212 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR: 1906-10556. Feb. 1, 1906,undated + + + + + + 31 + 213 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75, E91-LR: 1906-32019. April 7, 1906,undated + + + + + + 31 + 214 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR) RG75, MA-PCLS, SDA, B1: 1904-6. July 31, 1906,undated + + + + + + 31 + 215 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA RG75 E91-LR: 1905-51104. Oct. 20, 1906,undated + + + + + + 31 + 216 + Box 2 Keweenaw Bay Indian Community, Calendar documents, 1860-1906: NA (GLR), RG75, MA-PCLS, SDA, B1: 1906-7. Dec. 5, 1906,undated + + + + + + 32 + 1 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75, MA- Vol. 112. 176. Mackinac Agency- Ledger of Land Sales, 1907-1908,undated + + + + + + 32 + 2 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-PCLS, SDA, B1: 1906-7. Jan. 12, 1907,undated + + + + + + 32 + 3 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-PCLS, SDA, B2: 1911-13, April 2, 1907,undated + + + + + + 32 + 4 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-PCLS, SDA, B2: 1911-13. April 12, 1907,undated + + + + + + 32 + 5 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 23345-08 Mack 308.2. July 17, 1907,undated + + + + + + 32 + 6 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 23345-08. Mack 308-2. July 18, 1907,undated + + + + + + 32 + 7 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 23345-08 Mack 308-2. July 22, 1907,undated + + + + + + 32 + 8 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 23345-08 Mack 308-2. July 29, 1907,undated + + + + + + 32 + 9 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 23345-08 Mack 308-2 July 30, 1907,undated + + + + + + 32 + 10 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 23345-08 Mack 308-2. Aug. 7, 1907,undated + + + + + + 32 + 11 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: LROIA 172. Nov. 22, 1907,undated + + + + + + 32 + 12 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-PCLS, SDA, B1: 1907-8. Jan. 4, 1908,undated + + + + + + 32 + 13 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: LROIA File # 127, 1-29-1908,undated + + + + + + 32 + 14 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: LNA (GLR) RG75, MA-GCS: ‘M’ Misc. 1911-17. March 3, 1908,undated + + + + + + 32 + 15 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75, Mackinac Agency, General Correspondence of Supt. “M” Mis 1911-1917, March 6, 1908,undated + + + + + + 32 + 16 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 23345-08 Mack 308-2. Mar. 25, 1908,undated + + + + + + 32 + 17 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 23345-08 Mack 308-2. Apr. 2, 1908,undated + + + + + + 32 + 18 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 23345-08 Mack 308-2. Apr. 25, 1908,undated + + + + + + 32 + 19 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: SAM, RG 60-8-A, Box 7, F10, April 25, 1908- June 30, 1909,undated + + + + + + 32 + 20 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 23345-08 Mack 308-2. Apr. 29, 1908,undated + + + + + + 32 + 21 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75: Mackinac Agency; General Correspondence of the Supt. Mason and O’Connor 1907-1912. Sept. 2, 1908,undated + + + + + + 32 + 22 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 23345-08 Mack 308-2 Sept 22, 1908,undated + + + + + + 32 + 23 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 23345-08 Mack 308-2. Sept. 30, 1908,undated + + + + + + 32 + 24 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 23345-08 Mack 308-2. Oct. 3, 1908,undated + + + + + + 32 + 25 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-PCLS, SDA, B1: 1907-8. Nov. 22, 1908,undated + + + + + + 32 + 26 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: Misc. Petitions for sale of land, ca. 1910, Jan. 9, 1909,undated + + + + + + 32 + 27 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 23345-08 Mack 308-2. Jan. 15, 1909,undated + + + + + + 32 + 28 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: LROIA 6370. Jan. 21, 1909, 1-21-1909,undated + + + + + + 32 + 29 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: Misc. Petitions for Sale of Land, ca. 1910, Jan. 22, 1909,undated + + + + + + 32 + 30 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 23345-08 Mack 308-2 Feb. 4, 1909,undated + + + + + + 32 + 31 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 23345-08 Mack 308-2. Feb. 8, 1909,undated + + + + + + 32 + 32 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 23345-08 Mack 308-2 Feb. 11, 1909,undated + + + + + + 32 + 33 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 21329-09 Mack 310. March 16, 1909,undated + + + + + + 32 + 34 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 23064-09 Mack March 22, 1909,undated + + + + + + 32 + 35 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 23064-09 Mack Apr. 2, 1909 (Folder 1 of 2),undated + + + + + + 32 + 36 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 23064-09 Mack Apr. 2, 1909 (Folder 2 of 2),undated + + + + + + 32 + 37 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 23064-09. Mack Apr. 26, 1909,undated + + + + + + 32 + 38 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 23064-09, 5-13-1909,undated + + + + + + 32 + 39 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 49380-09 Mack 313. June 21, 1909,undated + + + + + + 32 + 40 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 49380-09 Mack 313. July 8, 1909,undated + + + + + + 32 + 41 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 56562-09 Mackinac 313. July 14, 1909,undated + + + + + + 32 + 42 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 54530-09 Mackinac 313 July 19, 1909,undated + + + + + + 32 + 43 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 54530-09 Mackinac 313 July 19, 1909 (Folder 1 of 2),undated + + + + + + 32 + 44 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 54530-09 Mackinac 313 July 19, 1909 (Folder 2 of 2),undated + + + + + + 32 + 45 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 56582-09 Mackinac 313. July 29, 1909,undated + + + + + + 32 + 46 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-PCLS, SDA, B2: 1909-10. Aug. 14, 1909,undated + + + + + + 32 + 47 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-PCLS, SDA, B2: 1909-10. Aug. 18, 1909,undated + + + + + + 32 + 48 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: Misc. Petitions for Sale of Land, ca. 1910, Oct. 29, 1909,undated + + + + + + 32 + 49 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: Misc. Petitions for Sale of Land, ca. 1910, 1910,undated + + + + + + 32 + 50 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: Maxey, J. O. 1910-13 March 3, 1910,undated + + + + + + 32 + 51 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 18724-10 Mack 175. Mar. 4, 1910,undated + + + + + + 32 + 52 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 18724-10 Mack 175. March 24, 1910 (Folder 1 of 3),undated + + + + + + 32 + 53 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 18724-10 Mack 175. March 24, 1910 (Folder 2 of 3),undated + + + + + + 32 + 54 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 18724-10 Mack 175. March 24, 1910 (Folder 3 of 3),undated + + + + + + 32 + 55 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 18724-10 Mackinac 175 Apr. 20, 1910,undated + + + + + + 32 + 56 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS; Campbell, S. W. April 27, 1910,undated + + + + + + 32 + 57 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS; Campbell, S. W. May 27, 1910,undated + + + + + + 32 + 58 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 59925-10 Mackinac 313. July 30, 1910,undated + + + + + + 32 + 59 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 63354-10, Mack Agn 174.1. July 30, 1910,undated + + + + + + 32 + 60 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: ‘H’ Misc. 1910-15. Aug. 8, 1910,undated + + + + + + 32 + 61 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 63354-10. Aug. 10, 1910,undated + + + + + + 32 + 62 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75, MA-FR09-24, B27, F: Field Forestry Rules govern the Sale of Timber Allotments Maps and Forestry Regulation. Aug. 11, 1910,undated + + + + + + 32 + 63 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 63354-10 Mackinac 174.1 Aug. 15, 1910,undated + + + + + + 32 + 64 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLA), RG75, MA-AR, B18. Oct. 22, 1910,undated + + + + + + 32 + 65 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 89798-10, Nov. 10, 1910,undated + + + + + + 32 + 66 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 89798-10 Mack 310. Nov. 15, 1910 (Folder 1 of 2),undated + + + + + + 32 + 67 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 89798-10 Mack 310. Nov. 15, 1910 (Folder 2 of 2),undated + + + + + + 32 + 68 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: ‘H’ Misc. 1910-15. Dec. 7, 1910,undated + + + + + + 32 + 69 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 89798-10 Mackinac 310. Dec. 24, 1910,undated + + + + + + 32 + 70 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 89798-10 Mack 310. Dec. 12, 1910,undated + + + + + + 32 + 71 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLA), RG75, Mackinac Agency, General Correspondence of the Superintendent. “M” Misc. 1908-1914. Jan. 13, 1911,undated + + + + + + 32 + 72 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GRL), RG75: Mackinac Agency, General Correspondence of the Superintendent: Maxey, J. O. 1910-1913, Feb. 8, 1911,undated + + + + + + 32 + 73 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75, Row 361. Mackinac Agency Correspondences, 1910-1913, Feb. 24, 1911,undated + + + + + + 32 + 74 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: AG 1911-14. March 10, 1911,undated + + + + + + 32 + 75 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: AG 1911-14. March 14, 1911,undated + + + + + + 32 + 76 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: AG 1911-14. March 16, 1911 (Folder 1 of 2),undated + + + + + + 32 + 77 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: AG 1911-14. March 16, 1911 (Folder 2 of 2),undated + + + + + + 32 + 78 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75, MA-GCS: Farr Letters 1909-11. March 23, 1911,undated + + + + + + 32 + 79 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 32273-11, Mar. 27, 1911,undated + + + + + + 32 + 80 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 32273-11, Apr. 10, 1911,undated + + + + + + 32 + 81 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: Allotments 1915-16. April 15, 1911?,undated + + + + + + 32 + 82 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: LROIA 37812. Apr. 26, 1911,undated + + + + + + 32 + 83 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 32273-11 Chip Lake 154. May 1, 1911,undated + + + + + + 32 + 84 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 37812-11 Chip Lake 304.2 May 5, 1911,undated + + + + + + 32 + 85 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: AG 1911-14. May 8, 1911,undated + + + + + + 32 + 86 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: AG 1911-14. May 11, 1911,undated + + + + + + 32 + 87 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75, MA-FR09-24, B27, F: Field Forestry Extension Agreements- Morrison Ext. July 8, 1911,undated + + + + + + 32 + 88 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF Chip Lake 310. Aug. 5, 1911,undated + + + + + + 32 + 89 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: Misc. Petitions for Sale of Land, ca. 1910. Aug. 7, 1911,undated + + + + + + 32 + 90 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-FR09-24, B27, F: Field Forestry Extension Agreements- Morrison Ext. Aug. 10/11, 1911,undated + + + + + + 32 + 91 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-PCLS, SDA, B2: 1911-13. Aug. 17, 1911,undated + + + + + + 32 + 92 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-PCLS, SDA, B2: 1911-13. Aug. 18/ 16, 1911 (Folder 1 of 2),undated + + + + + + 32 + 93 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-PCLS, SDA, B2: 1911-13. Aug. 18/ 16, 1911 (Folder 2 of 2),undated + + + + + + 32 + 94 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-FR09-24, B27, F: Field Forestry Extension Agreements- Morrison Ext. Aug. 22, 1911,undated + + + + + + 32 + 95 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-PCLS, SDA, B2: 1911-13. Aug. 24, 1911,undated + + + + + + 32 + 96 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-FR09-24, B27, F: Field Forestry Extension Agreements- Morrison Ext. Aug. 28, 1911,undated + + + + + + 32 + 97 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-PCLS, SDA, B2: 1911-13. Aug. 29, 1911,undated + + + + + + 32 + 98 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-PCLS, SDA, B2: 1911-1913. Aug. 30, 1911,undated + + + + + + 32 + 99 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75, MA-GCS: ‘H’ Misc. 1910-15. Sept. 22, 1911,undated + + + + + + 32 + 100 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75, Mackinac Agency- General Correspondence of the Supt.: Misc. Petitions for the Sale of Land, ca. 1910, Sept. 23, 1911,undated + + + + + + 32 + 101 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-AR, B18. Oct. 6, 1911,undated + + + + + + 32 + 102 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 90481-11 Chip Lake Oct. 19, 1911,undated + + + + + + 32 + 103 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-PCLS, SDA, B2: 1911-13. [Oct. or Nov.] 1911,undated + + + + + + 32 + 104 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-PCLS, SDA, B2: 1911-13. Nov. 10, 1911,undated + + + + + + 32 + 105 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-PCLS, SDA, B2: 1911-13. Dec. 5, 1911,undated + + + + + + 32 + 106 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-PCLS, SDA, B2: 1911-13. Dec. 11, 1911,undated + + + + + + 32 + 107 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 90481-11 Chip Lake. Dec. 20, 1911,undated + + + + + + 32 + 108 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-PCLS, SDA, B2: 1911-13, [1912],undated + + + + + + 32 + 109 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-PCLS, SDA, B2: 1911-13. Feb. 24, 1912,undated + + + + + + 32 + 110 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-FR09-24, B27, F: Field Forestry Extension Agreements- Morrison Ext., April 4, 1912,undated + + + + + + 32 + 111 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 90481-11 Chip Lake 300, Apr. 30, 1912,undated + + + + + + 32 + 112 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 90481-11 Chip Lake 300. May 3, 1912,undated + + + + + + 32 + 113 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-PCLS, SDA, B2: 1911-13. May 4, 1912,undated + + + + + + 32 + 114 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 90481-11 Chip Lake 300. May 15, 1912,undated + + + + + + 32 + 115 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75, Row 361: Mackinac Misc. (MA) Property, Financial and Heirship Record Statements, Heirs 1899-1903. June 30, 1912,undated + + + + + + 32 + 116 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75 MA-PCLS, SDA, B2: 1911-13. [Aug.?] 7, 1912,undated + + + + + + 32 + 117 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 91200-12 Chip Lake 053. Sept. 12, 1912 (Folder 1 of 2),undated + + + + + + 32 + 118 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 91200-12 Chip Lake 053. Sept. 12, 1912 (Folder 2 of 2),undated + + + + + + 32 + 119 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 91200-12 Chip Lake 053. Sept. 23, 1912,undated + + + + + + 32 + 120 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 91200-12 Chip Lake 053. Oct. 12, 1912,undated + + + + + + 32 + 121 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 94668-12 Mack. Oct. 23, 1912,undated + + + + + + 32 + 122 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 91200-12 Chip Lake 053. Oct. 24, 1912,undated + + + + + + 32 + 123 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 112457. Mack Nov. 8, 1912,undated + + + + + + 32 + 124 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 91200-12 Chip Lake Nov. 16, 1912,undated + + + + + + 32 + 125 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 10562-13 Mack 723. Jan. 23, 1913,undated + + + + + + 32 + 126 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 10562-13 Mack 723. Jan. 27, 1913,undated + + + + + + 32 + 127 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 10562-13. Mack 723. Feb. 3, 1913 (Folder 1 of 3),undated + + + + + + 32 + 128 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 10562-13. Mack 723. Feb. 3, 1913 (Folder 2 of 3),undated + + + + + + 32 + 129 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 10562-13. Mack 723. Feb. 3, 1913 (Folder 3 of 3),undated + + + + + + 32 + 130 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 10562-13. Mack 723. Feb. 5, 1913,undated + + + + + + 32 + 131 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 10562-1913. Mack 723. Mar. 21, 1913,undated + + + + + + 32 + 132 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 47019-1913. Mack 723 Apr. 8, 1913,undated + + + + + + 32 + 133 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 55182-13 Mack Apr. 22, 1913,undated + + + + + + 32 + 134 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 55182-13 Mack May 1, 1913,undated + + + + + + 32 + 135 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 55182-13 Mack. May 10, 1913 (Folder 1 of 2),undated + + + + + + 32 + 136 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 55182-13 Mack. May 10, 1913 (Folder 2 of 2),undated + + + + + + 32 + 137 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 55182-13 Mack May 12, 1913,undated + + + + + + 32 + 138 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 55182-13 Mack 300. May 23, 1913,undated + + + + + + 32 + 139 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: SAM, RG65-5-A, Box 2, file 4. May 31, 1913,undated + + + + + + 32 + 140 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: ‘P’ Misc. 1910-17. June 27, 1913,undated + + + + + + 32 + 141 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 92700-13 Mack Aug. 11, 1913,undated + + + + + + 32 + 142 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 92700-13 Mack Aug. 21, 1913,undated + + + + + + 32 + 143 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 92700-13 Mack Sept. 8, 1913,undated + + + + + + 32 + 144 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75, MA-AR, B18. Sept. 16, 1913,undated + + + + + + 32 + 145 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 109358-13 Mack Sept. 30, 1913,undated + + + + + + 32 + 146 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 109358-1913 Mackinac Agency. R. Buckland to COIA, Nov. 8, 1913,undated + + + + + + 32 + 147 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 109358-13 Mack. Nov. 8, 1913,undated + + + + + + 32 + 148 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 60483-13 Mack Nov. 20, 1913,undated + + + + + + 32 + 149 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 55182-13 Mack 300. Dec. 9, 1913,undated + + + + + + 32 + 150 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 92700-13 Mack 410. Dec. 22, 1913,undated + + + + + + 32 + 151 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 109358-13 Mack Dec. 22, 1913,undated + + + + + + 32 + 152 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 92700-13 Mackinac 410. Dec. 30, 1913,undated + + + + + + 32 + 153 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: E Misc 1910-17. Jan. 17, 1914,undated + + + + + + 32 + 154 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75, MA-FR09-24, B31, F: Permits for cutting of timber. Feb. 5, 1914,undated + + + + + + 32 + 155 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: ‘O’ 1910-17 Feb. 26, 1914,undated + + + + + + 32 + 156 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75, Mackinac Agency, General Correspondence of the Supt.: “O” 1910-1917. Feb. 28, 1914,undated + + + + + + 32 + 157 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 50691-14 Mack 053. May 1, 1914,undated + + + + + + 32 + 158 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 54512-13 Mack May 14, 1914,undated + + + + + + 32 + 159 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 50691-14 Mack 053. May 14, 1914 (Folder 1 of 2),undated + + + + + + 32 + 160 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 50691-14 Mack 053. May 14, 1914 (Folder 2 of 2),undated + + + + + + 32 + 161 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: AG 1911-14. May 25, 1914 (Folder 1 of 2),undated + + + + + + 32 + 162 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: AG 1911-14. May 25, 1914 (Folder 2 of 2),undated + + + + + + 32 + 163 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75, MA-GCS: AG, 1911-14. June 1, 1914,undated + + + + + + 32 + 164 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 54512-14 June 17, 1914,undated + + + + + + 32 + 165 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: SAM, RG65-5-A, Box 2, file 4, Hawke to Fuller, June 29, 1914,undated + + + + + + 32 + 166 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-AR, B18. Aug. 18, 1914,undated + + + + + + 32 + 167 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 50691-14 Mack 053. Sept 3, 1914,undated + + + + + + 32 + 168 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 50691-14 Mackinac 053. Sept 28, 1914,undated + + + + + + 32 + 169 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: ‘S’ Misc. 1915-1918 April 21, 1915,undated + + + + + + 32 + 170 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 47985-15 Mackinac 300, Mack Agen. Insp. Rpt., Apr 25, 1915,undated + + + + + + 32 + 171 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 87670-15 Mack July 27, 1915,undated + + + + + + 32 + 172 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75, MA-AR, B18. Aug. 16, 1915,undated + + + + + + 32 + 173 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 87670-15 Mack Aug. 18, 1915,undated + + + + + + 32 + 174 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 87670-15 Mack Sept. 3, 1915,undated + + + + + + 32 + 175 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 87670-15 Mack Sept. 6, 1915,undated + + + + + + 32 + 176 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 87670-15 Mack Sept. 21, 1915,undated + + + + + + 32 + 177 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 87670-15 Mack Sept. 28, 1915,undated + + + + + + 32 + 178 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 87670-15 Mack 054. Oct. 11, 1915,undated + + + + + + 32 + 179 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 87670-15 Mack Oct. 11, 1915,undated + + + + + + 32 + 180 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 87670-15 Mack Oct. 14, 1915,undated + + + + + + 32 + 181 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932 Mackinac 115. Oct 27, 1915,undated + + + + + + 32 + 182 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15. Mack 115. Nov. 2, 1915,undated + + + + + + 32 + 183 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Nov. 11, 1915 (Folder 1 of 2),undated + + + + + + 32 + 184 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Nov. 11, 1915 (Folder 2 of 2),undated + + + + + + 32 + 185 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Nov 19, 1915,undated + + + + + + 32 + 186 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Nov 26, 1915,undated + + + + + + 32 + 187 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 87670 Mack 054. Dec. 1, 1915,undated + + + + + + 32 + 188 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 87670 Mack 054. Dec 3, 1915,undated + + + + + + 32 + 189 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Dec 13, 1915,undated + + + + + + 32 + 190 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932 Mackinac 115 Dec. 29, 1915,undated + + + + + + 32 + 191 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Jan. 24, 1916,undated + + + + + + 32 + 192 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Jan. 27, 1916,undated + + + + + + 32 + 193 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Feb. 3, 1916,undated + + + + + + 32 + 194 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Feb. 19, 1916,undated + + + + + + 32 + 195 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15. Mack 115. Feb. 23, 1916,undated + + + + + + 32 + 196 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Mar 6, 1916,undated + + + + + + 32 + 197 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Mar 7, 1916,undated + + + + + + 32 + 198 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Mar 10, 1916,undated + + + + + + 32 + 199 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Mar 15, 1916,undated + + + + + + 32 + 200 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Mar 17, 1916,undated + + + + + + 32 + 201 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Mar 22, 1916,undated + + + + + + 32 + 202 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Mar 24, 1916,undated + + + + + + 32 + 203 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932, 1915 Mackinac 115 Mar 27, 1916,undated + + + + + + 32 + 204 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: ‘P’ Misc. 1910-17. April 3, 1916,undated + + + + + + 32 + 205 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Apr 3, 1916,undated + + + + + + 32 + 206 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Apr 14, 1916,undated + + + + + + 32 + 207 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Apr 15, 1916,undated + + + + + + 32 + 208 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Apr 20, 1916,undated + + + + + + 32 + 209 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Apr 24, 1916,undated + + + + + + 32 + 210 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Apr 25, 1916,undated + + + + + + 32 + 211 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75: Mackinac Agency, General Correspondence of the Supt: “P” Misc. 1910-19. April 29, 1916,undated + + + + + + 32 + 212 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932 Mackinac 115. May 2, 1916,undated + + + + + + 32 + 213 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932, 1915 Mack 115. May 3, 1916,undated + + + + + + 32 + 214 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. May 10, 1916,undated + + + + + + 32 + 215 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. July 5, 1916,undated + + + + + + 32 + 216 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: ‘R’ Misc. 1914-17. Aug. 22, 1916,undated + + + + + + 32 + 217 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: ‘R’ Misc. 1914-17. Aug. 23, 1916 (Folder 1 of 2),undated + + + + + + 32 + 218 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: ‘R’ Misc. 1914-17. Aug. 23, 1916 (Folder 2 of 2),undated + + + + + + 32 + 219 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Aug. 29, 1916,undated + + + + + + 32 + 220 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: ‘D’ Misc. 1910-18. Sept. 19, 1916,undated + + + + + + 32 + 221 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: ‘R’ Misc. 1914-17. Sept. 28, 1916,undated + + + + + + 32 + 222 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: ‘D’ Misc. 1910-18. Oct. 13, 1916,undated + + + + + + 32 + 223 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: ‘D’ Misc. 1910-18. Oct. 16, 1916,undated + + + + + + 32 + 224 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75, MA-AR, B18. Nov. 15, 1916,undated + + + + + + 32 + 225 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932 Mackinac 115. Dec. 12, 1916,undated + + + + + + 32 + 226 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: RG75 LR-BIA. Dec. 12, 1916CCF 115932-15 Mack 115. Dec 22, 1916,undated + + + + + + 32 + 227 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75: Mackinac Agency, General Correspondence of the Supt: ‘R’ Misc. 1914-1917. Dec. 29, 1916,undated + + + + + + 32 + 228 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75: NA (GLR) RG75, MA-GCS: ‘R’ Misc. 1914-17. Dec. 29, 1916,undated + + + + + + 32 + 229 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Dec. 30, 1916,undated + + + + + + 32 + 230 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Jan 4, 1917,undated + + + + + + 32 + 231 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15. Mack 115. Jan. 16, 1917,undated + + + + + + 32 + 232 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: SAM RG65-5-A, Box 2, file 4. Fuller to COIA, Feb. 1, 1917,undated + + + + + + 32 + 233 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932, 1915, Mackinac 115. Feb. 1, 1917,undated + + + + + + 32 + 234 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15, 115. March 1, 1917,undated + + + + + + 32 + 235 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. March 5, 1917,undated + + + + + + 32 + 236 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. March 6, 1917,undated + + + + + + 32 + 237 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. March 8, 1917,undated + + + + + + 32 + 238 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. March 18, 1917,undated + + + + + + 32 + 239 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Apr 11, 1917,undated + + + + + + 32 + 240 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: ‘S’ Misc. 1915-18. April 30, 1917,undated + + + + + + 32 + 241 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75, MA-GCS: ‘S’ Misc. 1915-18. May 12, 1917,undated + + + + + + 32 + 242 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. May 25, 1917,undated + + + + + + 32 + 243 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. June 1, 1917,undated + + + + + + 32 + 244 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. June 7, 1917,undated + + + + + + 32 + 245 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. June 7, 1917,undated + + + + + + 32 + 246 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. June 20, 1917 (Folder 1 of 2),undated + + + + + + 32 + 247 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. June 20, 1917 (Folder 2 of 2),undated + + + + + + 32 + 248 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 83373-17 Mack 125. Aug 29, 1917,undated + + + + + + 32 + 249 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932, 1915, Mackinac 115. Sept. 8, 1917,undated + + + + + + 32 + 250 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Sept. 10, 1917 (Folder 1 of 2),undated + + + + + + 32 + 251 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Sept. 10, 1917 (Folder 2 of 2),undated + + + + + + 32 + 252 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75, MA-AR, B18. Sept. 25, 1917,undated + + + + + + 32 + 253 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 83373-17 Mack 125. Oct. 23, 1917 (Folder 1 of 2),undated + + + + + + 32 + 254 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 83373-17 Mack 125. Oct. 23, 1917 (Folder 2 of 2),undated + + + + + + 32 + 255 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75, MA-AR, B19. [1918],undated + + + + + + 32 + 256 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 83373-17 Mack 125, Feb. 7, 1918,undated + + + + + + 32 + 257 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 26510-18 Mack 302. Mar 25, 1918,undated + + + + + + 32 + 258 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 26510-18 Mack 302. Apr 1, 1918,undated + + + + + + 32 + 259 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: Allotments 1915-26. April 19, 1918,undated + + + + + + 32 + 260 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-GCS: Allotments, 1915-26. June 25, 1918,undated + + + + + + 32 + 261 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 26510-18 Mack 302. Oct. 1, 1918,undated + + + + + + 32 + 262 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 26510-18 Mack 302. Oct. 22, 1918,undated + + + + + + 32 + 263 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75, MA-AR, B18. Feb. 21, 1919,undated + + + + + + 32 + 264 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75, MA-FR09-24, B27, F: 1919-1923. Oct. 20, 1919,undated + + + + + + 32 + 265 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75, MA-AR, B19. [1920],undated + + + + + + 32 + 266 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: KBIC-ROA, B2, file “Delia Semesky.” Dec. 13, 1920,undated + + + + + + 32 + 267 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR) RG75, MA-FR09-24, B27, F: Hebard Extensions Sept. 26, 1921,undated + + + + + + 32 + 268 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 85054-21 Mack 270. Sept 26, 1921,undated + + + + + + 32 + 269 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75, MA-FR09-24, B27, F: Hebard Extensions. Sept. 27, 1921,undated + + + + + + 32 + 270 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 85054-21 Mack Oct 21, 1921,undated + + + + + + 32 + 271 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 85054-21 Mack Oct 26, 1921,undated + + + + + + 32 + 272 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Oct 31, 1921 (Folder 1 of 2),undated + + + + + + 32 + 273 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Oct 31, 1921 (Folder 2 of 2),undated + + + + + + 32 + 274 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-1915 Mackinac 115. Nov 4, 1921,undated + + + + + + 32 + 275 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 85054-21 Mack Nov 4, 1921 (Folder 1 of 2),undated + + + + + + 32 + 276 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 85054-21 Mack Nov 4, 1921 (Folder 2 of 2),undated + + + + + + 32 + 277 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 85054-21 Mack 270. Nov 5, 1921,undated + + + + + + 32 + 278 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 115932-15 Mack 115. Dec. 30, 1921,undated + + + + + + 32 + 279 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 89477-21 Mack Jan 10, 1922,undated + + + + + + 32 + 280 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 3056-22 Mack Jan 18, 1922 (Folder 1 of 2),undated + + + + + + 32 + 281 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 3056-22 Mack Jan 18, 1922 (Folder 2 of 2),undated + + + + + + 32 + 282 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 85054-21 Mack 270. Jan 20, 1922,undated + + + + + + 32 + 283 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 36837-22 Mack 302 May 2, 1922,undated + + + + + + 32 + 284 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 36837-22 Mack 302, May 4, 1922,undated + + + + + + 32 + 285 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 36837-22 Mack 302. May 13, 1922,undated + + + + + + 32 + 286 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: SAM RG65-5-A, Box 2, file 4, June 27, 1922, Merritt to Aud. General of MI, 1922,undated + + + + + + 32 + 287 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: SAM RG65-5-A, Box 2, file 4, Clement to Fuller, Aug. 1, 1922,undated + + + + + + 32 + 288 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 101388-1922 Mackinac 170, Dec 22, 1922,undated + + + + + + 32 + 289 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA RG75, CCF-Mackinac: 1922- 101393-300. Dec. 22, 1922,undated + + + + + + 32 + 290 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA (GLR), RG75, MA-AR, B19. 1923,undated + + + + + + 32 + 291 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA RG75, CCF- Mackinac: 1923-4899. Jan. 17, 1923,undated + + + + + + 32 + 292 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 18206-23, Jan. 19, 1923 (Folder 1 of 2),undated + + + + + + 32 + 293 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 18206-23, Jan 19, 1923 (Folder 2 of 2),undated + + + + + + 32 + 294 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 18206-23, Jan 20, 1923,undated + + + + + + 32 + 295 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA RG75, CCF-Mackinac: 4899-1923. Feb. 7, 1923,undated + + + + + + 32 + 296 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: NA RG75, CCF- Mackinac: 4899-1923 Feb. 28, 1923,undated + + + + + + 32 + 297 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 18206-23. Mar 1, 1923,undated + + + + + + 32 + 298 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: 22120-23 Mack 302. March 15, 1923,undated + + + + + + 32 + 299 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 22120-23 Mack 302. Mar 29, 1923,undated + + + + + + 32 + 300 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: CCF 18206-23 Apr 7, 1923,undated + + + + + + 32 + 301 + Box 3 Keweenaw Bay Indian Community, Calendar documents, 1907-1923: KBIC-ROA, B2, F: Lease Forms May 26, 1923,undated + + + + + + 33 + 1 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: CCF 78979-24 Mack 126. 1924,undated + + + + + + 33 + 2 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: SAM, RG65-5-A, Box 2, file 4, Burke: Circular to Supt’s and Field Officers, May 7, 1924,undated + + + + + + 33 + 3 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: SAM, RG65-5-A, Box 2, file 4, Oct. 30, 1924, Clerk, OIA to Fuller, 1924,undated + + + + + + 33 + 4 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: CCF 78979-24 Mack 126. Nov. 5, 1924,undated + + + + + + 33 + 5 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: NA RG75, CCF-Mackinac 78979-1924-126. [encl.], Nov. 5, 1924,undated + + + + + + 33 + 6 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: CCF 78979-24 Mack 126. Nov. 5, 1924,undated + + + + + + 33 + 7 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: NA RG75, CCF-Mackinac: 78979-1924-126. Nov. 11, 1924,undated + + + + + + 33 + 8 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B1, F: Misc. 1930s,undated + + + + + + 33 + 9 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: CCF 78979-24 Mack 126. Nov 11, 1924,undated + + + + + + 33 + 10 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: SAM RG65-5-A, Box 2, File 4, COIA to Fuller, Nov. 19, 1924,undated + + + + + + 33 + 11 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: NA RG75, CCF- Mackinac: 78979-1924-126. Nov. 26, 1924,undated + + + + + + 33 + 12 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: CCF 78979-24 Mack 126. Nov 28, 1924,undated + + + + + + 33 + 13 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: CCF 78979-1924 Mackinac 126 Dec. 2, 1924,undated + + + + + + 33 + 14 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: CCF 78979-24 Mack 126. Dec. 11, 1924,undated + + + + + + 33 + 15 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: CCF 78979-24 Mack 126 Dec. 20, 1924,undated + + + + + + 33 + 16 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: Baraga Co. HS Calendar [pre 1925], Indian Camp Meeting, Pequaming Point, 1925,undated + + + + + + 33 + 17 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: CCF 78979-24 Mack 126 Jan 16, 1925,undated + + + + + + 33 + 18 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: CCF 22465-25 Mack 115 Mar 23, 1925,undated + + + + + + 33 + 19 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: CCF 22465-25 Mack 115 Apr 4, 1925,undated + + + + + + 33 + 20 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: CCF 32301-1926 Mackinac 115, 1926,undated + + + + + + 33 + 21 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: NA (GLR) RG75, MA-GCS: Allotment 1915-16. Jan. 16, 1926,undated + + + + + + 33 + 22 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: NA, RG75, CCF Mackinac: 32301-1926-115 Feb. 26, 1926,undated + + + + + + 33 + 23 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: CCF 32301-1926 Mack Agen 115 June 28, 1926,undated + + + + + + 33 + 24 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: CCF 32301-26 Mack 115. July 19, 1926,undated + + + + + + 33 + 25 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: CCF 32301-1926. Mack 115. July 26, 1926,undated + + + + + + 33 + 26 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: CCF 32301-1926 Mackinac 115 Aug 5, 1926,undated + + + + + + 33 + 27 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: CCF 32301-26 Mack 115. Aug 10, 1926,undated + + + + + + 33 + 28 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: NA (GLR), RG75, MA-GCS: ‘R’ Misc. 1922-7. Sept. 8, 1926,undated + + + + + + 33 + 29 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: NA (GLR) RG75, MA-GCS: ‘R’ Misc. 1922-27. Sept. 10, 1926,undated + + + + + + 33 + 30 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: CCF 32301-26 Mack 115. May 11, 1927,undated + + + + + + 33 + 31 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: CCF 32301-26 Mack 115. May 26, 1927,undated + + + + + + 33 + 32 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: CCF 32301-26 Mack 115. May 28, 1927,undated + + + + + + 33 + 33 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B1, F: Misc. 1930s?,undated + + + + + + 33 + 34 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: NA (GLR), RG75, Row 361- D206, Great Lakes Agency, General Subject Files, 053-061. 1927-1932. Milwaukee Sentinel- March 28, 1930,undated + + + + + + 33 + 35 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: NA (GLR), RG75, BDC, Row 361: O57. June 2, 1930,undated + + + + + + 33 + 36 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: NA (GLR), RG75, Row 361: O57 Birth and Death, Census Rolls, Tribal Relations. June 3, 1930,undated + + + + + + 33 + 37 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: Letters, Misc. Correspondence Feb. 21, 1933,undated + + + + + + 33 + 38 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: SAM RG65-5-A, Box 2, File 4 April 13, 1933, Rhoads to Stack, 1933,undated + + + + + + 33 + 39 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: NA RG75, CCF- Lac Du Flambeau: 34118-34. [1934]undated + + + + + + 33 + 40 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Residents of Zeba, 1934 (Folder 1 of 2) ,undated + + + + + + 33 + 41 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Residents of Zeba, 1934 (Folder 2 of 2),undated + + + + + + 33 + 42 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: NA RG75, CCF-Lac Du Flambeau- 34118- 34 [1934],undated + + + + + + 33 + 43 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: NA (GLR), RG75, BDC, Row 361: O57 Oct. 27, 1934,undated + + + + + + 33 + 44 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Land Purchase Project, 1938. March 21, 1935 (Folder 1 of 2),undated + + + + + + 33 + 45 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Land Purchase Project, 1938. March 21, 1935 (Folder 2 of 2),undated + + + + + + 33 + 46 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: “Land Purchase Project 1930” April 24, 1935,undated + + + + + + 33 + 47 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: Land Purchase Project, 1938. June 6, 1935,undated + + + + + + 33 + 48 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Land Purchase Project, 1938. July 15, 1935,undated + + + + + + 33 + 49 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Land Purchase Project, 1938 July 22, 1935,undated + + + + + + 33 + 50 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Land Purchase Project, 1938. July 24, 1935,undated + + + + + + 33 + 51 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Land Purchase Project, 1938. July 25, 1935,undated + + + + + + 33 + 52 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: “Land Purchase Project 1938” Aug. 17, 1935,undated + + + + + + 33 + 53 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: “Land Purchase Project, 1938. Aug. 19, 1935,undated + + + + + + 33 + 54 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Land Purchase Project, 1938. Sept. 30, 1935,undated + + + + + + 33 + 55 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, file: Letters, Misc. Correspondences, Jan. 29, 1936,undated + + + + + + 33 + 56 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, file: Letters, Misc. Correspondences, Feb. 14, 1936,undated + + + + + + 33 + 57 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: WPA. June 17, 1936,undated + + + + + + 33 + 58 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Reports of Official Visits/ Forms, July 10, 1936,undated + + + + + + 33 + 59 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2; F: Report of Official Visit/ Forms, July 11, 1936,undated + + + + + + 33 + 60 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Land Purchase Project 1938. July 12, 1936,undated + + + + + + 33 + 61 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Mortgage Forms, Chattel Chop Livestock, Dec. 14, 1936,undated + + + + + + 33 + 62 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 1, file: Misc. Papers, Correspondence Dec. 17, 1936,undated + + + + + + 33 + 63 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, WPA Rural Property Inventories: Arvon 1937-1939,undated + + + + + + 33 + 64 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: WPA Feb. 2, 1937,undated + + + + + + 33 + 65 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-COA, Box 2, File “Law and Order” Mar 26, 1937 (Folder 1 of 2),undated + + + + + + 33 + 66 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Law and Order” March 26, 1937 (Folder 2 of 2),undated + + + + + + 33 + 67 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, Folder “Diocese of MQ” F: Mission Lands, April 12, 1937,undated + + + + + + 33 + 68 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Reports of Official Visits/ Forms April 20, 1937,undated + + + + + + 33 + 69 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Land Purchase Project 1938. May 10, 1937,undated + + + + + + 33 + 70 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, Folder “Diocese of MQ,” F: Mission Lands June 16, 1937,undated + + + + + + 33 + 71 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Land Purchase Project 1938, July 2, 1937,undated + + + + + + 33 + 72 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Mortgage Forms, Chattel Chop Livestock, July 29, 1937,undated + + + + + + 33 + 73 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: “Land Acquisitions” Aug. 2, 1937,undated + + + + + + 33 + 74 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC- ROA, Box 2, File: “Land Acquisitions” Aug. 12, 1937,undated + + + + + + 33 + 75 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Springs OCCID” Aug. 16, 1937,undated + + + + + + 33 + 76 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Spring OCCID” Aug. 17, 1937,undated + + + + + + 33 + 77 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: “Land Acquisitions” Aug. 21, 1937,undated + + + + + + 33 + 78 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: “Land Acquisitions” Sept. 10, 1937,undated + + + + + + 33 + 79 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: Land Purchase Project 1938. Sept. 18, 1937,undated + + + + + + 33 + 80 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: NARG75, CCF- Great Lakes- 66037-1937-033 Nov. 8, 1937,undated + + + + + + 33 + 81 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: Land Purchase Project, 1938. Oct. 6, 1937,undated + + + + + + 33 + 82 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: Land Purchase Project, 1938. Oct. 8, 1937,undated + + + + + + 33 + 83 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: Letters, Misc. Correspondence, Oct. 8, 1937,undated + + + + + + 33 + 84 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Land Purchase Project, 1938. Nov. 22, 1937,undated + + + + + + 33 + 85 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, folder: “Diocese of MQ” F: Mission Lands, Dec. 2, 1937,undated + + + + + + 33 + 86 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: Land Purchase Project, 1938. Dec. 14, 1937 (Folder 1 of 2),undated + + + + + + 33 + 87 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: Land Purchase Project, 1938. Dec. 14, 1937 (Folder 2 of 2),undated + + + + + + 33 + 88 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Land Purchase Project, 1938. Dec. 31, 1937,undated + + + + + + 33 + 89 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, WPA-Rural Property Inventory: Baraga Twp., Book 2 of 5. 1938,undated + + + + + + 33 + 90 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, file “Treasurer Tribal Corr.” [1938],undated + + + + + + 33 + 91 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Letter’s, Misc. Correspondence, [circa 1938?],undated + + + + + + 33 + 92 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Land Purchase Project 1938 [circa 1938],undated + + + + + + 33 + 93 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: "Land Purchase Project 1938" [circa 1938],undated + + + + + + 33 + 94 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Tract 92.R.S. Buckland” [circa 1938],undated + + + + + + 33 + 95 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B1, File: Misc. 1938,undated + + + + + + 33 + 96 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B1, F: Misc. 1938,undated + + + + + + 33 + 97 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Land Purchase Project 1938. Jan. 3, 1938,undated + + + + + + 33 + 98 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Land Purchase Project, 1938.” Jan. 13, 1938,undated + + + + + + 33 + 99 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: “Land Purchase Project 1938” Jan. 20, 1938,undated + + + + + + 33 + 100 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: “Land Purchase Project 1938” Jan. 24, 1938,undated + + + + + + 33 + 101 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: “Land Purchase Project 1938.” Feb. 2, 1938,undated + + + + + + 33 + 102 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: “Land Purchase Project 1938.” March 1, 1938,undated + + + + + + 33 + 103 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Land Purchase Project 1938. March 21, 1938,undated + + + + + + 33 + 104 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Land Purchase Project 1938. March 29, 1938,undated + + + + + + 33 + 105 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: Land Purchase Project 1938. April 5, 1938,undated + + + + + + 33 + 106 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: “Land Acquisition” April 14, 1938,undated + + + + + + 33 + 107 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Tract 92. R. S. Buckland” April 14, 1938,undated + + + + + + 33 + 108 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: Land Purchase Project 1938, April 18, 1938,undated + + + + + + 33 + 109 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: Land Purchase Project 1938. April 22, 1938 (Folder 1 of 2),undated + + + + + + 33 + 110 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: Land Purchase Project 1938. April 22, 1938 (Folder 2 of 2),undated + + + + + + 33 + 111 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Law and Order” April 22, 1938,undated + + + + + + 33 + 112 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC- ROA, Box 2, file “Tract 92. R. S. Buckland” April 29, 1938,undated + + + + + + 33 + 113 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Credit Loan- Tribal. May 10, 1938,undated + + + + + + 33 + 114 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charlotte Tyosh, No. 53. May 10, 1938,undated + + + + + + 33 + 115 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Land Acquisitions” May 14, 1938,undated + + + + + + 33 + 116 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charlotte Tyosh, No. 53. May 28, 1938,undated + + + + + + 33 + 117 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, folder “Diocese of MQ,” F: Mission Lands. June 11, 1938,undated + + + + + + 33 + 118 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Credit Loan- Tribal. June 18, 1938,undated + + + + + + 33 + 119 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charlotte Tyosh, No. 53. July 11, 1938,undated + + + + + + 33 + 120 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Credit Loan- Tribal. July 19, 1938,undated + + + + + + 33 + 121 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: Letters, Misc. Correspondence. Aug. 12, 1938,undated + + + + + + 33 + 122 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, file “Helen C. Welsh” Sept. 16, 1938,undated + + + + + + 33 + 123 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, File “Treasurer Tribal Corr.” Oct. 6, 1938,undated + + + + + + 33 + 124 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: Tract 92. R. S. Buckland. Oct. 13, 1938,undated + + + + + + 33 + 125 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Land Purchase Project 1938. Oct. 24, 1938,undated + + + + + + 33 + 126 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Letters, Misc. Correspondence. Nov. 1, 1938,undated + + + + + + 33 + 127 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: Land Purchase Project, 1938. Nov. 5, 1938,undated + + + + + + 33 + 128 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: Land Purchase Project 1938. Nov. 7, 1938,undated + + + + + + 33 + 129 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC- ROA, Box 2, file “Tract 92. R. S. Buckland” Nov. 30, 1938,undated + + + + + + 33 + 130 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 1, file: Misc. Papers, Correspondence. Nov. 30, 1938,undated + + + + + + 33 + 131 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B1, F: Misc. Nov. 30, 1938,undated + + + + + + 33 + 132 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: 14 mile Pt. Lighthouse. Nov. 30, 1938,undated + + + + + + 33 + 133 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Tract 92. R. S. Buckland” Dec. 2, 1938,undated + + + + + + 33 + 134 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file ‘Land Purchase Project’ Dec. 3, 1938,undated + + + + + + 33 + 135 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: Land Purchase Project 1938. Dec. 4, 1938,undated + + + + + + 33 + 136 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: 14 mile Pt. Lighthouse. Dec. 7, 1938,undated + + + + + + 33 + 137 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: Land Purchase Project. Dec. 8, 1938,undated + + + + + + 33 + 138 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Land Purchase Project 1938” Dec. 9, 1938,undated + + + + + + 33 + 139 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: Letter, Misc. Correspondence. Dec. 9, 1938,undated + + + + + + 33 + 140 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: Letters, Misc. Correspondence. Dec. 9, 1938,undated + + + + + + 33 + 141 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Springs O.C.C.I.D.” Dec. 24, 1938,undated + + + + + + 33 + 142 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Tract 92. R. S. Buckland” 1939,undated + + + + + + 33 + 143 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: Letters, Misc. Correspondence, [1939],undated + + + + + + 33 + 144 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Land Assignment Applications,” [circa 1939],undated + + + + + + 33 + 145 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Petitions to Council ’40. Jan. 4, 1939,undated + + + + + + 33 + 146 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: 14 mile Pt. Lighthouse. Jan. 6, 1939,undated + + + + + + 33 + 147 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Land Assignment Application” Jan. 7, 1939,undated + + + + + + 33 + 148 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Land Purchase Project 1938” Jan. 9, 1939,undated + + + + + + 33 + 149 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Land Purchase Project 1938” Jan. 10, 1939,undated + + + + + + 33 + 150 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Land Assignment Applications” Jan. 16, 1939,undated + + + + + + 33 + 151 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Tract 92. R. S. Buckland” Jan. 23, 1939 (Folder 1 of 2),undated + + + + + + 33 + 152 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Tract 92. R. S. Buckland” Jan. 23, 1939 (Folder 2 of 2),undated + + + + + + 33 + 153 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: “Tract 92. R. S. Buckland” Jan. 25, 1939,undated + + + + + + 33 + 154 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Tract 92. R. S. Buckland” Feb. 1, 1939,undated + + + + + + 33 + 155 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: “Diocese of MQ,” F: Mission Lands [encl.: Dec. 2, 1937], Jan. 31, 1939,undated + + + + + + 33 + 156 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Land Purchase Project 1938” Feb. 5, 1939,undated + + + + + + 33 + 157 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Tract 92. R. S. Buckland” Feb. 6, 1939,undated + + + + + + 33 + 158 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, file “James St. Arnold” Feb. 6, 1939,undated + + + + + + 33 + 159 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file ‘Land Purchase Project 1938” Feb. 28, 1939,undated + + + + + + 33 + 160 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Tract 92. R. S. Buckland” April 3, 1939,undated + + + + + + 33 + 161 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Wills Instructions,” April 12, 1939,undated + + + + + + 33 + 162 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Tract 92, R. S. Buckland” April 17, 1939,undated + + + + + + 33 + 163 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Letters, Misc. Correspondence May 22, 1939,undated + + + + + + 33 + 164 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Land Assignments- St. Arnold” Dec. 7, 1940 (enclosures), June 19, 1939,undated + + + + + + 33 + 165 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Tract 92. R. S. Buckland” June 20, 1939,undated + + + + + + 33 + 166 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: Land Assign “St. Arnold” Dec. 7, 1940 enclosures, July 7, 1939,undated + + + + + + 33 + 167 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: Letters, Misc. Correspondence, July 10, 1939,undated + + + + + + 33 + 168 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charles Picard, July 22, 1939,undated + + + + + + 33 + 169 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charles Picard, Aug. 16, 1939,undated + + + + + + 33 + 170 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charles Picard, Aug. 24, 1939,undated + + + + + + 33 + 171 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charles Picard, Aug. 31, 1939,undated + + + + + + 33 + 172 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: George Rice, Sept. 8, 1939,undated + + + + + + 33 + 173 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, file: Letters, Misc. Correspondence, Sept. 29, 1939,undated + + + + + + 33 + 174 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Letters, Misc. Correspondence, Oct. 10, 1939,undated + + + + + + 33 + 175 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Tract 92. R. S. Buckland” Oct. 12, 1939,undated + + + + + + 33 + 176 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Tract 92. R. S. Buckland” Oct. 24, 1939,undated + + + + + + 33 + 177 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Land Assignment Applications” Nov. 6, 1939,undated + + + + + + 33 + 178 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, File “Thomas Shalafoe Sr.” Nov. 7, 1939,undated + + + + + + 33 + 179 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Tract 92. R. S. Buckland” Nov. 13, 1939,undated + + + + + + 33 + 180 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Law and Order” Nov. 17, 1939,undated + + + + + + 33 + 181 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Law and Order” Nov. 21, 1939,undated + + + + + + 33 + 182 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Tract 92. R. S. Buckland” Nov. 25, 1939 (Folder 1 of 2),undated + + + + + + 33 + 183 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Tract 92. R. S. Buckland” Nov. 25, 1939 (Folder 2 of 2),undated + + + + + + 33 + 184 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: 14 mile Pt. Lighthouse, Nov. 29, 1939,undated + + + + + + 33 + 185 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Letters, Misc. Correspondence, Dec. 1, 1939,undated + + + + + + 33 + 186 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Albert W. Spruce” Dec. 30, 1939,undated + + + + + + 33 + 187 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, F “Voting Lists” Dec. 30, 1939,undated + + + + + + 33 + 188 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: “Land Assignment Applications,” [circa 1940s?],undated + + + + + + 33 + 189 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, file “Helen C. Welsh,” [circa 1940s],undated + + + + + + 33 + 190 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Land Assignment Applications,” [circa 1940] (Folder 1 of 2),undated + + + + + + 33 + 191 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Land Assignment Applications,” [circa 1940] (Folder 2 of 2),undated + + + + + + 33 + 192 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Lizzie Roberts, [circa 1940],undated + + + + + + 33 + 193 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Credit Loan-Tribal, [circa 1940?] (Folder 1 of 2),undated + + + + + + 33 + 194 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Credit Loan-Tribal, [circa 1940?] (Folder 2 of 2),undated + + + + + + 33 + 195 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, File “Thomas Shalafoe Sr.,” [circa 1940s],undated + + + + + + 33 + 196 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Peter Shalafoe No. 46,” [circa 1940s],undated + + + + + + 33 + 197 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Land Assignment Tribal Agricultural, [circa 1940?],undated + + + + + + 33 + 198 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, file “Helen C. Welsh”, [1940s],undated + + + + + + 33 + 199 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charles Picard, [1940],undated + + + + + + 33 + 200 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charles Picard, Jan. 12, 1940,undated + + + + + + 33 + 201 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, folder “Diocese of MQ F: Mission Lands,” Jan. 17, 1940,undated + + + + + + 33 + 202 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, folder “Diocese of MQ” F: Mission Lands, Jan. 18, 1940,undated + + + + + + 33 + 203 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Land Acquisitions” Jan. 18, 1940,undated + + + + + + 33 + 204 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: “Land Acquisitions” Feb. 5, 1940,undated + + + + + + 33 + 205 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: “Land Acquisitions” Feb. 8, 1940,undated + + + + + + 33 + 206 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charles Picard, Feb. 19, 1940,undated + + + + + + 33 + 207 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, folder: “Diocese of MQ” F: Missions Lands, Feb. 28, 1940,undated + + + + + + 33 + 208 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Tract 92. R. S. Buckland” April 5, 1940 (Folder 1 of 3),undated + + + + + + 33 + 209 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Tract 92. R. S. Buckland” April 5, 1940 (Folder 2 of 3),undated + + + + + + 33 + 210 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Tract 92. R. S. Buckland” April 5, 1940 (Folder 3 of 3),undated + + + + + + 33 + 211 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charles Picard, May 1, 1940,undated + + + + + + 33 + 212 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charles Picard, May 3, 1940,undated + + + + + + 33 + 213 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KKBIC-ROA, B2, F: Charles Picard, May 7, 1940,undated + + + + + + 33 + 214 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: “Lease- Permits, Tribal Land,” May 9, 1940,undated + + + + + + 33 + 215 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charles Picard, May 10, 1940,undated + + + + + + 33 + 216 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charles Picard, May 11, 1940,undated + + + + + + 33 + 217 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Tract 92. R. S. Buckland,” May 20, 1940 (Folder 1 of 2),undated + + + + + + 33 + 218 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Tract 92. R. S. Buckland,” May 20, 1940 (Folder 2 of 2),undated + + + + + + 33 + 219 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, file “Charles Shalafoe,” June 5, 1940,undated + + + + + + 33 + 220 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Richard Shalafoe,” June 5, 1940,undated + + + + + + 33 + 221 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Thomas Shalafoe,” June 5, 1940,undated + + + + + + 33 + 222 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Tract 92. R. S. Buckland,” June 18, 1940,undated + + + + + + 33 + 223 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Tract 92. R. S. Buckland,” July 6, 1940,undated + + + + + + 33 + 224 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Tract 92. R. S. Buckland,” July 9, 1940,undated + + + + + + 33 + 225 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, Folder “Diocese of MQ” F: Mission Lands, July 15, 1940,undated + + + + + + 33 + 226 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, file “Diocese of MQ” F: Mission Lands, July 17, 1940,undated + + + + + + 33 + 227 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Tract 92. R. S. Buckland,” July 18, 1940,undated + + + + + + 33 + 228 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Tract 92. R. S. Buckland,” July 23, 1940,undated + + + + + + 33 + 229 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, File “Timber Cutting Permits,” July 24, 1940,undated + + + + + + 33 + 230 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Petitions to Council 1940, July 26, 1940,undated + + + + + + 33 + 231 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charles Picard, July 29, 1940,undated + + + + + + 33 + 232 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Diocese of MQ” F: Mission Lands, July 30, 1940,undated + + + + + + 33 + 233 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Petitions to Council, ’40, Aug. 1, 1940,undated + + + + + + 33 + 234 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Land Acquisitions,” Aug. 19, 1940,undated + + + + + + 33 + 235 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charles Picard, Aug. 27, 1940,undated + + + + + + 33 + 236 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Diocese of MQ” F: Mission Lands, Aug. 27, 1940,undated + + + + + + 33 + 237 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, file “Diocese of MQ” F: Mission Lands, Sept. 6, 1940,undated + + + + + + 33 + 238 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, Folder “Diocese of MQ” F: Mission Lands, Sept. 7, 1940,undated + + + + + + 33 + 239 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charles Picard, Sept. 10/11, 1940,undated + + + + + + 33 + 240 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charles Picard, Sept. 11, 1940,undated + + + + + + 33 + 241 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, folder “Diocese of MQ” F: Mission Lands, Sept. 11, 1940,undated + + + + + + 33 + 242 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, file “Treasurer Tribal Corr.” Sept. 17, 1940,undated + + + + + + 33 + 243 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Land Assignment- St. Arnold” Oct. 4, 1940,undated + + + + + + 33 + 244 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Tract 92. R. S. Buckland,” Oct. 30, 1940,undated + + + + + + 33 + 245 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F; Charles Picard, Nov. 15, 1940,undated + + + + + + 33 + 246 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Tract 92, R. S. Buckland,” Dec. 5, 1940,undated + + + + + + 33 + 247 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2. F. Mrs. George Mathews, [circa 1941],undated + + + + + + 33 + 248 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: “Letters, Misc. Correspondence,” March 10, 1941,undated + + + + + + 33 + 249 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, file “James St. Arnold,” May 13, 1941 (Folder 1 of 2),undated + + + + + + 33 + 250 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, file “James St. Arnold,” May 13, 1941 (Folder 2 of 2),undated + + + + + + 33 + 251 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charlotte Tyosh, No. 53, May 21, 1941,undated + + + + + + 33 + 252 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charlotte Tyosh, No. 53. June 5, 1941,undated + + + + + + 33 + 253 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, folder “Diocese of MQ,” F: Mission Lands, July 11, 1941,undated + + + + + + 33 + 254 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Diocese of MQ,” F: Mission Lands, July 16, 1941,undated + + + + + + 33 + 255 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Diocese of MQ,” F: Mission Lands, July 23, 1941,undated + + + + + + 33 + 256 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Albert W. Spruce, July 23, 1941,undated + + + + + + 33 + 257 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Albert Spruce, Aug. 5, 1941,undated + + + + + + 33 + 258 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Albert W. Spruce, Aug. 7, 1941,undated + + + + + + 33 + 259 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, File “James St. Arnold,” Aug. 7, 1941,undated + + + + + + 33 + 260 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Mrs. Geo. Mathews, Aug. 7, 1941,undated + + + + + + 33 + 261 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Land Assignments- St. Arnold,” Aug. 12, 1941,undated + + + + + + 33 + 262 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Land Assignments- St. Arnold,” Aug. 26, 1941,undated + + + + + + 33 + 263 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Edward Shalifoe, No. 7,” Sept. 18, 1941,undated + + + + + + 33 + 264 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: Albert W. Spruce, Sept. 23, 1941,undated + + + + + + 33 + 265 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file: Albert Spruce,” Sept. 23, 1941,undated + + + + + + 33 + 266 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, “Tract 92. R. S. Buckland,” Sept. 26, 1941,undated + + + + + + 33 + 267 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charlotte Tyosh, No. 53. Oct. 2, 1941,undated + + + + + + 33 + 268 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, File “Thomas Shalafoe Sr.” Oct. 9, 1941,undated + + + + + + 33 + 269 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Tract 92. R. S. Buckland,” Oct. 20, 1941,undated + + + + + + 33 + 270 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charlotte Tyosh, No. 53. Nov. 29, 1941 (Folder 1 of 2),undated + + + + + + 33 + 271 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charlotte Tyosh, No. 53. Nov. 29, 1941 (Folder 2 of 2),undated + + + + + + 33 + 272 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charlotte Tyosh, No. 53. Dec. 1, 1941 (Folder 1 of 2),undated + + + + + + 33 + 273 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charlotte Tyosh, No. 53. Dec. 1, 1941 (Folder 2 of 2),undated + + + + + + 33 + 274 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Tract 92. R. S. Buckland,” Dec. 15, 1941,undated + + + + + + 33 + 275 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Diocese of MQ,” F: Mission Lands, Dec. 12, 1941,undated + + + + + + 33 + 276 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Voting Lists,” Jan. 8, 1942,undated + + + + + + 33 + 277 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charlotte Tyosh, No. 53. Jan. 12, 1942,undated + + + + + + 33 + 278 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Land Assignment- St. Arnold,” Feb. 13, 1942,undated + + + + + + 33 + 279 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Diocese of MQ,” F: Mission Lands, March 4, 1942, [encl. Feb. 27, 1942, Feb. 14, 1942], 1942,undated + + + + + + 33 + 280 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, file “Thomas Shalafoe Sr.” March 4, 1942,undated + + + + + + 33 + 281 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Charles Shalifoe,” April 23, 1942,undated + + + + + + 33 + 282 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Land Assignment- St. Arnold,” May 27, 1942,undated + + + + + + 33 + 283 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Delia Semesky,” Aug. 3, 1942, [encl. April 29, 1942, and notes (circa 1940s?)],undated + + + + + + 33 + 284 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Timber Cutting Permit- Allotted Land,” Sept. 21, 1942,undated + + + + + + 33 + 285 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Albert W. Spruce,” Oct. 23, 1942,undated + + + + + + 33 + 286 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Letters, Misc. Correspondence, Oct. 30, 1942,undated + + + + + + 33 + 287 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Albert W. Spruce,” Dec. 8, 1942,undated + + + + + + 33 + 288 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Richard Shalifoe,” [circa 1943],undated + + + + + + 33 + 289 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Charlotte Tyosh, No. 53. Jan. 23, 1943,undated + + + + + + 33 + 290 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, file “Thomas Shalafoe Sr.” April 8, 1943,undated + + + + + + 33 + 291 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, file “Thomas Shalafoe Sr.” April 16, 1943 (Folder 1 of 2),undated + + + + + + 33 + 292 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, file “Thomas Shalafoe Sr.” April 16, 1943 (Folder 2 of 2),undated + + + + + + 33 + 293 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, File “Thomas Shalafoe Sr.” June 13, 1943,undated + + + + + + 33 + 294 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Land Assignment- St. Arnold,” June 28, 1943,undated + + + + + + 33 + 295 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: “Diocese of MQ,” F: Mission Lands,” July 2, 1943,undated + + + + + + 33 + 296 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File: Land Assignment- St. Arnold,” July 10, 1943,undated + + + + + + 33 + 297 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Land Assignment- St. Arnold,” July 26, 1943,undated + + + + + + 33 + 298 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Land Assignment- St. Arnold,” Aug. 7, 1943,undated + + + + + + 33 + 299 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC- “Timber Cutting Permit- Allotted Land,” ROA, B2, Aug. 12, 1943,undated + + + + + + 33 + 300 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Land Assignment- St. Arnold,” Sept. 28, 1943,undated + + + + + + 33 + 301 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Wm. Schofield,” Oct. 5, 1943,undated + + + + + + 33 + 302 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Wm. Schofield,” Oct. 6, 1943,undated + + + + + + 33 + 303 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, File “Land Assignment- St. Arnold,” Dec. 14, 1943,undated + + + + + + 33 + 304 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, File “Helen C. Welsh,” Dec. 23, 1943,undated + + + + + + 33 + 305 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, File “Helen C. Welsh,” Dec. 29, 1943,undated + + + + + + 33 + 306 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, File “Helen C. Welsh,” Feb. 16, 1944,undated + + + + + + 33 + 307 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, Box 2, file “Delia Semesky,” March 23, 1944,undated + + + + + + 33 + 308 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: Mrs. George Mathews, April 14, 1944,undated + + + + + + 33 + 309 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, F: 14 mile Pt. Lighthouse, May 6, 1944,undated + + + + + + 33 + 310 + Box 4 Keweenaw Bay Indian Community, Calendar documents, 1924-1944: KBIC-ROA, B2, file “James St. Arnold,” Nov. 17, 1944,undated + + + + + + 34 + 1 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, file “Land Assignments- St. Arnold,” [circa 1945],undated + + + + + + 34 + 2 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, File “Voting Lists,” [circa 1945],undated + + + + + + 34 + 3 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, F: Reports of Official Visits/ Forms, March 6, 1945,undated + + + + + + 34 + 4 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, File “Tract 92, R. S. Buckland,” May 1, 1945,undated + + + + + + 34 + 5 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, F: Receipts of Expenditures, May 19, 1945,undated + + + + + + 34 + 6 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, File “Edward Shalifoe No. 7,” June 4, 1945,undated + + + + + + 34 + 7 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, File “William White, No. 18,” June 18, 1945,undated + + + + + + 34 + 8 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, F: “Sophie Thome,” June 30, 1945, [enc. July 11, 1945], 1945,undated + + + + + + 34 + 9 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, File “James St. Arnold,” July 2, 1945,undated + + + + + + 34 + 10 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, File “Helen C. Welsh,” Sept. 15, 1945,undated + + + + + + 34 + 11 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, File “Helen C. Welsh,” Oct. 18, 1945,undated + + + + + + 34 + 12 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, File “Wm. Schofield,” Nov. 27, 1945,undated + + + + + + 34 + 13 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, File “Thomas Shalafoe, Sr.” Nov. 28, 1945,undated + + + + + + 34 + 14 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, File “Thomas Shalafoe, Sr.” Dec. 12, 1945,undated + + + + + + 34 + 15 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, File “Tract 92, R. S. Buckland,” May 16, 1946,undated + + + + + + 34 + 16 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, file “Margaret Shalafoe No. 44.” May 27, 1946,undated + + + + + + 34 + 17 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, file “Sophie Thorne.” June 13, 1946,undated + + + + + + 34 + 18 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, F: “Timber Cutting Permit- Allotted Land.” Jan. 15, 1947,undated + + + + + + 34 + 19 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, File “Timber Cutting Permit- Allotted Land,” Jan. 23 and April 7, 1947,undated + + + + + + 34 + 20 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, File: “Letters, Misc. Correspondences,” Jan. 29, 1947,undated + + + + + + 34 + 21 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, File “Timber Cutting Permit- Allotted Land,” March 15, 1947,undated + + + + + + 34 + 22 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, File “Timber Cutting Permit- Allotted Land,” March 26, 1947,undated + + + + + + 34 + 23 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, F “Timber Cutting Permit- Allotted Land,” March 26, 1947,undated + + + + + + 34 + 24 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, file “Timber Cutting Permit- Allotted Land,” March 27, 1947,undated + + + + + + 34 + 25 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, “Timber Cutting Permit- Allotted Land,” April 21, 1947,undated + + + + + + 34 + 26 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, file “Timber Cutting Permit- Allotted Land,” April 21, 1947,undated + + + + + + 34 + 27 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, F: Purchase Orders and Requisitions, April 30, 1947,undated + + + + + + 34 + 28 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, F: “Timber Cutting Permit- Allotted Land,” May 14, 1947,undated + + + + + + 34 + 29 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, File “Timber Cutting Permit- Allotted Land,” May 16, 1947,undated + + + + + + 34 + 30 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, File “Timber Cutting Permits- Allotted Lands,” May 19, 1947,undated + + + + + + 34 + 31 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, File “Timber Cutting- Allotted Land,” May 19, 1947,undated + + + + + + 34 + 32 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, F: Purchase Orders and Requisitions, June 19, 1947,undated + + + + + + 34 + 33 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, F: Purchase Orders and Requisitions, June 20, 1947,undated + + + + + + 34 + 34 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, file “Tract 92, R. S. Buckland,” April 22, 1948,undated + + + + + + 34 + 35 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, F: Misc. 3, [1950?],undated + + + + + + 34 + 36 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, File: “FSA Lands,” Nov. 6, 1958,undated + + + + + + 34 + 37 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, F: Mortgage, Land Assignments, Ind. Church and Barn, May 24, 1961,undated + + + + + + 34 + 38 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, F: Receipts and Expenditures, [circa 1965?],undated + + + + + + 34 + 39 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, F: Lease and Bond Docs. Dec. 8, 1967,undated + + + + + + 34 + 40 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, F: Receipts of Expenditures, 1968KBIC-ROA, B2, F: Receipts and Expenditures, Aug. 28, 1968,undated + + + + + + 34 + 41 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, F: Receipts of Expenditures, Sept. 1, 1968,undated + + + + + + 34 + 42 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, F: Receipts of Expenditures, Records of, May 28, 1969,undated + + + + + + 34 + 43 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, F: Receipts of Expenditures, Oct. 2, 1969,undated + + + + + + 34 + 44 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, F: Receipts and Expenditures, Dec. 3, 1969,undated + + + + + + 34 + 45 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, file: Misc. Papers, Correspondences, March 30, 1971,undated + + + + + + 34 + 46 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, File: “Misc. Papers, Correspondences,” April 14, 1971,undated + + + + + + 34 + 47 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, File: Misc. Papers, Correspondences, June 1, 1971,undated + + + + + + 34 + 48 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, File: Misc. Papers, Correspondences, June 9, 1971,undated + + + + + + 34 + 49 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, file: Misc. Papers, Correspondences, June 15, 1971,undated + + + + + + 34 + 50 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, file: Misc. Papers, Correspondences, Aug. 22, 1971,undated + + + + + + 34 + 51 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, File: Misc. Papers, Correspondences, Sept. 13, 1971,undated + + + + + + 34 + 52 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, File “Church Lands, Tribal Center, and Old Orphanage,” June 26, 1972,undated + + + + + + 34 + 53 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, File: Hunting and Fishing, Sept. 9, 1972,undated + + + + + + 34 + 54 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, F: Mortgage and Land Assignments, Ind. Church and Barn, Sept. 13, 1972,undated + + + + + + 34 + 55 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, file “Church Lands, Tribal Center, and Old Orphanage,” Sept. 13, 1972,undated + + + + + + 34 + 56 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, File: FSA Lands, April 19, 1973,undated + + + + + + 34 + 57 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, F: Mortgage and Land Assignments, Ind. Church and Barn. July 27, 1973,undated + + + + + + 34 + 58 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, file “Church Lands, Tribal Center, and Old Orphanage.” July 27, 1973,undated + + + + + + 34 + 59 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, F: Mortgage and Land Assignments, Ind. Church and Barn, Aug. 10, 1973,undated + + + + + + 34 + 60 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, file “Church Land, Tribal Center, and Old Orphanage.” Aug. 10, 1973,undated + + + + + + 34 + 61 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, F: Mortgage and Land Assignments, Ind. Church and Barn, Sept. 12, 1973,undated + + + + + + 34 + 62 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, file: FSA Lands, Oct. 1, 1973,undated + + + + + + 34 + 63 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, File “Church Lands, Tribal Center, and Old Orphanage,” Jan. 4, 1974,undated + + + + + + 34 + 64 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, F: Mortgage and Land Assignments, Ind. Church and Barn, Jan. 4, 1974,undated + + + + + + 34 + 65 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, F: Mortgage and Land Assignments, Ind. Church and Barn. Jan. 17, 1974,undated + + + + + + 34 + 66 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, file: FSA Lands, Jan. 22, 1974 (Folder 1 of 2),undated + + + + + + 34 + 67 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, file: FSA Lands, Jan. 22, 1974 (Folder 2 of 2),undated + + + + + + 34 + 68 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B2, F: Mortgage, Land Assignment, Ind. Church and Barn. Jan. 23, 1974,undated + + + + + + 34 + 69 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, File: “FSA Lands,” April 1, 1974 (Folder 1 of 2),undated + + + + + + 34 + 70 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, File: FSA Lands, April 1, 1974 (Folder 2 of 2),undated + + + + + + 34 + 71 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, File: “FSA Lands,” April 3, 1974,undated + + + + + + 34 + 72 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, File: “FSA Lands,” April 9, 1974,undated + + + + + + 34 + 73 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, file: “Correspondence Sent,” Aug. 23, 1974,undated + + + + + + 34 + 74 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, file: “Correspondence Sent, Sept. 23, 1974,undated + + + + + + 34 + 75 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, File “FSA Lands,” May 15, 1975,undated + + + + + + 34 + 76 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, File: FSA Lands, Sept. 17, 1975,undated + + + + + + 34 + 77 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, File “Hunting and Fishing,” Nov. 19, 1975,undated + + + + + + 34 + 78 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, file: “FSA Lands,” Jan. 15, 1976,undated + + + + + + 34 + 79 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, File: FSA Lands, March 10, 1976,undated + + + + + + 34 + 80 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, File: “Little Indian Taxpayers Association,” 1977,undated + + + + + + 34 + 81 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, File: “Little Indian Taxpayers Association,” [1977 or 1978],undated + + + + + + 34 + 82 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, File “Hunting and Fishing,” June 15, 1977,undated + + + + + + 34 + 83 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, File: Proposed KBIC and State of MI Tax Agreement, Aug. 17, 1977,undated + + + + + + 34 + 84 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, File “Church Lands, Tribal Center and Old Orphanage,” Jan. 23, 1978 and July 25, 1978,undated + + + + + + 34 + 85 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, file: “Little Indian Taxpayers Association,” April 12, 1978,undated + + + + + + 34 + 86 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, F: “AG’s opinion,” May 30, 1980, [encl: May 29, 1980],undated + + + + + + 34 + 87 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B1, file “Misc.,” Jan. 22, 1981,undated + + + + + + 34 + 88 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, File: “General Correspondences, 1981,” Oct. 30, 1981, [encl. w/ Nov. 3, 1981], 1981,undated + + + + + + 34 + 89 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, file “General Correspondences, 1981,” Nov. 4, 1981,undated + + + + + + 34 + 90 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, File “Hunting and Fishing,” Jan. 9, 1982,undated + + + + + + 34 + 91 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, file “Hunting and Fishing,” [1984/ 1985],undated + + + + + + 34 + 92 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, file: “Misc. Papers, Correspondence,” Feb. 6, 1984,undated + + + + + + 34 + 93 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, file: “Church Lands, Tribal Center, and Old Orphanage,” May 24, 1984,undated + + + + + + 34 + 94 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, file “Hunting and Fishing,” April 9 [1985?],undated + + + + + + 34 + 95 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, file “Hunting and Fishing,” April 9, 1985,undated + + + + + + 34 + 96 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B1, F: Tax Ordinances, April 19, 1985,undated + + + + + + 34 + 97 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B1, F: Tax Ordinances, Jan. 20, 1986,undated + + + + + + 34 + 98 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B1, F: Tax Ordinances, Feb. 7, 1986,undated + + + + + + 34 + 99 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, File: Misc.: Notes, Rough Drafts,[1992], 1992 + + + + + + 34 + 100 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, file: “Misc.”,Sept. 18, 1992 + + + + + + 34 + 101 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, file “Misc,”,Dec. 11, 1992 + + + + + + 34 + 102 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, file: “Misc.”,March 3, 1993 + + + + + + 34 + 103 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, file: “Misc.”Dec. 20, 1993 + + + + + + 34 + 104 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, File: “Misc.”,1994 + + + + + + 34 + 105 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 1, file: “Misc.”,Aug. 10, 1994 + + + + + + 34 + 106 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, B1: Enrollment Worksheet,Feb. 17, 1995 + + + + + + 34 + 107 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: L’Anse Sentinel, “KBIC Seeking Tax Solution”,2003 + + + + + + 34 + 108 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: L’Anse Sentinel: 1-2,Jan. 14, 2004 + + + + + + 34 + 109 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: MAP 226.5, RG75, Mineral Dist.,undated + + + + + + 34 + 110 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: NA II, RG49, Old Map File, #34, MI,undated + + + + + + 34 + 111 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: NA II, RG49, Old Map File, #36, MI, 1828,undated + + + + + + 34 + 112 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: TRYGG, Stephen, MAP, Composite Maps of Original Plats, Field Notes, Sheet 14, MI,undated + + + + + + 34 + 113 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: NA II, RG49, Old Map File, # 49, May 12, 1847,undated + + + + + + 34 + 114 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: MAP 413, Upper MI, circa 1855,undated + + + + + + 34 + 115 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: MAP 953- Public Survey of MI, 1856,undated + + + + + + 34 + 116 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: MAP- 548, Twp. W/drawn for Indian purposes, circa 1864,undated + + + + + + 34 + 117 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: KBIC-ROA, Box 2, File “Ford Mercury/ Larry Thomas”,undated + + + + + + 34 + 118 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Keweenaw Res. MAP (Draft May 1998),May 1998 + + + + + + 34 + 119 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: MI. TRACT Book, T 50N, R32W, pp. 221-236,undated + + + + + + 34 + 120 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: MI. TRACT Book, T. 50N, R. 33W, pp. 230-247,undated + + + + + + 34 + 121 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: MI. TRACT Book, T. 51N, R. 32W, pp. 238-247 and 1-6,undated + + + + + + 34 + 122 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: MI TRACT Book, T. 51N, R33W, pp. 1-12,undated + + + + + + 34 + 123 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: MI TRACT Book- Typescript: T51N. R33W, T51N. R32W, T50N. R32W, T50N.R33W,undated + + + + + + 34 + 124 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: TRACT Books MI, US Dept. of Int.,undated + + + + + + 34 + 125 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: NA RG75, E91, LR, B2867, F # 55847, MAP, (1898),undated + + + + + + 34 + 126 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: MAP 8835, 1 of 3, RG75 L’Anse Reservation, 1912,undated + + + + + + 34 + 127 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: MAP 8835, 2 of 3, RG75- L’Anse Reservation, 1912,undated + + + + + + 34 + 128 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: MAP 8835, 3 of 3, RG75 L’Anse Reservation, 1912,undated + + + + + + 34 + 129 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: NA RG75, CCF-Mackinac: 32301-26, MAP, April 22, 1925,undated + + + + + + 34 + 130 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: W. W. Hixson and Co. [1930a], Platbook of Baraga Co., MI, 1930,undated + + + + + + 34 + 131 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Rockford Map Publishers, Baraga Co. 4-H Leaders Council, Plat Book of Baraga Co., MI, 1959,undated + + + + + + 34 + 132 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Rockford Map Publishers, Baraga Co. 4-H Council, Tri-Annual Atlas and Plat Book, Baraga Co., MI, 1964,undated + + + + + + 34 + 133 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Rockford Map Publishers, Baraga Co. 4-H Council, Triennial Atlas and Plat Book, Baraga Co., MI, 1971,undated + + + + + + 34 + 134 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Rockford Map Publishers, Baraga Co. 4-H Council, Atlas and Plat Book, Baraga Co., MI, 1976,undated + + + + + + 34 + 135 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Rockford Map Publishers, Baraga Co. 4-H Council, Land Atlas and Plat Book, Baraga Co., MI, 1980,undated + + + + + + 34 + 136 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Rockford Map Publishers, Baraga Co. 4-H Council, Land Atlas and Plat Book, Baraga Co., MI,1996 + + + + + + 34 + 137 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Early Hist. of MI… Biographies, “Columbus C. Douglas,” 1888,undated + + + + + + 34 + 138 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Memorial Record of the Northern Peninsula of MI, 1895,undated + + + + + + 34 + 139 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Biographical Record… Sketches of Leading Citizens of Houghton, Baraga and Marquette Counties, MI, 1903,undated + + + + + + 34 + 140 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Baraga, Rev. Frederic, “Answers to the Inquiries respecting the History, present condition and future Prospects of the Indian Tribes of the US,” 1847,undated + + + + + + 34 + 141 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Baraga County Abstract of Title # 4802, Baraga Co., MI,undated + + + + + + 34 + 142 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Baraga County Abstract of Title No. 8214, Baraga Co., MI,undated + + + + + + 34 + 143 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Baraga County Abstract of Title No. 8217, Baraga Co., MI,undated + + + + + + 34 + 144 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Baraga County Abstract of Title No. 4697, Baraga Co., MI,undated + + + + + + 34 + 145 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Baraga County Abstract of Title # 7907, Baraga Co., MI,undated + + + + + + 34 + 146 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Baraga County Abstract of Title, 4793, Baraga Co., MI,undated + + + + + + 34 + 147 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Baraga County Abstract of Title No. 8215, Baraga Co., MI,undated + + + + + + 34 + 148 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Baraga County Abstract of Title No. 8216, Baraga Co., MI,undated + + + + + + 34 + 149 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Constitution and Bylaws of the Keweenaw Bay Indian Comm. MI, Dec. 17, 1936,undated + + + + + + 34 + 150 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Cardinal v. US – Opinion,undated + + + + + + 34 + 151 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: CCF – 545(?) – Correspondence Related to US 41 on,undated + + + + + + 34 + 152 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Corporate Charter of the Keweenaw Bay Indian Community of the L’Anse Reservation MI, July 17, 1973,undated + + + + + + 34 + 153 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Doyle, James Hon. 1978 Opinion + Order, US v. Bouchard 464 Fed. Suppl. 1316:1327,undated + + + + + + 34 + 154 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Keller, M. Canal Lands of Keweenaw Bay,1984 + + + + + + 34 + 155 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Kinietz, W. Vernon Chippewa Village: the Story of Katikitegon,undated + + + + + + 34 + 156 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Magnaghi, Russell M. Way It Happened: Settling MI’s U.P.,1982 + + + + + + 34 + 157 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Morse, Richard F. Coll. Of State Hist. Society of WI Vol. III “Chippewas of Lake Superior,” 1855,undated + + + + + + 34 + 158 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Neu, Irene D. Building of the Sault Canal 1852-1855, 1954,undated + + + + + + 34 + 159 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Pitezel, Rev. Jn. H. Lights and Shades of Missionary Life, 1857,undated + + + + + + 34 + 160 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Rezek, Rev. Antoine Ivan. History of the Diocese of Sault Ste. P. 242-243, 1907,undated + + + + + + 34 + 161 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Robinson, Orrin W. Early Days of the Lake Superior Copper Country, 1938,undated + + + + + + 34 + 162 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Shaw, James, Reminiscences of a Pioneer Life, 1883,undated + + + + + + 34 + 163 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Treaty of LaPointe. 7 stats. 591, Oct. 4, 1842,undated + + + + + + 34 + 164 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Treaty of LaPointe. 10 stats.1109, Sept. 30, 1854,undated + + + + + + 34 + 165 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Treaty of Detroit. 11 stats.631, Aug. 2, 1855,undated + + + + + + 34 + 166 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Plaintiff Keweenaw Bay Ind. Comm. Post Trial Brief File No. M87-278-CA2,undated + + + + + + 34 + 167 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: US v. Thomas, 1894,undated + + + + + + 34 + 168 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Weddon, W. MI Governors “Robert McCleland”,1994 + + + + + + 34 + 169 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Weeks, Geo. Stewards of the State of the Gov of MI, Ann Arbor, Detroit News,1991 + + + + + + 34 + 170 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: States Brief in Response to the Tribes Motion for a Preliminary Injunction,undated + + + + + + 34 + 171 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Tribes Brief in Reply to State’s Brief in Opposition to Injunction Motion,undated + + + + + + 34 + 172 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Copies of 2. Taylor and Ewing’s Signt./Handwriting, primary docs,undated + + + + + + 34 + 173 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Federal Census – L’Anse and Baraga, 1880,undated + + + + + + 34 + 174 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Message from US President re: resolution of the Senate, ~removal of the Chippewa Indians from the Mineral Lands, 1846,undated + + + + + + 34 + 175 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: MN Superintendent of St. Paul, Oct. 21, 1850,undated + + + + + + 34 + 176 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Message of US President re: Report of the Sec. of the Interior/Treaty w/Chippewa Indians of Lake Superior, Feb. 7, 1855,undated + + + + + + 34 + 177 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: HR. Survey of Lands NW of Lake Superior. Message of US Pres. Re: est. for Survey of Lands of Chippewa, Mar. 1, 1855,undated + + + + + + 34 + 178 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Message from Pres. of US re: Estimates of approp. For carrying into effect treaty w/ Chippewa Indians, Feb. 8, 1855,undated + + + + + + 34 + 179 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Letter from the Secretary of the Interior re: Congress to provide for the payment of the annuities to the Chippewa, Feb. 10, 1865,undated + + + + + + 34 + 180 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Letter from Sec. of Interior re: Report relative to the necessities of the Chippewa Indians, April 8, 1868,undated + + + + + + 34 + 181 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Letter from the Acting Secretary of the Interior re: est. of appropriation for the support civiliz. of the Chippewa for fiscal year ending June 30, 1876,undated + + + + + + 34 + 182 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Bands of Chippewas in WI – Report submitted by Mr. Scales, from Committee on Indian Affairs, Mar. 3, 1879,undated + + + + + + 34 + 183 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: US Senate – Report submitted by Mr. Cameron, of WI from Committee on Indian Affairs, Mar. 25, 1884,undated + + + + + + 34 + 184 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Message from US President re: Communication from the Secretary of the Interior relative to allotment of lands in severalty to Chippewa Indians, Dec. 11, 1883,undated + + + + + + 34 + 185 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Letter from the Secretary of the Interior. Re: Response to Senate resol. Of 12/15/1887, papers relating to inspection of Indian Schools, Jan. 16, 1888,undated + + + + + + 34 + 186 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Letter from the Secretary of the Interior, re: response to Senate resolution of Feb., 6, 1889 relative to timber-cutting on the Chippewa Indian Reserv. (Feb. 23, 1889),undated + + + + + + 34 + 187 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Letter from the Acting Secretary of the Treasury re: Immediate Appropriation for the relief of the Chippewa Indians (Jan. 13, 1890),undated + + + + + + 34 + 188 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Chippewa Indians, Lake Superior, Jan. 21, 1890. - Recommitted to the Comm. on Indian Affairs. Report from Mr. Perkins, 1890,undated + + + + + + 34 + 189 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: HR. Sale of Timber reserved for Chippewa Indians, Feb. 21, 1891. Report from Mr. McCord, 1891,undated + + + + + + 34 + 190 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: US Senate. Report from Mr. Vilas from Committee of Indian Affairs, April 19, 1892, 1892undated + + + + + + 34 + 191 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Senate- Chippewa Indians of the MS and of Lake Superior, Feb. 2, 1899. Letter presented by Mr. Pettigrew, 1899,undated + + + + + + 34 + 192 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: HR. Chippewa Indians of Lake Superior, etc., May 8, 1900. Committed to the Committee. Report from Mr. Stewart, 1900,undated + + + + + + 34 + 193 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: US Senate. Fulfillment of Certain Treaty Stipulations w/ Chippewa Indians of Lake Superior and the MS, (Jan. 21, 1908),undated + + + + + + 34 + 194 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Payment to Occupants of Certain Lands L’Anse and Vieux Desert Indian Reservation, MI. Letter from Sec. of the Treasury. Dec. 11, 1912,undated + + + + + + 34 + 195 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: Calendar No. 358. Senate. Report from the Committee on Indian Affairs, April 2, 1924,undated + + + + + + 34 + 196 + Box 5 Keweenaw Bay Indian Community, Calendar documents, 1945-present, narratives, published sources: HR. Claimants to Section 16, Lands in L’Anse and Vieux Desert Indian Reservation, MI., Jan. 16, 1925,undated + + + + + + 35 + 1 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: KBIC 2004 Report, Rebuttal Report, 2005, Reference Documents, Feb. 2005,2004-2005 + + + + + + 35 + 2 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: US Dist. Court for Western Dist. of MI, KBIC v. Naftaly et al., Complaint for declaratory and injunctive relief,undated + + + + + + 35 + 3 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Chris Duggan, Dorsey and Whitney, Attorney Work Product,undated + + + + + + 35 + 4 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Baraga, Fredrick. Chippewa Indians as Recorded in 1847, 1976,undated + + + + + + 35 + 5 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Cass, Lewis. Considerations on the Present State of the Indians and Their Removal, 1975,undated + + + + + + 35 + 6 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Cleland, Charles E. “Inland Shore Fishery of the Northern Great Lakes: Its Development and Imp…”,1982 + + + + + + 35 + 7 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Cleland, Charles E. From Ethnohistory to Archaeology: Ottawa and Ojibwa Band territories of the Northern Great Lakes,1991 + + + + + + 35 + 8 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Cleland, Charles E. Rites of Conquests,1992 + + + + + + 35 + 9 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Cleland, Charles E. Economic and Adaptive Change among the Lake Superior Chippewa of the 19th Cent.,1993 + + + + + + 35 + 10 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Cleland, Charles E. Preliminary Report for the Ethnohistorical Basis of Hunting, Fishing and Gathering Rights…,2000 + + + + + + 35 + 11 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Clifton, James. WI Death March: Exploring the Extreme in Old Northwest Indian Removal,1987 + + + + + + 35 + 12 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Danziger, Edmund Jefferson.Chippewas of Lake Superior, 1979,undated + + + + + + 35 + 13 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Henry, Alexander. . Travels and Adventures in Canada and The Indian Territories 1760-1776, 1969,undated + + + + + + 35 + 14 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Hickerson, Harold. Chippewas and their Neighbors, 1970,undated + + + + + + 35 + 15 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Hill, Edward E. OIA 1824-1880: Historical Sketches, 1967,undated + + + + + + 35 + 16 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Kappler, Charles J. Indian Treaties, 1778-1883, 1972,undated + + + + + + 35 + 17 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Kohl, Johann G. Kitchi-Gami: Life Among the Lake Superior Ojibway,1985 + + + + + + 35 + 18 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Kvasnicka, R. and H. Viola. Commissioners of Indian Affairs 1824-1977, 1979,undated + + + + + + 35 + 19 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Leacock, Eleanor, Montagnais Hunting Territory and the Fur Trade, 1954,undated + + + + + + 35 + 20 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Mason, Philip P. (ed.) Schoolcraft’s Expedition to Lake Itasca, 1958,undated + + + + + + 35 + 21 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: McKenney, Thomas. Sketches of a Tour of the Lakes, 1959,undated + + + + + + 35 + 22 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Morse, Richard F. Chippewa of Lake Superior, 1903,undated + + + + + + 35 + 23 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Neu, Irene. Building of the Sault Canal: 1852-1855, 1954,undated + + + + + + 35 + 24 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Nichols, John D. Statement made by the Indians: A Bilingual Petition of the Chippewa of Lake Superior, 1864,1988 + + + + + + 35 + 25 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Pitezel, John. Lights and Shades of Missionary Life, 1857,undated + + + + + + 35 + 26 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Prucha, Francis P. Great Father,1984 + + + + + + 35 + 27 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Prucha, Francis P. Documents of US Indian Policy,1990 + + + + + + 35 + 28 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Reuter, Dorothy. Methodist Indian Ministries in MI, 1830-1990,1993 + + + + + + 35 + 29 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Rezek, Antoine I. History of the Diocese of Sault Ste. Marie and Marquette, 1907,undated + + + + + + 35 + 30 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Speck, F. and L. Eiseley. Significance of Hunting, Territory Systems of Algonkian, in Social Theory. 1939 ,undated + + + + + + 35 + 31 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Vogel, Virgil L. Indian Names in MI,1986 + + + + + + 35 + 32 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Warren, William W. History of the Ojibway People,1983 + + + + + + 35 + 33 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: White, Bruce. “Regional Context of the Removal Order of 1850” in Fish in the Lakes, Wild Rice and Game in Abu”,2000 + + + + + + 35 + 34 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Williams, Mentor C. (ed.) Narrative JL of Travels Through the Northwest Regions in the year 1820, by H. R. Schoolcraft, 1953,undated + + + + + + 35 + 35 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Treaty w/ Chippewa 1819. 7 Stat. 203. 1819,undated + + + + + + 35 + 36 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Treaty w/ the Sioux, etc. Aug. 19, 1825. 7 Stat. 272. 1825,undated + + + + + + 35 + 37 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Treaty w/ the Chippewa. Aug. 5, 1826. 7 Stat 290. 1826,undated + + + + + + 35 + 38 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Treaty w/ the Chippewa, etc. Aug. 11, 1827. 7 Stat. 303. 1827,undated + + + + + + 35 + 39 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Treaty w/ the Chickasaw, 1834. 7 Stat. 450, 1834,undated + + + + + + 35 + 40 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Treaty w/ the Chippewa. July 29, 1837. 7 Stat. 536. 1837,undated + + + + + + 35 + 41 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Treaty w/ the Chippewa. Oct. 4, 1842. 7 Stat. 571, 1842,undated + + + + + + 35 + 42 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Treaty w/ the Chippewa of the MS and Lake Superior. Aug. 2, 1847. 9 Stat. 904, 1847,undated + + + + + + 35 + 43 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Treaty w/ the Oto and MO: March 15, 1854. 10 Stat. 1038, 1854,undated + + + + + + 35 + 44 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Treaty w/ the Omaha 1854. March 16, 1854. 10 Stats. 1043. 1854,undated + + + + + + 35 + 45 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Treaty w/ the Iowa 1854. May 17, 1854. 10 Stats. 1069. 1854,undated + + + + + + 35 + 46 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Treaty w/ the Sauk and Foxes of MO. May 18, 1854. 10 Stats. 1074. 1854,undated + + + + + + 35 + 47 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Treaty w/ the Kickapoo 1854. May 18, 1854. 10 Stats. 1078. 1854,undated + + + + + + 35 + 48 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Treaty w/ the Kaskaskia and Peoria, etc. (1854). May 30, 1854. 10 Stats. 1082. 1854,undated + + + + + + 35 + 49 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Treaty w/ the Miami 1854. June 5, 1854. 10 Stats. 1093. 1854,undated + + + + + + 35 + 50 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Treaty w/ the Chippewa. Sept. 30, 1854. 10 Stats. 1109. 1854,undated + + + + + + 35 + 51 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: SAM RG65-5-A, B2, F1. Lands set apart for the L’Anse and Vieux Desert bands of Chippewa…, 1909-1924,undated + + + + + + 35 + 52 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R.77. Trading Licenses granted by H. R. Schoolcraft, Sept. 24, 1824,undated + + + + + + 35 + 53 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Indian Removal Act. 4 Stat. 411-412. May 28, 1830,undated + + + + + + 35 + 54 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM T 494 R3: 548-568. Proceedings of a Council held by Gov. Henry Dodge w/ Chiefs… July 20, 1837,undated + + + + + + 35 + 55 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: MN007529 M951 R4:067. H. Dodge to T. H. Crawford, Oct. 18, 1839,undated + + + + + + 35 + 56 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M21 R.359-363. H. Crawford to R. Stuart. Aug. 1, 1842,undated + + + + + + 35 + 57 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R.389. Speech of R. Stuart to Indians. Sept. 29, 1842,undated + + + + + + 35 + 58 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M1 R.54: 52-53. G. Brown to R. Stuart. Feb. 15, 1843,undated + + + + + + 35 + 59 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R388. March 9, 1843,undated + + + + + + 35 + 60 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: ABCFM BA10. A512b. L. H. Wheeler to D. Greene. JL of the 1842 Treaty negotiations at La Pointe. May 3, 184,undated + + + + + + 35 + 61 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R.388. J. Doty to A. Brunson. July 12, 1843,undated + + + + + + 35 + 62 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R.388. Annual report of A. Brunson to J. Doty. Sept. 30, 1843,undated + + + + + + 35 + 63 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M1 R. 56: 299-300. G. Brown to R. Stuart. Dec. 29, 1843,undated + + + + + + 35 + 64 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M1 R.39: 161. R. Stuart to J. Ord. April 20, 1844,undated + + + + + + 35 + 65 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M236 R.46. W. Medill to I. Verplank and C. Mix. June 5, 1847,undated + + + + + + 35 + 66 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: New York Harold Tribune. Annuity Payment at La Pointe. Aug. 27, 1847,undated + + + + + + 35 + 67 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R.389. Nodin et al. to President. Sept. 3,1847,undated + + + + + + 35 + 68 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M1 R.62: 58. C. Bineshi and E. Assinins to W. Richmond. May 11, 1848,undated + + + + + + 35 + 69 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M1 R.62: 58. C. Bineshi and E. Assinins to W. Richmond. July 4, 1848,undated + + + + + + 35 + 70 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M1 R40: 66. W. A. Richmond to P. B. Barbeau. Oct. 8,1848,undated + + + + + + 35 + 71 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R.390. Chippewa Chiefs to President. Nov. 14, 1848,undated + + + + + + 35 + 72 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R.390. Na-go-na-be to J. Livermore. 1848,undated + + + + + + 35 + 73 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Three deed records: Nicholas Menclear to Baraga; two deeded US to Baraga. 1849,undated + + + + + + 35 + 74 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Mlts Mss. relating to N-W Missions, pp. 2-3, Jan.– Feb. 1849,undated + + + + + + 35 + 75 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R390. Ka-She-Aush et al. to President. Jan. 30, 1849,undated + + + + + + 35 + 76 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: HR 30th Congress, 3rd Session, Misc. No. 36. Petition of Lake Superior Chiefs. Feb. 7, 1849,undated + + + + + + 35 + 77 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R.771. March 31, 1849,undated + + + + + + 35 + 78 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: 31st Annual report of Methodist Missionary Society of the Methodist Episcopal Church, pp. 69. 1850,undated + + + + + + 35 + 79 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M21 R.43: 25. O. Brown to A. Ramsey. Feb. 6, 1850,undated + + + + + + 35 + 80 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: ABCFM M55245 No. 87. S. Hall to S. B. Treat. Feb. 25, 1850,undated + + + + + + 35 + 81 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Lake Superior JL. “Indians to be Removed from Lake Superior.” 1850,undated + + + + + + 35 + 82 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: MEC pla Ex. 400, C. Mendenhall to Z. Taylor. May 24, 1850,undated + + + + + + 35 + 83 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R771. D. Aitken to C. Babcock, May 31, 1850,undated + + + + + + 35 + 84 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R. 777. D. Aitken to O. Brown. June 28, 1850,undated + + + + + + 35 + 85 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R.771. D. King to D. Aitken. July 15, 1850,undated + + + + + + 35 + 86 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R.390. Beedon et al. to President. July 30, 1850,undated + + + + + + 35 + 87 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: MN 003394. T. Abraham (Graham) to L. Lea. Aug. 25, 1851,undated + + + + + + 35 + 88 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: ARCOIA 1851. J. Watrous to A. Ramsey. Sept. 20, 1851,undated + + + + + + 35 + 89 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M824 R8. A. Ramsey to Buffalo and Oshoga. Aug. 10, 1852,undated + + + + + + 35 + 90 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: ARCOIA Sept. 20, 1852,undated + + + + + + 35 + 91 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-RD, Deeds, L7: 318. Patent. US to Pushqugin and Adam Nungo. Aug. 18, 1853,undated + + + + + + 35 + 92 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: ARCOIA 1853. Report of James Shaw, pp. 282, 1853,undated + + + + + + 35 + 93 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R.404: 184-190. H. Gilbert to G. Manypenny, Dec. 10, 1853,undated + + + + + + 35 + 94 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: JL of the HR. March 7, 1854,undated + + + + + + 35 + 95 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Congressional Globe. pg. 1032-1037. May 1, 1854,undated + + + + + + 35 + 96 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M21 R.49. G. Manypenny to D. Hernman. Aug. 10, 1854,undated + + + + + + 35 + 97 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M21 R.49: 454-457. G. Manypenny to H. Gilbert. Aug. 11, 1854,undated + + + + + + 35 + 98 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M21 R.49: 475-476. G. Manypenny to H. Gilbert. Aug. 14, 1859,undated + + + + + + 35 + 99 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC, Deeds, L3: 33-34. Caroline Rathbun to A. M. Fitch. Sept. 21, 1854,undated + + + + + + 35 + 100 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM T494 R.5 H. Gilbert to G. Manypenny. Oct. 17, 1854,undated + + + + + + 35 + 101 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Acts of Congress, 33rd Cong. Sess. II Chapt. 7, p. 598, Dec. 19, 1854,undated + + + + + + 35 + 102 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: JL of HR. Dec. 19, 1854,undated + + + + + + 35 + 103 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: ARCOIA 1854,undated + + + + + + 35 + 104 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: ARCOIA 1855,undated + + + + + + 35 + 105 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NA RG75 Executive Order relating to Indian Reservations. Mar. 7, 1855,undated + + + + + + 35 + 106 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R. 391. J. Wilson to Register and Receiver. March 30, 1855,undated + + + + + + 35 + 107 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M574 R.16. Claim No. 66- Marksman. Sept. 3, 1855,undated + + + + + + 35 + 108 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M574 R.21. Claim No. 11- Baraga. Sept. 3, 1855.,undated + + + + + + 35 + 109 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M574 R. 16. Claim No. 32- Rathburn. Sept. 5, 1855,undated + + + + + + 35 + 110 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M574 R.21: 1169-1171. Gilbert affidavit. Dec. 20, 1855,undated + + + + + + 35 + 111 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: ARCOIA 1856. Exec. Document of the HR, 3rd Sess., 34th Congress, 1856-1857,undated + + + + + + 35 + 112 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R.405: 101-102. H. Gilbert to G. Manypenny. May 21, 1856,undated + + + + + + 35 + 113 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: ARCOIA 1857. Exec. Document of the Senate of the US, 1st Session, 35th Congress, 1857-1858,undated + + + + + + 35 + 114 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-NA-OIA M95-3. S. Caley to A. Fitch. Jan. 31, 1857,undated + + + + + + 35 + 115 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BBC-NA-OIA-M. July 22, 1858,undated + + + + + + 35 + 116 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NA RG75 Mackinac Agency, Letters Received, BBC, M95-4. Chiefs to A. Fitch. Sept. 1858,undated + + + + + + 35 + 117 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R406: 671-72. Feb. 19, 1859,undated + + + + + + 35 + 118 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-RD-L.3: 35-36, Indenture Deed, Aug. 25, 1859,undated + + + + + + 35 + 119 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Report of the Secretary of the Interior, 1860,undated + + + + + + 35 + 120 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BBC-RD, Deeds, L3: 46. Sept. 6, 1860,undated + + + + + + 35 + 121 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NA RG 279. Indian Claims Commission Docket 18-S, Def. Exhibit CR-2-24. 1836; Annuity roll for 1863 [note: dates are correct],undated + + + + + + 35 + 122 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R.407: 238-239. D. Leach to W. Dole. Feb. 25, 1863,undated + + + + + + 35 + 123 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BBC-RD, Deeds, L3: 95-7. Warranty Deed. F. Baraga to “Edward Assinins Chief of the Cath. Band of Indians Band of Indians and the following…” July 2, 1863,undated + + + + + + 35 + 124 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R.407: 401-402. D. King et al. to COIA. Sept. 8, 1864,undated + + + + + + 35 + 125 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R. 404: 670-671. D. King et al. to W. Dole. Jan. 7, 1865,undated + + + + + + 35 + 126 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R.407: 729. Feb. 23, 1865,undated + + + + + + 35 + 127 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BBC-CD, Deeds, L3: 130-131, 1865. March 17, 1865,undated + + + + + + 35 + 129 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BBC-RD, Deeds, L3: 129-130, 1865. Warranty Deed. May 9, 1865,undated + + + + + + 35 + 120 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BBC-RD, Deeds, L3: 187-188, 1866. Deed. July 21, 1866,undated + + + + + + 35 + 130 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BBC-RD, Deeds, L3: 365-367, 1866. Deed. March 28, 1866,undated + + + + + + 35 + 131 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: SAM (MTU), RG77-105, Box 67, File 4, 1866-1868,undated + + + + + + 35 + 132 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R.394. Dec. 10, 1867,undated + + + + + + 35 + 133 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R. 394. A. Whittlesey to E. Parker. Aug. 12, 1870,undated + + + + + + 35 + 134 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R.409: 914-915. Mar. 21, 1871,undated + + + + + + 35 + 135 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: SAM (MTU), RG77-105, Vol. 101 and 102, Houghton Co. Assessment Rolls, Baraga Twp. 1873-1874,undated + + + + + + 35 + 136 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: Report of the House of Representative No. 396, 1st Session, 43rd Congress. April 11, 1874,undated + + + + + + 35 + 137 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R.411. Feb. 11, 1874. Belts to COIA (Encl. w/ Cowen to COIA, Feb. 16, 1874), Feb. 1874,undated + + + + + + 35 + 138 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M21 R116. E. Smith to G. Belts. March 21, 1874,undated + + + + + + 35 + 139 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R.411. S. S. Binath to E. Smith. Oct. 6, 1874,undated + + + + + + 35 + 140 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R.411: 138-143. G. Belts to COIA. Nov. 3, 1874,undated + + + + + + 35 + 141 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R.411: 159-166. G. Belts to COIA Smith. Dec. 11, 1874,undated + + + + + + 35 + 142 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-TO, TAR; Baraga County, MI, 1875,undated + + + + + + 35 + 143 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-RD, Deeds, L25: 178. US to Catherine Asher. July 19, 1875,undated + + + + + + 35 + 144 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NAM M234 R.411: 513-514. S. Burdett to E. Smith. July 21, 1875,undated + + + + + + 35 + 145 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-TO, TAR Baraga County 1876,undated + + + + + + 35 + 146 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-TO, TAR, Baraga County MI, 1877,undated + + + + + + 35 + 147 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NA RGA75 E91 LR1881-1907. Nov. 24, 1877. Rules and Regulations for The Approval of Deeds and Conveyances. 1881-1907,undated + + + + + + 35 + 148 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-TO, TAR; Baraga County 1878,undated + + + + + + 35 + 149 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-TO, TAR, Baraga County, MI, 1879,undated + + + + + + 35 + 150 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-RD, Deeds, L5: 464. AG to Abel Hall. State Land Tax Deed. Dec. 17, 1881,undated + + + + + + 35 + 151 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-RD, Deeds L8: 409-410. May 29, 1883,undated + + + + + + 35 + 152 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-RD, Deeds, L4: 431-432. June 1, 1883,undated + + + + + + 35 + 153 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC, TO, TAR, L’Anse Twp. 1884,undated + + + + + + 35 + 154 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-TO, TAR, Baraga County, 1888,undated + + + + + + 35 + 155 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-RD, Deeds, L8:199-200. Abel Hall to AG. Release of Tax Title. Feb. 11, 1892,undated + + + + + + 35 + 156 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: NA RG75, E91 LR: 1982- 12408. Supervisor to COIA. March 31, 1892,undated + + + + + + 35 + 157 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-RD, Deeds L5: 143. Deed. AG to WJ Law. May 1, 1893,undated + + + + + + 35 + 158 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-TO, TAR, L’Anse Twp 1895,undated + + + + + + 35 + 159 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-TO, TAR, Baraga County MI 1897,undated + + + + + + 35 + 160 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-RD, Deeds L24: 179-236. Oct. 28, 1908 and Sept. 16, 1909,undated + + + + + + 35 + 161 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: CCF 49380-09 Mackinac 313. J. Dortch to J. LaBrecque. July 8, 1909,undated + + + + + + 35 + 162 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: CCF 56562-09 Mackinac 313. J. LaBrecque to Sec. of the Interior. July 14, 1909,undated + + + + + + 35 + 163 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-TO, TAR, Baraga County, MI 1910,undated + + + + + + 35 + 164 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: CCF 9048-11 Chippewa Lake 300. H. Smith to COIA. Oct. 19, 1911,undated + + + + + + 35 + 165 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: CCF 55182-13 Mackinac. C. Hauke to Buckland. May 10, 1913,undated + + + + + + 35 + 166 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-TO, TAR Baraga Twp. 1924,undated + + + + + + 35 + 167 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-TO, TAR, L’Anse Twp. 1933,undated + + + + + + 35 + 168 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-TO, TAR, Baraga Twp. 1935,undated + + + + + + 35 + 169 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-RD, Deeds, L.53: 96. Nov. 29, 1939,undated + + + + + + 35 + 170 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BBC-RD, Deeds L.53: 97. AG to State of MI, Nov. 29, 1939,undated + + + + + + 35 + 171 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-RD, Deeds, L.53: 106. Nov. 29, 1939,undated + + + + + + 35 + 172 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BBC-RD, Deeds, L. 52: 484. Apr 21, 1941,undated + + + + + + 35 + 173 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BBC-RD, Deeds L52: 485. Warranty Deed, April 29, 1941,undated + + + + + + 35 + 174 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-TO, TAR: Baraga Twp. 1942,undated + + + + + + 35 + 175 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-TO, TAR, Baraga Co. MI. 1945,undated + + + + + + 35 + 176 + Box 6 Keweenaw Bay Indian Community, Cleland report, reference documents: BCC-TO, TAR, Baraga Co. MI, 1956,undated + + + + + + 36 + 1 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: Administration of Indian Allotments at L’Anse…, for Case No. 2:03-CV-0170…by Emily Greenwald,Dec. 2004 + + + + + + 36 + 2 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: History of the Chippewa Treaty of 1854…by Anthony G. Gulie…,Dec. 2004 + + + + + + 36 + 3 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: KBIC Land Histories: Taxation Summaries, Questions and Misc. Charts and Notes, Drafts, by Richard Allen Carlson, Jr.,May 2002 + + + + + + 36 + 4 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: KBIC Land Histories: KBIC Land Histories: Even More Even More Notes, R.A.C., Jr.,Sept. 2004 + + + + + + 36 + 5 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: KBIC Land Histories: (More) Deeds, Wills, Etc.,undated + + + + + + 36 + 6 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: Property Maps, Notes, Reference Materials,undated + + + + + + 36 + 7 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: US Dist. Court for the Western Dist. of MI, KBIC v. Rising, et al., File No. 2:03-CV-0111, Defendants’ Designation of Expert Witness,undated + + + + + + 36 + 8 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: US Dist. Court for the Western Dist. of MI, KBIC v. Naftaly, et al., File No. 2:03-CV-0170, Motion to Dismiss KBIC’s complaint,undated + + + + + + 36 + 9 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: US Dist. Court for the Western Dist. of MI S Div., KBIC v. Naftaly, et al., File No. 2:03-CV-170, Opinion,undated + + + + + + 36 + 10 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: Database Charts- Add to draft,Sept. 26, 2003 + + + + + + 36 + 11 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: Patented Properties and their owners …within…L’Anse Reservation, 1854…Draft, by Richard Allen Carlson Jr.,April 2004 + + + + + + 36 + 12 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: KBIC Land Histories: Sample Database, Draft, by Richard Allen Carlson Jr.,April 2004 + + + + + + 36 + 13 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: Motions For Dismissal and Summary Judgment, KBIC- Tax Case,undated + + + + + + 36 + 14 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: Opinion- KBIC Tax Case,undated + + + + + + 36 + 15 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: Gulig- Report in KBIC Tax Case,undated + + + + + + 36 + 16 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: KBIC Land Records and Maps Carlsons,undated + + + + + + 36 + 17 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: ARCOIA- 1854,undated + + + + + + 36 + 18 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: COIA Report, Nov. 30, 1857,undated + + + + + + 36 + 19 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: ARCOIA 1858,undated + + + + + + 36 + 20 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: ARCOIA- 1859,undated + + + + + + 36 + 21 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: COIA Reports- Nov. 30, 1860,undated + + + + + + 36 + 22 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: COIA Report Nov. 12, 1861,undated + + + + + + 36 + 23 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: COIA Report Nov. 26, 1862,undated + + + + + + 36 + 24 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: COIA Report Oct. 31, 1863,undated + + + + + + 36 + 25 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: COIA Report Nov. 15, 1864,undated + + + + + + 36 + 26 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: COIA Report Oct. 31, 1865,undated + + + + + + 36 + 27 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: COIA Report Oct. 22, 1866,undated + + + + + + 36 + 28 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: ACOIA Nov. 15, 1867,undated + + + + + + 36 + 29 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: COIA Report Nov. 23, 1868,undated + + + + + + 36 + 30 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: COIA Report Dec. 23, 1869,undated + + + + + + 36 + 31 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: COIA Report Oct. 31, 1870,undated + + + + + + 36 + 32 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: COIA Report Nov. 15, 1871,undated + + + + + + 36 + 33 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: COIA Report Nov. 1, 1872,undated + + + + + + 36 + 34 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: COIA Report Nov. 1, 1873,undated + + + + + + 36 + 35 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: COIA Report Nov. 1, 1874,undated + + + + + + 36 + 36 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: COIA Report Nov. 1, 1875,undated + + + + + + 36 + 37 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: COIA Report Oct. 30, 1876,undated + + + + + + 36 + 38 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: COIA Report Nov. 1, 1877,undated + + + + + + 36 + 39 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: COIA Report Nov. 1, 1878,undated + + + + + + 36 + 40 + Box 7 Keweenaw Bay Indian Community, Court documents, ARCOIAS: COIA Report Nov. 1, 1879,undated + + + + + + 37 + 1 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L13: 218, Sept. 6, 1900,undated + + + + + + 37 + 2 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L13: 539, July 27, 1956,undated + + + + + + 37 + 3 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Misc. L16: 574-6, May 15, 1967,undated + + + + + + 37 + 4 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L19: 67, May 1, 1899,undated + + + + + + 37 + 5 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L19: 98, May 1, 1899,undated + + + + + + 37 + 6 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L19: 69, May 1, 1899,undated + + + + + + 37 + 7 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L19: 70, May 1, 1899 (Folder 1 of 2),undated + + + + + + 37 + 8 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L19: 70, May 1, 1899 (Folder 2 of 2),undated + + + + + + 37 + 9 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L21: 20, May 10, 1901,undated + + + + + + 37 + 10 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L21: 250, May 18, 1903 (Folder 1 of 2),undated + + + + + + 37 + 11 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L21: 250, May 18, 1903 (Folder 2 of 2),undated + + + + + + 37 + 12 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L23: 361-2, June 26, 1904,undated + + + + + + 37 + 13 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 178, Oct. 28, 1908,undated + + + + + + 37 + 14 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 179, Oct. 28, 1908,undated + + + + + + 37 + 15 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 180, Oct. 28, 1908,undated + + + + + + 37 + 16 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 181, Oct. 28, 1908,undated + + + + + + 37 + 17 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 182, Oct. 28, 1908,undated + + + + + + 37 + 18 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 183, Oct. 28, 1908,undated + + + + + + 37 + 19 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 184, Oct. 28, 1908,undated + + + + + + 37 + 20 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 185, Oct. 28, 1908,undated + + + + + + 37 + 21 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 186, Oct. 28, 1908,undated + + + + + + 37 + 22 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 187, Oct. 28, 1908,undated + + + + + + 37 + 23 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 188, Oct. 28, 1908,undated + + + + + + 37 + 24 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 190, Oct. 28, 1908,undated + + + + + + 37 + 25 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 191, Oct. 28, 1908,undated + + + + + + 37 + 26 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 189, Oct. 28, 1908,undated + + + + + + 37 + 27 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 192, Oct. 28, 1908,undated + + + + + + 37 + 28 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 193, Oct. 28, 1908,undated + + + + + + 37 + 29 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 194, Oct. 28, 1908,undated + + + + + + 37 + 30 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 228, Sept. 16, 1909,undated + + + + + + 37 + 31 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 229, Sept. 16, 1909,undated + + + + + + 37 + 32 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 230, Sept. 16, 1909,undated + + + + + + 37 + 33 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 231, Sept. 16, 1909,undated + + + + + + 37 + 34 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 232, Sept. 16, 1909,undated + + + + + + 37 + 35 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 233, Sept. 16, 1909,undated + + + + + + 37 + 36 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 234, Sept. 16, 1909 (Folder 1 of 2),undated + + + + + + 37 + 37 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 234, Sept. 16, 1909 (Folder 2 of 2),undated + + + + + + 37 + 38 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 236, Sept. 16, 1909,undated + + + + + + 37 + 39 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 286, July 7, 1911,undated + + + + + + 37 + 40 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 287, July 7, 1911,undated + + + + + + 37 + 41 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 288, July 7, 1911,undated + + + + + + 37 + 42 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 289, July 7, 1911,undated + + + + + + 37 + 43 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 291, July 7, 1911,undated + + + + + + 37 + 44 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 290 July 7, 1911,undated + + + + + + 37 + 45 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 292, July 7, 1911,undated + + + + + + 37 + 46 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 293, July 7, 1911,undated + + + + + + 37 + 47 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L27: 224, Jan. 23, 1908,undated + + + + + + 37 + 48 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L29: 83, March 30, 1908,undated + + + + + + 37 + 49 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L29: 258, Nov. 18, 1910,undated + + + + + + 37 + 50 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L31: 535,undated + + + + + + 37 + 51 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L32: 134, March 21, 1911,undated + + + + + + 37 + 52 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L32: 140-1, April 12, 1911,undated + + + + + + 37 + 53 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L32: 169, June 6, 1911,undated + + + + + + 37 + 54 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L32: 176, July 10, 1911,undated + + + + + + 37 + 55 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L34: 110, Feb. 14, 1931,undated + + + + + + 37 + 56 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L34: 589, Oct. 11, 1917,undated + + + + + + 37 + 57 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L36: 58-61, June 30, 1916,undated + + + + + + 37 + 58 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L36: 112, Sept. 29, 1916,undated + + + + + + 37 + 59 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deed, L36: 235, March 29, 1917,undated + + + + + + 37 + 60 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L36: 289, July 18, 1917,undated + + + + + + 37 + 61 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L36: 386-388, Oct. 12, 1917,undated + + + + + + 37 + 62 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L37: 82, May 28, 1917,undated + + + + + + 37 + 63 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L37: 306. Dec. 20, 1919,undated + + + + + + 37 + 64 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L37: 425, May 5, 1921,undated + + + + + + 37 + 65 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L37: 578, Sept. 19, 1922,undated + + + + + + 37 + 66 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L38: 60, May 22, 1911,undated + + + + + + 37 + 67 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L38: 161, Sept. 7, 1923,undated + + + + + + 37 + 68 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L39: 327-8, Aug. 23, 1920,undated + + + + + + 37 + 69 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L39: 329-330, Aug. 24, 1920,undated + + + + + + 37 + 70 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L39: 560, March 3, 1921,undated + + + + + + 37 + 71 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L40: 39, July 10, 1923,undated + + + + + + 37 + 72 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L40: 571, July 7, 1937,undated + + + + + + 37 + 73 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L41: 156, Aug. 16, 1922,undated + + + + + + 37 + 74 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L41: 208, Dec. 6, 1922,undated + + + + + + 37 + 75 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L41: 580, March 17, 1903,undated + + + + + + 37 + 76 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L41: 582, March 17, 1903,undated + + + + + + 37 + 77 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L41: 583, June 24, 1905,undated + + + + + + 37 + 78 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L42: 147, Sept. 26, 1923,undated + + + + + + 37 + 79 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L44: 48-9, Dec. 7, 1923,undated + + + + + + 37 + 80 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Misc. Records, L13: 217, [1879],undated + + + + + + 37 + 81 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Misc. Records, L13: 217, April 12, 1878,undated + + + + + + 37 + 82 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L13: 217, Aug. 7, 1900,undated + + + + + + 37 + 83 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L13: 216, Nov. 9, 1899,undated + + + + + + 37 + 84 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Misc., L12: 150, Dec. 9, 1949,undated + + + + + + 37 + 85 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L12: 148, March 10, 1888,undated + + + + + + 37 + 86 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Misc., L11: 253, May 2, 1942,undated + + + + + + 37 + 87 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Misc. L11: 252, April 23, 1947,undated + + + + + + 37 + 88 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L11: 252, March 21, 1941,undated + + + + + + 37 + 89 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L10: 231, Nov. 16, 1858,undated + + + + + + 37 + 90 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L10: 230, Nov. 16, 1858,undated + + + + + + 37 + 91 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L10: 229, Aug. 5, 1857,undated + + + + + + 37 + 92 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L10: 228, Aug. 5, 1857,undated + + + + + + 37 + 93 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Misc., L10: 146, May 1, 1940,undated + + + + + + 37 + 94 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L43: 512-513, Nov. 24, 1937,undated + + + + + + 37 + 95 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L9: 475, Sept. 18, 1911,undated + + + + + + 37 + 96 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Misc., L11: 153, May 7, 1946,undated + + + + + + 37 + 97 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Misc., L8: 531-532, Sept. 23, 1930,undated + + + + + + 37 + 98 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Misc., L8: 475, May 5, 1930,undated + + + + + + 37 + 99 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Misc., L7: 599-600, Dec. 30, 1922,undated + + + + + + 37 + 100 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Misc., L6: 185, April 12, 1911,undated + + + + + + 37 + 101 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Misc., L6: 184, Aug. 11, 1911,undated + + + + + + 37 + 102 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Misc., L6: 184, Aug. 21, 1911,undated + + + + + + 37 + 103 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deed, L4: 5, July 25, 1863,undated + + + + + + 37 + 104 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Misc., Deeds, L3: 218, July 14, 1909,undated + + + + + + 37 + 105 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L3: 221-223, May 3, 1870,undated + + + + + + 37 + 106 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L3: 187-88, June 21, 1866,undated + + + + + + 37 + 107 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L3: 5-6, June 16, 1853,undated + + + + + + 37 + 108 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L __: 188, July 17, 1866,undated + + + + + + 37 + 109 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 143, May 1, 1893,undated + + + + + + 37 + 110 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 134, Dec. 17, 1896,undated + + + + + + 37 + 111 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 131-132, July 23, 1895,undated + + + + + + 37 + 112 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 130-1, Dec. 10, 1895,undated + + + + + + 37 + 113 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deed, L__: 122-123, Oct. 14, 1875,undated + + + + + + 37 + 114 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 121-122, May 25, 1875,undated + + + + + + 37 + 115 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 119-120, June 3, 1875,undated + + + + + + 37 + 116 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 118-119, May 25, 1875,undated + + + + + + 37 + 117 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 116-8, May 25, 1875,undated + + + + + + 37 + 118 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 116-117, May 25, 1875,undated + + + + + + 37 + 119 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 114, May 25, 1875,undated + + + + + + 37 + 120 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 112-113, May 25, 1875,undated + + + + + + 37 + 121 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 111-112, May 25, 1875,undated + + + + + + 37 + 122 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 110-111, May 25, 1875,undated + + + + + + 37 + 123 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 109, July 19, 1875,undated + + + + + + 37 + 124 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 105, July 19, 1875,undated + + + + + + 37 + 125 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 108, July 19, 1875,undated + + + + + + 37 + 126 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 107, July 19, 1875,undated + + + + + + 37 + 127 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 106, July 19, 1875,undated + + + + + + 37 + 128 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 104, July 19, 1875,undated + + + + + + 37 + 129 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 103, July 19, 1875,undated + + + + + + 37 + 130 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 47-48, Aug. 22, 1859,undated + + + + + + 37 + 131 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 46-47, Sept. 6, 1860,undated + + + + + + 37 + 132 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 35-36, Aug. 25, 1859,undated + + + + + + 37 + 133 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 3-4, Feb. 12, 1863,undated + + + + + + 37 + 134 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 2-3, July 25, 1863,undated + + + + + + 37 + 135 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 1-2, May 1, 1862,undated + + + + + + 37 + 136 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 205, June 3, 1941,undated + + + + + + 37 + 137 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 206, June 3, 1941,undated + + + + + + 37 + 138 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 207, June 3, 1941,undated + + + + + + 37 + 139 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 265, March 18, 1942,undated + + + + + + 37 + 140 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 413, Nov. 29, 1940,undated + + + + + + 37 + 141 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 414, Nov. 29, 1940,undated + + + + + + 37 + 142 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 462, Oct. 3, 1941,undated + + + + + + 37 + 143 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 512, May 3, 1939,undated + + + + + + 37 + 144 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 513, May 1, 1941,undated + + + + + + 37 + 145 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 514-5, July 10, 1942,undated + + + + + + 37 + 146 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L54: 222, June 21, 1943,undated + + + + + + 37 + 147 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L55: 286, May 15, 1946,undated + + + + + + 37 + 148 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L55: 592, Jan. 7, 1946,undated + + + + + + 37 + 149 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L55: 639, Nov. 29, 1939,undated + + + + + + 37 + 150 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L56: 20, Dec. 20, 1911,undated + + + + + + 37 + 151 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L55: 640, Jan. 13, 1946,undated + + + + + + 37 + 152 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L56: 526, Jan. 27, 1949,undated + + + + + + 37 + 153 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L57: 47, March 21, 1946 (Folder 1 of 2),undated + + + + + + 37 + 154 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L57: 47, March 21, 1946 (Folder 2 of 2),undated + + + + + + 37 + 155 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L57: 50, Dec. 21, 1942,undated + + + + + + 37 + 156 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L57: 61, Nov. 29, 1939,undated + + + + + + 37 + 157 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L58: 544, June 21, 1954,undated + + + + + + 37 + 158 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L58: 578, June 20, 1958,undated + + + + + + 37 + 159 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L59: 33, Nov. 5, 1947,undated + + + + + + 37 + 160 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L60: 196, July 25, 1950,undated + + + + + + 37 + 161 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L60: 459, May 8, 1953,undated + + + + + + 37 + 162 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L61: 55, Feb. 9, 1949,undated + + + + + + 37 + 163 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L61: 287, Feb. 16, 1950,undated + + + + + + 37 + 164 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L61: 289, Feb. 21, 1950,undated + + + + + + 37 + 165 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L61: 321, Dec. 24, 1923,undated + + + + + + 37 + 166 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L61: 536, June 4, 1951,undated + + + + + + 37 + 167 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L62: ___. Dec. 9, 1954,undated + + + + + + 37 + 168 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L63: 72, June 9, 1952,undated + + + + + + 37 + 169 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L63: 109, Oct. 2, 1952,undated + + + + + + 37 + 170 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L62: 1__. Dec. 9, 1952,undated + + + + + + 37 + 171 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L63: 327, Dec. 30, 1953,undated + + + + + + 37 + 172 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L63: 333-335, Dec. 28, 1953,undated + + + + + + 37 + 173 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L65: 246, June 28, 1956,undated + + + + + + 37 + 174 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L65: 359, Jan. 22, 1895,undated + + + + + + 37 + 175 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L65: 360, Sept. 21, 1932,undated + + + + + + 37 + 176 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L65: 615, Aug. 28, 1958,undated + + + + + + 37 + 177 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L65: 618, Aug. 3, 1955,undated + + + + + + 37 + 178 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L65: 619, March 31, 1958,undated + + + + + + 37 + 179 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L65: 620, July 21, 1958,undated + + + + + + 37 + 180 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L69: 91, July 19, 1875,undated + + + + + + 37 + 181 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L69: 93-94, July 21, 1959,undated + + + + + + 37 + 182 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L69: 98-99, June 15, 1959,undated + + + + + + 37 + 183 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L69: 99, June 1, 1959,undated + + + + + + 37 + 184 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Misc., L73: 372, July 19, 1875,undated + + + + + + 37 + 185 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L32: 472, Aug. 22, 1912,undated + + + + + + 37 + 186 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L63: 236, July 17, 1911,undated + + + + + + 37 + 187 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L63: 235, June 10, 1911,undated + + + + + + 37 + 188 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L__: 327-8, [1953],undated + + + + + + 37 + 189 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L12: 337-338, July 19, 1875,undated + + + + + + 37 + 190 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Misc., L11: 321-322, Oct. 17, 1919,undated + + + + + + 37 + 191 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Misc., L11: 322, Jan. 14, 1952,undated + + + + + + 37 + 192 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L12: 339-341, June 3, 1918,undated + + + + + + 37 + 193 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L24: 652, Aug. 17, 1908,undated + + + + + + 37 + 194 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L64: 270, Jan. 22, 1895,undated + + + + + + 37 + 195 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L63: 234, May 17, 1911,undated + + + + + + 37 + 196 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-TO, Attic: Notice by person claiming Title Under Tax Deed, May 16, 1930,undated + + + + + + 37 + 197 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-TO, Attic: Statutory Tax Notice, Dec. 1, 1932,undated + + + + + + 37 + 198 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-TO, Attic: Notice By Purchaser Under Tax Sale, July 7, 1960,undated + + + + + + 37 + 199 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-TO, Attic: Notice By Person Claiming Title Under Tax Deed, March 29, 1940,undated + + + + + + 37 + 200 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-TO, Attic: Notice By Purchaser Under Tax Sale, June 20, 1962,undated + + + + + + 37 + 201 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-TO, Attic: Notice By Purchaser Under Tax Sale, Oct. 23, 1951,undated + + + + + + 37 + 202 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: KBIC-RO: Baraga Co. Dlq. Tax Notice,[2004] + + + + + + 37 + 203 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: Ford, Chris, L’Anse Sentinel, “KBIC property taxes on hold: members won’t pay during litigation”,June 9, 2004 + + + + + + 37 + 204 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deed, L44: 124, Jan. 9, 1924,undated + + + + + + 37 + 205 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L45: 408, May 1, 1928,undated + + + + + + 37 + 206 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L46: 538, Dec. 5, 1929,undated + + + + + + 37 + 207 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L47: 608, July 15, 1934,undated + + + + + + 37 + 208 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L48: 23, Sept. 22, 1930,undated + + + + + + 37 + 209 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L48: 38, Nov. 3, 1930,undated + + + + + + 37 + 210 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L48: 312, Oct. 15, 1930,undated + + + + + + 37 + 211 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L48: 529, Dec. 14, 1937,undated + + + + + + 37 + 212 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L49: 275, July 10, 1942,undated + + + + + + 37 + 213 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L50: 215, July 6, 1891,undated + + + + + + 37 + 214 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L50: 216-7, Dec. 7, 1937,undated + + + + + + 37 + 215 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L51: 281, April 26, 1941,undated + + + + + + 37 + 216 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L51: 282, April 26, 1941,undated + + + + + + 37 + 217 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L52: 379, Nov. 15, 1940,undated + + + + + + 37 + 218 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L52: 380, Nov. 16, 1940,undated + + + + + + 37 + 219 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L52: 410, May 1, 1941,undated + + + + + + 37 + 220 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L52: 411, June 28, 1941,undated + + + + + + 37 + 221 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L52: 430, Feb. 10, 1854,undated + + + + + + 37 + 222 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L52: 431, July 19, 1875,undated + + + + + + 37 + 223 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L52: 432, July 18, 1941,undated + + + + + + 37 + 224 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L52: 533, Oct. 3, 1941,undated + + + + + + 37 + 225 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L52: 468, July 21, 1941,undated + + + + + + 37 + 226 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L52: 467, June 20, 1941,undated + + + + + + 37 + 227 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L52: 469, Dec. 22, 1939,undated + + + + + + 37 + 228 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L52: 470, April 21, 1941,undated + + + + + + 37 + 229 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L52: 484, Aug. 21, 1941,undated + + + + + + 37 + 230 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L52: 485, April 29, 1941,undated + + + + + + 37 + 231 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L52: 620, Oct. 31, 1941,undated + + + + + + 37 + 232 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L52: 620, Oct. 12, 1892,undated + + + + + + 37 + 233 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L52: 622, Nov. 25, 1941,undated + + + + + + 37 + 234 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L52: 623, Nov. 16, 1939,undated + + + + + + 37 + 235 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L52: 624, Sept. 18, 1941,undated + + + + + + 37 + 236 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 95, Nov. 29, 1940,undated + + + + + + 37 + 237 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 96, Nov. 29, 1939,undated + + + + + + 37 + 238 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 97, Nov. 29, 1939,undated + + + + + + 37 + 239 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 98, Nov. 29, 1939,undated + + + + + + 37 + 240 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 99, Nov. 29, 1939,undated + + + + + + 37 + 241 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 100, Nov. 29, 1939,undated + + + + + + 37 + 242 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 101, Nov. 29, 1939,undated + + + + + + 37 + 243 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 102, Nov. 29, 1939,undated + + + + + + 37 + 243 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 103, Nov. 29, 1939,undated + + + + + + 37 + 244 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 104, Nov. 29, 1939,undated + + + + + + 37 + 245 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 105, Nov. 29, 1939,undated + + + + + + 37 + 246 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 106, Nov. 29, 1939,undated + + + + + + 37 + 247 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 107, Nov. 29, 1939,undated + + + + + + 37 + 248 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 108, Nov. 29, 1939,undated + + + + + + 37 + 249 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 109, Nov. 29, 1939,undated + + + + + + 37 + 250 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 152, Nov. 29, 1939 (Folder 1 of 2),undated + + + + + + 37 + 251 + Box 8 Keweenaw Bay Indian Community, Misc. documents not on 2005 calendar: BCC-RD, Deeds, L53: 155, Nov. 29, 1939 (Folder 2 of 2),undated + + + + + + 38 + 1 + Box 9 Keweenaw Bay Indian Community – Boundary Case: Tract Books of MI, US Dept. of the Interior, Bureau of Land Management, MF, typed excerpts, 19 p.,undated + + + + + + 38 + 2 + Box 9 Keweenaw Bay Indian Community – Boundary Case: 5 sets of oversized copies of Lake Superior District, Indian land allotments and purchases of land, copies made by US Dept of the Interior, Bureau of Land Management,undated + + + + + + 38 + 3 + Box 9 Keweenaw Bay Indian Community – Boundary Case: US Dist. Court for the W. Dist. MI N. Div., Keweenaw Bay Indian Community (KBIC) v. State of MI, KBIC’s Exhibit List (11 ledger-size p.) and all exhibit materials (1-97),1988 + + + + + + 39 + 1 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe 94985-1907, 339, 1907,undated + + + + + + 39 + 2 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: NAM M234 R394, June 22, 1869,undated + + + + + + 39 + 3 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: NAM M234 R.394, July 12, 1869,undated + + + + + + 39 + 4 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: NAM M234 R.409: 731, Feb. 25, 1871,undated + + + + + + 39 + 5 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: NAM M234 R394, July 24, 1871,undated + + + + + + 39 + 6 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: NAM M21 R158, April 14, 1880,undated + + + + + + 39 + 7 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 21514, Oct. 21, 1884,undated + + + + + + 39 + 8 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 22886- 1886 (Folder 1 of 2),undated + + + + + + 39 + 9 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 22886- 1886 (Folder 2 of 2),undated + + + + + + 39 + 10 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 7722- 1887,undated + + + + + + 39 + 11 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 24479- 1889,undated + + + + + + 39 + 12 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 23522- 1889,undated + + + + + + 39 + 13 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 2303- 1890,undated + + + + + + 39 + 14 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 5850- 1890,undated + + + + + + 39 + 15 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 6524- 1890,undated + + + + + + 39 + 16 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 51144- 1904,undated + + + + + + 39 + 17 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 67698- 1905,undated + + + + + + 39 + 18 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 61574- 1905 (Folder 1 of 2),undated + + + + + + 39 + 19 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 61574- 1905 (Folder 2 of 2),undated + + + + + + 39 + 20 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 16692- 1906,undated + + + + + + 39 + 21 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 52475- 1906,undated + + + + + + 39 + 22 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe [no #] - 1907, 339, 1907,undated + + + + + + 39 + 23 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe 94230-1907, 339, 1907,undated + + + + + + 39 + 24 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: NAM M21 R.50, Dec. 2, 1854,undated + + + + + + 39 + 25 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: NAM M234 R391, April 15, 1856,undated + + + + + + 39 + 26 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: NAM M21 R.60, Feb. 21, 1959,undated + + + + + + 39 + 27 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: NAM M234 R391, March 23, 1859,undated + + + + + + 39 + 28 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: NAM M234 R.391, June 26, 1859,undated + + + + + + 39 + 29 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: NAM M234 R392, Oct. 28, 1861,undated + + + + + + 39 + 30 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: NAM M234 R393, May 14, 1863,undated + + + + + + 39 + 31 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: NAM M234 R393, May 26, 1863,undated + + + + + + 39 + 32 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: NAM M234 R.393, May 7, 1864,undated + + + + + + 39 + 33 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: NAM M234 R.393, June 4, 1864,undated + + + + + + 39 + 34 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: NAM M234 R393, Feb. 10, 1866 (Folder 1 of 2),undated + + + + + + 39 + 35 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: NAM M234 R393, Feb. 10, 1866 (Folder 2 of 2),undated + + + + + + 39 + 36 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: NAM M234 R393, April 25, 1866,undated + + + + + + 39 + 37 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: NAM M234 R394, Dec. 10, 1867,undated + + + + + + 39 + 38 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: NAM M234 R.394, Dec. 12, 1867,undated + + + + + + 39 + 39 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: NAM M234 R.394, March 7, 1868,undated + + + + + + 39 + 40 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: NAM M234 R394, Oct. 10, 1868,undated + + + + + + 39 + 41 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 31969- 1892,undated + + + + + + 39 + 42 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 27924- 1893,undated + + + + + + 39 + 43 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 32588- 1893,undated + + + + + + 39 + 44 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 27596- 1894,undated + + + + + + 39 + 45 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 28377- 1894,undated + + + + + + 39 + 46 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 22633-1894,undated + + + + + + 39 + 47 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 36835- 1894,undated + + + + + + 39 + 48 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 33802- 1894,undated + + + + + + 39 + 49 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 36033-1895,undated + + + + + + 39 + 50 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 34714- 1896,undated + + + + + + 39 + 51 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 12342- 1897,undated + + + + + + 39 + 52 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 34990- 18977,undated + + + + + + 39 + 53 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 15173- 1897,undated + + + + + + 39 + 54 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 38367- 1898,undated + + + + + + 39 + 55 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 34826- 1898,undated + + + + + + 39 + 56 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 38420- 1907,undated + + + + + + 39 + 57 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 3628- 1899,undated + + + + + + 39 + 58 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 71639- 1901,undated + + + + + + 39 + 59 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 23609- 1901,undated + + + + + + 39 + 60 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 73465- 1901,undated + + + + + + 39 + 61 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 50363- 1902,undated + + + + + + 39 + 62 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 10283- 1904,undated + + + + + + 39 + 63 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 8496- 1904,undated + + + + + + 39 + 64 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 39610- 1904,undated + + + + + + 39 + 65 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 62940- 1904,undated + + + + + + 39 + 66 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 53442- 1907,undated + + + + + + 39 + 67 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe 93426- 1907, 113, 1907,undated + + + + + + 39 + 68 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 6950- 1908, 113.1, 1908,undated + + + + + + 39 + 69 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe 26048- 1908, 113.1, 1908,undated + + + + + + 39 + 70 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe 33380- 1908, 113.1, 1908,undated + + + + + + 39 + 71 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe 115520- 1908, 113, 1908,undated + + + + + + 39 + 72 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe 146- 1909, 052, 1909,undated + + + + + + 39 + 73 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe 58427- 1910, 113.1, 1910,undated + + + + + + 39 + 74 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe 62401- 1909, 253, 1909,undated + + + + + + 39 + 75 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe 42854- 1910, 273, 1910,undated + + + + + + 39 + 76 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe 944201-1911, 175, 1911,undated + + + + + + 39 + 77 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe 75207- 1911, 175, 1911,undated + + + + + + 39 + 78 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe 53006- 1912, 3084, 1912,undated + + + + + + 39 + 79 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe 120245- 1912, 253, 1912,undated + + + + + + 39 + 80 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe 16414- 1913, 113.1, 1913,undated + + + + + + 39 + 81 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe 20862- 1915, 059, 1915,undated + + + + + + 39 + 82 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe 29207- 1915, 115, 1915,undated + + + + + + 39 + 83 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe 21689, 1916, 115, 1916,undated + + + + + + 39 + 84 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe 123468- 1916, 155, 1916,undated + + + + + + 39 + 85 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe 3325- 1917, 115, 1917,undated + + + + + + 39 + 86 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe 56224-1918, 115, 1918,undated + + + + + + 39 + 87 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe 3465- 1919, 115, 1919,undated + + + + + + 39 + 88 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF Lac Du F 68119- 1919, 115, 1919,undated + + + + + + 39 + 89 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe 50256- 1919, 115, 1919,undated + + + + + + 39 + 90 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe 90323- 1920, 740, 1920,undated + + + + + + 39 + 91 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: CCF La Pointe 56293- 1921, 056, 1921,undated + + + + + + 39 + 92 + Box 1 Lac Courte Oreilles, Voigt case, 1869-1931: LR 01A 11577- 1931, 155, 1931,undated + + + + + + 40 + 1 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M1070, Reel 24,undated + + + + + + 40 + 2 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LaPointe Agency Annual Reports, extracts,undated + + + + + + 40 + 3 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R391 April 15, 1856,undated + + + + + + 40 + 4 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R391, March 23, 1859,undated + + + + + + 40 + 5 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R.391, June 26, 1859,undated + + + + + + 40 + 6 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R.392, Oct. 28, 1861,undated + + + + + + 40 + 7 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R.393, May 14, 1863,undated + + + + + + 40 + 8 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R.393, May 26, 1863,undated + + + + + + 40 + 9 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R.393, May 7, 1864,undated + + + + + + 40 + 10 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R.393, June 14, 1864,undated + + + + + + 40 + 11 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R.393, Feb. 10, 1866,undated + + + + + + 40 + 12 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R.393, April 25, 1866,undated + + + + + + 40 + 13 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R.394, Dec. 10, 1867,undated + + + + + + 40 + 14 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R.394, Dec. 12, 1867,undated + + + + + + 40 + 15 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R.408: 588, March 6, 1868 (Folder 1 of 2),undated + + + + + + 40 + 16 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R.408: 588, March 6, 1868 (Folder 2 of 2),undated + + + + + + 40 + 17 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R.394, March 7, 1868,undated + + + + + + 40 + 18 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R394, Oct. 10, 1868,undated + + + + + + 40 + 19 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R.408: 0919, May 24, 1869 (Folder 1 of 2),undated + + + + + + 40 + 20 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R.408: 0919, May 24, 1869 (Folder 2 of 2),undated + + + + + + 40 + 21 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R394, June 22, 1869,undated + + + + + + 40 + 22 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R394, July 12, 1869,undated + + + + + + 40 + 23 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R409: 731, Feb. 25, 1871,undated + + + + + + 40 + 24 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R.409: 779, April 7, 1871 (Folder 1 of 2),undated + + + + + + 40 + 25 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R.409: 779, April 7, 1871 (Folder 2 of 2),undated + + + + + + 40 + 26 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R.394, July 24, 1871,undated + + + + + + 40 + 27 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R.395, Feb. 17, 1873 (Folder 1 of 2),undated + + + + + + 40 + 28 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R.395, Feb. 17, 1873 (Folder 2 of 2),undated + + + + + + 40 + 29 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M21 R158, April 14, 1880,undated + + + + + + 40 + 30 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 21514, 1884,undated + + + + + + 40 + 31 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 22886- 1886 (Folder 1 of 2),undated + + + + + + 40 + 32 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 22886- 1886 (Folder 2 of 2),undated + + + + + + 40 + 33 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 7722- 1887,undated + + + + + + 40 + 34 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 23522- 1889,undated + + + + + + 40 + 35 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 24479- 1889,undated + + + + + + 40 + 36 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 5850- 1890,undated + + + + + + 40 + 37 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 6524- 1890,undated + + + + + + 40 + 38 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 2303- 1890,undated + + + + + + 40 + 39 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 31969- 1892,undated + + + + + + 40 + 40 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 32588- 1893,undated + + + + + + 40 + 41 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 27924- 1893,undated + + + + + + 40 + 42 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 22633- 1894, June 12, 1894,undated + + + + + + 40 + 43 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 27596- 1894, July 16, 1894,undated + + + + + + 40 + 44 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 28377- 1894,undated + + + + + + 40 + 45 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 33802- 1894,undated + + + + + + 40 + 46 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 36835- 1894,undated + + + + + + 40 + 47 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 36033- 1895,undated + + + + + + 40 + 48 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 34714- 1896,undated + + + + + + 40 + 49 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 34990- 1897,undated + + + + + + 40 + 50 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 11216- 1897 (Folder 1 of 2),undated + + + + + + 40 + 51 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 11216- 1897 (Folder 2 of 2),undated + + + + + + 40 + 52 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 12342- 1897,undated + + + + + + 40 + 53 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 15173- 1897,undated + + + + + + 40 + 54 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 37058- 1897 (Folder 1 of 2),undated + + + + + + 40 + 55 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 37058- 1897 (Folder 2 of 2),undated + + + + + + 40 + 56 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 38367- 1898,undated + + + + + + 40 + 57 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 34826- 1898,undated + + + + + + 40 + 58 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 41973- 1898 (Folder 1 of 2),undated + + + + + + 40 + 59 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 41973- 1898 (Folder 2 of 2),undated + + + + + + 40 + 60 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 23569- 1900 (Folder 1 of 2),undated + + + + + + 40 + 61 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 23569- 1900 (Folder 2 of 2),undated + + + + + + 40 + 62 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 40317- 1900 (Folder 1 of 2),undated + + + + + + 40 + 63 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 40317- 1900 (Folder 2 of 2),undated + + + + + + 40 + 64 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 3628- 1900,undated + + + + + + 40 + 65 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 23609- 1901,undated + + + + + + 40 + 66 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 71639- 1901,undated + + + + + + 40 + 67 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 73465- 1901,undated + + + + + + 40 + 68 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 50363- 1902,undated + + + + + + 40 + 69 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 8496- 1904,undated + + + + + + 40 + 70 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 10283- 1904 (Folder 1 of 2),undated + + + + + + 40 + 71 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 10283- 1904 (Folder 2 of 2),undated + + + + + + 40 + 72 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 39610- 1904,undated + + + + + + 40 + 73 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 51144- 1904,undated + + + + + + 40 + 74 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 62940- 1904,undated + + + + + + 40 + 75 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 34315- 1905 (Folder 1 of 2),undated + + + + + + 40 + 76 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 34315- 1905 (Folder 2 of 2),undated + + + + + + 40 + 77 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 61574- 1905 (Folder 1 of 2),undated + + + + + + 40 + 78 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 61574- 1905 (Folder 2 of 2),undated + + + + + + 40 + 79 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 67698- 1905,undated + + + + + + 40 + 80 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 16692- 1906,undated + + + + + + 40 + 81 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 52475- 1906,undated + + + + + + 40 + 82 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 38420- 1907,undated + + + + + + 40 + 83 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 53442- 1907,undated + + + + + + 40 + 84 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe [no #] - 1907, 339,undated + + + + + + 40 + 85 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 94230- 1907, 339,undated + + + + + + 40 + 86 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 94985- 1907, 339,undated + + + + + + 40 + 87 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 93426- 1907, 113,undated + + + + + + 40 + 88 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 6950- 1908, 113.1,undated + + + + + + 40 + 89 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 26048- 1908, 113.1,undated + + + + + + 40 + 90 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 33380- 1908, 113.1,undated + + + + + + 40 + 91 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 115520- 1908, 113,undated + + + + + + 40 + 92 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 146- 1909, 052,undated + + + + + + 40 + 93 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 58427- 1910, 113.1,undated + + + + + + 40 + 94 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 42854- 1910, 273,undated + + + + + + 40 + 95 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 944201- 1911, 175,undated + + + + + + 40 + 96 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 75207- 1911, 175,undated + + + + + + 40 + 97 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 53006- 1912, 3084,undated + + + + + + 40 + 98 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 120245- 1912, 253,undated + + + + + + 40 + 99 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 62401- 1912, 253,undated + + + + + + 40 + 100 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 16414- 1913, 113.1,undated + + + + + + 40 + 101 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 20862- 1915, 059,undated + + + + + + 40 + 102 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 29207- 1915, 115,undated + + + + + + 40 + 103 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 21689- 1916, 115,undated + + + + + + 40 + 104 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 123468- 1916, 155,undated + + + + + + 40 + 105 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 50256- 1916, 115,undated + + + + + + 40 + 106 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 3325- 1917, 115,undated + + + + + + 40 + 107 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 56224- 1918, 115,undated + + + + + + 40 + 108 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 3465- 1919, 115,undated + + + + + + 40 + 109 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 68119- 1919, 115,undated + + + + + + 40 + 110 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 90323- 1920, 740,undated + + + + + + 40 + 111 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 56293- 1921, 056,undated + + + + + + 40 + 112 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: LR 01A 11577- 1922, 155,undated + + + + + + 40 + 113 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 16828- 1923, 113,undated + + + + + + 40 + 114 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 24176- 1923, 115,undated + + + + + + 40 + 115 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 3761- 1923, 806,undated + + + + + + 40 + 116 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 4099- 1924, 115,undated + + + + + + 40 + 117 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 48632- 1924, 308.1,undated + + + + + + 40 + 118 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 38195- 1924, 175.1,undated + + + + + + 40 + 119 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 78326-1925, 115,undated + + + + + + 40 + 120 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 71261- 1925, 115,undated + + + + + + 40 + 121 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 70341- 1925, 115,undated + + + + + + 40 + 122 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 71200- 1925, 115,undated + + + + + + 40 + 123 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 33136- 1926, 115,undated + + + + + + 40 + 124 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 33976- 1926, 115,undated + + + + + + 40 + 125 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 51860- 1926, 054,undated + + + + + + 40 + 126 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 48938- 1927, 115,undated + + + + + + 40 + 127 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 52953- 1927, 115,undated + + + + + + 40 + 128 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 58018- 1927, 115,undated + + + + + + 40 + 129 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 57483- 1927, 115,undated + + + + + + 40 + 130 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F [no #], 1927, 800,undated + + + + + + 40 + 131 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF La Pointe 12644- 1927, 806,undated + + + + + + 40 + 132 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 1952- 1928, 115,undated + + + + + + 40 + 133 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 59915- 1929, 115,undated + + + + + + 40 + 134 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 6259- 1929,undated + + + + + + 40 + 135 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 17263- 1929, 115,undated + + + + + + 40 + 136 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 17263- 1929, 155, (Folder 1 of 2),undated + + + + + + 40 + 137 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 17263- 1929, 155,(Folder 2 of 2),undated + + + + + + 40 + 138 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 62592- 1929, 723,undated + + + + + + 40 + 139 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 48132- 1930, 115,undated + + + + + + 40 + 140 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 55184- 1930, 115,undated + + + + + + 40 + 141 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 35121- 1930, 115,undated + + + + + + 40 + 142 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 31583- 1931, 115,undated + + + + + + 40 + 143 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 65623- 1931, 115,undated + + + + + + 40 + 144 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F [no #] – 1931, 800,undated + + + + + + 40 + 145 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac D F 44671- 1931, 723,undated + + + + + + 40 + 146 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 59550- 1931, 054,undated + + + + + + 40 + 147 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 27235- 1931, 115,undated + + + + + + 40 + 148 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 25975- 1932, 115,undated + + + + + + 40 + 149 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 42941- 1932, 115,undated + + + + + + 40 + 150 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 38234- 1932, 723,undated + + + + + + 40 + 151 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 53150- 1933, 155,undated + + + + + + 40 + 152 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 17072- 1933, 115,undated + + + + + + 40 + 153 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 15306- 1933, 115,undated + + + + + + 40 + 154 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 51269- 1933, 155,undated + + + + + + 40 + 155 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 59702- 1934, 723,undated + + + + + + 40 + 156 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 35918- 1934, 115,undated + + + + + + 40 + 157 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: CCF Lac Du F 10307- 1935, 115,undated + + + + + + 40 + 158 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: Special Case 27,undated + + + + + + 40 + 159 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: Special Case 32,undated + + + + + + 40 + 160 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: Special Case 64,undated + + + + + + 40 + 161 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: Special Case 143,undated + + + + + + 40 + 162 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M234 R.50 Dec. 2, 1954,undated + + + + + + 40 + 163 + Box 2 Lac Courte Oreilles, Voigt case, 1856-1934: NAM M21 R.60, Feb. 21, 1959,undated + + + + + + 41 + 1 + Box 3 Lac Courte Oreilles, Voigt case, Legal filings: L. C. O. File Folder 1- Lac Courte Oreilles v. WI, # 74- C- 313- C,undated + + + + + + 41 + 2 + Box 3 Lac Courte Oreilles, Voigt case, Legal filings: L. C. O. File Folder 2,undated + + + + + + 41 + 3 + Box 3 Lac Courte Oreilles, Voigt case, Legal filings: L. C. O. File Folder 3, L. C. O. Voigt- # 74- C- 313, Decision: Voigt Case,undated + + + + + + 41 + 4 + Box 3 Lac Courte Oreilles, Voigt case, Legal filings: L. C. O. File Folder 3, L. C. O. Voigt- # 74- C- 313, Voigt- Phase 2 Report- Cleland,undated + + + + + + 41 + 5 + Box 3 Lac Courte Oreilles, Voigt case, Legal filings: L. C. O. 74- C- 313, Clifton Deposition,undated + + + + + + 41 + 6 + Box 3 Lac Courte Oreilles, Voigt case, Legal filings: Preliminary Report of Historical Findings Lac Courte Oreille Band of Chippewa v. WI et al. (Cause No. 74-C-313) by Alan S. Newell, Orlan J. Svingen,1985 + + + + + + 41 + 7 + Box 3 Lac Courte Oreilles, Voigt case, Legal filings: US Dist. Court for Western Dist. of WI, Lac Courte Oreilles Band of Lake Superior Chippewa, et al., v. WI, et al., Case No. 74-C-313, Proposed Joint Amended Complaint of Plaintiff, Intervenors, Preliminary Statement,[1985] + + + + + + 42 + 1 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: 115932 Mackinac Agency #115 2/3/1916,undated + + + + + + 42 + 2 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F [no #] - 1931, 800,undated + + + + + + 42 + 3 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 44671- 1931, 723,undated + + + + + + 42 + 4 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 59550- 1931, 054,undated + + + + + + 42 + 5 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 27235- 1931, 115,undated + + + + + + 42 + 6 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 25975- 1932, 115,undated + + + + + + 42 + 7 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 42941- 1932, 115,undated + + + + + + 42 + 8 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 38234- 1932, 723,undated + + + + + + 42 + 9 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 53150- 1933, 155,undated + + + + + + 42 + 10 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 17072- 1933, 115,undated + + + + + + 42 + 11 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 14306- 1933, 115,undated + + + + + + 42 + 12 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 51269- 1933, 155,undated + + + + + + 42 + 13 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 59702- 1934, 723,undated + + + + + + 42 + 14 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 35918- 1934, 115,undated + + + + + + 42 + 15 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 10307- 1935, 115,undated + + + + + + 42 + 16 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: Special Case 27,undated + + + + + + 42 + 17 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: Special Case 32,undated + + + + + + 42 + 18 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: Special Case 64,undated + + + + + + 42 + 19 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: Special Case 143,undated + + + + + + 42 + 20 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF La Pointe 78326- 1925, 115,undated + + + + + + 42 + 21 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF La Pointe 71261- 1925, 115,undated + + + + + + 42 + 22 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F [no #] 1927, 800,undated + + + + + + 42 + 23 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF La Pointe 12644- 1927, 806,undated + + + + + + 42 + 24 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 1952- 1928, 115,undated + + + + + + 42 + 25 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 17263- 1929, 155,undated + + + + + + 42 + 26 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 48132- 1930, 115,undated + + + + + + 42 + 27 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 55184- 1930, 115,undated + + + + + + 42 + 28 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 53121- 1930, 115,undated + + + + + + 42 + 29 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 31583- 1931, 115,undated + + + + + + 42 + 30 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 65623- 1931, 115,undated + + + + + + 42 + 31 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCCF La Pointe 24176- 1923, 115,undated + + + + + + 42 + 32 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF La Pointe 16828- 1923, 113,undated + + + + + + 42 + 33 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF La Pointe 3761- 1923, 806,undated + + + + + + 42 + 34 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF La Pointe 4099- 1924, 115,undated + + + + + + 42 + 35 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF La Pointe 48632- 1924, 308.1,undated + + + + + + 42 + 36 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF La Pointe 38195- 1924, 175.1,undated + + + + + + 42 + 37 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF La Pointe 70341- 1925, 115,undated + + + + + + 42 + 38 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 71200- 1925, 115,undated + + + + + + 42 + 39 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 33136- 1926, 115,undated + + + + + + 42 + 40 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF La Pointe 33976- 1926, 115,undated + + + + + + 42 + 41 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 6259- 1929,undated + + + + + + 42 + 42 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 62592- 1929, 723,undated + + + + + + 42 + 43 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF La Pointe 51860- 1926, 054,undated + + + + + + 42 + 44 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 48938- 1927, 115,undated + + + + + + 42 + 45 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 52953- 1927, 115,undated + + + + + + 42 + 46 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 58018- 1927, 115,undated + + + + + + 42 + 47 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 57483- 1927, 115,undated + + + + + + 42 + 48 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: CCF Lac Du F 59915- 1929, 115,undated + + + + + + 42 + 49 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: NAM M1070 Reel 24,undated + + + + + + 42 + 50 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: NAM M234 R.395, Feb. 17, 1873,undated + + + + + + 42 + 51 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: NAM M234 R395, Feb. 17, 1873,undated + + + + + + 42 + 52 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: ARCOIA, LaPointe Agency, 1870-1907,undated + + + + + + 42 + 53 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: Misc. Correspondence, LaPointe Agency, 1924,undated + + + + + + 42 + 54 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: Statistics Accompanying Annual Report for Bad River, Red Cliff, Lac du Flambau Reservations,undated + + + + + + 42 + 55 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: Biennial Reports, WI Commissioners of Fisheries, 1897-1898, 1907,undated + + + + + + 42 + 56 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: Dissolved Gasses of the Water…The Inland Lakes of WI, Bulletin XXII, No. 7, 1911,undated + + + + + + 42 + 57 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: “Conservation History” by Walter E. Scott, WI Conservation Bulletin, 1937,undated + + + + + + 42 + 58 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: Synopsis of Report of Inspector, Gisney, La Pointe Agency (Leahy), May 22, 1890,undated + + + + + + 42 + 59 + Box 4 Lac Courte Oreilles, Voigt case, Misc. Documents: Lac Courte Oreilles Band…v. WI, Case no. 74-C-313-C, Designation of Expert Witness, Notice to Depose Plaintiff’s Expert Witness,1990 + + + + + + 43 + 1 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M668 R.4: 312- 317, March 30, 1817,undated + + + + + + 43 + 2 + Box 1 Menominee, Calendar documents, 1817-1836: GWL- CHS Box 1, folder 3, July 20, 1820,undated + + + + + + 43 + 3 + Box 1 Menominee, Calendar documents, 1817-1836: GWL- CHS, Box 6, F. 2, Mss. 2359, [1821?],undated + + + + + + 43 + 4 + Box 1 Menominee, Calendar documents, 1817-1836: GWL- CHS Box 1, folder 3, Jan. 4, 1823,undated + + + + + + 43 + 5 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 3-7, Sept. 1, 1824,undated + + + + + + 43 + 6 + Box 1 Menominee, Calendar documents, 1817-1836: GWL- CHS Box 1, folder 3, Oct. 7, 1824,undated + + + + + + 43 + 7 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.1: 377, Feb. 25, 1825,undated + + + + + + 43 + 8 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.1: 393, March 8, 1825,undated + + + + + + 43 + 9 + Box 1 Menominee, Calendar documents, 1817-1836: GWL- CHS Box 1, folder 4, March 30, 1825,undated + + + + + + 43 + 10 + Box 1 Menominee, Calendar documents, 1817-1836: Treaty of Prairie des Chiens, Aug. 19, 1825,undated + + + + + + 43 + 11 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 14, Dec. 1, 1825,undated + + + + + + 43 + 12 + Box 1 Menominee, Calendar documents, 1817-1836: GWL- CHS Box 1, folder 4, Jan. 1, 1827,undated + + + + + + 43 + 13 + Box 1 Menominee, Calendar documents, 1817-1836: NAM T494 R.2 Aug. 6, 1827,undated + + + + + + 43 + 14 + Box 1 Menominee, Calendar documents, 1817-1836: NAM T494 R.2, Treaty, Aug. 11, 1827,undated + + + + + + 43 + 15 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M668 R.6: 62-74, Aug. 11, 1827 (Folder 1 of 2),undated + + + + + + 43 + 16 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M668 R.6: 62-74, Aug. 11, 1827 (Folder 2 of 2),undated + + + + + + 43 + 17 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 31-34, Aug. 18, 1827,undated + + + + + + 43 + 18 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 35-37, Aug. 20, 1827,undated + + + + + + 43 + 19 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.4: 253, Jan. 15, 1828,undated + + + + + + 43 + 20 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R. 5: 44, July 19, 1828,undated + + + + + + 43 + 21 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 29-30, July 23, 1828,undated + + + + + + 43 + 22 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 52-53, Sept. 1, 1828,undated + + + + + + 43 + 23 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.5: 280, Jan. 26, 1829,undated + + + + + + 43 + 24 + Box 1 Menominee, Calendar documents, 1817-1836: W. H. S. - US Mss. 4E, Box 1 Letters and Doc- Treaty of P d C, Aug. 7, 1829,undated + + + + + + 43 + 25 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R6: 209, Dec. 28, 1829,undated + + + + + + 43 + 26 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.6: 254, Feb. 6, 1830,undated + + + + + + 43 + 27 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.317: 32-39, Feb. 28, 1830,undated + + + + + + 43 + 28 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.6: 424, May 18, 1830,undated + + + + + + 43 + 29 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.6: 432-3, May 26, 1830,undated + + + + + + 43 + 30 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.6: 463-7, June 9, 1830,undated + + + + + + 43 + 31 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 207- 217, June 9, 1830,undated + + + + + + 43 + 32 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R315: 221- 222. July 19, 1830,undated + + + + + + 43 + 33 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 250-252, Aug. 25, 1830,undated + + + + + + 43 + 34 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 260-264. Sept. 4, 1830,undated + + + + + + 43 + 35 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 289- 300, Sept. 5, 1830,undated + + + + + + 43 + 36 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 217-219. Sept. 8, 1830,undated + + + + + + 43 + 37 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 132-144. Sept. 20, 1830,undated + + + + + + 43 + 38 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 314- 316. Oct. 10, 1830,undated + + + + + + 43 + 39 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 147-148, 158-189. Oct. 30, 1830,undated + + + + + + 43 + 40 + Box 1 Menominee, Calendar documents, 1817-1836: NAM T494 R.2, Feb. 1, 1831,undated + + + + + + 43 + 41 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M668 R6: 287- 350, Feb. 8, 1831,undated + + + + + + 43 + 42 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 608- 610, March 2, 1831,undated + + + + + + 43 + 43 + Box 1 Menominee, Calendar documents, 1817-1836: NAM T494 R.2, March 16, 1831,undated + + + + + + 43 + 44 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 354- 356, Apr. 8, 1831,undated + + + + + + 43 + 45 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 482- 491, Apr. 14, 1831,undated + + + + + + 43 + 46 + Box 1 Menominee, Calendar documents, 1817-1836: CHS Box 1, Folder b, April 30, 1831,undated + + + + + + 43 + 47 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 499- 501, May 21, 1831,undated + + + + + + 43 + 48 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 503- 508, June 15, 1831,undated + + + + + + 43 + 49 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.320: 800- 811, June 27, 1831,undated + + + + + + 43 + 50 + Box 1 Menominee, Calendar documents, 1817-1836: NAM T494 R.2, July 18, 1831,undated + + + + + + 43 + 51 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 394- 470, JL of Presidential Commission, July 27, 1831,undated + + + + + + 43 + 52 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 611- 622, Aug. 1, 1831,undated + + + + + + 43 + 53 + Box 1 Menominee, Calendar documents, 1817-1836: NAM T494 R.2 Aug. 4, 1831 (Folder 1 of 2),undated + + + + + + 43 + 54 + Box 1 Menominee, Calendar documents, 1817-1836: NAM T494 R.2 Aug. 4, 1831 (Folder 2 of 2),undated + + + + + + 43 + 55 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 518- 521, Aug. 4, 1831,undated + + + + + + 43 + 56 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 526- 540, Aug. 16, 1831,undated + + + + + + 43 + 57 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 541- 549, Aug. 18, 1831,undated + + + + + + 43 + 58 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 365- 367, Aug. 21, 1831,undated + + + + + + 43 + 59 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 357- 358, Aug. 26, 1831,undated + + + + + + 43 + 60 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 559- 562, Oct. 25, 1831,undated + + + + + + 43 + 61 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 566- 608, Nov. 8, 1831,undated + + + + + + 43 + 62 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 555- 557, Nov. 22, 1831,undated + + + + + + 43 + 63 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.8: 104, Feb. 13, 1832,undated + + + + + + 43 + 64 + Box 1 Menominee, Calendar documents, 1817-1836: GWL- CHS, Box 1, folder 6, July 23, 1832,undated + + + + + + 43 + 65 + Box 1 Menominee, Calendar documents, 1817-1836: GWL- CHS, Box 1, folder 6, July 24, 1832,undated + + + + + + 43 + 66 + Box 1 Menominee, Calendar documents, 1817-1836: GWL- CHS, Box 1, folder 6, July 25, 1832,undated + + + + + + 43 + 67 + Box 1 Menominee, Calendar documents, 1817-1836: GWL- CHS, Box 1, folder 6, Aug. 12, 1832,undated + + + + + + 43 + 68 + Box 1 Menominee, Calendar documents, 1817-1836: GWL- CHS, Box 1, folder 6, Sept. 1, 1832,undated + + + + + + 43 + 69 + Box 1 Menominee, Calendar documents, 1817-1836: NAM T494 R.2, Sept. 11, 1832,undated + + + + + + 43 + 70 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.9: 231- 233, Sept. 11, 1932,undated + + + + + + 43 + 71 + Box 1 Menominee, Calendar documents, 1817-1836: NAM T494 R. 2: 491- 493, Sept. 16, 1832,undated + + + + + + 43 + 72 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.315: 837- 862, Sept. 17, 1832,undated + + + + + + 43 + 73 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M668 R.7: 141- 160, Oct. 27, 1832,undated + + + + + + 43 + 74 + Box 1 Menominee, Calendar documents, 1817-1836: NAM T494 R.2: 65- 66. Jan. 24, 1833,undated + + + + + + 43 + 75 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.10: 151- 156, Mar 27, 1833,undated + + + + + + 43 + 76 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.10: 251- 254, Apr. 16, 1833,undated + + + + + + 43 + 77 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.13: 291, July 31, 1834,undated + + + + + + 43 + 78 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.316: 65- 73. Aug. 25, 1834,undated + + + + + + 43 + 79 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.316: 62- 64, Sept. 25, 1834,undated + + + + + + 43 + 80 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.14: 17- 21, Oct. 8, 1834,undated + + + + + + 43 + 81 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.14: 26- 27, Oct. 9, 1834,undated + + + + + + 43 + 82 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.14: 66- 68, Oct. 23, 1834,undated + + + + + + 43 + 83 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.318: 12-15, Nov. 24, 1834,undated + + + + + + 43 + 84 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.316: 177- 181, Dec. 5, 1834,undated + + + + + + 43 + 85 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.14: 281, Dec. 17, 1834,undated + + + + + + 43 + 86 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.14: 282- 285, Dec. 18, 1834,undated + + + + + + 43 + 87 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.14: 286- 288, Dec. 18, 1834,undated + + + + + + 43 + 88 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.316: 193- 195, Dec. 24, 1834,undated + + + + + + 43 + 89 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R15: 38-39, Feb. 2, 1835,undated + + + + + + 43 + 90 + Box 1 Menominee, Calendar documents, 1817-1836: GWL- CHS, Box 1, folder 7, Feb. 16, 1835,undated + + + + + + 43 + 91 + Box 1 Menominee, Calendar documents, 1817-1836: GWL- CHS, Box 1, folder 7, March 7, 1835,undated + + + + + + 43 + 92 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R15: 158, Mar 12, 1835,undated + + + + + + 43 + 93 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R15: 158, Mar 12, 1835,undated + + + + + + 43 + 94 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R15: 218, Mar 26, 1835,undated + + + + + + 43 + 95 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R15: 218, Mar 26, 1835,undated + + + + + + 43 + 96 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R16: 71, May 9, 1835,undated + + + + + + 43 + 97 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.16: 84, May 12, 1835,undated + + + + + + 43 + 98 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R16: 113, May 14, 1835,undated + + + + + + 43 + 99 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.16: 114, May 5, 1835,undated + + + + + + 43 + 100 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.16: 115, May 15, 1835,undated + + + + + + 43 + 101 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R16: 115, May 15, 1835,undated + + + + + + 43 + 101 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.16: 122, May 18, 1835,undated + + + + + + 43 + 102 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.16: 207, June 15, 1835,undated + + + + + + 43 + 103 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.16: 208, June 15, 1835,undated + + + + + + 43 + 104 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.16: 257, July 3, 1835,undated + + + + + + 43 + 105 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R16: 290, July 22, 1835,undated + + + + + + 43 + 106 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R16: 331, Aug. 11, 1835,undated + + + + + + 43 + 107 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R17: 6, Aug. 24, 1835,undated + + + + + + 43 + 108 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.316: 321- 324, Aug. 27, 1835,undated + + + + + + 43 + 109 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.17: 27, Aug. 29, 1835,undated + + + + + + 43 + 110 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.17: 116, Sept. 22, 1835,undated + + + + + + 43 + 111 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.17: 137, Sept. 28, 1835,undated + + + + + + 43 + 112 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.17: 139, Sept. 28, 1835,undated + + + + + + 43 + 113 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.17: 140, Sept. 28, 1835,undated + + + + + + 43 + 114 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.17: 145, Sept. 29, 1835,undated + + + + + + 43 + 115 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.17: 184, Oct. 14, 1835,undated + + + + + + 43 + 116 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.17: 201, Oct. 20, 1835,undated + + + + + + 43 + 117 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.17: 202, Oct. 20, 1835,undated + + + + + + 43 + 118 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.17: 203, Oct. 20, 1835 (Folder 1 of 2),undated + + + + + + 43 + 119 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.17: 203, Oct. 20, 1835 (Folder 2 of 2),undated + + + + + + 43 + 120 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R.316: 329- 331, Oct. 30, 1835,undated + + + + + + 43 + 121 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.17: 274, Nov. 16, 1835,undated + + + + + + 43 + 122 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.17: 303, Nov. 24, 1835,undated + + + + + + 43 + 123 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.17: 345, Dec. 19, 1835,undated + + + + + + 43 + 124 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.18: 143, Mar 7, 1836,undated + + + + + + 43 + 125 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R18: 162, Mar 10, 1836,undated + + + + + + 43 + 126 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.19: 71, June 22, 1836,undated + + + + + + 43 + 127 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.19: 191, July 12, 1836,undated + + + + + + 43 + 128 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R19: 199, July 13, 1836,undated + + + + + + 43 + 129 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.19: 312, July 25, 1836,undated + + + + + + 43 + 130 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M668 R.8: 211- 234. Aug. 29, 1836,undated + + + + + + 43 + 131 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M234 R318: 295- 296, Sept. 3, 1836,undated + + + + + + 43 + 132 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M668 R.8: 192- 211, Sept. 3, 1836,undated + + + + + + 43 + 133 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R19: 462, Sept. 19, 1836,undated + + + + + + 43 + 134 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R.20: 260, Dec. 6, 1839,undated + + + + + + 43 + 135 + Box 1 Menominee, Calendar documents, 1817-1836: NAM M21 R20: 339, Dec. 27, 1836,undated + + + + + + 44 + 1 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.316: 506- 507, March 16, 1837,undated + + + + + + 44 + 2 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.21: 196- 197, March 22, 1837,undated + + + + + + 44 + 3 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.21: 199- 200, March 22, 1837,undated + + + + + + 44 + 4 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.21: 234- 5, March 31, 1837,undated + + + + + + 44 + 5 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.316: 503- 505, March 23, 1837,undated + + + + + + 44 + 6 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.315: 38- 40, March 26, 1837,undated + + + + + + 44 + 7 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.21: 276- 281, Apr. 20, 1837,undated + + + + + + 44 + 8 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.316: 639- 642, Apr. 25, 1837,undated + + + + + + 44 + 9 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.21: 276- 281, Apr. 28, 1837,undated + + + + + + 44 + 10 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.21: 380, May 6, 1837,undated + + + + + + 44 + 11 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.316: 458- 460, May 13, 1837,undated + + + + + + 44 + 12 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.21: 447- 448, May 24, 1837,undated + + + + + + 44 + 13 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.318: 18- 19, July 27, 1837,undated + + + + + + 44 + 14 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.316: 679- 693, Sept. 4, 1837,undated + + + + + + 44 + 15 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.316: 556- 559, Oct. 2, 1837,undated + + + + + + 44 + 16 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.316: 540- 548, Oct. 17, 1837,undated + + + + + + 44 + 17 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.22: 468, Oct. 27, 1837,undated + + + + + + 44 + 18 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.315: 117- 120, Oct. 27, 1837,undated + + + + + + 44 + 19 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.22: 477, Oct. 28, 1837,undated + + + + + + 44 + 20 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.22: 481- 82, Oct. 30, 1837,undated + + + + + + 44 + 21 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.23: 1, Nov. 28, 1837,undated + + + + + + 44 + 22 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.23: 2, Nov. 28, 1837,undated + + + + + + 44 + 23 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R23: 9- 10, Nov. 30, 1837,undated + + + + + + 44 + 24 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.316: 665- 667, Dec. 28, 1837,undated + + + + + + 44 + 25 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.23: 164- 165, Jan. 10, 1838,undated + + + + + + 44 + 26 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R23: 305, Feb. 9, 1838,undated + + + + + + 44 + 27 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.317: 237- 238, Feb. 28, 1838,undated + + + + + + 44 + 28 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.317: 363- 365, Mar 5, 1838,undated + + + + + + 44 + 29 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.317: 11- 15, Mar 5, 1838,undated + + + + + + 44 + 30 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.23: 462- 469, Mar 19, 1838,undated + + + + + + 44 + 31 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.317: 284- 286, Mar 22, 1838,undated + + + + + + 44 + 32 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R23: 502- 03, Mar 26, 1838,undated + + + + + + 44 + 33 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS, Box 2, folder 2, April 19, 1838,undated + + + + + + 44 + 34 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.24: 107- 09, Apr. 27, 1838,undated + + + + + + 44 + 35 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.24: 230- 31, May 19, 1838,undated + + + + + + 44 + 36 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.24: 266, May 26, 1838,undated + + + + + + 44 + 37 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.23: 155, Jan. 8, 1838,undated + + + + + + 44 + 38 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.317: 309- 311, July 10, 1838,undated + + + + + + 44 + 39 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.317: 312- 316, July 12, 1838,undated + + + + + + 44 + 40 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.24: 542, July 25, 1838,undated + + + + + + 44 + 41 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.25: 154, Aug. 30, 1838,undated + + + + + + 44 + 42 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS, Box 2, folder 2, Sept. 7, 1838,undated + + + + + + 44 + 43 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.317: 194- 195, Sept. 18, 1838,undated + + + + + + 44 + 44 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.317: 239- 241, Nov. 18, 1838,undated + + + + + + 44 + 45 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.317: 721- 723, Jan. 5, 1839,undated + + + + + + 44 + 46 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.320: 667- 668, Mar. 30, 1839,undated + + + + + + 44 + 47 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.318: 39- 84, Aug. 25, 1839,undated + + + + + + 44 + 48 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 2, folder 3, Sept. 3, 1839,undated + + + + + + 44 + 49 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.317: 397- 399, Oct. 4, 1839,undated + + + + + + 44 + 50 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.317: 516- 526, Oct. 31, 1839,undated + + + + + + 44 + 51 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.317: 753- 772, Nov. 12, 1839,undated + + + + + + 44 + 52 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 2, Folder 3, Feb. 25, 1840,undated + + + + + + 44 + 53 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.318: 4- 5, July 14, 1840,undated + + + + + + 44 + 54 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.318: 240- 265, Oct. 31, 1840,undated + + + + + + 44 + 55 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.315: 265- 285, Jan. 31, 1841,undated + + + + + + 44 + 56 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.30: 76- 77, Feb. 5, 1841,undated + + + + + + 44 + 57 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.30: 78- 79, Feb. 5, 1841,undated + + + + + + 44 + 58 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M668 R.8, Feb. 6, 1841,undated + + + + + + 44 + 59 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.318: 504- 521, March 2, 1841,undated + + + + + + 44 + 60 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 2, folder 4, April 30, 1841,undated + + + + + + 44 + 61 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box, Folder 4, May 17, 1841 to June 3, 1841,undated + + + + + + 44 + 62 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box, folder 4, June 25, 1841, Written in French, 1841,undated + + + + + + 44 + 63 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.318: 472- 482, July 26, 1841,undated + + + + + + 44 + 64 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.318: 542, Sept. 30, 1841, 2nd copy, 1841,undated + + + + + + 44 + 65 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 2, folder 4, Oct. 2, 1841,undated + + + + + + 44 + 66 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 2, folder 5, 1842,undated + + + + + + 44 + 67 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 2, Folder 6, 1842,undated + + + + + + 44 + 68 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.318: 681- 685, Jan. 7, 1842, 2nd Copy, 1842,undated + + + + + + 44 + 69 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.320: 154- 156, Feb. 23, 1842,undated + + + + + + 44 + 70 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.32: 89, April 7, 1842,undated + + + + + + 44 + 71 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.318: 701- 702, April 7, 1842,undated + + + + + + 44 + 72 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.318: 727- 729, May 24, 1842,undated + + + + + + 44 + 73 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 2, folder 5, June 12, 1842,undated + + + + + + 44 + 74 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 2, folder 5, June 21, 1842,undated + + + + + + 44 + 75 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 2, folder 5, June 29, 1842,undated + + + + + + 44 + 76 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 2, folder 6, Sept. 1842 (Folder 1 of 2),undated + + + + + + 44 + 77 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 2, folder 6, Sept. 1842 (Folder 2 of 2),undated + + + + + + 44 + 78 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 2, folder 6, Sept. 24, 1842,undated + + + + + + 44 + 79 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.318: 750- 769, Oct. 20, 1842,undated + + + + + + 44 + 80 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 2, Folder 6, Oct. 30, 1842,undated + + + + + + 44 + 81 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 2, folder 6, Nov. 30, 1842,undated + + + + + + 44 + 82 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 2, Folder 6, Dec. 25, 1842,undated + + + + + + 44 + 83 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.318: 902, Jan. 19, 1843,undated + + + + + + 44 + 84 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 1, Jan. 19, 1843,undated + + + + + + 44 + 85 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.318: 779- 780, Jan. 23, 1843,undated + + + + + + 44 + 86 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 1, Feb. 6, 1843,undated + + + + + + 44 + 87 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.318: 900- 902, Feb. 7, 1843,undated + + + + + + 44 + 88 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 1, Feb. 10, 1843,undated + + + + + + 44 + 89 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.318: 905- 906, Mar. 25, 1843,undated + + + + + + 44 + 90 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 1, May 16, 1843,undated + + + + + + 44 + 91 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 2, July 10, 1843,undated + + + + + + 44 + 92 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 2, Aug. 2, 1843,undated + + + + + + 44 + 93 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 2, Aug. 21, 1843,undated + + + + + + 44 + 94 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 2, Sept. 19, 1843,undated + + + + + + 44 + 95 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 Sept. 19, 1843,undated + + + + + + 44 + 96 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.949, Sept. 23, 1843,undated + + + + + + 44 + 97 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.318: 961- 965, Sept. 23, 1843,undated + + + + + + 44 + 98 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, Folder 2, Sept. 23, 1843,undated + + + + + + 44 + 99 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 2, Sept. 27, 1843,undated + + + + + + 44 + 100 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.318: 832- 835, Sept. 29, 1843,undated + + + + + + 44 + 101 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, Folder 3, Oct. 7, 1843 (Folder 1 of 3),undated + + + + + + 44 + 102 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, Folder 3, Oct. 7, 1843 (Folder 2 of 3),undated + + + + + + 44 + 103 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, Folder 3, Oct. 7, 1843 (Folder 3 of 3),undated + + + + + + 44 + 104 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, Folder 3, Oct. 9, 1843,undated + + + + + + 44 + 105 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 3, Oct. 17, 1843, Sutherland, 1843,undated + + + + + + 44 + 106 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 3, Sec. / War, Oct. 17, 1843,undated + + + + + + 44 + 107 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, Folder 3, Oct. 17, 1843, Doty, 1843,undated + + + + + + 44 + 108 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.318: 987- 989, Oct. 17, 1843,undated + + + + + + 44 + 109 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 3, Oct. 23, 1843,undated + + + + + + 44 + 110 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 3, Nov. 9, 1843,undated + + + + + + 44 + 111 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 3, Nov. 11, 1843,undated + + + + + + 44 + 112 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 3, Nov. 13, 1843,undated + + + + + + 44 + 113 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 3, Nov. 16, 1843,undated + + + + + + 44 + 114 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 3, Nov. 17, 1843,undated + + + + + + 44 + 115 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 3, Nov. 24, 1843,undated + + + + + + 44 + 116 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.318: 843- 848, Nov. 27, 1843,undated + + + + + + 44 + 117 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.318: 991- 996, Nov. 30, 1843,undated + + + + + + 44 + 118 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 3, Dec. 8, 1843 (Folder 1 of 2),undated + + + + + + 44 + 119 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 3, Dec. 8, 1843 (Folder 2 of 2),undated + + + + + + 44 + 120 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 3, Dec. 9, 1843,undated + + + + + + 44 + 121 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 3, Dec. 14, 1843,undated + + + + + + 44 + 122 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 3, Dec. 28, 1843,undated + + + + + + 44 + 123 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.319: 180- 183, Feb. 24, 1844,undated + + + + + + 44 + 124 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.319: 168- 170, Feb. 16, 1844,undated + + + + + + 44 + 125 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.319: 177- 179, Feb. 27, 1844,undated + + + + + + 44 + 126 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.319: 173- 175, Mar. 28, 1844,undated + + + + + + 44 + 127 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 4, April 16, 1844,undated + + + + + + 44 + 128 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.319: 176, Feb. 28, 1844,undated + + + + + + 44 + 129 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 4, April 17, 1844,undated + + + + + + 44 + 130 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 3, F. 4, June 15, 1844,undated + + + + + + 44 + 131 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.321: 126- 127, June 20, 1844,undated + + + + + + 44 + 132 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.319: 226- 227, Oct. 11, 1844,undated + + + + + + 44 + 133 + Box 2 Menominee, Calendar documents, 1837-1848: NAM 234 R.319: 224- 225, Oct. 11, 1844,undated + + + + + + 44 + 134 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.319: 228- 229, Oct. 28, 1844,undated + + + + + + 44 + 135 + Box 2 Menominee, Calendar documents, 1837-1848: NAM 234 R.319: 222- 223, Nov. 25, 1844,undated + + + + + + 44 + 136 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.36, Dec. 20, 1844, 2 copies in this file, 1844,undated + + + + + + 44 + 137 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.319: 243- 247, April 17, 1845,undated + + + + + + 44 + 138 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.319: 370- 374, July 7, 1845,undated + + + + + + 44 + 139 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.319: 383- 390, Sept. 3, 1845,undated + + + + + + 44 + 140 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.319: 345- 348, Sept. 24, 1845,undated + + + + + + 44 + 141 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.319: 413- 423, Dec. 3, 1845,undated + + + + + + 44 + 142 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.319: 526- 530, Dec. 3, 1845,undated + + + + + + 44 + 143 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.319: 777- 788, Dec. 13, 1845,undated + + + + + + 44 + 144 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.320: 7- 10, Jan. 27, 1846,undated + + + + + + 44 + 145 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.949, Mar. 12, 1846,undated + + + + + + 44 + 146 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.319: 640- 645, March 28, 1846,undated + + + + + + 44 + 147 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.319: 640- 645, Apr 15, 1846,undated + + + + + + 44 + 148 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R319: 640- 645. Apr 16, 1846,undated + + + + + + 44 + 149 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R319: 640- 645. May 1, 1846,undated + + + + + + 44 + 150 + Box 2 Menominee, Calendar documents, 1837-1848: FILE 1846, July 30: WHS, July 30, 1846,undated + + + + + + 44 + 151 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.319: 688- 689, Aug. 10, 1846,undated + + + + + + 44 + 152 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.319: 690- 691, Aug. 26, 1846,undated + + + + + + 44 + 153 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M243 R.319: 686- 687, Aug. 26, 1846,undated + + + + + + 44 + 154 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.319: 695- 696, Sept. 10, 1846,undated + + + + + + 44 + 155 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.319: 684- 685, Sept. 17, 1846,undated + + + + + + 44 + 156 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.319: 692- 694, Sept. 26, 1846,undated + + + + + + 44 + 157 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.320: 217- 220, Oct. 25, 1846,undated + + + + + + 44 + 158 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.949, Nov. 23, 1846,undated + + + + + + 44 + 159 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R39: 90, Dec. 31, 1846,undated + + + + + + 44 + 160 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.949, 1847,undated + + + + + + 44 + 161 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.319: 744- 746, 1847,undated + + + + + + 44 + 162 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.319: 742- 743, Jan. 8, 1847,undated + + + + + + 44 + 163 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 4, F. 4, Jan. 28, 1847,undated + + + + + + 44 + 164 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.39: 189, Feb. 15, 1847,undated + + + + + + 44 + 165 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 4, folder 4, Mar. 20, 1847,undated + + + + + + 44 + 166 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.320: 4- 6, Sept. 2, 1847,undated + + + + + + 44 + 167 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.40: 80, Sept. 20, 1847,undated + + + + + + 44 + 168 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.319: 740- 741, Oct. 4, 1847,undated + + + + + + 44 + 169 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.40, Oct. 18, 1847,undated + + + + + + 44 + 170 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.40, Oct. 21, 1847,undated + + + + + + 44 + 171 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.949, Nov. 9, 1847,undated + + + + + + 44 + 172 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.320: 539, 1848,undated + + + + + + 44 + 173 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.320: 157- 159, March 30, 1848,undated + + + + + + 44 + 174 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.40, April 4, 1848,undated + + + + + + 44 + 175 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 4, F. 4, June 1, 1848,undated + + + + + + 44 + 176 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.320: 30- 34, June 2, 1848,undated + + + + + + 44 + 177 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.320: 27- 29, June 3, 1848,undated + + + + + + 44 + 178 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.320: 25, July 11, 1848,undated + + + + + + 44 + 179 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.320: 35- 37, July 20, 1848,undated + + + + + + 44 + 180 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.320: 54- 61, Aug. 10, 1848,undated + + + + + + 44 + 181 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.320: 88- 90, Sept. 6, 1848,undated + + + + + + 44 + 182 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M21 R.41, Sept. 9, 1848undated + + + + + + 44 + 183 + Box 2 Menominee, Calendar documents, 1837-1848: GWL- CHS Box 4, F. 4, Sept. 24, 1848,undated + + + + + + 44 + 184 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M668 R.10: 2- 14, Oct. 18, 1848,undated + + + + + + 44 + 185 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.320: 705- 710, Oct. 18, 1848,undated + + + + + + 44 + 186 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.320: 82- 84, Nov. 11, 1848,undated + + + + + + 44 + 187 + Box 2 Menominee, Calendar documents, 1837-1848: NAM M234 R.320: 967- 971, Dec. 12, 1848,undated + + + + + + 45 + 1 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 618- 620, 1849,undated + + + + + + 45 + 2 + Box 3 Menominee, Calendar documents, 1849-1851: HSB- WHS WIS MSS V Box 3, 1849? , 1849,undated + + + + + + 45 + 3 + Box 3 Menominee, Calendar documents, 1849-1851: GWL- CHS Box 4, F. 4, Jan. 6, 1849,undated + + + + + + 45 + 4 + Box 3 Menominee, Calendar documents, 1849-1851: GWL- CHS Box 4, F. 4, Jan. 18, 1849,undated + + + + + + 45 + 5 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 988- 989, Jan. 23, 1849,undated + + + + + + 45 + 6 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M21 R.41, Feb. 16, 1849,undated + + + + + + 45 + 7 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 442- 446, Feb. 24, 1849,undated + + + + + + 45 + 8 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 447, Feb. 24, 1849,undated + + + + + + 45 + 9 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 440- 441, March 3, 1849,undated + + + + + + 45 + 10 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 434- 437, March 9, 1849,undated + + + + + + 45 + 11 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 438- 439, March 19, 1849,undated + + + + + + 45 + 12 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 197- 198, May 3, 1849,undated + + + + + + 45 + 13 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 199- 201, May 16, 1849,undated + + + + + + 45 + 14 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 202- 204, 5-17-1849,undated + + + + + + 45 + 15 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 267- 268, May 17, 1849,undated + + + + + + 45 + 16 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 205- 207, May 18, 1849,undated + + + + + + 45 + 17 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 292- 294, May 24, 1849,undated + + + + + + 45 + 18 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 167- 168, May 24, 1849,undated + + + + + + 45 + 19 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 305- 306, May 26, 1849,undated + + + + + + 45 + 20 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 318- 319, May 29, 1849,undated + + + + + + 45 + 21 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 318- 319, May 29, 1849,undated + + + + + + 45 + 22 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 1001- 1003, May 29, 1849,undated + + + + + + 45 + 23 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 676- 684, May 29, 18493,undated + + + + + + 45 + 24 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 693- 695, May 29, 1849,undated + + + + + + 45 + 25 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 1006- 1007, May 29, 1849,undated + + + + + + 45 + 26 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 1004- 1005, May 30, 1849,undated + + + + + + 45 + 27 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 307, June 5, 1849,undated + + + + + + 45 + 28 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 173- 174, June 9, 1849,undated + + + + + + 45 + 29 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R320: 320, June 9, 1849,undated + + + + + + 45 + 30 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 128- 163, June 11, 1849,undated + + + + + + 45 + 31 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 164- 166, June 11, 1849,undated + + + + + + 45 + 32 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 171- 172, June 11, 1849,undated + + + + + + 45 + 33 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 308, June 11, 1849,undated + + + + + + 45 + 34 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 309, June 11, 1849,undated + + + + + + 45 + 35 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 310- 313, June 11, 1849,undated + + + + + + 45 + 36 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 314- 315, June 11, 1849,undated + + + + + + 45 + 37 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 316- 317, June 12, 1849,undated + + + + + + 45 + 38 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 208- 209, July 5, 1849,undated + + + + + + 45 + 39 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 243- 245, July 7, 1849,undated + + + + + + 45 + 40 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 246- 248, July 16, 1849,undated + + + + + + 45 + 41 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 295- 304, July 25, 1849,undated + + + + + + 45 + 42 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 256, July 25, 1849,undated + + + + + + 45 + 43 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 179- 180, July 28, 1849,undated + + + + + + 45 + 44 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 175, July 28, 1849,undated + + + + + + 45 + 45 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 114- 115, July 28, 1849,undated + + + + + + 45 + 46 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 116- 117, July 28, 1849,undated + + + + + + 45 + 47 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R320: 257, July 28, 1849,undated + + + + + + 45 + 48 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 258, July 28, 1849,undated + + + + + + 45 + 49 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 289- 291, Aug. 1, 1849,undated + + + + + + 45 + 50 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 169- 170, Aug. 4, 1849,undated + + + + + + 45 + 51 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 177- 178, Aug. 4, 1849,undated + + + + + + 45 + 52 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 252- 254, Aug. 6, 1849,undated + + + + + + 45 + 53 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 255, Aug. 6, 1849,undated + + + + + + 45 + 54 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 264- 266, Aug. 6, 1849,undated + + + + + + 45 + 55 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 285- 286, Aug. 7, 1849,undated + + + + + + 45 + 56 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 287- 288, Aug. 8, 1849,undated + + + + + + 45 + 57 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 321- 323, Aug. 13, 1849,undated + + + + + + 45 + 58 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 184- 187, Aug. 27, 1849,undated + + + + + + 45 + 59 + Box 3 Menominee, Calendar documents, 1849-1851: HSB- WHS WIS MSS V Box 2, Aug. 28, 1849,undated + + + + + + 45 + 60 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 534- 535, Aug. 28, 1849,undated + + + + + + 45 + 61 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 176, Aug. 28, 1849,undated + + + + + + 45 + 62 + Box 3 Menominee, Calendar documents, 1849-1851: HSB- WHS WIS MSS V Box 2, Aug. 28, 1849,undated + + + + + + 45 + 63 + Box 3 Menominee, Calendar documents, 1849-1851: HSB- WHS WIS MSS V Box 2, Aug. 30, 1849,undated + + + + + + 45 + 64 + Box 3 Menominee, Calendar documents, 1849-1851: HSB- WHS WIS MSS V Box 2, Sept. 5, 1849,undated + + + + + + 45 + 65 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 340- 341, Sept. 17, 1849,undated + + + + + + 45 + 66 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 343- 344, Sept. 24, 1849,undated + + + + + + 45 + 67 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 715, Oct. 6, 1849,undated + + + + + + 45 + 68 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R320: 990, Oct. 9, 1849,undated + + + + + + 45 + 69 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 713- 719, Oct. 9, 1849,undated + + + + + + 45 + 70 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 361- 363, Oct. 9, 1849,undated + + + + + + 45 + 71 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 993- 994, Oct. 9, 1849,undated + + + + + + 45 + 72 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 991- 992, Oct. 9, 1849,undated + + + + + + 45 + 73 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R320: 696- 699, Oct. 9, 1849,undated + + + + + + 45 + 74 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R320: 995- 996, Oct. 10, 1849,undated + + + + + + 45 + 75 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 999- 1000, Oct. 13, 1849,undated + + + + + + 45 + 76 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 997- 998, Oct. 15, 1849,undated + + + + + + 45 + 77 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 349- 351, Oct. 24, 1849,undated + + + + + + 45 + 78 + Box 3 Menominee, Calendar documents, 1849-1851: HSB- WHS WIS MSS V, Box 2, Nov. 10, 1849,undated + + + + + + 45 + 79 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 100- 107, Nov. 15, 1849,undated + + + + + + 45 + 80 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 717, Nov. 22, 1849,undated + + + + + + 45 + 81 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 367- 368, Nov. 28, 1849,undated + + + + + + 45 + 82 + Box 3 Menominee, Calendar documents, 1849-1851: HSB- WHS WIS MSS V, Box 2, Dec. 4, 1849,undated + + + + + + 45 + 83 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 716, Dec. 20, 1849,undated + + + + + + 45 + 84 + Box 3 Menominee, Calendar documents, 1849-1851: HSB- WHS WIS MSS V, Box 2, Dec. 29, 1849,undated + + + + + + 45 + 85 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 86- 88, Jan. 22, 1850,undated + + + + + + 45 + 86 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R321: 89- 91, Jan. 22, 1850,undated + + + + + + 45 + 87 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 92- 95, Jan. 22, 1850,undated + + + + + + 45 + 88 + Box 3 Menominee, Calendar documents, 1849-1851: HSB- WHS Box 2, Jan. 22, 1850,undated + + + + + + 45 + 89 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 700- 701, Jan. 23, 1850,undated + + + + + + 45 + 90 + Box 3 Menominee, Calendar documents, 1849-1851: HSB- WHS Box 2, Jan. 25, 1850,undated + + + + + + 45 + 91 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 703, Jan. 25, 1850,undated + + + + + + 45 + 92 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 573- 588, Jan. 30, 1850,undated + + + + + + 45 + 93 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 611- 612, Feb. 6, 1850,undated + + + + + + 45 + 94 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 607- 609, Feb. 9, 1850,undated + + + + + + 45 + 95 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 605- 606, Feb. 11, 1850,undated + + + + + + 45 + 96 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 610, Feb. 11, 1850,undated + + + + + + 45 + 97 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 621- 623, Feb. 11, 1850,undated + + + + + + 45 + 98 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 108- 113, Feb. 11, 1850,undated + + + + + + 45 + 99 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 597- 602, Feb. 11, 1850,undated + + + + + + 45 + 100 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 603- 604, Feb. 11, 1850,undated + + + + + + 45 + 101 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 858- 860, Feb. 13, 1850,undated + + + + + + 45 + 102 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 118- 122, Feb. 18, 1850,undated + + + + + + 45 + 103 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 669- 670, Feb. 18, 1850,undated + + + + + + 45 + 104 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 643- 645, Feb. 18, 1850,undated + + + + + + 45 + 105 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 653- 654, March 6, 1850,undated + + + + + + 45 + 106 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 861- 864, March 13, 1850,undated + + + + + + 45 + 107 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 865- 867, March 13, 1850,undated + + + + + + 45 + 108 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 868- 869, Mar. 13, 1850,undated + + + + + + 45 + 109 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 123- 125, March 22, 1850,undated + + + + + + 45 + 110 + Box 3 Menominee, Calendar documents, 1849-1851: HSB- WHS Box 2, March 22, 1850,undated + + + + + + 45 + 111 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 96- 99, March 30, 1850,undated + + + + + + 45 + 112 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 691- 692, April 3, 1850,undated + + + + + + 45 + 113 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 722- 723, April 9, 1850,undated + + + + + + 45 + 114 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 880- 881, April 14, 1850,undated + + + + + + 45 + 115 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 663- 666, April 17, 1850,undated + + + + + + 45 + 116 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 719- 721, April 29, 1850,undated + + + + + + 45 + 117 + Box 3 Menominee, Calendar documents, 1849-1851: GWL- CHS Box 4, F. 6, May 13, 1850 (Folder 1 of 2),undated + + + + + + 45 + 118 + Box 3 Menominee, Calendar documents, 1849-1851: GWL- CHS Box 4, F. 6, May 13, 1850 (Folder 2 of 2),undated + + + + + + 45 + 119 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 1013- 1014, May 13, 1850,undated + + + + + + 45 + 120 + Box 3 Menominee, Calendar documents, 1849-1851: GWL- CHS Box 4, F. 6, May 23, 1850,undated + + + + + + 45 + 121 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 746, May 23, 1850,undated + + + + + + 45 + 122 + Box 3 Menominee, Calendar documents, 1849-1851: GWL- CHS Box 4, F. 6, May 24, 1850,undated + + + + + + 45 + 123 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 745, May 27, 1850,undated + + + + + + 45 + 124 + Box 3 Menominee, Calendar documents, 1849-1851: GWL- CHS Box 4, F. 6, May 27, 1850 (Folder 1 of 2),undated + + + + + + 45 + 125 + Box 3 Menominee, Calendar documents, 1849-1851: GWL- CHS Box 4, F. 6, May 27, 1850 (Folder 2 of 2),undated + + + + + + 45 + 126 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 744, May 27, 1850,undated + + + + + + 45 + 127 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 741- 743, May 27, 1850,undated + + + + + + 45 + 128 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 1010- 1012, May 27, 1850,undated + + + + + + 45 + 129 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 685- 686, May 29, 1850,undated + + + + + + 45 + 130 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 747- 748, May 29, 1850,undated + + + + + + 45 + 131 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 687, May 31, 1850,undated + + + + + + 45 + 132 + Box 3 Menominee, Calendar documents, 1849-1851: NAM 234 R.320: 688, June 1, 1850,undated + + + + + + 45 + 133 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 689- 690, June 1, 1850,undated + + + + + + 45 + 134 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 779- 780, June 6, 1850,undated + + + + + + 45 + 135 + Box 3 Menominee, Calendar documents, 1849-1851: GWL- CHS Box 4 F. 6, June 10, 1850,undated + + + + + + 45 + 136 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 749- 750, June 10, 1850,undated + + + + + + 45 + 137 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 751- 752, June 22, 1850,undated + + + + + + 45 + 138 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 1015- 1016, July 2, 1850,undated + + + + + + 45 + 139 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 753- 755, July 27, 1850,undated + + + + + + 45 + 140 + Box 3 Menominee, Calendar documents, 1849-1851: HSB- WHS Box 2, Aug. 1, 1850,undated + + + + + + 45 + 141 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R320: 770- 772, Aug. 1, 1850,undated + + + + + + 45 + 142 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R320: 773- 777, Aug. 5, 1850,undated + + + + + + 45 + 143 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 784- 799, Aug. 5, 1850,undated + + + + + + 45 + 144 + Box 3 Menominee, Calendar documents, 1849-1851: GWL- CHS Box 4, F. 6, Aug. 16, 1850,undated + + + + + + 45 + 145 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 756- 769, Aug. 19, 1850,undated + + + + + + 45 + 146 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 646- 652, Sept. 4, 1850,undated + + + + + + 45 + 147 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 975- 981, Sept. 4, 1850,undated + + + + + + 45 + 148 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 1021- 1025, Sept. 9, 1850,undated + + + + + + 45 + 149 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R321: 181- 182, Sept. 10, 1850,undated + + + + + + 45 + 150 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 812- 814, Sept. 12, 1850,undated + + + + + + 45 + 151 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 818- 821, Sept. 13, 1850,undated + + + + + + 45 + 152 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 914- 916, Sept. 13, 1850,undated + + + + + + 45 + 153 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 815, Sept. 14, 1850,undated + + + + + + 45 + 154 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 816- 817, Sept. 14, 1850,undated + + + + + + 45 + 155 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 902- 904, Sept. 19, 1850,undated + + + + + + 45 + 156 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 822- 824, Oct. 1, 1850,undated + + + + + + 45 + 157 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 972- 973, Oct. 1, 1850,undated + + + + + + 45 + 158 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 936- 966, Oct. 11, 1850,undated + + + + + + 45 + 159 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 1019- 1020, Oct. 17, 1850,undated + + + + + + 45 + 160 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 1017- 1018, Nov. 9, 1850,undated + + + + + + 45 + 161 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.320: 982- 987, Nov. 11, 1850,undated + + + + + + 45 + 162 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 19- 21, Dec. 28, 1850,undated + + + + + + 45 + 163 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 24- 25, Dec. 30, 1850,undated + + + + + + 45 + 164 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 26- 27, Dec. 30, 1850,undated + + + + + + 45 + 165 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 76- 80, 1851,undated + + + + + + 45 + 166 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 81- 85, 1851,undated + + + + + + 45 + 167 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 16- 18, Jan. 1, 1851,undated + + + + + + 45 + 168 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 277- 279, Jan. 8, 1851,undated + + + + + + 45 + 169 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 337- 339, Jan. 20, 1851,undated + + + + + + 45 + 170 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 30, Jan. 31, 1851,undated + + + + + + 45 + 171 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 28- 29, Feb. 6, 1851,undated + + + + + + 45 + 172 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 340- 346, March 1, 1851,undated + + + + + + 45 + 173 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 333- 336, March 10, 1851,undated + + + + + + 45 + 174 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 189- 191, March 22, 1851,undated + + + + + + 45 + 175 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 634- 635, March 23, 1851,undated + + + + + + 45 + 177 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 636, March 24, 1851,undated + + + + + + 45 + 178 + Box 3 Menominee, Calendar documents, 1849-1851: GWL- CHS Box 4 F. 7, Mar. 29, 1851,undated + + + + + + 45 + 179 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 530- 531, March 31, 1851,undated + + + + + + 45 + 180 + Box 3 Menominee, Calendar documents, 1849-1851: GWL- CHS Box 4, F. 7, April 21, 1851,undated + + + + + + 45 + 181 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 450- 452, April 24, 1851,undated + + + + + + 45 + 182 + Box 3 Menominee, Calendar documents, 1849-1851: GWL- CHS Box 4, F. 7, April 25, 1851,undated + + + + + + 45 + 183 + Box 3 Menominee, Calendar documents, 1849-1851: GWL- CHS Box 4, F. 7, May 7, 1851,undated + + + + + + 45 + 184 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 272- 274, May 10, 1851,undated + + + + + + 45 + 185 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 267- 268, May 10, 1851,undated + + + + + + 45 + 186 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 268- 271, May 10, 1851,undated + + + + + + 45 + 187 + Box 3 Menominee, Calendar documents, 1849-1851: GWL- CHS Box 4, F. 7, May 17, 1851,undated + + + + + + 45 + 188 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 447- 449, May 24, 1851,undated + + + + + + 45 + 189 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 347- 348, May 28, 1851,undated + + + + + + 45 + 190 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 349, May 28, 1851,undated + + + + + + 45 + 191 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 350- 351, May 28, 1851,undated + + + + + + 45 + 192 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 352- 353, May 28, 1851,undated + + + + + + 45 + 193 + Box 3 Menominee, Calendar documents, 1849-1851: GWL- CHS Box 4, F. 8, June 13, 1851,undated + + + + + + 45 + 194 + Box 3 Menominee, Calendar documents, 1849-1851: GWL- CHS Box 4, F. 8, July 8, 1851,undated + + + + + + 45 + 195 + Box 3 Menominee, Calendar documents, 1849-1851: GWL- CHS Box 4, F. 8, Aug. 25, 1851,undated + + + + + + 45 + 196 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 412, Sept. 10, 1851,undated + + + + + + 45 + 197 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 402- 403, Sept. 13, 1851,undated + + + + + + 45 + 198 + Box 3 Menominee, Calendar documents, 1849-1851: GWL- CHS Box 4, F. 8, Sept. 29, 1851,undated + + + + + + 45 + 199 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 381- 383, Sept. 30, 1851,undated + + + + + + 45 + 200 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 409- 411, Oct. 1, 1851,undated + + + + + + 45 + 201 + Box 3 Menominee, Calendar documents, 1849-1851: GWL- CHS Box 5/ Folder 1, Oct. 1, 1851,undated + + + + + + 45 + 202 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R321: 404- 406, Oct. 2, 1851,undated + + + + + + 45 + 203 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 36- 75, Oct. 8, 1851,undated + + + + + + 45 + 204 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 631- 632, Oct. 27, 1851,undated + + + + + + 45 + 205 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 633, Oct. 27, 1851,undated + + + + + + 45 + 206 + Box 3 Menominee, Calendar documents, 1849-1851: GWL- CHS, Oct. 28, 1851,undated + + + + + + 45 + 207 + Box 3 Menominee, Calendar documents, 1849-1851: NAM M234 R.321: 407- 408, Nov. 8, 1851,undated + + + + + + 46 + 1 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 628- 630, April 1, 1852,undated + + + + + + 46 + 2 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 532- 533, April 10, 1852,undated + + + + + + 46 + 3 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 526- 528, April 11, 1852,undated + + + + + + 46 + 4 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 529, April 11, 1852,undated + + + + + + 46 + 5 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 637- 639, April 14, 1852,undated + + + + + + 46 + 6 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 534- 536, April 24, 1852,undated + + + + + + 46 + 7 + Box 4 Menominee, Calendar documents, 1852-1862: HSB- WHS Box 2, April 30, 1852,undated + + + + + + 46 + 8 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 547- 549, May 15, 1852,undated + + + + + + 46 + 9 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 640- 641, May 15, 1852,undated + + + + + + 46 + 10 + Box 4 Menominee, Calendar documents, 1852-1862: GWL- CHS Box 5/ Folder 2, May 19, 1852,undated + + + + + + 46 + 11 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 552- 553, May 28, 1852,undated + + + + + + 46 + 12 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 642- 643, May 28, 1852,undated + + + + + + 46 + 13 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 610- 611, June 1, 1852,undated + + + + + + 46 + 14 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 550- 551, June 2, 1852,undated + + + + + + 46 + 15 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 554- 556, June 2, 1852,undated + + + + + + 46 + 16 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 608- 609, June 2, 1852,undated + + + + + + 46 + 17 + Box 4 Menominee, Calendar documents, 1852-1862: GWL- CHS Box 5/ Folder 2, June 3, 1852,undated + + + + + + 46 + 18 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 559- 560, June 4, 1852,undated + + + + + + 46 + 19 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 557- 558, June 5, 1852,undated + + + + + + 46 + 20 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 565- 566, June 9, 1852,undated + + + + + + 46 + 21 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 561- 562, June 13, 1852,undated + + + + + + 46 + 22 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 644- 654, June 15, 1852,undated + + + + + + 46 + 23 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 563- 564, June 18, 1852,undated + + + + + + 46 + 24 + Box 4 Menominee, Calendar documents, 1852-1862: MIP- WHS WIS MSS Bu, Box 1, June 19, 1852,undated + + + + + + 46 + 25 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 496- 497, July 26, 1852,undated + + + + + + 46 + 26 + Box 4 Menominee, Calendar documents, 1852-1862: GWL- CHS Box 5/ Folder 3, Sept. 30, 1852,undated + + + + + + 46 + 27 + Box 4 Menominee, Calendar documents, 1852-1862: GWL- CHS Box 5/ Folder 3, Oct. 3, 1852,undated + + + + + + 46 + 28 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 575- 577, Oct. 4, 1852,undated + + + + + + 46 + 29 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 578- 580, Nov. 2, 1852,undated + + + + + + 46 + 30 + Box 4 Menominee, Calendar documents, 1852-1862: HSB- WHS Box 2, Nov. 20, 1852,undated + + + + + + 46 + 31 + Box 4 Menominee, Calendar documents, 1852-1862: GWL- CHS Box 5/ Folder 3, Nov. 12, 1852,undated + + + + + + 46 + 32 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 504- 505, Nov. 28, 1852,undated + + + + + + 46 + 33 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 594- 596, Dec. 3, 1852,undated + + + + + + 46 + 34 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 502- 503, Dec. 9, 1852,undated + + + + + + 46 + 35 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 602- 604, Dec. 15, 1852,undated + + + + + + 46 + 36 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 581- 583, Dec. 27, 1852,undated + + + + + + 46 + 37 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.321: 584- 593, Dec. 27, 1852,undated + + + + + + 46 + 38 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 184- 188, Dec. 31, 1852,undated + + + + + + 46 + 39 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 286- 287, Feb. 1, 1853,undated + + + + + + 46 + 40 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.320: 613- 615, Feb. 8, 1853,undated + + + + + + 46 + 41 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 189- 190, Feb. 9, 1853,undated + + + + + + 46 + 42 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 168- 169, Feb. 25, 1853,undated + + + + + + 46 + 43 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 170- 172, Feb. 25, 1853,undated + + + + + + 46 + 44 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 205- 211, April 12, 1853,undated + + + + + + 46 + 45 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 4- 5, April 25, 1853,undated + + + + + + 46 + 46 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 177- 179, July 14, 1853,undated + + + + + + 46 + 47 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 180- 183, July 30, 1853,undated + + + + + + 46 + 48 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 339- 347, Dec. 28, 1853,undated + + + + + + 46 + 49 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 363- 365, Dec. 30, 1853,undated + + + + + + 46 + 50 + Box 4 Menominee, Calendar documents, 1852-1862: GWL- CHS Box 5/ Folder 5, Jan. 31, 1854,undated + + + + + + 46 + 51 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 375, Feb. 18, 1854,undated + + + + + + 46 + 52 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 487- 489, Feb. 20, 1854,undated + + + + + + 46 + 53 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 371- 374, March 7, 1854,undated + + + + + + 46 + 54 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 376- 377, March 9, 1854,undated + + + + + + 46 + 55 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 406- 408, May 29, 1854,undated + + + + + + 46 + 56 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 409- 411, May 30, 1854,undated + + + + + + 46 + 57 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 412- 413, June 3, 1854,undated + + + + + + 46 + 58 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 423, June 28, 1854,undated + + + + + + 46 + 59 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 419- 422, July 27, 1854,undated + + + + + + 46 + 60 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M668 R.10: 354- 368, Aug. 8, 1854,undated + + + + + + 46 + 61 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 425- 426, Aug. 25, 1854,undated + + + + + + 46 + 62 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 432- 436, Oct. 27, 1854,undated + + + + + + 46 + 63 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 296- 298, Nov. 10, 1854,undated + + + + + + 46 + 64 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 874- 877, Jan. 8, 1855,undated + + + + + + 46 + 65 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 586- 589, March 23, 1855,undated + + + + + + 46 + 66 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 57- 64, April 21, 1855,undated + + + + + + 46 + 67 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 621- 622, April 25, 1855,undated + + + + + + 46 + 68 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 623- 624, April 25, 1855,undated + + + + + + 46 + 69 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 625- 626, April 25, 1855,undated + + + + + + 46 + 70 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 593- 595, May 16, 1855,undated + + + + + + 46 + 71 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 849- 851, May 26, 1855,undated + + + + + + 46 + 72 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 852- 853, May 26, 1855,undated + + + + + + 46 + 73 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 870- 871, June 11, 1855,undated + + + + + + 46 + 74 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 862- 863, June 15, 1855,undated + + + + + + 46 + 75 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 858- 861, June 15, 1855,undated + + + + + + 46 + 76 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 856- 857, June 18, 1855,undated + + + + + + 46 + 77 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 868- 869, June 23, 1855,undated + + + + + + 46 + 78 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 872- 873, June 23, 1855,undated + + + + + + 46 + 79 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 660- 661, July 5, 1855,undated + + + + + + 46 + 80 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 673- 691, Sept. 17, 1855,undated + + + + + + 46 + 81 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.322: 700- 702, Oct. 23, 1855,undated + + + + + + 46 + 82 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 31- 33, Feb. 6, 1856,undated + + + + + + 46 + 83 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M668 R.12: 60- 72, Feb. 11, 1856,undated + + + + + + 46 + 84 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 36- 38, March 5, 1855,undated + + + + + + 46 + 85 + Box 4 Menominee, Calendar documents, 1852-1862: File 1856, March 10. Davis, Calvin, March 10, 1856,undated + + + + + + 46 + 86 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 144- 151, June 14, 1855,undated + + + + + + 46 + 87 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 161- 168, July 19, 1855,undated + + + + + + 46 + 88 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 74- 76, Aug. 11, 1856,undated + + + + + + 46 + 89 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 79- 83, Aug. 13, 1856,undated + + + + + + 46 + 90 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 91- 93, Sept. 17, 1856,undated + + + + + + 46 + 91 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 89- 90, Sept. 18, 1856,undated + + + + + + 46 + 92 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 132, Nov. 4, 1856,undated + + + + + + 46 + 93 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 133, Nov. 4, 1856,undated + + + + + + 46 + 94 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 116- 117, Nov. 22, 1856,undated + + + + + + 46 + 95 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 129- 132, Nov. 22, 1856,undated + + + + + + 46 + 96 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 317- 319, April 13, 1857,undated + + + + + + 46 + 97 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 322- 324, June 8, 1857,undated + + + + + + 46 + 98 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 233- 235, Nov. 29, 1857,undated + + + + + + 46 + 99 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 661- 664, Dec. 21, 1857,undated + + + + + + 46 + 100 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 547- 548, April 10, 1858,undated + + + + + + 46 + 101 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 549- 551, April 30, 1858,undated + + + + + + 46 + 102 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 561- 563, June 14, 1858,undated + + + + + + 46 + 103 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 590- 593, Aug. 14, 1858,undated + + + + + + 46 + 104 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 598- 600, Sept. 10, 1858,undated + + + + + + 46 + 105 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 612- 614, Sept. 27, 1856,undated + + + + + + 46 + 106 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 625- 628, Oct. 16, 1858,undated + + + + + + 46 + 107 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 615- 617, Rec’d Oct. 18, 1858,undated + + + + + + 46 + 108 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 629- 631, Oct. 20, 1858,undated + + + + + + 46 + 109 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 634- 636, Dec. 1, 1858,undated + + + + + + 46 + 110 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 655- 656, Dec. 24, 1858,undated + + + + + + 46 + 111 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 814- 816, Jan. 21, 1859,undated + + + + + + 46 + 112 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 919- 920, Sept. 25, 1859,undated + + + + + + 46 + 113 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 918- ___, Sept. 26, 1859,undated + + + + + + 46 + 114 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 924- 925, Oct. 17, 1859,undated + + + + + + 46 + 115 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 1007- 1010, Jan. 16, 1860,undated + + + + + + 46 + 116 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 1647, Jan. 17, 1860,undated + + + + + + 46 + 117 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 1648, Jan. 17, 1860,undated + + + + + + 46 + 118 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 1649, Jan. 18, 1860,undated + + + + + + 46 + 119 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 1013- 1016, Jan. 24, 1860,undated + + + + + + 46 + 120 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 1017- 1019, Feb. 7, 1860,undated + + + + + + 46 + 121 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 1639- 1646, March 14, 1860,undated + + + + + + 46 + 122 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 1650, March 14, 1860,undated + + + + + + 46 + 123 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 1195- 1197, March 27, 1860,undated + + + + + + 46 + 124 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 1198- 1200, March 27, 1860,undated + + + + + + 46 + 125 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 1201- 1210, March 28, 1860,undated + + + + + + 46 + 126 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 1220- 1221, April 3, 1860,undated + + + + + + 46 + 127 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 1344- 1349, April 9, 1860,undated + + + + + + 46 + 128 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 1350- 1355, April 9, 1860,undated + + + + + + 46 + 129 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 1491- 1582, April 9, 1860,undated + + + + + + 46 + 130 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 1062- 1075, Aug. 2, 1860,undated + + + + + + 46 + 131 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 1076- 1078, Aug. 2, 1860,undated + + + + + + 46 + 132 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 1089- 1092, Aug. 7, 1860,undated + + + + + + 46 + 133 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 1106- 1109, Sept. 12, 1860,undated + + + + + + 46 + 134 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 1098- 1105, Sept. 12, 1860,undated + + + + + + 46 + 135 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.323: 1181- 1183, Nov. 28, 1860,undated + + + + + + 46 + 136 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.324: 0021- 0024, March 31, 1861,undated + + + + + + 46 + 137 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.324: 0037- 0038, April 5, 1861,undated + + + + + + 46 + 138 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.324: 0059- 0060, June 19, 1861,undated + + + + + + 46 + 139 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.324: 168- 170, July 5, 1861,undated + + + + + + 46 + 140 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.324: 143- 148, July 13, 1861,undated + + + + + + 46 + 141 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.324: 149- 151, July 13, 1861,undated + + + + + + 46 + 142 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.324: 152- 153, July 15, 1861,undated + + + + + + 46 + 143 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.324: 171- 173, July 15, 1861,undated + + + + + + 46 + 144 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.324: 0056- 0058, July 15, 1861,undated + + + + + + 46 + 145 + Box 4 Menominee, Calendar documents, 1852-1862: WGIAC- WHS, Box 1, 1862,undated + + + + + + 46 + 146 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.324: 368- 369, Jan. 9, 1862,undated + + + + + + 46 + 147 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.324: 370- 371, Jan. 15, 1862,undated + + + + + + 46 + 148 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.324: 175, Nov. 10, 1862,undated + + + + + + 46 + 149 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.324: 355- 357, Nov. 18, 1862,undated + + + + + + 46 + 150 + Box 4 Menominee, Calendar documents, 1852-1862: NAM M234 R.324: 360- 364, Dec. 13, 1862,undated + + + + + + 47 + 1 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.324: 431- 433, Jan. 14, 1863,undated + + + + + + 47 + 2 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.324: 547- 549, Aug. 15, 1863,undated + + + + + + 47 + 3 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.324: 564- 566, Sept. 9, 1863,undated + + + + + + 47 + 4 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 821- 850, Feb. 20, 1864,undated + + + + + + 47 + 5 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.324: 797- 798, Aug. 18, 1864,undated + + + + + + 47 + 6 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.324: 793- 796, Aug. 20, 1864,undated + + + + + + 47 + 7 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.324: 799- 801, Sept. 12, 1864,undated + + + + + + 47 + 8 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 199- 208, April 5, 1865,undated + + + + + + 47 + 9 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 196- 198, April 20, 1865,undated + + + + + + 47 + 10 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 37- 38, May 15, 1865,undated + + + + + + 47 + 11 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 44- 45, May 17, 1865,undated + + + + + + 47 + 12 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 212- 218, June 5, 1865,undated + + + + + + 47 + 13 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 56- 60, June 10, 1865,undated + + + + + + 47 + 14 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 68- 84, June 19, 1865,undated + + + + + + 47 + 15 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 209- 211, June 26, 1865,undated + + + + + + 47 + 16 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 548- 550, June 27, 1865,undated + + + + + + 47 + 17 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 133- 135, Oct. 3, 1865,undated + + + + + + 47 + 18 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 140- 142, Oct. 14, 1865,undated + + + + + + 47 + 19 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 143- 144, Oct. 19, 1865,undated + + + + + + 47 + 20 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 608- 609, Jan. 1, 1866,undated + + + + + + 47 + 21 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 854- 860, Jan. 9, 1866,undated + + + + + + 47 + 22 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 786- 820, Jan. 30, 1866,undated + + + + + + 47 + 23 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 322- 324, Jan. 31, 1866,undated + + + + + + 47 + 24 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 551- 553, April 5, 1866,undated + + + + + + 47 + 25 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 545- 547, April 9, 1866,undated + + + + + + 47 + 26 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 554, April 9, 1866,undated + + + + + + 47 + 27 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 595- 597, April 18, 1866,undated + + + + + + 47 + 28 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 555- 559, April 30, 1866,undated + + + + + + 47 + 29 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 560- 571, April 30, 1866,undated + + + + + + 47 + 30 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 403- 405, May 31, 1866,undated + + + + + + 47 + 31 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 602- 603, June 15, 1866,undated + + + + + + 47 + 32 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 600- 601, June 21, 1866,undated + + + + + + 47 + 33 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 604, June 25, 1866,undated + + + + + + 47 + 34 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 632- 634, July 16, 1866,undated + + + + + + 47 + 35 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 637- 639, July 23, 1866,undated + + + + + + 47 + 36 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 655- 660, July 28, 1866,undated + + + + + + 47 + 37 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 675- 678, Aug. 17, 1866,undated + + + + + + 47 + 38 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 742- 744, Nov. 15, 1866,undated + + + + + + 47 + 39 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 745- 747, Sept. 14, 1866,undated + + + + + + 47 + 40 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.325: 1003- 1019, Sept. 27, 1867,undated + + + + + + 47 + 41 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.326: 351- 357, Oct. 29, 1867,undated + + + + + + 47 + 42 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.326: 351; 353- 357, May 6, 1868,undated + + + + + + 47 + 43 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.326: 348- 351, June 15, 1868,undated + + + + + + 47 + 44 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.326: 225- 229, June 30, 1868,undated + + + + + + 47 + 45 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.326: 358- 361, July 15, 1868,undated + + + + + + 47 + 46 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.326: 313- 315, Sept. 1, 1868,undated + + + + + + 47 + 47 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.326: 277- 280, Dec. 4, 1868,undated + + + + + + 47 + 48 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.326: 281- 283, Dec. 5, 1868,undated + + + + + + 47 + 49 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.326: 363- 365, Dec. 6, 1868,undated + + + + + + 47 + 50 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.326: 309- 312, Dec. 15, 1868,undated + + + + + + 47 + 51 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.326: 367- 371, Dec. 24, 1868,undated + + + + + + 47 + 52 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.326: 699- 701, Jan. 14, 1869,undated + + + + + + 47 + 53 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.326: 705- 709, Jan. 25, 1869,undated + + + + + + 47 + 54 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.326: 514- 517, Feb. 9, 1869,undated + + + + + + 47 + 55 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.326: 526- 528, Feb. 13, 1869,undated + + + + + + 47 + 56 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.326: 491- 494, March 5, 1869,undated + + + + + + 47 + 57 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.326: 504- 507, March 20, 1869,undated + + + + + + 47 + 58 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.323: 1211- 1219, March 28, 1869,undated + + + + + + 47 + 59 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.326: 518- 520, April 6, 1869,undated + + + + + + 47 + 60 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.326: 444- 448, April 10, 1869,undated + + + + + + 47 + 61 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.326: 585- 588, Aug. 16, 1869,undated + + + + + + 47 + 62 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.326: 722- 725, Oct. 13, 1869,undated + + + + + + 47 + 63 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.326: 628- 629, Oct. 28, 1869,undated + + + + + + 47 + 64 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.326: 726- 728, Oct. 22, 1869,undated + + + + + + 47 + 65 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.326: 729- 739, Dec. 7, 1869,undated + + + + + + 47 + 66 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 516- 517, Jan. 14, 1870,undated + + + + + + 47 + 67 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 570- 574, Jan. 14, 1870,undated + + + + + + 47 + 68 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 518- 519, Jan. 18, 1870,undated + + + + + + 47 + 69 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 520- 523, Jan. 22, 1870,undated + + + + + + 47 + 70 + Box 5 Menominee, Calendar documents, 1863-1975: HSB- WHS WIS MSS V Box 3, Feb. 1870,undated + + + + + + 47 + 71 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 540- 544, Feb. 3, 1870,undated + + + + + + 47 + 72 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 584- 588, Feb. 7, 1870,undated + + + + + + 47 + 73 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: ____, Feb. 10, 1870,undated + + + + + + 47 + 74 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 580- 583, Feb. 14, 1870,undated + + + + + + 47 + 75 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 589- 592, Feb. 19, 1870,undated + + + + + + 47 + 76 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 804- 807, March 29, 1870,undated + + + + + + 47 + 77 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 808- 811, March 30, 1870,undated + + + + + + 47 + 78 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 812- 814, March 30, 1870,undated + + + + + + 47 + 78 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 815- 818, April 6, 1870,undated + + + + + + 47 + 79 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 820- 822, April 7, 1870,undated + + + + + + 47 + 80 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 99- 103, April 8, 1870,undated + + + + + + 47 + 81 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 104- 107, April 11, 1870,undated + + + + + + 47 + 82 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 219- 223, June 13, 1870,undated + + + + + + 47 + 83 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 235- 236, July 30, 1870,undated + + + + + + 47 + 84 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 244- 247, Aug. 11, 1870,undated + + + + + + 47 + 85 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 477- 481, Aug. 19, 1870,undated + + + + + + 47 + 86 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 482- 484, Sept. 9, 1870,undated + + + + + + 47 + 87 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 1352- 1353, Sept. 27, 1870,undated + + + + + + 47 + 88 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 485- 486, Sept. 27, 1870,undated + + + + + + 47 + 89 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 489- 490, Oct. 12, 1870,undated + + + + + + 47 + 90 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 3- 5, Dec. 14, 1870,undated + + + + + + 47 + 91 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 1087- 1090, Jan. 31, 1871,undated + + + + + + 47 + 92 + Box 5 Menominee, Calendar documents, 1863-1975: LC, Presidents Papers from Micro. U.S. Grant Papers, Series 2, Roll 3, Letterbook Vol. 1: 276. Feb. 2, 1871,undated + + + + + + 47 + 93 + Box 5 Menominee, Calendar documents, 1863-1975: LC, Presidential Papers, from Micro. U.S. Grant Papers, Series 2, Roll 3, Letterbook Vol. 1: 286, Feb. 13, 1871,undated + + + + + + 47 + 94 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 894- 897, Feb. 24, 1871,undated + + + + + + 47 + 95 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 933- 935, March 28, 1871,undated + + + + + + 47 + 96 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 1114- 1116, March 30, 1871,undated + + + + + + 47 + 97 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 1117- 1122, Mar. 30, 1871,undated + + + + + + 47 + 98 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 1319- 1321, April 7, 1871,undated + + + + + + 47 + 99 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 1128- 1136, April 15, 1871,undated + + + + + + 47 + 100 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 1303- 1306, April 16, 1871,undated + + + + + + 47 + 101 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 1308- 1309, April 26, 1871,undated + + + + + + 47 + 102 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 1174- 1185, June 9, 1871,undated + + + + + + 47 + 103 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 1190- 1192, June 10, 1871,undated + + + + + + 47 + 104 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 1325- 1335, July 18, 1871,undated + + + + + + 47 + 105 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 897- 899, Oct. 16, 1871,undated + + + + + + 47 + 106 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 1242- 1245, Oct. 28, 1871,undated + + + + + + 47 + 107 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.327: 1280- 1282, Dec. 15, 1871,undated + + + + + + 47 + 108 + Box 5 Menominee, Calendar documents, 1863-1975: WGIAC- WHS, Box 1, Jan. 3, 1872,undated + + + + + + 47 + 109 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.328: 135- 137, Feb. 22, 1872,undated + + + + + + 47 + 110 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.328: 205- 207, June 20, 1872,undated + + + + + + 47 + 111 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.328: 213- 216, July 1, 1872,undated + + + + + + 47 + 112 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.328: 39- 42, Aug. 14, 1872,undated + + + + + + 47 + 113 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.328: 229- 234, Aug. 23, 1872,undated + + + + + + 47 + 114 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.328: 242- 244, Aug. 23, 1872,undated + + + + + + 47 + 115 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.328: 239- 241, Aug. 24, 1872,undated + + + + + + 47 + 116 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.328: 249- 251, Sept. 7, 1872,undated + + + + + + 47 + 117 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.328: 261- 265, Nov. 2, 1872,undated + + + + + + 47 + 118 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.328: 266- 268, Nov. 2, 1872,undated + + + + + + 47 + 119 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.328: 308- 310, Nov. 21, 1872,undated + + + + + + 47 + 120 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.328: 340- 341, Dec. 20, 1872,undated + + + + + + 47 + 121 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.329: 482- 485, May 20, 1873,undated + + + + + + 47 + 122 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.329: 486- 489, May 21, 1873,undated + + + + + + 47 + 123 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.329: 490- 492, June 4, 1873,undated + + + + + + 47 + 124 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.329: 31- 32, July 30, 1873,undated + + + + + + 47 + 125 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.331: 224- 226, Oct. 1873,undated + + + + + + 47 + 126 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.329: 175- 176, Dec. 23, 1873,undated + + + + + + 47 + 127 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.329: 177- 178, Dec. 25, 1873,undated + + + + + + 47 + 128 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.330: 122- 127, Jan. 21, 1874,undated + + + + + + 47 + 129 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.330: 219- 221, May 23, 1874,undated + + + + + + 47 + 130 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.330: 222- 224, May 23, 1874,undated + + + + + + 47 + 131 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.330: 237- 238, June 15, 1874,undated + + + + + + 47 + 132 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.330: 276- 280, Sept. 1, 1874,undated + + + + + + 47 + 133 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.330: 87- 89, Dec. 1, 1874,undated + + + + + + 47 + 134 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.331: 448- 451, Jan. 21, 1875,undated + + + + + + 47 + 135 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.331: 42- 43, Feb. 5, 1875,undated + + + + + + 47 + 136 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.331: 46- 47, Feb. 5, 1875,undated + + + + + + 47 + 137 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.331: 481- 483, April 9, 1875,undated + + + + + + 47 + 138 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.331: 102- 103, April 15, 1875,undated + + + + + + 47 + 139 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.331: 87- 89, April 21, 1875,undated + + + + + + 47 + 140 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.331: 116- 119, May 3, 1875,undated + + + + + + 47 + 141 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.331: 134- 135, May 11, 1875,undated + + + + + + 47 + 142 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.331: 142- 145, May 24, 1875,undated + + + + + + 47 + 143 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.331: 191- 202, June 23, 1875,undated + + + + + + 47 + 144 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.331: 203- 204, July 1, 1875,undated + + + + + + 47 + 145 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.331: 547- 549, Aug. 7, 1875,undated + + + + + + 47 + 146 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.331: 416- 417, Nov. 26, 1875,undated + + + + + + 47 + 147 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.331: 418- 424, Nov. 26, 1875,undated + + + + + + 47 + 148 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.331: 427- 428, Dec. 3, 1875,undated + + + + + + 47 + 149 + Box 5 Menominee, Calendar documents, 1863-1975: NAM M234 R.331: 439- 442, Dec. 17, 1875,undated + + + + + + 48 + 1 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.332: 597- 599, Feb. 9, 1876,undated + + + + + + 48 + 2 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.332: 595- 596, Feb. 11, 1876,undated + + + + + + 48 + 3 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.332: 193- 195, May 5, 1876,undated + + + + + + 48 + 4 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.331: 217- 222, May 22, 1876,undated + + + + + + 48 + 5 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.332: 224- 226, May 27, 1876,undated + + + + + + 48 + 6 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.332: 253- 254, July 8, 1876,undated + + + + + + 48 + 7 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.332: 312- 314, Aug. 22, 1876,undated + + + + + + 48 + 8 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.332: 53- 55, Sept. 13, 1876,undated + + + + + + 48 + 9 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.332: 46- 48, Oct. 28, 1876,undated + + + + + + 48 + 10 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.332: 49- 52, Nov. 25, 1876,undated + + + + + + 48 + 11 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.333: 21- 22, Jan. 6, 1877,undated + + + + + + 48 + 12 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.333: 23- 26, Jan. 12, 1877,undated + + + + + + 48 + 13 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.333: 486- 490, Jan. 9, 1877,undated + + + + + + 48 + 14 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.333: 31- 34, Jan. 31, 1877,undated + + + + + + 48 + 15 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.333: 35- 36, Feb. 2, 1877,undated + + + + + + 48 + 16 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.333: 492- 493, Feb. 23, 1877,undated + + + + + + 48 + 17 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.333: 61- 62, March 12, 1877,undated + + + + + + 48 + 18 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.333: 88- 93, March 27, 1877,undated + + + + + + 48 + 19 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.333: 439- 440, April 3, 1877,undated + + + + + + 48 + 20 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.333: 187- 191, June 7, 1877,undated + + + + + + 48 + 21 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.333: 274- 276, Aug. 21, 1877,undated + + + + + + 48 + 22 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.333: 293- 294, Sept. 8, 1877,undated + + + + + + 48 + 23 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.333: 427- 429, Dec. 20, 1877,undated + + + + + + 48 + 24 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.334: 22- 27, Dec. 28, 1877,undated + + + + + + 48 + 25 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.334: 32- 35, Dec. 31, 1877,undated + + + + + + 48 + 26 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.334: 49- 51, Jan. 11, 1878,undated + + + + + + 48 + 27 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.334: 54- 57, Jan. 11, 1878,undated + + + + + + 48 + 28 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.334: 62- 63, Jan. 11, 1878,undated + + + + + + 48 + 29 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.334: 676- 679, Jan. 23, 1878,undated + + + + + + 48 + 30 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.334: 683- 686, Jan. 26, 1878,undated + + + + + + 48 + 31 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.334: 908- 910, Feb. 26, 1878,undated + + + + + + 48 + 32 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.334: 824- 827, Feb. 28, 1878,undated + + + + + + 48 + 33 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.334: 701- 736, March 2, 1878,undated + + + + + + 48 + 34 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.334: 213- 220, April 18, 1876,undated + + + + + + 48 + 35 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.334: 821- 823, April 23, 1878,undated + + + + + + 48 + 36 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.334: 230- 239, April 24, 1878,undated + + + + + + 48 + 37 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.334: 244- 254, April 24, 1878,undated + + + + + + 48 + 38 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.334: 308- 310, May 23, 1878,undated + + + + + + 48 + 39 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.334: 346- 347, June 11, 1878,undated + + + + + + 48 + 40 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.334: 348- 349, June 12, 1878,undated + + + + + + 48 + 41 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.334: 10- 15, July 25, 1878,undated + + + + + + 48 + 42 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.334: 447- 450, Aug. 2, 1878,undated + + + + + + 48 + 43 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.334: 865- 867, Aug. 10, 1878,undated + + + + + + 48 + 44 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.335: 82- 85, Oct. 5, 1878,undated + + + + + + 48 + 45 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.334: 930- 934, Dec. 16, 1878,undated + + + + + + 48 + 46 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.335: 537- 539, Jan. 16, 1879,undated + + + + + + 48 + 47 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.335: 79- 81, Feb. 12, 1879,undated + + + + + + 48 + 48 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.335: 108- 109, Feb. 14, 1879,undated + + + + + + 48 + 49 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.335: 114- 116, Feb. 26, 1879,undated + + + + + + 48 + 50 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.335: 641- 642, May 3, 1879,undated + + + + + + 48 + 51 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.335: 662- 664, May 24, 1879,undated + + + + + + 48 + 52 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.335: 712- 713, June 19, 1879,undated + + + + + + 48 + 53 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.335: 712- 713, June 19, 1879,undated + + + + + + 48 + 54 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.335: 106- 107, July 17, 1879,undated + + + + + + 48 + 55 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.335: 827- 828, Aug. 13, 1879,undated + + + + + + 48 + 56 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.336: 178- 179, Jan. 2, 1880,undated + + + + + + 48 + 57 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.336: 277- 279, Feb. 16, 1880,undated + + + + + + 48 + 58 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.336: 292- 299, Feb. 23, 1880,undated + + + + + + 48 + 59 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.336: 315- 318, Mar. 5, 1880,undated + + + + + + 48 + 60 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.336: 368- 371, April 19, 1880,undated + + + + + + 48 + 61 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.336: 379- 381, April 28, 1880,undated + + + + + + 48 + 62 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.334: 540- 541, Aug. 31, 1880,undated + + + + + + 48 + 63 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.336: 558- 564, Sept. 16, 1880,undated + + + + + + 48 + 64 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.336: 635- 637, Nov. 10, 1880,undated + + + + + + 48 + 65 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.336: 654- 657, Dec. 2, 1880,undated + + + + + + 48 + 66 + Box 6 Menominee, Calendar documents, 1876-1884: NAM M234 R.336: 670- 671, Dec. 9, 1880,undated + + + + + + 48 + 67 + Box 6 Menominee, Calendar documents, 1876-1884: LR-01A 604, Jan. 8, 1881,undated + + + + + + 48 + 68 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 1182, Jan. 13, 1881,undated + + + + + + 48 + 69 + Box 6 Menominee, Calendar documents, 1876-1884: LR-01A 2265, Feb. 1, 1881,undated + + + + + + 48 + 70 + Box 6 Menominee, Calendar documents, 1876-1884: LR-01A 3376, Feb. 15, 1881,undated + + + + + + 48 + 71 + Box 6 Menominee, Calendar documents, 1876-1884: LR-01A 5209, Mar. 18, 1881,undated + + + + + + 48 + 72 + Box 6 Menominee, Calendar documents, 1876-1884: LR-01A 6814, April 20, 1881,undated + + + + + + 48 + 73 + Box 6 Menominee, Calendar documents, 1876-1884: LR-01A 9045, May 20, 1881,undated + + + + + + 48 + 74 + Box 6 Menominee, Calendar documents, 1876-1884: LR-01A 9324 May 27, 1881,undated + + + + + + 48 + 75 + Box 6 Menominee, Calendar documents, 1876-1884: LR-01A 9457, May 31, 1881,undated + + + + + + 48 + 76 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 13749, Aug. 2, 1881,undated + + + + + + 48 + 77 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 13866, Aug. 3, 1881 (Folder 1 of 4),undated + + + + + + 48 + 78 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 13866, Aug. 3, 1881 (Folder 2 of 4),undated + + + + + + 48 + 79 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 13866, 8-3-1881 (Folder 3 of 4),undated + + + + + + 48 + 80 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 13866, Aug. 3, 1881 (Folder 4 of 4),undated + + + + + + 48 + 81 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 13866, Aug. 8, 1881,undated + + + + + + 48 + 82 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 15282, Aug. 23, 1881,undated + + + + + + 48 + 83 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 15283, Aug. 23, 1881,undated + + + + + + 48 + 84 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 15033, Aug. 25, 1881,undated + + + + + + 48 + 85 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 15132, Aug. 26, 1881,undated + + + + + + 48 + 86 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 15491, Aug. 26, 1881,undated + + + + + + 48 + 87 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 15220, Aug. 27, 1881,undated + + + + + + 48 + 88 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 15363, Aug. 27, 1881,undated + + + + + + 48 + 89 + Box 6 Menominee, Calendar documents, 1876-1884: LR-01A 15219, Aug. 27, 1881,undated + + + + + + 48 + 90 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 15363, Aug. 30, 1881,undated + + + + + + 48 + 91 + Box 6 Menominee, Calendar documents, 1876-1884: LR-01A 15394, Aug. 31, 1881,undated + + + + + + 48 + 92 + Box 6 Menominee, Calendar documents, 1876-1884: LR-01A 15782, Sept. 1, 1881,undated + + + + + + 48 + 93 + Box 6 Menominee, Calendar documents, 1876-1884: LR-01A 15743, Sept. 2, 1881,undated + + + + + + 48 + 94 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 16901, Sept. 19, 1881,undated + + + + + + 48 + 95 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 18538, Oct. 18, 1881,undated + + + + + + 48 + 96 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 22534, Oct. 20, 1881,undated + + + + + + 48 + 97 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 21105, Nov. 29, 1881,undated + + + + + + 48 + 98 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 21327, Dec. 8, 1881,undated + + + + + + 48 + 99 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 384, Jan. 3, 1882,undated + + + + + + 48 + 100 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 1507, Jan. 19, 1882,undated + + + + + + 48 + 101 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 1851, Jan. 23, 1882,undated + + + + + + 48 + 102 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 1986, Jan. 24, 1882,undated + + + + + + 48 + 103 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 2423, Jan. 31, 1882,undated + + + + + + 48 + 104 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 2424, Jan. 31, 1882,undated + + + + + + 48 + 105 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 2426, Jan. 31, 1882,undated + + + + + + 48 + 106 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 2427, Feb. 2, 1882,undated + + + + + + 48 + 107 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A Feb. 4, 1882,undated + + + + + + 48 + 108 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 3792, Feb. 20, 1882,undated + + + + + + 48 + 109 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 4578, Mar. 4, 1882,undated + + + + + + 48 + 110 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 6556, Mar. 24, 1882,undated + + + + + + 48 + 111 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 6049, Mar. 27, 1882,undated + + + + + + 48 + 112 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 6463, April 1, 1882,undated + + + + + + 48 + 113 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 6687, April 4, 1882,undated + + + + + + 48 + 114 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 7429, April 20, 1882,undated + + + + + + 48 + 115 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 8458, April 29, 1882,undated + + + + + + 48 + 116 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 295, May 8, 1882,undated + + + + + + 48 + 117 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 9690, May 23, 1882,undated + + + + + + 48 + 118 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 9790, May 24, 1882,undated + + + + + + 48 + 119 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 10087, May 26, 1882,undated + + + + + + 48 + 120 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 10592, June 2, 1882,undated + + + + + + 48 + 121 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 11430, June 19, 1882,undated + + + + + + 48 + 122 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 11585, June 19, 1882,undated + + + + + + 48 + 123 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 14397, June 29, 1882,undated + + + + + + 48 + 124 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 18685, Oct. 2, 1882,undated + + + + + + 48 + 125 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 20453, Nov. 9, 1882,undated + + + + + + 48 + 126 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 842, Dec. 1, 1882,undated + + + + + + 48 + 127 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 22513, Dec. 7, 1882,undated + + + + + + 48 + 128 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A Dec. 8, 1882,undated + + + + + + 48 + 129 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 22513, Dec. 9, 1882,undated + + + + + + 48 + 130 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 842, Dec. 29, 1882,undated + + + + + + 48 + 131 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 842, Jan. 2, 1883 (Folder 1 of 3),undated + + + + + + 48 + 132 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 842, Jan. 2, 1883 (Folder 2 of 3),undated + + + + + + 48 + 133 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 842, Jan. 2, 1883 (Folder 3 of 3),undated + + + + + + 48 + 134 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 842, Jan. 8, 1883 (Folder 1 of 2),undated + + + + + + 48 + 135 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 842, Jan. 8, 1883 (Folder 2 of 2),undated + + + + + + 48 + 136 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 842, Jan. 10, 1883 (Folder 1 of 2),undated + + + + + + 48 + 137 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 842, Jan. 10, 1883 (Folder 2 of 2),undated + + + + + + 48 + 138 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 1480, Jan. 17, 1883,undated + + + + + + 48 + 139 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 2308, Jan. 19, 1883,undated + + + + + + 48 + 140 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 8673, May 10, 1883,undated + + + + + + 48 + 141 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 12692, July 10, 1883,undated + + + + + + 48 + 142 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 9454, July 21, 1883,undated + + + + + + 48 + 143 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 22621, Dec. 7, 1883,undated + + + + + + 48 + 144 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 22694, Dec. 11, 1883,undated + + + + + + 48 + 145 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 23073, Dec. 15, 1883,undated + + + + + + 48 + 146 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 3184, Feb. 11, 1884,undated + + + + + + 48 + 147 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 3797, Feb. 13, 1884,undated + + + + + + 48 + 148 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 4059, Feb. 26, 1884,undated + + + + + + 48 + 149 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 5333, Mar. 11, 1884,undated + + + + + + 48 + 150 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 6946, April 8, 1884,undated + + + + + + 48 + 151 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 9154, May 8, 1884 (Folder 1 of 2),undated + + + + + + 48 + 152 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 9154, May 8, 1884 (Folder 2 of 2),undated + + + + + + 48 + 153 + Box 6 Menominee, Calendar documents, 1876-1884: LR 01A 10144, May 23, 1884,undated + + + + + + 48 + 154 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 11595, June 14, 1884,undated + + + + + + 48 + 155 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 11596, June 14, 1884 (Folder 1 of 2),undated + + + + + + 48 + 156 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 11596, June 14, 1884 (Folder 2 of 2),undated + + + + + + 48 + 157 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 12231, June 24, 1884,undated + + + + + + 48 + 158 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 16102, July 5, 1884,undated + + + + + + 48 + 159 + Box 6 Menominee, Calendar documents, 1876-1884: HSB- WHS Box 2, July 13, 1884,undated + + + + + + 48 + 160 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 16127, Aug. 12, 1884,undated + + + + + + 48 + 161 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 16102, Aug. 18, 1884,undated + + + + + + 48 + 162 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 18776, Aug. 31, 1884,undated + + + + + + 48 + 163 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 17629, Sept. 10, 1884,undated + + + + + + 48 + 164 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 18135, Sept. 19, 1884,undated + + + + + + 48 + 165 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 19173, Sept. 30, 1884 (Folder 1 of 2),undated + + + + + + 48 + 166 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 19173, Sept. 30, 1884 (Folder 2 of 2),undated + + + + + + 48 + 167 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 21836, Nov. 10, 1884,undated + + + + + + 48 + 168 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 21835, Nov. 10, 1884,undated + + + + + + 48 + 169 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 23614, Dec. 4, 1884,undated + + + + + + 48 + 170 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 24934, Dec. 26, 1884 (Folder 1 of 2),undated + + + + + + 48 + 171 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 24934, Dec. 26, 1884 (Folder 2 of 2),undated + + + + + + 48 + 172 + Box 6 Menominee, Calendar documents, 1876-1884: LR- 01A 155, Dec. 31, 1884,undated + + + + + + 49 + 1 + Box 7 Menominee, Calendar documents, 1885-1893: LR-01A 3804, Feb. 12, 1885,undated + + + + + + 49 + 2 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 6499, March 20, 1885,undated + + + + + + 49 + 3 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 7797, April 8, 1885,undated + + + + + + 49 + 4 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 8945, April 15, 1885,undated + + + + + + 49 + 5 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 9589, April 16, 1885,undated + + + + + + 49 + 6 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 9351, April 16, 1885,undated + + + + + + 49 + 7 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 9447, April 24, 1885,undated + + + + + + 49 + 8 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 9454, April 24, 1885,undated + + + + + + 49 + 9 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 10006, April 30, 1884,undated + + + + + + 49 + 10 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 11032, May 11, 1885,undated + + + + + + 49 + 11 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 11721, May 16, 1885,undated + + + + + + 49 + 12 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 11951, May 26, 1885,undated + + + + + + 49 + 13 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 12315, June 1, 1885,undated + + + + + + 49 + 14 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 12315, June 2, 1885,undated + + + + + + 49 + 15 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 16393, July 17, 1885 (Folder 1 of 2),undated + + + + + + 49 + 16 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 16393, July 17, 1885 (Folder 2 of 2),undated + + + + + + 49 + 17 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 16660, July 20, 1885,undated + + + + + + 49 + 18 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 16884, July 24, 1885,undated + + + + + + 49 + 19 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 23752, Oct. 6, 1885,undated + + + + + + 49 + 20 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 23753, Oct. 7, 1885,undated + + + + + + 49 + 21 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 29184, Nov. 4, 1885,undated + + + + + + 49 + 22 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 26741, Nov. 7, 1885,undated + + + + + + 49 + 23 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 28014, Nov. 20, 1885,undated + + + + + + 49 + 24 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 28135, Nov. 24, 1885,undated + + + + + + 49 + 25 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 29167, Dec. 4, 1885,undated + + + + + + 49 + 26 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 29184, Dec. 7, 1885,undated + + + + + + 49 + 27 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 1683, Jan. 12, 1886,undated + + + + + + 49 + 28 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 3042, Jan. 28, 1886,undated + + + + + + 49 + 29 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 8643, Feb. 12, 1886,undated + + + + + + 49 + 30 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 22903, Aug. 25, 1886,undated + + + + + + 49 + 31 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 22905, Aug. 25, 1886,undated + + + + + + 49 + 32 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 963, Jan. 7, 1887,undated + + + + + + 49 + 33 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 4903, Feb. 16, 1887,undated + + + + + + 49 + 34 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 7920, Mar. 23, 1887,undated + + + + + + 49 + 35 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 15740, June 2, 1887,undated + + + + + + 49 + 36 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 15740, June 17, 1887,undated + + + + + + 49 + 37 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 22178, Aug. 18, 1887,undated + + + + + + 49 + 38 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 26169, Sept. 29, 1887,undated + + + + + + 49 + 39 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 27432, Oct. 13, 1887,undated + + + + + + 49 + 40 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 27602, Oct. 14, 1887 (Folder 1 of 2),undated + + + + + + 49 + 41 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 27602, Oct. 14, 1887 (Folder 2 of 2),undated + + + + + + 49 + 42 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 28512, Oct. 21, 1887,undated + + + + + + 49 + 43 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 31592, Nov. 23, 1887,undated + + + + + + 49 + 44 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 31496, Nov. 25, 1887,undated + + + + + + 49 + 45 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 8643, Dec. 12, 1887,undated + + + + + + 49 + 46 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 4112, Feb. 7, 1888 (Folder 1 of 3),undated + + + + + + 49 + 47 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 4112, Feb. 7, 1888 (Folder 2 of 3),undated + + + + + + 49 + 48 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 4112, Feb. 7, 1888 (Folder 3 of 3),undated + + + + + + 49 + 49 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 4112, Feb. 8, 1888,undated + + + + + + 49 + 50 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 5719, Feb. 18, 1888,undated + + + + + + 49 + 51 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 7257, March 13, 1888,undated + + + + + + 49 + 52 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 7295, Mar. 15, 1888,undated + + + + + + 49 + 53 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 7453, Mar. 15, 1888,undated + + + + + + 49 + 54 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 8643, Mar. 21, 1888 (Folder 1 of 2),undated + + + + + + 49 + 55 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 8643, Mar. 21, 1888 (Folder 2 of 2),undated + + + + + + 49 + 56 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 8643, Mar. 28, 1888,undated + + + + + + 49 + 57 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 8613, Mar. 29, 1888,undated + + + + + + 49 + 58 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 8863, Mar. 30, 1888 (Folder 1 of 2),undated + + + + + + 49 + 59 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 8863, Mar. 30, 1888 (Folder 2 of 2),undated + + + + + + 49 + 60 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 8863, March 31, 1888 (Folder 1 of 4),undated + + + + + + 49 + 61 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 8863, March 31, 1888 (Folder 2 of 4),undated + + + + + + 49 + 62 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 8863, March 31, 1888 (Folder 3 of 4),undated + + + + + + 49 + 63 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 8863, March 31, 1888 (Folder 4 of 4),undated + + + + + + 49 + 64 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 8934, April 1, 1888,undated + + + + + + 49 + 65 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 29105, May 19, 1888,undated + + + + + + 49 + 66 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 14626, June 2, 1888,undated + + + + + + 49 + 67 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 13559, Oct. 15, 1888,undated + + + + + + 49 + 68 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 28448, Nov. 15, 1888,undated + + + + + + 49 + 69 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 29105, Nov. 20, 1888,undated + + + + + + 49 + 70 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 28866, Nov. 22, 1888,undated + + + + + + 49 + 71 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 29105, Nov. 23, 1888,undated + + + + + + 49 + 72 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 30760, Dec. 5, 1888,undated + + + + + + 49 + 73 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 24049, 1889,undated + + + + + + 49 + 74 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 3744, Feb. 2, 1889 (Folder 1 of 4),undated + + + + + + 49 + 75 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 3744, Feb. 2, 1889 (Folder 2 of 4),undated + + + + + + 49 + 76 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 3744, Feb. 2, 1889 (Folder 3 of 4),undated + + + + + + 49 + 77 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 3744, Feb. 2, 1889 (Folder 4 of 4),undated + + + + + + 49 + 78 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 3744, Feb. 4, 1889,undated + + + + + + 49 + 79 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 6921, Feb. 9, 1889,undated + + + + + + 49 + 80 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 7277, Mar. 9, 1889,undated + + + + + + 49 + 81 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 16206, June 14, 1889,undated + + + + + + 49 + 82 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 27512, Sept. 28, 1889,undated + + + + + + 49 + 83 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 29215, Oct. 11, 1889,undated + + + + + + 49 + 84 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 32191, Nov. 7, 1889,undated + + + + + + 49 + 85 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 30129, Nov. 9, 1889,undated + + + + + + 49 + 86 + Box 7 Menominee, Calendar documents, 1885-1893: BCIM Series 1, Box 24, Folder 17, Nov. 9, 1889,undated + + + + + + 49 + 87 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 33398, Nov. 11, 1889,undated + + + + + + 49 + 88 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 33398, Nov. 13, 1889,undated + + + + + + 49 + 89 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 33495, Dec. 13, 1889,undated + + + + + + 49 + 90 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 36916, Dec. 23, 1889,undated + + + + + + 49 + 91 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 285, Dec. 30, 1889,undated + + + + + + 49 + 92 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 274, Dec. 30, 1889,undated + + + + + + 49 + 93 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 26313, 1890 (Folder 1 of 2),undated + + + + + + 49 + 94 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 26313, 1890 (Folder 2 of 2),undated + + + + + + 49 + 95 + Box 7 Menominee, Calendar documents, 1885-1893: NAM M234 R.327: 401- 404, Jan. 11, 1890,undated + + + + + + 49 + 96 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 3785, Jan. 29, 1890,undated + + + + + + 49 + 97 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 3653, Feb. 3, 1890,undated + + + + + + 49 + 98 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 4557, Feb. 8, 1890,undated + + + + + + 49 + 99 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 5224, Feb. 8, 1890,undated + + + + + + 49 + 100 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 4793, Feb. 12, 1890,undated + + + + + + 49 + 101 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 5777, Feb. 19, 1890,undated + + + + + + 49 + 102 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 5844, Feb. 21, 1890,undated + + + + + + 49 + 103 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 7382, Mar. 1, 1890,undated + + + + + + 49 + 104 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 10010, Mar. 14, 1890,undated + + + + + + 49 + 126 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 8164, Mar. 14, 1890,undated + + + + + + 49 + 127 + Box 7 Menominee, Calendar documents, 1885-1893: BCM Series 1 Box 28, Folder 5, April 10, 1890,undated + + + + + + 49 + 128 + Box 7 Menominee, Calendar documents, 1885-1893: BCM Series 1 Box 28, Folder 5, May 11, 1890,undated + + + + + + 49 + 129 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 15266, May 11, 1890,undated + + + + + + 49 + 130 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 15185, May 12, 1890,undated + + + + + + 49 + 131 + Box 7 Menominee, Calendar documents, 1885-1893: BCM Series 1 Box 28, Folder 5, May 13, 1890,undated + + + + + + 49 + 132 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 15266, May 13, 1890,undated + + + + + + 49 + 133 + Box 7 Menominee, Calendar documents, 1885-1893: BCM Series 1 Box 28, Folder 5, May 21, 1890,undated + + + + + + 49 + 134 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 17174, May 22, 1890,undated + + + + + + 49 + 135 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 17174, May 26, 1890,undated + + + + + + 49 + 136 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 3787, June 1, 1890,undated + + + + + + 49 + 137 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 17014, June 2, 1890,undated + + + + + + 49 + 138 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 17328, June 4, 1890,undated + + + + + + 49 + 139 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 17481, June 6, 1890,undated + + + + + + 49 + 140 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A June 9, 1890,undated + + + + + + 49 + 141 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 19590, June 26, 1890,undated + + + + + + 49 + 142 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 19760, June 28, 1890,undated + + + + + + 49 + 143 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 20531, July 2, 1890,undated + + + + + + 49 + 144 + Box 7 Menominee, Calendar documents, 1885-1893: BCM Series 1 Box 28, Folder 5, July 7, 1890,undated + + + + + + 49 + 145 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 18409, July 8, 1890,undated + + + + + + 49 + 146 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 21994, July 16, 1890 (Folder 1 of 2),undated + + + + + + 49 + 147 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 21994, July 16, 1890 (Folder 2 of 2),undated + + + + + + 49 + 148 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 25259, Aug. 13, 1890,undated + + + + + + 49 + 149 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 28286, Sept. 9, 1890 (Folder 1 of 2),undated + + + + + + 49 + 150 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 28286, Sept. 9, 1890 (Folder 2 of 2),undated + + + + + + 49 + 151 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 29743, Sept. 24, 1890,undated + + + + + + 49 + 152 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 29817, Sept. 24, 1890,undated + + + + + + 49 + 153 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 30537, Oct. 1, 1890,undated + + + + + + 49 + 154 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 30620, Oct. 2, 1890,undated + + + + + + 49 + 155 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 31966, Oct. 10, 1890,undated + + + + + + 49 + 156 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 31966, 10-11-1890 (Folder 1 of 5),undated + + + + + + 49 + 157 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 31966, Oct. 11, 1890 (Folder 2 of 5),undated + + + + + + 49 + 158 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 31966, Oct. 11, 1890 (Folder 3 of 5),undated + + + + + + 49 + 159 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 31966, Oct. 11, 1890 (Folder 4 of 5),undated + + + + + + 49 + 160 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 31966, Oct. 11, 1890 (Folder 5 of 5),undated + + + + + + 49 + 161 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 32867, Oct. 20, 1890,undated + + + + + + 49 + 162 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 35096, Nov. 8, 1890,undated + + + + + + 49 + 163 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 34954, Nov. 11, 1890,undated + + + + + + 49 + 164 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 37237, Nov. 26, 1890,undated + + + + + + 49 + 165 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 39478, Dec. 18, 1890,undated + + + + + + 49 + 166 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 43745, 1891,undated + + + + + + 49 + 167 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 1246, Jan. 6, 1891,undated + + + + + + 49 + 168 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 3181, Jan. 20, 1891,undated + + + + + + 49 + 169 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 2427, Jan. 20, 1891,undated + + + + + + 49 + 170 + Box 7 Menominee, Calendar documents, 1885-1893: BCM Series 1 Box 31 Folder 12, Jan. 20, 1891,undated + + + + + + 49 + 171 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 5259, Feb. 2, 1891,undated + + + + + + 49 + 172 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 6119, Feb. 13, 1891 (Folder 1 of 2),undated + + + + + + 49 + 173 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 6119, Feb. 13, 1891 (Folder 2 of 2),undated + + + + + + 49 + 174 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 7581, Feb. 21, 1891,undated + + + + + + 49 + 175 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 9604, Mar. 9, 1891,undated + + + + + + 49 + 176 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 9942, Mar. 12, 1891,undated + + + + + + 49 + 177 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 10665, Mar. 12, 1891,undated + + + + + + 49 + 178 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 9942, Mar. 12, 1891,undated + + + + + + 49 + 179 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 14856, April 22, 1891 (Folder 1 of 2),undated + + + + + + 49 + 180 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 14856, April 22, 1891 (Folder 2 of 2),undated + + + + + + 49 + 181 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 21136, May 2, 1891,undated + + + + + + 49 + 182 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 16377, May 3, 1891,undated + + + + + + 49 + 183 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 16867, May 4, 1891,undated + + + + + + 49 + 184 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 21136, June 2, 1891,undated + + + + + + 49 + 185 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 21136, June 10, 1891,undated + + + + + + 49 + 186 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 22790, June 26, 18911,undated + + + + + + 49 + 187 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 20031, July 1, 1891,undated + + + + + + 49 + 188 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 27966, July 13, 1891,undated + + + + + + 49 + 189 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 32814, Sept. 7, 1891,undated + + + + + + 49 + 190 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 38034, Oct. 17, 1891,undated + + + + + + 49 + 191 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 38034, Oct. 19, 1891,undated + + + + + + 49 + 192 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 39569, Nov. 2, 1891,undated + + + + + + 49 + 193 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 46114, Dec. 3, 1891,undated + + + + + + 49 + 194 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 46114, Dec. 28, 1891,undated + + + + + + 49 + 195 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 5295, Feb. 8, 1892,undated + + + + + + 49 + 196 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 5297, Feb. 9, 1892,undated + + + + + + 49 + 197 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 9322, March 8, 1892,undated + + + + + + 49 + 198 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 11382, March 24, 1892,undated + + + + + + 49 + 199 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 11682, March 26, 1892,undated + + + + + + 49 + 200 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 42049, Oct. 7, 1892,undated + + + + + + 49 + 201 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 42049, Oct. 8, 1892,undated + + + + + + 49 + 202 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 31786, 1893,undated + + + + + + 49 + 203 + Box 7 Menominee, Calendar documents, 1885-1893: BCM Series 1 Box 32 Folder 56, 1893,undated + + + + + + 49 + 204 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 3672, Jan. 26, 1893,undated + + + + + + 49 + 205 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 3985, Jan. 28, 1893,undated + + + + + + 49 + 206 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 13111, April 8, 1893,undated + + + + + + 49 + 207 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 13151, April 10, 1893,undated + + + + + + 49 + 208 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 20724, April 21, 1893,undated + + + + + + 49 + 209 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 15102, April 24, 1893,undated + + + + + + 49 + 210 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 15005, April 24, 1893,undated + + + + + + 49 + 211 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 16397, April 29, 1893,undated + + + + + + 49 + 212 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 18276, May 2, 1893,undated + + + + + + 49 + 213 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 17859, May 10, 1893,undated + + + + + + 49 + 214 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 18276, May 16, 1893,undated + + + + + + 49 + 215 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 19012, May 22, 1893,undated + + + + + + 49 + 216 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 20724, June 3, 1893,undated + + + + + + 49 + 217 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 20781, June 5, 1893,undated + + + + + + 49 + 218 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 20662, June 5, 1893,undated + + + + + + 49 + 219 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 21707, June 9, 1893,undated + + + + + + 49 + 220 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 22788, June 24, 1893,undated + + + + + + 49 + 221 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 25209, July 6, 1893 (Folder 1 of 3),undated + + + + + + 49 + 222 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 25209, July 6, 1893 (Folder 2 of 3),undated + + + + + + 49 + 223 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 25209, July 6, 1893 (Folder 3 of 3),undated + + + + + + 49 + 224 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 42049, Oct. 11, 1893,undated + + + + + + 49 + 225 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 40390, Oct. 26, 1893,undated + + + + + + 49 + 226 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 44417, Nov. 27, 1893,undated + + + + + + 49 + 227 + Box 7 Menominee, Calendar documents, 1885-1893: LR- 01A 46665, Dec. 12, 1893,undated + + + + + + 50 + 1 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 33224, 1894,undated + + + + + + 50 + 2 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 2064, Jan. 10, 1894,undated + + + + + + 50 + 3 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 4798, Jan. 30, 1894,undated + + + + + + 50 + 4 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 7573, Feb. 20 1894,undated + + + + + + 50 + 5 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 8632, Feb. 27, 1894,undated + + + + + + 50 + 6 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 12437, Mar. 24, 1894,undated + + + + + + 50 + 7 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 16068, April 23, 1894,undated + + + + + + 50 + 8 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 18907, May 11, 1894,undated + + + + + + 50 + 9 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 19158, May 15, 1894,undated + + + + + + 50 + 10 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 19159, May 15, 1894,undated + + + + + + 50 + 11 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 26613, July 11, 1894,undated + + + + + + 50 + 12 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 32911, Aug. 18, 1894,undated + + + + + + 50 + 13 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 32911, Aug. 28, 1894,undated + + + + + + 50 + 14 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 36446, Sept. 4, 1894,undated + + + + + + 50 + 15 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 35621, Sept. 12, 1894,undated + + + + + + 50 + 16 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 35503, Sept. 13, 1894,undated + + + + + + 50 + 17 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 36557, Sept. 17, 1894,undated + + + + + + 50 + 18 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 36446, Sept. 19, 1894,undated + + + + + + 50 + 19 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 7326, Sept. 19, 1894,undated + + + + + + 50 + 20 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 41418, Sept. 26, 1894,undated + + + + + + 50 + 21 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 5008, Nov. 15, 1894,undated + + + + + + 50 + 22 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 48580, Dec. 7, 1894,undated + + + + + + 50 + 23 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 48580, Dec. 1, 1894,undated + + + + + + 50 + 24 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 31023, 1895,undated + + + + + + 50 + 25 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 6611, Feb. 9, 1895,undated + + + + + + 50 + 26 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 12640, Mar. 21, 1895,undated + + + + + + 50 + 27 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 12640, April 9, 1895,undated + + + + + + 50 + 28 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 20714, April 15, 1895,undated + + + + + + 50 + 29 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 18499, April 26, 1895,undated + + + + + + 50 + 30 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 21161, May 10, 1895,undated + + + + + + 50 + 31 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 20714, May 11, 1895,undated + + + + + + 50 + 32 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 21161, May 13, 1895,undated + + + + + + 50 + 33 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 26989, June 22, 1895,undated + + + + + + 50 + 34 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 26989, June 28, 1895,undated + + + + + + 50 + 35 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 27506, June 30, 1895,undated + + + + + + 50 + 36 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 33346, Aug. 2, 1895,undated + + + + + + 50 + 37 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 33346, Aug. 7, 1895 (Folder 1 of 2),undated + + + + + + 50 + 38 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 33346, Aug. 7, 1895 (Folder 2 of 2),undated + + + + + + 50 + 39 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 34281, Aug. 17, 1895,undated + + + + + + 50 + 40 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 36095, Aug. 29, 1895,undated + + + + + + 50 + 41 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 46422, Nov. 4, 1895,undated + + + + + + 50 + 42 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 46422, Nov. 9, 1895,undated + + + + + + 50 + 43 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 47667, Nov. 20, 1895,undated + + + + + + 50 + 44 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 50178, Dec. 9, 1895,undated + + + + + + 50 + 45 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 7326, Dec. 29, 1895 (Folder 1 of 2),undated + + + + + + 50 + 46 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 7326, Dec. 29, 1895 (Folder 2 of 2),undated + + + + + + 50 + 47 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 6761, Feb. 13, 1896,undated + + + + + + 50 + 48 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 7326, Feb. 18, 1896 (Folder 1 of 2),undated + + + + + + 50 + 49 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 7326, Feb. 18, 1896 (Folder 2 of 2),undated + + + + + + 50 + 50 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 11153, Mar. 21, 1896,undated + + + + + + 50 + 51 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 12582, April 2, 1896,undated + + + + + + 50 + 52 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 12582, March 30, 1896,undated + + + + + + 50 + 53 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 17538, May 6, 1896,undated + + + + + + 50 + 54 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 18001, May 11, 1896,undated + + + + + + 50 + 55 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 19975, May 23, 1896,undated + + + + + + 50 + 56 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 24692, July 1, 1896,undated + + + + + + 50 + 57 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 29825, Aug. 4, 1896,undated + + + + + + 50 + 58 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 36878, Sept. 24, 1896,undated + + + + + + 50 + 59 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 36879, Sept. 24, 1896,undated + + + + + + 50 + 60 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 36880, Sept. 24, 1896,undated + + + + + + 50 + 61 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 42049, Oct. 27, 1896,undated + + + + + + 50 + 62 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 42049, Oct. 30, 1896,undated + + + + + + 50 + 63 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 777, Jan. 7, 1897,undated + + + + + + 50 + 64 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 2958, Jan. 8, 1897,undated + + + + + + 50 + 65 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 3307, Jan. 19, 1897,undated + + + + + + 50 + 66 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 3940, Jan. 26, 1897,undated + + + + + + 50 + 67 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 4327, Jan. 29, 1897,undated + + + + + + 50 + 68 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 4275, Jan. 29, 1897,undated + + + + + + 50 + 69 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 13358, April 9, 1897,undated + + + + + + 50 + 70 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A, May 1897,undated + + + + + + 50 + 71 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 18299, May 8, 1897,undated + + + + + + 50 + 72 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 29093, June 1, 1897,undated + + + + + + 50 + 73 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 28964, June 15, 1897,undated + + + + + + 50 + 74 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A, July 15, 1897,undated + + + + + + 50 + 75 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 29093, July 16, 1897,undated + + + + + + 50 + 76 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 34026, Aug. 5, 1897,undated + + + + + + 50 + 77 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 32450, Aug. 6, 1897,undated + + + + + + 50 + 78 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 34026, Aug. 16, 1897,undated + + + + + + 50 + 79 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 37638, Sept. 8, 1897,undated + + + + + + 50 + 80 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A, Oct. 7, 1897,undated + + + + + + 50 + 81 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 44389, Oct. 22, 1897,undated + + + + + + 50 + 82 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 46936, Nov. 6, 1897,undated + + + + + + 50 + 83 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 47469, Nov. 9, 1897,undated + + + + + + 50 + 84 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 53002, Dec. 13, 1897,undated + + + + + + 50 + 85 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 299, Dec. 30, 1897,undated + + + + + + 50 + 86 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 8405, Feb. 3, 1898,undated + + + + + + 50 + 87 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 8405, Feb. 16, 1898 (Folder 1 of 2),undated + + + + + + 50 + 88 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 8405, Feb. 16, 1898 (Folder 2 of 2),undated + + + + + + 50 + 89 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 11521, Mar. 8, 1898,undated + + + + + + 50 + 90 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 11671, March 9, 1898 (Folder 1 of 2),undated + + + + + + 50 + 91 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 11671, Mar. 9, 1898 (Folder 2 of 2),undated + + + + + + 50 + 92 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 12173, Mar. 11, 1898,undated + + + + + + 50 + 93 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 13011, Mar. 18, 1898,undated + + + + + + 50 + 94 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 13227, Mar. 21, 1898,undated + + + + + + 50 + 95 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 16077, April 7, 1898,undated + + + + + + 50 + 96 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 17310, April 12, 1898 (Folder 1 of 2),undated + + + + + + 50 + 97 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 17310, April 12, 1898 (Folder 2 of 2),undated + + + + + + 50 + 98 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 20842, May 3, 1898,undated + + + + + + 50 + 99 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 20869, May 2, 1898,undated + + + + + + 50 + 100 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 25069, May 31, 1898 (Folder 1 of 2),undated + + + + + + 50 + 101 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 25069, May 31, 1898 (Folder 2 of 2),undated + + + + + + 50 + 102 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 27256, June 15, 1898,undated + + + + + + 50 + 103 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 27700, June 17, 1898 (Folder 1 of 2),undated + + + + + + 50 + 104 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 27700, June 17, 1898 (Folder 2 of 2),undated + + + + + + 50 + 105 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 33494, July 22, 1898,undated + + + + + + 50 + 106 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 34195, July 27, 1898,undated + + + + + + 50 + 107 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 37642, Aug. 13, 1898,undated + + + + + + 50 + 108 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 37966, Aug. 17, 1898,undated + + + + + + 50 + 109 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 38168, Aug. 18, 1898,undated + + + + + + 50 + 110 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 40012, Aug. 30, 1898,undated + + + + + + 50 + 111 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 46984, Sept. 26, 1898,undated + + + + + + 50 + 112 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 49755, Oct. 1, 1898,undated + + + + + + 50 + 113 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 46984- 7924? Oct. 14, 1898,undated + + + + + + 50 + 114 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 46984, Oct. 14, 1898,undated + + + + + + 50 + 115 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 49911, Nov. 3, 1898,undated + + + + + + 50 + 116 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 51613, Nov. 11, 1898,undated + + + + + + 50 + 117 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 56958, Dec. 15, 1898,undated + + + + + + 50 + 118 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 5868, Feb. 4, 1899,undated + + + + + + 50 + 119 + Box 8 Menominee, Calendar documents, 1894-1909: BCIM Series 1 Box 38 Folder 26, Feb. 19, 1899,undated + + + + + + 50 + 120 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 9989, Mar. 4, 1899,undated + + + + + + 50 + 121 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 11050, Mar. 6, 1899,undated + + + + + + 50 + 122 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 14398, Mar. 22, 1899,undated + + + + + + 50 + 123 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 14976, Mar. 31, 1899,undated + + + + + + 50 + 124 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 16023, April 11, 1899 (Folder 1 of 2),undated + + + + + + 50 + 125 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 16023, April 11, 1899 (Folder 2 of 2),undated + + + + + + 50 + 126 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 20867- 58/ 93, May 1, 1899,undated + + + + + + 50 + 127 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 22211- 58/ 108, May 10, 1899,undated + + + + + + 50 + 128 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 33013- 58/ 228, July 11, 1899,undated + + + + + + 50 + 129 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 46292, Aug. 19, 1899,undated + + + + + + 50 + 130 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 46827, Aug. 23, 1899,undated + + + + + + 50 + 131 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 46292, Sept. 26, 1899,undated + + + + + + 50 + 132 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 46292, Oct. 2, 1899,undated + + + + + + 50 + 133 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 160- 95/ 1/2, Dec. 29, 1899,undated + + + + + + 50 + 134 + Box 8 Menominee, Calendar documents, 1894-1909: BCIM Series 1 Box 40 Folder 40, Jan. 3, 1900,undated + + + + + + 50 + 135 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 5371, Jan. 26, 1900,undated + + + + + + 50 + 136 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 9819, Feb. 23, 1900,undated + + + + + + 50 + 137 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 12947, Mar. 12, 1900,undated + + + + + + 50 + 138 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 21502, Mar. 31, 1900,undated + + + + + + 50 + 139 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 24184, May 1, 1900,undated + + + + + + 50 + 140 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 25188, May 23, 1900,undated + + + + + + 50 + 141 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 55110, Aug. 1900,undated + + + + + + 50 + 142 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 55110, Nov. 5, 1900,undated + + + + + + 50 + 143 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A no #, 1901,undated + + + + + + 50 + 144 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 2619, Jan. 11, 1901,undated + + + + + + 50 + 145 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 17340, Mar. 28, 1901,undated + + + + + + 50 + 146 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 17520, April 2, 1901,undated + + + + + + 50 + 147 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 20290, April 16, 1901,undated + + + + + + 50 + 148 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 20524, April 18, 1901,undated + + + + + + 50 + 149 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 22927, April 27, 1901,undated + + + + + + 50 + 150 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 22952, April 29, 1901,undated + + + + + + 50 + 151 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 23475, May 2, 1901,undated + + + + + + 50 + 152 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 33183, June 19, 1901,undated + + + + + + 50 + 153 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 75057, Dec. 23, 1901,undated + + + + + + 50 + 154 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 50869, 1902,undated + + + + + + 50 + 155 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 15482, March 8, 1902,undated + + + + + + 50 + 156 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 16019, March 13, 1902,undated + + + + + + 50 + 157 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 15482, Mar. 13, 1902,undated + + + + + + 50 + 158 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 32032, May 29, 1902,undated + + + + + + 50 + 159 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 31561, May 29, 1902,undated + + + + + + 50 + 160 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 32032, May 30, 1902,undated + + + + + + 50 + 161 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 37328, June 23, 1902,undated + + + + + + 50 + 162 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 44035- 67/ 222, July 12, 1902,undated + + + + + + 50 + 163 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 37328- 3440, July 22, 1902,undated + + + + + + 50 + 164 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 44035, July 24, 1902,undated + + + + + + 50 + 165 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 45795, July 31, 1902,undated + + + + + + 50 + 166 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 46741, Aug. 2, 1902,undated + + + + + + 50 + 167 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 46820, Aug. 5, 1902,undated + + + + + + 50 + 168 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 45795- 7406, Aug. 2, 1902,undated + + + + + + 50 + 169 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 7956, Aug. 22, 1902,undated + + + + + + 50 + 170 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 54706, Sept. 11, 1902,undated + + + + + + 50 + 171 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 55485, Sept. 13, 1902,undated + + + + + + 50 + 172 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 65688, Nov. 1, 1902,undated + + + + + + 50 + 173 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 67063, Nov. 5, 1902,undated + + + + + + 50 + 174 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 53597, 1903,undated + + + + + + 50 + 175 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 2255, Jan. 9, 1903,undated + + + + + + 50 + 176 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 50226, Oct. 3, 1903,undated + + + + + + 50 + 177 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 50276, Oct. 26, 1903,undated + + + + + + 50 + 178 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 73928, Nov. 1, 1903,undated + + + + + + 50 + 179 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A, Nov. 20, 1903,undated + + + + + + 50 + 180 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 78084, Dec. 1, 1903,undated + + + + + + 50 + 181 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 50226, Dec. 1, 1903,undated + + + + + + 50 + 182 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 58166, 1904,undated + + + + + + 50 + 183 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 64155, Sept. 12, 1904,undated + + + + + + 50 + 184 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 67085, Sept. 18, 1904,undated + + + + + + 50 + 185 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 2622, 1905,undated + + + + + + 50 + 186 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 7648, Jan. 24, 1905,undated + + + + + + 50 + 187 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 11278, Feb. 6, 1905,undated + + + + + + 50 + 188 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 13789, Feb. 14, 1905,undated + + + + + + 50 + 189 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 20293- 77/ 27, Mar. 15, 1905,undated + + + + + + 50 + 190 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 55043, July 11, 1905,undated + + + + + + 50 + 191 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 6125, Nov. 28, 1905,undated + + + + + + 50 + 192 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 100607, Dec. 15, 1905,undated + + + + + + 50 + 193 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 58719, July 11, 1906,undated + + + + + + 50 + 194 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 102514, Nov. 20, 1906,undated + + + + + + 50 + 195 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 113266, Dec. 21, 1906,undated + + + + + + 50 + 196 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 4505- 89/ 134, 1907,undated + + + + + + 50 + 197 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 6658, Jan. 15, 1907 (Folder 1 of 2),undated + + + + + + 50 + 198 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 6658, Jan. 15, 1907 (Folder 2 of 2),undated + + + + + + 50 + 199 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 6681- 129, Jan. 17, 1907,undated + + + + + + 50 + 200 + Box 8 Menominee, Calendar documents, 1894-1909: BCIM Series 1 Box 58 Folder 5, Jan. 17, 1907,undated + + + + + + 50 + 201 + Box 8 Menominee, Calendar documents, 1894-1909: BCIM Series 1 Box 58 Folder 5, Jan. 19, 1907,undated + + + + + + 50 + 202 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 6658- 891163, Jan. 21, 1907,undated + + + + + + 50 + 203 + Box 8 Menominee, Calendar documents, 1894-1909: BCIM Series 1 Box 58 Folder 5, Jan. 21, 1907,undated + + + + + + 50 + 204 + Box 8 Menominee, Calendar documents, 1894-1909: BCIM Series 1 Box 58 Folder 5, Jan. 24, 1907,undated + + + + + + 50 + 205 + Box 8 Menominee, Calendar documents, 1894-1909: BCIM Series 1 Box 58 Folder 5, Jan. 28, 1907,undated + + + + + + 50 + 206 + Box 8 Menominee, Calendar documents, 1894-1909: BCIM Series 1 Box 58 Folder 5, Jan. 29, 1907,undated + + + + + + 50 + 207 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 11976, Feb. 2, 1907,undated + + + + + + 50 + 208 + Box 8 Menominee, Calendar documents, 1894-1909: BCIM Series 1 Box 58 Folder 5, Feb. 8, 1907,undated + + + + + + 50 + 209 + Box 8 Menominee, Calendar documents, 1894-1909: BCIM Series 1 Box 58 Folder 5, Feb. 12, 1907,undated + + + + + + 50 + 210 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 16869, Feb. 14, 1907,undated + + + + + + 50 + 211 + Box 8 Menominee, Calendar documents, 1894-1909: BCIM Series 1 Box 58 Folder 5, Feb. 27, 1907,undated + + + + + + 50 + 212 + Box 8 Menominee, Calendar documents, 1894-1909: BCIM Series 1 Box 58 Folder 5, April 6, 1907,undated + + + + + + 50 + 213 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 35624- 90/ 184, April 9, 1907,undated + + + + + + 50 + 214 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 59228, June 19, 1907,undated + + + + + + 50 + 215 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 63830, June 24, 1907,undated + + + + + + 50 + 216 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 59228, July 11, 1907,undated + + + + + + 50 + 217 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 63830, July 18, 1907,undated + + + + + + 50 + 218 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 59228, July 19, 1907,undated + + + + + + 50 + 219 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 63793, July 19, 1907,undated + + + + + + 50 + 220 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 67948, Aug. 5, 1907,undated + + + + + + 50 + 221 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 63830, Sept. 6, 1907,undated + + + + + + 50 + 222 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 63830- 1327/ 25, Oct. 10, 1907,undated + + + + + + 50 + 223 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 18385, March 14, 1908,undated + + + + + + 50 + 224 + Box 8 Menominee, Calendar documents, 1894-1909: LR- 01A 18385, March 23, 1908,undated + + + + + + 50 + 225 + Box 8 Menominee, Calendar documents, 1894-1909: CCF 21700- 1930, Menominee 339, March 28, 1908,undated + + + + + + 50 + 226 + Box 8 Menominee, Calendar documents, 1894-1909: BCIM Series 1 Box 62 Folder 8, Aug. 20, 1908,undated + + + + + + 50 + 227 + Box 8 Menominee, Calendar documents, 1894-1909: CCF 77755- 337, Dec. 19, 1908,undated + + + + + + 50 + 228 + Box 8 Menominee, Calendar documents, 1894-1909: CCF 52654- 339, July 2, 1909,undated + + + + + + 51 + 1 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: WI MSS Bu, Box 1, March 29, 1916,undated + + + + + + 51 + 2 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: Peter Sam US Mss 7E- WHS, Aug. 20, 1917,undated + + + + + + 51 + 3 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: BCIM Series 1 Box 131 Folder 14, July 8, 1922,undated + + + + + + 51 + 4 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: BCIM Series 1 Box 131 Folder 14, July 14, 1922,undated + + + + + + 51 + 5 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 5475- 1930/ 339. Nov. 16, 1929,undated + + + + + + 51 + 6 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 44291- 1929/ 339. Dec. 12, 1929,undated + + + + + + 51 + 7 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 13873- 1940/ 3043, March 26, 1940,undated + + + + + + 51 + 8 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 00- 1940/ 931. April 18, 1940,undated + + + + + + 51 + 9 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 43582- 1940/ 931, July 19, 1940,undated + + + + + + 51 + 10 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 68603- 1940/ 931, Oct. 14, 1940,undated + + + + + + 51 + 11 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 68603- 1940/ 931, Oct. 21, 1940,undated + + + + + + 51 + 12 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 72564- 1940/ 339, Oct. 23, 1940,undated + + + + + + 51 + 13 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 26525- 1940/ 170, Aug. 4, 1941,undated + + + + + + 51 + 14 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 45347- 1942/ 031, Oct. 17, 1942,undated + + + + + + 51 + 15 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 53284- 1942/ 054, April 13, 1943,undated + + + + + + 51 + 16 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 53284- 1942/ 054, June 26, 1943,undated + + + + + + 51 + 17 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 1943- 1942/ 339, May 1, 1945,undated + + + + + + 51 + 18 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 53284- 1942/ 054, Aug. 7, 1945 (Folder 1 of 2),undated + + + + + + 51 + 19 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 53284- 1942/ 054, Aug. 7, 1945 (Folder 2 of 2),undated + + + + + + 51 + 20 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 53284- 1946/ 054, May 13, 1947,undated + + + + + + 51 + 21 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: Whitehouse, J. L. 1947- 1949, History of the Wolf River, MS F902W85 WHS 1947- 1949,undated + + + + + + 51 + 22 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 3883- 1948/ 013, March 30, 1948,undated + + + + + + 51 + 23 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 53284- 1942/ 054, April 26, 1948,undated + + + + + + 51 + 24 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 53284- 1942/ 054, May 13, 1948,undated + + + + + + 51 + 25 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 16044- 1943/ 054, Oct. 14, 1948,undated + + + + + + 51 + 26 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 16044- 1943/ 054, Oct. 20, 1948,undated + + + + + + 51 + 27 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 16044- 1943/ 054, Oct. 3, 1950,undated + + + + + + 51 + 28 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 53284- 1942/ 054, April 24, 1951,undated + + + + + + 51 + 29 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ICC June 26, 1951,undated + + + + + + 51 + 30 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 53284- 1942/ 054, July 17, 1951,undated + + + + + + 51 + 31 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 00- 1953/ 054, May 15, 1953,undated + + + + + + 51 + 32 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 1940- 1957/ 320, Sept. 22, 1953,undated + + + + + + 51 + 33 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 17295- 1952/ 054, April 24, 1954,undated + + + + + + 51 + 34 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 18236- 1955/ 931.1, Feb. 28, 1955,undated + + + + + + 51 + 35 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: Box 68A.4937 Sept. 14, 1955, BIA 14/ 44-2-6 117, 1955,undated + + + + + + 51 + 36 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 11344- 1954/ 077. March 18, 1957,undated + + + + + + 51 + 37 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 00- 1953/ 054. Aug. 13, 1957,undated + + + + + + 51 + 38 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 12483- 1957/ 931. Aug. 30, 1957,undated + + + + + + 51 + 39 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 9114- 1957/ 131. June 18, 1958,undated + + + + + + 51 + 40 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 11344- 1954/ 011. Nov. 19, 1958,undated + + + + + + 51 + 41 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: CCF 4020- 1955/ 931. Feb. 19, 1959,undated + + + + + + 51 + 42 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: NAM T494 R.1 Treaty 30 March 1817,undated + + + + + + 51 + 43 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: NAM T494 R.1 Treaty 19 Aug. 1825,undated + + + + + + 51 + 44 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: NAM T494 R.1: 749- 753, 9-11-1825,undated + + + + + + 51 + 45 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: NAM T494 R.2, 10-24-1827,undated + + + + + + 51 + 46 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: NAM T494 R.3, Treaty 3 Sept. 1836,undated + + + + + + 51 + 47 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: NAM T494 R.3, 8-29-1836,undated + + + + + + 51 + 48 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: NAM T494 R.3, 10-29-1836,undated + + + + + + 51 + 49 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: NAM T494 R.4, Treaty 18 Oct. 1848,undated + + + + + + 51 + 50 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: T494 R.5, 5-12-1854,undated + + + + + + 51 + 51 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: NAM T494 R.5, Treaty 12 May 1859,undated + + + + + + 51 + 52 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: T494 R.5, 5-21-1854,undated + + + + + + 51 + 53 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: T494 R.5 5-20-1854,undated + + + + + + 51 + 54 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: NAM T494 R.6 Treaty 11 Feb 1856,undated + + + + + + 51 + 55 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA Nov. 1, 1828, 20(2) S. Doc 1 Vol. 1 Ser 181: 92-99, 1828,undated + + + + + + 51 + 56 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA Nov. 17, 1829, 21 (1) H. Doc 2 Vol. 1 Ser 195: 160- 178, 1829,undated + + + + + + 51 + 57 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA Nov. 26, 1830, 21 (2) H. Doc 2 Vol. 1. Ser 206: 160- 172, 1830,undated + + + + + + 51 + 58 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA Nov. 19, 1831, 22 (1) H. Doc 2 Vol.1 Ser 216: 171- 180, 1831,undated + + + + + + 51 + 59 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA Nov. 22, 1832, 22 (2) H. Doc 2 Vol. 1 Ser 233: 159- 177, 1832,undated + + + + + + 51 + 60 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA Nov. 28, 1833, 23 (1) H. Doc 1 Vol. 1 Ser 254: 168- 190, 1833,undated + + + + + + 51 + 61 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA Nov. 25, 1834, 23 (2) H Doc 2 Vol. 1 Ser 271: 240- 272, 1834,undated + + + + + + 51 + 62 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA Nov. 24, 1835, 24 (1) S Doc 1, Vol. 1 Ser 279: 273- 298, 1835,undated + + + + + + 51 + 63 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA Dec. 1, 1836, 24 (2) H. Doc 2. Vol. 1, Ser 301: 367- 408, 1836,undated + + + + + + 51 + 64 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA Dec. 1, 1837, 25 (2) H. Doc 3 Vol. 1 Ser 321: 565- 578, 1837,undated + + + + + + 51 + 65 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA Nov. 25, 1838 25 (3) H. Doc 2 Vol. 1 Ser 344: 410- 428, 441- 470, 1838,undated + + + + + + 51 + 66 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1841,undated + + + + + + 51 + 67 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1840,undated + + + + + + 51 + 68 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1842,undated + + + + + + 51 + 69 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1843,undated + + + + + + 51 + 70 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1844,undated + + + + + + 51 + 71 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1845 (Folder 1 of 2),undated + + + + + + 51 + 72 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1845 (Folder 2 of 2),undated + + + + + + 51 + 73 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1846,undated + + + + + + 51 + 74 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1847,undated + + + + + + 51 + 75 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1848,undated + + + + + + 51 + 76 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1849,undated + + + + + + 51 + 77 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1850,undated + + + + + + 51 + 78 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1851,undated + + + + + + 51 + 79 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1852,undated + + + + + + 51 + 80 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1853,undated + + + + + + 51 + 81 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1854,undated + + + + + + 51 + 82 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1855,undated + + + + + + 51 + 83 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1856,undated + + + + + + 51 + 84 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1857,undated + + + + + + 51 + 85 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1858,undated + + + + + + 51 + 86 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1859,undated + + + + + + 51 + 87 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1860,undated + + + + + + 51 + 88 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1861,undated + + + + + + 51 + 89 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1862,undated + + + + + + 51 + 90 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1863,undated + + + + + + 51 + 91 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1864,undated + + + + + + 51 + 92 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1865,undated + + + + + + 51 + 93 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1866,undated + + + + + + 51 + 94 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1867,undated + + + + + + 51 + 95 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1868,undated + + + + + + 51 + 96 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1869,undated + + + + + + 51 + 97 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1870,undated + + + + + + 51 + 98 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1871,undated + + + + + + 51 + 99 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1872,undated + + + + + + 51 + 100 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1873,undated + + + + + + 51 + 101 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1874,undated + + + + + + 51 + 102 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1875,undated + + + + + + 51 + 103 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1876,undated + + + + + + 51 + 104 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1877,undated + + + + + + 51 + 105 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1878,undated + + + + + + 51 + 106 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1879,undated + + + + + + 51 + 107 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1880,undated + + + + + + 51 + 108 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1881,undated + + + + + + 51 + 109 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1882,undated + + + + + + 51 + 110 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1883,undated + + + + + + 51 + 111 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1884,undated + + + + + + 51 + 112 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1885,undated + + + + + + 51 + 113 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1886,undated + + + + + + 51 + 114 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1887,undated + + + + + + 51 + 115 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1888,undated + + + + + + 51 + 116 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1889,undated + + + + + + 51 + 117 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1890,undated + + + + + + 51 + 118 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1891,undated + + + + + + 51 + 119 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1892,undated + + + + + + 51 + 120 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1893,undated + + + + + + 51 + 121 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1894,undated + + + + + + 51 + 122 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1895,undated + + + + + + 51 + 123 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1896,undated + + + + + + 51 + 124 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1897,undated + + + + + + 51 + 125 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1898,undated + + + + + + 51 + 126 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1899,undated + + + + + + 51 + 127 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1900,undated + + + + + + 51 + 128 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1902,undated + + + + + + 51 + 129 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1901,undated + + + + + + 51 + 130 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1903,undated + + + + + + 51 + 131 + Box 9 Menominee, Calendar documents, 1910-1959, ARCOIAs, treaties: ARCOIA 1905,undated + + + + + + 52 + 1 + Box 10 Menominee, Maps, published sources: Collection of the State Hist. Soc. Of WI, Boyd Papers, Vol. 12,undated + + + + + + 52 + 2 + Box 10 Menominee, Maps, published sources: Titus, W. Butte des Morts,undated + + + + + + 52 + 3 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Bureau of Catholic Indian Missions Marquette University Originals, BCIM,undated + + + + + + 52 + 4 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, M. I. P. Menom. Indian Papers. WI. MSS. BU, Box 1,undated + + + + + + 52 + 5 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, W. H. S. (WI Hist. Society) Originals, March 1, 1993,undated + + + + + + 52 + 6 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, W. H. S. SC207,undated + + + + + + 52 + 7 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, W. H. S. Gx- 83- W. 1821, Map- N America- E of Missippi., 1821,undated + + + + + + 52 + 8 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, W. H. S.- GX 902- U. 1829, MAP- Treaty Boundaries, 1829,undated + + + + + + 52 + 9 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, W. H. S. – GX. 902, 1830, Map- Territories: MI and WI, 1830,undated + + + + + + 52 + 10 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, W. H. S. Gx. 902- D4, 1835, MAP- Surveyed Part/ WI Territory, 1835,undated + + + + + + 52 + 11 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, W. H. S. USCL. Mss. 477, Boxes 1- 2,undated + + + + + + 52 + 12 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Stephen Herzberg, Menominee Indians from Treaty to Termination Bloomfield, L. 1928. Menomini Texts, Pub of the Amer Ethno Soc. Vol. XII. New York: Stechert- Co., 1928,undated + + + + + + 52 + 13 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, CSHSW Vol. IV, pp. 153- 195, 1906, Recollections of Ebenezer Childs, 1906,undated + + + + + + 52 + 14 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Ellis- Coming of New York Indians Collection State Hist. Soc. Of WI,undated + + + + + + 52 + 15 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Morse, Jedidiah, New Haven, Howe and Spaulding. 1822, “Report to the Sec./ War- US on Indian Affairs; Comprising a Narrative of a Tour.” 1822,undated + + + + + + 52 + 16 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Jesuit Relations and Allied Documents Vol. XVIII p. 231. Thwaites (ed.) 1959, New York: Pageant Book Co. 1959,undated + + + + + + 52 + 17 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, J. Kay- Fur Trade and N. American Population Growth, 1984,undated + + + + + + 52 + 18 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Mason, R. In Search of the Archaeological Menominee,undated + + + + + + 52 + 19 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Titus, W. Calumet,undated + + + + + + 52 + 20 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Quaife, Panic of 1862 in WI,undated + + + + + + 52 + 21 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, B. Thompson- Necedah Days,undated + + + + + + 52 + 22 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Campisi, Jack, Oneida in WI,undated + + + + + + 52 + 23 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, W. Titus- Menominee Ind.,undated + + + + + + 52 + 24 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Letters of Fr. J. Martin Henni,undated + + + + + + 52 + 25 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, A. Smith- D. Whitney, Pioneer Businessman,undated + + + + + + 52 + 26 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Wojta- Town of Two Creeks, Manitowoc Co. WI,undated + + + + + + 52 + 27 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Alfred Copes, Green Bay Diary, Pt. 1-2, 1849,undated + + + + + + 52 + 28 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, W. Haygood- Disappearance of Casper Partridge,undated + + + + + + 52 + 29 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Oneida Claims, 1821-1822, ICC Filings, 1821- 1822,undated + + + + + + 52 + 30 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, C. Butterfield, History of WI,undated + + + + + + 52 + 31 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Hist of Sheboygan County,undated + + + + + + 52 + 32 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Martin- History of Door County,undated + + + + + + 52 + 33 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Larson- History of Winnebago County,undated + + + + + + 52 + 34 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Willard, Keyes- Travel JL Green Bay 1817,undated + + + + + + 52 + 35 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Father Gachet- Fifty Years in America JL, 1859,undated + + + + + + 52 + 36 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Mason- Menominee Origins,undated + + + + + + 52 + 37 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, D. Beck- Sturgeon in Menominee Hist.,undated + + + + + + 52 + 38 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, McLenegan- Pioneer Life in the Fox River Valley,undated + + + + + + 52 + 39 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Collections WI State Hist. Soc. Biddle Recollections- Green Bay,undated + + + + + + 52 + 40 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Collections WI State Hist. Soc. Grignon Recollections,undated + + + + + + 52 + 41 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Collections of WI State Hist. Soc. Whittlesey Recollections, 1832,undated + + + + + + 52 + 42 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Haeger, John. Town growth on the W Shore of L. MI,undated + + + + + + 52 + 43 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Treaty w/ Menominee, 1832,undated + + + + + + 52 + 44 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Partial map WI Territory; notes on which Indians signed 1807, 1808 and 1836 treaties,undated + + + + + + 52 + 45 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Collections of State Hist. Soc. Indian deeds 1793- 1836,undated + + + + + + 52 + 46 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, WI Hist. Magazine “Menominee Ind. W. H. Titus MD”,undated + + + + + + 52 + 47 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, WI Hist. Magazine, "Solomon Juneau",undated + + + + + + 52 + 48 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, WI History Magazine, “JL of Father Anthony Gachet, 1859”,undated + + + + + + 52 + 49 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, WI Hist. Soc. Louise Kellogg (Fur Trade- Indians),undated + + + + + + 52 + 50 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, WI Hist. Soc. Louis Kellogg, etc. (Territorial Foundations),undated + + + + + + 52 + 51 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, WI Hist. Soc. Picture Gallery (Menominee Chiefs),undated + + + + + + 52 + 52 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Stambaugh 1900 Report on the Quality and Conditions of WI Terry 1831. Coll of State Hist Soc of WI, 1900,undated + + + + + + 52 + 53 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Kellogg, Louis Phelps. “Menom. Treaty at Red Cedars, 1836.” WI Academy of Science, Arts and Letters. Vol. XXVI, Madison, 1931,undated + + + + + + 52 + 54 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, I. Lapham- Milwaukee to Green Bay in 1843,undated + + + + + + 52 + 55 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, 49- 382 Appraisal of Royce Area 242- Dec. 1, 1966,undated + + + + + + 52 + 56 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Mason, Carol L. G. Cown’s Trading Post Ledgers,undated + + + + + + 52 + 57 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, Overstreet, D. Menominee Prehistory,1996,undated + + + + + + 52 + 58 + Box 10 Menominee, Maps, published sources: BIBLIOGRAPHY, J. Kay, 1979, WI Indian Hunting Patterns, 1634- 1836, 1979,undated + + + + + + 53 + 1 + Box 11 Menominee, Cleland report, reference books: Compiled List of Cited References,Sept. 5, 1996 + + + + + + 53 + 2 + Box 11 Menominee, Cleland report, reference books: Baird, H. 1906 Recoll. of Early Hist of N. WI Coll of Hist Soc WI Vol. IV: 213, 1906,undated + + + + + + 53 + 3 + Box 11 Menominee, Cleland report, reference books: Beck, D. Import of Sturgeon in Menom. History as Viewed Through Some Docum. Sources Manu. on file Treaty Protect Office. Menominee Tribe,undated + + + + + + 53 + 4 + Box 11 Menominee, Cleland report, reference books: Bloomfield, Leonard. 1928. Menom. Texts Pub. American Ethnology Soc. Vol. 12 New York: G. E. Stechert and Co., 1928,undated + + + + + + 53 + 5 + Box 11 Menominee, Cleland report, reference books: Boyd Papers of Indian Agent Boyd 1832, Aug. 13, 1832. G. Boyd to G. Porter, Coll of the Soc WI Vol. XII, 1832,undated + + + + + + 53 + 6 + Box 11 Menominee, Cleland report, reference books: Childs, Elenezer, 1906, Recollections of WI Since 1820. WI Hist. Coll. Vol. IV, 1906,undated + + + + + + 53 + 7 + Box 11 Menominee, Cleland report, reference books: Cleland, C. E. 1982. “Inland Shore Fishery N. Great Lakes: Der Importance Prehist.” American Antiquity 47 (4), 1982,undated + + + + + + 53 + 8 + Box 11 Menominee, Cleland report, reference books: Cleland, C. 1992, Rites of Conquest, 1992,undated + + + + + + 53 + 9 + Box 11 Menominee, Cleland report, reference books: Editor, 1895. Territorial Census 1836 Pop. Brown County. June 1830, Coll State Hist. Soc. WI XIII, 1895,undated + + + + + + 53 + 10 + Box 11 Menominee, Cleland report, reference books: Ellis, A. G. 1903, Advent N. York Ind. WI. Coll. State Hist Soc WI II: 415- 449, 1903,undated + + + + + + 53 + 11 + Box 11 Menominee, Cleland report, reference books: Goddard, I. 1978. Central Algonquian Lang. Handbook N. American Ind., Vol. 15, Northeast B. Trigger, Vol. e. d. Washington D.C.: Smithsonian Institution, 1978,undated + + + + + + 53 + 12 + Box 11 Menominee, Cleland report, reference books: Grignon, A. 190? Seventy- Two Yrs Recoll. WI. Coll State Hist Soc WI III, 226- 230, 190?,undated + + + + + + 53 + 13 + Box 11 Menominee, Cleland report, reference books: Haeger, John, 1969. W. Town Growth: A Study Dev. Twns W. Shore Lk. MI, 1815- 1845. Unpub. PH. D dissertation. Loyola Univ., Chicago, 1969,undated + + + + + + 53 + 14 + Box 11 Menominee, Cleland report, reference books: Hickerson, H. 1970. Chippewa and their Neighbors, Prospect Heights, ILL: Waveland Press, 1970,undated + + + + + + 53 + 15 + Box 11 Menominee, Cleland report, reference books: Hoffman, Walter, J. 1896, Menom. Ind. 14th Annual Report Bureau American Ethnology. Smithsonian Institute, Washington: US Gov. Printing Office, 1896,undated + + + + + + 53 + 16 + Box 11 Menominee, Cleland report, reference books: Humins, John, George Boyd: Ind. Agent Upper G. Lks, 1819- 1842. Unpub. Ph. D Disser. 1975, MSU: E. Lansing,undated + + + + + + 53 + 17 + Box 11 Menominee, Cleland report, reference books: Jesuits Relations and Allied Doc. 1640 Vol. XVIII p. 231, R. G. Thwaites, ed. 1899 73 vols. Cleveland: Burrows, 1899,undated + + + + + + 53 + 18 + Box 11 Menominee, Cleland report, reference books: Kay, J. 1979. WI Indian Hunt Patterns, 1634- 1636. Annals Association American Geographers, Vol. 69, No. 3, 1979,undated + + + + + + 53 + 19 + Box 11 Menominee, Cleland report, reference books: Kay, J. 1984. “Fur Trade and Native American Pop. Growth”, Ethnohistory 31(4): 265-287, 1984,undated + + + + + + 53 + 20 + Box 11 Menominee, Cleland report, reference books: Keesing, F. 1987, Menom. Indians of WI Madison: Univ. of WI Press, 1987,undated + + + + + + 53 + 21 + Box 11 Menominee, Cleland report, reference books: Kellogg, L. P. 1931 “Menominee Treaty Cedars, 1836” Transactions of the WI Academy Science, Arts, Letters, Vol. XXVI, 1931,undated + + + + + + 53 + 22 + Box 11 Menominee, Cleland report, reference books: Kinzie, Juliette M. 1992, Wau-Bun, the “Early Days” in the N-W Urbana Univ. Illinois Press, 1992,undated + + + + + + 53 + 23 + Box 11 Menominee, Cleland report, reference books: Kuehnle, Walter, 1966, Appraisal Royce Area 242 States WI and MN Docket No. 18C before ICC Dept. Justice, Washington D. C., 1966,undated + + + + + + 53 + 24 + Box 11 Menominee, Cleland report, reference books: Lapham, Increase A. 1925- 26. “Winter’s Journey from Milwaukee to Green Bay, 1843”, WI Mag of Hist, Vol. IX: 96, 1925- 1926,undated + + + + + + 53 + 25 + Box 11 Menominee, Cleland report, reference books: Mason, C. I. 1988, Intro WI, Ind. Salem, WI: Sheffield Pub. Co., 1988,undated + + + + + + 53 + 26 + Box 11 Menominee, Cleland report, reference books: Mason, R. 1986, Rock Island, Hist. Ind. Arch. N. Lake MI. Basin. Midcontinental JL Arch. Special Paper No. 6, Kent State Univ. Press, 1986,undated + + + + + + 53 + 27 + Box 11 Menominee, Cleland report, reference books: Morse, Jediadiah, 1822, Report to Secretary of War on Indian Affairs, New Haven: S Converse, 1822,undated + + + + + + 53 + 28 + Box 11 Menominee, Cleland report, reference books: Ostergren, R. C. 1981, Geographic Perspective and Hist. Settlement Upper MidWest, Upper MidWest Hist. Vol. 1, 1981,undated + + + + + + 53 + 29 + Box 11 Menominee, Cleland report, reference books: Ourada, P. 1979, Menom. Ind. Univ. OK Press: Norman, 1979,undated + + + + + + 53 + 30 + Box 11 Menominee, Cleland report, reference books: Peterson, Jacqueline. 1978. “Prelude to Red River: A Social Portrait of the Great Lakes Metis” Ethnohist. Vol. 25, No. 1, 1978,undated + + + + + + 53 + 31 + Box 11 Menominee, Cleland report, reference books: Prucha, P. 1986, Great Father, 1986,undated + + + + + + 53 + 32 + Box 11 Menominee, Cleland report, reference books: Rodgers, Mary Black. 1986. “Varieties of “Starving:” Semantics Survival Subartic Fur Trade, 1750- 1850”. Ethnohistory, Vol. 33, No. 4, 1986,undated + + + + + + 53 + 33 + Box 11 Menominee, Cleland report, reference books: Satz, R. N. 1979, Carey Harris. COIA, 1847- 1977. Lincoln Univ, NEB Press, 1979,undated + + + + + + 53 + 34 + Box 11 Menominee, Cleland report, reference books: Smith, Alice, 1973, Hist. WI Vol. 1, Madison: State HS, WI, 1973,undated + + + + + + 53 + 35 + Box 11 Menominee, Cleland report, reference books: Stambaugh, 1900, Report on the Qual. and Condition of WI Terry. 1831, Coll of State Hist. Soc. WI, 1900,undated + + + + + + 53 + 36 + Box 11 Menominee, Cleland report, reference books: Tanner, H. H. 1987, Atlas Gr. Lks. Indian Hist. Norman Univ. OK Press, 1987,undated + + + + + + 53 + 37 + Box 11 Menominee, Cleland report, reference books: Thwaites, Rubin G. 1911. Fur Trade Wis. Agreement A. Grignon et al. and R. Crooks, Aug. 24, 1821, Coll. Hist. Soc. State WI Vol. XX, 1911,undated + + + + + + 53 + 38 + Box 11 Menominee, Cleland report, reference books: Trennert, R. A. 1979, William Medill (1845- 49) in the COIA 1824- 1977, R. Kvasnicka and Viola (ed) Lincoln: Univ. NEB Press, 1979,undated + + + + + + 53 + 39 + Box 11 Menominee, Cleland report, reference books: Whittlesey, Charles. 1903. Recollections of Tour Through WI, 1832. Coll. Of the Hist. Soc. State WI Vol. 1, 1903,undated + + + + + + 53 + 40 + Box 11 Menominee, Cleland report, reference books: GWL- CHS Box 6, Folder 2, Mss 2359. [1821?]. Partial Document, 1821,undated + + + + + + 53 + 41 + Box 11 Menominee, Cleland report, reference books: NAM M668 R.4: 312- 317, March 30, 1817,undated + + + + + + 53 + 42 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.315: 3-7, Sept. 1, 1824,undated + + + + + + 53 + 43 + Box 11 Menominee, Cleland report, reference books: NAM M21 R.1: 377, Feb. 25, 1825,undated + + + + + + 53 + 44 + Box 11 Menominee, Cleland report, reference books: NAM M21 R.1: 393, March 8, 1825,undated + + + + + + 53 + 45 + Box 11 Menominee, Cleland report, reference books: NAM T494 R.2, Aug. 6, 1827,undated + + + + + + 53 + 46 + Box 11 Menominee, Cleland report, reference books: NAM M21 R.4: 253, Jan. 15, 1828,undated + + + + + + 53 + 47 + Box 11 Menominee, Cleland report, reference books: NAM M21 R.6: 209, Dec. 28, 1829,undated + + + + + + 53 + 48 + Box 11 Menominee, Cleland report, reference books: NAM M21 R.6: 254, Feb. 6, 1830,undated + + + + + + 53 + 49 + Box 11 Menominee, Cleland report, reference books: NAM M21 R.6: 424, May 18, 1830,undated + + + + + + 53 + 50 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.315: 207- 217, June 9, 1830,undated + + + + + + 53 + 51 + Box 11 Menominee, Cleland report, reference books: NAM M21 R.6: 463- 7, June 9, 1830,undated + + + + + + 53 + 52 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.315: 289- 300, Sept. 5, 1830,undated + + + + + + 53 + 53 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.315: 147- 148, 158- 189, Oct. 30, 1830,undated + + + + + + 53 + 54 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.315: 608- 610, March 2, 1831,undated + + + + + + 53 + 55 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.315: 354- 356, April 8, 1831,undated + + + + + + 53 + 56 + Box 11 Menominee, Cleland report, reference books: NAM T494 R.2, July 18, 1831,undated + + + + + + 53 + 57 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.315: 611- 622, Aug. 1, 1831,undated + + + + + + 53 + 58 + Box 11 Menominee, Cleland report, reference books: NAM T494 R.2, Aug. 4, 1831 (Folder 1 of 2),undated + + + + + + 53 + 59 + Box 11 Menominee, Cleland report, reference books: NAM T494 R.2, Aug. 4, 1831 (Folder 2 of 2),undated + + + + + + 53 + 60 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.315: 526- 540, Aug. 16, 1831,undated + + + + + + 53 + 61 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.315: 357- 358, Aug. 26, 1831,undated + + + + + + 53 + 62 + Box 11 Menominee, Cleland report, reference books: GWL- CHS, Box 1, folder 6, July 23, 1832,undated + + + + + + 53 + 63 + Box 11 Menominee, Cleland report, reference books: GWL- CHS, Box 1, folder 6, Sept. 1, 1832,undated + + + + + + 53 + 64 + Box 11 Menominee, Cleland report, reference books: NAM T494 R.2, Sept. 11, 1832,undated + + + + + + 53 + 65 + Box 11 Menominee, Cleland report, reference books: NAM T494 R.2: 65- 66, Jan. 24, 1833,undated + + + + + + 53 + 66 + Box 11 Menominee, Cleland report, reference books: NAM M21 R.10: 251- 254, April 16, 1833,undated + + + + + + 53 + 67 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.316: 62- 64, Sept. 25, 1834,undated + + + + + + 53 + 68 + Box 11 Menominee, Cleland report, reference books: NAM M21 R.14: 17- 21, Oct. 8, 1834,undated + + + + + + 53 + 69 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.316: 177- 181, Dec. 5, 1834,undated + + + + + + 53 + 70 + Box 11 Menominee, Cleland report, reference books: NAM M21 R.14: 281, Dec. 17, 1834,undated + + + + + + 53 + 71 + Box 11 Menominee, Cleland report, reference books: NAM M21 R.14: 282- 285, Dec. 18, 1834,undated + + + + + + 53 + 72 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.316: 193- 195, Dec. 24, 1834,undated + + + + + + 53 + 73 + Box 11 Menominee, Cleland report, reference books: GWL- CHS Box 1, folder 7, March 7, 1835,undated + + + + + + 53 + 74 + Box 11 Menominee, Cleland report, reference books: NAM M21 R15: 184- 186, March 20, 1835,undated + + + + + + 53 + 75 + Box 11 Menominee, Cleland report, reference books: NAM M21 R.17: 116, Sept. 22, 1835,undated + + + + + + 53 + 76 + Box 11 Menominee, Cleland report, reference books: NAM M21 R.17: 145. Sept. 29, 1835,undated + + + + + + 53 + 77 + Box 11 Menominee, Cleland report, reference books: NAM M21 R.17: 274, Nov. 16, 1835,undated + + + + + + 53 + 78 + Box 11 Menominee, Cleland report, reference books: NAM M21 R.18: 143, March 7, 1836,undated + + + + + + 53 + 79 + Box 11 Menominee, Cleland report, reference books: NAM M668 R.8: 211- 234, Aug. 29, 1836,undated + + + + + + 53 + 80 + Box 11 Menominee, Cleland report, reference books: NAM M21 R.20: 339, Dec. 27, 1836,undated + + + + + + 53 + 81 + Box 11 Menominee, Cleland report, reference books: ARCOIA, Dec. 1, 1837, 25 (2) H. Doc. 3 Vol. 1 Ser. 321: 565- 578, 1837,undated + + + + + + 53 + 82 + Box 11 Menominee, Cleland report, reference books: NAM M21 R.21: 234- 5, March 31, 1837,undated + + + + + + 53 + 83 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.318: 18- 19, July 27, 1837,undated + + + + + + 53 + 84 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.317: 237- 238, Feb. 28, 1838,undated + + + + + + 53 + 85 + Box 11 Menominee, Cleland report, reference books: NAM M21 R.25: 154, Aug. 30, 1838,undated + + + + + + 53 + 86 + Box 11 Menominee, Cleland report, reference books: GWL- CHS Box 2, folder 3, Sept. 3, 1839,undated + + + + + + 53 + 87 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.317: 516- 526, Oct. 31, 1839,undated + + + + + + 53 + 88 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.318: 240- 265, Oct. 31, 1840,undated + + + + + + 53 + 89 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.318: 472- 482, July 26, 1841,undated + + + + + + 53 + 90 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.318: 542, Sept. 30, 1841,undated + + + + + + 53 + 91 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.320: 154- 156, Feb. 23, 1842,undated + + + + + + 53 + 92 + Box 11 Menominee, Cleland report, reference books: NAM M21 R.32: 89, April 7, 1842,undated + + + + + + 53 + 93 + Box 11 Menominee, Cleland report, reference books: GWL- CHS, Box 2, Folder 6, Oct. 30, 1842,undated + + + + + + 53 + 94 + Box 11 Menominee, Cleland report, reference books: ARCOIA 1843,undated + + + + + + 53 + 95 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.318: 902, Jan. 19, 1843,undated + + + + + + 53 + 96 + Box 11 Menominee, Cleland report, reference books: GWL- CHS, Box 3, folder 3, Oct. 17, 1843,undated + + + + + + 53 + 97 + Box 11 Menominee, Cleland report, reference books: GWL- CHS Box 3, Folder 3, Dec. 14, 1843,undated + + + + + + 53 + 98 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.319: 168- 170, Feb. 16, 1844,undated + + + + + + 53 + 99 + Box 11 Menominee, Cleland report, reference books: ARCOIA 1845,undated + + + + + + 53 + 100 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.319: 370- 374, July 7, 1845,undated + + + + + + 53 + 101 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.319: 345- 348, Sept. 24, 1845,undated + + + + + + 53 + 102 + Box 11 Menominee, Cleland report, reference books: ARCOIA 1846,undated + + + + + + 53 + 103 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.319: 640- 645, April 15, 1846,undated + + + + + + 53 + 104 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.319: 688- 689, Aug. 10, 1846,undated + + + + + + 53 + 105 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.319: 695- 696, Sept. 10, 1846,undated + + + + + + 53 + 106 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.319: 692- 694, Sept. 26, 1846,undated + + + + + + 53 + 107 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.949, Nov. 23, 1846,undated + + + + + + 53 + 108 + Box 11 Menominee, Cleland report, reference books: NAM M21 R.39: 90, Dec. 31, 1846,undated + + + + + + 53 + 109 + Box 11 Menominee, Cleland report, reference books: ARCOIA 1847,undated + + + + + + 53 + 110 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.949 1847,undated + + + + + + 53 + 111 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.319: 744- 746, 1847,undated + + + + + + 53 + 112 + Box 11 Menominee, Cleland report, reference books: GWL- CHS Box 4, folder 4, Jan. 28, 1847,undated + + + + + + 53 + 113 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.319: 740- 741, Oct. 4, 1847,undated + + + + + + 53 + 114 + Box 11 Menominee, Cleland report, reference books: NAM M21 R.40, Oct. 18, 1847,undated + + + + + + 53 + 115 + Box 11 Menominee, Cleland report, reference books: NAM M21 R.40 Oct. 21, 1847,undated + + + + + + 53 + 116 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.320: 157- 159, March 30, 1848,undated + + + + + + 53 + 117 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.320: 30- 34, June 2, 1848,undated + + + + + + 53 + 118 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.320: 27- 29. June 3, 1848,undated + + + + + + 53 + 119 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.320: 35- 37, July 20, 1848,undated + + + + + + 53 + 120 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.320: 88- 90, Sept. 6, 1848,undated + + + + + + 53 + 121 + Box 11 Menominee, Cleland report, reference books: NAM M21 R.41, Sept. 9, 1848,undated + + + + + + 53 + 122 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.320: 82- 84, Nov. 11, 1848,undated + + + + + + 53 + 123 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.320: 967- 971, Dec. 12, 1848,undated + + + + + + 53 + 124 + Box 11 Menominee, Cleland report, reference books: ARCOIA 1849,undated + + + + + + 53 + 125 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.320: 1001- 1003, May 29, 1849,undated + + + + + + 53 + 126 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.320: 295- 304, July 25, 1849,undated + + + + + + 53 + 127 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.321: 184- 187, Aug. 27, 1849,undated + + + + + + 53 + 128 + Box 11 Menominee, Cleland report, reference books: HSB WHS WI Mss V Box 2, Aug. 28, 1849,undated + + + + + + 53 + 129 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.320: 990, Oct. 9, 1849,undated + + + + + + 53 + 130 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.320: 995- 996, Oct. 10, 1849,undated + + + + + + 53 + 131 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.320: 997- 998, Oct. 15, 1849,undated + + + + + + 53 + 132 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.321: 123- 125, March 22, 1850,undated + + + + + + 53 + 133 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.321: 96- 99, March 30, 1850,undated + + + + + + 53 + 134 + Box 11 Menominee, Cleland report, reference books: GWL- CHS Box 4 folder 6, May 27, 1850,undated + + + + + + 53 + 135 + Box 11 Menominee, Cleland report, reference books: GWL- CHS Box 4 folder 6, June 10, 1850,undated + + + + + + 53 + 136 + Box 11 Menominee, Cleland report, reference books: HSB- WHS WI Mss V Box 2, Aug. 1, 1850,undated + + + + + + 53 + 137 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.320: 770- 772, Aug. 1, 1850,undated + + + + + + 53 + 138 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.320: 773- 777, Aug. 5, 1850,undated + + + + + + 53 + 139 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.320: 784- 799, Aug. 5, 1850,undated + + + + + + 53 + 140 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.320: 972- 973. Oct. 1, 1850,undated + + + + + + 53 + 141 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.320: 936- 966, Oct. 11, 1850,undated + + + + + + 53 + 142 + Box 11 Menominee, Cleland report, reference books: ARCOIA 1851,undated + + + + + + 53 + 143 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.321: 76- 80, 1851,undated + + + + + + 53 + 144 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.321: 277- 279, Jan. 8, 1851,undated + + + + + + 53 + 145 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.321: 340- 346, March 1, 1851,undated + + + + + + 53 + 146 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.321: 189- 191, March 22, 1851,undated + + + + + + 53 + 147 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.321: 272- 274, May 10, 1851,undated + + + + + + 53 + 148 + Box 11 Menominee, Cleland report, reference books: GWL- CHS Box 4 folder 8, July 8, 1851,undated + + + + + + 53 + 149 + Box 11 Menominee, Cleland report, reference books: GWL- CHS Box 4 folder 8, Sept. 29, 1851,undated + + + + + + 53 + 150 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.321: 404- 406, Oct. 2, 1851,undated + + + + + + 53 + 151 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.321: 628- 630, April 1, 1852,undated + + + + + + 53 + 152 + Box 11 Menominee, Cleland report, reference books: GWL- CHS Box 5 folder 3, Oct. 3, 1852,undated + + + + + + 53 + 153 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.321: 594- 596, Dec. 3, 1852,undated + + + + + + 53 + 154 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.322: 286- 287, Feb. 1, 1853,undated + + + + + + 53 + 155 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.322: 177- 179, July 14, 1853,undated + + + + + + 53 + 156 + Box 11 Menominee, Cleland report, reference books: Report of Senator Walker to the US Senate, Rep Com No. 410, 32nd Cong 2d Session (1853), 1853,undated + + + + + + 53 + 157 + Box 11 Menominee, Cleland report, reference books: NAM M234 R.322: 409- 411, May 30, 1854,undated + + + + + + 53 + 158 + Box 11 Menominee, Cleland report, reference books: ARCOIA 1855,undated + + + + + + 53 + 159 + Box 11 Menominee, Cleland report, reference books: ARCOIA 1856,undated + + + + + + 54 + 1 + Box 12 Menominee, Court documents: Brief in Support to Motion to Intervene Men. Ind. v. State WI,undated + + + + + + 54 + 2 + Box 12 Menominee, Court documents: Brief in Opposition To Motion to Interv. Man. v. WI,undated + + + + + + 54 + 3 + Box 12 Menominee, Court documents: Plaintiff’s Complaint for Declaratory and Injunctive Relief,undated + + + + + + 54 + 4 + Box 12 Menominee, Court documents: Plaintiff’s First Amended Complaint for Declaratory and Injunctive Relief,undated + + + + + + 54 + 5 + Box 12 Menominee, Court documents: Defendant’s Reply Brief in Support of Motion to Dismiss,undated + + + + + + 54 + 6 + Box 12 Menominee, Court documents: Defendant’s Second Memorandum in Support of Motion to Reconsider Menominee v. Thompson,undated + + + + + + 54 + 7 + Box 12 Menominee, Court documents: Opinion and Order, Menominee v. WI,Feb. 26, 1996 + + + + + + 54 + 8 + Box 12 Menominee, Court documents: Plaintiff’s Reply Memorandum Brief in Opposition to Defendant’s Second Memorandum in Support of Motion to Reconsider,undated + + + + + + 54 + 9 + Box 12 Menominee, Court documents: Bound volume, US Dist. Court Western Dist. of WI, Case No. 95 C 0030 C, Menominee Indian Tribe of WI, v. Thompson, et al., Attachments to Menominee Indian Tribe of WI’s answers to Defendant’s first set of interrogatories and request for production of documents, contention interrogatories, under the Court’s decision of Feb. 26, 1996, and relating to Judicial Estoppel, Volume II,1996 + + + + + + 54 + 10 + Box 12 Menominee, Court documents: Bound volume, US Dist. Court Western Dist. of WI, Case No. 95 C 0030 C, Menominee Indian Tribe of WI, v. Thompson, et al., Attachments to Plaintiff Menominee Indian Tribe of WI’s answers to Defendant’s first set of interrogatories and request for production of documents, contention interrogatories, under the Court’s decision of Feb. 26, 1996, and relating to Judicial Estoppel, Volume IV (oversized documents),1996 + + + + + + 54 + 11 + Box 12 Menominee, Court documents: Letter to: Charles D. Hoornstra, Letter from: Greene, Meyer and McElroy Re: Menominee Indian Tribe of WI v. Thompson,June 3, 1996 + + + + + + 54 + 12 + Box 12 Menominee, Court documents: US Dist. Court Western Dist. of WI, Case No. 95 C 0030 C, Menominee Indian Tribe of WI, Plaintiff, v. Thompson, et al., Plaintiff Menominee Indian Tribe of WI’s First set of amended answers,June 3, 1996 + + + + + + 54 + 13 + Box 12 Menominee, Court documents: US Dist. Court Western Dist. of WI, Case No. 95 C 0030 C, Menominee Indian Tribe of WI v. Thompson, et al., Defendants’ brief and appendix,undated + + + + + + 54 + 14 + Box 12 Menominee, Court documents: Bound volume, US Dist. Court Western Dist. of WI, Case No. 95 C 0030 C, Menominee Indian Tribe of WI, Plaintiff, v. Thompson, et al., defendants Menominee Indian Tribe of WI’s memorandum brief,Feb. 26, 1996 + + + + + + 54 + 15 + Box 12 Menominee, Court documents: Bound volume, US Dist. Court Western Dist. of WI, Case No. 95 C 0030 C, Menominee Indian Tribe of WI, Plaintiff, v. Thompson, et al., Attachments to Plaintiff Menominee Indian Tribe of WI’s answers to Defendant’s first set of interrogatories and request for production of documents, contention interrogatories,1996 + + + + + + 55 + 1 + Heavy Box! First half of box is Menominee, Court documents: US Courts of Appeals for the Seventh Circuit, Causes Nos. 96-3596 and 96-3985, Menominee Indian Tribe of WI, v. Thompson, et al., Appeal from a judgment of the US Dist. Court for the Western Dis. of WI. No. 95-C-30, Brief and supplemental appendix of the WI Paper Council as Amicus Curiae in support of defendants- appellees,undated + + + + + + 55 + 2 + Heavy Box! First half of box is Menominee, Court documents: US Courts of Appeals for the Seventh Circuit, Causes Nos. 96-3596 and 96-3985, Menominee Indian Tribe of WI, v. Thompson, et al., Appeal from a judgment of the US Dist. Court for the Western Dist. of WI, No. 95-C-30, Brief w/ addendum of defendants- appellees,undated + + + + + + 55 + 3 + Heavy Box! First half of box is Menominee, Court documents: US Court of Appeals for the Eighth Circuit, list of several case numbers and case details, dealing w/ Mille Lacs Band of Chippewa Indians, Fond du Lac Band of Chippewa Indians,undated + + + + + + 55 + 4 + Heavy Box! First half of box is Menominee, Court documents: Bound volume, US Courts of Appeals for the Seventh Circuit, Menominee Indian Tribe of WI, Plaintiff- Appellant, No. 96-3596 and 96-3985, v. Thompson, et al., Appellant Menominee Indian Tribe of WI’s reply brief,undated + + + + + + 55 + 5 + Heavy Box! First half of box is Menominee, Court documents: Bound volume, US Courts of Appeals for the Seventh Circuit, Menominee Indian Tribe of WI, Plaintiff- Appellant, No. 96-3596 and 96-3985, v. Thompson, et al., Appellant Menominee Indian Tribe of WI’s opening brief,undated + + + + + + 55 + 6 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: On top of folders: Menominee Indian Tribe of WI v. Thompson, et al., Cause No. 96-3596- and 96-3985,undated + + + + + + 55 + 7 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: On top of folders: Menominee Indian Tribe of WI v. Thompson, et al., Cause No. 96-3596- and 96-3985 in US Court of Appeals for the Seventh Circuit,undated + + + + + + 55 + 8 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: On top of folders: US Court of Appeals for the Eighth Circuit No. 97-1757 Mille Lac Band of Chippewa Indians et al. v. MN et al., Appeals from US Dist. Court…MN,undated + + + + + + 55 + 9 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: On top of folders: US Court of Appeals for the Seventh Circuit, Chicago, IL, Menominee Indian Tribe of WI v. Thompson, et al., Appeal from US Dist. Court for W. Dist. of WI No. 95-C-30, Appellant Menominee Indian Tribe of WI’s Opening Brief,undated + + + + + + 55 + 10 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: On top of folders: US Court of Appeals for the Seventh Circuit, Chicago, IL, Menominee Indian Tribe of WI v. Thompson, et al., Appeal from US Dist. Court for W. Dist. of WI No. 95-C-30, Appellant Menominee Indian Tribe of WI’s Reply Brief,undated + + + + + + 55 + 11 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: Menominee Filings,undated + + + + + + 55 + 12 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: Illegible Docs (labeled this way by Cleland staff, parts are very dark photocopies),undated + + + + + + 55 + 13 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 004175,undated + + + + + + 55 + 14 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 003854,undated + + + + + + 55 + 15 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 003990,undated + + + + + + 55 + 16 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 364, 91- 97,undated + + + + + + 55 + 17 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: Voight, Ex. T.,undated + + + + + + 55 + 18 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: Voight, Ex. U.,undated + + + + + + 55 + 19 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 364, 3- 4, 1823,undated + + + + + + 55 + 20 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 364, 49, 2-10-1823,undated + + + + + + 55 + 21 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 007645, June 3, 1823,undated + + + + + + 55 + 22 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 364, 10, 6-13-1823,undated + + + + + + 55 + 23 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 364, 5, 6-17-1823,undated + + + + + + 55 + 24 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T, Ex. 59, 1825,undated + + + + + + 55 + 25 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18c, S, T. Ex. 1, March 11, 1825,undated + + + + + + 55 + 26 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C; S; T Ex. 2, March 30, 1825,undated + + + + + + 55 + 27 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT DKT. 18, CST Ex. 3, April 16, 1825,undated + + + + + + 55 + 27 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 4, April 17, 1825,undated + + + + + + 55 + 28 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 5, June 27, 1825,undated + + + + + + 55 + 29 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 6, June 30, 1825,undated + + + + + + 55 + 30 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT DKT 18 CST Ex. 7, June 30- Aug. 22, 1825, JL, 1825,undated + + + + + + 55 + 31 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 8, Sept. 1, 1825,undated + + + + + + 55 + 32 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 9, Sept. 24, 1825,undated + + + + + + 55 + 33 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 10, Nov. 30, 1825,undated + + + + + + 55 + 34 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 21, 1826,undated + + + + + + 55 + 35 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 13, Jan. 6, 1826,undated + + + + + + 55 + 36 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 14, Jan. 10, 1826,undated + + + + + + 55 + 37 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.2: 361, Jan. 18, 1826,undated + + + + + + 55 + 37 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 364, 63-64, 4-30-1826,undated + + + + + + 55 + 38 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T, Ex. 15, May 19, 1826,undated + + + + + + 55 + 39 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM M21 R.3: 95- 96, May 24, 1826, MCT DKT 18C, S, T Ex. 16, 1826,undated + + + + + + 55 + 40 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 17, May 30, 1826,undated + + + + + + 55 + 41 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM M234 R.429: 827- 830, June 16, 1826,undated + + + + + + 55 + 42 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM T494 R.1: 826- 832, Aug. 2, 1826,undated + + + + + + 55 + 43 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM T494 R.1: 835- 854, Aug. 2, 1826,undated + + + + + + 55 + 44 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 20, Sept. 11, 1826,undated + + + + + + 55 + 45 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM T494 R.1: 833-844, Oct. 9, 1826, MCT DKT. 18C; S; T. Ex. 19, 1826,undated + + + + + + 55 + 46 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: T 494 R.1: 855- 869, Oct. 9, 1826,undated + + + + + + 55 + 47 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 365, 83, 1827,undated + + + + + + 55 + 48 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 22, Feb. 19, 1827,undated + + + + + + 55 + 49 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT DKT. 18C. S. T. Ex 23, Mar. 26, 1827,undated + + + + + + 55 + 50 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 365, 10- 131827, 5- ?- 1827,undated + + + + + + 55 + 51 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 29, May 4, 1827 (JL), 1827,undated + + + + + + 55 + 52 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 365, 26-28, 7-17-1827,undated + + + + + + 55 + 53 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM T494 R.3: 548- 568?, July 20, 1837,undated + + + + + + 55 + 54 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 365, 30, 7-21-1827,undated + + + + + + 55 + 55 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 25, Aug. 6, 1827,undated + + + + + + 55 + 56 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 26, Aug. 11, 1827,undated + + + + + + 55 + 57 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 365, 47, Sept. 5, 1827,undated + + + + + + 55 + 58 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 27, Sept. 24, 1827,undated + + + + + + 55 + 59 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 365, 76, 12-15-1827,undated + + + + + + 55 + 60 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 28, Dec. 22, 1827,undated + + + + + + 55 + 61 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 365, 84, 1-22-1828,undated + + + + + + 55 + 62 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 365, 100, Feb. 14, 1828,undated + + + + + + 55 + 63 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.1: 93, March 15, 1828,undated + + + + + + 55 + 64 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 365, 147- 48, April 24, 1828,undated + + + + + + 55 + 65 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 365, 152, 5-8-1828,undated + + + + + + 55 + 66 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.1: 96, Aug. 4, 1828,undated + + + + + + 55 + 67 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 30, Jan. 6, 1829,undated + + + + + + 55 + 68 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 31, May 13- July 24, 1829, (JL), 1829,undated + + + + + + 55 + 69 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM M234 R.757: 48- 53, 5-19-1829,undated + + + + + + 55 + 70 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 366, 11, 6-9-1829,undated + + + + + + 55 + 71 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 32, Feb. 9, 1830,undated + + + + + + 55 + 72 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM M234 R.757: 89- 90, 2-17-1830,undated + + + + + + 55 + 73 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: Indian Removal Act, May 28, 1830, 4 stats. 411-12, 1830,undated + + + + + + 55 + 74 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM M234 R.757: 64-6, July 30, 1830,undated + + + + + + 55 + 75 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.1: 141, 7-30-1830,undated + + + + + + 55 + 76 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 366, 48, 8-4-1830,undated + + + + + + 55 + 77 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.1: 143, 8-12-1830,undated + + + + + + 55 + 78 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 33, Sept. 22, 1830,undated + + + + + + 55 + 79 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 34, Oct. 4, 1830,undated + + + + + + 55 + 80 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 366, 68, 10-10-1830,undated + + + + + + 55 + 81 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM M234 R.757: 84- 85, 10-30-1830,undated + + + + + + 55 + 82 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 35, Oct. 30, 1830,undated + + + + + + 55 + 83 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 366, 72, 11-5-1830,undated + + + + + + 55 + 84 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 36, Dec. 1, 1830 and part of 1831,undated + + + + + + 55 + 85 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 367, 36, 5-5-1831,undated + + + + + + 55 + 86 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3, May 5, 1831,undated + + + + + + 55 + 87 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 367, 44, 6-13-1831,undated + + + + + + 55 + 88 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 368, 13- 17, 6-25-1831,undated + + + + + + 55 + 89 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.4: 375, 34, 6-30-1831,undated + + + + + + 55 + 90 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM M234 R.757: 105, 7-6-1831,undated + + + + + + 55 + 91 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 368, 7-8-1831,undated + + + + + + 55 + 92 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 368, 22- 24, 7-17-1831,undated + + + + + + 55 + 93 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.1: 262, 7-17-1831,undated + + + + + + 55 + 94 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.1: 177, 8-1-1831,undated + + + + + + 55 + 95 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 368, 37, 9-13-1831,undated + + + + + + 55 + 96 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.1: 180, Sept. 25, 1831,undated + + + + + + 55 + 97 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 008070, Feb. 15, 1832,undated + + + + + + 55 + 98 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 37, March 7, 1832,undated + + + + + + 55 + 99 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.1: 185, April 4, 1832,undated + + + + + + 55 + 100 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 39, May 4, 1832,undated + + + + + + 55 + 101 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 369, 6, May 22, 1832,undated + + + + + + 55 + 102 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 369, 21-22, 6-23-1832,undated + + + + + + 55 + 103 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: ABC FM BA.10.A512b. Box 1, June 25, 1832,undated + + + + + + 55 + 104 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: T494 R.2: 491- 493, Sept. 16, 1832,undated + + + + + + 55 + 105 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: T494 R.2: 494- 496, Sept. 22, 1832,undated + + + + + + 55 + 106 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: T494 R.2: 497- 500, Sept. 22, 1832,undated + + + + + + 55 + 107 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: T494 R.2: 501- 502, Oct. 15, 1832,undated + + + + + + 55 + 108 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: ABC FM BA 10.A512b. Box 1, Jan. 30, 1833,undated + + + + + + 55 + 109 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: ABC FM BA.10.A512b. Box 1, Feb. 7, 1833,undated + + + + + + 55 + 110 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 40, March 2, 1833,undated + + + + + + 55 + 111 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM M234 R.757: 224, 3-13-1833,undated + + + + + + 55 + 112 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 007092, ABCFM MS.BA10 A512b, May 1833,undated + + + + + + 55 + 113 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: ABCFM BA 10.A512b. Box 1, Dec. 18, 1833 (Folder 1 of 2),undated + + + + + + 55 + 114 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: ABCFM BA 10.A512b. Box 1, Dec. 18, 1833 (Folder 2 of 2),undated + + + + + + 55 + 115 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 38, 1834,undated + + + + + + 55 + 116 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT DEF Ex. 55, 1834,undated + + + + + + 55 + 117 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 42, 1834,undated + + + + + + 55 + 118 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT DKT 18CST Ex. 41, Mar. 4, 1834,undated + + + + + + 55 + 119 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: Trade and Intercourse Act US Stats at Large 4: 729-35, June 30, 1854,undated + + + + + + 55 + 120 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18 C, S, T Ex. 43, Aug. 1, 1834,undated + + + + + + 55 + 121 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18 C, S, T Ex. 44, Sept. 12, 1834,undated + + + + + + 55 + 122 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT DEF Ex. 56, Sept. 30, 1834,undated + + + + + + 55 + 123 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.1: 234, Oct. 2, 1834,undated + + + + + + 55 + 124 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN, ICC, DKT. 18B, 186, MN10195, Oct. 8, 1834,undated + + + + + + 55 + 125 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 45, March 26, 1835,undated + + + + + + 55 + 126 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 46, March 27, 1835,undated + + + + + + 55 + 127 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 47, March 27, 1835,undated + + + + + + 55 + 128 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 49, April 2, 1835,undated + + + + + + 55 + 129 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: ABCFM BA.10.A512b Box 1, April 3, 1835,undated + + + + + + 55 + 130 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 48, April 16, 1835,undated + + + + + + 55 + 131 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.1: 242, April 27, 1835,undated + + + + + + 55 + 132 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 50, April 27, 1835,undated + + + + + + 55 + 133 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 51, May 4, 1835,undated + + + + + + 55 + 134 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 52, May 14, 1835,undated + + + + + + 55 + 135 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.1: 250, May 31, 1835,undated + + + + + + 55 + 136 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 53, May 31, 1835,undated + + + + + + 55 + 137 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 55, June 1835,undated + + + + + + 55 + 138 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 54, June 13, 1835,undated + + + + + + 55 + 139 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.1: 253, June 18, 1835,undated + + + + + + 55 + 140 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM M234 R.757: 347, (LTP R.1: 261 July 17_ _ ), 7-17-1835,undated + + + + + + 55 + 141 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.1: 276, Sept. 1, 1835,undated + + + + + + 55 + 142 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT DKT 18CST Ex. 56, Sept. 2, 1835,undated + + + + + + 55 + 143 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 57, Sept. 20, 1835,undated + + + + + + 55 + 144 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 58, Sept. 20, 1835,undated + + + + + + 55 + 145 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.1: 279, Sept. 30, 1835,undated + + + + + + 55 + 146 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT DEF EX 57, Nov. 3, 1835,undated + + + + + + 55 + 147 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT DKT 18 C.S.T. Ex 60, Nov. 11, 1835,undated + + + + + + 55 + 148 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 007518, Nov. 12, 1835,undated + + + + + + 55 + 149 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT DEF EX 58, Nov. 17, 1835,undated + + + + + + 55 + 150 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 61, Nov. 24, 1835,undated + + + + + + 55 + 151 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 62, 1836,undated + + + + + + 55 + 152 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM M21 R.18: 76- 77, Mar. 7, 1836,undated + + + + + + 55 + 153 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 367, 36, May 5, 1836,undated + + + + + + 55 + 154 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 372, 39-41, May 18, 1836,undated + + + + + + 55 + 155 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 371, 33- 36, 7-8-1836,undated + + + + + + 55 + 156 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 006309, July 18, 1836,undated + + + + + + 55 + 157 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.2: 306, July 23, 1836,undated + + + + + + 55 + 158 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.2: 362, 11, 8-24-1836,undated + + + + + + 55 + 159 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.3: 372, 93, 9-9-1836,undated + + + + + + 55 + 160 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 006453, Oct. 1, 1836,undated + + + + + + 55 + 161 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: Treaty 1837,undated + + + + + + 55 + 162 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 006456 1837,undated + + + + + + 55 + 163 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 003099, 1837,undated + + + + + + 55 + 164 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN, ICC, DKT, 18B, 18u, MN10430, 1837,undated + + + + + + 55 + 165 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: ABCFM BA 10.512b. Box 2, Jan. 9, 1837 (Folder 1 of 2),undated + + + + + + 55 + 166 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: ABCFM BA 10.512b. Box 2, Jan. 9, 1837 (Folder 2 of 2),undated + + + + + + 55 + 167 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 68, Jan. 17, 1837,undated + + + + + + 55 + 168 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 006460, Jan. 18, 1837,undated + + + + + + 55 + 169 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 008088, Jan. 23, 1837,undated + + + + + + 55 + 170 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 008089, Feb. 20, 1837,undated + + + + + + 55 + 171 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM M1 R.37: 168, Henry Schoolcraft to Carey Harris, Feb. 27, 1837,undated + + + + + + 55 + 172 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 64, March 12, 1837,undated + + + + + + 55 + 173 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM T494 R.3: 537- 538, Mar. 25, 1837,undated + + + + + + 55 + 174 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM T494 R.3: 537- 539, 3-25-37,undated + + + + + + 55 + 175 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 65, March 25, 1837,undated + + + + + + 55 + 176 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 66, March 25, 1837,undated + + + + + + 55 + 177 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 003139, Mar. 31, 1837,undated + + + + + + 55 + 178 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 003133, Apr. 12, 1837,undated + + + + + + 55 + 179 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.2: 362, 37, April 19, 1837,undated + + + + + + 55 + 180 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM M236 R.36: 12, April 20, 1837,undated + + + + + + 55 + 181 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 003356, Apr. 20, 1837,undated + + + + + + 55 + 182 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM M236 R.36: 12, 4-20-1837,undated + + + + + + 55 + 183 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM M234 R.948, Apr. 21, 1837,undated + + + + + + 55 + 184 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM M21 R.21: 200, May 13, 1837,undated + + + + + + 55 + 185 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 007484, May 13, 1837,undated + + + + + + 55 + 186 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 68, May 16, 1837,undated + + + + + + 55 + 187 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 010361, NAM M234 R.948, May 18, 1837,undated + + + + + + 55 + 188 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 003142, May 18, 1837,undated + + + + + + 55 + 189 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 003085, NAM M234 R.948, June 2, 1837,undated + + + + + + 55 + 190 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM M234 R.758: 8, 6-3-1837,undated + + + + + + 55 + 191 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 007473, June 5, 1837,undated + + + + + + 55 + 192 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 008274, June 5, 1837,undated + + + + + + 55 + 193 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 006463, June 12, 1837,undated + + + + + + 55 + 194 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: LTP R.2: 362, 46, 7-13-1837,undated + + + + + + 55 + 195 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 008262, July 24, 1837,undated + + + + + + 55 + 196 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 003091, July 28, 1837,undated + + + + + + 55 + 197 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM M364 R.46: 93, 7-28-1837,undated + + + + + + 55 + 198 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM M668 R.8: 413- 422, July 29, 1837,undated + + + + + + 55 + 199 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM T494 R.3: 540- 545, Aug. 7, 1837,undated + + + + + + 55 + 200 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 70, Aug. 7, 1837,undated + + + + + + 55 + 201 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 003075, Aug. 7, 1837,undated + + + + + + 55 + 202 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: ABCFM BA10.A512b, Aug. 17, 1837,undated + + + + + + 55 + 203 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 006471, Aug. 17, 1837,undated + + + + + + 55 + 204 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 010228, Aug. 31, 1837,undated + + + + + + 55 + 205 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 003137, NAM M234 R.948, Sept. 1, 1837,undated + + + + + + 55 + 206 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 010363, Sept. 1, 1837,undated + + + + + + 55 + 207 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 003087, NAM M234 R.948, Sept. 20, 1837,undated + + + + + + 55 + 208 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 002411, Sept. 30, 1837,undated + + + + + + 55 + 209 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 002413, Sept. 30, 1837,undated + + + + + + 55 + 210 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM M234 R.387: 100- 105, Sept. 30, 1837,undated + + + + + + 55 + 211 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM T494 R.3: 546- 547, Sept. 30, 1837,undated + + + + + + 55 + 212 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 010200 encl. Sept. 30, 1837,undated + + + + + + 55 + 213 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 003032, Sept. 30, 1837,undated + + + + + + 55 + 214 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MCT Dkt. 18C, S, T Ex. 69, NAM T494 R.3: 546- 568, Sept. 30, 1837,undated + + + + + + 55 + 215 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM M21 R.22: 364- 65, Oct. 2, 1837,undated + + + + + + 55 + 216 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 006474, Oct. 4, 1837,undated + + + + + + 55 + 217 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 006484, Nov. 8, 1837,undated + + + + + + 55 + 218 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 007521, Dec. 1, 1837,undated + + + + + + 55 + 219 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 010233, Dec. 9, 1837,undated + + + + + + 55 + 220 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: NAM M21 R.23: 53- 55, Dec. 13, 1837,undated + + + + + + 55 + 221 + Second half of box is Mille Lac Chippewa Box 1, Calendar documents, 1823-1837: In folders in Box: MN 003015, Dec. 13, 1837,undated + + + + + + 56 + 1 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 006421, 1838,undated + + + + + + 56 + 2 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: STMN D10017, 1838,undated + + + + + + 56 + 3 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 010225, Jan. 9, 1838,undated + + + + + + 56 + 4 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 008225, Jan. 24, 1838,undated + + + + + + 56 + 5 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: M951 R. 1: 301, Ayers to Dodge, Feb. 1838,undated + + + + + + 56 + 6 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007620, Feb. 15, 1838,undated + + + + + + 56 + 7 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.387: 179, Feb. 16, 1838,undated + + + + + + 56 + 8 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.387: 180- 181, Feb. 16, 1838,undated + + + + + + 56 + 9 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.387: 183- 184, Feb. 17, 1838,undated + + + + + + 56 + 10 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.387, Feb. 19, 1838,undated + + + + + + 56 + 11 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 010230, Feb. 19, 1838,undated + + + + + + 56 + 12 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 010371, March 16, 1838,undated + + + + + + 56 + 13 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 006488, Apr. 12, 1838,undated + + + + + + 56 + 14 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007327, May 1, 1838,undated + + + + + + 56 + 15 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 010214, rec. May 2, 1838,undated + + + + + + 56 + 16 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007491, NAM M234 R.948: 251, Dodge to Harris, May 18, 1838,undated + + + + + + 56 + 17 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007330, June 30, 1838,undated + + + + + + 56 + 18 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007331, NAM M234 R.948: 226, Dodge to Harris, July 6, 1838,undated + + + + + + 56 + 19 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: LTP R.2: 335, July 11, 1838,undated + + + + + + 56 + 20 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 008223, July 11, 1838,undated + + + + + + 56 + 21 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007056, July 13, 1838,undated + + + + + + 56 + 22 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: M951 R.1: 387, July 13, 1838,undated + + + + + + 56 + 23 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 006492, July 23, 1838,undated + + + + + + 56 + 24 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 008220, Aug. 14, 1838?,undated + + + + + + 56 + 25 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.948, Dodge to Harris (MN 010374), Oct. 1, 1838,undated + + + + + + 56 + 26 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 006498, ABCFM Ms. BA 10. A512b, Oct. 8, 1838,undated + + + + + + 56 + 27 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 006505, Oct. 24, 1838,undated + + + + + + 56 + 28 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007170, Oct. 27, 1838,undated + + + + + + 56 + 29 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: ABCFM BA10.512b. Box 2, Oct. 31, 1838,undated + + + + + + 56 + 30 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R387 Nov. 3, 1838,undated + + + + + + 56 + 31 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007526, Nov. 25, 1838,undated + + + + + + 56 + 32 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: ABCFM BA10.512b. Box 2, Dec. 3, 1838,undated + + + + + + 56 + 33 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007336, Dec. 13, 1838,undated + + + + + + 56 + 34 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007177, Dec. 21, 1838,undated + + + + + + 56 + 35 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.948, Bushnell to Dodge, (MN 010379), Feb. 13, 1839,undated + + + + + + 56 + 36 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 010384, June 25, 1839,undated + + + + + + 56 + 37 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: LTP R.2: 362, 95, July 4, 1839,undated + + + + + + 56 + 38 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 006527, July 8, 1839,undated + + + + + + 56 + 39 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007497, July 25, 1839,undated + + + + + + 56 + 40 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 006536, Aug. 4, 1839,undated + + + + + + 56 + 41 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: ARCOIA 8-24-1839,undated + + + + + + 56 + 42 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007529, Oct. 18, 1839,undated + + + + + + 56 + 43 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007505, Feb. 8, 1840,undated + + + + + + 56 + 44 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 010237, April 6, 1840,undated + + + + + + 56 + 45 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MCT DKT 18 CST Ex. 71, Sept. 22, 1840,undated + + + + + + 56 + 46 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 005549, Sept. 30, 1840,undated + + + + + + 56 + 47 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.388, 9-30-1840,undated + + + + + + 56 + 48 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.388, 10-15-1840,undated + + + + + + 56 + 49 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007189, Oct. 15, 1840, x- copy, 1840,undated + + + + + + 56 + 50 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 003347, Oct. 16, 1840,undated + + + + + + 56 + 51 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: M951 R.1: 758, Oct. 18, 1840,undated + + + + + + 56 + 52 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 003354, Oct. 22, 1840,undated + + + + + + 56 + 53 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: M234 R.388: 135, Nov. 28, 1840, Dodge to Crawford, 1840,undated + + + + + + 56 + 54 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007185, Nov. 28, 1840,undated + + + + + + 56 + 55 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007531, Nov. 28, 1840,undated + + + + + + 56 + 56 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007607, Jan. 4, 1841,undated + + + + + + 56 + 57 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 010385, Jan. 30, 1841,undated + + + + + + 56 + 58 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 010405, Feb. 10, 1841,undated + + + + + + 56 + 59 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.949, Feb. 23, 1841,undated + + + + + + 56 + 60 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.949, Mar. 2, 1841,undated + + + + + + 56 + 61 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007604, Apr. 2, 1841,undated + + + + + + 56 + 62 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 002110, Apr. 6, 1841,undated + + + + + + 56 + 63 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.388, 5-21-1841,undated + + + + + + 56 + 64 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: ABCFM Ms. BA10.512b Box 3, Aug. __ 1841,undated + + + + + + 56 + 65 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007615, Aug. 7, 1841,undated + + + + + + 56 + 66 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 003171, Sept. 1841,undated + + + + + + 56 + 67 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 006539, Sept. 23, 1841,undated + + + + + + 56 + 68 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: ABCFM Ms. BA10.A512b Box 3, Sept. 28, 1841,undated + + + + + + 56 + 69 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: M234 R.949: 017, [ARCOIA 1841: 330- 332], Sept. 30, 1841,undated + + + + + + 56 + 70 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.388: 266- 268, Oct. 2, 1841,undated + + + + + + 56 + 71 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 003337, Nov. 1841,undated + + + + + + 56 + 72 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007198, Nov. 15, 1841,undated + + + + + + 56 + 73 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007199, Nov. 17, 1841,undated + + + + + + 56 + 74 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.388: 259, Nov. 17, 1841,undated + + + + + + 56 + 75 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.949, Dec. 8, 1841,undated + + + + + + 56 + 76 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M951 R.2: 195, Dec. 9, 1841, [MN 007061], 1841,undated + + + + + + 56 + 77 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007612, Jan. 7, 1842,undated + + + + + + 56 + 78 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007297, Jan. 18, 1842,undated + + + + + + 56 + 79 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 006546, Feb. 11, 1842,undated + + + + + + 56 + 80 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 10292, Mar. 1842,undated + + + + + + 56 + 81 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007064, May 10, 1842,undated + + + + + + 56 + 82 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: ABCFM Ms. BA10.512b. Box 3, June 20, 1842,undated + + + + + + 56 + 83 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: ABCFM Ms. BA10.512b. Box 3, July 8, 1842,undated + + + + + + 56 + 84 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M951 R.4: 109, July 26, 1842,undated + + + + + + 56 + 85 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007166, Docket 18c, Plan GX 72, July 27, 1842,undated + + + + + + 56 + 86 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MCT Dkt. 18C, S, T Ex. 72, July 27, 1842,undated + + + + + + 56 + 87 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MCT Dkt. 18C, S, T Ex. 73? NAM M234 R.425: 121- 123, July 27, 1842,undated + + + + + + 56 + 88 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M1 R.53, 8-1-1842,undated + + + + + + 56 + 89 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M1 R.53: 161, MCT DKT 18CST Ex. 75, Aug. 1, 1842,undated + + + + + + 56 + 90 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MCT Dkt. 18C, S, T Ex. 76, Aug. 1, 1842,undated + + + + + + 56 + 91 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MCT Dkt. 18C, S, T Ex. 77, Aug. 17, 1842,undated + + + + + + 56 + 92 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MCT Dkt. 18C, S, T Ex. 78, NAM M234 R.425: 128- 129, Aug. 17, 1842,undated + + + + + + 56 + 93 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 010239, NAM M234 R.425: 132- 133, Aug. 17, 1842,undated + + + + + + 56 + 94 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: ABCFM Ms. BA10.512b. Box 3, Aug. 20, 1842,undated + + + + + + 56 + 95 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: ABCFM Ms. BA10.512b Box 3, Sept. 15, 1842,undated + + + + + + 56 + 96 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.389: 61- 7. Sept. 29, 1842,undated + + + + + + 56 + 97 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: M234 R.388: 295, Sept. 30, 1842,undated + + + + + + 56 + 98 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M668 R.9: 290- 305, Oct. 4, 1842,undated + + + + + + 56 + 99 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 006548, Oct. 12, 1842,undated + + + + + + 56 + 100 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M1 R.39, 10-26-1842,undated + + + + + + 56 + 101 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.425: 146- 54, Oct. 28, 1842,undated + + + + + + 56 + 102 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: ABCFM Ms. BA10.512b. Box. 3, Nov. 7, 1842,undated + + + + + + 56 + 103 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007533, Nov. 16, 1842,undated + + + + + + 56 + 104 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MCT Dkt. 18C, S, T Ex. 79, Nov. 16, 1842,undated + + + + + + 56 + 105 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM T494 R.4: 195- 197, Nov. 19, 1842,undated + + + + + + 56 + 106 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M1 R.39, 11-19-1842,undated + + + + + + 56 + 107 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007306, Nov. 19, 1842,undated + + + + + + 56 + 108 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: ABCFM BA10.A512b. Box 3, Nov. 26, 1842,undated + + + + + + 56 + 109 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: ABCFM BA10.A512b Box 3, [MN 006553], Nov. 23, 1842,undated + + + + + + 56 + 110 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: ABCFM Ms. BA10.512b. Box 3, Nov. 26, 1842, Greene to Boutwell, 1842,undated + + + + + + 56 + 111 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MCT Dkt. 18C, S, T Ex. 80, Dec. 5, 1842, NAM M348, R. 3: 334, 1842,undated + + + + + + 56 + 112 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M348 R.348: 335, Dec. 6, 1842,undated + + + + + + 56 + 113 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: ABCFM Ms. Vol. 159 No. 242, Dec. 8, 1842, MN 6558, 1842,undated + + + + + + 56 + 114 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.389, 1843,undated + + + + + + 56 + 115 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.388: 390- 407, Jan. 8, 1843, [MN 003308/ 010241], 1843,undated + + + + + + 56 + 116 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 010241, Jan. 8, 1843,undated + + + + + + 56 + 117 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.388, Jan. 12, 1843, MN 007228, 1843,undated + + + + + + 56 + 118 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 010287, Jan. 12, 1843,undated + + + + + + 56 + 119 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 003286, Feb. 10, 1843,undated + + + + + + 56 + 120 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 003303, Feb. 20, 1843,undated + + + + + + 56 + 121 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: ABCFM Ms. BA10.512b Box 3, March 6, 1843,undated + + + + + + 56 + 122 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: ABCFM MN Ms. BA10.a512b, Box 3, 3-8-1843,undated + + + + + + 56 + 123 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MCT DEF Ex. 35, March 9, 1843,undated + + + + + + 56 + 124 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.388, March 21, 1843,undated + + + + + + 56 + 125 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 003296, Mar. 22, 1843,undated + + + + + + 56 + 126 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: ABCFM Ms. BA10.512b. Box 3, Mar. 22, 1843,undated + + + + + + 56 + 127 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.427: 516- 517, Apr. 5, 1843,undated + + + + + + 56 + 128 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 006405, May 1, 1843,undated + + + + + + 56 + 129 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: ABCFM BA10.A512b, May 3, 1843,undated + + + + + + 56 + 130 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 006586, May 4, 1843,undated + + + + + + 56 + 131 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M1 R.54: 514- 518, May 13, 1843,undated + + + + + + 56 + 132 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.388, June 2, 1843,undated + + + + + + 56 + 133 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 003290, June 2, 1843,undated + + + + + + 56 + 134 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 003300, June 6, 1843,undated + + + + + + 56 + 135 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MCT DEF EX 28, June 23, 1843,undated + + + + + + 56 + 136 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MCT DEF EX 66, June 30, 1843,undated + + + + + + 56 + 137 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.388: 408- 13, July 19, 1843,undated + + + + + + 56 + 138 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MCT DEF EX 29, Aug. 7, 1843,undated + + + + + + 56 + 139 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.388, 9-?-1843,undated + + + + + + 56 + 140 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: ABCFM MN Ms. BA10.a512b, Box 3, 9-21-1843,undated + + + + + + 56 + 141 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 006593, Sept. 21, 1843,undated + + + + + + 56 + 142 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.388: 419-420, Sept. 30, 1843,undated + + + + + + 56 + 143 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 008270, Nov. 10, 1843,undated + + + + + + 56 + 144 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007539, Nov. 25, 1843,undated + + + + + + 56 + 145 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MCT Dkt. 18C, S, T Ex. 82, Nov. 25, 1843,undated + + + + + + 56 + 146 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MCT Dkt. 18C, S, T Ex. 81 (W/ Enclosures), Nov. 28, 1843,undated + + + + + + 56 + 147 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MCT DEF EX 30, Nov. 28, 1843,undated + + + + + + 56 + 148 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 010294, Dec. 4, 1843,undated + + + + + + 56 + 149 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.389: 111-16, Feb. 16, 1844,undated + + + + + + 56 + 150 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MCT DEF EX 32, Feb. 16, 1844,undated + + + + + + 56 + 151 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 010303, Feb. 16, 1844,undated + + + + + + 56 + 152 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007609, Feb. 23, 1844,undated + + + + + + 56 + 153 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: ABCFM Ms. BA10.512b, Box 3, March 13, 1844,undated + + + + + + 56 + 154 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 006597, March 13, 1844,undated + + + + + + 56 + 155 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 006600, Mar. 14, 1844,undated + + + + + + 56 + 156 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.389: 54- 60, March 29, 1844,undated + + + + + + 56 + 157 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M951 R.2: 583, May 21, 1844, [MN 007069], 1844,undated + + + + + + 56 + 158 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: ABCFM BA10.A512b. Box 4, June 24, 1844,undated + + + + + + 56 + 159 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 006604, June 24, 1844,undated + + + + + + 56 + 160 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.389, 8-20-1844,undated + + + + + + 56 + 161 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: ABCFM BA10.A512b. Box 4, Sept. 5, 1844,undated + + + + + + 56 + 162 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MCT DEF EX 31, Sept. 21, 1844,undated + + + + + + 56 + 163 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.389: 135, Sept. 30, 1844,undated + + + + + + 56 + 164 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MCT DEF EX 67, Nov. 25, 1844,undated + + + + + + 56 + 165 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MCT Dkt. 18C, S, T Ex. 83, Nov. 25, 1844,undated + + + + + + 56 + 166 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.494, 1845,undated + + + + + + 56 + 167 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: ABCFM BA10.A512b. Box 4, Jan. 22, 1845,undated + + + + + + 56 + 168 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007279, March 17, 1845,undated + + + + + + 56 + 169 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.389: 468, Aug. 6, 1845,undated + + + + + + 56 + 170 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: NAM M234 R.390, 9-13-1845,undated + + + + + + 56 + 171 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 006407, Sept. 15, 1845,undated + + + + + + 56 + 172 + Box 2 Mille Lacs Chippewa, Calendar documents, 1838-1845: MN 007546, Oct. 20, 1845,undated + + + + + + 57 + 1 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MCT Dkt. 18C, S, T Ex. 92, 1846,undated + + + + + + 57 + 2 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MCT DEF Ex 68, Jan. 1846,undated + + + + + + 57 + 3 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 010394, Jan. 26, 1846,undated + + + + + + 57 + 4 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MCT Dkt. 18C, S, T Ex. 84, Feb. 13, 1846,undated + + + + + + 57 + 5 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 007308, Mar. 1, 1846,undated + + + + + + 57 + 6 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 006608, Mar. 17, 1846,undated + + + + + + 57 + 7 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 006610, Mar. 20, 1846,undated + + + + + + 57 + 8 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 006613, Apr. 11, 1846,undated + + + + + + 57 + 9 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 006616, April 29, 1846,undated + + + + + + 57 + 10 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 006621, May 2, 1846,undated + + + + + + 57 + 11 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: Senate Doc 403 [29-1] 477, June 24, 1846, [MN 6424, MN 8079], 1846,undated + + + + + + 57 + 12 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 10394, June 26, 1846,undated + + + + + + 57 + 13 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: ABCFM BA10.A512b. Box 4, July 1, 1846,undated + + + + + + 57 + 14 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: ARCOIA 1846: 258- 261, 8-15-1846,undated + + + + + + 57 + 15 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MCT DEF EX 447, Oct. 10, 1846,undated + + + + + + 57 + 16 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M21 R.38: 237-39, Oct. 31, 1846,undated + + + + + + 57 + 17 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.949, Nov. 28, 1846, MCT DKT 18CST Ex. 85, 1846,undated + + + + + + 57 + 18 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.949, Nov. 28, 1846, MCT DKT 18 CST Ex 86, All same versions, 1846,undated + + + + + + 57 + 19 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 007549, Nov. 30, 1846,undated + + + + + + 57 + 20 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R494, Nov. 30, 1846,undated + + + + + + 57 + 21 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MCT Dkt. 18C, S, T Ex. 88, Nov. 30, 1846,undated + + + + + + 57 + 22 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MCT Dkt. 18C, S, T Ex. 104, 1847,undated + + + + + + 57 + 23 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 002102, 1847,undated + + + + + + 57 + 24 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 006627, Jan. 2, 1847,undated + + + + + + 57 + 25 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390: 35- 39, Jan. 28, 1847,undated + + + + + + 57 + 26 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 007270, Jan. 28, 1847,undated + + + + + + 57 + 27 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.949, Feb. 13, 1847,undated + + + + + + 57 + 28 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 007273, Mar. 21, 1847,undated + + + + + + 57 + 29 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.949, Mar. 26, 1847,undated + + + + + + 57 + 30 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 000935 (Var docs Apr May 1847), 1847,undated + + + + + + 57 + 31 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MCT Dkt. 18C, S, T Ex. 90, April 2, 1847,undated + + + + + + 57 + 32 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 006640, Apr. 12, 1847,undated + + + + + + 57 + 33 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M236, R.46, June 4, 1847,undated + + + + + + 57 + 34 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.389, July 5, 1847,undated + + + + + + 57 + 35 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MCT Dkt. 18C, S, T Ex. 94, July 10, 1847, NAM M234 R.389, 1847,undated + + + + + + 57 + 36 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.389, July 31, 1847,undated + + + + + + 57 + 37 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M21 R.40: 20, Aug. 2, 1847,undated + + + + + + 57 + 38 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M236 R.46, Aug. 2, 1847,undated + + + + + + 57 + 39 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: TREATY- Chippewa, Aug. 2, 1847, 9 STAT. 904, 1847,undated + + + + + + 57 + 40 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM T494 R.4: 468-69, Aug. 10, 1847,undated + + + + + + 57 + 41 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 006417, Aug. 12, 1847,undated + + + + + + 57 + 42 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MCT Dkt. 18C, S, T Ex. 96, Aug. 14, 1847, NAM M234 R.389, 1847,undated + + + + + + 57 + 43 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M21 R.40: 25-6, Aug. 16, 1847,undated + + + + + + 57 + 44 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 008228, Aug. 16, 1847,undated + + + + + + 57 + 45 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.389, Aug. 21, 1847,undated + + + + + + 57 + 46 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 010317, Aug. 21, 1847,undated + + + + + + 57 + 47 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.389, 8-27-1847,undated + + + + + + 57 + 48 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.389, 8-28-1847,undated + + + + + + 57 + 49 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M1 R.61: 231- 233, Aug. 31, 1847,undated + + + + + + 57 + 50 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.389, Sept. 3, 1847,undated + + + + + + 57 + 51 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M21 R.40: 44, Sept. 7, 1847,undated + + + + + + 57 + 52 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.949: 432, Sept. 7, 1847, [MN 007317], 1847,undated + + + + + + 57 + 53 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MCT DEF EX 71, Sept. 9, 1847,undated + + + + + + 57 + 54 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.389, Sept. 10, 1847, MCT DKT 18C, S, T Ex. 98, 1847,undated + + + + + + 57 + 55 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MCT Dkt. 18C, S, T Ex. 97, Sept. 10, 1847, NAM T494 R.4, 1847,undated + + + + + + 57 + 56 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 001938, Sept. 10, 1847,undated + + + + + + 57 + 57 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 007274, Sept. 11, 1847,undated + + + + + + 57 + 58 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 006417, Oct. 1, 1847,undated + + + + + + 57 + 59 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 10314, Oct. 2, 1847,undated + + + + + + 57 + 60 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.389, Oct. 14, 1847,undated + + + + + + 57 + 61 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MCT Dkt. 18C, S, T Ex. 99 (w/ Encl.), Oct. 14, 1847,undated + + + + + + 57 + 62 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 007278, Oct. 29, 1847,undated + + + + + + 57 + 63 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MCT Dkt. 18C, S, T Ex. 100, Nov. 1, 1847, NAM M234 R.389, 1847,undated + + + + + + 57 + 64 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.389, 11-6-1847 (Folder 1 of 2),undated + + + + + + 57 + 65 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M.234 R.389, 11-6-1847 (Folder 2 of 2),undated + + + + + + 57 + 66 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390, Nov. 20, 1847, MN 003284, 1847,undated + + + + + + 57 + 67 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MCT Dkt. 18C, S, T Ex. 102, Nov. 22, 1847,undated + + + + + + 57 + 68 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 007556, Nov. 30, 1847,undated + + + + + + 57 + 69 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MCT Dkt. 18C, S, T Ex. 103, Dec. 1847,undated + + + + + + 57 + 70 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M21 R.40: 99-100, Dec. 6, 1847,undated + + + + + + 57 + 71 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M348 R.5: 305- 306, Dec. 10, 1847,undated + + + + + + 57 + 72 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M21 R.40: 108, Dec. 14, 1847,undated + + + + + + 57 + 73 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390: 50, Jan. 29, 1848,undated + + + + + + 57 + 74 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 001941, Feb. 12, 1848,undated + + + + + + 57 + 75 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390: 91- 93, Feb. 12, 1848, Rice to Medill, 1848,undated + + + + + + 57 + 76 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R390: 91- 93, Feb. 12, 1848, Rice to Medill X-copy, 1848,undated + + + + + + 57 + 77 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 010341, Feb. 12, 1848,undated + + + + + + 57 + 78 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 006644, May 13, 1848,undated + + + + + + 57 + 79 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: ABCFM Ms. 245 No. 72, Aug. 12, 1848, MN 006647, 1848,undated + + + + + + 57 + 80 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MCT DEF Ex. 446, Aug. 22, 1848,undated + + + + + + 57 + 81 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 006654, Aug. 28, 1848,undated + + + + + + 57 + 82 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390: 79- 80, Sept. 13, 1848,undated + + + + + + 57 + 83 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390, Oct. 2, 1848,undated + + + + + + 57 + 84 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NMCT DEF Ex 33, Oct. 8, 1848,undated + + + + + + 57 + 85 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MCT DEF Ex 72, Oct. 8, 1848,undated + + + + + + 57 + 86 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 006659, Oct. 9, 1848,undated + + + + + + 57 + 87 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 003205, Nov. 8, 1848,undated + + + + + + 57 + 88 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390, Nov. 14, 1848, Nagonabe to Livermore, 1848,undated + + + + + + 57 + 89 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390, Nov. 14, 1848, Nagonabe to COIA, 1848,undated + + + + + + 57 + 90 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MCT Dkt. 18C, S, T Ex. 105, Nov. 30, 1848,undated + + + + + + 57 + 91 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 002168, Nov. 30, 1848,undated + + + + + + 57 + 92 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 003209, Dec. 1848,undated + + + + + + 57 + 93 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390, Dec. 5, 1848,undated + + + + + + 57 + 94 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MHS M.390 R.1, 1849,undated + + + + + + 57 + 95 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R390: 167- 172, 1849, (Jan. 1849), 1849 (Folder 1 of 2),undated + + + + + + 57 + 96 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R390: 167- 172, 1849, (Jan. 1849), 1849 (Folder 2 of 2),undated + + + + + + 57 + 97 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MCT DEF EX 73, Jan. 12, 1849,undated + + + + + + 57 + 98 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390: 194- 200, Jan. 30, 1849,undated + + + + + + 57 + 99 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 003178, Jan. 30, 1849,undated + + + + + + 57 + 100 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 004500, Feb. 2, 1849,undated + + + + + + 57 + 101 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390: 182- 186, Feb. 5, 1849,undated + + + + + + 57 + 102 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390: 280- 283, Feb. 5, 1849,undated + + + + + + 57 + 103 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 008081, Feb. 7, 1849,undated + + + + + + 57 + 104 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 006668, Feb. 10, 1849,undated + + + + + + 57 + 105 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: ABCFM BA10.A512b. Box 5, Feb. 15, 1849,undated + + + + + + 57 + 106 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 000575, Apr. 2, 1849,undated + + + + + + 57 + 107 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M842 R.1: 8, April 24, 1849,undated + + + + + + 57 + 108 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.1: 10- 12, June 27, 1849, Medill to Ramsey, 1849,undated + + + + + + 57 + 109 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN Chronicle, July 6, 1849, p. 2, 1849,undated + + + + + + 57 + 110 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN Chronicle, July 19, 1849, p. 2, 1849,undated + + + + + + 57 + 111 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN Register, July 28, 1849, p. 2, 1849,undated + + + + + + 57 + 112 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 003178, July 30, 1849,undated + + + + + + 57 + 113 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 003221, Aug. 25, 1849,undated + + + + + + 57 + 114 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: AR M204 R.2 Vol. 2, Sept. 4, 1849, p. 10, 1849,undated + + + + + + 57 + 115 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: AR M203, R. 4, Sept. 4, 1849, p. 18, 1849,undated + + + + + + 57 + 116 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390: 271, Sept. 11, 1849, [MN 003213], 1849,undated + + + + + + 57 + 117 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN Chronicle and Register, Sept. 15, 1849,undated + + + + + + 57 + 118 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.428: 77- 80, Sept. 22, 1849, M546 [1850], 1849,undated + + + + + + 57 + 119 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: AR M204, R. 2, v. 3, Oct. 11, 1849,undated + + + + + + 57 + 120 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MCT Dkt. 18C, S, T Ex. 106, Oct. 13, 1849,undated + + + + + + 57 + 121 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: M234 R.428, Oct. 24, 1849,undated + + + + + + 57 + 122 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 000983, Oct. 17, 1849,undated + + + + + + 57 + 123 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.428: 124-8, Nov. 7, 1849, M675 [1849], [MN 005474], 1849,undated + + + + + + 57 + 124 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 007563, Nov. 30, 1849,undated + + + + + + 57 + 125 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: AR M203, R. 4, Dec. 1, 1849,undated + + + + + + 57 + 126 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 000979, Dec. 1, 1849,undated + + + + + + 57 + 127 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 007470, Dec. 3, 1849,undated + + + + + + 57 + 128 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MCT DEF EX 92, 1850?,undated + + + + + + 57 + 129 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 003245, 1850,undated + + + + + + 57 + 130 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 000585, 1850,undated + + + + + + 57 + 131 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MHS, M390, R.1, 1850,undated + + + + + + 57 + 132 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 000577, Jan. 1850,undated + + + + + + 57 + 133 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390, M659 (1850), Jan. 13, 1850. Ramsey to COIA, 1850,undated + + + + + + 57 + 134 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.428: 275- 278, Jan. 14, 1850,undated + + + + + + 57 + 135 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.2: 16, 1-22-1850,undated + + + + + + 57 + 136 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 005457, Feb. 1, 1850,undated + + + + + + 57 + 137 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: Voight, Ex. B, 2-1-1850,undated + + + + + + 57 + 138 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: Voight, Ex. C, 2-1-1850, MN 004809, 1850,undated + + + + + + 57 + 139 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.428: 150- 51, Feb. 4, 1850, Johnson to Brown, 1850,undated + + + + + + 57 + 140 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: Voight, Ex. A, 2-6-1850,undated + + + + + + 57 + 141 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M21, R.43: 23, Feb. 6, 1850,undated + + + + + + 57 + 142 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.428: 152, Feb. 6, 1850,undated + + + + + + 57 + 143 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 003357, Feb. 6, 1850, MN 004810, 1850,undated + + + + + + 57 + 144 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN Chronicle and Register, Feb. 9, 1850,undated + + + + + + 57 + 145 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M21 R.43: 30, 2-13-1850,undated + + + + + + 57 + 146 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN Chronicle and Register, Feb. 16, 1850,undated + + + + + + 57 + 147 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: ABCFM Ba10.A512b, Feb. 25, 1850, [MN 006675], 1850,undated + + + + + + 57 + 148 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: AR M203, R. 4, Feb. 25, 1850. Rice to Ramsey, 1850,undated + + + + + + 57 + 149 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390, Mar. 4, 1850, [MN 005526], 1850,undated + + + + + + 57 + 150 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390: 375, Mar. 4, 1850,undated + + + + + + 57 + 151 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390, M738, March 4, 1850. Ramsey to COIA Brown, Mar. 26 Brown to Ramsey, 1850,undated + + + + + + 57 + 152 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 003232, Mar. 5, 1850,undated + + + + + + 57 + 153 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN Chronicle and Register, March 9, 1850,undated + + + + + + 57 + 154 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN Pioneer, March 13, 1850,undated + + + + + + 57 + 155 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: AR M203 R.4, March 14, 1850,undated + + + + + + 57 + 156 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: S. MN000580, Mar. 19, 1850,undated + + + + + + 57 + 157 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M21 R.43: 55, March 20, 1850,undated + + + + + + 57 + 158 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 000581, Mar. 22, 1850,undated + + + + + + 57 + 159 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234, R.390, M738 (1850), March 26, 1850. Brown to Ramsey, 1850,undated + + + + + + 57 + 160 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390 M784, March 26, 1850,undated + + + + + + 57 + 161 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 005493, Mar. 26, 1850,undated + + + + + + 57 + 162 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M21 R.43: 61- 62, March 26, 1850,undated + + + + + + 57 + 163 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 002182, Mar. 26, 1850,undated + + + + + + 57 + 164 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: ABCFM BA10.A512b. Box 5, Mar. 28, 1850,undated + + + + + + 57 + 165 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.168, March 28, 1850. Hall to Ramsey, 1850,undated + + + + + + 57 + 166 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 006681, Mar. 28, 1850,undated + + + + + + 57 + 167 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390, M784. April 2, 1850. Livermore to Ramsey, 1850,undated + + + + + + 57 + 168 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 008281, April 5, 1850,undated + + + + + + 57 + 169 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390, M946, April 16, 1850,undated + + + + + + 57 + 170 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M842, R. 8, April 16, 1850. Ramsey to COIA, 1850,undated + + + + + + 57 + 171 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390, M784. April 17, 1850. Ramsey to Livermore, 1850,undated + + + + + + 57 + 172 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390. M784 April 20, 1850,undated + + + + + + 57 + 173 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.428: 265- 67, April 25, 1850, M1068, 1850,undated + + + + + + 57 + 174 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 006688, May 2, 1850,undated + + + + + + 57 + 175 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN Chronicle and Register, May 4, 1850,undated + + + + + + 57 + 176 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390: 334- 6, May 9, 1850,undated + + + + + + 57 + 177 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M390, L640, May 10, 1850. Livermore to Brown, 1850,undated + + + + + + 57 + 178 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390, M798. May 11, 1850. Ramsey to Brown, 1850,undated + + + + + + 57 + 179 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 003263, May 12, 1850,undated + + + + + + 57 + 180 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234, R.390, M880. May 15, 1850. Livermore to Ramsey, 1850,undated + + + + + + 57 + 181 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 000951, May 15, 1850,undated + + + + + + 57 + 182 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 000954, May 18, 1850,undated + + + + + + 57 + 183 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 000958, May 20, 1850,undated + + + + + + 57 + 184 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MCT DEF Ex. 947, May 22, 1850,undated + + + + + + 57 + 185 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 000960, May 22, 1850,undated + + + + + + 57 + 186 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MCT PLA Ex. 400, May 24, 1850,undated + + + + + + 57 + 187 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 006690, May 24, 1850,undated + + + + + + 57 + 188 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 000963, May 27, 1850,undated + + + + + + 57 + 189 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 000966, June 1, 1850,undated + + + + + + 57 + 190 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: AR M203, R.4, June 1, 1850, Sibley to Ramsey, 1850,undated + + + + + + 57 + 191 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: Babcock Transcripts, Box 1, June 13, 1850,undated + + + + + + 57 + 192 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 006427, June 30, 1850,undated + + + + + + 57 + 193 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 000423, July 2, 1850,undated + + + + + + 57 + 194 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234, R.390, M880, July 3, 1850. Oakes to Ramsey, 1850,undated + + + + + + 57 + 195 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN Chronicle and Register, July 8, 1850,undated + + + + + + 57 + 196 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390, M925. July 13, 1850. Watrous to Ramsey, 1850,undated + + + + + + 57 + 197 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390, July 13, 1850, MN 003256, 1850,undated + + + + + + 57 + 198 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390, M880. July 15, 1850. Ramsey to Oakes, 1850,undated + + + + + + 57 + 199 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: NAM M234 R.390, M880. July 16, 1850. Ramsey to COIA, 1850,undated + + + + + + 57 + 200 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: AR M203, R.5, July 29, 1850,undated + + + + + + 57 + 201 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MN 007709, July 30, 1850,undated + + + + + + 57 + 202 + Box 3 Mille Lacs Chippewa, Calendar documents, 1846-1850: MCT DEF Ex. 60. July 30, 1850,undated + + + + + + 58 + 1 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM Ms.BA10.A512b Box 5, Aug. 1850, MN 006699, 1850,undated + + + + + + 58 + 2 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM Ms.BA10.A512b Box 5, Aug. 2, 1850, MN006693, 1850,undated + + + + + + 58 + 3 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007707, Aug. 3, 1850,undated + + + + + + 58 + 4 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M234 R.390, M926, Aug. 9, 1850. Ramsey to COIA, 1850,undated + + + + + + 58 + 5 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 003276, Aug. 11, 1850,undated + + + + + + 58 + 6 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 003278, Aug. 13, 1850,undated + + + + + + 58 + 7 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 003271, Aug. 16, 1850. NAM M234 R.390, M.946, 1850,undated + + + + + + 58 + 8 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M234 R.390, M940. Aug. 21, 1850. Ramsey to COIA, 1850,undated + + + + + + 58 + 9 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007650, Aug. 21, 1850,undated + + + + + + 58 + 10 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M234 R.390, M971, Aug. 27, 1850. Watrous to Ramsey, 1850,undated + + + + + + 58 + 11 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: AR M203, R.5, Aug. 28, 1850. Watrous to Ramsey, 1850,undated + + + + + + 58 + 12 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007718, Sept. 5, 1850,undated + + + + + + 58 + 13 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007722, Sept. 7, 1850,undated + + + + + + 58 + 14 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 008300, Sept. 7, 1850,undated + + + + + + 58 + 15 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 003279, Sept. 13, 1850,undated + + + + + + 58 + 16 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M234 R.390, M971: 438, Sept. 16, 1850,undated + + + + + + 58 + 17 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007033, Oct. 1, 1850,undated + + + + + + 58 + 18 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ARCOIA 1850: 120- 121, 10-14-1850,undated + + + + + + 58 + 19 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 003174, Oct. 28, 1850,undated + + + + + + 58 + 20 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007567, Nov. 27, 1850,undated + + + + + + 58 + 21 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MCT Dkt. 18C, S, T Ex. 107, Nov. 27, 1850,undated + + + + + + 58 + 22 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 002129, Nov. 27, 1850,undated + + + + + + 58 + 23 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN Chronicle and Register, Dec. 2, 1850,undated + + + + + + 58 + 24 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: AR M203, R.5, Dec. 4, 1850,undated + + + + + + 58 + 25 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: AR M203, R.5, Dec. 10, 1850,undated + + + + + + 58 + 26 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM BA10.A512b. Box. 5, Dec. 30, 1850,undated + + + + + + 58 + 27 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007747, 1851,undated + + + + + + 58 + 28 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MCT Dkt. 18C, S, T Ex. 11, 1851,undated + + + + + + 58 + 29 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MCT Dkt. 18C, S, T Ex. 18, 1851,undated + + + + + + 58 + 30 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MCT Dkt. 18C, S, T Ex. 24, 1851,undated + + + + + + 58 + 31 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MCT Dkt. 18C, S, T Ex. 37A, 1851,undated + + + + + + 58 + 32 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MCT DEF EX 59, 1851,undated + + + + + + 58 + 33 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: AR M402 R.2, Vol. 2, JAN. 1851 (Folder 1 of 2),undated + + + + + + 58 + 34 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: AR M402 R.2 Vol. 2, Jan. 1851 (Folder 2 of 2),undated + + + + + + 58 + 35 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M234 R767: 61-72, Jan. 6, 1851 (Folder 1 of 2),undated + + + + + + 58 + 36 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M234 R767: 61-72, Jan. 6, 1851 (Folder 2 of 2),undated + + + + + + 58 + 37 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 003366, Jan. 21, 1851, NAM M234 R767: 247- 54, Treaty [arrow pointing to right] COIA, 1851,undated + + + + + + 58 + 38 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 003386, Jan. 21, 1851,undated + + + + + + 58 + 39 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M234 R.767: 131- 141, Jan. 28, 1851, Ramsey to Lea, COIA, 1851,undated + + + + + + 58 + 40 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M234 R.767: 159- 163, Feb. 12, 1851,undated + + + + + + 58 + 41 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M234, R767: 255-262. Feb. 15, 1851. Treat to COIA, 1851,undated + + + + + + 58 + 42 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006751, Feb. 24, 1851,undated + + + + + + 58 + 43 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M842 R.3: 637- 42, Feb. 28, 1851,undated + + + + + + 58 + 44 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 000974, Mar. 4, 1851,undated + + + + + + 58 + 45 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM Box 5, F. 8, Jan.- April 1851, March 24, 1851,undated + + + + + + 58 + 46 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM BA10.A512b. Box 5, April 9, 1851,undated + + + + + + 58 + 47 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006758, Apr. 9, 1851,undated + + + + + + 58 + 48 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM Box 5, file 8, 1851, 4-26-1851,undated + + + + + + 58 + 49 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M234, R.168, May 1, 1851, Watrous to Ramsey, 1851,undated + + + + + + 58 + 50 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M234 R.767: 234, May 13, 1851,undated + + + + + + 58 + 51 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006765, May 15, 1851,undated + + + + + + 58 + 52 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006775, May 17, 1851,undated + + + + + + 58 + 53 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM Ba10.A512b, May 19, 1851, MN 006777, 1851,undated + + + + + + 58 + 54 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M234 R.168, M.1351, May 25, 1851,undated + + + + + + 58 + 55 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007723, May 28, 1851,undated + + + + + + 58 + 56 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006783, May 30, 1851,undated + + + + + + 58 + 57 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M348 R.6, June 3, 1851,undated + + + + + + 58 + 58 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: AR M203, R. 6, June 10, 1851. Warren to Ramsey, 1851,undated + + + + + + 58 + 59 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M1050 R.13: 33, 6-13-1851,undated + + + + + + 58 + 60 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: AR M203, R.6, June 14, 1851, Watrous to Ramsey, 1851,undated + + + + + + 58 + 61 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007347, June 17, 1851,undated + + + + + + 58 + 62 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006786, June 23, 1851,undated + + + + + + 58 + 63 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007022, June 24, 1851,undated + + + + + + 58 + 64 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M842 R.3: 883-5, July 1, 1851,undated + + + + + + 58 + 65 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006787, July 7, 1851,undated + + + + + + 58 + 66 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM BA10, A512b, Box 5, July 7, 1851,undated + + + + + + 58 + 67 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006792, July 18, 1851,undated + + + + + + 58 + 68 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 000971, July 22, 1851,undated + + + + + + 58 + 69 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M234 Roll 168, July 28, 1851. Watrous to Ramsey, 1851,undated + + + + + + 58 + 70 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 000497, Aug. 8, 1851,undated + + + + + + 58 + 71 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007044, Aug. 10, 1851, NAM M842 R.8, 1851,undated + + + + + + 58 + 72 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: AR M203, R. 6, Aug. 11, 1851, Watrous to Ramsey, 1851,undated + + + + + + 58 + 73 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 000397, Aug ? 11, 1851,undated + + + + + + 58 + 74 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM Ba10.A512b, Aug. 13, 1851, MN 006795, 1851,undated + + + + + + 58 + 75 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M21, R.45, Aug. 25, 1851,undated + + + + + + 58 + 76 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM BA10.A512b, Box. 5, Aug. 27, 1851, [MN 006798], 1851,undated + + + + + + 58 + 77 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007726, Aug. 28, 1851,undated + + + + + + 58 + 78 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006802, Sept. 1, 1851,undated + + + + + + 58 + 79 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MCT DEF EX 95, Sept. 2, 1851,undated + + + + + + 58 + 80 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 003397, Sept. 5, 1851,undated + + + + + + 58 + 81 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: AR M203, R.6, Sept. 9, 1851, Watrous to Boutwell, 1851,undated + + + + + + 58 + 82 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 003465, Sept. 10, 1851,undated + + + + + + 58 + 83 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M234 R.168, Sept. 18, 1851,undated + + + + + + 58 + 84 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M234 R.168, Sept. 20, 1851, Watrous to Ramsey, Master Rolls, 1851,undated + + + + + + 58 + 85 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006803, Sept. 20, 1851,undated + + + + + + 58 + 86 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: Babcock Transcripts Box 1 Sept. 24, 1851,undated + + + + + + 58 + 87 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006806, Sept. 24, 1851,undated + + + + + + 58 + 88 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006807, Sept. 24, 1851,undated + + + + + + 58 + 89 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006809, Sept. 24, 1851,undated + + + + + + 58 + 90 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: AR M203, R.6, Sept. 25, 1851,undated + + + + + + 58 + 91 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M842, R.3: 1140, 9-30-1851,undated + + + + + + 58 + 92 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 00529, Nov. ? 1851,undated + + + + + + 58 + 93 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 010093, Nov. 3, 1851,undated + + + + + + 58 + 94 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: [LCO] VOIGT Ex. 1, Nov. 6, 1851,undated + + + + + + 58 + 95 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007350, Nov. 8, 1851,undated + + + + + + 58 + 96 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 010090, Nov. 19, 1851,undated + + + + + + 58 + 97 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007574, Nov. 27, 1851,undated + + + + + + 58 + 98 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM Ba10.A512b Box 6, Dec. 1, 1851, [MN 006811], 1851,undated + + + + + + 58 + 99 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: AR M203 R.6, Dec. 2, 1851, Buffalo to Ramsey, 1851,undated + + + + + + 58 + 100 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 000468, Dec. 3, 1851,undated + + + + + + 58 + 101 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: AR M203, R.6, Dec. 3, 1851,undated + + + + + + 58 + 102 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: AR M203, R.6, Dec. 9, 1851,undated + + + + + + 58 + 103 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007729, Dec. 11, 1851,undated + + + + + + 58 + 104 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: Babcock Transcripts Box 1, Dec. 13, 1851,undated + + + + + + 58 + 105 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM BA10.A512b. Box 5, Dec. 15, 1851,undated + + + + + + 58 + 106 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006816, Dec. 15, 1851,undated + + + + + + 58 + 107 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007751, Dec. 15, 1851,undated + + + + + + 58 + 108 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M234 R.168, M32, Dec. 15, 1851,undated + + + + + + 58 + 109 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007041, Dec. 19, 1851,undated + + + + + + 58 + 110 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: AR M203, R.6, Dec. 21, 1851, Roy to Ramsey, 1851,undated + + + + + + 58 + 111 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 000472, Dec. 21, 1851,undated + + + + + + 58 + 112 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: AR M203, R.6, Dec. 22, 1851, Watrous to Ramsey, 1851,undated + + + + + + 58 + 113 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 000474, Dec. 22, 1851,undated + + + + + + 58 + 114 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 003154, Dec. 24, 1851,undated + + + + + + 58 + 115 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M234 R.168, Dec. 24, 1851,undated + + + + + + 58 + 116 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M234 R.168, M32, Dec. 26, 1851,undated + + + + + + 58 + 117 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 000478, Dec. 26, 1851,undated + + + + + + 58 + 118 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007736, Dec. 31, 1851,undated + + + + + + 58 + 119 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MHS M390, R.1, 1852,undated + + + + + + 58 + 120 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 002686, 1852,undated + + + + + + 58 + 121 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MCT DKT 18C, S, T, 1852,undated + + + + + + 58 + 122 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM BA10.A512b. Box 6, Jan. 20, 1852,undated + + + + + + 58 + 123 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006817, Jan. 20, 1852,undated + + + + + + 58 + 124 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 000481, Jan. 29, 1852,undated + + + + + + 58 + 125 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: St. Anthony Express, Vol. 1: 36, Jan. 31, 1852,undated + + + + + + 58 + 126 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: Babcock Transcripts Box 1, Jan. 31, 1852,undated + + + + + + 58 + 127 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007660, Jan. 31, 1852,undated + + + + + + 58 + 128 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM BA10.A512b, Feb. 3, 1852 (Folder 1 of 2),undated + + + + + + 58 + 129 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM Ba10.A512b, Feb. 3, 1852 (Folder 2 of 2),undated + + + + + + 58 + 130 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006819, Feb. 3, 1852,undated + + + + + + 58 + 131 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006821, Feb. 3, 1852,undated + + + + + + 58 + 132 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 000485, Feb. 4, 1852,undated + + + + + + 58 + 133 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: St. Paul MN Vol. 1: 21, Feb. 7, 1852,undated + + + + + + 58 + 134 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: Babcock Transcripts, Box 1, Feb. 7, 1852,undated + + + + + + 58 + 135 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: Babcock Transcripts, Box 1, Feb. 28, 1852,undated + + + + + + 58 + 136 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM BA10.A512b, Mar. 2, 1852,undated + + + + + + 58 + 137 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM Ba10.A512b, Mar. 8, 1852,undated + + + + + + 58 + 138 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006829, Mar. 8, 1852,undated + + + + + + 58 + 139 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM BA10.A512b, Mar. 18, 1852,undated + + + + + + 58 + 140 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007661, Mar. 18, 1852,undated + + + + + + 58 + 141 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007697, Mar. 18, 1852,undated + + + + + + 58 + 142 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007665, Mar. 20, 1852,undated + + + + + + 58 + 143 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM Ba10.A512b, Mar. 22, 1852,undated + + + + + + 58 + 144 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007659, Mar. 22, 1852,undated + + + + + + 58 + 145 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006832, Mar. 22, 1852,undated + + + + + + 58 + 146 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 000488, March 23, 1852,undated + + + + + + 58 + 147 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007653, Mar. 24, 1852,undated + + + + + + 58 + 148 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007668, Apr. 5, 1852,undated + + + + + + 58 + 149 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 000489, Apr. 11, 1852,undated + + + + + + 58 + 150 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM Ba10, A512b, Box. 6, May 1852,undated + + + + + + 58 + 151 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007652, May 5, 1852,undated + + + + + + 58 + 152 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM BA10.A512b, May 6, 1852 (Folder 1 of 2),undated + + + + + + 58 + 153 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM BA10.A512b, May 6, 1852 (Folder 2 of 2),undated + + + + + + 58 + 154 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006845, May 6, 1852,undated + + + + + + 58 + 155 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM BA10.A512b, May 7, 1852 (Folder 1 of 2),undated + + + + + + 58 + 156 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM BA10.A512b, May 7, 1852 (Folder 2 of 2),undated + + + + + + 58 + 157 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006847, May 7, 1852,undated + + + + + + 58 + 158 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MCT DEF EX 97, May 12, 1852,undated + + + + + + 58 + 159 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006849, May 12, 1852,undated + + + + + + 58 + 160 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM Ba10.A512b, May 12, 1852,undated + + + + + + 58 + 161 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 010099, June 4, 1852,undated + + + + + + 58 + 162 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M234 R.149: 245, June 7, 1852, MN 007354, 1852,undated + + + + + + 58 + 163 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006835, June 7, 1852,undated + + + + + + 58 + 164 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 003467, June 16, 1852,undated + + + + + + 58 + 165 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006851, June 16, 1852,undated + + + + + + 58 + 166 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 000491, June 26, 1852,undated + + + + + + 58 + 167 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006452, June 29, 1852,undated + + + + + + 58 + 168 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M21, R.46, June 29, 1852,undated + + + + + + 58 + 169 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M234 R.149, P.42, June 30, 1852, Petition, 1852,undated + + + + + + 58 + 170 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 10099, June 30, 1852,undated + + + + + + 58 + 171 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM BA10.A512b, July 1, 1852,undated + + + + + + 58 + 172 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006837, July 8, 1852,undated + + + + + + 58 + 173 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM Ba10.A512b, July 14, 1852,undated + + + + + + 58 + 174 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006853, July 14, 1852,undated + + + + + + 58 + 175 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M842, R.4: 754-55, July 25, 1852,undated + + + + + + 58 + 176 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM BA10.A512b, July 28, 1852,undated + + + + + + 58 + 177 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006855, July 28, 1852,undated + + + + + + 58 + 178 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006858, Aug. 2, 1852,undated + + + + + + 58 + 179 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006860, Aug. 5, 1852,undated + + + + + + 58 + 180 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM BA10 A512b, Aug. 7, 1852,undated + + + + + + 58 + 181 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006861, Aug. 7, 1852,undated + + + + + + 58 + 182 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006863, Aug. 9, 1852, SAME AS ABCFM Aug. 9, 1852,undated + + + + + + 58 + 183 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007042, Aug. 9, 1852,undated + + + + + + 58 + 184 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM Ba10.A512b, Aug. 9, 1852,undated + + + + + + 58 + 185 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: NAM M842 R.8, Aug. 10, 1852,undated + + + + + + 58 + 186 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006840, Aug. 28, 1852,undated + + + + + + 58 + 187 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM Ba10.A512b, Aug. 30, 1852,undated + + + + + + 58 + 188 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006865, Aug. 30, 1852,undated + + + + + + 58 + 189 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006867, Sept. 8, 1852,undated + + + + + + 58 + 190 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MCT DEF EX 98, Sept. 20, 1852,undated + + + + + + 58 + 191 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM BA10.A512b, Sept. 25, 1852,undated + + + + + + 58 + 192 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 000424, Oct. 2, 1852,undated + + + + + + 58 + 193 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM Ba10.A512b, Oct. 7, 1852,undated + + + + + + 58 + 194 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006870, Oct. 7, 1852,undated + + + + + + 58 + 195 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM BA10.A512b, Oct. 21, 1852,undated + + + + + + 58 + 196 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006875, Oct. 21, 1852,undated + + + + + + 58 + 197 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006878, Oct. 21, 1852,undated + + + + + + 58 + 198 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006880, Nov. 9, 1852,undated + + + + + + 58 + 199 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM BA10.A512b, Nov. 9, 1852,undated + + + + + + 58 + 200 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM BA10 A512b, Nov. 15, 1852,undated + + + + + + 58 + 201 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006883, Nov. 15, 1852,undated + + + + + + 58 + 202 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM Ms.245 No. 230, Nov. 20, 1852, MN 006888, 1852,undated + + + + + + 58 + 203 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM Ba10.A512b, Nov. 20, 1852 (Folder 1 of 2),undated + + + + + + 58 + 204 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM Ba10.A512b, Nov. 20, 1852 (Folder 2 of 2),undated + + + + + + 58 + 205 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006885, Nov. 20, 1852,undated + + + + + + 58 + 206 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM BA10 A512b, Nov. 29, 1852,undated + + + + + + 58 + 207 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006891, Nov. 29, 1852,undated + + + + + + 58 + 208 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 001753, Nov. 30, 1852,undated + + + + + + 58 + 209 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007583, Nov. 30, 1852,undated + + + + + + 58 + 210 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MCT Dkt. 18C, S, T Ex. 108, Nov. 30, 1852,undated + + + + + + 58 + 211 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: ABCFM BA10 A512b, Dec. 13, 1852,undated + + + + + + 58 + 212 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006894, Dec. 13, 1852,undated + + + + + + 58 + 213 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006896, Dec. 15, 1852,undated + + + + + + 58 + 214 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 006899, Dec. 15, 1852,undated + + + + + + 58 + 215 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007372, Dec. 16, 1852,undated + + + + + + 58 + 216 + Box 4 Mille Lacs Chippewa, Calendar documents, 1850-1852: MN 007370, Dec. 24, 1852,undated + + + + + + 59 + 1 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R: 150: 57-59, 1853,undated + + + + + + 59 + 2 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MHS M390 R.1, 1853,undated + + + + + + 59 + 3 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234, R428: 605- 606. Jan. 4, 1853, Stuart to COIA. 1853,undated + + + + + + 59 + 4 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M21, R.46: 239, Jan. 6, 1853,undated + + + + + + 59 + 5 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: ABCFM BA10.A512b, Jan. 19, 1853,undated + + + + + + 59 + 6 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006900, Jan. 19, 1853,undated + + + + + + 59 + 7 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006903, Jan. 21, 1853,undated + + + + + + 59 + 8 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006862, Jan. 22, 1852,undated + + + + + + 59 + 9 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: ABCFM BA10 A512b, Jan. 23, 1853,undated + + + + + + 59 + 10 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 007368, Jan. 29, 1853,undated + + + + + + 59 + 11 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Babcock Transcripts, Box 2, Jan. 21, 1853,undated + + + + + + 59 + 12 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006905, Feb. 7, 1853,undated + + + + + + 59 + 13 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006907, Feb. 21, 1853,undated + + + + + + 59 + 14 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MNSA Governor’s Archives. Letters Rec. Feb. 22, 1853. Stewarts to Hamilton, 1853,undated + + + + + + 59 + 15 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234, R428: 523, M665, April 9, 1853, Gorman to COIA, 1853,undated + + + + + + 59 + 16 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006909, Apr. 14, 1853,undated + + + + + + 59 + 17 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006911, Apr. 23, 1853,undated + + + + + + 59 + 18 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: ABCFM BA10 A512b, May 7, 1853,undated + + + + + + 59 + 19 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006916, May 7, 1853,undated + + + + + + 59 + 20 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: ABCFM BA10.A512b. Box 6, May 17, 1853,undated + + + + + + 59 + 21 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006920, May 17, 1853,undated + + + + + + 59 + 22 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Babcock Transcripts Box 2, June 10, 1853,undated + + + + + + 59 + 23 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006924, July 25, 1853,undated + + + + + + 59 + 24 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006931, July 30, 1853,undated + + + + + + 59 + 25 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006937, Aug. 8, 1853,undated + + + + + + 59 + 26 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006942, Aug. 9, 1853,undated + + + + + + 59 + 27 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006944, Aug. 11, 1853,undated + + + + + + 59 + 28 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006946, Aug. 29, 1853,undated + + + + + + 59 + 29 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MCT DKT Ex 98, Aug. 31, 1853,undated + + + + + + 59 + 30 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006951, Aug. 31, 1853,undated + + + + + + 59 + 31 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.404: 206- 208, Sept. 1, 1853,undated + + + + + + 59 + 32 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 003472, Sept. 3, 1853,undated + + + + + + 59 + 33 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MCT Dkt. 18C, S, T Ex. 109, Sept. 8, 1853 and Nov. 26, 1853,undated + + + + + + 59 + 34 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006954, Sept. 13, 1853,undated + + + + + + 59 + 35 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.404: 209- 210, Sept. 19, 1853,undated + + + + + + 59 + 36 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.404: 211- 212, Sept. 19, 1853,undated + + + + + + 59 + 37 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.149: 254- 256, Sept. 28, 1853,undated + + + + + + 59 + 38 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234, R149, M874. Oct. 8, 1853. Gorman to COIA, 1853,undated + + + + + + 59 + 39 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006956, Oct. 11, 1853,undated + + + + + + 59 + 40 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MCT DEF Ex 98, Oct. 20, 1853,undated + + + + + + 59 + 41 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M21, R.48, Oct. 21, 1853. Mix to COIA, 1853,undated + + + + + + 59 + 42 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 007756, Oct. 21, 1853,undated + + + + + + 59 + 43 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.149: 10-24-1853,undated + + + + + + 59 + 44 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 007359, Oct. 24, 1853,undated + + + + + + 59 + 45 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MCT DKT 18C. S. T. Oct. 27, 1853,undated + + + + + + 59 + 46 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234, R149, J377. Nov. 1, 1853, Johnston to COIA, 18533,undated + + + + + + 59 + 47 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.150, M990, Nov. 10, 1853,undated + + + + + + 59 + 48 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.150: 97, 11-10-1853,undated + + + + + + 59 + 49 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 007377, Nov. 10, 1853,undated + + + + + + 59 + 50 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 007375, Nov. 15, 1853,undated + + + + + + 59 + 51 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006959, Nov. 15, 1853,undated + + + + + + 59 + 52 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.150, M990, Nov. 15, 1853,undated + + + + + + 59 + 53 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 007051, Nov. 15, 1853,undated + + + + + + 59 + 54 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 007374, Nov. 16, 1853,undated + + + + + + 59 + 55 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 008230, Nov. 16, 1853,undated + + + + + + 59 + 56 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 007589, Nov. 26, 1852,undated + + + + + + 59 + 57 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006963, Nov. 28, 1853,undated + + + + + + 59 + 58 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R150, M990. Dec. 3, 1853. Gorman to Beaulieu, 1853,undated + + + + + + 59 + 59 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 007045, Dec. 3, 1853,undated + + + + + + 59 + 60 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006444, Dec. 10, 1853, NAM M234 R.404: 183-90, 1853,undated + + + + + + 59 + 61 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R404: 183-90, Dec. 10, 1853,undated + + + + + + 59 + 62 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006442, Dec. 14 [10], 1853,undated + + + + + + 59 + 63 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006442, Dec. 14, 1853,undated + + + + + + 59 + 64 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.404: 173- 179, Dec. 14, 1853,undated + + + + + + 59 + 65 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.404: 180-181, Dec. 14, 1853,undated + + + + + + 59 + 66 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.404: 182-183, Dec. 14, 1853,undated + + + + + + 59 + 67 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Voight Ex. K, Dec. 14, 1853,undated + + + + + + 59 + 68 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.150: 51-53, Dec. 18, 1853,undated + + + + + + 59 + 69 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: ABCFM BA10.A512b, Dec. 31, 1853,undated + + + + + + 59 + 70 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: ABCFM MN Ms. Ba10.A512b, Dec. 31, 1853,undated + + + + + + 59 + 71 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MHS M390 R.1, 1854,undated + + + + + + 59 + 72 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234, R.428: 804-5, Jan. 10, 1854,undated + + + + + + 59 + 73 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006988, Jan. 24, 1854,undated + + + + + + 59 + 74 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.150, M990, Feb. 6, 1854,undated + + + + + + 59 + 75 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 007046, Feb. 6, 1854,undated + + + + + + 59 + 76 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 003019, Feb. 17, 1854,undated + + + + + + 59 + 77 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 003023, Feb. 17, 1854,undated + + + + + + 59 + 78 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006993, Feb. 20, 1854,undated + + + + + + 59 + 79 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Memorial No. 10, Feb. 27, 1854, Legisl./ WI Memorial and Resolutions, 1854,undated + + + + + + 59 + 80 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 006996, Mar. 7, 1854,undated + + + + + + 59 + 81 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 007001, Mar. 14, 1854,undated + + + + + + 59 + 82 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.150: 72-73, 3-25-1854,undated + + + + + + 59 + 83 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.150: 82- 84, 3-25-1854,undated + + + + + + 59 + 84 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 007003, Mar. 25, 1854,undated + + + + + + 59 + 85 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 007005, Apr. 10, 1854,undated + + + + + + 59 + 86 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Babcock Transcripts Box 2, April 26, 1854,undated + + + + + + 59 + 87 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 007010, Apr. 26, 1854,undated + + + + + + 59 + 88 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 007379, May 22, 1854,undated + + + + + + 59 + 89 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 007378, May 22, 1854,undated + + + + + + 59 + 90 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 010104, May 27, 1854,undated + + + + + + 59 + 91 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.150: 98, July 6, 1854,undated + + + + + + 59 + 92 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Babcock Transcripts Box 2, July 12, 1854,undated + + + + + + 59 + 93 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN007015, Aug. 3, 1854,undated + + + + + + 59 + 94 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Spates Ms. MHS P1595, Aug. 7, 1854,undated + + + + + + 59 + 95 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Spates P1595. Aug. 9, 1854,undated + + + + + + 59 + 96 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MCT Dkt. 18C, S, T Ex. 110, Aug. 10, 1854,undated + + + + + + 59 + 97 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M21 R.49: 446-447, Aug. 11, 1854, Not same, 1854,undated + + + + + + 59 + 98 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MCT Dkt. 18C, S, T Ex. 111, Same, Aug. 11, 1854, NAM M21 R.49: 454- 455, 1854,undated + + + + + + 59 + 99 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Voight, Ex. LL, Same, 8-11-1854, NAM M21 R.49: 454- 455, 1854,undated + + + + + + 59 + 100 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 002407, Same, Aug. 11, 1854, NAM M21 R.49: 454- 455, 1854,undated + + + + + + 59 + 101 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M21 R.49: 457, Aug. 12, 1854, [MN 002410], 1854,undated + + + + + + 59 + 102 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MCT Dkt. 18C, S, T Ex. 112, Aug. 12, 1854,undated + + + + + + 59 + 103 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MCT DEF Ex. 18, Aug. 14, 1854,undated + + + + + + 59 + 104 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Voight Ex. DD, 9-30-1854 (incorrect date), 1854,undated + + + + + + 59 + 105 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: TREATY, Sept. 30, 1854,undated + + + + + + 59 + 106 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 003476, Oct. 7, 1854,undated + + + + + + 59 + 107 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 010195, Oct. 8, 1854,undated + + + + + + 59 + 108 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM T494 R.5: 133- 35, Oct. 17, 1854, Voigt Ex. AA, 1854,undated + + + + + + 59 + 109 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 005124, Oct. 17, 1854,undated + + + + + + 59 + 110 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MCT Dkt. 18C, S, T Ex. 113, Oct. 17, 1854,undated + + + + + + 59 + 111 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Babcock Transcripts Box 2, Oct. 21, 1854,undated + + + + + + 59 + 112 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.150, Oct. 23, 1854,undated + + + + + + 59 + 113 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M1 R.50: 161, Oct. 23, 1854,undated + + + + + + 59 + 114 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M21 R.50: 168-69, Oct. 27, 1854,undated + + + + + + 59 + 115 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Babcock Transcripts Box 2, Oct. 28, 1854 (Folder 1 of 2),undated + + + + + + 59 + 116 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Babcock Transcripts Box 2, Oct. 28, 1854 (Folder 2 of 2),undated + + + + + + 59 + 117 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 007465, Oct. 28, 1854,undated + + + + + + 59 + 118 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.150, Nov. 10, 1854, MN 005135, 1854,undated + + + + + + 59 + 119 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MCT Dkt. 18C, S, T Ex. 114, Nov. 10, 1854,undated + + + + + + 59 + 120 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 004601, Nov. 13, 1854,undated + + + + + + 59 + 121 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 001771, Nov. 25, 1854,undated + + + + + + 59 + 122 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M348 R.8: 243-44, Dec. 8, 1854,undated + + + + + + 59 + 123 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MCT DEF Ex. 20, Dec. 8, 1854,undated + + + + + + 59 + 124 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MCT DKT 18C, S, T Ex. 115, Dec. 8, 1854,undated + + + + + + 59 + 125 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Congressional Globe XXX: 53-54, Dec. 14, 1854,undated + + + + + + 59 + 126 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Congressional Globe XXX: 75, Dec. 17, 1854,undated + + + + + + 59 + 127 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Congressional Globe (33-2), Dec. 17, 1854,undated + + + + + + 59 + 128 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Congressional Globe, Dec. 17, 1854, [33:2], 1854,undated + + + + + + 59 + 129 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.150: 151, Dec. 17, 1854, [MN 007382], 1854,undated + + + + + + 59 + 130 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: St. Paul Daily Democrat, Dec. 23, 1854,undated + + + + + + 59 + 131 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MHS M390, R.3, 1855,undated + + + + + + 59 + 132 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.150: 219- 21. Jan. 4, 1855,undated + + + + + + 59 + 133 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 010121, Jan. 4, 1855,undated + + + + + + 59 + 134 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Babcock Transcripts, Box 3, Jan. 27, 1855,undated + + + + + + 59 + 135 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Daily Minnesotian, Jan. 25, 1855,undated + + + + + + 59 + 136 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.150: 216- 18, Feb. 1, 1855,undated + + + + + + 59 + 137 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 008233, Feb. 1, 1855,undated + + + + + + 59 + 138 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Daily Minnesotian, Feb. 3, 1855,undated + + + + + + 59 + 139 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Spates MHS P.1591, Feb. 5, 1855,undated + + + + + + 59 + 140 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: SD 40 (33-2) 752, Feb. 7, 1855,undated + + + + + + 59 + 141 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Lowell Papers, 2- [15-19] - 1855,undated + + + + + + 59 + 142 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 008236, Feb. 16, 1855,undated + + + + + + 59 + 143 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.150: 222, Feb. 16, 1855,undated + + + + + + 59 + 144 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M606 R.2: 112, Feb. 17, 1855, MN 003025, 1855,undated + + + + + + 59 + 145 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MCT Dkt. 18C, S, T Ex. 116, Feb. 17, 1855,undated + + + + + + 59 + 146 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 001824, Feb. 19, 1855,undated + + + + + + 59 + 147 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 002458, Feb. 19, 1855,undated + + + + + + 59 + 148 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 008238, Feb. 21, 1855,undated + + + + + + 59 + 149 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M668 R.11: 187- 209, Feb. 22, 1855,undated + + + + + + 59 + 150 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM T494 R.5: 307, Feb. 23, 1855,undated + + + + + + 59 + 151 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M348 R8: 331-32, Feb. 23, 1855,undated + + + + + + 59 + 152 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MNSA Governor’s Archives. Letters Rec. Feb. 23, 1855. Stewart to Gorman, 1855,undated + + + + + + 59 + 153 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Daily Minnesotian, Feb. 24, 1855,undated + + + + + + 59 + 154 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 002938, Feb. 27, 1855,undated + + + + + + 59 + 155 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M606 R.2: 118, Feb. 27, 1855, MN 003010, 1855,undated + + + + + + 59 + 156 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: HD 83 (33-2), 788, Feb. 27, 1855,undated + + + + + + 59 + 157 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M1050 R.12: 1125, 3-1-1855,undated + + + + + + 59 + 158 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Senate Doc. 70 [33-2], Mar. 1, 1855, 756, 1855,undated + + + + + + 59 + 159 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Daily Minnesotian, March 1, 1855,undated + + + + + + 59 + 160 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Daily Minnesotian, March 6, 1855,undated + + + + + + 59 + 161 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 002628, March 8, 1855,undated + + + + + + 59 + 162 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.150: 225, 3-9-1855,undated + + + + + + 59 + 163 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MNSA Governor’s Archives. Letters Rec. March 9, 1855. Hamilton to Stewart. 1855,undated + + + + + + 59 + 164 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.150: 172, 3-13-1855,undated + + + + + + 59 + 165 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.150: 227(171-172), 3-16-1855,undated + + + + + + 59 + 166 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Daily Minnesotian, March 17, 1855,undated + + + + + + 59 + 167 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Daily Pioneer, March 17, 1855,undated + + + + + + 59 + 168 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 008241, March 23, 1855,undated + + + + + + 59 + 169 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 004545, Apr. 15, 1855,undated + + + + + + 59 + 170 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Daily Minnesotian, April 27, 1855,undated + + + + + + 59 + 171 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 010146, April 28, 1855,undated + + + + + + 59 + 172 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 010119, May 1, 1855,undated + + + + + + 59 + 173 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 007017, May 3, 1855,undated + + + + + + 59 + 174 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 010119, May 11, 1855,undated + + + + + + 59 + 175 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: Sauk Rapids Frontierman, May 24, 1855,undated + + + + + + 59 + 176 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 007049, May 21, 1855,undated + + + + + + 59 + 177 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: MN 010125, May 29, 1855,undated + + + + + + 59 + 178 + Box 5 Mille Lacs Chippewa, Calendar documents, 1853-1855: NAM M234 R.150: 243, 5-29-1855,undated + + + + + + 60 + 1 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM T494 R.5: 308- 447, Feb. 22, 1855,undated + + + + + + 60 + 2 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM T494 R.5: 307, 2-12-1855,undated + + + + + + 60 + 3 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM T494 R.5: 307, Documents related to Feb. 22, 1855 Treaty, 1855,undated + + + + + + 60 + 4 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.150: 242, June 4/5, 1855, [MN 008243 [arrow pointing to right] 6/4, MN 008244 [arrow pointing to right] 6/5], 1855,undated + + + + + + 60 + 5 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.150: 262, 6-1855,undated + + + + + + 60 + 6 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.150: 242, 6-4-1855,undated + + + + + + 60 + 7 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 008248, June 4, 1855,undated + + + + + + 60 + 8 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 010131, June 4, 1855,undated + + + + + + 60 + 9 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 008246, June 5, 1855,undated + + + + + + 60 + 10 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: Sauk Rapids Frontierman, June 7, 1855,undated + + + + + + 60 + 11 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: Daily Minnesotian, June 9, 1855,undated + + + + + + 60 + 12 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN HS A-L958, 6-12-1855,undated + + + + + + 60 + 13 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 010140, June 20, 1855,undated + + + + + + 60 + 14 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.150: 268, 6-20-1855,undated + + + + + + 60 + 15 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.150: 252, 6-20-1855,undated + + + + + + 60 + 16 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 008250, June 20, 1855,undated + + + + + + 60 + 17 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.150: 199, 6-28-1855,undated + + + + + + 60 + 18 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.150: 259, 6-28-1855,undated + + + + + + 60 + 19 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.150: 266, June 28, 1855,undated + + + + + + 60 + 20 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.150: 201-3, July 2, 1855,undated + + + + + + 60 + 21 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 008251, June 28, 1855,undated + + + + + + 60 + 22 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M1050 R.12, 6-30-1855,undated + + + + + + 60 + 23 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 010116, July 2, 1855,undated + + + + + + 60 + 24 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.150: 196-199, 7-3-1855,undated + + + + + + 60 + 25 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 010108, July 3, 1855,undated + + + + + + 60 + 26 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 007020, July 5, 1855,undated + + + + + + 60 + 27 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M1050: 662, 7-6-1855,undated + + + + + + 60 + 28 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 010107, July 13, 1855,undated + + + + + + 60 + 29 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.150: 194- 5, July 13, 1855,undated + + + + + + 60 + 30 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MNSA Governor’s Archives. Letters Rec. July 30, 1855. Sherman to Gorman, 1855,undated + + + + + + 60 + 31 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.150: 291, 7-31-1855,undated + + + + + + 60 + 32 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: Treaty, July 31, 1855,undated + + + + + + 60 + 33 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.150: 293, 7-31-1855,undated + + + + + + 60 + 34 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.307, 7-31-1855,undated + + + + + + 60 + 35 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 008254, July 31, 1855,undated + + + + + + 60 + 36 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.150, Aug. 1, 1855,undated + + + + + + 60 + 37 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 008255, Aug. 1, 1855,undated + + + + + + 60 + 38 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 010148, Aug. 4, 1855,undated + + + + + + 60 + 39 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.150, Aug. 7, 1855,undated + + + + + + 60 + 40 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.150, Aug. 9, 1855,undated + + + + + + 60 + 41 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.150: 306, 8-31-1855,undated + + + + + + 60 + 42 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M1050 R.13: 567- 568, 10-21-1855,undated + + + + + + 60 + 43 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.150: 320, 11-7-1855,undated + + + + + + 60 + 44 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.151, 11-10-1855,undated + + + + + + 60 + 45 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 002199, Nov. 26, 1855,undated + + + + + + 60 + 46 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.150: 325, Dec. 24, 1855,undated + + + + + + 60 + 47 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 007387, Dec. 24, 1855,undated + + + + + + 60 + 48 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 007404, Dec. 26, 1855,undated + + + + + + 60 + 49 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: St. Anthony Express, Dec. 26, 1855,undated + + + + + + 60 + 50 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 008094, Jan. 18, 1856,undated + + + + + + 60 + 51 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 010153, Feb. 1, 1856,undated + + + + + + 60 + 52 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.151: 118, 2-7-1856,undated + + + + + + 60 + 53 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 007405, Feb. 20, 1856, [NAM M234 R.151: 147 (same as?)], Whiting to Manypenny, 1856,undated + + + + + + 60 + 54 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 007405, Feb. 20, 1856, NAM M234 R.151: 147, 1856,undated + + + + + + 60 + 55 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 010151, Feb. 28, 1856,undated + + + + + + 60 + 56 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 010149, April 25, 1856,undated + + + + + + 60 + 57 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 016375, April 25, 1856,undated + + + + + + 60 + 58 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.151: 7, April 26, 1856,undated + + + + + + 60 + 59 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 10146, Apr. 28, 1856,undated + + + + + + 60 + 60 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.151: 103, Aug. 30, 1856,undated + + + + + + 60 + 61 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M1166 R.3, 5-9-1856,undated + + + + + + 60 + 62 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.151: 94, 6-2-1856,undated + + + + + + 60 + 63 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M1166 R.3: 587-88, 7-2-1856,undated + + + + + + 60 + 64 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: St. Paul Pioneer and Democrat, July 31, 1856,undated + + + + + + 60 + 65 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.151: 29, 8-12-1856,undated + + + + + + 60 + 66 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.151: 27, 8-12-1856,undated + + + + + + 60 + 67 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: Sauk Rapids Frontierman, Sept. 25, 1856, p. 2, 1856,undated + + + + + + 60 + 68 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.151: 44, 10-15-1856,undated + + + + + + 60 + 69 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: Sauk Rapids Frontierman, p. 2, Oct. 30, 1856,undated + + + + + + 60 + 70 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: Babcock Trans, Box 4, Nov. 22, 1856,undated + + + + + + 60 + 71 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.598: 790- 794, 12-18-1856,undated + + + + + + 60 + 72 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MHS M390, R.3, 1857,undated + + + + + + 60 + 73 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MCT Dkt. 18C, S, T Ex. 12, 1857,undated + + + + + + 60 + 74 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: Babcock Transcripts, Box 4, Mar. 7, 1857,undated + + + + + + 60 + 75 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: Babcock Transcripts, Box 4, Apr. 18, 1857,undated + + + + + + 60 + 76 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM 1050 R.12: 550, 8-18-1857,undated + + + + + + 60 + 77 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 010157, Sept. 4, 1857?, 1857,undated + + + + + + 60 + 78 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MHS M390 R.3, 1858?, 1858,undated + + + + + + 60 + 79 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 007441, Feb. 19, 1858,undated + + + + + + 60 + 80 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: Sauk Rapids Frontiersman, April 8, 1858,undated + + + + + + 60 + 81 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: Babcock Transcripts, Box 5, May 28, 1858,undated + + + + + + 60 + 82 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: ARCOIA 1858, 10-1-1858,undated + + + + + + 60 + 83 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 004546, Feb. 21, 1859,undated + + + + + + 60 + 84 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 007763, Mar. 22, 1859,undated + + + + + + 60 + 85 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 007766, Apr. 23, 1859,undated + + + + + + 60 + 86 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: Voight Ex. D, 4-23-1859,undated + + + + + + 60 + 87 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M1166 R.5: 1162, Sept. 10, 1859,undated + + + + + + 60 + 88 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: Voight Ex. E, 10-20-1859,undated + + + + + + 60 + 89 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: Sauk Rapids Frontierman, Nov. 3, 1859,undated + + + + + + 60 + 90 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: ARCOIA Nov. 26, 1859,undated + + + + + + 60 + 91 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: Report of the Secretary of Interior, 1860,undated + + + + + + 60 + 92 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: ABCFM BA10.A512b, Box 6, Jan. 17, 1860,undated + + + + + + 60 + 93 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: ABCFM BA10.A512b Box 6, Jan. 30, 1860,undated + + + + + + 60 + 94 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.152: 180, Sept. 26, 1860,undated + + + + + + 60 + 95 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.152: 181, 9-26-1860,undated + + + + + + 60 + 96 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.392, 10-10-1860,undated + + + + + + 60 + 97 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.152: 179, 10-10-1860,undated + + + + + + 60 + 98 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MCT Dkt. 18C, S, T Ex. 117, Nov. 15, 1860,undated + + + + + + 60 + 99 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: Voight Ex. F, 11-22-1860,undated + + + + + + 60 + 100 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: ARCOIA, Nov. 30, 1860,undated + + + + + + 60 + 101 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.152: 269, 1861,undated + + + + + + 60 + 102 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 007443, Feb. 16, 1861,undated + + + + + + 60 + 103 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.152: 285, May 31, 1861,undated + + + + + + 60 + 104 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M1166 R.7: 42, 9-25-1861,undated + + + + + + 60 + 105 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 007595, Oct. 28, 1861,undated + + + + + + 60 + 106 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 004553, Oct. 28, 1861,undated + + + + + + 60 + 107 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 010165, Oct. 28, 1861,undated + + + + + + 60 + 108 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: ARCOIA, Nov. 27, 1861,undated + + + + + + 60 + 109 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.152: 267, 12-21-1861,undated + + + + + + 60 + 110 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 010162, Dec. 21, 1861,undated + + + + + + 60 + 111 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.153, [1862], 1862,undated + + + + + + 60 + 112 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.153: 4, 1-3-1862,undated + + + + + + 60 + 113 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.153: 7, 1-3-1862,undated + + + + + + 60 + 114 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.153: 103, 1-24-1862,undated + + + + + + 60 + 115 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M348 R.12: 319-20, Feb. 27, 1862,undated + + + + + + 60 + 116 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M348 R.12: 321, Feb. 27, 1862,undated + + + + + + 60 + 117 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M153: 108, March 22, 1862, MN 010169, 1862,undated + + + + + + 60 + 118 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: S.D. 77 [37-2] 1124, Mar. 31, 1862,undated + + + + + + 60 + 119 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW-MNHS Box 3, Mar. 31, 1862,undated + + + + + + 60 + 120 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 008083, Mar. 22, 1862,undated + + + + + + 60 + 121 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW-MNHS Box 3, April 22, 1862,undated + + + + + + 60 + 122 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW-MNHS Box 3, April 25, 1862,undated + + + + + + 60 + 123 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW-MNHS Box 3, May 8, 1862,undated + + + + + + 60 + 124 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 010167, May 9, 1862,undated + + + + + + 60 + 125 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M21 R.68: 495-96, July 30, 1862,undated + + + + + + 60 + 126 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M574 R.59: 798-99, July 30, 1862,undated + + + + + + 60 + 127 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, Sept. 1862,undated + + + + + + 60 + 128 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M574 R.59: 826-28, Sept. 2, 1862,undated + + + + + + 60 + 129 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW-MNHS Box 3, Sept. 4, 1862,undated + + + + + + 60 + 130 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M574 R.59: 841-43, Sept. 4, 1862,undated + + + + + + 60 + 131 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW-MNHS Box 3, Sept. 5, 1862,undated + + + + + + 60 + 132 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW-MNHS Box 3, Sept. 6, 1862,undated + + + + + + 60 + 133 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW-MNHS Box 3, Sept. 9, 1862,undated + + + + + + 60 + 134 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, Sept. 10, 1862,undated + + + + + + 60 + 135 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, Sept. 12, 1862,undated + + + + + + 60 + 136 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M574 R.59: 836- 41, Sept. 17, 1862,undated + + + + + + 60 + 137 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, Sept. 19, 1862,undated + + + + + + 60 + 138 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, Sept. 24, 1862,undated + + + + + + 60 + 139 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, Sept. 29, 1862,undated + + + + + + 60 + 140 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, Oct. 3, 1862,undated + + + + + + 60 + 141 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.153, Oct. 7, 1862,undated + + + + + + 60 + 142 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 010180, Oct. 21, 1862,undated + + + + + + 60 + 143 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, Nov. 19, 1862,undated + + + + + + 60 + 144 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.153, Nov. 26, 1862,undated + + + + + + 60 + 145 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, Nov. 26, 1862,undated + + + + + + 60 + 146 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, Nov. 27, 1862,undated + + + + + + 60 + 147 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.153, Dec. 6, 1862,undated + + + + + + 60 + 148 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, Dec. 7, 1862,undated + + + + + + 60 + 149 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, Dec. 8, 1862,undated + + + + + + 60 + 150 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.153, Dec. 11, 1862,undated + + + + + + 60 + 151 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.153, Dec. 12, 1862,undated + + + + + + 60 + 152 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, Dec. 13, 1862,undated + + + + + + 60 + 153 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.153, Dec. 15, 1862,undated + + + + + + 60 + 154 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, Dec. 19, 1862,undated + + + + + + 60 + 155 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M21 R.69: 456, Dec. 23, 1862,undated + + + + + + 60 + 156 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M21 R.69: 457, Dec. 23, 1862,undated + + + + + + 60 + 157 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M606 R.4: 187, Dec. 24, 1862, MN 002891, 1862,undated + + + + + + 60 + 158 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M606 R.4: 262- 63, Dec. 24, 1862,undated + + + + + + 60 + 159 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NA RG279, ICC1863, Docket # 18-S, Def. Exhibit CR-2-24, 1863,undated + + + + + + 60 + 160 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M574 R.59, Treaty 1863,undated + + + + + + 60 + 161 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, Jan. 22, 1863,undated + + + + + + 60 + 162 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.599: 812- 814, 1-22-1863,undated + + + + + + 60 + 163 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.153, Jan. 26, 1863, Foster to Usher, 1863,undated + + + + + + 60 + 164 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.153, Jan. 26, 1863, Thompson to Usher, 1863,undated + + + + + + 60 + 165 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW-MNHS Box 3, Feb. 1, 1863,undated + + + + + + 60 + 166 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.153, Feb. 5, 1863,undated + + + + + + 60 + 167 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW MNHS Box 3, Feb. 7, 1863,undated + + + + + + 60 + 168 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: H. Ex. D 68(37-3) 1163, Feb. 12, 1863,undated + + + + + + 60 + 169 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, Feb. 16, 1863,undated + + + + + + 60 + 170 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, Feb. 28, 1863, 2 X Copies, 1863,undated + + + + + + 60 + 171 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, Mar. 1, 1863,undated + + + + + + 60 + 172 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.153: 197, 3-5-1863,undated + + + + + + 60 + 173 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, Mar. 10, 1863,undated + + + + + + 60 + 174 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM T494 R.6: 541-53, Mar. 11, 1863,undated + + + + + + 60 + 175 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: T494 R.6: 541-653, March 11, 1863,undated + + + + + + 60 + 176 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM T494- JL of Treaty, March 11, 1863,undated + + + + + + 60 + 177 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M348 R.13: 99-101, Mar. 11, 1863, MN 002888, 1863,undated + + + + + + 60 + 178 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M606 R.4: 265, March 12, 1863, MN 002119, 1863,undated + + + + + + 60 + 179 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.153: 408, Mar. 14, 1863,undated + + + + + + 60 + 180 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.153: 220, 3-17-1863,undated + + + + + + 60 + 181 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, Mar. 18, 1863,undated + + + + + + 60 + 182 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, Mar. 18, 1863 (Folder 1 of 2),undated + + + + + + 60 + 183 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, Mar. 18, 1863 (Folder 2 of 2),undated + + + + + + 60 + 184 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.153: 224, 4-30-1863,undated + + + + + + 60 + 185 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 002950, Apr. 30, 1863,undated + + + + + + 60 + 186 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, May 6, 1863,undated + + + + + + 60 + 187 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, May 9, 1863,undated + + + + + + 60 + 188 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW-MNHS Box 3, May 14, 1863,undated + + + + + + 60 + 189 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 004556, May 14, 1863,undated + + + + + + 60 + 190 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.153, May 14, 1863, MN 002947, 1863,undated + + + + + + 60 + 191 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, May 17, 1864,undated + + + + + + 60 + 192 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, May 18, 1863,undated + + + + + + 60 + 193 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 002113, June 6, 7, 1863,undated + + + + + + 60 + 194 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.393: 150-153, June 26, 1863,undated + + + + + + 60 + 195 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.393: 250-251, June 26, 1863,undated + + + + + + 60 + 196 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.393: 116-117, July 1, 1863,undated + + + + + + 60 + 197 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 3, Aug. 1, 1863,undated + + + + + + 60 + 198 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.153: 228, 7-7-1863,undated + + + + + + 60 + 199 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.393: 118-123, Aug. 24, 1863,undated + + + + + + 60 + 200 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.153, Oct. 8, 1863,undated + + + + + + 60 + 201 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.153, Oct. 13, 1863,undated + + + + + + 60 + 202 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.153: 363, 10-25-1863,undated + + + + + + 60 + 203 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.153: 361, 10-28-1863,undated + + + + + + 60 + 204 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW-MNHS Box 3, Nov. 17, 1863,undated + + + + + + 60 + 205 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: Voight Ex. O, 11-14-1863,undated + + + + + + 60 + 206 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.153, Dec. 10, 1863,undated + + + + + + 60 + 207 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.154: 93, 1864,undated + + + + + + 60 + 208 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.154: 55, Jan. 5, 1864,undated + + + + + + 60 + 209 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.393: 186, Jan. 20, 1864,undated + + + + + + 60 + 210 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.154: 49, 2-3-1864,undated + + + + + + 60 + 211 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MCT DEF Ex 78, March 3, 1864,undated + + + + + + 60 + 212 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: House Doc. 76 (38-1) 1195, April 27, 1864,undated + + + + + + 60 + 213 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.154, May 3, 1864, MN 002946, 1864,undated + + + + + + 60 + 214 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 004559, May 7, 1864,undated + + + + + + 60 + 215 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M348 R.13: 412, May 12, 1864,undated + + + + + + 60 + 216 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M606 R.4: 496, May 17, 1864,undated + + + + + + 60 + 217 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.393: 350, June 4, 1864,undated + + + + + + 60 + 218 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.393: 208-210, July 2, 1864,undated + + + + + + 60 + 219 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.154: 92, Aug. 21, 1864,undated + + + + + + 60 + 220 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.154: 91, 8-24-1864,undated + + + + + + 60 + 221 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 002121, Oct. 1, 1864,undated + + + + + + 60 + 222 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.393: 556-557, Jan. 18, 1865,undated + + + + + + 60 + 223 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.393: 456-457, Jan. 25, 1865,undated + + + + + + 60 + 224 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: Voight Ex. G, 2-6-1865,undated + + + + + + 60 + 225 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M606 R.5, Feb. 27, 1865,undated + + + + + + 60 + 226 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: Voight Ex. H, 4-4-1865,undated + + + + + + 60 + 227 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW- MNHS Box 4, May 16, 1865,undated + + + + + + 60 + 228 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 004558, May 26, 1865,undated + + + + + + 60 + 229 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: HW MNHS Box 4, July 11, 1865,undated + + + + + + 60 + 230 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.154: 161, 8-19-1865,undated + + + + + + 60 + 231 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.155: 048, 9-30-1865,undated + + + + + + 60 + 232 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MN 010181, Oct. 12, 1865,undated + + + + + + 60 + 233 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M21 R.78: 329, Oct. 18, 1865,undated + + + + + + 60 + 234 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.393, Nov. 8, 1865,undated + + + + + + 60 + 235 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.154: 173, 11-9-1865,undated + + + + + + 60 + 236 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.155: 022, 11-13-1865,undated + + + + + + 60 + 237 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.155: 009, 11-30-1865,undated + + + + + + 60 + 238 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: MCT Dkt. 18C, S, T Ex. 118, Dec. 8, 1865,undated + + + + + + 60 + 239 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M21 R.78: 534-35, Dec. 8, 1865,undated + + + + + + 60 + 240 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.155: 036, 12-20-1865,undated + + + + + + 60 + 241 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.154: 136, 12-22-1865,undated + + + + + + 60 + 242 + Box 6 Mille Lacs Chippewa, Calendar documents, 1855-1865: NAM M234 R.393, Dec. 25, 1865,undated + + + + + + 61 + 1 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.155: 035, 1-9-1866,undated + + + + + + 61 + 2 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.155: 089, 2-6-1866,undated + + + + + + 61 + 3 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MN 004603, Feb. 10, 1866,undated + + + + + + 61 + 4 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.155: 097, 2-12-1866,undated + + + + + + 61 + 5 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.837: 404-05, Feb. 24, 1866,undated + + + + + + 61 + 6 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.393, Feb. 24, 1866, B. F. “66”, 1866,undated + + + + + + 61 + 7 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.393, Feb. 27, 1866, MCT DKT 18C, S, T, Ex 119, B.F. 66, 1866,undated + + + + + + 61 + 8 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.155: 103, 3-5-1866,undated + + + + + + 61 + 9 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.599: 1408-1417, 3-14-1866,undated + + + + + + 61 + 10 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.155: 128, March 17, 1866,undated + + + + + + 61 + 11 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M606 R.6: 228, April 11, 1866,undated + + + + + + 61 + 12 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.155: 390, 4-14-1866,undated + + + + + + 61 + 13 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MN 004604, Apr. 25, 1866,undated + + + + + + 61 + 14 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M348 R.15, April 30, 1866,undated + + + + + + 61 + 15 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M606 R.6: 263, April 30, 1866,undated + + + + + + 61 + 16 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.393: 693-696, May 1866,undated + + + + + + 61 + 17 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M606 R.7: 263, May 6, 1866,undated + + + + + + 61 + 18 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.155: 342, 5-30-1866,undated + + + + + + 61 + 19 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Voight Ex. I, 6-23-1866,undated + + + + + + 61 + 20 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Voight Ex. J, 7-21-1866,undated + + + + + + 61 + 21 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.155: 48, 7-31-1866,undated + + + + + + 61 + 21 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.155: 215, 8-21-1866,undated + + + + + + 61 + 22 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: HW- MNHS Box 4, Sept. 18, 1866,undated + + + + + + 61 + 23 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: HW- MNHS Box 4, Sept. 20, 1866,undated + + + + + + 61 + 24 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MCT Dkt. 18C, S, T Ex. 120, Oct. 22, 1866,undated + + + + + + 61 + 25 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.155: 262, 11-3-1866,undated + + + + + + 61 + 26 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MN 002886, Dec. 24, 1866,undated + + + + + + 61 + 27 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.155: 444, 12-29-1866,undated + + + + + + 61 + 28 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.155: 666, 12-31-1866,undated + + + + + + 61 + 29 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.155: 604, 1-16-1867,undated + + + + + + 61 + 30 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.155: 393, 2-8-1867,undated + + + + + + 61 + 31 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.155: 425, 2-8-1867,undated + + + + + + 61 + 32 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.155: 713, 2-27-1867,undated + + + + + + 61 + 33 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M606 R.7: Mar. 20, 1867, Chip Miss 1867,undated + + + + + + 61 + 34 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MN 001914, Mar. 20, 1867,undated + + + + + + 61 + 35 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.155: 428, March 23, 1867,undated + + + + + + 61 + 36 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.155: 538, 6-24-2867,undated + + + + + + 61 + 37 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.155: 687, July 15, 1867,undated + + + + + + 61 + 38 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.155: 687, 7-25-1867,undated + + + + + + 61 + 39 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: HW- MNHS Box 5, Sept. 13, 1867,undated + + + + + + 61 + 40 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.156: 319, 9-21-1867,undated + + + + + + 61 + 41 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: HW- MNHS Box 5, Sept. 23, 1867,undated + + + + + + 61 + 42 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: HW- MNHS Box 5, Sept. 24, 1867,undated + + + + + + 61 + 43 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: HW- MNHS Box 5, Sept. 25, 1867,undated + + + + + + 61 + 44 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.156: 324, 9-29-1867,undated + + + + + + 61 + 45 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: HW- MNHS Box 5, Sept. 30, 1867,undated + + + + + + 61 + 46 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: HW- MNHS Box 5, Oct. 8, 1867,undated + + + + + + 61 + 47 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.155: 614, 10-12-1867,undated + + + + + + 61 + 48 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: HW- MNHS Box 5, Oct. 14, 1867,undated + + + + + + 61 + 49 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: HW-MNHS Box 5, Oct. 14, 1867, Mix to Whipple, 1867,undated + + + + + + 61 + 50 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MN 002213, Oct. 29, 1867,undated + + + + + + 61 + 51 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.156: 319-326, 11-11-1867,undated + + + + + + 61 + 52 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: HW- MNHS Box 5, Nov. 15, 1867,undated + + + + + + 61 + 53 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: HW- MNHS Box 5, Nov. 23, 1867, Ruffee, 1867,undated + + + + + + 61 + 54 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: HW- MNHS Box 5, Nov. 23, 1867, Marshall to Whipple, 1867,undated + + + + + + 61 + 55 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.155: 658, 12-2-1867,undated + + + + + + 61 + 56 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: HW- MNHS Box 5, Dec. 2, 1867,undated + + + + + + 61 + 57 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: HW- MNHS Box 5, Dec. 3, 1867,undated + + + + + + 61 + 58 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.394: 224- 226, Dec. 10, 1867,undated + + + + + + 61 + 59 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.155: 741, Dec. 12, 1867,undated + + + + + + 61 + 60 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MN 004610, Dec. 12, 1867, Webb to Washburn, 1867,undated + + + + + + 61 + 61 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.155: 640, 12-14-1867,undated + + + + + + 61 + 62 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: HW- MNHS Box 5, Orig. Draft, 1868,undated + + + + + + 61 + 63 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: HW- MNHS Box 5, Jan. 6, 1868,undated + + + + + + 61 + 64 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MN 004612, Mar. 6, 1868,undated + + + + + + 61 + 65 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MN 004615, Mar. 7, 1868,undated + + + + + + 61 + 66 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.156: 145, 3-8-1868,undated + + + + + + 61 + 67 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: House Doc 228 (40-2) 1341, March 26, 1868,undated + + + + + + 61 + 68 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: House Doc 246 (40-2) 1341, April 8, 1868,undated + + + + + + 61 + 69 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.156: 293-302, 4-15-1868,undated + + + + + + 61 + 70 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MN 004613, June 1868,undated + + + + + + 61 + 71 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: HW MNHS Box 5, June 3, 1868,undated + + + + + + 61 + 72 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: HW MNHS Box 5, June 6, 1868,undated + + + + + + 61 + 73 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: HW- MNHS Box 5, July 20, 1868,undated + + + + + + 61 + 74 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.156: 68- 71, 7-25-1868,undated + + + + + + 61 + 75 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.156: 271- 277, 8-4-1868,undated + + + + + + 61 + 76 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MN 004614, Aug. 24, 1868,undated + + + + + + 61 + 77 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.156: 475- 479, 8-25-1868,undated + + + + + + 61 + 78 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.156: 133- 135, 9-20-1868,undated + + + + + + 61 + 79 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Minneapolis Tribune, Oct. 7, 1868, p. 2, 1868,undated + + + + + + 61 + 80 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MN 004618, Oct. 10, 1868,undated + + + + + + 61 + 81 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.156: 681- 683, 11-14-1868,undated + + + + + + 61 + 82 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.156: 700- 701, 12-13-1868,undated + + + + + + 61 + 83 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.156: 728- 729, 2-3-1869,undated + + + + + + 61 + 84 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: HW- MNHS Box 6, Feb. 8, 1869,undated + + + + + + 61 + 85 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MN 004622, Mar. 24, 1869,undated + + + + + + 61 + 86 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.394: 567, April 28, 1869,undated + + + + + + 61 + 87 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MN 004627, June 22, 1869,undated + + + + + + 61 + 88 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MN 007447, June 29, 1869,undated + + + + + + 61 + 89 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MN 004638, July 12, 1869,undated + + + + + + 61 + 90 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.156: 600, 8-23-1869,undated + + + + + + 61 + 91 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.156: 613, 9-6-1869,undated + + + + + + 61 + 92 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.394: 485-88, Sept. 12, 1869,undated + + + + + + 61 + 93 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MN 007597, Sept. 24, 1869,undated + + + + + + 61 + 94 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.394: 481-482, Sept. 30, 1869,undated + + + + + + 61 + 95 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.394: 491-494, Oct. 12, 1869,undated + + + + + + 61 + 96 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.156: 694-695, 12-3-1869, 2x copy, 1869,undated + + + + + + 61 + 97 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MN 007597, Dec. 23, 1869,undated + + + + + + 61 + 98 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.157: 276-77, Dec. 27, 1869,undated + + + + + + 61 + 99 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.157: 285-286, 1-24-1870,undated + + + + + + 61 + 100 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.157: 286- 292, 1-27-1870,undated + + + + + + 61 + 101 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.157: 289-292, Feb. 1870,undated + + + + + + 61 + 102 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: St. Anthony Democrat, Feb. 11, 1870,undated + + + + + + 61 + 103 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Special Case 109, Feb. 14, 1870, 1 x copy, 1870,undated + + + + + + 61 + 104 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.157: 286-288, 2-16-1870,undated + + + + + + 61 + 105 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: St. Paul Pioneer, March 1, 1870,undated + + + + + + 61 + 106 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Special Case 109, May 12, 1870,undated + + + + + + 61 + 107 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Minneapolis Tribune, May 29, 1870,undated + + + + + + 61 + 108 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Special Case 109, June 27, 1870, 1 x copy, 1870,undated + + + + + + 61 + 109 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Special Case 109, June 30, 1870, 1 x copy, 1870,undated + + + + + + 61 + 110 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Voight Ex. K, 10-11-1870,undated + + + + + + 61 + 111 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MN 007600, Oct. 31, 1870,undated + + + + + + 61 + 112 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.157: 186-188, 11-26, 1870,undated + + + + + + 61 + 113 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Voight, Ex. L, 11-30-1870,undated + + + + + + 61 + 114 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Voight, Ex. L, 12-7-1870,undated + + + + + + 61 + 115 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Voight, Ex. L, 12-12-1870,undated + + + + + + 61 + 116 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.158: 564- 566, 12-29-1870,undated + + + + + + 61 + 117 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Special Case 109, Jan. 9, 1871,undated + + + + + + 61 + 118 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: D-56, Feb. 22, 1871,undated + + + + + + 61 + 119 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.158: 10-12. Feb. 23, 1871,undated + + + + + + 61 + 120 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.158: 18-21, 2-23-1871,undated + + + + + + 61 + 121 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MN 004664, Feb. 25, 1871,undated + + + + + + 61 + 122 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Special Case 109, March 31, 1871,undated + + + + + + 61 + 123 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.158: 81-83, 4-5-1871,undated + + + + + + 61 + 124 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MN 004662, Apr. 7, 1871,undated + + + + + + 61 + 125 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Special Case 109, May 1, 1871,undated + + + + + + 61 + 126 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.158: 364, 5-1-1871,undated + + + + + + 61 + 127 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Special Case 109, May 13, 1871,undated + + + + + + 61 + 128 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Special Case 109, July 17, 1871,undated + + + + + + 61 + 129 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MN 004659, July 24, 1871,undated + + + + + + 61 + 130 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Special Case 109, Sept. 1, 1871,undated + + + + + + 61 + 131 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Special Case 109, Sept. 1, 1871 (Folder 1 of 3),undated + + + + + + 61 + 132 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Special Case 109, Sept. 1, 1871 (Folder 2 of 3),undated + + + + + + 61 + 133 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Special Case 109, Sept. 1, 1871 (Folder 3 of 3),undated + + + + + + 61 + 134 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.158: 436-441, 9-2-1871, 2 x copies, 1871,undated + + + + + + 61 + 135 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.158: 438, 9-3-1871,undated + + + + + + 61 + 136 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Minneapolis Tribune, Sept. 5, 1871,undated + + + + + + 61 + 137 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Special Case 109, Sept. 8, 1871,undated + + + + + + 61 + 138 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Special Case 109, Sept. 11, 1871,undated + + + + + + 61 + 139 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Minneapolis Tribune, Sept. 14, 1871,undated + + + + + + 61 + 140 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Special Case 109, Sept. 21, 1871,undated + + + + + + 61 + 141 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Special Case 109, Sept. 27, 1871,undated + + + + + + 61 + 142 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: St. Paul Daily Press, Oct. 3, 1871,undated + + + + + + 61 + 143 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Special Case 109, Oct. 17, 1871,undated + + + + + + 61 + 144 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MN 007603, Nov. 1, 1871,undated + + + + + + 61 + 145 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MN 009810, Nov. 8, 1871,undated + + + + + + 61 + 146 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Special Case 109, Nov. 13, 1871,undated + + + + + + 61 + 147 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.158: 607-614, 11-22-1871,undated + + + + + + 61 + 148 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.159: 14-16, 12-13-1871,undated + + + + + + 61 + 149 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MHS M390, R.4, 1872,undated + + + + + + 61 + 150 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: House Doc. 83 (42-2) 1510, Jan. 23, 1872,undated + + + + + + 61 + 151 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.394: 109-113, Feb. 1, 1872,undated + + + + + + 61 + 152 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.159: 147-150, 5-13-1872,undated + + + + + + 61 + 153 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MN 007448, May 18, 1872,undated + + + + + + 61 + 154 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.159: 360, 6-21-1872,undated + + + + + + 61 + 155 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Special Case 109, Nov. 8, 1872 (Folder 1 of 2),undated + + + + + + 61 + 156 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Special Case 109, Nov. 8, 1872 (Folder 2 of 2),undated + + + + + + 61 + 157 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: D-58, Nov. 30, 1872,undated + + + + + + 61 + 158 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Voight Ex. M, 12-18-1872,undated + + + + + + 61 + 159 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Special Case 109, 1873?, 1873,undated + + + + + + 61 + 160 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.160: 343-344, 1-21-1873,undated + + + + + + 61 + 161 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Voight Ex. N, 2-4-1873,undated + + + + + + 61 + 162 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: House Doc. 176 (42-3) 1567, Feb. 8, 1873,undated + + + + + + 61 + 163 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MN 004657, Feb. 17, 1873,undated + + + + + + 61 + 164 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Voight Ex. O, 2-17-1873,undated + + + + + + 61 + 165 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Voight Ex. O, 2-24-1873,undated + + + + + + 61 + 166 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Voight Ex. Q, 2-24-1873,undated + + + + + + 61 + 167 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.160: 607-608, 3-20-1873,undated + + + + + + 61 + 168 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.394: 34-37, March 31, 1873,undated + + + + + + 61 + 169 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.160: 480-481, 5-2-1873,undated + + + + + + 61 + 170 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Voight, Ex. P, 7-17-1873,undated + + + + + + 61 + 171 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.160: 125-128, 9-20-1873,undated + + + + + + 61 + 172 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.160: 137-140, 10-13-1873,undated + + + + + + 61 + 173 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: MCT DEF EX 79, Nov. 25, 1873,undated + + + + + + 61 + 174 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.395: 309- 311, Dec. 9, 1873,undated + + + + + + 61 + 175 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: St. Paul Dispatch, March 2, 1874,undated + + + + + + 61 + 176 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.161: 520-521, 4-13-1874,undated + + + + + + 61 + 177 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.161: 113, 4-23-1874,undated + + + + + + 61 + 178 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.161: 522-524, 5-7-1874,undated + + + + + + 61 + 179 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.161: 722-724, 5-12-1874,undated + + + + + + 61 + 180 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.160: 137, 5-18-1874,undated + + + + + + 61 + 181 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Senate Doc. 50(43-1) 1581, May 22, 1874,undated + + + + + + 61 + 182 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.160: 144, 6-16-1874,undated + + + + + + 61 + 183 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.161: 23-4, Aug. 17, 1874,undated + + + + + + 61 + 184 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.162: 573, 9-17-1874,undated + + + + + + 61 + 185 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.161: 773-775, 10-8-1874,undated + + + + + + 61 + 186 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.161: 217-219, 11-?-1874,undated + + + + + + 61 + 187 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: Minneapolis Tribune, Nov. 18, 1874,undated + + + + + + 61 + 188 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.161: 676, 12-7-1874,undated + + + + + + 61 + 189 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.161: 670, 12-15-1874,undated + + + + + + 61 + 190 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.161: 672-676, 12-17-1874,undated + + + + + + 61 + 191 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.162: 672, 12-23-1874,undated + + + + + + 61 + 192 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.162: 242-245, 1875,undated + + + + + + 61 + 193 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: St. Paul Daily Pioneer, Jan. 1, 1875,undated + + + + + + 61 + 194 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.162: 502-503, 1-13-1875,undated + + + + + + 61 + 195 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: St. Paul Daily Pioneer, Jan. 14, 1875,undated + + + + + + 61 + 196 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.162: 309-317, 1-24-1875?, 1875,undated + + + + + + 61 + 197 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.162: 321-329, 2-23-1875,undated + + + + + + 61 + 198 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.162: 734, 2-24-1875,undated + + + + + + 61 + 199 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.162: 60-70, 2-25-1875,undated + + + + + + 61 + 200 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.162: 242-245, rec. 3-10-1875,undated + + + + + + 61 + 201 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.162: 883-890, 7-26-1875,undated + + + + + + 61 + 202 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.162: 573, 9-17-1875,undated + + + + + + 61 + 203 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.163: 331-336, 10-6-1875,undated + + + + + + 61 + 204 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.162: 179-181, 11-14-1875,undated + + + + + + 61 + 205 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.162: 665-670, 11-15-1875,undated + + + + + + 61 + 206 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.162: 655-661, 11-16-1875,undated + + + + + + 61 + 207 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.162: 24-25, 12-6-1875,undated + + + + + + 61 + 208 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.163: 596-597, 12-6-1875,undated + + + + + + 61 + 209 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.162: 688-689, 12-17-1875,undated + + + + + + 61 + 210 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.163: 244, 12-27-1875,undated + + + + + + 61 + 211 + Box 7 Mille Lacs Chippewa, Calendar documents, 1866-1875: NAM M234 R.163: 596-597, 12-27-1875,undated + + + + + + 62 + 1 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MHS M390 R.2, 1876,undated + + + + + + 62 + 2 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.163: 446-448, 1-19-1876,undated + + + + + + 62 + 3 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.163: 241- 244, 1-24-1876,undated + + + + + + 62 + 4 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.163: 129-133, 1-31-1876,undated + + + + + + 62 + 5 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.163: 129-133, 2-5-1876,undated + + + + + + 62 + 6 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.163: 331-6, March 23, 1876,undated + + + + + + 62 + 7 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.163: 154-156, 3-31-1876,undated + + + + + + 62 + 8 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.163: 384-387, 4-6-1876,undated + + + + + + 62 + 9 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.163: 497-499, 4-7-1876,undated + + + + + + 62 + 10 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.163: 334, 4-10-1876,undated + + + + + + 62 + 11 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.163: 387, 5-10-1876,undated + + + + + + 62 + 12 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, July 3, 1876,undated + + + + + + 62 + 13 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, July 13, 1876,undated + + + + + + 62 + 14 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Minneapolis Tribune, Aug. 9, 1876,undated + + + + + + 62 + 15 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.163: 552, 9-8-1876,undated + + + + + + 62 + 16 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.163: 446-48, 1877,undated + + + + + + 62 + 17 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, Jan. 27, 1877,undated + + + + + + 62 + 18 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004086, Feb. 20, 1877,undated + + + + + + 62 + 19 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, March 1, 1877,undated + + + + + + 62 + 20 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.164: 763-765, 3-8-1877,undated + + + + + + 62 + 21 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.164: 773, 3-15-1877,undated + + + + + + 62 + 22 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.164: 229-235, 3-26-1877,undated + + + + + + 62 + 23 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.164: 494-497, 4-14-1877,undated + + + + + + 62 + 24 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.168: 431-436, 8-10-1877,undated + + + + + + 62 + 25 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, Sept. 5, 1877,undated + + + + + + 62 + 26 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.166: 320-325, 12-26-1877,undated + + + + + + 62 + 27 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MHS M390 R.2, 1878,undated + + + + + + 62 + 28 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.166: 343-344, 3-19-1878,undated + + + + + + 62 + 29 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.166: 658-659, 3-27-1878,undated + + + + + + 62 + 30 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.166: 427-431, 4-30-1878, NAM M234 (R.431), (431-436), 1878,undated + + + + + + 62 + 31 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.166: 517-522, 8-13-1878,undated + + + + + + 62 + 32 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.165: 314-326, 10-9-1878,undated + + + + + + 62 + 33 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: HR P439, Box 1, Oct. 12, 1877, Mille Lacs Chiefs to Rice, 1877,undated + + + + + + 62 + 34 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.165: 296-297, 12-13-1878,undated + + + + + + 62 + 35 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.167: 345-347, 2-17-1879,undated + + + + + + 62 + 36 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 008087, Mar. 3, 1879,undated + + + + + + 62 + 37 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.167: 973-979, 8-21-1879,undated + + + + + + 62 + 38 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.167: 973-979, 8-21-1879,undated + + + + + + 62 + 39 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.167: 450, 10-18-1879,undated + + + + + + 62 + 40 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.167: 773-776, 11-3-1879,undated + + + + + + 62 + 41 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: NAM M234 R.167: 797, 11-27-1879,undated + + + + + + 62 + 42 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Robert MNHS-FE 96, C6R6 1880,undated + + + + + + 62 + 43 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, Jan. 15, 1880,undated + + + + + + 62 + 44 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, March 22, 1880,undated + + + + + + 62 + 45 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Senate Docs. 71(46-2) 1891, April 14, 1880,undated + + + + + + 62 + 46 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004652, Apr. 14, 1880,undated + + + + + + 62 + 47 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, May 15, 1880,undated + + + + + + 62 + 48 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Spec. Case 109, rec. May 25, 1880,undated + + + + + + 62 + 49 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 003992, Feb. 17, 1881,undated + + + + + + 62 + 50 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 10539-1881, June 16, 1881,undated + + + + + + 62 + 51 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: St. Paul Daily Globe, July 21, 1881,undated + + + + + + 62 + 52 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 22197-1881, Dec. 15, 1881,undated + + + + + + 62 + 53 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, Dec. 30, 1881,undated + + + + + + 62 + 54 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 8782-1882, 1882,undated + + + + + + 62 + 55 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 6376-1882, 1882,undated + + + + + + 62 + 56 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 70-1882, 1882,undated + + + + + + 62 + 57 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: HW-MNHS Box 15, Feb. 13, 1882,undated + + + + + + 62 + 58 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: HW-MNHS Box 15, Mar. 8, 1882,undated + + + + + + 62 + 59 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, April 5, 1882,undated + + + + + + 62 + 60 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, May 10, 1882,undated + + + + + + 62 + 61 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: St. Paul Daily Globe, May 25, 1882,undated + + + + + + 62 + 62 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 10256-1882, June 6, 1882,undated + + + + + + 62 + 63 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Stillwater Gazette, July 26, 1882,undated + + + + + + 62 + 64 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Minneapolis Tribune, July 30, 1882,undated + + + + + + 62 + 65 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, Aug. 8, 1882,undated + + + + + + 62 + 66 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, Aug. 21, 1882,undated + + + + + + 62 + 67 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, Aug. 25, 1882,undated + + + + + + 62 + 68 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, Nov. 10, 1882,undated + + + + + + 62 + 69 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: HW-MNHS Box 16, Resolution – 1883,undated + + + + + + 62 + 70 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 18821-1883, 1883,undated + + + + + + 62 + 71 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 18765-1883, 1883,undated + + + + + + 62 + 72 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 13230-1883, 1883,undated + + + + + + 62 + 73 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 11832-1883, 1883,undated + + + + + + 62 + 74 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 7696-1883, 1883,undated + + + + + + 62 + 75 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 3977-1883, Jan. 31, 1883,undated + + + + + + 62 + 76 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 3703-1883, Jan. 31, 1883,undated + + + + + + 62 + 77 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, Feb. 13, 1883,undated + + + + + + 62 + 78 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 3926-1883, Feb. 15, 1883,undated + + + + + + 62 + 79 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 3977-1883, Feb. 16, 1883,undated + + + + + + 62 + 80 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 3703-1883, rec. Feb. 24, 1883,undated + + + + + + 62 + 81 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 3977-1883, Feb. 24, 1883,undated + + + + + + 62 + 82 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 7080-1883, March 29, 1883,undated + + + + + + 62 + 83 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 7080-1883, Apr. 17, 1883, ML, 1883,undated + + + + + + 62 + 84 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, April 26, 1883,undated + + + + + + 62 + 85 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 8420-1883, May 5, 1883, ML, 1883,undated + + + + + + 62 + 86 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, May 23, 1883,undated + + + + + + 62 + 87 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, June 27, 1883 (Folder 1 of 4),undated + + + + + + 62 + 88 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, June 27, 1883 (Folder 2 of 4),undated + + + + + + 62 + 89 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, June 27, 1883 (Folder 3 of 4),undated + + + + + + 62 + 90 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, June 27, 1883 (Folder 4 of 4),undated + + + + + + 62 + 91 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, July ? 1883,undated + + + + + + 62 + 92 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, July 7, 1883,undated + + + + + + 62 + 93 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, July 16, 1883,undated + + + + + + 62 + 94 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Minneapolis Tribune, July 18, 1883,undated + + + + + + 62 + 95 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 13419-1883, July 19, 1883,undated + + + + + + 62 + 96 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, July 21, 1883,undated + + + + + + 62 + 97 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Special Case 109, July 24, 1883,undated + + + + + + 62 + 98 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 16278-1883, Aug. 30, 1883,undated + + + + + + 62 + 99 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 22420-1883, Dec. 1, 1883,undated + + + + + + 62 + 100 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 22420-1883, Dec. 4, 1883,undated + + + + + + 62 + 101 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 23316-1883, Dec. 22, 1883,undated + + + + + + 62 + 102 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 23545-1883, Dec. 22, 1883 ,undated + + + + + + 62 + 103 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 23545-1883, Dec. 25, 1883 ,undated + + + + + + 62 + 104 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 961-1884, Jan. 11, 1884,undated + + + + + + 62 + 105 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 1362-1884, Jan. 14, 1884,undated + + + + + + 62 + 106 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 2587-1884, Jan. 21, 1884 (Folder 1 of 2),undated + + + + + + 62 + 107 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 2587-1884, Jan. 21, 1884 (Folder 2 of 2),undated + + + + + + 62 + 108 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 2587-1884, Jan. 23, 1884, 1884,undated + + + + + + 62 + 109 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 2587-1884, Jan. 24, 1884,undated + + + + + + 62 + 110 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 2587-1884, Jan. 26, 1884,undated + + + + + + 62 + 111 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 2564-1884, Feb. 2, 1884 (Folder 1 of 2),undated + + + + + + 62 + 112 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 2564-1884, Feb. 2, 1884 (Folder 2 of 2),undated + + + + + + 62 + 113 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 3110-1884, Feb. 6, 1884,undated + + + + + + 62 + 114 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 4778-1886, Feb. 9, 1886,undated + + + + + + 62 + 115 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 3110-1884, Feb. 11, 1884,undated + + + + + + 62 + 116 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 3649-1884, Feb. 18, 1884, M.L., 1884,undated + + + + + + 62 + 117 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 3437-1884, rec. Feb. 19, 1884,undated + + + + + + 62 + 118 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 2564-1884, Feb. 21, 1884,undated + + + + + + 62 + 119 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 3705-1884, Feb. 21, 1884,undated + + + + + + 62 + 120 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 4036-1884, Feb. 23, 1884,undated + + + + + + 62 + 121 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 3891-1884, Feb. 25, 1884,undated + + + + + + 62 + 122 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 4163-1884, March 1, 1884,undated + + + + + + 62 + 123 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 4160-1884, rec. March 3, 1884,undated + + + + + + 62 + 124 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 6220-1884, Mar. 17, 1884,undated + + + + + + 62 + 125 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 6053-1884, March 20, 1884,undated + + + + + + 62 + 126 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 5721-1884, March 21, 1884,undated + + + + + + 62 + 127 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 5681-1884, rec. March 22, 1884,undated + + + + + + 62 + 128 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 8335-1884, Apr. 26, 1884,undated + + + + + + 62 + 129 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 10905-1881, May 29, 1884,undated + + + + + + 62 + 130 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN004054, July 5, 1884,undated + + + + + + 62 + 131 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 14323-1884, July 25, 1884,undated + + + + + + 62 + 132 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 16109-1884, Aug. 19, 1884, Mille Lac, 1884,undated + + + + + + 62 + 133 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LMN 004057, Sept. 29, 1884,undated + + + + + + 62 + 134 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004666, Oct. 27, 1884,undated + + + + + + 62 + 135 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 23485-1884, Nov. 27, 1884,undated + + + + + + 62 + 136 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 23485-1884, Dec. 9, 1884,undated + + + + + + 62 + 137 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 23954-1884, Dec. 10, 1884,undated + + + + + + 62 + 138 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 23954-1884, Dec. 13, 1884,undated + + + + + + 62 + 139 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004074, 1885,undated + + + + + + 62 + 140 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004065, Feb. 4, 1885,undated + + + + + + 62 + 141 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004060, Feb. 6, 1885,undated + + + + + + 62 + 142 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004062, Feb. 7, 1885,undated + + + + + + 62 + 143 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004078, Feb. 10, 1885,undated + + + + + + 62 + 144 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004077, Feb. 19, 1885,undated + + + + + + 62 + 145 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 6094-1885, March 15, 1885,undated + + + + + + 62 + 146 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004067, Apr. 3, 1885,undated + + + + + + 62 + 147 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004073, D 10146, Apr. 3, 1885,undated + + + + + + 62 + 148 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 8991-1885, May 13, 1885,undated + + + + + + 62 + 149 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004080, July 20, 1885,undated + + + + + + 62 + 150 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004083, July 22, 1885,undated + + + + + + 62 + 151 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 22935-1885, Sept. 28, 1885,undated + + + + + + 62 + 152 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 19854-1885, Aug. 24, 1885,undated + + + + + + 62 + 153 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 27169-1885, Oct. 26, 1885,undated + + + + + + 62 + 154 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 27169-1885, Oct. 31, 1885,undated + + + + + + 62 + 155 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 27169-1885, Nov. 13, 1885,undated + + + + + + 62 + 156 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 30081-1885, Dec. 14, 1885,undated + + + + + + 62 + 157 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 32616-1886, 1886,undated + + + + + + 62 + 158 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 30438-1886, 1886,undated + + + + + + 62 + 159 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 28559-1886, 1886,undated + + + + + + 62 + 160 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 28233-1886, 1886,undated + + + + + + 62 + 161 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 27464-1886, 1886,undated + + + + + + 62 + 162 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 7969-1886, 1886 (Folder 1 of 2),undated + + + + + + 62 + 163 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 7969-1886, 1886 (Folder 2 of 2),undated + + + + + + 62 + 164 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 7969-1886, Feb. 27, 1886,undated + + + + + + 62 + 165 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 7969-1886, Feb. 27, 1886, typed, 1886,undated + + + + + + 62 + 166 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 7969-1886, March 4, 1886,undated + + + + + + 62 + 167 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 8151-1886, Mar. 18, 1886,undated + + + + + + 62 + 168 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 16267-1886, June 14, 1886,undated + + + + + + 62 + 169 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 32584-1886, enclo.1, June 15, 1886,undated + + + + + + 62 + 170 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004331, July 1, 1886,undated + + + + + + 62 + 171 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN004333, Aug. 20, 1886,undated + + + + + + 62 + 172 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004025, Aug. 24, 1886,undated + + + + + + 62 + 173 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Minneapolis Tribune, Oct. 14, 1886,undated + + + + + + 62 + 174 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004042, Oct. 20, 1886,undated + + + + + + 62 + 175 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004038, Nov. 5, 1886,undated + + + + + + 62 + 176 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 32584-1886, Dec. 4, 1886, ML, 1886,undated + + + + + + 62 + 177 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 33893-1886, Dec. 16, 1886,undated + + + + + + 62 + 178 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LR OIA 11938-1887, Mill Lac, 1887,undated + + + + + + 62 + 179 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 8369-1887, 1887,undated + + + + + + 62 + 180 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Gen. Allotment Act. Feb. 8, 1887, US Stats. 24: 388-91, 1887,undated + + + + + + 62 + 181 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 7439-1887, March 10, 1887,undated + + + + + + 62 + 182 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 7439-1887, March 13, 1887,undated + + + + + + 62 + 183 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 7439-1887, March 15, 1887,undated + + + + + + 62 + 184 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 7439-1887, March 17, 1887,undated + + + + + + 62 + 185 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004265, Mar. 22, 1887,undated + + + + + + 62 + 186 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 11938-1887, April 27, 1887,undated + + + + + + 62 + 187 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004267, Apr. 27, 1887,undated + + + + + + 62 + 188 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 11938-1887, May 4, 1887,undated + + + + + + 62 + 189 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 20574-1887, Aug. 4, 1887,undated + + + + + + 62 + 190 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 27131-1887, Oct. 10, 1887,undated + + + + + + 62 + 191 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 27663-1887, Oct. 17, 1887,undated + + + + + + 62 + 192 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: House Docs 110(50-1), 2558, Jan. 20, 1888,undated + + + + + + 62 + 193 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 2514-1888, Jan. 27, 1888,undated + + + + + + 62 + 194 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 2733-1888, Jan. 30, 1888,undated + + + + + + 62 + 195 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 6356-1888, March 1, 1888,undated + + + + + + 62 + 196 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 6356-1888, March 7, 1888,undated + + + + + + 62 + 197 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 003987, Mar. 15, 1888,undated + + + + + + 62 + 198 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 003997, Mar. 17, 1888,undated + + + + + + 62 + 199 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004035, Apr. 18, 1888,undated + + + + + + 62 + 200 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 13154-1888, May 10, 1888,undated + + + + + + 62 + 201 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004032, May 11, 1888,undated + + + + + + 62 + 202 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004000, June 12, 1888,undated + + + + + + 62 + 203 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004085, June 12, 1888,undated + + + + + + 62 + 204 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 17791-1888, July 11, 1888,undated + + + + + + 62 + 205 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 17796-1888, July 13, 1888,undated + + + + + + 62 + 206 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004023, Sept. 10, 1888,undated + + + + + + 62 + 207 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004018, Dec. 3, 1888,undated + + + + + + 62 + 208 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: House Report 247 [54-1] 2747, 1889,undated + + + + + + 62 + 209 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 12851-1889, 1889,undated + + + + + + 62 + 210 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Nelson Act, Jan. 14, 1889,undated + + + + + + 62 + 211 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 4493-1889, Feb. 13, 1889,undated + + + + + + 62 + 212 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 003969, Mar. 25, 1889,undated + + + + + + 62 + 213 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 7929-1889, Mar. 26, 1889,undated + + + + + + 62 + 214 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 8393-1889, March 30, 1889,undated + + + + + + 62 + 215 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Booklet 46578-0 Part II, May 24, 1889,undated + + + + + + 62 + 216 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: CCF White Earth, May 24, 1889, 46578-09, F.175.2 (II), 1889,undated + + + + + + 62 + 217 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 16282-1889, June 14, 1889,undated + + + + + + 62 + 218 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 16434-1889, June 16, 1889,undated + + + + + + 62 + 219 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 15862-1889, June 16, 1889,undated + + + + + + 62 + 220 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 15866-1889, June 17, 1889,undated + + + + + + 62 + 221 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: Svenska Ameri Kanska posten, June 18, 1889 (WPA), 1889,undated + + + + + + 62 + 222 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 16713-1889, June 22, 1889,undated + + + + + + 62 + 223 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 16696-1889, June 22, 1889,undated + + + + + + 62 + 224 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 16695-1889, June 22, 1889,undated + + + + + + 62 + 225 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 17001-1889, rec. June 26, 1889,undated + + + + + + 62 + 226 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 19634-1889, July 15, 1889,undated + + + + + + 62 + 227 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 23522-1889, Aug. 20, 1889,undated + + + + + + 62 + 228 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 24479-1889, Aug. 29, 1889,undated + + + + + + 62 + 229 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 004271, Aug. 29, 1889,undated + + + + + + 62 + 230 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 29144-1889, Oct. 12, 1889,undated + + + + + + 62 + 231 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: MN 002973, Dec. 3, 1889,undated + + + + + + 62 + 232 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 36853-1889, Dec. 16, 1889,undated + + + + + + 62 + 233 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 36853-1889, Dec. 16, 1889,undated + + + + + + 62 + 234 + Box 8 Mille Lacs Chippewa, Calendar documents, 1876-1889: LROIA 37269-1889, Dec. 26, 1889,undated + + + + + + 63 + 1 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: H. Ex. Doc. 99(51-1) 2741, Jan. 1890,undated + + + + + + 63 + 2 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004275, Jan. 21, 1890,undated + + + + + + 63 + 3 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 12874-1890, Jan. 22, 1890,undated + + + + + + 63 + 4 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 3783-1890, Feb. 4, 1890,undated + + + + + + 63 + 5 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 20033-1890, Feb. 5, 1890,undated + + + + + + 63 + 6 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 4537-1890, Feb. 14, 1890,undated + + + + + + 63 + 7 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 6199-1890, Feb. 12, 1890,undated + + + + + + 63 + 8 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 5277-1890, Feb. 17, 1890,undated + + + + + + 63 + 9 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 5593-1890, Feb. 17, 1890,undated + + + + + + 63 + 10 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 5946-1890, Feb. 17, 1890,undated + + + + + + 63 + 11 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 7774-1890, Feb. 18, 1890,undated + + + + + + 63 + 12 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 8305-1890, Feb. 19, 1890,undated + + + + + + 63 + 13 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004317, Feb. 25, 1890,undated + + + + + + 63 + 14 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004278, Feb. 28, 1890,undated + + + + + + 63 + 15 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 7217-1890, March 5, 1890,undated + + + + + + 63 + 16 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 6764-1890, Mar. 5, 1890,undated + + + + + + 63 + 17 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: HR 247, 54-1, Vol. 32 (SC 2747) 3-6-1890,undated + + + + + + 63 + 18 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 003003, Mar. 7, 1890,undated + + + + + + 63 + 19 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 002990, March 7, 1890,undated + + + + + + 63 + 20 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 8305-1890, March 15, 1890,undated + + + + + + 63 + 21 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 8305-1890, rec. March 18, 1890,undated + + + + + + 63 + 22 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 9368-1890, March 22, 1890,undated + + + + + + 63 + 23 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 9861-1890, March 24, 1890,undated + + + + + + 63 + 24 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 9874-1890, Mar. 27, 1890,undated + + + + + + 63 + 25 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 9874-1890, April 4, 1890,undated + + + + + + 63 + 26 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 11201-1890, April 12, 1890,undated + + + + + + 63 + 27 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 11202-1890, April 12, 1890,undated + + + + + + 63 + 28 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 11203-1890, April 12, 1890,undated + + + + + + 63 + 29 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 13924-1890, May 1, 1890,undated + + + + + + 63 + 30 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 13944-1890, May 5, 1890,undated + + + + + + 63 + 31 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004560, May 22, 1890,undated + + + + + + 63 + 32 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 16850-1890, May 28, 1890,undated + + + + + + 63 + 33 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 17904-1890, June 3, 1890,undated + + + + + + 63 + 34 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 20033-1890, June 27, 1890,undated + + + + + + 63 + 35 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA ML 19849-1890, June 28, 1890,undated + + + + + + 63 + 36 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 21226-1890, July 10, 1890,undated + + + + + + 63 + 37 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 21595-1890, July 12, 1890,undated + + + + + + 63 + 38 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 21907-1890, July 14, 1890,undated + + + + + + 63 + 39 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 21904-1890, July 18, 1890,undated + + + + + + 63 + 40 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 21905-1890, July 18, 1890, Mille Lac, 1890,undated + + + + + + 63 + 41 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 24625-1890, Aug. 6, 1890?,undated + + + + + + 63 + 42 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 39203-1890, Dec. 8, 1890,undated + + + + + + 63 + 43 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 40146-1890, Dec. 23, 1890,undated + + + + + + 63 + 44 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 44607-1891, 1891,undated + + + + + + 63 + 45 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 7349-1891, 1891,undated + + + + + + 63 + 46 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 8011-1891, 1891,undated + + + + + + 63 + 47 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 8072-1891, 1891,undated + + + + + + 63 + 48 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 1561-1891, Jan. 9, 1891,undated + + + + + + 63 + 49 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 2969-1891, Jan. 21, 1891,undated + + + + + + 63 + 50 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 4729-1891, Jan. 30, 1891,undated + + + + + + 63 + 51 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 7049-1891, Feb. 19, 1891,undated + + + + + + 63 + 52 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 8011-1891, Feb. 20, 1891,undated + + + + + + 63 + 53 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 9208-1891, Feb. 23, 1891,undated + + + + + + 63 + 54 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 9208-1891, Feb. 27, 1891,undated + + + + + + 63 + 55 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 9208-1891, March 7, 1891,undated + + + + + + 63 + 56 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 9671-1891, Mar. 10, 1891,undated + + + + + + 63 + 57 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 11006-1891, Mar. 21, 1891,undated + + + + + + 63 + 58 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 002978, May 19, 1891,undated + + + + + + 63 + 59 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 25823-1891, July 17, 1891,undated + + + + + + 63 + 60 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 26532-1891, July 17, 1891,undated + + + + + + 63 + 61 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 26532-1891, July 20, 1891,undated + + + + + + 63 + 62 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 30621-1891, Aug. 12, 1891,undated + + + + + + 63 + 63 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 32323-1891, Sept. 1, 1891,undated + + + + + + 63 + 64 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 32635-1891, Sept. 8, 1891,undated + + + + + + 63 + 65 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 33217-1891, Sept. 9, 1891,undated + + + + + + 63 + 66 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 33172-1891, rec. Sept. 12, 1891,undated + + + + + + 63 + 67 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 33898-1891, rec. Sept. 18, 1891,undated + + + + + + 63 + 68 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 35987-1891, Oct. 1, 1891,undated + + + + + + 63 + 69 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: Voight, Ex. S, rec. 10-15-1891,undated + + + + + + 63 + 70 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 38714-1891, Oct. 24, 1891,undated + + + + + + 63 + 71 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 38819-1891, Oct. 26, 1891, Mille Lac, 1891,undated + + + + + + 63 + 72 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 015414, Nov. 30, 1891,undated + + + + + + 63 + 73 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 45643-1891, Dec. 19, 1891,undated + + + + + + 63 + 74 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 45723-1891, Dec. 26, 1891,undated + + + + + + 63 + 75 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004297, 1892,undated + + + + + + 63 + 76 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004301, 1892,undated + + + + + + 63 + 77 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004305, 1892,undated + + + + + + 63 + 78 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004309, 1892,undated + + + + + + 63 + 79 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004313, 1892,undated + + + + + + 63 + 80 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 006304, 1892,undated + + + + + + 63 + 81 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 39175?- 1892, 1892,undated + + + + + + 63 + 82 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 5252- 1892?, Feb. 8, 1892,undated + + + + + + 63 + 83 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 10876-1892, March 11, 1892,undated + + + + + + 63 + 84 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 14803-1892, Apr. 19, 1892,undated + + + + + + 63 + 85 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: Senate Doc. 571 (52-1) 2913, April 19, 1892,undated + + + + + + 63 + 86 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 17760-1892, May 9, 1892,undated + + + + + + 63 + 87 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 31878-1892, Aug. 29, 1892,undated + + + + + + 63 + 88 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 38053-1892, Oct. 18, 1892,undated + + + + + + 63 + 89 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 44864-1892, Dec. 17, 1892,undated + + + + + + 63 + 90 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 45266-1892, Dec. 20, 1892,undated + + + + + + 63 + 91 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004286, 1893,undated + + + + + + 63 + 92 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004293, 1893,undated + + + + + + 63 + 93 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004282, 1893,undated + + + + + + 63 + 94 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004289, 1893,undated + + + + + + 63 + 95 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 001931, 1893?,undated + + + + + + 63 + 96 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 12063-1893, 1893,undated + + + + + + 63 + 97 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 3762-1893, Jan. 21, 1893,undated + + + + + + 63 + 98 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 3762-1893, Jan. 24, 1893,undated + + + + + + 63 + 99 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: Svenska Ameri Kanska posten, Feb. 28, 1893, (WPA), 1893,undated + + + + + + 63 + 100 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 11137-1893, Mar. 28, 1893,undated + + + + + + 63 + 101 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 12648-1893, Apr. 6, 1893,undated + + + + + + 63 + 102 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004402, July 22, 1893,undated + + + + + + 63 + 103 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004400, July 27, 1893,undated + + + + + + 63 + 104 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 35061-1893, Sept. 14, 1893,undated + + + + + + 63 + 105 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 36329-1893, Sept. 19, 1893,undated + + + + + + 63 + 106 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 36329-1893, Sept. 23, 1893,undated + + + + + + 63 + 107 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 38117-1893, Oct. 11, 1893,undated + + + + + + 63 + 108 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 38385-1893, Oct. 13, 1893,undated + + + + + + 63 + 109 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 44238-1893, Nov. 25, 1893,undated + + + + + + 63 + 110 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 44238-1893, Nov. 27, 1893,undated + + + + + + 63 + 111 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 44238-1893, Nov. 28, 1893,undated + + + + + + 63 + 112 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: Joint Resolution, Dec. 19, 1893, 53 Cong. 2nd Session, 1893,undated + + + + + + 63 + 113 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 119-1894, 1894,undated + + + + + + 63 + 114 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 1566-1894, 1894,undated + + + + + + 63 + 115 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 3683-1894, 1894,undated + + + + + + 63 + 116 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 2924-1894, Jan. 16, 1894,undated + + + + + + 63 + 117 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 6412-1894, Jan. 29, 1894,undated + + + + + + 63 + 118 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 8499-1894, Feb. 20, 1894,undated + + + + + + 63 + 119 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 8709-1894, Feb. 26, 1894,undated + + + + + + 63 + 120 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 12962-1894, Apr. 4, 1894,undated + + + + + + 63 + 121 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 12960-1894, Apr. 7, 1894,undated + + + + + + 63 + 122 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 15652-1894, Apr. 21, 1894,undated + + + + + + 63 + 123 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004114, May 26, 1894,undated + + + + + + 63 + 124 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 22633-1894, June 12, 1894, Mille Lac, 1894,undated + + + + + + 63 + 125 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004526, July 16, 1894,undated + + + + + + 63 + 126 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004525, July 18, 1894,undated + + + + + + 63 + 127 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004528, July 19, 1894,undated + + + + + + 63 + 128 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004520, Sept. 4, 1894,undated + + + + + + 63 + 129 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 34472-1894, Sept. 6, 1894,undated + + + + + + 63 + 130 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 48382-1894, Oct. 10, 1894,undated + + + + + + 63 + 131 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 44699-1894, rec. Nov. 15, 1894,undated + + + + + + 63 + 132 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 4856- 1894, Dec. 7, 1894,undated + + + + + + 63 + 133 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 50831-1894, Dec. 21, 1894,undated + + + + + + 63 + 134 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004508, 1895,undated + + + + + + 63 + 135 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004511, 1895,undated + + + + + + 63 + 136 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004514, 1895,undated + + + + + + 63 + 137 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 36033-1895, 1895, MN 004517, 1895,undated + + + + + + 63 + 138 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 46738-1895, 1895,undated + + + + + + 63 + 139 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 3165-1895, Jan. 8, 1895,undated + + + + + + 63 + 140 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 8019-1895, Feb. 20, 1895,undated + + + + + + 63 + 141 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 10795-1895, March 5, 1895,undated + + + + + + 63 + 142 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 28660-1895, July 2, 1895,undated + + + + + + 63 + 143 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 28600-1895, Rec. July 10, 1895,undated + + + + + + 63 + 144 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 31596-1895, July 24, 1895,undated + + + + + + 63 + 145 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 34684-1895, Aug. 16, 1895,undated + + + + + + 63 + 146 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 45133-1895, Nov. 2, 1895,undated + + + + + + 63 + 147 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 45347-1895, Nov. 7, 1895,undated + + + + + + 63 + 148 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 9262-1896, 1896,undated + + + + + + 63 + 149 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 26008-1896, 1896,undated + + + + + + 63 + 150 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 29633-1896, 1896,undated + + + + + + 63 + 151 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 37410-1896, 1896,undated + + + + + + 63 + 152 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 7243-1896, Feb. 8, 1896,undated + + + + + + 63 + 153 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 17497-1896, March 3, 1896,undated + + + + + + 63 + 154 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 11479-1896, March 23, 1896,undated + + + + + + 63 + 155 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 13454-1896, April 6, 1896,undated + + + + + + 63 + 156 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 18062-1896, May 8, 1896,undated + + + + + + 63 + 157 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 20540-1896, May 29, 1896,undated + + + + + + 63 + 158 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 20760-1896, June 2, 1896,undated + + + + + + 63 + 159 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 28575-1896, July 25, 1896,undated + + + + + + 63 + 160 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004567, Aug. 8, 1896,undated + + + + + + 63 + 161 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004577, Aug. 10, 1896,undated + + + + + + 63 + 162 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004503, Sept. 5, 1896,undated + + + + + + 63 + 163 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004502, Sept. 9, 1896,undated + + + + + + 63 + 164 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 36769-1896, Sept. 22, 1896,undated + + + + + + 63 + 165 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004479, Oct. 2, 1896,undated + + + + + + 63 + 166 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 44649-1896, Nov. 23, 1896,undated + + + + + + 63 + 167 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 27959-1897, 1897,undated + + + + + + 63 + 168 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 52436-1897, 1897,undated + + + + + + 63 + 169 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 47513-1897, 1897,undated + + + + + + 63 + 170 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 44866-1897, 1897,undated + + + + + + 63 + 171 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 38016-1897, 1897,undated + + + + + + 63 + 172 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 37294-1897, 1897,undated + + + + + + 63 + 173 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 37250-1897, 1897,undated + + + + + + 63 + 174 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 25563-1897, 1897,undated + + + + + + 63 + 175 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 25562-1897, 1897,undated + + + + + + 63 + 176 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004496, 1897,undated + + + + + + 63 + 177 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004493, 1897,undated + + + + + + 63 + 178 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004490, 1897,undated + + + + + + 63 + 179 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004487, 1897,undated + + + + + + 63 + 180 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 52934-1897, 1897,undated + + + + + + 63 + 181 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 1885 (51578) - 1897, Jan. 7, 1897,undated + + + + + + 63 + 182 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004504, Jan. 7, 1897,undated + + + + + + 63 + 183 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004478, Jan. 12, 1897,undated + + + + + + 63 + 184 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 4002 [51562] 1897, Jan. 26, 1897,undated + + + + + + 63 + 185 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 8385 (51562) - 1897, Feb. 27, 1897,undated + + + + + + 63 + 186 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 51562-1897, Feb. 27, 1897,undated + + + + + + 63 + 187 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 8347 (51562) – 1897, March 2, 1897,undated + + + + + + 63 + 188 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 9304- 1897, March 9, 1897,undated + + + + + + 63 + 189 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 9972-1897, March 15, 1897,undated + + + + + + 63 + 190 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004462, Mar. 23, 1897,undated + + + + + + 63 + 191 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004499, Apr. 2, 1897,undated + + + + + + 63 + 192 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 13575- 1897, April 5, 1897,undated + + + + + + 63 + 193 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 13575- 1897, April 8, 1897,undated + + + + + + 63 + 194 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004481, April 15, 1897, April 17, encloses 4/15, 1897,undated + + + + + + 63 + 195 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 008107, April 29, 1897,undated + + + + + + 63 + 196 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 20055- 1897, May 17, 1897,undated + + + + + + 63 + 197 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 22383-1897, June 8, 1897,undated + + + + + + 63 + 198 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 24115- 1897, June 15, 1897,undated + + + + + + 63 + 199 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: ML Supplmt Census, June 20, 1897,undated + + + + + + 63 + 200 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 25933- 1897, June 28, 1897,undated + + + + + + 63 + 201 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 26750- 1897, July 6, 1897,undated + + + + + + 63 + 202 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 27354-1897, July 6, 1897,undated + + + + + + 63 + 203 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 27959-1897, July 10, 1897,undated + + + + + + 63 + 204 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 28487-1897, July 14, 1897,undated + + + + + + 63 + 205 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 34284-1897, July 17, 1897,undated + + + + + + 63 + 206 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 33957-1897, Aug. 7, 1897,undated + + + + + + 63 + 207 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 33927-1897, Aug. 9, 1897,undated + + + + + + 63 + 208 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 33928-1897, Aug. 11, 1897 (Folder 1 of 2),undated + + + + + + 63 + 209 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 33928-1897, Aug. 11, 1897 (Folder 2 of 2),undated + + + + + + 63 + 210 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 34284-1897, Aug. 20, 1897,undated + + + + + + 63 + 211 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004471, Sept. 6, 1897,undated + + + + + + 63 + 212 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 39457-1897, Sept. 17, 1897,undated + + + + + + 63 + 213 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 42257-1897, Oct. 7, 1897,undated + + + + + + 63 + 214 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 44866-1897, Oct. 18, 1897,undated + + + + + + 63 + 215 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 43981-1897, Oct. 19, 1897,undated + + + + + + 63 + 216 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 47193-1897, Nov. 9, 1897,undated + + + + + + 63 + 217 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 48278-1897, Nov. 12, 1897,undated + + + + + + 63 + 218 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 47995-1897, Nov. 13, 1897,undated + + + + + + 63 + 219 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 49487-1897, Nov. 18, 1897,undated + + + + + + 63 + 220 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 52934-1897, Nov. 18, 1897,undated + + + + + + 63 + 221 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 49503-1897, Nov. 23, 1897,undated + + + + + + 63 + 222 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 50279-1897, Nov. 26, 1897,undated + + + + + + 63 + 223 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 52934-1897, Dec. 4, 1897,undated + + + + + + 63 + 224 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 52934-1897, Dec. 11, 1897,undated + + + + + + 63 + 225 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 53578-1897, Dec. 16, 1897,undated + + + + + + 63 + 226 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 54006-1897, Dec. 18, 1897,undated + + + + + + 63 + 227 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 54055-1897, Dec. 22, 1897,undated + + + + + + 63 + 228 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004201, 1898,undated + + + + + + 63 + 229 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004710, 1898,undated + + + + + + 63 + 230 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004198, 1898,undated + + + + + + 63 + 231 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004194, 1898,undated + + + + + + 63 + 232 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004194, 1898,undated + + + + + + 63 + 233 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 22289-1898, 1898,undated + + + + + + 63 + 234 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 19143-1898, 1898,undated + + + + + + 63 + 235 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 17986-1898, 1898,undated + + + + + + 63 + 236 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 9826-1898, 1898,undated + + + + + + 63 + 237 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 8822-1898, 1898,undated + + + + + + 63 + 238 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 3085-1898, Jan. 15, 1898,undated + + + + + + 63 + 239 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 3907-1898, Jan. 22, 1898,undated + + + + + + 63 + 240 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 4818-1898, Jan. 24, 1898,undated + + + + + + 63 + 241 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 8995-1898, Feb. 16, 1898 (Folder 1 of 2),undated + + + + + + 63 + 242 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 8995-1898, Feb. 16, 1898 (Folder 2 of 2),undated + + + + + + 63 + 243 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 8995-1898, Feb. 21, 1898,undated + + + + + + 63 + 244 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 11122-1898, Feb. 23, 1898,undated + + + + + + 63 + 245 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 1014-1898, March 1, 1898,undated + + + + + + 63 + 246 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 10457-1898, March 3, 1898,undated + + + + + + 63 + 247 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 11122-1898, March 3, 1898,undated + + + + + + 63 + 248 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 11122-1898, rec. March 7, 1898,undated + + + + + + 63 + 249 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 12548-1898, March 12, 1898,undated + + + + + + 63 + 250 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 12548-1898, March 17, 1898,undated + + + + + + 63 + 251 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 18221-1898, April 16, 1898,undated + + + + + + 63 + 252 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 19567-1898, April 23, 1898,undated + + + + + + 63 + 253 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 19294-1898, April 25, 1898,undated + + + + + + 63 + 254 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 19604-1898, April 27, 1898,undated + + + + + + 63 + 255 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 23037-1898, May 16, 1898,undated + + + + + + 63 + 256 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: Joint Resolution, May 27, 1898, 55 Congress, 2nd Session, LROIA 25022-1898,undated + + + + + + 63 + 257 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 25022-1898, rec. May 27, 1898,undated + + + + + + 63 + 258 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 26629-1898, June 4, 1898,undated + + + + + + 63 + 259 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 30232-1898, July 6, 1898,undated + + + + + + 63 + 260 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 31501-1898, July 11, 1898,undated + + + + + + 63 + 261 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 33703-1898, July 19, 1898,undated + + + + + + 63 + 262 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 33703-1898, July 29, 1898,undated + + + + + + 63 + 263 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004204, July 29, 1898,undated + + + + + + 63 + 264 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 010586. Aug. 18, 1898,undated + + + + + + 63 + 265 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN004457, Sept. 12, 1898,undated + + + + + + 63 + 266 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 58152-1898, Nov. 29, 1898,undated + + + + + + 63 + 267 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 010729, Dec. 16, 1898,undated + + + + + + 63 + 268 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 58152-1898, Dec. 21, 1898,undated + + + + + + 63 + 269 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 537-1899, Jan. 5, 1899,undated + + + + + + 63 + 270 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 25140-1899, May 29, 1899,undated + + + + + + 63 + 271 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 26992-1899, June 7, 1899,undated + + + + + + 63 + 272 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 29298-1899, June 20, 1899 (Folder 1 of 2),undated + + + + + + 63 + 273 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 29299-1899, June 20, 1899 (Folder 2 of 2),undated + + + + + + 63 + 274 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 36608 (38040)-1899, rec. Aug. 1, 1899,undated + + + + + + 63 + 275 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 43006-1899, Sept. 5, 1899,undated + + + + + + 63 + 276 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 58219-1899, Nov. 7 and 29, 1899,undated + + + + + + 63 + 277 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004212, Dec. 20, 1899,undated + + + + + + 63 + 278 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 29144-1900, 1900,undated + + + + + + 63 + 279 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 34832-1900, 1900,undated + + + + + + 63 + 280 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 35031-1900, 1900,undated + + + + + + 63 + 281 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 2108-1900, Jan. 8, 1900,undated + + + + + + 63 + 282 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 12219-1900, March 9, 1900,undated + + + + + + 63 + 283 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 13364-1900, March 14, 1900,undated + + + + + + 63 + 284 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 15519-1900, March 15, 1900,undated + + + + + + 63 + 285 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: Senate Doc 766 (56-1) 1089, March 27, 1900,undated + + + + + + 63 + 286 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 15519-1900, March 28, 1900,undated + + + + + + 63 + 287 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 18274-1900, April 9, 1900,undated + + + + + + 63 + 288 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 18274-1900, April 12, 1900,undated + + + + + + 63 + 289 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: House Doc 1103 (56-1) 4025, April 21, 1900,undated + + + + + + 63 + 290 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 21309-1900, April 30, 1900,undated + + + + + + 63 + 291 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MN 004215, May 9, 1900,undated + + + + + + 63 + 292 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 15224-1902?, May 22, 1900,undated + + + + + + 63 + 293 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 27056-1900, June 2, 1900,undated + + + + + + 63 + 294 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: MCT Dkt. 18C, S, T Ex. 121, June 6, 1900,undated + + + + + + 63 + 295 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: Senate Doc. 426 (56-1)3878, June 7, 1900,undated + + + + + + 63 + 296 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 31066-1900, June 30, 1900,undated + + + + + + 63 + 297 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 40374 (65371)-1901, July 5, 1900,undated + + + + + + 63 + 298 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: LROIA 33531-1900, July 7, 1900,undated + + + + + + 63 + 299 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: (The folders listed below are located on top of the other folders in the Box): LROIA 33531-1900, July 9, 1900,undated + + + + + + 63 + 300 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: (The folders listed below are located on top of the other folders in the Box): LROIA 32673-1900, July 9, 1900,undated + + + + + + 63 + 301 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: (The folders listed below are located on top of the other folders in the Box): LROIA 34057-1900, July 13, 1900,undated + + + + + + 63 + 302 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: (The folders listed below are located on top of the other folders in the Box): LROIA 34543-1900, July 13, 1900,undated + + + + + + 63 + 303 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: (The folders listed below are located on top of the other folders in the Box): MN 004219, Aug. 14, 1900,undated + + + + + + 63 + 304 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: (The folders listed below are located on top of the other folders in the Box): LROIA 47792-1900, Sept. 25, 1900,undated + + + + + + 63 + 305 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: (The folders listed below are located on top of the other folders in the Box): LROIA 60271-1900, rec. Dec. 8, 1900,undated + + + + + + 63 + 306 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: (The folders listed below are located on top of the other folders in the Box): LROIA 60965-1900, rec. Dec. 11, 1900,undated + + + + + + 63 + 307 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: (The folders listed below are located on top of the other folders in the Box): LROIA 134-1901, Dec. 29, 1900,undated + + + + + + 63 + 308 + Box 9 Mille Lacs Chippewa, Calendar documents, 1890-1900: (The folders listed below are located on top of the other folders in the Box): LROIA 7283-1896, Mill Lac, 1896,undated + + + + + + 64 + 1 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 134-1901, 1901,undated + + + + + + 64 + 2 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 27223-1901, 1901,undated + + + + + + 64 + 3 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 8754-1901, 1901,undated + + + + + + 64 + 4 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 3800-1901, 1901,undated + + + + + + 64 + 5 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 3325-1901, Jan. 14, 1901,undated + + + + + + 64 + 6 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 3329-1901, Jan. 14, 1901,undated + + + + + + 64 + 7 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LRIOA 3524-1901, Jan. 14, 1901,undated + + + + + + 64 + 8 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 3800-1901, Jan. 17, 1901,undated + + + + + + 64 + 9 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 8776-1901, Feb. 6, 1901,undated + + + + + + 64 + 10 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 8776-1901, Feb. 11, 1901,undated + + + + + + 64 + 11 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004229, Apr. 30, 1901,undated + + + + + + 64 + 12 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 25155-1901, May 10, 1901,undated + + + + + + 64 + 13 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 28575-1901, May 27, 1901,undated + + + + + + 64 + 14 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 28661-1901, May 27, 1901,undated + + + + + + 64 + 15 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 30901-1901, June 6, 1901,undated + + + + + + 64 + 16 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 31221-1901, June 7, 1901,undated + + + + + + 64 + 17 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 40374-1901, July 22, 1901,undated + + + + + + 64 + 18 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004220, Aug. 24, 1901,undated + + + + + + 64 + 19 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 53444-1901, Sept. 23, 1901 (Folder 1 of 2),undated + + + + + + 64 + 20 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 53444-1901, Sept. 23, 1901 (Folder 2 of 2),undated + + + + + + 64 + 21 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 53444-1901, Sept. 27, 1901,undated + + + + + + 64 + 22 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 53775-1901, Sept. 30, 1901,undated + + + + + + 64 + 23 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 54792-1901, Oct. 5, 1901,undated + + + + + + 64 + 24 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 63359-1901, Nov. 8, 1901,undated + + + + + + 64 + 25 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 65428-1901, Nov. 12, 1901,undated + + + + + + 64 + 26 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 65371-1901, Nov. 15, 1901,undated + + + + + + 64 + 27 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 65428-1901, Nov. 16, 1901,undated + + + + + + 64 + 28 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 74259-1901, Nov. 26, 1901 (Folder 1 of 2),undated + + + + + + 64 + 29 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 74259-1901, Nov. 26, 1901 (Folder 2 of 2),undated + + + + + + 64 + 30 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 71593-1901, Dec. 4, 1901,undated + + + + + + 64 + 31 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 71072-1901, Dec. 6, 1901,undated + + + + + + 64 + 32 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 73465-1901, Dec. 14, 1901,undated + + + + + + 64 + 33 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004714, Dec. 16, 1901,undated + + + + + + 64 + 34 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 73557-1901, Dec. 18, 1901,undated + + + + + + 64 + 35 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 74259-1901, Dec. 18, 1901,undated + + + + + + 64 + 36 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 74676-1901, Dec. 23, 1901,undated + + + + + + 64 + 37 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF White Earth 46578-1909 175.2, 1902,undated + + + + + + 64 + 38 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004730, 1902,undated + + + + + + 64 + 39 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004727, 1902,undated + + + + + + 64 + 40 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004721, N1902,undated + + + + + + 64 + 41 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004724, 1902,undated + + + + + + 64 + 42 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 55841-1902, 1902,undated + + + + + + 64 + 43 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 69008-1902, 1902,undated + + + + + + 64 + 44 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 1698-1902, Jan. 6, 1902,undated + + + + + + 64 + 45 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 4762-1902, Jan. 18, 1902,undated + + + + + + 64 + 46 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 5385-1902, Jan. 23, 1902,undated + + + + + + 64 + 47 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 14477-1902, Jan. 25, 1902,undated + + + + + + 64 + 48 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 12444-1902, Feb. 21, 1902,undated + + + + + + 64 + 49 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 13609-1902, Feb. 27, 1902,undated + + + + + + 64 + 50 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 19643-1902, Feb. 28, 1902,undated + + + + + + 64 + 51 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 14333-1902, March 3, 1902,undated + + + + + + 64 + 52 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 13609-1902, March 5, 1902,undated + + + + + + 64 + 53 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 15224-1902, March 10, 1902,undated + + + + + + 64 + 54 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 22132-1902, March 21, 1902,undated + + + + + + 64 + 55 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 17637-1902, March 21, 1902,undated + + + + + + 64 + 56 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 19643-1902, rec. April 5, 1902,undated + + + + + + 64 + 57 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: House Doc 1730 (57-1) 4405, April 25, 1902,undated + + + + + + 64 + 58 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 26872-1902, May 5, 1902,undated + + + + + + 64 + 59 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: Concurrent Resolutions of Congress, May 27, 1902. Act for appropriations, 1902,undated + + + + + + 64 + 60 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 32863-1902, June 3, 1902,undated + + + + + + 64 + 61 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 34708-1902, June 12, 1902,undated + + + + + + 64 + 62 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 47497-1902, Aug. 9, 1902,undated + + + + + + 64 + 63 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, Aug. 19, 1902, 5, 46578 FILE 175.2, 1902,undated + + + + + + 64 + 64 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: Aug. 30, 1902, CCF White Earth F.175.2, II 46578-09, Minutes, 1902,undated + + + + + + 64 + 65 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: Aug. 30, 1902, CCF White Earth 46578-09, F.175.2, Agreement, 1902,undated + + + + + + 64 + 66 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, Aug. 30, 1902, 46578-09, File 175.2, Supplemental Brief, 1902,undated + + + + + + 64 + 67 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, Aug. 30, 1902, 46578-09, 175.2- II, Honorable, 1902,undated + + + + + + 64 + 68 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, Aug. 30, 1902, 46578-09, File 175.2, Schedule, 1902,undated + + + + + + 64 + 69 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, Aug. 30, 1902, 46578-09, File 175.2, Recapitulation, 4, 1902,undated + + + + + + 64 + 70 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, Aug. 30, 1902, 6, 46578, File 175.2, Brief, 1902,undated + + + + + + 64 + 71 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 53652-1902, Sept. 2, 1902,undated + + + + + + 64 + 72 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 53653-1902, Sept. 3, 1902,undated + + + + + + 64 + 73 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 53971-1902, Sept. 5, 1902,undated + + + + + + 64 + 74 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, Sept. 10, 1902, 46578-09, F.175.2 II, 1902,undated + + + + + + 64 + 75 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 55875-1902, Sept. 17, 1902,undated + + + + + + 64 + 76 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 58556-1902, Sept. 30, 1902,undated + + + + + + 64 + 77 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 58387-1902, Oct. 4, 1902,undated + + + + + + 64 + 78 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 59387-1902, Oct. 4, 1902,undated + + + + + + 64 + 79 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, Nov. 19, 1902, 46578, File 175.2, 1902,undated + + + + + + 64 + 80 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 70321-1902, Nov. 25, 1902,undated + + + + + + 64 + 81 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 70881-1902, Nov. 28, 1902,undated + + + + + + 64 + 82 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 72677-1902, Dec. 4, 1902,undated + + + + + + 64 + 83 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 75417-1902, Dec. 20, 1902,undated + + + + + + 64 + 84 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 7249-1903, Jan. 30, 1903,undated + + + + + + 64 + 85 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 18425-1903, March 17, 1903,undated + + + + + + 64 + 86 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 25583-1903, April 11, 1903,undated + + + + + + 64 + 87 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 25583-1903, April 18, 1903,undated + + + + + + 64 + 88 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 33527-1903, May 25, 1903,undated + + + + + + 64 + 89 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 39638-1903, June 22, 1903,undated + + + + + + 64 + 90 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 39860-1903, June 24, 1903,undated + + + + + + 64 + 91 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 39861-1903, June 24, 1903,undated + + + + + + 64 + 92 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 52642-1903, Aug. 13, 1903,undated + + + + + + 64 + 93 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 53941-1903, Aug. 22, 1903,undated + + + + + + 64 + 94 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 31648-1904, 1904,undated + + + + + + 64 + 95 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 26285-1904, 1904,undated + + + + + + 64 + 96 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 87541-1904, 1904,undated + + + + + + 64 + 97 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 82874-1904, 1904,undated + + + + + + 64 + 98 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 45969-1904, 1904,undated + + + + + + 64 + 99 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 89754- 1904, 1904,undated + + + + + + 64 + 100 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 45969-1904, 1904,undated + + + + + + 64 + 101 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 5927-1904, Jan. 19, 1904,undated + + + + + + 64 + 102 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 5928-1904, Jan. 19, 1904,undated + + + + + + 64 + 103 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004753, Feb. 1, 1904,undated + + + + + + 64 + 104 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004742, Feb. 8, 1904,undated + + + + + + 64 + 105 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 12519-1904, Feb. 19, 1904,undated + + + + + + 64 + 106 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 13706-1904, Feb. 22, 1904,undated + + + + + + 64 + 107 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 25634-1904, April 12, 1904,undated + + + + + + 64 + 108 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 30362-1904, April 30, 1904,undated + + + + + + 64 + 109 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 33175-1904, May 13, 1904,undated + + + + + + 64 + 110 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 34762-1904, May 23, 1904,undated + + + + + + 64 + 111 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 37014-1904, June 1, 1904,undated + + + + + + 64 + 112 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004757, June 11, 1904,undated + + + + + + 64 + 113 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 40820-1904, June 15, 1904,undated + + + + + + 64 + 114 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 40827-1904, June 15, 1904,undated + + + + + + 64 + 115 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 41522-1904, June 20, 1904,undated + + + + + + 64 + 116 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 41833-1904, June 20, 1904,undated + + + + + + 64 + 117 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 41535-1904, June 20, 1904,undated + + + + + + 64 + 118 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 41714-1904, June 20, 1904,undated + + + + + + 64 + 119 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 41840-1904, June 20, 1904,undated + + + + + + 64 + 120 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 42399-1904, June 23, 1904,undated + + + + + + 64 + 121 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 42400-1904, June 23, 1904,undated + + + + + + 64 + 122 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 42948-1904, rec. June 30, 1904,undated + + + + + + 64 + 123 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 44647-1904, July 4, 1904 (Folder 1 of 2),undated + + + + + + 64 + 124 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 44647-1904, July 4, 1904 (Folder 2 of 2),undated + + + + + + 64 + 125 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 45968-1904, July 5, 1904,undated + + + + + + 64 + 126 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 45965-1904, July 6, 1904,undated + + + + + + 64 + 127 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 45961-1904, July 7, 1904,undated + + + + + + 64 + 128 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 45966-1904, July 7, 1904,undated + + + + + + 64 + 129 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 45964-1904, July 7, 1904,undated + + + + + + 64 + 130 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 45966-1904, July 7, 1904,undated + + + + + + 64 + 131 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 45969-1904, July 8, 1904,undated + + + + + + 64 + 132 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004829, July 29, 1904,undated + + + + + + 64 + 133 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004827, Sept. 9, 1904,undated + + + + + + 64 + 134 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 58979-1904, Aug. 24, 1904,undated + + + + + + 64 + 135 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 78231-1904, Nov. 4, 1904,undated + + + + + + 64 + 136 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 81524-1904, Nov. 16, 1904,undated + + + + + + 64 + 137 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 82297-1904, Nov. 23, 1904,undated + + + + + + 64 + 138 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 016200, Dec. 19, 1904,undated + + + + + + 64 + 139 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 1159-1905, Jan. 5, 1905,undated + + + + + + 64 + 140 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 19255-1905a, March 8, 1905,undated + + + + + + 64 + 141 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 26510-1905, April 3, 1905,undated + + + + + + 64 + 142 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004832, May 1, 1905,undated + + + + + + 64 + 143 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 39393-1905, May 17, 1905,undated + + + + + + 64 + 144 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 47477-1905, June 16, 1905,undated + + + + + + 64 + 145 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 48574-1905, June 20, 1905,undated + + + + + + 64 + 146 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004841, July 27, 1905,undated + + + + + + 64 + 147 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004837, July 31, 1905,undated + + + + + + 64 + 148 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004834, Aug. 21, 1905,undated + + + + + + 64 + 149 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 80223-1905, Oct. 4, 1905,undated + + + + + + 64 + 150 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 85680-1905, Oct. 5, 1905,undated + + + + + + 64 + 151 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 91513-1905, Nov. 13, 1905,undated + + + + + + 64 + 152 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 21300-1906, 1906,undated + + + + + + 64 + 153 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 5512-1906, Jan. 15, 1906,undated + + + + + + 64 + 154 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 12356-1906, Feb. 3, 1906,undated + + + + + + 64 + 155 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 12355-1906, Feb. 3, 1906,undated + + + + + + 64 + 156 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004843, Feb. 17, 1906,undated + + + + + + 64 + 157 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 17417-1906, Feb. 20, 1906,undated + + + + + + 64 + 158 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MCT Dkt. 18C, S, T Ex. 122, March 28, 1906?,undated + + + + + + 64 + 159 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 45811-1906, March 30, 1906,undated + + + + + + 64 + 160 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 45811-1906, May 26, 1906,undated + + + + + + 64 + 161 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004847, June 19, 1906,undated + + + + + + 64 + 162 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth 56279- 1917: 115, June 21, 1906,undated + + + + + + 64 + 163 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 67464- 1906, Aug. 2, 1906,undated + + + + + + 64 + 164 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 77841-1906, Sept. 4, 1906,undated + + + + + + 64 + 165 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: LROIA 83450-1906, Sept. 18, 1906,undated + + + + + + 64 + 166 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 001923. Sept. 27, 1906. Same as MN 002456, 9/27/06, 1906,undated + + + + + + 64 + 167 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 002456, Sept. 27, 1906, Same as MN 001923, 9/27/06, 1906,undated + + + + + + 64 + 168 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 001925, Dec. 12, 1906,undated + + + + + + 64 + 169 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: House Doc. 7612 (59-2) 5065, Feb. 14, 1907,undated + + + + + + 64 + 170 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003490, April 17, 1907,undated + + + + + + 64 + 171 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MHS Scrapbook, Vol. 45: 121-127, 5-16-1907,undated + + + + + + 64 + 172 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003494, June 6, 1907,undated + + + + + + 64 + 173 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004882, Oct. 12, 1907,undated + + + + + + 64 + 174 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004873, Oct. 16, 1907,undated + + + + + + 64 + 175 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004878, Nov. 1907,undated + + + + + + 64 + 176 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004889, Nov. 26, 1907,undated + + + + + + 64 + 177 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003500, Nov. 25, 1907,undated + + + + + + 64 + 178 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004854, Nov. 26, 1907,undated + + + + + + 64 + 179 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004851, Nov. 27, 1907,undated + + + + + + 64 + 180 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004892, Dec. 2, 1907,undated + + + + + + 64 + 181 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003502, Dec. 2, 1907,undated + + + + + + 64 + 182 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004884, Dec. 13, 1907,undated + + + + + + 64 + 183 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004890, Dec. 17, 1907,undated + + + + + + 64 + 184 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004866, Dec. 18, 1907,undated + + + + + + 64 + 185 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 004872, Dec. 18, 1907,undated + + + + + + 64 + 186 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003523, 1908,undated + + + + + + 64 + 187 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003504, Jan. 30, 1908,undated + + + + + + 64 + 188 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003505, Jan. 31, 1908,undated + + + + + + 64 + 189 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003522, Mar. 1908,undated + + + + + + 64 + 190 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003520, Mar. 3, 1908,undated + + + + + + 64 + 191 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: House Docs. 1388 (60-1) 5226, April 4, 1908,undated + + + + + + 64 + 192 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003510, Apr. 17, 1908,undated + + + + + + 64 + 193 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003511, Apr. 22, 1908,undated + + + + + + 64 + 194 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003518, May 18, 1908,undated + + + + + + 64 + 195 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003516, May 25, 1908,undated + + + + + + 64 + 196 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003748, Apr. 2, 1909,undated + + + + + + 64 + 197 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, June 1909, 46578-09, File 175.2, 1909,undated + + + + + + 64 + 198 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, June 7, 1909, 46578, File 175.2, 1909,undated + + + + + + 64 + 199 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, June 15, 1909, 46578, File 175.2, 1909,undated + + + + + + 64 + 200 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 49777-1909, 121, June 24, 1909,undated + + + + + + 64 + 201 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, June 25, 1909, 46578-09, File 175.2, 1909,undated + + + + + + 64 + 202 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 49777-1909, 121, rec. June 30, 1909,undated + + + + + + 64 + 203 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, July 31, 1909, 46578, File 175.2, 1909,undated + + + + + + 64 + 204 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, Aug. 19, 1909, 46578, File 175.2, 1909,undated + + + + + + 64 + 205 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, Aug. 24, 1909, 46578, File 175.2, 1909,undated + + + + + + 64 + 206 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, Oct. 1, 1909, 46578, 19, file 175.2, 1909,undated + + + + + + 64 + 207 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003678, Oct. 25, 1909,undated + + + + + + 64 + 208 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003672, 1910,undated + + + + + + 64 + 209 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003671, Mar. 24, 1910,undated + + + + + + 64 + 210 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003670, Mar. 24, 1910,undated + + + + + + 64 + 211 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003683, May 21, 1910,undated + + + + + + 64 + 212 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003680, July 1910,undated + + + + + + 64 + 213 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003679, July 1910,undated + + + + + + 64 + 214 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003681, July 16, 1910,undated + + + + + + 64 + 215 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 64250-1910: 121, Aug. 4, 1910,undated + + + + + + 64 + 216 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 64250-1910: 121 rec. Aug. 8, 1910,undated + + + + + + 64 + 217 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003668, Aug. 30, 1910,undated + + + + + + 64 + 218 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003667, Sept. 2, 1910,undated + + + + + + 64 + 219 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 64250-1910: 121, rec. Sept. 14, 1910,undated + + + + + + 64 + 220 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 64250-1910: 121, Sept. 14, 1910,undated + + + + + + 64 + 221 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 64250-1910: 121, Sept. 27, 1910,undated + + + + + + 64 + 222 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003665, Sept. 29, 1910,undated + + + + + + 64 + 223 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003662, Oct. 3, 1910,undated + + + + + + 64 + 224 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 80827-1910: 113.1, Oct. 7, 1910,undated + + + + + + 64 + 225 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 80827-1910: 113.1, rec. Oct. 14, 1910,undated + + + + + + 64 + 226 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003676, Nov. 3, 1910,undated + + + + + + 64 + 227 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 64250-1910: 121, rec. Nov. 4, 1910,undated + + + + + + 64 + 228 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 64250- 1910: 121, Nov. 14, 1910,undated + + + + + + 64 + 229 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003661, Nov. 15, 1910,undated + + + + + + 64 + 230 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003659, Nov. 23, 1910,undated + + + + + + 64 + 231 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 80827-1910: 113.1, Nov. 28, 1910,undated + + + + + + 64 + 232 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 64250-1910: 121, Dec. 10, 1910,undated + + + + + + 64 + 233 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 80827-1910: 113.1, rec. Dec. 17, 1910,undated + + + + + + 64 + 234 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003656, Dec. 23, 1910,undated + + + + + + 64 + 235 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003653, Dec. 23, 1910,undated + + + + + + 64 + 236 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003652, Dec. 29, 1910,undated + + + + + + 64 + 237 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: Voight, Ex. CC, 1911,undated + + + + + + 64 + 238 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003649, Jan. 4, 1911,undated + + + + + + 64 + 239 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003651, Jan. 6, 1911,undated + + + + + + 64 + 240 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003647, Jan. 25, 1911,undated + + + + + + 64 + 241 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003644, Feb. 1911,undated + + + + + + 64 + 242 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003646, Feb. 14, 1911,undated + + + + + + 64 + 243 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003641, Mar. 28, 1911,undated + + + + + + 64 + 244 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003640, Apr. 11, 1911,undated + + + + + + 64 + 245 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 46578-09, April 12, 1911, F.175.2-II, 1911 (Folder 1 of 2),undated + + + + + + 64 + 246 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 46578-09, April 12, 1911, F.175.2-II, 1911 (Folder 2 of 2),undated + + + + + + 64 + 247 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 46578-09, APR. 19, 1911, F.175.2-II, 1911,undated + + + + + + 64 + 248 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003634, Apr. 19, 1911,undated + + + + + + 64 + 249 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 46578-09, APR. 20, 1911, File 175.2 II, 1911,undated + + + + + + 64 + 250 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003633, Apr. 22, 1911,undated + + + + + + 64 + 251 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 80827-1910: 113.1, May 13, 1911,undated + + + + + + 64 + 252 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 80827-1910: 113.1, May 18, 1911,undated + + + + + + 64 + 253 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 80827-1910: 113.1, May 22, 1911,undated + + + + + + 64 + 254 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 47811-1911: 173.1, May 29, 1911 (Folder 1 of 2),undated + + + + + + 64 + 255 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 47811-1911: 173.1, May 29, 1911 (Folder 2 of 2),undated + + + + + + 64 + 256 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 80827-1910: 113.1, rec. June 2, 1911,undated + + + + + + 64 + 257 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 80827-1910: 113.1, rec. June 12, 1911,undated + + + + + + 64 + 258 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 80827-1910: 113.1, rec. Aug. 18, 1911,undated + + + + + + 64 + 259 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003723, Aug. 21, 1911,undated + + + + + + 64 + 260 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth 76706-1911: 113.1, Aug. 23, 1911,undated + + + + + + 64 + 261 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003728, Aug. 23, 1911,undated + + + + + + 64 + 262 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003724, Aug. 25, 1911,undated + + + + + + 64 + 263 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 76706-1911: 113.1, Sept. 1, 1911,undated + + + + + + 64 + 264 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 76706-1911: 113.1, rec. Sept. 6, 1911 (Folder 1 of 2),undated + + + + + + 64 + 265 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 76706-1911: 113.1, rec. Sept. 6, 1911 (Folder 2 of 2),undated + + + + + + 64 + 266 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003717, Sept. 9, 1911,undated + + + + + + 64 + 267 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 76706-1911: 113.1, Sept. 14, 1911,undated + + + + + + 64 + 268 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003720, Sept. 15, 1911,undated + + + + + + 64 + 269 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003715, Sept. 18, 1911,undated + + + + + + 64 + 270 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003716, Sept. 18, 1911,undated + + + + + + 64 + 271 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003711, Sept. 20, 1911,undated + + + + + + 64 + 272 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003712, Sept. 20, 1911,undated + + + + + + 64 + 273 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003707, Sept. 21, 1911,undated + + + + + + 64 + 274 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003705, Sept. 21, 1911,undated + + + + + + 64 + 275 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 76706-1911: 113.1, rec. Oct. 7, 1911,undated + + + + + + 64 + 276 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 85740-1911: 113.1, Oct. 10, 1911,undated + + + + + + 64 + 277 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 76706-1911: 113.1, rec. Oct. 19, 1911 (Folder 1 of 2),undated + + + + + + 64 + 278 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: CCF- White Earth, 76706-1911: 113.1, rec. Oct. 19, 1911 (Folder 2 of 2),undated + + + + + + 64 + 279 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003697, Nov. 1, 1911,undated + + + + + + 64 + 280 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003693, Nov. 6, 1911,undated + + + + + + 64 + 281 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003692, Nov. 14, 1911,undated + + + + + + 64 + 282 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003690, Nov. 29, 1911,undated + + + + + + 64 + 283 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003738, May 20, 1912,undated + + + + + + 64 + 284 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003733, May 21, 1912,undated + + + + + + 64 + 285 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003731, May 24, 1912,undated + + + + + + 64 + 286 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003730, June 6, 1912,undated + + + + + + 64 + 287 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003745, Oct. 12, 1912,undated + + + + + + 64 + 288 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003841, Feb. 4, 1913,undated + + + + + + 64 + 289 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003840, Feb. 7, 1913,undated + + + + + + 64 + 290 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003838, Feb. 14, 1913,undated + + + + + + 64 + 291 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003744, Nov. 12, 1913,undated + + + + + + 64 + 292 + Box 10 Mille Lacs Chippewa, Calendar documents, 1901-1913: MN 003741, Dec. 19, 1913,undated + + + + + + 65 + 1 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 3591-1916: 172, Feb. 20, 1914,undated + + + + + + 65 + 2 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003879, 1915,undated + + + + + + 65 + 3 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003857, Feb. 17, 1915,undated + + + + + + 65 + 4 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003851, Mar. 10, 1915,undated + + + + + + 65 + 5 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003848, Mar. 16, 1915,undated + + + + + + 65 + 6 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003878, Mar. 22, 1915,undated + + + + + + 65 + 7 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003846, Mar. 25, 1915,undated + + + + + + 65 + 8 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003876, Mar. 26, 1915,undated + + + + + + 65 + 9 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003849, Mar. 26, 1915,undated + + + + + + 65 + 10 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003845, Apr. 9, 1915,undated + + + + + + 65 + 11 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003874, Apr. 28, 1915,undated + + + + + + 65 + 12 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 113120-1915: 174, Oct. 21, 1915,undated + + + + + + 65 + 13 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 113120-1915: 174, rec. Oct. 23, 1915 (Folder 1 of 2),undated + + + + + + 65 + 14 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 113120-1915: 174, rec. Oct. 23, 1915 (Folder 2 of 2),undated + + + + + + 65 + 15 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 113120-1915: 174, Nov. 13, 1915,undated + + + + + + 65 + 16 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 113120-1915: 174, rec. Nov. 18, 1915,undated + + + + + + 65 + 17 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 113120-1915: 174, rec. Nov. 19, 1915,undated + + + + + + 65 + 18 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 113120-1915: 174, Nov. 22, 1915,undated + + + + + + 65 + 19 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 113120-1915: 174, Dec. 30, 1915,undated + + + + + + 65 + 20 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 3591-1916: 172, Jan. 4, 1916,undated + + + + + + 65 + 21 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 113120-1915: 174, rec. Jan. 7, 1916?,undated + + + + + + 65 + 22 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 3591-1916: 172, rec. Jan. 13, 1916,undated + + + + + + 65 + 23 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 3591-1916: 172, rec. Jan. 17, 1916,undated + + + + + + 65 + 24 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 3591-1916: 172, Jan. 22, 1916,undated + + + + + + 65 + 25 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 3591-1916: 172, rec. Jan. 24, 1916,undated + + + + + + 65 + 26 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 3591-1916: 172, rec. Jan. 26, 1916,undated + + + + + + 65 + 27 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 3591-1916: 172?, rec. Feb. 5, 1916,undated + + + + + + 65 + 28 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 3591-1916: 172?, Feb. 10, 1916,undated + + + + + + 65 + 29 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 001927, Feb. 22, 1916,undated + + + + + + 65 + 30 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 001929, Feb. 26, 1916,undated + + + + + + 65 + 31 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 001928, Mar. 16, 1916,undated + + + + + + 65 + 32 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003872, Mar. 20, 1916,undated + + + + + + 65 + 33 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003869, May 1916,undated + + + + + + 65 + 34 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003904, May 6, 1916,undated + + + + + + 65 + 35 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003903, May 15, 1916,undated + + + + + + 65 + 36 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003900, May 18, 1916,undated + + + + + + 65 + 37 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003898, Jun. 7, 1916,undated + + + + + + 65 + 38 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 008110, Nov. 29, 1916,undated + + + + + + 65 + 39 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003909, Dec. 18, 1916,undated + + + + + + 65 + 40 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003908, Dec. 29, 1916,undated + + + + + + 65 + 41 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003897, 1917,undated + + + + + + 65 + 42 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003906, Jan. 8, 1917,undated + + + + + + 65 + 43 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003889, Jan. 15, 1917,undated + + + + + + 65 + 44 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003886, Jan. 17, 1917,undated + + + + + + 65 + 45 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 21653-1917: 115, rec. Mar. 1, 1917,undated + + + + + + 65 + 46 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003896, rec. April 2, 1917,undated + + + + + + 65 + 47 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 68933-1917: 155, April 28, 1917,undated + + + + + + 65 + 48 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 56279-1917: 115, June 4, 1917,undated + + + + + + 65 + 49 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 56279-1917: 115, rec. June 19, 1917,undated + + + + + + 65 + 50 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 56279-1917: 115, July 2, 1917,undated + + + + + + 65 + 51 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 68933-1917: 155, July 13, 1917,undated + + + + + + 65 + 52 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 56279-1917: 115, Aug. 23, 1917,undated + + + + + + 65 + 53 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 56279-1917: 115, rec. Oct. 6, 1917,undated + + + + + + 65 + 54 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 68933-1917: 155, Nov. 2, 1917,undated + + + + + + 65 + 55 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003915, 1918,undated + + + + + + 65 + 56 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003914, July 19, 1918,undated + + + + + + 65 + 57 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003911, Aug. 6, 1918,undated + + + + + + 65 + 58 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 46578-09, File 175.2 II, SEPT. 6, 1918,undated + + + + + + 65 + 59 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 46578-09, File 175.2, Oct. 24, 1918,undated + + + + + + 65 + 60 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 002617, 1919,undated + + + + + + 65 + 61 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003962, Apr. 17, 1919,undated + + + + + + 65 + 62 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003961, Apr. 28, 1919,undated + + + + + + 65 + 63 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN, May 22, 1919,undated + + + + + + 65 + 64 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003968, Aug. 4, 1919,undated + + + + + + 65 + 65 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003894, Aug. 5, 1919,undated + + + + + + 65 + 66 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003967, Aug. 6, 1919,undated + + + + + + 65 + 67 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003892, Aug. 18, 1919,undated + + + + + + 65 + 68 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: Voight, Ex. R. 12-15-1919,undated + + + + + + 65 + 69 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 37704-1923, May 3, 1920,undated + + + + + + 65 + 70 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004113, Nov. 1, 1920,undated + + + + + + 65 + 71 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004112, Nov. 2, 1920,undated + + + + + + 65 + 72 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: White Earth Indian Agency. Nov. 7, 1919,undated + + + + + + 65 + 73 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004111, Nov. 19, 1920,undated + + + + + + 65 + 74 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth 23890-1921: 155, Nov. 29, 1920,undated + + + + + + 65 + 75 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004098, Dec. 2, 1920,undated + + + + + + 65 + 76 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004097, Feb. 14, 1921,undated + + + + + + 65 + 77 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 23890-1921: 155, March 24, 1921,undated + + + + + + 65 + 78 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 23890-1921: 155, rec. April 2, 1921 (Folder 1 of 2),undated + + + + + + 65 + 79 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 23890-1921: 155, rec. April 2, 1921 (Folder 2 of 2),undated + + + + + + 65 + 80 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 23890-1921: 155, April 12, 1921,undated + + + + + + 65 + 81 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 23890-1921: 155, April 26, 1921,undated + + + + + + 65 + 82 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 23890-1921: 155, rec. May 10, 1921,undated + + + + + + 65 + 83 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 23890-1921: 155, May 12, 1921,undated + + + + + + 65 + 84 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 23890-1921: 155, May 13, 1921,undated + + + + + + 65 + 85 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- White Earth, 23890-1921: 155, rec. May 25, 1921,undated + + + + + + 65 + 86 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003965, July 16, 1921,undated + + + + + + 65 + 87 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003964, July 21, 1921,undated + + + + + + 65 + 88 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004045, Feb. 20, 1922,undated + + + + + + 65 + 89 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. - 71577-1922: 115, Sept. 1, 1922,undated + + + + + + 65 + 90 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. - 72615-1922: 115, Sept. 4, 1922,undated + + + + + + 65 + 91 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. – 73044-1922: 115, Sept. 9, 1922,undated + + + + + + 65 + 92 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. – 72615-1922: 115, Sept. 9, 1922,undated + + + + + + 65 + 93 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. – 72615-1922: 115, rec. Sept. 20, 1922 (Folder 1 of 2),undated + + + + + + 65 + 94 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. – 72615-1922: 115, rec. Sept. 20, 1922 (Folder 2 of 2),undated + + + + + + 65 + 95 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. – 72615-1922: 115, Sept. 23, 1922,undated + + + + + + 65 + 96 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. – 71577-1922: 115, rec. Sept. 26, 1922,undated + + + + + + 65 + 97 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 77994-1922: 115, Sept. 27, 1922,undated + + + + + + 65 + 98 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 79667-1922: 115, Oct. 4, 1922,undated + + + + + + 65 + 99 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 73044-1922: 115, rec. Oct. 6, 1922,undated + + + + + + 65 + 100 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 72615-1922: 115, rec. Oct. 9, 1922,undated + + + + + + 65 + 101 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 72615-1922: 115, Oct. 13, 1922,undated + + + + + + 65 + 102 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 79667-1922: 115, rec. Oct. 14, 1922,undated + + + + + + 65 + 103 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004398, Oct. 14, 1922,undated + + + + + + 65 + 104 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 77994-1922: 115, rec. Oct. 16, 1922,undated + + + + + + 65 + 105 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004399, Nov. 8, 1922,undated + + + + + + 65 + 106 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 69732-1922: 115, rec. Dec. 11, 1922,undated + + + + + + 65 + 107 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 96732-1922: 115, rec. Jan. 3, 1923,undated + + + + + + 65 + 108 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 96732-1922: 115, Jan. 8, 1923,undated + + + + + + 65 + 109 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004143, Jan. 9, 1923,undated + + + + + + 65 + 110 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip 96732-1922: 115, rec. Jan. 24, 1923,undated + + + + + + 65 + 111 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004135, Feb. 1923,undated + + + + + + 65 + 112 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004136, Feb. 19, 1923,undated + + + + + + 65 + 113 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004134, Mar. 10, 1923,undated + + + + + + 65 + 114 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004133, Mar. 10, 1923,undated + + + + + + 65 + 115 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004142, Mar. 19, 1923,undated + + + + + + 65 + 116 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004132, Mar. 22, 1923,undated + + + + + + 65 + 117 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 37704-1923: 155, April 2, 1923,undated + + + + + + 65 + 118 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004131 Apr. 3, 1923,undated + + + + + + 65 + 119 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004140, Apr. 7, 1923,undated + + + + + + 65 + 120 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004141, Apr. 7, 1923,undated + + + + + + 65 + 121 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 003960, Apr. 28, 1923,undated + + + + + + 65 + 122 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004138, May 8, 1923,undated + + + + + + 65 + 123 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 37704-1923: 155, rec. May 12, 1923 (Folder 1 of 2),undated + + + + + + 65 + 124 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 37704-1923: 155, rec. May 12, 1923 (Folder 2 of 2),undated + + + + + + 65 + 125 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 37704-1923: 155, May 21, 1923,undated + + + + + + 65 + 126 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip 37704-1923: 155, May 23, 1923,undated + + + + + + 65 + 127 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004139, May 23, 1923,undated + + + + + + 65 + 128 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. (?)-1923: 115?, rec. May 23, 1923 (Folder 1 of 2),undated + + + + + + 65 + 129 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. (?)-1923: 115?, Rec. May 23, 1923 (Folder 2 of 2),undated + + + + + + 65 + 130 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 37704-1923: 155, May 24, 1923,undated + + + + + + 65 + 131 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 37704-1923: 155, May 26, 1923 (Folder 1of 2),undated + + + + + + 65 + 132 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 37704-1923: 155, May 26, 1923 (Folder 2 of 2),undated + + + + + + 65 + 133 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 37704-1923: 155, May 26, 1923,undated + + + + + + 65 + 134 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 44729-1923: 115, May 29, 1923,undated + + + + + + 65 + 135 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 37704-1923: 155, June 2, 1923,undated + + + + + + 65 + 136 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 37704-1923: 155, rec. June 12, 1923,undated + + + + + + 65 + 137 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 44729-1923: 115, rec. June 15, 1923,undated + + + + + + 65 + 138 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 37704-1923: 155, June 15, 1923,undated + + + + + + 65 + 139 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con, Chip. 37704-1923: 155, July 2, 1923,undated + + + + + + 65 + 140 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 37704-1923: 155, rec. July 18, 1923,undated + + + + + + 65 + 141 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 82847-1923: 115, Oct. 22, 1923,undated + + + + + + 65 + 142 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 82847-1923: 115, rec. Nov. 1, 1923 (Folder 1 of 2),undated + + + + + + 65 + 143 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 82847-1923: 115, rec. Nov. 1, 1923 (Folder 2 of 2),undated + + + + + + 65 + 144 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 82847-1923: 115, Nov. 5, 1923,undated + + + + + + 65 + 145 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 82333-1923: 115, rec. Nov. 6, 1923,undated + + + + + + 65 + 146 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 87064-1923: 115, Nov. 7, 1923,undated + + + + + + 65 + 147 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 87064-1923: 115, rec. Nov. 16, 1923,undated + + + + + + 65 + 148 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 96374-1923: 115, Nov. 25, 1923,undated + + + + + + 65 + 149 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 87064-1923: 115, rec. Dec. 3, 1923,undated + + + + + + 65 + 150 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Cons. Chip. 55153-1929: 115, rec. Dec. 9, 1923,undated + + + + + + 65 + 151 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004167, 1924,undated + + + + + + 65 + 152 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004159, Jan. 15, 1924,undated + + + + + + 65 + 153 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004158, Jan. 19, 1924,undated + + + + + + 65 + 154 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004162, Jan. 29, 1924,undated + + + + + + 65 + 155 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 37704-1923: 155, (Mar.) 18, 1924,undated + + + + + + 65 + 156 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004161, Mar. 31, 1924,undated + + + + + + 65 + 157 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 37704-1923: 155, April 23, 1924,undated + + + + + + 65 + 158 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 37704-1923: 155, rec. April 25, 1924,undated + + + + + + 65 + 159 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004174, May 1924,undated + + + + + + 65 + 160 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004175, May 16, 1924,undated + + + + + + 65 + 161 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004173, rec. May 28, 1924,undated + + + + + + 65 + 162 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: Indian Citizenship Act, June 2, 1924 US Stats 43:253,undated + + + + + + 65 + 163 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004157, June 16, 1924,undated + + + + + + 65 + 164 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004156, June 23, 1924,undated + + + + + + 65 + 165 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004172, June 23, 1924,undated + + + + + + 65 + 166 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004170, July 2, 1924,undated + + + + + + 65 + 167 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 56198-1924: 115, July 14, 1924,undated + + + + + + 65 + 168 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004168, July 15, 1924,undated + + + + + + 65 + 169 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004154, Oct 15, 1924,undated + + + + + + 65 + 170 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004153, Oct 29, 1924,undated + + + + + + 65 + 171 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 29281-1925: 115, April 17, 1925,undated + + + + + + 65 + 172 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 29281-1925: 115, April 18, 1925,undated + + + + + + 65 + 173 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 29281-1925: 115, April 19, 1925,undated + + + + + + 65 + 174 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 29281-1925: 115, rec. April 20, 1925,undated + + + + + + 65 + 175 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 29281-1925: 115, April 24, 1925,undated + + + + + + 65 + 176 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 29281-1925: 115, rec. May 6, 1925,undated + + + + + + 65 + 177 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 29281-1925: 115, May 11, 1925,undated + + + + + + 65 + 178 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 57709-1925: 115, Aug. 12, 1925,undated + + + + + + 65 + 179 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 57709-1925: 115, rec. Aug. 21, 1925,undated + + + + + + 65 + 180 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004391, Oct. 23, 1925,undated + + + + + + 65 + 181 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004397, Oct 31, 1925,undated + + + + + + 65 + 182 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004390, Nov. 2, 1925,undated + + + + + + 65 + 183 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 82847-1923: 115, Nov. 2, 1925,undated + + + + + + 65 + 184 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 70818-1925: 115, Nov. 4, 1925,undated + + + + + + 65 + 185 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004396, Nov. 6, 1925,undated + + + + + + 65 + 186 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 008204, Nov. 6, 1925,undated + + + + + + 65 + 187 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 008209, Nov. 8, 1925,undated + + + + + + 65 + 188 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 008206, Nov. 9, 1925,undated + + + + + + 65 + 189 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004388, Nov. 10, 1925,undated + + + + + + 65 + 190 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004387, Nov. 10, 1925,undated + + + + + + 65 + 191 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 70818-1925: 115, rec. Nov. 13, 1925,undated + + + + + + 65 + 192 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 82847-1923: 115, Nov. 19, 1925,undated + + + + + + 65 + 193 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 008202, Nov. 25, 1925,undated + + + + + + 65 + 194 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 008200, Nov. 27, 1925,undated + + + + + + 65 + 195 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 74745-1925: 115, Nov. 30, 1925,undated + + + + + + 65 + 196 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 74745-1925: 115, rec. Dec. 4, 1925 (Folder 1 of 2),undated + + + + + + 65 + 197 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 74745-1925: 115, rec. Dec. 4, 1925 (Folder 2 of 2),undated + + + + + + 65 + 198 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 82847-1923: 115, Dec. 9, 1925,undated + + + + + + 65 + 199 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 008197, Dec. 9, 1925,undated + + + + + + 65 + 200 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004394, Dec. 10, 1925,undated + + + + + + 65 + 201 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 008196, Dec. 10, 1925,undated + + + + + + 65 + 202 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004187, Dec. 16, 1925,undated + + + + + + 65 + 203 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 008194, Dec. 21, 1925,undated + + + + + + 65 + 204 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 008193, Jan. 9, 1926,undated + + + + + + 65 + 205 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004393, Jan. 9, 1926,undated + + + + + + 65 + 206 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004185, Jan. 9, 1926,undated + + + + + + 65 + 207 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004385, Jan. 14, 1926,undated + + + + + + 65 + 208 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 74745-1925: 115, Feb. 2, 1926,undated + + + + + + 65 + 209 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 74745-1925: 115, Feb. 11, 1926,undated + + + + + + 65 + 210 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004384, Feb. 12, 1926,undated + + + + + + 65 + 211 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 74745-1925: 115, Feb. 24, 1926,undated + + + + + + 65 + 212 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 74745-1925: 115, Feb. 26, 1926,undated + + + + + + 65 + 213 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 74754-1925: 115, Feb. 27, 1926,undated + + + + + + 65 + 214 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 014539, May 5, 1926,undated + + + + + + 65 + 215 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004357, May 7, 1926,undated + + + + + + 65 + 216 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004358, June 23, 1926,undated + + + + + + 65 + 217 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004382, July 2, 1926,undated + + + + + + 65 + 218 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004366, July 12, 1926,undated + + + + + + 65 + 219 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004365, July 14, 1926,undated + + + + + + 65 + 220 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004379, July 15, 1926,undated + + + + + + 65 + 221 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004364, July 16, 1926,undated + + + + + + 65 + 222 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004363, July 16, 1926 (Folder 1 of 2),undated + + + + + + 65 + 223 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004363, July 16, 1926 (Folder 1 of 2),undated + + + + + + 65 + 224 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004353, Aug. 20, 1926,undated + + + + + + 65 + 225 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004352, Sept. 2, 1926,undated + + + + + + 65 + 226 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 82847-1923: 115, Oct. 12, 1926,undated + + + + + + 65 + 227 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 49860-1926: 115, Oct. 25, 1926,undated + + + + + + 65 + 228 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004448, Nov. 2, 1926,undated + + + + + + 65 + 229 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 49860-1926: 115, Nov. 3, 1926,undated + + + + + + 65 + 230 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 82847-1923: 115, rec. Nov. 6, 1926,undated + + + + + + 65 + 231 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004456, Nov. 8, 1926,undated + + + + + + 65 + 232 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004449, Nov. 11, 1926,undated + + + + + + 65 + 233 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 008191, Nov. 15, 1926,undated + + + + + + 65 + 234 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 49860-1926: 115, rec. Nov. 18, 1926,undated + + + + + + 65 + 235 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004440, Nov. 19, 1926,undated + + + + + + 65 + 236 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004439, Nov. 24, 1926,undated + + + + + + 65 + 237 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004438, Nov. 26, 1926,undated + + + + + + 65 + 238 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004437, Nov. 26, 1926,undated + + + + + + 65 + 239 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004423, Nov. 29, 1926,undated + + + + + + 65 + 240 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 008189, Dec. 2, 1926,undated + + + + + + 65 + 241 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004424, Dec. 6, 1926,undated + + + + + + 65 + 242 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 008185, Dec. 7, 1926,undated + + + + + + 65 + 243 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 008183, Dec. 9, 1926,undated + + + + + + 65 + 244 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004420, Dec. 13, 1926,undated + + + + + + 65 + 245 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004418, Dec. 29, 1926,undated + + + + + + 65 + 246 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 008182, Dec. 30, 1926,undated + + + + + + 65 + 247 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004643, 1927,undated + + + + + + 65 + 248 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004644, 1927,undated + + + + + + 65 + 249 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 008181, Jan. 13, 1927,undated + + + + + + 65 + 250 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004416, Jan. 14, 1927,undated + + + + + + 65 + 251 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004415, Jan. 17, 19277,undated + + + + + + 65 + 252 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004461, Jan. 22, 1927,undated + + + + + + 65 + 253 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004766, Feb. 23, 1927,undated + + + + + + 65 + 254 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 03636-1927: 115, March 16, 1927,undated + + + + + + 65 + 255 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 13636-1927: 115, rec. Mar. 25, 1927,undated + + + + + + 65 + 256 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 13636-1927: 115, April 2, 1927,undated + + + + + + 65 + 257 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 13636-1927: 115, April 4, 1927,undated + + + + + + 65 + 258 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004779, Apr. 7, 1927,undated + + + + + + 65 + 259 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 13636-1927: 115, rec. April 18, 1927,undated + + + + + + 65 + 260 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 27048-1927: 115, May 27, 1927,undated + + + + + + 65 + 261 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 27048-1927: 115, May 28, 1927,undated + + + + + + 65 + 262 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 27048-1927: 115, rec. June 11, 1927,undated + + + + + + 65 + 263 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 27048-1927: 115, June 16, 1927,undated + + + + + + 65 + 264 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 30457-1927: 115, June 17, 1927,undated + + + + + + 65 + 265 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 30457-1927: 115, rec. June 29, 1927 (Folder 1 of 2),undated + + + + + + 65 + 266 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 30457-1927: 115, rec. June 29, 1927 (Folder 2 of 2),undated + + + + + + 65 + 267 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 30457-1927: 115, July 13, 1927,undated + + + + + + 65 + 268 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 30457-1927: 115, July 15, 1927,undated + + + + + + 65 + 269 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 30457-1927: 115, rec. July 29, 1927,undated + + + + + + 65 + 270 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 57082-1934: 059, Sept. 17, 1927 Burke > Goodwin,undated + + + + + + 65 + 271 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 57082-1934: 059, rec. Sept. 17, 1927 Goodwin > BIA,undated + + + + + + 65 + 272 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 57082-1934: 059, Sept. 17, 1927 Burke > Allen,undated + + + + + + 65 + 273 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 57082-1934: 059, Sept. 17, 1927 Burke > Goodwin,undated + + + + + + 65 + 274 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 57082-1934: 059 Sept. 21, 1927,undated + + + + + + 65 + 275 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CCF- Con. Chip. 57082-1934: 059, rec. Oct. 3, 1927,undated + + + + + + 65 + 276 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004683, Oct. 15, 1927,undated + + + + + + 65 + 277 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004692, Oct. 21, 1927,undated + + + + + + 65 + 278 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004678, Oct. 26, 1927,undated + + + + + + 65 + 279 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004679, Oct. 26, 1927,undated + + + + + + 65 + 280 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004680, Oct. 26, 1927,undated + + + + + + 65 + 281 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004682, Oct. 29, 1927,undated + + + + + + 65 + 282 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004691, Nov. 12, 1927,undated + + + + + + 65 + 283 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004688, Nov. 29, 1927,undated + + + + + + 65 + 284 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004651, Dec. 1, 1927,undated + + + + + + 65 + 285 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: CROIA 47477-1905, Dec. 7, 1927?,undated + + + + + + 65 + 286 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004709, Dec. 16, 1927,undated + + + + + + 65 + 287 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004650, Dec. 17, 1927,undated + + + + + + 65 + 288 + Box 11 Mille Lacs Chippewa, Calendar documents, 1914-1927: MN 004641, Dec. 29, 1927,undated + + + + + + 66 + 1 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004787, 1928,undated + + + + + + 66 + 2 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004708, Jan. 8, 1928,undated + + + + + + 66 + 3 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004707, Jan. 9, 1928,undated + + + + + + 66 + 4 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004792, Jan. 12, 1928,undated + + + + + + 66 + 5 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004640, Jan. 14, 1928,undated + + + + + + 66 + 6 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004791, Jan. 21, 1928,undated + + + + + + 66 + 7 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004790, Jan. 21, 1928,undated + + + + + + 66 + 8 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004700, Jan. 23, 1928,undated + + + + + + 66 + 9 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004789, Jan 24, 1928,undated + + + + + + 66 + 10 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004788, Feb. 9, 1928,undated + + + + + + 66 + 11 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004699, Feb. 10, 1928,undated + + + + + + 66 + 12 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004184, Feb. 23, 1928,undated + + + + + + 66 + 13 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 12258-1928: 115, March 7, 1928,undated + + + + + + 66 + 14 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004182, March 15, 1928,undated + + + + + + 66 + 15 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004181, March 17, 1928,undated + + + + + + 66 + 16 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 16811-1928: 115, April 2, 1928,undated + + + + + + 66 + 17 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004179, April 2, 1928,undated + + + + + + 66 + 18 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004178, April 4, 1928,undated + + + + + + 66 + 19 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 12258-1928: 115, April 9, 1928,undated + + + + + + 66 + 20 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 12258-1928: 115, rec. April 9, 1928,undated + + + + + + 66 + 21 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 55850-1928: 115, Nov. 15, 1928,undated + + + + + + 66 + 22 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 57257-1928: 115, Nov. 19, 1928,undated + + + + + + 66 + 23 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 51425-1928: 115, Nov. 22, 1928,undated + + + + + + 66 + 24 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 55850-1928: 115, rec. Dec. 10, 1928,undated + + + + + + 66 + 25 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 60673-1928: 115, Dec. 14, 1928,undated + + + + + + 66 + 26 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 60673-1928: 115, Dec. 17, 1928,undated + + + + + + 66 + 27 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 60673-1928: 115, rec. Dec. 19, 1928,undated + + + + + + 66 + 28 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 60673-1928: 115, Dec. 24, 1928,undated + + + + + + 66 + 29 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 57082-1934: 059, 1929,undated + + + + + + 66 + 30 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 60948-1929: 115, 1929?,undated + + + + + + 66 + 31 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 60673-1928: 115, rec. Jan. 3, 1929,undated + + + + + + 66 + 32 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004826, April 2, 1929,undated + + + + + + 66 + 33 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003529, May 31, 1929,undated + + + + + + 66 + 34 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 57082-1934: 059, Aug. 12, 1929,undated + + + + + + 66 + 35 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 57082-1934: 059, Aug. 16, 1929,undated + + + + + + 66 + 36 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 54626-1929: 173, Oct. 23, 1929,undated + + + + + + 66 + 37 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 55153-1929: 115, Nov. 1, 1929,undated + + + + + + 66 + 38 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 54626-1929:173, Nov. 8, 1929,undated + + + + + + 66 + 39 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 54626-1929: 173, rec. Nov. 21, 1929,undated + + + + + + 66 + 40 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004813, Dec. 10, 1929,undated + + + + + + 66 + 41 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004816, Dec. 10, 1929,undated + + + + + + 66 + 42 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004814, Dec. 12, 1929,undated + + + + + + 66 + 43 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004812, Dec. 14, 1929,undated + + + + + + 66 + 44 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004811, Dec. 17, 1929,undated + + + + + + 66 + 45 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 55153-1929: 115, Dec. 19, 1929,undated + + + + + + 66 + 46 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 62757-1929: 115, rec. Dec. 27, 1929 (Folder 1 of 2),undated + + + + + + 66 + 47 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 62757-1929: 115, rec. Dec. 27, 1929 (Folder 2 of 2)undated + + + + + + 66 + 48 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 60948: 1929: 115, rec. Jan. 3, 1930,undated + + + + + + 66 + 49 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 60948-1929: 115, Jan. 6, 1930,undated + + + + + + 66 + 50 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 62757-1929: 115, rec. Jan. 8, 1930,undated + + + + + + 66 + 51 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 62757-1929: 115, Jan. 16, 1930,undated + + + + + + 66 + 52 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 62757-1929: 115, Jan. 21, 1930,undated + + + + + + 66 + 53 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 60948-1929: 115, rec. Feb. 11, 1930 (Folder 1 of 2),undated + + + + + + 66 + 54 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 60948-1929: 115, rec. Feb. 11, 1930 (Folder 2 of 2),undated + + + + + + 66 + 55 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 60948-1929: 115, Feb. 19, 1930,undated + + + + + + 66 + 56 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 62757-1929: 115, rec. March 14, 1930,undated + + + + + + 66 + 57 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003542, Aug. 11, 1930,undated + + + + + + 66 + 58 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003541, Sept. 8, 1930,undated + + + + + + 66 + 59 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003539, Sept. 11, 1930,undated + + + + + + 66 + 60 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 50849-1930: 115, Sept. 26, 1930,undated + + + + + + 66 + 61 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003570, Oct. 7, 1930,undated + + + + + + 66 + 62 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004805, Oct. 15, 1930,undated + + + + + + 66 + 63 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003546, Oct. 16, 1930,undated + + + + + + 66 + 64 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 50849-1930: 115, rec. Oct. 21, 1930,undated + + + + + + 66 + 65 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003568, Oct. 29, 1930,undated + + + + + + 66 + 66 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004803, Nov. 1930,undated + + + + + + 66 + 67 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003545, Nov. 1, 1930,undated + + + + + + 66 + 68 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003544, Nov. 7, 1930,undated + + + + + + 66 + 69 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004801, Nov. 10, 1930,undated + + + + + + 66 + 70 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004821, Dec. 1930,undated + + + + + + 66 + 71 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003535, Dec. 15, 1930,undated + + + + + + 66 + 72 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 66312-1930: 115, Dec. 13, 1930,undated + + + + + + 66 + 73 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004819, Jan. 5, 1931,undated + + + + + + 66 + 74 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004798, Jan. 16, 1931,undated + + + + + + 66 + 75 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004797, Jan. 21, 1931,undated + + + + + + 66 + 76 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 60948-1929: 115, Feb. 3, 1931,undated + + + + + + 66 + 77 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004796, Feb. 4, 1931,undated + + + + + + 66 + 78 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004794, Feb. 5, 1931,undated + + + + + + 66 + 79 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 60948-1929: 115, Feb. 7, 1931,undated + + + + + + 66 + 80 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003531, Feb. 19, 1931,undated + + + + + + 66 + 81 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003632, May 8, 1931,undated + + + + + + 66 + 82 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003630, May 18, 1931,undated + + + + + + 66 + 83 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003629, May 19, 1931,undated + + + + + + 66 + 84 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003628, May 21, 1931,undated + + + + + + 66 + 85 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003573, May 28, 1931,undated + + + + + + 66 + 86 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003626, May 28, 1931,undated + + + + + + 66 + 87 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003625, June 12, 1931,undated + + + + + + 66 + 88 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003624, June 28, 1931,undated + + + + + + 66 + 89 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004126, July 18, 1931,undated + + + + + + 66 + 90 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003623, July 23, 1931,undated + + + + + + 66 + 91 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003622, July 27, 1931,undated + + + + + + 66 + 92 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003621, July 30, 1931,undated + + + + + + 66 + 93 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004127, Aug. 4, 1931,undated + + + + + + 66 + 94 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004124, Aug. 13, 1931,undated + + + + + + 66 + 95 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003578, Aug. 15, 1931,undated + + + + + + 66 + 96 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004123, Aug. 15, 1931,undated + + + + + + 66 + 97 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004122, Sept. 24, 1931,undated + + + + + + 66 + 98 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004376, Oct. 21, 1931,undated + + + + + + 66 + 99 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 50849-1930: 115, Nov. 13, 1931,undated + + + + + + 66 + 100 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003576, Nov. 23, 1931,undated + + + + + + 66 + 101 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004375, Dec. 11, 1931,undated + + + + + + 66 + 102 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003575, Dec. 17, 1931,undated + + + + + + 66 + 103 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003918, 1932,undated + + + + + + 66 + 104 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 50849-1930: 115, rec. Jan. 26, 1932,undated + + + + + + 66 + 105 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 008111, Feb. 3, 1932,undated + + + + + + 66 + 106 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004373, Feb. 12, 1932,undated + + + + + + 66 + 107 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004370, Feb. 19, 1932,undated + + + + + + 66 + 108 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004372, March 7, 1932,undated + + + + + + 66 + 109 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004370, March 9, 1932,undated + + + + + + 66 + 110 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003592, March 31, 1932,undated + + + + + + 66 + 111 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 37704-1923: 155, May 7, 1932,undated + + + + + + 66 + 112 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003804, May 16, 1932,undated + + + + + + 66 + 113 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 37704-1923: 155, rec. June 13, 1932,undated + + + + + + 66 + 114 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003802, July 6, 1932,undated + + + + + + 66 + 115 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003917, July 7, 1932,undated + + + + + + 66 + 116 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003800, Aug. 27, 1932,undated + + + + + + 66 + 117 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003822, Aug. 27, 1932,undated + + + + + + 66 + 118 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003832, Aug. 27, 1932,undated + + + + + + 66 + 119 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003833, Aug. 27, 1932,undated + + + + + + 66 + 120 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003829, Sept. 9, 1932,undated + + + + + + 66 + 121 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003821, Sept. 12, 1932,undated + + + + + + 66 + 122 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003799, Sept. 14, 1932,undated + + + + + + 66 + 123 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003827, Sept. 15, 1932,undated + + + + + + 66 + 124 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003797, Sept. 19, 1932,undated + + + + + + 66 + 125 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003819, Sept. 19, 1923,undated + + + + + + 66 + 126 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003796, Sept. 24, 1932,undated + + + + + + 66 + 127 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003795, Oct. 1, 1932,undated + + + + + + 66 + 128 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003816, Oct. 17, 1932,undated + + + + + + 66 + 129 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 37704-1932: 155, Oct. 27, 1932,undated + + + + + + 66 + 130 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003813, rec. Oct. 29, 1932,undated + + + + + + 66 + 131 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003791, Nov. 23, 1932,undated + + + + + + 66 + 132 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003789, Nov. 29, 1932,undated + + + + + + 66 + 133 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 13389-1933: 115, 1933?,undated + + + + + + 66 + 134 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003788, Jan. 10, 1933,undated + + + + + + 66 + 135 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003931, Mar. 16, 1933,undated + + + + + + 66 + 136 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003940, Mar. 18, 1933,undated + + + + + + 66 + 137 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003781, Mar. 21, 1933,undated + + + + + + 66 + 138 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003939, Mar. 25, 1933,undated + + + + + + 66 + 139 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003938, Mar. 28, 1933,undated + + + + + + 66 + 140 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003936, Mar. 31, 1933,undated + + + + + + 66 + 141 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 14132-1933: 115, rec. April 4, 1933,undated + + + + + + 66 + 142 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003930, Apr. 4, 1933,undated + + + + + + 66 + 143 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003927, Apr. 9, 1933,undated + + + + + + 66 + 144 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 14132-1933: 115, rec. April 21, 1933,undated + + + + + + 66 + 145 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Cons. Chip. 17031-1933, 115, Apr. 24, 1933,undated + + + + + + 66 + 146 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003926, May 19, 1933,undated + + + + + + 66 + 147 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003780, May 23, 1933,undated + + + + + + 66 + 148 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003935, May 29, 1933,undated + + + + + + 66 + 149 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003934, June 1, 1933,undated + + + + + + 66 + 150 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003778, June 9, 1933,undated + + + + + + 66 + 151 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003777, June 9, 1933,undated + + + + + + 66 + 152 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 37704-1923: 155, rec. July 6, 1933,undated + + + + + + 66 + 153 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003770, Sept. 23, 1933,undated + + + + + + 66 + 154 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003527, Oct. 1933,undated + + + + + + 66 + 155 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 0039523, Nov. 14, 1933,undated + + + + + + 66 + 156 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003949, Nov. 15, 1933,undated + + + + + + 66 + 157 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003922, Nov. 22, 1933,undated + + + + + + 66 + 158 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003921, Nov. 27, 1933,undated + + + + + + 66 + 159 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003947, Dec. 21, 1933,undated + + + + + + 66 + 160 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003758, 1934,undated + + + + + + 66 + 161 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003767, Jan. 3, 1934,undated + + + + + + 66 + 162 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 970-1934: 115 (?), rec. Jan. 6, 1934,undated + + + + + + 66 + 163 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003920, Jan. 11, 1934,undated + + + + + + 66 + 164 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003765, Jan. 13, 1934,undated + + + + + + 66 + 165 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 970-1934: 115, Jan. 19, 1934,undated + + + + + + 66 + 166 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 970-1934: 115 (?), rec. Jan. 19, 1934,undated + + + + + + 66 + 167 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003946, Jan. 23, 1934,undated + + + + + + 66 + 168 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 970-1934: 115 (?), Feb. 19, 1934,undated + + + + + + 66 + 169 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003764, Feb. 28, 1934,undated + + + + + + 66 + 170 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003763, March 5, 1934,undated + + + + + + 66 + 171 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003761, March 8, 1934,undated + + + + + + 66 + 172 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003759, March 16, 1934,undated + + + + + + 66 + 173 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003757, July 3, 1934,undated + + + + + + 66 + 174 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003756, July 10, 1934,undated + + + + + + 66 + 175 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003958, July 16, 1934,undated + + + + + + 66 + 176 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003956, Aug. 21, 1934,undated + + + + + + 66 + 177 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003957, Aug. 22, 1934,undated + + + + + + 66 + 178 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003953, Nov. 1934,undated + + + + + + 66 + 179 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 1354-1935: 162, Dec. 1, 1934,undated + + + + + + 66 + 180 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 13389-1933: 115, 1935 (?),undated + + + + + + 66 + 181 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004121, Jan. 24, 1934,undated + + + + + + 66 + 182 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003952, Jan. 29, 1935,undated + + + + + + 66 + 183 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004052, Feb. 23, 1935,undated + + + + + + 66 + 184 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 004051, March 19, 1935,undated + + + + + + 66 + 185 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 13389-1933: 155, Nov. 25, 1935,undated + + + + + + 66 + 186 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 13389-1933: 115, Nov. 30, 1935,undated + + + + + + 66 + 187 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 13389-1933: 115, rec. Dec. 27, 1935,undated + + + + + + 66 + 188 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 13389-1933: 115, Jan. 14, 1936,undated + + + + + + 66 + 189 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 13389-1933: 115, rec. Jan. 17, 1936,undated + + + + + + 66 + 190 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 13389-1933: 115, rec. Feb. 1, 1936,undated + + + + + + 66 + 191 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003753, July 14, 1936,undated + + + + + + 66 + 192 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 002605, July 24, 1936,undated + + + + + + 66 + 193 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003752, Aug. 13, 1936,undated + + + + + + 66 + 194 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 008112, rec. Dec. 8, 1936,undated + + + + + + 66 + 195 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 16087-1937: 930, March 11, 1937,undated + + + + + + 66 + 196 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 30426-1937: 931, May 13, 1937,undated + + + + + + 66 + 197 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: Voight, Ex. EE, June 21, 1937,undated + + + + + + 66 + 198 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 68370-1937: 931, Nov. 2, 1937,undated + + + + + + 66 + 199 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 002596, 1938,undated + + + + + + 66 + 200 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: Voight, Ex. HH, rec. June 6, 1938,undated + + + + + + 66 + 201 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 008116, rec. Jan. 26, 1938,undated + + + + + + 66 + 202 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003564, Jan. 28, 1938,undated + + + + + + 66 + 203 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: STMN, 003562, Jan. 28, 1938,undated + + + + + + 66 + 204 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003565, Jan. 31, 1938,undated + + + + + + 66 + 205 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003561, Feb. 2, 1938,undated + + + + + + 66 + 206 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: STMN, 003560, Feb. 4, 1938,undated + + + + + + 66 + 207 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003566, Feb. 18, 1938,undated + + + + + + 66 + 208 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003556, March 1, 1938,undated + + + + + + 66 + 209 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003555, March 14, 1938,undated + + + + + + 66 + 210 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 008124, rec. April 18, 1938,undated + + + + + + 66 + 211 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF-Con. Chip. 65668-1938: 931, Oct. 21, 1938,undated + + + + + + 66 + 212 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 41544-1939: 931, June 24, 1939,undated + + + + + + 66 + 213 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003553, May 24, 1940,undated + + + + + + 66 + 214 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003551, June 6, 1940,undated + + + + + + 66 + 215 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003550, June 14, 1940,undated + + + + + + 66 + 216 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: Report to Wildlife, July 15, 1940,undated + + + + + + 66 + 217 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 008126, rec. July 17, 1940,undated + + + + + + 66 + 218 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 008129, rec. (?) Aug. 23, 1945 (?),undated + + + + + + 66 + 219 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: CCF- Con. Chip. 17669-1929, June 17, 1946,undated + + + + + + 66 + 220 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 008133, rec. Dec. 19, 1949,undated + + + + + + 66 + 221 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: ICC, July 10, 1949,undated + + + + + + 66 + 222 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 002892, March 27, 1952,undated + + + + + + 66 + 223 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN, ICC, DKT. 18B, 186, ca. 1954 (Folder 1 of 2),undated + + + + + + 66 + 224 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN, ICC, DKT. 18B, 186, ca. 1954 (Folder 2 of 2),undated + + + + + + 66 + 225 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: (ICC) ICC, Oct. 23, 1954,undated + + + + + + 66 + 226 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 008134, Feb. 10, 1955,undated + + + + + + 66 + 227 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 005028, (decided) April 3, 1956,undated + + + + + + 66 + 228 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: Voight, Ex. II, May 31, 1967,undated + + + + + + 66 + 229 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN (ICC), Oct. 23, 1957,undated + + + + + + 66 + 230 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 002782, Oct. 25, 1960,undated + + + + + + 66 + 231 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MCT, DKT, 18c, 18s, 18t, Dec. 6, 1865,undated + + + + + + 66 + 232 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: KN Qly Vol. 3, No.4, Fall 1971,undated + + + + + + 66 + 233 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 6312, Spring/Autumn/Winter, 1972,undated + + + + + + 66 + 234 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: Voight, Ex. V, 1973,undated + + + + + + 66 + 235 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 007076, 1974,undated + + + + + + 66 + 236 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 008137, Stevens Catholic and Protestant Missions, 1974,undated + + + + + + 66 + 237 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: Voight, Ex. EE, Oct. 11, 1974,undated + + + + + + 66 + 238 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: Voight, Ex. FF, Oct. 11, 1974,undated + + + + + + 66 + 239 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: Voight, Ex. GG, Oct. 11, 1974,undated + + + + + + 66 + 240 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 007136, Western Canadian Tour of Anp, Vol.6, No.4, 1976,undated + + + + + + 66 + 241 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 008067, 1977,undated + + + + + + 66 + 242 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 007119, Sept. 1979,undated + + + + + + 66 + 243 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 008161, 1986,undated + + + + + + 66 + 244 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 007044, Aug. 10, 18, Ramsey, Buffalo Chicago,undated + + + + + + 66 + 245 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN, ICC, DKT, 18B, 186, MN 10311, Aug. 20, 18, Rice, Medill,undated + + + + + + 66 + 246 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN, ICC, DKT, 18B, 186, MN 10157, Sept. 4, 19, Cullen, Da (?),undated + + + + + + 66 + 247 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 007042, Sept. 9, 18,undated + + + + + + 66 + 248 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 007029, Oct. 2,undated + + + + + + 66 + 249 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 000393, >Ramsey,undated + + + + + + 66 + 250 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 000577,undated + + + + + + 66 + 251 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 000971,undated + + + + + + 66 + 252 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 003703,undated + + + + + + 66 + 253 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 007022,undated + + + + + + 66 + 254 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 007033,undated + + + + + + 66 + 255 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 007039,undated + + + + + + 66 + 256 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 007047,undated + + + + + + 66 + 257 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 007047,undated + + + + + + 66 + 258 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 007285,undated + + + + + + 66 + 259 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 008220,undated + + + + + + 66 + 260 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN, ICC, DKT, 18B, MN10339,undated + + + + + + 66 + 261 + Box 12 Millie Lacs Chippewa, Calendar Documents, 1928-1979: MN 006235,undated + + + + + + 67 + 1 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1838,undated + + + + + + 67 + 2 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, NOv. 25, 1839,undated + + + + + + 67 + 3 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1840: 339-40, 1840,undated + + + + + + 67 + 4 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1841: 330-32, Sept. 30, 1941 + Nov. 25, 1841,undated + + + + + + 67 + 5 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Nov. 16, 1842,undated + + + + + + 67 + 6 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Nov. 25, 1843,undated + + + + + + 67 + 7 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1846,undated + + + + + + 67 + 8 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Sept. 15, 1847,undated + + + + + + 67 + 9 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Dec. 24, 1849; MN 001780,undated + + + + + + 67 + 10 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 35-39, Nov. 27, 1850,undated + + + + + + 67 + 11 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1850: 75-96, Oct. 21, 1850,undated + + + + + + 67 + 12 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1851-B,undated + + + + + + 67 + 13 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: NAM M234, R. 168, Sept. 20, 1851 + Annual Report Nov. 27, 1851,undated + + + + + + 67 + 14 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1852: 337-38, Sept. 15, 1852,undated + + + + + + 67 + 15 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1852: 337-38, Oct. 15, 1852,undated + + + + + + 67 + 16 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1852: 327-36, Oct. 26, 1852,undated + + + + + + 67 + 17 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1852- B (Folder 1 of 2),undated + + + + + + 67 + 18 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1855-B (Folder 2 of 2),undated + + + + + + 67 + 19 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Oct. 8, 1853,undated + + + + + + 67 + 20 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1853-B,undated + + + + + + 67 + 21 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1853,undated + + + + + + 67 + 22 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Oct. 17, 1855,undated + + + + + + 67 + 23 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1856-B,undated + + + + + + 67 + 24 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA (Sec. of Interior), Sept. 27, 1856,undated + + + + + + 67 + 25 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Nov. 30, 1857,undated + + + + + + 67 + 26 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1857-B,undated + + + + + + 67 + 27 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1858-B,undated + + + + + + 67 + 28 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1859-B,undated + + + + + + 67 + 29 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1860-B,undated + + + + + + 67 + 30 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1862-B (Folder 1 of 2),undated + + + + + + 67 + 31 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1862-B (Folder 2 of 2),undated + + + + + + 67 + 32 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Oct. 31, 1863,undated + + + + + + 67 + 33 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1863-B,undated + + + + + + 67 + 34 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Nov. 15, 1864,undated + + + + + + 67 + 35 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: MN 002114, ARCOIA 1864,undated + + + + + + 67 + 36 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1864-B,undated + + + + + + 67 + 37 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1865-B,undated + + + + + + 67 + 38 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Aug. 22, 1865,undated + + + + + + 67 + 39 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1866,undated + + + + + + 67 + 40 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1866-B,undated + + + + + + 67 + 41 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Sept. 30, 1867,undated + + + + + + 67 + 42 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1867-B,undated + + + + + + 67 + 43 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Nov. 20, 1868,undated + + + + + + 67 + 44 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1868-B,undated + + + + + + 67 + 45 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1869-B (Folder 1 of 2),undated + + + + + + 67 + 46 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1869-B (Folder 2 of 2),undated + + + + + + 67 + 47 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Sept. 25, 1870,undated + + + + + + 67 + 48 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1870-B,undated + + + + + + 67 + 49 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Nov. 8, 1871,undated + + + + + + 67 + 50 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1871-B,undated + + + + + + 67 + 51 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1872,undated + + + + + + 67 + 52 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1872-B,undated + + + + + + 67 + 53 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Dec. 1, 1873,undated + + + + + + 67 + 54 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1873-B,undated + + + + + + 67 + 55 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1874,undated + + + + + + 67 + 56 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1874-B,undated + + + + + + 67 + 57 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Sept. 21, 1875,undated + + + + + + 67 + 58 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1875-B,undated + + + + + + 67 + 59 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Sept. 1, 1876,undated + + + + + + 67 + 60 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1876-B,undated + + + + + + 67 + 61 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Aug. 28, 1877,undated + + + + + + 67 + 62 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1877-B,undated + + + + + + 67 + 63 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Aug. 30, 1878,undated + + + + + + 67 + 64 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1878-B,undated + + + + + + 67 + 65 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Aug. 27, 1879,undated + + + + + + 67 + 66 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1879-B,undated + + + + + + 67 + 67 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1880,undated + + + + + + 67 + 68 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1880-B,undated + + + + + + 67 + 69 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1881,undated + + + + + + 67 + 70 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1881-B,undated + + + + + + 67 + 71 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1882,undated + + + + + + 67 + 72 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1882-B,undated + + + + + + 67 + 73 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1883,undated + + + + + + 67 + 74 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1883-B,undated + + + + + + 67 + 75 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Sept. 1, 1884,undated + + + + + + 67 + 76 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1884-B,undated + + + + + + 67 + 77 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Aug. 25, 1885,undated + + + + + + 67 + 78 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1885-B,undated + + + + + + 67 + 79 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Aug. 28, 1886,undated + + + + + + 67 + 80 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1886-B,undated + + + + + + 67 + 81 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1887,undated + + + + + + 67 + 82 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1887-B,undated + + + + + + 67 + 83 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Aug. 22, 1888,undated + + + + + + 67 + 84 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1888-B,undated + + + + + + 67 + 85 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Aug. 31, 1889,undated + + + + + + 67 + 86 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1889-B,undated + + + + + + 67 + 87 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, Aug. 14, 1890,undated + + + + + + 67 + 88 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA-B, 1890,undated + + + + + + 67 + 89 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1891,undated + + + + + + 67 + 90 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1892,undated + + + + + + 67 + 91 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1893,undated + + + + + + 67 + 92 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1894,undated + + + + + + 67 + 93 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA-B, 1894,undated + + + + + + 67 + 94 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA-B, 1895,undated + + + + + + 67 + 95 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1896,undated + + + + + + 67 + 96 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1897,undated + + + + + + 67 + 97 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA-B, 1897,undated + + + + + + 67 + 98 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA-B, 1898,undated + + + + + + 67 + 99 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1899,undated + + + + + + 67 + 100 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA-B, 1899,undated + + + + + + 67 + 101 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1900,undated + + + + + + 67 + 102 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA-B, 1900,undated + + + + + + 67 + 103 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1901,undated + + + + + + 67 + 104 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1902,undated + + + + + + 67 + 105 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1904,undated + + + + + + 67 + 106 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA-B, 1904,undated + + + + + + 67 + 107 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1905,undated + + + + + + 67 + 108 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: ARCOIA, 1906,undated + + + + + + 67 + 109 + Box 14 Millie Lacs Chippewa, Calendar documents, ARCOIAs: Congressional Reports,undated + + + + + + 68 + 1 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Treaty Praire du Chien Aug. 19, 1825, 7 stat: 272,undated + + + + + + 68 + 2 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Treaty Fond du Lac 1826, 7 stat: 290 Aug. 5, 1826,undated + + + + + + 68 + 3 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Treaty of St. Peters July 29, 1837, 7 stat: 536,undated + + + + + + 68 + 4 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Treaty of La Pointe/St. Peters Oct. 4, 1842, 7 stat: 591,undated + + + + + + 68 + 5 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Treaty St. Peters/Chippewa Oct. 4, 1842, 7 stat, 591,undated + + + + + + 68 + 6 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Treaty Chip/Pillager Aug. 21, 1847, 9 stat: 908,undated + + + + + + 68 + 7 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Treaty Delawares May 6, 1854, 10 stat: 1048,undated + + + + + + 68 + 8 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Treaty Shawnee May 10, 1854, 10 stat: 1053,undated + + + + + + 68 + 9 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Treaty LaPointe Sept. 1854, 10 stat: 1109,undated + + + + + + 68 + 10 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Treaty LaPointe Sept. 1854, 10 stat: 1109,undated + + + + + + 68 + 11 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Treaty Chippewa Feb. 22, 1855, 10 stat: 1165,undated + + + + + + 68 + 12 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Treaty Choctaw/Chickasaw June 22, 1855, 11 stat: 611,undated + + + + + + 68 + 13 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Treaty Ottawa/Chipp. July 31, 1855, 11 stat: 621,undated + + + + + + 68 + 14 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Treaty Chip. Misspi and Pillager Mar. 11, 1863, 12 Stats: 1249,undated + + + + + + 68 + 15 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Treaty Chippewa, Missippi, Pillager, Lk. Winnibigoshish May 7, 1864, 13 Stat: 693,undated + + + + + + 68 + 16 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Treaty w/ the Chippewa of the MS March 19, 1867, 16 Stats: 719,undated + + + + + + 68 + 17 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Pope’s Map, Route to Red River 1849,undated + + + + + + 68 + 18 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Map of White Earth, Leech Lake, Red Lake, Special Case 109, Gp. 75,undated + + + + + + 68 + 19 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Map Untitled- Mille Lac, Special Case 109, Ex. C. Group 75,undated + + + + + + 68 + 20 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): “Treaty w/ the Chippewa Indians”, Sept. 26, 1854,undated + + + + + + 68 + 21 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Family of Beaulieu, No Data,undated + + + + + + 68 + 22 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): MN 002954 1874, Illustrated Historical Atlas,undated + + + + + + 68 + 23 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): US Dept. of Interior, July 21, 1897,undated + + + + + + 68 + 24 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Historical Atlas of MN, 1874,undated + + + + + + 68 + 25 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Mille Lacs Newsletter, Aug. 1994,undated + + + + + + 68 + 26 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Minneapolis JL, April 8, 1897,undated + + + + + + 68 + 27 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): St. Paul Minnesotian, Sept. 17, 1851 “Mille Lacs in a Winters Evening.” MN 008103,undated + + + + + + 68 + 28 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): MN Archeologist vol. XII, no. 4 Oct. 1946, Warren, W.W,undated + + + + + + 68 + 29 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): MN Archeologist vol. XIII, no. 1 Jan. 1947,undated + + + + + + 68 + 30 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): MN Pineries,undated + + + + + + 68 + 31 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): MN Volunteer, Sept.-Oct., 1992,undated + + + + + + 68 + 32 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Clifton, J.A., Vol. 75, 1987,undated + + + + + + 68 + 33 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): DeBow, JDB, Stat Review, 1854,undated + + + + + + 68 + 34 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Doty, James D. “Northern WI in 1820.” 1903, WI Historical Collections. Vol. 7, p. 195-206,undated + + + + + + 68 + 35 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Folwell, W.W., Vol. I, 1956,undated + + + + + + 68 + 36 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Howlett, G. “Acipenser Fulvescens Rafinesque” (Lake Sturgeon) Jan. 13, 1993,undated + + + + + + 68 + 37 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Kuehnle, W.R./Appraisal Royce Area 242, Dec. 1, 1973,undated + + + + + + 68 + 38 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Lanman, Charles. “Canoe Voyage.” July 1846,undated + + + + + + 68 + 39 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Ruffee, C.A. Report “Condition of the Chippewas of MN” Jan., 1875,undated + + + + + + 68 + 40 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Stanchfield, D. Vol. IX, 1901,undated + + + + + + 68 + 41 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): Warren, W.W., Vol. 12, No. 3, July, 1946,undated + + + + + + 68 + 42 + Box 14 Mille Lacs Chippewa, Treaties, published sources: (.5 cubic foot box): US ICC, DKT, 186, 180,undated + + + + + + 69 + 1 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Expert Witness Report for Landowners, Newell Report. J.W. Thompson, Jenny Thompson, J.N. Karpen, L. Burling, G.E. Thompson, G.M. Kiedrowski, re: 1837 Millie Lacs Band Treaty Lawsuit,Jan. 24, 1994 + + + + + + 69 + 2 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Driben, Paul. Curriculum Vitae,undated + + + + + + 69 + 3 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, Charles, Ph.D., Testimony, Vol. 1,Feb. 2, 1994 + + + + + + 69 + 4 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, Charles and McClurken, James, Calendar of Documents for Mille Lacs Chippewas v. MN,Sept. 13, 1992 + + + + + + 69 + 5 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, Charles and McClurken, James, Calendar of Documents for Mille Lacs Chippewas v. MN,April 21, 1993 + + + + + + 69 + 6 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, Documents from Cleland, 10-4-1993 List,Oct. 4, 1993 + + + + + + 69 + 7 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, List of Additional Documents Filed 10-12-1993 by State,Oct. 12, 1993 + + + + + + 69 + 8 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, fax Re: Millie Lacs v. State, Civil No. 4-90-605,1994 + + + + + + 69 + 9 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, Szotkowski to Slonim Re: Millie Lacs v. State of MN,1993 + + + + + + 69 + 10 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, Index to Plaintiff’s Exhibits,1994 + + + + + + 69 + 11 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, Defendants’ Disclosure, Alan Newell,1993 + + + + + + 69 + 12 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, Defendant’s Disclosure, Joe Fellegy, Civil No. 4-90-605,1993 + + + + + + 69 + 13 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, Expert Opinion Disclosure of Dr. Roderick Squires, Civil No. 4-90-605,1993 + + + + + + 69 + 14 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, Expert Opinion of Dr. Donovan Hofsommer, Civil No. 4-90-605,1993 + + + + + + 69 + 15 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, Mille Lacs Responses, Civil No. 4-90-605,1993 + + + + + + 69 + 16 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, Plaintiffs’ Response, Civil No. 4-90-605,1993 + + + + + + 69 + 17 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, Defendants’ Answers, Civil No. 4-90-605,1993 + + + + + + 69 + 18 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, Defendant-Intervenor Counties’ Responses, Civil No. 4-90-605,1993 + + + + + + 69 + 19 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, Transcript of Proceedings, Civil No. 4-90-605,1994 + + + + + + 69 + 20 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, Plaintiff’s Memorandum, Civil No. 4-90-605,1994 + + + + + + 69 + 21 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, Plaintiffs’ Witness List, Exhibit List, Plaintiff-Intervenor’s Joint Proposed Findings, Civil No. 4-90-605,1994 + + + + + + 69 + 22 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, Plaintiffs’ Response, etc., Civil No. 4-90-605,1994 + + + + + + 69 + 23 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, Cleland Testimony, Civil No. 4-90-605,1994 + + + + + + 69 + 24 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, Misc. documents,1993 + + + + + + 69 + 25 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, 1837 and 1855 Chippewa Treaties in the Context of Early American Wildlife Law,1993 + + + + + + 69 + 26 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, draft, Mille Lacs Band and the Treaty of 1855, 1993,1993 + + + + + + 69 + 27 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, Translation of Key Phrases in the Treaties of 1837 and 1855, John D. Nichols, 1994,1994 + + + + + + 69 + 28 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, A Sharp Break w/ the Past and Revisionist History: B.G. Armstrong and the Executive Order of Feb. 1850, Paul Driben, Ph.D., 1994,1994 + + + + + + 69 + 29 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, Testimony and Opinion by Rod Squires,1994 + + + + + + 69 + 30 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, Sharp Break W/ the Past, a report by Paul Driben Ph. D.,1994 + + + + + + 69 + 31 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Public Land Survey in MN Territory, 1817-1825 by Rod Squires,undated + + + + + + 69 + 32 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, MN: 1819-1860 A Land and People in Transition by John C. Massmann,undated + + + + + + 69 + 33 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Regional Context of the Removal Order of 1850 by Bruce M. White,1993 + + + + + + 69 + 34 + Box 15 Mille Lacs Chippewa, Expert witness depositions: Cleland, Treaty Rights of the Mille Lacs Band of Chippewa Indians to Hunt, Fish and Gather Wild Rice on Lands Ceded in 1837, Marc D. Slonim, 1987,undated + + + + + + 70 + 1 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): M.L. No. 4-90-605 Settlement Agreement,Jan. 15, 1993 + + + + + + 70 + 2 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): Transcripts from Trail, Vol. I and II, Civil No. 3-94-1226 formerly 4-90-605,1994 + + + + + + 70 + 3 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): Mille Lacs News Articles: Trail,1994 + + + + + + 70 + 4 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): Cleland, Affidavit of James A. Clifton, Ph. D., Civil No. 3-94-1226,1995 + + + + + + 70 + 5 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): Cleland, Expert Report of Paul Driben, Civil No. 3-94-1226,1995 + + + + + + 70 + 6 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 006518, ABCFM Ba10.512b Box 2, Oct. 31, 1838,undated + + + + + + 70 + 7 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M234 R. 3.88: 390-407, MN 003308 and MN 010241, Jan. 8, 1843,undated + + + + + + 70 + 8 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): ARCOIA 1841: 330-332, Sept. 30, 1841,undated + + + + + + 70 + 9 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): St. Anthony Express, vol. 1:36, Jan. 31, 1852,undated + + + + + + 70 + 10 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): St. Paul, MN, vol. 1:21, 2-7-1852,undated + + + + + + 70 + 11 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): ABCFM MN Ms. Ba10 .A512b, 12-31-1853,undated + + + + + + 70 + 12 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M234 R.150: 216-218, 2-1-1855,undated + + + + + + 70 + 13 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M234 R.390, 11-14-1848 F.N. 33,undated + + + + + + 70 + 14 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MCT Dkt. 18, C, S, T Ex. 3, April 16, 1825 FN39,undated + + + + + + 70 + 15 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MCT Dkt. 18, C, S, T Ex. 7 (June 30- Aug. 22, 1825) FN 40 JL,undated + + + + + + 70 + 16 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): Treaty Prairie Chien 1825 FN 41, Aug. 19, 1825,undated + + + + + + 70 + 17 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M234 R. 757:64-66, 7-30-1830,undated + + + + + + 70 + 18 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 008089, Feb. 20, 1837 FN 43,undated + + + + + + 70 + 19 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 006527, July 8, 1839 FN 44 also FN 45,undated + + + + + + 70 + 20 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): LTP R.2:362, 95 7-4-1839 FN 44,undated + + + + + + 70 + 21 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): ARCOIA 1840: 339-340 1840,undated + + + + + + 70 + 22 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): ABCFM Ms. BA10, 512b Box 3, Sept. 28, 1841 FN 47,undated + + + + + + 70 + 23 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): ARCOIA 1841: 330-332, 9-30-1841 FN 47,undated + + + + + + 70 + 24 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MCT Dkt. 18C, S, T Ex. 23 March 26, 1827,undated + + + + + + 70 + 25 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): LTP R.3:365, 47, 9-5-1827,undated + + + + + + 70 + 26 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): LTP R.3: 365,100, 2-14-1828 FN 49,undated + + + + + + 70 + 27 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): LTP R.3:372, 39-41, 5-18-1836 FN 49,undated + + + + + + 70 + 28 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MCT Dkt. 18C, S, T Ex. 60, Nov. 11, 1835 FN 51,undated + + + + + + 70 + 29 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MCT Dkt. 18C, S, T Ex. 56, Sept. 2, 1835 FN 51,undated + + + + + + 70 + 30 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MCT Dkt. 18C, S, T Ex. 41, March 4, 1834 FN 52,undated + + + + + + 70 + 31 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): LTP R.3: 369, 6, 5-22-1832 FN 52, 53,undated + + + + + + 70 + 32 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): Trade and Intercourse Act 1834 US Stats at Large 4: 729-735, FN 53,undated + + + + + + 70 + 33 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MCT DEF Ex. 56, Sept. 30 1834 FN 54,undated + + + + + + 70 + 34 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M21 R.18:76-77, March 7, 1836 FN 55,undated + + + + + + 70 + 35 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M21 R.21:200, May 13, 1837 FN 55,undated + + + + + + 70 + 36 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 003146 Mar. 25, 1837 NAM T494 R.3?,undated + + + + + + 70 + 37 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M21 R21:200 May 13, 1837 see FN 55, FN 57,undated + + + + + + 70 + 38 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M21 R22:364-365, Oct. 2, 1837,undated + + + + + + 70 + 39 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): Indian Removal Act 1830 4 stats. 411-12 FN 59,undated + + + + + + 70 + 40 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 006415 July 26, 1842 FN 60,undated + + + + + + 70 + 41 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM T494 R.3:548-568? July 20, 1837 FN 60,undated + + + + + + 70 + 42 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 003075 Aug. 7, 1837 NAM T494 R.3:540-545,undated + + + + + + 70 + 43 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 007529 Oct. 18, 1839 M951 R. 4:067 FN 63,undated + + + + + + 70 + 44 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM T494, 7-20-37 Proceedings FN 64,undated + + + + + + 70 + 45 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM 494, 7-20-37 Proceedings FN 66,undated + + + + + + 70 + 46 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM T494 7-20-37, Proceedings FN 67,undated + + + + + + 70 + 47 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM T94 7-20-37, Proceedings FN 68,undated + + + + + + 70 + 48 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): Treaty Found du Lac Aug. 5, 1826 FN 69,undated + + + + + + 70 + 49 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM T494 7-20-37, Proceedings FN 70,undated + + + + + + 70 + 50 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 006474 Oct. 4, 1837 ABCFM MSS 141: No192 FN 71,undated + + + + + + 70 + 51 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M234 R.387:100-105, Sept. 30, 1837 FN 71,undated + + + + + + 70 + 52 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM T494 7-20-37 Proceedings FN 72,undated + + + + + + 70 + 53 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM T494 7-20-37 Proceedings FN 37,undated + + + + + + 70 + 54 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM T494 7-20-37 Proceedings FN 74,undated + + + + + + 70 + 55 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM T494 7-20-37 Proceedings FN 75,undated + + + + + + 70 + 56 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM T494 7-20-37 Proceedings FN 76,undated + + + + + + 70 + 57 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM T494 7-20-37 Proceedings FN 77,undated + + + + + + 70 + 58 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): 7 Stat 536, Treaty of St. Peters 1837 FN 78,undated + + + + + + 70 + 59 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): ABCFM, BA10, A5126, Aug. 17, 1837 FN 80,undated + + + + + + 70 + 60 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM T494 7-20-37 Proceedings FN 81,undated + + + + + + 70 + 61 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM T494 7-20-37 Proceedings FN 82,undated + + + + + + 70 + 62 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM T494 7-20-37 Proceedings FN 83,undated + + + + + + 70 + 63 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM T494 7-20-37 Proceedings FN 84,undated + + + + + + 70 + 64 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM T494 7-20-37 Proceedings FN 85,undated + + + + + + 70 + 65 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM T494 7-20-37 Proceedings FN 86,undated + + + + + + 70 + 66 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 007491 May 18, 1838 NAM M234 R.948:251 Dodge > Harris FN 87,undated + + + + + + 70 + 67 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 007331 July 6, 1838 NAM M234 R.948:226 Dodge > Harris FN 88,undated + + + + + + 70 + 68 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 010374 Oct. 1, 1838 NAM M234 R.948 Dodge > Harris FN 89,undated + + + + + + 70 + 69 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 010379 Feb. 13, 1839 NAM M234 R.948 Bushnell > Dodge FN 90,undated + + + + + + 70 + 70 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 007521 Dec. 1, 1837 ARCOIA FN 91 1 of 4,undated + + + + + + 70 + 71 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 007620 Feb. 15, 1838 FN 91 2 of 4,undated + + + + + + 70 + 72 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 006498 Oct. 8, 1838 ABCFM Ms. BA10. A512b FN 91 3 of 4,undated + + + + + + 70 + 73 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): ARCOIA 1838 FN 91 4 of 4,undated + + + + + + 70 + 74 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 007092 May 1823 ABCFM Ms. BA10 A512b FN 92,undated + + + + + + 70 + 75 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): ABCFM Oct. 8, 1838 see FN 91, FN 93,undated + + + + + + 70 + 76 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 007497 July 25, 1839 FN 94,undated + + + + + + 70 + 77 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 007166 July 27, 1842 Docket 18C Plan Ex 72 FN 96,undated + + + + + + 70 + 78 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MCT Dkt. 18C, S, T Ex. 75 Aug. 1, 1842 NAM M1 R53:161 FN 97, 98, 111,undated + + + + + + 70 + 79 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 006569 May 3, 1843 FN 99,undated + + + + + + 70 + 80 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M234 R.389:61-67 Sept. 29, 1842 FN 100,undated + + + + + + 70 + 81 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): M234 R389:61-67 Sept. 29, 1842 (FN 100) FN 102,undated + + + + + + 70 + 82 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): ABCFM May 3, 1843 Wheeler to Greene FN 102,undated + + + + + + 70 + 83 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 007533 Nov. 16, 1842 ARCOIA,undated + + + + + + 70 + 84 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M234 R.425:146-54 Oct. 28, 1842 FN 103 1 of 2,undated + + + + + + 70 + 85 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): M234 R.389 61-67 Sept. 29, 1842 FN 100,undated + + + + + + 70 + 86 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): Treaty of La Pointe 1842 FN 106,undated + + + + + + 70 + 87 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): ABCFM May 3, 1843 Wheeler to Greene FN 107,undated + + + + + + 70 + 88 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): ABCFM May 3, 1843 Wheeler to Greene FN 108,undated + + + + + + 70 + 89 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): ABCFM May 3, 1843 Wheeler to Greene FN 109,undated + + + + + + 70 + 90 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): ABCFM May 3, 1843 Wheeler to Greene FN 112,undated + + + + + + 70 + 91 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): ABCFM Dec. 8, 1842 Stuart to Greene FN 114 1 of 2,undated + + + + + + 70 + 92 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): Senate Doc. 403 (21-1) 477 June 24, 1846 FN 114 1 of 2,undated + + + + + + 70 + 93 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): LCO Voight Ex. 1 Nov. 6, 1851 FN 115,undated + + + + + + 70 + 94 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M234 R.390, M784 March 26, 1850 Livermore to Ramsey FN 116,undated + + + + + + 70 + 95 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): M234 R.769:61-72 Jan. 6, 1851 Mendenhall to L. Lee,undated + + + + + + 70 + 96 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 006427 June 30, 1850 FN 118 1 of 4,undated + + + + + + 70 + 97 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M234 R.767:247-254 Jan. 21, 1851 Treat to COIA FN 118 1 of 4,undated + + + + + + 70 + 98 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 003392 Jan. 28, 1851 NAM M234 R.767:131-41 FN 1 of 4,undated + + + + + + 70 + 99 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 006798 Aug. 27, 1851 ABCFM BA10, A512b Box 5 FN 118 1 of 4,undated + + + + + + 70 + 100 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 007661, March 18, 1852, FN 119,undated + + + + + + 70 + 101 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M234 R.404: 183-190, Dec. 10, 1853, FN 120,undated + + + + + + 70 + 102 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M234 R. 294:485-488, Sept. 12, 1869, FN 122,undated + + + + + + 70 + 103 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): ABCFM, May3, 1843 Wheeler to Greene, FN 123,undated + + + + + + 70 + 104 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): ABCFM BA10.A5726, Oct. 8, 1838, FN 124 (see FN 91),undated + + + + + + 70 + 105 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 007069, May 21, 1844, NAM M951 R.2:583 Crawford [arrow pointing to right] Doty, FN 125 1 of 2,undated + + + + + + 70 + 106 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 007539, Nov. 25, 1843, FN 125,undated + + + + + + 70 + 107 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M234 R.388:390-407, Jan. 6, 1843, FN 126 (see FN 17),undated + + + + + + 70 + 108 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MCTDEF, EX 35, March 9, 1843, FN 126 1 of 4,undated + + + + + + 70 + 109 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M234 R. 388:408-413, July 19, 1843, FN 126 1 of 4,undated + + + + + + 70 + 110 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M234 R.389: 111-116, Feb. 16, 1844, FN 127,undated + + + + + + 70 + 111 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM 951 R2:583, May 21, 1844, FN 128 (see FN 125),undated + + + + + + 70 + 112 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 006555, Nov. 26, 1842, P41563, 447, Greene [arrow pointing to right] Stuart, FN 129,undated + + + + + + 70 + 113 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): ABCFM MSS U.159 No. 242, Dec. 8, 1842, FN 130 (see FN 114),undated + + + + + + 70 + 114 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M234 R. 388, March 21, 1843, FN 131,undated + + + + + + 70 + 115 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): ABCFM Ms. MA10. 512b. Box 3, March 6, 1843, FN 132,undated + + + + + + 70 + 116 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 006593, Sept. 21, 1843, FN 133,undated + + + + + + 70 + 117 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): ABCFM Ms. BA10. 512b. Box 3, March 13, 1844, FN 134,undated + + + + + + 70 + 118 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): ARCOIA, 1843,undated + + + + + + 70 + 119 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 007273, March 21, 1847, FN 136 1/5,undated + + + + + + 70 + 120 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M21 R. 40: 25-26, Aug. 16, 1847, FN 136 1 of 5,undated + + + + + + 70 + 121 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 007317, Sept. 7, 1847, NAM 234 R. 949: 432, FN 136 1 of 5,undated + + + + + + 70 + 122 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 003213 Sept. 11, 1849, NAM 234 R. 390: 271, FN 136 1 of 5,undated + + + + + + 70 + 123 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 005474, Nov. 7, 1849, FN 136 1 of 5,undated + + + + + + 70 + 124 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 007061, Dec. 9, 1841, M951 R. 2: 195 1, FN 137 1 of 4,undated + + + + + + 70 + 125 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN Chronicle, July 19, 1849, p. 2, FN 137 1 of 4,undated + + + + + + 70 + 126 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN Register, July 28, 1849, p. 2, FN 137 1 of 4,undated + + + + + + 70 + 127 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN Chronicle and Register, Feb. 16, 1850, FN 137 1 of 4,undated + + + + + + 70 + 128 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M842 R. 1: 10-12, June 27, 1849. Medill to Ramsey, FN 138,undated + + + + + + 70 + 129 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MCT DEF, EX 60, July 30, 1850, FN 139 1 of 3,undated + + + + + + 70 + 130 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M234, R. 168, Sept. 18, 1851. Boutwell to Ramsey, FN 139 1 of 3,undated + + + + + + 70 + 131 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 006442, Dec. 14 (10), 1853, FN 139 1 of 3,undated + + + + + + 70 + 132 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): ARCOIA 1847, Sept. 15, 1847. Hayes to Dodge, FN 140,undated + + + + + + 70 + 133 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 007709, July 30, 1850, FN 141 1 of 6,undated + + + + + + 70 + 134 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 006675, Feb. 25, 1850, ABCFM Ba10. A512b, FN 141 1 of 6,undated + + + + + + 70 + 135 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M234 R. 390: 334-336, May 9, 1850, FN 141 1 of 6,undated + + + + + + 70 + 136 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): St. Anthony Express, Jan 31, 1852, FN 141 (see FN 18),undated + + + + + + 70 + 137 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): Babcock Transpts. Box1, Feb. 7, 1852, FN 141 1 of 6,undated + + + + + + 70 + 138 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M348 R. 6, June 3, 1851, FN 141,undated + + + + + + 70 + 139 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M842 R. 1: 10-12, June 27, 1849, FN 146 (see FN 138),undated + + + + + + 70 + 140 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MCT DKT. 18C, S,T, EX 71, ARCOIA, Sept. 22, 1840, FN 148,undated + + + + + + 70 + 141 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 003337, Nov. 1841, FN 148,undated + + + + + + 70 + 142 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN Chronicle and Register, Dec. 2, 1850, FN 148,undated + + + + + + 70 + 143 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M234 R. 155: 128, March 17, 1866, FN 148,undated + + + + + + 70 + 144 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): NAM M234 R. 158: 564-566, Dec. 29, 1870, FN 148,undated + + + + + + 70 + 145 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 007297, Jan. 18, 1842, FN 149,undated + + + + + + 70 + 146 + Box 16 Mille Lacs Chippewa, Cleland reports, reference documents-A (continued from B Box): MN 007187, Oct. 15, 1840, FN 150,undated + + + + + + 71 + 1 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN 010169 March 22, 1862, NAM M153: 108, FN 151,undated + + + + + + 71 + 2 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN 002886, Dec. 24, 1866, FN 151,undated + + + + + + 71 + 3 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234 R156: 694-695, Dec. 3, 1869, Goulding to Sen. Ramsey, FN 151,undated + + + + + + 71 + 4 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234 R163:331-336, Oct. 6, 1875, FN 151 1 of 6,undated + + + + + + 71 + 5 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234 R163:331-336, March 23, 1876, FN 151 1 of 6,undated + + + + + + 71 + 6 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234 R164:229-235, March 26, 1877, FN 151 1 of 6,undated + + + + + + 71 + 7 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234 R159: 14-16, Dec. 13, 1871, FN 152,undated + + + + + + 71 + 8 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: AR M204, R2, v.2, Jan. 1851, FN 1532,undated + + + + + + 71 + 9 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: ARCOIA 1857, Nov. 30, 1857, FN 154,undated + + + + + + 71 + 10 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: Minneapolis Tribune, May 29, 1970, FN 154,undated + + + + + + 71 + 11 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: Special Case 109, June 27, 1870, FN 154,undated + + + + + + 71 + 12 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: Special Case 109, June 30, 1870, FN 154,undated + + + + + + 71 + 13 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234 R156: 324, Sept. 29, 1867, FN 154,undated + + + + + + 71 + 14 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN 007279, March 17, 1845, FN 156 1 of 5,undated + + + + + + 71 + 15 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234 R389:468, Aug. 6, 1845, FN 156 1 of 5,undated + + + + + + 71 + 16 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN 007270, Jan 28, 1847, FN 156 1 of 5,undated + + + + + + 71 + 17 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: Special Case 109, Nov. 10, 1882, FN 156 1 of 5,undated + + + + + + 71 + 18 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: LROIA 23316-1883, Dec. 22, 1883, FN 156 1 of 5,undated + + + + + + 71 + 19 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: LTP R3:365, 147-148, April 24, 1828, FN 160 (Folder 1 of 2),undated + + + + + + 71 + 20 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: LTP R3:365, 147-148, April 24, 1828, FN 160 (Folder 2 of 2),undated + + + + + + 71 + 21 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN 006558, ABCFM, Dec. 8, 1842, FN 114 1 of 2,undated + + + + + + 71 + 22 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN 007609, Feb. 23, 1844, FN 160,undated + + + + + + 71 + 23 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: Special Case 109, G. Wheeler to G. Atcheson, Feb. 14, 1870, FN 160,undated + + + + + + 71 + 24 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: Treaty Chip Missp + Lk. Superior, Aug. 2, 1847, FN 162,undated + + + + + + 71 + 25 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: Treaty Chip/Pillager, Aug. 21, 1847, FN 163,undated + + + + + + 71 + 26 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MCT DKT 18C, S, T, Ex. 86, NAM M234, R 949, Nov. 28, 1848, FN 164,undated + + + + + + 71 + 27 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN 001941, Feb. 12, 1848, FN 164 1 of 4,undated + + + + + + 71 + 28 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M236, R 46, June 4, 1847, FN 164 1 of 4,undated + + + + + + 71 + 29 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234 R 389, Aug. 21, 1847, FN 165,undated + + + + + + 71 + 30 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M236, R 46, Aug. 2, 1847, FN 168,undated + + + + + + 71 + 31 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R 389, Sept. 3, 1847, FN 169,undated + + + + + + 71 + 32 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R 390: 79-80, Sept. 13, 1848, FN 169,undated + + + + + + 71 + 33 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R 390, Nov. 14, 1848, Nagonabe to Livermore, FN 169,undated + + + + + + 71 + 34 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R 389, Oct. 14, 1847, FN 170,undated + + + + + + 71 + 35 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R 390, Dec. 5, 1848, FN 173,undated + + + + + + 71 + 36 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R 388, June 2, 1843, FN 174 (Folder 1 of 2),undated + + + + + + 71 + 37 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R 388, June 2, 1843, FN 174 (Folder 2 of 2),undated + + + + + + 71 + 38 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN 006647, ABCFM MS 245, No. 72, Aug. 12, 1848, Hall [arrow pointing to right] Treat, FN 176,undated + + + + + + 71 + 39 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN 003256, NAM M234, R 390, July 13, 1850, FN 177,undated + + + + + + 71 + 40 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN 007709, July 30, 1850, FN 177,undated + + + + + + 71 + 41 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: ARCOIA 35-39, Nov. 27, 1850, FN 186,undated + + + + + + 71 + 42 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M842, R 1:8, April 24, 1849. Medill [arrow pointing to right] Fletcher,undated + + + + + + 71 + 43 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R 949, MCT DKT 18C, S,T BY. 85, Nov. 28, 1846, FN 191,undated + + + + + + 71 + 44 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R 949 March 26, 1847, FN 191,undated + + + + + + 71 + 45 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MCTDEF, Ex 947, May 22, 1850, FN 194,undated + + + + + + 71 + 46 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MCTDEF, Ex 947, May 22, 1850, FN 194,undated + + + + + + 71 + 47 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: AR M203, R 4, Dec. 1, 1849, Rice to [arrow pointing to right] Ramsey, FN 195,undated + + + + + + 71 + 48 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: AR M203, R 4, March 14, 1850, Rice to [arrow pointing to right] Ramsey, FN 196,undated + + + + + + 71 + 49 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: AR M204, R 2, V2, p. 10, Sept. 4, 1849, Ramsey Message, FN 197,undated + + + + + + 71 + 50 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R428: 77-80, M546 (1850), Sept. 22, 1849, Fletcher [arrow pointing to right] Ramsey, FN 200,undated + + + + + + 71 + 51 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R428: 124-128, M675 (1849), Nov. 7, 1849, Ramsey [arrow pointing to right] Ewing, FN 202,undated + + + + + + 71 + 52 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M21, R43: 23, Feb. 6, 1850, FN 203,undated + + + + + + 71 + 53 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R767: 159-163, Feb. 12, 1851, Ramsey [pointing to right] Lea, FN 204,undated + + + + + + 71 + 54 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN 008081, Feb. 7, 1849, FN 205,undated + + + + + + 71 + 55 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M21, R38: 237-239, Oct. 31, 1846, FN 206,undated + + + + + + 71 + 56 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN 002168, Nov. 30, 1848, FN 207,undated + + + + + + 71 + 57 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN 005526, NAM M234, R390, March 4, 1850, Ramsey [arrow pointing to right] Livermore, FN 208+209,undated + + + + + + 71 + 58 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R390: 375, March 4, 1850, FN 209,undated + + + + + + 71 + 59 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R390, M784, April 20, 1850, Ramsey [arrow pointing to right] COIA, FN 209,undated + + + + + + 71 + 60 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R390, M946, Aug. 16, 1850. Ramsey [arrow pointing to right] COIA, FN 211,undated + + + + + + 71 + 61 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MCT PLA, EX 400, May 24, 1850, FN 212,undated + + + + + + 71 + 62 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: AR M203, R6, Dec. 3, 1851, Hall [arrow pointing to right] Ramsey, FN 214,undated + + + + + + 71 + 63 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: ABCFM BAIO, A512b, Box 5, Dec. 30, 1850, FN 217,undated + + + + + + 71 + 64 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN 007747, 1851, FN 217,undated + + + + + + 71 + 65 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN 000971, July 22, 1851, FN 217,undated + + + + + + 71 + 66 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: AR M203, R5, Dec. 4, 1850, Sibley [arrow pointing to right] Ramsey, FN 218 (Folder 1 of 2),undated + + + + + + 71 + 67 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: AR M203, R5, Dec. 4, 1850, Sibley [arrow pointing to right] Ramsey, FN 218 (Folder 2 of 2),undated + + + + + + 71 + 68 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: AR M203, R5, Dec. 10, 1850, Sibley [arrow pointing to right] Ramsey, FN 218,undated + + + + + + 71 + 69 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: ABCFM Box 5, File 8, March 24, 1851, FN 219,undated + + + + + + 71 + 70 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN006777, ABCFM Ba A5126, May 19, 1851, FN 219,undated + + + + + + 71 + 71 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M842, R3: 637-342, Feb. 28, 1851, FN 220,undated + + + + + + 71 + 72 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R428: 265-267, M1068, April 25, 1850, Beaulieu to Borup, FN 221,undated + + + + + + 71 + 73 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234 R767: 234, May 13, 1851, FN 221,undated + + + + + + 71 + 74 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R168, M1351, May 25, 1851, Watrous [arrow pointing to right] Ramsey, FN 223,undated + + + + + + 71 + 75 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R168, M32, Dec. 15, 1851, Watrous [arrow pointing to right] Ramsey, FN 223,undated + + + + + + 71 + 76 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: ARCOIA, 1852: 337-338, Sept. 15, 1852, FN 223,undated + + + + + + 71 + 77 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: ARCOIA, Sept. 8, 1853, FN 223,undated + + + + + + 71 + 78 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: Spates Ms. MHS, P1595, Oct. 7, 1854, FN 223,undated + + + + + + 71 + 79 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN006795, ABCFM Ba10, A512b, Aug. 13, 1851, FN 224,undated + + + + + + 71 + 80 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M842 R3: 883-885, July 1, 1851, FN 225,undated + + + + + + 71 + 81 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN003394, Aug. 25, 1851, FN 227,undated + + + + + + 71 + 82 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M21, R45, Aug. 25, 1851, Lea to Watrous, FN 228,undated + + + + + + 71 + 83 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R168, M32, Dec. 26, 1851, Ramsery to COIA, FN 229,undated + + + + + + 71 + 84 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM 234, R168, Sept. 20, 1851, Watrous [arrow pointing to right] Ramsey, Annual Report, FN 229-230,undated + + + + + + 71 + 85 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN006811, ABCFM Ba10.A512b, Box 6, FN 230,undated + + + + + + 71 + 86 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: ABCFM BA10, A512b, March 8, 1852, FN 230,undated + + + + + + 71 + 87 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: ABCFM BA10, A512b, Box 6, May, 1852, FN 230,undated + + + + + + 71 + 88 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: ABCFM Ba10, A512b, Nov. 20, 1852, FN 230,undated + + + + + + 71 + 89 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R150, M990, Nov. 10, 1853, Herrman [arrow pointing to right] Gorman, FN 230,undated + + + + + + 71 + 90 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R150, M990, Nov. 15, 1853, Oakes to Gorman, FN 230,undated + + + + + + 71 + 91 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN 007726, Aug. 28, 1851, FN 231,undated + + + + + + 71 + 92 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN 007660, Jan 31, 1852, FN 232,undated + + + + + + 71 + 93 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN007350, Nov. 8, 1851, FN 232,undated + + + + + + 71 + 94 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: AR M203, R6, Dec. 9, 1851, Sibley to Ramsey, FN 232,undated + + + + + + 71 + 95 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN 007665, March 20, 1852, FN 232,undated + + + + + + 71 + 96 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: AR M203, R6, Sept. 25, 1851, Watrous to Ramsey, FN 233,undated + + + + + + 71 + 97 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: ABCFM, BA10, A512b, Feb. 3, 1852, FN 237,undated + + + + + + 71 + 98 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: ABCFM, BA10, A512b, March 22, 1852, FN 237,undated + + + + + + 71 + 99 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: ABCFM, BA10, A512b, May 7, 1852, FN 237-238,undated + + + + + + 71 + 100 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN 003467, June 16, 1852, FN 240,undated + + + + + + 71 + 101 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M21, R46, June 29, 1852, Lea to Watrous, FN 240,undated + + + + + + 71 + 102 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M842, R4: 754-755, July 25, 1852, FN 241,undated + + + + + + 71 + 103 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN007354, NAM M234, R149: 245, June 7, 1852, FN 242,undated + + + + + + 71 + 104 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: ABCFM, BA10, A512b, Aug. 9, 1852, FN 242,undated + + + + + + 71 + 105 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN 007042, Aug. 9, 1852, Ramsey to___, FN 242,undated + + + + + + 71 + 106 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: ABCFM, BA10, A512b, Oct. 7, 1852, FN 242,undated + + + + + + 71 + 107 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: ARCOIA, 1852: 327-336, Oct. 26, 1852, FN 242,undated + + + + + + 71 + 108 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN006880, Nov. 9, 1852, FN 242,undated + + + + + + 71 + 109 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M21, R46: 239, Jan. 6, 1853, Lea to Stuart, FN 242,undated + + + + + + 71 + 110 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M842, R8, Aug. 10, 1852, A. Ramsey to Buffalo and Oshaga, FN 243,undated + + + + + + 71 + 111 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: ARCOIA, 1852: 327-336, Oct. 26, 1852, FN 244,undated + + + + + + 71 + 112 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: ABCFM BA10, A512b, May 12, 1852, FN 245,undated + + + + + + 71 + 113 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R149, P.42, June 30, 1852, Petition, FN 245,undated + + + + + + 71 + 114 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: ABCFM BA10, A512b, July 14, 1852, FN 245,undated + + + + + + 71 + 115 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: ABCFM, BA10, A512b, Aug. 30, 1852, FN 245,undated + + + + + + 71 + 116 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN006888, ABCFM Ms 245, Nov. 20, 1852, FN 246,undated + + + + + + 71 + 117 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MCT DKT, 18c, s, t, Oct. 27, 1853, FN 248,undated + + + + + + 71 + 118 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN 006442, Dec. 14, 1853, FN 249,undated + + + + + + 71 + 119 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R150, M990, Feb. 6, 1854, Gorman to COIA, FN 2509,undated + + + + + + 71 + 120 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN001771, Nov. 25, 1854, FN 251,undated + + + + + + 71 + 121 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: Treaty LaPointe, Sept. 30, 1854, FN 252,undated + + + + + + 71 + 122 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R150: 222, Feb. 16, 1855, FN 253,undated + + + + + + 71 + 123 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN008243, June 4, 1855, MN008244, June 5, 1855, NAM M234, 4150: 242, FN 254,undated + + + + + + 71 + 124 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: Sauk Rapids Frontierman, April 8, 1858, FN 255,undated + + + + + + 71 + 125 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MHS M390, R1, 1849, FN 257,undated + + + + + + 71 + 126 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MHS M390, 43, 1855, FN 259,undated + + + + + + 71 + 127 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: Spates MHS P1595, Feb. 5, 1855, FN 260,undated + + + + + + 71 + 128 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: ARCOIA, Oct. 17, 1855, FN 265,undated + + + + + + 71 + 129 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R151, Nov. 10, 1855, FN 266,undated + + + + + + 71 + 130 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R152: 269, 1861, FN 267,undated + + + + + + 71 + 131 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN 006407, Sept. 15, 1845, FN 268,undated + + + + + + 71 + 132 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MNHS A-L958, Lumberman’s JL, June 12, 1855, FN 268,undated + + + + + + 71 + 133 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R152: 285, May 31, 1861, FN 268,undated + + + + + + 71 + 134 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN006621, May 2, 1846, FN 269,undated + + + + + + 71 + 135 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R151: 103, Aug. 30, 1856, FN 271,undated + + + + + + 71 + 136 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MCT DKT, 18C, S, T, Ex. 98, NAM M234, R389, Sept. 10, 1847, FN 273,undated + + + + + + 71 + 137 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R150: 98, July 6, 1854, FN 276,undated + + + + + + 71 + 138 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R150: 262, June, 1855, FN 277,undated + + + + + + 71 + 139 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MNSA Governor’s Archives Letters, Rec. March 9, 1855, Hamilton to Stewart, FN 278,undated + + + + + + 71 + 140 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R150: 242, June 4, 1855, FN 280,undated + + + + + + 71 + 141 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R150: 243, May 29, 1855, FN 281,undated + + + + + + 71 + 142 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: MN010140, NAM M234, R150: 268, June 20, 1855, FN 282,undated + + + + + + 71 + 143 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R150: 266, June 28, 1855, FN 284,undated + + + + + + 71 + 144 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R150: 201-203, July 2, 1855, FN 284,undated + + + + + + 71 + 145 + Box 17 Mille Lacs Chippewa, Cleland report, reference documents-B: NAM M234, R150: 194-195, July 13, 1855, FN 284,undated + + + + + + 72 + 1 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: Treaty Delawares, May 6, 1854, 292,undated + + + + + + 72 + 2 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: Treaty Shawnee, May 10, 1854, 292,undated + + + + + + 72 + 3 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: Treaty Choctaw/Chickasaw, June 22, 1855, 292,undated + + + + + + 72 + 4 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: MN007382, NAM M234, R150: 151, Dec. 17, 1854, 293,undated + + + + + + 72 + 5 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: ARCOIA, B, 1854, 295,undated + + + + + + 72 + 6 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: MCT, DKT, 18C, S, T, Ex.111, Aug. 11, 1854, 295,undated + + + + + + 72 + 7 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: Memorial No. 10, Legisl./WI Memorial + Resolutions, Feb. 27, 1854, 296,undated + + + + + + 72 + 8 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: Congressional Globe, (33 Cong., 2nd session), Dec. 17, 1854, 297,undated + + + + + + 72 + 9 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M21, R49: 457, MN002410, Aug. 12, 1854, 301,undated + + + + + + 72 + 10 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: MCTDEF, Ex 18, Aug. 14, 1854, 301,undated + + + + + + 72 + 11 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: Voight, NAM T494, R5: 133-135, Ex. AA, Oct. 17, 1854, 302,undated + + + + + + 72 + 12 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: MCTDEF, Ex. 446, Aug. 22, 1845, 305,undated + + + + + + 72 + 13 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: MN007470, Dec. 3, 1849, 305,undated + + + + + + 72 + 14 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM T494, R6: 541-53, March 11, 1863, 309,undated + + + + + + 72 + 15 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: MCT DKT, 18 C,S,T, Ex. 115, Dec. 8, 1854, 310,undated + + + + + + 72 + 16 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M234, R150: 219-221, Jan 4, 1855, 313,undated + + + + + + 72 + 17 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: Dailey Minnesotian, Feb. 3, 1855, 314,undated + + + + + + 72 + 18 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M234, R390, Oct. 2, 1848, 316,undated + + + + + + 72 + 19 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: M234, R154: 92, Aug. 21, 1864, 317,undated + + + + + + 72 + 20 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM T494, R5: 307, Feb. 22, 1855, 320,undated + + + + + + 72 + 21 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: Babcock Transcripts. Box 2, Oct. 28, 1854, 321,undated + + + + + + 72 + 22 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM T494, R5: 308-447, Feb. 12 (22), 1855, 333,undated + + + + + + 72 + 23 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M234, R428: 804-805, Jan. 10, 1854, Rice to McLeland, 326,undated + + + + + + 72 + 24 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M234, R151: 118, Feb. 7, 1856, 326,undated + + + + + + 72 + 25 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: MN00450, Feb. 2, 1849, 330,undated + + + + + + 72 + 26 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: Treaty Chippewa, 10 STAT: 1165, Feb. 22, 1855, 335,undated + + + + + + 72 + 27 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: MN001780, ARCOIA, Dec. 24, 1849, FN 336+337,undated + + + + + + 72 + 28 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: Message to the President (33-2), Feb. 23, 1855, 339,undated + + + + + + 72 + 29 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: MN002938, Message to the President, Feb. 27, 1855, 342,undated + + + + + + 72 + 30 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: T494, R6: 541-653, March 11, 1863, 347,undated + + + + + + 72 + 31 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M1166, R7: 42, Sept. 25, 1861, 348,undated + + + + + + 72 + 32 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: Treaty Chippewa-Sault, 1855, 349,undated + + + + + + 72 + 33 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: MN010149, April 25, 1856, 350,undated + + + + + + 72 + 34 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M1166, R5: 1162, Sept. 10, 1859, 350,undated + + + + + + 72 + 35 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: HW-MNHS, Box 3, March 31, 1862, 351,undated + + + + + + 72 + 36 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: HW-MNHS, Box 3, Sept. 1862, 351,undated + + + + + + 72 + 37 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: HW-MNHS, Box 3, Sept. 4, 1862, 356,undated + + + + + + 72 + 38 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: HW-MNHS, Box 3, Sept. 10, 1862, 356,undated + + + + + + 72 + 39 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M234, R152: 180, Sept. 26, 1860, 357,undated + + + + + + 72 + 40 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M234, R151: 7, Holem Day to G. Manypenny, April 26, 1856, 358,undated + + + + + + 72 + 41 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: SD 77 (37-2) 1124, March 31, 1862, 359,undated + + + + + + 72 + 42 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: HW-MNHS, Box 3, Feb. 16, 1863, 360,undated + + + + + + 72 + 43 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: HW-MNHS, Box 3, Feb. 28, 1863, 360,undated + + + + + + 72 + 44 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: Treaty of Washington, March 11, 1863, 361,undated + + + + + + 72 + 45 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: HW-MNHS, Box 3, March 18, 1863, 362,undated + + + + + + 72 + 46 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM, M234, R153: 408, March 14, 1863, 363,undated + + + + + + 72 + 47 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: HW-MNHS, Box 3, May 6, 1863, 364,undated + + + + + + 72 + 48 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM, M234, R155: 428, March 23, 1867, 365,undated + + + + + + 72 + 49 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: ARCOIA, Sept. 25, 1870, 365,undated + + + + + + 72 + 50 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: ARCOIA, 1870B, 365,undated + + + + + + 72 + 51 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M234, R157: 285-286, Jan. 24, 1870, 365,undated + + + + + + 72 + 52 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M234, R159: 147-150, May 13, 1872, 365,undated + + + + + + 72 + 53 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M234, R162: 321-39, Feb. 23, 1875, 365,undated + + + + + + 72 + 54 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: Minneapolis Tribune, July 30, 1882, 365,undated + + + + + + 72 + 55 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M234, R155: 658, Dec. 2, 1867, 366,undated + + + + + + 72 + 56 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: Special Case 109, May 12, 1870, 366,undated + + + + + + 72 + 57 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: Sauk Rapids Frontierman, Oct. 30, 1856, p. 2, 367,undated + + + + + + 72 + 58 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: MN010157, Sept. 4, 1857 (?), 367,undated + + + + + + 72 + 59 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M234, R155: 640, Dec. 14, 1867, 367,undated + + + + + + 72 + 60 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M234, R158: 10-12, Feb. 23, 1871, 367,undated + + + + + + 72 + 61 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: Special Case 109, July 17, 1871, 367,undated + + + + + + 72 + 62 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M234, R158: 438, Sept. 3, 1871, 367,undated + + + + + + 72 + 63 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M234, R163: 334, April 10, 1876, 367,undated + + + + + + 72 + 64 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M234, R167: 973-79, Aug. 21, 1879, 367,undated + + + + + + 72 + 65 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: LROIA 16695-1889, June 22, 1889, 367,undated + + + + + + 72 + 66 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: MN002213, Oct. 27, 1867, 368,undated + + + + + + 72 + 67 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M234, R157: 276-277, Dec. 27, 1869, 368,undated + + + + + + 72 + 68 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: Special Case 109, March 31, 1871, 368,undated + + + + + + 72 + 69 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: Treaty Chip. Et. Al. 13 STAT: 693, May 7, 1864, 369,undated + + + + + + 72 + 70 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M234, R155: 687, July 15, 1867, 371,undated + + + + + + 72 + 71 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: ARCOIA, 1869B, 373,undated + + + + + + 72 + 72 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: Special Case 109, Aug. 25, 1882, 373,undated + + + + + + 72 + 73 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: Special Case 109, June 27, 1883, 373,undated + + + + + + 72 + 74 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M234, R154: 55, Jan. 5, 1864, 374,undated + + + + + + 72 + 75 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: Minneapolis Tribune, Oct. 7, 1868, p.2, 374,undated + + + + + + 72 + 76 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: Special Case 109, June 30, 1870, 374,undated + + + + + + 72 + 77 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: HW-MNHS, Box 5, June 3, 1868, 376,undated + + + + + + 72 + 78 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M234, R158: 436-441, Sept. 2, 1871, 376,undated + + + + + + 72 + 79 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: Special Case 109, rec. May 25, 1880, 376,undated + + + + + + 72 + 80 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: LROIA, 961-1884, Jan. 11, 1884, 376,undated + + + + + + 72 + 81 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: HW-MNHS, Box 5, Jan. 6, 1868, 377,undated + + + + + + 72 + 82 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M234, R155: 741, Dec. 12, 1867, 378,undated + + + + + + 72 + 83 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M234, R163: 446-48, Jan. 19, 1876, 378,undated + + + + + + 72 + 84 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M234, R163: 446-448, 1877, 378,undated + + + + + + 72 + 85 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: ARCOIA, Nov. 8, 1871, 379,undated + + + + + + 72 + 86 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: NAM M234, R161: 23-24, Aug. 17, 1874, 379,undated + + + + + + 72 + 87 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: CCF-Con. Chip. 57082-1934: 059, Aug. 12, 1929, 380,undated + + + + + + 72 + 88 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: CCF-Con. Chip. 57082-1934: 059, Aug. 16, 1929, 380,undated + + + + + + 72 + 89 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: HR247 (54-1), 2747, 1889, 381,undated + + + + + + 72 + 90 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: ARCOIA, Aug. 14, 1890, 382,undated + + + + + + 72 + 91 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: ARCOIA-B, 1890, 382,undated + + + + + + 72 + 92 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: ARCOIA, 11006-1891, March 21, 1891, 382,undated + + + + + + 72 + 93 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: LROIA, 34472-1894, Sept. 6, 1894, 382,undated + + + + + + 72 + 94 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: LROIA, 4002 (51562), 1899, Jan. 26, 1897, 382,undated + + + + + + 72 + 95 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: LROIA, 26750-1897, July 6, 1897, 382,undated + + + + + + 72 + 96 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: MN004481, April 15, 1897, 382,undated + + + + + + 72 + 97 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: MN004522, LROIA 22633, June 12, 1894, 383,undated + + + + + + 72 + 98 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: MN004643, 1927, 384,undated + + + + + + 72 + 99 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: CCF-Con. Chip. 55850-1928: 115, Nov. 15, 1928, 385,undated + + + + + + 72 + 100 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: MN008116, rec. Jan. 26, 1938, 386,undated + + + + + + 72 + 101 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: MN003490, April 17, 1907, 388,undated + + + + + + 72 + 102 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: General Allotment Act, US Stats. 24: 388-91, Feb. 8, 1887, 389,undated + + + + + + 72 + 103 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: Indian Citizenship Act, US Stats, 43:253, June 2, 1924, 390,undated + + + + + + 72 + 104 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: MN001927, Feb. 22, 1916, 391,undated + + + + + + 72 + 105 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: MN004394, Dec. 10, 1925, 392,undated + + + + + + 72 + 106 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: MN004187, Dec. 16, 1925, 393,undated + + + + + + 72 + 107 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: MN008194, Dec. 21, 1925, 394,undated + + + + + + 72 + 108 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: LROIA, 34762-1904, May 23, 1904, 395,undated + + + + + + 72 + 109 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: CCF-Con. Chip. 60673-1928: 115, rec. Dec. 19, 1928, 395,undated + + + + + + 72 + 110 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: CCF-Cons. Chip. 68370-1937, 931, Nov. 2, 1937, 395,undated + + + + + + 72 + 111 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: MN004805, Oct. 15, 1930, 396,undated + + + + + + 72 + 112 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: MN004796, Feb. 4, 1931, 396,undated + + + + + + 72 + 113 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: CCF-Cons. Chip. 41544-1939, 931, June 24, July 8, 1939, 376,undated + + + + + + 72 + 114 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: CCF-Con. Chip. 17669-1938, 397,undated + + + + + + 72 + 115 + Box 18 Mille Lacs Chippewa, Cleland report, Reference documents-C: CCF-Con. Chip. 17669-1938, 397,undated + + + + + + 73 + 1 + Box 19 Mille Lacs Chippewa, State documents: (.5 cu. ft. Box): Small Pox Among the Chippewas, MN Democrat, April 26, 1854,undated + + + + + + 73 + 2 + Box 19 Mille Lacs Chippewa, State documents: (.5 cu. ft. Box): Lumbering near Mille Lacs, St. Anthony Express, Jan. 31, 1852,undated + + + + + + 73 + 3 + Box 19 Mille Lacs Chippewa, State documents: (.5 cu. ft. Box): Chippewa Treaty w/ Chippewas at Lake Superior, Weekly Minnesotian, Oct. 21, 1854,undated + + + + + + 73 + 4 + Box 19 Mille Lacs Chippewa, State documents: (.5 cu. ft. Box): Correspondence of Commissioner of Indian Affairs, 1890-1939,undated + + + + + + 73 + 5 + Box 19 Mille Lacs Chippewa, State documents: (.5 cu. ft. Box): Examinees of Chippewa Indian Lands, MN, File no. 75, 1896,undated + + + + + + 73 + 6 + Box 19 Mille Lacs Chippewa, State documents: (.5 cu. ft. Box): Supplemental Census Mille Lacs Chippewa Indians, 1897,undated + + + + + + 73 + 7 + Box 19 Mille Lacs Chippewa, State documents: (.5 cu. ft. Box): Mille Lacs Census, 1880,undated + + + + + + 73 + 8 + Box 19 Mille Lacs Chippewa, State documents: (.5 cu. ft. Box): Correspondence, Maps, Articles re: Mille Lacs 1850, 1987,undated + + + + + + 73 + 9 + Box 19 Mille Lacs Chippewa, State documents: (.5 cu. ft. Box): ABCFMP-MHS Ayer to Green, Oct. 8, 1838,undated + + + + + + 73 + 10 + Box 19 Mille Lacs Chippewa, State documents: (.5 cu. ft. Box): NAM M234 R:388:429 Sept. 1843 Chip Census,undated + + + + + + 73 + 11 + Box 19 Mille Lacs Chippewa, State documents: (.5 cu. ft. Box): STMN D-40007 Western Canadian JL of Anp. Vol. 6 no. 4 1976 Really is Annual Report of COIA, 1851-63, 68, 1873-75,undated + + + + + + 73 + 12 + Box 19 Mille Lacs Chippewa, State documents: (.5 cu. ft. Box): NAM M R.54:225 Brunson to Doty Jan. 10, 1843,undated + + + + + + 73 + 13 + Box 19 Mille Lacs Chippewa, State documents: (.5 cu. ft. Box): Correspondence, Reports re: MN Indians, 1864-1889,undated + + + + + + 73 + 14 + Box 19 Mille Lacs Chippewa, State documents: (.5 cu. ft. Box): ABCFMP-MHS Ayer and Cly to Green, Oct. 31, 1839,undated + + + + + + 74 + 1 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): ML- list of documents- Cleland Boundary Report,March 1, 2003 + + + + + + 74 + 2 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): Declaration of Charles E. Cleland re: Mille Lacs reservation boundaries and related materials,2003 + + + + + + 74 + 3 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): List of References cited in Lille Lacs Boundary Report,March 7, 2003 + + + + + + 74 + 4 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): Bermer, R. Indian Agent and Wilderness Scholar 213-214,1987 + + + + + + 74 + 5 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): Cleland, Charles 2000 Preliminary Report in Ethnohistorical Basis of hunting and fishing in the lakes, 17-26; 89,2000 + + + + + + 74 + 6 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): Cleland, Charles 1993 Economics and Adaptive Change among Lake Superior Chippewa,1993 + + + + + + 74 + 7 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): Cleland, Charles 1992 Rites of Conquest 39-72,1992 + + + + + + 74 + 8 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): Diedrich, Mark 1986 Chief Hole in the Day of the Miss Chip 34-36,1986 + + + + + + 74 + 9 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): Herman, Arthur 2001 How the Scots Invented the Modern World,2001 + + + + + + 74 + 10 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): Hickerson, Harold 1970 Chippewa and their Neighbors,undated + + + + + + 74 + 11 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): Kvasnickle, R H. Viola 1979 COIA 1824-1977, 57-67,undated + + + + + + 74 + 12 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): Morgan, Lewis H. 1851 League of the Iroquois,undated + + + + + + 74 + 13 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): Nichols, John D. 2000 Translation of Key Phrases in the Treaties,2000 + + + + + + 74 + 14 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): Prucha, F 1984 Great Father,1984 + + + + + + 74 + 15 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): Utley, Robert 1988 Indian- US Military Situation 1848-1891 Handbook of N American Indians,1988 + + + + + + 74 + 16 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): White, Richard 1991 Middle Ground,1991 + + + + + + 74 + 17 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): Treaty w/ the Chippewa, Sept. 30, 1854,1991 + + + + + + 74 + 18 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): NAMT 494 R5:321 Feb. 12-22, 1855,undated + + + + + + 74 + 19 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): Treaty w/ the Chippewa Feb. 22, 1855,undated + + + + + + 74 + 20 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): Treaty Ottawa Chippewa July 31, 1855,undated + + + + + + 74 + 21 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): ARCOIA 1855,undated + + + + + + 74 + 22 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): ARCOIA 1857,undated + + + + + + 74 + 23 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): Report Secretary of Interior 1860,undated + + + + + + 74 + 24 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): HW-MNHS Box 3 Mar, 31, 1862,undated + + + + + + 74 + 25 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): HW-MNHS Box 3 May 8, 1862,undated + + + + + + 74 + 26 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): HW-MNHS Box 3 Sept. 1862,undated + + + + + + 74 + 27 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): HW-MNHS Box 3 Sept. 4, 1862,undated + + + + + + 74 + 28 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): HW-MNHS Box 3 Sept. 10, 1862,undated + + + + + + 74 + 29 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): HW-MNHS Box 3 Feb. 16, 1863,undated + + + + + + 74 + 30 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): HW-MNHS Box 3 Feb. 28, 1863,undated + + + + + + 74 + 31 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): Treaty Chippewa Miss and Pillager Mar. 11, 1863,undated + + + + + + 74 + 32 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): NAM T494 R6: 541-653 Mar. 11, 1863 document relating,undated + + + + + + 74 + 33 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): NAM M234 R153: 408 Mar. 14, 1863,undated + + + + + + 74 + 34 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): NAM M234 R153: 220 Mar. 17, 1863,undated + + + + + + 74 + 35 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): Treaty Chippewa of MS Mar. 19, 1867,undated + + + + + + 74 + 36 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): NAM M234 R155: 687 July 25, 1867HW-MNHS Box 5 Sept. 23, 1867,undated + + + + + + 74 + 37 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): MN002213 Oct. 29, 1867,undated + + + + + + 74 + 38 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): NAM M234 R155: 658 Dec. 2, 1867,undated + + + + + + 74 + 39 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): HW-MNHS Box 5 1868,undated + + + + + + 74 + 40 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): Special Case 109 May 12, 1870,undated + + + + + + 74 + 41 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): Special Case 109 March 31, 1871,undated + + + + + + 74 + 42 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): NAM M234 R162: 60-70 Feb. 25, 1875,undated + + + + + + 74 + 43 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): NAM M234 R164: 494-497 Apr. 14, 1877 Apr. 1877 enclosure,undated + + + + + + 74 + 44 + Box 20A Mille Lacs Chippewa. Boundary case, calendar documents: (.5 cu. ft. Box): NAM M234 R166: 343-344 Mar. 19, 1878,undated + + + + + + 75 + 1 + Box 20B Mille Lacs Chippewa, Boundary Case, Calendar documents: (.5 cu. ft. Box): MNHS- FE96, C6R6, 1880,undated + + + + + + 75 + 2 + Box 20B Mille Lacs Chippewa, Boundary Case, Calendar documents: (.5 cu. ft. Box): Special Case 109 Mar. 22, 1880,undated + + + + + + 75 + 3 + Box 20B Mille Lacs Chippewa, Boundary Case, Calendar documents: (.5 cu. ft. Box): Special Case 109 Aug. 25, 1882,undated + + + + + + 75 + 4 + Box 20B Mille Lacs Chippewa, Boundary Case, Calendar documents: (.5 cu. ft. Box): Special Case 109 Nov. 10, 1882,undated + + + + + + 75 + 5 + Box 20B Mille Lacs Chippewa, Boundary Case, Calendar documents: (.5 cu. ft. Box): Special Case 109 Apr. 1883,undated + + + + + + 75 + 6 + Box 20B Mille Lacs Chippewa, Boundary Case, Calendar documents: (.5 cu. ft. Box): Special Case 109 June 27, 1883,undated + + + + + + 75 + 7 + Box 20B Mille Lacs Chippewa, Boundary Case, Calendar documents: (.5 cu. ft. Box): Minneapolis Tribune July 18, 1883,undated + + + + + + 75 + 8 + Box 20B Mille Lacs Chippewa, Boundary Case, Calendar documents: (.5 cu. ft. Box): LROIA 23316-1883 Dec. 22, 1883,undated + + + + + + 75 + 9 + Box 20B Mille Lacs Chippewa, Boundary Case, Calendar documents: (.5 cu. ft. Box): LROIA 961-1884 Jan. 11, 1884,undated + + + + + + 75 + 10 + Box 20B Mille Lacs Chippewa, Boundary Case, Calendar documents: (.5 cu. ft. Box): LROIA 2587-1884 Jan. 23, 1884,undated + + + + + + 75 + 11 + Box 20B Mille Lacs Chippewa, Boundary Case, Calendar documents: (.5 cu. ft. Box): LROIA 2564-1884 Feb. 2, 1884,undated + + + + + + 75 + 12 + Box 20B Mille Lacs Chippewa, Boundary Case, Calendar documents: (.5 cu. ft. Box): LROIA 4778-1886 Feb. 9, 1886,undated + + + + + + 75 + 13 + Box 20B Mille Lacs Chippewa, Boundary Case, Calendar documents: (.5 cu. ft. Box): House Docs 110 (50-1) 2558 Jan. 20, 1888,undated + + + + + + 75 + 14 + Box 20B Mille Lacs Chippewa, Boundary Case, Calendar documents: (.5 cu. ft. Box): LROIA 2733-1888 Jan. 30, 1888,undated + + + + + + 75 + 15 + Box 20B Mille Lacs Chippewa, Boundary Case, Calendar documents: (.5 cu. ft. Box): LROIA 635-1888 March 1, 1888,undated + + + + + + 75 + 16 + Box 20B Mille Lacs Chippewa, Boundary Case, Calendar documents: (.5 cu. ft. Box): Act of Relief of Chippewa Jan. 14, 1889 Nelson Act,undated + + + + + + 75 + 17 + Box 20B Mille Lacs Chippewa, Boundary Case, Calendar documents: (.5 cu. ft. Box): LROIA 16695-1889 June 22, 1889,undated + + + + + + 75 + 18 + Box 20B Mille Lacs Chippewa, Boundary Case, Calendar documents: (.5 cu. ft. Box): LROIA 29144-1889 Oct. 12, 1889,undated + + + + + + 75 + 19 + Box 20B Mille Lacs Chippewa, Boundary Case, Calendar documents: (.5 cu. ft. Box): LROIA 20033-1890 Feb. 5, 1890,undated + + + + + + 75 + 20 + Box 20B Mille Lacs Chippewa, Boundary Case, Calendar documents: (.5 cu. ft. Box): LROIA 7217-1890 March 5, 1890,undated + + + + + + 75 + 21 + Box 20B Mille Lacs Chippewa, Boundary Case, Calendar documents: (.5 cu. ft. Box): House Report 247 (54-1) 2747 Mar. 6, 1890,undated + + + + + + 75 + 22 + Box 20B Mille Lacs Chippewa, Boundary Case, Calendar documents: (.5 cu. ft. Box): LROIA 986-1890 Mar. 24, 1890,undated + + + + + + 75 + 23 + Box 20B Mille Lacs Chippewa, Boundary Case, Calendar documents: (.5 cu. ft. Box): ARCOIA 1890 XLII, XLIII,undated + + + + + + 75 + 24 + Box 20B Mille Lacs Chippewa, Boundary Case, Calendar documents: (.5 cu. ft. Box): 26 stat 290 July 22, 1890,undated + + + + + + 76 + 1 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M1 R.4:64 Feb. 24, 1819,undated + + + + + + 76 + 2 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M1 R.4: 42-43 March 26, 1819,undated + + + + + + 76 + 3 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M1 R.6:36-37 March 27, 1819,undated + + + + + + 76 + 4 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M1 R.4:112 Sept. 11, 1819,undated + + + + + + 76 + 5 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: WWP 9-19-1819,undated + + + + + + 76 + 6 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: WWP 12-24-1819,undated + + + + + + 76 + 7 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: T 484 R.1:439-449 Sept 30, 1819,undated + + + + + + 76 + 8 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: WWP 3-3-1820,undated + + + + + + 76 + 9 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: WWP Feb. 13, 1821,undated + + + + + + 76 + 10 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: RG 44, Box 14 F7 March 30, 1821,undated + + + + + + 76 + 11 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: RG 44, Box 14, F7 May 10, 1821,undated + + + + + + 76 + 12 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: WWP-BHC Sept 23, 1821,undated + + + + + + 76 + 13 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: WWP-BHC Dec 6, 1821,undated + + + + + + 76 + 14 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: 1819, Treaty Reservation- Sag. Chip. Field Notes-1822,undated + + + + + + 76 + 15 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: RG 56-26 B1, f.12. 2-19-1823,undated + + + + + + 76 + 16 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: DBP-BHC March 19, 1823,undated + + + + + + 76 + 17 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: RG 56-26 B1 f.8 5-15-1823,undated + + + + + + 76 + 18 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: RG 56-26 B1 f.7 8-28-23,undated + + + + + + 76 + 19 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: RG 56-26 B1 f.6 9-19-1823,undated + + + + + + 76 + 20 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: RG 56-26 B1 f.12 12-18-23,undated + + + + + + 76 + 21 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: RG 56-26 B1 f.14 2-25-1824,undated + + + + + + 76 + 22 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: DBP-BHC Aug. 2, 1824,undated + + + + + + 76 + 23 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: RG 56-26, B1 F16 Oct.2, 1826,undated + + + + + + 76 + 24 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: RG 56-26 B1 f.16 12-1-26,undated + + + + + + 76 + 25 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: RG 56-26 B1 f.8 1-23-1830,undated + + + + + + 76 + 26 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.404:368.380 March 6, 1854,undated + + + + + + 77 + 27 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: RG 56-26 B1 F.21 5-28-35,undated + + + + + + 76 + 28 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: RG 56-26 B1 f.21 6-1-35,undated + + + + + + 76 + 29 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: HCP-DPL Jan. 19, 1836,undated + + + + + + 76 + 30 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: AMFCO-CMU from micro. Mss F49, R.23 Feb. 23, 1836,undated + + + + + + 76 + 31 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.18:179 March 14, 1836,undated + + + + + + 76 + 32 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.18:394 May 10, 1836,undated + + + + + + 76 + 33 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.18:431 May 17, 1836,undated + + + + + + 76 + 34 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: T494 R?3? May 24, 1836,undated + + + + + + 76 + 35 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.19:492 Sept 30, 1836,undated + + + + + + 76 + 36 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM T 494 R.3:508-509 Jan. 2, 1837,undated + + + + + + 76 + 37 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.21:1 Jan. 28, 1837,undated + + + + + + 76 + 38 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.21:26 Feb. 2, 1837,undated + + + + + + 76 + 39 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.21 Feb. 3, 1837,undated + + + + + + 76 + 40 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.21:38-39 Feb 6, 1837,undated + + + + + + 76 + 41 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.21:140 March 10, 1837,undated + + + + + + 76 + 42 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.21: 186 March 20, 1837,undated + + + + + + 76 + 43 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.21:197-198 March 22, 1837,undated + + + + + + 76 + 44 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.21 April 3, 1837,undated + + + + + + 76 + 45 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.21:347 April 29, 1837,undated + + + + + + 76 + 46 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.21:350-351 April 29, 1837,undated + + + + + + 76 + 47 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.21:416-417 May 16, 1837,undated + + + + + + 76 + 48 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.21:424 May 19, 1837,undated + + + + + + 76 + 49 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.21:466 June 2, 1837,undated + + + + + + 76 + 50 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.22:1 June 21, 1837,undated + + + + + + 76 + 51 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.22:52 July 1, 1837,undated + + + + + + 76 + 52 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.22:70 July 5, 1837,undated + + + + + + 76 + 53 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406:250-252 [entire folder label is crossed out],undated + + + + + + 76 + 54 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R22:71 July 5, 1837,undated + + + + + + 76 + 55 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.22:170-71 July 28, 1837,undated + + + + + + 76 + 56 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.22:252-253, Aug. 24, 1837,undated + + + + + + 76 + 57 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.22:260-261 Aug. 25, 1837,undated + + + + + + 76 + 58 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.22:294- Sept 4, 1837,undated + + + + + + 76 + 59 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.22: 364-365 Oct 2, 1837,undated + + + + + + 76 + 60 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.22:461 Oct. 24, 1837,undated + + + + + + 76 + 61 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.22 Nov. 2, 1837,undated + + + + + + 76 + 62 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.22:510-511 Nov. 7, 1837,undated + + + + + + 76 + 63 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.22:560-561 Nov. 27, 1837,undated + + + + + + 76 + 64 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.22 Nov. 27, 1837,undated + + + + + + 76 + 65 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: Senate Doc. 25th Cong, 3d session. Jan. 29, 1839,undated + + + + + + 76 + 66 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.423:411-413 Aug. 12, 1839,undated + + + + + + 76 + 67 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: RG 75, B1A, Civilization Div. 1842,undated + + + + + + 76 + 68 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.52:211 Chas. Mix To G. Manypenny Aug. 4, 1845,undated + + + + + + 76 + 69 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: RG 75, B1A. Civ. Div. 1848,undated + + + + + + 76 + 70 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.404:249-250 Feb. 15, 1853,undated + + + + + + 76 + 71 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.404:274-75 May 18, 1853,undated + + + + + + 76 + 72 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.404:516-519 March 14, 1854,undated + + + + + + 76 + 73 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.404:497-498 April 12, 1854,undated + + + + + + 76 + 74 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: Kappler vol. 2:846 Dec. 20, 1854,undated + + + + + + 76 + 75 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: Lands Sold 5-14-1855- May 23, 1855 1855,undated + + + + + + 76 + 76 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.404:625-627 April 12, 1855,undated + + + + + + 76 + 77 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: Kappler vol. 2: 846 April 12, 1855,undated + + + + + + 76 + 78 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.404:840-841 April 26, 1855,undated + + + + + + 76 + 79 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.404:967-968 May 2, 1855,undated + + + + + + 76 + 80 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: Kappler vol. 2:287 May 14, 1855,undated + + + + + + 76 + 81 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.404:842-843 May 21, 1855,undated + + + + + + 76 + 82 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.404:844-851 May 21, 1855,undated + + + + + + 76 + 83 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.404:646-649 May 22, 1855,undated + + + + + + 76 + 84 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: H-211 June 6, 1855,undated + + + + + + 76 + 85 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.404:705-707 June 9, 1855,undated + + + + + + 76 + 86 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.404:708-710 June 13, 1855,undated + + + + + + 76 + 87 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.404:970-977 June 15, 1855,undated + + + + + + 76 + 88 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.404:711-712 June 19, 1855,undated + + + + + + 76 + 89 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R. 404:713-714 July 3, 1855,undated + + + + + + 76 + 90 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.404:892-893 July 5, 1855,undated + + + + + + 76 + 91 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.404:978-979 July 7, 1855,undated + + + + + + 76 + 92 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.404:992-995 July 9, 1855,undated + + + + + + 76 + 93 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.52 July 12, 1855,undated + + + + + + 76 + 94 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.404:574-576 July 14, 1855,undated + + + + + + 76 + 95 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.52 July 18, 1855,undated + + + + + + 76 + 96 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: Detroit Daily Free Press Supp. List July 26, 1855 ft.n [footnote] 58, 1855,undated + + + + + + 76 + 97 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: Detroit Daily Free Press Supp. List July 29, 1855,undated + + + + + + 76 + 98 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: Detroit Daily Free Press Supplementary List Aug. 2, 1855,undated + + + + + + 76 + 99 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.52 Aug. 4, 1855,undated + + + + + + 76 + 100 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: H211-3444 Aug. 7, 1855,undated + + + + + + 76 + 101 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.404:581 Louis Genreau To G. Manypenny Aug. 29, 1855,undated + + + + + + 76 + 102 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.52 Aug. 23, 1855,undated + + + + + + 76 + 103 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.52:341 Sept. 5, 1855,undated + + + + + + 76 + 104 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 .R404:915-917 Sept. 8, 1855,undated + + + + + + 76 + 105 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.404:918-919 Sept. 12, 1855,undated + + + + + + 76 + 106 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.404:815-821 Nov. 24, 1855,undated + + + + + + 76 + 107 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.404:829-832 Dec. 5, 1855,undated + + + + + + 76 + 108 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.404:833 Dec. 6, 1855,undated + + + + + + 76 + 109 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: H-211 Jan. 2, 1856,undated + + + + + + 76 + 110 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: H-211 Jan. 3, 1856,undated + + + + + + 76 + 111 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M606 R.2:261 Jan. 5, 1856,undated + + + + + + 76 + 112 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:60-63 Feb. 18, 1856,undated + + + + + + 76 + 113 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:69-71 Feb. 21, 1856,undated + + + + + + 76 + 114 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407:75-79 Feb. 25, 1856,undated + + + + + + 76 + 115 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:244-251 Feb. 25, 1856,undated + + + + + + 76 + 116 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:242-243 Mar. 1, 1856,undated + + + + + + 76 + 117 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.54:28 March 25, 1856,undated + + + + + + 76 + 118 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:295-297 Apr.2, 1856,undated + + + + + + 76 + 191 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:298-300 Apr. 5, 1856,undated + + + + + + 76 + 120 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.54:43 April 8, 1856,undated + + + + + + 76 + 121 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:307-308 Apr. 9, 1856,undated + + + + + + 76 + 122 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:360-361 Apr. 9, 1856,undated + + + + + + 76 + 123 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:2-3 Apr. 11, 1856,undated + + + + + + 76 + 124 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:237-238 Apr. 14, 1856,undated + + + + + + 76 + 125 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R. 405: 239-241 Apr. 14, 1856,undated + + + + + + 76 + 126 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:252-254 Apr. 24, 1856,undated + + + + + + 76 + 127 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R. 405:301-302 Apr. 24, 1856,undated + + + + + + 76 + 128 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.54:90 April 25, 1856,undated + + + + + + 76 + 129 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.54:90 April 29, 1856,undated + + + + + + 76 + 130 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: H-211 April 25, 1856,undated + + + + + + 76 + 131 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:94-95 May 8, 1856,undated + + + + + + 76 + 132 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:96-97 May 8, 1856,undated + + + + + + 76 + 133 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:362-363 May 9, 1856,undated + + + + + + 76 + 134 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:367-368 May 14, 1856,undated + + + + + + 76 + 135 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405: 303-304 May 15, 1856,undated + + + + + + 76 + 136 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:305-306 May 15, 1856,undated + + + + + + 76 + 137 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:36-37 May 19, 1856,undated + + + + + + 76 + 138 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:103-104 May 26, 1856,undated + + + + + + 76 + 139 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:416-418 May 28, 1856,undated + + + + + + 76 + 140 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: H-211 June 12, 1856,undated + + + + + + 76 + 141 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: H-211 June 17, 1856,undated + + + + + + 76 + 142 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:119-120 June 19, 1856,undated + + + + + + 76 + 143 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:137-139 June 24, 1856,undated + + + + + + 76 + 144 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:410-415 June 26, 1856,undated + + + + + + 76 + 145 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:385-387 July 7, 1856,undated + + + + + + 76 + 146 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:15-17 July 11, 1856,undated + + + + + + 76 + 147 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:590-593 July 14, 1856,undated + + + + + + 76 + 148 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:154-155 Aug. 14, 1856,undated + + + + + + 76 + 149 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:152-153 Aug. 16, 1856,undated + + + + + + 76 + 150 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:419-421 Aug. 21, 1856,undated + + + + + + 76 + 151 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405: 266-267 Sept. 24, 1856,undated + + + + + + 76 + 152 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:268-269 Oct. 3, 1856,undated + + + + + + 76 + 153 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:275-276 Oct. 15, 1856,undated + + + + + + 76 + 154 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.52 April 29, 1856,undated + + + + + + 76 + 155 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:279-280 Dec. 6, 1856,undated + + + + + + 76 + 156 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:585-588 Dec. 29, 1856,undated + + + + + + 76 + 157 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:570-572 Jan. 9 1857,undated + + + + + + 76 + 158 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:582-584 Jan. 29, 1857,undated + + + + + + 76 + 159 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:456-459 Feb. 3, 1857,undated + + + + + + 76 + 160 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:617-619 Feb. 24, 1857,undated + + + + + + 76 + 161 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:633-634 Apr. 4, 1857,undated + + + + + + 76 + 162 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:473-477 May 29, 1857,undated + + + + + + 76 + 163 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:734-736 June 10, 1857,undated + + + + + + 76 + 164 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:653-654 June 17, 1857,undated + + + + + + 76 + 165 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405: 490-491 July 7, 1857,undated + + + + + + 76 + 166 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:504-505 July 10, 1857,undated + + + + + + 76 + 167 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405: 521-523 July 24, 1857,undated + + + + + + 76 + 168 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405:533-536 Aug. 14, 1857,undated + + + + + + 76 + 169 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.57:461-462 Oct. 21, 1857,undated + + + + + + 76 + 170 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.405: 559-560 Nov. 2, 1857,undated + + + + + + 76 + 171 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 174-180 Apr. 31, 1858,undated + + + + + + 76 + 172 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 238-240 May 6, 1858,undated + + + + + + 76 + 173 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.404:229-230 May 10, 1858,undated + + + + + + 76 + 174 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406:241-246 May 11, 1858,undated + + + + + + 76 + 175 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 234-235 May 15, 1858,undated + + + + + + 76 + 176 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406:19-22 May 17, 1858,undated + + + + + + 76 + 177 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 23-25 May 19, 1858,undated + + + + + + 76 + 178 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: PHSC R.8 circa Nov. 29, 1858,undated + + + + + + 76 + 179 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406:26-31 Dec. 1, 1858,undated + + + + + + 76 + 180 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 321-323 Feb. 12, 1859,undated + + + + + + 76 + 181 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406:334-336 Apr. 9, 1859,undated + + + + + + 76 + 182 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: H 211 April 14, 1859,undated + + + + + + 76 + 183 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 552-553 June 3, 1859,undated + + + + + + 76 + 184 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 569-573 June 21, 1859,undated + + + + + + 76 + 185 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 463-466 June 21, 1859,undated + + + + + + 76 + 186 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 706-707 June 8, 1860,undated + + + + + + 76 + 187 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 301-303 June 27, 1859,undated + + + + + + 76 + 188 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 547-549 Aug. 30, 1859,undated + + + + + + 76 + 189 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 525-527 Sept. 2, 1859,undated + + + + + + 76 + 190 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 550-551 Sept. 28, 1859,undated + + + + + + 76 + 191 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: JHFP-BHL Oct. 16, 1859,undated + + + + + + 76 + 192 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 816-827 1860,undated + + + + + + 76 + 193 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: Report Sec. of Interior, 1860,undated + + + + + + 76 + 194 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 803-805 Feb. 17, 1860,undated + + + + + + 76 + 195 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 806-811 Mar. 12, 1860,undated + + + + + + 76 + 196 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: E Saginaw Courier, Vol. 1, no. 33, March 15, 1860,undated + + + + + + 76 + 197 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 601-604 Mar. 16, 1860,undated + + + + + + 76 + 198 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406:681-684 Mar. 29, 1860,undated + + + + + + 76 + 199 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406:686-688 Apr. 3, 1860,undated + + + + + + 76 + 200 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 606-609 Apr. 6, 1860,undated + + + + + + 76 + 201 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 689-690 Apr. 7, 1860,undated + + + + + + 76 + 202 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 828-832 Apr. 26, 1860,undated + + + + + + 76 + 203 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 711-712 May 10, 1860,undated + + + + + + 76 + 204 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 698-700 May 25, 1860,undated + + + + + + 76 + 205 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 708-709 June 8, 1860,undated + + + + + + 76 + 206 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 714-715 June 8, 1860,undated + + + + + + 76 + 207 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: E Saginaw Courier, Vol. 1, no. 50. July 12, 1860,undated + + + + + + 76 + 208 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R. 406: 906-907 Sept. 10, 1860,undated + + + + + + 76 + 209 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 755-757 Nov. 19, 1860,undated + + + + + + 76 + 210 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 760-762 Nov. 19, 1860,undated + + + + + + 76 + 211 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 758-759 Nov. 19, 1860,undated + + + + + + 76 + 212 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 946-948 Mar. 13, 1861,undated + + + + + + 76 + 213 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 930-932 Mar. 24, 1861,undated + + + + + + 76 + 214 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 1019-1023 Apr. 3, 1861,undated + + + + + + 76 + 215 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 1048-1049 June 18, 1861,undated + + + + + + 76 + 216 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R. 406: 976-978 June 26, 1861,undated + + + + + + 76 + 217 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 994-995 July 10, 1861,undated + + + + + + 76 + 218 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 1000-1001 July 21, 1861,undated + + + + + + 76 + 219 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 1011-1012 Oct. 23, 1861,undated + + + + + + 76 + 220 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 1013-1018 Oct. 31, 1861,undated + + + + + + 76 + 221 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 1034-1035 Dec. 26, 1861,undated + + + + + + 76 + 222 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.67 [?]: 515 March 24, 1862,undated + + + + + + 76 + 223 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 74-76 May 9, 1862,undated + + + + + + 76 + 224 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.406: 95-96 June 11, 1862,undated + + + + + + 76 + 225 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 97-101 June 16, 1862,undated + + + + + + 76 + 226 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.68:358 June 17, 1862,undated + + + + + + 76 + 227 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 143-144 July 15, 1862,undated + + + + + + 76 + 228 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 145-146 July 2, 1862,undated + + + + + + 76 + 229 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 134-136 Nov. 28, 1862,undated + + + + + + 76 + 230 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 140-142 Dec. 16, 1862,undated + + + + + + 76 + 231 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 233-234 Feb. 6, 1863,undated + + + + + + 76 + 232 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 197-199 May 27, 1863,undated + + + + + + 76 + 233 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 296-299 July 9, 1863,undated + + + + + + 76 + 234 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 317-319 July 24, 1863,undated + + + + + + 76 + 235 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 324-325 Sept. 15, 1863,undated + + + + + + 76 + 236 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 328-331 Dec. 3, 1863,undated + + + + + + 76 + 237 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.412: 341, Dec. 8, 1863,undated + + + + + + 76 + 238 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: H-211 1864,undated + + + + + + 76 + 239 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.409: 148-153 1864?,undated + + + + + + 76 + 240 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 677-707 1864,undated + + + + + + 76 + 241 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 383-385 Feb. 1, 1864,undated + + + + + + 76 + 242 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.470- Feb. 15, 1864,undated + + + + + + 76 + 243 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 467-469 Apr. 9, 1864,undated + + + + + + 76 + 244 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 554-556 Apr. 9, 1864,undated + + + + + + 76 + 245 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.75 Apr. 13, 1864,undated + + + + + + 76 + 246 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.74: 55 May 2, 1864,undated + + + + + + 76 + 247 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 487-488 May 10, 1864,undated + + + + + + 76 + 248 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 520-522 June 14, 1864,undated + + + + + + 76 + 249 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 524-526 July 9, 1864,undated + + + + + + 76 + 250 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M21 R.74: 181-182 Sept. 3, 1864,undated + + + + + + 76 + 251 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 538-540 Oct. 4, 1864,undated + + + + + + 76 + 252 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 346-349 Oct. 5, 1864,undated + + + + + + 76 + 253 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M668 R.13: 392-416 Oct. 18, 1864,undated + + + + + + 76 + 254 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM T 494 R.7: 50-77 Oct. 31, 1864,undated + + + + + + 76 + 255 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: H211-343 Oct.31, 1864 (RG 60, case file 90-2-20-45), 1864,undated + + + + + + 76 + 256 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 391-392 Nov. 20, 1864,undated + + + + + + 76 + 257 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 552-553 Nov. 23, 1864,undated + + + + + + 76 + 258 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 393-395 Nov. 26, 1864,undated + + + + + + 76 + 259 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 396-398 Nov. 30, 1864,undated + + + + + + 76 + 260 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 371-374 Dec. 1, 1864,undated + + + + + + 76 + 261 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 1006-1008 Dec. 2, 1864,undated + + + + + + 76 + 262 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 370 Dec. 6, 1864,undated + + + + + + 76 + 263 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 363-365 Dec. 13 1864,undated + + + + + + 76 + 264 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 368-388 Dec. 14, 1864,undated + + + + + + 76 + 265 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 367 Dec. 15, 1864,undated + + + + + + 76 + 266 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 361-362 Dec. 21, 1864,undated + + + + + + 76 + 267 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M234 R.407: 365 Dec. 21, 1864,undated + + + + + + 76 + 268 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: NAM M348 R.14 Dec. 21, 1864,undated + + + + + + 76 + 272 + Box 1 Saginaw Chippewa, Calendar documents, 1819-1864: RG 60 [RG 60 is crossed out on the original label], H-211, file 3436 Dec. 22, 1864,undated + + + + + + 77 + 1 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.407:741-743 Jan. 3, 1865,undated + + + + + + 77 + 2 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M606 R.5:92 Jan. 17, 1865,undated + + + + + + 77 + 3 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: H-211, file 3432 Jan. 17, 1865,undated + + + + + + 77 + 4 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.407: 712-713 Jan. 21, 1865,undated + + + + + + 77 + 5 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.407: 726-727 Feb. 21, 1865,undated + + + + + + 77 + 6 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.407: 583-585 Nov. 13, 1865,undated + + + + + + 77 + 7 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.407: 605-608 Dec. 1, 1865,undated + + + + + + 77 + 8 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.407: 610-612 Dec. 1, 1865,undated + + + + + + 77 + 9 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.407: 915-922 Mar. 26, 1866,undated + + + + + + 77 + 10 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: H-211, file 3431 May 30, 1866,undated + + + + + + 77 + 11 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM T494 R 7: 48-49 July 7, 1866,undated + + + + + + 77 + 12 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: H-211, file 3437 July 14, 1866,undated + + + + + + 77 + 13 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: M 606 R.6: 384 July 16, 1866,undated + + + + + + 77 + 14 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.407: 10023-10024 Aug. 14, 1866,undated + + + + + + 77 + 15 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.407: 852-865 Nov. 16, 1866,undated + + + + + + 77 + 16 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.407: 10026-10027 Dec. 7, 1866,undated + + + + + + 77 + 17 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.407: 10028-10030 Dec. 17, 1866,undated + + + + + + 77 + 18 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 202-204 Dec. 24, 1866,undated + + + + + + 77 + 19 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: 1867,undated + + + + + + 77 + 20 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 34-36 Jan. 2, 1867,undated + + + + + + 77 + 21 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 207-209 Aug. 2? [Aug. 2? is crossed out on original label] Jan. 9, 1867,undated + + + + + + 77 + 22 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 160-161 Jan. 17, 1867,undated + + + + + + 77 + 23 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 39-41 Jan. 20, 1867,undated + + + + + + 77 + 24 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 214-217 Jan. 31, 1867,undated + + + + + + 77 + 25 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 164-166 Feb. 5, 1867,undated + + + + + + 77 + 26 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 84-86 Feb. 14, 1867,undated + + + + + + 77 + 27 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234R.408: 167-168 Feb. 16, 1867,undated + + + + + + 77 + 28 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 42-43 Feb. 28, 1867,undated + + + + + + 77 + 29 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 162-163 May 31, 1867,undated + + + + + + 77 + 30 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 270-271 May 31, 1867,undated + + + + + + 77 + 31 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 274-275 June 12, 1867,undated + + + + + + 77 + 32 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 169-171 July 10, 1867,undated + + + + + + 77 + 33 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 288-289 July 29, 1867,undated + + + + + + 77 + 34 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 99-101 Aug. 21, 1867,undated + + + + + + 77 + 35 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 172-174 Aug. 30, 1867,undated + + + + + + 77 + 36 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 155-159 Dec. 14, 1867,undated + + + + + + 77 + 37 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 457-459 Apr. 20, 1868,undated + + + + + + 77 + 38 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.407: 460-461 May 13, 1868,undated + + + + + + 77 + 39 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 424-425 June 5, 1868,undated + + + + + + 77 + 40 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 426-429 June 5, 1868,undated + + + + + + 77 + 41 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 667-674 1869,undated + + + + + + 77 + 42 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 635 May 16, 1869,undated + + + + + + 77 + 43 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 636-638 May 24, 1869,undated + + + + + + 77 + 44 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 627-630 May 28, 1869,undated + + + + + + 77 + 45 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 675-686 June 4, 1869,undated + + + + + + 77 + 46 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 744-750 July 1, 1869,undated + + + + + + 77 + 47 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M21 R.91: 216-223 July 30, 1869,undated + + + + + + 77 + 48 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 763-764 July 31, 1869,undated + + + + + + 77 + 49 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 310-313 Aug. 13, 1869,undated + + + + + + 77 + 50 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M21 R.92: 114-115 Aug. 26, 1869,undated + + + + + + 77 + 51 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 1015-1022 Sept. 8, 1869,undated + + + + + + 77 + 52 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 858-862 Sept. 29, 1869,undated + + + + + + 77 + 53 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 729-730 Oct. 16, 1869,undated + + + + + + 77 + 54 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M21 R.92: 350-353 Oct. 21, 1869,undated + + + + + + 77 + 55 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 926-928 Oct. 21, 1869,undated + + + + + + 77 + 56 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 884-888 Nov. 4, 1869,undated + + + + + + 77 + 57 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 894-897 [894-897 is crossed out on the original label] 648-655 Nov. 4, 1869,undated + + + + + + 77 + 58 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 869-871 Nov. 12, 1869,undated + + + + + + 77 + 59 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.408: 877-893 Nov. 13, 1869,undated + + + + + + 77 + 60 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409 Dec. 18, 1869,undated + + + + + + 77 + 61 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.407: 398, Dec.14, 1864 [ NAM M234 R.407: 398, Dec.14, 1864 is crossed out on the original label] Letters Received Mack 1843-1870 Dec 31, 1869,undated + + + + + + 77 + 62 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: LadarooT et al. to J. Long,undated + + + + + + 77 + 63 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 148-153 1870 [?],undated + + + + + + 77 + 64 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234R.409: 397 1870,undated + + + + + + 77 + 65 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 181 1870,undated + + + + + + 77 + 66 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 2-4 Jan. 19, 1870,undated + + + + + + 77 + 67 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 116-119 Feb. 2, 1870,undated + + + + + + 77 + 68 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 121-133 Feb. 4, 1870,undated + + + + + + 77 + 69 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 134-147 Feb. 4, 1870,undated + + + + + + 77 + 70 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 423 Feb. 5, 1870,undated + + + + + + 77 + 71 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 428-429 Feb. 8, 1870,undated + + + + + + 77 + 72 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 430-433 Feb. 18, 1870,undated + + + + + + 77 + 73 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 158 19 Feb. 1870,undated + + + + + + 77 + 74 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 156-157 Feb. 22, 1870,undated + + + + + + 77 + 75 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: LR Mackinac Agency 1870-1877 Feb. 22, 1870,undated + + + + + + 77 + 76 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R. 409: 178-180 April 13, 1870,undated + + + + + + 77 + 77 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R. 409: 184-188 April 14, 1870,undated + + + + + + 77 + 78 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: LR Mackinac Agency 1870-1877 April 14, 1870,undated + + + + + + 77 + 79 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R. 409: 205-207 May 18, 1870,undated + + + + + + 77 + 80 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: M21 R. 96: 169-170 May 18, 1870,undated + + + + + + 77 + 81 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R. 409: 202-204 May 18, 1870,undated + + + + + + 77 + 82 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R. 409: 232-234 June 27, 1870,undated + + + + + + 77 + 83 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: LR Mackinac Agency 1870-7 July 12, 1870,undated + + + + + + 77 + 84 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 266 Aug. 7, 1870,undated + + + + + + 77 + 85 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 268-269 Aug. 11, 1870,undated + + + + + + 77 + 86 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 270-272 Aug. 11, 1870,undated + + + + + + 77 + 87 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: LR-Mackinac Agency Aug. 14, 1870,undated + + + + + + 77 + 88 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 275-276 Aug. 24, 1870,undated + + + + + + 77 + 89 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 421-427 Oct. 31, 1870,undated + + + + + + 77 + 90 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: Saginaw Weekly Enterprise, #781. Nov. 3, 1870,undated + + + + + + 77 + 91 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 303-309 Nov. 8, 1870,undated + + + + + + 77 + 92 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 324-325 Nov. 15, 1870,undated + + + + + + 77 + 93 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R409: 322-323 Nov. 15, 1870,undated + + + + + + 77 + 94 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 326-328 Nov. 15, 1870,undated + + + + + + 77 + 95 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 331-333 Dec. 1, 1870,undated + + + + + + 77 + 96 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: LR Mackinac Agency Dec. 1, 1870,undated + + + + + + 77 + 97 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 903-909 Dec. 19, 1870,undated + + + + + + 77 + 98 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: LR Mackinac Agency Dec. 20, 1870,undated + + + + + + 77 + 99 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: Saginaw Weekly Enterprise, #789, Dec. 29, 1870,undated + + + + + + 77 + 100 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: LR Mackinac Agency Dec. 29, 1870,undated + + + + + + 77 + 101 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 462-464 1871,undated + + + + + + 77 + 102 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: LR Mackinac Agency 1871,undated + + + + + + 77 + 103 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 850 1871,undated + + + + + + 77 + 104 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: LROIA Mack. Agy. 1870-77 Jan. 20, 1871,undated + + + + + + 77 + 105 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: LR Mackinac Agency Jan. 28, 1871,undated + + + + + + 77 + 106 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 619-623 Jan. 28, 1871,undated + + + + + + 77 + 107 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 617-618 Jan. 3, 1871,undated + + + + + + 77 + 108 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 721-724 Mar. 6, 1871,undated + + + + + + 77 + 109 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: H-21 March 29, 1871,undated + + + + + + 77 + 110 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: LR Mack Agency April 12, 1871,undated + + + + + + 77 + 111 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 460-461 May 8, 1871,undated + + + + + + 77 + 112 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 832-833 May 16, 1871,undated + + + + + + 77 + 113 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409 May 20, 1871,undated + + + + + + 77 + 114 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 578-581 May 25, 1871,undated + + + + + + 77 + 115 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 456-459 May 26, 1871,undated + + + + + + 77 + 116 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 954-956 May 27, 1871,undated + + + + + + 77 + 117 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: LR Mackinac Agency June 5, 1871,undated + + + + + + 77 + 118 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: LR Mackinac Agency June 13, 1871,undated + + + + + + 77 + 119 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 968-969 June 15, 1871,undated + + + + + + 77 + 120 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 583-584 July 5, 1871,undated + + + + + + 77 + 121 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: LR Mackinac Agency July 7, 1871,undated + + + + + + 77 + 122 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 586-588 July 10, 1871,undated + + + + + + 77 + 123 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: LR Mackinac Agency July 13, 1871,undated + + + + + + 77 + 124 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 585 July 13, 1871,undated + + + + + + 77 + 125 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 629-631 July 28, 1871,undated + + + + + + 77 + 126 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: LR Mackinac Agency Aug. 9, 1871,undated + + + + + + 77 + 127 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: LROIA Mack. Agency 1870-77 Aug. 10, 1871,undated + + + + + + 77 + 128 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: LROIA Mack. Agency 1870-77 Sept. 9, 1871,undated + + + + + + 77 + 129 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 634-636 Sept. 14, 1871,undated + + + + + + 77 + 130 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 896-898 Sept. 16, 1871,undated + + + + + + 77 + 131 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 637-638 Sept. 18, 1871,undated + + + + + + 77 + 132 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 639-641 Sept. 18, 1871,undated + + + + + + 77 + 133 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 642-644 Sept. 18, 1871,undated + + + + + + 77 + 134 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 632-633 Sept. 19, 1871,undated + + + + + + 77 + 135 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 645-648 Sept. 19, 1871,undated + + + + + + 77 + 136 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: H-211 Oct. 19, 1871,undated + + + + + + 77 + 137 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 471-473 Oct. 20, 1871,undated + + + + + + 77 + 138 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: Working Man’s Advocate Oct. 28, 1871,undated + + + + + + 77 + 139 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 589-590 Nov. 13, 1871,undated + + + + + + 77 + 140 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 474-476, Nov. 24, 1871,undated + + + + + + 77 + 141 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 481 Nov. 27, 1871,undated + + + + + + 77 + 142 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 477-478 Nov. 28, 1871,undated + + + + + + 77 + 143 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409 [506-510?] Dec. 7, 1871,undated + + + + + + 77 + 144 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 683-691 Dec. 8, 1871,undated + + + + + + 77 + 145 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 655-657 Dec. 13, 1871,undated + + + + + + 77 + 146 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.409: 523-533 Dec. 15, 1871,undated + + + + + + 77 + 147 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: H-211, 5435 1872,undated + + + + + + 77 + 148 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 671-676 1872,undated + + + + + + 77 + 149 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 742-781 1872,undated + + + + + + 77 + 150 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: Grand Traverse Herald, vol. 14, no. 3, Jan. 18, 1872,undated + + + + + + 77 + 151 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 32-33 Jan. 23, 1872,undated + + + + + + 77 + 152 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 34-36 Jan. 23, 1872,undated + + + + + + 77 + 153 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 529 Feb. 19, 1872,undated + + + + + + 77 + 154 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 118-119 Feb. 21, 1872,undated + + + + + + 77 + 155 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 172-175 Mar. 13, 1872,undated + + + + + + 77 + 156 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 231-214 Mar. 28, 1872,undated + + + + + + 77 + 157 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: Saginaw Daily Courier Vol. 2, no. 222, April 5, 1872,undated + + + + + + 77 + 158 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: H 211, 5403 Apr. 8, 1872,undated + + + + + + 77 + 159 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: H 211, 5403 April 18, 1872,undated + + + + + + 77 + 160 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: H-211, file 5403 April 23, 1872,undated + + + + + + 77 + 161 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 705-711 Apr. 27, 1872,undated + + + + + + 77 + 162 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: Saginaw Daily Courier, Vol. 3, #3 April 27, 1872,undated + + + + + + 77 + 163 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 640-641 May 7, 1872,undated + + + + + + 77 + 164 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 497 May 11, 1872,undated + + + + + + 77 + 165 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 505-508 May 18, 1872,undated + + + + + + 77 + 166 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: H-211, 5434 May 27, 1872,undated + + + + + + 77 + 167 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 677-681 June [?] 1872,undated + + + + + + 77 + 168 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: H-211, 5439 June 10, 1872,undated + + + + + + 77 + 169 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 655-659 June 11, 1872,undated + + + + + + 77 + 170 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410:6-15 June 18, 1872,undated + + + + + + 77 + 171 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 479-481 July 6, 1872,undated + + + + + + 77 + 172 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 306-310 July 23, 1872,undated + + + + + + 77 + 173 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 724-726 Aug. 5, 1872,undated + + + + + + 77 + 174 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: H-211, 5401 Aug. 10, 1872,undated + + + + + + 77 + 175 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 341-343 Aug. 15, 1872,undated + + + + + + 77 + 176 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 613-615 Aug. 22, 1872,undated + + + + + + 77 + 177 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: Lumberman’s Gazette, Vol. 1, no. 3 Sept. 1872,undated + + + + + + 77 + 178 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 21-23 Sept. 4, 1872,undated + + + + + + 77 + 179 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 509-520 Sept. 10, 1872,undated + + + + + + 77 + 180 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 362-363 Sept. 14, 1872,undated + + + + + + 77 + 181 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 405-409 Sept. 30, 1872,undated + + + + + + 77 + 182 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: Saginaw Daily Courier, Vol. 3, No. 146, Oct. 13, 1872,undated + + + + + + 77 + 183 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 436-439 Nov. 22, 1872,undated + + + + + + 77 + 184 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 521-522 Nov. 22, 1872,undated + + + + + + 77 + 185 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 442-446 Dec. 20, 1872,undated + + + + + + 77 + 186 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 819-823 Feb. 10, 1873,undated + + + + + + 77 + 187 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 984-986 Mar. 3, 1873,undated + + + + + + 77 + 188 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 864-869 Apr. 24, 1873,undated + + + + + + 77 + 189 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 877-879 May 12, 1873,undated + + + + + + 77 + 190 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: Lumberman’s Gazette, Vol. 3, # 1 July 1873,undated + + + + + + 77 + 191 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: H-211, 5390 July 10, 1873,undated + + + + + + 77 + 192 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.410: 914-919 Aug. 8, 1873,undated + + + + + + 77 + 193 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: H-211 Nov. 11, 1873,undated + + + + + + 77 + 194 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: LROIA 26252-1887 Dec. 4, 1873,undated + + + + + + 77 + 195 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.414: 29 1874,undated + + + + + + 77 + 196 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.411:121-125 1874,undated + + + + + + 77 + 197 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.414:12 Jan. 6, 1874,undated + + + + + + 77 + 198 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.414: 13-14 Jan. 9, 1874,undated + + + + + + 77 + 199 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: HR, 43d Congress, 1st Session, Report. 186 Feb. 25, 1874,undated + + + + + + 77 + 200 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.414:30-42 March 1874,undated + + + + + + 77 + 201 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.411: 30-32 Mar. 18, 1874,undated + + + + + + 77 + 202 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.414:43-44 March 19, 1874,undated + + + + + + 77 + 203 + Box 2 Saginaw Chippewa, Calendar documents, 1865-1874: NAM M234 R.411:43-44 Mar. 19, 1874,undated + + + + + + 78 + 1 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: March 26, 1874,undated + + + + + + 78 + 2 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: RG 44 Box 67 f23 July 1, 1874,undated + + + + + + 78 + 3 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:95-97 Sept. 17, 1874,undated + + + + + + 78 + 4 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:236 Sept. 17, 1874,undated + + + + + + 78 + 5 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:100-102 Sept. 18, 1874,undated + + + + + + 78 + 6 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:241-244 Oct. 15, 1874,undated + + + + + + 78 + 7 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: RG 44 Box 67 F23 Oct. 19, 1874,undated + + + + + + 78 + 8 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: Saginaw Daily Courier Nov. 1, 1874,undated + + + + + + 78 + 9 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:144-145 Nov. 3, 1874,undated + + + + + + 78 + 10 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LR Mackinac Agency Nov. 7, 1874,undated + + + + + + 78 + 11 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: RG 44 Box 67 f23 Nov. 9, 1874,undated + + + + + + 78 + 12 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: CCF Mt. Pleasant 66069-1919, 313 Nov. 10, 1874,undated + + + + + + 78 + 13 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:146-150 Nov. 18, 1874,undated + + + + + + 78 + 14 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: CCF Mt. Pleasant 66069-1919, 313 Dec. 1, 1874,undated + + + + + + 78 + 15 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:153-155 Dec. 2, 1874,undated + + + + + + 78 + 16 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:245-247 Dec. 3, 1874,undated + + + + + + 78 + 17 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: RG 44 Box 67 f23 Dec. 28, 1874,undated + + + + + + 78 + 18 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:289-292 Jan. 18, 1875,undated + + + + + + 78 + 19 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:316 Feb. 24, 1875,undated + + + + + + 78 + 20 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:312-315 Mar. 1, 1875,undated + + + + + + 78 + 21 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:327 March 19, 1875,undated + + + + + + 78 + 22 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411: 345-348 Apr. 20, 1875,undated + + + + + + 78 + 23 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:342-344 Apr. 26, 1875,undated + + + + + + 78 + 24 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411: 546-551 May 28, 1875,undated + + + + + + 78 + 25 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:420-425 July 3, 1875,undated + + + + + + 78 + 26 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:496-499 July 6, 1875,undated + + + + + + 78 + 27 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:426-427 July 13, 1875,undated + + + + + + 78 + 28 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:404-419 Aug. 2, 1875,undated + + + + + + 78 + 29 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:552-559 Aug. 2, 1875,undated + + + + + + 78 + 30 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:402-403 Aug. 3, 1875,undated + + + + + + 78 + 31 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:428-429 Aug. 15, 1875,undated + + + + + + 78 + 32 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:447-448 Aug. 26, 1875,undated + + + + + + 78 + 33 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:430-433 Sept. 6, 1875,undated + + + + + + 78 + 34 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: H-211 Sept. 22, 1875,undated + + + + + + 78 + 35 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: H-211 Oct. 4, 1875,undated + + + + + + 78 + 36 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:471-472 Nov. 27, 1875,undated + + + + + + 78 + 37 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:473-474 Dec. 2, 1875,undated + + + + + + 78 + 38 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: Bett’s List- BHL Dec. 16, 1875,undated + + + + + + 78 + 39 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:507-509 Dec. 17, 1875,undated + + + + + + 78 + 40 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:760-765 Jan. 18, 1876,undated + + + + + + 78 + 41 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:761-762 Jan. 25, 1876,undated + + + + + + 78 + 42 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:434 Feb. 11, 1876,undated + + + + + + 78 + 43 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:781 Feb. 21, 1876,undated + + + + + + 78 + 44 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: H-211, 2496 Feb. 22, 1876,undated + + + + + + 78 + 45 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:666-668 Feb. 23, 1876,undated + + + + + + 78 + 46 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: H-211, 2946 Feb. 24, 1876,undated + + + + + + 78 + 47 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:763-765 Feb. 25, 1876,undated + + + + + + 78 + 48 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: H-211, 4875 Feb. 26, 1876,undated + + + + + + 78 + 49 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: H-211, 4878 Feb. 28, 1876,undated + + + + + + 78 + 50 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: H211- 5411 M234 R.411:782-785 Mar. 8, 1876,undated + + + + + + 78 + 51 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:788-789 March 25, 1876,undated + + + + + + 78 + 52 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:786-787 April 4, 1876,undated + + + + + + 78 + 53 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:790-791 April 27, 1876,undated + + + + + + 78 + 54 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:795-799 May 8, 1876,undated + + + + + + 78 + 55 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:814-816 May 17, 1876,undated + + + + + + 78 + 56 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:821-827, May 20, 1876,undated + + + + + + 78 + 57 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:817-820, May 22, 1876,undated + + + + + + 78 + 58 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:843-845 May 25, 1876,undated + + + + + + 78 + 59 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:838-842 May 29, 1876,undated + + + + + + 78 + 60 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:846-847 June 9, 1876,undated + + + + + + 78 + 61 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:848-849 June 9, 1876,undated + + + + + + 78 + 62 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:850-852 June 19, 1876,undated + + + + + + 78 + 63 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:857-859 June 24, 1876,undated + + + + + + 78 + 64 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:876-880 June 30, 1876,undated + + + + + + 78 + 65 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:1007-1008 July 27, 1876,undated + + + + + + 78 + 66 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: H-211, 5413 Aug. 22, 1876,undated + + + + + + 78 + 67 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:771-774 Aug. 30, 1876,undated + + + + + + 78 + 68 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:776-777 Oct. 9, 1876,undated + + + + + + 78 + 69 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:939-941 Oct. 30, 1876,undated + + + + + + 78 + 70 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:954-956 Dec. 2, 1876,undated + + + + + + 78 + 71 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:959-960 Dec. 4, 1876,undated + + + + + + 78 + 72 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: H-211, 5417 Dec. 15, 1876,undated + + + + + + 78 + 73 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.412:155-156 Jan. 20, 1877,undated + + + + + + 78 + 74 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.412:152-154 Jan. 22, 1877,undated + + + + + + 78 + 75 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.412:180-181 Feb. 12, 1877,undated + + + + + + 78 + 76 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.412: 204-206 Mar. 19, 1877,undated + + + + + + 78 + 77 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: H211- 5427 Mar. 28, 1877,undated + + + + + + 78 + 78 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.412:280-286 Mar. 28, 1877,undated + + + + + + 78 + 79 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.412:287-291 Mar. 31, 1877,undated + + + + + + 78 + 80 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM 234 R.413:65-103 12.27.77,undated + + + + + + 78 + 81 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: H-211, 5421 1878,undated + + + + + + 78 + 82 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: Financial Records Mackinac Agency Entry # 1134 1878,undated + + + + + + 78 + 83 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.413:53-64 1.4.78,undated + + + + + + 78 + 84 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.413:104-136 1.12.78,undated + + + + + + 78 + 85 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.413:304-309 Jan. 15, 1878,undated + + + + + + 78 + 86 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:9-47 Jan. 18, 1878,undated + + + + + + 78 + 87 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:9-48 Jan. 18, 1878,undated + + + + + + 78 + 88 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:178-179 Jan. 22, 1878,undated + + + + + + 78 + 89 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:176-177 Feb. 1, 1878,undated + + + + + + 78 + 90 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: H-211 5420 Feb. 18, 1878,undated + + + + + + 78 + 91 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:176-180 Feb. 18, 1878,undated + + + + + + 78 + 92 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LROIA Mac. Agy. 1870-77 Mar. 2, 1878,undated + + + + + + 78 + 93 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LR- Mackinac Agency March 25, 1878,undated + + + + + + 78 + 94 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:174-175 March 28, 1878,undated + + + + + + 78 + 95 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R414:172-173 Apr. 1, 1878,undated + + + + + + 78 + 96 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:49-50 April 19, 1878,undated + + + + + + 78 + 97 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LR Mackinac Agency May 20, 1878,undated + + + + + + 78 + 98 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LR Mackinac Agency May 23, 1878,undated + + + + + + 78 + 99 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LROIA Mac. Agy. 1870-77 June 4, 1878,undated + + + + + + 78 + 100 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.413:245-251 June 12, 1878,undated + + + + + + 78 + 101 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.413:730-732 June 22, 1878,undated + + + + + + 78 + 102 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LR Mackinac Agency July 1, 1878,undated + + + + + + 78 + 103 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LR Mackinac Agency July 3, 1878,undated + + + + + + 78 + 104 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: Financial Records Mackinac Agency Entry #1134 July 4, 1878,undated + + + + + + 78 + 105 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.413:252-254 July 10, 1878,undated + + + + + + 78 + 106 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LR Mackinac Agency July 24, 1878,undated + + + + + + 78 + 107 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.413:2-4 July 25, 1878,undated + + + + + + 78 + 108 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LR Mackinac Agency July 29, 1878,undated + + + + + + 78 + 109 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.413:265-276 Aug. 1, 1878,undated + + + + + + 78 + 110 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LR Mackinac Agency Aug. 2, 1878,undated + + + + + + 78 + 111 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LR Mackinac Agency Aug. 3, 1878,undated + + + + + + 78 + 112 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.413:540-545 Aug. 6, 1878,undated + + + + + + 78 + 113 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LR Mackinac Agency Aug. 6, 1878,undated + + + + + + 78 + 114 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:85-87 Aug. 9, 1878,undated + + + + + + 78 + 115 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:83-84 Aug. 20, 1878,undated + + + + + + 78 + 116 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:597-599 Aug. 27, 1879,undated + + + + + + 78 + 117 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LR Mackinac Agency Aug. 30, 1878,undated + + + + + + 78 + 118 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LROIA Mac. Agy. 1870-77 Aug. 31, 1878,undated + + + + + + 78 + 119 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.413:279-281 Sept. 4, 1878,undated + + + + + + 78 + 120 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LR Mackinac Agency Sept. 6, 1878,undated + + + + + + 78 + 121 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:600-601 Sept. 8, 1879,undated + + + + + + 78 + 122 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:28-31 Oct. [?], 1879,undated + + + + + + 78 + 123 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:607-608 Oct. 2, 1879,undated + + + + + + 78 + 124 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.413:664-666 Oct. 8, 1878,undated + + + + + + 78 + 125 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.413:178-179 Oct. 18, 1878,undated + + + + + + 78 + 126 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:34-44 Oct. 25, 1879,undated + + + + + + 78 + 127 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.413:182-183 Oct. 30, 1878,undated + + + + + + 78 + 128 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:77-78 Nov. 3, 1878,undated + + + + + + 78 + 129 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LR Mackinac Agency Nov. 5, 1878,undated + + + + + + 78 + 130 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.88-100 Nov. 7, 1878,undated + + + + + + 78 + 131 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LR Mackinac Agency Nov. 18, 1878,undated + + + + + + 78 + 132 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.411:7-8 Nov. 22, 1878,undated + + + + + + 78 + 133 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:68 Nov. 27, 1878,undated + + + + + + 78 + 134 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.413:671-673 Dec. 6, 1878,undated + + + + + + 78 + 135 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.413:659-663 Dec. 6, 1878,undated + + + + + + 78 + 136 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.413:691-693 Dec. 16, 1878,undated + + + + + + 78 + 137 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:144-147 Jan. 2, 1879,undated + + + + + + 78 + 138 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:167-168 Jan. 14, 1879,undated + + + + + + 78 + 139 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:170-171 Jan. 18, 1879,undated + + + + + + 78 + 140 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:183-184 Feb. 1, 1879,undated + + + + + + 78 + 141 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:104-106 Feb. 8, 1879,undated + + + + + + 78 + 142 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:185-187 Feb. 11, 1879,undated + + + + + + 78 + 143 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:101-103 Feb. 11, 1879,undated + + + + + + 78 + 144 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:192-194 Feb. 27, 1879,undated + + + + + + 78 + 145 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LR Mackinac Agency March 3, 1879,undated + + + + + + 78 + 146 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:195-196 March 11, 1879,undated + + + + + + 78 + 147 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: Lumberman’s Gazette, Vol. 14, #2, March 12, 1879,undated + + + + + + 78 + 148 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:197-198 March 26, 1879,undated + + + + + + 78 + 149 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:147-148 April 23, 1879,undated + + + + + + 78 + 150 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: Lumberman’s Gazette, Vol. 14, No. 23. June 4, 1879,undated + + + + + + 78 + 151 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:161-162 June 7, 1879,undated + + + + + + 78 + 152 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:205-206 June 14, 1879,undated + + + + + + 78 + 153 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.413:199-204 Aug. 9, 1878,undated + + + + + + 78 + 154 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:128-29 Oct. 17, 1879,undated + + + + + + 78 + 155 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:579-581 Oct. 24, 1879,undated + + + + + + 78 + 156 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:34-44 Oct. 25, 1879,undated + + + + + + 78 + 157 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:504-506 Oct. 29, 1879,undated + + + + + + 78 + 158 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:130-131 Nov. 3, 1879,undated + + + + + + 78 + 159 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:611-614 Nov. 4, 1879,undated + + + + + + 78 + 160 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:126-127 Nov. 5, 1879,undated + + + + + + 78 + 161 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:124-25 Nov. 6, 1879,undated + + + + + + 78 + 162 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:575-576 Dec. 25, 1879,undated + + + + + + 78 + 163 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LR Mackinac Agency Feb. 12, 1880,undated + + + + + + 78 + 164 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.415:175-179 Mar. 18, 1880,undated + + + + + + 78 + 165 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: H-211 May 8, 1880,undated + + + + + + 78 + 166 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.415:292-293 May 13, 1880,undated + + + + + + 78 + 167 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LR Mackinac Agency June 4, 1880,undated + + + + + + 78 + 168 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.414:639-640 June 19, 1880,undated + + + + + + 78 + 169 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: Court of Claims [Court of Claims is crossed out on the origingal label] H-211 (Jan. 8, 1943) 7.31.1880,undated + + + + + + 78 + 170 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: NAM M234 R.415:368-370 Aug. 6, 1880,undated + + + + + + 78 + 171 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LROIA 377-1881 Jan. 6, 1881,undated + + + + + + 78 + 172 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: RG 44 B139 F25 Jan. 19, 1881,undated + + + + + + 78 + 173 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LR Mackinac Agency Feb. 2, 1881,undated + + + + + + 78 + 174 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LROIA 7600-1881 enclosure 2 Mar. 11, 1881,undated + + + + + + 78 + 175 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LROIA 4760-1881 Mar. 14, 1881,undated + + + + + + 78 + 176 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LROIA 5804-1881 Apr. 1, 1881,undated + + + + + + 78 + 177 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LROIA 7600-1881 enclosure 1 April 6, 1881,undated + + + + + + 78 + 178 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LROIA 6111-1881 Apr. 11, 1881,undated + + + + + + 78 + 179 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LROIA 6460-1881 Apr. 18, 1881,undated + + + + + + 78 + 180 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LROIA 7600-1881 enclosure 4 April 20, 1881,undated + + + + + + 78 + 181 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LR Mackinac Agency April 21, 1881,undated + + + + + + 78 + 182 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LROIA 6901-1881 Apr. 25, 1881,undated + + + + + + 78 + 183 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LROIA 7600-1881 enclosure 3 April 26, 1881,undated + + + + + + 78 + 184 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LROIA 7946-1881 May 1, 1881,undated + + + + + + 78 + 185 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: H-211 May 7, 1881,undated + + + + + + 78 + 186 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: H-211, 4882 May 10, 1881,undated + + + + + + 78 + 187 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LROIA 8300-1881 May 14, 1881,undated + + + + + + 78 + 188 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LROIA 8952-1881 May 24, 1881,undated + + + + + + 78 + 189 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LROIA 12613-1881 July 1, 1881,undated + + + + + + 78 + 190 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LROIA 14311-1881 enclo. 1 Aug. 9, 1881,undated + + + + + + 78 + 191 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LROIA 14311-1881 enclo. 2 Aug. 9, 1881,undated + + + + + + 78 + 192 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LROIA 14311-1881 Aug. 11, 1881,undated + + + + + + 78 + 193 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LROIA 15099-1881 enclo. 1 Aug. 16, 1881,undated + + + + + + 78 + 194 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LLROIA 15099-1881 enclo. 2 Aug. 18, 1881,undated + + + + + + 78 + 195 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LROIA 15099-1881 Aug. 25, 1881,undated + + + + + + 78 + 196 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LR Mackinac Agency Oct. 18, 1881,undated + + + + + + 78 + 197 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LR Mackinac Agency Oct. 28, 1881,undated + + + + + + 78 + 198 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: H-211 Nov. 2, 1881,undated + + + + + + 78 + 199 + Box 3 Saginaw Chippewa, Calendar documents, 1875-1881: LROIA 2240-1882 1882,undated + + + + + + 79 + 1 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 1511-1882 Jan. 6, 1882,undated + + + + + + 79 + 2 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 1511-1882 enclosure 1 Jan. 20, 1882,undated + + + + + + 79 + 3 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 2702-1882 enclo 1 Feb. 2, 1882,undated + + + + + + 79 + 4 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 2702-1882 Feb. 7, 1882,undated + + + + + + 79 + 5 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LR-OIA 1603-1882 Feb. 9, 1882,undated + + + + + + 79 + 6 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LR Mackinac Agency Feb. 9, 1882,undated + + + + + + 79 + 7 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 5409-1882 Mar. 16, 1882,undated + + + + + + 79 + 8 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LR Mackinac Agency April 6, 1882,undated + + + + + + 79 + 9 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LR Mackinac Agency April 14, 1882,undated + + + + + + 79 + 10 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LR Mackinac Agency April 18, 1882,undated + + + + + + 79 + 11 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 8028-1882 Apr. 29, 1882,undated + + + + + + 79 + 12 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 9249-1882 enclosure 2 May 6, 1882,undated + + + + + + 79 + 13 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 9249-1882 enclosure 3 May 6, 1882,undated + + + + + + 79 + 14 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 9249-1882 enclosure 4 May 6, 1882,undated + + + + + + 79 + 15 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 9249-1882 enclosure 6 May 6, 1882,undated + + + + + 79 + 16 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 9249-1882 enclosure 1 May 8, 1882,undated + + + + + 79 + 17 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 9249-1882 enclosure 5 May 10, 1882,undated + + + + + + + 79 + 18 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 9249-1882 May 16, 1882,undated + + + + + + 79 + 19 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA-1882-9249 enclosure [?] May 18, 1882,undated + + + + + + 79 + 20 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 13978-1882 July 28, 1882 (Folder 1 of 2),undated + + + + + + 79 + 21 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 13978-1882 July 28, 1882 (Folder 2 of 2),undated + + + + + + 79 + 22 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 11978-1883 enclosure 1 1883,undated + + + + + + 79 + 23 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 2240-1883 Jan. 30, 1883,undated + + + + + + 79 + 24 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 4841-1883 March 9, 1883,undated + + + + + + 79 + 25 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 6058-1883 March 31, 1883,undated + + + + + + 79 + 26 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 6291-1883 April 2, 1883,undated + + + + + + 79 + 27 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 6454-1883 April 5, 1883,undated + + + + + + 79 + 28 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 11978-1883 enclosure 2 June 9, 1883,undated + + + + + + 79 + 29 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 11271-1883 June 20, 1883,undated + + + + + + 79 + 30 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 12125-1883 June 29, 1883,undated + + + + + + 79 + 31 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 11978-1883 July 3, 1883,undated + + + + + + 79 + 32 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 12930-83 July 14th, 1883,undated + + + + + + 79 + 33 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 18344-1883 Sept. 24, 1883,undated + + + + + + 79 + 34 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 18485-1883 Oct. 4, 1883,undated + + + + + + 79 + 35 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 19046-1883 Oct. 13, 1883,undated + + + + + + 79 + 36 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 19137-1883 Oct. 15, 1883,undated + + + + + + 79 + 37 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 19327-1883 Oct. 19, 1883,undated + + + + + + 79 + 38 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 19462-1883 Oct. 20, 1883,undated + + + + + + 79 + 39 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 19751-1883 Oct. 26, 1883,undated + + + + + + 79 + 40 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 19752-1883 Oct. 26, 1883,undated + + + + + + 79 + 41 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 20071-1883 Nov. 2, 1883,undated + + + + + + 79 + 42 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 20072-1883 Nov. 2, 1883,undated + + + + + + 79 + 43 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: H-211 Nov. 10, 1883,undated + + + + + + 79 + 44 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 20895-1883 Nov. 12, 1883,undated + + + + + + 79 + 45 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 21117-1883 Nov. 15, 1883,undated + + + + + + 79 + 46 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 3403-1884 Feb. 16, 1884,undated + + + + + + 79 + 47 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 9324-1884 May 10, 1884,undated + + + + + + 79 + 48 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 9326-1884 May 12, 1884,undated + + + + + + 79 + 50 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 16453-1884 Aug. 26, 1884,undated + + + + + + 79 + 51 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 28618-1885 1885,undated + + + + + + 79 + 52 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 1885,undated + + + + + + 79 + 53 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: H-211 1885,undated + + + + + + 79 + 54 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 enclo. 23 Feb. 9, 1885,undated + + + + + + 79 + 55 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 enclo. 24 Feb. 9, 1885,undated + + + + + + 79 + 56 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 enclo. 25 Feb. 9, 1885,undated + + + + + + 79 + 57 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 enclo. 26 Feb. 9, 1885,undated + + + + + + 79 + 58 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 enclo. 27 Feb. 9, 1885,undated + + + + + + 79 + 59 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 enclo. 28 Feb. 9, 1885,undated + + + + + + 79 + 60 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 enclo. 29 Feb. 9, 1885,undated + + + + + + 79 + 61 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 enclo. 30 Feb. 9, 1885,undated + + + + + + 79 + 62 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 enclo. 31 Feb. 9, 1885,undated + + + + + + 79 + 63 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 enclo. 32 Feb. 9, 1885,undated + + + + + + 79 + 64 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 enclo. 33 Feb. 9, 1885,undated + + + + + + 79 + 65 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 5042-1885 March 9, 1885,undated + + + + + + 79 + 66 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 7319-1885 April 6, 1885,undated + + + + + + 79 + 67 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10228-1885 April 30, 1885,undated + + + + + + 79 + 68 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 11674-1885 May 22, 1885,undated + + + + + + 79 + 69 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 16579-1885 June 25, 1885,undated + + + + + + 79 + 70 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 16407-1885 July 18, 1885,undated + + + + + + 79 + 71 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 4172-1885 July 25, 1885,undated + + + + + + 79 + 72 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 21086-1885 Sept. 5, 1885,undated + + + + + + 79 + 73 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 22040-1885 Sept. 18, 1885,undated + + + + + + 79 + 74 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: H-211 Sept. 25, 1885,undated + + + + + + 79 + 75 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 22686-1885 Sept. 25, 1885,undated + + + + + + 79 + 76 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 22911-1885 Sept. 26, 1885,undated + + + + + + 79 + 77 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 24366-1885 Oct. 13, 1885,undated + + + + + + 79 + 78 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: H-211 Oct. 27, 1885,undated + + + + + + 79 + 79 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 25462-1885 Oct. 27, 1885,undated + + + + + + 79 + 80 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 25918-1885 Nov. 2, 1885,undated + + + + + + 79 + 81 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 26581-1885 Nov. 9, 1885,undated + + + + + + 79 + 82 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 27034-1885 Nov. 13, 1885,undated + + + + + + 79 + 83 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 30783-1885 Dec. 22, 1885,undated + + + + + + 79 + 84 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: ROIA 279-1886 Dec. 26, 1885,undated + + + + + + 79 + 85 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 834-1886 Jan. 6, 1886,undated + + + + + + 79 + 86 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 7212-1886 March 9, 1886,undated + + + + + + 79 + 87 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 9897-1886 April 7, 1886,undated + + + + + + 79 + 88 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 11664-1886 April 30, 1886,undated + + + + + + 79 + 89 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 12984-1886 May 13, 1886,undated + + + + + + 79 + 90 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 enclosure 2 May 15, 1886,undated + + + + + + 79 + 91 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 13220-1886 May 15, 1886,undated + + + + + + 79 + 92 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 14216-1886 May 26, 1886,undated + + + + + + 79 + 93 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 15306-1886 June 9, 1886,undated + + + + + + 79 + 94 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 15481-1886 June 10, 1886,undated + + + + + + 79 + 95 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 17295-1886 June 10, 1886,undated + + + + + + 79 + 96 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 15646-1886 June 11, 1886,undated + + + + + + 79 + 97 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: H-211 June 30, 1886,undated + + + + + + 79 + 98 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 17295-1886 July 2, 1886,undated + + + + + + 79 + 99 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LR-OIA 27544-1887 enclosure 1 July 10, 1886,undated + + + + + + 79 + 100 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 18819-1886 July 14, 1886,undated + + + + + + 79 + 101 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 18820-1886 July 14, 1886,undated + + + + + + 79 + 102 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: Clare Democrat and Press, no. 12 July 23, 1886,undated + + + + + + 79 + 103 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 22005-1886 Aug. 14, 1886,undated + + + + + + 79 + 104 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 24386-1886 Sept. 7, 1886,undated + + + + + + 79 + 105 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 25212-1886 Sept. 21, 1886,undated + + + + + + 79 + 106 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 25032-1887 1887,undated + + + + + + 79 + 107 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10347-1887 1887,undated + + + + + + 79 + 108 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 53452-1887 1887,undated + + + + + + 79 + 109 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 3654-1887 Jan. 30, 1887,undated + + + + + + 79 + 110 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 3408-1887 Feb. 3, 1887,undated + + + + + + 79 + 111 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 4209-1887 Feb. 6 [?] 1887,undated + + + + + + 79 + 112 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 5614-1887 Feb. 24, 1887,undated + + + + + + 79 + 113 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 6164-1887 March 5, 1887,undated + + + + + + 79 + 114 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 7007-1887 March 14, 1887,undated + + + + + + 79 + 115 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 7229-1887 March 17, 1887,undated + + + + + + 79 + 116 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 7230-1887 March 17, 1887,undated + + + + + + 79 + 117 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 9864-1887 April 15, 1887,undated + + + + + + 79 + 118 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10297-1887 April 19, 1887,undated + + + + + + 79 + 119 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10471-1887 April 19, 1887,undated + + + + + + 79 + 120 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10325-1887 April 20, 1887,undated + + + + + + 79 + 121 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10691-1887 April 22, 1887,undated + + + + + + 79 + 122 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 11309-1887 April 28, 1887,undated + + + + + + 79 + 123 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 11954-1887 May 7, 1887,undated + + + + + + 79 + 124 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 13744-1887 May 26, 1887,undated + + + + + + 79 + 126 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 14652-1887 June 6, 1887,undated + + + + + + 79 + 127 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 15903-1887 June 18, 1887,undated + + + + + + 79 + 128 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 16693-1887 June 29, 1887,undated + + + + + + 79 + 129 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 29417-1887 June 30, 1887,undated + + + + + + 79 + 130 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 17360-1887 July 5, 1887 (Folder 1 of 2),undated + + + + + + 79 + 131 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 17360-1887 July 5, 1887 (Folder 2 of 2),undated + + + + + + 79 + 132 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 19226-1887 July 21, 1887,undated + + + + + + 79 + 133 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 25158-1887 Sept. 19, 1887,undated + + + + + + 79 + 134 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 26410 enclo. 1 Oct. 3, 1887,undated + + + + + + 79 + 135 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 26252-1887 Oct. 3, 1887,undated + + + + + + 79 + 136 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 26397-1887 Oct. 4, 1887,undated + + + + + + 79 + 137 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 26772-1887 Oct. 8, 1887,undated + + + + + + 79 + 138 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 26884-1887 Oct. 10, 1887,undated + + + + + + 79 + 139 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 27544-1887 Oct. 15, 1887,undated + + + + + + 79 + 140 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 29910-1887 Nov. 7, 1887,undated + + + + + + 79 + 141 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 29908-1887 Nov. 8, 1887,undated + + + + + + 79 + 142 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 30520-1887 Nov. 14, 1887,undated + + + + + + 79 + 143 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 30662-1887 Nov. 14, 1887,undated + + + + + + 79 + 144 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 30862-1887 Nov. 18, 1887,undated + + + + + + 79 + 145 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 32963-1887 Dec. 14, 1887,undated + + + + + + 79 + 146 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 33755-1887 Dec. 18, 1887,undated + + + + + + 79 + 147 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 3062-1888 Jan. 31, 1888,undated + + + + + + 79 + 148 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 2944-1888 Feb. 1, 1888,undated + + + + + + 79 + 149 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 3341-1888 Feb. 3, 1888,undated + + + + + + 79 + 150 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 3766-1888 Feb. 8, 1888,undated + + + + + + 79 + 151 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 3834-1888 Feb. 8, 1888,undated + + + + + + 79 + 152 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 4185-1888 Feb. 13, 1888,undated + + + + + + 79 + 153 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 4373-1888 Feb. 15, 1888,undated + + + + + + 79 + 154 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 4784-1888 Feb. 18, 1888,undated + + + + + + 79 + 155 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 5852-1888 Feb. 29, 1888,undated + + + + + + 79 + 156 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 6596-1888 Mar. 9, 1888,undated + + + + + + 79 + 157 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 7720-1888 March 20, 1888,undated + + + + + + 79 + 158 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 11274-1888 Apr. 25, 1888,undated + + + + + + 79 + 159 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 13151-1888 May 18, 1888,undated + + + + + + 79 + 160 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 17497-1888 July 5, 1888,undated + + + + + + 79 + 161 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 22093-1888 Aug. 31, 1888,undated + + + + + + 79 + 162 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 23754-1888 Sept. (20?) 1888,undated + + + + + + 79 + 163 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 23713-1888 Sept. 20, 1888,undated + + + + + + 79 + 164 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 24194 1888 Sept. 20, 1888,undated + + + + + + 79 + 165 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 23932-1888 Sept. 22, 1888,undated + + + + + + 79 + 166 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 24195-1888 Sept. 22, 1888,undated + + + + + + 79 + 167 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 24120-1888 Sept. 22, 1888,undated + + + + + + 79 + 168 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 24366-1888 Sept. 22, 1888,undated + + + + + + 79 + 169 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 24545-1888 Sept. 27, 1888,undated + + + + + + 79 + 170 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 28698-1888 Nov. 19, 1888,undated + + + + + + 79 + 171 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 30040-1888 Dec. 1, 1888,undated + + + + + + 79 + 172 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 30039-1888 Dec. 3, 1888,undated + + + + + + 79 + 173 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 31781-1888 Dec. 26, 1888,undated + + + + + + 79 + 174 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 8450-1889 March 29, 1889,undated + + + + + + 79 + 175 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 8532-1889 April 1, 1889,undated + + + + + + 79 + 176 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 13600-1889 May 20, 1889,undated + + + + + + 79 + 177 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 17584-1889 July 1, 1889,undated + + + + + + 79 + 178 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 19550-1889 July 15, 1889,undated + + + + + + 79 + 179 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 20295-1889 July 15, 1889,undated + + + + + + 79 + 180 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 20768-1889 July 25, 1889,undated + + + + + + 79 + 181 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 23390-1889 Aug. 19, 1889,undated + + + + + + 79 + 182 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 23695-1889 Aug. 22, 1889,undated + + + + + + 79 + 183 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 28031-1889 Oct. 1, 1889,undated + + + + + + 79 + 184 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 31110-1889 Oct. 28, 1889,undated + + + + + + 79 + 185 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 31586-1889 Nov. 2, 1889,undated + + + + + + 79 + 186 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 32202-1889 Nov. 7, 1889,undated + + + + + + 79 + 187 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 Nov. 23, 1889,undated + + + + + + 79 + 188 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 33832-1889 Nov. 23, 1889,undated + + + + + + 79 + 189 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 Dec. 27, 1889,undated + + + + + + 79 + 190 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 enclosure 19 Jan. 22, 1890,undated + + + + + + 79 + 191 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 enclosure 14 March 1890,undated + + + + + + 79 + 192 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 enclosure 15 March 1890,undated + + + + + + 79 + 193 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1890 enclosure 16 March 1890,undated + + + + + + 79 + 194 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 enclosure 19 March 25, 1890,undated + + + + + + 79 + 195 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 enclosure 20 March 25, 1890,undated + + + + + + 79 + 196 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 9879-1890 Mar. 29, 1890,undated + + + + + + 79 + 197 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 April 8, 1890,undated + + + + + + 79 + 198 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 12679-1890 April 8, 1890,undated + + + + + + 79 + 199 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 12245-1890 Apr. 18, 1890,undated + + + + + + 79 + 200 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 3612-1890 May 6, 1890,undated + + + + + + 79 + 201 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 16169-1890 May 14, 1890,undated + + + + + + 79 + 202 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 16148-1890 May 24, 1890,undated + + + + + + 79 + 203 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 enclosure 7 May 31, 1890,undated + + + + + + 79 + 204 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 enclosure 21 June 2, 1890,undated + + + + + + 79 + 205 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 17067-1890 June 2, 1890,undated + + + + + + 79 + 206 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 17422-1890 June 5, 1890,undated + + + + + + 79 + 207 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 17774-1890 June 5, 1890,undated + + + + + + 79 + 208 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 18339-1890 June 12, 1890,undated + + + + + + 79 + 209 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 25350-1890 Aug. 15, 1890,undated + + + + + + 79 + 210 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 26891-1890 Aug. 29, 1890,undated + + + + + + 79 + 211 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 enclosure 42 Sept. 22, 1890,undated + + + + + + 79 + 212 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 enclosure 12 Oct. 7, 1890,undated + + + + + + 79 + 213 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1890 Oct. 23, 1890,undated + + + + + + 79 + 214 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1891 enclosure 6 Nov. 15, 1890,undated + + + + + + 79 + 215 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 10005-1890 enclosure 18 Nov. 25, 1890,undated + + + + + + 79 + 216 + Box 4 Saginaw Chippewa, Calendar documents, 1882-1890: LROIA 40513-1890 Dec. 22, 1890,undated + + + + + + 80 + 1 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 40045-1891 1891,undated + + + + + + 80 + 2 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 10005-1891 enclosure 3 1891,undated + + + + + + 80 + 3 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 10005-1891 enclosure. 4 1891,undated + + + + + + 80 + 4 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 10005-1891 enclosure 5 1891,undated + + + + + + 80 + 5 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 10005-1891 enclosure 8 1891,undated + + + + + + 80 + 6 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 10005-1891 enclosure 22 1891,undated + + + + + + 80 + 7 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 10005-1891 enclosure 36 1891,undated + + + + + + 80 + 8 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 10005-1891 enclosure 38 1891,undated + + + + + + 80 + 9 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 10005-1891 enclosure 39 1891,undated + + + + + + 80 + 10 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 10005-1891 enclosure 40 1891,undated + + + + + + 80 + 11 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 10005-1891 enclosure 44 1891,undated + + + + + + 80 + 12 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 2026-1891 Jan. 16, 1891,undated + + + + + + 80 + 13 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: H-211 Jan. 23, 1891,undated + + + + + + 80 + 14 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 10005-1891 enclosure 17 Feb. 9, 1891,undated + + + + + + 80 + 15 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 5820-1891 Feb. 10, 1891,undated + + + + + + 80 + 16 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 7132-1891 Feb. 18, 1891,undated + + + + + + 80 + 17 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: Clare Democrat and Press, no. 83, Feb. 27, 1891,undated + + + + + + 80 + 18 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: H-211 Feb. 27, 1891,undated + + + + + + 80 + 19 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 10005-1891 enclosure 34 March 2, 1891,undated + + + + + + 80 + 20 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 10005-1891 enclosure 35 March 2, 1891,undated + + + + + + 80 + 21 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 10005-1891 enclosure 37 March 2, 1891,undated + + + + + + 80 + 22 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 8068-1891 March 2, 1891,undated + + + + + + 80 + 23 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: 9561-1891 March 10, 1891,undated + + + + + + 80 + 24 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 9656-1891 March 11, 1891,undated + + + + + + 80 + 25 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 10020-1891 Mar. 12, 1891,undated + + + + + + 80 + 26 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 10005-1891 enclosure 1 March 14, 1891,undated + + + + + + 80 + 27 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 11433-1891 Mar. 24, 1891,undated + + + + + + 80 + 28 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 11503-1891 Mar. 24, 1891,undated + + + + + + 80 + 29 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 11500-1891 Mar. 25, 1891,undated + + + + + + 80 + 30 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 11442-1891 Mar. 27(?) 1891,undated + + + + + + 80 + 31 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 15637-1891 Apr. 27, 1891,undated + + + + + + 80 + 32 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 10005-1891 May 19, 1891,undated + + + + + + 80 + 33 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 30800-1891 Aug. 20, 1891,undated + + + + + + 80 + 34 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 31710-1891 Aug. 27, 1891,undated + + + + + + 80 + 35 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 36206-1891 Oct. 8, 1891,undated + + + + + + 80 + 36 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 43275-1891 Dec. 4, 1891,undated + + + + + + 80 + 37 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 37-1892 Dec. 30, 1891,undated + + + + + + 80 + 38 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 5734-1892 Feb. 12, 1892,undated + + + + + + 80 + 39 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 6576-1892 Feb. 18, 1892,undated + + + + + + 80 + 40 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 9920-1892 March 12, 1892,undated + + + + + + 80 + 41 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 16730-1892 May 5, 1892,undated + + + + + + 80 + 42 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 22300-1892 June 14, 1892,undated + + + + + + 80 + 43 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 33246-1892 Sept. 7, 1892,undated + + + + + + 80 + 44 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 34476-1892 Sept. 21, 1892,undated + + + + + + 80 + 45 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 40709-1892 Nov. 9, 1892,undated + + + + + + 80 + 46 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: Auditor General v. Williams (not on calendar [sic]) Dec. 22, 1892,undated + + + + + + 80 + 47 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 8058-1893 Mar. 3, 1893,undated + + + + + + 80 + 48 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 10750-1893 Mar. 21, 1893,undated + + + + + + 80 + 49 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 12083-1893 Apr. 5, 1893,undated + + + + + + 80 + 50 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 26717-1893 Aug. 19, 1893,undated + + + + + + 80 + 51 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 32393-1893 Aug. 23, 1893,undated + + + + + + 80 + 52 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 33619-1893 Sept. 6, 1893,undated + + + + + + 80 + 53 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 37795-1893 Sept. 13, 1893,undated + + + + + + 80 + 54 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 34701-1893 Sept. 15, 1893,undated + + + + + + 80 + 55 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 36303-1893 Sept. 25, 1893,undated + + + + + + 80 + 56 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 37387-1893 Oct. 3, 1893,undated + + + + + + 80 + 57 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 37795-1893 Oct. 9, 1893,undated + + + + + + 80 + 58 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 39829-1893 Oct. 23, 1893,undated + + + + + + 80 + 59 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 40468-1893 Oct. 26, 1893,undated + + + + + + 80 + 60 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 44312-1893 Nov. 27, 1893,undated + + + + + + 80 + 61 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 47182-1893 Dec. 19, 1893undated + + + + + + 80 + 62 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: HD, 52 Cong., 1 sess, no. 340. 1894,undated + + + + + + 80 + 63 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 13896-1894 April 9, 1894,undated + + + + + + 80 + 64 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 13897-1894 April 9, 1894,undated + + + + + + 80 + 65 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 15715-1894 April 23, 1894,undated + + + + + + 80 + 66 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 18781-1894 April 25, 1894,undated + + + + + + 80 + 67 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 17335-1894 May 4, 1894,undated + + + + + + 80 + 68 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 25221-1894 June 8, 1894,undated + + + + + + 80 + 69 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 22867-1894 June 12, 1894,undated + + + + + + 80 + 70 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 29883-1894 July 30, 1894,undated + + + + + + 80 + 71 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 29273-1894 July 31, 1894,undated + + + + + + 80 + 72 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 37000-1894 Sept. 21, 1894,undated + + + + + + 80 + 73 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 45149-1894 Nov. 16, 1894,undated + + + + + + 80 + 74 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 48026-1894 Dec. 6, 1894,undated + + + + + + 80 + 76 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 26935-1895 June 29, 1895,undated + + + + + + 80 + 77 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 27967-1895 July 6, 1895,undated + + + + + + 80 + 78 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 29905-1895 July 16, 1895,undated + + + + + + 80 + 79 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 41035-1895 Oct. 7, 1895,undated + + + + + + 80 + 80 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 1479-1896 Jan. 9, 1896,undated + + + + + + 80 + 81 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 12165-1896 March 21, 1896,undated + + + + + + 80 + 82 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 11246-1896 March 23, 1896,undated + + + + + + 80 + 83 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 18920-1896 May 18, 1896,undated + + + + + + 80 + 84 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 30612-1896 Aug. 7, 1896,undated + + + + + + 80 + 85 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 13219-1897 1897,undated + + + + + + 80 + 86 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 1741-1897 Jan. 11, 1897,undated + + + + + + 80 + 87 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 47196-1897 Sept. 24, 1897,undated + + + + + + 80 + 88 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 47197-1897 Nov. 6, 1897,undated + + + + + + 80 + 89 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: H-211 June 13, 1898,undated + + + + + + 80 + 90 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 45020-1899 Sept. 20, 1899,undated + + + + + + 80 + 91 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LR-OIA 40407-1900 Jan. 1900,undated + + + + + + 80 + 92 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 50639-1900 Oct. 9, 1900,undated + + + + + + 80 + 93 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 52802-1900 Oct. 24, 1900,undated + + + + + + 80 + 94 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 11585-1901 Feb. 19, 1901,undated + + + + + + 80 + 95 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 41884-1901 July 29, 1901,undated + + + + + + 80 + 96 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 45790-1901 Aug. 19, 1901,undated + + + + + + 80 + 97 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 73357-1901 Dec. 16, 1901,undated + + + + + + 80 + 98 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 6871-1902 Jan. 28, 1902,undated + + + + + + 80 + 99 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 12487-1902 Feb. 24, 1902,undated + + + + + + 80 + 100 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 26315-1902 May 1, 1902,undated + + + + + + 80 + 101 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 29495-1902 May 15, 1902,undated + + + + + + 80 + 102 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 61304-1902 Oct. 9, 1902,undated + + + + + + 80 + 103 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 20584-1903 Mar. 27, 1903,undated + + + + + + 80 + 104 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 40753-1903 June 29, 1903,undated + + + + + + 80 + 105 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 9014-1904 Feb. 3, 1904,undated + + + + + + 80 + 106 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 39915-1904 June 11, 1904,undated + + + + + + 80 + 107 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 54454-1904 Aug. 8, 1904,undated + + + + + + 80 + 108 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 57925-1904 Aug. 22, 1904,undated + + + + + + 80 + 109 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 57926-1904 Aug. 25, 1904,undated + + + + + + 80 + 110 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 77495-1904 Oct. 31, 1904,undated + + + + + + 80 + 111 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 73353-1905 1905,undated + + + + + + 80 + 112 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 7117-1905 Jan. 23, 1905,undated + + + + + + 80 + 113 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 7362-1905 Jan. 24, 1905,undated + + + + + + 80 + 114 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 12353-1905 Feb. 10, 1905,undated + + + + + + 80 + 115 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 34704-1905 May 2, 1905,undated + + + + + + 80 + 116 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 36566-1905 May 9, 1905,undated + + + + + + 80 + 117 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 40539-1905 May 24, 1905,undated + + + + + + 80 + 118 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 92465-1905 Nov. 16, 1905,undated + + + + + + 80 + 119 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 13343-1906 Feb. 7, 1906,undated + + + + + + 80 + 120 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 29403-1906 Mar. 31, 1906,undated + + + + + + 80 + 121 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 34197-1906 April 16, 1906,undated + + + + + + 80 + 122 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 36407-1906 April 21, 1906,undated + + + + + + 80 + 123 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 47465-1906 June 1, 1906,undated + + + + + + 80 + 124 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 53459-1906 June 23, 1906,undated + + + + + + 80 + 125 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 58476-1906 June 28, 1906,undated + + + + + + 80 + 126 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 85082-1906 Sept. 29, 1906,undated + + + + + + 80 + 127 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: LROIA 111666-1906 Dec. 19, 1906,undated + + + + + + 80 + 128 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 9620-08, 313 Feb. 25, 1908 (Folder 1 of 2),undated + + + + + + 80 + 129 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 9620-08, 313 Feb. 25, 1908 (Folder 2 of 2),undated + + + + + + 80 + 130 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mt. Pleasant 9144-09, 308 Feb. 1, 1909,undated + + + + + + 80 + 131 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mt. Pleasant 9144-09, 308 Feb. 9, 1909,undated + + + + + + 80 + 132 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mt. Pleasant 9144-09, 308 Feb. 11, 1909,undated + + + + + + 80 + 133 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mt. Pleasant 9144-09, 308 March 11, 1909,undated + + + + + + 80 + 134 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: Kappler 1929, vol. 4, p. 415 June 25, 1910,undated + + + + + + 80 + 135 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 6928-1913, 310 Jan. 16, 1913,undated + + + + + + 80 + 136 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 6928-1913, 310 Jan. 27, 1913,undated + + + + + + 80 + 137 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 6928-1913, 310 July 21, 1913,undated + + + + + + 80 + 138 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 55307-1916, 310 June 3, 1916,undated + + + + + + 80 + 139 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 55307-1916, 310 June 12, 1916,undated + + + + + + 80 + 140 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mt. Pleasant 49464, 1917, 313 May 17, 1917,undated + + + + + + 80 + 141 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mt. Pleasant 49464-1917, 313 June 5, 1917,undated + + + + + + 80 + 142 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 106660-1919, 300 Dec. 12, 1919,undated + + + + + + 80 + 143 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 106660-1919, 300 Dec. 26, 1919,undated + + + + + + 80 + 144 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 90122-1920, 115 Nov. 4, 1920,undated + + + + + + 80 + 145 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 98005-1920, 170 Feb. 4, 1921,undated + + + + + + 80 + 146 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 14849-1921, 313 May 18, 1921,undated + + + + + + 80 + 147 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 14849-1921, 313 May? 21, 1921,undated + + + + + + 80 + 148 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 36837-1922, 302 May 2, 1922,undated + + + + + + 80 + 149 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 36837-1922, 302 May 4, 1922,undated + + + + + + 80 + 150 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 36837-1922, 302 May 13, 1922,undated + + + + + + 80 + 151 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 22120-1923, 302 Mar. 29, 1923,undated + + + + + + 80 + 152 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 22120-1923, 302 May 19, 1923,undated + + + + + + 80 + 153 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: Kappler Vol. 4, p. 415, May 24, 1924,undated + + + + + + 80 + 154 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 40846-1924, 174-1 May 24, 1924,undated + + + + + + 80 + 155 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 40846-1924, 174-1 June 11, 1924 (Folder 1 of 2),undated + + + + + + 80 + 156 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 40846-1924, 174-1 June 11, 1924 (Folder 2 of 2),undated + + + + + + 80 + 157 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 40846-1924, 174-1 June 21, 1924,undated + + + + + + 80 + 158 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 40846-1924, 174-1 Sept. 12, 1924,undated + + + + + + 80 + 159 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 40846-1924, 174-1 Sept. 26, 1924,undated + + + + + + 80 + 160 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 18932-1925, 053 Mar. 1925,undated + + + + + + 80 + 161 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 18932-1925, 053 Mar. 12, 1925,undated + + + + + + 80 + 162 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 55307-1916, 310 Apr. 20, 1925,undated + + + + + + 80 + 163 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 55307-1916, 310 May 4, 1925,undated + + + + + + 80 + 164 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 18932-1925, 053 May 25, 1925,undated + + + + + + 80 + 165 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 48656-1932, 115 July 9, 1925,undated + + + + + + 80 + 166 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 33812-1924, 054 Aug. 2, 1927,undated + + + + + + 80 + 167 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 28778-1928, 115 May 31, 1928,undated + + + + + + 80 + 168 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 28778-1928, 115 June 13, 1928,undated + + + + + + 80 + 169 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 28778-1928, 115 June 15, 1928,undated + + + + + + 80 + 170 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 28778-1928, 115 June 19, 1928,undated + + + + + + 80 + 171 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 28778-1928, 115 June 23, 1928,undated + + + + + + 80 + 172 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 28778-1928, 115 July 6, 1928,undated + + + + + + 80 + 173 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 28778-1928, 115 July 18, 1928,undated + + + + + + 80 + 174 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 54218-1928, 115 Nov. 5, 1928,undated + + + + + + 80 + 175 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 54218-1928, 115 Dec. 1, 1928,undated + + + + + + 80 + 176 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 54218-1928, 115 Dec. 4, 1928,undated + + + + + + 80 + 177 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 54218-1928 Dec. 17, 1928,undated + + + + + + 80 + 178 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 55068-1930, 302 Oct. 17, 1930,undated + + + + + + 80 + 179 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 55068-1930, 302 Dec. 5, 1930,undated + + + + + + 80 + 180 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 22921-1931, 255 Apr. 14, 1931,undated + + + + + + 80 + 181 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 22921-1931, 255 Apr. 29, 1931,undated + + + + + + 80 + 182 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mt. P 44372-1931, 313 Aug. 3, 1931,undated + + + + + + 80 + 183 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mt. P. 44372-1931, 313 Sept. 1, 1931,undated + + + + + + 80 + 184 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mt. P. 44372-1931, 313 Oct. 7, 1931,undated + + + + + + 80 + 185 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCCF Mt. Pleasant 44372-1931, 313 Oct. 19, 1931,undated + + + + + + 80 + 186 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 48656-1932, 115 Oct. 11, 1932,undated + + + + + + 80 + 187 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 48656-1932, 115 Oct. 13, 1932,undated + + + + + + 80 + 188 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 48656-1932, 115 Nov. 7, 1932,undated + + + + + + 80 + 189 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 48656-1932, 115 Feb. 27, 1933,undated + + + + + + 80 + 190 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 48656-1932, 115 Mar. 7, 1933,undated + + + + + + 80 + 191 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 33812-1924, 054 Feb. 18, 1935,undated + + + + + + 80 + 192 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 48656-1932, 115 May 13, 1935,undated + + + + + + 80 + 193 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 48656-1932, 115 May 17, 1935,undated + + + + + + 80 + 194 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 48656-1932, 115 May 23, 1935,undated + + + + + + 80 + 195 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 48656-1932, 115 May 25, 1935,undated + + + + + + 80 + 196 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 48656-1932, 115 June 14, 1935,undated + + + + + + 80 + 197 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 48656-1932, 115 May 23, 1935,undated + + + + + + 80 + 198 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 48656-1932, 115 May 25, 1935,undated + + + + + + 80 + 199 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 48656-1932, 115 June 14, 1935 (Folder 1 of 2),undated + + + + + + 80 + 200 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 48656-1932, 115 June 14, 1935 (Folder 2 of 2),undated + + + + + + 80 + 201 + Box 5 Saginaw Chippewa, Calendar documents, 1891-1935: CCF Mackinac 48656-1932, 115 June 20, 1935,undated + + + + + + 81 + 1 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Report notes, Indian subjects and keywords, map of Isabella County townships and Isabella Indian Reservation,undated + + + + + + 81 + 2 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1835,undated + + + + + + 81 + 3 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1836,undated + + + + + + 81 + 4 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1837,undated + + + + + + 81 + 5 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1838,undated + + + + + + 81 + 6 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1839,undated + + + + + + 81 + 7 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1840,undated + + + + + + 81 + 8 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1842,undated + + + + + + 81 + 9 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1843,undated + + + + + + 81 + 10 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1844,undated + + + + + + 81 + 11 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1845,undated + + + + + + 81 + 12 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1846,undated + + + + + + 81 + 13 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1848,undated + + + + + + 81 + 14 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1849,undated + + + + + + 81 + 15 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1851,undated + + + + + + 81 + 16 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1852,undated + + + + + + 81 + 17 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1853,undated + + + + + + 81 + 18 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1854,undated + + + + + + 81 + 19 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1855,undated + + + + + + 81 + 20 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1856,undated + + + + + + 81 + 21 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1857,undated + + + + + + 81 + 22 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1858,undated + + + + + + 81 + 23 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1859,undated + + + + + + 81 + 60 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1860,undated + + + + + + 81 + 61 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1861,undated + + + + + + 81 + 62 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1862,undated + + + + + + 81 + 63 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1863,undated + + + + + + 81 + 64 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1864,undated + + + + + + 81 + 65 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1865,undated + + + + + + 81 + 66 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1866,undated + + + + + + 81 + 67 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1867,undated + + + + + + 81 + 68 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1868,undated + + + + + + 81 + 69 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1869,undated + + + + + + 81 + 70 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1870,undated + + + + + + 81 + 71 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1871,undated + + + + + + 81 + 72 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1872,undated + + + + + + 81 + 73 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1873,undated + + + + + + 81 + 74 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1874,undated + + + + + + 81 + 75 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1875,undated + + + + + + 81 + 76 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1876,undated + + + + + + 81 + 77 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1877,undated + + + + + + 81 + 78 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1878,undated + + + + + + 81 + 79 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1879,undated + + + + + + 81 + 80 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1880,undated + + + + + + 81 + 81 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1881,undated + + + + + + 81 + 82 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1882,undated + + + + + + 81 + 83 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1883,undated + + + + + + 81 + 84 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1884,undated + + + + + + 81 + 85 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1885,undated + + + + + + 81 + 86 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1886,undated + + + + + + 81 + 87 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1887,undated + + + + + + 81 + 88 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1888,undated + + + + + + 81 + 89 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1889,undated + + + + + + 81 + 90 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1891,undated + + + + + + 81 + 91 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1892,undated + + + + + + 81 + 92 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1893,undated + + + + + + 81 + 93 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1894,undated + + + + + + 81 + 94 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1895,undated + + + + + + 81 + 95 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1896,undated + + + + + + 81 + 96 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1898,undated + + + + + + 81 + 97 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1899,undated + + + + + + 81 + 98 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1900,undated + + + + + + 81 + 99 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1901,undated + + + + + + 81 + 10 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1902,undated + + + + + + 81 + 101 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1905,undated + + + + + + 81 + 102 + Box 6 Saginaw Chippewa, Calendar documents, published sources: ARCOIA 1924,undated + + + + + + 81 + 103 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, History of Saginaw County, MI, 1881,undated + + + + + + 81 + 104 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Bradley, Rev. Brief History of Isabella Indian Mission, 1870 [ca],undated + + + + + + 81 + 105 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Barclay, W. Methodist Episcopal Church, 1957,undated + + + + + + 81 + 106 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Address of the Chiefs of the Chippewa Nation,undated + + + + + + 81 + 107 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Brunger, Ronald A. Early History of the Saganing Indian Mission,undated + + + + + + 81 + 108 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Calloway, Collin. End of An Era,undated + + + + + + 81 + 109 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Carlisle, Fred. Early French Missions on the Saginaw,undated + + + + + + 81 + 110 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Case, James A. Death and Burial of “Injun Jim”,undated + + + + + + 81 + 111 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Day, J.E., 1896,undated + + + + + + 81 + 112 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Dustin, Fred. Treaty of Saginaw, 1819,undated + + + + + + 81 + 113 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Fancher- Past and Present- Isabella Co., 1911,undated + + + + + + 81 + 114 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Felch, Alpheus. Indians of MI and the Cession of Their Land,undated + + + + + + 81 + 115 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, C.M. Foote and E.C. Hood. Plat Book of Isabella County, 1899,undated + + + + + + 81 + 116 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Fox, Truman. History of Saginaw County,undated + + + + + + 81 + 117 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Hartman, I.W. This is Our Heritage, 1964,undated + + + + + + 81 + 118 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Hayes, E.L. Atlas of Isabella County, 1879,undated + + + + + + 81 + 119 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Hickey, Rev. M. Missionary Among the Indians,undated + + + + + + 81 + 120 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Horsman, Reginald. Origins of Indian Removal, 1970,undated + + + + + + 81 + 121 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Kappler, Charles. Treaty w/ the Chippewa, 1819,undated + + + + + + 81 + 122 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Kappler. Treaty w/ the Chippewa, 1837,undated + + + + + + 81 + 123 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Kappler, C. Treaty w/ the Chippewa of Saginaw, 1855,undated + + + + + + 81 + 124 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Kappler, Charles. Treaty w/ the Chippewa of Saginaw, 1869,undated + + + + + + 81 + 125 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Littlefield, Alice. B.I. A. Boarding School, 1989,undated + + + + + + 81 + 126 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Long, James. Indian History,undated + + + + + + 81 + 127 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Miller, Albert. Saginaw One Hundred Years Agoundated + + + + + + 81 + 128 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Miessler, E.G.H. Autobiography of E.G.H. Miessler,undated + + + + + + 81 + 129 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Moll, Harold. Bethany Lutheran Indian Mission, St. Louis, 1973,undated + + + + + + 81 + 130 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Moll, Harold. Early Lutheran Mission Activity in Isabella County Area, 1961,undated + + + + + + 81 + 131 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Moll, Harold and Moll, Norman. Indian Mission near Midland. 1961,undated + + + + + + 81 + 132 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Portrait and Biographical Album of Isabella County, 1889,undated + + + + + + 81 + 133 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Priest, Loring. Uncle Sam’s Step Children, 1942,undated + + + + + + 81 + 134 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Prucha, F.P. Lewis Cass and American Indian Policy, 1967,undated + + + + + + 81 + 135 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Quaife, Milo. Condensed Historical Sketches of MI’s Counties, 1940,undated + + + + + + 81 + 136 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Reid, Rev. J.M. Mission and Missionary Society of the Methodist Episcopal Church,undated + + + + + + 81 + 137 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Royce. Indian Land Cessions, 1900,undated + + + + + + 81 + 138 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Rubenstein, Justice Denied, 1974,undated + + + + + + 81 + 139 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Sturm, John. Farwell to Swan Creek Chippewa, 1985,undated + + + + + + 81 + 140 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Webber, William. Indian Cession of 1819,undated + + + + + + 81 + 141 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Weslager, C.A. Enrollment List of Chippewa and Del-Munsies, 1900,undated + + + + + + 81 + 142 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Werell, B. Werell’s Reminiscences, Detroit in 1814.,undated + + + + + + 81 + 143 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Williams, Ephraim. Certificate of Statement, made by Chippewa Chiefs,undated + + + + + + 81 + 144 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Williams, E. Legends of Indian History in Saginaw Valley,undated + + + + + + 81 + 145 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Williams, Ephraim. What I know about O-taw-wars and Ne-war-go,undated + + + + + + 81 + 146 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, Williams, Ephraim. Treaty of Saginaw in the year 1819,undated + + + + + + 81 + 147 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, NAM M668 R.13:417-429 May 22, 1866,undated + + + + + + 81 + 148 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, NAM M668 R.13: 392-416 Oct. 18, 1864,undated + + + + + + 81 + 149 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, NAM M668 R.8:172-182. May 9, 1836,undated + + + + + + 81 + 150 + Box 6 Saginaw Chippewa, Calendar documents, published sources: Published sources, NAM M668 R.5:123-128. Sept. 24, 1819,undated + + + + + + 82 + 1 + Box 7 Saginaw Chippewa, Clifton report, footnote document-A: Clifton Research Report Footnotes, 1992; Before the ICC, Docket No. 57, Saginaw Chippewas, et al. v. US, 1965; Economic and Historical Report on Royce Area III ICC Docket No. 57; Chippewa of Eastern Lower MI, 1965; book review of Invented Indian: Cultural Fictions and Government Policies by James A. Clifton,1992 + + + + + + 82 + 2 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 8-1,undated + + + + + + 82 + 3 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 8-2,undated + + + + + + 82 + 4 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 9-1,undated + + + + + + 82 + 5 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 10-2,undated + + + + + + 82 + 6 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 10-3,undated + + + + + + 82 + 7 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 10-4,undated + + + + + + 82 + 8 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 11-1,undated + + + + + + 82 + 9 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 11-2,undated + + + + + + 82 + 10 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 12-1,undated + + + + + + 82 + 11 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 12-2,undated + + + + + + 82 + 12 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 12-3,undated + + + + + + 82 + 13 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 13-1,undated + + + + + + 82 + 14 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 13-2,undated + + + + + + 82 + 15 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 13-3,undated + + + + + + 82 + 16 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 13-4,undated + + + + + + 82 + 17 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 14-1,undated + + + + + + 82 + 18 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 14-2,undated + + + + + + 82 + 19 + Box 7 Saginaw Chippewa, Clifton report, freference documents: 15-1,undated + + + + + + 82 + 20 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 15-3,undated + + + + + + 82 + 21 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 17-1,undated + + + + + + 82 + 22 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 17-2,undated + + + + + + 82 + 23 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 19-1,undated + + + + + + 82 + 24 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 19-2,undated + + + + + + 82 + 25 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 20-1,undated + + + + + + 82 + 26 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 20-2,undated + + + + + + 82 + 27 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 20-3,undated + + + + + + 82 + 28 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 22-1,undated + + + + + + 82 + 29 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 22-2,undated + + + + + + 82 + 30 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 22-3,undated + + + + + + 82 + 31 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 22-4,undated + + + + + + 82 + 32 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 23-1,undated + + + + + + 82 + 33 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 23-2,undated + + + + + + 82 + 34 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 24-1,undated + + + + + + 82 + 35 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 24-2,undated + + + + + + 82 + 36 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 24-3,undated + + + + + + 82 + 37 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 24-4,undated + + + + + + 82 + 38 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 25-1,undated + + + + + + 82 + 39 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 25-2,undated + + + + + + 82 + 40 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 25-3,undated + + + + + + 82 + 41 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 27-1,undated + + + + + + 82 + 42 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 27-2undated + + + + + + 82 + 43 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 28-1,undated + + + + + + 82 + 44 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 28-2,undated + + + + + + 82 + 45 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 29-1,undated + + + + + + 82 + 46 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 29-2,undated + + + + + + 82 + 47 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 30-1,undated + + + + + + 82 + 48 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 30-2,undated + + + + + + 82 + 49 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 30-3,undated + + + + + + 82 + 50 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 30-4,undated + + + + + + 82 + 51 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 31-1,undated + + + + + + 82 + 52 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 31-2,undated + + + + + + 82 + 53 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 32-1,undated + + + + + + 82 + 54 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 32-2,undated + + + + + + 82 + 55 + Box 7 Saginaw Chippewa, Clifton report, reference documents 32-3,undated + + + + + + 82 + 56 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 32-4,undated + + + + + + 82 + 57 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 33-1,undated + + + + + + 82 + 58 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 34-1,undated + + + + + + 82 + 59 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 34-2,undated + + + + + + 82 + 60 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 35-1,undated + + + + + + 82 + 61 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 44-1,undated + + + + + + 82 + 62 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 47-1,undated + + + + + + 82 + 63 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 47-2,undated + + + + + + 82 + 64 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 47-3,undated + + + + + + 82 + 65 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 48-1,undated + + + + + + 82 + 66 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 48-2,undated + + + + + + 82 + 67 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 49-1,undated + + + + + + 82 + 68 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 49-2,undated + + + + + + 82 + 69 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 49-3,undated + + + + + + 82 + 70 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 50-1,undated + + + + + + 82 + 71 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 50-2,undated + + + + + + 82 + 72 + Box 7 Saginaw Chippewa, Clifton report, freference documents: 50-3,undated + + + + + + 82 + 73 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 50-4,undated + + + + + + 82 + 74 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 51-1,undated + + + + + + 82 + 75 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 52-1,undated + + + + + + 82 + 76 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 52-2,undated + + + + + + 82 + 77 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 53-2,undated + + + + + + 82 + 78 + Box 7 Saginaw Chippewa, Clifton report, reference documents 53-3,undated + + + + + + 82 + 79 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 55-1,undated + + + + + + 82 + 80 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 56-1,undated + + + + + + 82 + 81 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 56-2,undated + + + + + + 82 + 82 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 57-1,undated + + + + + + 82 + 83 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 57-2,undated + + + + + + 82 + 84 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 58-1,undated + + + + + + 82 + 85 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 59-2,undated + + + + + + 82 + 86 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 60-1,undated + + + + + + 82 + 87 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 60-2,undated + + + + + + 82 + 88 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 61-1,undated + + + + + + 82 + 89 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 61-2,undated + + + + + + 82 + 90 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 62-1,undated + + + + + + 82 + 91 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 62-2,undated + + + + + + 82 + 92 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 63-2,undated + + + + + + 82 + 93 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 63-3,undated + + + + + + 82 + 94 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 64-1,undated + + + + + + 82 + 95 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 65-1,undated + + + + + + 82 + 96 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 65-2,undated + + + + + + 82 + 97 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 65-3,undated + + + + + + 82 + 98 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 66-1,undated + + + + + + 82 + 99 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 66-2,undated + + + + + + 82 + 100 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 66-3,undated + + + + + + 82 + 101 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 66-5,undated + + + + + + 82 + 102 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 68-1,undated + + + + + + 82 + 103 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 68-2,undated + + + + + + 82 + 104 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 69-2,undated + + + + + + 82 + 105 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 69-3,undated + + + + + + 82 + 106 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 71-1,undated + + + + + + 82 + 107 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 72-1,undated + + + + + + 82 + 108 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 72-2,undated + + + + + + 82 + 109 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 73-1,undated + + + + + + 82 + 110 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 74-1,undated + + + + + + 82 + 111 + Box 7 Saginaw Chippewa, Clifton report, reference documentsA: 75-1 President Lincoln...,undated + + + + + + 82 + 112 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 75-2,undated + + + + + + 82 + 113 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 76-1,undated + + + + + + 82 + 114 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 76-2,undated + + + + + + 82 + 115 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 76-3,undated + + + + + + 82 + 116 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 76-4,undated + + + + + + 82 + 117 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 77-1,undated + + + + + + 82 + 118 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 77-2,undated + + + + + + 82 + 119 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 78-1,undated + + + + + + 82 + 120 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 79-1,undated + + + + + + 82 + 121 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 79-2,undated + + + + + + 82 + 122 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 79-3,undated + + + + + + 82 + 123 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 80-1,undated + + + + + + 82 + 124 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 80-2,undated + + + + + + 82 + 125 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 81-1,undated + + + + + + 82 + 126 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 81-2,undated + + + + + + 82 + 127 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 82-1,undated + + + + + + 82 + 128 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 82-2,undated + + + + + + 82 + 129 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 82-3,undated + + + + + + 82 + 130 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 82-4,undated + + + + + + 82 + 131 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 83-2,undated + + + + + + 82 + 132 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 84-1,undated + + + + + + 82 + 133 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 86-3,undated + + + + + + 82 + 134 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 87-1,undated + + + + + + 82 + 135 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 87-2,undated + + + + + + 82 + 136 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 87-3,undated + + + + + + 82 + 137 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 88-1,undated + + + + + + 82 + 138 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 88-2,undated + + + + + + 82 + 139 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 88-3,undated + + + + + + 82 + 140 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 89-1,undated + + + + + + 82 + 141 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 89-2,undated + + + + + + 82 + 142 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 89-3,undated + + + + + + 82 + 143 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 89-4undated + + + + + + 82 + 144 + Box 7 Saginaw Chippewa, Clifton report, reference documents: 89-5,undated + + + + + + 83 + 1 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 90-1,undated + + + + + + 83 + 2 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 91-1,undated + + + + + + 83 + 3 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 92-1,undated + + + + + + 83 + 4 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 93-1,undated + + + + + + 83 + 5 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 93-2,undated + + + + + + 83 + 6 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 93-3,undated + + + + + + 83 + 7 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 94-1,undated + + + + + + 83 + 8 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 94-2,undated + + + + + + 83 + 9 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 95-1,undated + + + + + + 83 + 10 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 95-2,undated + + + + + + 83 + 11 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 96-1,undated + + + + + + 83 + 12 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 96-3,undated + + + + + + 83 + 13 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 97-1,undated + + + + + + 83 + 14 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 98-1,undated + + + + + + 83 + 15 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 98-2,undated + + + + + + 83 + 16 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 98-3,undated + + + + + + 83 + 17 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 99-1,undated + + + + + + 83 + 18 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 99-2,undated + + + + + + 83 + 19 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 100-1,undated + + + + + + 83 + 20 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 100-2,undated + + + + + + 83 + 21 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 100-3,undated + + + + + + 83 + 22 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 101-1,undated + + + + + + 83 + 23 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 101-2,undated + + + + + + 83 + 24 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 102-1,undated + + + + + + 83 + 25 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 102-2,undated + + + + + + 83 + 26 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 103-1,undated + + + + + + 83 + 27 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 104-1,undated + + + + + + 83 + 28 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 105-1,undated + + + + + + 83 + 29 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 105-2,undated + + + + + + 83 + 30 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 105-3,undated + + + + + + 83 + 31 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 106-1,undated + + + + + + 83 + 32 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 107-2,undated + + + + + + 83 + 33 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 107-3,undated + + + + + + 83 + 34 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 108-1,undated + + + + + + 83 + 35 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 108-2,undated + + + + + + 83 + 36 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 109-1,undated + + + + + + 83 + 37 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 110-1,undated + + + + + + 83 + 38 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 112-2,undated + + + + + + 83 + 39 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 113-2,undated + + + + + + 83 + 40 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 114-1,undated + + + + + + 83 + 41 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 114-2,undated + + + + + + 83 + 42 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 114-3,undated + + + + + + 83 + 43 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 115-1,undated + + + + + + 83 + 44 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 115-2,undated + + + + + + 83 + 45 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 115-3,undated + + + + + + 83 + 46 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 115-4,undated + + + + + + 83 + 47 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 116-1,undated + + + + + + 83 + 48 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 122-1,undated + + + + + + 83 + 49 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 122-2,undated + + + + + + 83 + 50 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 123-1,undated + + + + + + 83 + 51 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 124-1,undated + + + + + + 83 + 52 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 125-2,undated + + + + + + 83 + 53 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 126-1,undated + + + + + + 83 + 54 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 127-1,undated + + + + + + 83 + 55 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 127-2,undated + + + + + + 83 + 56 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 128-1,undated + + + + + + 83 + 57 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 128-2,undated + + + + + + 83 + 58 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 129-1,undated + + + + + + 83 + 59 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 131-1,undated + + + + + + 83 + 60 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 132-2,undated + + + + + + 83 + 61 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 133-1,undated + + + + + + 83 + 62 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 134-1,undated + + + + + + 83 + 63 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 135-1undated + + + + + + 83 + 64 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 135-2,undated + + + + + + 83 + 65 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 136-1,undated + + + + + + 83 + 66 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 137-1undated + + + + + + 83 + 67 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 137-3,undated + + + + + + 83 + 68 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 138-1,undated + + + + + + 83 + 69 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 138-3,undated + + + + + + 83 + 70 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 140-1undated + + + + + + 83 + 71 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 141-1,undated + + + + + + 83 + 72 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 141-2,undated + + + + + + 83 + 73 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 143-1undated + + + + + + 83 + 74 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 143-2,undated + + + + + + 83 + 75 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 143-3,undated + + + + + + 83 + 76 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 144-1undated + + + + + + 83 + 77 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 144-2,undated + + + + + + 83 + 78 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 145-1,undated + + + + + + 83 + 79 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 146-1undated + + + + + + 83 + 80 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 146-2,undated + + + + + + 83 + 81 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 146-3,undated + + + + + + 83 + 82 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 147-1,undated + + + + + + 83 + 83 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 148-1,undated + + + + + + 83 + 84 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 149-1undated + + + + + + 83 + 85 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 161-1,undated + + + + + + 83 + 86 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 166-1,undated + + + + + + 83 + 87 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 168-2undated + + + + + + 83 + 88 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 172-1,undated + + + + + + 83 + 89 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 173-2,undated + + + + + + 83 + 90 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 178-1,undated + + + + + + 83 + 91 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 179-2,undated + + + + + + 83 + 92 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 180-1,undated + + + + + + 83 + 93 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 183-1,undated + + + + + + 83 + 94 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 183-2,undated + + + + + + 83 + 95 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 184-1,undated + + + + + + 83 + 96 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 187-1,undated + + + + + + 83 + 97 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 189-1,undated + + + + + + 83 + 98 + Box 8 Saginaw Chippewa, Clifton report, reference documents: 191-1,undated + + + + + + 83 + 99 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, Constitution of MI, 1850,undated + + + + + + 83 + 100 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, ICC DKT 13-H May 14, 1853,undated + + + + + + 83 + 101 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, Kappler p. 648 Treaty w/ Chippewa Sept. 30, 1854,undated + + + + + + 83 + 102 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, Kappler p. 677 Treaty w/ Wyandot Jan. 31, 1855,undated + + + + + + 83 + 103 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, Kappler p. 682 Treaty w/ Makah Jan. 31, 1855,undated + + + + + + 83 + 104 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, NAM M234 R.404: 593-96 March 1, 1855,undated + + + + + + 83 + 105 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, NAM M21 Roll 51 May 9, 1855,undated + + + + + + 83 + 106 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, NAM M21 Roll 51 May 10, 1855 (Folder 1 of 2),undated + + + + + + 83 + 107 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, NAM M21 Roll 51 May 10, 1855 (Folder 2 of 2),undated + + + + + + 83 + 108 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, NAM M21 Roll 51 June 9, 1855,undated + + + + + + 83 + 109 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, NAM M234 R.404: 668-69 June 15, 1855,undated + + + + + + 83 + 110 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, NAM M21 R.52 June 15, 1855 (Folder 1 of 2),undated + + + + + + 83 + 111 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, NAM M21 R.52 June 15, 1855 (Folder 2 of 2),undated + + + + + + 83 + 112 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, NAM M21 R.52 June 19, 1855,undated + + + + + + 83 + 113 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, NAM M21 Roll 51 June 26, 1855,undated + + + + + + 83 + 114 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, NAM M21 R.52 July 5, 1855,undated + + + + + + 83 + 115 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, NAM M234 R404: 717-19 July 9, 1855,undated + + + + + + 83 + 116 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, NAM M21 R52 July 10, 1855,undated + + + + + + 83 + 117 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, NAM M21 R52 July 14, 1855 (Folder 1 of 2),undated + + + + + + 83 + 118 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, NAM M21 R52 July 14, 1855 (Folder 2 of 2),undated + + + + + + 83 + 119 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, NAM M234 R404: 721-22 July 17, 1855,undated + + + + + + 83 + 120 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, NAM M21 R52 July 20, 1855,undated + + + + + + 83 + 121 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, NAM M234 R404: 723 July 24, 1855,undated + + + + + + 83 + 122 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, NAM M21 R52 July 28, 1855 (Folder 1 of 2),undated + + + + + + 83 + 123 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, NAM M21 R52 July 28, 1855 (Folder 2 of 2),undated + + + + + + 83 + 124 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, NAM M234 R404: 580-81 Aug. 29, 1855,undated + + + + + + 83 + 125 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, NAM M606 R2: 255 Dec. 17, 1855,undated + + + + + + 83 + 126 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, NAM M21 R53 Jan. 2, 1856,undated + + + + + + 83 + 127 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, NAM M21 R54:90 April 29, 1856,undated + + + + + + 83 + 128 + Box 8 Saginaw Chippewa, Clifton report, Supplemental References, H-211 April 14, 1859,undated + + + + + + 84 + 1 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM (?) Aug. 30, 1859,undated + + + + + + 84 + 2 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: Kappler p. 824 Treaty w/ Potawatomi Nov. 15, 1861,undated + + + + + + 84 + 3 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R407 Feb. 15, 1864,undated + + + + + + 84 + 4 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: HR 133, Terms of Treaties, April 7, 1864,undated + + + + + + 84 + 5 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: Rept. Sec. of Interior Nov. 30, 1866,undated + + + + + + 84 + 6 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: MI Constitution, 1908,undated + + + + + + 84 + 7 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: CCF Zimmerman to Elk July 9, 1925,undated + + + + + + 84 + 8 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: CCF Zimmerman to Woodruff May 23, 1926 (?),undated + + + + + + 84 + 9 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: H-211 Amended Petition June 30, 1927,undated + + + + + + 84 + 10 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: CCF Christy to COIA May 25, 1935,undated + + + + + + 84 + 11 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: CCF Collier to Elk June 14, 1935,undated + + + + + + 84 + 12 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: ICC DKT 13-H Aug. 14, 1941,undated + + + + + + 84 + 13 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: ICC DKT 13-H Dec. 3, 1941,undated + + + + + + 84 + 14 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: ICC DKT 13-H Oct. 22, 1953,undated + + + + + + 84 + 15 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: Kappler p. 611 Treaty w/ Omaha March 16, 1854,undated + + + + + + 84 + 16 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: Kvasnicka and Viola, G. Manypenny bio.,1979 + + + + + + 84 + 17 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: Wilkinson, Charles,1987 + + + + + + 84 + 18 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R746 April 17, 1841,undated + + + + + + 84 + 19 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: HR 27 28-1 v. 1 2p. [CS 445] Jan. 12, 1844,undated + + + + + + 84 + 20 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: 33 Cong Sec. 1 ch. 166, p. 649 Aug. 4, 1854,undated + + + + + + 84 + 21 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 75 OIACR Mack 1855, G-541 plus half Dec. 5, 1855,undated + + + + + + 84 + 22 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R.409 Nov. 14, 1870,undated + + + + + + 84 + 23 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R.409 Dec. 19, 1870,undated + + + + + + 84 + 24 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R.409 April 16, 1871,undated + + + + + + 84 + 25 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M1011 R.89 Aug. 2, 1911,undated + + + + + + 84 + 26 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R.745 May 13, 1837,undated + + + + + + 84 + 27 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R.745 Oct. 2, 1837,undated + + + + + + 84 + 28 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R.745 Nov. 6, 1837,undated + + + + + + 84 + 29 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R745 Feb. 9, 1838,undated + + + + + + 84 + 30 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R745 Aug. 22, 1838,undated + + + + + + 84 + 31 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R745 1839,undated + + + + + + 84 + 32 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R745 Jan. 5, 1839,undated + + + + + + 84 + 33 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R745 Feb. 26, 1839,undated + + + + + + 84 + 34 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R746 July 22, 1840,undated + + + + + + 84 + 35 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R746 Nov. 23, 1840,undated + + + + + + 84 + 36 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R.746 Jan. 23, 1841,undated + + + + + + 84 + 37 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R746 April 17, 1841,undated + + + + + + 84 + 38 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R746 Nov. 4, 1841,undated + + + + + + 84 + 39 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R746 Nov. 11, 1841,undated + + + + + + 84 + 40 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: Fox 1942, 1841-1890 (1843),undated + + + + + + 84 + 41 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R746 Oct. 30, 1844,undated + + + + + + 84 + 42 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R746 June 23, 1845,undated + + + + + + 84 + 43 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R746 June 30, 1845,undated + + + + + + 84 + 44 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NSR 112 30-1 v. 1 5p. [CS 512] April 7, 1848,undated + + + + + + 84 + 45 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R746 April 7, 1848,undated + + + + + + 84 + 46 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: HR 133 13-1 [CS 743] April 7, 1854,undated + + + + + + 84 + 47 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: FRJ Feb. 22, 1855,undated + + + + + + 84 + 48 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M348 R.8 May 21, 1855,undated + + + + + + 84 + 49 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R.404 June 13, 1855,undated + + + + + + 84 + 50 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: 1884: (80-81) (74-76) 1856,undated + + + + + + 84 + 51 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: CIS 1988 34th Cong. 1st Sess. pp. 1-4 Jan. 17, 1856,undated + + + + + + 84 + 52 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M21 R.54 April 25, 1856,undated + + + + + + 84 + 53 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R.405 May 26, 1856,undated + + + + + + 84 + 54 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: Gilbert 1857, RG 75 Entry 389, Vol. 2 NARS April 4, 1857,undated + + + + + + 84 + 55 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: Leach 1861, RG75 NARSDC Entry 398 July 19, 1861,undated + + + + + + 84 + 56 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG75 OIA25 Vol. 67:203 Jan. 3, 1862,undated + + + + + + 84 + 57 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: FRJ 1863,undated + + + + + + 84 + 58 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: FRJ Feb. 16, 1863,undated + + + + + + 84 + 59 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: FRJ Feb. 17, 1863,undated + + + + + + 84 + 60 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: FRJ Feb. 25, 1863 (Folder 1 of 2),undated + + + + + + 84 + 61 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: FRJ Feb. 25, 1863 (Folder 2 of 2),undated + + + + + + 84 + 62 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: FRJ Feb. 27, 1863,undated + + + + + + 84 + 63 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: FRJ March 5, 1863,undated + + + + + + 84 + 64 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: FRJ March 6, 1863 (Folder 1 of 2),undated + + + + + + 84 + 65 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: FRJ March 6, 1863 (Folder 2 of 2),undated + + + + + + 84 + 66 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: FRJ June 10, 1863,undated + + + + + + 84 + 67 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 75 NAM 234 R.407: 718-719 July 24, 1863,undated + + + + + + 84 + 68 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 75 LR Mack. 1864 L-514 NATS DC Oct. 4, 1864,undated + + + + + + 84 + 69 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: CIS 1988 38th Cong 2nd Sess. p. 3-7 Oct. 18, 1864,undated + + + + + + 84 + 70 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: FRJ Oct. 18, 1864,undated + + + + + + 84 + 71 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: HMD 46 40-3 v. 1 8p. (CS 1385) p. 6 Dec. 2, 1864,undated + + + + + + 84 + 72 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M21 R.80 May 30, 1866,undated + + + + + + 84 + 73 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 75 Indian Div. Office of Sec. Int. Letters Rec. July 14, 1866,undated + + + + + + 84 + 74 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M606 R.6 July 16, 1866,undated + + + + + + 84 + 75 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: HMD 46 40-3 v. 1 8p. [CS 1385] Feb. 10, 1869,undated + + + + + + 84 + 76 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R.409 Feb. 2, 1870,undated + + + + + + 84 + 77 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R.409 April 14, 1870,undated + + + + + + 84 + 78 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R.409 April 3, 1871,undated + + + + + + 84 + 79 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG75 BIA Lands Dir. Entry 398 NARS DC Sept. 11, 1869,undated + + + + + + 84 + 80 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R.409 May 8, 1871,undated + + + + + + 84 + 81 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R.409 May 24, 1871,undated + + + + + + 84 + 82 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R.409 Sept. 16, 1871,undated + + + + + + 84 + 83 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M234 R.409 Nov. 19, 1871,undated + + + + + + 84 + 84 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: Cowar 1872 Dec. 2, 1872,undated + + + + + + 84 + 85 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: Delano? 1874 Nov. 21, 1874,undated + + + + + + 84 + 86 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: FRJ July 6, 1875,undated + + + + + + 84 + 87 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: FRJ July 9, 1875 (Folder 1 of 2),undated + + + + + + 84 + 88 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: FRJ July 9, 1875 (Folder 2 of 2),undated + + + + + + 84 + 89 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: FRJ Sept. 22, 1875 (Folder 1 of 2),undated + + + + + + 84 + 90 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: FRJ Sept. 22, 1875 (Folder 2 of 2),undated + + + + + + 84 + 91 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: FRJ Oct. 6, 1875,undated + + + + + + 84 + 92 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: HED 44-1 v. 12 2p. [CS 1689] Feb. 1, 1876,undated + + + + + + 84 + 93 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 75 NAM M234 R.413: 523-526 July 9, 1878,undated + + + + + + 84 + 94 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 75 NAM M234 R.413 Dec. 31, 1878,undated + + + + + + 84 + 95 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 75 NAM M234 R.415: 15-16 Oct. 30, 1879,undated + + + + + + 84 + 96 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: Prucha 1984I: 570 1881,undated + + + + + + 84 + 97 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: HR 579 47-1 v. 2 13p. [CS 2066] March 1, 1882,undated + + + + + + 84 + 98 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: Showalter; Allen Oct. 5, 1883,undated + + + + + + 84 + 99 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: Allen 1885A Oct. 13, 1885,undated + + + + + + 84 + 100 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: Jenks 1885 Nov. 18, 1885,undated + + + + + + 84 + 101 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: Reynolds Ca. 1886, 1886,undated + + + + + + 84 + 102 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: ARCOIA 1890: XXXIX 1890,undated + + + + + + 84 + 103 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 279 Dkt. 13-H 1891,undated + + + + + + 84 + 104 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: FRJ Dec. 11, 1891,undated + + + + + + 84 + 105 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 75 CCF LR 1893: 8057 March 3, 1893,undated + + + + + + 84 + 106 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 75 CCF Land Div. 1893: 39829 Letterbook 267: 358-360 Oct. 30, 1893,undated + + + + + + 84 + 107 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 75 CCF LR 1893: 41617 Nov. 3, 1893,undated + + + + + + 84 + 108 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 75 CCF LR 1893: 8057 March 3, 1893,undated + + + + + + 84 + 109 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 75 CCF Land Div. 1893: 39829 Letterbook 267: 358-360 Oct. 30, 1893,undated + + + + + + 84 + 110 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 75 CCF LR 1893: 41617 Nov. 3, 1893,undated + + + + + + 84 + 111 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 75 LROIA CCF 350: 1896 Jan. 2, 1896,undated + + + + + + 84 + 112 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 75 CCF LS Reply + 1896: 350 Letterbook 325: 354-55 Feb. 19, 1896,undated + + + + + + 84 + 113 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M1011 R.89 July 1, 1912,undated + + + + + + 84 + 114 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: MPISR Admin. Rec. (Land) RG 75 FRCC April 7, 1916,undated + + + + + + 84 + 115 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: MPISR Admin. Rec. (Land Rules) RG 75 FRCC April 18, 1916,undated + + + + + + 84 + 116 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: MPISR Admin. Rec. (Land) RG75 FRCC April 21, 1916,undated + + + + + + 84 + 117 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: MPISR Admin Rec. (Land) RG75 FRCC May 20, 1916,undated + + + + + + 84 + 118 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: MPISR Admin Rec. of Subt. Land Rules, 4 Regs. RG75 FRCC Jan. 16, 1917,undated + + + + + + 84 + 119 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: MPISR Admin Rec. Land RG75 FRCC Jan. 20, 1917,undated + + + + + + 84 + 120 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M1011 R.89 1920,undated + + + + + + 84 + 121 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M1011 R.89 1921,undated + + + + + + 84 + 122 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: FRJ Oct. 29, 1925,undated + + + + + + 84 + 123 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M1011 R.89 1929,undated + + + + + + 84 + 124 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M1011 R.89 1930 (Folder 1 of 2),undated + + + + + + 84 + 125 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M1011 R.89 1930 (Folder 2 of 2),undated + + + + + + 84 + 126 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M1011 R.89 1931,undated + + + + + + 84 + 127 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NAM M1011 R.89 1932,undated + + + + + + 84 + 128 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: NFRJ Jan. 30, 1933,undated + + + + + + 84 + 129 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: FRJ Feb. 13, 1933,undated + + + + + + 84 + 130 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: FRJ rec. May 31, 1933,undated + + + + + + 84 + 131 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: FRJ rec. Aug. 3, 1933?,undated + + + + + + 84 + 132 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG75/ CCF 9609-A 1936 Tomah 068 Dec. 24, 1934,undated + + + + + + 84 + 133 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: TISR File- MI Progs. Rehab and Land Acquisition (1934-1935) Box 923879/ RG75 FRCC 1935,undated + + + + + + 84 + 134 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: TISR File- MI Progs. Rehab and Land (1934-1935) Box No. 923879/ RG75 FRCC 1935 (Folder 1 of 2),undated + + + + + + 84 + 135 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: TISR File- MI Progs. Rehab and Land (1934-1935) Box No. 923879/ RG75 FRCC 1935 (Folder 2 of 2),undated + + + + + + 84 + 136 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 75 CCF 9609 1936 Tomah O66 Sept. 9, 1935,undated + + + + + + 84 + 137 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 75 CCF 9609-A 1936 Tomah Jan. 16, 1936,undated + + + + + + 84 + 138 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG75 CCF 9609-A 1936 Tomah O68 March 7, 1936,undated + + + + + + 84 + 139 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG75 CCF No 9609-A 1936 Tomah July 31, 1936,undated + + + + + + 84 + 140 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG75 CCF 9609-A Tomah O68 Dec. 14, 1936,undated + + + + + + 84 + 141 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: BIA 1937 (B) (A) 1937,undated + + + + + + 84 + 142 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 75 CCF 9609 1936 Tomah O57 June 4, 1937,undated + + + + + + 84 + 143 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG75 CCF 9607-B 1936 Tomah O67 Oct. 21, 1937,undated + + + + + + 84 + 144 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG75 CCF 9609-A 1938/ Tomah O68 1938,undated + + + + + + 84 + 145 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG75/ CCF 9609 1936/ Tomah O57 March 16, 1938,undated + + + + + + 84 + 146 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG279 Dkt. 13-H ICC Records Aug. 14, 1941,undated + + + + + + 84 + 147 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 279 Dkt. 13-14 Dec. 3, 1941,undated + + + + + + 84 + 148 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 75 CCI 9609 1936 Tomah O66 March 1947,undated + + + + + + 84 + 149 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 279 Dkt. 13-H ? 1952,undated + + + + + + 84 + 150 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 279 Dkt. 13-14 March 14 and 17, 1952,undated + + + + + + 84 + 151 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 279 13-H Sept. 30, 1952,undated + + + + + + 84 + 152 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 279 Dkt. 13-H Nov. 25, 1952,undated + + + + + + 84 + 153 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: RG 279 Dunckell 13and 1 Oct. 22, 1953,undated + + + + + + 84 + 154 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: US Dept. of Comm. 1974: 232-233 1974,undated + + + + + + 84 + 155 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: BIF 1975 July 1975,undated + + + + + + 84 + 156 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: Walely and Tilman 1976 June 1976,undated + + + + + + 84 + 157 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: Walely and Tilman 1976 March 31, 1976,undated + + + + + + 84 + 158 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: FRJ June 2, 1978,undated + + + + + + 84 + 159 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: FRJ Sept. 22, 1978,undated + + + + + + 84 + 160 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: BOC 1986 See 1 and 2 Jan. 1986,undated + + + + + + 84 + 161 + Box 9 Saginaw Chippewa, Clifton report, footnote documents-C: Clifton’s Revisions,undated + + + + + + 85 + 1 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 1: Trigger: 1976 “Children of …” 1976,undated + + + + + + 85 + 2 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 1: Cleland 1992: “Rights of Conquest,”1992 + + + + + + 85 + 3 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 2: ed. Horr: 1974 “Chippewa Indians v.” 1974,undated + + + + + + 85 + 4 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 2: Tanner: 1987 “Atlas of …”, 1987 + + + + + + 85 + 5 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 3: Schmalz: 1991 “Ojibwa of …”,1991 + + + + + + 85 + 6 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 4: Tanner: 1987 “Atlas …”,1987 + + + + + + 85 + 7 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 5: Tanner: 1987 “Atlas…”, 1987 + + + + + + 85 + 8 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 6: Kinietz: 1940 “Indians of Western…” 1940,undated + + + + + + 85 + 9 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 6: Cleland: 1991 “Text Aided…”,1991 + + + + + + 85 + 10 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 6: Cleland: 1992 “Rights of Conquest…”,1992 + + + + + + 85 + 11 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 7: Peckham: 1947 “Pontiac and the Indian…” 1947,undated + + + + + + 85 + 12 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 8: Tanner: 1987 “Atlas…”,1987 + + + + + + 85 + 13 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 9: Kappler: 1904 “Indian Affairs…” 1904,undated + + + + + + 85 + 14 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 10: Edmunds: 1983 “Shawnee Prophet”,1983 + + + + + + 85 + 15 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 10: Sword: 1985 “President Washington’s …”,1985 + + + + + + 85 + 16 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 10: Tanner: 1987 “Atlas…”,1987 + + + + + + 85 + 17 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 11: NAM M1 R.464 Feb. 24, 1819,undated + + + + + + 85 + 18 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 11: NAM M.1 R.6: 36-37 March 27, 1819,undated + + + + + + 85 + 19 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 12: Kappler: 1904 ‘Indian Affairs…” 1904,undated + + + + + + 85 + 20 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 13: Avery: 1866 “Indians and the Pioneer…” 1866,undated + + + + + + 85 + 21 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 13: Dustin: 1919 “Saginaw Treaty…” 1919,undated + + + + + + 85 + 22 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 13: Cleland: 1992 “Rights of Conquest…”,1992 + + + + + + 85 + 23 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 14: WAP-BHC Dec. 6, 1821,undated + + + + + + 85 + 24 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 15: RG 56-26 B1 File Oct. 2, 1826,undated + + + + + + 85 + 25 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 15: RG 56-26 B1 F8 Jan. 23, 1830,undated + + + + + + 85 + 26 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 15: Perry: 1899 “Hunting Expedition…” 1899,undated + + + + + + 85 + 27 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 16: NAM M21 R.18: 179-180 March 14, 1836,undated + + + + + + 85 + 28 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 16: NAM M21 R.18: 431 May 17, 1836,undated + + + + + + 85 + 29 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 16: NAM M21 R: 19:492 Sept. 30, 1836,undated + + + + + + 85 + 30 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 17: Kappler: 1904 “Indian Affairs…” 7 stat. 491 Ott-Chip treaty 1836, 1904,undated + + + + + + 85 + 31 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 18: NAM M21 R.18:179-180 Mar. 14, 1836,undated + + + + + + 85 + 32 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 19: Kappler: 1904 Vol. 2: 461-462 (7 Stat. 503), 1904,undated + + + + + + 85 + 33 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 20: Kappler: 1904 7 Stat. 528 (Chip. Of Sag. 1837), 1904,undated + + + + + + 85 + 34 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 21: Kappler: 1904 Vol. 2: 482-485 (7 Stat. 528), 1904,undated + + + + + + 85 + 35 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 22: NAM 21 R.22: 364-365 Oct. 2, 1837,undated + + + + + + 85 + 36 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 23: Kappler: 1904 Vol. 2: 516-517 (7 Stat. 565), 1904,undated + + + + + + 85 + 37 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 24: NAM M21 R.22: 510-511 Nov. 7, 1837,undated + + + + + + 85 + 38 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 25: RG 75 BIA Civilization Div. Census of Indians w/in the Sup. of MI in 1842,undated + + + + + + 85 + 39 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 26: McClurken: 1988 “We Wish To Be…”,1988 + + + + + + 85 + 40 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 27: Willis/ Dunbar: 1970 “MI: A History…” p. 239, 1970,undated + + + + + + 85 + 41 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 28: Willis/ Dunbar: 1970 “MI: A History…” p. 249-250, 1970,undated + + + + + + 85 + 42 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 29: NAM M234 R.404: 497-498 April 12, 1854,undated + + + + + + 85 + 43 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 29: Dunbar/ Willis: 1975 “MI: A History…” p. 246, 1975,undated + + + + + + 85 + 44 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 30: NAM M21 R.52 July 12, 1855,undated + + + + + + 85 + 45 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 30: H-211 Aug. 7, 1855,undated + + + + + + 85 + 46 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 31: Cleland: 1991 “Text-Aided Archaeology”,1991 + + + + + + 85 + 47 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 32: 1884 “Portrait and Bio…” p. 536, 1884,undated + + + + + + 85 + 48 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 33: 1884 “Portrait and Bio…” p. 537, 1884,undated + + + + + + 85 + 49 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 34: DeBow: 1854 “Statistical View of the US …” p. 256, 1854,undated + + + + + + 85 + 50 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 34: 1884 “Portrait and Bio…” p. 540, 1884,undated + + + + + + 85 + 51 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 35: 1884 “Portraits and Bio…” p. 566, 1884,undated + + + + + + 85 + 52 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 36: Dunbar: 1970 “MI: A History…” p. 359, 1970,undated + + + + + + 85 + 53 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 37: Kappler: 1904 Ex order Pres. Franklin Pierce p. 847 May 14, 1855,undated + + + + + + 85 + 54 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 38: Prucha: 1969 “Sword…” 1969,undated + + + + + + 85 + 55 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 38: Voila: 1974 “Thomas L. McKenney…” 1974,undated + + + + + + 85 + 56 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 38: Prucha: 1986 “Great Father…”,1986 + + + + + + 85 + 57 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 38: Bolt: 1987 “American Indian Policy…”,1987 + + + + + + 85 + 58 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 39: McCoy: 1970 “History of Baptist…” 1970,undated + + + + + + 85 + 59 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 40: NAM M21 R.22: 364-365 Oct. 2, 1837,undated + + + + + + 85 + 60 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 41: Cleland: 1992 “Rites of Conquest,”,1992 + + + + + + 85 + 61 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 42: Prucha: 1986 “Great Father…”,1986 + + + + + + 85 + 62 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 43: 1855 “Annual Report of COIA” 1855,undated + + + + + + 85 + 63 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 44: Kvasnicka and Viola (eds.): 1979 “COIA 1979",1979 + + + + + + 85 + 64 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 45: NAM M234 R.404: 368-380 March 6, 1854,undated + + + + + + 85 + 65 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 46: NAM M234 R.404: 705-707 June 9, 1855,undated + + + + + + 85 + 66 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 47: NAM M234 R.404: 516-519 March 14, 1854,undated + + + + + + 85 + 67 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 47: NAM M234 R.404: 713-714 July 3, 1855,undated + + + + + + 85 + 68 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 48: NAM M234 R.404: 840-841 April 26, 1855,undated + + + + + + 85 + 69 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 48: NAM M234 R.404: 842-843 May 21, 1855,undated + + + + + + 85 + 70 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 49: NAM M234 R.404: 368-80 March 6, 1854,undated + + + + + + 85 + 71 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 49: NAM M234 R.404: 844-851 May 21, 1855,undated + + + + + + 85 + 72 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 51: Kappler: 1904 “Indian Affairs…” p. 847, 1904,undated + + + + + + 85 + 73 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 52: Manypenny: 1856 “Report of COIA Ex Doc. H. Rp. 34 Cong. 3 Sess p.574, 1856,undated + + + + + + 85 + 74 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 52: Prucha: 1984 “Great Father…”,1984 + + + + + + 85 + 75 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 53: Nicholson: 1856 ARCOIA 1855, p. 1, 1856,undated + + + + + + 85 + 76 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 54: Nicholson: 1858 ARCOIA 1855 p. 19, 1858,undated + + + + + + 85 + 77 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 55: Nicholson: 1858 ARCOIA 1857 p. 293, 1858,undated + + + + + + 85 + 78 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 56: US v. MI: 1855 MI-26-73CA July 25, 1855,undated + + + + + + 85 + 79 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 57: Priest: 1942 “Uncle Sam’s Stepchildren…” p. 178, 1942,undated + + + + + + 85 + 80 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 58: NAM M234 R.404: 844-851 May 21, 1855,undated + + + + + + 85 + 81 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 58: H-211 June 6, 1855,undated + + + + + + 85 + 82 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 58: Detroit Daily Free Press July 26, 1855,undated + + + + + + 85 + 83 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 59: M234 R.404: 368-380 March 6, 1854,undated + + + + + + 85 + 84 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 59: NAM M234 R.404: 708-710 June 13, 1855,undated + + + + + + 85 + 85 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 60: Detroit Daily Free Press: July 29, 1855,undated + + + + + + 85 + 86 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 61: Kappler: 1904 “Indian Affairs…” 11 Stat. 633, 1904,undated + + + + + + 85 + 87 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 62: Detroit Daily Free Press: Aug. 2, 1855,undated + + + + + + 85 + 88 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 63: NAM M234 R.404: 705-707 June 9, 1855,undated + + + + + + 85 + 89 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 63: NAM M234 R.404: 713-714 July 3, 1855,undated + + + + + + 85 + 90 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 63: NAM M234 R.404: 978-979 July 7, 1855,undated + + + + + + 85 + 91 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 63: NAM M234 R.404: 574-576 July 14, 1855,undated + + + + + + 85 + 92 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 64: Kappler: 1904 “Indian Affairs…” p. 847, 1904,undated + + + + + + 85 + 93 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 65: NAM M234 R.404: 368-380 March 6, 1854,undated + + + + + + 85 + 94 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 65: NAM M234 R.404: 516-519 March 14, 1854,undated + + + + + + 85 + 95 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 66: NAM M234 R.404: 625-627 April 12, 1855,undated + + + + + + 85 + 96 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 66: NAM M234 R.404: 915-917 Sept. 8, 1855,undated + + + + + + 85 + 97 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 67: 1884 “Portrait…” p. 536, 1884,undated + + + + + + 85 + 98 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 68: Kappler: 1904 “Indian Affairs…” p. 846, 1904,undated + + + + + + 85 + 99 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 69: Kappler: 1904 “Indian Affairs…” p. 846, 1904,undated + + + + + + 85 + 100 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 70: H-211: April 14, 1859 letter book 60 p. 444, 1859,undated + + + + + + 85 + 101 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 71: Kappler: 1904 “Indian Affairs…” 1904,undated + + + + + + 85 + 102 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 72: Manypenny: 1976 “Our Indian Wards…” (intro.), 1976,undated + + + + + + 85 + 103 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 73: US v. MI (MI-26-73CA) Plaintiff Ex. p.19 July 25, 1855,undated + + + + + + 85 + 104 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 74: NAM M234 R.404: 915-917 Sept. 8, 1855,undated + + + + + + 85 + 105 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 75: E Saginaw Courier: July 12, 1860 Vol. 1, No. 5, 1860,undated + + + + + + 85 + 106 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 75: NAM M234 R.406: 994-995 July 10, 1861,undated + + + + + + 85 + 107 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 76: NAM M234 R.405: 119-120 June 19, 1856,undated + + + + + + 85 + 108 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 77: H-211 April 14, 1859 p. 444, 1859,undated + + + + + + 85 + 109 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 78: NAM M234 R.405: 633-634 April 4, 1857,undated + + + + + + 85 + 110 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 78: NAM M234 R.406: 463-466 June 21, 1859,undated + + + + + + 85 + 111 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 78: NAM M234 R.406: 569-573 June 21, 1859,undated + + + + + + 85 + 112 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 78: NAM M234 R.406: 706-707 June 8, 1860,undated + + + + + + 85 + 113 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 78: NAM M234 R.406: 1019-1023 April 3, 1861,undated + + + + + + 85 + 114 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 78: NAM: M234 R.406: 906-907 Sept. 10, 1861,undated + + + + + + 85 + 115 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 78: NAM M234 R.407: 134-136 Nov. 28, 1862,undated + + + + + + 85 + 116 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 78: NAM M234 R.407: 197-199 May 27, 1863,undated + + + + + + 85 + 117 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 78: NAM M234 R.407: 470-471 Feb. 15, 1864,undated + + + + + + 85 + 118 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 78: NAM M234 R.407: 467-469 April 9, 1864,undated + + + + + + 85 + 119 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 79: 36th Cong. 2nd Sess.: 1861 GW Bowman Printer 1861: 34-35,undated + + + + + + 85 + 120 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 80: NAM M234 R.404: 516-519 March 14, 1854,undated + + + + + + 85 + 121 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 80: Kappler: 1904 “Indian Affairs…” Vol. 1: 846, 1904,undated + + + + + + 85 + 122 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 81: Kappler: 1904 “Indian Affairs…” p. 725-731, 1904,undated + + + + + + 85 + 123 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 82: Proceedings of a Council w/ Chip and Ott: July 25, 1855,undated + + + + + + 85 + 124 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 83: NAM M234 R.405: 244-251 Feb. 25, 1856,undated + + + + + + 85 + 125 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 84: NAM M234 R.405: 295-297 April 2, 1856,undated + + + + + + 85 + 126 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 85: NAM M234 R.405: 307-308 April 9, 1856,undated + + + + + + 85 + 127 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 86: NAM M234 R.405: 237-238 April 14, 1856,undated + + + + + + 85 + 128 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 87: NAM M234 R.405: 119-120 June 19, 1856,undated + + + + + + 85 + 129 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 88: NAM M234 R.405: 154-155 Aug. 14, 1856,undated + + + + + + 85 + 130 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 89: NAM M234 R.405: 633-634 April 4, 1857,undated + + + + + + 85 + 131 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 90: NAM M234 R.405: 559-560 Nov. 2, 1857,undated + + + + + + 85 + 132 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 91: H-211 (letter book 60:44) April 14, 1859,undated + + + + + + 85 + 133 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 92: NAM M234 B.406: 547-549 Aug. 30, 1859,undated + + + + + + 85 + 134 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 93: NAM M234 R.406: 755-757 Nov. 19, 1860,undated + + + + + + 85 + 135 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 94: NAM M234 R.406: 994-995 July 10th, 1861,undated + + + + + + 85 + 136 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 95: NAM M234 R.404: 833 Dec. 6, 1855 (Folder 1 of 2),undated + + + + + + 85 + 137 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 95: NAM M234 R.404: 833 Dec. 6, 1855 (Folder 2 of 2),undated + + + + + + 85 + 138 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 95: NAM M234 R.406:1018 Oct. 31, 1861,undated + + + + + + 85 + 139 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 95: NAM M234 R.407: 134-136 Nov. 28, 1862,undated + + + + + + 85 + 140 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 96: NAM M234 R.407: 470-471 Feb. 15, 1864,undated + + + + + + 85 + 141 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 96: NAM M234 R.407: 467-489 April 9, 1864 ,undated + + + + + + 85 + 142 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 97: NAM M234 R.407: 467-469 April 9, 1864 ,undated + + + + + + 85 + 143 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 97: NAM M21 R.75: 181-182 Sept. 3, 1864,undated + + + + + + 85 + 144 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 98: NAM M234 R.407: 677-707 1864,undated + + + + + + 85 + 145 + Box 10 Saginaw Chippewa, Cleland report, reference documents: Footnote 99: NAM M234 R.407: 470-471 Feb. 15, 1864,undated + + + + + + 86 + 1 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 1: Cleland 1992: “Rites of Conquest…”,1992 + + + + + + 86 + 2 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 1: Trigger: 1976 “Children of …”,1976 + + + + + + 86 + 3 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 1: Trigger: 1976 “Children of …”,1976 + + + + + + 86 + 4 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 2: Tanner: 1987 “Atlas of…”,1987 + + + + + + 86 + 5 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 2: ed. Horr: 1974 “Chippewa Indians v.”,1974 + + + + + + 86 + 6 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 3: Schmalz: 1991 “Ojibwa of…",1991 + + + + + + 86 + 7 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 4: Tanner: 1987 “Atlas…”,1987 + + + + + + 86 + 8 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 5: Tanner: 1987 “Atlas…”,1987 + + + + + + 86 + 9 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 6: Cleland: 1991 “Text Aided…”,1991 + + + + + + 86 + 10 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 6: Cleland: 1992 “Rites of Conquest…”,1992 + + + + + + 86 + 11 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 6: Kinietz: 1940 “Indians of the Western…”1940,undated + + + + + + 86 + 12 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 7: Peckham: 1947 “Pontiac and the Indian…” 1947,undated + + + + + + 86 + 13 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 8: Tanner: 1987 “Atlas…”,1987 + + + + + + 86 + 14 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 9: Kappler: 1904 “Indian Affairs…” 1904,undated + + + + + + 86 + 15 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 10: Sword: 1985 “President Washington’s…”,1985 + + + + + + 86 + 16 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 10: Edmunds: 1983 “Shawnee Prophet.”,1983 + + + + + + 86 + 17 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 10: Tanner: 1987 “Atlas…” [There is no footnote 11 documentation],1987 + + + + + + 86 + 18 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 12: Kappler: 1904 “Indian Affairs…” 1904,undated + + + + + + 86 + 19 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 13: Cleland: 1992 “Rites of Conquest…”,1992 + + + + + + 86 + 20 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 13: Dustin: 1919 “Saginaw Treaty…” 1919,undated + + + + + + 86 + 21 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 14: WAP-BHC Dec. 6, 1821,undated + + + + + + 86 + 22 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 15: RG 56-26 B1 F8 Jan. 23, 1830,undated + + + + + + 86 + 23 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 15: RG 56-26 B1 F16 Oct. 2, 1826,undated + + + + + + 86 + 24 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 15: Perry: 1899 “Hunting Expedition…” 1899,undated + + + + + + 86 + 25 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 16: NAM M21 R.18: 179-180 Mar. 14, 1836,undated + + + + + + 86 + 26 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 16: NAM M21 R.18: 431 May 17, 1836,undated + + + + + + 86 + 27 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 16: NAM M21 R.19: 492 Sept. 30, 1836,undated + + + + + + 86 + 28 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 17: Kappler: 1904 “Indian Affairs…” 7 stat. 491 Ott-Chip treaty 1836, 1904,undated + + + + + + 86 + 29 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 18: NAM M21 R.18: 179-180 Mar. 14, 1836,undated + + + + + + 86 + 30 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 19: Kappler: 1904 Vol. 2: 461-462 (7 stat. 503), 1904,undated + + + + + + 86 + 31 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 20: Kappler: 1904 7 Stat. 528. (Chip. of Sag. 1837), 1904,undated + + + + + + 86 + 32 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 21; Kappler: 1904 Vol. 2: 482-485 (7 Stat. 528), 1904,undated + + + + + + 86 + 33 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 22: NAM M21 R.22: 364-365 Oct. 2, 1837,undated + + + + + + 86 + 34 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 23: Kappler: 1904 Vol. 2: 516-517 (7 stat. 565), 1904,undated + + + + + + 86 + 35 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 24: NAM M21 R.22: 510-511 Nov. 7, 1837,undated + + + + + + 86 + 36 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 25: RG 75 BIA Civilization Div. Census of Indians w/ the Sup. Of MI in 1842,undated + + + + + + 86 + 37 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 26: McClurken: 1988 “We Wish to Be…” 1988,undated + + + + + + 86 + 38 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 27: Willis, Dunbar: 1970 “MI: A History…” p. 239, 1970,undated + + + + + + 86 + 39 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 28: Willis, Dunbar: 1970 “MI: A History…” p. 249-250, 1970,undated + + + + + + 86 + 40 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 29: Dunbar/ Willis: 1975 “MI: A History…” p. 246, 1975,undated + + + + + + 86 + 41 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 29: NAM M234 R.404: 497-498 April 12, 1854,undated + + + + + + 86 + 42 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 30: NAM M21 R.52 July 12, 1855,undated + + + + + + 86 + 43 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 30: H-211 Aug. 7, 1855,undated + + + + + + 86 + 44 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 31: Cleland: 1991 “Text Aided Archaeology”,1991 + + + + + + 86 + 45 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 32: 1884 “Portraits and Bio…” p. 536, 1884,undated + + + + + + 86 + 46 + Box 11 Saginaw Chippewa, Cleland report, reference documents:Footnote 33: 1884 “Portrait and Bio…” p. 537, 1884,undated + + + + + + 86 + 47 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 34: De Bow: 1854 “Statistical View of the US …” p. 256, 1854,undated + + + + + + 86 + 48 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 34: 1884 “Portrait and Bio…” p. 540, 1884,undated + + + + + + 86 + 49 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 35: 1884 “Portraits and Bio…” p. 566, 1884,undated + + + + + + 86 + 50 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 36: Dunbar: 1970 “MI: A History…” p. 359, 1970,undated + + + + + + 86 + 51 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 37: Kappler: 1904 Ex order Pres. Franklin Pierce p. 847, May 14, 1855,undated + + + + + + 86 + 52 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 38: Prucha: 1969 “Sword…” 1969,undated + + + + + + 86 + 53 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 38: Prucha: 1986 “Great Father…”,1986 + + + + + + 86 + 54 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 38: Viola: 1974 “Thomas L. McKenney…”,1974 + + + + + + 86 + 55 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 38: Bolt: 1987 “American Indian Policy…” [There is no footnote 39 documentation],1987 + + + + + + 86 + 56 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 40: NAM M21 R.22: 364-365 Oct. 2, 1837,undated + + + + + + 86 + 57 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 41: Cleland: 1992 “Rites of Conquest…”,1992 + + + + + + 86 + 58 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 42: Prucha: 1986 “Great Father…”,1986 + + + + + + 86 + 59 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 43: 1855 “Annual Report of COIA” 1855,undated + + + + + + 86 + 60 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 44: Kvasnicka and Viola (eds.): 1979 “COIA”,1979 + + + + + + 86 + 61 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 45: NAM M234 R.404: 368-380 March 6, 1854,undated + + + + + + 86 + 62 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 46: NAM M234 R.404: 705-707 June 9, 1855,1986 + + + + + + 86 + 63 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 47: NAM M234 R.404: 516-519 March 14, 1854,undated + + + + + + 86 + 64 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 47: NAM M234 R.404: 713-714 July 3, 1855,undated + + + + + + 86 + 65 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 48: NAM M234 R.404: 840-841 April 26, 1855,undated + + + + + + 86 + 66 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 48: NAM M234 R.404: 842-843 May 21, 1855,undated + + + + + + 86 + 67 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 49: NAM M234 R.404: 368-80 March 6, 1854,1986 + + + + + + 86 + 68 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 49: NAM M234 R.404: 844-851 May 21, 1855,undated + + + + + + 86 + 69 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 49: NAM M234 R.404: 713-714 July 3, 1855,undated + + + + + + 86 + 70 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 50: NAM M234 R.404: 368-380 March 6, 1854,undated + + + + + + 86 + 71 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 51: Kappler: 1904 “Indian Affairs…” p. 847, 1904,undated + + + + + + 86 + 72 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 52: Prucha: 1984 “Great Father…”,1984 + + + + + + 86 + 73 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 52: Manypenny: 1856 “Report of COIA Ex Doc. H. Rp. 34 Cong. 3 sess. p. 574, 1856,undated + + + + + + 86 + 74 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 53: Nickolson: 1856 ARCOIA, 1855 p. 1, ARCOIA 1855,undated + + + + + + 86 + 75 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 54: Nickolson: 1858 ARCOIA 1857 p. 19, 1858,undated + + + + + + 86 + 76 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 55: Nickolson: 1858 ARCOIA 1857 p. 293, 1858,undated + + + + + + 86 + 77 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 56: US v. MI: 1855, MI-26-73CA July 25, 1855,undated + + + + + + 86 + 78 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 57: Priest: 1942 “Uncle Sam’s stepchildren…” p. 178, 1942,undated + + + + + + 86 + 79 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 58: NAM M234 R.404: 844-851 May 21, 1855,undated + + + + + + 86 + 80 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 58: H-211 June 6, 1855,undated + + + + + + 86 + 81 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 58: Detroit Daily Free Press, July 26, 1855,undated + + + + + + 86 + 82 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 59: NAM M234 R.404: 708-710, June 13, 1855,undated + + + + + + 86 + 83 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 60: Detroit Daily Free Press: July 29, 1855,undated + + + + + + 86 + 84 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 61: Kappler: 1904 “Indian Affairs…” 11 Stat. 633, 1904,undated + + + + + + 86 + 85 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 62: Detroit Daily Free Press: Aug. 2, 1855,undated + + + + + + 86 + 86 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 63: NAM M234 R.404: 705-707, June 9, 1855,undated + + + + + + 86 + 87 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 63: NAM M234 R.404: 713-714, July 3, 1855,undated + + + + + + 86 + 88 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 63: NAM M234 R.404: 978-979, July 7, 1855,undated + + + + + + 86 + 89 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 63: NAM M234 R.404: 574-576, July 14, 1855,undated + + + + + + 86 + 90 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 64: Kappler: 1904 “Indian Affairs…” p. 847, 1904,undated + + + + + + 86 + 91 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 65: NAM M234 R.404: 368-380, March 6, 1854,undated + + + + + + 86 + 92 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 65: NAM M234 R.404: 516-519, March 14, 1854,undated + + + + + + 86 + 93 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 66: NAM M234 R.404: 625-627, April 12, 1855,undated + + + + + + 86 + 94 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 66: NAM M234 R.404: 915-917, Sept. 8, 1855,undated + + + + + + 86 + 95 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 67: 1884 “Portrait…” p. 536, 1884,undated + + + + + + 86 + 96 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 68: Kappler: 1904 “Indian Affairs…” p. 846, 1904 (Folder 1 of 2),undated + + + + + + 86 + 97 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 69: Kappler: 1904 “Indian Affairs…” p. 846, 1904 (Folder 2 of 2),undated + + + + + + 86 + 98 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 70: H-211: April 14, 1859, letter book 60, p. 444, 1859,undated + + + + + + 86 + 99 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 71: Kappler: 1904 “Indian Affairs…” p. 846, 1904,undated + + + + + + 86 + 100 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 72: Manypenny: 1972 “Our Indian wards…” (intro.), 1972,undated + + + + + + 86 + 101 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 73: US v. MI (MI-26-73CA) Plaintiff Ex. p. 19, July 25, 1855,undated + + + + + + 86 + 102 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 74: NAM M234 R.404: 915-917, Sept. 8, 1855,undated + + + + + + 86 + 103 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 75: E Saginaw Courier: July 12, 1860, vol. 1, no. 5, 1860,undated + + + + + + 86 + 104 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 75: NAM M234 R.406: 994-995, July 10, 1861,undated + + + + + + 86 + 105 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 76: NAM M234 R.405: 119-120 June 19, 1856,undated + + + + + + 86 + 106 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 77: H-211: April 14, 1859, p. 444, 1859,undated + + + + + + 86 + 107 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 78: NAM M234 R.405: 633-634 April 4, 1857,undated + + + + + + 86 + 108 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 78: NAM M234 R.406: 463-466, June 21, 1859,undated + + + + + + 86 + 109 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 78: NAM M234 R.406: 569-573, June 21, 1859,undated + + + + + + 86 + 110 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 78: NAM M234 R.406: 706-707, June 8, 1860,undated + + + + + + 86 + 111 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 78: NAM M234 R.406: 906-907, Sept. 10, 1860,undated + + + + + + 86 + 112 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 78: NAM M234 R.406: 1019-1023, April 3, 1861,undated + + + + + + 86 + 113 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 78: NAM M234 R.407: 134-136, Nov. 28, 1862,undated + + + + + + 86 + 114 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 78: NAM M234 R.407: 197-199, May 27, 1863,undated + + + + + + 86 + 115 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 78: NAM M234 R.407: 470-471 Feb. 15, 1884,undated + + + + + + 86 + 116 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 78: NAM M234 R.407: 467-469, April 9, 1864,undated + + + + + + 86 + 117 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 79: 36th Cong. 2nd Sess: 1861 G.W. Bowman Printer 1861: 34-35, 1861,undated + + + + + + 86 + 118 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 80: Kappler: 1904 “Indian Affairs…” Vol. I: 846, 1904,undated + + + + + + 86 + 119 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 80: NAM M234 R.404: 516-519, March 14, 1854,undated + + + + + + 86 + 120 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 81: Kappler: 1904 “Indian Affairs…” p. 725-731, 1904,undated + + + + + + 86 + 121 + Box 11 Saginaw Chippewa, Cleland report, reference documents: Footnote 82: Proceedings of a Council w. Chip. and Ott.: July 25, 1855,undated + + + + + + 87 + 1 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 100: NAM M21 R.75: 181-182, Sept. 3, 1864,undated + + + + + + 87 + 2 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 101: Kappler: 1904 “Indian Affairs…” (14 stat. 657), 1904,undated + + + + + + 87 + 3 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 102: NAM M21 R.75: 181-182, Sept. 3, 1864,undated + + + + + + 87 + 4 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 103: Dunbar: 1970 “MI: A History…” 1970,undated + + + + + + 87 + 5 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 104: NAM M234 R.407: 538-540, Oct. 4, 1864,undated + + + + + + 87 + 6 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 105: NAM234 R.408: 877-893, Nov. 13, 1869,undated + + + + + + 87 + 7 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 106: NAM M234 R.407: 371-374, Dec. 1, 1864,undated + + + + + + 87 + 8 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 106: NAM M234 R.407: 368-370, Dec. 6, 1864,undated + + + + + + 87 + 9 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 107: NAM M234 R.407: 1006-1008, Dec. 2, 1864,undated + + + + + + 87 + 10 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 108: NAM M234 R.408: 894-897, Nov. 4, 1869,undated + + + + + + 87 + 11 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 109: NAM M234 R.408: 667-674, 1869,undated + + + + + + 87 + 12 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 110: NAM M234 R.408: 858-862, Sept. 29, 1869,undated + + + + + + 87 + 13 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 111: NAM M21 R.92: 350-353, Oct. 21, 1869,undated + + + + + + 87 + 14 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 112: NAM M234 R.408: 424-429, June 5, 1868,undated + + + + + + 87 + 15 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 113: NAM M234 R.408: 877-893, Nov. 13, 1869,undated + + + + + + 87 + 16 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 114: NAM M21 R.91: July 30, 1869,undated + + + + + + 87 + 17 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 115: NAM M234 R.408: 894-897, Nov. 4, 1869,undated + + + + + + 87 + 18 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 115: NAM M234 R.408: 877-893, Nov. 13, 1869,undated + + + + + + 87 + 19 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 116: NAM M234 R.409: 148-153, 1870,undated + + + + + + 87 + 20 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 116: NAM M234 R.409: 121-133, Feb. 4, 1870 (Folder 1 of 2),undated + + + + + + 87 + 21 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 117: NAM M234 R.409: 121-133, Feb. 4, 1870 (Folder 2 of 2),undated + + + + + + 87 + 22 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 118: NAM M234 R.409: 421-424, Oct. 31, 1870,undated + + + + + + 87 + 23 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 119: NAM M234 R.409: 462-464, 1871,undated + + + + + + 87 + 24 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 119: NAM M234 R.409: 903-909, Dec. 19, 1870,undated + + + + + + 87 + 25 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 120: NAM M234 R.409: 968-969, June 15, 1871,undated + + + + + + 87 + 26 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 121: H-211 (Mack, L373, 1871) Oct. 19, 1871,undated + + + + + + 87 + 27 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 122: NAM M234 R.409: 421-424, Oct. 31, 1870,undated + + + + + + 87 + 28 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 122: Saginaw Weekly Enterprise No. 781, Nov. 3, 1870,undated + + + + + + 87 + 29 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 123: NAM M234 R.409: 303-309, Nov. 8, 1870,undated + + + + + + 87 + 30 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 124: NAM M234 R.409: 634-636, Sept. 14, 1871,undated + + + + + + 87 + 31 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 125: NAM M234 R.409: 896-898, Sept. 16, 1871,undated + + + + + + 87 + 32 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 126: H-211, 5434 (Mack. p. 844, 1872), May 27, 1872,undated + + + + + + 87 + 33 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 127: NAM M234 R.409: 639-641, Sept. 18, 1871,undated + + + + + + 87 + 34 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 128: Priest: 1942 “Uncle Sam’s …” p. 95-105, 1942,undated + + + + + + 87 + 35 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 128: Prucha: 1984 “Great Father…” p. 190,1984 + + + + + + 87 + 36 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 129: Kappler: 1904 “Indian Affairs…” (US Stat. 16: 566), 1904,undated + + + + + + 87 + 37 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 130: H-211, 5435 (Mack. D915, 1872), 1872,undated + + + + + + 87 + 38 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 131: NAM M234 R.411: 546-551, May 28, 1875,undated + + + + + + 87 + 39 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 131: NAM M234 R.411: 552-559, Aug. 2, 1875,undated + + + + + + 87 + 40 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 132: NAM M234 R.411: 760-762, Jan. 25, 1876,undated + + + + + + 87 + 41 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 133: H-211, 2496, Feb. 22, 1876,undated + + + + + + 87 + 42 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 134: H-211, 4875, Feb. 26, 1876,undated + + + + + + 87 + 43 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 134: NAM M234 R.414: 124-125, Nov. 6, 1879,undated + + + + + + 87 + 44 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 135: NAM M234 R.411: 876-880, June 30, 1876,undated + + + + + + 87 + 45 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 135: NAM M234 R.412: 152-154, Jan. 22, 1877,undated + + + + + + 87 + 46 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 135: NAM M234 R.411: 9-47, Jan. 18, 1878,undated + + + + + + 87 + 47 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 136: LROIA 22911- 1885, Sept. 26, 1885,undated + + + + + + 87 + 48 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 137: NAM M234 R.413: 304-309, Jan. 15, 1878,undated + + + + + + 87 + 49 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 138: H-211, 2496: Feb. 22, 1876,undated + + + + + + 87 + 50 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 138: NAM M234 R.411: 9-47, Jan. 18, 1878,undated + + + + + + 87 + 51 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 138: NAM M234 R.414: 34-44, Oct. 25, 1879,undated + + + + + + 87 + 52 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 138: LROIA 10005- 1891, May 15, 1886,undated + + + + + + 87 + 53 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 139: NAM M234 R.414: 34-44, Oct. 25, 1879,undated + + + + + + 87 + 54 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 140: NAM M234 R.414: 34-44, Oct. 25, 1879,undated + + + + + + 87 + 55 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 141: NAM M234 R.414: 34-44, Oct. 25, 1879,undated + + + + + + 87 + 56 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 142: NAM M234 R.410: 479-481, July 6, 1872,undated + + + + + + 87 + 57 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 143: NAM M234 R.411: 9-47, Jan. 18, 1878,undated + + + + + + 87 + 58 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 144: Gov Printing Office: 1878, ARCOIA, 1878,undated + + + + + + 87 + 59 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 145: NAM M234 R.412: 280-286, March 28, 1877,undated + + + + + + 87 + 60 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 146: H-211, 5421 (Mack, 5847, 1878), 1878,undated + + + + + + 87 + 61 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 146: NAM M234 R.413: 730-732, June 22, 1878,undated + + + + + + 87 + 62 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 146: NAM M234 R.415: 175-179, March 18, 1880,undated + + + + + + 87 + 63 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 146: NAM M234 R.414: 639-640, June 19, 1880,undated + + + + + + 87 + 64 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 146: NAM M234 R.411: 939-941, Oct. 30, 1876,undated + + + + + + 87 + 65 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 146: H-211 5420 (Mack L118, 1878), Feb. 18, 1878,undated + + + + + + 87 + 66 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 146: LR Mack Agency (1870-1877?), April 21, 1881,undated + + + + + + 87 + 67 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 146: H-211 (Gen. Land Office 32485-1881), May 7, 1881,undated + + + + + + 87 + 68 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 147: NAM M234 R.411: 876-880, June 30, 1876,undated + + + + + + 87 + 69 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 148: NAM M234 R.414: 172-173, April 1, 1878,undated + + + + + + 87 + 70 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 148: NAM M234 R.414: 170-171, Jan. 18, 1879,undated + + + + + + 87 + 71 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 149: Gov Printing Office: 1867, ARCOIA, 1867,undated + + + + + + 87 + 72 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 151: LROIA 13220-1886, May 15, 1886,undated + + + + + + 87 + 73 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 151: LROIA 15646-1886, June 11, 1886,undated + + + + + + 87 + 74 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 151: H-211, June 30, 1886,undated + + + + + + 87 + 75 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 151: LROIA 17295-1886, July 2, 1886,undated + + + + + + 87 + 76 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 151: LROIA 18819- 1886, July 14, 1886,undated + + + + + + 87 + 77 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 152: LROIA 17497-1888, July 5, 1888,undated + + + + + + 87 + 78 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 153: LROIA 26252-1887, Oct. 3, 1887,undated + + + + + + 87 + 79 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 153: LROIA 22911-1885, Sept. 26, 1885,undated + + + + + + 87 + 80 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 154: LROIA: 26252- 1887, Dec. 4, 1873,undated + + + + + + 87 + 81 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 155: LROIA 26252- 1887, Oct. 3, 1887,undated + + + + + + 87 + 82 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 156: Kappler: 1904 (US Stat. 24: 288-291), 1904,undated + + + + + + 87 + 83 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 157: LROIA 26252- 1887, Oct. 3, 1887,undated + + + + + + 87 + 84 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 158: LROIA 23713- 1888, Sept. 20, 1888,undated + + + + + + 87 + 85 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 159: LROIA 23932- 1888, Sept. 22, 1888,undated + + + + + + 87 + 86 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 160: LROIA 24195- 1888, Sept. 22, 1888,undated + + + + + + 87 + 87 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 161: LROIA 30040-1888, Dec. 1, 1888,undated + + + + + + 87 + 88 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 162: Hoxie: 1989, “A Final Promise…”,1989 + + + + + + 87 + 89 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 163: LROIA 13600- 1889, May 20, 1889,undated + + + + + + 87 + 90 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 164: Gov Printing Office: 1886, ARCOIA (pp. 166-167), 1886,undated + + + + + + 87 + 91 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 165: Littlefield: 1989, “Humanities and Society” (13(4): 428-441)”,1989 + + + + + + 87 + 92 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 166: LROIA 32393- 1893, Aug. 23, 1893,undated + + + + + + 87 + 93 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 167: LROIA 229905- 1895, July 16, 1895,undated + + + + + + 87 + 94 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 167: LROIA 1479- 1896, Jan. 9, 1896,undated + + + + + + 87 + 95 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 167: LROIA 50639- 1900, Oct. 9, 1900,undated + + + + + + 87 + 96 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 168: LROIA 45149- 1894, Nov. 16, 1894,undated + + + + + + 87 + 97 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 168: LROIA 48026- 1894, Dec. 6, 1894,undated + + + + + + 87 + 98 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 168: LROIA 45020- 1899, Sept. 20, 1899,undated + + + + + + 87 + 99 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 168: LROIA 36407- 1906, April 21, 1906,undated + + + + + + 87 + 100 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 169: CCF Mack 90122- 1920, 115, Nov. 4, 1920,undated + + + + + + 87 + 101 + Box 12 Saginaw Chippewa, Cleland report, reference documents: Footnote 169: Kappler: 1929, (Vol. 4: 415), June 25, 1910,undated + + + + + + 88 + 1 + Box 13 Saginaw Chippewa, Court documents: Report of the Nineteenth Century History of the Saginaw, Black River and Swan Creek Chippewa, US and Saginaw Chippewa Tribe v. MI, E.D. MI., No. 91-CV-10103-BC, Oct. 16, 1992; Report of the Nineteenth Century History of the Saginaw, Black River and Swan Creek Chippewa, US and Saginaw Chippewa Tribe v. MI, E.D. MI., No. 91-CV-10103-BC, Oct. 16, 1992 [Errata corrected Dec. 31, 1992]; Report of the Nineteenth Century History of the Saginaw, Black River and Swan Creek Chippewa, US and Saginaw Chippewa Tribe v. MI, E.D. MI., No. 91-CV-10103-BC, Oct. 16, 1992; Saginaw Chippewa and the Isabella “Reservation” – A Research Report, James A. Clifton, 1992,1992 + + + + + + 88 + 2 + Box 13 Saginaw Chippewa, Court documents: Cleland, Declaration, 2nd Declaration, March 30, 1993; Clifton, Affidavit, Research Report F.N., May 3, 1993; Complaint, Answers to Complaint, County: Isabella, Twp: Union, State: MI, City: Mt. Pleasant, Individual: Engler, etc., 1992-1993; Comparison of: Defs. – Answers to P-complaints, March 3, 1992,1992-1993 + + + + + + 88 + 3 + Box 13 Saginaw Chippewa, Court documents: P-tribe, 1st Discovery Request, 1992; Response, D- State of MI to P-Tribe, 1st discy., 1992; D-Request for Prod/ Docs, D-1st set of Interogs., 1992; Answers, Plaintiffs- Defs., 1992,1992 + + + + + + 88 + 4 + Box 13 Saginaw Chippewa, Court documents: P-Motion for P.S.J.- partial summary Judgment, 1993; D-Opposition to P-motion for P.S.J., 1993; P-Reply to D- Opposition to P-Motion for P.S.J., 1993; D-Motion for P.S.J. (Partial Summary Judgment), 1993; P-Opposition to D-Motion for P.S.J., 1993; D-Reply to P- Response to (their) D-Motion- P.S.D., 1993; Court order- setting briefing schedule, 1994,1993-1994 + + + + + + 88 + 5 + Box 13 Saginaw Chippewa, Court documents: Judgment, March 23, 1995; Appeal, Sept. 14, 1995; Supplemental memorandum of Tribe Re: Taxation, No. 91-CV-10103-BC, Saginaw Chippewa…v. State of MI, 1994; and related letters re: documents, Nov. 24, 1992, May 11, 1994,1992-1995 + + + + + + 89 + 1 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1784 04.26 CS TAB 34, 1784,undated + + + + + + 89 + 2 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1793 04.01 CS-T.45 Patent under Great Seal of Canada to Six Nations for Bay of Quinte lands, 1793,undated + + + + + + 89 + 3 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1798 03.29 CS TAB 51, 1798 ,undated + + + + + + 89 + 4 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1819 02.17 CS TAB 61, 1819,undated + + + + + + 89 + 5 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1819 02.19 CS-T.62 letter J. Askin to W. Claus, 1819,undated + + + + + + 89 + 6 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC-(Claus Papers), Vol. 11 (M.G. 19, F1), pp.143-145, T.63 ,undated + + + + + + 89 + 7 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1819 03.03 CS-T.63 Letter re: Negotiation of Surrender, 1819,undated + + + + + + 89 + 8 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1825 03.21 CS TAB 74, 1825,undated + + + + + + 89 + 9 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1826 02.22 CS TAB 82, 1826,undated + + + + + + 89 + 10 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1826 03.11 CS TAB 84, 1826,undated + + + + + + 89 + 11 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1828 11.04 CS TAB 90, 1828,undated + + + + + + 89 + 12 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1829 09.02 CS TAB 92, 1829,undated + + + + + + 89 + 13 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1834 10.02 CS TAB 164, 1834,undated + + + + + + 89 + 14 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG1O Vol. 59, p. 60184,undated + + + + + + 89 + 15 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836 03.06 CS TAB 194, 1836,undated + + + + + + 89 + 16 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836 03.21 CS TAB 199, 1836,undated + + + + + + 89 + 17 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836 05.28 CS TAB 204, 1836,undated + + + + + + 89 + 18 + Box 1 Sarnia, Calendar Documents, 1784-1836: Christian Guardian, p.146, columns 4-5, July 20, 1836,undated + + + + + + 89 + 19 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG10, Vol. 63, p.61893-61894,undated + + + + + + 89 + 20 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1837 02.08 CS TAB 230, 1837,undated + + + + + + 89 + 21 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1838 07.26 CS TAB 264, 1838,undated + + + + + + 89 + 22 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1838 09.26 CS-T.274 Memorial from the Chiefs opposing Wawanosh, 1838,undated + + + + + + 89 + 23 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1838 09.26 CS TAB 275, 1838,undated + + + + + + 89 + 24 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1838 12.21 CS TAB 285, 1838,undated + + + + + + 89 + 25 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1839 05.03 CS TAB 289, 1839,undated + + + + + + 89 + 26 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1839 06.15 CS TAB 292, 1839,undated + + + + + + 89 + 27 + Box 1 Sarnia, Calendar Documents, 1784-1836: Patriot [0042, vol.462 p.537], Sept. 2 1839,undated + + + + + + 89 + 28 + Box 1 Sarnia, Calendar Documents, 1784-1836: UCA-JDP, 86.088c, file 2, Sept. 5, 1839,undated + + + + + + 89 + 29 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1839 09.20 CS TAB 302, 1839,undated + + + + + + 89 + 30 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1839 09.24 CS TAB 304, 1839,undated + + + + + + 89 + 31 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1839 11.09 CS-T re: Agreement, 1839,undated + + + + + + 89 + 32 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1839 11.16 CS TAB 314, 1839,undated + + + + + + 89 + 33 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1839 11.16 CS TAB 316, 1839,undated + + + + + + 89 + 34 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1840 01.01 CS-T.322 Report of Committee No. 4, 18409,undated + + + + + + 89 + 35 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1840 02.18 CS-T.332 re: Settlers’ Leases on the Reserve, 1840,undated + + + + + + 89 + 36 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1840 02.20 CS TAB 333, 1840,undated + + + + + + 89 + 37 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1840 07.28 CS TAB 356, 1840,undated + + + + + + 89 + 38 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1840 09.08 CS TAB 361, 1840,undated + + + + + + 89 + 39 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1840 09.10 CS-T.362 Authorization, 1840,undated + + + + + + 89 + 40 + Box 1 Sarnia, Calendar Documents, 1784-1836: UCA-JDP 86.088C, file 3, Oct. 6, 1840, Ojebekum to Douse, 1840,undated + + + + + + 89 + 41 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1840 10.10 CS-T.365 re: Efforts of Wawanosh and Cameron, 1840,undated + + + + + + 89 + 42 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1840 10.25 CS-T.367 Replace Henry w/ Wawanosh, 1840,undated + + + + + + 89 + 43 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1840 11.28 CS-T.369 re: Letters against George Henry, 1840,undated + + + + + + 89 + 44 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1840 12.29 CS-T.377 re; Money Retained, 1840,undated + + + + + + 89 + 45 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1841 02.26 CS-T.384 re: Having Wawanosh Removed, 1841,undated + + + + + + 89 + 46 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1841 03.02 CS-T.386, Receipt of 253.14.6 pounds, 1841,undated + + + + + + 89 + 47 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1841 05.29 CS-T.392 re: Wawanosh and his friend, Cameron, 1841,undated + + + + + + 89 + 48 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1841 07.03 CS TAB 404, 1841,undated + + + + + + 89 + 49 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1842 01.01 CS TAB 429, 1842,undated + + + + + + 89 + 50 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1842 03.21 CS-T.441 re: Instructions for a Survey of Portion of Reserve sold to Malcolm Cameron, 1842,undated + + + + + + 89 + 51 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1843 CS TAB 537, 1843,undated + + + + + + 89 + 52 + Box 1 Sarnia, Calendar Documents, 1784-1836: A1843 05.27 CS TAB 478, 1843,undated + + + + + + 89 + 53 + Box 1 Sarnia, Calendar Documents, 1784-1836: Aug. 18, 1843,undated + + + + + + 89 + 54 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1843 09.23 CS TAB 506, 1843,undated + + + + + + 89 + 55 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1843 11.07 CS TAB 518, 1843,undated + + + + + + 89 + 56 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1843 11.09 CS TAB 525, 1843 ,undated + + + + + + 89 + 57 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1843 11.10 CS TAB 528, 1843,undated + + + + + + 89 + 58 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1843 11.11 CS TAB 529, 1843,undated + + + + + + 89 + 59 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1843 11.14 CS TAB 530, 1843,undated + + + + + + 89 + 60 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1843 11.16 CS TAB 536, 1843,undated + + + + + + 89 + 61 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1844 03.29 CS TAB 552, 1844,undated + + + + + + 89 + 62 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1844 03.29 CS TAB 553, 1844,undated + + + + + + 89 + 63 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1844 03.29 CS TAB 556, 1844,undated + + + + + + 89 + 64 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG10 Vol. 438, P. 890-891, Jan. 19, 1845,undated + + + + + + 89 + 65 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG10 Vol. 222, no. 8801-8900, p. 131859-131860, Nov. 30, 1848,undated + + + + + + 89 + 66 + Box 1 Sarnia, Calendar Documents, 1784-1836: Sept. 6, 1852,undated + + + + + + 89 + 67 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG10, Vol. 367 P. 340-347, Aug. 13, 1869,undated + + + + + + 89 + 68 + Box 1 Sarnia, Calendar Documents, 1784-1836: [T.879] April 15, 1919,undated + + + + + + 89 + 69 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1771 07.02 CS TAB 24, 1771,undated + + + + + + 89 + 70 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1793 01.14 CS-T.44, Patent under Great Seal, 1793,undated + + + + + + 89 + 71 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1796 08.30 CS TAB 48, 1796,undated + + + + + + 89 + 72 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1818 10.16 CS TAB 56, 1818,undated + + + + + + 89 + 73 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1818 11.11 CS TAB 58, 1818,undated + + + + + + 89 + 74 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG10 Vol. 36 P20699, March 6, 1819, T. Ridout to W. Claus, 1819,undated + + + + + + 89 + 75 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1819 03.09 CS TAB 65, 1819,undated + + + + + + 89 + 76 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1819 03.12 CS TAB 64, 1819,undated + + + + + + 89 + 77 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC- CP Vol. 11 (M.G. 19, F.1) P. 103-107, March 30, 1819,undated + + + + + + 89 + 78 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG10 Vol. 36 P. 20743-20744, April 1, 1819, J. Askin to W. Claus, 1819,undated + + + + + + 89 + 79 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG.1, Series L1 U.C. Land Book “U” C-101, P. 314-315, March 19, 1810,undated + + + + + + 89 + 80 + Box 1 Sarnia, Calendar Documents, 1784-1836: [PAC RG (.1), V.? P. 217-224.] May 9, 1820,undated + + + + + + 89 + 81 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1821 06.27 CS TAB 69, 1821,undated + + + + + + 89 + 82 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1821 06.27 CS TAB 70, 1821,undated + + + + + + 89 + 83 + Box 1 Sarnia, Calendar Documents, 1784-1836: UCA 78.128C, Box 16, file 100 #42, Sept. 27, 1822,undated + + + + + + 89 + 84 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1822 07.18 CS TAB 71, 1822,undated + + + + + + 89 + 85 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG10 Vol. 41 P. 22240-22241, May 14, 1823, G. Ironside to W. Claus, 1823,undated + + + + + + 89 + 86 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1825 03.06 CS TAB 73, 1825,undated + + + + + + 89 + 87 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1825 03.25 CS TAB 75, 1825,undated + + + + + + 89 + 88 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1825 03.28 CS TAB 77, 1825,undated + + + + + + 89 + 89 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG10 Vol. 43 P. 22770-22771, March 30, 1825, G. Ironside to W. Claus, 1825,undated + + + + + + 89 + 90 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC C.O. 42/260, P. 139-142, April 6, 1825 ,undated + + + + + + 89 + 91 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1825 04.26 CS TAB 78, 1825,undated + + + + + + 89 + 92 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1825 08.14 CS TAB 80, 1825,undated + + + + + + 89 + 93 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG10 Vol. 43 P. 22865-22866, Oct. 2, 1825, G. Ironside to W. Claus, 1825,undated + + + + + + 89 + 94 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1825 12.20 CS TAB 81, 1825,undated + + + + + + 89 + 95 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1826 02.24 CS TAB 83, 1826,undated + + + + + + 89 + 96 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1826 04.11 CS TAB 85, 1826,undated + + + + + + 89 + 97 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1826 04.15 CS TAB 86, 1826,undated + + + + + + 89 + 98 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1826 05.05 CS-T.87 Minutes of Council- Petition of Sundry Settlers, 1826,undated + + + + + + 89 + 99 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1829 07.06 CS TAB 91, 1829,undated + + + + + + 89 + 100 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1829 11.16 CS TAB 94, 1829,undated + + + + + + 89 + 101 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG.10, Vol. 45, P. 23899-23901, Dec. 23, 1829,undated + + + + + + 89 + 102 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1830 02.13 CS-T.96 re: Establishment of Settlement, 1830,undated + + + + + + 89 + 103 + Box 1 Sarnia, Calendar Documents, 1784-1836: Christian Guardian, “Missionary Intelligence.” Feb. 27, 1830 ,undated + + + + + + 89 + 104 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1830 03.12 CS TAB 97, 1830,undated + + + + + + 89 + 105 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG.10, Vol. 5, P.2426- T.20A, May 3, 1830,undated + + + + + + 89 + 106 + Box 1 Sarnia, Calendar Documents, 1784-1836: Christian Guardian, “To the editor...W. Case: St. Clair Indians,” p. 195, c. 2, 3 May 8, 1830,undated + + + + + + 89 + 107 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1830 05.05 CS TAB 100, 1830,undated + + + + + + 89 + 108 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1830 05.05 CS-T.101, re: Orders of His Excellency, 1830,undated + + + + + + 89 + 109 + Box 1 Sarnia, Calendar Documents, 1784-1836: Christian Guardian. “Religious Miscellany: Inquires of the St. Clair Indians,” p. 213 c.4, p. 214 c. 1, May 22, 1830,undated + + + + + + 89 + 110 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1830 06.10 CS-T.102, Debt owed by Indians, 1830,undated + + + + + + 89 + 111 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1830 06.13 CS-T.103, re: Petition from Rheume, 1830,undated + + + + + + 89 + 112 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1830 06.14 CS-T.104, re: Removal of Indians from Walpole Isl., 1830,undated + + + + + + 89 + 113 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1830 06.24 CS TAB 105, 1830,undated + + + + + + 89 + 114 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG10 C-10998 Vol. 5 P. 2477-2480, June 24, 1830,undated + + + + + + 89 + 115 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1830 07.05 CS TAB 107, 1830,undated + + + + + + 89 + 116 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1830 07.07 CS-T.108, re: St. Clair Indians, 1830,undated + + + + + + 89 + 117 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1830 07.07 CS-T.108, re: St. Clair Indians and their land, 1830,undated + + + + + + 89 + 118 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1830 07.07 CS-T.109, letter concerning a debt owed, 1830,undated + + + + + + 89 + 119 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1830 08.13 CS TAB 110, 1830,undated + + + + + + 89 + 120 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG10 Vol. 5 P. 2575-2578, Aug. 13, 1830,undated + + + + + + 89 + 121 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG10 Vol. 46 P. 24245-24247 Sept. 4, 1830,undated + + + + + + 89 + 122 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG10 Vol. 49 P. 55666-55668 1831,undated + + + + + + 89 + 123 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG10 Vol. 456 P. 40-42 May 18, 1831,undated + + + + + + 89 + 124 + Box 1 Sarnia, Calendar Documents, 1784-1836: [PAC RG10 Vol. P.] May 18, 1831,undated + + + + + + 89 + 125 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1831 05.25 CS-T.113 Specifications for Dwelling House, 1831,undated + + + + + + 89 + 126 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1831 06.01 CS-T 116 Specifications for Buildings, 1831,undated + + + + + + 89 + 127 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1831 07.31 CS-T.123 Plans and Specifications, 1831,undated + + + + + + 89 + 128 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1831 10.05 CS TAB 129, Correct Date (Oct. 5, 1832), 1832,undated + + + + + + 89 + 129 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1831 12.20 CS TAB 131, 1831,undated + + + + + + 89 + 130 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1831 12.26 CS TAB 130, 1831,undated + + + + + + 89 + 131 + Box 1 Sarnia, Calendar Documents, 1784-1836: [WJLB?] Dec. 28, 1831,undated + + + + + + 89 + 132 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1831 06.01 CS-T.115 Houses to be erected, 1831,undated + + + + + + 89 + 133 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1831 06.10 CS-T.117 re: Plans and Specifications Received, 1831,undated + + + + + + 89 + 134 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1831 06.20 CS-T.118 Plans and Specifications, 1831,undated + + + + + + 89 + 135 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1831 06.29 CS-T.121 re: log houses, 1831,undated + + + + + + 89 + 136 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1831 08.31 CS-T.124 re: School and dwelling house, 1831,undated + + + + + + 89 + 137 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1831 08.29 CS.T.126 re: Works at New Village, 1831,undated + + + + + + 89 + 138 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1831 09.22 CS-T.127, tenders for building, 1831,undated + + + + + + 89 + 139 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1831 12.20 CS-T.132 re: Improvements, 1831,undated + + + + + + 89 + 140 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1831 12.30 CS-T.133 McCrae’s Contract, 1831,undated + + + + + + 89 + 141 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAO-WJLB Jan. 13, 1832,undated + + + + + + 89 + 142 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1832 02.09 CS-T.134 re: McCrae’s Contract, 1832,undated + + + + + + 89 + 143 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG.10, Vol. 50, P.55848-55850, Feb. 9, 1832,undated + + + + + + 89 + 144 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1832 03.05 CS TAB 135, 1832,undated + + + + + + 89 + 145 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1832 07.15 CS-T.136 Construction of Houses, 1832,undated + + + + + + 89 + 146 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1832 07.16 CS-T.137 re: Construction of Houses, 1832 ,undated + + + + + + 89 + 147 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1832 08.29 CS-T.139 re: 4 log houses, 1832,undated + + + + + + 89 + 148 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1832 08.29 CS-T. Contract for Building Four Log Houses, 1832,undated + + + + + + 89 + 149 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1832 09.06 CS-T.141 House to be built for Missionary, 1832,undated + + + + + + 89 + 150 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1832 09.08 CS-T.142 re: Contract for Building Houses, 1832,undated + + + + + + 89 + 151 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1832 09.27 CS-T.143 re: House for Missionary, 1832,undated + + + + + + 89 + 152 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1832 10.27 CS-T.145 Letter Referring to Wawanosh’s Conduct, 1832 ,undated + + + + + + 89 + 153 + Box 1 Sarnia, Calendar Documents, 1784-1836: No. 12 P. 141-142, Nov. 30, 1832,undated + + + + + + 89 + 154 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1832 12.20 CS-T.148 Letter referring in Part to Wawanosh, 1832,undated + + + + + + 89 + 155 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1833 01.01 CS-T.149 Report of the Select Committee, 1833,undated + + + + + + 89 + 156 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1833 01.11 CS-T.150 Announcement of Completion of Buildings, 1833,undated + + + + + + 89 + 157 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG10 Vol. 53 P. 57288, Jan. 20, 1833,undated + + + + + + 89 + 158 + Box 1 Sarnia, Calendar Documents, 1784-1836: UCA 78.128C Box 17 File 106 #2, March 7, 1833,undated + + + + + + 89 + 159 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1833 03.16 CS-T.151 transmitting Contract, 1833,undated + + + + + + 89 + 160 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG10 Vol. 456 P. 238-239, May 23, 1833, J.M. Higginson to J.W. Keating, 1833,undated + + + + + + 89 + 161 + Box 1 Sarnia, Calendar Documents, 1784-1836: UCA 78.128C, Box 17, file 106 #32, May 31, 1833,undated + + + + + + 89 + 162 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1833 04.19 CS TAB 152, 1833,undated + + + + + + 89 + 163 + Box 1 Sarnia, Calendar Documents, 1784-1836: [PAO-WJLB] July 1, 1833,undated + + + + + + 89 + 164 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1833 08.24 CS-T.154 re: lease on lower Reserve, 1833,undated + + + + + + 89 + 165 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1833 09.16 CS-T.155 Proposed lease to A. McMartin, 1833,undated + + + + + + 89 + 166 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1833 10.02 CS-T.156 re: Application for lease by McMartin, 1833,undated + + + + + + 89 + 167 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1833 10.17 CS-T.157 Lease for Lot 4, 1833,undated + + + + + + 89 + 168 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1833 11.20 CS-T.159 re: lease for lower Reserve, 1833,undated + + + + + + 89 + 169 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1833 11.28 CS-T.160 re: Lease w/ A. McMartin, 1833 ,undated + + + + + + 89 + 170 + Box 1 Sarnia, Calendar Documents, 1784-1836: W. Jones to J. Givins, Dec. 19, 1833,undated + + + + + + 89 + 171 + Box 1 Sarnia, Calendar Documents, 1784-1836: UCA-JDP, 86.088C, file 10, JL Vol. II, p. 62-77, beginning entry: Sept. 1 [1834-1841], 1834,undated + + + + + + 89 + 172 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG10 Vol. 55 (p. 58161), Feb. 1834,undated + + + + + + 89 + 173 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1834 02.03 CS-T.162 re: McMartin’s lease, 1834,undated + + + + + + 89 + 174 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG10 C-11018 Vol. 55, P. 58335-58336, W. Jones to J. Givins, May 12, 1834,undated + + + + + + 89 + 175 + Box 1 Sarnia, Calendar Documents, 1784-1836: Christian Guardian, P. 107, C. 4- 5, P. 108, C.1, May 14, 1834,undated + + + + + + 89 + 176 + Box 1 Sarnia, Calendar Documents, 1784-1836: Christian Guardian, P. 182, C. 1-2, Sept. 24, 1834,undated + + + + + + 89 + 177 + Box 1 Sarnia, Calendar Documents, 1784-1836: Christian Guardian, P. 186, Col. 3-5, Oct. 1, 1834,undated + + + + + + 89 + 178 + Box 1 Sarnia, Calendar Documents, 1784-1836: UCA-JDP, 86.088C, File 1, Nov. 15, 1834,undated + + + + + + 89 + 179 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1834 12 CS-T.166 Report re: McKenna’s purchase of A. Hamilton’s lease, 1834,undated + + + + + + 89 + 180 + Box 1 Sarnia, Calendar Documents, 1784-1836: [PAC C.O.42/260, P. 135-136] [1835],undated + + + + + + 89 + 181 + Box 1 Sarnia, Calendar Documents, 1784-1836: [PAC C.O.42/260, P. 131-134] [Feb. 6, 1835],undated + + + + + + 89 + 182 + Box 1 Sarnia, Calendar Documents, 1784-1836: [PAC C.O.42/260, P. 137-138] [Feb. 13, 1835],undated + + + + + + 89 + 183 + Box 1 Sarnia, Calendar Documents, 1784-1836: Christian Guardian, P. 74, C. 1 and 2, March 18, 1835,undated + + + + + + 89 + 184 + Box 1 Sarnia, Calendar Documents, 1784-1836: [PAC C.O.42/260, P. 175-177] [April 20, 1835],undated + + + + + + 89 + 185 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1835 04.27 CS-T.171 Extracts from letters re: Reynolds Family, 1835,undated + + + + + + 89 + 186 + Box 1 Sarnia, Calendar Documents, 1784-1836: [PAC C.O.42/260, P. 179-180] June 1, 1835,undated + + + + + + 89 + 187 + Box 1 Sarnia, Calendar Documents, 1784-1836: UWO-RC, JEP. CA9ONEVA, June 24, 1835,undated + + + + + + 89 + 188 + Box 1 Sarnia, Calendar Documents, 1784-1836: UWO-RC, CA9ONEVA 313 59 P16 #31, June 24, 1835,undated + + + + + + 89 + 189 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1835 07.07 CS TAB 174, 1835,undated + + + + + + 89 + 190 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1835 09.08 CS TAB 175, 1835,undated + + + + + + 89 + 191 + Box 1 Sarnia, Calendar Documents, 1784-1836: Christian Guardian, P. 174, C. 1, 2 and 4, Sept. 9, 1835,undated + + + + + + 89 + 192 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1835 11.6 CS-T.178 Lt. Governor will not sanction long Lease to gunsmith, 1835,undated + + + + + + 89 + 193 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG10 Vol. 59 P. 60211, Nov. 23, 1835,undated + + + + + + 89 + 194 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1835 11.30 CS-T.178 letter requesting lots 1, 2, 3 (lower Reserve) be granted to Reynolds, 1835,undated + + + + + + 89 + 195 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1835 11.30 CS-T.179 re: Request to Grant lots 1, 2 and 3, 1835,undated + + + + + + 89 + 196 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1835 12.21 CS TAB 161 Correct Date (Dec. 21, 1835), 1835,undated + + + + + + 89 + 197 + Box 1 Sarnia, Calendar Documents, 1784-1836: UWO-RC, JEP, CA90NEVA 313 59P16, folder 39-52 #48 [1836], 1836,undated + + + + + + 89 + 198 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836 01.01 CS-T.181 re: lease for lots 1, 2 and 3, 1836,undated + + + + + + 89 + 199 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836 01.05 CS-T.182 re: license of occupation/ Gurd, 1836,undated + + + + + + 89 + 200 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836 01.06 CS TAB 183, 1836,undated + + + + + + 89 + 201 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836 01.16 CS-T.184 Petition re: Conflict over Sub-lease, 1836,undated + + + + + + 89 + 202 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836 02.08 CS TAB 186, 1836,undated + + + + + + 89 + 203 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836 02.08 CS-T.185 re: lease to gunsmith, 1836,undated + + + + + + 89 + 204 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836 02.08 CS TAB 185, 1836,undated + + + + + + 89 + 205 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836 02.09 CS-T.187 re: Reynolds Family,undated + + + + + + 89 + 206 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836 02.22 CS TAB 189, 1836,undated + + + + + + 89 + 207 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836 03.01 CS TAB 191, 1836,undated + + + + + + 89 + 208 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG10 C-11020 Vol. 60 P.60813-60816, March 6, 1836,undated + + + + + + 89 + 209 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836 03.06 CS TAB 194, 1836,undated + + + + + + 89 + 210 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836 03.06 CS-T.192 re: House Requested by Wawanosh, 1836,undated + + + + + + 89 + 211 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836 03.08 CS-T.196 Petition Pertaining to Lot 4, 1836,undated + + + + + + 89 + 212 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836 03.12 CS-T.198 Report transmitting Petitions, 1836,undated + + + + + + 89 + 213 + Box 1 Sarnia, Calendar Documents, 1784-1836: 03.12.1836 CS-T.198 Report transmitting Petitions of James McKenna and Louis Rendt, 1836,undated + + + + + + 89 + 214 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836.03.16 CS-T.192 re: House Requested by Wawanosh, 1836,undated + + + + + + 89 + 215 + Box 1 Sarnia, Calendar Documents, 1784-1836: UCA 78.128C, Box 20, file 128 #3, March 29, 1836,undated + + + + + + 89 + 216 + Box 1 Sarnia, Calendar Documents, 1784-1836: UCA 78-128C, Box 20, file 128 #2, April 9, 1836,undated + + + + + + 89 + 217 + Box 1 Sarnia, Calendar Documents, 1784-1836: April 14, 1836,undated + + + + + + 89 + 218 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836 05.06 CS-T.203 re: Building of Houses, 1836,undated + + + + + + 89 + 219 + Box 1 Sarnia, Calendar Documents, 1784-1836: WJLB? June 11, 1836,undated + + + + + + 89 + 220 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836 06.18 CS TAB 205, 1836,undated + + + + + + 89 + 221 + Box 1 Sarnia, Calendar Documents, 1784-1836: Christian Guardian, P. 146, c. 4 and 5, July 20, 1836,undated + + + + + + 89 + 222 + Box 1 Sarnia, Calendar Documents, 1784-1836: Sandwich Emigrant, P. 3, Aug. 9, 1836,undated + + + + + + 89 + 223 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836 08.06 CS TAB 207, 1836,undated + + + + + + 89 + 224 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG10 Vol. 501, P. 189-190, Sept. 28, 1836, J. Givins to W. Jones, 1836,undated + + + + + + 89 + 225 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAC RG10 Vol. 501, P. 189-190, Sept. 28, 1836,undated + + + + + + 89 + 226 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836 10.03 CS-T.212 re: Proposed Agreement, 1836,undated + + + + + + 89 + 227 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836 10.12 CS-T.213 re: Road through Reserve, 1836,undated + + + + + + 89 + 228 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836 Oct. 14 CS-T.214 re: Road through Reserve, 1836,undated + + + + + + 89 + 229 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836 10.31 CS-TAB 216, 1836,undated + + + + + + 89 + 230 + Box 1 Sarnia, Calendar Documents, 1784-1836: PAO-WJLB, MS 296, P. 146, Nov. 1, 1836,undated + + + + + + 89 + 231 + Box 1 Sarnia, Calendar Documents, 1784-1836: 1836 11.29 CS- T. re: Petition of Francis and John Reynolds, 1836,undated + + + + + + 90 + 1 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1837 01.01 CS TAB 223, 1837,undated + + + + + + 90 + 2 + Box 2 Sarnia, Calendar Documents, 1837-1843: Jan. 2 and 26, 1837,undated + + + + + + 90 + 3 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1837 01.19 CS TAB 226, Correct date (Jan. 13, 1837), 1837,undated + + + + + + 90 + 4 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1837 02.03 CS TAB 229, 1837,undated + + + + + + 90 + 5 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1837 02.25 CS TAB 231, 1837,undated + + + + + + 90 + 6 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1837 03.01 CS TAB 232, 1837,undated + + + + + + 90 + 7 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1837 03.01 CS-T.232 letter from Jones to Col. Givins, 1837,undated + + + + + + 90 + 8 + Box 2 Sarnia, Calendar Documents, 1837-1843: [No. 18 (No. 156) P. 83] April 4, 1837,undated + + + + + + 90 + 9 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10 Vol. 442 P. 149-150. May 5, 1837,undated + + + + + + 90 + 10 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC C.O.42.442, P.241-247. May 6, 1837,undated + + + + + + 90 + 11 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1837 03.09 CS-T.233 re: disallowance of McKenna’s lease, 1837,undated + + + + + + 90 + 12 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1837 03.09 CS TAB 234, 1837,undated + + + + + + 90 + 13 + Box 2 Sarnia, Calendar Documents, 1837-1843: May 12, 1837, W. Jones to J. Givins, 1837,undated + + + + + + 90 + 14 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1837 03.24 CS-T.235 Petition to exchange Lot 8 Con. 9, 1837,undated + + + + + + 90 + 15 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1837 03.24 CS TAB 236, 1837,undated + + + + + + 90 + 16 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1837 03.28 CS TAB 238, 1837,undated + + + + + + 90 + 17 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1837 06.17 CS TAB 246, 1837,undated + + + + + + 90 + 18 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1838 01.24 CS-T.325 re: Memorial, 1838,undated + + + + + + 90 + 19 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1837 04.14 CS TAB 240, 1837,undated + + + + + + 90 + 20 + Box 2 Sarnia, Calendar Documents, 1837-1843: July 7, 1837,undated + + + + + + 90 + 21 + Box 2 Sarnia, Calendar Documents, 1837-1843: Christian Guardian, Missionary… to the editor,” P. 158, col. 1 and 2, Aug. 9, 1837,undated + + + + + + 90 + 22 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1837 10.18 CS TAB 251, 1837,undated + + + + + + 90 + 23 + Box 2 Sarnia, Calendar Documents, 1837-1843: UCA-JDP, 86-088C, file 2 1838,undated + + + + + + 90 + 24 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1838 03.24 CS TAB 256, 1838,undated + + + + + + 90 + 25 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1838 07.10 CS TAB 262, 1838,undated + + + + + + 90 + 26 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1838 07.24 CS-T.263 Petition for Possession of Lot 5, 1838,undated + + + + + + 90 + 27 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1838 08.06 CS TAB 267, 1838,undated + + + + + + 90 + 28 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1838 08.18 CS TAB 268, 1838,undated + + + + + + 90 + 29 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10 C-11023 Vol. 69 P. 64695. Aug. 21, 1838,undated + + + + + + 90 + 30 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAO- WJLB Aug. 21, 1838,undated + + + + + + 90 + 31 + Box 2 Sarnia, Calendar Documents, 1837-1843: [PAO CO42/ 453, P. 311- 314.] Feb. 16, 1838,undated + + + + + + 90 + 32 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAO RG10, Vol. 68, P. 64304-64306. Feb. 21, 1838,undated + + + + + + 90 + 33 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC C.O.42/ 453, P. 315-317. March 5, 1838,undated + + + + + + 90 + 34 + Box 2 Sarnia, Calendar Documents, 1837-1843: Christian Guardian, P. 90, col. 6, P. 91, col. 1. April 11, 1838,undated + + + + + + 90 + 35 + Box 2 Sarnia, Calendar Documents, 1837-1843: Christian Guardian, “Aborigines,” P. 94, col. 4 and 5. April 18, 1838,undated + + + + + + 90 + 36 + Box 2 Sarnia, Calendar Documents, 1837-1843: Christian Guardian, “Aborigines,” P. 98, c. 3 and 4. April 25, 1838,undated + + + + + + 90 + 37 + Box 2 Sarnia, Calendar Documents, 1837-1843: Christian Guardian, P. 105 c. 6, P. 106 c. 1, 2 and 3. May 9, 1838,undated + + + + + + 90 + 38 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC CO.42/442, letter #25. Aug. 22, 1838. “In the British N American Colonies,” P. 101, 1838,undated + + + + + + 90 + 39 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10, Vol. 69, P. 64703-64701. Aug. 20, 1838. Enclosed Aug. 25, 1838,undated + + + + + + 90 + 40 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1838 08.22 CS-T.270 letter concerning conditions of Indian, 1838,undated + + + + + + 90 + 41 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10, Vol. 116, P. 168656-16877. Aug. 22, 1838, t. 12/T.270, 1838,undated + + + + + + 90 + 42 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1838 08.31 CS TAB 271, 1838,undated + + + + + + 90 + 43 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10 Vol. 128, P. 72019- 72020. Sept. 5, 1838,undated + + + + + + 90 + 44 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG.10, Vol. 69, P.64840- 64843 (C-11024) Sept. 17, 1838,undated + + + + + + 90 + 45 + Box 2 Sarnia, Calendar Documents, 1837-1843: UCA-JDP, 86-088C, file 2. Sept. 19, 1838,undated + + + + + + 90 + 46 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1838 09.27 CS-T.276 Minute of Council on Petition of Amelia Boyer, 1838,undated + + + + + + 90 + 47 + Box 2 Sarnia, Calendar Documents, 1837-1843: Christian Guardian, “Religious,” P. 198, c. 2 and 3. Oct. 17, 1838,undated + + + + + + 90 + 48 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1838 10.19 CS TAB 280, 1838,undated + + + + + + 90 + 49 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1838 11.14 CS-T 282 letter Wawanosh to Evans, 1838,undated + + + + + + 90 + 50 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1838 11.13 CS TAB 281, 1838,undated + + + + + + 90 + 51 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1838 12.21 CS TAB 284, 1838,undated + + + + + + 90 + 52 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1839 02.21 CS-T.286 Wawanosh wants to Put Son in College, 1839,undated + + + + + + 90 + 53 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10 C-11024 Vol. 70 P. 65718-65719. May 13, 1839,undated + + + + + + 90 + 54 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1839 04.01 CS-T.288 Report on Indian Affairs, 1839,undated + + + + + + 90 + 55 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG.10, Vol. 70, P. 65651- 65653. April 19, 1839,undated + + + + + + 90 + 56 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10, Vol. 70, P. 65599- 65601. April 19, 1839,undated + + + + + + 90 + 57 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1839 05.13 CS-T.290 Payment to Wawanosh, 1839,undated + + + + + + 90 + 58 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG.10, Vol. 70, P. 65771- 65772. May 30, 1839,undated + + + + + + 90 + 59 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG5, A 1, Vol. 226, P. 123938-123945. Aug. 12, 1839,undated + + + + + + 90 + 60 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG.10, Vol. 70, P. 65809-65811. June 15, 1839,undated + + + + + + 90 + 61 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG.10, Vol. 71, P. 66088-66089. Aug. 20, 1839, T.39/T.817, 1839,undated + + + + + + 90 + 62 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1839 08.20 CS-T.296 Opposition to Wawanosh retaining £300, 1839,undated + + + + + + 90 + 63 + Box 2 Sarnia, Calendar Documents, 1837-1843: Sept. __, 1839, T.299, 1839,undated + + + + + + 90 + 64 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1839 09.03 CS-T.298 Authorizing Retention of 300£, 1839,undated + + + + + + 90 + 65 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1839 09.23 CS-T.303 Request for 132.10 Pounds, 1839,undated + + + + + + 90 + 66 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1839 10.29 CS TAB 305, 1839,undated + + + + + + 90 + 67 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1839 11.09 CS TAB 309, 1839,undated + + + + + + 90 + 68 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1839 11.09 CS TAB 310, 1839,undated + + + + + + 90 + 69 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1839 11.10 CS TAB 311, 1839,undated + + + + + + 90 + 70 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1839 11.14 CS-T.313 Wawanosh’s determination, 1839,undated + + + + + + 90 + 71 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1839 12.14 CS-T. Request for Money for Wawanosh’s Son, 1839,undated + + + + + + 90 + 72 + Box 2 Sarnia, Calendar Documents, 1837-1843: Patriot (Toronto), Friday, P. ____. “To Land Speculators.” Dec. 6, 1839,undated + + + + + + 90 + 73 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1840 01.28 CS-T.327 Accounts of Son David, 1840,undated + + + + + + 90 + 74 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1840 02.01 CS-T.328 Petition concerning lots 1, 2 and 3, 1840undated + + + + + + 90 + 75 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1840 02.01 CS TAB 328, 1840,undated + + + + + + 90 + 76 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1840 02.15 CS-T.330 re: Petition of longtime occupants, 1840,undated + + + + + + 90 + 77 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1840 03.02 CS TAB 334, 1840,undated + + + + + + 90 + 78 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG.10, Vol. 119, P. 241-243 March 2, 1840,undated + + + + + + 90 + 79 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1840 03.14 CS-T.337 Wawanosh’s Request for New House, 1840,undated + + + + + + 90 + 80 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10 C-11026 Vol. 73 P. 67387-67388. March 14, 1840,undated + + + + + + 90 + 81 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1840 03.21 CS-T.340 letter advising that David Wawanosh has his long petition to the Queen Ready, 1840,undated + + + + + + 90 + 82 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1840 03.23 CS-T.341 re: Documents for Lower Reserve, 1840,undated + + + + + + 90 + 83 + Box 2 Sarnia, Calendar Documents, 1837-1843: Christian Guardian, P. 86, c. 4. March 25, 1840,undated + + + + + + 90 + 84 + Box 2 Sarnia, Calendar Documents, 1837-1843: UCA-JDP, 86.088C, file 3. April 8, 1840,undated + + + + + + 90 + 85 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1840 04.27 CS-T.344 re: Reynolds Family, 1840,undated + + + + + + 90 + 86 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1840 05.05 CS TAB 345, 1840,undated + + + + + + 90 + 87 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1840 05.08 CS-T.347 re: Sale of Lower Reserve, 1840,undated + + + + + + 90 + 88 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1840 06.12 CS TAB 351, 1840,undated + + + + + + 90 + 89 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1840 06.29 CS TAB 355, 1840,undated + + + + + + 90 + 90 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1840 08.21 CS TAB 357, 1840,undated + + + + + + 90 + 91 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1840 08.25 CS TAB 358, 1840,undated + + + + + + 90 + 92 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1840 09.10 AG TAB 113, List A, 1840,undated + + + + + + 90 + 93 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1840 09.11 CS-T.363 Wawanosh to go to Toronto to Seek money, 1840,undated + + + + + + 90 + 94 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAO-Strachan Papers, unbound Papers. Sept. 23, 1840,undated + + + + + + 90 + 95 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1840 10.15 CS-T.366 Account for College Dues, 1840,undated + + + + + + 90 + 96 + Box 2 Sarnia, Calendar Documents, 1837-1843: UCA-JDP, 86.088C, file 3, Nov. 18, 1840,undated + + + + + + 90 + 97 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1840 11.20 CS-T.368 re: Sale of land by Rendt, 1840,undated + + + + + + 90 + 98 + Box 2 Sarnia, Calendar Documents, 1837-1843: UCA-JDP, 86.088C, file 3, Nov. 20, 1840, J. Wawanosh to Douse, 1840,undated + + + + + + 90 + 99 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1840 11.28 CS-T.369 Letter advising that David Wawanosh has written letters against him, 1840,undated + + + + + + 90 + 100 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1840 12.08 CS TAB 373, 1840,undated + + + + + + 90 + 101 + Box 2 Sarnia, Calendar Documents, 1837-1843: Strachan Papers, Letterbook 4, p. 85, Dec. 12, 1840,undated + + + + + + 90 + 102 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1840 12.14 CS TAB 372, 1840,undated + + + + + + 90 + 103 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1840 12.14 CS-T.374 Indians’ Intentions to become Christian, 1840,undated + + + + + + 90 + 104 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1840 12.18 CS-T.376 Indians of Sarnia granted (granted) £300, 1840,undated + + + + + + 90 + 105 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC C100, R61 E1, P. 599, Exec 24, Dec. 24, 1840,undated + + + + + + 90 + 106 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1840 12.29 CS TAB 380, 1840,undated + + + + + + 90 + 107 + Box 2 Sarnia, Calendar Documents, 1837-1843: Strachan Papers, Unbound Papers. Dec. 31, 1840,undated + + + + + + 90 + 108 + Box 2 Sarnia, Calendar Documents, 1837-1843: UCA-JDP, 86.088C, file 4 (1841-1845),undated + + + + + + 90 + 109 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10 Vol. 76 P. 68686-68690. Jan. 4, 1841,undated + + + + + + 90 + 110 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 01.05 CS-T.383 re: letters from Wawanosh, 1841,undated + + + + + + 90 + 111 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 03.08 CS-T.388 Memorial re: lot 8 Concession 9 and E ½ Lot 8, Concession 10, 1841,undated + + + + + + 90 + 112 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 03.13 CS TAB 388, 1841,undated + + + + + + 90 + 113 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 03.17 CS-T. Indians Against Wawanosh, 1841,undated + + + + + + 90 + 114 + Box 2 Sarnia, Calendar Documents, 1837-1843: Strachan Papers, Letterbook 4, P. 115, May 21, 1841,undated + + + + + + 90 + 115 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 04.06 CS-T.390 threats made by Wawanosh, 1841,undated + + + + + + 90 + 116 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 05.31 CS-T.393 Sales Information for Lower Reserve, 1841,undated + + + + + + 90 + 117 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 06.08 CS-T396 Acquainted w/ Wawanosh, 1841,undated + + + + + + 90 + 118 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 06.08 CS TAB 396, 1841,undated + + + + + + 90 + 119 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 06.23 CS TAB 398, 1841,undated + + + + + + 90 + 120 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 06.25 CS TAB 401, 1841 (Folder 1 of 2),undated + + + + + + 90 + 121 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 06.25 CS TAB 401, 1841 (Folder 2 of 2),undated + + + + + + 90 + 122 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 06.25 CS TAB 402, 1841,undated + + + + + + 90 + 123 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 07.01 CS TAB 403, 1841,undated + + + + + + 90 + 124 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 07.03 CS TAB 405, 1841,undated + + + + + + 90 + 125 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 07.09 CS TAB 406, 1841,undated + + + + + + 90 + 126 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 07.12 CS TAB 407, 1841,undated + + + + + + 90 + 127 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 07.13 CS TAB 408, 1841,undated + + + + + + 90 + 128 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 07.18 CS TAB 409, 1841,undated + + + + + + 90 + 129 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 07.22 CS TAB 410, 1841,undated + + + + + + 90 + 130 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 08.10 CS TAB 412, 1841,undated + + + + + + 90 + 131 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 08.22 CS TAB 413, 1841,undated + + + + + + 90 + 132 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 08.23 CS TAB 414 correct date (Aug. 22, 1841), 1841,undated + + + + + + 90 + 133 + Box 2 Sarnia, Calendar Documents, 1837-1843: Strachan Papers, Letterbook 4, P. 135. Sept. 14, 1841,undated + + + + + + 90 + 134 + Box 2 Sarnia, Calendar Documents, 1837-1843: WJLB? Oct. 5, 1842,undated + + + + + + 90 + 135 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 10.05 CS TAB 415 Correct date (Oct. 15, 1841), 1841,undated + + + + + + 90 + 136 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 10.12 CS TAB 417, 1841,undated + + + + + + 90 + 137 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 10.15 CS TAB 420, 1841,undated + + + + + + 90 + 138 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 10.18 CS TAB 421, 1841,undated + + + + + + 90 + 139 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10, C-10998 Vol. 6 P. 2965- 2966, Oct. 19, 1841,undated + + + + + + 90 + 140 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 11.06 CS TAB 424, 1841,undated + + + + + + 90 + 141 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 12.28 CS TAB 426, 1841,undated + + + + + + 90 + 142 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG.10, Vol. 126, P. 71418-71421. Dec. 29, 1841,undated + + + + + + 90 + 143 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1841 12.29 CS TAB 428, 1841,undated + + + + + + 90 + 144 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1842 01.01 CS TAB 429, 1842,undated + + + + + + 90 + 145 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1842 01.04 CS TAB 431, 1842,undated + + + + + + 90 + 146 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1842 01.08 CS TAB 432, 1842,undated + + + + + + 90 + 147 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1842 01.11 CS TAB 433, 1842,undated + + + + + + 90 + 148 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1842 01.11 CS TAB 434, 1842,undated + + + + + + 90 + 149 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1842 01.21 CS TAB 436, 1842,undated + + + + + + 90 + 150 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10, Vol. 126, P. 70988-70990. Feb. 8, 1842,undated + + + + + + 90 + 151 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10 Vol. 126 P. 70991-70994. Feb. 9, 1842,undated + + + + + + 90 + 152 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1842 03.08 CS TAB 438, 1842,undated + + + + + + 90 + 153 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1842 03.18 CS TAB 439, 1842,undated + + + + + + 90 + 154 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG.1, L 3, Vol. 476 March 19, 1842,undated + + + + + + 90 + 155 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1842 03.26 CS TAB 440, 1842,undated + + + + + + 90 + 156 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1842, 04.23. CS-T.442 letter advising that Surveyor O’Mara had no instructions, 1842,undated + + + + + + 90 + 157 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1842, 04.23 CS-T442, 1842,undated + + + + + + 90 + 158 + Box 2 Sarnia, Calendar Documents, 1837-1843: [Ont.Mnr, Survey Records: Instructions to Surveyors- Ontario-Crown Lands] April 29, 1842,undated + + + + + + 90 + 159 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1842, 04.29 CS-T.444 re: Road Allowances, 1842,undated + + + + + + 90 + 160 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1842 04.29 CS TAB 443, 1842,undated + + + + + + 90 + 161 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1842 05.13 CS TAB 445, 1842,undated + + + + + + 90 + 162 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1842 06.10 CS TAB 446, 1842,undated + + + + + + 90 + 163 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1842 06.25 CS TAB 448, 1842,undated + + + + + + 90 + 164 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1842, 08.16 CS-T.449 Forwarding Plan of Survey, 1842,undated + + + + + + 90 + 165 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1842 08.16 CS TAB 597, 1842,undated + + + + + + 90 + 166 + Box 2 Sarnia, Calendar Documents, 1837-1843: Strachan Papers, Unbound Papers. Aug. 29, 1842,undated + + + + + + 90 + 167 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1842 09.19 CS TAB 450, 1842,undated + + + + + + 90 + 168 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG.10, Vol. 128, P. 72026- 72028. Sept. 19, 1842,undated + + + + + + 90 + 169 + Box 2 Sarnia, Calendar Documents, 1837-1843: Strachan Papers, Letterbook 4, P. 202. Oct. 17, 1842,undated + + + + + + 90 + 170 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1842 11.21 CS TAB 451, 1842,undated + + + + + + 90 + 171 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1842 12.08 CS TAB 452, 1842,undated + + + + + + 90 + 172 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10 C-11027 Vol. 77 P. 69335. [May 1843], 1843,undated + + + + + + 90 + 173 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10 C-11484 Vol. 130 P. 73285-73287 [1843], 1843,undated + + + + + + 90 + 174 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10 C-11484 Vol. 130 P. 73303 [1843], 1843,undated + + + + + + 90 + 175 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG.10, C-13328, Vol. 456, P. 181 [circa June 1843], 1843,undated + + + + + + 90 + 176 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10 Vol. 442 P. 193-194 1843, Statement of J. Wawanosh. 1843,undated + + + + + + 90 + 177 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 01.21 CS TAB 453 (Correct Date Jan. 21, 1842), 1842,undated + + + + + + 90 + 178 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 01.24 CS TAB 454, 1843,undated + + + + + + 90 + 129 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 01.26 CS TAB 455, Correct date (Jan. 26, 1842), 1842,undated + + + + + + 90 + 180 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 01.28 CS TAB 456, Correct date (Jan. 28, 1842), 1842,undated + + + + + + 90 + 181 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 02.18 CS TAB 458, 1843,undated + + + + + + 90 + 182 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10 Vol. 148, no. 601-700 P. 85680-85685. May 27, 1843,undated + + + + + + 90 + 183 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843, 03.27 CS-T.461 Petition concerning the purchase of 100 acres, 1843,undated + + + + + + 90 + 184 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 03.28 CS TAB 462, 1843,undated + + + + + + 90 + 185 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 04.07 CS TAB 464, 1843,undated + + + + + + 90 + 186 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 04.08 CS TAB 465, Correct Date (April 8th, 1842), 1842,undated + + + + + + 90 + 187 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 04.11 CS TAB 466, 1843,undated + + + + + + 90 + 188 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 04.13 CS TAB 467, 1843,undated + + + + + + 90 + 189 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843, 04.27 CS-T.468 Statement against the petition, 1843,undated + + + + + + 90 + 190 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 05.17 CS TAB 469, 1843,undated + + + + + + 90 + 191 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 05.18 CS TAB 470, 1843,undated + + + + + + 90 + 192 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 05.19 CS TAB 471, 1843,undated + + + + + + 90 + 193 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 05.19 CS TAB 472, 1843,undated + + + + + + 90 + 194 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 05.19 CS TAB 473, 1843,undated + + + + + + 90 + 195 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 05.23 CS TAB 474, 1843,undated + + + + + + 90 + 196 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 05.27 CS TAB 476, 1843,undated + + + + + + 90 + 197 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843, 05.27 CS-T.476 re: Acquaintance w/ Wawanosh, 1843,undated + + + + + + 90 + 198 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 06.03 CS TAB 479, 1843,undated + + + + + + 90 + 199 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 06.17 CS TAB 480, 1843,undated + + + + + + 90 + 200 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 06.17 CS TAB 481, 1843,undated + + + + + + 90 + 201 + Box 2 Sarnia, Calendar Documents, 1837-1843: UCA 78 128C, Box 27, file 185 #7, June 17, 1843,undated + + + + + + 90 + 202 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 06.18 CS TAB 483, 1843,undated + + + + + + 90 + 203 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 06.22 CS TAB 484, 1843,undated + + + + + + 90 + 204 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 06.24 CS TAB 486, 1843,undated + + + + + + 90 + 205 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 06.26 CS TAB 487, 1843,undated + + + + + + 90 + 206 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843, 06.26 CS-T.487 letter that an immediate decision concerning the surrender of a portion of land is not required, 1843,undated + + + + + + 90 + 207 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 06.27 CS TAB 488, 1843,undated + + + + + + 90 + 208 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10 C-13411 Vol. 720 P. 168161-168167. July 1, 1843,undated + + + + + + 90 + 209 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 07.01 CS TAB 489, 1843,undated + + + + + + 90 + 210 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10 Vol. 114 pt. 2 P.167415-167415. July 3, 1843,undated + + + + + + 90 + 211 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 07.11 CS TAB 490, 1843,undated + + + + + + 90 + 212 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 07.27 CS TAB 492, 1843,undated + + + + + + 90 + 213 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 08.01 CS TAB 494, 1843,undated + + + + + + 90 + 214 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 09. CS TAB 499, 1843,undated + + + + + + 90 + 215 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 08.12 CS TAB 495, 1843,undated + + + + + + 90 + 216 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843, 08.17 CS-T.496 re: Survey of Surrendered Land, 1843,undated + + + + + + 90 + 217 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10, Vol. 130, P. 73285-73287. Sept. 1, 1843,undated + + + + + + 90 + 218 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG.10, Vol. 7, P. 3486-3489. Oct. 18, 1843,undated + + + + + + 90 + 219 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 09.19 CS TAB 504, 1843,undated + + + + + + 90 + 220 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 09.19 CS TAB 505, 1843,undated + + + + + + 90 + 221 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843, 10.05 CS-T.507 re: Use of Funds from Surrender, 1843,undated + + + + + + 90 + 222 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843, 10.09. CS-T.510 letter transmitting Copy of Surrender, 1843,undated + + + + + + 90 + 223 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10 Vol. 148, no. 601-700, P. 85701-85703 Oct. 9, 1843,undated + + + + + + 90 + 224 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843, 10.14. CS-T.512 re: funds for buildings, 1843,undated + + + + + + 90 + 225 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10 Vol. 507 P. 405-406. Oct. 18, 1843, S.P. Jarvis to R. Rawson, 1843,undated + + + + + + 90 + 226 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10 Vol. 7 P. 3487. Oct. 18, 1843, S. Jarvis to R. Rawson, 1843,undated + + + + + + 90 + 227 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10 Vol. 7, P. 3486-3489. Oct. 18, 1843,undated + + + + + + 90 + 228 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10 Vol. 7 P. 3490-P3491. Oct. 21, 1843. PAC RG10 Vol. 137 pt. 1 P. 78532-78535. R. Rawson to S.P. Jarvis, 1843,undated + + + + + + 90 + 229 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 11.04 CS TAB 514, 1843,undated + + + + + + 90 + 230 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 11.07 CS TAB 519, 1843,undated + + + + + + 90 + 231 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 11.07 CS TAB 520, 1843,undated + + + + + + 90 + 232 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 11.07 CS TAB 521, 1843,undated + + + + + + 90 + 233 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 11.08 CS TAB 522, 1843,undated + + + + + + 90 + 234 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 11.08 CS TAB 523, 1843,undated + + + + + + 90 + 235 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 11.09 CS TAB 524, 1843,undated + + + + + + 90 + 236 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 11.09 CS TAB 526, 1843,undated + + + + + + 90 + 237 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 11.09 CS TAB 527, 1843,undated + + + + + + 90 + 238 + Box 2 Sarnia, Calendar Documents, 1837-1843: PAC RG10 C-11484 Vol. 130 P. 73327-73330. Nov. 14, 1843,undated + + + + + + 90 + 239 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 11.14 CS TAB 531, 1843,undated + + + + + + 90 + 240 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 11.15 CS TAB 532, 1843,undated + + + + + + 90 + 241 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 11.15 CS TAB 533, 1843,undated + + + + + + 90 + 242 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 11.15 CS TAB 534, 1843,undated + + + + + + 90 + 243 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 11.15 CS TAB 535, 1843,undated + + + + + + 90 + 244 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 12.17 CS TAB 544, 1843,undated + + + + + + 90 + 245 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 11.16 CS TAB 539, 1843,undated + + + + + + 90 + 246 + Box 2 Sarnia, Calendar Documents, 1837-1843: 1843 12.18 CS TAB 545, 1843,undated + + + + + + 91 + 1 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 01.01 CS-T 546 Bagot Report, 1844,undated + + + + + + 91 + 2 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 02.06 CS TAB 547, 1844,undated + + + + + + 91 + 3 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 03.05 CS TAB 548, 1844,undated + + + + + + 91 + 4 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 03.15 CS TAB 549, 1844,undated + + + + + + 91 + 5 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 03.25 CS TAB 551, 1844,undated + + + + + + 91 + 6 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 03.29 CS TAB 554, 1844,undated + + + + + + 91 + 7 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 03.29 CS TAB 555, 1844,undated + + + + + + 91 + 8 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 04.13 CS TAB 557, 1844,undated + + + + + + 91 + 9 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 04.15 CS TAB 558, 1844,undated + + + + + + 91 + 10 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10 C-11479 Vol. 114 P. 167475-167532. April 20, 1844 Special Report: Jarvis to Metcalfe, 1844,undated + + + + + + 91 + 11 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 04.20 CS TAB 559, 1844,undated + + + + + + 91 + 12 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 04.22 CS TAB 560, 1844,undated + + + + + + 91 + 13 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 04.23 CS TAB 561, 1844,undated + + + + + + 91 + 15 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 04.23 CS TAB 563, 1844,undated + + + + + + 91 + 16 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 04.25 CS TAB 564, 1844,undated + + + + + + 91 + 17 + Box 3 Sarnia, Calendar Documents, 1844-1852: WL, UWO-WP MG Box 4381. April 27, 1844,undated + + + + + + 91 + 18 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 04.30 CS TAB 565, 1844,undated + + + + + + 91 + 19 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 04.30 CS TAB 566, 1844,undated + + + + + + 91 + 20 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 05.04 CS TAB 568, 1844,undated + + + + + + 91 + 21 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 05.06 CS TAB 569, 1844,undated + + + + + + 91 + 22 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 05.08 CS TAB 570, 1844,undated + + + + + + 91 + 23 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 05.13 CS TAB 571, 1844,undated + + + + + + 91 + 24 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 05.18 CS TAB 572, 1844,undated + + + + + + 91 + 25 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 05.26 CS TAB 573, 1844,undated + + + + + + 91 + 26 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 05.29 CS TAB 574, 1844,undated + + + + + + 91 + 27 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 05.31 CS TAB 575, 1844,undated + + + + + + 91 + 28 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 06.01 CS TAB 576, 1844,undated + + + + + + 91 + 29 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 06.13 CS TAB 577, 1844,undated + + + + + + 91 + 30 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 06.13 CS TAB 578, 1844,undated + + + + + + 91 + 31 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 06.28 CS TAB 579, 1844,undated + + + + + + 91 + 32 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 07.01 CS TAB 580, 1844,undated + + + + + + 91 + 33 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 07.24 CS TAB 581, 1844,undated + + + + + + 91 + 34 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844, 08.09. CS-T.582 re: Petition of Boyer, 1844,undated + + + + + + 91 + 35 + Box 3 Sarnia, Calendar Documents, 1844-1852: Aug. 26, 1845, T.32/T.599, 1845,undated + + + + + + 91 + 36 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 09.01 CS TAB 584, 1844,undated + + + + + + 91 + 37 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 09.14 CS TAB 585, 1844,undated + + + + + + 91 + 38 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 09.17 CS TAB 586, 1844,undated + + + + + + 91 + 39 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 09.25 CS TAB 587, 1844,undated + + + + + + 91 + 40 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 09.25 CS TAB 588, 1844,undated + + + + + + 91 + 41 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844, 10.16 CS-T.589 re: Purchase of Indian Land, 1844,undated + + + + + + 91 + 42 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 11.02 CS TAB 590, 1844,undated + + + + + + 91 + 43 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1844 11.13 CS TAB 592, 1844,undated + + + + + + 91 + 44 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1845 01.02 CS TAB 593, 1845,undated + + + + + + 91 + 45 + Box 3 Sarnia, Calendar Documents, 1844-1852: UCA 78-128C, Box 29, file 201 #1. Jan. 8, 1845,undated + + + + + + 91 + 46 + Box 3 Sarnia, Calendar Documents, 1844-1852: UCA- 78 128C, Box 29, file 201 #3. Jan. 9, 1845,undated + + + + + + 91 + 47 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10 Vol. __ P. 76136-76137. Jan. 19, 1845, W. Jones to J.B. Clench, 1845,undated + + + + + + 91 + 48 + Box 3 Sarnia, Calendar Documents, 1844-1852: PPAC RG10 Vol. 119 P. 518-519, March 31, 1845,undated + + + + + + 91 + 49 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1845 05.10 CS TAB 594, 1845,undated + + + + + + 91 + 50 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10 Vol. 148 no. 601-700 P. 85672. June 3, 1845. Keating to Higginson, 1845,undated + + + + + + 91 + 51 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1845, 07.01 CS-T.596 re: Dist. Council-no Jurisdiction, 1845,undated + + + + + + 91 + 52 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1845 08.25 CS TAB 598, 1845,undated + + + + + + 91 + 53 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1845 08.26 CS TAB 599, 1845,undated + + + + + + 91 + 54 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1845 09.04 CS TAB 600, 1845,undated + + + + + + 91 + 55 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1845 09.08 CS TAB 601, 1845,undated + + + + + + 91 + 56 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1845 09.11 CS TAB 602, 1845,undated + + + + + + 91 + 57 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1845 09.12 CS TAB 603, 1845,undated + + + + + + 91 + 58 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1845 09.15 CS TAB 604, 1845,undated + + + + + + 91 + 59 + Box 3 Sarnia, Calendar Documents, 1844-1852: MTRL- JP B60 P.41. Sept. 20, 1845, Higginson to S. Jarvis, 1845,undated + + + + + + 91 + 60 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1845 10.06 CS TAB 605, 1845,undated + + + + + + 91 + 61 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10 C-11495 Vol. 152 P. 88252. Oct. 24, 1845, D. McCall to J.W. Higginson, 1845,undated + + + + + + 91 + 62 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1845 10.24 CS TAB 606, 1845,undated + + + + + + 91 + 63 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10 Vol. 222 no. 8801- 8900 P. 131882. Nov. 18, 1845. Also: P. 131856-131857, Stag Island lease to D. McCall, 1845,undated + + + + + + 91 + 64 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1845 11.18 CS TAB 607, 1845,undated + + + + + + 91 + 65 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1846 01.08 CS TAB 609, 1846,undated + + + + + + 91 + 66 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1846 02.16 CS TAB 610, 1846,undated + + + + + + 91 + 67 + Box 3 Sarnia, Calendar Documents, 1844-1852: UWO, RC-EP. CA9ONEVA 31359 P16, letter 229. March 31, 1846,undated + + + + + + 91 + 68 + Box 3 Sarnia, Calendar Documents, 1844-1852: Strachan Papers, Letterbook 6, P. 185. July 3, 1846,undated + + + + + + 91 + 69 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10 C-11502 Vol. 166 P. 96614. June 10, 1846,undated + + + + + + 91 + 70 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1846 06.10 CS TAB 612, 1846,undated + + + + + + 91 + 71 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1846 06.17 CS TAB 613, 1846,undated + + + + + + 91 + 72 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1846 07.28 CS TAB 614, 1846,undated + + + + + + 91 + 73 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1846 12.18 CS TAB 616, 1846,undated + + + + + + 91 + 74 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10 Vol. 436 P. 602-604. April 27, 1847, H.P. Chase to J.B. Clench, 1847,undated + + + + + + 91 + 75 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1847 05.10 CS TAB 617, 1847,undated + + + + + + 91 + 76 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1847 07.30 CS TAB 618, 1847,undated + + + + + + 91 + 77 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1847 08.06 CS TAB 619, 1847,undated + + + + + + 91 + 78 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1847, 09.06 CS-T.620 letter advising Order in Council cancelled, 1847,undated + + + + + + 91 + 79 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1847 09.06 CS TAB 621, 1847,undated + + + + + + 91 + 80 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1847 09.29 CS TAB 622, 1847,undated + + + + + + 91 + 81 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1847 11.20 CS TAB 623, 1847,undated + + + + + + 91 + 82 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10, Vol. 168, no. 2924-3000, P. 97667-97669. Jan. 17, 1848,undated + + + + + + 91 + 83 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1848, 01.28. CS-T.624 re: Request for Information on 1843 Surrender, 1848,undated + + + + + + 91 + 84 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10 Vol. 436 P. 630-632. March 6, 1848,undated + + + + + + 91 + 85 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1848 05.04 CS TAB 625, 1848,undated + + + + + + 91 + 86 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1848 05.06 CS TAB 626, 1848,undated + + + + + + 91 + 87 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1848 07.05 CS TAB 627, 1848,undated + + + + + + 91 + 88 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1848 07.14 CS TAB 628, 1848,undated + + + + + + 91 + 89 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10 C-9633 Vol. 436 P. 636-637. July 29, 1848,undated + + + + + + 91 + 90 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10 Vol. 438 P. 898, Aug. 4, 1848. W. Jones to J.B. Clench, 1848,undated + + + + + + 91 + 91 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10, Vol. 439, P. 291-293, Aug. 13, 1847 (67), 1847,undated + + + + + + 91 + 92 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1848 08.14 CS TAB 629, 1848,undated + + + + + + 91 + 93 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10 Vol. 399 P. 112-113, Oct. 6, 1848, Agreement between Wadpole and Sarnia Chippewa, 1848,undated + + + + + + 91 + 94 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10 C-9635 Vol. 440 P. 167-169, Oct. 22, 1848,undated + + + + + + 91 + 95 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1848 10.26 CS TAB 631, 1848,undated + + + + + + 91 + 96 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1848 11.30 CS TAB 632, 1848,undated + + + + + + 91 + 97 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1848 12.02 CS TAB 633, 1848,undated + + + + + + 91 + 98 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1848 12.15 CS TAB 634, 1848,undated + + + + + + 91 + 99 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1849, 01.23 CS-T.635 re: lack of taxes, 1849,undated + + + + + + 91 + 100 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1849 02.22 CS TAB 637, 1849,undated + + + + + + 91 + 101 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1849, 02.24 CS-T.638, re: Roads through Reserve Land, 1849,undated + + + + + + 91 + 102 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1849, 03.21 CS-T.639, re: Road Allowance, 1849,undated + + + + + + 91 + 103 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC [Supt. Gen. Office…] March 21, 1849. [2 letters], 1849,undated + + + + + + 91 + 104 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10 Vol. 178 P. 101809-11811. March 27, 1849, T.18, 1849,undated + + + + + + 91 + 105 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1849 04.09 CS TAB 642, 1849,undated + + + + + + 91 + 106 + Box 3 Sarnia, Calendar Documents, 1844-1852: Strachan Papers, Letterbook 6, P. 293. [May 19, 1848], 1848,undated + + + + + + 91 + 107 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG.10, Vol. 177, no. 3801-3900, P. 102786-102789, July 2, 1849,undated + + + + + + 91 + 108 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1849, 08. CS-T.644, Petition Seeking Road through Reserve, 1849,undated + + + + + + 91 + 109 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1849, 08.03 CS-T.645, re: Road Allowance, 1849,undated + + + + + + 91 + 110 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1849, 08.03 CS-T.646, re: Road through Reserve, 1849,undated + + + + + + 91 + 111 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1849, 09.15. CS-T.647, re: Chiefs agree Road Should be Opened, 18499,undated + + + + + + 91 + 112 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1849, 09.25 CS-T.648, Petition for Road, 1849,undated + + + + + + 91 + 113 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1850, 01.07 CS-T.649, letter concerning not receiving salary, 1850,undated + + + + + + 91 + 114 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1850, 01.07 CS-T.649, letter concerning not receiving Salary for past Quarter, 1850,undated + + + + + + 91 + 115 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1850 01.09 CS TAB 650, 1850,undated + + + + + + 91 + 116 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG.10, C-9634, Vol. 438, P. 323-324, Jan. 17, 1850,undated + + + + + + 91 + 117 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1850, 01.28 CS-T.652, re: Request for Response, 1850,undated + + + + + + 91 + 118 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10 Vol. 436 P. 692-694, Feb. 6, 1850,undated + + + + + + 91 + 119 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1850, 02.09. CS-T.654, re: Petition for Road through Reserve, 1850,undated + + + + + + 91 + 120 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1850, 02.15. CS-T.655, Draft letter re: Road, 1850,undated + + + + + + 91 + 121 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1850, 03.25 CS-T.656, re: Intention to Petition, 1850,undated + + + + + + 91 + 122 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10 C-11509 Vol. 182 P. 105389-105394, March 25, 1850,undated + + + + + + 91 + 123 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1850, 04.25 CS-T, Letter from M. Cameron, 1850,undated + + + + + + 91 + 124 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1850 04.25 CS TAB 657, 1850,undated + + + + + + 91 + 125 + Box 3 Sarnia, Calendar Documents, 1844-1852: March 7, 1850,undated + + + + + + 91 + 126 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1850 07.13 CS TAB 660, 1850,undated + + + + + + 91 + 127 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10 Vol. 183 pt. 2, no. 4501-4600, P. 106708 to 106711, Sept. 27, 1850,undated + + + + + + 91 + 128 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1850, 11.05 CS-T.662, By-Law to establish Road, 1850,undated + + + + + + 91 + 129 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1850, 11.07 CS-T, Request Government not to interfere, 1850,undated + + + + + + 91 + 130 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1850, 11.11 CS-T.664, re: Notice to Commence Work, 1850,undated + + + + + + 91 + 131 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1850, 11.16 CS-T.664, re: Intention to Commence Work on Road, 1850,undated + + + + + + 91 + 132 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1850 11.14 CS TAB 665, 1850,undated + + + + + + 91 + 133 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1850 11.19 CS TAB 666, 1850,undated + + + + + + 91 + 134 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1850 11.22 CS TAB 667, 1850,undated + + + + + + 91 + 135 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1850 11.23 CS TAB 669, 1850,undated + + + + + + 91 + 136 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10 Vol. 570 P. _______, Nov. 29, 1850,undated + + + + + + 91 + 137 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1850 12.03 CS TAB 671, 1850,undated + + + + + + 91 + 138 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1850, 12.03 CS-T.671, letter to Col. Bruce, 1850,undated + + + + + + 91 + 139 + Box 3 Sarnia, Calendar Documents, 1844-1852: [PAC RG.__, Vol. __, P. 104392- ______, [Dec. 15, 1850?], 1850,undated + + + + + + 91 + 140 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10 Vol. 185 no. 4701-4800 P. 1(9)9703-199705, Dec. 18, 1850, Clench to Bruce, 1850,undated + + + + + + 91 + 141 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG.10, Vol. 185, no. 4701-4800, C-11509, P. 107825-107827, Dec. 23, 1850,undated + + + + + + 91 + 142 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG.10, Vol. 185, no. 4701-4800, P. XXX821, Dec. 30, 1850,undated + + + + + + 91 + 143 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1851, 01.09 CS-T.673, re: Petition of Municipal Council, 1851,undated + + + + + + 91 + 144 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1851 01.18 CS TAB 674, 1851,undated + + + + + + 91 + 145 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1851, 01.18 CS-T.675, Reply to Application of Municipal Council, 1851,undated + + + + + + 91 + 146 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1851, 01.18 CS-T.674, re: transmitting a copy of Reply, 1851,undated + + + + + + 91 + 147 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1851 01.18 CS TAB 676, 1851,undated + + + + + + 91 + 148 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10 C-9643 Vol. 446 p 424-425, Jan. 29, 1851, Bruce to Clench, 1851,undated + + + + + + 91 + 149 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1851, 04.10. CS-T.677, re: Petition from white Settlers of Sarnia, 1851,undated + + + + + + 91 + 150 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1851, 04.30 CS-T.678, re: Twp’s intention to Construct a Road, 1851,undated + + + + + + 91 + 151 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1851 05.03 CS TAB 679, 1851,undated + + + + + + 91 + 152 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1851, 05.03 CS-T.680, re: Non-provision for Roads in Cameron’s Grant, 1851,undated + + + + + + 91 + 153 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10 Vol. 187 no. 5001-5100 P. 199210-199215, April 8, 1851, Clench to Bruce, 1851,undated + + + + + + 91 + 154 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1851, 05.10 CS-T.681 Minutes agreeing to diagonal road across reserve, 1851,undated + + + + + + 91 + 155 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1851 05.11 CS TAB 682, 1851,undated + + + + + + 91 + 156 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10 Vol. 446, P. 460, June 4, 1851,undated + + + + + + 91 + 157 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1851 06.24 CS TAB 683, 1851,undated + + + + + + 91 + 158 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1851 07.20 CS TAB 684, 1851,undated + + + + + + 91 + 159 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1851, 11.26 CS-T 686, letter to Bruce from Clench, 1851,undated + + + + + + 91 + 160 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG.10, Vol. 193, no. 5601-5700, P. 113031-113035, Jan. 3, 1852. T.687, 1852,undated + + + + + + 91 + 161 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 01.03 CS TAB 687, 1852,undated + + + + + + 91 + 162 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 01.21 CS TAB 688, 1852,undated + + + + + + 91 + 163 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852, 02.04 CS-T.689, Receipt of Payment, 1852,undated + + + + + + 91 + 164 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852, 03.17 CS-T691, Acknowledging Receipt of €20, 1852,undated + + + + + + 91 + 165 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 03.09 CS TAB 690, 1852,undated + + + + + + 91 + 166 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 03.18 CS TAB 692, 1852,undated + + + + + + 91 + 167 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 04.05 CS TAB 693, 1852,undated + + + + + + 91 + 168 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 04.05 CS TAB 694, 1852,undated + + + + + + 91 + 169 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 04.15 CS TAB 695, 1852,undated + + + + + + 91 + 170 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852, 06.16 CS-T.698, Acknowledgment that Notice Receive Proceeded from Plank Road Co., 1852,undated + + + + + + 91 + 171 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 06.16 CS TAB 696, 1852,undated + + + + + + 91 + 172 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG.10, Vol. 515, C-13346, P. 135, June 16, 1852,undated + + + + + + 91 + 173 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 06.16 CS TAB 697, 1852,undated + + + + + + 91 + 174 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 06.22 CS TAB 699, 1852,undated + + + + + + 91 + 175 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 06.27 CS TAB 700, 1852,undated + + + + + + 91 + 176 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 06.30 CS TAB 701, 1852,undated + + + + + + 91 + 177 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 07.09 CS TAB 703, 1852 (Folder 1 of 2),undated + + + + + + 91 + 178 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 07.09 CS TAB 703, 1852 (Folder 2 of 2),undated + + + + + + 91 + 179 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 07.16 CS TAB 704, 1852,undated + + + + + + 91 + 180 + Box 3 Sarnia, Calendar Documents, 1844-1852: [possibly “Treaties and Surrenders,” No. 68.5], July 28, 1852,undated + + + + + + 91 + 181 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10 C-11518 Vol. 199 P. 117676-117678, July 28, 1852,undated + + + + + + 91 + 182 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 08.25 CS TAB 705, 1852,undated + + + + + + 91 + 183 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 08.25 CS TAB 706, 1852,undated + + + + + + 91 + 184 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 08.25 CS TAB 707, 1852,undated + + + + + + 91 + 185 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 08.27 CS TAB 708, 1852,undated + + + + + + 91 + 186 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 09.01 CS TAB 709, 1852,undated + + + + + + 91 + 187 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10 C-9643 Vol. 446 P. 596-597, Sept. 6, 1852,undated + + + + + + 91 + 188 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10 Vol. 446 P. 590-592, Sept. 6, 1852,undated + + + + + + 91 + 189 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 09.17 CS TAB 711, 1852,undated + + + + + + 91 + 190 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 10.28 CS TAB 713, 1852,undated + + + + + + 91 + 191 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 11.02 CS TAB 714, 1852,undated + + + + + + 91 + 192 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 11.03 CS TAB 715, 1852,undated + + + + + + 91 + 193 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 11.03 CS TAB 716, 1852,undated + + + + + + 91 + 194 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 11.04 CS TAB 717, 1852,undated + + + + + + 91 + 195 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 11.04 CS TAB 718, 1852,undated + + + + + + 91 + 196 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG10, Vol. 200, no. 6454, P. 118009-118010, Nov. 8, 1852,undated + + + + + + 91 + 197 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 11.15 CS TAB 719, 1852,undated + + + + + + 91 + 198 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 11.22 CS TAB 720, 1852,undated + + + + + + 91 + 199 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 11.23 CS TAB 721, Correct Date (Nov. 22, 1852), 1852,undated + + + + + + 91 + 200 + Box 3 Sarnia, Calendar Documents, 1844-1852: PAC RG.10, Vol. 446, P. 623. Dec. 1, 1852,undated + + + + + + 91 + 201 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 12.09 CS TAB 722, 1852,undated + + + + + + 91 + 202 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 12.11 CS TAB 723, 1852,undated + + + + + + 91 + 203 + Box 3 Sarnia, Calendar Documents, 1844-1852: 1852 12.30 CS TAB 724, 1852,undated + + + + + + 92 + 1 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 440 P. ____. [1853], 1853,undated + + + + + + 92 + 2 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 C-11520 Vol. 203 P. 120439-120440, Jan. 3, 1853,undated + + + + + + 92 + 3 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 01.03 CS TAB 725, 1853,undated + + + + + + 92 + 4 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 201 pt. 1, no. 6501-6600, P. 118497-118500, Jan. 18, 1853,undated + + + + + + 92 + 5 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 01.28 CS TAB 726, 1853,undated + + + + + + 92 + 6 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 01.28 CS TAB 727, 1853,undated + + + + + + 92 + 7 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 01.29 CS TAB 728, 1853,undated + + + + + + 92 + 8 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 02.01 CS TAB 729, 1853,undated + + + + + + 92 + 9 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853, 03.09 CS-T 730 Acknowledging receipt of £7.10, 1853,undated + + + + + + 92 + 10 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 C-11520 Vol. 203 P. 124036-124038, Feb. 21, 1853,undated + + + + + + 92 + 11 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 03.31 CS TAB 732 (Correct date- March 31, 1854), 1854,undated + + + + + + 92 + 12 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853, 04.14 CS-T. letter Wawanosh to Clench re: need to move his house, 1853,undated + + + + + + 92 + 13 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853, 04.18 CS-T 735 Letter re: removal of Wawanosh House, 1853,undated + + + + + + 92 + 14 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 05.02 CS TAB 736, 1853,undated + + + + + + 92 + 15 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853, 05.02 CS-T.737 Certificate of Inspections, 1853,undated + + + + + + 92 + 16 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 05.09 CS TAB 738, 1853,undated + + + + + + 92 + 17 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853, 06.20 CS-T.739 Maintenance of the School, 1853,undated + + + + + + 92 + 18 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 06.25 CS TAB 740, 1853,undated + + + + + + 92 + 19 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 C-9633 Vol. 436 P. 762-764. July 14, 1853,undated + + + + + + 92 + 20 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 436, P. 762-4. July 16, 1853,undated + + + + + + 92 + 21 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 07.20 CS TAB 741, 1853,undated + + + + + + 92 + 22 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 07.28 CS TAB 742, 1853,undated + + + + + + 92 + 23 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 C-11518 Vol. 199 P. 117664/ PAC RG10 Vol. 436 P. 815-816, July 30, 1852,undated + + + + + + 92 + 24 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 08.11 CS TAB 744, 1853,undated + + + + + + 92 + 25 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 08.13 CS TAB 746, 1853,undated + + + + + + 92 + 26 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853, 08.13. CS-T.747 Grant of Land to Malcolm Cameron, 1853,undated + + + + + + 92 + 27 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 08.18 CS TAB 748, 1853,undated + + + + + + 92 + 28 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 08.24 CS TAB 749, 1853,undated + + + + + + 92 + 29 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 446, P. 746-751. T. 750, Aug. 27, 1853,undated + + + + + + 92 + 30 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 08.27 CS TAB 750, 1853,undated + + + + + + 92 + 31 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 08.31 CS TAB 751, 1853,undated + + + + + + 92 + 32 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 09.01 CS TAB 752, 1853,undated + + + + + + 92 + 33 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 09.01 CS TAB 753, 1853,undated + + + + + + 92 + 34 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 09.02 CS TAB 754, 1853 (Folder 1 of 2),undated + + + + + + 92 + 35 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 09.02 CS TAB 754, 1853 (Folder 2 of 2),undated + + + + + + 92 + 36 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 09.11 CS TAB 743, 1853,undated + + + + + + 92 + 37 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 09.11 CS TAB 745, 1853,undated + + + + + + 92 + 38 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 09.28 CS TAB 755, 1853,undated + + + + + + 92 + 39 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 10.06 CS TAB 757, 1853,undated + + + + + + 92 + 40 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 206, no. 7101-7200, P. 122128. T.761, Oct. 13, 1853,undated + + + + + + 92 + 41 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853, 10.21. CS-T Receipt for £20, 1853,undated + + + + + + 92 + 42 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 11.07 CS TAB 759, 1853,undated + + + + + + 92 + 43 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 11.17 CS TAB 760, 1853,undated + + + + + + 92 + 44 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 11.28 CS TAB 761, 1853,undated + + + + + + 92 + 45 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1853 12.01 CS TAB 762, 1853,undated + + + + + + 92 + 46 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1854 02.27 CS TAB 767, 1854,undated + + + + + + 92 + 47 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1854 03.01 CS TAB 768, 1854,undated + + + + + + 92 + 48 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 799, P. 97-99. May 10, 1854,undated + + + + + + 92 + 49 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 210 pt. 1, no. 7501-7574, [P. 124084] March 31, 1854,undated + + + + + + 92 + 50 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1854, 06.22 CS-T 770 letter concerning allowance, 1854,undated + + + + + + 92 + 51 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1854, 08.16 CS-T.772 Receipt of £15, 1854,undated + + + + + + 92 + 52 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1855, 01.22 CS-T.776 re: Payment of £10.18, 1855,undated + + + + + + 92 + 53 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1855, 01.26 CS-T.775 re: Deed Issued, 1855,undated + + + + + + 92 + 54 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1855, 02.17 CS-T.776 re: Payment from Boyer, 1855,undated + + + + + + 92 + 55 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1855, 02.19 CS-T.777 re: Certifying Mrs. Boyer resided on land, 1855,undated + + + + + + 92 + 56 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG 10 Vol. 453 P. 50-51. March 23, 1855, Minutes of Council, 1855,undated + + + + + + 92 + 57 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 217, pt. 1, no. 8201-8300, P. 128580-1, March 26, 1855,undated + + + + + + 92 + 58 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 217, pt. 1, no. 8201-8300, P. 128569-70, May 3, 1855,undated + + + + + + 92 + 59 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1855 03.23 CS TAB 778, 1855,undated + + + + + + 92 + 60 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 451 P. 27-28, May 14, 1855,undated + + + + + + 92 + 61 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1855 07.20 CS TAB 782, 1855,undated + + + + + + 92 + 62 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1855 07.20 CS TAB 783, 1855,undated + + + + + + 92 + 63 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 451, P. 3-__, Jan. 25, 1855,undated + + + + + + 92 + 64 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1855 08.21 CS TAB 784, 1855,undated + + + + + + 92 + 65 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1855, 08.22 CS-T 785 re: Memorial of Peto-a-kee-shick, 1855,undated + + + + + + 92 + 66 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 451, P. 63-64, Sept. 18, 1855,undated + + + + + + 92 + 67 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 220, no. 8601-8700, P. 130454, Sept. 28, 1855,undated + + + + + + 92 + 68 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: [P. 23-24] [Sept. 28, 1835 or 1855], 1855,undated + + + + + + 92 + 69 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 221, no. 8701-8800, P. 130851, Nov. 12, 1855,undated + + + + + + 92 + 70 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 226, no. 9301-9400, P. 134423-26. Nov. 28, 1855, Enclosed Sept. 27, 1855,undated + + + + + + 92 + 71 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1856 01.01 CS TAB 788, 1856,undated + + + + + + 92 + 72 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1856 01.02 CS TAB 789, 1856,undated + + + + + + 92 + 73 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1856 01.28 CS TAB 790, 1856,undated + + + + + + 92 + 74 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1856 03.22 CS TAB 791, 1856,undated + + + + + + 92 + 75 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1856, 05.21 CS-T.793 Removal of his Father’s House, 1856,undated + + + + + + 92 + 76 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10, Vol. 226, no. 9301-9400, P. 134432-134433, July 5, 1856,undated + + + + + + 92 + 77 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 228, no. 9501-9600, P. 135458-9, Aug. 29, 1856,undated + + + + + + 92 + 78 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1856 09.01 CS TAB 795, 1856,undated + + + + + + 92 + 79 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1856, 09.08 CS-T.796 Report to Investigate Indian Affairs, 1856,undated + + + + + + 92 + 80 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1856 09.25 CS TAB 797, 1856,undated + + + + + + 92 + 81 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1856, 09.25 CS-T.798 Minutes, 1856,undated + + + + + + 92 + 82 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1856, 10.17 CS-T.799 letter re: Debt owing, 1856,undated + + + + + + 92 + 83 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 229, no. 9601-9700, P. 136439, Oct. 29, 1856,undated + + + + + + 92 + 84 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1856 12.19 CS TAB 800, 1856,undated + + + + + + 92 + 85 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1857 01.02 CS TAB 801, 1857,undated + + + + + + 92 + 86 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1857 01.02 CS TAB 802, 1857,undated + + + + + + 92 + 87 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1857 01.19 CS TAB 803, 1857,undated + + + + + + 92 + 88 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1857 01.22 CS TAB 804, 1857,undated + + + + + + 92 + 89 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1857 01.28 CS TAB 805, 1857,undated + + + + + + 92 + 90 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1857 02.02 CS TAB 806, 1857,undated + + + + + + 92 + 91 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1857 03.26 CS TAB 808, 1857,undated + + + + + + 92 + 92 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.__, C-9625, Vol. 450, P. 769, July 2, 1857,undated + + + + + + 92 + 93 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1858, 02.17 CS-T.813 letter Wawanosh to Talfourd, 1858,undated + + + + + + 92 + 94 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1858 02.17 CS TAB 813, 1858,undated + + + + + + 92 + 95 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1858, 11.04 CS-T.815 Wawanosh letter to Talfourd, 1858,undated + + + + + + 92 + 96 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1859 04.15 CS TAB 816, 1859,undated + + + + + + 92 + 97 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1859, 08.20. CS-T.817 letter from Wawanosh to Talfourd, 1859,undated + + + + + + 92 + 98 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1859, 09.07 CS-T.818 letter Quakiequan from Talfourd, 1859,undated + + + + + + 92 + 99 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1860 01.31 CS TAB 819, 1860,undated + + + + + + 92 + 100 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1860, 02.09 CS-T.820 letter from Talfourd to Pennefather, 1860,undated + + + + + + 92 + 101 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1860, 02.16 CS-T.821 letter from Pennefather to Talfourd, 1860,undated + + + + + + 92 + 102 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 585 March 19 and 20, 1860,undated + + + + + + 92 + 103 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1860, 03.20 CS-T.822 Memorial from Chippewas/ Wapole, 1860,undated + + + + + + 92 + 104 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1861 04.02 CS TAB 824, 1861,undated + + + + + + 92 + 105 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1861, 04.26 CS-T.825 letter to Walcot, 1861,undated + + + + + + 92 + 106 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1861, 04.27 CS-T.826 letter F. Talfourd to J. Walcot, 1861,undated + + + + + + 92 + 107 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1861, 04.27 CS-T.827 letter F. Talfourd to Walcot, 1861,undated + + + + + + 92 + 108 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 298 P. 199937-199941. PAC RG __ C-13376 Vol. 585 P. __. F. Talfourd to W. Spragge, April 11, 1862,undated + + + + + + 92 + 109 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1862, 12.08 CS-T.829 Letter F. Talfourd to W. Spragge, 1862,undated + + + + + + 92 + 110 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1862 12.19 CS TAB 830, 1862,undated + + + + + + 92 + 111 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1862 12.22 CS TAB 831, 1862,undated + + + + + + 92 + 112 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 585. P. ? , Dec. 25, 1862,undated + + + + + + 92 + 113 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1862 12.25 CS TAB 832, 1862,undated + + + + + + 92 + 114 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 585, P. [Dec. 26, 1862], 1862,undated + + + + + + 92 + 115 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 299 P. 200583-200584. CS TAB 833, Jan. 7, 1863,undated + + + + + + 92 + 116 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1863, 01.07 CS-T.834 letter from Talfourd to Spragge re: Wawanosh added to pay list, 1863,undated + + + + + + 92 + 117 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.__, Vol. 585, Jan. 8, 1863,undated + + + + + + 92 + 118 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10, Vol. 299, pt. 1, P. 200651-200652, Feb. 10, 1863,undated + + + + + + 92 + 119 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 585, Feb. 11, 1863,undated + + + + + + 92 + 120 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1863 03.31 CS TAB 835, 1863,undated + + + + + + 92 + 121 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: Aug. 7, 1863,undated + + + + + + 92 + 122 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 585, Sept. 15 and 17, 1862,undated + + + + + + 92 + 123 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 722, C-13412, Oct. 8, 1863,undated + + + + + + 92 + 124 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG., Vol. 585, March 10, 1866,undated + + + + + + 92 + 125 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1863, 12.07 CS-T 838 letter from Talfourd to Spragge re: David Wawanosh- continue to be paid Qly, 1863,undated + + + + + + 92 + 126 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1863 12.26 CS TAB 840, 1863,undated + + + + + + 92 + 127 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2138, file 28, 172, May 18, 1864,undated + + + + + + 92 + 128 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1865, 06.24 CS-T.843 Discussion, 1865,undated + + + + + + 92 + 129 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1865 11.13 CS TAB 844, 1865,undated + + + + + + 92 + 130 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 364 P. 151-152. [1866], 1866,undated + + + + + + 92 + 131 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1866, 01.17. CS.T.845 Opinion- Bernard, 1866,undated + + + + + + 92 + 132 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 364, P. 591-593, July 12, 1866,undated + + + + + + 92 + 133 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 364 C-9597 P. 594-595, June 21, 1866,undated + + + + + + 92 + 134 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1866, 06.22 CS-T846 Chief David Wawanosh be Deposed and Wm. Wawanosh be appointed in his stead, 1866,undated + + + + + + 92 + 135 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1866 07.27 CS TAB 847, 1866,undated + + + + + + 92 + 136 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1866 08.08 CS TAB 848, 1866,undated + + + + + + 92 + 137 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 387, P. 676-678, Sept. 29, 1866,undated + + + + + + 92 + 138 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1866 12.03 CS TAB 849, 1866,undated + + + + + + 92 + 139 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10, Vol. 799, P. 320-323, Dec. 12, 1866,undated + + + + + + 92 + 140 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1866 12.12 CS TAB 850, 1866,undated + + + + + + 92 + 141 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1866, 12.13 CS-T Memorandum, 1866,undated + + + + + + 92 + 142 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1866, 12.16 CS-T 852 letter advising that David Wawanosh Died (12.12.66), 1866,undated + + + + + + 92 + 143 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1866 12.19 CS TAB 853, 1866,undated + + + + + + 92 + 144 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 365 P. 127-128, Dec. 24, 1866,undated + + + + + + 92 + 145 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 365, P. 226-228. T. 513, Feb. 1, 1867,undated + + + + + + 92 + 146 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 395, P. 206-208, Aug. 21, 1867,undated + + + + + + 92 + 147 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 395, P. 130-131, April 17, 1867,undated + + + + + + 92 + 148 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1868 01.10 CS TAB 855, 1868,undated + + + + + + 92 + 149 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 368 P. 284-286, Jan. 30, 1868,undated + + + + + + 92 + 150 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1868, 05.12 CS-T 856 Resolution confirming payment to widow of David Wawanosh, 1868,undated + + + + + + 92 + 151 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1868, 06.30 CS-T 858 list of Debts of D. Wawanosh (deceased), 1868,undated + + + + + + 92 + 152 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1868 09.21 CS TAB 859, 1868 (Folder 1 of 2),undated + + + + + + 92 + 153 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1868 09.21 CS TAB 859, 1868 (Folder 2 of 2),undated + + + + + + 92 + 154 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 366, P. 479-499, Sept. 23, 1868,undated + + + + + + 92 + 155 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 367, P. 4-6, Dec. 8, 1868,undated + + + + + + 92 + 156 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 367, P. 1-3, Dec. 31, 1868,undated + + + + + + 92 + 157 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2138, file 28, 172, April 17, 1869,undated + + + + + + 92 + 158 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1869, 05.06 CS-T 860 Minutes approving payment of Debts, 1869,undated + + + + + + 92 + 159 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1869, 06.30 CS-T.861 letter re: debts of late D. Wawanosh, 1869,undated + + + + + + 92 + 160 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 367, P. 277-280, April 16, 1870,undated + + + + + + 92 + 161 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 367, P. 281-282, April 23, 1870,undated + + + + + + 92 + 162 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: T.36 June 30, 1870,undated + + + + + + 92 + 163 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 367 P. 290-292. [July 7, 1870/1871], 1870,undated + + + + + + 92 + 164 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1870, 03.10 CS-T.862 letter re: Debts, 1870,undated + + + + + + 92 + 165 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1870, 04. CS-T 863 letter re: debts- late D. Wawanosh, 1870,undated + + + + + + 92 + 166 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1870, 04.13 CS-T.864 Letter re: Debts of D. Wawanosh, 1870,undated + + + + + + 92 + 167 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 367 P. 277-280, April 16, 1870,undated + + + + + + 92 + 168 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1870, 04.23 CS-T 866 Letter concerning the surrender, 1870,undated + + + + + + 92 + 169 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1870, 06.29 CS-T.867 Payment of Chief Wawanosh and Application by Charles MacKenzie, 1870,undated + + + + + + 92 + 170 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1870, 07.16 CS-T 868 Statement re: Interest, 1870,undated + + + + + + 92 + 171 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1870, 11.22 CS-T.870 Payment of Debts re: D. Wawanosh, 1870,undated + + + + + + 92 + 172 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1870, 12.05 CS-T.872 letter advising department would pay debts of David Wawanosh, 1870,undated + + + + + + 92 + 173 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1870, 12.05 CS-T.871 letter advising- payment of Debts, 1870,undated + + + + + + 92 + 174 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1870, 12.05 CS-T 872 letter re: Payment of Debts of David Wawanosh, 1870,undated + + + + + + 92 + 175 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: Observer, P. 4, c. 2. Dec. 30, 1870,undated + + + + + + 92 + 176 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1871, 02.07 CS-T 873 Payment received, 1871,undated + + + + + + 92 + 177 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 368 P. 599 March 10, 1871,undated + + + + + + 92 + 178 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: 1871, 06.05 CS-T.874 letter advising of the death of Joshua Wawanosh, 1871,undated + + + + + + 92 + 179 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 1886, file 1378. Sarnia Reserve- Comm. R. Mackenzie gives # of lots assigned to Wawanosh family. Also Assign from W. Wawanosh to W. Clark of Sarnia. [1873 to 1881], 1873,undated + + + + + + 92 + 180 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 1886, file 1378, Feb. 27, 1873,undated + + + + + + 92 + 181 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: [RG10 Vol. 4381, C-7406 P. 398], Oct. 22, 1872,undated + + + + + + 92 + 182 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10, Vol. 2076, File 11,190. Sarnia Reserve- Payment of W Div. debts of the late Chief D. Wawanosh [list of doc. in files] (Indian Affairs, Red Series), [1879-1922], 1879,undated + + + + + + 92 + 183 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10, Vol. 2076, file 11190, Jan. 15, 1879,undated + + + + + + 92 + 184 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10, Vol. 2076, file 11,190, Jan. 24, 1879,undated + + + + + + 92 + 185 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10, Vol. 2076, file 11,190, Jan. 12, 1879,undated + + + + + + 92 + 186 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10, Vol. 2076, file 11,190, Feb. 22, 1879,undated + + + + + + 92 + 187 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2138, file 28,172, Sarnia Reserve- Claim by Joseph Wawanosh that he is the rightful chief of the band. (Indian Affairs, Red Series) [1881-____ ], 1881,undated + + + + + + 92 + 188 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2138, file 28,172, Sarnia Reserve- Claim by Joseph Wawanosh that he is the rightful chief of the band. (Indian Affairs, Red Series) [1881-____ ], 1881,undated + + + + + + 92 + 189 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 1886, File 1378, P. 27939, March 24, 1881,undated + + + + + + 92 + 190 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2138, file 28,172, March 25, 1881,undated + + + + + + 92 + 191 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10, Vol. 2138, file 28,172, March 30, 1881, J. Wawanosh [3 doc.], 1881,undated + + + + + + 92 + 192 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 1886 file 1378, April 4, 1881,undated + + + + + + 92 + 193 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 1886, file 1378, April 11, 1881,undated + + + + + + 92 + 194 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2138, file 28,172, April 16, 1881,undated + + + + + + 92 + 195 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 1886 file 1378, April 20, 1881,undated + + + + + + 92 + 196 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 1886 file 1378, April 28, 1881,undated + + + + + + 92 + 197 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 1886 file 1378, May (17 or 14), 1881,undated + + + + + + 92 + 198 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 1886 file 1378, May 30, 1881,undated + + + + + + 92 + 199 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 1886 file 1378, June 4, 1881,undated + + + + + + 92 + 200 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 1886, file 1378, July 14, 1881,undated + + + + + + 92 + 201 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 2452, file 94,254. Key to FILE 94254, Indian Affairs Red Series Claim by heirs of Ka-ke-guan, etc. [1889-1890], 1889,undated + + + + + + 92 + 202 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2452, file 94254, March 16, 1889,undated + + + + + + 92 + 203 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2452, file 94254, March 28, 1889,undated + + + + + + 92 + 204 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2452, file 94254, April (2), 1889,undated + + + + + + 92 + 205 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2452, file 94,254, April 4, 1889,undated + + + + + + 92 + 206 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2452, file 94,254, April 8, 1889,undated + + + + + + 92 + 207 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2452, file 94,254, April 11, 1889,undated + + + + + + 92 + 208 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2452, file 94254, May (5), 1889,undated + + + + + + 92 + 209 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2452, file 94254, May 10, 1889,undated + + + + + + 92 + 210 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2452, file 94254, May (15), 1889,undated + + + + + + 92 + 211 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2452, file 94254, May 22, 1889,undated + + + + + + 92 + 212 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2452, file 94254, May 29, 1889,undated + + + + + + 92 + 213 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2452, file 94254, June (7), 1889,undated + + + + + + 92 + 214 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2452, file 94254, June 27, 1889,undated + + + + + + 92 + 215 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2452, file 94254, July (12), 1889,undated + + + + + + 92 + 216 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2452, file 94254, July 17, 1889,undated + + + + + + 92 + 217 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2452, file 94254, June 23, 1890,undated + + + + + + 92 + 218 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2452, file 94254, July 23, 1890,undated + + + + + + 92 + 219 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2452, file 94254, July 2, 1890,undated + + + + + + 92 + 220 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10, Vol. 2076, file 11190, April 3, 1891,undated + + + + + + 92 + 221 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10, Vol. 2076, file 11,190, April 8, 1891,undated + + + + + + 92 + 222 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10, Vol. 2076, file 11,190, April 11, 1891 (Folder 1 of 2),undated + + + + + + 92 + 223 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10, Vol. 2076, file 11,190, April 11, 1891 (Folder 2 of 2),undated + + + + + + 92 + 224 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10, Vol. 2076, file 11,190, April 15, 1891,undated + + + + + + 92 + 225 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10, Vol. 2076, file 11,190, April 17, 1891,undated + + + + + + 92 + 226 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10 Vol. 2568 file 115678 pt. 1 C-11240, May 16, 1891,undated + + + + + + 92 + 227 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10, Vol. 2076, file 11,190, March 9, 1892,undated + + + + + + 92 + 228 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10, Vol. 2076, file 11, 190, March 12, 1892,undated + + + + + + 92 + 229 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10, Vol. 2076, file 11,190. [partial], March 18, 1892,undated + + + + + + 92 + 230 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2076, file 11,190. W. Jacobs, May 11, 1892,undated + + + + + + 92 + 231 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2076, file 11,190. D. Otter, May 11, 1892,undated + + + + + + 92 + 232 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2076, file 11,190, June 6, 1892,undated + + + + + + 92 + 233 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2076, file 11,190, May 31, 1892,undated + + + + + + 92 + 234 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2076, file 11,190, June 10, 1892,undated + + + + + + 92 + 235 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2076, file 11,190, March 3, 1893 (Folder 1 of 2),undated + + + + + + 92 + 236 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2076, file 11,190, March 3, 1893 (Folder 2 of 2),undated + + + + + + 92 + 237 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2076, file 11,190, March 6, 1893,undated + + + + + + 92 + 238 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2076, file 11,190, March 9, 1893,undated + + + + + + 92 + 239 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2076, file 11,190, March 11, 1893,undated + + + + + + 92 + 240 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10, Vol. 2076, file 11,190, March 20, 1893,undated + + + + + + 92 + 241 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2076, file 11,190, March 23, 1893,undated + + + + + + 92 + 242 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2076, file 11,190, March 24, 1893,undated + + + + + + 92 + 243 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10, Vol. 2076, file 11,190, Oct. 26, 1897,undated + + + + + + 92 + 244 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10, Vol. 2076, file 11,190, Nov. 5, 1897,undated + + + + + + 92 + 245 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2076, file 11,190, Nov. 11, 1897,undated + + + + + + 92 + 246 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG.10, Vol. 2138, file 28,172. [1898], Will of Joseph Wawanosh enclosed, 1898,undated + + + + + + 92 + 247 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10, Vol. 2138, file 28,172, Aug. 3, 1898,undated + + + + + + 92 + 248 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10, Vol. 2138, file 28,172, Dec. 8, 1898,undated + + + + + + 92 + 249 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: PAC RG10, Vol. 2138, file 28172, Dec. 16, 1898,undated + + + + + + 92 + 250 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: “History of Walpole Island,” prepared by Treaties Section, Treaties and Historic Research, DIAND Mtawa, [1970], 1970,undated + + + + + + 92 + 251 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: Indian Land Sales System: Posted Sales Abstract Report, Sale No. 2- Lot 27, Concession 6, Bosanquet, June 7, 1994,1994 + + + + + + 92 + 252 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: LCL-WP ,undated + + + + + + 92 + 253 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: Benai, E.B. Cameron Lands Research Report, 1996,1996 + + + + + + 92 + 254 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: Coleman, Margaret. 1972. “Malcolm Cameron” in Dictionary of Canadian Biography, Vol. 10, M. Terreur (ed.) P. 124-129, 1972,undated + + + + + + 92 + 255 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: Biographical Info. Malcolm Cameron,undated + + + + + + 92 + 256 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: Jones, P. Life and JLs of Kahkewaquonaby,undated + + + + + + 92 + 257 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: Graham- Medicine Man to Missionary, 1975,undated + + + + + + 92 + 258 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: Plain, A. Various Histories of Sarnia Chippewa ,undated + + + + + + 92 + 259 + Box 4 Sarnia, Calendar Documents, 1853-1898, unpublished sources: Surtees, R. Indian Land Surrenders in Ontario, Feb. 1984,1984 + + + + + + 93 + 1 + Box 5 Sarnia, Cleland report, reference documents: Indian Treaties and Surrenders, Vol. 1 P. 253,1992 + + + + + + 93 + 2 + Box 5 Sarnia, Cleland report, reference documents: Bolt, Christine. American Indian Policy and American Reform,1987 + + + + + + 93 + 3 + Box 5 Sarnia, Cleland report, reference documents: Cleland, Charles E. “From Ethnohistory to Archeology: Ottawa and Ojibwa Band Territories of the Northern Great Lakes.” In Text-Aided Archaeology. Barbara Little, ed.,1991 + + + + + + 93 + 4 + Box 5 Sarnia, Cleland report, reference documents: Cleland, Charles E. “Indians in a Changing Environment” in Great Lakes Forest: An Environmental and Social History. S. Flader, ed.,1992 + + + + + + 93 + 5 + Box 5 Sarnia, Cleland report, reference documents: Cleland, Charles E. Rites of Conquest, P. 160, 208,1992 + + + + + + 93 + 6 + Box 5 Sarnia, Cleland report, reference documents: Clifton, James. “A Place of Refuge for all Time: Migration of American Potawatomi into Upper Canada 1830-1850.” National Museum of Man, Mercury Series, Paper No. 26. P. 34, 94,,1975 + + + + + + 93 + 7 + Box 5 Sarnia, Cleland report, reference documents: Coleman, Margaret, “Malcolm Cameron” In Dictionary of Canadian Biography, Vol. 10, N. Terreor (ed.) P. 124-129,1972 + + + + + + 93 + 8 + Box 5 Sarnia, Cleland report, reference documents: Curnoe, Greg. Deeds/ Nations. F. Davey and N. Farris, Ed.,1996 + + + + + + 93 + 9 + Box 5 Sarnia, Cleland report, reference documents: Densmore, Frances. Chippewa Customs. P. 9,1970 + + + + + + 93 + 10 + Box 5 Sarnia, Cleland report, reference documents: Dunning, R.W. Social and Economic Change Among the Northern Ojibwa,1959 + + + + + + 93 + 11 + Box 5 Sarnia, Cleland report, reference documents: Ferris, Neil. Continuity w/in Change: Settlement- Subsistence Strategies and Artifact Patterns of the Southwestern Ontario Ojibwa, 1780-1861. M.A. Thesis. P. 23,126, FIG. 4, P. 204,223,1989 + + + + + + 93 + 12 + Box 5 Sarnia, Cleland report, reference documents: Graham, Elizabeth. Medicine Man to Missionary: Missionaries as Agents of Change Among the Indians of Southern Ont., 1784-1867. P. 38,1975 + + + + + + 93 + 13 + Box 5 Sarnia, Cleland report, reference documents: Greenberg, A. and J. Morrison.. “Group Identities in the Boreal Forests: the Origin of the Northern Ojibwa.” Ethnohistory 92(2) P. 75-102,1982 + + + + + + 93 + 14 + Box 5 Sarnia, Cleland report, reference documents: Harris, F. Cole. Historical Atlas of Canada, Vol. 1, Plate 34,[1987] + + + + + + 93 + 15 + Box 5 Sarnia, Cleland report, reference documents: Hickerson, H. Chippewa and their Neighbors: A Study in Ethnohistory,1970 + + + + + + 93 + 16 + Box 5 Sarnia, Cleland report, reference documents: Jones, Peter. History of the Ojibway Indians, 1861,undated + + + + + + 93 + 17 + Box 5 Sarnia, Cleland report, reference documents: Jenness, Diamond. “Ojibwa Indians of Parry Island: Their Social and Religious Life,” Natural Museum of Canada Bulletin 78, Anthr. Series 17, 1935,undated + + + + + + 93 + 18 + Box 5 Sarnia, Cleland report, reference documents: Pitezel, John. Lights and Shades of Missionary Life, 1857,undated + + + + + + 93 + 19 + Box 5 Sarnia, Cleland report, reference documents: Prucha, Paul R. Great Father, P. 10,1984 + + + + + + 93 + 20 + Box 5 Sarnia, Cleland report, reference documents: Quaife, Milo M. (ed.) Siege of Detroit in 1763. P. 61, 1958,undated + + + + + + 93 + 21 + Box 5 Sarnia, Cleland report, reference documents: Rogers, Mary Black. “Varieties of ‘Starving’: Semantics and Survival in the Subartic Fur Trade, 1750-1850,” Ethnohistory, Vol. 33, No. 4, P. 353-383,1986 + + + + + + 93 + 22 + Box 5 Sarnia, Cleland report, reference documents: Rodgers, E.S. “Southeastern Ojibwa,” Handbook of N American Indians, Vol. 15. B. Trigger, ed.,1978 + + + + + + 93 + 23 + Box 5 Sarnia, Cleland report, reference documents: Sahlins, M. Tribesmen, 1968,undated + + + + + + 93 + 24 + Box 5 Sarnia, Cleland report, reference documents: Schmalz, Peter S. Ojibwa of Southern Ontario. P. 21-25,1991 + + + + + + 93 + 25 + Box 5 Sarnia, Cleland report, reference documents: Service, E. Primitive Social Organization,1971 + + + + + + 93 + 26 + Box 5 Sarnia, Cleland report, reference documents: Surtees, R. J. “Indian Land Cessions in Upper Canada 1815-1830,” As Long as the Sun Shines and the Water Flows: A Reader in Canadian Native Studies. P. 78,1983 + + + + + + 93 + 27 + Box 5 Sarnia, Cleland report, reference documents: Surtees, Robert J. “Land Cessions, 1763-1830,” Aboriginal Ontario, Historical Perspectives on the First Nations. E.S. Rogers and D.B. Smith, ed. P. 93, Map 6.4,1994 + + + + + + 93 + 28 + Box 5 Sarnia, Cleland report, reference documents: Tanner, Helen H. Atlas of Great Lakes Indian History. Map 13 and P. 131-134,1987 + + + + + + 93 + 29 + Box 5 Sarnia, Cleland report, reference documents: Trigger, B. Children of Aataentsic,1976 + + + + + + 93 + 30 + Box 5 Sarnia, Cleland report, reference documents: Warren, William. History of the Ojibwa People,1984 + + + + + + 93 + 31 + Box 5 Sarnia, Cleland report, reference documents: White, Richard. Middle ground- Indians, Empires and Republics in the Great Lakes Region, 1650- 1815,1981 + + + + + + 93 + 32 + Box 5 Sarnia, Cleland report, reference documents: PAC B123 P.442-5. M.H.C.XI, 409-10. April 26, 1784. CB TAB 34, 1784,undated + + + + + + 93 + 33 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 Vol. 45 P. 23880-23882. May 18-22, 1790. CS TAB 40, 1790,undated + + + + + + 93 + 34 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10, Vol. 3, P. 954-957, Feb. 13, 1809,undated + + + + + + 93 + 35 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 Vol. 35 P. 20585. Oct. 22, 1818, TAB 57, 1818,undated + + + + + + 93 + 36 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 Vol. 36 P. 20674. Feb. 2, 1819, CS TAB 60, 1819,undated + + + + + + 93 + 37 + Box 5 Sarnia, Cleland report, reference documents: May 4, 1820. CS TAB 67, 1820,undated + + + + + + 93 + 38 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 Vol. 43 P. 22764-22767. March 25, 1825, CS TAB 76, 1825,undated + + + + + + 93 + 39 + Box 5 Sarnia, Cleland report, reference documents: PAC RG 10 Vol. 43 P. 22772-22776, April 26, 1825,undated + + + + + + 93 + 40 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 Vol. 43 P. 22784-22785, April 27, 1825, CS TAB 79, 1825,undated + + + + + + 93 + 41 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-10998 Vol. 5 P. 2575-2578. Aug. 13, 1830, CS TAB 110, 1830,undated + + + + + + 93 + 42 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 Vol. 456 P. 41-42, May 18, 1831,undated + + + + + + 93 + 43 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11015 Vol. 48 P. 54629-54635. June 1, 1831. CS TAB 114, 1831,undated + + + + + + 93 + 44 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-13342 Vol. 499 P. 152. June 23, 1831. CS TAB 119, 1831,undated + + + + + + 93 + 45 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11015 Vol. 48 P. 54919-52922. July 15, 1831. CS TAB 122, 1831,undated + + + + + + 93 + 46 + Box 5 Sarnia, Cleland report, reference documents: PAO-WJLB MS.296 P. 8-10. Aug. 15, 1831. CS TAB 125, 1831,undated + + + + + + 93 + 47 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 Vol. 438 (P. 2-4?) Aug. 13, 1832. CS TAB 138, 1832,undated + + + + + + 93 + 48 + Box 5 Sarnia, Cleland report, reference documents: PAO-WJLB MS.296 P. 34. Oct. 10, 1832. CS TAB 144, 1832,undated + + + + + + 93 + 49 + Box 5 Sarnia, Cleland report, reference documents: PAO-WJLB MS.296. Oct. 27, 1832. CS TAB 145, 1832,undated + + + + + + 93 + 50 + Box 5 Sarnia, Cleland report, reference documents: PAO-WJLB MS.296 P. 37-38. Dec. 20, 1832, CS TAB 148, 1832,undated + + + + + + 93 + 51 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 Vol. 442 P. 184-186. Aug. 24, 1833, CS TAB 153, 1833,undated + + + + + + 93 + 52 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 Vol. 456 P. 92. Oct. 28, 1833. CS TAB 158, 1833,undated + + + + + + 93 + 53 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 Vol. 456 P. 125-126. Aug. 27, 1834. CS TAB 163, 1834,undated + + + + + + 93 + 54 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11018 Vol. 56 P. 58790-58791. Oct. 9, 1834. CS TAB 165, 1834,undated + + + + + + 93 + 55 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11019 Vol. 57 P. 58963-58966. Jan. 7, 1835. CS TAB 167, 1835,undated + + + + + + 93 + 56 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11019 Vol. 59 P. 58790-59883. Sept. 21, 1835. CS TAB 176, 1835,undated + + + + + + 93 + 57 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 Vol. 264 P. 161414-162177. 1836. CS TAB 211 (formerly 10.01, 1836), 1836,undated + + + + + + 93 + 58 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11020 Vol. 60 P. 60533-60536. Jan. 6, 1836. CS TAB 183, 1836,undated + + + + + + 93 + 59 + Box 5 Sarnia, Cleland report, reference documents: PAO-WJLB MS.296 P. 120-122. Feb. 8, 1836. CS TAB 186, 1836,undated + + + + + + 93 + 60 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-13328 Vol. 456 P. 106-107. March 11, 1836. CS TAB 197, 1836,undated + + + + + + 93 + 61 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11020 Vol. 61 P. 61130-61133. April 6, 1836. CS TAB 201, 1836,undated + + + + + + 93 + 62 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11020 Vol. 61 P. 61159-61161. May 6, 1836. CS TAB 202, 1836,undated + + + + + + 93 + 63 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 Vol. 58 P. 59693. July 27, 1836. CS TAB 206, 1836,undated + + + + + + 93 + 64 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 Vol. 62 P. 61659-61660. Aug. 20, 1836. CS TAB 208, 1836,undated + + + + + + 93 + 65 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11021 Vol. 62 P. 61709-61710. Sept. 6, 1836. CS TAB 209, 1836,undated + + + + + + 93 + 66 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 Vol. 63 P. 61837-61839. Oct. 1, 1836,undated + + + + + + 93 + 67 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 Vol. 63 P. 61920. Oct. 20, 1836,undated + + + + + + 93 + 68 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-13328 Vol. 456 P. 129. Nov. 17, 1836. CS TAB 219, 1836,undated + + + + + + 93 + 69 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11022 Vol. 64 P. 62557-62558. Jan. 24, 1837. CS TAB 228, 1837,undated + + + + + + 93 + 70 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 Vol. 64 P. 62851-62853. March 24, 1837. CS TAB 235, 1837,undated + + + + + + 93 + 71 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11082 Vol. 64 P. 62854-62855. March 24, 1837. CS TAB 236, 1837,undated + + + + + + 93 + 72 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11026 Vol. 73 P. 67416-67417. March 28, 1837. CS TAB 238, 1837,undated + + + + + + 93 + 73 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11022 Vol. 65 P. 63416. March 30, 1837. CS TAB 239, 1837,undated + + + + + + 93 + 74 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11022 Vol. 65 P. 63418-63419. April 30, 1837. CS TAB 241, 1837,undated + + + + + + 93 + 75 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 Vol. 66 P. 63444-63445. May 20, 1837. CS TAB 243, 1837,undated + + + + + + 93 + 76 + Box 5 Sarnia, Cleland report, reference documents: MTRL-JP B56 P. 391, 392, 397. July 18, 1837. CS TAB 247, 1837,undated + + + + + + 93 + 77 + Box 5 Sarnia, Cleland report, reference documents: PAO WJLB Dec. 1, 1837,undated + + + + + + 93 + 78 + Box 5 Sarnia, Cleland report, reference documents: Ontario Court of Justice (General Div.) between: Chippewas of Sarnia Band –and- AG of Canada … Affidavit of Alexander Von Gernet. Court file no: 95-CU-92484,undated + + + + + + 93 + 79 + Box 5 Sarnia, Cleland report, reference documents: PAO-WJLB MS.296 P. 171-172. Dec. 1, 1837. CS TAB 252, 1837,undated + + + + + + 93 + 80 + Box 5 Sarnia, Cleland report, reference documents: PAO- WJLB, Jan. 31, 1838,undated + + + + + + 93 + 81 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11023 Vol. 68 P. 64633-64638. July 10, 1838. CS TAB 261, 1838,undated + + + + + + 93 + 82 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11483 Vol. 128 P. 72240-72242. July 31, 1838. CS TAB 265, 1838,undated + + + + + + 93 + 83 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11024 Vol. 69 P. 64906-64911. Aug. 2, 1838. CS TAB 266, 1838,undated + + + + + + 93 + 84 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 Vol. 128 P. 72243-72244. Aug. 8, 1838. CS TAB 268, 1838,undated + + + + + + 93 + 85 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11483 P. 72232-72239. Sept. 4, 1838. CS TAB 272, 1838,undated + + + + + + 93 + 86 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-64904 Vol. 69 P. 64904. Oct. 1, 1838. CS TAB 277, 1838,undated + + + + + + 93 + 87 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11024 Vol. 69 P. 64915-64923. Oct. 12, 1838. CS TAB 278, 1838,undated + + + + + + 93 + 88 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11483 Vol. 128 P. 77253. Oct. 14, 1838. CS TAB 279, 1838,undated + + + + + + 93 + 89 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11011 Vol. 36 P. 20725. March 25, 1839. CS TAB 287, 1839,undated + + + + + + 93 + 90 + Box 5 Sarnia, Cleland report, reference documents: PAO-WJLB MS.296 P. 201-202. May 30, 1839. CS TAB 291, 1839,undated + + + + + + 93 + 91 + Box 5 Sarnia, Cleland report, reference documents: PAC RG5 A1, Vol. 226 P. 123938-123945. Aug. 12, 1839. AG TAB86, 1839,undated + + + + + + 93 + 92 + Box 5 Sarnia, Cleland report, reference documents: MTRL-JP B57 P. 373-381. Sept. 3, 1839. CS TAB 299, 1839,undated + + + + + + 93 + 93 + Box 5 Sarnia, Cleland report, reference documents: MTRL-JP B57 P. 345-346. Sept. 3, 1839. CS TAB 300, 1839,undated + + + + + + 93 + 94 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 Vol. 71 P. 66345. Oct. 29, 1839. CS TAB 305, 1839,undated + + + + + + 93 + 95 + Box 5 Sarnia, Cleland report, reference documents: PAO-WJLB MS.296 P. 207. Nov. 9, 1839. CS TAB 310, 1839,undated + + + + + + 93 + 96 + Box 5 Sarnia, Cleland report, reference documents: PAC RG1 L3 C1731 Vol. 124 (no. 101) P. 101c-101e. Nov. 9, 1839. CS TAB 308, 1839,undated + + + + + + 93 + 97 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11025 Vol. 71 P. 66423-66425. Nov. 12, 1839. CS TAB 312, 1839,undated + + + + + + 93 + 98 + Box 5 Sarnia, Cleland report, reference documents: PAC RG1 C-1731 L3 Vol. 124 P. 101k-101m. Nov. 16, 1839. CS TAB 315, 1839,undated + + + + + + 93 + 99 + Box 5 Sarnia, Cleland report, reference documents: PAC RG61 C-1731 L3 Vol. 124 P. 101n-101q. Nov. 18, 1839. CS TAB 317, 1839,undated + + + + + + 93 + 100 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 Vol. 442 P. 204-207. March 13, 1840. TAB 336, 1840,undated + + + + + + 93 + 101 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 Vol. 119 P. 262-263. March 19, 1840. CS TAB 339, 1840,undated + + + + + + 93 + 102 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-13342 Vol. 504 P. 62. April 6, 1840. CS TAB 342, 1840,undated + + + + + + 93 + 103 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11026 Vol. 74 P. 68042-68043. May 5, 1840. CS TAB 346, 1840,undated + + + + + + 93 + 104 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11483 Vol. 73 P. 67775-67776. June 2, 1840. CS TAB 348, 1840,undated + + + + + + 93 + 105 + Box 5 Sarnia, Cleland report, reference documents: PAC RG1 L3 C-1731, No. 101 P. 101f to 101g. June 9, 1840. CS TAB 350, 1840,undated + + + + + + 93 + 106 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-13328 Vol. 456 P. 156-157. June 18, 1840. CS TAB 352, 1840,undated + + + + + + 93 + 107 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11026 Vol. 74 P. 68104-68105 TAB 364, Sept. 12, 1840,undated + + + + + + 93 + 108 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-13343 Vol. 504 P. 231-232. TAB 375, Dec. 15, 1840,undated + + + + + + 93 + 109 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 Vol. 75 P. 68578-68581, Dec. 26, 1840,undated + + + + + + 93 + 110 + Box 5 Sarnia, Cleland report, reference documents: Dec. 29, 1840. CS TAB 378, 1840,undated + + + + + + 93 + 111 + Box 5 Sarnia, Cleland report, reference documents: Annual Report of COIA for 1841,undated + + + + + + 93 + 112 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11207 Vol. 76 P. 68813-68814. March 2, 1841. CS TAB 386, 1841,undated + + + + + + 93 + 113 + Box 5 Sarnia, Cleland report, reference documents: PAC RG10 C-11027 Vol. 76 P. 68692-68693. June 5, 1841. CS TAB 394, 1841,undated + + + + + + 94 + 1 + Box 6 Sarnia, Court documents: Court File No. 95-CU-92484, Ontario Court (General Div.) between: Chippewas of Sarnia Band v. AG of Canada, et al., Document Lists of AG,undated + + + + + + 94 + 2 + Box 6 Sarnia, Court documents: Court File No. 95-CU-92484, Ontario Court (General Div.) between: Chippewas of Sarnia Band –and- AG of Canada, et al., Cross-Motion Record of the Plaintiff/ Responding Party- Volume III,undated + + + + + + 94 + 3 + Box 6 Sarnia, Court documents: Court File No. 95-CU-92484, Ontario Court (General Div.) between: Chippewas of Sarnia Band v. AG of Canada, et al., Cross-Motion Record of the Plaintiff/ Responding Party- Volume IV,undated + + + + + + 94 + 4 + Box 6 Sarnia, Court documents: Court File No. 95-CU-92484, Ontario Court (General Div.) between: Chippewas of Sarnia Band v. AG of Canada, et al., Amended Cross-Motion Record of the Plaintiff/ Responding Party- Volume I,undated + + + + + + 94 + 5 + Box 6 Sarnia, Court documents: Court File No. 95-CU-92484, Ontario Court (General Div.) between: Chippewas of Sarnia Band v. AG of Canada, et al., Amended Cross-Motion Record of the Plaintiff/ Responding Party- Volume II,undated + + + + + + 94 + 6 + Box 6 Sarnia, Court documents: Court File No. 95-CU-92484, Ontario Court (General Div.) between: Chippewas of Sarnia Band v. AG of Canada, et al., First Affidavit of Professor J.R. Miller Affirmed,April 14, 1997 + + + + + + 94 + 7 + Box 6 Sarnia, Court documents: Court File No. 95-CU-92484, Ontario Court (General Div.) between: Chippewas of Sarnia Band v. AG of Canada, et al., Second Affidavit of Professor J.R. Miller Affirmed,May 16, 1997 + + + + + + 94 + 8 + Box 6 Sarnia, Court documents: Court File No. 95-CU-92484, Ontario Court (General Div.) between: Chippewas of Sarnia Band v. AG of Canada, et al., Affidavit of Krystyna Sieciechowicz,undated + + + + + + 94 + 9 + Box 6 Sarnia, Court documents: Court File No. 95-CU-92484, Ontario Court (General Div.) between: Chippewas of Sarnia Band v. AG of Canada, et al., Affidavit of Reynold C. (“Hugh”) Williams,undated + + + + + + 94 + 10 + Box 6 Sarnia, Court documents: Sarnia Filings,undated + + + + + + 94 + 11 + Box 6 Sarnia, Court documents: Court File No. 95-CU-92484, Ontario Court (General Div.) between: Chippewas of Sarnia Band v. AG of Canada, et al., Pleadings Brief Volume I,undated + + + + + + 94 + 12 + Box 6 Sarnia, Court documents: Court File No. 95-CU-92484, Ontario Court (General Div.) between: Chippewas of Sarnia Band v. AG of Canada, et al., Affidavit of Susan Padmos,undated + + + + + + 94 + 13 + Box 6 Sarnia, Court documents: Chippewas of Sarnia Band v. AG of Canada and others, #78, 741-1, Documents Referring to in the Affidavit of Susan Padmos,undated + + + + + + 94 + 14 + Box 6 Sarnia, Court documents: Court File No. 95-CU-92484, Ontario Court (General Div.) between: Chippewas of Sarnia Band v.- AG of Canada, et al., Lists of Documents,undated + + + + + + 94 + 15 + Box 6 Sarnia, Court documents: Band Division, Sarnia/ Walpole, 1831-1870, MC007, 1831-1870,undated + + + + + + 94 + 16 + Box 6 Sarnia, Court documents: von Gernet- Oral Narratives,1996 + + + + + + 94 + 17 + Box 6 Sarnia, Court documents: Surtees, R.J. 1969. “Development of an Indian Reserve Policy in Canada Ontario History, Vol. LXI (2), P. 92, 1969,undated + + + + + + 94 + 18 + Box 6 Sarnia, Court documents: Graham, E. Contact Agents and Competition in the Indian Reserve Communities of Southwestern Ontario in the 19th Century,April 26, 1986 + + + + + + 94 + 19 + Box 6 Sarnia, Court documents: Graham, E. Exerps(sic) from Strategies and Souls, Ph.D. Dissertation, 1973,undated + + + + + + 94 + 20 + Box 6 Sarnia, Court documents: Graham, E. Exerps(sic) from Strategies and Souls, Ph.D. Dissertation, 1973,undated + + + + + + 94 + 21 + Box 6 Sarnia, Court documents: Leslie, J. Indian Affairs in Canada 1828-1858,1985 + + + + + + 95 + 1 + Box 7 Sarnia, Misc. documents (Loose material in the Box was foldered by the archivist in the order it was found.): “Early History of St. Clair County”, MPHS 17, 1892; Correspondence, 1818, 1869,undated + + + + + + 95 + 2 + Box 7 Sarnia, Misc. documents (Loose material in the Box was foldered by the archivist in the order it was found.): Sarnia Report,Sept 17, 1996 + + + + + + 95 + 3 + Box 7 Sarnia, Misc. documents (Loose material in the Box was foldered by the archivist in the order it was found.): Letters of General Gage, April 13, 1764 (Documents…Colonial History…NY, v. VIII, 1856); Proclamation of military commander at Detroit, 1766; Earl of Dartmouth v. 2, p. 2338; Letters to Duke of Richmond, 1819; Letter to Earl of Batherd, 1827 and transcription; Letter to Dear Mother from Peter Jones, 1855; “Missionary” in Christian Guardian;Report to the Committee of the Executive Council , Indian Dept., 1836; Malcolm Cameron biographical information, 1996; Lands of Canadian National Railway Co. within the “Cameron Lands”, subject to claims of Chippewas of Sarnia Band Court File NO. 95-CU-92484 document list; letter to Sir, 1851? (partial); Royal Proclamation w map, 1763; speech from Wawanosh to Jarvis, 1839,undated, 1996 + + + + + + 95 + 4 + Box 7 Sarnia, Misc. documents (Loose material in the Box was foldered by the archivist in the order it was found.): Sarnia Correspondence,ndated + + + + + + 95 + 5 + Box 7 Sarnia, Misc. documents (Loose material in the Box was foldered by the archivist in the order it was found.): Sarnia Notes,undated + + + + + + 95 + 6 + Box 7 Sarnia, Misc. documents (Loose material in the Box was foldered by the archivist in the order it was found.): “Missionary Intelligence” on St. Clair Indians, 1830 in Christian Advocate and Journal…1830; documents re: split between Walpole Island and Sarnia, 1843; Malcolm Cameron letter, May 4, 1844; Minutes of Sarnia Indian Council, April 18, 1859; Letter from to Wm. Jones from Samuel P. Jarvis, June 26, 1843; Letter from Wm. Jones, July 27, 1836 shows extent of purchase from Indians; letter to Hon. R. Bruce from George Stevenson, July 13, 1850; letter to James Porter from J.B> Clench, May 3, 1851; Minutes of Court of Investigation v. George Henry, Interpreter, June 22-23, 1843; Vidal, Talfourd and Biddle report their proceedings on complain against Keating and Henry, June 24-29, 1843; Minutes of Court of Investigation v. J.W. Keating, Ass. Supt. Indian Affairs, June 22-23, 1843,undated + + + + + + 95 + 7 + Box 7 Sarnia, Misc. documents (Loose material in the Box was foldered by the archivist in the order it was found.): Lists of Chiefs, 183-1853; Returns (Census) of Indians in Canada, 1833-1853,undated + + + + + + 95 + 8 + Box 7 Sarnia, Misc. documents (Loose material in the Box was foldered by the archivist in the order it was found.): Ontario (General Div.) Court file No. 95-CU-92484 Chippewas of Sarnia Band and AG of Canada, et al., List of Documents and the documents (Sections 1-32),undated + + + + + + 95 + 9 + Box 7 Sarnia, Misc. documents (Loose material in the Box was foldered by the archivist in the order it was found.): Wells, Who’s Who Guide To Individuals,undated + + + + + + 95 + 10 + Box 7 Sarnia, Misc. documents (Loose material in the Box was foldered by the archivist in the order it was found.): Wells, Indian Signers of Documents, 1818-1866,undated + + + + + + 95 + 11 + Box 7 Sarnia, Misc. documents (Loose material in the Box was foldered by the archivist in the order it was found.): Memorial of the Chippeway Indians, 1876, 1871,undated + + + + + + 95 + 12 + Box 7 Sarnia, Misc. documents (Loose material in the Box was foldered by the archivist in the order it was found.): Letter to Ms. Bell re: discovered Returns (census) of Indians, 1831-1853, 1997, includes copies of Returns,1997 + + + + + + 95 + 13 + Box 7 Sarnia, Misc. documents (Loose material in the Box was foldered by the archivist in the order it was found.): Waq-waynosh line, Chippewa signatories of St. Clair and Chenail Escarte, Chief David Wawanosh letters, 1838, 1869, Notes,undated + + + + + + 95 + 14 + Box 7 Sarnia, Misc. documents (Loose material in the Box was foldered by the archivist in the order it was found.): American Indians File 8520, Indian Affairs Red Series RG 10 v. 2022 (folder 1 of 3),undated + + + + + + 95 + 15 + Box 7 Sarnia, Misc. documents (Loose material in the Box was foldered by the archivist in the order it was found.): American Indians File 8520, Indian Affairs Red Series RG 10 v. 2022 (folder 2 of 3),undated + + + + + + 95 + 16 + Box 7 Sarnia, Misc. documents (Loose material in the Box was foldered by the archivist in the order it was found.): American Indians File 8520, Indian Affairs Red Series RG 10 v. 2022 (folder 3 of 3),undated + + + + + + 95 + 17 + Box 7 Sarnia, Misc. documents (Loose material in the Box was foldered by the archivist in the order it was found.): American Indians File 8520-3, Indian Affairs Red Series RG 10 v. 2023,undated + + + + + + 95 + 18 + Box 7 Sarnia, Misc. documents (Loose material in the Box was foldered by the archivist in the order it was found.): American Indians File 8520-3 and 8520-4, [Indian Affairs Red Series RG 10 v. 2023-24],undated + + + + + + 95 + 19 + Box 7 Sarnia, Misc. documents (Loose material in the Box was foldered by the archivist in the order it was found.): American Indians- Binder 12,undated + + + + + + 95 + 20 + Box 7 Sarnia, Misc. documents (Loose material in the Box was foldered by the archivist in the order it was found.): Schedule A documents in possession of …Her Majesty the Queen, …to which defendant does not object, list and documents #1-54,undated + + + + + + 96 + 1 + Box 8 Sarnia, Crown documents: 1768 04.08 AG TAB 1, 1768,undated + + + + + + 96 + 2 + Box 8 Sarnia, Crown documents: 1784 04.26 AG TAB 2, 1784,undated + + + + + + 96 + 3 + Box 8 Sarnia, Crown documents: 1818 10.16 AG TAB 3, 1818,undated + + + + + + 96 + 4 + Box 8 Sarnia, Crown documents: 1832 10.10 AG TAB 4, 1832,undated + + + + + + 96 + 5 + Box 8 Sarnia, Crown documents: 1832 10.10 AG TAB 5, 1832,undated + + + + + + 96 + 6 + Box 8 Sarnia, Crown documents: 1832 10.27 AG TAB 6, 1832,undated + + + + + + 96 + 7 + Box 8 Sarnia, Crown documents: 1833 09.16 AG TAB 7, 1833,undated + + + + + + 96 + 8 + Box 8 Sarnia, Crown documents: 1833 11.28 AG TAB 8, 1833,undated + + + + + + 96 + 9 + Box 8 Sarnia, Crown documents: 1834 02.03 AG TAB 9, 1834,undated + + + + + + 96 + 10 + Box 8 Sarnia, Crown documents: 1834 05.07 AG TAB 10, 1834,undated + + + + + + 96 + 11 + Box 8 Sarnia, Crown documents: 1834 05.12 AG TAB 11, 1834,undated + + + + + + 96 + 12 + Box 8 Sarnia, Crown documents: 1834 12.08 AG TAB 12, 1834,undated + + + + + + 96 + 13 + Box 8 Sarnia, Crown documents: 1835 09.08 AG TAB 13, 1835,undated + + + + + + 96 + 14 + Box 8 Sarnia, Crown documents: 1835 09.21 AG TAB 14, 1835,undated + + + + + + 96 + 15 + Box 8 Sarnia, Crown documents: 1835 10.28 AG TAB 15, 1835,undated + + + + + + 96 + 16 + Box 8 Sarnia, Crown documents: 1835 10.28 AG TAB 16, 1835,undated + + + + + + 96 + 17 + Box 8 Sarnia, Crown documents: 1836 01.14 AG TAB 17, 1836,undated + + + + + + 96 + 18 + Box 8 Sarnia, Crown documents: 1836 03.06 AG TAB 18, 1836,undated + + + + + + 96 + 19 + Box 8 Sarnia, Crown documents: 1836 04.06 AG TAB 19, 1836,undated + + + + + + 96 + 20 + Box 8 Sarnia, Crown documents: 1836 04.14 AG TAB 20, 1836,undated + + + + + + 96 + 21 + Box 8 Sarnia, Crown documents: 1836 05.18 AG TAB 21, 1836,undated + + + + + + 96 + 22 + Box 8 Sarnia, Crown documents: 1836 05.28 AG TAB 22, 1836,undated + + + + + + 96 + 23 + Box 8 Sarnia, Crown documents: 1836 06.10 AG TAB 23, 1836,undated + + + + + + 96 + 24 + Box 8 Sarnia, Crown documents: 1836 06.18 AG TAB 24, 1836,undated + + + + + + 96 + 25 + Box 8 Sarnia, Crown documents: 1836 07.27 AG TAB 25, 1836,undated + + + + + + 96 + 26 + Box 8 Sarnia, Crown documents: 1836 08.12 AG TAB 26, 1836,undated + + + + + + 96 + 27 + Box 8 Sarnia, Crown documents: 1836 08.20 AG TAB 27, 1836,undated + + + + + + 96 + 28 + Box 8 Sarnia, Crown documents: 1836 09.17 AG TAB 28, 1836,undated + + + + + + 96 + 29 + Box 8 Sarnia, Crown documents: 1836 10.01 AG TAB 29, 1836,undated + + + + + + 96 + 30 + Box 8 Sarnia, Crown documents: 1836 10.05 AG TAB 30, 1836,undated + + + + + + 96 + 31 + Box 8 Sarnia, Crown documents: 1836 10.12 AG TAB 31, 1836,undated + + + + + + 96 + 32 + Box 8 Sarnia, Crown documents: 1836 10.14 AG TAB 32, 1836,undated + + + + + + 96 + 33 + Box 8 Sarnia, Crown documents: 1836 10.20 AG TAB 33, 1836,undated + + + + + + 96 + 34 + Box 8 Sarnia, Crown documents: 1836 11.02 AG TAB 34, 1836,undated + + + + + + 96 + 35 + Box 8 Sarnia, Crown documents: 1836 11.29 AG TAB 35, 1836,undated + + + + + + 96 + 36 + Box 8 Sarnia, Crown documents: 1836 11.29 AG TAB 36, 1836,undated + + + + + + 96 + 37 + Box 8 Sarnia, Crown documents: 1837 01.02 AG TAB 37, 1837,undated + + + + + + 96 + 38 + Box 8 Sarnia, Crown documents: 1837 01.18 AG TAB 38, 1837,undated + + + + + + 96 + 39 + Box 8 Sarnia, Crown documents: 1837 01.20 AG TAB 39, 1837,undated + + + + + + 96 + 40 + Box 8 Sarnia, Crown documents: 1837 01.24 AG TAB 40, 1837,undated + + + + + + 96 + 41 + Box 8 Sarnia, Crown documents: 1837 02.09 AG TAB 41, 1837,undated + + + + + + 96 + 42 + Box 8 Sarnia, Crown documents: 1837 02.20 AG TAB 42, 1837,undated + + + + + + 96 + 43 + Box 8 Sarnia, Crown documents: 1837 02.25 AG TAB 43, 1837,undated + + + + + + 96 + 44 + Box 8 Sarnia, Crown documents: 1837 03.09 AG TAB 44, 1837,undated + + + + + + 96 + 45 + Box 8 Sarnia, Crown documents: 1837 03.09 AG TAB 44, 1837,undated + + + + + + 96 + 46 + Box 8 Sarnia, Crown documents: 1837 03.24 AG TAB 46, 1837,undated + + + + + + 96 + 47 + Box 8 Sarnia, Crown documents: 1837 03.30 AG TAB 47, 1837,undated + + + + + + 96 + 48 + Box 8 Sarnia, Crown documents: 1837 04.30 AG TAB 48, 1837,undated + + + + + + 96 + 49 + Box 8 Sarnia, Crown documents: 1837 05.05 AG TAB 49, 1837,undated + + + + + + 96 + 50 + Box 8 Sarnia, Crown documents: 1837 05.10 AG TAB 50, 1837,undated + + + + + + 96 + 51 + Box 8 Sarnia, Crown documents: 1837 06.02 AG TAB 51, 1837,undated + + + + + + 96 + 52 + Box 8 Sarnia, Crown documents: 1837 06.19 AG TAB 52, 1837,undated + + + + + + 96 + 53 + Box 8 Sarnia, Crown documents: 1837 06.23 AG TAB 53, 1837,undated + + + + + + 96 + 54 + Box 8 Sarnia, Crown documents: 1837 07.07 AG TAB 54, 1837,undated + + + + + + 96 + 55 + Box 8 Sarnia, Crown documents: 1837 08.22 AG TAB 55, 1837,undated + + + + + + 96 + 56 + Box 8 Sarnia, Crown documents: 1837 09.04 AG TAB 56, 1837,undated + + + + + + 96 + 57 + Box 8 Sarnia, Crown documents: 1837 10.10 AG TAB 57, 1837,undated + + + + + + 96 + 58 + Box 8 Sarnia, Crown documents: 1837 11.24 AG TAB 58, 1837,undated + + + + + + 96 + 59 + Box 8 Sarnia, Crown documents: 1837 12.01 AG TAB 59, 1837,undated + + + + + + 96 + 60 + Box 8 Sarnia, Crown documents: 1837 12.20 AG TAB 60, 1837,undated + + + + + + 96 + 61 + Box 8 Sarnia, Crown documents: 0000 00.00 AG TAB 61,undated + + + + + + 96 + 62 + Box 8 Sarnia, Crown documents: 1838 01.31 AG TAB 62, 1838,undated + + + + + + 96 + 63 + Box 8 Sarnia, Crown documents: 1838 03.05 AG TAB 63, 1838,undated + + + + + + 96 + 64 + Box 8 Sarnia, Crown documents: 1838 03.06 AG TAB 64, 1838,undated + + + + + + 96 + 65 + Box 8 Sarnia, Crown documents: 1838 03.28 AG TAB 65, 1838,undated + + + + + + 96 + 66 + Box 8 Sarnia, Crown documents: 1838 07.26 AG TAB 66, 1838,undated + + + + + + 96 + 67 + Box 8 Sarnia, Crown documents: 1838 08.02 AG TAB 67, 1838,undated + + + + + + 96 + 68 + Box 8 Sarnia, Crown documents: 1838 08.02 AG TAB 68, 1838,undated + + + + + + 96 + 69 + Box 8 Sarnia, Crown documents: 1838 08.21 AG TAB 69, 1838,undated + + + + + + 96 + 70 + Box 8 Sarnia, Crown documents: 1838 08.22 AG TAB 70, 1838,undated + + + + + + 96 + 71 + Box 8 Sarnia, Crown documents: 1838 08.22 AG TAB 71, 1838,undated + + + + + + 96 + 72 + Box 8 Sarnia, Crown documents: 1838 08.31 AG TAB 72, 1838,undated + + + + + + 96 + 73 + Box 8 Sarnia, Crown documents: 1838 09.20 AG TAB 73, 1838,undated + + + + + + 96 + 74 + Box 8 Sarnia, Crown documents: 1838 09.26 AG TAB 74, 1838,undated + + + + + + 96 + 75 + Box 8 Sarnia, Crown documents: 1838 10.01 AG TAB 75, 1838,undated + + + + + + 96 + 76 + Box 8 Sarnia, Crown documents: 1838 10.12 AG TAB 76, 1838,undated + + + + + + 96 + 77 + Box 8 Sarnia, Crown documents: 1838 10.19 AG TAB 77, 1838,undated + + + + + + 96 + 78 + Box 8 Sarnia, Crown documents: 1838 11.09 AG TAB 78, 1838,undated + + + + + + 96 + 79 + Box 8 Sarnia, Crown documents: 1838 12.21 AG TAB 79, 1838,undated + + + + + + 96 + 80 + Box 8 Sarnia, Crown documents: 1839 01.28 AG TAB 80, 1839,undated + + + + + + 96 + 81 + Box 8 Sarnia, Crown documents: 1839 04.00 AG TAB 81, 1839,undated + + + + + + 96 + 82 + Box 8 Sarnia, Crown documents: 1839 02.12 AG TAB 82, 1839,undated + + + + + + 96 + 83 + Box 8 Sarnia, Crown documents: AG TAB 83,undated + + + + + + 96 + 84 + Box 8 Sarnia, Crown documents: 1839 05.13 AG TAB 84, 1839,undated + + + + + + 96 + 85 + Box 8 Sarnia, Crown documents: 1839 05.30 AG TAB 85, 1839 [there is no TAB 86],undated + + + + + + 96 + 86 + Box 8 Sarnia, Crown documents: 1839 08.20 AG TAB 87, 1839,undated + + + + + + 96 + 87 + Box 8 Sarnia, Crown documents: 1839 09.23 AG TAB 88, 1839,undated + + + + + + 96 + 88 + Box 8 Sarnia, Crown documents: 1839 10.05 AG TAB 89, 1839,undated + + + + + + 96 + 89 + Box 8 Sarnia, Crown documents: 1839 11.09 AG TAB 90, 1839,undated + + + + + + 96 + 90 + Box 8 Sarnia, Crown documents: 1839 11.09 AG TAB 91, 1839,undated + + + + + + 96 + 91 + Box 8 Sarnia, Crown documents: 1839 11.09 AG TAB 92, 1839,undated + + + + + + 96 + 92 + Box 8 Sarnia, Crown documents: 1839 11.12 AG TAB 93, 1839,undated + + + + + + 96 + 93 + Box 8 Sarnia, Crown documents: 1839 11.14 AG TAB 94, 1839,undated + + + + + + 96 + 94 + Box 8 Sarnia, Crown documents: 1839 11.16 AG TAB 95, 1839,undated + + + + + + 96 + 95 + Box 8 Sarnia, Crown documents: 1839 11.18 AG TAB 96, 1839,undated + + + + + + 96 + 96 + Box 8 Sarnia, Crown documents: 1839 11.18 AG TAB 97, 1839,undated + + + + + + 96 + 97 + Box 8 Sarnia, Crown documents: 1839 12.14 AG TAB 98, 1839,undated + + + + + + 96 + 98 + Box 8 Sarnia, Crown documents: 1840 03.14 AG TAB 99, 1840,undated + + + + + + 96 + 99 + Box 8 Sarnia, Crown documents: 1840 03.14 AG TAB 100, 1840,undated + + + + + + 96 + 100 + Box 8 Sarnia, Crown documents: 1840 03.19 AG TAB 101, 1840,undated + + + + + + 96 + 101 + Box 8 Sarnia, Crown documents: 1840 05.05 AG TAB 102, 1840,undated + + + + + + 96 + 102 + Box 8 Sarnia, Crown documents: 1840 06.08 AG TAB 103, 1840,undated + + + + + + 96 + 103 + Box 8 Sarnia, Crown documents: 1840 06.18 AG TAB 104, 1840,undated + + + + + + 96 + 104 + Box 8 Sarnia, Crown documents: 1840 06.18 AG TAB 105, 1840,undated + + + + + + 96 + 105 + Box 8 Sarnia, Crown documents: 1840 06.18 AG TAB 106, 1840,undated + + + + + + 96 + 106 + Box 8 Sarnia, Crown documents: AG TAB 107,undated + + + + + + 96 + 107 + Box 8 Sarnia, Crown documents: 1840 07.14 AG TAB 108, 1840,undated + + + + + + 96 + 108 + Box 8 Sarnia, Crown documents: 1840 07.28 AG TAB 109, 1840,undated + + + + + + 96 + 109 + Box 8 Sarnia, Crown documents: 1840 08.22 AG TAB 110, 1840,undated + + + + + + 96 + 110 + Box 8 Sarnia, Crown documents: AG TAB 111,undated + + + + + + 96 + 111 + Box 8 Sarnia, Crown documents: 1840 09.08 AG TAB 112, 1840 [no TAB 113],undated + + + + + + 96 + 112 + Box 8 Sarnia, Crown documents: 1840 09.11 AG TAB 114, 1840,undated + + + + + + 96 + 113 + Box 8 Sarnia, Crown documents: 1840 09.11 AG TAB 115, 1840,undated + + + + + + 96 + 114 + Box 8 Sarnia, Crown documents: 1840 11.28 AG TAB 116, 1840,undated + + + + + + 96 + 115 + Box 8 Sarnia, Crown documents: 1840 12.08 AG TAB 117, 1840,undated + + + + + + 96 + 116 + Box 8 Sarnia, Crown documents: 1840 12.29 AG TAB 118, 1840,undated + + + + + + 96 + 117 + Box 8 Sarnia, Crown documents: 1840 12.29 AG TAB 119, 1840,undated + + + + + + 96 + 118 + Box 8 Sarnia, Crown documents: 1841 02.26 AG TAB 120, 1841,undated + + + + + + 96 + 119 + Box 8 Sarnia, Crown documents: 1841 03.02 AG TAB 121, 1841,undated + + + + + + 96 + 120 + Box 8 Sarnia, Crown documents: 1841 03.17 AG TAB 122, 1841,undated + + + + + + 96 + 121 + Box 8 Sarnia, Crown documents: 1841 05.29 AG TAB 123, 1841,undated + + + + + + 96 + 122 + Box 8 Sarnia, Crown documents: 1841 06.05 AG TAB 124, 1841,undated + + + + + + 96 + 123 + Box 8 Sarnia, Crown documents: 1841 06.08 AG TAB 125, 1841,undated + + + + + + 96 + 124 + Box 8 Sarnia, Crown documents: 1841 06.25 AG TAB 126, 1841,undated + + + + + + 96 + 125 + Box 8 Sarnia, Crown documents: 1841 06.25 AG TAB 127, 1841,undated + + + + + + 96 + 126 + Box 8 Sarnia, Crown documents: 1841 06.25 AG TAB 128, 1841,undated + + + + + + 96 + 127 + Box 8 Sarnia, Crown documents: 1841 06.25 AG TAB 129, 1841,undated + + + + + + 96 + 128 + Box 8 Sarnia, Crown documents: AG TAB 130,undated + + + + + + 96 + 129 + Box 8 Sarnia, Crown documents: 1841 08.03 AG TAB 131, 1841,undated + + + + + + 96 + 130 + Box 8 Sarnia, Crown documents: 1841 08.10 AG TAB 132, 1841,undated + + + + + + 96 + 131 + Box 8 Sarnia, Crown documents: 1841 08.10 AG TAB 133, 1841,undated + + + + + + 96 + 132 + Box 8 Sarnia, Crown documents: 1841 08.10 AG TAB 134, 1841,undated + + + + + + 96 + 133 + Box 8 Sarnia, Crown documents: 1841 10.12 AG TAB 135, 1841,undated + + + + + + 96 + 134 + Box 8 Sarnia, Crown documents: 1841 10.13 AG TAB 136, 1841,undated + + + + + + 96 + 135 + Box 8 Sarnia, Crown documents: 1841 10.15 AG TAB 137, 1841,undated + + + + + + 96 + 136 + Box 8 Sarnia, Crown documents: 1841 10.19 AG TAB 138, 1841,undated + + + + + + 96 + 137 + Box 8 Sarnia, Crown documents: 1841 11.01 AG TAB 139, 1841,undated + + + + + + 96 + 138 + Box 8 Sarnia, Crown documents: 1841 11.02 AG TAB 140, 1841,undated + + + + + + 96 + 139 + Box 8 Sarnia, Crown documents: 1841 11.06 AG TAB 141, 1841,undated + + + + + + 96 + 140 + Box 8 Sarnia, Crown documents: 1842 00.00 AG TAB 142, 1842,undated + + + + + + 96 + 141 + Box 8 Sarnia, Crown documents: 1842 01.08 AG TAB 143, 1842,undated + + + + + + 96 + 142 + Box 8 Sarnia, Crown documents: 1842 03.18 AG TAB 144, 1842,undated + + + + + + 96 + 143 + Box 8 Sarnia, Crown documents: 1842 03.18 AG TAB 145, 1842,undated + + + + + + 96 + 144 + Box 8 Sarnia, Crown documents: 1842 03.31 AG TAB 146, 1842,undated + + + + + + 96 + 145 + Box 8 Sarnia, Crown documents: 1842 04.23 AG TAB 147, 1842,undated + + + + + + 96 + 146 + Box 8 Sarnia, Crown documents: 1842 08.16 AG TAB 148, 1842,undated + + + + + + 96 + 147 + Box 8 Sarnia, Crown documents: 1843 00.00 AG TAB 149, 1843,undated + + + + + + 96 + 148 + Box 8 Sarnia, Crown documents: 1843 02.08 AG TAB 150, 1843,undated + + + + + + 96 + 149 + Box 8 Sarnia, Crown documents: 1843 02.18 AG TAB 151, 1843,undated + + + + + + 96 + 150 + Box 8 Sarnia, Crown documents: 1843 04.10 AG TAB 152, 1843,undated + + + + + + 96 + 151 + Box 8 Sarnia, Crown documents: 1843 05.13 AG TAB 153, 1843,undated + + + + + + 96 + 152 + Box 8 Sarnia, Crown documents: 1843 05.18 AG TAB 154, 1843,undated + + + + + + 96 + 153 + Box 8 Sarnia, Crown documents: 1843 05.19 AG TAB 155, 1843,undated + + + + + + 96 + 154 + Box 8 Sarnia, Crown documents: 1843 05.19 AG TAB 156, 1843,undated + + + + + + 96 + 155 + Box 8 Sarnia, Crown documents: 1843 05.19 AG TAB 157, 1843,undated + + + + + + 96 + 156 + Box 8 Sarnia, Crown documents: 1843 05.19 AG TAB 158, 1843,undated + + + + + + 96 + 157 + Box 8 Sarnia, Crown documents: 1843 05.27 AG TAB 159, 1843,undated + + + + + + 96 + 158 + Box 8 Sarnia, Crown documents: 1843 06.00 AG TAB 160, 1843,undated + + + + + + 96 + 159 + Box 8 Sarnia, Crown documents: 1843 06.17 AG TAB 161, 1843,undated + + + + + + 96 + 160 + Box 8 Sarnia, Crown documents: 1843 06.17 AG TAB 162, 1843,undated + + + + + + 96 + 161 + Box 8 Sarnia, Crown documents: 1843 06.26 AG TAB 163, 1843,undated + + + + + + 96 + 162 + Box 8 Sarnia, Crown documents: 1843 09.01 AG TAB 164, 1843,undated + + + + + + 96 + 163 + Box 8 Sarnia, Crown documents: 1843 09.23 AG TAB 165, 1843,undated + + + + + + 96 + 164 + Box 8 Sarnia, Crown documents: 1843 10.07 AG TAB 166, 1843,undated + + + + + + 96 + 165 + Box 8 Sarnia, Crown documents: 1843 10.09 AG TAB 167, 1843,undated + + + + + + 96 + 166 + Box 8 Sarnia, Crown documents: 1843 11.10 AG TAB 168, 1843,undated + + + + + + 96 + 167 + Box 8 Sarnia, Crown documents: 1843 11.16 AG TAB 169, 1843,undated + + + + + + 96 + 168 + Box 8 Sarnia, Crown documents: 1843 11.16 AG TAB 170, 1843,undated + + + + + + 96 + 169 + Box 8 Sarnia, Crown documents: 1843 11.22 AG TAB 171, 1843,undated + + + + + + 96 + 170 + Box 8 Sarnia, Crown documents: 1843 12.18 AG TAB 172, 1843,undated + + + + + + 96 + 171 + Box 8 Sarnia, Crown documents: 1844 03.15 AG TAB 173, 1844,undated + + + + + + 96 + 172 + Box 8 Sarnia, Crown documents: 1844 03.29 AG TAB 174, 1844,undated + + + + + + 96 + 173 + Box 8 Sarnia, Crown documents: 1844 04.20 AG TAB 175, 1844,undated + + + + + + 96 + 174 + Box 8 Sarnia, Crown documents: 1844 05.04 AG TAB 176, 1844,undated + + + + + + 96 + 175 + Box 8 Sarnia, Crown documents: 1844 05.07 AG TAB 177, 1844,undated + + + + + + 96 + 176 + Box 8 Sarnia, Crown documents: 1844 05.29 AG TAB 178, 1844,undated + + + + + + 96 + 177 + Box 8 Sarnia, Crown documents: 1844 06.01 AG TAB 179, 1844,undated + + + + + + 96 + 178 + Box 8 Sarnia, Crown documents: 1844 06.13 AG TAB 180, 1844,undated + + + + + + 96 + 179 + Box 8 Sarnia, Crown documents: 1844 06.28 AG TAB 181, 1844,undated + + + + + + 96 + 180 + Box 8 Sarnia, Crown documents: 1844 07.01 AG TAB 182, 1844,undated + + + + + + 96 + 181 + Box 8 Sarnia, Crown documents: 1844 09.00 AG TAB 183, 1844,undated + + + + + + 96 + 182 + Box 8 Sarnia, Crown documents: 1844 09.14 AG TAB 184, 1844,undated + + + + + + 96 + 183 + Box 8 Sarnia, Crown documents: 1844 09.25 AG TAB 185, 1844,undated + + + + + + 96 + 184 + Box 8 Sarnia, Crown documents: 1844 09.25 AG TAB 186, 1844,undated + + + + + + 96 + 185 + Box 8 Sarnia, Crown documents: 1844 12.12 AG TAB 187, 1844,undated + + + + + + 96 + 186 + Box 8 Sarnia, Crown documents: 1844 12.14 AG TAB 188, 1844,undated + + + + + + 96 + 187 + Box 8 Sarnia, Crown documents: 1845 10.27 AG TAB 189, 1845,undated + + + + + + 96 + 188 + Box 8 Sarnia, Crown documents: 1845 11.21 AG TAB 190, 1845,undated + + + + + + 96 + 189 + Box 8 Sarnia, Crown documents: 1847 00.00 AG TAB 191, 1847,undated + + + + + + 96 + 190 + Box 8 Sarnia, Crown documents: 1847 08.13 AG TAB 192, 1847,undated + + + + + + 96 + 191 + Box 8 Sarnia, Crown documents: 1848 02.22 AG TAB 193, 1848,undated + + + + + + 96 + 192 + Box 8 Sarnia, Crown documents: 1848 10.26 AG TAB 194, 1848,undated + + + + + + 96 + 193 + Box 8 Sarnia, Crown documents: 1849 01.23 AG TAB 195, 1849,undated + + + + + + 96 + 194 + Box 8 Sarnia, Crown documents: 1850 01.09 AG TAB 196, 1850,undated + + + + + + 96 + 195 + Box 8 Sarnia, Crown documents: 1850 02.15 AG TAB 197, 1850,undated + + + + + + 96 + 196 + Box 8 Sarnia, Crown documents: 1850 04.25 AG TAB 198, 1850,undated + + + + + + 96 + 197 + Box 8 Sarnia, Crown documents: 1850 11.23 AG TAB 199, 1850,undated + + + + + + 96 + 198 + Box 8 Sarnia, Crown documents: 1850 12.03 AG TAB 200, 1850,undated + + + + + + 96 + 199 + Box 8 Sarnia, Crown documents: 1851 05.03 AG TAB 201, 1851,undated + + + + + + 96 + 200 + Box 8 Sarnia, Crown documents: 1851 06.16 AG TAB 202, 1851,undated + + + + + + 96 + 201 + Box 8 Sarnia, Crown documents: 1852 03.18 AG TAB 203, 1852,undated + + + + + + 96 + 202 + Box 8 Sarnia, Crown documents: 1852 04.05 AG TAB 204, 1852,undated + + + + + + 96 + 203 + Box 8 Sarnia, Crown documents: 1852 07.28 AG TAB 205, 1852,undated + + + + + + 96 + 204 + Box 8 Sarnia, Crown documents: 1852 08.25 AG TAB 206, 1852,undated + + + + + + 96 + 205 + Box 8 Sarnia, Crown documents: 1853 05.02 AG TAB 207, 1853,undated + + + + + + 96 + 206 + Box 8 Sarnia, Crown documents: 1853 07.14 AG TAB 208, 1853,undated + + + + + + 96 + 207 + Box 8 Sarnia, Crown documents: 1853 07.20 AG TAB 209, 1853,undated + + + + + + 96 + 208 + Box 8 Sarnia, Crown documents: 1853 08.13 AG TAB 210, 1853,undated + + + + + + 96 + 209 + Box 8 Sarnia, Crown documents: 1853 09.24 AG TAB 211, 1853,undated + + + + + + 96 + 210 + Box 8 Sarnia, Crown documents: 1854 03.22 AG TAB 212, 1854,undated + + + + + + 96 + 211 + Box 8 Sarnia, Crown documents: 1855 01.25 AG TAB 213, 1855,undated + + + + + + 96 + 212 + Box 8 Sarnia, Crown documents: 1855 02.28 AG TAB 214, 1855,undated + + + + + + 96 + 213 + Box 8 Sarnia, Crown documents: 1855 03.23 AG TAB 215, 1855,undated + + + + + + 96 + 214 + Box 8 Sarnia, Crown documents: 1855 03.23 AG TAB 216, 1855,undated + + + + + + 96 + 215 + Box 8 Sarnia, Crown documents: 1855 04.21 AG TAB 217, 1855,undated + + + + + + 96 + 216 + Box 8 Sarnia, Crown documents: 1855 05.03 AG TAB 218, 1855,undated + + + + + + 96 + 217 + Box 8 Sarnia, Crown documents: 1855 05.14 AG TAB 219, 1855,undated + + + + + + 96 + 218 + Box 8 Sarnia, Crown documents: 1855 08.08 AG TAB 220, 1855,undated + + + + + + 96 + 219 + Box 8 Sarnia, Crown documents: 1855 08.21 AG TAB 221, 1855,undated + + + + + + 96 + 220 + Box 8 Sarnia, Crown documents: 1855 09.28 AG TAB 222, 1855,undated + + + + + + 96 + 221 + Box 8 Sarnia, Crown documents: 1855 09.28 AG TAB 223, 1855,undated + + + + + + 96 + 222 + Box 8 Sarnia, Crown documents: 1856 04.05 AG TAB 224, 1856,undated + + + + + + 96 + 223 + Box 8 Sarnia, Crown documents: 1856 06.13 AG TAB 225, 1856,undated + + + + + + 96 + 224 + Box 8 Sarnia, Crown documents: 1856 06.14 AG TAB 226, 1856,undated + + + + + + 96 + 225 + Box 8 Sarnia, Crown documents: 1856 06.26 AG TAB 227, 1856,undated + + + + + + 96 + 226 + Box 8 Sarnia, Crown documents: 1857 03.17 AG TAB 228, 1857,undated + + + + + + 96 + 227 + Box 8 Sarnia, Crown documents: 1857 04.30 AG TAB 229, 1857,undated + + + + + + 96 + 228 + Box 8 Sarnia, Crown documents: 1857 07.11 AG TAB 230, 1857,undated + + + + + + 96 + 229 + Box 8 Sarnia, Crown documents: 1861 01.22 AG TAB 231, 1861,undated + + + + + + 96 + 230 + Box 8 Sarnia, Crown documents: 1861 08.26 AG TAB 232, 1861,undated + + + + + + 96 + 231 + Box 8 Sarnia, Crown documents: 1888 04.25 AG TAB 233, 1888,undated + + + + + + 96 + 232 + Box 8 Sarnia, Crown documents: 1888 04.25 AG TAB 234, 1888,undated + + + + + + 96 + 233 + Box 8 Sarnia, Crown documents: 1888 04.25 AG TAB 235, 1888,undated + + + + + + 96 + 234 + Box 8 Sarnia, Crown documents: 1962 10.16 AG TAB 236, 1962,undated + + + + + + 96 + 235 + Box 8 Sarnia, Crown documents: 1976 06.00 AG TAB 237, 1976,undated + + + + + + 96 + 236 + Box 8 Sarnia, Crown documents: 1979 01.05 AG TAB 238, 1979,undated + + + + + + 96 + 237 + Box 8 Sarnia, Crown documents: 1979 07.31 AG TAB 239, 1979,undated + + + + + + 96 + 238 + Box 8 Sarnia, Crown documents: 1980 01.11 AG TAB 240,1980 + + + + + + 96 + 239 + Box 8 Sarnia, Crown documents: 1980 03.03 AG TAB 241,1980 + + + + + + 96 + 240 + Box 8 Sarnia, Crown documents: 1980 04.28 AG TAB 242,1980 + + + + + + 96 + 241 + Box 8 Sarnia, Crown documents: 1982 09.03 AG TAB 243,1982 + + + + + + 96 + 242 + Box 8 Sarnia, Crown documents: 1995 07.18 AG TAB 244,1995 + + + + + + 96 + 243 + Box 8 Sarnia, Crown documents: 1995 07.28 AG TAB 245,1995 + + + + + + 96 + 244 + Box 8 Sarnia, Crown documents: 1995 07.28 AG TAB 246,1995 + + + + + + 96 + 245 + Box 8 Sarnia, Crown documents: 1776-01-24 CS Tab 28, 1776,undated + + + + + + 96 + 246 + Box 8 Sarnia, Crown documents: 1838-11-13 CS Tab 281, 1838,undated + + + + + + 96 + 247 + Box 8 Sarnia, Crown documents: 1840-06-06 CS Tab 349, 1840,undated + + + + + + 96 + 248 + Box 8 Sarnia, Crown documents: 1838-09-05 CS Tab 273, 1838,undated + + + + + + 96 + 249 + Box 8 Sarnia, Crown documents: 1849-03-26 CS Tab 640, 1849,undated + + + + + + 96 + 250 + Box 8 Sarnia, Crown documents: 1864-02-22 CS Tab 841, 1864,undated + + + + + + 97 + 1 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): Articles of Capitulation, France to Britain, 1760,undated + + + + + + 97 + 2 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1797 AG TAB 47 List B, 1797,undated + + + + + + 97 + 3 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1840 12.03 AG TAB 95 List B, 1840,undated + + + + + + 97 + 4 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1768 04.18 AG TAB 16 List B, 1768,undated + + + + + + 97 + 5 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1814 12.29 AG TAB 53 List B, 1814,undated + + + + + + 97 + 6 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1768 AG TAB 15 List B, 1768,undated + + + + + + 97 + 7 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): Chippewas of Sarnia v. AG et al., List B of documents, includes documents,1996 + + + + + + 97 + 8 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1791 09.12 AG TAB 32 List B, 1741,undated + + + + + + 97 + 9 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): Instructions between George III and Earl of Dalthouse (partials), 1820, 1841,undated + + + + + + 97 + 10 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1820 04.13 AG TAB 57 List B, 1820,undated + + + + + + 97 + 11 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1985/94 AG TAB 133 List B,1985/94 + + + + + + 97 + 12 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1840 07.23 AG TAB 92 List B, 1840,undated + + + + + + 97 + 13 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1840 08.29 AG TAB 93 List B, 1840,undated + + + + + + 97 + 14 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1840 08.30 AG TAB 94 List B, 1840,undated + + + + + + 97 + 15 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1838 03.28 AG TAB 78 List B, 1838,undated + + + + + + 97 + 16 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1836 01.14 AG TAB 73 List B, 1836,undated + + + + + + 97 + 17 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1838 04.00 AG TAB 81 List B, 1838,undated + + + + + + 97 + 18 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): Instructions for the Good Government of the Indian Dept. to Sir John Johnson,undated + + + + + + 97 + 19 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1842 04.30 AG TAB 98 List B, 1842,undated + + + + + + 97 + 20 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1842 05.30 AG TAB 99 List B, 1842,undated + + + + + + 97 + 21 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1842 05.30 AG TAB 100 List B, 1842,undated + + + + + + 97 + 22 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1837 12.22 AG TAB 77 List B, 1837,undated + + + + + + 97 + 23 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1816 03.25 AG TAB 54 List B, 1816,undated + + + + + + 97 + 24 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1839 09.07 AG TAB 91 List B, 1839,undated + + + + + + 97 + 25 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1843 02.24 AG TAB 101 List B, 1843,undated + + + + + + 97 + 26 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1829 11.20 AG TAB 61 List B, 1829,undated + + + + + + 97 + 27 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1830 12.23 AG TAB 62 List B, 1830,undated + + + + + + 97 + 28 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1796 12.15 AG TAB 44 List B, 1796,undated + + + + + + 97 + 29 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1830 01.25 AG TAB 63 List B, 1830,undated + + + + + + 97 + 30 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1830 03.15 AG TAB 64 List B, 1830,undated + + + + + + 97 + 31 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1830 03.22 AG TAB 65 List B, 1830,undated + + + + + + 97 + 32 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): Commissions of Sir George Prevost as Governor of Nova Scotia, Upper and Lower Canada, and of New Brunswick by George III, includes transcription, 1811,undated + + + + + + 97 + 33 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1791 09.16 AG TAB 31 List B, 1791,undated + + + + + + 97 + 34 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1791 00.00 AG TAB 28 List B, 1791,undated + + + + + + 97 + 35 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1791 09.12 AG TAB 29 List B, 1791,undated + + + + + + 97 + 36 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1791 08.24 AG TAB 30 List B, 1791,undated + + + + + + 97 + 37 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1767 01.02 to 1767 01.22 AG TAB 13 List B, 1767,undated + + + + + + 97 + 38 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1763 10.07 AG TAB 7 List B, 176,undated + + + + + + 97 + 39 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1763 12.07 AG TAB 10 List B, 1763,undated + + + + + + 97 + 40 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1766 AG TAB 12 List B, 1766,undated + + + + + + 97 + 41 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1763-1783 AG TAB 8 List B, 1763-1783,undated + + + + + + 97 + 42 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1763 11.28 AG TAB 9 List B, 1763,undated + + + + + + 97 + 43 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1786 08.23 AG TAB 26 List B, 1786,undated + + + + + + 97 + 44 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1788 12.29 to, 1789 07.14 AG TAB 27 List B, 1788-1789,undated + + + + + + 97 + 45 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): Commission of Charles Duke of Richmond by George III, 1760; partial letters patent, 1814,undated + + + + + + 97 + 46 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1791 11.18 AG TAB 35 List B, 1791,undated + + + + + + 97 + 47 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): Commission of George Earl of Dalhousie by George IV (partial), [1820-1830],undated + + + + + + 97 + 48 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1792 02.07 AG TAB 36 List B, 1792,undated + + + + + + 97 + 49 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1791 10.07 AG TAB 34 List B, 1791,undated + + + + + + 97 + 50 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1841 10.08 AG TAB 97 List B, 1841,undated + + + + + + 97 + 51 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1791 09.16 AG TAB 33 List B, 1791,undated + + + + + + 97 + 52 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): Letters to/from John Graves Simcoe, 1794-1795,undated + + + + + + 97 + 53 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1837 11.18 AG TAB 76 List B, 1837,undated + + + + + + 97 + 54 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1836 10.05 AG TAB 74 List B, 1836,undated + + + + + + 97 + 55 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1837 03.04 AG TAB 75 List B, 1837,undated + + + + + + 97 + 56 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1838 03.31 AG TAB 79 List B, 1838,undated + + + + + + 97 + 57 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1838 04.03 AG TAB 80 List B, 1838,undated + + + + + + 97 + 58 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1795 07.06 AG TAB 42 List B, 1795,undated + + + + + + 97 + 59 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1771 07.02 AG TAB 17 List B, 1771,undated + + + + + + 97 + 60 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1838 04.02 AG TAB 82 List B, 1838,undated + + + + + + 97 + 61 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1838 05.17 AG TAB 83 List B, 1838,undated + + + + + + 97 + 62 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1797 11.04 AG TAB 45 List B, 1797,undated + + + + + + 97 + 63 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1835 07.01 AG TAB 71 List B, 1835,undated + + + + + + 97 + 64 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): Copies of Extracts of Correspondence since 1st April 1835 between the Secretary of State for the Colonies and the Governors of the British N. American Provinces Respecting the Indians in those Provinces, 1839,undated + + + + + + 97 + 65 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1835 07.07 AG TAB 72 List B, 1835,undated + + + + + + 97 + 66 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1843 02.24 AG TAB 102 List B, 1843,undated + + + + + + 97 + 67 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): Queen Victoria commissions of John Collins, 1839, John Colburne, 1838; Letter patent of Robert Prescott (partial), undated,undated + + + + + + 97 + 68 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1839 05.11 AG TAB 89 List B, 1839,undated + + + + + + 97 + 69 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1839 09.06 AG TAB 90 List B, 1839,undated + + + + + + 97 + 70 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1828 12.03 AG TAB 59 List B, 1828,undated + + + + + + 97 + 71 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): Commission to Sir Guy Carleton as Governor of Canada, April 22, 1786; Commissions to Sir James Henry Craig as Governor of New Brustwick, Patent Roll, Aug. 29, 1807,undated + + + + + + 97 + 72 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1838 12.13 AG TAB 87 List B, 1838,undated + + + + + + 97 + 73 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1761 12.09 AG TAB 4 List B, 1761,undated + + + + + + 97 + 74 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1760 10.27 AG TAB 2 List B, 1760,undated + + + + + + 97 + 75 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1774 AG TAB 18 List B, 1774,undated + + + + + + 97 + 76 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1761 00.00 AG TAB 5 List B, 1761,undated + + + + + + 97 + 77 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): Commission of Sir John Colborne as Governor of Upper and Lower Canada by Queen Victoria, Dec. 30, 1838,undated + + + + + + 97 + 78 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1796 12.15 AG TAB 43 List B, 1796,undated + + + + + + 97 + 79 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1792 AG TAB 38 List B, 1792,undated + + + + + + 97 + 80 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1774 12.27 AG TAB 19 List B, 1774,undated + + + + + + 97 + 81 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): Act re: Upper and Lower Canada, in Transactions and Collections of the American Antiquarian Society, v. 12, 1911,undated + + + + + + 97 + 82 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1763 02.10 AG TAB 6 List B, 1763,undated + + + + + + 97 + 83 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): Treaty between England and Spain, Feb. 10, 1763 in Canadian Archives,undated + + + + + + 97 + 84 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1760 12.17 AG TAB 3 List B, 1760,undated + + + + + + 97 + 85 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): George III Commission of Lord Drummond, July 17, 1815 (partial),undated + + + + + + 97 + 86 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1807.08.29 AG TAB 49 List B, 1807,undated + + + + + + 97 + 87 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): George III Commissions of Robert Prescott, May 8, 1747, and Sir Guy Carleton, 1786? (partial),undated + + + + + + 97 + 88 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1784 04.26 AG TAB 24 List B, 1784,undated + + + + + + 97 + 89 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1783 09.03 AG TAB 23 List B, 1783,undated + + + + + + 97 + 90 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1778 04.15 AG TAB 22 List B, 1778,undated + + + + + + 97 + 91 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1797 11.26 AG TAB 46 List B, 1797,undated + + + + + + 97 + 92 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1768 04.12 AG TAB 14 List B, 1768,undated + + + + + + 97 + 93 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1820 01.31/ 1820 05.18 AG TAB 58 List B, 1820,undated + + + + + + 97 + 94 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1830 11.24 AG TAB 66 List B, 1830,undated + + + + + + 97 + 95 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1795 05.20 AG TAB 41 List B, 1795,undated + + + + + + 97 + 96 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1792 03.10 AG TAB 37 List B, 1792,undated + + + + + + 97 + 97 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1764 11.06 AG TAB 11 List B, 1764,undated + + + + + + 97 + 98 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1839 05.11 AG TAB 88 List B, 1839,undated + + + + + + 97 + 99 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): Commissions by William IV, William Pitt Earl Amherst, investigator of grievances, Nov. 24, 1830?; and Matthew Lord Aylmer, Governor, Aug. 1835,undated + + + + + + 97 + 100 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1794 11.06 AG TAB 39 List B, 1794,undated + + + + + + 97 + 101 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1777 09.18 AG TAB 21 List B, 1777,undated + + + + + + 97 + 102 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): Letters of Sir George Arthur re: Indians, Sept. 19 and Oct. 30, 1838, in Copies of Extracts of Correspondence since 1st April, 1835…, 1839,undated + + + + + + 97 + 103 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1775 01.03 AG TAB 20 List B, 1775,undated + + + + + + 97 + 104 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1846 03.16 AG TAB 103 List B, 1846,undated + + + + + + 97 + 105 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1846 03.16 AG TAB 104 List B, 1846,undated + + + + + + 97 + 106 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1846 07.20 AG TAB 105 List B, 1846,undated + + + + + + 97 + 107 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1846 10.01/ 1848 08.24 AG TAB 107 List B, 1846, 1848,undated + + + + + + 97 + 108 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1847 06.29 AG TAB 108 List B, 1847,undated + + + + + + 97 + 109 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1847 08.16 AG TAB 109 List B, 1847,undated + + + + + + 97 + 110 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1848 08.30 AG TAB 110 List B, 1848,undated + + + + + + 97 + 111 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1849 04.25 AG TAB 111 List B, 1849,undated + + + + + + 97 + 112 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1849 05.30 AG TAB 112 List B, 1849,undated + + + + + + 97 + 113 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1850 08.10 AG TAB 113 List B, 1850,undated + + + + + + 97 + 114 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1850 08.10 AG TAB 114 List B, 1850,undated + + + + + + 97 + 115 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1850 11.08 AG TAB 115 List B, 1850,undated + + + + + + 97 + 116 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1852 06.30 AG TAB 116 List B, 1852,undated + + + + + + 97 + 117 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1853 06.14 AG TAB 117 List B, 1853,undated + + + + + + 97 + 118 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1854 08.11 AG TAB 118 List B, 1854,undated + + + + + + 97 + 119 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1854 09.20 AG TAB 119 List B, 1854,undated + + + + + + 97 + 120 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1854 09.20 AG TAB 120 List B, 1854,undated + + + + + + 97 + 121 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1858 03.27 AG TAB 121 List B, 1858,undated + + + + + + 97 + 122 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1858 05.12 AG TAB 122 List B, 1858,undated + + + + + + 97 + 123 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1859 AG TAB 123 List B, 1859,undated + + + + + + 97 + 124 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1859 08.25 AG TAB 124 List B, 1859,undated + + + + + + 97 + 125 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1859 11.24 AG TAB 125 List B, 1859,undated + + + + + + 97 + 126 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1860 04.23 AG TAB 126 List B, 1860,undated + + + + + + 97 + 127 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1860 06.17 AG TAB 127 List B, 1860,undated + + + + + + 97 + 128 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1860 10.13 AG TAB 128 List B, 1860,undated + + + + + + 97 + 129 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1865 06.20 AG TAB 129 List B, 1865,undated + + + + + + 97 + 130 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1868 05.22 AG TAB 130 List B, 1868,undated + + + + + + 97 + 131 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1876 04.12 AG TAB 131 List B, 1876,undated + + + + + + 97 + 132 + Box 9 Sarnia, Crown documents (Loose material in the box was foldered by the archivist in the order it was found.): 1951 AG TAB 132 List B, 1951,undated + + + + + + 98 + 1 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, V 1: 42-45, [1803], 1803,undated + + + + + + 98 + 2 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: US Statutes at Large, V. VI, Ch. LXV, P. 244, May 4, 1820,undated + + + + + + 98 + 3 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, V 1: 46-51, Message of James Monroe, Feb. 25, 1822,undated + + + + + + 98 + 4 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, V 1: 78-79, 124-125, 166-171, ARCOIA, Feb. 10, 1829,undated + + + + + + 98 + 5 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, V 1: 217-245, Laws of Colonial and State Governments, March 19, 1830,undated + + + + + + 98 + 6 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: Indian Removal Act, US States at Large, 4:411-412, May 28, 1830,undated + + + + + + 98 + 7 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, V 1: 269-273, 278-281, ARCOIA, Nov. 26, 1830,undated + + + + + + 98 + 8 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: Treaty w/ Seneca, July 20, 1831,undated + + + + + + 98 + 9 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: Treaty w/ Shawnee, Aug. 8, 1831,undated + + + + + + 98 + 10 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: Treaty w/ Winnebago, Sept. 15, 1832,undated + + + + + + 98 + 11 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: Treaty w/ Chippewa, etc. Sept. 26, 1833,undated + + + + + + 98 + 12 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, V 1: 326-331, 338, 339, ARCOIA, Nov. 28, 1833,undated + + + + + + 98 + 13 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, V. 1:353, 358-359, 362-363, 370-373, ARCOIA, Nov. 25, 1834,undated + + + + + + 98 + 14 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: Treaty w/ Ottawa, Chippewa, Mar. 28, 1836,undated + + + + + + 98 + 15 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, V. 1: 419, 434-435, 446, ARCOIA, Dec. 1, 1836,undated + + + + + + 98 + 16 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: SD- V. 1, N6, NA RG46 B56 F2-3, Copy by S.C. Adams Nov. 13, 1886, Feb. 7, 1837,undated + + + + + + 98 + 17 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: Treaty w/ Chippewa July 29, 1837,undated + + + + + + 98 + 18 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, V. 1: 465-67, 478-9, ARCOIA, Dec. 1, 1837,undated + + + + + + 98 + 19 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, V. 1: 516-517, 520-23, 540-543, ARCOIA, [1838], 1838,undated + + + + + + 98 + 20 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: Treaty w/ Stockbridge, Sept. 3, 1839,undated + + + + + + 98 + 21 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, V. 1: 577, 580-1, 598-99, 604-5, 608-9, 630-1, ARCOIA, Nov. 25, 1839,undated + + + + + + 98 + 22 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, V. 1: 647, 650-3, 664-5, 690-91, ARCOIA, Nov. 28, 1840,undated + + + + + + 98 + 23 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: Treaty w/ Chippewa, Oct. 4, 1842,undated + + + + + + 98 + 24 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: New American State Papers, V. 2: 13-15, 24-27, 30-31, 34-35, 44-5 ARCOIA, Nov. 16, 1842,undated + + + + + + 98 + 25 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: US Statutes at Large, V. V, Ch. C1, P: 645-47, March 3, 1843,undated + + + + + + 98 + 26 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: MMLM-NARG75 SC42- R1, Doty, Aug. 2, 1843,undated + + + + + + 98 + 27 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, U2: 51, 62-65, 80-85, ARCOIA, Nov. 25, 1843,undated + + + + + + 98 + 28 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: MMLM-NARG75 SC42-R1, Blake, April 5, 1844,undated + + + + + + 98 + 29 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: MMLM-NARG75 SC42-R1, Blake, April 17, 1844,undated + + + + + + 98 + 30 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, V2:86-7, 98-101, 112-115, ARCOIA, Nov. 25, 1844,undated + + + + + + 98 + 31 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, V.2: 119, 128-9, 146-7, ARCOIA, Nov. 24, 1845,undated + + + + + + 98 + 32 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: SD V5 N17, HR, 29th Congress, 1st Sess., Doc. 128, Feb. 17, 1846,undated + + + + + + 98 + 33 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: MMLM-NARG75 SC42-R1, Quinney, Aug. 2, 1848,undated + + + + + + 98 + 34 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: SD-V.1, N.7, NA RG46 B56 F2-3, Act to Repeal Act of Mar. 3, 1843,undated + + + + + + 98 + 35 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, V.2: 150-1, 158-9, 166-9, ARCOIA, Nov. 30, 1846,undated + + + + + + 98 + 36 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, V.2: 170-1, 176-9, 188-9, 206-207, ARCOIA, Nov. 30, 1847,undated + + + + + + 98 + 37 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: Treaty w/ Menominee, 1848, 9 STAT 952, Oct. 18, 1848,undated + + + + + + 98 + 38 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: US Statutes at Large, V. IX, C. LXXXV, P. 955-64, Nov. 24, 1848,undated + + + + + + 98 + 39 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: Treaty w/ Stockbridge Nov. 27, 1848,undated + + + + + + 98 + 40 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, V.2: 209, 212-3, 220-221, ARCOIA, Nov. 30, 1848,undated + + + + + + 98 + 41 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: MMLM-NARG75 SC42-R1, Brown to Bruce, July 10, 1849,undated + + + + + + 98 + 42 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: MMLM-NARG75 SC42-R1, July 13, 1849,undated + + + + + + 98 + 43 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, V.2:261, 270-73, 278-9, 280-3, ARCOIA, Nov. 30, 1849,undated + + + + + + 98 + 44 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: MMLM-NARG75 SC42-R1, Brown to Doty, Jan. 26, 1850,undated + + + + + + 98 + 45 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: SD V2 N68, NA RG46 B56 F14 S712.F4, Quinney, et al. to Sachem of Stockbridge, May 14, 1850,undated + + + + + + 98 + 46 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: SD.V2.N69 NA RG46 B56 F14 S712:F4, Stockbridge vs. Sam Miller, July 2, 1850,undated + + + + + + 98 + 47 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, V2: 289, 292-3, 298-9, ARCOIA Nov. 27, 1850,undated + + + + + + 98 + 48 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166, R.1: 17-18, Aug. 18, 1851,undated + + + + + + 98 + 49 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R4:40-42, March 8, 1852,undated + + + + + + 98 + 50 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R4: 49-51, Slingerland to Murray, March 26, 1852,undated + + + + + + 98 + 51 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R4:69-70, May 3, 1852,undated + + + + + + 98 + 52 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R4: 71-72, Quinney, Turkey, Charles to Murry, May 8, 1852,undated + + + + + + 98 + 53 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R4: 81-83, Slingerland, June 5, 1852,undated + + + + + + 98 + 54 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R4:99, Slingerland to Murry, Aug. 4, 1852,undated + + + + + + 98 + 55 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, V.2: 344-7, 352-3, ARCOIA, Nov. 30, 1852,undated + + + + + + 98 + 56 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R4:124-5, Dec. 31, 1852,undated + + + + + + 98 + 57 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166, R.1:133, May 17, 1853,undated + + + + + + 98 + 58 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166, R.1:131, May 24, 1853,undated + + + + + + 98 + 59 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166, R.1: 132, May 25, 1853,undated + + + + + + 98 + 60 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166, R.1: 134, May 26, 1853,undated + + + + + + 98 + 61 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166, R.1:135, June 1, 1853,undated + + + + + + 98 + 62 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R4: 144-145, June 1, 1853,undated + + + + + + 98 + 63 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166, R1:173, July 1, 1853,undated + + + + + + 98 + 64 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166, R.1: 147-8, June 7, 1853,undated + + + + + + 98 + 65 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166, R.1: 157-8, June 7, 1853,undated + + + + + + 98 + 66 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166, R.1: 178, July 11, 1853,undated + + + + + + 98 + 67 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166, R.1: 180, June 16, 1853,undated + + + + + + 98 + 68 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R4:155, June 16, 1853,undated + + + + + + 98 + 69 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166, R.1:204, Aug. 16, 1853,undated + + + + + + 98 + 70 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R.1:210, Aug. 24, 1853,undated + + + + + + 98 + 71 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R1:212, Aug. 29, 1853,undated + + + + + + 98 + 72 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166, R1:218, Sept. 4, 1853,undated + + + + + + 98 + 73 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166, R1:219, Sept. 6, 1853,undated + + + + + + 98 + 74 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166, R1:225, Sept. 12, 1853,undated + + + + + + 98 + 75 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R.1: 234, Sept. 25, 1853,undated + + + + + + 98 + 76 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R.1: 239, Sept. 26, 1853,undated + + + + + + 98 + 77 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R.1: 236-8, Sept. 26, 1853,undated + + + + + + 98 + 78 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R.1: 243-50, Sept., 1853,undated + + + + + + 98 + 79 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, V.2:363-5, 384, ARCOIA, Nov. 26, 1853,undated + + + + + + 98 + 80 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R.1:275, Dec. 10, 1853,undated + + + + + + 98 + 81 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166, R.1:278, Dec. 19, 1853,undated + + + + + + 98 + 82 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R1:308, Jan. 10, 1854,undated + + + + + + 98 + 83 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R1:341, March 31, 1854,undated + + + + + + 98 + 84 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R1:348, April 5, 1854,undated + + + + + + 98 + 85 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R1: 361-363, May 2, 1854,undated + + + + + + 98 + 86 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R4: 194-196, May 10, 1854,undated + + + + + + 98 + 87 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R1: 372, May 10, 1854undated + + + + + + 98 + 88 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: Treaty w/ Menominee May 12, 1854,undated + + + + + + 98 + 89 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R1: 375, May 21, 1854,undated + + + + + + 98 + 90 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R1: 422-3, July 15, 1854,undated + + + + + + 98 + 91 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R4: 208-211, Aug. 1, 1854,undated + + + + + + 98 + 92 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R1: 440, Aug. 20, 1854,undated + + + + + + 98 + 93 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: ARCOIA, Sept. 18, 1854,undated + + + + + + 98 + 94 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R1: 449, Sept. 21, 1854,undated + + + + + + 98 + 95 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R1:454-57, Sept. 26, 1854,undated + + + + + + 98 + 96 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R1:460, Sept. 27, 1854,undated + + + + + + 98 + 97 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R1:550, Sept. 28, 1854,undated + + + + + + 98 + 98 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R1:548-9, Sept. 29, 1854,undated + + + + + + 98 + 99 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R1:475-6, Sept. 29, 1854,undated + + + + + + 98 + 100 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R4:212, Sept. 29, 1854,undated + + + + + + 98 + 101 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R4:214, Sept. 30, 1854,undated + + + + + + 98 + 102 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R1:477, Sept. 30, 1854,undated + + + + + + 98 + 103 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: Treaty w/ Chippewa, Sept. 30, 1854,undated + + + + + + 98 + 104 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R1:468-70, Sept. 1854,undated + + + + + + 98 + 105 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R1: 478, Sept. 1854,undated + + + + + + 98 + 106 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R4: 216, Oct. 2, 1854,undated + + + + + + 98 + 107 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R1: 551, Oct. 4, 1854,undated + + + + + + 98 + 108 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R1: 481, Oct. 7, 1854,undated + + + + + + 98 + 109 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R1: 490, Oct. 19, 1854,undated + + + + + + 98 + 110 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R1: 491, Oct. 19, 1854,undated + + + + + + 98 + 111 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R1: 492, Oct. 19, 1854,undated + + + + + + 98 + 112 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R4: 218, Oct. 20, 1854,undated + + + + + + 98 + 113 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 8-9, Oct. 24, 1854,undated + + + + + + 98 + 114 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: MMLM-NARG 75 SC42- R1, Oct. 25, 1854,undated + + + + + + 98 + 115 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R1: 514, Oct. 30, 1854,undated + + + + + + 98 + 116 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R1: 531-532, Nov. 5, 1854,undated + + + + + + 98 + 117 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R1: 534, Nov. 6, 1854,undated + + + + + + 98 + 118 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: MMLM-NARG 75 SC42- R1, Nov. 14, 1854,undated + + + + + + 98 + 119 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, v. 2: 405-7, ARCIOA, Nov. 25, 1854,undated + + + + + + 98 + 120 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R1: 560, Dec. 7, 1854,undated + + + + + + 98 + 121 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R1: 565, Dec. 20, 1854,undated + + + + + + 98 + 122 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R.1: 461-467, Superintendent’s Report, 1854,undated + + + + + + 98 + 123 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M-1166 R2: 2-3, Jan. 2, 1855,undated + + + + + + 98 + 124 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R2: 4-7, Jan. 4, 1855,undated + + + + + + 98 + 125 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R3: 966, Jan. 10, 1855,undated + + + + + + 98 + 126 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: SD-V1., N.11, NA RG46 B56 F2-3, Wilson to McClelland, April 18, 1855,undated + + + + + + 98 + 127 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R.2: 88-9, April 30, 1855,undated + + + + + + 98 + 128 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M-1166 R2: 100, May 8, 1855,undated + + + + + + 98 + 129 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R2: 101, May 16, 1855,undated + + + + + + 98 + 130 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R.2: 108, May 18, 1855,undated + + + + + + 98 + 131 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R.2: 110, May 22, 1855,undated + + + + + + 98 + 132 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R2: 113-114, May 26, 1855,undated + + + + + + 98 + 133 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R2: 115-116, May 28, 1855,undated + + + + + + 98 + 134 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: SD V3 N83, NA RG46 B59 F13: F1-2, May 31, 1855,undated + + + + + + 98 + 135 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R2: 117-8, June 5, 1855,undated + + + + + + 98 + 136 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R2: 119, June 5-6, 1855,undated + + + + + + 98 + 137 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R2: 123, June 6, 1855,undated + + + + + + 98 + 138 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R2: 132, June 18, 1855,undated + + + + + + 98 + 139 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R2: 133-142, June 1855,undated + + + + + + 98 + 140 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R2: 155, July 2, 1855,undated + + + + + + 98 + 141 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 160-164, July 3, 1855,undated + + + + + + 98 + 142 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 170-1, July 11, 1855,undated + + + + + + 98 + 143 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 179, July 26, 1855,undated + + + + + + 98 + 144 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 186, July 27, 1855,undated + + + + + + 98 + 145 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: Treaty w/ Ottawa and Chippewa, July 31, 1855,undated + + + + + + 98 + 146 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 188, Aug. 1, 1855,undated + + + + + + 98 + 147 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R2: 285, Aug. 22, 1855,undated + + + + + + 98 + 148 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 215, Aug. 29, 1855,undated + + + + + + 98 + 149 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R2: 235, Sept. 17, 1855,undated + + + + + + 98 + 150 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R.2: 244-249, Oct. 6, 1855,undated + + + + + + 98 + 151 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R2: 279-280, Oct. 15, 1855,undated + + + + + + 98 + 152 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R2: 281, Oct. 15, 1855,undated + + + + + + 98 + 153 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R2: 293-4, Oct. 25, 1855,undated + + + + + + 98 + 154 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R2: 301-2, Nov. 1, 1855,undated + + + + + + 98 + 155 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 305, Nov. 5, 1855,undated + + + + + + 98 + 156 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R2: 303, Nov. 7, 1855,undated + + + + + + 98 + 157 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 308-309, Nov. 10, 1855,undated + + + + + + 98 + 158 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 365, Nov. 30, 1855,undated + + + + + + 98 + 159 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 343-348, Dec. 4, 1855,undated + + + + + + 98 + 160 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 355, Dec. 15, 1855,undated + + + + + + 98 + 161 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R.2: 358-364, Dec. 17, 1855,undated + + + + + + 98 + 162 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R2: 370, Dec. 27, 1855,undated + + + + + + 98 + 163 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: SD- V.1, N.8, NA RG46 B56 F2-3, Jan. 7, 1856,undated + + + + + + 98 + 164 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R.2: 388-391, Jan. 7-8, 1856,undated + + + + + + 98 + 165 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: MMLM- NA RG75 SC42-R1, Jan. 8, 1856,undated + + + + + + 98 + 166 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 380-2, Jan. 9, 1856,undated + + + + + + 98 + 167 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R2: 387, Jan. 11, 1856,undated + + + + + + 98 + 168 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 409-414, Jan. 19, 1856,undated + + + + + + 98 + 169 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: Treaty w/ Stockbridge, Feb. 5, 1856,undated + + + + + + 98 + 170 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 407-8, Feb. 6, 1856,undated + + + + + + 98 + 171 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: Treaty w/ Menominee, Feb. 11, 1856,undated + + + + + + 98 + 172 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 409, Feb. 18, 1856,undated + + + + + + 98 + 173 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R2: 416, Feb. 22, 1856,undated + + + + + + 98 + 174 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 416-7, Feb. 22, 1856,undated + + + + + + 98 + 175 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 418-22, Feb. 23, 1856,undated + + + + + + 98 + 176 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: Treaty of the Stockbridge and Munsee, Letter attached to treaty, Huebschmann to Manypenny, Feb. 23, 1856,undated + + + + + + 98 + 177 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 425, Feb. 27, 1856,undated + + + + + + 98 + 178 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 427, Feb. 28, 1856,undated + + + + + + 98 + 179 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: SD V2 N52/ SD V1, N14, [NA RG46 B56 F14 S712?], March 1856,undated + + + + + + 98 + 180 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 433, March 14, 1856,undated + + + + + + 98 + 181 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 435, March 14, 1856,undated + + + + + + 98 + 182 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 436, March 14, 1856,undated + + + + + + 98 + 183 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 444, March 14, 1856,undated + + + + + + 98 + 184 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 447-8, (March?) 1856,undated + + + + + + 98 + 185 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R3: 1002-5, March 1856,undated + + + + + + 98 + 186 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 458-459, March 17, 1856,undated + + + + + + 98 + 187 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 453-4, March 19, 1856,undated + + + + + + 98 + 188 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2: 461-462, March 21, 1856,undated + + + + + + 98 + 189 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2 F260:33, May 2, 1856,undated + + + + + + 98 + 190 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2 F274: 60, May 26, 1856,undated + + + + + + 98 + 191 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2 F283: 79, June 3, 1856,undated + + + + + + 98 + 192 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2 F286: 84-5, June 9, 1856,undated + + + + + + 98 + 193 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2 F318: 150-51, July 15, 1856,undated + + + + + + 98 + 194 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2 F332: 160-161, July 19, 1856,undated + + + + + + 98 + 195 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2 F335: 205-6, July 21, 1856,undated + + + + + + 98 + 196 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R3: 370-371, Aug. 13, 1856,undated + + + + + + 98 + 197 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2 F339: 193, Aug. 13, 1856,undated + + + + + + 98 + 198 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2 F351: 216, Aug. 20, 1856,undated + + + + + + 98 + 199 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2 F350: 215, Aug. 28, 1856,undated + + + + + + 98 + 200 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R3: 1124-5, Sept. 1, 1856,undated + + + + + + 98 + 201 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2 F353: 221-222, Sept. 3, 1856,undated + + + + + + 98 + 202 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2 F354: 223, Hueb. To Wallbridge, Sept. 4, 1856,undated + + + + + + 98 + 203 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R2 F355: 224-225, Sept. 5, 1856,undated + + + + + + 98 + 204 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R3: 400-2, Sept. 13, 1856,undated + + + + + + 98 + 205 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R3: 393-4, Sept. 9, 1856,undated + + + + + + 98 + 206 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: MMLM- NARG 75 SC42.30198- R3, Sept. 25, 1856,undated + + + + + + 98 + 207 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R3: 422-425, Sept. 26, 1856,undated + + + + + + 98 + 208 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: ARCOIA, Oct. 15, 1856,undated + + + + + + 98 + 209 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R3: 460, Oct. 27, 1856,undated + + + + + + 98 + 210 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R3: 478-82, Nov. 8, 1856,undated + + + + + + 98 + 211 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R3: 492, Nov. 11, 1856,undated + + + + + + 98 + 212 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R3: 507-8, Nov. 12, 1856,undated + + + + + + 98 + 213 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R3: 509-10, Nov. 12, 1856,undated + + + + + + 98 + 214 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, V. 2: 465-7, 482-7, 492-5, 504-5, ARCOIA, Nov. 22, 1856,undated + + + + + + 98 + 215 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, V. 2: 427-29, 446-7, 460-3, ARCOIA, Nov. 26, 1855,undated + + + + + + 98 + 216 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R3: 1155, Nov. 26, 1856,undated + + + + + + 98 + 217 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R3: 527-8, Nov. 27, 1856,undated + + + + + + 98 + 218 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: SD-D.E.N. No. 117, 1856, Map, 1856,undated + + + + + + 98 + 219 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R4: 16-17, Feb. 7, 1857,undated + + + + + + 98 + 220 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R4: 20-21, Feb. 18, 1857,undated + + + + + + 98 + 221 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R4: 147-8, July 11, 1857,undated + + + + + + 98 + 222 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R4: 152-3, July 15, 1857,undated + + + + + + 98 + 223 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R17:24, Aug. 6, 1857,undated + + + + + + 98 + 224 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R17: 61-62, Sept. 5, 1857,undated + + + + + + 98 + 225 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: ARCOIA, Sept. 10, 1857,undated + + + + + + 98 + 226 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R17: 65-78, Sept. 28, 1857,undated + + + + + + 98 + 227 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R4: 242-244, Nov. 24, 1857,undated + + + + + + 98 + 228 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NASP, V. 2: 505-7, 516, ARCOIA, Nov. 30, 1857,undated + + + + + + 98 + 229 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166 R17:109-11, Nov. 30, 1857,undated + + + + + + 98 + 230 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M1166, R.1: 282-3, Dec. 29, 1853,undated + + + + + + 98 + 231 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R1: 309-310, Jan. 14, 1854,undated + + + + + + 98 + 232 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R1: 337-8, March 20, 1854,undated + + + + + + 98 + 233 + Box 1 Stockbridge- Munsee, Calendar documents, 1803-1857: NAM M.1166 R1: 358-9, April 28, 1854,undated + + + + + + 99 + 1 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: MMLM-NARG75 SC42 P762- R1, March 9, 1858,undated + + + + + + 99 + 2 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: MMLM-NA RG75 SC42- R1, April 30, 1858,undated + + + + + + 99 + 3 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M1166 R17: 23, Aug. 8, 1858,undated + + + + + + 99 + 4 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NASP, V.2: 517, 522-3, 528-31, ARCOIA, Nov. 6, 1858,undated + + + + + + 99 + 5 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD-V1, N.13, Jan. 4, 1859,undated + + + + + + 99 + 6 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: MMLM- NA RG75 SC42 B55- R1, Sept. 10, 1859,undated + + + + + + 99 + 7 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NASP, V. 2: 533-5, 554, ARCOIA, Nov. 26, 1859,undated + + + + + + 99 + 8 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: MMLM- NARG75 SC42 B179- R1, Feb. 27, 1860,undated + + + + + + 99 + 9 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: MMLM- NARG75 SC42- R1, May 18, 1860,undated + + + + + + 99 + 10 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: MMLM- NARG75 SC42, B260- R1, Aug. 16, 1860,undated + + + + + + 99 + 11 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: Annual Report Sec. Interior, 11/30/1860,undated + + + + + + 99 + 12 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: ARCOIA, Nov. 30, 1860,undated + + + + + + 99 + 13 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM ____ M.653, R. 1429, 1860, Excerpts from Shawano Co., Census, 1860,undated + + + + + + 99 + 14 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD S. E. No. 326, s. v., “Surveyor General, Sketch of Public Surveys”, [1861], map, 1861,undated + + + + + + 99 + 15 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: ARCOIA, Nov. 26, 1862,undated + + + + + + 99 + 16 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD- D. E. No. 120, HR, 37th Congress, 3d Session, Ex. Doc, No. 61: 1-4, Feb. 9, 1863,undated + + + + + + 99 + 17 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: ARCOIA, 1863,undated + + + + + + 99 + 18 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: MMLM- NARG75 SC42, W502- R1, Jan. 26, 1864,undated + + + + + + 99 + 19 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: MMLM- NARG75 SC42- R1, Sept. 12, 1864,undated + + + + + + 99 + 20 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: MMLM- NARG75 SC42- R1, Dec. 2, 1864,undated + + + + + + 99 + 21 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 227, Feb. 2, 1865,undated + + + + + + 99 + 22 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: MMLM- NARG75 SC42- R1, April 1865, Davis to Dole, Map, 1865,undated + + + + + + 99 + 23 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 33, April 1, 1865,undated + + + + + + 99 + 24 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 35-6, April 10, 1865, Davis to Dole, 1865,undated + + + + + + 99 + 25 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 40-41, May 13, 1865, Davis to Dole, 1865,undated + + + + + + 99 + 26 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 42-3, May 15, 1865, Davis to Dole, 1865,undated + + + + + + 99 + 27 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 43, May 17, 1865, Davis to Dole, 1865,undated + + + + + + 99 + 28 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 45, May 17, 1865, Davis to Dole, 1865,undated + + + + + + 99 + 29 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 51, May 22, 1865,undated + + + + + + 99 + 30 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 53, May 29, 1865, Davis to Dole, 1865,undated + + + + + + 99 + 31 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 55, May 30, 1865, Davis to Dole, 1865,undated + + + + + + 99 + 32 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 212-18, June 5, 1865,undated + + + + + + 99 + 33 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 85-7, June 24, 1865, Davis to Dole, 1865,undated + + + + + + 99 + 34 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 210-11, June 26, 1865,undated + + + + + + 99 + 35 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 88-90, July 5, 1865, Davis to Dole, 1865,undated + + + + + + 99 + 36 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 95, July 5, 1865, Davis to Dole, 1865,undated + + + + + + 99 + 37 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 230, July 13, 1865,undated + + + + + + 99 + 38 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 108-9, Aug. 3, 1865,undated + + + + + + 99 + 39 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 132, Aug. 21, 1865, Petition to MM Davis, 1865,undated + + + + + + 99 + 40 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 116-7, Aug. 26, 1865, Davis to COIA, 1865,undated + + + + + + 99 + 41 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 120, Aug. 26, 1865,undated + + + + + + 99 + 42 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 9-10, Sept. 12, 1865,undated + + + + + + 99 + 43 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 128-32, Sept. 16, 1865,undated + + + + + + 99 + 44 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 221-2, Sept. 23, 1865,undated + + + + + + 99 + 45 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD D. E. No. 118, ARCOIA, Green Bay Agency Report, Sept. 25, 1865,undated + + + + + + 99 + 46 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 411-414, Oct. 12, 1865, Whitney to Davis, 1865,undated + + + + + + 99 + 47 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 141-2, Oct. 14, 1865,undated + + + + + + 99 + 48 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 143-4, Oct. 19, 1865, Cooley to Davis, 1865,undated + + + + + + 99 + 49 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 224, Oct. 25, 1865,undated + + + + + + 99 + 50 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 231-2, Nov. 12, 1865,undated + + + + + + 99 + 51 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 256-9, Dec. 22, 1865, Scott to Cooley, 1865,undated + + + + + + 99 + 52 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 186-7, Dec. 25, 1865, Davis to Cooley, 1865,undated + + + + + + 99 + 53 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 189-90, Dec. 26, 1865, Davis to Cooley, 1865,undated + + + + + + 99 + 54 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 609, Jan. 1, 1866,undated + + + + + + 99 + 55 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: MMLM- NARG75 SC42, S35- R1, Jan. 8, 1866,undated + + + + + + 99 + 56 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 310-14, Jan. 24, 1866,undated + + + + + + 99 + 57 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 191-2, Jan. 27, 1866, Cooley to Davis, 1866,undated + + + + + + 99 + 58 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 323, Jan. 31, 1866, Davis to Cooley, 1866,undated + + + + + + 99 + 59 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 326, Feb. 1, 1866,undated + + + + + + 99 + 60 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 291-3, rec’d Feb. 15, 1866,undated + + + + + + 99 + 61 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 338, Feb. 21, 1866, Davis to Cooley, 1866,undated + + + + + + 99 + 62 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 340-1, Feb. 23, 1866, Davis to Cooley, 1866,undated + + + + + + 99 + 63 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 346, March 5, 1866, Davis to Cooley, 1866,undated + + + + + + 99 + 64 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 350-1, March 12, 1866,undated + + + + + + 99 + 65 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 347-8, March 13, 1866, Davis to Cooley, 1866,undated + + + + + + 99 + 66 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 992-3, April 3, 1866, Sawyer to Cooley, 1866,undated + + + + + + 99 + 67 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 596-7, April 18, 1866, Edmunds to Cooley, 1866,undated + + + + + + 99 + 68 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 381-2, rec’d May 2, 1866,undated + + + + + + 99 + 69 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 384, May 9, 1866, Davis to Cooley, 1866,undated + + + + + + 99 + 70 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 391-3, May 25, 1866, Davis to Cooley, 1866,undated + + + + + + 99 + 71 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 396-7, May 28, 1866,undated + + + + + + 99 + 72 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 399-402, May 28, 1866, Davis to Cooley, 1866,undated + + + + + + 99 + 73 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 427-9, June 16, 1866,undated + + + + + + 99 + 74 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 430-33, 436-7, 439-41, 444-48, 467-69, 472-73, 504-5, June 26, 1866, Davis to Cooley, 1866,undated + + + + + + 99 + 75 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 642-7, July 20, 1866, Martin to Cooley, 1866,undated + + + + + + 99 + 76 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 542-3, Aug. 29, 1866,undated + + + + + + 99 + 77 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 704-5, Sept. 25, 1866,undated + + + + + + 99 + 78 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M235 R325: 707-9, Oct. 9, 1866,undated + + + + + + 99 + 79 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 771-3, Nov. 10, 1866,undated + + + + + + 99 + 80 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 521-2, Nov. 19, 1866,undated + + + + + + 99 + 81 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 710-11, Nov. 27, 1866,undated + + + + + + 99 + 82 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: ARCOIA, 1866,undated + + + + + + 99 + 83 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 900-02, rec’d Dec. 14, 1866,undated + + + + + + 99 + 84 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 1029-30, Jan. 5, 1867,undated + + + + + + 99 + 85 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 1045-50, Feb. 11, 1867,undated + + + + + + 99 + 86 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 1044, Feb. 15, 1867,undated + + + + + + 99 + 87 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD V2 N37 [NA RG46 B56 F2-3?], Feb. 19, 1867, Treaty and Related Docs, 1867,undated + + + + + + 99 + 88 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 1079-80, April 29, 1867, Martin to Taylor, 1867,undated + + + + + + 99 + 89 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 944-952, June 28, 1867,undated + + + + + + 99 + 90 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 1128-9, July 30, 1867,undated + + + + + + 99 + 91 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD D.E. No. 118, ARCOIA (Green Bay Agency Report), Sept. 1, 1867,undated + + + + + + 99 + 92 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 988-9, Oct. 21, 1867,undated + + + + + + 99 + 93 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 955-7, Charles et al. Dec. 21, 1867,undated + + + + + + 99 + 94 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 1001-2, Dec. 30, 1867,undated + + + + + + 99 + 95 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R325: 953-4, [1867], 1867,undated + + + + + + 99 + 96 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: ARCOIA, Nov. 23, 1868,undated + + + + + + 99 + 97 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD V2 N36 [NA RG 46 B56 F2-3?] March 11, 1869, JL of the Senate, 1869,undated + + + + + + 99 + 98 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD D.E. No. 118, ARCOIA, Green Bay Agency Report, Aug. 1, 1869,undated + + + + + + 99 + 99 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R237: 24-26, Nov. 18, 1869, Articles of Agreement, 1869,undated + + + + + + 99 + 100 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 752-56, Dec. 11, 1869,undated + + + + + + 99 + 101 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD- D.E. No. 118, Report of COIA, Green Bay Agency, [1865-1869],undated + + + + + + 99 + 102 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 507-9, Jan. 7, 1870, Manly to Parker, 1870,undated + + + + + + 99 + 103 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD- V2 N74, NA RG46 B56 F14 S712: F4, Jan. 8, 1870, Statement to Slingerland, etc., 1870,undated + + + + + + 99 + 104 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 401-404, Jan. 11, 1870,undated + + + + + + 99 + 105 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 757-760, Jan. 15, 1870, Sawyer to Parker, 1870,undated + + + + + + 99 + 106 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 1062-4, Jan. 17, 1870, Richardson to Parker, 1870,undated + + + + + + 99 + 107 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 427, Jan. 18, 1870, Charles to Sawyer, 1870,undated + + + + + + 99 + 108 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 520-3, Jan. 22, 1870, Manly to Parker, 1870,undated + + + + + + 99 + 109 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 424-6, Jan. 24, 1870,undated + + + + + + 99 + 110 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 625-8, Jan. 27-9, 1870,undated + + + + + + 99 + 111 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 530-33, Feb. 1, 1870, Manly to Parker, 1870,undated + + + + + + 99 + 112 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 536-8, [enclosed 29 Nov. 1869], Feb. 1, 1870,undated + + + + + + 99 + 113 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 540-4, Feb. 3, 1870, Manly to Parker, 1870,undated + + + + + + 99 + 114 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 382-3, Feb. 5, 1870,undated + + + + + + 99 + 115 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 549-553, Feb. 7, 1870, Manly to Parker, 1870,undated + + + + + + 99 + 116 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 564-5, Feb. 7, 1870, Manly to Parker, 1870,undated + + + + + + 99 + 117 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 567-9, Feb. 9, 1870, Manly to Parker, 1870,undated + + + + + + 99 + 118 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 770-1, Feb. 9, 1870, Gardner to Sawyer, 1870,undated + + + + + + 99 + 119 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 762-767, Feb. 12, 1870, Sawyer to Parker, [enclosed: Davids et al. to Sawyer?], 1870,undated + + + + + + 99 + 120 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 775-778, Feb. 14, 1870, Davids et al. to Sawyer, 1870,undated + + + + + + 99 + 121 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 779-80, Feb. 14, 1870, Davids et al. to Sawyer, 1870,undated + + + + + + 99 + 122 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 781-786, Feb. 19, 1870, Sawyer to Cox, 1870,undated + + + + + + 99 + 123 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NA RG46, Box 99, 41st Congress, S. 610, “Senate Printed ___”, Senate Bill S.610 as Introduced, March 2, 1870,undated + + + + + + 99 + 124 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 651-4, March 7, 1870, Manly to COIA, 1870,undated + + + + + + 99 + 125 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 19-23, March 7, 1870, Bourne to Parker, 1870,undated + + + + + + 99 + 126 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD V6 N9, BIA- Minneapolis- CF No. 936- 1973- Gt. Lks- 318, March 9, 1870,undated + + + + + + 99 + 127 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 788, March 14, 1870,undated + + + + + + 99 + 128 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD V2 N38, [NA RG 46 B56 F 2-3], March 16, 1870, Charles and Slingerland to Harlan, 1870,undated + + + + + + 99 + 129 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 44-47, March 26, 1870, to Parker, 1870,undated + + + + + + 99 + 130 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 33-5, March 26, 1870, to Parker, 1870,undated + + + + + + 99 + 131 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 395-397, March 27, 1870, Gillett to Parker, 1870,undated + + + + + + 99 + 132 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 791-795, April 6, 1870, Charles et al. to Sawyer, 1870,undated + + + + + + 99 + 133 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 344-9, April 8, 1870, Charles et al. to Cocks, 1870,undated + + + + + + 99 + 134 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 428-30, Otto to, April 8, 1870,undated + + + + + + 99 + 135 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 95-98, to Parker, April 8, 1870,undated + + + + + + 99 + 136 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 108-112, to Parker, [enclosed: April 6, 1870], April 12, 1870,undated + + + + + + 99 + 138 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 118-24, to Parker, April 25, 1870,undated + + + + + + 99 + 139 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD V2 N34, NA RG46 B56 F2-3, Senate Bill 849, April 27, 1870,undated + + + + + + 99 + 140 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 125-7, to Parker, May 3, 1870,undated + + + + + + 99 + 141 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD V6 N2, Shawano Co., WI Courthouse, DB V7 P73, Wetherby Tax Deed, May 9, 1870,undated + + + + + + 99 + 142 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 825-884, May 18, 1870,undated + + + + + + 99 + 143 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 671-3, Manly to Parker, June 22, 1870,undated + + + + + + 99 + 144 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 675-8, Martin to Parker, July 15, 1870,undated + + + + + + 99 + 145 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: ____, Charles et al. to Bourne, July 22, 1870,undated + + + + + + 99 + 146 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 230-1, to Parker, July 25, 1870,undated + + + + + + 99 + 147 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 355-6, Charles to COIA, July 28, 1870,undated + + + + + + 99 + 148 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 679-684, Sachemelat to Parker, July 29, 1870,undated + + + + + + 99 + 149 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 239-241, to Parker, July 30, 1870,undated + + + + + + 99 + 150 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 360-1, Charles to COIA, Aug. 3, 1870,undated + + + + + + 99 + 151 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 362-5, Aug. 3, 1870,undated + + + + + + 99 + 152 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 265-7, 271, to Parker, Sept. 9, 1870,undated + + + + + + 99 + 153 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 276-7, to Parker, Sept. 18, 1870,undated + + + + + + 99 + 154 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 372-3, Charles et al. to COIA, rec’d Oct. 3, 1870,undated + + + + + + 99 + 155 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: ARCOIA Oct. 31, 1870,undated + + + + + + 99 + 156 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 739-40, Richardson to Parker, Nov. 14, 1870,undated + + + + + + 99 + 157 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 741-2, Richardson to Parker, Nov. 29, 1870,undated + + + + + + 99 + 158 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NA RG 75 SC42- R9, Richardson to COIA, Dec. 9, 1870,undated + + + + + + 99 + 159 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 900-5, Charles et al. to Parker, Jan. 6, 1871,undated + + + + + + 99 + 160 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 1301-2, Miller to Sawyer, Jan. 16, 1871,undated + + + + + + 99 + 161 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M21 R100: 99, Clum to Sawyer, Jan. 17, 1871,undated + + + + + + 99 + 162 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD S.E. No. 330, Congressional Globe: 585-88, Jan. 18, 1871,undated + + + + + + 99 + 163 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NA RG 75 SC42- S114, Charles et al. to COIA, Jan. 24, 1871,undated + + + + + + 99 + 164 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: LC, Presidential Papers, from Micro., US Grant Papers, Series 2; Roll 3, letterbook Vol.1, P 272, Babcock to Delano, Jan. 25, 1871,undated + + + + + + 99 + 165 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD V2 N35, NA RG46 B56 F2-3, Misc. docs. relating to Bill 849, Jan. 18, 1871,undated + + + + + + 99 + 166 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M21 R99: 88, Clum to Richardson, Clum to Miller, Jan. 25, 1871,undated + + + + + + 99 + 167 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: Rutherford B. Hayes Library Grant Papers, LS. OFH, C. Delano to US Grant, Jan. 30, 1871,undated + + + + + + 99 + 168 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 923-926, Gardner to Sec. Int. Feb. 1, 1871,undated + + + + + + 99 + 169 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: LC, Presidential Papers from Micro., US Grant Papers, Series 2; Roll 3 Letterbook Vol. 1, p. 280, H. Porter to Hamilton Fish, Feb. 6, 1871,undated + + + + + + 99 + 170 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: Kappler (1904) v.1: 128-131, Feb. 6, 1871,undated + + + + + + 99 + 171 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD V2 N36 [NA RG46 B56 F2-3?] JL of HR Jan. – Feb., 1871,undated + + + + + + 99 + 172 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 1091-4, Richardson to Parker, Feb. 7, 1871,undated + + + + + + 99 + 173 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NA RG75 SC42- R40, Richardson to Parker, Feb. 14, 1871,undated + + + + + + 99 + 174 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: MMLM-NARG75 SC42. 2967-R2, Sawyer to Slingerland, Feb. 16, 1871,undated + + + + + + 99 + 175 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD-V2 N59, NA RG 46 B56 F14 S712: F4, Sawyer to Slingerland, Feb. 16, 1871,undated + + + + + + 99 + 176 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD-D.E. No. 119, Sawyer to Slingerland, Feb. 16, 1871,undated + + + + + + 99 + 177 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M21 R100: 271, Clum to ____, Feb. 24, 1871,undated + + + + + + 99 + 178 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M21 R99: 192-3, Parker to Miller, Feb. 24, 1871,undated + + + + + + 99 + 179 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M2 R100: 293-4, Feb. 28, 1871,undated + + + + + + 99 + 180 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 965-72, Miller to Parker, March 3, 1871,undated + + + + + + 99 + 181 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 927-932, Gardner to Delano [enclosed: Feb. 17, 1870 Sawyer to Gardner], March 6, 1871,undated + + + + + + 99 + 182 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NA RG75 SC-42- P 189, Hendricks et al. to President, March 25, 1871,undated + + + + + + 99 + 183 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M21 R100: 326-7, Clum to Richardson, March 6, 1871,undated + + + + + + 99 + 184 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 30-32, to Parker, March 23, 1871,undated + + + + + + 99 + 185 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 933-5, Gardner et al. to Sec. of Int., March 27, 1871,undated + + + + + + 99 + 186 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R329: 973-5, Miller to Parker, April 7, 1871,undated + + + + + + 99 + 187 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M21, R100: 500-01, Clum to Richardson, April 8, 1871,undated + + + + + + 99 + 188 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 905-7, Charles, et al. to Parker, April 14, 1871,undated + + + + + + 99 + 189 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M21, R100: 537, Clum to Richardson, April 15, 1871,undated + + + + + + 99 + 190 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 959-60, CGLO to Parker, April 22, 1871,undated + + + + + + 99 + 191 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NA RG75 SC42- M223, McCord to Parker, April 25, 1871,undated + + + + + + 99 + 192 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 1147-8, Richardson to Parker, April 22, 1871,undated + + + + + + 99 + 193 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 1147-8, Richardson to Parker, April 27, 1871,undated + + + + + + 99 + 194 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 1035-7, Nezl to Parker, April 28, 1871,undated + + + + + + 99 + 195 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M21 R99: 464, Clum to Young, May 1, 1871,undated + + + + + + 99 + 196 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 1171, Richardson to Parker, May 7, 1871,undated + + + + + + 99 + 197 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M21 R99: 500, May 8, 1871,undated + + + + + + 99 + 198 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 1161, Richardson to Parker, May 9, 1871,undated + + + + + + 99 + 199 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M21 R99: 521, Clum to Richardson, May 12, 1871,undated + + + + + + 99 + 200 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NA RG75 SC42- S219, Charles et al. to Parker, May 12, 1871,undated + + + + + + 99 + 201 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M21 R99: 540, Clum to Miller, May 17, 1871,undated + + + + + + 99 + 202 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M21 R99: 539, Clum to Richardson, May 17, 1871,undated + + + + + + 99 + 203 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M21 R99: 553, Clum to McCord, May 19, 1871,undated + + + + + + 99 + 204 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 979-81, Miller to Clum, June 15, 1871,undated + + + + + + 99 + 205 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 1197-2000, Richardson to Parker, June 16, 1871,undated + + + + + + 99 + 206 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD- V.1, N.4, NA RG 46 B56 F2-3, Adoptcon and Wm. Gardner (April 4, 1825), Statement of Clark and Steve Gardner, July 13, 1871,undated + + + + + + 99 + 207 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 982-6, Miller to Clum, July 15, 1871,undated + + + + + + 99 + 208 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 1136- 40, Special Comms. to COIA, July 24, 1871,undated + + + + + + 99 + 209 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 987-8, McCord to Parker, July 27, 1871,undated + + + + + + 99 + 210 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SNAM M234 R327: 989-90, McCord to Parker, July 29, 1871,undated + + + + + + 99 + 211 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NA RG75 SC42- W637, Cowen to COIA, Aug. 4, 1871,undated + + + + + + 99 + 212 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: MMLM- NA RG75 SC42, W515-R1, Clum to Delano, Aug. 3, 1871,undated + + + + + + 99 + 213 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SSD V2 N40, [NA RG46 B56 F2-3?], Cowen to Charles (G.L.O.), Aug. 4, 1871,undated + + + + + + 99 + 214 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: MMLM- NARG75 SC42, H661- R1, [enclosed Aug. 7, 1871 Charles, et al. to COIA], Howe to Parker, Aug. 10, 1871,undated + + + + + + 99 + 215 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 936-45, Gardner, Hendricks to Sec. of Int., Aug. 12, 1871,undated + + + + + + 99 + 216 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 995-997, McCord to Parker, Aug. 21, 1871,undated + + + + + + 99 + 217 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 920-2, Davids, Hendricks and Jacobs to COIA, Sept. 11, 1871,undated + + + + + + 99 + 218 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 998-9, Sept. 16, 1871,undated + + + + + + 99 + 219 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD V2 N64, NA RG46 B56 F14 S712: F4, Statement et al. to Slingerland, Sept. 30, 1871,undated + + + + + + 99 + 220 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD S.E. No. 332, s. v., Clum to Richardson, Sept. 21, 1871,undated + + + + + + 99 + 221 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 1001-02, McCord to Parker, Oct. 2, 1871,undated + + + + + + 99 + 222 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD V2 N39 [NA RG46 B56 F2-3?], Cowen to Charles et al., Oct. 3, 1871,undated + + + + + + 99 + 223 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NA RG75 SC42, F ___, Charles et al. to COIA, Oct. 12, 1871,undated + + + + + + 99 + 224 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: MMLM- NARG 75 SC42, C465- R1, Charles et al. to COIA, Oct. 12, 1871,undated + + + + + + 99 + 225 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NA RG75 SC42- R195, Richardson to Clum, Oct. 12, 1871,undated + + + + + + 99 + 226 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NA RG 75 SC42- R197, Richardson to Clum, Oct. 28, 1871,undated + + + + + + 99 + 227 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: ARCOIA Nov. 15, 1871,undated + + + + + + 99 + 238 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: MMLM-NARG 75 SC42 R216- R1, Richardson to Clum, Nov. 24, 1871,undated + + + + + + 99 + 229 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NA RG75 SC42- S537, Sawyer to COIA, Nov. 28, 1871,undated + + + + + + 99 + 230 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 908-10, Charles et al. to Sawyer, Dec. 4, 1871,undated + + + + + + 99 + 231 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: MMLM-NA RG75 SC42 R971- R1, Richardson to Parker, Dec. 9, 1871,undated + + + + + + 99 + 232 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 1284, Richardson to Walker, Dec. 16, 1871,undated + + + + + + 99 + 233 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD V2 N52, [NA RG46 B56 F14 S712?], Walker to Richardson, Dec. 16, 1871,undated + + + + + + 99 + 234 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: NAM M234 R327: 1290-5, Dec. 19, 1871,undated + + + + + + 99 + 235 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD- V1, N9, NA RG46 B56 F2-3, list of members deprived order 1871 Treaty, 1871,undated + + + + + + 99 + 236 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: SD V.1, N. 12, NA RG 46 B56 F2-3, List of Allottees, [1871?],undated + + + + + + 99 + 237 + Box 2 Stockbridge- Munsee, Calendar documents, 1858-1871: MMLM- NARG75 SC42 “Misc. Notes”- R1, 1871-1907,undated + + + + + + 100 + 1 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 SC42- S611, Jan. 3, 1872, Charles Party to Sawyer, [Petition enclosed 26 Dec. 1871], 1872,undated + + + + + + 100 + 2 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM- NARG75 SC42, S612- R1, Jan. 3, 1872, Charles et al. to Sawyer, 1872,undated + + + + + + 100 + 3 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 SC42- S598, Jan. 5, 1872, Slingerland to COIA, [Enclosed Feb. 8, 1872, Smith], 1872,undated + + + + + + 100 + 4 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 SC42- R257, Jan. 16, 1872, Richardson to Walker, [enclosed: Petition Jan. 3, 1872], 1872,undated + + + + + + 100 + 5 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 SC42- R289, Feb. 5, 1872, Adams et al. to Richardson, [enclosed: Peters, et al. to sir], 1872,undated + + + + + + 100 + 6 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 SC42- G309, Feb. 9, 1872, Gardner to Walker, 1872,undated + + + + + + 100 + 7 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 SC42- G75, Feb. 9, 1872, Walker to Delano, [enclosed: Aug. 16, 1872 Gardner to Chaney], 1872,undated + + + + + + 100 + 8 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 SC42- R286, Feb. 20, 1872, Richardson to Walker, 1872,undated + + + + + + 100 + 9 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 SC42- R361, Feb. 20, 1872, Richardson to Walker, 1872,undated + + + + + + 100 + 10 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD S.E. No. 333, NA ___ __ ____, Feb. 21, 1872, Charles: Slingerland to COIA, 1872,undated + + + + + + 100 + 11 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 SC42-C866, Feb. 21, 1872, Charles and Slingerland to Walker, 1872,undated + + + + + + 100 + 12 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 SC42- R285, Feb. 28, 1872, Richardson to Walker, 1872,undated + + + + + + 100 + 13 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 SC42- R361, April 5, 1872, Richardson to Walker, 1872,undated + + + + + + 100 + 14 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 SC42- Q23, April 22, 1872, Quinneys to COIA, 1872,undated + + + + + + 100 + 15 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD S.E. No. 334, Richardson to Wilbur, April 29, 1872,undated + + + + + + 100 + 16 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 SC42-P859, May 16, 1872, Porolis et al. to Delano, 1872,undated + + + + + + 100 + 17 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 SC42- I92, June 17, 1872, Delano to Frelinghuysen, 1872,undated + + + + + + 100 + 18 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD S.E. No. 335, NA ___ ___, Green Bay Agency, June 21, 1872, Richardson to Walker, 1872,undated + + + + + + 100 + 19 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 SC42- L674, June 24, 1872, Drummond to Walker, 1872,undated + + + + + + 100 + 20 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 SC42- R30, Aug. 5, 1872, Richardson to Walker, 1872,undated + + + + + + 100 + 21 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 SC42- R70, Sept. 10, 1872,undated + + + + + + 100 + 22 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD S.E. No. 336, NA ___ ____, Charles, et al. to Delano, MAP, Oct. 1872,undated + + + + + + 100 + 23 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 SC42- C223, Charles et al. to Delano, MAP, rec’d- Oct. 15, 1872,undated + + + + + + 100 + 24 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 SC42- I293, Nov. 18, 1872, Richardson to Walker, 1872,undated + + + + + + 100 + 25 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 SC42- I293, [enclosed- Hendricks et al. to Richardson, Nov. 12, 1872], Dec. 2, 1872, Cowen to COIA, 1872,undated + + + + + + 100 + 26 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 SC42- S365, Dec. 11, 1872, Slingerland to Sawyer, 1872,undated + + + + + + 100 + 27 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM- NARG75 SC42- R1, Dec. 27, 1872, Slingerland to Sawyer, 1872,undated + + + + + + 100 + 28 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD S.E. No. 338, NAM M.348, R.22: 192, Jan. 7, 1873, Blum to Delano, 1873,undated + + + + + + 100 + 29 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM NARG75 SC42, R220-R1, Jan. 25, 1873, [enclosed: Jan. 18, 1873, Metoxen et al. to COIA], Richardson to Clum, 1873,undated + + + + + + 100 + 30 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM- NA RG75 SC42.T54-R1, April 24, 1873, Turkey to Delano, Petition to Delano, 1873,undated + + + + + + 100 + 31 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NA RG75 SC42, C107- R1, May 7, 1873, Charles et al. to Delano, 1873,undated + + + + + + 100 + 32 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NA RG75 SC42.R102- R1, Richardson to Smith, May 20, 1873,undated + + + + + + 100 + 33 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NA RG75 SC42.W1003- R1, May 23, 1873, Wilson to Delano, 1873,undated + + + + + + 100 + 34 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NA RG75 SC42.W1003- R1, May 29, 1873, Smith to Delano, 1873,undated + + + + + + 100 + 35 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MLM-NA RG75 SC42.L141- R1, June 10, 1873, Curtis to Smith, 1873,undated + + + + + + 100 + 36 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NA RG75 SC42, P235- R1, July 12, 1873, Gardner et al. to Great Father, 1873,undated + + + + + + 100 + 37 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NA RG75 SC42.C345- R1, July 23, 1873, [enclosed: July 14, 1873, Charles et al. to Howe], Chase to Smith, 1873,undated + + + + + + 100 + 38 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NA RG75 SC42, GB 4366- R1, July 29, 1873, Adams to Smith, 1873,undated + + + + + + 100 + 39 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.W960-R1, Aug. 7, 1873, Wells to Clum, 1873,undated + + + + + + 100 + 40 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42, Q615- R1, Aug. 14, 1873, COIA to Secty., 1873,undated + + + + + + 100 + 41 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.W1003- R1, Aug. 20, 1873, Wells to Delano, 1873,undated + + + + + + 100 + 42 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG 75 SC42, Q903- R1, Nov. 19, 1873, Delano to ______, 1873,undated + + + + + + 100 + 43 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG 75 SC42.W564-R1, Nov. 20, 1873, Wilson to Smith, 1873,undated + + + + + + 100 + 44 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG 75 SC42.C780- R1, Dec. 12, 1873, Chase to Smith, 1873,undated + + + + + + 100 + 45 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG 75 SC42- R1, Dec. 15, 1873, Richardson to Smith, 1873,undated + + + + + + 100 + 46 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG 75 SC42- R1, Dec. 15, 1873, Hendricks to Richardson, 1873,undated + + + + + + 100 + 47 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42-RI, Dec. 19, 1873, Testimony and E. Bowman, 1873,undated + + + + + + 100 + 48 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: ARCOIA 1872-73,undated + + + + + + 100 + 49 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM- NARG75 SC42.W870-RI, Jan. 30, 1874, Wilson to Delano, 1874,undated + + + + + + 100 + 50 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NARG75 SC42- W870, Jan. 30, 1874, Wilson to Delano, 1874,undated + + + + + + 100 + 51 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.Q151-R1, Feb. 7, 1874, Delano to COIA, 1874,undated + + + + + + 100 + 52 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD V1, N31, [NA RG46 B56 F2-3?], Feb. 28, 1874, Menasha Land Records, 1874,undated + + + + + + 100 + 53 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.C228-R1, March 18, 1874, Charles and Slingerland to Smith w/ Power of Attorney enclosed, 1874,undated + + + + + + 100 + 54 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MNA RG75 SC42- R210, March 31, 1874, Richardson to Smith, 1874,undated + + + + + + 100 + 55 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.W644-RI, “Indian” and “Citizen” Rolls, April 8, 1874,undated + + + + + + 100 + 56 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 SC42- P242, April 10, 1874, Priest and Carter to COIA [enclosed Apr. 10, 1874, Quinney et al. to COIA], 1874,undated + + + + + + 100 + 57 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.B666-RI, May 4, 1875, Bridgeman to Smith, 1875,undated + + + + + + 100 + 58 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 SC42-P381, How’s to President, June 1874,undated + + + + + + 100 + 59 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.Q[5?]- RI, June 1, 1874, Quinney et al. to Smith, 1874,undated + + + + + + 100 + 60 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.Q614- R1, June 5, 1874, COIA to Wells, 1874,undated + + + + + + 100 + 61 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: US Statutes at Large, 18, 43rd Congress, Session 1, Ch. 389. June 22, 1874,undated + + + + + + 100 + 62 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD V6 N2, Shawnee Co., WI, Courthouse, DB V7 P200, Oct. 19, 1874, Deed McCord to Rockwell, 1874,undated + + + + + + 100 + 63 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD-V2 N71 NA RG46 B56 F14 S712: F4, Oct. 19, 1874, Statement to C. Stevens, 1874,undated + + + + + + 100 + 64 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: ARCOIA, Nov. 1, 1874,undated + + + + + + 100 + 65 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.B1316-R1, Nov. 7, 1874, Bridgertan? to Smith, 1874,undated + + + + + + 100 + 66 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD V1, N10, NA RG46 B56 F2-3, copy by J.C. Adams Nov, 13, 1886, Jan. 1, 1875,undated + + + + + + 100 + 67 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.B49-RI, Jan. 7, 1875, Bridgertan? to Smith, 1875,undated + + + + + + 100 + 68 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD S.E. No. 339, Memorial to H.R. from S-M, Feb. 1875,undated + + + + + + 100 + 69 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42-I305-RI, March 12, 1875, Jacob and Chicks to Smith, 1875,undated + + + + + + 100 + 70 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42-I303-RI, March 13, 1875 Jacob and Chicks to Smith, 1875,undated + + + + + + 100 + 71 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42- [ __30] - RI, June 18, 1875, Chase to Smith, 1875,undated + + + + + + 100 + 72 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42-I811-RI, June 28, 1875, AG to Delano, [enclosed: June 21, 1875 Gardner and Bennett to AG], 1875,undated + + + + + + 100 + 73 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.M563-RI, June 30, 1875, Miller to Smith, 1875,undated + + + + + + 100 + 74 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.B976-RI, June 30, 1875, Bridgeman to Smith, 1875,undated + + + + + + 100 + 75 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.B1230-RI, Aug. 2, 1875, Bridgeman to Smith, [enclosed: Whitney to Bridgeman Aug. 5, 1875], 1875,undated + + + + + + 100 + 76 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.I811-RI, Aug. 2, 1875, AG to Delano, [enclosed: Aug. 2, 1875, Bennett to A.G. article [July 28, 1875] “Stockbridge Difficulty], 1875,undated + + + + + + 100 + 77 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SD42.I1078-RI, Aug. 18, 1875, Crum to COIA, 1875,undated + + + + + + 100 + 78 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.J1464-RI, Aug. 25, 1875, Clum to Bridgeman, 1875,undated + + + + + + 100 + 79 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.S1598/ B6776-RI, Oct. 7, 1875, to Smith, 1875,undated + + + + + + 100 + 80 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: ARCOIA, Nov. 1, 1875,undated + + + + + + 100 + 81 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.C4-RI, Petition of “Citizen Party”, enclosed: “Stockbridge Diff., conclude,” 1875,undated + + + + + + 100 + 82 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.C79-RI, Jan. 27, 1876, Cato to COIA, 1876,undated + + + + + + 100 + 83 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SD42.Q193-RI, Feb. 25, 1876, Chandler to Bridgeman, 1876,undated + + + + + + 100 + 84 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.B340-RI, March 7, 1876, Bridgeman to Smith, 1876,undated + + + + + + 100 + 85 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SD42.B770-RI, June 13, 1876, Bridgeman to Smith, 1876,undated + + + + + + 100 + 86 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.B764-RI, June 16, 1876, Bennett to Chandler, 1876,undated + + + + + + 100 + 87 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SD42.I594/B770-RI, June 24, 1876, Chandler to COIA, MAP, 1876,undated + + + + + + 100 + 88 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD-V.1, N.3, Stockbridge Land Certificates, July 31, 1876,undated + + + + + + 100 + 89 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD-V2 N75, NA RG46 B56 F14 S712: F4, HR Report N.813, Aug. 8, 1876,undated + + + + + + 100 + 90 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NA RG75 SD42.B1054-RI, Aug. 21, 1876, Bridgeman to Smith, 1876,undated + + + + + + 100 + 91 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: ARCOIA, Oct. 30, 1876,undated + + + + + + 100 + 92 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SD42.B1054-RI, Nov. 14, 1876, Bridgeman to Smith, 1876,undated + + + + + + 100 + 93 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NA RG75 SC42.B1348-RI, Nov. 18, 1876, Bridgeman to Smith, 1876,undated + + + + + + 100 + 94 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SD42.B1374-RI, Dec. 1, 1876, Bridgeman to Smith, 1876,undated + + + + + + 100 + 95 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75.SC42.B1404-RI, Dec. 14, 1876, Bridgeman to Smith, 1876,undated + + + + + + 100 + 96 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42, “Misc. Papers,” –RI, 1876-1907?,undated + + + + + + 100 + 97 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42-RI, April 13, 1877, Gardner to Schurz, 1877,undated + + + + + + 100 + 98 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.I1464-RI, Aug. 11, 1877, Smith to Kemble, 1877,undated + + + + + + 100 + 99 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42. G421-RI, Sept. 17, 1877, Bridgeman to Smith, 1877,undated + + + + + + 100 + 100 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SD42-RI, Oct. 20, 1877,undated + + + + + + 100 + 101 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD V2 N51, [NA RG46 B56 F14 S712], Oct. 20, 1877, Kemble to Slingerland and others, 1877,undated + + + + + + 100 + 102 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42-RI, Stockbridge Council, Oct. 20-24, 1877,undated + + + + + + 100 + 103 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD V2 N50, [NA RG46 B56 F14 S712?], Oct. 20-24, 1877, Notes to Council, 1877,undated + + + + + + 100 + 104 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42-RI, Oct. 22, 1877, Slingerland et al. to Kemble, 1877,undated + + + + + + 100 + 105 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42-RI, Oct. 23, 1877, Davids et al. to Kemble, 1877,undated + + + + + + 100 + 106 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD V2 N49, [NA RG46 B56 F14 S712], Oct. 23, 1877, S. Davids et al. to Kemble, 1877,undated + + + + + + 100 + 107 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.R 347- RI, Oct. 26, 1877, Petition of CP, 1877,undated + + + + + + 100 + 108 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD V1 N23, [NA RG46 B56 F2-3?], Oct. 26, 1877, Petition of Citizen Party, 1877,undated + + + + + + 100 + 109 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: ARCOIA, Nov. 1, 1877,undated + + + + + + 100 + 110 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42. K316- RI, Nov. 12, 1877, Kemble Report, 1877,undated + + + + + + 100 + 111 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD V2 N48, NA RG46 B56 F14 S712, Nov. 12, 1877, Kemble to COIA, 1877,undated + + + + + + 100 + 112 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD-V1, N24, [NA RG 46 B56 F2-3], Nov. 16, 1877, Kemble to Hayt, 1877,undated + + + + + + 100 + 113 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD V3. N.84, NA RG 46 B59 F13: F1-2, Statement response to Kemble Report, [Nov. 1877?],undated + + + + + + 100 + 114 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75, SC42.A339- RI, Jan. 2, 1878, Bridgeman to Hoyt, 1878,undated + + + + + + 100 + 115 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42-RI, April 10, 1878, Adam to COIA, 1878,undated + + + + + + 100 + 116 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.A339-RI, May 30, 1878, Adams to COIA, 1878,undated + + + + + + 100 + 117 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG46 B56 F14 S912: F4, July 8, 1878, Leeds to Sec. Int., 1878,undated + + + + + + 100 + 118 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.A339-RI, Sept. 18, 1878, Adams to Hoyt, 1878,undated + + + + + + 100 + 119 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.B1754-RI, Oct. 29, 1878, Miller to Bridgeman, 1878,undated + + + + + + 100 + 120 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD V1, N25, [NA RG 46 B56 F2-3?], Dec. 16, 1878, Kemble to Hoyt, [enclosed: Feb. 10, 1878, Bennett to Kemble], 1878,undated + + + + + + 100 + 121 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: S.D. - S.E. No. 325, “DOI GLO”, Map, [1878],undated + + + + + + 100 + 122 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: HR, 45th Congress, 3d Session, Ex. Doc. 1, Part 5: Report of the Sec. of Int., Vol. 1, Wash D.C., 1878,undated + + + + + + 100 + 123 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.S321-RI, Feb. 10, 1879, Davids, et al. to COIA, 1879,undated + + + + + + 100 + 124 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NA RG75 SC42.S702- RI, April 24, 1879, Stephens to Hoyt, [enclosed: Mar. 24, 1879, Petition of C.P.], 1879,undated + + + + + + 100 + 125 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.S734-RI, May 2, 1879, Stephens to COIA, [enclosed: May 1, 1879, Petition of CP], 1879,undated + + + + + + 100 + 126 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NA RG75 SC42.P478-RI, Slingerland, May 5, 1879, Miller et al. to Pound, 1879,undated + + + + + + 100 + 127 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD V6 N2, Shawano Co., WI, Courthouse, DB V14: 434-5, June 19, 1879, Beecher Deeds for Stockbridge Munsee Lands, 1879,undated + + + + + + 100 + 128 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM- NARG75 SC42.B762- RI, July 13, 1879, Bennett et al. to Schurz, 1879,undated + + + + + + 100 + 129 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885:MMLM-NARG75 SC42 [__ 524] - RI, July 19, 1879, Adams to Shurz, 1879,undated + + + + + + 100 + 130 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SD42.H1026-RI, July 21, 1879, Huebschmann to Schurz, 1879,undated + + + + + + 100 + 131 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SD42.B799-RI, July 25, 1879, Bennett to Brock, 1879,undated + + + + + + 100 + 132 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: ARCOIA 1879,undated + + + + + + 100 + 133 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.H92-RI, Jan. 14, 1880,undated + + + + + + 100 + 134 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42-RI, H. R., 46th Congress, 2d S, H. R. 3678, Jan. 20, 1880,undated + + + + + + 100 + 135 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.M1006-RI, April 18, 1880, McNiel to Schurz, 1880,undated + + + + + + 100 + 136 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD V2 N79, NA RG46 B56 F14 S712: F4, Dec. 16, 1880, Petition and Shawano Co. Board to Congress, 1880,undated + + + + + + 100 + 137 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM- NARG75 SC42-RI, Dec. 28, 1880, Bennett to Pound, 1880,undated + + + + + + 100 + 138 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD S.E. No. 419, Shawano County Register of Deeds Map, [1880a], 1880,undated + + + + + + 100 + 139 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: ARCOIA 1880,undated + + + + + + 100 + 140 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 LR1881-07, B4, F1260, Jan. 19, 1881, Stephen to COIA, [enclosed: Yoccom report], 1881 [Archivist Note: label says “Stephen” but the document is signed by Stephens],undated + + + + + + 100 + 141 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 LR 1881-07, B4, F1438, Jan. 21, 1881, Stephens to COIA, 1881,undated + + + + + + 100 + 142 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD S.E. No. 340, H.R. 46th Congress, 3d Session, Misc. Doc. No. 14, Feb. 21, 1881, COIA to H.R., 1881,undated + + + + + + 100 + 143 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 LR 1881-07, B6, F2477, Feb. 10, 1881, Stephens to COIA, 1881,undated + + + + + + 100 + 144 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.1029-RI, April 11, 1881, Mohmicmohwak to Sec. of War, 1881,undated + + + + + + 100 + 145 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.7791-RI, May 4, 1881, Slingerland et al. to Sec. Int., 1881,undated + + + + + + 100 + 146 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 LR 1881-07, B19, F8180, Stephens to COIA, [enclosed: May 10, 1881 Alamicks to COIA, May 6, 1881 Stephens to Slingerland, Apr. 26, 1881 Slingerland to Stephens, Slingerland to Priest, Apr. 21, 1881 Slingerland to Stephens], May 11, 1881,undated + + + + + + 100 + 147 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SD42.10257-RI, May 14, 1881, Turkey et al. to President US, 1881,undated + + + + + + 100 + 148 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 LR 1881-07, B29, F12182, Stephens to COIA, July 8, 1881, [enclosed: July 5, 1881 Slingerland et al. to COIA], 1881,undated + + + + + + 100 + 149 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 LR 1881-07, B31, F12955, July 18, 1881, Millers to Sawyer, 1881,undated + + + + + + 100 + 150 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: ARCOIA 1881,undated + + + + + + 100 + 151 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 LR 1881-07, F2270, Jan. 28, 1882, Adams to COIA, 1882,undated + + + + + + 100 + 152 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM- NARG75 SD42.5442- RI, March 16, 1882, Kemble to Kirkwood, 1882,undated + + + + + + 100 + 153 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD-V3, N80, NA RG45 B56 F14 S712: F4, Newspaper articles, Kemble to Kirkwood, etc., [March 16, 1882], 1882,undated + + + + + + 100 + 154 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD V1, N26, [NA RG46 B56 F2-3], March 16, 1882, Kemble to Kirkwood, 1882,undated + + + + + + 100 + 155 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.16994-R2, March 21, 1882, Affidavit of Hicks, et al., 1882,undated + + + + + + 100 + 156 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.8596-RI, April 28, 1882, Slingerland et al. to Sawyer, 1882,undated + + + + + + 100 + 157 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 LR1881-07, F11051, May 9, 1882, Miller to Pound, 1882,undated + + + + + + 100 + 158 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 LR 1881-07, F 10029, May 30, 1882, Miller to Price, 1882,undated + + + + + + 100 + 159 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SD42.11833-RI, June 19, 1882, Tousey to Doustee, 1882,undated + + + + + + 100 + 160 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42. 4020-R2, June 28, 1882, Affidavit of J. Jacobs, 1882,undated + + + + + + 100 + 161 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: Chicago Tribune, “Stockbridge Indians”, June 29, 1882,undated + + + + + + 100 + 162 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 LR 1881-07, F13816, July 28, 1882, Adams to COIA, 1882,undated + + + + + + 100 + 163 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.14579-RI, Aug. 8, 1882, Miller to Price, enclosed Petition, 1882,undated + + + + + + 100 + 164 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.16215-RI, Miller to Price, Aug. 31, 1882, [enclosed: I. P. petition, Feb. 27, 1882], 1882,undated + + + + + + 100 + 165 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 SC42- “Memos 1871-2”, [1882 +], 1882,undated + + + + + + 100 + 166 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: ARCOIA 1882,undated + + + + + + 100 + 167 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: 48th Congress, Session 1, Serial Set 2191, HED #1, pt. 5: 1,215, 340-341, 358-59, ARCOIA 1883, Oct. 10, 1883,undated + + + + + + 100 + 168 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NA RG75 SC42.1903-RI, Jan. 28, 1884, Andrew to COIA, 1884,undated + + + + + + 100 + 169 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42- RI, March 20, 1884, Bennett to COIA, 1884,undated + + + + + + 100 + 170 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.12546-RI, H.R. 48th Congress, 1st S, H.R., No. 1054, H.R. 48th Congress, 1st S, H.R. No. 2889, April 1, 1884,undated + + + + + + 100 + 171 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG46 B56 F14 S712: F4, HR Report 1054, April 1, 1884,undated + + + + + + 100 + 172 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 LR 1881-07, B189, F9247, May 12, 1884, [Aaron et al. to COIA], 1884,undated + + + + + + 100 + 173 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 LR 1881-07, B190 F9812-3, May 20, 1884, Turkey to COIA, 1884,undated + + + + + + 100 + 174 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 LR 1881-07, B192, F 10279, May 27, 1884, Aaron and Turkey to COIA, 1884,undated + + + + + + 100 + 175 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.16994-R2, H.R., 48th Congress, 1st S, Misc. Doc. 119, July 1, 1884,undated + + + + + + 100 + 176 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG 75 LR 1881-07, F15260, Aug. 4, 1884, Aaron et al. to Great Father, 1884,undated + + + + + + 100 + 177 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: NA RG75 LR 1881-07, F14968, Aug. 5, 1884, Andrews to COIA, [enclosed: Aug. 4, 1884], 1884, 1884,undated + + + + + + 100 + 178 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.23227-RI, Nov. 24, 1884, Memorial of Dzuds and others, 1884,undated + + + + + + 100 + 179 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NA RG75 SC42.12546-RI, Notes of E. J. Ellis, [1884], 1884,undated + + + + + + 100 + 180 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.31620-R2, Feb. 28, 1885, Memorial of J.C. Adams, 1885,undated + + + + + + 100 + 181 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.6527- RI, March 23, 1885, Adams to Lamar, 1885,undated + + + + + + 100 + 182 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.8653-RI, April 15, 1885, Davids to Allen’s, 1885,undated + + + + + + 100 + 183 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.9222- RI, Adams to Lamar, April 21, 1885, [enclosed: CP to Lamar, Apr. 17, 1885, Wescott et al. to Lamar, Apr. 21, 1885], 1885,undated + + + + + + 100 + 184 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.10751- RI, May 8, 1885, Turkey et al. to Lamar, 1885,undated + + + + + + 100 + 185 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.12546- RI, June 3, 1885, Bennett to Alkins, 1885,undated + + + + + + 100 + 186 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: SD. S. E. No. 341, July 8, 1885, Adkins to Andrews, 1885,undated + + + + + + 100 + 187 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.15860- RI, July 13, 1885, Andrews to COIA, 1885,undated + + + + + + 100 + 188 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.21962- RI, Sept. 9, 1885, Gardner to Miller, 1885,undated + + + + + + 100 + 189 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.25836-R2, Oct. 26, 1885, Hendricks to COIA, 1885,undated + + + + + + 100 + 190 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.27514-R2, Nov. 14, 1885, Robinson to Atkins, 1885,undated + + + + + + 100 + 191 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: ARCOIA 1885,undated + + + + + + 100 + 192 + Box 3 Stockbridge- Munsee, Calendar documents, 1872-1885: MMLM-NARG75 SC42.216-R2, Dec. 29, 1885, Bennet and Davids to Lamar, 1885,undated + + + + + + 101 + 1 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.31620-R2, Memorial of St. of WI, [1886], 1886,undated + + + + + + 101 + 2 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.4020-R2, Jenning to COIA, [enclosed: “Indian Ring”, Kemble to Kirkwood, March 16, 1882], Feb. 4, 1886,undated + + + + + + 101 + 3 + Box 4 Stockbridge- Munsee, 1886-1910: SD V2 N78, NA RG46 B56 F14 S712: F4, Jennings to COIA, Feb. 4, 1886,undated + + + + + + 101 + 4 + Box 4 Stockbridge- Munsee, 1886-1910: SD V2 N70, NA RG46 B56 F14 S712: F4, Statement by Sachem, etc. Feb. 4, 1886,undated + + + + + + 101 + 5 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.12388-R2, Chicks et al. to COIA, April 30, 1886,undated + + + + + + 101 + 6 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.31620-R2, Adkins to Sec. Int., May 6, 1886,undated + + + + + + 101 + 7 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.30872-R2, Adams to Atkin’s, July 19, 1886,undated + + + + + + 101 + 8 + Box 4 Stockbridge- Munsee, 1886-1910: SD V2 N45, NA RG46 B56 F14 S712, Memorandum by R.S. Gardner, Nov. 2, 1886,undated + + + + + + 101 + 9 + Box 4 Stockbridge- Munsee, 1886-1910: SD-V2, N63, NA RG46 B56 F14 S712: F4, Statement to Z. Miller, Nov. 8, 1886,undated + + + + + + 101 + 10 + Box 4 Stockbridge- Munsee, 1886-1910: SD-V2 N61, NA RG46 B56 F14 S712: F4, Statement to J. Wilber, Nov. 8, 1886,undated + + + + + + 101 + 11 + Box 4 Stockbridge- Munsee, 1886-1910: SD V2 N44, NA RG46 B56 F14 S712, Deposition of J. Doxtator, Nov. 8, 1886,undated + + + + + + 101 + 12 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42-31620-R2, Affidavit to J. Wilbur, Nov. 8, 1886,undated + + + + + + 101 + 13 + Box 4 Stockbridge- Munsee, 1886-1910: SD-V2 N72, NA RG46 B56 F14 S712: F4, Statement of D. Turkey, Nov. 9, 1886,undated + + + + + + 101 + 14 + Box 4 Stockbridge- Munsee, 1886-1910: SD V2 N73, NA RG46 B56 F14 S712: F4, Statement of G. Bennett, Nov. 9, 1886,undated + + + + + + 101 + 15 + Box 4 Stockbridge- Munsee, 1886-1910: SD-V2 N62, NA RG46 B56 F14 S712: F4, Memorandum of R.S. Gardner, [1886], Nov. 9, 1886,undated + + + + + + 101 + 16 + Box 4 Stockbridge- Munsee, 1886-1910: SD-V2, N65, NA RG46 B56 F14 S712: F4, Statement of J. Slingerland, Nov. 11, 1886,undated + + + + + + 101 + 17 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.31620-R2, Affidavit of E. Miller, Miller Map, Nov. 11, 1886,undated + + + + + + 101 + 18 + Box 4 Stockbridge- Munsee, 1886-1910: SD-V2, N66, NA RG46 B56 F14 S712: F4, Statement of E. Miller, Nov. 11, 1886,undated + + + + + + 101 + 19 + Box 4 Stockbridge- Munsee, 1886-1910: SD-V.1, N.5, NA RG46 B56 F2-3, Act of 1826 Sec. 2, Copy by J. C. Adams, 13 Nov 1886, Nov.13, 1886,undated + + + + + + 101 + 20 + Box 4 Stockbridge- Munsee, 1886-1910: SD-V.1, N.15, NA RG46 B56 F2-3, Deposition of John C. Adams, Nov. 15, 1886,undated + + + + + + 101 + 21 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.31620-R2, Gardner to Sec. Int., Nov. 16, 1886,undated + + + + + + 101 + 22 + Box 4 Stockbridge- Munsee, 1886-1910: SD-V2, N67, NA RG46 B56 F14 S712: F4, Turkey, Yoccum to R. Gardner, Nov. 16, 1886,undated + + + + + + 101 + 23 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.31620- R2, Davids et al. Lamar, Nov. 16, 1886,undated + + + + + + 101 + 24 + Box 4 Stockbridge- Munsee, 1886-1910: SD V2 N46, NA RG46 B56 F14 S712, Gardner to Green Bay Agent, Nov. 16, 1886,undated + + + + + + 101 + 25 + Box 4 Stockbridge- Munsee, 1886-1910: SD V3 N81, NA RG46 B56 F14 S712: r, Gardner to Sec. Int., Nov. 17, 1886,undated + + + + + + 101 + 26 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42- R2, Miller Petition, Nov. 23, 1887,undated + + + + + + 101 + 27 + Box 4 Stockbridge- Munsee, 1886-1910: SD S.E. No. 324, “DOI GLO, Map of WI” [1886] Map, 1886,undated + + + + + + 101 + 28 + Box 4 Stockbridge- Munsee, 1886-1910: ARCOIA 1886,undated + + + + + + 101 + 29 + Box 4 Stockbridge- Munsee, 1886-1910: NA RG75 SC42- [no file #], [1886-1907],undated + + + + + + 101 + 30 + Box 4 Stockbridge- Munsee, 1886-1910: General Allotment Act. Feb. 8, 1887. 24 Stats. 388-91, 1887,undated + + + + + + 101 + 31 + Box 4 Stockbridge- Munsee, 1886-1910: SD V1, N30, [NA RG46 B56 F2-3], Statements of J.C. Adams, J. Hendricks and others, Aug. 1887,undated + + + + + + 101 + 32 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.2967-R2, Affidavit of J. Jourdan, Aug. 20, 1887,undated + + + + + + 101 + 33 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.2967-R2, Affidavit of S. Gardner, Aug. 20, 1887,undated + + + + + + 101 + 34 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.2967-R2, Affidavit of J. Jacobs, Aug. 20, 1887,undated + + + + + + 101 + 35 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.2967-R2, Affidavit of John Hendricks, Aug. 20, 1887,undated + + + + + + 101 + 36 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.2967-R2, Affidavit of G. Bennett, Aug. 20, 1887,undated + + + + + + 101 + 37 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.2967-R2, Affidavits of S. Miller, Aug. 22, 1887,undated + + + + + + 101 + 38 + Box 4 Stockbridge- Munsee, 1886-1910: SD V2 N57, NA RG46 B56 F14 S712: F4, Statement of S. Miller, Aug. 22, 1887,undated + + + + + + 101 + 39 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG 75 SC42.2967-R2, Affidavits of Steve Gardner and G. Bennett, Aug. 23, 1887,undated + + + + + + 101 + 40 + Box 4 Stockbridge- Munsee, 1886-1910: SD V2 N56, NA RG46 B56 F14 S712: F4, Statement of Sam Miller, Aug. 23, 1887,undated + + + + + + 101 + 41 + Box 4 Stockbridge- Munsee, 1886-1910: SD V2 N55, NA RG46 B56 F14 S712: F4, Statement of G. Bennett, Aug. 23, 1887,undated + + + + + + 101 + 42 + Box 4 Stockbridge- Munsee, 1886-1910: SD V2 N54, NA RG46 B56 F14 S712: F4, Statement of S. Gardner, Aug. 23, 1887,undated + + + + + + 101 + 43 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.2967-R2, Notes and Briefs, Aug. 23, 1887,undated + + + + + + 101 + 44 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.2967-R2, Council w/ old Citizens Party, Aug. 24, 1887,undated + + + + + + 101 + 45 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.2967-R2, Aug. 25, 1887 (Folder 1 of 2),undated + + + + + + 101 + 46 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.2967-R2, Aug. 25, 1887 (Folder 2 of 2),undated + + + + + + 101 + 47 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.2967-R2, Aug. 26, 1887,undated + + + + + + 101 + 48 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.2967-R2, Affidavit of O. Andrews, Aug. 26, 1887,undated + + + + + + 101 + 49 + Box 4 Stockbridge- Munsee, 1886-1910: NA RG 46 B56 F14 S712: F4, Statement of O. Andrews, Aug. 26, 1887,undated + + + + + + 101 + 50 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.22831-R2, Parsons to Atkins, Aug. 27, 1887,undated + + + + + + 101 + 51 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.2967-R2, Lists of IP and CP parties, Aug. 1887,undated + + + + + + 101 + 52 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42-R2, Election Notes, Dec. 28, 1887,undated + + + + + + 101 + 53 + Box 4 Stockbridge- Munsee, 1886-1910: SD V2 N58, NA RG46 B56 F14 S712: F4, Statement of, [1887?],undated + + + + + + 101 + 54 + Box 4 Stockbridge- Munsee, 1886-1910: ARCOIA 1887,undated + + + + + + 101 + 55 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.2967-R2, Parsons to Atkins, Jan. 16, 1888,undated + + + + + + 101 + 56 + Box 4 Stockbridge- Munsee, 1886-1910: SD V.1, N.22, [NA RG 46 B56 F2-3], Senate Bill 1830, Feb. 1, 1888,undated + + + + + + 101 + 57 + Box 4 Stockbridge- Munsee, 1886-1910: SD V1, N21, NA RG 46 B56 F 2-3, Senate Bill S.1881, Feb. 6, 1888,undated + + + + + + 101 + 58 + Box 4 Stockbridge- Munsee, 1886-1910: [NA RG46 B56 F14 S712], Atkins to Sec. Int., April 27, 1888,undated + + + + + + 101 + 59 + Box 4 Stockbridge- Munsee, 1886-1910: SD V2 N43, NA RG 46 Box 56 F14 S712, Gardner on Konkapot Allotment, April 30, 1888,undated + + + + + + 101 + 60 + Box 4 Stockbridge- Munsee, 1886-1910: SD V2 N52, [NA RG 46 B56 F14 S712?], date received [April 30, 1888],undated + + + + + + 101 + 61 + Box 4 Stockbridge- Munsee, 1886-1910: SD V1, N27, [NA RG 46 B56 F 2-3], Citizen Party Petition to Congress, April 30, 1888,undated + + + + + + 101 + 62 + Box 4 Stockbridge- Munsee, 1886-1910: SD. V1, N. 16, [NA RG 46 B56 F2-3?], Sec. Int. to US Senate Committee, May 1, 1888,undated + + + + + + 101 + 63 + Box 4 Stockbridge- Munsee, 1886-1910: NA RG 46 B56 F2-3, [NA RG 46 B56 F2-3?], Senate Report, Sept. 20, 1888,undated + + + + + + 101 + 64 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.25586-R2, S, 50th Congress, 1st Session, S.1830, Senate 50th Congress, 1st Session, S.1881, Sept. 20, 1888,undated + + + + + + 101 + 65 + Box 4 Stockbridge- Munsee, 1886-1910: SD S.E. No. 343, 50th Congress, 1st Session, Report No. 2262, H.R., Sept. 20, 1888,undated + + + + + + 101 + 66 + Box 4 Stockbridge- Munsee, 1886-1910: ARCOIA, Dec. 3, 1888,undated + + + + + + 101 + 67 + Box 4 Stockbridge- Munsee, 1886-1910: SD V1, N28, [NA RG 46 B56 F2-3], List of members… prohibited, [1888?],undated + + + + + + 101 + 68 + Box 4 Stockbridge- Munsee, 1886-1910: SD-V1, N. 29, [NA RG46 B56 F2-3?], List of Members, 1888?],undated + + + + + + 101 + 69 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.16182-R2, Jennings to COIA, June 15, 1889,undated + + + + + + 101 + 70 + Box 4 Stockbridge- Munsee, 1886-1910: SD V1, N19, [NA RG 46 B56 F2-3?], Senate Bill 712, Dec. 9, 1889,undated + + + + + + 101 + 71 + Box 4 Stockbridge- Munsee, 1886-1910: SD- V.1, N.20, [NA RG46 B56 F2-3?], Senate Bill S.1251, Dec. 16, 1889,undated + + + + + + 101 + 72 + Box 4 Stockbridge- Munsee, 1886-1910: ARCOIA 1889,undated + + + + + + 101 + 73 + Box 4 Stockbridge- Munsee, 1886-1910: SD-V2 N60, NA RG46 B56 F14 S712: F4, Petition of Citizens Party, Jan. 9, 1890,undated + + + + + + 101 + 74 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.16994-R2, McCord and Sawyer to Sec. Int., Feb. 5, 1890,undated + + + + + + 101 + 75 + Box 4 Stockbridge- Munsee, 1886-1910: H.R., 51st Congress, 1st Session, Report No. 1856, May 2, 1890,undated + + + + + + 101 + 76 + Box 4 Stockbridge- Munsee, 1886-1910: ARCOIA, Aug. 23, 1890, 1890,undated + + + + + + 101 + 77 + Box 4 Stockbridge- Munsee, 1886-1910: SD. S.E. No. 345, Senate, 51 Congress ___, Session ___, Report No. ___, Sept. 12, 1890,undated + + + + + + 101 + 78 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42-RI, [Dec. 16, 1890?],undated + + + + + + 101 + 79 + Box 4 Stockbridge- Munsee, 1886-1910: SD S.E. No. 346-7, Congressional Record, H.R.: 2934 __, Feb. 19, 1891,undated + + + + + + 101 + 80 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.7268-R2, Morgan to Kelsey, April 27, 1891,undated + + + + + + 101 + 81 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.17107-R2, Kelsey to COIA, May 6, 1891,undated + + + + + + 101 + 82 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.21077-R2, Adams to COIA, June 8, 1891,undated + + + + + + 101 + 83 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.14660-RI, Noble to COIA, April 20, 1891,undated + + + + + + 101 + 84 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.14660-R2, Miller to Noble, April 20, 1891,undated + + + + + + 101 + 85 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.7268-R2, Belt to Kelsey, Aug. 31, 1891,undated + + + + + + 101 + 86 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.36419-R2, Lynch to Kelsey, Oct. 1, 1891,undated + + + + + + 101 + 87 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.36419-R2, Kelsey to Lynch, Oct. 5, 1891,undated + + + + + + 101 + 88 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.36419-R2, Lynch to Morgan, Oct. 6, 1891,undated + + + + + + 101 + 89 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.41529-R2, Lynch to Morgan, Nov. 16, 1891,undated + + + + + + 101 + 90 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.44066-R2, Lynch to COIA, Dec. 11, 1891,undated + + + + + + 101 + 91 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.3868-R2, Testimony of Jn. Yoccum, Dec. 12, 1891,undated + + + + + + 101 + 92 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.3868-R2, Testimony of G. Bennett, Dec. 16, 1891,undated + + + + + + 101 + 93 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.42515-R2, Steve and Jerry Gardner to Noble, [1891],undated + + + + + + 101 + 94 + Box 4 Stockbridge- Munsee, 1886-1910: ARCOIA, 1891,undated + + + + + + 101 + 95 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.3868-R2, Adams petition, 1892,undated + + + + + + 101 + 96 + Box 4 Stockbridge- Munsee, 1886-1910: SD V2 N42, [NA RG46 B56 F2-3], HR 3594, Jan. 13, 1892,undated + + + + + + 101 + 97 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.3868-R2, Kelsey to COIA, Jan. 29, 1892,undated + + + + + + 101 + 98 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.19136-R2, Affidavit of J.C. Adams, May 23, 1892,undated + + + + + + 101 + 99 + Box 4 Stockbridge- Munsee, 1886-1910: SD S.E. No. 348, Senate, 52d Congress, 1st Session, Mis. Doc. No. 226, Aug. 2, 1892,undated + + + + + + 101 + 100 + Box 4 Stockbridge- Munsee, 1886-1910: SD V3, N82, NA RG46 B59 F13: F1-2, Committee Test. May 31 and June 1, 1892, Aug. 2, 1892,undated + + + + + + 101 + 101 + Box 4 Stockbridge- Munsee, 1886-1910: ARCOIA, Aug. 31, 1892, 1892,undated + + + + + + 101 + 102 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.40083-R3, Senate, 52d C, 2d S, Mis. Doc. 54, Feb. 15, 1893,undated + + + + + + 101 + 103 + Box 4 Stockbridge- Munsee, 1886-1910: SD V2 N41, [NA RG46 B56 F2-3], Senate Misc. Doc. 54, Feb. 15, 1893,undated + + + + + + 101 + 104 + Box 4 Stockbridge- Munsee, 1886-1910: Act of March 3, 1893- Kappler, 27 Stat 744, 1893,undated + + + + + + 101 + 105 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG 75 SC42.8293-R2, Colman to COIA, March 4, 1893,undated + + + + + + 101 + 106 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG 75 SC42.10870-R2, Colman to COIA, March 23, 1893,undated + + + + + + 101 + 107 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG 75 SC42.11216-R2, Turkey to Smith, March 24, 1893,undated + + + + + + 101 + 108 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG 75 SC42.19938-R2, Miller to Sec. Int., May 15, 1893,undated + + + + + + 101 + 109 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG 75 SC42-R2, Smith to Painter, Sept. 11, 1893,undated + + + + + + 101 + 110 + Box 4 Stockbridge- Munsee, 1886-1910: ARCOIA, Sept. 16, 1893,undated + + + + + + 101 + 111 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.36841-R2, Painter to Smith, Sept. 30, 1893,undated + + + + + + 101 + 112 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.39915-R2, Lynch to COIA, [enclosed: Sept. 29, 1893- Petition], Oct. 26, 1893,undated + + + + + + 101 + 113 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.20141-R2, May 24, 1894,undated + + + + + + 101 + 114 + Box 4 Stockbridge- Munsee, 1886-1910: SD-V.1, N. 1, F. Armstrong (COIA) to H. Smith (S.I.), [enclosed: June 12, 1894, Smith to Armstrong], May 28, 1894,undated + + + + + + 101 + 115 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.29125-R2, enclosed Petitions, July 30, 1894,undated + + + + + + 101 + 116 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.32112-R2, Jenkins to Browning, Aug. 20, 1894,undated + + + + + + 101 + 117 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.40062-R2, Hendricks to COIA, Oct. 4, 1894,undated + + + + + + 101 + 118 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.46720-R2, Bennett to COIA, Nov. 24, 1894,undated + + + + + + 101 + 119 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.48428-R2, Savage to COIA, Dec. 8, 1894,undated + + + + + + 101 + 120 + Box 4 Stockbridge- Munsee, 1886-1910: SD V5 N9, [Files US Attorney, WI Corr. On Indian Matters, 1894-1898], “Red Cliff Fisting,” 1894,undated + + + + + + 101 + 121 + Box 4 Stockbridge- Munsee, 1886-1910: ARCOIA, 1894,undated + + + + + + 101 + 121 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.4591-R3, Bennett to Browning, Jan. 24, 1895,undated + + + + + + 101 + 122 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.4911-R3, Savage to COIA, Jan. 28, 1895,undated + + + + + + 101 + 123 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.21244-R3, Smith to COIA, May 15, 1895,undated + + + + + + 101 + 124 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.23817-R3, Savage to COIA, June 4, 1895,undated + + + + + + 101 + 125 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.31024-R3, Savage to COIA, July 22, 1895,undated + + + + + + 101 + 126 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.39133-R3, Butler to Browning, Sept. 19, 1895,undated + + + + + + 101 + 127 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.40083, [enclosures], Sept. 25, 1895,undated + + + + + + 101 + 128 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.40082-R3, Savage to COIA, Sept. 27, 1895,undated + + + + + + 101 + 129 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.40083-R3, Savage to Browning, [enclosed: Hendricks et al. to Browning], Oct. 21, 1895,undated + + + + + + 101 + 130 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.49236-R3, to COIA, Dec. 6, 1895,undated + + + + + + 101 + 131 + Box 4 Stockbridge- Munsee, 1886-1910: ARCOIA,, 1895,undated + + + + + + 101 + 132 + Box 4 Stockbridge- Munsee, 1886-1910: SD S.E. No. 323, “DO1 GLO Map of WI,” 1895 Map, 1895,undated + + + + + + 101 + 133 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.5312-R3, Hendricks et al. to Browning, Jan. 18, 1896,undated + + + + + + 101 + 134 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.11810-R3, Adams to COIA, March 26, 1896,undated + + + + + + 101 + 135 + Box 4 Stockbridge- Munsee, 1886-1910: MMLM-NARG75 SC42.28780-R3, Lynch to Browning, July 25, 1896,undated + + + + + + 101 + 136 + Box 4 Stockbridge- Munsee, 1886-1910: ARCOIA, 1896,undated + + + + + + 101 + 137 + Box 4 Stockbridge- Munsee, 1886-1910: SD S.E. No. 350, NA?, Green Bay Agency?, COIA to Savage, Oct. 9, 1897,undated + + + + + + 101 + 138 + Box 4 Stockbridge- Munsee, 1886-1910: ARCOIA, 1897,undated + + + + + + 101 + 139 + Box 4 Stockbridge- Munsee, 1886-1910: SD S.E. No. 349, [Jorurs?] to Sec. Int., March 17, 1898,undated + + + + + + 101 + 140 + Box 4 Stockbridge- Munsee, 1886-1910: 55th Congress, 3d Session, Doc. __ __, Annual Report, Dept. Interior, Ind. Affairs, G.B. Agent to COIA, Aug. 1898,undated + + + + + + 101 + 141 + Box 4 Stockbridge- Munsee, 1886-1910: ARCOIA, Sept. 26, 1898,undated + + + + + + 101 + 142 + Box 4 Stockbridge- Munsee, 1886-1910: SD S.E. No. 351, NA RG75- Letters Sent- Land- LB453, 174, V. 227, Jones to GLO, Oct. 1, 1900,undated + + + + + + 101 + 143 + Box 4 Stockbridge- Munsee, 1886-1910: SD SE No. 352, NA? _________, Nov. 15, 1900,undated + + + + + + 101 + 144 + Box 4 Stockbridge- Munsee, 1886-1910: ARCOIA, 1900,undated + + + + + + 101 + 145 + Box 4 Stockbridge- Munsee, 1886-1910: SD S.E. No. 322, Royce, 18th Annual Report, B. A. E., 1900, Map, 1900,undated + + + + + + 101 + 146 + Box 4 Stockbridge- Munsee, 1886-1910: SD S.E. No. 354, NA? , [land 21357.1901], COIA to William D., April 26, 1901,undated + + + + + + 101 + 147 + Box 4 Stockbridge- Munsee, 1886-1910: NA RG 21, US Dept. of Justice, [Files of US Attorney WI], OIA Circular L, Case files 1900-1902, July 23, 1901,undated + + + + + + 101 + 148 + Box 4 Stockbridge- Munsee, 1886-1910: SD S.E. No. 331, H. R., 57th Congress, 1st Session, Doc. No. 5, ARCOIA- G. B. Agency, Sept. 31, 1901,undated + + + + + + 101 + 149 + Box 4 Stockbridge- Munsee, 1886-1910: SD V3 N85, NA RG 46, B. 6, S. 335, Letters, Jan. 2, 1902,undated + + + + + + 101 + 150 + Box 4 Stockbridge- Munsee, 1886-1910: SD S.E. No. 356, Green Bay Agency Report, Sept. 29, 1902,undated + + + + + + 101 + 151 + Box 4 Stockbridge- Munsee, 1886-1910: ARCOIA, 1902,undated + + + + + + 101 + 151 + Box 4 Stockbridge- Munsee, 1886-1910: SD V5 N12, ACOIA to Farr, March 25, 1903,undated + + + + + + 101 + 152 + Box 4 Stockbridge- Munsee, 1886-1910: ARCOIA, 1903, Green Bay Agency Report, Aug. 17, 1903,undated + + + + + + 101 + 153 + Box 4 Stockbridge- Munsee, 1886-1910: ARCOIA, HR, 57 Congress, 2d Session, Doc. #5, GPO, 1903,undated + + + + + + 101 + 154 + Box 4 Stockbridge- Munsee, 1886-1910: SD V5 N12, COIA to Buchanan, Dec. 17, 1903,undated + + + + + + 101 + 155 + Box 4 Stockbridge- Munsee, 1886-1910: SD S.E. No. 331, 58th Congress, 2d Session, S.R. No. 173, Jan. 7, 1904,undated + + + + + + 101 + 156 + Box 4 Stockbridge- Munsee, 1886-1910: H. R. Hearing on S.335, Govt. Printing Office, Wash. D.C., Feb. 29, 1904,undated + + + + + + 101 + 157 + Box 4 Stockbridge- Munsee, 1886-1910: SD S.E. No. 359, H.R. 58th Congress, 2d Session, R. No. 1420, March 7, 1904,undated + + + + + + 101 + 158 + Box 4 Stockbridge- Munsee, 1886-1910: SD S.E. No. 353, H.R., 53rd Congress, 2nd Session, H.R. No. 1420, March 7, 1904,undated + + + + + + 101 + 159 + Box 4 Stockbridge- Munsee, 1886-1910: NA RG75 Letters Sent- Land- LB663, P. 49; V. 332, COIA to Butlerfield, March 21, 1904,undated + + + + + + 101 + 160 + Box 4 Stockbridge- Munsee, 1886-1910: SD V5 N12, ACOIA to Freeman, May 13, 1904,undated + + + + + + 101 + 161 + Box 4 Stockbridge- Munsee, 1886-1910: SD V5 N10, [Files US Attorney, WI], Red Cliff Bad River Correspondence, 1904,undated + + + + + + 101 + 162 + Box 4 Stockbridge- Munsee, 1886-1910: ARCOIA, 1905,undated + + + + + + 101 + 163 + Box 4 Stockbridge- Munsee, 1886-1910: SD V7, NA, Chief Clerk to Werner, Feb. 19, 1906,undated + + + + + + 101 + 164 + Box 4 Stockbridge- Munsee, 1886-1910: Burke Act, 34 Stats. 182-83, May 8, 1906,undated + + + + + + 101 + 165 + Box 4 Stockbridge- Munsee, 1886-1910: Act of June 21, 1906, Kappler, 27 Stat 745, 1906,undated + + + + + + 101 + 166 + Box 4 Stockbridge- Munsee, 1886-1910: ARCOIA, Sept. 30, 1906,undated + + + + + + 101 + 167 + Box 4 Stockbridge- Munsee, 1886-1910: SD V5 N12, ACOIA to G. B. Agency, Dec. 20, 1906,undated + + + + + + 101 + 168 + Box 4 Stockbridge- Munsee, 1886-1910: SD V7, NA to COIA, July 29, 1907,undated + + + + + + 101 + 169 + Box 4 Stockbridge- Munsee, 1886-1910: SD V7, NA Waugh to (COIA), Aug. 25, 1907,undated + + + + + + 101 + 170 + Box 4 Stockbridge- Munsee, 1886-1910: SD V7, NA Waugh to COIA, Sept. 4, 1907,undated + + + + + + 101 + 171 + Box 4 Stockbridge- Munsee, 1886-1910: SD S.E. No. 321, Map, “Map of the Survey of the various Allotments…” Sept. 14, 1907,undated + + + + + + 101 + 172 + Box 4 Stockbridge- Munsee, 1886-1910: SD V7, NA Waugh to COIA, Dec. 9, 1907,undated + + + + + + 101 + 173 + Box 4 Stockbridge- Munsee, 1886-1910: SD V7, NA Land 1860-1908-313-Kenostra, Jan. 9, 1908,undated + + + + + + 101 + 174 + Box 4 Stockbridge- Munsee, 1886-1910: SD V7, NA Werner to COIA, Jan. 13, 1908,undated + + + + + + 101 + 175 + Box 4 Stockbridge- Munsee, 1886-1910: SD V7, NA Land 8436-1908-313-Kenosha, Morse to Leupp, Feb. 4, 1908,undated + + + + + + 101 + 176 + Box 4 Stockbridge- Munsee, 1886-1910: NA Land 8436-1908-313-Kenosha, COIA to Morse, Feb. 8, 1908,undated + + + + + + 101 + 177 + Box 4 Stockbridge- Munsee, 1886-1910: SD V7, NA Werner to Conser, Feb. 27, 1908,undated + + + + + + 101 + 178 + Box 4 Stockbridge- Munsee, 1886-1910: ARCOIA, Sept. 30, 1908,undated + + + + + + 101 + 179 + Box 4 Stockbridge- Munsee, 1886-1910: SD S.E. No. 320, “received OIA 11/21/1908, [1908],undated + + + + + + 101 + 180 + Box 4 Stockbridge- Munsee, 1886-1910: [Files US Attorney, WI Corr. on Indian Matters, 1906-08], “Trust Status Litigation”, [1906-08],undated + + + + + + 101 + 181 + Box 4 Stockbridge- Munsee, 1886-1910: ARCOIA, Sept. 15, 1909,undated + + + + + + 101 + 182 + Box 4 Stockbridge- Munsee, 1886-1910: SD V7, NA CCF 78952-1909-313 Keshena, Comm. To Sec. Int., Oct. 1, 1909,undated + + + + + + 101 + 183 + Box 4 Stockbridge- Munsee, 1886-1910: SD V7, NA Holcombe to Valintine, Oct. 1, 1909,undated + + + + + + 101 + 184 + Box 4 Stockbridge- Munsee, 1886-1910: SD V7, NA 76915-1907-Kenosha, Dec. 10, 1909,undated + + + + + + 101 + 185 + Box 4 Stockbridge- Munsee, 1886-1910: NARGLetters Received 45815, Tousey to COIA, June 1, 1910,undated + + + + + + 101 + 186 + Box 4 Stockbridge- Munsee, 1886-1910: CCF 49832-1910; Keshena.310.1907-1939. to President, June 8, 1910,undated + + + + + + 101 + 187 + Box 4 Stockbridge- Munsee, 1886-1910: SD S.E. No. 361, NA? Hauke to Tousey, June 9, 1910,undated + + + + + + 101 + 188 + Box 4 Stockbridge- Munsee, 1886-1910: SD S.E. No. 319, “Menominee and Stockbridge Reservation…”, Map, 1910,undated + + + + + + 101 + 189 + Box 4 Stockbridge- Munsee, 1886-1910: S.D. D. E. No. 121, MAP, 1910,undated + + + + + + 101 + 190 + Box 4 Stockbridge- Munsee, 1886-1910: SD V5 N14, Hearings COIA On Senate Resolution No. 263 Wash. DC: Gov’t Printing Office, “Condition of Ind. Aff. In WI”, 1910,undated + + + + + + 101 + 191 + Box 4 Stockbridge- Munsee, 1886-1910: SD-V4, N. 2, NA RG21, US DC, Milwaukee, Criminal Docket Book, State vs. Gardner and Reid,undated + + + + + + 102 + 1 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V5 N16, NA? Jan. 10, 1911, Henning to Abbott, 1911,undated + + + + + + 102 + 2 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V5 N16, NA? Jan. 12, 1911, State vs. Gardner, 1911,undated + + + + + + 102 + 3 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: NA CCF 2709- 1911-Keshera 170, Jan. 24, 1911, Abbot to Herring, 1911,undated + + + + + + 102 + 4 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD, Samuel Brushel to COIA, NA [33164-1911-Kenosha 310]?, April 13, 1911, to COIA, 1911,undated + + + + + + 102 + 5 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA May 3, 1911, Supt. to COIA, 1911,undated + + + + + + 102 + 6 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA May 20, 1911, Hauke to Brushel, 1911,undated + + + + + + 102 + 7 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA July 17, 1911,undated + + + + + + 102 + 8 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: ARCOIA Oct. 2, 1911,undated + + + + + + 102 + 9 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA Land Contracts 13357-1911-053-Kenosha, Oct. 15, 1911, Hauke to Nicholson, 1911,undated + + + + + + 102 + 10 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 318, LC; Geo. and Map. Division, Menominee and Stockbridge Indian Reservations, MAP, 1911,undated + + + + + + 102 + 11 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA Feb. 16, 1912, Supt. to COIA, 1912,undated + + + + + + 102 + 12 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA Sept. 25, 1912, Notice- Minutes, 1912,undated + + + + + + 102 + 13 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA Land Contracts 13357-1911-053-Kenosha, Nov. 18, 1912, Abbott to Kennedy, 1912,undated + + + + + + 102 + 14 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: ARCOIA, 1912,undated + + + + + + 102 + 15 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money”, NA RG75 April 11, 1913, Hauke to Nicholson, 1913,undated + + + + + + 102 + 16 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No land-Money,” NA RG75 July 16, 1913, Bowman to Sir, 1913,undated + + + + + + 102 + 17 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75 July 24, 1913,undated + + + + + + 102 + 18 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75 July 24, 1913,undated + + + + + + 102 + 19 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75, July 28, 1913, Bowman to Marble, 1913,undated + + + + + + 102 + 20 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75 Aug. 5, 1913, A. Supt to COIA, 1913,undated + + + + + + 102 + 21 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75, Aug. 7, 1913, Bennett to Agt., 1913,undated + + + + + + 102 + 22 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75 Aug. 21, 1913, A Supt to Bennett, 1913,undated + + + + + + 102 + 23 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75 Aug. 25, 1913, Bennett to Marble, 1913,undated + + + + + + 102 + 24 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75 Aug. 26, 1913, A. Supt to Bennette, 1913,undated + + + + + + 102 + 25 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75 Oct. 31, 1913, Hauke to Nicholson, 1913,undated + + + + + + 102 + 26 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75 Nov. 5, 1913, Asst. Supt. to COIA, 1913,undated + + + + + + 102 + 27 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 317, LC, Geo. and Map, Shawano Co., MAP, 1913,undated + + + + + + 102 + 28 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: ARCOIA, 1913,undated + + + + + + 102 + 29 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75 Jan. 20, 1914, Hauke to Sec. Int., 1914,undated + + + + + + 102 + 30 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7 NA, April 23, 1914, Jones to Stephens, 1914,undated + + + + + + 102 + 31 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75 Hauke to Sec. Int., April 30, 1914,undated + + + + + + 102 + 32 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75, May 20, 1914, Eberlein/ Larson to COIA, 1914,undated + + + + + + 102 + 33 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75, May 25, 1914, Meritt to Nicholson, 1914,undated + + + + + + 102 + 34 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75, May 29, 1914, A. Supt to COIA, 1914,undated + + + + + + 102 + 35 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944:SD V4 N3 “No Land-Money,” NA RG75, June 2, 1914, Merritt to Nicholson, 1914 ,undated + + + + + + 102 + 36 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75, June 4, 1914, A. Supt. to COIA, 1914 (1 of 3),undated + + + + + + 102 + 37 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75, June 4, 1914, A. Supt. to COIA, 1914 (2 of 3),undated + + + + + + 102 + 38 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No land money,” NA RG75 June 4, 1914, A. Supt to COIA, 1914 (3 of 3),undated + + + + + + 102 + 39 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75 June 9, 1914, Hauke to Nicholson, 1914,undated + + + + + + 102 + 40 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7 NA June 19, 1914, Browne to COIA, 1914,undated + + + + + + 102 + 41 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75, June 22, 1914, A Supt to COIA, 1914,undated + + + + + + 102 + 42 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75, June 27, 1914, A Supt to Gardner, 1914,undated + + + + + + 102 + 43 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75 June 27, 1914, Hauke to Nicholson, 1914,undated + + + + + + 102 + 44 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75 July 1, 1914,undated + + + + + + 102 + 45 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75 July 13, 1914, RE: Smith, 1914,undated + + + + + + 102 + 46 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N2 “No Land-Money,” NA RG75, July 18, 1914, Hauke to Wage, 1914,undated + + + + + + 102 + 47 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75 July 28, 1914, Smith to Marble, 1914,undated + + + + + + 102 + 48 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75 Aug. 14, 1914, Hauke to Smith, 1914,undated + + + + + + 102 + 49 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N3 “No Land-Money,” NA RG75 Oct. 1914, Hauke to Wage, 1914,undated + + + + + + 102 + 50 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: ARCOIA, 1914,undated + + + + + + 102 + 51 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD-V4 N1, NA RG21, USDC- Milwaukee- CDB, May 5, 1915, State vs. Anderson, 1915,undated + + + + + + 102 + 52 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: ARCOIA, 1915,undated + + + + + + 102 + 53 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD D.E. No. 129, NA? Kenosha Agency Annual Report, 1915,undated + + + + + + 102 + 54 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: Kappler (1929), v. 4: 86-89, 6th Congress, Sess. 1, Chap. 125, May 18, 1916,undated + + + + + + 102 + 55 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V6 N11, Shawano Co., WI, Courthouse? State vs. Gardner and Reed, Aug. 13, 1916,undated + + + + + + 102 + 56 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: CCF 95218-1916 Keshena, Aug. 30, 1916, Merritt to Sec. Int., 1916,undated + + + + + + 102 + 57 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA Sept. 9, 1916, Merritt to Nicholson, 1916,undated + + + + + + 102 + 58 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7 NA, Oct. 4, 1916, to COIA, 1916,undated + + + + + + 102 + 59 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7 NA, Oct. 12, 1916, Meritt to Nicholson, 1916,undated + + + + + + 102 + 60 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7 NA, Oct. 12, 1916,undated + + + + + + 102 + 61 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7 NA, Memorandum, Oct. 27, 1916,undated + + + + + + 102 + 62 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD D.E. No. 132, 64th Congress, Session 1, Ch. 125, 1916,undated + + + + + + 102 + 63 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD D.E. No. 129, NA? Kenosha Agency Annual Report, 1917,undated + + + + + + 102 + 64 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 362, NA Land-Allot, Nov. 11, 1918, Hauke to Miller, 1918,undated + + + + + + 102 + 65 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: ARCOIA, 1918,undated + + + + + + 102 + 66 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA Jan. 7, 1919, Alley to COIA, 1919,undated + + + + + + 102 + 67 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA Jan. 21, 1919, Merritt to Alley, 1919,undated + + + + + + 102 + 68 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: CCF 44957-1919-313, Keshena, May 1, 1919, Quinney to COIA, 1919,undated + + + + + + 102 + 69 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: CCF 38751-1922 Keshena, May 3, 1922, Mohawk to COIA, 1922,undated + + + + + + 102 + 70 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA May 15, 1919, Hauke to Quinney, 1919,undated + + + + + + 102 + 71 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA _May 22, 1919, Alley to COIA, 1919,undated + + + + + + 102 + 72 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA __June 9, 1919, Alley to COIA, 1919,undated + + + + + + 102 + 73 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA June 12, 1919, Hauke to Doxtater, 1919,undated + + + + + + 102 + 74 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA June 20, 1919, Hauke to Allen, 1919,undated + + + + + + 102 + 75 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: ARCOIA, 1919,undated + + + + + + 102 + 76 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA Ed-L.O.-33632-1920, April 29, 1920, Merett to Allen, 1920,undated + + + + + + 102 + 77 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA, Ed-L.O.-33632-1920, April 29, 1920, Meritt to Christjohn, 1920,undated + + + + + + 102 + 78 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA Ed-L.O.-33632-1920, May 1, 1920, Alley to COIA, 1920,undated + + + + + + 102 + 79 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA _Ed-L.O.-33632-1920, Hauke to Christjohn, May 19, 1920,undated + + + + + + 102 + 80 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD D.E. No. 129, NA? Kenosha Agency Report, P. 1, 1920,undated + + + + + + 102 + 81 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 362, NA (?), April 1, 1921, CPL to Miller, 1921,undated + + + + + + 102 + 82 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 362, NA, Land Allott, April 29, 1921, Meritt to Miller, 1921,undated + + + + + + 102 + 83 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA Statement of Fiscal Affairs, June 30, 1921,undated + + + + + + 102 + 84 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA, - 1921-313-Kenosha, Aug. 24, 1921, to Burke, 1921,undated + + + + + + 102 + 85 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA, -1921-313-Kenosha, Sept. 1, 1921, Meritt to 1921,undated + + + + + + 102 + 86 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V3 N88, [Court of Claims- Doc #D552], Contract docs., Nov. 26, 1921,undated + + + + + + 102 + 87 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD D.E. No. 129, NA, Kenosha Agency Report, 1921,undated + + + + + + 102 + 88 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: ARCOIA, 1921,undated + + + + + + 102 + 89 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA Feb. 13, 1922, Browne to Burke, 1922,undated + + + + + + 102 + 90 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA, Ed-Ind 38751-1921- Browne to Meritt, May 11, 1922,undated + + + + + + 102 + 91 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA, Ed-Ind 38751-1922- May 13, 1922, Meritt to Browne, 1922,undated + + + + + + 102 + 92 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7 NA May 20, 1922, Mohawk to COIA, 1922,undated + + + + + + 102 + 93 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA? _ Statement of Fiscal Affairs …, June 30, 1922,undated + + + + + + 102 + 94 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA June 1922, Meritt to Mohawk, 1922,undated + + + + + + 102 + 95 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: ARCOIA, 1922,undated + + + + + + 102 + 96 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 316 [1923], MAP, 1923,undated + + + + + + 102 + 97 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: ARCOIA, 1923,undated + + + + + + 102 + 98 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA Senate, 68th Congress, 1st Session, S.311, April 10, 1924,undated + + + + + + 102 + 99 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V3 N87, [Court of Claims…], Act N.257, 68th Congress, June 7, 1924,undated + + + + + + 102 + 100 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V.3 N100 “Oneida,” June 8, 1924, Christy to COIA, 1924,undated + + + + + + 102 + 101 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD-V3, N86, [Court of Claims No. D-552], Stockbridge vs. US, Aug. 6, 1924,undated + + + + + + 102 + 102 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD. D.E. No. 129, NA? Kenosha Agency Report, 1924,undated + + + + + + 102 + 103 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: ARCOIA, 1924,undated + + + + + + 102 + 104 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V6 N9, BIA-Minneapolis- CF No 936-1973-Gt. Lks – 318, Jan. 10, 1925, Hauke to Kindra, 1925,undated + + + + + + 102 + 105 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA June 15, 1925, Allen to COIA, 1925,undated + + + + + + 102 + 106 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA July 2, 1925, Hauke to Dortator, 1925,undated + + + + + + 102 + 107 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD D.E. No. 129, NA: Kenosha Agency Report, 1925,undated + + + + + + 102 + 108 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: ARCOIA, 1925,undated + + + + + + 102 + 109 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V3 N89, [Court of Claims Doc # D552], Finding of Fact, Jan. 26, 1926,undated + + + + + + 102 + 110 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA April 15, 1926, Christjohn to COIA, 1926,undated + + + + + + 102 + 111 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V3 N90, Court of Claims Doc # F202, Petition Stockbridge vs. US, June 22, 1926,undated + + + + + + 102 + 112 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA Oct. 18, 1926, Doxtator to Sec. Int., 1926,undated + + + + + + 102 + 113 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA Nov. 3, 1926, Meritt to Supt., 1926,undated + + + + + + 102 + 114 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA Nov. 3, 1926, Meritt to Doxtator, 1926,undated + + + + + + 102 + 115 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA Nov. 11, 1926, Donner to Doxtator, 1926,undated + + + + + + 102 + 116 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: ARCOIA, 1926,undated + + + + + + 102 + 117 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V3 N91, [Court of Claims Doc #F202], Court Decision, March 7, 1927,undated + + + + + + 102 + 118 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: ARCOIA, 1927,undated + + + + + + 102 + 119 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: ARCOIA, 1928,undated + + + + + + 102 + 120 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V6 N9, Senate, 70th Congress, 2d Session, S. D. 263, Feb. 25, 1929,undated + + + + + + 102 + 121 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V6 N7, WKP-B28F5, July 17, 1929, Olson to Wingert, 1929,undated + + + + + + 102 + 122 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V6 N7, WKP-B37F8, Aug. 19, 1929, Scattigone? to Gov., 1929,undated + + + + + + 102 + 123 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V6 N7, sWKP-B37F8, Aug. 24, 1929, Smith to Fischer, 1929,undated + + + + + + 102 + 124 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: WKP-B37, F8, Aug. 29, 1929, Fischer to Kohler, 1929,undated + + + + + + 102 + 125 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA Nov. 9, 1929, Rhoads to Edwards, 1929,undated + + + + + + 102 + 126 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA Dec. 26, 1929,undated + + + + + + 102 + 127 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: ARCOIA, 1929,undated + + + + + + 102 + 128 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD D.E. No. 139, NA Memorandum, [193_?],undated + + + + + + 102 + 129 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: WKP-B37-F8, Aug. 19, 1930, Pratt to Kohler, 1930,undated + + + + + + 102 + 130 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V6 N7, WKP-B37-F8, Aug. 22, 1930, Smith to Pratt, 1930,undated + + + + + + 102 + 131 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: ARCOIA, 1930,undated + + + + + + 102 + 132 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V6 N7, FKP, B33 F6, June 29, 1931, Brown to Kuehl, 1931,undated + + + + + + 102 + 133 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V6 N7, FKP-B33 F6, July 21, 1931, Rhoads to Kuehl, 1931,undated + + + + + + 102 + 134 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V6 N7, FKP, B33 F3, Aug. 5, 1931, Peavey to Kuehl, 1931,undated + + + + + + 102 + 135 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V6 N7 “Madison,” “Summary of Facts,” Aug. 18, 1931,undated + + + + + + 102 + 136 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V6 N7, Sept. 5, 1931, Jones to Reynolds, 1931,undated + + + + + + 102 + 137 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V6 N7, Oct. 8, 1931, Reynolds to Campbell, 1931,undated + + + + + + 102 + 138 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V6 N7, FKP-B33 F3, Oct. 13, 1931, ___ to Peavey, 1931,undated + + + + + + 102 + 139 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: ARCOIA, 1931,undated + + + + + + 102 + 140 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V5 N19, Antigo Daily JL, “Writer Recalls…” Oct. 27, 1932,undated + + + + + + 102 + 141 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: ARCOIA, 1932,undated + + + + + + 102 + 142 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 363, Jan. 2, 1933, Miller to Collier, 1933,undated + + + + + + 102 + 143 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: NA RG Letters Received, 17401, April 1933, Robinson to Boileau, 1933,undated + + + + + + 102 + 144 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA April 20, 1933, Miller to COIA, 1933,undated + + + + + + 102 + 145 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA April 24, 1933, Boileau to COIA, 1933,undated + + + + + + 102 + 146 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA April 26, 1933, Beyer to COIA, 1933,undated + + + + + + 102 + 147 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: NA RG75 16984-33 MAP, May 3, 1933, Collier to Robinson, 1933,undated + + + + + + 102 + 148 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E., No. 362, NA, Land Allotment, May 3, 1933, Collier to Robinson, 1933,undated + + + + + + 102 + 149 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA May 3, 1933, Collier to Miller, 1933,undated + + + + + + 102 + 150 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA May 3, 1933, Collier to Boileau, 1933,undated + + + + + + 102 + 151 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V6 N7, – FKP-B33-F3, June 22, 1933, Kershaw to Miller, 1933,undated + + + + + + 102 + 152 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 362, NA? June 22, 1933, Kershaw to Miller, 1933,undated + + + + + + 102 + 153 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N5, June 30, 1933, Finnegan to Davis, 1933,undated + + + + + + 102 + 154 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA Aug. 9, 1933, Robinson to Collier, 1933,undated + + + + + + 102 + 155 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA Oct. 28, 1933, Collier to Robinson, 1933,undated + + + + + + 102 + 156 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA Dec. 6, 1933, Andres to Dept. Ind. Affairs, 1933,undated + + + + + + 102 + 157 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA Dec. 12, 1933, Collier to Andres, 1933,undated + + + + + + 102 + 158 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 315[1933] MAP, 1933,undated + + + + + + 102 + 159 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4, N5 “LCO,” Feb. 1, 1934,undated + + + + + + 102 + 160 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: NA RG Letters Received, 9388, Feb. 20, 1934, Robinson to Collier, 1934,undated + + + + + + 102 + 161 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: Johnson- O’Malley Act. April 16, 1934, 48 Stat. 596, 1934,undated + + + + + + 102 + 162 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA May 26, 1934, Collier to Robinson, 1934,undated + + + + + + 102 + 163 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: NA RG, Letters Received, 28891, June 11, 1934, Beyer to COIA, 1934,undated + + + + + + 102 + 164 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD D.E. No. 133, H.R., 73d Congress, 2d. sess., Report No. 2009, June 14, 1934, “Claims to Stockbridge- Munsee,” 1934,undated + + + + + + 102 + 165 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD- D.E. No. 122, 73rd Congress, Sess. II, Ch. 576, June 18, 1934, Ind. Reorganization Act, 1934,undated + + + + + + 102 + 166 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: Wheeler Howard Act, June 18, 1934, 48 Stat., 984-988, 1934,undated + + + + + + 102 + 167 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V6 N3, “IRA Documents,” NA Aug. 25, 1934, Minutes, 1934,undated + + + + + + 102 + 168 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 367, Oct. 3, 1934, Miller to Fredenberg, 1934,undated + + + + + + 102 + 169 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA Oct. 6, 1934, Balmer- Memo, 1934,undated + + + + + + 102 + 170 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 370, Oct. 20, 1934, Pahr to Fredenberg, 1934,undated + + + + + + 102 + 171 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V3 N97 “Oneida,” Dec. 4, 1934, Collier to Watkins, 1934,undated + + + + + + 102 + 172 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V3 N96- “Oneida,” Dec. 21, 1934, Collier to Christy, 1934,undated + + + + + + 102 + 173 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 365, NA [1934], COIA to Miller, 1934,undated + + + + + + 102 + 174 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA, 1945-1935-313-Kenosha, Jan. 8, 1935,undated + + + + + + 102 + 175 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 368-9Jan. 14, 1935, Koons to Fredenberg, 1935,undated + + + + + + 102 + 176 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA, [1945-1935-313-Kenosha], Jan. 31, 1935, Collier to Niles, 1935,undated + + + + + + 102 + 177 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V6 N3, “IRA Documents,” NA? Feb. 4, 1935, Miller to Sec. Int., 1935,undated + + + + + + 102 + 178 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: NA RG75, [Feb. 15, 1935], 1935,undated + + + + + + 102 + 179 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: NA Great Lakes, Keshena Agency Files, Feb. 26, 1935, Land Commissioner to Fredenberg, 1935,undated + + + + + + 102 + 180 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: NA RG 75, Sept. 13, 1935, Zimmerman to Miller, 1935,undated + + + + + + 102 + 181 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA Sept. 19, 1935, Miller to Christie, 1935,undated + + + + + + 102 + 182 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 372, NA Oct. 10, 1935, Robinson to Collier, 1935,undated + + + + + + 102 + 183 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V3 N95. “Oneida…” Oct. 17, 1935, Collier to Archiquette, 1935,undated + + + + + + 102 + 184 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V6 N3, “IRA Documents,” NA? Nov. 4, 1935, Telegrams, 1935,undated + + + + + + 102 + 185 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: CCF 9757-A-1936, Tomah-068, Nov. 4, 1935, Constitution and By-Laws…, 1935,undated + + + + + + 102 + 186 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V6 N3, “IRA Documents,” NA? Dec. 14, 1935, Stewart- Memorandum, 1935,undated + + + + + + 102 + 187 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 373, NA Dec. 27, 1935, Cohen “Criticisms…” 1935,undated + + + + + + 102 + 188 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: NA RG75, Jan. 29, 1936, Zimmerman to Christy, 1936,undated + + + + + + 102 + 189 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 376, NA Feb. 1, 1936,undated + + + + + + 102 + 190 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 377, NA April 27, 1936,undated + + + + + + 102 + 191 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V3 N93- “Oneida…” May 12, 1936, Christy to COIA, 1936,undated + + + + + + 102 + 192 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 362, NA, June 19, 1936, Stewart to Miller, 1936,undated + + + + + + 102 + 193 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V3 N101 “Oneida,” June 6, 1936, Election Results, 1936,undated + + + + + + 102 + 194 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V3 N99 “Oneida,” June 23, 1936, COIA to Christy, 1936,undated + + + + + + 102 + 195 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V3 N98- “Oneida…” Dec. 21, 1936, Approval of Constitution and By-laws, 1936,undated + + + + + + 102 + 196 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 378, March 15, 1937, Stockbridge Tribe to Collier, 1937,undated + + + + + + 102 + 197 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: NA RG75, March 19, 1937, Proclamation, 1937,undated + + + + + + 102 + 198 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 380, NA April 28, 1937, Daiker to Chicks, 1937,undated + + + + + + 102 + 199 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V3 N92- “Oneida…” May 10, 1937, Collier to Duffy, 1937,undated + + + + + + 102 + 200 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 381, NA July 8, 1937,undated + + + + + + 102 + 201 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 314, LC, Geo. and Map Div., July 15, 1937, “Map of Shawano Co., WI” SD S.E. No. 314, LC, Geo. and Map Div., July 15, 1937, “Map of Shawano Co., WI”,undated + + + + + + 102 + 202 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 383, NA Aug. 7, 1937,undated + + + + + + 102 + 203 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 382, NA Sept. 28, 1937, Daiker to S Int., 1937,undated + + + + + + 102 + 204 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V6 N3 “Ira Documents,” NA? Sept. 28, 1937, Daiker to Sec. Int., 1937,undated + + + + + + 102 + 205 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 384, Dept. Int., OIA: Wash, Gov’t Print Office 1988, Nov. 18, 1937, Constitution, 1937,undated + + + + + + 102 + 206 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V3 N94- “Oneida…”, 1937, “An Economic Survey…” by S. McKinsey, 1937,undated + + + + + + 102 + 207 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V6 N3, NA? April 2, 1938, Heacock to Daiker, 1938,undated + + + + + + 102 + 208 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V6 N3 “Ira Documents,” NA? April 11, 1938, “Accomplishments,” 1938,undated + + + + + + 102 + 209 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: Kappler (1941) V. 5: 655, April 15, 1938. Executive, 1938,undated + + + + + + 102 + 210 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD D.E. No. 123, May 21, 1938, Election Results, 1938,undated + + + + + + 102 + 211 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD D.E. No. 143, Dept. Int., Off. Ind. Affairs, Wash D.C.: Gov’t Printing Office, May 21, 1938, “Corporate Charter of the Stockbridge-Munsee…,” 1938,undated + + + + + + 102 + 212 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 386, May 26, 1938, Stewart to Farver, 1938,undated + + + + + + 102 + 213 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N6, May 26, 1938, Stewart to Farver, 1938,undated + + + + + + 102 + 214 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NA July 5, 1938, Moses to Stewart, 1938,undated + + + + + + 102 + 215 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V7, NAM July 14, 1938, Stewart to Moses, 1938,undated + + + + + + 102 + 216 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S. E. No. 388, NA Oct. 20, 1938, Miller to Chapman, 1938,undated + + + + + + 102 + 217 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD D.E. No. 389, NA Nov. 3, 1938, Chapman to Miller, 1938,undated + + + + + + 102 + 218 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 390, NA Nov. 30, 1938, Miller to COIA, 1938,undated + + + + + + 102 + 219 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 387, NA, 1938?,undated + + + + + + 102 + 220 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: CCF Political Org: Tomah Agency, Jan. 17, 1939, Chapman to Chicks, 1939,undated + + + + + + 102 + 221 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4, N4, “Tousey Case,” NA RG21 Milwaukee CR.CACF.5849, March 13, 1939, w/ enclosures, 1939,undated + + + + + + 102 + 222 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 391, May 11, 1939, Farver to Collins, 1939,undated + + + + + + 102 + 223 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V5 N15, 76th Congress, 1st Session, H.R.6506, May 24, 1939,undated + + + + + + 102 + 224 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: NA RG75, Feb. 1940, MAP, 1940,undated + + + + + + 102 + 225 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N6, March 19, 1940, Daiker to Husting, 1940,undated + + + + + + 102 + 226 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: S.D. S.E. No. 392, NA May 17, 1941, Test. of Nelson Gardner, 1941,undated + + + + + + 102 + 227 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4, N7 “Sheppard (1941),” Aug. 1941,undated + + + + + + 102 + 228 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD V4 N6, Sept. 6, 1941, Circular, 1941,undated + + + + + + 102 + 229 + Box 5 Stockbridge- Munsee, Calendar documents, 1911-1944: SD S.E. No. 393, March 1944,undated + + + + + + 103 + 1 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co., WI, Clerk of Courts Office: State vs. Bowman, Sept. 20, 1945,undated + + + + + + 103 + 2 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co., WI, Clerk of Courts Office: State vs. Bowman, Sept. 24, 1945,undated + + + + + + 103 + 3 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co., WI, Clerk of Courts Office: State vs. Bowman, Oct. 2, 1945,undated + + + + + + 103 + 4 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co., WI, Clerk of Courts Office: State vs. Bowman, Oct. 4, 1945,undated + + + + + + 103 + 5 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co., WI, Clerk of Courts Office: State vs. Bowman, Oct. 5, 1945,undated + + + + + + 103 + 6 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co., WI, Clerk of Courts Office: State vs. Bowman, Oct. 8, 1945, Miller to Eberlein, 1945,undated + + + + + + 103 + 7 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co., WI, Clerk of Courts Office: State vs. Bowman, Oct. 16, 1945, Miller to Eberlein, 1945,undated + + + + + + 103 + 8 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co., WI, Clerk of Courts Office: State vs. Bowman, Oct. 16, 1945, Farver to Brunner, 1945,undated + + + + + + 103 + 9 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co., WI, Clerk of Courts Office: State vs. Bowman, Oct. 26, 1945,undated + + + + + + 103 + 10 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co., WI, Clerk of Courts Office: State vs. Bowman, Nov. 2, 1945,undated + + + + + + 103 + 11 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co., WI, Clerk of Courts Office: State vs. Bowman, Nov. 5, 1945,undated + + + + + + 103 + 12 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, [Shawano Co., WI, Clerk of Courts Office: State vs. Bowman?], Nov. 15, 1945,undated + + + + + + 103 + 13 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co., WI, Clerk of Courts Office: State vs. Bowman, Nov. 15, 1945, Ringey to Farver, 1945,undated + + + + + + 103 + 14 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4, N8 “Bowman (1945),” Shawano Co., Clerk of Court’s Office, State vs. Bowman, Nov. 21, 1945,undated + + + + + + 103 + 15 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co. WI, Clerk of Courts Office, State vs. Bowman, Nov. 26, 1945,undated + + + + + + 103 + 16 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Nov. 30, 1945,undated + + + + + + 103 + 17 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Dec. 5, 1945,undated + + + + + + 103 + 18 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co., WI, Clerk of Courts Office: State vs. Bowman, Dec. 6, 1945,undated + + + + + + 103 + 19 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Dec. 7, 1945,undated + + + + + + 103 + 20 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co., WI, Clerk of Courts Office, State vs. Bowman, Dec. 11, 1945,undated + + + + + + 103 + 21 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, [Shawano Co., WI, Clerk of Courts Office: State vs. Bowman?], Dec. 13, 1945,undated + + + + + + 103 + 22 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, [Shawano Co., WI, Clerk of Courts Office, State vs. Bowman?], Dec. 14, 1945, Farver to Cronin, MAP, 1945,undated + + + + + + 103 + 23 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Dec. 15, 1945, Farver to Daiker, 1945,undated + + + + + + 103 + 24 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co., WI, Clerk of Courts Office: State vs. Bowman, Dec. 17, 1945,undated + + + + + + 103 + 25 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co., WI, Clerk of Courts Office: State vs. Bowman, Dec. 20, 1945 (Folder 1 of 2),undated + + + + + + 103 + 26 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co., WI, Clerk of Courts Office, State vs. Bowman, Dec. 20, 1945 (Folder 2 of 2),undated + + + + + + 103 + 27 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Dec. 20, 1945, Critchfield to McNickle, 1945,undated + + + + + + 103 + 28 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co., WI, Clerk of Courts Office, State vs. Bowman, Dec. 24, 1945,undated + + + + + + 103 + 29 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co., WI, Clerk of Courts Office: State vs. Bowman, Dec. 28, 1945,undated + + + + + + 103 + 30 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, [Shawano Co., WI, Clerk of Courts Office: State vs. Bowman?], Dec. 29, 1945,undated + + + + + + 103 + 31 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co., WI, Clerk of Courts Office: State vs. Bowman, Jan. 5, 1946,undated + + + + + + 103 + 32 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD S.E. No. 394, Jan. 5, 1946, Caudle to Cronin, 1946,undated + + + + + + 103 + 33 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Evening Leader, Jan. 10, 1946,undated + + + + + + 103 + 34 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co., WI, Clerk of Courts Office: St. vs. Bowman, Jan. 14, 1946, Strossenreuther to Farver, 1946,undated + + + + + + 103 + 35 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co., WI, Clerk of Courts Office: State vs. Bowman, Jan. 18, 1946,undated + + + + + + 103 + 36 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co., WI, Clerk of Courts Office: State vs. Bowman, Feb. 18, 1946,undated + + + + + + 103 + 37 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co., WI, Clerk of Courts Office: State vs. Bowman, Feb. 19, 1946,undated + + + + + + 103 + 38 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V4 N8, Shawano Co., WI, Clerk of Courts Office: State vs. Bowman, March 6, 1946,undated + + + + + + 103 + 39 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD, March 19, 1946,undated + + + + + + 103 + 40 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V.6 N5, Shawano Co., WI Circuit Court: State vs. Robinson, [1947], 1947,undated + + + + + + 103 + 41 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V3 N102, “Oneida,” H.R.3190, etc., 1947-8, Misc. Statutes, 1947 and 1948,undated + + + + + + 103 + 42 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD S.E. No. 395, Feb. 3, 1948, Miller to Murphy, 1948,undated + + + + + + 103 + 43 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD S.E. No. 396, Feb. 10, 1948, Miller to Cattau, 1948,undated + + + + + + 103 + 44 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD D.E. No. 124, 80th Congress, 2d Session- Ch. 645-§1151, June 25, 1948, “Ind. Country Def.,” 1948,undated + + + + + + 103 + 45 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD S.E. No. 397, Dec. 7, 1948, Proclamation, 1948,undated + + + + + + 103 + 46 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD S.E. No. 398, NA _____ _____ ______, Jan. 16, 1952, Davis to Benge, 1952,undated + + + + + + 103 + 47 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: S.D. S.E. No. 399-400, H.R., 82nd Congress, 2d Session, HR No. 2503, Wash, Gov’t Print Office, 1953, 15 Dec. 1953,undated + + + + + + 103 + 48 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V6 N8, Dept. of Interior, Opinions of the Solicitor: 1632-1636, Feb. 12-15, 1954undated + + + + + + 103 + 49 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD- D.E. No. 105, BIA, Minneapolis, ______ ______? 1960, MAP, 1960,undated + + + + + + 103 + 50 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD S.E. No. 401, Jan. 24, 1962, Miller to Wiley, 1962,undated + + + + + + 103 + 51 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD S.E. No. 402, Jan. 28, 1962, Miller to O’Konski, 1962,undated + + + + + + 103 + 52 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD S.E. No. 403, Jan. 7, 1963, Miller to Laird, 1963,undated + + + + + + 103 + 53 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: S.D. S. E. No. 404, Aug. 15, 1970, Minutes- Intertribal, 1970,undated + + + + + + 103 + 54 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD SE No. 405-406, 92 Congress, 1st Session, S.1217 and S.1230, Wash Gov’t Print Office: 1971, March 26, 1971,undated + + + + + + 103 + 55 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD, 92nd Congress, S.722: Public Law 92-480, Oct. 9, 1972,undated + + + + + + 103 + 56 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V6 N9, BIA- Minneapolis- CF No 936-1973-GHks- 318, April 5, 1974, Piepenbrink Letter, 1974,undated + + + + + + 103 + 57 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V6 N1, “BIA Tribal Boundary Correspondence,” April 5, 1974, Payton to Miller, 1974,undated + + + + + + 103 + 58 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD D.E. No. 138, April 5, 1974, Payton to Miller, 1974,undated + + + + + + 103 + 59 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V6 N9, BIA-Minneapolis CF No. 936-1973-Gt. Lks- 318, Sept. 29, 1975,undated + + + + + + 103 + 60 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V6 N9, BIA-Minneapolis- CF No. 936-1973-Gt. Lks- 318, Sept. 30, 1975, Graham to COIA, 1975,undated + + + + + + 103 + 61 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: S.D. V6 N9, BIA- Minneapolis, CF No. 936-1973-Gt Lks- 318, April 3, 1980,undated + + + + + + 103 + 62 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V6 N9, BIA-Minneapolis, C.F. No. 936-1973- Gt. Lks- 318, July 29, 1980, Wege to Piepenbrinck, 1980,undated + + + + + + 103 + 63 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V6 N9, BIA-Minneapolis, CF No. 936-1973-Gt Lks- 318, Aug. 7, 1980, Boucher to Piepenbrinck, MAP, 1980,undated + + + + + + 103 + 64 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V6 N9, BIA-Minneapolis, CF No. 936-1973-Gt Lks- 318, Aug. 13, 1980, Fredericks to Wege, 1980,undated + + + + + + 103 + 65 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V6 N1, “BIA Tribe Boundary Correspondence,” Aug. 14, 1980, Fredericks to Boucher, 1980,undated + + + + + + 103 + 66 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD D.E. No. 137, BIA Great Lakes Agency, Aug. 14, 1980, Fredericks to Boucher, 1980,undated + + + + + + 103 + 67 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V6 N9, BIA-Minneapolis, CF No. 936-1973-Gt Lks-318, Aug. 14, 1980, Fredericks to Boucher, 1980,undated + + + + + + 103 + 68 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V6 N9, BIA-Minneapolis, CF No. 936-1973-Gt. Lks-318, Sept. 4, 1980, Miller to Hendrickson w/ MAP, 1980,undated + + + + + + 103 + 69 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V6 N9, BIA-Minneapolis, CF No. 936-1973-Gt Lks-318, Sept. 16, 1980, Benjamin to Wege, 1980,undated + + + + + + 103 + 70 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V6 N9, BIA- Minneapolis, CF No. 936-1973-Gt. Lks-318, Sept. 18, 1980, Benjamin to Roth, 1980,undated + + + + + + 103 + 71 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V6 N9, BIA- Minneapolis, CF No. 936- 1973- Gt. Lks-318, Oct. 29, 1980, Walker to Straus; Preloznik, 1980,undated + + + + + + 103 + 72 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V6 N9, BIA-Minneapolis, CF No 936-1973- Gt. Lks-318, March 23, 1981, Roth to Watt, 1981,undated + + + + + + 103 + 73 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V6 N9, BIA-Minneapolis, CF No 936-1973-Gt Lks-318, April 20, 1981, Frentinchs to Realty Officer, 198,undated + + + + + + 103 + 74 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V6 N9, BIA-Minneapolis, C.F. No. 936-1973-Gt. Lks-318, July 16, 1981, Hulett to Roth, 1981,undated + + + + + + 103 + 75 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD D.E. No. 134, Aug. 21, 1981, LaFollette to Besadny, 1981,undated + + + + + + 103 + 76 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V6 N9, BIA-Minneapolis, CF No. 936-1973-Gt Lks-318, Oct. 2, 1981, Anderson to Piepenbrink, 1981,undated + + + + + + 103 + 77 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V6 N9, BIA-Minneapolis, CF No. 936-1973- Gt. Lks-318, Oct. 26, 1981, Kraft to Piepenbrink, 1981,undated + + + + + + 103 + 78 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V6 N9, BIA-Minneapolis, CF No. 936-1973- Gt. Lks- 318, Nov. 25, 1981, Pipenbrink to Keep, 1981,undated + + + + + + 103 + 79 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V6 N9, BIA-Minneapolis, CF No. 936-1973- Gt. Lakes-318, Dec. 1, 1981, Jensen to Field Solicitor, 1981,undated + + + + + + 103 + 80 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD S.E. No. 407, Dec. 28, 1981, Deed of L. Waukau, 1981,undated + + + + + + 103 + 81 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V6 N9, BIA Minneapolis, CF No. 936-1973- Great Lks- 318, April 5, 1982, Real estate Chief to Anderson, 1982,undated + + + + + + 103 + 82 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD S.E. No. 413, Oct. 19, 1984, to Vele, 1984,undated + + + + + + 103 + 83 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V6 N1, “BIA Tribal Boundary Correspondence,” Jan. 15, 1985, R. O. to Vele, 1985,undated + + + + + + 103 + 84 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD D.E. No. 135, [NA?], March 3, 1989, Oneida Constitution, 1989,undated + + + + + + 103 + 85 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD-D.E. No. 106, BIA 1992, MAP, 1992,undated + + + + + + 103 + 86 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD S.E. No. 414, Sept. 27, 1995, Resolution, 1995,undated + + + + + + 103 + 87 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD V6 N1, “BIA Tribe Boundary Correspondence,” May 3, 1996,undated + + + + + + 103 + 88 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD S.E. No. 412, May 3, 1996, Greene to Anderson and Lurie, 1996,undated + + + + + + 103 + 89 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD S.E. No. 409, June 11, 1996, Greene to Jaeger, 1996,undated + + + + + + 103 + 90 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD-D.E. No. 114, BIA- Ashland June 14, 1996, Jaeger to Murphy, 1996,undated + + + + + + 103 + 91 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD- D.E. No. 115, BIA- Minneapolis, July 10, 1996, Morrin to Murphy, 1996,undated + + + + + + 103 + 92 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD S.E. No. 410, March 27, 1997, Draft Mohican Constitution, 1997,undated + + + + + + 103 + 93 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD S.E. No. 418, [Shawano Co., WIS County Board Proceedings], July 1997,undated + + + + + + 103 + 94 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD D.E. No. 111, Jan. 1, 1998, Agreement, 1998,undated + + + + + + 103 + 95 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD S.E. No. 309-11, BIA Internet http://gdsc.bia.gov/min.pdf, May 1998, MAP, 1998,undated + + + + + + 103 + 96 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD D.E. No. 136, Aug.- Oct. 1998, Pine Hills Casino Earnings, 1998,undated + + + + + + 103 + 97 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD S.E No. 417, Oct. 7, 1998, Chicks to Minash, 1998,undated + + + + + + 103 + 98 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD-D.E. No. 112, Oct. 14, 1998,undated + + + + + + 103 + 99 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD S.E. No. 415, Oct. 24, 1998, Stenzel to Greene, 1998,undated + + + + + + 103 + 100 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD S.E. No. 416, Oct. 26, 1998, Greene-Gretzinger to Dosch, 1998,undated + + + + + + 103 + 101 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD S.E. No. 312, 1981 or 1998?, MAP, 1981 or 1998,undated + + + + + + 103 + 102 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD S.E. No. 408, 411, [Plaintiff’s office?], 1998,undated + + + + + + 103 + 103 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD D.E. No. 125-128, 130, 142, [“F.R.E. 1006 Summary”], 1998?,undated + + + + + + 103 + 104 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD-D.E. No. 101, 101L, MAP,undated + + + + + + 103 + 105 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD-D.E. No. 102, MAP,undated + + + + + + 103 + 106 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources: SD-V6 N10, “CT. Indicies,” US Dist. Ct., Eastern Dist. of WI- Indicies,undated + + + + + + 103 + 107 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: Hist. of Northern WI, Western Hist. Co., [1881], “Calumet County” and Shawano, 1881,undated + + + + + + 103 + 108 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: CSHSW, v. 15: 39-235, [1900], “Documents Relating to the Stockbridge Mission, 1825-48,” 1900,undated + + + + + + 103 + 109 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: WMH, V. 6: 355, 360-61, [1922-23], “Society and the State,” 1922-23,undated + + + + + + 103 + 110 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: WMH, V. 8, N. 4: 348-360, [1925], “Memorials of John H. Tweedy,” 1925,undated + + + + + + 103 + 111 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: CSHSW, V. 15: 25-38, Chapin, John E., [1900], “Sketch of Cutting Marsh,” 1900,undated + + + + + + 103 + 112 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: BIA, “Constitution and By-Laws of the Stockbridge-Munsee Comm., WI,” Dept. of Int., Off. Ind. Aff.; GPO WASH, 1938, Nov. 18, 1937, Published ref., 1937,undated + + + + + + 103 + 113 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: Cleland, Charles E., Rites of Conquest, 202-250; 253-257, 1992,undated + + + + + + 103 + 114 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: Clifton, James A., Prairie People, 252-54, 1977,undated + + + + + + 103 + 115 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: WMH V. IX: 47-62, [1925-1926], COLE, H. E., “Old Military Road,” 1925-1926,undated + + + + + + 103 + 116 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: Coté, Genealogists Guide to Calumet Co., WI, cover, [July 7, 1863], J. Chicks/ N. Collins Marriage Certificate, 1977,undated + + + + + + 103 + 117 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: Culpepper, Linda Parramore, 1991, JL of Cherokee Studies, V. XVI: 40-74, “Mountain Politics: What Happens if the Wrong Party Wins,” 1991,undated + + + + + + 103 + 118 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: CURRENT, RICHARD N., State Hist. Society of WI, [1950], Pine Logs and Politics: A Life of Philetus Sawyer, 1816-1900, 1950,undated + + + + + + 103 + 119 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: CSHSW V4: 291-301, 309-333, Draper, (ed.), (1906), Reprinted (1856 version), “Sketch of Brothertown…” (Commuck 1855), “Stockbridges…” (Marsh 1857), “Death of J. W. Quinney” (1855), “Speech of Quinney” (1854), “Memorial of Quinney (1852), 1906,undated + + + + + + 103 + 120 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: SD D.E. No. 110, Frazier, Patrick, U of NEB 1992, “Mohican’s of Stockbridge,” Chapter 19: 234-245, 1992,undated + + + + + + 103 + 121 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: GARY, George, Magazine of Western History, [May 1889], “Hon. Philetus Sawyer,” 1889,undated + + + + + + 103 + 122 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: Godfrey, Anthony, US W Research, [1996], “A Forestry History of Ten WI Indian Reservations under the Great Lakes Agency,” 1996,undated + + + + + + 103 + 123 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: WMH, V 40, N. 2: 91-98, [1956-57], Kane, Lucile, “Settling the WI Cutovers,” 1956-7,undated + + + + + + 103 + 124 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: WMH, V. 8, N. 4: 423-445 [1925], Kemper, B. J., “Trip Through WI,” 1925,undated + + + + + + 103 + 125 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: WMH, V 40, N. 1: 31-39 [1956], Kowalke, Otto L., “Settlement of the Stockbridge Indians and the Survey Lands of Outagamie County, WI,” 1956,undated + + + + + + 103 + 126 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: Kvasnicka, R. and H. Viola, 1979, Commissioners of Indian Affairs, 1824-1977, 57-67; 273-282, 1979,undated + + + + + + 103 + 127 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: McClurken, J. M. Unpublished PhD dissertation, 1988, MSU, 1988,undated + + + + + + 103 + 128 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: Merk, Frederick, Economic History of WI during the Civil War Decade, [1916], “Lumbering,” 1916,undated + + + + + + 103 + 129 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: Mochon, Marion J., Proceedings of the American Philosophical Society, V112, N3: 182-219, (1968), “Stockbridge- Munsee Cultural Adaptations; ‘Assimilated Indians,’” 1968,undated + + + + + + 103 + 130 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: Excerpts from ARCOIA- 1901 from 1975, Prucha, 1975,undated + + + + + + 103 + 131 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: Excerpts from ARCOIA- 1933 from 1975, Prucha, 1975,undated + + + + + + 103 + 132 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: Prucha, Francis P. 1975, Documents of US Indian Policy, 136-37, 1975,undated + + + + + + 103 + 133 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: SD D.E. No. 131, Prucha, Francis, Great Father, p. 526-533,undated + + + + + + 103 + 134 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: Prucha, Francis P., 1984, Great Father, p. 482; 525; 550-1; 889, 1984,undated + + + + + + 103 + 135 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: WMH, V. 5: 414-415, Quaife (ed), [1921-22], “Question Box: the Story of the Stockbridge,” 1921-22,undated + + + + + + 103 + 136 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: WMH, V. 3, N. 2: 226-235, Quaife (ed), [1919-1920], “Question Box:,” 1919-20,undated + + + + + + 103 + 137 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: WMH, V. 4: 166-195, Quaife, M. M., [1920-21], “Panic of 1862 in WI,” 1920-21,undated + + + + + + 103 + 138 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: Savagian, John C., WI Magazine of History, V. 77, N. 1, (1993), “Tribal Reorganization of the Stockbridge- Munsee: Essential Conditions in the Re-Creation of a Native American Community, 1930-1942,” 1993,undated + + + + + + 103 + 139 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: CSHSW, V. 15: 1-24 [1900], Thwaites (ed.), “Some WI Indian Conveyances,” 1900,undated + + + + + + 103 + 140 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: WMH, V. X: 181-188 [1926-7], Titus, “Historic Spots in WI: II. Little Butte Des Morts: A Memory of a Doomed Indian Tribe,” 1926-7,undated + + + + + + 103 + 141 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: Yarnell, Richard A., 1964, Aboriginal Relationships between Culture and Plant Life in the Upper Great Lakes Region, 1964,undated + + + + + + 103 + 142 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: SD V6 N4, Kappler, 1906,undated + + + + + + 103 + 143 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: SD S.E. No. 302-308, - created by Plaintiff? May 1998, 1998, MAPS, 1998,undated + + + + + + 103 + 144 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: SD V6 N6, Report of COIA, Summary, [1998], 1998,undated + + + + + + 103 + 145 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: SD S.E. No. 327, [Plaintiff?], [1871-1975], Summary of ARCOIA,undated + + + + + + 103 + 146 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: SD V. 1, N. 16, [NA RG46 B56 F2-3?], Royce,undated + + + + + + 103 + 147 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: SD- V. 1, N. 2, Executive Orders,undated + + + + + + 103 + 148 + Box 6 Stockbridge- Munsee, Calendar documents, 1945-1998, published sources, BIBLIOGRAPHY: NAM, Records of the Northern Superintendency, 6 roll descriptions,1981 + + + + + + 104 + 1 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 1. Indian Removal Act (US Stats. At Large 4:411-412) [no #2 in box],undated + + + + + + 104 + 2 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 3. Cleland, Charles E. 1992. Rites of Conquest, p. 202-250, 1992,undated + + + + + + 104 + 3 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 4. Treaty w/ the Seneca, etc. July 20, 1831. 7 Stat., 351, 1831,undated + + + + + + 104 + 4 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 5. Treaty w/ the Shawnee. Aug. 8, 1831. 7 Stat., 355, 1831,undated + + + + + + 104 + 5 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 6. Treaty w/ the Chippewa, etc. Sept. 26, 1833. 7 Stat., 431, 1833,undated + + + + + + 104 + 6 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 7. Treaty w/ the Winnebago. Sept. 15, 1832. 7 Stat., 370, 1832,undated + + + + + + 104 + 7 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 8. Treaty w/ the Ottawa and Chippewa. March 28, 1836. 7 Stat., 491, 1836,undated + + + + + + 104 + 8 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 9. Treaty w/ the Chippewa. Oct. 4, 1842. 7 Stat., 591, 1842,undated + + + + + + 104 + 9 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 10. Treaty w/ the Stockbridge Tribe. Nov. 24, 1848. 9 Stat., 955, 1848,undated + + + + + + 104 + 10 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 11. Treaty w/ the Chippewa. July 29, 1837. 7 Stat., 536, 1837,undated + + + + + + 104 + 11 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 12. Treaty w/ the Menominee. Oct. 18, 1848. 9 Stat., 952, 1848,undated + + + + + + 104 + 12 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 13. JLs of the Continental Congress, 32: 340-341,undated + + + + + + 104 + 13 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 14. ARCOIA 1838, p. 497, 1838,undated + + + + + + 104 + 14 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 15. McClurken, J. M. 1988, We Wish to be Civilized: Ottawa- American Political Contest on the MI Frontier. Ph. D. dissertation MI State University: E Lansing. Clifton, James A. 1977, Prairie People. Regents Press of KN: Lawrence. P. 252-254, 1977 and 1988,undated + + + + + + 104 + 15 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 16. Treaty w/ the Stockbridge and Munsee. Sept. 3, 1839. 7 Stat. 580, 1839,undated + + + + + + 104 + 16 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 17. ARCOIA 1840,undated + + + + + + 104 + 17 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 18. ARCOIA 1844,undated + + + + + + 104 + 18 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 19. Act of 1843. 5 Stat. 645, 1843,undated + + + + + + 104 + 19 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 20. NA RG75 SC42-S611. Jan. 3, 1872. Memorial to the US Senate and HR, 1872,undated + + + + + + 104 + 20 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 21. NA RG 46 B56, F2-3. April 18, 1855. J. Wilson to R. McClelland, 1855,undated + + + + + + 104 + 21 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 22. ARCOIA 1847,undated + + + + + + 104 + 22 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 23. Preamble to Treaty of 1848. 9 Stat. 955, 1848,undated + + + + + + 104 + 23 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 24. ARCOIA 1847,undated + + + + + + 104 + 24 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 25. Treaty w/ the Stockbridge Tribe. Nov. 24, 1848. 9 Stat. 955, 1848,undated + + + + + + 104 + 25 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 26. ARCOIA 1854,undated + + + + + + 104 + 26 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 27. ARCOIA 1854,undated + + + + + + 104 + 27 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 28. ARCOIA 1855,undated + + + + + + 104 + 28 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 29. Kvasnicka, R. and H. Viola (eds.) 1979, COIA, 1824-1977, University of NEB Press: Lincoln, p. 57-67, 1979,undated + + + + + + 104 + 29 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 30. ARCOIA 1857, p. 290-93, 1857,undated + + + + + + 104 + 30 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 31. Report of the Secretary of Interior, 1860,undated + + + + + + 104 + 31 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 32. Treaty w/ the Chippewa. Sept. 30, 1854. 10 Stats., 1109, 1854,undated + + + + + + 104 + 32 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 33. Treaty w/ the Ottawa and Chippewa. July 31, 1855. 11 Stats. 621, 1855,undated + + + + + + 104 + 33 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 34. Annual Report of Secretary of Interior, 1860,undated + + + + + + 104 + 34 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 35. NA RG416 B56, F2-3. Jan. 7, 1856. G. Manypenny to F. Huebschmann, 1856,undated + + + + + + 104 + 35 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 36. Ibid,undated + + + + + + 104 + 36 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 37. Ibid,undated + + + + + + 104 + 37 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 38. Treaty w/ Stockbridge and Munsee. Feb. 5, 1856. 11 Stat. 663, 1856,undated + + + + + + 104 + 38 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 39. Treaty w/ Stockbridge and Munsee. Feb. 5, 1856. 11 Stat. 663, 1856,undated + + + + + + 104 + 39 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 40. ARCOIA 1853,undated + + + + + + 104 + 40 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 41. NAM M1166 R.1: 358-59. April 28, 1854. Manypenny to J. Quinney and Z. Peter, 1854,undated + + + + + + 104 + 41 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 42. NAM M1166 R.1: 282-3, Dec. 29, 1853, Huebschmann to Manypenny. NAM M1166 R.1: 309-310, Jan. 14, 1854, Huebschmann to Manypenny. NAM M1166 R.1:337-38, March 20, 1854, Huebschmann to Manypenny. 1853 and 1854,undated + + + + + + 104 + 42 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 43. Treaty w/ the Ottawa and Chippewa, July 31, 1855. 11 Stat. 621, 1855,undated + + + + + + 104 + 43 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 44. Treaty w/ the Chippewa, Sept. 30, 1854. 10 Stat. 1109, 1854,undated + + + + + + 104 + 44 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 45. Treaty w/ Stockbridge and Munsee. Feb. 5, 1856. 11 Stat. 663, 1856,undated + + + + + + 104 + 45 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 46. NAM M234 R.327: 825-884, May 18, 1870, Bourn to Parker, Trial transcript of US v. Wybro, p. 54, 1870,undated + + + + + + 104 + 46 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 47. NAM M234 R.325: 132, Aug. 21, 1865, Petition to M. M. Davis, 1865,undated + + + + + + 104 + 47 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 48. Treaty w/ the Stockbridge and Munsee. Feb. 5, 1856. 11 Stat., 663. Feb. 23, 1856 letter appended to treaty, F. Huebschmann to G. Manypenny, 1856 ,undated + + + + + + 104 + 48 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 49. Treaty w/ the Menominee, May 12, 1854, 10 Stat., 1064, 1854,undated + + + + + + 104 + 49 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 50. NAM M234 R.325: 212-218, June 5, 1865, J. Edmunds to J. Harlan, 1865,undated + + + + + + 104 + 50 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 51. NAM M234 R.325: 210-11, June 26, 1865, Harland to COIA, 1865,undated + + + + + + 104 + 51 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 52. Prucha, Francis P., 1984. Great Father, p. 482, 1984,undated + + + + + + 104 + 52 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 53. Ibid. Prucha, p. 482,undated + + + + + + 104 + 53 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 54. Ibid. Prucha, p. 525,undated + + + + + + 104 + 54 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 55. Prucha, Francis P., 1975, Documents of the US Indian Policy. University of NEB Press: Lincoln and London. Pp. 136, 1975,undated + + + + + + 104 + 55 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 56. Treaty w/ the Menominee. Feb. 11, 1856, 11 Stat., 679, 1856,undated + + + + + + 104 + 56 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 57. ARCOIA 1859, 1860, and 1865. Yarnell, R. A. 1964. Aboriginal relationships between culture and plant life. Anthropological Papers, Museum of Anthropology, University of MI No. 23, Ann Arbor, pp. 127-137, 1964,undated + + + + + + 104 + 57 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 58. ARCOIA 1859 and 1862,undated + + + + + + 104 + 58 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 59. ARCOIA 1863 and 1870,undated + + + + + + 104 + 59 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 60. ARCOIA 1866, pp. 287, 1866,undated + + + + + + 104 + 60 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 61. ARCOIA 1859. MMLM-NA RG75 SC42, P762 R.1, March 9, 1858, Peters and Hendrick to Mix; MMLM-NA RG75 SC 42, B55 R.1, Sept. 10, 1859, Bonsteel to Greenwood, 1858 and 1859,undated + + + + + + 104 + 61 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 62. ARCOIA 1862,undated + + + + + + 104 + 62 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 63. ARCOIA 1863,undated + + + + + + 104 + 63 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 64. NAM M234 R.325:132, Aug. 21, 1865, Petition to M. M. Davis, NAM M234 R.325: 944-952, June 28, 1867, Oneida chiefs to President. NAM M234 R.327: 360-361, Aug. 3, 1870, D. Charles to COIA. 1865, 1867 and 1870,undated + + + + + + 104 + 64 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 65. NAM M234 R.325:346, March 5, 1866, M. Davis to COIA Cooley. NAM M234 R.327:507-09, Jan. 7, 1870, J. Manley to COIA Parker, 1866 and 187,undated + + + + + + 104 + 65 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 66. Prucha, Francis P. 1984, Great Father, p. 889, 1984,undated + + + + + + 104 + 66 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 67. NAM M234 R.325: 710-711. Nov. 27, 1866, L. Bogy to M. Martin, 1866,undated + + + + + + 104 + 67 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 68. NAM M234 R.327: 564-565. Feb. 7, 1870, J. Manley to E. Parker, 1870,undated + + + + + + 104 + 68 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 69. NAM M234 R.327: 825-884, May 18, 1870, Bourn to Parker, Trial transcript of US v. Wybro p. 52-53, 1870,undated + + + + + + 104 + 69 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 70. Treaty w/ the Stockbridge and Munsee, Feb. 5, 1856, 11 Stats., 663; NAM M234 R.327: 564-565, Feb. 7, 1870, J. Manley to E. Parker, 1856 and 1870,undated + + + + + + 104 + 70 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 71. NAM M234 R.325: 132, Aug. 21, 1865, Petition to M. M. Davis, 1865,undated + + + + + + 104 + 71 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 72. Ibid.,undated + + + + + + 104 + 72 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 73. NAM M234 R.325: 988-989, Oct. 21, 1867, J. Hendricks to COIA, NAM M234 R.325: 642-647, July 20, 1866, M. Martin to D. Cooley, 1866 and 1867,undated + + + + + + 104 + 73 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 74. NAM M234 R.325: 521-522, Nov. 19, 1866, D. Charles to COIA, 1866,undated + + + + + + 104 + 74 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 75. NAM M234 R.327: 540-44, Feb. 3, 1870, J. Manley to E. Parker, 1870,undated + + + + + + 104 + 75 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 76. NAM M234 R.325: 1029-1030, Jan. 5, 1867, M. Martin to L. Bogy; NAM M234 R.327: 530-533, Feb. 1, 1870, J. Manley to E. Parker, 1867 and 1870undated + + + + + + 104 + 76 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 77. NAM M234 R.227: 549-53, Feb. 7, 1870, J. Manley to E. Parker, 1870,undated + + + + + + 104 + 77 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 78. NAM M234 R.327: 567-569, Feb. 9, 1870, J. Manley to COIA Parker, 1870,undated + + + + + + 104 + 78 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 79. Gary, George 1889 Hon. Philetus Sawyer, Magazine of Western History Illustrated, Vol. X (1): 469, 1889undated + + + + + + 104 + 79 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 80. Current, Richard N. 1950, Pine Logs and Politics: A Life of Philetus Sawyer 1861-1900, State HS of WI: Madison, p. 71-74, 1950,undated + + + + + + 104 + 80 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 81. Gary, George 1889 Hon. Philetus Sawyer, Magazine of Western History Illustrated, Vol. X (1): 465, 1889,undated + + + + + + 104 + 81 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 82. Ibid.: 465,undated + + + + + + 104 + 82 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 83. Ibid.: 465,undated + + + + + + 104 + 83 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 84. NAM M234 R.325: 350-351, March 12, 1866, Hammond to Doolittle, 1866,undated + + + + + + 104 + 84 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 85. Ibid.,undated + + + + + + 104 + 85 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 86. NAM M234 R.327: 564-565, Feb. 7, 1870, J. Manley to E. Parker, 1870,undated + + + + + + 104 + 86 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 87. NAM M234 R.327: 540-544, Feb. 3, 1870, J. Manley to E. Parker, 1870,undated + + + + + + 104 + 87 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 88. NAM M234 R.327: 760, Dec. 20, 1869, D. Charles to P. Sawyer, Enclosed w/ Jan. 15, 1870 Sawyer to COIA Parker; NAM M234 R.327: 427, Jan. 18, 1870, D. Charles to P. Sawyer, 1869 and 1870,undated + + + + + + 104 + 88 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 89. NAM M234 R.327: 651-654, March 7, 1870, J. Manley to COIA Parker, 1870,undated + + + + + + 104 + 89 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 90. NAM M234 R.327: 549-553, Feb. 7, 1870, J. Manley to E. Parker, 1870,undated + + + + + + 104 + 90 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 91. NAM M234 R.327: 395-397, March 27, 1870, S. Gillette to COIA Parker, 1870,undated + + + + + + 104 + 91 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 92. NAM M234 R.327: 549-553, Feb. 7, 1870, J. Manley to E. Parker, 1870,undated + + + + + + 104 + 92 + Box 7 Stockbridge- Munsee, Cleland report, reference documents:93. NAM M234 R.327: 536-538, Feb. 1, 1870, Certification of petition of Nov. 29, 1869 by J. Manley; NAM M234 R.327: 530-533, Feb. 1, 1870, J. Manley to E. Parker, 1870,undated + + + + + + 104 + 93 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 94. NAM M234 R.327: 382-383, Feb. 5, 1870, Davids, et al. to COIA Parker, 1870,undated + + + + + + 104 + 94 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 95. NAM M234 R.327: 770-771, Feb. 9, 1870, S. Gardner to P. Sawyer, 1870,undated + + + + + + 104 + 95 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 96. Ibid.,undated + + + + + + 104 + 96 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 97. NAM M234 R.327: 762-767, Feb. 12, 1870, P. Sawyer to COIA Parker containing petition to Congress, Feb. 1, 1870 from Solomon Davids et al. and Petition to US Senate and US Congress assembled, Feb. 1, 1870, Solomon Davids, et al., 1870,undated + + + + + + 104 + 97 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 98. NAM M234 R.327: 931-932, Feb. 17, 1870, P. Sawyer to S. Gardner enclosed w/ March 6, 1871, S. Gardner to Sec. of Interior, 1870,undated + + + + + + 104 + 98 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 99. Prucha, Francis P. 1984, Great Father, p. 550-51, 1984,undated + + + + + + 104 + 99 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 100. NAM M234 R.327: 507-509, Jan. 7, 1870, J. Manley to COIA Parker, 1870,undated + + + + + + 104 + 100 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 101. NAM M234 R.327: 757-760, Jan. 15, 1870, P. Sawyer to E. Parker, 1870,undated + + + + + + 104 + 101 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 102. NAM M234 R.327: 520-523, Jan. 22, 1870, J. Manley to E. Parker, 1870,undated + + + + + + 104 + 102 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 103. NAM M234 R.327: 781-786, Feb. 19, 1870, P. Sawyer to J. Cox, 1870,undated + + + + + + 104 + 103 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 104. NA RG 46 Box 99, 41st Congress, SB 610, March 2, 1870,undated + + + + + + 104 + 104 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 105. MMLM-NA RG 75 SC42 R.1, Dec. 15, 1873, W. Richardson to E. Smith, 1873,undated + + + + + + 104 + 105 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 106. MMLM-NA RG75 SC42: I811-R. 1, Aug. 2, 1875, E. Pierpoint to C. Delano [incomplete]; Stockbridge Difficulty [Newspaper clipping enclosed]; MMLM NA RG75 SC42 B666 R. 1, May 4, 1875, Petition of citizens, 1875,undated + + + + + + 104 + 106 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 107. NA RG75 SC42-S114, Jan. 24, 1871, D. Charles et al. to COIA; NAM M234 R. 327: 923-926, Feb. 1, 1871, Gardner to Sec. of Interior, 1871,undated + + + + + + 104 + 107 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 108. NA RG75 SC42-R.40, Feb. 14, 1871, W. Richardson to E. Parker, 1871,undated + + + + + + 104 + 108 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 109. NA RG75 SC-42-P189, March 25, 1871, Hendricks et al. to President Grant; NAM M234 R. 327: 927-932, March 6, 1871, S. Gardner to C. Delano, 1871,undated + + + + + + 104 + 109 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 110. NA RG 75 SC-42-P189, March 25, 1871, Hendricks et al. to President Grant, 1871,undated + + + + + + 104 + 110 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 111. LOC Presidential Papers from Micro. US Grant papers Series 2:R.3 Letterbook vol. 1, p. 272, Jan. 25, 1871, O. Babcock to Sec. of Interior, 1871,undated + + + + + + 104 + 111 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 112. RBH Library Grant Papers LS.OFH, Jan. 30, 1871, C. Delano to US Grant, 1871,undated + + + + + + 104 + 112 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 113. NAM M234 R.327: 923-926, Feb. 1, 1871, S. Gardner to Sec. of Interior, 1871,undated + + + + + + 104 + 113 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 114. LOC Presidential Papers from Micro., US Grant Papers Series 2:R.3. Letterbook Vol. 1, p. 280, Feb. 6, 1871, H. Porter to H. Fish, 1871,undated + + + + + + 104 + 114 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 115. NA RG75 B56 F14 S712:F4, Feb. 16, 1871, P. Sawyer to J. Slingerland, 1871,undated + + + + + + 104 + 115 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 116. MMLM NA RG75 SC42.K316 R.1, Nov. 12, 1877, E. Kemble to E. Hayt; NA RG46 B56, F14 5712:F.4, Aug. 26, 1887, Affidavit of Orlin Andrews; NA RG46 B56 F14 5712, April 27, 1888, J.D.C., Atkins to Sec. of Interior; 1877, 1887 and 1888,undated + + + + + + 104 + 116 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 117. MMLM NA RG 75 SC42-216 R.2, Dec. 29, 1885, G. Bennett to Sec. of Interior; MMLM NA RG 75 SC42.2967 R.2, Jan. 16, 1888, Parsons to Atkin; 1885 and 1888,undated + + + + + + 104 + 117 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 118. MMLM NA RG75 SC42.K316 R.1, Nov. 12, 1877, E. Kemble to E. Hayt; NA RG46 B56 F14 S912:F4, July 8, 1878, W. Leeds to Sec. of Interior; 1877 and 1878,undated + + + + + + 104 + 118 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 119. Treaty w/ the Menominee, Feb. 11, 1856, 11 Stat. 679, 1856,undated + + + + + + 104 + 119 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 120. MMLM-NA RG SC42-W1003 R.1, May 29, 1873, E. Smith to C. Delano, 1873,undated + + + + + + 104 + 120 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 121. MMLM NA RG75 SC42 P235, R. 1, July 12, 1873, Gardner et al. to Great Father, 1873,undated + + + + + + 104 + 121 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 122. MMLM RG75 SC42 R.1, Dec. 15, 1873, W. Richardson to E. Smith, 1873,undated + + + + + + 104 + 122 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 123. Ibid.,undated + + + + + + 104 + 123 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 124. MMLM NA RG75 SC42 B1230 R.1, Aug. 2, 1875, Bridgman to Smith; MMLM NA RG75 SC42 B1348 R.1, Nov. 18, 1876, Bridgman to Smith; 1875 and 1876,undated + + + + + + 104 + 124 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 125. MMLM-NA RG75 SC42 B1404 R.1, Dec. 14, 1876, J. Bridgeman to J. Smith, 1876,undated + + + + + + 104 + 125 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 126. MMLM-NA RG 75 SC42 [30] R.1, June 18, 1875, Chase to Smith, 1875,undated + + + + + + 104 + 126 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 127. MMLM NA RG75 SC42.K316 R.1, Nov. 12, 1877, E. Kemble to E. Hayt, 1877,undated + + + + + + 104 + 127 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 128. Ibid.,undated + + + + + + 104 + 128 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 129. Ibid.,undated + + + + + + 104 + 129 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 130. Ibid.,undated + + + + + + 104 + 130 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 131. MMLM NA RG75 SC42.R.1, April 13, 1877, S. Gardner to C. Shurz; MMLM NA RG75 SC42.R.1, July 19, 1879, J. Adams to C. Shurz; MMLM NA RG75 SD42.B799.R.1, July 25, 1879, G. Bennett to R. Breck; MMLM NA RG75 SC42.21962.R.1, Sept. 9, 1885, S. Gardner to F. Miller; MMLM NA RG75 SC42.12388. R.2, April 30, 1886, J. Chicks et al., to COIA; MMLM NA RG75 SC42.40083, Oct. 21, 1895, J. P. Hendricks et al. to Great Father; 1877, 1879, 1885, 1886 and 1895,undated + + + + + + 104 + 131 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 132. MMLM NA RG75 SC42.4020.R.2, Feb. 4, 1886, T. Jennings to COIA, Enclosed clipping from Appleton Cresant and Oshkosh Times, 1886 ,undated + + + + + + 104 + 132 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 133. Ibid.,undated + + + + + + 104 + 133 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 134. Chicago Tribune. June 29, 1882, “Stockbridge Indians,” 1882,undated + + + + + + 104 + 134 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 135. Ibid.,undated + + + + + + 104 + 135 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 136. Laws of WI 1883:327-328, MMLM NA RG75 SC42.31620.R.2, 1886, Memorial of State of WI; 1883 and 1886,undated + + + + + + 104 + 136 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 137. MMLM NA RG75 SC42.3868 R.2. 1892, Petition of the Stockbridge and Munsee tribe, 1892,undated + + + + + + 104 + 137 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 138. General Allotment Act, Feb. 8, 1887, 24 Stats. 388-91, 1887,undated + + + + + + 104 + 138 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 139. 24 US Stat: 388-391,undated + + + + + + 104 + 139 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 140. Ibid.,undated + + + + + + 104 + 140 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 141. Burke Act, May 8, 1906, 34 Stats. 182-83, 1906,undated + + + + + + 104 + 141 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 142. Extract from ARCOIA 1901 quoted in Prucha, Francis P. 1890 Documents of US Indian Policy, University of NEB Press: Lincoln, p. 201; 1890 and 1901,undated + + + + + + 104 + 142 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 143. CCF 38751-1922, Keshena, May 3, 1922, Mohawk to Browne; CCF 44957-1919, 313 Keshena. May 1, 1919, Quinney to COIA; 1919 and 1922,undated + + + + + + 104 + 143 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 144. ARCOIA, Aug. 17, 1903,undated + + + + + + 104 + 144 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 145. Ibid.,undated + + + + + + 104 + 145 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 146. MMLM NA RG 75 SC 42.31620 R.2, Nov. 16, 1886, Gardner to Sec. of Interior, 1886,undated + + + + + + 104 + 146 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 147. HR Hearings on Senate Bill 335, Feb. 29, 1904, Hearings before Committee on Indian Affairs, 1904,undated + + + + + + 104 + 147 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 148. MMLM NA RG75 SC42 S321 R.1, Feb. 10, 1879, David et al. to COIA; MMLM NA RG75 SC42 R.1, Jan. 20, 1880, HR 3678; 1879 and 1880,undated + + + + + + 104 + 148 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 149. SD V2 N76 RG46 B56 51st Congress Committee Papers Sensia-F14 S712:F4, April 1, 1884, Report 1054 of US HR; NA RG46 B56 F2-3, Sept. 20, 1888, Report of the Senate Committee on Indian Affairs; 1884 and 1888,undated + + + + + + 104 + 149 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 150. 51st Congress, 1st Sess., May 2, 1890, Report No. 1856, US HR Committee on Indian Affairs, 1890,undated + + + + + + 104 + 150 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 151. MMLM NA RG75 SC42 R.2, Nov. 23, 1887, Petition of A. Miller and 22 others, 1887,undated + + + + + + 104 + 151 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 152. Files of US Atty. of WI, corres. On Indian matters, 1906-08, 1906-1908. W. Wheeler to S. Young. State v. Gardner and Read; 1906-1908,undated + + + + + + 104 + 152 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 153. NA RG75 Letters Received 45815, June 1, 1910, Tousey to COIA, 1910,undated + + + + + + 104 + 153 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 154. Ibid. Tousey to COIA.,undated + + + + + + 104 + 154 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 155. NA RG21 US Dept. of Justice, US Atty. for Western Dist. Of WI, Case Files 1900-1902. July 23, 1901. OIA Circular L., 1901,undated + + + + + + 104 + 155 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 156. CCF 2709-1911, Keshena 170, Jan. 24, 1911, F. Abbott to E. Henning, 1911,undated + + + + + + 104 + 156 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 157. General Allotment Act of Feb. 8, 1887, 24 Stat. 388-391, 1887,undated + + + + + + 104 + 157 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 158. Act for Relief of the Stockbridge and Munsee tribe of Indians in the state of WI, March 3, 1893, 27 Stat. 744, 1893,undated + + + + + + 104 + 158 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 159. Ibid.,undated + + + + + + 104 + 159 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 160. MMLM NA RG75 SC42.39915 R.2, Sept. 29, 1893, Petition by Hendricks, Gardner and 64 others, enclosed in Lynch to COIA, Oct. 26, 1893,undated + + + + + + 104 + 160 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 161. CCF 95218-1916, 170 Keshena, Aug. 30, 1916, Merritt to Sec. of Interior, 1916,undated + + + + + + 104 + 161 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 162. NA RG75 Letters sent-land LB663, P.49, V.332, March 21, 1904, COIA to Butterfield, 1904,undated + + + + + + 104 + 162 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 163. 58th Congress, 2nd sess., report 173, Jan. 7, 1904, Report of HR Committee on Indian Affairs, 1904,undated + + + + + + 104 + 163 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 164. Allotment of the Stockbridge and Munsee Tribe of WI, June 21, 1906, 27 Stat. 745, Vol. 1, 500, 1906,undated + + + + + + 104 + 164 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 165. Ibid.,undated + + + + + + 104 + 165 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 166. Ibid.,undated + + + + + + 104 + 166 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 167. CCF 78952-1909, 313 Keshena Agency, Oct. 1, 1909, COIA to Sec. of Interior, 1909,undated + + + + + + 104 + 167 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 168. CCF 8436-1908, 313 Keshena Agency, Feb. 8, 1908, Acting COIA to E.A. Morse, 1908,undated + + + + + + 104 + 168 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 169. CCF 49832-1910; Keshena 313, 1907-1939, June 8, 1910, Petition of Stockbridge to President (partial copy), 1910,undated + + + + + + 104 + 169 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 170. Cleland, C. E. 1992, Rites of Conquest, P. 253-257, 1992,undated + + + + + + 104 + 170 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 171. WKP-B37-F8, Aug. 19, 1930, F. Pratt to Gov. W. Kohler; NA RG75 Letters Received 28891, June 11, 1934, W. Beyer to COIA, 1930 and 1934,undated + + + + + + 104 + 171 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 172. Kvasnicka, R. M. and H. J. Viola 1979 COIA 1824-1977. Lincoln: University of NEB Press. Pp. 273-282, 1979,undated + + + + + + 104 + 172 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 173. Johnson-O’Malley Act. April 16, 1934. 48 Stat. 596; Wheeler-Howard Act. June 18, 1934. 48 Stat. 984-988, 1934,undated + + + + + + 104 + 173 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 174. ARCOIA 1933 quoted in Prucha, F. P. 1975 Documents of US Indian Policy. Lincoln: University of NEB Press. Pp. 225, 1975,undated + + + + + + 104 + 174 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 175. Wheeler-Howard Act. June 18, 1934. 48 Stat. 984-988, 1934,undated + + + + + + 104 + 175 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 176. NA RG75 Letters Received 17401. April 1933. F. Robinson to Congressman Boileau, 1933,undated + + + + + + 104 + 176 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 177. CCF 2709-1911, Keshena 170, Jan. 24, 1911, F. Abbott to E. Henning, 1911,undated + + + + + + 104 + 177 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 178. NA RG75 16984-33, May 3, 1933, J. Collier to F. Robinson, Map, 1933,undated + + + + + + 104 + 178 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 179. WKP-B37, F8, Aug. 29, 1929, R. Fischer to W. Kohler, 1929,undated + + + + + + 104 + 179 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 180. Ibid.,undated + + + + + + 104 + 180 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 181. Ibid.,undated + + + + + + 104 + 181 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 182. Ibid.,undated + + + + + + 104 + 182 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 183. Wheeler-Howard Act of June 18, 1934, 48 Stat., 984-988, 1934,undated + + + + + + 104 + 183 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 184. NA RG75 Letters Received 9388, Feb. 20, 1934, F. Robinson to J. Collier, 1934,undated + + + + + + 104 + 184 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 185. NA RG75 Letters Received 28891, June 11, 1934, W. Beyer to COIA, 1934,undated + + + + + + 104 + 5 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 186. NA RG75, Feb. 15, 1935, Report of J.M. Stewart Chief of Land Division, Dept. of Interior, 1935,undated + + + + + + 104 + 186 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 187. NA-Great Lakes, Keshena Agency Files, Feb. 26, 1935, Land Commissioner to R. Frenderburg; NA RG75, Sept. 13, 1935, W. Zimmerman to C. Miller, 1935,undated + + + + + + 104 + 187 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 188. CCF 9757-A-1936, Tomah 068, Nov. 4, 1935, Draft constitution and by-laws, 1935,undated + + + + + + 104 + 188 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 189. Treaty w/ the Menominee 1856, 11 Stat. 679; NA RG75, Jan. 29, 1936, W. Zimmerman to F. Christy, 1936,undated + + + + + + 104 + 189 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 190. Published Constitution and By-Laws of the Stockbridge and Munsee Community. 1938 OIA US Dept. of Interior. US Government Printing Office: Washington D.C., 1938,undated + + + + + + 104 + 190 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 191. Wheeler-Howard Act, June 18, 1934. 48 Stat. 984-988, 1934,undated + + + + + + 104 + 191 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 192. Ibid.,undated + + + + + + 104 + 192 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 193. NA RG75, March 19, 1937, Land Proclamation, 1937,undated + + + + + + 104 + 193 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 194. NA RG75, Feb. 1940, Map of IRA purchases and farm security land purchase, 1940,undated + + + + + + 104 + 194 + Box 7 Stockbridge- Munsee, Cleland report, reference documents: 195. CCF Political Org., Tomah Agency, Jan. 17, 1939, O. Chapman to H. Chicks, 1939,undated + + + + + + 105 + 1 + Box 8 Stockbridge- Munsee, Documents of J. Oberby, tribe witness: State of WI v. Stockbridge- Munsee Community and Robert Chicks, US Dist. Court Eastern Dist. Of WI, Case No. 98-C-0871, 2004,undated + + + + + + 105 + 2 + Box 8 Stockbridge- Munsee, Documents of J. Oberby, tribe witness: Various IRA era Documents, 2001,undated + + + + + + 105 + 3 + Box 8 Stockbridge- Munsee, Documents of J. Oberby, tribe witness: CCF 9157-B 1936 Tomah 067 Aug. 9, 1938 F. Daiker to Sec. of Int.,undated + + + + + + 105 + 4 + Box 8 Stockbridge- Munsee, Documents of J. Oberby, tribe witness: CCF 9157-B 1936 Tomah 067 April 6, 1938 Assoc. Sec. of Int. to P. Farver,undated + + + + + + 105 + 5 + Box 8 Stockbridge- Munsee, Documents of J. Oberby, tribe witness: La Follette/ Sen. Comm. I.A. 1909-WI Hearings,undated + + + + + + 105 + 6 + Box 8 Stockbridge- Munsee, Documents of J. Oberby, tribe witness: HC Comm. I.A. on Allotment of Stockbridge- Munsee, 1904,undated + + + + + + 105 + 7 + Box 8 Stockbridge- Munsee, Documents of J. Oberby, tribe witness: US v. WI, 1922-1927,undated + + + + + + 105 + 8 + Box 8 Stockbridge- Munsee, Documents of J. Oberby, tribe witness: Stockbridge v. US, Court of Claims, 1924 -- 2,undated + + + + + + 105 + 9 + Box 8 Stockbridge- Munsee, Documents of J. Oberby, tribe witness: WI v. Bowman, 1945-46,undated + + + + + + 105 + 10 + Box 8 Stockbridge- Munsee, Documents of J. Oberby, tribe witness: Tomah Supt. Annual Reports, NAM 1011,undated + + + + + + 105 + 11 + Box 8 Stockbridge- Munsee, Documents of J. Oberby, tribe witness: Keshena Agency Correspondence-NA- Great Lakes, RG 75, “No land money”, 1913-1915,undated + + + + + + 105 + 12 + Box 8 Stockbridge- Munsee, Documents of J. Oberby, tribe witness: Keshena Agency, Annual Census, MS95, Stockbridge- Munsee, 1910-1916,undated + + + + + + 105 + 13 + Box 8 Stockbridge- Munsee, Documents of J. Oberby, tribe witness: Tomah Supt. Correspondence – School Records, NA, Great Lakes,undated + + + + + + 105 + 14 + Box 8 Stockbridge- Munsee, Documents of J. Oberby, tribe witness: Tomah School, 1928-1950, Stockbridge- Munsee Project,undated + + + + + + 105 + 15 + Box 8 Stockbridge- Munsee, Documents of J. Oberby, tribe witness: RG75, CCF, Keshena, 1907-1937,undated + + + + + + 105 + 16 + Box 8 Stockbridge- Munsee, Documents of J. Oberby, tribe witness: Congress, Act of 6/7/1924, Bill File,undated + + + + + + 105 + 17 + Box 8 Stockbridge- Munsee, Documents of J. Oberby, tribe witness: US v. Anderson, 1913-1915,undated + + + + + + 105 + 18 + Box 8 Stockbridge- Munsee, Documents of J. Oberby, tribe witness: Congress- Serial Set Extracts,undated + + + + + + 105 + 19 + Box 8 Stockbridge- Munsee, Documents of J. Oberby, tribe witness: WI Conservation Comm. 1928-1967, State HS WI,undated + + + + + + 105 + 20 + Box 8 Stockbridge- Munsee, Documents of J. Oberby, tribe witness: Red Springs School Dist.- SHSW GB,undated + + + + + + 105 + 21 + Box 8 Stockbridge- Munsee, Documents of J. Oberby, tribe witness: RG75 CCF IRA, from 3 separate derived files,undated + + + + + + 106 + 1 + Bay Mills, Related documents, Box A: Deposition of Charles E. Cleland (continuation) Dec. 14, 1976, US v. MI, 1976,undated + + + + + + 106 + 2 + Bay Mills, Related documents, Box A: Deposition of Charles E. Cleland, Dec. 13, 1976, US v. MI, 1976,undated + + + + + + 106 + 3 + Bay Mills, Related documents, Box A: Deposition of Charles E. Cleland, March 6, 1985,undated + + + + + + 106 + 4 + Bay Mills, Related documents, Box A: Deposition of Charles E. Cleland, Jan. 23, 1985,undated + + + + + + 106 + 5 + Bay Mills, Related documents, Box A: Deposition of Arthur L. LeBlanc, Nov. 15, 1976, US v. MI,undated + + + + + + 106 + 6 + Bay Mills, Related documents, Box A: Deposition of Joseph K. Lumsden, Nov. 15, 1976, US v. MI,undated + + + + + + 106 + 7 + Bay Mills, Related documents, Box A: Deposition of Dr. Wayne Tody, Jan. 19, 1977, US v. MI,undated + + + + + + 106 + 8 + Bay Mills, Related documents, Box A: Deposition of Ronald Kaiser, Jan. 20, 1977, US v. MI,undated + + + + + + 106 + 9 + Bay Mills, Related documents, Box A: Deposition of John Scott, Jan. 19, 1977, US v. MI,undated + + + + + + 106 + 10 + Bay Mills, Related documents, Box A: Deposition of Asa Wright, Jan. 20, 1977, US v. MI,undated + + + + + + 106 + 11 + Bay Mills, Related documents, Box A: Deposition of Dr. Helen Tanner, April 5, 1977,undated + + + + + + 106 + 12 + Bay Mills, Related documents, Box A: Deposition of Dr. Helen Tanner, April 4, 1977,undated + + + + + + 106 + 13 + Bay Mills, Related documents, Box A: Supplementary Report, US of America v. State of MI, No. M 26- 73 C.A. USD.C., Western Dist. of MI, Helen Hornbeck Tanner, Ph.D., Aug. 1976,undated + + + + + + 106 + 14 + Bay Mills, Related documents, Box A: Report, US of America v. State of MI, No. M 26 – 73 C.A., USD.C., Western Dist. of MI, northern Division, Helen Hornbeck Tanner, Ph. D., April 1974,undated + + + + + + 106 + 15 + Bay Mills, Related documents, Box A: Deposition of Helen Hornbeck Tanner, Ph. D., Jan. 11, 1977, US v. MI,undated + + + + + + 106 + 16 + Bay Mills, Related documents, Box A: Deposition of Helen Hornbeck Tanner, Ph. D., Jan. 10, 1977, US v. MI,undated + + + + + + 106 + 17 + Bay Mills, Related documents, Box A: Deposition of Dr. Philip Mason, Jan. 12, 1977, US v. MI, (continuation),undated + + + + + + 106 + 18 + Bay Mills, Related documents, Box A: US v. MI, No. M26—73, Deposition of Dr. Philip Mason, April 6, 1977,undated + + + + + + 106 + 19 + Bay Mills, Related documents, Box A: US v. MI, No. M26—73, Deposition of Dr. Philip Mason, April 7, 1977,undated + + + + + + 106 + 10 + Bay Mills, Related documents, Box A: US v. MI, Civil No. M26-73, W.D. MI, Deposition Transcripts and Exhibits of Drs. Cleland and Bishop, 1985,undated + + + + + + 107 + 1 + Bay Mills, KBIC Tax Case, KBIC Boundary and Tax Case, Crown v Sarnia, Box B: Printed Exhibits US v MI Phase I,undated + + + + + + 107 + 2 + Bay Mills, KBIC Tax Case, KBIC Boundary and Tax Case, Crown v Sarnia, Box B: US vs MI – Pleadings,undated + + + + + + 107 + 3 + Bay Mills, KBIC Tax Case, KBIC Boundary and Tax Case, Crown v Sarnia, Box B: Chippewa Co. Register of Deeds. Deeds to Methodist Mission – Bay Mills,undated + + + + + + 107 + 4 + Bay Mills, KBIC Tax Case, KBIC Boundary and Tax Case, Crown v Sarnia, Box B: Registration of Fishery Agree. Court Filings,undated + + + + + + 107 + 5 + Bay Mills, KBIC Tax Case, KBIC Boundary and Tax Case, Crown v Sarnia, Box B: Draft Finding of Fact. By Tribes in US v MI Phase II,undated + + + + + + 107 + 6 + Bay Mills, KBIC Tax Case, KBIC Boundary and Tax Case, Crown v Sarnia, Box B: US v MI Rept #6 US Understanding 2004 Phase 2,undated + + + + + + 107 + 7 + Bay Mills, KBIC Tax Case, KBIC Boundary and Tax Case, Crown v Sarnia, Box B: US v MI Rept #8 Tribes’ Understanding 2004 Phase 2,undated + + + + + + 107 + 8 + Bay Mills, KBIC Tax Case, KBIC Boundary and Tax Case, Crown v Sarnia, Box B: US v MI Rept #9 Statements Understanding 2004 Phase 2,undated + + + + + + 107 + 9 + Bay Mills, KBIC Tax Case, KBIC Boundary and Tax Case, Crown v Sarnia, Box B: KBIC Tax Case (Includes: Appeal to Court, Patent Allotments, Land sample database for land use histories),undated + + + + + + 107 + 10 + Bay Mills, KBIC Tax Case, KBIC Boundary and Tax Case, Crown v Sarnia, Box B: KBIC Boundary Pleadings (Includes: State/Local Law Enforcement jurisdiction land/water, Opposition to D. Motion, Summary and Analysis of Treaty 8/2, Pre-Trial Brief, Community Post Trial Brief, Post Trial Reply Brief),undated + + + + + + 107 + 11 + Bay Mills, KBIC Tax Case, KBIC Boundary and Tax Case, Crown v Sarnia, Box B: Crown v Sarnia Misc. Supplemental Docs.,undated + + + + + + 107 + 12 + Bay Mills, KBIC Tax Case, KBIC Boundary and Tax Case, Crown v Sarnia, Box B: Crown v Sarnia Misc. Supplemental Documents 2 (Includes: American Indians File Binders #12-14, List and examples of relevant newspaper articles, Answers and Understandings given at cross-examination of Dr. Cleland 1997, Legal Presentation to Council 1996 and Correspondence w/ Chief Dan Miskokomon, Exec Summary of Archaeological Research, Statement of Claim 1997, Superior Crt. Of Justice Chippewas of Sarnia Band vs, Canada 1992),1992, 1996-1997 + + + + + + 108 + 1 + KBIC, Crown v Sarnia, Box C: Ontario Court, File No. 95-CU-92484 Between Chippewas of Sarnia Band and Canada. 240,undated + + + + + + 108 + 2 + KBIC, Crown v Sarnia, Box C: Ontario Court, File No. 95-CU-92484 Between Chippewas of Sarnia Band and Canada. 114,undated + + + + + + 108 + 3 + KBIC, Crown v Sarnia, Box C: Ontario Court, File No. 95-CU-92484 Between Chippewas of Sarnia Band and Canada. 1,undated + + + + + + 108 + 4 + KBIC, Crown v Sarnia, Box C: Synopsis of Chippewas of Sarnia Band vs Canada (AG),undated + + + + + + 108 + 5 + KBIC, Crown v Sarnia, Box C: Consolidated Document List – Sarnia,undated + + + + + + 108 + 6 + KBIC, Crown v Sarnia, Box C: Sarnia Report,undated + + + + + + 108 + 7 + KBIC, Crown v Sarnia, Box C: AG Documents: Supplementary List of Documents (Large Oversize Binder),undated + + + + + + 108 + 8 + KBIC, Crown v Sarnia, Box C: Additional Historical Documents Volume 1 of 2 MC001 to MC012 (Large Oversize Binder),undated + + + + + + 108 + 9 + KBIC, Crown v Sarnia, Box C: Additional Historical Documents Volume 2 of 2 MC001 to MC012 (Large Oversize Binder),undated + + + + + + 109 + 1 + KBIC, Boundary documents, Box D: List of Documents Which Will Be Used for Testimony in Keweenaw Bay Indian Community vs. MI,undated + + + + + + 109 + 2 + KBIC, Boundary documents, Box D: Keweenaw Bay Indian Community vs. State of MI Case No. M87-278-CA2 Deposition of Dr. James A. Clifton,undated + + + + + + 109 + 3 + KBIC, Boundary documents, Box D: Keweenaw Bay Indian Community vs. State of MI Case No. M87-278-CA2 Continuation of Deposition of Dr. James A. Clifton,undated + + + + + + 109 + 4 + KBIC, Boundary documents, Box D: Keweenaw Bay Indian Community vs. State of MI Case No. M87-278-CA2 Deposition of James M. McClurken,undated + + + + + + 109 + 5 + KBIC, Boundary documents, Box D: Keweenaw Bay Indian Community (for MAG) 1988 Document Abstract (Large Oversize Binder),1988 + + + + + + 109 + 6 + KBIC, Boundary documents, Box D: Clifton Documents w/ Abstracts for KBIC Boundary Case Folder 1 (Large Oversize Binder),undated + + + + + + 109 + 7 + KBIC, Boundary documents, Box D: Clifton Documents w/ Abstracts for KBIC Boundary Case Folder 3 (Large Oversize Binder),undated + + + + + + 110 + 1 + KBIC, Boundary Case, Box E: Clifton Docs – KBIC Boundary Case,undated + + + + + + 110 + 2 + KBIC, Boundary Case, Box E: Keweenaw Bay Indian Community vs. State of MI Case No. M87-278-CA2 Deposition of Charles E. Cleland, PhD,undated + + + + + + 110 + 3 + KBIC, Boundary Case, Box E: KBIC Boundary Case Testimony,undated + + + + + + 110 + 4 + KBIC, Boundary Case, Box E: Keweenaw Bay Indian Community (for MAG) 1988 Document Abstract (Large Oversize Binder),1988 + + + + + + 110 + 5 + KBIC, Boundary Case, Box E: Clifton Documents w/ Abstracts for KBIC Boundary Case Folder 2 (Large Oversize Binder),undated + + + + + + 110 + 6 + KBIC, Boundary Case, Box E: Clifton Documents w/ Abstracts for KBIC Boundary Case Folder 4 (Large Oversize Binder),undated + + + + + + 111 + 1 + Saginaw Chippewa Draft Report, Box F: Cleland, Charles E., Deposition Transcript, 12/14/92, v. 1 of 3, MI 91-CV-10103-BC, received Jan. 1993,1992-1993 + + + + + + 111 + 2 + Saginaw Chippewa Draft Report, Box F: Cleland, Charles E., Deposition Transcript, 12/15/92, v. 2 of 3, MI 91-CV-10103-BC, received Jan. 1993,1992-1993 + + + + + + 111 + 3 + Saginaw Chippewa Draft Report, Box F: Cleland, Charles E., Deposition Transcript, 12/16/92, v. 3 of 3, MI 91-CV-10103-BC, received Jan. 1993,19921993 + + + + + + 111 + 4 + Saginaw Chippewa Draft Report, Box F: Clifton, James A., Deposition Transcript, 12/1/92, v. 1 of 4, MI 91-CV-10103-BC, received Jan. 1993,19921993 + + + + + + 111 + 5 + Saginaw Chippewa Draft Report, Box F: Clifton, James A., Deposition Transcript, 12/1/92, v. 2 of 4, MI 91-CV-10103-BC, received Jan. 1993,19921993 + + + + + + 111 + 6 + Saginaw Chippewa Draft Report, Box F: Clifton, James A., Deposition Transcript, 12/1/92, v. 3 of 4, MI 91-CV-10103-BC, received Jan. 1993,19921993 + + + + + + 111 + 7 + Saginaw Chippewa Draft Report, Box F: Clifton, James A., Deposition Transcript, 12/1/92, v. 4 of 4, MI 91-CV-10103-BC, received Jan. 1993,19921993 + + + + + + 111 + 8 + Saginaw Chippewa Draft Report, Box F: McClurken, James M., Deposition Transcript, 12/17/92, v. 1 of 1, US v. MI 91-CV-10103-Bc, received Jan. 1993,19921993 + + + + + + 111 + 9 + Saginaw Chippewa Draft Report, Box F: Newell, Alan S., Deposition Transcript, 12/9/92, v. 1 of 1, US v. MI 91-CV-10103-BC, received Dec. 1992,1992 + + + + + + 111 + 10 + Saginaw Chippewa Draft Report, Box F: Overview of Federal Relations w/ the Saginaw, Swan Creek and Black River Bands…, 1910-1934, by Alan S. Newell,Oct. 1992 + + + + + + 111 + 11 + Saginaw Chippewa Draft Report, Box F: Brief Treaty History of the Saginaw, Black River and Swan Creek Chippewa, by Charles E. Cleland,May 1991 + + + + + + 111 + 12 + Saginaw Chippewa Draft Report, Box F: Summary of Cross-Examination of Dr. Charles Cleland,June 1997 + + + + + + 112 + 1 + Unpublished Reports, Box G: Continuity w/ Change: Settlement-Subsistence Strategies and Artifact Patterns of the Southwestern Ontario Ojibwa, 1780-1861 by Neal Ferris, M.A. Thesis,July 1989 + + + + + + 112 + 2 + Unpublished Reports, Box G: Saulteur-Ojibwa Fishery at Sault Ste. Marie, 1640-1920, by Graham A. MacDonald, M.A. thesis,1977 + + + + + + 112 + 3 + Unpublished Reports, Box G: Chippewa Land of Keweenaw Bay: An Allotment History by Mark Keller,April 1981 + + + + + + 112 + 4 + Unpublished Reports, Box G: Potawatomi by James a. Clifton, final chapter draft,[after 1975] + + + + + + 112 + 5 + Unpublished Reports, Box G: Reports of E.J. Brooks on Michigan Indian Land Fraud, 1877-1878,undated + + + + + + 112 + 6 + Unpublished Reports, Box G: “Private Land Grants in MI Awarded by the Treaty 1821”, in Chronicle and Newsletter, of MH Soc. 24, 4, Winter 2004, by LeRoy Barnett,2004 + + + + + + 112 + 7 + Unpublished Reports, Box G: Draft I, Mackinac Bands from Durant Roll,undated + + + + + + 112 + 8 + Unpublished Reports, Box G: Chippewa Tribe of Indians of Lake Superior, in NAM 574 R 22 F0265 and NAM 574 R 30, 1830, 1849,undated + + + + + + 112 + 9 + Unpublished Reports, Box G: Brief History of the Bay Mills Indian Community,undated + + + + + + 112 + 10 + Unpublished Reports, Box G: BHC-DPL, MS/Johnston, Geol, [1854] Journal of a Trip w/ US Agent Gilbert to a council at LaPointe, DS:1854,undated + + + + + + 112 + 11 + Unpublished Reports, Box G: Notes on Blueberry Business in the Raco Area, 1943,undated + + + + + + 112 + 12 + Unpublished Reports, Box G: Rainy River Sturgeon: An Ojibway Resource in the Fur Trade Economy by T.E. Holzkamm, V.P. Lytwyn, L.G. Waisbert, in Canadian Geographer, 32, no. 3,1988 + + + + + + 112 + 13 + Unpublished Reports, Box G: US Indian Service: Sketch of the Development of the BIA and of Indian Policy, 1956, Chapters 2-4 from Handbook of Federal Indian Law by F.S. Cohen, 1935,undated + + + + + + 112 + 14 + Unpublished Reports, Box G: WPA Arts and Crafts Projects: The Impact and Errors of a Federal Economic Development Project, by P. Dyer,1990 + + + + + + 112 + 15 + Unpublished Reports, Box G: DuRanquet Relations, Relations of Father Dominique DuRanquet, 1850,undated + + + + + + 112 + 16 + Unpublished Reports, Box G: List of Private Land Claims in MI, NA RG49, 1952,undated + + + + + + 112 + 17 + Unpublished Reports, Box G: Maps Showing Territory Covered by Various MI land officers in Land Offices, Twp Plats and Field Notes from MF, RG 49, 1960,undated + + + + + + 112 + 18 + Unpublished Reports, Box G: 1854 and 8155 Treaties Concerning MI Chippewas During 1971, Decisions made by MI Supreme Court and 91st Judicial Dist. Court,1971 + + + + + + 112 + 19 + Unpublished Reports, Box G: Correlated Changes in Ottawa Kingship and Social Organization by J.E. Willts, M.A. Thesis, 1948,undated + + + + + + 112 + 20 + Unpublished Reports, Box G: Hurons of Detroit, Appendix I of La Mission Des Jesuits, Chez Les Hurons, 1634-1650, by Lucien Campeau, S.J.,1987 + + + + + + 112 + 21 + Unpublished Reports, Box G: Indians Before the Supreme Court, 1890-1900,undated + + + + + + 112 + 22 + Unpublished Reports, Box G: BIA Boarding School: Theories of Resistance and Social Reproduction, by Alice Littlefield in Humanities and Society, 13, no. 4,1989 + + + + + + 112 + 23 + Unpublished Reports, Box G: Civil Rights and the Housing and Community Development Act of 1974 v. III, Chippewa People of Sault Ste. Marie,1976 + + + + + + 112 + 24 + Unpublished Reports, Box G: His Majesty’s Indian Allies: Native Peoples, the British Crown and the War of 1812, by Robert S. Allen, in MI Historical Review 14,Fall 1988 + + + + + + 112 + 25 + Unpublished Reports, Box G: Indian Visits: Stereotypes of MN”s Native People, By Bruce M.Waite, in MN History,Fall 1992 + + + + + + 112 + 26 + Unpublished Reports, Box G: Indian Visits: Robert Stuart: A Man Who Meant Business, by Donald W. Voelker, in MI History Magazine,Sept./Oct. 1990 + + + + + + 112 + 27 + Unpublished Reports, Box G: Indian Visits: Re-emergent Wyandot: A Study in Ethnogenesis on the Detroit River Borderland, 1747, by James A. Clifton, chapter in Western Dist.: Papers from the Western Dist. Conference,1982 + + + + + + 112 + 28 + Unpublished Reports, Box G: Draft- Conflict Resolution and Aboriginal Fishing Issues: The Need for Values-Added Processes, by Peggy J. Blair, [after 1996],undated + + + + + + 112 + 29 + Unpublished Reports, Box G: Chippewa of Eastern Lower MI, by Helen H. Tanner, 1965, 1991 copy,1991 + + + + + + 112 + 30 + Unpublished Reports, Box G: Various Materials re: MI Indians,undated + + + + + + 112 + 31 + Unpublished Reports, Box G: Misc. Reports, Territorial Papers, American State Papers,undated + + + + + + 112 + 32 + Unpublished Reports, Box G: Misc. Documents- MI Indians,undated + + + + + + 112 + 33 + Unpublished Reports, Box G: British Influence Over Indians in the MI Territory, 1815-1836, by John H. Humins, Bruce A. Rubenstein, [after 1967],undated + + + + + + 112 + 34 + Unpublished Reports, Box G: Ottawa: Trading of the Upper Great Lakes, 1615-1700, M.A. Thesis by Leo G. Waisberg,Sept. 1977 + + + + + + 112 + 35 + Unpublished Reports, Box G: Study of the Socioeconomic Status of MI Indians, by Gov’s COIA, Nov. 1971, received 1975,Sept. 1971, 1975 + + + + + + 112 + 36 + Unpublished Reports, Box G: Robinson Treaties of 1850: A Case Study…., by James Morrison, March 1994,1994 + + + + + + 112 + 37 + Unpublished Reports, Box G: Surveys and Field Notes of Private Claims, Military and Reservations…, MI State Archives RG 60-8 Lot 9,1982 + + + + + + 112 + 38 + Unpublished Reports, Box G: Ethnohistorical Report on the Grand Traverse Ottawas, Dr. Richard White,[after 1977] + + + + + + 112 + 39 + Unpublished Reports, Box G: MI Indian Lands-General (legal-size folder in Box of letter-size folders),undated + + + + + + 113 + 1 + Finding Aids, Lists of collections, Box H (.25 cu. ft. Box): Draft of Bibliography on MI Native American, 1850-1900,1974 + + + + + + 113 + 2 + Finding Aids, Lists of collections, Box H (.25 cu. ft. Box): Guide to Papers of Neville Public Museum of Brown Co., WI,1995 + + + + + + 113 + 3 + Finding Aids, Lists of collections, Box H (.25 cu. ft. Box): Guide to Records at State Archives of MI, various topics, 1977-1994,1994 + + + + + + 113 + 4 + Finding Aids, Lists of collections, Box H (.25 cu. ft. Box): Guide to Records of Mackinac Agency, Baraga, MI,undated + + + + + + 114 + 1 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: MI AG Opinion June 30, 1914,undated + + + + + + 114 + 2 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: US vs John,undated + + + + + + 114 + 3 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: Legal Cases, Varied,undated + + + + + + 114 + 4 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: Decisions in Canadian Indian Cases (Includes: Smokehouse v Queen, Gladstone v Queen, Côté et al. v Queen, Adams v A.G. Canada and Queen, Vander Peet v Queen, Delgamuukw et al. v Queen),undated + + + + + + 114 + 5 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: US Dist. Court W. Dist. MI, S. Div. – Grand Traverse Band of Ottowa and Chippewa vs. MI Case No. 1:96-CV-466, Opinion,undated + + + + + + 114 + 6 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: US Statutes at Large Vol. 4:234 March 2, 1827 Stat. 2, Ch. LII, “Act to Authorize the State of IN”,undated + + + + + + 114 + 7 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: US Statute at Large Vol.4:473 March 2, 1831 Stat 11, Chap. LXVIII “Act confirming the Selections heretofore made at lands for construction at the MI Rd”,undated + + + + + + 114 + 8 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: US Statutes at Large Vol. 4:702 June 28, 1834 Stat. 1 Chap. CI “Act to Authorize…”,undated + + + + + + 114 + 9 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: US Statutes at Large Vol. 4:718 June 30, 1834 Stpt. 1 Chap. CXL “Act to and in the Construction of Certain Roads in the Territory of MI”,undated + + + + + + 114 + 10 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: General Allotment Act Feb. 8, 1887,undated + + + + + + 114 + 11 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: Acts of The Legislature of the State of MI April 2, 1850 “Act to Incorporate the St. Mary’s Academy”,undated + + + + + + 114 + 12 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: Perry v City of Sault Ste. Marie,undated + + + + + + 114 + 13 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: Various Tax Cases,undated + + + + + + 114 + 14 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: WAU-PE-MAN-QUA v Aldrich,undated + + + + + + 114 + 15 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: Solem v Bartlett US Supreme Court,undated + + + + + + 114 + 16 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: ONEIDA Nation v Sherrill et al. US Court of Appeals 2nd Circuit,undated + + + + + + 114 + 17 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: Auditor Gen. v Sarah Williams, MI. Supreme Court,undated + + + + + + 114 + 18 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: US v Holliday, US Supreme Court,undated + + + + + + 114 + 19 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: KN Indians, US Supreme Court,undated + + + + + + 114 + 20 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: Worchester v Georgia, US Supreme Court,undated + + + + + + 114 + 21 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: CASS Co. v Leech Lake, 8th Circuit Court of Appeals,undated + + + + + + 114 + 22 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: US Supreme Court Decision, Yakima,undated + + + + + + 114 + 23 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: MI Civil Jurisprudence, Indian Law Section,undated + + + + + + 114 + 24 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: Garner, Bryan A. 2001 Black’s Law Dictionary,2001 + + + + + + 114 + 25 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: Sokaogon Chips v Exxon,undated + + + + + + 114 + 26 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: Bennett Decision, Saginaw,undated + + + + + + 114 + 27 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: S. Dakota v Bourland,undated + + + + + + 114 + 28 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: Yakima v Confed Bands, Cardinal v USA,undated + + + + + + 114 + 29 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: WI v Baker, Amicus Curiae Brief,undated + + + + + + 114 + 30 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: Bay Mills People v IRS,undated + + + + + + 114 + 31 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: People v Le Blanc (Folder 1 of 2),undated + + + + + + 114 + 32 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: People v Le Blanc (Folder 2 of 2),undated + + + + + + 114 + 33 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: US v Ruby,undated + + + + + + 114 + 34 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: Red Lake and Brun v US,undated + + + + + + 114 + 35 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: Washington v Fishing Vessel,undated + + + + + + 114 + 36 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: Fee v Brown, K. Bre,undated + + + + + + 114 + 37 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: LCO v Voigt Decision,undated + + + + + + 114 + 38 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: US v Bouchard,undated + + + + + + 114 + 39 + Various Legal Cases, Acts/ Statutes, Canadian Cases, Box I: Clifton Report, Washington Shellfish,1993 + + + + + + 115 + 1 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: US Dist. Court, Dist. of MN 5th Division, Fond du Lac vs MN, Deposition of Dr. Charles E. Cleland Volumes 1 and 2, Civil No. 5-92-159,undated + + + + + + 115 + 2 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: Fond du Lac,undated + + + + + + 115 + 3 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: Grand Portage, G.R. v Minn.,undated + + + + + + 115 + 4 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: Summary of Testimony for Grand Portage v MN,undated + + + + + + 115 + 5 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: Newspaper Article for Mille Lacs Case,June 1994 + + + + + + 115 + 6 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: MN vs. Mille Lacs Band, Misc. Materials,1998-1999 + + + + + + 115 + 7 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: List of Transcribed Documents ML,1994 + + + + + + 115 + 8 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: ML Boundary Case – expert witness reports,undated + + + + + + 115 + 9 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: Mille Lac Decision,1994 + + + + + + 115 + 10 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: Mille Lacs 2004 – court opinion,2004 + + + + + + 115 + 11 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: ML Boundary Case – Order for 203 dismissed,undated + + + + + + 115 + 12 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: Summary of Testimony Mille Lac 1987 – Cleland and McClurken,1987 + + + + + + 115 + 13 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: Errata for ML Report 1994 Cleland,1994 + + + + + + 115 + 14 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: Stockbridge – Munsee Boundary Dispute, Filings and Reports,undated + + + + + + 115 + 15 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: Stockbridge Munsee Published Docs,2002 + + + + + + 115 + 16 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: Cleland, Charles “A Research Report on the 19th Century Patterns of Resource Use…”,undated + + + + + + 115 + 17 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: Clifton, J.A. Lac Court Oreilles Band and Treaties of 1857, 1842, 1854,undated + + + + + + 115 + 18 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: Deposition of: Daniel W. Bromley Date: Tuesday,July 10, 1990 + + + + + + 115 + 19 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: Deposition of Philip Handrick Friday,Sept. 28, 1990 + + + + + + 115 + 20 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: WI vs. Stockbridge – Munsee Case No. 98-C-0871 Materials,2001-2002 + + + + + + 115 + 21 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: WI vs Stockbridge – Munsee – Index – Plaintiff’s Expert Reports,2001 + + + + + + 115 + 22 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: Stockbridge – Munsee Indian Reservation Boundary Report, 1856-2001,2001 + + + + + + 115 + 23 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: Deposition of James M. McClurken Friday,Sept. 28, 1990 + + + + + + 115 + 24 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: Deposition of James M. McClurken Tuesday,Nov. 17, 1987 + + + + + + 115 + 25 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: Deposition of Charles E. McCleland, Lac Courte Oreilles Band vs State of WI vs US,undated + + + + + + 115 + 26 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: Dec. 9, 1985 (Phase I) Dr. Charles Cleland/Direct,Dec. 9, 1985 + + + + + + 115 + 27 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: Dec. 10, 1985 (Phase I) Dr. Charles Cleland/Direct,Dec. 10, 1985 + + + + + + 115 + 28 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: Dec. 11, 1985 (Phase I) Dr. Charles Cleland/Direct/Cross/Redirect,Dec. 11, 1985 + + + + + + 115 + 29 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: Dec. 16, 1985 (Phase I) Dr. Charles Cleland/Direct,Dec. 16, 1985 + + + + + + 115 + 30 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: Dec. 10, 1990 (Phase I) Dr. Charles Cleland/Direct,Dec. 10, 1985 + + + + + + 115 + 31 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: “Impact of the US Navy’s Project ELF”,July 1, 1999 + + + + + + 115 + 32 + LCO Case, Stockbridge-Munsee, Mille Lacs, Fond du Lac, Grand Portage, Box J: LCO,undated + + + + + + 116 + 1 + Crandon Mine, Menominee Case, Treaties, US, Box K: Crandon Mine,undated + + + + + + 116 + 2 + Crandon Mine, Menominee Case, Treaties, US, Box K: Cleland and McClurken 1991 Summary of Menominee Research,1991 + + + + + + 116 + 3 + Crandon Mine, Menominee Case, Treaties, US, Box K: Menominee Language in Comparison to English by Pentland,1996 + + + + + + 116 + 4 + Crandon Mine, Menominee Case, Treaties, US, Box K: Settlement in Northeastern WI, 1820-90 by White,1996 + + + + + + 116 + 5 + Crandon Mine, Menominee Case, Treaties, US, Box K: Menominee Use of Natural Resources in N. WI by McClurken,1996 + + + + + + 116 + 6 + Crandon Mine, Menominee Case, Treaties, US, Box K: Menominee Treaty Privilege of 1831 Is Not an Interest in Land by Lund,1996 + + + + + + 116 + 7 + Crandon Mine, Menominee Case, Treaties, US, Box K: Overview of…Menominee Proto and Prehistory, Report #398 by Overstreet for Mr. Fish,1996 + + + + + + 116 + 8 + Crandon Mine, Menominee Case, Treaties, US, Box K: Menominee Notes,undated + + + + + + 116 + 9 + Crandon Mine, Menominee Case, Treaties, US, Box K: Excerpts from “Territorial Papers of the US” edited by Carter, Vol. XII, 1829-1837,undated + + + + + + 116 + 10 + Crandon Mine, Menominee Case, Treaties, US, Box K: Menominee – Sturgeon (Beck),undated + + + + + + 116 + 11 + Crandon Mine, Menominee Case, Treaties, US, Box K: Archaeological Proposal GLARK,undated + + + + + + 116 + 12 + Crandon Mine, Menominee Case, Treaties, US, Box K: Summary of Research for the Menominee Tribe,undated + + + + + + 116 + 13 + Crandon Mine, Menominee Case, Treaties, US, Box K: NAM M21 R.21:234-5 April 18, 1837,undated + + + + + + 116 + 14 + Crandon Mine, Menominee Case, Treaties, US, Box K: Petition Before the ICC No. 129, Menominee v USA June 26, 1951,undated + + + + + + 116 + 15 + Crandon Mine, Menominee Case, Treaties, US, Box K: Rept. House Comm. on Indian Affairs Jan. 15, 1846 Rept. No. 90, 29 Congress 1st Session,undated + + + + + + 116 + 16 + Crandon Mine, Menominee Case, Treaties, US, Box K: Court of Claims Case No. 44304 Menominee Tribe v US Jan. 22, 1959,undated + + + + + + 116 + 17 + Crandon Mine, Menominee Case, Treaties, US, Box K: US Dist. Court for W. Dist. of WI, Menominee of WI v WI, Opinion and Order No. 1, Case No. 95-C-0030-C,undated + + + + + + 116 + 18 + Crandon Mine, Menominee Case, Treaties, US, Box K: JL of George P. Porter, Sept. 11, 1832, and Treaty w/ Menominee, Feb. 22, 1833, Confidential No., 22nd Congress 2nd Session,undated + + + + + + 116 + 19 + Crandon Mine, Menominee Case, Treaties, US, Box K: Report of the Senate Committee on Ind. Affairs, Feb. 14, 1853, 32nd Congress 2nd Session,undated + + + + + + 116 + 20 + Crandon Mine, Menominee Case, Treaties, US, Box K: WI Historical Collections re: Menominee, 1836, 1857,undated + + + + + + 116 + 21 + Crandon Mine, Menominee Case, Treaties, US, Box K: Region 5 (Green Bay area) Cultural Overview by Janet M. Speth,1995 + + + + + + 116 + 22 + Crandon Mine, Menominee Case, Treaties, US, Box K: Congressional Globe, various items and years,undated + + + + + + 116 + 23 + Crandon Mine, Menominee Case, Treaties, US, Box K: Supreme Court of the US, Menominee Tribe of WI vs WI, Writ of Ceritorari and Reply to Brief, Case No. 98-1306,undated + + + + + + 116 + 24 + Crandon Mine, Menominee Case, Treaties, US, Box K: Treaties (in Large Expandable Folder): JL of Treaty of Greenville; Manypenny Treaties; Notes of Manypenny Treaties; Treaty of Greenville 1795; Treaty Ottawa, Nov. 17, 1807, 7 Stat., 105; Treaty w/ Chippewa 1808, 7/Stat 112; Treaty of Springwells, 1815; Treaty w/ Ottawa, 1816; Treaty w/ Menominee, 1817; Treaty Wyandot, etc., Sept. 29, 1817, 7 Stat: 160; Treaty of Saginaw, 1819; Treaty Ottawa/Chipp, July 6, 1820, 7 Stat:207 Treaty JL. Treaty of Chicago 1821; Treaty Ottawa, etc., Aug. 29, 1821, 7 Stat:207; Sioux, etc., Aug. 19, 1825, 7 Stat. 272; Treaty-Chippewa, Aug. 5, 1826, Stat 7:290; Treaty Potawatomi, Sept. 19, 1827, 7 Stat: 305; Treaty-Chippewa, Aug. 11, 1827, 7 Stat. 303; Treaty Potawatomi, Sept. 20, 1928; Treaty Choctaw, Sept. 27, 1830, 7 Stat. 333; Treaty w/ Menominee, 1831; Treaty Winnebago, Sept. 15, 1832, 7 stat. 370; Treaty Chickasaw, Oct. 20, 1832, 7 stat. 381; Treaty Cherokee, Dec. 29, 1835, 7 stat. 478; Treaty w/ Menominee, 1836; Treaty Chippewa, July 29, 1837, 7 stat. 536; Treaty Winnebago, Nov. 1, 1837, 7 stat: 544; Treaty Winnebago, Oct. 13, 1846, 9 stat. 878; Treaty of Fond du Lac, Aug. 2, 1847, 9 stat. 904; Chip: Pillager [Pillager Band of Chippewas], Aug. 21, 1847, 9 stat. 908; Treaty w/ Menominee, Oct. 18, 1848; Robinson Treaty, 1850; Treaty Otto [Ottoe] and MO, Mar. 10, 1854, 10 Stat: 1038; Delawares, May 6, 1854, 10 Stat. 1048; Shawnee, May 10, 1854, 10 Stat. 1053; Treaty Miami, June 5, 1854, 10 Stat: 1093; Treaty Kaskakia/ Peoria, etc., May 30, 1854, 10 stat: 1082; Treaty Kickapoo, May 18, 1854, 10 Stat: 1078; Treaty MO-Sauk/Fox, May 18, 1854, 10 stat: 1074; Treaty Iowa, May 17, 1854, 10 Stat: 1069; Treaty Omaha, Mar. 16, 1854, 10 stat: 1043; Treaty Oto [Ottoe] / MO, Mar. 15, 1854, 10 Stat:1038; Treaty w/ Menominee, 1854, 10 stat. 1064; Treaty Chippewa, Sept. 30, 1854, 10 Stat: 1109; Treaty Winnebago, Feb. 27, 1855, 10 Stat: 1172; Choctaw and Chickawaw, June 22, 1855, 11 Stat. 611; Treaty Ottawa/Chip [Chippewa], July 31, 1855, 11 Stat:621; Treaty Chippewa- S. Ste. Marie [Sault Ste. Marie], Aug. 2, 1855, 11 Stat: 631; Treaty Chippewa, Aug. 2, 1855, 11 Stat: 633; Treaty Chippewa, Feb. 22, 1855 Treaty Wyandot, Jan. 31, 1855, 10 Stat: 1159\; Treaty w/ Menominee, 1856, 11 Stat. 679; Treaty Creeks, Aug. 7, 1856, 11 Stat: 699; Chip [Chippewa]: Saginaw/ Swan Creek, Black River, Oct. 18, 1864, 14 Stat. 637; 1820 Treaty- Teeple History of Historic and Archaeological Preservation Act of 1974; Stevens Treaties; Manypenny Era Treaties,,undated + + + + + + 117 + 1 + [Box 177 is really 1 Oversized folder on shelf] Menominee Documents (mostly ledger-size copies of documents), Box L: Folder #1 (letter-size) James P. Hayes’ Report of Indians in custody to Doge, May 26, 1847; letter farmer J. Russel to J.P. Hayes [ really bad photocopies]; Folder #2 (ledger-size) Ratified Treaty No. 209, Documents relating to the negotiation of the Treaty of Sept. 3, 1836, w/ the Menominee Indians; Folder #3 (ledger-size) Correspondence, COIA, re: Menominees, 1946-1848; Folder #4 (ledger-size) George Cown Ledger, 1852-1854; Folder #5 (ledger-size) George Cown Ledger, 1859-1860,undated + + + + + + 118 + 1 + Calendars of documents, Box M: BR Cal, 1997- Calendar of Documents for the Bad River Band of Lake Superior Tribe of Chippewa, compiled by Carlson, Cleland, and Cleland,1997 + + + + + + 118 + 2 + Calendars of documents, Box M: BM Inland Cal, 2001- Calendar of Documents for Research for Inland Rights Research – Bay Mills Indian Community, by Aurora Assocs.,2001 + + + + + + 118 + 3 + Calendars of documents, Box M: Bay Mills Calendar, 1998- Bay Mills Indian Community Calendar of Documents Related to Land of Charlotte Beach, compiled by Carlson and Cleland,1998 + + + + + + 118 + 4 + Calendars of documents, Box M: McC. Bay Mills Indian Treaty, 1995- Changing Political, Economy and Continuing Natural Resources Use of the Ottawa and Chippewa…1836 Treaty…1855 Treaty…by J. M. McClurken (folder 1 of 2), ,1995 + + + + + + 118 + 5 + Calendars of documents, Box M: McC. Bay Mills Indian Treaty, 1995- Changing Political, Economy and Continuing Natural Resources Use of the Ottawa and Chippewa…1836 Treaty…1855 Treaty…by J. M. McClurken (folder 2 of 2), ,1995 + + + + + + 118 + 6 + Calendars of documents, Box M: FDL Cal, 1994- Calendar of Documents for the Fond du Lac Chippewa, compiled by C.E. Cleland and J.R. McClurken,1994 + + + + + + 118 + 7 + Calendars of documents, Box M: Calendar of Documents for the Keweenaw Bay Indian Community, compiled by C.E. Cleland and J.M. McClurken,1988 + + + + + + 118 + 8 + Calendars of documents, Box M: List of Documents Re: Keweenaw Bay Indian Community v. MI, compiled by C.E. Cleland and J.M. McClurken,1988 + + + + + + 118 + 9 + Calendars of documents, Box M: KBIC Cal- Calendar of Documents for the Keweenaw Bay Indian Community, Rev. by N.N. Cleland,2004 + + + + + + 118 + 10 + Calendars of documents, Box M: Menom. Calendar, 1994- Calendar of Documents for Menominee Tribe of WI, compiled by C.E. Cleland and J.R. McClurken,1994 + + + + + + 118 + 11 + Calendars of documents, Box M: Menom. Mille Lacs Calendar, 1994- Calendar of Documents for Mille Lacs Chippewas v. MN, compiled by C.E. Cleland and J.M. McClurken (folder 1 of 3),1994 + + + + + + 118 + 12 + Calendars of documents, Box M: Menom. Mille Lacs Calendar, 1994- Calendar of Documents for Mille Lacs Chippewas v. MN, compiled by C.E. Cleland and J.M. McClurken (folder 2 of 3),1994 + + + + + + 118 + 13 + Calendars of documents, Box M: Menom. Mille Lacs Calendar, 1994- Calendar of Documents for Mille Lacs Chippewas v. MN, compiled by C.E. Cleland and J.M. McClurken (folder 3 of 3),1994 + + + + + + 118 + 14 + Calendars of documents, Box M: Sag.Chip. Cal, 1992- Calendar of Research for the Saginaw Chippewa, by C.E. Cleland, J. M. McClurken,1992 + + + + + + 118 + 15 + Calendars of documents, Box M: S-M Cal, 1995- Calendar of Documents for the Stockbridge-Munsee Tribe of WI, compiled by R.A. Carlson and N.N. Cleland, 2001,2001 + + + + + + 119 + 1 + Keweenaw Bay Indian Community, Notecards Box 1: Box of about 100 5x8 inch index cards, handwritten and typed, containing transcribed letters and map information. Reference information is included on each card.,undated + + + + + + 120 + 1 + Grand Portage Notecards Box 2: Box of about 100 5x8 inch index cards, handwritten and typed, containing bibliographical information and transcribed letters. Reference information is included on each card. Box is about 1/3 full.,undated + + + + + + 121 + 1 + MI and MN Chippewas Notecards Box 3: Box of about 100 5x8 inch index cards, handwritten and typed, containing bibliographical information, acronyms, maps, illustrations, and transcribed letters. Reference information is included on each card.,undated + + + + + + 122 + 1 + Voight Notecards Box 4: Box of about 100 5x8 inch index cards, handwritten and typed, containing acronyms, bibliographical information and transcribed letters. Reference information is included on each card. Box is about 2/3 full.,undated + + + + + + 1 + Cleland Oversized Folders: Folder #1 (Local maps (copies)): 1) Sectional Map of the Survey of Grand Traverse, S.W. Higgins, 20.5x24 inches, copy, 1839; 2) N E end of Lake MI including Grand and Little Traverse Bays and Fox and Manitou Islands…, Topographical Engineers of the War Dept., 19.5x24 inches, copy, 1861, 1863, notes 1884,undated + + + + + + 2 + Cleland Oversized Folders: Folder #2 (mostly WI- Green Bay, Fox River, French Land claims (copies)): 1) Twp No. 21 N Range No. 18 E 4th Meridian, WI, 18x24 inches, copy, 1843; 2) Twp No. 22 N Range No. 19 E 4th Meridian, NWT (NWT), 18x24 inches, copy, 1835; 3) Twp No. 22 N Range No. 12 E 4th Meridian, WI, 18x24 inches, copy, shows Oneida Reservation, 1844; 4) Twp No. 22 N Range No. 20 E 4th Meridian, NWT, 18x24 inches, copy, 1835; 5) Twp No. 22 N Range No. 20 E 4th Meridian, WI, 18x24 inches, copy, 1844; 6) Twp No. 21 N Range No. 19 E 4th Meridian, WI, 18x24 inches, copy, 1843; 7) Twp No. 21 N Range No. 19 E 4th Meridian, NWT, 18x24 inches, copy, 1835; 8) Twp No. 23 N Range No. 20 E 4th Meridian, WI, 18x24 inches, copy, 1844-1845; 9) Twp No. 23 N Range No. 20 E 4th Meridian, NWT, 18x24 inches, copy, 1835; 10) Twp No. 24 N Range No. 20 E 4th Meridian, WI, 18x24 inches, copy, 1869; 11) Twp No. 21 N Range No. 18 E 4th Meridian, WI, 18x24 inches, copy, 1835; 12) Twp No. 24 N Range No. 20 E 4th Meridian, WI, 18x24 inches, copy, shows Oneida Reservation and Military Reservation for Fort Howard, 1844; 13) Twp No. 24 N Range No. 20 E 4th Meridian, WI, 18x24 inches, copy, shows Oneida Reservation and Military Reservation for Fort Howard, 1862-1864; 14) Twp No. 23 N Range No. 20 E 4th Meridian, NWT, 18x24 inches, copy, , 1835, notes act of 1860, 15) Twp No. 24 N Range No. 21 E 4th Meridian, NWT, 18x24 inches, copy, 1835; 16) Land Book (2 p.) for Twp No. 39 N Range No. [blank], Lake Superior, MI Dist., includes names, date, land description, acres, lists some Native Americans w/ property selected under Treaty of 1855 or selected by Ottawa Indians, note on back “private land claims- Green Bay-Fox River”, 18x24 inches, copy, 1850-1893; 17) Negative print copies, 2 p., [Private] Claims at Grand Coquillier Rapids (Green Bay, Fox River) [Twp No.] 23/24 N [Range No.] 20-21 E, claimants #1-46 (top page 1 of 2); Private Claims at Green Bay [Twp No.] 23/24 N [Range No.] 20-21 E, claimants #1-46 (bottom page 2 of 2), 18x24 inches, 1823; 18) Negative print copies (2 same) 9 WI, general survey, includes Fox River, claimants #2-35, 1829; 19) Modern computer-generated plant map w/ notes by US Dept. of Interior, Bureau of Land Management, Twp 20 N Range 17 E, 4th Prime Meridian, WI, survey of tract 37, City of Menasha, Fox River, Doty and James Islands, 18x24 inches, copy, Aug. 3, 1970; 20) Twp No. 24 N Range No. 17 E 4th Meridian, WI Territory, 1839, includes notes about land sold b War Dept. and refers to letter from Commissioner of Indian Affairs (CIA), Aug. 4, 1846, copy sent to CIA, May 16, 1839, certified 1848, 18x24 inches, copy, after 1848; 21) Twp No. 20 N Range No. 17 E 4th Meridian, NWT, includes note “ Ten Houses Fox Indians”, 18x24 inches, copy, 1835; 22) Twp No. 20 N Range No. 17 E 4th Meridian, NWT, 1835, same map and notes as #21 above, includes a note referring to 1906, 18x24 inches, copy, after 1906; 23) Twp No. 21 N Range No. 17 E, WI, “Winnebago” noted on bottom left, 18x24 inches, copy; 24) Twp No. 21 N Range No. 17 E 4th Meridian, WI, lists sugar camps, 18x24 inches, copy, 1844-1845; 25) Twp No. 21 N Range No. 17 E 4th Meridian, NWT, Fox River, 18x24 inches, copy, 1835; 26) Twp No. 21 N Range No. 18 E 4th Meridian, WI, 1835, Fox River, 18x24 inches, copy, 1844,undated + + + + + + 3 + Cleland Oversized Folders: Folder #3 (Mss. maps of Northwest MI and WI): 1) Geological Map of WI, Iowa, MN, David Dale Owen, notes Winnebagos, includes Geological Map of N Shore of Lake Superior, shows locations/ treaties of Sioux (July 31, and Aug. 5, 1851), Dakota Sioux (July 23 and Sept. 29, 1851) and Winnebagos (Nov. 1, 1837), 2 p. stapled together, note on back “Records of the BIA Record Group (RG) #75, Map 3223, National Archives”, 18x25 inches, copies, 1851; 2) Hydrographical Basin Upper MS River, War Dept. Engineers, 1846?, includes MI, WI, IL, Indian regions (Yankton, Ponka, Tomah, Iowa, Kickapoo, and others), lists Indians/treaties, proposals, purchases, and/or claims of Chippewa, Menominees, Winnebagoes, Sioux, 1825-1846, partial map, note on back “BIA RG #75, National Archives, Map #275, 18x26.5 inches, copies, 1846?,undated + + + + + + 4 + Cleland Oversized Folders: Folder #4 (WI Historic and Trygg (copies)): 1) Twp No. 28 N Range No. 15 E 4th Prime Meridian, 1891, Wolf River, 18x24 inches, stamped on back “National Archives RG #75, Indian Platt, Vol. 61, Range 35, 1891; 2) Map of the Surveyed Part of WI Territory, surveyed by S. Morrison, E. Dwelle, J. Hathaway, Jr., engraved by Doolittle and Munson, recorded re: Act of Congress in 1835, shows private claims in Green Bay, Milwaukee Twps, Northwest near Lake MI, shows Menominieville Winnebago, Indian villages near S border, and Stockbridge and Brothertown Indian reservations, stamped on front State HS of WI, 18x24 inches, copy, 1835?; 3) Composite Map of US Land Surveyors, original Plats and Field Notes, WI, six real maps, in color, each is17 x22 inches, by J. Wm. Trygg, each shows towns, waters, Indian villages and trails, and sugar camps: 1) Sheet #10-WI, originally surveyed 1866, copyrighted 1969; 2) Sheets #12 and 15-WI, originally survey 1856, copyrighted 1969; 3) Sheets #12 and 15-WI, originally surveyed 1847-1865, copyrighted 1969; 4) Sheet #13-WI, originally surveyed 1845-1855, copyrighted; 4) 1964; 5) Sheets #13-WI, #13A-MI, originally surveyed 1834-1852, copyrighted 1969; 6) Sheet 16-WI/MI, originally surveyed 1865, copyrighted 1969; 5) Map 1 MI/WI, around Lake MI, shows land ceded by treaties 1831, 1836, 1848, 1853-1854, Drawn by D.E. Coon, Indian Office, 24x24 inches, copy,undated + + + + + + 5 + Cleland Oversized Folders: Folder #5: Isabella Indian Reservation CAD-generated map of Twps 14-16 N, Ranges 3-5 W, shows roads, sections, 2 copies, each measures 36 x 48 inches,undated + + + + + + 6 + Cleland Oversized Folders: Folder #6: Genealogy of the Bay Mills Indian Community w/ Notes on Allied Bands and Families, compiled/ prepared by Aurora Assocs., Wabojeeg/ Waishkey, computer-generated family tree w/ some w/ both Indian and English, w/ translations, birth/death dates if known, 3 copies, 24 x 42 inches, Aug. 1999 + + + + + + 7 + Cleland Oversized Folders: Folder #7: 1) US Dept. of Interior-Geological Survey State of WI, reprint 1940, Royce Area 242, 261, Menominee Overlap, 4 p., stapled together, shows towns, waters, Lac Court Oreilles, Lac Du Flambau and Stockbridge Indian reservations, copies, note on back "copy from National Archives RG #279, Docket 18C Defendant Exhibit #71", 18x28 inches, 1940; 2) MN Chippewa Tribe et al. v. US Docket 18-C before ICC, 1 p. title, 3 p. maps, shows overlapping boundaries of land of Chippewa (Treaty of July 29, 1837-Royce Area) and Menominee (treaties of Feb. 18, 1831 and Oct. 18, 1848), note on back Royce Maps WI , copies from National Archives, RG #279, Defendant Exhibit #70, Docket 18C, copies, 18 x 28 inches,undated + + + + + + 8 + Cleland Oversized Folders: Folder #8: Sketch of the Claims to Land on the River St. Mary’s at Pauwayteeg, July 8, 1823, shows claims to land, oldest is 1792, notes Indian burial and encamping ground, Indian caves, S. Doc. 221.29 Congress 2 Session, Received 1848, stamped on back "copy from National Archives RG #77, Fortifications File, Drawer 137-10", copy, 14 x 24 inches, after 1848,undated + + + + + + 9 + Cleland Oversized Folders: Folder #9: Copy of hand drawn map of E WI, c. 1829, from original in National Archives, reproduced (high quality copy for sale in brown tones) by State HS of WI and WI Council for Local History, shows villages and trails of Potawatomi, Menominee, Ottawa, Winnebago, Oneida, Brotherton, Stockbridge and Munsee, 19x25 inches, modern copy,undated + + + + + +
    +
    diff --git a/sample-ead/clarke/finleytemplate.xml b/sample-ead/clarke/finleytemplate.xml new file mode 100644 index 0000000..e122b97 --- /dev/null +++ b/sample-ead/clarke/finleytemplate.xml @@ -0,0 +1,38327 @@ + + + + + ehll--finley + + + Finding Aid for +Nellie May Davis Finley Family Papers + Collection processed and finding aid created by +unknown; Marian Matyn + + + Clarke Historical Library + +pre-1997; 2011 + + + + + Encoded finding aid created by +Marian Matyn, +2011 + + The finding aid is written in English + + + + + + Clarke Historical LibraryCentral Michigan University + Finding aid for +Nellie May Davis Finley Family Papers + Finding aid created by +unknown; Marian Matyn + + + + + + + Finley, Nellie May Davis. + + +Nellie May Davis Finley Family Papers, + +1881-1978, and undated + + + + +25 cubic feet (in 25 boxes, 1 Oversized folder) + + + +MSS. + + The material is in English and German + + +Papers of Nellie Finley, as a student and a teacher, and her family of Parma, Michigan. + + + + Clarke Historical Library, Central Michigan University + + + + + +

    +Acc# 72943 +

    +
    + +

    +Nellie May Davis Finley Family Papers are open for research. +

    +
    + +

    +Copyright is unknown. +

    +
    + +

    +Nellie May Davis Finley Family Papers, Folder # , Box #, Clarke Historical Library, Central Michigan University +

    +
    +
    + +

    Biography:

    +

    Nellie Mae, or May, Davis Finley (1888-1940s), was born in Michigan, the daughter of Wilson H. and Martha J. Finley. Wilson was a farmer born in 1848 in New York State, the home state of his parents. Martha was born in Michigan in 1852, but her parents were from Pennsylvania. In 1907 Nellie graduated from Michigan State Normal School. In July 1912 Nellie married Theron S. Finley (1887-died before 1920), the son of Erwin J. Finley, a farmer in Parma, Jackson County, Michigan. In 1914-1915 Theron suffered from tuberculosis and was hospitalized. Theron died in early 1920. That year, Nellie Finley lived with her parents and her mother’s sister, Nellie McEntire, and Nellie’s two sons, Theron W., age six, and Harry C., age four, in Parma. The 1930 Federal Census for Michigan records that they were still all living together in Parma, except for Nellie McEntire who had probably died. In both the 1920 and 1930 Federal Censuses for Michigan Nellie is listed as a public school teacher. In the 1920 census Nellie was listed as a widow with her maiden name of Davis. She taught at Devereaux School (Jackson County, Michigan), 1926-1927. Nellie was still alive in the 1940s. (This information is from the collection and AncestryLibrary.com viewed in June 2011.)

    +

    From the collection we know the Nellie apparently collected historical information. In 1937 she was approached by the University of Michigan Archives to donate collections she might have of state historical value. There are several letters between her, Harry Brown, and L. G. Vandevelde concerning collections in 1937 and 1939. Also from the collection we know the Harry C. Finley was honorably discharged from the War Department in 1937 and was a Professor of Military Science and Tactics at Michigan Technological University in Houghton, Michigan.

    +

    An image of Orlando H. Moore, described on a note in the collection as Orlando de Moore, is included in the oversized materials. Moore enlisted at Schoolcraft as a Second Lieutenant in the Sixth U.S. Infantry on June 27, 1856. He was promoted to First Lieutenant on March 2, 1861, to Captain on May 26, 1861, and as Lieutenant Colonel of the Thirteenth Michigan Infantry when it was organized on December 28, 1861. The unit mustered on January 16, 1862. Moore was commissioned Colonel of the Twenty-fifth Infantry when it was organized on August 18, 1862. After commanding a brigade, he was mustered out on June 24, 1865. Moore was promoted to Major, Sixth U.S. Infantry on June 8, 1874, and Lieutenant Colonel, Seventeenth U.S. Infantry on April 11, 1882. For gallant and meritorious service in action at Tebb’s Bend, Kentucky Moore was prompted first to the rank of Brevet Major, on July 4, 1863, and was later to Lieutenant Colonel on March 13, 1865. Moore retired from the army on April 15, 1884 and died at Dearborn, Michigan, on October 31, 1890. (This information is from the regimental history of the 25th Michigan Infantry.)

    +
    + +

    Boxes 1-24 are roughly foldered probably in original order which is somewhat alphabetical and somewhat chronological. Staff at the time, before 1997, simply put one letter in a folder and labeled it to X from Y with a date. There was no processing at that time. Box 25 was actually processed by the Archivist and is organized both alphabetically and chronologically.

    +
    + +

    Family Papers, 1881-1978, and undated, measures 25 cubic ft. (in 25 boxes, 1 Oversized folder). It consists of the papers of Nellie Finley and her family, including correspondence, teaching materials she used as a student and a teacher, notebooks, scrapbooks, published materials, photographs, and miscellaneous. The correspondence, in Boxes 1-21 and 25, includes letters, notes, telegrams, greeting cards, and postcards, and may include newspaper clippings and/or photographs, mostly exchanged between Nellie and her friends and relatives, 1881-1934, and undated. It is not always possible to determine the relationships between the correspondents, but this has been noted, when possible. The collection is mostly organized in alphabetical and chronological order with published and miscellaneous items after correspondence. There are also receipts, speeches, miscellaneous materials, certificates, recitation and student notebooks, and a few miscellaneous scrapbooks and recipes. Box 21 consists entirely of greeting cards organized by holiday or occassion. Published items in Boxes 22-24 include pages of partial directories of Michigan teachers, 1886-1903, and a directory of superintendents and principals, 1890-1891. Of note among the published volumes are Michigan poet Will Carleton's Everywhere, January-December 1911, Christoforo’s Method for Mandolin (Music Instruction Book, Copyright 1897 - John Church Co.), and the 77th Annual Report of the Superintendent of Public Instruction of the State of Michigan w/ Accompanying Documents for the Year 1913-1914.

    +

    Note: The abbreviations ND stands for Nellie May Davis and NDF for Nellie D. Finley.

    +

    Box 25 (Acc# 72943) includes family correspondence, some of Nellie’s early school materials she created as a child, and materials documenting Masonic organizations such as the Order of the Eastern Star, Michigan State Normal School, and Michigan insurance companies.

    +

    The Oversized folder includes Nellie and Theron’s marriage certificate, 1912, and Nellie’s Parma High School diploma, 1904. Also included is an oversized, undated, post-Civil gravure print of Orlando H. Moore holding a bugle and wearing a cape in civilian clothes. He does not appear to be related to the Finleys.

    +

    Processing Note: Prior to 1997, students and perhaps Clarke staff simply foldered this collection and likely maintained its loose original order. The original finding aid is no longer accessible on the computer due to software changes. Due to other priorities it was decided not to re-process the collection or individually cataloged published materials. Box 25 was a late addition in 2011 which was processed by the Archivist. A formal finding aid with biographical section and scope notes were not created until 2011 by Archivist Marian Matyn.

    +

    Processing Note: Eight oversized Masonic certificates of Edgar A. Guest were donated with Acc# 72943. These were added to the existing Guest papers.

    +
    + +

    + +

    + + Subjects: + Finley, Nellie May Davis. + Moore, Orlando Hurley, 1827-1890. + Carleton, Will, 1845-1912. + Finley family. + Michigan State University--Alumni and alumnae. + Parma High School (Parma, Mich.) + Devereaux School (Jackson County, Mich.) + United States.--Army.--Michigan Infantry Regiment 25th (1862-1865)--History. + Order of the Eastern Star. + Tuberculosis hospitals--Michigan--Wayne County--History. + Teachers--Michigan--Parma. + Teachers--Michigan--Jackson County. + Mandolin music. + Scrapbooks--Michigan. + Education--Directories--Michigan. + Freemasonry--Michigan. + United States--History--Civil War, 1861-1865. + +
    + + + + Nellie May Davis Finley Family Papers. + + + + 1 + 1 + Correspondence to: ND From: Alice,December 28, 1916 + + + + + + 1 + 2 + Correspondence to: Mrs. W. H. Davis From: Mrs. All,November 29, 30, 1891 + + + + + + 1 + 3 + Correspondence to: ND From: Amy,December 19, [no year] + + + + + + 1 + 4 + Correspondence to: Will From: M. G. Andrews,August 25, [no year] + + + + + + 1 + 5 + Correspondence to: Will From: M. G. Andrews,October 31, 1894 + + + + + + 1 + 6 + Correspondence to: Will From: M. G. Andrews,October 11, 191- + + + + + + 1 + 7 + Correspondence to: Mrs. W. H. Davis From: M. G. Andrews,April 21 [no year] + + + + + + 1 + 8 + Correspondence to: Mrs. W. H. Davis From: M. G. Andrews,July 19, 1891 + + + + + + 1 + 9 + Correspondence to: Mrs. W. H. Davis From: Emma Bower,November 1, 1885 + + + + + + 1 + 10 + Correspondence to: Mrs. McMurtrie From: Mrs. E. E. Burchard,November 28, 1881 + + + + + + 1 + 11 + Correspondence to: Mrs. W. H. Davis From: Clarence,May 6, [no year] + + + + + + 1 + 12 + Correspondence to: W. H. Davis and family From: Anna Corbett,December 27, 1909 + + + + + + 1 + 13 + Correspondence to: Mrs. W. H. Davis From: Mrs. John Crawford,February 5, 1890 + + + + + + 1 + 14 + Correspondence to: the Davises From: E. D. Darling,September 21, 1893 + + + + + + 1 + 15 + Correspondence to: the Davises From: E. D. Darling,August 10, 1896 + + + + + + 1 + 16 + Correspondence to: the Davises From: E. D. Darling,October 14, 1897 + + + + + + 1 + 17 + Correspondence to: Mrs. W. H. Davis and Children From: W. H. Davis,July 8, 1891 + + + + + + 1 + 18 + Correspondence to: Mrs. W. H. Davis and Children From: W. H. Davis,July 15, 1891 + + + + + + 1 + 19 + Correspondence to: Mrs. W. H. Davis and Children From: W. H. Davis,July 29, 1891 + + + + + + 1 + 20 + Correspondence to: Mrs. W. H. Davis and Children From: W. H. Davis,July 21, 1891 + + + + + + 1 + 21 + Correspondence to: Mrs. W. H. Davis and Children From: W. H. Davis,April 9, 1891 + + + + + + 1 + 22 + Correspondence to: Mrs. W. H. Davis and Children From: W. H. Davis,July 31, 1881 + + + + + + 1 + 23 + Correspondence to: W. H. Davis From: Mrs. W. H. Davis (Mattie),August 7, 1881 + + + + + + 1 + 24 + Correspondence to: Friend From: the Dopp Family,November 3, [no year] + + + + + + 1 + 25 + Correspondence to: Friend From: the Dopp Family,undated + + + + + + 1 + 26 + Correspondence to: Harry Davis From: the Dopp Family,June 6, 1881 + + + + + + 1 + 27 + Correspondence to: Mrs. W. H. Davis From: Mrs. H. K. Farrand, Mrs. C. H. F., and Maggie,April 12, 1883 + + + + + + 1 + 28 + Correspondence to: Mrs. W. H. Davis From: Gertie Gilleo,August 4, 1890 + + + + + + 1 + 29 + Correspondence to: Mrs. W. H. Davis From: Susie M. H.,August 17, 1889 + + + + + + 1 + 30 + Correspondence to: Mr. and Mrs. W. H. Davis and Nellie From: Anna,February 21, 1892 + + + + + + 1 + 31 + Correspondence to: Cousin Harry From: Artie McMurtrie,March 28, 1886? + + + + + + 1 + 32 + Correspondence (many) to: Parents (Mr. and Mrs. W. H. Davis) From: Harry (and Zoe) Davis,1886-1900 + + + + + + 1 + 33 + Correspondence (many) to: Parents (Mr. and Mrs. W. H. Davis) From: Harry (and Zoe) Davis,1904-1909 + + + + + + 1 + 34 + Correspondence to: Mrs. W. H. Davis From: Pamela Hill,October 10, 1895 + + + + + + 1 + 35 + Correspondence to: Mrs. W. H. Davis From: Pamela Hill,May 12, 1891 + + + + + + 1 + 36 + Correspondence to: Mrs. W. H. Davis From: Pamela Hill,February 23, [no year] + + + + + + 1 + 37 + Correspondence to: Mrs. W. H. Davis From: Pamela Hill,December 31, 1889 + + + + + + 1 + 38 + Correspondence to: Mrs. W. H. Davis From: Pamela Hill,May 30, 1889 + + + + + + 1 + 39 + Correspondence to: Mrs. W. H. Davis From: Rebecca Herrick,April 30, 1891 + + + + + + 1 + 40 + Correspondence to: Mrs. W. H. Davis From: Rebecca Herrick,February 23, 1888 + + + + + + 1 + 41 + Correspondence to: Mrs. W. H. Davis From: Rebecca Herrick,June 16, 1885 + + + + + + 1 + 42 + Correspondence to: Aunt Mattie (Mrs. W. H.) Davis From: Jessie,February 13, 1889 + + + + + + 1 + 43 + Correspondence to: Aunt Mattie (Mrs. W. H.) Davis From: Jessie,January 8, 1900 + + + + + + 1 + 44 + Correspondence to: Mrs. W. H. Davis From: Mrs. Lambirs?,December 12, 1886 + + + + + + 1 + 45 + Correspondence to: Mr. and Mrs. W. H. Davis From: Viola Lawrence,June 12, 1898 + + + + + + 1 + 46 + Correspondence to: Mr. and Mrs. W. H. Davis From: Viola Lawrence,March 27, 1889 + + + + + + 1 + 47 + Correspondence (many) to: Mr. and Mrs. W. H. Davis From: Philena and Anna Leidy,1891-1903 + + + + + + 1 + 48 + Correspondence (many) to: Mr. and Mrs. W. H. Davis From: Addie McMurtrie,1885-1891 + + + + + + 1 + 49 + Correspondence (many) to: Mr. and Mrs. W. H. Davis From: Jessica McMurtrie,1882-1897 + + + + + + 1 + 50 + Correspondence (many) to: Mr. and Mrs. W. H. Davis and Nellie From: Nellie McMurtrie,1886-1907 + + + + + + 1 + 51 + Correspondence to: Mrs. W. H. Davis From: Mrs. Bart Miller,May 26, 1891 + + + + + + 1 + 52 + Correspondence to: Mrs. W. H. Davis From: Mrs. Bart Miller,June 7, 1889 + + + + + + 1 + 53 + Correspondence to: Mrs. W. H. Davis From: Lida Miller,September 30, 1889 + + + + + + 1 + 54 + Correspondence to: Mrs. W. H. Davis From: Lida Miller,June 18, 1894 + + + + + + 1 + 55 + Correspondence (many) to: Mr. and Mrs. W. H. Davis From: Mother,1886-1896 + + + + + + 1 + 56 + Correspondence to: Mrs. W. H. Davis From: Minnie S. Osmun,June 6, 1887 + + + + + + 1 + 57 + Correspondence to: Mrs. W. H. Davis From: Minnie S. Osmun,July 14, 1887 + + + + + + 1 + 58 + Correspondence to: Mrs. W. H. Davis From: Mrs. H. Pitts,July 18, 1887 + + + + + + 1 + 59 + Correspondence to: Mrs. W. H. Davis From: Belle Ranch,September 20, 1886 + + + + + + 1 + 60 + Correspondence to: Mrs. W. H. Davis From: Belle Ranch,February 7, 1886 + + + + + + 1 + 61 + Correspondence to: Mrs. W. H. Davis From: Belle Ranch,January 6, 1888 + + + + + + 1 + 62 + Correspondence to: Mrs. W. H. Davis From: Belle Ranch,May 3, 1888 + + + + + + 1 + 63 + Correspondence (many) to: Mrs. W. H. Davis From: Marianne Scurrah,1891-1898 + + + + + + 1 + 64 + Correspondence to: Mrs. W. H. Davis From: Francis Stamp,August 18, 1887 + + + + + + 1 + 65 + Correspondence to: Mrs. W. H. Davis From: Francis Stamp,March 21, 1887 + + + + + + 1 + 66 + Correspondence to: Mrs. W. H. Davis From: Francis Stamp,March 21, 1886 + + + + + + 1 + 67 + Correspondence (many) to: Mrs. W. H. Davis From: Jane H. Swan,1885-1894 + + + + + + 1 + 68 + Correspondence to: Mrs. W. H. Davis From: Unknown,April 29, 1895 + + + + + + 1 + 69 + Correspondence to: Mrs. W. H. Davis From: Harriet Weston,September 26, 1887 + + + + + + 1 + 70 + Correspondence to: Mrs. W. H. Davis From: J. L. W.,December 27, 1890 + + + + + + 1 + 71 + Correspondence to: Mrs. W. H. Davis From: J. L. W.,October 24, 1890 + + + + + + 1 + 72 + Correspondence to: Mrs. W. H. Davis From: Ruth Westover,April 25, 1888 + + + + + + + 1 + 73 + Correspondence to: Mrs. W. H. Davis From: Ruth Westover,September 3, 1887 + + + + + + 1 + 74 + Correspondence (many) to: Mrs. W. H. Davis From: Eva Wolford,1881-1897 + + + + + + 1 + 75 + Correspondence to: Cousin Harry From: Anna E. Leidy,July 18, 1895 + + + + + + 1 + 76 + Correspondence to: Anna and Gertie From: Lizzie,August 26, 1883 + + + + + + 1 + 77 + Correspondence to: Anna and Gertie From: Lizzie,June 7, 1894 + + + + + + 1 + 78 + Correspondence to: Rachel From: the Moore Family,February 22, 1860 + + + + + + 1 + 79 + Correspondence to: Martha Slack From: the Moore Family,August 26, 1883 + + + + + + 1 + 80 + Correspondence to: Mr. George Hoag From: May Wertnizton,June 25, 1891 + + + + + + 1 + 81 + Correspondence to: W. H. Davis, From: Land Contract and Payment Receipts,January 7, 1888 + + + + + + 1 + 82 + Correspondence to: Mr. and Mrs. W. H. Davis, From: The Epwork League Social Invitation,January 3, 1902 + + + + + + 1 + 83 + Correspondence to: Harry E. Davis From: Unknown,July 8, 1908 + + + + + + 1 + 84 + Correspondence (many) to: ND From: Laura E. and Chummy Titus,1907-1909 + + + + + + 1 + 85 + Correspondence to: ND From: Laura E. and Chummy Titus,1907-1909 + + + + + + 1 + 86 + Correspondence (many) to: Cousin From: A. T. Tweedie,March-August 1910 + + + + + + 1 + 87 + Correspondence to: ND From: Earle Tweedie,November 13, 1909 + + + + + + 1 + 88 + Correspondence to: ND From: Earle Tweedie,June 21, 1910 + + + + + + 1 + 89 + Correspondence to: ND From: Earle Tweedie,November 28, 1910 + + + + + + 1 + 90 + Correspondence to: ND From: Jessie Tweedie,March 21, 1906 + + + + + + 1 + 91 + Correspondence to: ND From: Unknown,October 4, 1906 + + + + + + 1 + 92 + Correspondence to: ND From: Unknown,October 7, 1906 + + + + + + 1 + 93 + Correspondence to: ND From: Unknown,December 23, 1909 + + + + + + 1 + 94 + Correspondence (many) to: ND From: Herbert Tweedie,1900-1910 + + + + + + 1 + 95 + Correspondence (many) to: ND From: Vesta,1907-1909 + + + + + + 1 + 96 + Correspondence (many) to: ND From: Blanche Wilder,1890-1900 + + + + + + 1 + 97 + Correspondence (many) to: ND From: Cleve Wolcott,1905-1908 + + + + + + + 1 + 98 + Correspondence (many) to: ND From: businesses,1905-1909 + + + + + + 1 + 99 + Correspondence (many) to: ND From: County Commissioner of Schools,1904-1906 + + + + + + 1 + 100 + Correspondence (many) to: ND From: Teaching Jobs,1908-1910 + + + + + + 1 + 101 + Correspondence (many) to: ND From: Invitations,1898-1909 + + + + + + 1 + 102 + Correspondence to: ND, From: Poem "Too Bad",1905? + + + + + + 1 + 103 + Correspondence to: ND From: Order of the Eastern Star,November 17, 1908 + + + + + + 1 + 104 + Correspondence to: ND From: Order of the Eastern Star,December 7, 1909 + + + + + + 1 + 105 + Correspondence (many) to: ND, From: School Records,1901-1907? + + + + + + 1 + 106 + Correspondence to: Mr. Earle M. Horton From: Nellie M. Davis (ND),May 24, 1904 + + + + + + 2 + 1 + Correspondence to: ND From: Anna,August 21, 1909 + + + + + + 2 + 2 + Correspondence to: ND From: Aunt ?,November 12, 1903 + + + + + + 2 + 3 + Correspondence to: ND From: Aunt ?,December 15, 1904 + + + + + + + 2 + 4 + Correspondence to: ND From: Aunt ?,July 14, 1904 + + + + + + 2 + 5 + Correspondence to: ND From: Aunt ?,June 6, 1908 + + + + + + 2 + 6 + Correspondence to: ND From: Amy Bacon,May 6, 1904 + + + + + + 2 + 7 + Correspondence to: ND From: Amy Bacon,December 6, 1903 + + + + + + 2 + 8 + Correspondence to: ND From: Amy Bacon,February 10, 1902 + + + + + + 2 + 9 + Correspondence to: ND From: Amy Bacon,October 13, 1903 + + + + + + 2 + 10 + Correspondence to: ND From: Amy Bacon,April 9, 1903 + + + + + + 2 + 11 + Correspondence (many) to: ND From: Bessie,undated + + + + + + 2 + 12 + Correspondence to: ND From: Erma Bloom,December 17, 1892 + + + + + + 2 + 13 + Correspondence to: ND From: R. D. Brewer,February 28, 1908 + + + + + + 2 + 14 + Correspondence to: ND From: R. D. Brewer,August 21, 1908 + + + + + + 2 + 15 + Correspondence to: ND (Tige?) From: Buster,September 18, 1907 + + + + + + 2 + 16 + Correspondence to: ND (Tige?) From: Buster,July 15, 1907 + + + + + + 2 + 17 + Correspondence to: ND (Tige?) From: Buster,April 24, 1909 + + + + + + 2 + 18 + Correspondence to: ND (Tige?) From: Buster,September 26, 1909 + + + + + + 2 + 19 + Correspondence to: ND From: Hugh C.,July 16, 1906 + + + + + + 2 + 20 + Correspondence to: ND From: Hugh C.,June 15, 1906 + + + + + + 2 + 21 + Correspondence to: ND From: Hugh C.,May 15, 1906 + + + + + + 2 + 22 + Correspondence to: ND From: Hugh C.,April 11, 1906 + + + + + + 2 + 23 + Correspondence to: ND From: Hugh C.,March 13, 1906 + + + + + + 2 + 24 + Correspondence to: ND From: Hugh C.,March 20, 1906 + + + + + + 2 + 25 + Correspondence to: ND From: Hugh C.,February 13, 1906 + + + + + + 2 + 26 + Correspondence to: ND From: Hugh C.,November 27, 1905 + + + + + + 2 + 27 + Correspondence to: ND From: Hugh C.,November 8, 1904 + + + + + + 2 + 28 + Correspondence to: ND From: Nettie Campbell,June 15, 1908 + + + + + + 2 + 29 + Correspondence to: ND From: Grace Carson,April 22, 1907 + + + + + + 2 + 30 + Correspondence to: ND From: Grace Carson,April 25, 1906 + + + + + + 2 + 31 + Correspondence to: ND From: Grace Carson,July 20, 1905 + + + + + + 2 + 32 + Correspondence to: ND From: Grace Carson,November 5, 1904 + + + + + + 2 + 33 + Correspondence to: ND From: May L. Carson,July 26, 1908 + + + + + + 2 + 34 + Correspondence to: ND From: May L. Carson,January 29, 1908 + + + + + + 2 + 35 + Correspondence to: ND From: May L. Carson (folder 1 of 2),May 12, 1908 + + + + + + 2 + 36 + Correspondence to: ND From: May L. Carson (folder 2 of 2),May 12, 1908 + + + + + + 2 + 37 + Correspondence to: ND From: May L. Carson,May 26, 1908 + + + + + + 2 + 38 + Correspondence to: ND From: Helen Chapel,July 5, 1907 + + + + + + 2 + 39 + Correspondence to: ND From: Helen Chapel,October 20, 1906 + + + + + + 2 + 40 + Correspondence to: ND From: Helen Chapel,July 19, 1906 + + + + + + 2 + 41 + Correspondence to: ND From: Helen Chapel,May 8, 1906 + + + + + + 2 + 42 + Correspondence to: ND From: Helen Chapel,April 14, 1906 + + + + + + 2 + 43 + Correspondence to: ND From: Helen Chapel,March 7, 1906 + + + + + + 2 + 44 + Correspondence to: ND From: Helen Chapel,December 9, 1905 + + + + + + 2 + 45 + Correspondence to: ND From: Helen Chapel,September 30, 1905 + + + + + + 2 + 46 + Correspondence to: ND From: Helen Chapel,April 9, 1905 + + + + + + 2 + 47 + Correspondence to: ND From: Helen Chapel,February 3, 1905 + + + + + + 2 + 48 + Correspondence to: ND From: Helen Chapel,December 2, 1904 + + + + + + 2 + 49 + Correspondence to: ND From: Anna Corbett,October 9, 1906 + + + + + + 2 + 50 + Correspondence to: ND From: Anna Corbett,August 31, 1907 + + + + + + 2 + 51 + Correspondence to: ND From: Anna Corbett,October 31, 1907 + + + + + + 2 + 52 + Correspondence to: ND From: Anna Corbett,December 6, 1906 + + + + + + 2 + 53 + Correspondence to: ND From: Anna Corbett,October 7, 1908 + + + + + + 2 + 54 + Correspondence to: ND From: Harry and Zoe Davis,January 13, 1909 + + + + + + 2 + 55 + Correspondence to: ND From: Harry and Zoe Davis,January 24, 1909 + + + + + + 2 + 56 + Correspondence to: ND From: Harry and Zoe Davis,March 24, 1909 + + + + + + 2 + 57 + Correspondence to: ND From: Harry and Zoe Davis,April 25, 1909 + + + + + + 2 + 58 + Correspondence to: ND From: Harry and Zoe Davis,June 20, 1909 + + + + + + 2 + 59 + Correspondence to: ND From: Harry and Zoe Davis,June 14, 1909 + + + + + + 2 + 60 + Correspondence to: ND From: Harry and Zoe Davis,August 15, 1909 + + + + + + 2 + 61 + Correspondence to: ND From: Harry and Zoe Davis,August 3, 1909 + + + + + + 2 + 62 + Correspondence to: ND From: Harry and Zoe Davis,September 28, 1909 + + + + + + 2 + 63 + Correspondence to: ND From: Harry and Zoe Davis,November 14, 1909 + + + + + + 2 + 64 + Correspondence to: ND From: Harry and Zoe Davis,January 9, 1910 + + + + + + 2 + 65 + Correspondence to: ND From: Harry and Zoe Davis,April 24, 1910 + + + + + + 2 + 66 + Correspondence to: ND From: Harry and Zoe Davis,May 8, 1910 + + + + + + 2 + 67 + Correspondence to: ND From: Harry and Zoe Davis,June 12, 1910 + + + + + + 2 + 68 + Correspondence to: ND From: Harry and Zoe Davis,July 31, 1910 + + + + + + 2 + 69 + Correspondence to: ND From: Harry and Zoe Davis,June 3, 1910 + + + + + + + 2 + 70 + Correspondence to: ND From: Harry and Zoe Davis,September 1, 1910 + + + + + + 2 + 71 + Correspondence to: ND From: Harry and Zoe Davis,October 9, 1910 + + + + + + 2 + 72 + Correspondence to: ND From: Weston and Loretta Davis,February 6, 1910 + + + + + + 2 + 73 + Correspondence to: ND From: Weston and Loretta Davis,April 3, 1910 + + + + + + 2 + 74 + Correspondence to: ND From: Weston and Loretta Davis,May 29, 1910 + + + + + + 2 + 75 + Correspondence to: ND From: Weston and Loretta Davis,July 17, 1910 + + + + + + 2 + 76 + Correspondence to: ND From: Weston and Loretta Davis,December 21, 1910 + + + + + + 2 + 77 + Correspondence to: ND From: Weston and Loretta Davis,November 6, 1910 + + + + + + 2 + 78 + Correspondence to: ND From: Weston and Loretta Davis,October 3, 1910 + + + + + + 2 + 79 + Correspondence to: ND From: Mr. and Mrs. W. H. Davis (Parents),October 26, 1909 + + + + + + 2 + 80 + Correspondence to: ND From: Mr. and Mrs. W. H. Davis (Parents),October 8, 1909 + + + + + + 2 + 81 + Correspondence to: ND From: Mr. and Mrs. W. H. Davis (Parents),October 19, 1909 + + + + + + 2 + 82 + Correspondence to: ND From: Mr. and Mrs. W. H. Davis (Parents),October 4, 1909 + + + + + + 2 + 83 + Correspondence to: ND From: Mr. and Mrs. W. H. Davis (Parents),October 5, 1909 + + + + + + 2 + 84 + Correspondence to: ND From: Mr. and Mrs. W. H. Davis (Parents),October 7, 1909 + + + + + + 2 + 85 + Correspondence to: ND From: Mr. and Mrs. W. H. Davis (Parents),November 28, 1909 + + + + + + 2 + 86 + Correspondence to: ND From: Mr. and Mrs. W. H. Davis (Parents),November 1, 1909 + + + + + + 2 + 87 + Correspondence to: ND From: Mr. and Mrs. W. H. Davis (Parents),March 3, 1909 + + + + + + 2 + 88 + Correspondence to: ND From: Mr. and Mrs. W. H. Davis (Parents),March 7, 1910 + + + + + + 2 + 89 + Correspondence to: Mr. and Mrs. W. H. Davis (Parents) From: ND ,October 11, 1909 + + + + + + 2 + 90 + Correspondence to: Mr. and Mrs. W. H. Davis (Parents) From: ND ,October 17, 1909 + + + + + + 2 + 91 + Correspondence to: Mr. and Mrs. W. H. Davis (Parents) From: ND ,October [no day], 1909 + + + + + + 2 + 92 + Correspondence to: Mr. and Mrs. W. H. Davis (Parents) From: ND ,October 25, 1909 + + + + + + 2 + 93 + Correspondence to: Mr. and Mrs. W. H. Davis (Parents) From: ND ,November 8, 1909 + + + + + + 2 + 94 + Correspondence to: Grandma and Grandpa From: ND ,November 4, 1909 + + + + + + 2 + 95 + Correspondence to: Grandma and Grandpa From: ND ,November 2, 1909 + + + + + + 2 + 96 + Correspondence to: ND From: Jennie Drumm,undated + + + + + + 2 + 97 + Correspondence to: ND From: Edith Dugind,December 26, 1908 + + + + + + 2 + 98 + Correspondence to: ND From: Edith Dugind,November 19, 1908 + + + + + + 2 + 99 + Correspondence to: ND From: Edith Dugind,September 13, 1908 + + + + + + 2 + 100 + Correspondence to: ND From: Edith Dugind,July 11, 1908 + + + + + + 2 + 101 + Correspondence to: ND From: Edith Dugind,July 10, [no year] + + + + + + 2 + 102 + Correspondence to: ND From: Edith Dugind,May 17, 1908 + + + + + + 2 + 103 + Correspondence to: ND From: Edith Dugind,October 8, 1910 + + + + + + 2 + 104 + Correspondence to: ND From: Edith Dugind,May 8, [no year] + + + + + + 2 + 105 + Correspondence to: ND From: Edith Dugind,January 19, 1908 + + + + + + 2 + 106 + Correspondence to: ND From: Edith Dugind,January 4, 1908 + + + + + + 2 + 107 + Correspondence to: ND From: Edith Dugind,November 10, 1907 + + + + + + 2 + 108 + Correspondence to: ND From: Edith Dugind,September 29, [no year] + + + + + + 2 + 109 + Correspondence to: ND From: Edith Dugind,August 16, 1907 + + + + + + 2 + 110 + Correspondence to: ND From: Edith Dugind,February 12, 1909 + + + + + + 2 + 111 + Correspondence to: ND From: Edith Dugind,April 10, 1909 + + + + + + 2 + 112 + Correspondence to: ND From: Edith Dugind,September 26, 1909 + + + + + + 2 + 113 + Correspondence to: ND From: Edith Dugind,October 17, 1909 + + + + + + 2 + 114 + Correspondence to: ND From: Edith Dugind,November 27, 1909 + + + + + + 2 + 115 + Correspondence to: ND From: Edith Dugind,December 26, 1909 + + + + + + 2 + 116 + Correspondence to: ND From: Edith Dugind,April 3, [no year] + + + + + + 2 + 117 + Correspondence to: ND From: Edith Dugind,May 29, 1910 + + + + + + 2 + 118 + Correspondence to: ND From: Roy Flewelling,December 4, 1905 + + + + + + 2 + 119 + Correspondence to: ND From: Floyd,February 23, 1910 + + + + + + 2 + 120 + Correspondence to: ND From: Floyd,March 20, 1910 + + + + + + 2 + 121 + Correspondence to: ND From: Floyd,April 24, 1910 + + + + + + 2 + 122 + Correspondence to: ND From: Nora L. Frank,December 25, 1907 + + + + + + 2 + 123 + Correspondence (many) to: ND From: Friends,1898-1910 + + + + + + 2 + 124 + Correspondence to: ND From: Marguerite E. Furey,January 11, 1910 + + + + + + 2 + 125 + Correspondence to: ND From: Marguerite E. Furey,March 27, 1910 + + + + + + 2 + 126 + Correspondence to: ND From: Marguerite E. Furey,March 2, 1910 + + + + + + 2 + 127 + Correspondence to: ND From: Marguerite E. Furey,April 27, 1910 + + + + + + 2 + 128 + Correspondence to: ND From: Grandmother,March 1, 1899 + + + + + + 2 + 129 + Correspondence to: ND From: Grandmother,August 20, 1909 + + + + + + 2 + 130 + Correspondence to: ND From: Ethel Hammel,undated + + + + + + 2 + 131 + Correspondence to: ND From: Harriet,undated + + + + + + 2 + 132 + Correspondence to: ND From: Chauncey J. Helmer,December 15, 1908 + + + + + + 2 + 133 + Correspondence to: ND From: Chauncey J. Helmer,April 23, 1908 + + + + + + 2 + 134 + Correspondence to: ND From: Chauncey J. Helmer,January 9, 1908 + + + + + + 2 + 135 + Correspondence to: ND From: Chauncey J. Helmer,July 2, 1907 + + + + + + 2 + 136 + Correspondence to: ND From: Chauncey J. Helmer,February 7, 1907 + + + + + + 2 + 137 + Correspondence to: ND From: Chauncey J. Helmer,February 11, 1909 + + + + + + 2 + 138 + Correspondence to: ND From: Chauncey J. Helmer,March 12, 1909 + + + + + + 2 + 139 + Correspondence to: ND From: Chauncey J. Helmer,May [no day], 1909 + + + + + + 2 + 140 + Correspondence to: ND From: Chauncey J. Helmer,October 8, 1909 + + + + + + 2 + 141 + Correspondence to: ND From: Chauncey J. Helmer,January 11, 1910 + + + + + + 2 + 142 + Correspondence to: ND From: Chauncey J. Helmer,March 18, 1910 + + + + + + 2 + 143 + Correspondence to: ND From: Chauncey J. Helmer,April 20, 1910 + + + + + + 2 + 144 + Correspondence to: ND From: Chauncey J. Helmer,November 26, 1910 + + + + + + 2 + 145 + Correspondence to: ND From: Hattie Helmer aka "Belinda Beeswax",January 9, 1909 + + + + + + 2 + 146 + Correspondence to: ND From: Hattie Helmer aka "Belinda Beeswax",April 10, 1909 + + + + + + 2 + 147 + Correspondence to: ND From: Hattie Helmer aka "Belinda Beeswax",May 27, 1909 + + + + + + 2 + 148 + Correspondence to: ND From: Hattie Helmer aka "Belinda Beeswax",July 16, 1909 + + + + + + 2 + 149 + Correspondence to: ND From: Hattie Helmer aka "Belinda Beeswax",August 15, 1909 + + + + + + 2 + 150 + Correspondence to: ND From: Hattie Helmer aka "Belinda Beeswax",March 14, 1910 + + + + + + 2 + 151 + Correspondence to: ND From: Lena Herrick,November 2, 1908 + + + + + + 2 + 152 + Correspondence to: ND From: Lena Herrick,January 15, 1909 + + + + + + 2 + 153 + Correspondence to: ND From: Lena Herrick,February 28, 1909 + + + + + + 2 + 154 + Correspondence to: ND From: Lena Herrick,October 17, 1909 + + + + + + 2 + 155 + Correspondence to: ND From: Lena Herrick,December 30, 1909 + + + + + + 2 + 156 + Correspondence to: ND From: Lena Herrick,January 22, 1910 + + + + + + 2 + 157 + Correspondence to: ND From: Lena Herrick,April 24, 1910 + + + + + + 2 + 158 + Correspondence to: ND From: Lena Herrick,July 6, 1910 + + + + + + 2 + 159 + Correspondence to: ND From: Lena Herrick,October 9, 1910 + + + + + + 2 + 160 + Correspondence to: ND From: Lena Herrick,December 18, 1910 + + + + + + 2 + 161 + Correspondence to: ND From: Alice Hicks,January 16, 1905 + + + + + + 2 + 162 + Correspondence to: ND From: Eva Holford,November 23, 1907 + + + + + + 2 + 163 + Correspondence to: ND From: Bonnelyn Hollinshead,January 20, 1907 + + + + + + 2 + 164 + Correspondence to: ND From: Bonnelyn Hollinshead,February 22, 1907 + + + + + + 2 + 165 + Correspondence to: ND From: Bonnelyn Hollinshead,July 23, 1906 + + + + + + 2 + 166 + Correspondence to: ND From: Bonnelyn Hollinshead,July 12, 1907 + + + + + + 2 + 167 + Correspondence to: ND From: Bonnelyn Hollinshead,May 26, 1907 + + + + + + 2 + 168 + Correspondence to: ND From: Bonnelyn Hollinshead,March 31, 1907 + + + + + + 2 + 169 + Correspondence to: ND From: Bonnelyn Hollinshead,April 1, 1903 + + + + + + 2 + 170 + Correspondence to: ND From: Bonnelyn Hollinshead,April 7, 1902 + + + + + + 2 + 171 + Correspondence to: ND From: Bonnelyn Hollinshead,October 20, 1903 + + + + + + 2 + 172 + Correspondence to: ND From: Bonnelyn Hollinshead,July 21, 1903 + + + + + + 2 + 173 + Correspondence to: ND From: Bonnelyn Hollinshead,April 16, 1909 + + + + + + 2 + 174 + Correspondence to: ND From: E .G. Howard,March 25, 1908 + + + + + + 2 + 175 + Correspondence to: ND From: E .G. Howard,June 6, 1909 + + + + + + 2 + 176 + Correspondence to: ND From: E .G. Howard,February 13, 1910 + + + + + + 2 + 177 + Correspondence to: ND From: E .G. Howard,October 9, 1910 + + + + + + 2 + 178 + Correspondence to: ND From: E .G. Howard,August 29, 1909 + + + + + + 2 + 179 + Correspondence to: ND From: Marianna Howe,October 24, 1898 + + + + + + 2 + 180 + Correspondence to: ND From: Marianna Howe,December 18, 1901 + + + + + + 2 + 181 + Correspondence to: ND From: Marianna Howe,November 2, 1908 + + + + + + 2 + 182 + Correspondence to: ND From: Marianna Howe,September 13, 1908 + + + + + + 2 + 183 + Correspondence to: ND From: Marianna Howe,January 11, 1909 + + + + + + 2 + 184 + Correspondence to: ND From: Marianna Howe,August 16, 1909 + + + + + + 2 + 185 + Correspondence to: ND From: Marianna Howe,January 30, 1910 + + + + + + 2 + 186 + Correspondence to: ND From: Marianna Howe,June 1, 1910 + + + + + + 2 + 187 + Correspondence to: ND From: Grace E. Hubert,November 14, 1908 + + + + + + 2 + 188 + Correspondence to: ND From: Grace E. Hubert,October 4, 1908 + + + + + + 2 + 189 + Correspondence to: ND From: Grace E. Hubert,March 6, 1907 + + + + + + 2 + 190 + Correspondence to: ND From: Grace E. Hubert,November 21, 1906 + + + + + + 2 + 191 + Correspondence to: ND From: Grace E. Hubert,August 11, 1906 + + + + + + 2 + 192 + Correspondence to: ND From: Grace E. Hubert,January 14, 1904 + + + + + + 2 + 193 + Correspondence to: ND From: Grace E. Hubert,August 14, 1904 + + + + + + 2 + 194 + Correspondence to: ND From: Grace E. Hubert,February 1, 1905 + + + + + + 2 + 195 + Correspondence to: ND From: Grace E. Hubert,January 21, 1906 + + + + + + 2 + 196 + Correspondence to: ND From: Grace E. Hubert,November 7, 1909 + + + + + + 2 + 197 + Correspondence to: ND From: Inez,August 1, 1905 + + + + + + 2 + 198 + Correspondence to: ND From: Jack,May 31, 1908 + + + + + + 2 + 199 + Correspondence to: ND From: Jack,July 1, 1907 + + + + + + 2 + 200 + Correspondence to: ND From: Jack,December 23, 1905 + + + + + + 2 + 201 + Correspondence to: ND From: Jack,December 7, 1910 + + + + + + 2 + 202 + Correspondence to: ND From: Viola Lawrence,February 19, 1905 + + + + + + 2 + 203 + Correspondence to: ND From: Viola Lawrence,February 11, 1905 + + + + + + 2 + 204 + Correspondence to: ND From: Viola Lawrence,January 21, 1905 + + + + + + 2 + 205 + Correspondence to: ND From: Ruth Landon,November 6, 1898 + + + + + + 2 + 206 + Correspondence to: ND From: Ruth Landon,February 25, 1900 + + + + + + 2 + 207 + Correspondence to: ND From: Ruth Landon,November 23, 1900 + + + + + + 2 + 208 + Correspondence to: ND From: Anna Leidy,June 22, [no year] + + + + + + 2 + 209 + Correspondence to: ND From: Anna Leidy,May 16, 1908 + + + + + + + 2 + 210 + Correspondence to: ND From: Anna Leidy,April 26, [no year] + + + + + + 2 + 211 + Correspondence to: ND From: Anna Leidy,July 11, 1905 + + + + + + 2 + 212 + Correspondence to: ND From: Anna Leidy,January 8, 1905 + + + + + + 2 + 213 + Correspondence to: ND From: Anna Leidy,November 27, 1904 + + + + + + 2 + 214 + Correspondence to: ND From: Anna Leidy,June 11, 1904 + + + + + + 2 + 215 + Correspondence to: ND From: Anna Leidy,August 13, 1898 + + + + + + 2 + 216 + Correspondence to: ND From: Anna Leidy,August 30, 1898 + + + + + + 2 + 217 + Correspondence to: ND From: Anna Leidy,January 17, 1899 + + + + + + 2 + 218 + Correspondence to: ND From: Anna Leidy,December 6, 1898 + + + + + + 2 + 219 + Correspondence to: ND From: Anna Leidy,February 24, 1899 + + + + + + 2 + 220 + Correspondence to: ND From: Anna Leidy,November 30, 1899 + + + + + + 2 + 221 + Correspondence to: ND From: Anna Leidy,October 25, 1899 + + + + + + 2 + 222 + Correspondence to: ND From: Anna Leidy,April 8, 1899 + + + + + + 2 + 223 + Correspondence to: ND From: Anna Leidy,September 15, 1901 + + + + + + 2 + 224 + Correspondence to: ND From: Anna Leidy,May 6, 1902 + + + + + + 2 + 225 + Correspondence to: ND From: Anna Leidy,April 24, 1902 + + + + + + 2 + 226 + Correspondence to: ND From: Anna Leidy,April 13, 1902 + + + + + + 2 + 227 + Correspondence to: ND From: Anna Leidy,September 6, [no year] + + + + + + 2 + 228 + Correspondence to: ND From: Philena Leidy,January 13, 1908 + + + + + + 2 + 229 + Correspondence to: ND From: Philena Leidy,August 7, 1907 + + + + + + 2 + 230 + Correspondence to: ND From: Philena Leidy,March 1, 1907 + + + + + + 2 + 231 + Correspondence to: ND From: Philena Leidy,December 14, 1906 + + + + + + 2 + 232 + Correspondence to: ND From: Philena Leidy,December 20, [no year] + + + + + + 2 + 233 + Correspondence to: ND From: Philena Leidy,October 7, 1906 + + + + + + 2 + 234 + Correspondence to: ND From: Philena Leidy,January 14, 1906 + + + + + + 2 + 235 + Correspondence to: ND From: Philena Leidy,December 17, 1905 + + + + + + 2 + 236 + Correspondence to: ND From: Philena Leidy,February 14, 1908 + + + + + + 2 + 237 + Correspondence to: ND From: Philena Leidy,May 25, 1909 + + + + + + 2 + 238 + Correspondence to: ND From: Philena Leidy,December 29, 1904 + + + + + + 2 + 239 + Correspondence to: ND From: Philena Leidy,December 1, 1908 + + + + + + 2 + 240 + Correspondence to: ND From: Philena Leidy,December 16, 1908 + + + + + + 2 + 241 + Correspondence to: ND From: Philena Leidy,April 29, 1902 + + + + + + 2 + 242 + Correspondence to: ND From: Philena Leidy,May 10, 1910 + + + + + + 2 + 243 + Correspondence to: ND From: Philena Leidy,August 21, 1910 + + + + + + 2 + 244 + Correspondence to: ND From: Ida McCormick,December 2, 1908 + + + + + + 2 + 245 + Correspondence to: ND From: Ida McCormick,December 14, 1908 + + + + + + 2 + 246 + Correspondence to: ND From: Ida McCormick,October 11, 1908 + + + + + + 2 + 247 + Correspondence to: ND From: Ida McCormick,June 8, 1906 + + + + + + 2 + 248 + Correspondence to: ND From: Ida McCormick,April 11, 1909 + + + + + + 2 + 249 + Correspondence to: ND From: Ida McCormick,June 2, 1909 + + + + + + 2 + 250 + Correspondence to: ND From: Ida McCormick,August 13, 1909 + + + + + + 2 + 251 + Correspondence to: ND From: Ida McCormick,August 24, 1909 + + + + + + 2 + 252 + Correspondence to: ND From: Ida McCormick,May 1, 1910 + + + + + + 2 + 253 + Correspondence to: ND From: McMurtrie Family,December 29, 1909 + + + + + + 2 + 254 + Correspondence to: ND From: McMurtrie Family,October 24, 1909 + + + + + + 2 + 255 + Correspondence to: ND From: McMurtrie Family,June 4, 1909 + + + + + + 2 + 256 + Correspondence to: ND From: McMurtrie Family,March 2, 1909 + + + + + + 2 + 257 + Correspondence to: ND From: McMurtrie Family,February 21, 1909 + + + + + + 2 + 258 + Correspondence to: ND From: McMurtrie Family,January 17, 1909 + + + + + + 2 + 259 + Correspondence to: ND From: McMurtrie Family,January 19, 1911 + + + + + + 2 + 260 + Correspondence to: ND From: McMurtrie Family,June 1, 1900 + + + + + + 2 + 261 + Correspondence to: ND From: McMurtrie Family,July 3, 1905 + + + + + + 2 + 262 + Correspondence to: ND From: McMurtrie Family,September 14, 1904 + + + + + + 2 + 263 + Correspondence to: ND From: McMurtrie Family,December 7, 1904 + + + + + + 2 + 264 + Correspondence to: ND From: McMurtrie Family,August 13, 1905 + + + + + + 2 + 265 + Correspondence to: ND From: McMurtrie Family,March 7, 1906 + + + + + + 2 + 266 + Correspondence to: ND From: McMurtrie Family,July 2, 1893 + + + + + + 2 + 267 + Correspondence to: ND From: McMurtrie Family,October 16, 1907 + + + + + + 2 + 268 + Correspondence to: ND From: McMurtrie Family,January 28, 1908 + + + + + + 2 + 269 + Correspondence to: ND From: McMurtrie Family,January 21, [no year] + + + + + + 2 + 270 + Correspondence to: ND From: McMurtrie Family,February 11, 1908 + + + + + + 2 + 271 + Correspondence to: ND From: McMurtrie Family,March 8, 1908 + + + + + + 2 + 272 + Correspondence to: ND From: McMurtrie Family,November 7, 1908 + + + + + + 2 + 273 + Correspondence to: ND From: McMurtrie Family,October 21, 1908 + + + + + + 2 + 274 + Correspondence to: ND From: McMurtrie Family,July [no day], 1910 + + + + + + 2 + 275 + Correspondence to: Cousin Dicky From: Cousin Mike,May 11, 1906 + + + + + + 2 + 276 + Correspondence to: ND From: Aunt Miller,November 31, 1897 + + + + + + 2 + 277 + Correspondence to: ND From: Aunt Miller,December 6, 1898 + + + + + + 2 + 278 + Correspondence to: ND From: Aunt Miller,February 20, 1901 + + + + + + 2 + 279 + Correspondence to: ND From: Aunt Miller,April 25, 1910 + + + + + + 2 + 280 + Correspondence to: Jolly Tim and the Girls From: ND,August 22, 1910 + + + + + + 2 + 281 + Correspondence to: Jolly Tim and the Girls From: ND,December 10, 1909 + + + + + + 2 + 282 + Correspondence to: ND From: Nora,April 19, 1908 + + + + + + 2 + 283 + Correspondence to: ND From: Anna Olmsted,January 14, 1906 + + + + + + 2 + 284 + Correspondence to: ND From: Anna Olmsted,August 21, [no year] + + + + + + 2 + 285 + Correspondence to: ND From: Anna Olmsted,March 21, 1904 + + + + + + 2 + 286 + Correspondence to: ND From: Anna Olmsted,January 3, 1904 + + + + + + 2 + 287 + Correspondence to: ND From: Anna Olmsted,January 8, 1900 + + + + + + 2 + 288 + Correspondence to: ND From: Anna Olmsted,March 3, 1902 + + + + + + 2 + 289 + Correspondence to: ND From: Anna Olmsted,January 8, 1903 + + + + + + 2 + 290 + Correspondence to: ND From: Anna Olmsted,December 6, 1903 + + + + + + 2 + 291 + Correspondence to: ND From: Anna Olmsted,December 24, 1903 + + + + + + 2 + 292 + Correspondence to: ND From: Anna Olmsted,November 29, 1903 + + + + + + 2 + 293 + Correspondence to: ND From: Anna Olmsted,August 13, 1903 + + + + + + 2 + 294 + Correspondence to: ND From: Anna Olmsted,September 20, 1903 + + + + + + 2 + 295 + Correspondence to: ND From: Leidy Olmsted,August 19, 1906 + + + + + + 2 + 296 + Correspondence to: ND From: Leidy Olmsted,January 13, 1906 + + + + + + 2 + 297 + Correspondence to: ND From: Leidy Olmsted,August 26, 1906 + + + + + + 2 + 298 + Correspondence to: ND From: Leidy Olmsted,September 11, 1906 + + + + + + 2 + 299 + Correspondence to: ND From: Leidy Olmsted,October 21, 1906 + + + + + + 2 + 300 + Correspondence to: ND From: Leidy Olmsted,April 7, 1907 + + + + + + 2 + 301 + Correspondence to: ND From: Leidy Olmsted,September 25, 1907 + + + + + + 2 + 302 + Correspondence to: ND From: Leidy Olmsted,October 6, 1907 + + + + + + 2 + 303 + Correspondence to: ND From: Leidy Olmsted,December 22, 1907 + + + + + + 2 + 304 + Correspondence to: ND From: Leidy Olmsted,April 9, 1908 + + + + + + 2 + 305 + Correspondence to: ND From: Leidy Olmsted,June 22, 1908 + + + + + + 2 + 306 + Correspondence to: ND From: Flossie Palmer,November 19, 1908 + + + + + + 2 + 307 + Correspondence to: ND From: Flossie Palmer,July 28, 1908 + + + + + + 2 + 308 + Correspondence to: ND From: Flossie Palmer,March 7, 1906 + + + + + + 2 + 309 + Correspondence to: ND From: Flossie Palmer,January 15, 1905 + + + + + + 2 + 310 + Correspondence to: ND From: Flossie Palmer,September 25, 1905 + + + + + + 2 + 311 + Correspondence to: ND From: Flossie Palmer,February 7, 1909 + + + + + + 2 + 312 + Correspondence to: ND From: B. W. Peet,April 25, 1909 + + + + + + 2 + 313 + Correspondence (many) to: ND From: Hazel Potter,1906-1910 + + + + + + 2 + 314 + Correspondence to: ND From: Edna A. P.,November 8, 1908 + + + + + + 2 + 315 + Correspondence to: ND From: Edna A. P.,July 26, 1908 + + + + + + 2 + 316 + Correspondence to: ND From: Edna A. P.,August 13, 1904 + + + + + + 2 + 317 + Correspondence to: ND From: Edna A. P.,August 28, 1907 + + + + + + 2 + 318 + Correspondence to: ND From: Edna A. P.,January 2, 1907 + + + + + + 2 + 319 + Correspondence to: ND From: Edna A. P.,September 8, 1906 + + + + + + 2 + 320 + Correspondence to: ND From: Edna A. P.,July 19, 1906 + + + + + + 2 + 321 + Correspondence to: ND From: Edna A. P.,October 20, 1907 + + + + + + 2 + 322 + Correspondence to: ND From: Edna A. P.,November 21, 1904 + + + + + + 2 + 323 + Correspondence to: ND From: Edna A. P.,November 20, 1904 + + + + + + 2 + 324 + Correspondence to: ND From: Edna A. P.,October 15, 1904 + + + + + + 2 + 325 + Correspondence to: ND From: Edna A. P.,March 14, 1906 + + + + + + 2 + 326 + Correspondence to: ND From: Edna A. P.,November 22, 1905 + + + + + + 2 + 327 + Correspondence to: ND From: Edna A. P.,October 1, 1905 + + + + + + 2 + 328 + Correspondence to: ND From: Edna A. P.,July 21, 1904 + + + + + + 2 + 329 + Correspondence to: ND From: Della Beers,September 20, 1904 + + + + + + 2 + 330 + Correspondence to: ND From: Della Beers,September 17, 1907 + + + + + + 2 + 331 + Correspondence to: ND From: Fay Riggs,August 27, 1907 + + + + + + 2 + 332 + Correspondence to: ND From: Fay Riggs,January 4, 1909 + + + + + + 2 + 333 + Correspondence to: ND From: A. A. Rose,June 8, 1904 + + + + + + 2 + 334 + Correspondence to: ND From: H. B. R.,April 11, 1909 + + + + + + 2 + 335 + Correspondence to: ND From: H. B. R.,October 12, 1909 + + + + + + 2 + 336 + Correspondence to: ND From: Nettie D. Schall,May 8, 1906 + + + + + + 2 + 337 + Correspondence to: ND From: Nettie D. Schall,November 18, 1904 + + + + + + 2 + 338 + Correspondence to: ND From: Nettie D. Schall,November 8, 1904 + + + + + + 2 + 339 + Correspondence to: ND From: Nettie D. Schall,January 23, 1904 + + + + + + 2 + 340 + Correspondence to: ND From: Marianne S. Scurrah,October 7, 1908 + + + + + + 2 + 341 + Correspondence to: ND From: Marianne S. Scurrah,May 11, 1908 + + + + + + 2 + 342 + Correspondence to: ND From: Marianne S. Scurrah,May 2, 1907 + + + + + + 2 + 343 + Correspondence to: ND From: Marianne S. Scurrah,March 10, 1907 + + + + + + 2 + 344 + Correspondence to: ND From: Marianne S. Scurrah,January 20, 1907 + + + + + + 2 + 345 + Correspondence to: ND From: Marianne S. Scurrah,October 15, 1906 + + + + + + 2 + 346 + Correspondence to: ND From: Marianne S. Scurrah,June 3, 1906 + + + + + + 2 + 347 + Correspondence to: ND From: Marianne S. Scurrah,February 11, 1906 + + + + + + 2 + 348 + Correspondence to: ND From: Marianne S. Scurrah,December 27, 1905 + + + + + + 2 + 349 + Correspondence to: ND From: Marianne S. Scurrah,January 22, 1905 + + + + + + 2 + 350 + Correspondence to: ND From: Marianne S. Scurrah,August 15, 1904 + + + + + + 2 + 351 + Correspondence to: ND From: Marianne S. Scurrah,January 20, 1899 + + + + + + 2 + 352 + Correspondence to: ND From: Marianne S. Scurrah,June 7, 1901 + + + + + + 2 + 353 + Correspondence to: ND From: Marianne S. Scurrah,December 27, 1901 + + + + + + 2 + 354 + Correspondence to: ND From: Marianne S. Scurrah,March 17, 1902 + + + + + + 2 + 355 + Correspondence to: ND From: Marianne S. Scurrah,December 20, 1902 + + + + + + 2 + 356 + Correspondence to: ND From: Marianne S. Scurrah,August 24, 1903 + + + + + + 2 + 357 + Correspondence to: ND From: Marianne S. Scurrah,December 30, 1903 + + + + + + 2 + 358 + Correspondence to: ND From: Orpha Steele,April 25, 1910 + + + + + + 2 + 359 + Correspondence to: ND From: Orpha Steele,September 28, 1910 + + + + + + 2 + 360 + Correspondence to: ND From: Alice Stevens,April 28, 1905 + + + + + + 2 + 361 + Correspondence to: ND From: Cora (Student),September 7, 1905 + + + + + + 2 + 362 + Correspondence to: ND From: Cora (Student),October 31, 1905 + + + + + + 2 + 363 + Correspondence to: ND From: Lulu (Student),undated + + + + + + 2 + 364 + Correspondence to: ND From: Carrie Martin,March 16, 1909 + + + + + + 2 + 365 + Correspondence to: ND From: Dennis R. Sullivan,October 11, 1910 + + + + + + 2 + 366 + Correspondence to: ND From: Dennis R. Sullivan,November 2, 1910 + + + + + + 2 + 367 + Correspondence to: ND From: Dennis R. Sullivan,November 25, 1910 + + + + + + 2 + 368 + Correspondence to: ND From: Jane Swan,January 27, 1899 + + + + + + 2 + 369 + Correspondence to: ND From: Jane Swan,December 17, 1900 + + + + + + 2 + 370 + Correspondence to: ND From: Sybil,November 4, 1910 + + + + + + 2 + 371 + Correspondence to: ND From: Sybil,December 28, 1909 + + + + + + 2 + 372 + Correspondence to: ND From: Sybil,February 19, 1910 + + + + + + 2 + 373 + Correspondence to: ND From: Sybil,April 10, 1910 + + + + + + 2 + 374 + Correspondence to: ND From: Sybil,July 14, 1910 + + + + + + 2 + 375 + Correspondence to: ND From: Sybil,October 23, 1910 + + + + + + 2 + 376 + Correspondence to: ND From: Sybil,November 25, 1910 + + + + + + 3 + 1 + Miscellaneous, Miscellaneous Correspondence,1902-1905 + + + + + + 3 + 2 + Miscellaneous, Correspondence,April 15, 1909-September 21, 1938 + + + + + + 3 + 3 + Miscellaneous, Postcards,1909-1949 + + + + + + 3 + 4 + Miscellaneous, Miscellaneous (folder 1 of 3),undated + + + + + + 3 + 5 + Miscellaneous, Miscellaneous (folder 2 of 3),undated + + + + + + + 3 + 6 + Miscellaneous, Speech,undated + + + + + + 3 + 7 + Miscellaneous, Publications,undated + + + + + + 3 + 8 + Miscellaneous, Miscellaneous (folder 3 of 3),undated + + + + + + 3 + 9 + Miscellaneous, Letters and Documents,undated + + + + + + 3 + 10 + Miscellaneous, Leather Postcards,undated + + + + + + 3 + 11 + Miscellaneous, Cards, Name cards, Advertisements,undated + + + + + + 3 + 12 + Miscellaneous, Empty Envelopes,undated + + + + + + 4 + 1 + Correspondence to: ND From: Della Beers,September 22, 1907 + + + + + + 4 + 2 + Correspondence to: ND From: Della Beers,March 31, 1908 + + + + + + 4 + 3 + Correspondence to: ND From: Della Beers,April 11, 1908 + + + + + + 4 + 4 + Correspondence to: ND From: Della Beers,May 2, 1908 + + + + + + 4 + 5 + Correspondence to: ND From: Della Beers,May 25, 1908 + + + + + + 4 + 6 + Correspondence to: ND From: Della Beers,June 14, 1908 + + + + + + 4 + 7 + Correspondence to: ND From: Della Beers,July 3, 1908 + + + + + + 4 + 8 + Correspondence to: ND From: Della Beers,August 11, 1908 + + + + + + 4 + 9 + Correspondence to: ND From: Della Beers,September 7, 1908 + + + + + + 4 + 10 + Correspondence to: ND From: Della Beers,October 4, 1908 + + + + + + 4 + 11 + Correspondence to: ND From: Della Beers,November 15, 1908 + + + + + + 4 + 12 + Correspondence to: ND From: Della Beers,January 8, 1909 + + + + + + 4 + 13 + Correspondence to: ND From: Della Beers,January 30, 1909 + + + + + + 4 + 14 + Correspondence to: ND From: Della Beers,March 17, 1909 + + + + + + 4 + 15 + Correspondence to: ND From: Della Beers,April 17, 1909 + + + + + + 4 + 16 + Correspondence to: ND From: Della Beers,June 5, 1909 + + + + + + 4 + 17 + Correspondence to: ND From: Della Beers,July 23, 1909 + + + + + + 4 + 18 + Correspondence to: ND From: Della Beers,August 22, 1909 + + + + + + 4 + 19 + Correspondence to: ND From: Della Beers,December 26, 1909 + + + + + + 4 + 20 + Correspondence to: ND From: Della Beers,January 16, 1910 + + + + + + 4 + 21 + Correspondence to: ND From: Della Beers,March 9, 1910 + + + + + + 4 + 22 + Correspondence to: ND From: Della Beers,undated + + + + + + 4 + 23 + Correspondence to: ND From: Bessie,April 4, 1910 + + + + + + 4 + 24 + Correspondence to: ND From: May L. Carson,October 21, 1904 + + + + + + 4 + 25 + Correspondence to: ND From: May L. Carson,November 9, 1904 + + + + + + 4 + 26 + Correspondence to: ND From: May L. Carson,November 22, 1904 + + + + + + 4 + 27 + Correspondence to: ND From: May L. Carson,December 19, 1904 + + + + + + 4 + 28 + Correspondence to: ND From: May L. Carson,January 2, 1905 + + + + + + 4 + 29 + Correspondence to: ND From: May L. Carson,January 17, 1905 + + + + + + 4 + 30 + Correspondence to: ND From: May L. Carson,February 14, 1905 + + + + + + 4 + 31 + Correspondence to: ND From: May L. Carson,February 20, 1905 + + + + + + 4 + 32 + Correspondence to: ND From: May L. Carson,April 20, 1905 + + + + + + 4 + 33 + Correspondence to: ND From: May L. Carson,June 14, 1905 + + + + + + 4 + 34 + Correspondence to: ND From: May L. Carson,August 2, 1905 + + + + + + 4 + 35 + Correspondence to: ND From: May L. Carson,September 17, 1905 + + + + + + 4 + 36 + Correspondence to: ND From: May L. Carson,October 29, 1905 + + + + + + 4 + 37 + Correspondence to: ND From: May L. Carson,November 19, 1905 + + + + + + 4 + 38 + Correspondence to: ND From: May L. Carson,December 23, 1905 + + + + + + 4 + 39 + Correspondence to: ND From: May L. Carson,August 2, 1903 + + + + + + 4 + 40 + Correspondence to: ND From: May L. Carson,August 17, 1903 + + + + + + 4 + 41 + Correspondence to: ND From: May L. Carson,February 28, 1906 + + + + + + 4 + 42 + Correspondence to: ND From: May L. Carson,April 5, 1906 + + + + + + 4 + 43 + Correspondence to: ND From: May L. Carson,May 15, 1906 + + + + + + 4 + 44 + Correspondence to: ND From: May L. Carson,June 9, 1906 + + + + + + 4 + 45 + Correspondence to: ND From: May L. Carson,June 18, 1906 + + + + + + 4 + 46 + Correspondence to: ND From: May L. Carson,August 17, 1906 + + + + + + 4 + 47 + Correspondence to: ND From: May L. Carson,September 7, 1906 + + + + + + 4 + 48 + Correspondence to: ND From: May L. Carson,undated + + + + + + 4 + 49 + Correspondence to: ND From: May L. Carson,October 10, 1906 + + + + + + 4 + 50 + Correspondence to: ND From: May L. Carson,November [no day] 1906 + + + + + + 4 + 51 + Correspondence to: ND From: May L. Carson,December [no day] 1907? + + + + + + 4 + 52 + Correspondence to: ND From: May L. Carson,February 4, 1907 + + + + + + 4 + 53 + Correspondence to: ND From: May L. Carson,February 5, 1907 + + + + + + 4 + 54 + Correspondence to: ND From: May L. Carson,March 17, 1907 + + + + + + 4 + 55 + Correspondence to: ND From: May L. Carson,1907 + + + + + + 4 + 56 + Correspondence to: ND From: May L. Carson,July 29, 1907 + + + + + + 4 + 57 + Correspondence to: ND From: May L. Carson,August 18, 1907 + + + + + + 4 + 58 + Correspondence to: ND From: May L. Carson,August 21, 1907 + + + + + + 4 + 59 + Correspondence to: ND From: May L. Carson,October 6, 1907 + + + + + + 4 + 60 + Correspondence to: ND From: May L. Carson,October 11, 1907 + + + + + + 4 + 61 + Correspondence to: ND From: May L. Carson,November 10, 1907 + + + + + + 4 + 62 + Correspondence to: ND From: Harry E. Davis,May 7, 1906 + + + + + + 4 + 63 + Correspondence to: ND From: Zoe Davis,May 20, 1906 + + + + + + 4 + 64 + Correspondence to: ND From: Harry E. Davis,May 20, 1906 + + + + + + 4 + 65 + Correspondence to: ND From: Harry E. Davis,October 7, 1906 + + + + + + 4 + 66 + Correspondence to: ND From: Zoe and Baby Davis,October 7, 1906 + + + + + + 4 + 67 + Correspondence to: ND From: Harry E. Davis,October 21, 1906 + + + + + + 4 + 68 + Correspondence to: ND From: Harry E. Davis,November 3, 1906 + + + + + + 4 + 69 + Correspondence to: ND From: Harry and Zoe Davis,November 18, 1906 + + + + + + 4 + 70 + Correspondence to: ND From: Harry and Zoe Davis,December 16, 1906 + + + + + + 4 + 71 + Correspondence to: ND From: Harry and Zoe Davis,January 6, 1907 + + + + + + 4 + 72 + Correspondence to: ND From: Harry E. Davis,January 22, 1907 + + + + + + 4 + 73 + Correspondence to: ND From: Zoe Davis,January 22, 1907 + + + + + + 4 + 74 + Correspondence to: ND From: Harry, Zoe, and Baby Davis,February 10, 1907 + + + + + + 4 + 75 + Correspondence to: ND From: Harry and Zoe Davis,March 24, 1907 + + + + + + 4 + 76 + Correspondence to: ND From: Harry E. Davis,April 14, 1907 + + + + + + 4 + 77 + Correspondence to: ND From: Zoe Davis,May 9, 1907 + + + + + + 4 + 78 + Correspondence to: ND From: Harry and Zoe Davis,May 12, 1907 + + + + + + 4 + 79 + Correspondence to: ND From: Harry E. Davis,May 21, 1907 + + + + + + 4 + 80 + Correspondence to: Parents and All From: Harry E. Davis,August 11, 1907 + + + + + + 4 + 81 + Correspondence to: Sister (ND) and All From: Zoe Davis,August 11, 1907 + + + + + + 4 + 82 + Correspondence to: Parents and All From: Harry E. Davis,August 25, 1907 + + + + + + 4 + 83 + Correspondence to: Parents and All From: Zoe and Baby Davis,August 25, 1907 + + + + + + 4 + 84 + Correspondence to: Parents and Sister (ND) From: Harry E. Davis,September 8, 1907 + + + + + + 4 + 85 + Correspondence to: Parents and ND From: Zoe Davis,September 8, 1907 + + + + + + 4 + 86 + Correspondence to: ND From: Harry and Zoe Davis,October 27, 1907 + + + + + + 4 + 87 + Correspondence to: ND From: Harry, Zoe, and Baby Davis,November 18, 1907 + + + + + + 4 + 88 + Correspondence to: ND From: Zoe and Baby Davis,December 8, 1907 + + + + + + 4 + 89 + Correspondence to: ND From: Harry E. Davis,December 8, 1907 + + + + + + 4 + 90 + Correspondence to: ND From: Harry, Zoe, and Wilson (Baby) Davis,January 21, 1908 + + + + + + 4 + 91 + Correspondence to: ND From: Harry E. Davis,February 23, 1908 + + + + + + 4 + 92 + Correspondence to: ND From: Harry, Zoe, and Wilson Davis,April 12, 1908 + + + + + + 4 + 93 + Correspondence to: ND From: Harry E. Davis,April 20, 1908 + + + + + + 4 + 94 + Correspondence to: ND From: Harry and Zoe Davis,May 10, 1908 + + + + + + 4 + 95 + Correspondence to: ND From: Harry, Zoe, and Wilson Davis,May 31, 1908 + + + + + + 4 + 96 + Correspondence to: ND From: Zoe and Wilson Davis,June 22, 1908 + + + + + + 4 + 97 + Correspondence to: ND From: Harry E. Davis,September 13, 1908 + + + + + + 4 + 98 + Correspondence to: ND From: Harry E. Davis,September 27, 1908 + + + + + + 4 + 99 + Correspondence to: ND From: Zoe Davis,September 27, 1908 + + + + + + 4 + 100 + Correspondence to: ND From: Harry E. Davis,October 17, 1908 + + + + + + 4 + 101 + Correspondence to: ND From: Harry, Zoe, and Wilson Davis,October 26, 1908 + + + + + + 4 + 102 + Correspondence to: ND From: Harry E. Davis,November 29, 1908 + + + + + + 4 + 103 + Correspondence to: ND From: Harry, Zoe, and Wilson Davis,December 13, 1908 + + + + + + 4 + 104 + Correspondence to: ND From: Zoe and Wilson Davis,1908 + + + + + + 4 + 105 + Correspondence to: ND From: Uncle Weston Davis,August 19, 1900 + + + + + + 4 + 106 + Correspondence to: ND From: Aunt Loretta Davis,August 20, 1900 + + + + + + 4 + 107 + Correspondence to: ND From: Aunt Loretta Davis,December 11, 1900 + + + + + + 4 + 108 + Correspondence to: ND From: Aunt Loretta Davis,December 8, 1901 + + + + + + 4 + 109 + Correspondence to: ND From: Anna Olmsted,March 12, 1902 + + + + + + 4 + 110 + Correspondence to: ND From: Uncle Weston Davis,December 20, 1903 + + + + + + 4 + 111 + Correspondence to: ND From: Uncle Weston Davis,July 10, 1904 + + + + + + 4 + 112 + Correspondence to: ND From: Aunt Loretta Davis,July 11, 1904 + + + + + + 4 + 113 + Correspondence to: ND From: Aunt Loretta Davis,September 25, 1905 + + + + + + 4 + 114 + Correspondence to: ND From: Uncle Weston Davis,December 24, 1905 + + + + + + 4 + 115 + Correspondence to: ND From: Uncle Weston Davis,January 14, 1906 + + + + + + 4 + 116 + Correspondence to: ND From: Uncle Weston Davis,March 4, 1906 + + + + + + 4 + 117 + Correspondence to: ND From: Uncle Weston Davis,May 1, 1906 + + + + + + 4 + 118 + Correspondence to: ND From: Uncle Weston Davis,June 21, 1906 + + + + + + 4 + 119 + Correspondence to: ND From: Uncle Weston Davis,August 19, 1906 + + + + + + 4 + 120 + Correspondence to: ND From: Aunt Loretta Davis,September 7, 1906 + + + + + + 4 + 121 + Correspondence to: ND From: Uncle Weston Davis,October 7, 1906 + + + + + + 4 + 122 + Correspondence to: ND From: Uncle Weston Davis,November 4, 1906 + + + + + + 4 + 123 + Correspondence to: ND From: Uncle Weston Davis,January 13, 1907 + + + + + + 4 + 124 + Correspondence to: ND From: Aunt Loretta Davis,January 18, 1907 + + + + + + 4 + 125 + Correspondence to: ND From: Uncle Weston Davis,February 17, 1907 + + + + + + 4 + 126 + Correspondence to: ND From: Uncle Weston Davis,March 17, 1907 + + + + + + 4 + 127 + Correspondence to: ND From: Uncle Weston Davis,April 21, 1907 + + + + + + 4 + 128 + Correspondence to: ND From: Uncle Weston Davis,May 15, 1907 + + + + + + 4 + 129 + Correspondence to: ND From: Uncle Weston Davis,July 7, 1907 + + + + + + 4 + 130 + Correspondence to: ND From: Uncle Weston Davis,August 11, 1907 + + + + + + 4 + 131 + Correspondence to: ND From: Uncle Weston Davis,October 6, 1907 + + + + + + 4 + 132 + Correspondence to: ND From: Uncle Weston Davis,November 17, 1907 + + + + + + 4 + 133 + Correspondence to: ND From: Uncle Weston Davis,January 12, 1908 + + + + + + 4 + 134 + Correspondence to: ND From: Uncle Weston Davis,February 9, 1908 + + + + + + 4 + 135 + Correspondence to: ND From: Uncle Weston Davis,March 16, 1908 + + + + + + 4 + 136 + Correspondence to: ND From: Uncle Weston Davis,April 26, 1908 + + + + + + 4 + 137 + Correspondence to: ND From: Uncle Weston Davis,July 19, 1908 + + + + + + 4 + 138 + Correspondence to: ND From: Uncle Weston Davis,October 4, 1908 + + + + + + 4 + 139 + Correspondence to: ND From: Uncle Weston Davis,November 22, 1908 + + + + + + 4 + 140 + Correspondence to: ND From: Uncle Weston Davis,January 3, 1909 + + + + + + 4 + 141 + Correspondence to: ND From: Uncle Weston Davis,February 14, 1909 + + + + + + 4 + 142 + Correspondence to: ND From: Uncle Weston Davis,March 21, 1909 + + + + + + 4 + 143 + Correspondence to: ND From: Uncle Weston Davis,May 2, 1909 + + + + + + 4 + 144 + Correspondence to: ND From: Aunt Loretta Davis,March 12, [ no year] + + + + + + 4 + 145 + Correspondence to: ND From: Uncle Weston Davis,September 24, [ no year] + + + + + + 4 + 146 + Correspondence to: ND From: Uncle Weston Davis,undated + + + + + + 4 + 147 + Correspondence to: ND From: Aunt Loretta Davis,undated + + + + + + 4 + 148 + Correspondence to: ND ("Luella Gas pipe") From: Hattie Helmer ("Belinda Beeswax"),July 9, 1904 + + + + + + 4 + 149 + Correspondence to: ND ("Luella Gas pipe") From: Hattie Helmer ("Belinda Beeswax"),August 2, 1904 + + + + + + 4 + 150 + Correspondence to: ND ("Luella Gas pipe") From: Hattie Helmer ("Belinda Beeswax"),September 13, 1904 + + + + + + 4 + 151 + Correspondence to: ND ("Luella Gas pipe") From: Hattie Helmer ("Belinda Beeswax"),November 8, 1904 + + + + + + 4 + 152 + Correspondence to: ND ("Luella Gas pipe") From: Hattie Helmer ("Belinda Beeswax"),January 1, 1905 + + + + + + 4 + 153 + Correspondence to: ND ("Luella Gas pipe") From: Hattie Helmer ("Belinda Beeswax"),April 10, 1905 + + + + + + 4 + 154 + Correspondence to: ND ("Luella Gas pipe") From: Hattie Helmer ("Belinda Beeswax"),February 11, 1905 + + + + + + 4 + 155 + Correspondence to: ND ("Luella Gas pipe") From: Hattie Helmer ("Belinda Beeswax"),June 5, 1905 + + + + + + 4 + 156 + Correspondence to: ND From: C. J. H.,May 6, 1906 + + + + + + 4 + 157 + Correspondence to: ND ("Luella Gas pipe") From: Hattie Helmer ("Belinda Beeswax"),May 7, 1906 + + + + + + 4 + 158 + Correspondence to: ND ("Luella Gas pipe") From: Hattie Helmer ("Belinda Beeswax"),July 29, 1906 + + + + + + 4 + 159 + Correspondence to: ND ("Luella Gas pipe") From: Hattie Helmer ("Belinda Beeswax"),October 6, 1906 + + + + + + 4 + 160 + Correspondence to: ND ("Luella Gas pipe") From: Hattie Helmer ("Belinda Beeswax"),November 4, 1906 + + + + + + 4 + 161 + Correspondence to: ND ("Luella Gas pipe") From: Hattie Helmer ("Belinda Beeswax"),January 6, 1907 + + + + + + 4 + 162 + Correspondence to: ND From: Hattie Helmer ("Belinda Beeswax"),February 24, 1907 + + + + + + 4 + 163 + Correspondence to: Belinda ("Luella Gas pipe") From: Hattie Helmer ("Belinda Beeswax"),April 28, 1907 + + + + + + 4 + 164 + Correspondence to: ND ("Luella Gas pipe") From: Hattie Helmer ("Belinda Beeswax"),July 30, 1907 + + + + + + 4 + 165 + Correspondence to: ND ("Luella Gas pipe") From: Hattie Helmer ("Belinda Beeswax"),July 7, 1908 + + + + + + 4 + 166 + Correspondence to: ND ("Luella Gas pipe") From: Hattie Helmer ("Belinda Beeswax"),September 2, 1908 + + + + + + 4 + 167 + Correspondence to: ND ("Luella Gas pipe") From: Hattie Helmer ("Belinda Beeswax"),October 4, 1908 + + + + + + 4 + 168 + Correspondence to: ND From: Mary,October 16, 1908 + + + + + + 4 + 169 + Correspondence to: ND ("Luella Gas pipe") From: Hattie Helmer ("Belinda Beeswax"),November 14, 1908 + + + + + + 4 + 170 + Correspondence to: ND ("Luella Gas pipe") From: Hattie Helmer ("Belinda Beeswax"),undated + + + + + + 4 + 171 + Correspondence to: B.E.L.L.N. (ND?) From: Hector,undated + + + + + + 4 + 172 + Correspondence to: Parents From: ND,January 23, 1909 + + + + + + 4 + 173 + Correspondence to: Parents From: ND,February 7, 1909 + + + + + + 4 + 174 + Correspondence to: Parents From: ND,February 20, 1909 + + + + + + 4 + 175 + Correspondence to: ND From: Parents,February 24, 1909 + + + + + + 4 + 176 + Correspondence to: Parents From: ND,March 1, 1909 + + + + + + 4 + 177 + Correspondence to: ND From: Parents,March 7, 1909 + + + + + + 4 + 178 + Correspondence to: Parents From: ND,March 8, 1909 + + + + + + 4 + 179 + Correspondence to: ND From: Parents,March 9, 1909 + + + + + + 4 + 180 + Correspondence to: ND From: Parents,March 17, 1909 + + + + + + 4 + 181 + Correspondence to: ND From: Parents,March 21, 1909 + + + + + + 4 + 182 + Correspondence to: Parents From: ND,March 21, 1909 + + + + + + 4 + 183 + Correspondence to: ND From: Parents,March 30, 1909 + + + + + + 4 + 184 + Correspondence to: Parents From: ND,March 31, 1909 + + + + + + 4 + 185 + Correspondence to: ND From: Parents,April 1, 1909 + + + + + + 4 + 186 + Correspondence to: Parents From: ND,April 6, 1909 + + + + + + 4 + 187 + Correspondence to: ND From: Parents,April 7, 1909 + + + + + + 4 + 188 + Correspondence to: Parents From: ND,April 11, 1909 + + + + + + 4 + 189 + Correspondence to: ND From: Parents,April 14, 1909 + + + + + + 4 + 190 + Correspondence to: Parents From: ND,April 18, 1909 + + + + + + 4 + 191 + Correspondence to: ND From: Parents,April 21, 1909 + + + + + + 4 + 192 + Correspondence to: Parents From: ND,April 22, 1909 + + + + + + 4 + 193 + Correspondence to: ND From: Parents,April 23, 1909 + + + + + + 4 + 194 + Correspondence to: Parents From: ND,April 25, 1909 + + + + + + 4 + 195 + Correspondence to: Parents From: ND,May 1, 1909 + + + + + + 4 + 196 + Correspondence to: ND From: Parents,May 5, 1909 + + + + + + 4 + 197 + Correspondence to: Parents From: ND,May 10, 1909 + + + + + + 4 + 198 + Correspondence to: ND From: Parents,May 12, 1909 + + + + + + 4 + 199 + Correspondence to: ND From: Parents,May 18, 1909 + + + + + + 4 + 200 + Correspondence to: Parents From: ND,May 24, 1909 + + + + + + 4 + 201 + Correspondence to: Parents From: ND,undated + + + + + + 4 + 202 + Correspondence to: Parents From: ND,June 2, 1909 + + + + + + 4 + 203 + Correspondence to: ND From: Parents,June 3, 1909 + + + + + + 4 + 204 + Correspondence to: ND From: Parents,June 6, 1909 + + + + + + 4 + 205 + Correspondence to: ND From: Parents, includes Detroit newspaper clipping of July 5, 1909June 13, 1909, July 5, 1909 + + + + + + 4 + 206 + Correspondence to: ND From: Parents,July 10, 1909 + + + + + + 4 + 207 + Correspondence to: Parents From: ND,July 15, 1909 + + + + + + 4 + 208 + Correspondence to: Parents From: ND,March 8, 1908 + + + + + + 4 + 209 + Correspondence to: Parents From: ND,March 15, 1908 + + + + + + 4 + 210 + Correspondence to: ND From: Parents,April 9, 1908 + + + + + + 4 + 211 + Correspondence to: Parents From: ND,April 12, 1908 + + + + + + 4 + 212 + Correspondence to: ND From: Parents,April 15, 1908 + + + + + + 4 + 213 + Correspondence to: W. H. Davis From: A. V. Avery,April 16, 1908 + + + + + + 4 + 214 + Correspondence to: ND From: Parents,April 19, 1908 + + + + + + 4 + 214 + Correspondence to: ND From: Parents,April 19, 1908 + + + + + + 4 + 215 + Correspondence to: Parents From: ND,April 19, 1908 + + + + + + 4 + 216 + Correspondence to: W. J. McKone From: W. H. Davis,April 23, 1908 + + + + + + 4 + 217 + Correspondence to: ND From: Parents,April 23, 1908 + + + + + + 4 + 218 + Correspondence to: Parents From: ND,April 26, 1908 + + + + + + 4 + 219 + Correspondence to: ND From: Parents,April 27, 1908 + + + + + + 4 + 220 + Correspondence to: Parents From: ND,April 29, 1908 + + + + + + 4 + 221 + Correspondence to: ND From: Parents,May 3, 1908 + + + + + + 4 + 222 + Correspondence to: Parents From: ND,May 4, 1908 + + + + + + 4 + 223 + Correspondence to: ND From: Parents,May 6, 1908 + + + + + + 4 + 224 + Correspondence to: Parents From: ND,May 10, 1908 + + + + + + 4 + 225 + Correspondence to: ND From: Parents,May 13, 1908 + + + + + + 4 + 226 + Correspondence to: Parents From: ND,May 15, 1908 + + + + + + 4 + 227 + Correspondence to: ND From: Parents,May 19, 1908 + + + + + + 4 + 228 + Correspondence to: Parents From: ND,May 19, 1908 + + + + + + 4 + 229 + Correspondence to: Parents From: ND,May 24, 1908 + + + + + + 4 + 230 + Correspondence to: ND From: Parents,May 26, 1908 + + + + + + 4 + 231 + Correspondence to: Parents From: ND,May 28, 1908 + + + + + + 4 + 232 + Correspondence to: Parents From: ND,May 31, 1908 + + + + + + 4 + 233 + Correspondence to: Parents From: ND (folder 1 of 2),undated + + + + + + 4 + 234 + Correspondence to: Parents From: ND (folder 2 of 2),undated + + + + + + 4 + 235 + Correspondence to: ND From: Parents,June 1, 1908 + + + + + + 4 + 236 + Correspondence to: ND From: Parents,June 4, 1908 + + + + + + 4 + 237 + Correspondence to: Parents From: ND,June 8, 1908 + + + + + + 4 + 238 + Correspondence to: ND From: Parents,June 10, 1908 + + + + + + 4 + 239 + Correspondence to: ND From: Parents,June 17, 1908 + + + + + + 4 + 240 + Correspondence to: Parents From: ND,September 2, 1908 + + + + + + 4 + 241 + Correspondence to: Parents From: ND,September 6, 1908 + + + + + + 4 + 242 + Correspondence to: ND From: Parents, with Portland Public Schools Course of Study dated September 8, 1908September 6, 8, 1908 + + + + + + 4 + 243 + Correspondence to: Parents From: ND,September 13, 1908 + + + + + + 4 + 244 + Correspondence to: ND From: Parents,September 15, 1908 + + + + + + 4 + 245 + Correspondence to: Parents From: ND,September 17, 1908 + + + + + + 4 + 246 + Correspondence to: Parents From: ND,September 20, 1908 + + + + + + 4 + 247 + Correspondence to: ND From: Parents,September 22, 1908 + + + + + + 4 + 248 + Correspondence to: ND From: Parents,September 24, 1908 + + + + + + 4 + 249 + Correspondence to: Parents From: ND,September 27, 1908 + + + + + + 4 + 250 + Correspondence to: ND From: Parents,September 30, 1908 + + + + + + 4 + 251 + Correspondence to: Parents From: ND,October 3, 1908 + + + + + + 4 + 252 + Correspondence to: ND From: Parents,October 7, 1908 + + + + + + 4 + 253 + Correspondence to: Parents From: ND,October 10, 1908 + + + + + + 4 + 254 + Correspondence to: ND From: Parents,October 13, 1908 + + + + + + 4 + 255 + Correspondence to: Parents From: ND,October 18, 1908 + + + + + + 4 + 256 + Correspondence to: ND From: Parents,October 20, 1908 + + + + + + 4 + 257 + Correspondence to: Parents From: ND,October 25, 1908 + + + + + + 4 + 258 + Correspondence to: Parents From: ND,November 1, 1908 + + + + + + 4 + 259 + Correspondence to: ND From: Parents,November 5, 1908 + + + + + + 4 + 260 + Correspondence to: Parents From: ND,November 8, 1908 + + + + + + 4 + 261 + Correspondence to: ND From: Parents,November 11, 1908 + + + + + + 4 + 262 + Correspondence to: Parents From: ND,November 14, 1908 + + + + + + 4 + 263 + Correspondence to: ND From: Parents,November 17, 1908 + + + + + + 4 + 264 + Correspondence to: Parents From: ND,November 22, 1908 + + + + + + 4 + 265 + Correspondence to: Parents From: ND,December 1, 1908 + + + + + + 4 + 266 + Correspondence to: ND From: Parents,December 1, 1908 + + + + + + 4 + 267 + Correspondence to: ND From: Parents,December 3, 1908 + + + + + + 4 + 268 + Correspondence to: Parents From: ND,December 6, 1908 + + + + + + 4 + 269 + Correspondence to: ND From: Parents,December 9, 1908 + + + + + + 4 + 270 + Correspondence to: ND From: Parents,December 15, 1908 + + + + + + 4 + 271 + Correspondence to: Parents From: ND,December 13, 1908 + + + + + + 4 + 272 + Correspondence to: Parents From: ND,January 3, 1909 + + + + + + 4 + 273 + Correspondence to: ND From: Parents,January 6, 1909 + + + + + + 4 + 274 + Correspondence to: ND From: Parents,January 19, 1909 + + + + + + 4 + 275 + Correspondence to: Parents From: ND,January 20, 1909 + + + + + + 4 + 276 + Correspondence to: ND From: Parents,January 27, 1909 + + + + + + 4 + 277 + Correspondence to: ND From: Parents,January 29, 1909 + + + + + + 4 + 278 + Correspondence to: ND From: Santa Claus,December 24, 1892 + + + + + + 4 + 279 + Correspondence to: Mother From: ND (folder 1 of 2),1894 + + + + + + 4 + 280 + Correspondence to: Mother From: ND (folder 2 of 2),1894 + + + + + + 4 + 281 + Correspondence to: Mother From: ND,February 15, 1896 + + + + + + 4 + 282 + Correspondence to: Aunt and Uncle From: Anna,March 26, 1897 + + + + + + 4 + 283 + Correspondence to: Parents From: ND,March 31, 1897 + + + + + + 4 + 284 + Correspondence to: Mother From: ND,March 18, 1895 + + + + + + 4 + 285 + Correspondence to: ND From: Mother,April 1, 1896 + + + + + + 4 + 286 + Correspondence to: Parents From: Nellie,undated + + + + + + 4 + 287 + Correspondence to: (Davis) Children From: Father (W. H. Davis),August 25, 1899 + + + + + + 4 + 288 + Correspondence to: Parents From: ND,January 26, 1904 + + + + + + 4 + 289 + Correspondence to: Little Sister (ND?) From: Zora,September 25, 1904 + + + + + + 4 + 290 + Correspondence to: ND From: Uncle Weston Davis,February 13, 1905 + + + + + + 4 + 291 + Correspondence to: ND From: Aunt Loretta Davis,February 13, 1905 + + + + + + 4 + 292 + Correspondence to: Little Girl (ND?) From: Mama,undated + + + + + + 4 + 293 + Correspondence to: ND From: Uncle Weston Davis,June 18, 1905 + + + + + + 4 + 294 + Correspondence to: Daughter (ND?) From: Parents,October 25, [no year] + + + + + + 4 + 295 + Correspondence to: Parents From: ND,October 29, 1905 + + + + + + 4 + 296 + Correspondence to: Mrs. Allen From: ND,undated + + + + + + 4 + 297 + Correspondence to: Parents From: ND,November 22, 1905 + + + + + + 4 + 298 + Correspondence to: Parents From: ND,January 1, 1906 + + + + + + 4 + 299 + Correspondence to: ND From: Father,January 9, 1906 + + + + + + 4 + 300 + Correspondence to: ND From: Mother,February 13, 1906 + + + + + + 4 + 301 + Correspondence to: Parents From: ND,March 19, 1906 + + + + + + 4 + 302 + Correspondence to: Parents From: ND,April 30, 1906 + + + + + + 4 + 303 + Correspondence to: Parents From: ND,May 23, 1906 + + + + + + 4 + 304 + Correspondence to: ND From: Parents,July 5, 1906 + + + + + + 4 + 305 + Correspondence to: Parents From: ND,July 6, 1906 + + + + + + 4 + 306 + Correspondence to: Parents From: ND,July 7, 1906 + + + + + + 4 + 307 + Correspondence to: ND and All From: Parents,July 10, 1906 + + + + + + 4 + 308 + Correspondence to: Parents From: ND,July 12, 1906 + + + + + + + + 4 + 309 + Correspondence to: ND From: Father,August 2, 1906 + + + + + + 4 + 310 + Correspondence to: Parents From: ND,September 29, 1906 + + + + + + 4 + 311 + Correspondence to: ND From: Mother,September 30, 1906 + + + + + + 4 + 312 + Correspondence to: ND From: Parents,October 4, 1906 + + + + + + 4 + 313 + Correspondence to: Parents From: ND,October 7, 1906 + + + + + + 4 + 314 + Correspondence to: Parents From: ND,October 10, 1906 + + + + + + 4 + 315 + Correspondence to: ND From: Parents, with First Art Recital,October 11, 1906 + + + + + + 4 + 316 + Correspondence to: Parents From: ND,October 14, 1906 + + + + + + 4 + 317 + Correspondence to: ND From: Parents,October 17, 1906 + + + + + + 4 + 318 + Correspondence to: ND From: Parents,October 24, 1906 + + + + + + 4 + 319 + Correspondence to: Parents From: ND,October 26, 1906 + + + + + + 4 + 320 + Correspondence to: ND From: Marna,October 31, 1906 + + + + + + 4 + 321 + Correspondence to: Parents From: ND,November 4, 1906 + + + + + + 4 + 322 + Correspondence to: ND From: Parents,November 7, 1906 + + + + + + 4 + 323 + Correspondence to: Parents From: ND,November 11, 1906 + + + + + + 4 + 324 + Correspondence to: ND From: Parents,November 11, 1906 + + + + + + 4 + 325 + Correspondence to: Parents From: ND,November 19, 1906 + + + + + + 4 + 326 + Correspondence to: ND From: Parents,undated + + + + + + 4 + 327 + Correspondence to: Parents From: ND,December 3, 1906 + + + + + + 4 + 328 + Correspondence to: ND From: Parents,December 6, 1906 + + + + + + 4 + 329 + Correspondence to: Parents From: ND,December 12, 1906 + + + + + + 4 + 330 + Correspondence to: Parents From: ND,December 17, 1906 + + + + + + 4 + 331 + Correspondence to: ND From: Parents,January 3, 1907 + + + + + + 4 + 332 + Correspondence to: Parents From: ND,January 13, 1907 + + + + + + 4 + 333 + Correspondence to: ND From: Parents,January 16, 1907 + + + + + + 4 + 334 + Correspondence to: ND From: Mr. Ludlow,January 16, 1907 + + + + + + 4 + 335 + Correspondence to: Parents From: ND,February 3, 1907 + + + + + + 4 + 336 + Correspondence to: Daughter (ND?) From: Father,February 5, 1907 + + + + + + 4 + 337 + Correspondence to: Parents From: ND,February 5, 1907 + + + + + + 4 + 338 + Correspondence to: Parents From: ND,February 7, 1907 + + + + + + 4 + 339 + Correspondence to: Parents From: ND,February 10, 1907 + + + + + + 4 + 340 + Correspondence to: ND From: Parents,February 17, 1907 + + + + + + 4 + 341 + Correspondence to: Parents From: ND,February 18, 1907 + + + + + + 4 + 342 + Correspondence to: ND From: Parents,February 28, 1907 + + + + + + 4 + 343 + Correspondence to: Parents From: ND,March 1, 1907 + + + + + + 4 + 344 + Correspondence to: Parents From: ND,March 10, 1907 + + + + + + 4 + 345 + Correspondence to: Parents From: ND,April 2, 1907 + + + + + + 4 + 346 + Correspondence to: ND From: Parents,April 11, 1907 + + + + + + 4 + 347 + Correspondence to: Parents From: ND,April 14, 1907 + + + + + + 4 + 348 + Correspondence to: Parents From: ND,April 20, 1907 + + + + + + 4 + 349 + Correspondence to: ND From: Parents,April 23, 1907 + + + + + + 4 + 350 + Correspondence to: Parents From: ND,April 27, 1907 + + + + + + 4 + 351 + Correspondence to: Parents From: ND,April 29, 1907 + + + + + + 4 + 352 + Correspondence to: Parents From: ND,May 5, 1907 + + + + + + 4 + 353 + Correspondence to: Parents From: ND,May 19, 1907 + + + + + + 4 + 354 + Correspondence to: Parents From: ND,May 26, 1907 + + + + + + 4 + 355 + Correspondence to: ND From: Mama (folder 1 of 2),undated + + + + + + 4 + 356 + Correspondence to: ND From: Mama (folder 2 of 2),undated + + + + + + 4 + 357 + Correspondence to: ND From: Parents,May 28, 1907 + + + + + + 4 + 357 + Correspondence to: ND From: Mother (folder 1 of 2),undated + + + + + + 4 + 358 + Correspondence to: ND From: Mother (folder 2 of 2), undated; with Michigan State Normal College Commencement Week Material, June 16-19, 1907June 16-19, 1907, undated + + + + + + 4 + 359 + Correspondence to: Parents From: ND,June 9, 1907 + + + + + + 4 + 360 + Correspondence to: Parents From: ND,September 30, 1907 + + + + + + 4 + 361 + Correspondence to: Parents From: ND,undated + + + + + + + 4 + 362 + Correspondence to: ND From: Parents,October 3, 1907 + + + + + + 4 + 363 + Correspondence to: ND From: Parents,October 10, 1907 + + + + + + 4 + 364 + Correspondence to: ND From: Parents,October 11, 1907 + + + + + + 4 + 365 + Correspondence to: ND From: Parents,October 17, 1907 + + + + + + 4 + 366 + Correspondence to: ND From: Parents,undated + + + + + + 4 + 367 + Correspondence to: Parents From: ND,October 20, 1907 + + + + + + 4 + 368 + Correspondence to: Parents From: ND,October 27, 1907 + + + + + + 4 + 369 + Correspondence to: ND From: Mother,October 30, 1907 + + + + + + 4 + 370 + Correspondence to: ND From: Parents,undated + + + + + + 4 + 371 + Correspondence to: Parents From: ND,November 3, 1907 + + + + + + 4 + 372 + Correspondence to: Parents From: ND,November 7, 1907 + + + + + + 4 + 373 + Correspondence to: Parents From: ND,November 10, 1907 + + + + + + 4 + 374 + Correspondence to: ND From: Parents,undated + + + + + + 4 + 375 + Correspondence to: ND From: Parents,November 12, 1907 + + + + + + 4 + 376 + Correspondence to: Parents From: ND,November 17, 1907 + + + + + + 4 + 377 + Correspondence to: ND From: Parents,December 4, 1907 + + + + + + 4 + 378 + Correspondence to: Parents From: ND,December 9, 1907 + + + + + + 4 + 379 + Correspondence to: ND From: Parents,December 11, 1907 + + + + + + 4 + 380 + Correspondence to: Parents From: ND,December 15, 1907 + + + + + + 4 + 381 + Correspondence to: ND From: Parents,December 17, 1907 + + + + + + 4 + 382 + Correspondence to: ND From: Parents,undated + + + + + + 4 + 383 + Correspondence to: ND From: Parents,January 5, 1908 + + + + + + 4 + 384 + Correspondence to: ND From: Parents,January 9, 1908 + + + + + + 4 + 385 + Correspondence to: ND From: Parents,January 14, 1908 + + + + + + 4 + 386 + Correspondence to: Parents From: ND,January 19, 1908 + + + + + + 4 + 387 + Correspondence to: Parents From: ND,January 26, 1908 + + + + + + 4 + 388 + Correspondence to: ND From: Parents,January 28, 1908 + + + + + + 4 + 389 + Correspondence to: Parents From: ND,February 2, 1908 + + + + + + 4 + 390 + Correspondence to: Parents From: ND,February 9, 1908 + + + + + + 4 + 391 + Correspondence to: Parents From: ND,February 11, 1908 + + + + + + 4 + 392 + Correspondence to: ND From: Mama,February 12, 1908 + + + + + + 4 + 393 + Correspondence to: Parents From: ND,February 16, 1908 + + + + + + 4 + 394 + Correspondence to: ND From: Parents,February 17, 1908 + + + + + + 4 + 395 + Correspondence to: Parents From: ND,February 23, 1908 + + + + + + 4 + 396 + Correspondence to: ND From: Parents,February 25, 1908 + + + + + + 4 + 397 + Correspondence to: ND From: Parents,February 26, 1908 + + + + + + 4 + 398 + Correspondence to: ND From: Parents,March 4, 1908 + + + + + + 4 + 399 + Correspondence to: ND From: Parents,March 15, 1908 + + + + + + 4 + 400 + Correspondence to: ND From: Parents,March 17, 1908 + + + + + + 4 + 401 + Correspondence to: ND From: Parents,March 24, 1908 + + + + + + 5 + 1 + NDF, Miscellaneous Thank You Notes, Croquet Rules,May 7, 1957 + + + + + + 5 + 2 + ND, Diary,1902 + + + + + + 5 + 3 + Theron W. Finley, School Reports,November 27, 1928 + + + + + + 5 + 4 + Harry C. Finley, School Reports,1921, 1927 + + + + + + 5 + 5 + Correspondence to: Nellie McMurtrie From: Vera VanSchelen,December 21, 1924 + + + + + + 5 + 6 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,February 20, [no year] + + + + + + 5 + 7 + Correspondence to: NDF From: Parma Chapter Order of the Eastern Star (O.E.S.) ,1912-1913 + + + + + + 5 + 8 + Correspondence to: Friend From: Franklyn Manufacturing Company,July [no day], 1925 + + + + + + 5 + 9 + W. H. Davis, Tax Receipt,December 21, 1891 + + + + + + 5 + 10 + W. H. Davis, Certificate for Justice of the Peace,August 29, 1902 + + + + + + 5 + 11 + Correspondence to: NDF From: University of Michigan Archives,November 17, 1937 + + + + + + 5 + 12 + Correspondence to: NDF From: Michigan Historical Commission, Theron S. Finley / ND Wedding Clipping and Miscellaneous Newspaper Clippings,May 5, 1931 + + + + + + 5 + 13 + Correspondence to: Whom It May Concern From: Theron W. and Harry C. Finley,July 30, 1960 + + + + + + 5 + 14 + Correspondence to: Mary MacMurtrie From: R. B. Hampton,June 18, 18[no date] + + + + + + 5 + 15 + W. H. Davis, Second Grade Teachers' Certificates,1867, 1870, 1880, 1882 + + + + + + 5 + 16 + Correspondence to: W. H. Davis From: J. W. Bentley; Michigan Teachers Reading Circle; Michigan State Teachers Association Institute Program,September 11, 1882; 1916/1917; November 1916 + + + + + + 5 + 17 + Jackson High School, Teachers' Meeting,October 1916 + + + + + + 5 + 18 + Common Schools of Michigan, Spring Term Examination,1910 + + + + + + 5 + 19 + Albion Council of the Michigan Congress of Parents and Teachers,February 12, 1929 + + + + + + 5 + 20 + Correspondence to: Mrs. W. H. Davis From: Miss R. Landon,October 30, [no year] + + + + + + 5 + 21 + Chauncey Deming Searl, Obituary Card and Photograph,August 31, 1917 + + + + + + 5 + 22 + Correspondence to: Mr. [no "s"] Nellie D. Finley From: Michigan Mutual Hail Insurance Company,June 27, 1935 + + + + + + 5 + 23 + Andrew Moore, Genealogy,1886 + + + + + + 5 + 24 + Correspondence to: NDF From: M. J.,February 28, 1959 + + + + + + 5 + 25 + W. H. Davis, Lakeview, Michigan Lot, Miscellaneous Receipts,1888-1890 + + + + + + 5 + 26 + ND, Cato Township, Montcalm County, Tax Receipt,1891 + + + + + + 5 + 27 + W. H. Davis, Lodge Dues Receipt,1891 + + + + + + 5 + 28 + W. H. Davis, St. Jo House Stationary, with Mecosta, Michigan, Thanksgiving Party Program,undated + + + + + + 5 + 29 + ND, Women's Relief Corps Card,January 26, 1896 + + + + + + 5 + 30 + W. H. Davis, W. J. Carse; Quakerton Teachers; Graduation Class Speech,August 24, 1892; 1865-1918; 1900, 1902 + + + + + + 5 + 31 + Correspondence to: ND From: Harry Brown, Michigan Historical Collections,March 11, 1939 + + + + + + 5 + 32 + ND, Lakeview Village Tax Receipt,August 15, 1891 + + + + + + 5 + 33 + NDF, Springport Signal,September 8, 1934 + + + + + + 5 + 34 + NDF, Albion Evening Reporter,September 12, 1934 + + + + + + 5 + 35 + NDF, Miscellaneous Recipe,March 3, 1927 + + + + + + 5 + 36 + Correspondence to: NDF From: Aunt Louie,October 12, 1938 + + + + + + 5 + 37 + Correspondence to: Louie Thompson From: Brenda,August 13, 1938 + + + + + + 5 + 38 + Correspondence to: NDF From: Mr. and Mrs. B. Genze,September 24, 1938 + + + + + + 5 + 39 + Correspondence to: NDF From: Gerty,January 29, 1938 + + + + + + 5 + 40 + Correspondence to: NDF From: Harry and Zoe Davis,August 12, [no year] + + + + + + 5 + 41 + Correspondence to: NDF From: Harry and Zoe Davis,September 16, 1938 + + + + + + 5 + 42 + Correspondence to: W. H. Davis From: Gerty and Wilson Davis,1933 + + + + + + 5 + 43 + Correspondence to: NDF From: Aunt Louis,February 2, 1938 + + + + + + 5 + 44 + Correspondence to: NDF From: Ruth Saxton,January 6, 1938 + + + + + + 5 + 45 + Correspondence to: NDF From: Zoe Davis,December 27, 1937 + + + + + + 5 + 46 + Correspondence to: NDF From: Aunt Louis,February 21, 1938 + + + + + + 5 + 47 + Correspondence to: NDF From: Zarita,June 20, 1939 + + + + + + 5 + 48 + Correspondence to: NDF From: Zoe and Harry Davis,July 30, 1936 + + + + + + 5 + 49 + Correspondence to: NDF From: Aunt Louie,August 24, 1939 + + + + + + 5 + 50 + Correspondence to: NDF From: Aunt Louie,October 16, 1939 + + + + + + 5 + 51 + Correspondence to: NDF From: Harry and Zoe Davis,May 26, 1936 + + + + + + 5 + 52 + Correspondence to: Mr. W. H. Davis From: Harry E. Davis,June 8, 1936 + + + + + + 5 + 53 + NDF, Springport Signal,June 3, 1937 + + + + + + 5 + 54 + Correspondence to: NDF From: Harry and Zoe Davis, May 29, 1933; with Frank Hewitt / Lena Herrick Wedding Invitation, December 11, 1920,May 28, 1933; December 11, 1920 + + + + + + 5 + 55 + NDF and Family, Sympathy Letter / Flower List,August 11, 1933 + + + + + + 5 + 56 + H. J. McMurtrie Business Card,undated + + + + + + 5 + 57 + Farmers' Mutual Insurance Company of Jackson, Michigan, Financial Statement,undated + + + + + + 5 + 58 + Correspondence to: NDF From: Wilson and Gerty Davis,undated + + + + + + 5 + 59 + Correspondence to: NDF From: E. E. Stokoe,1930s + + + + + + 5 + 60 + Correspondence to: NDF From: State Farm Insurance Company,1932/1933 + + + + + + 5 + 61 + Correspondence to: ND From: Utica Public Schools,May 25, 1908 + + + + + + 5 + 62 + NDF, Guardianship Papers,1928 + + + + + + 5 + 63 + NDF, Bank Book,1944 + + + + + + + 5 + 64 + NDF, American Magazine Advertisement, November 1931; Sentous High School Graduation Invitation, 1932; undated Photographs, Tintype Carte-de-visites, Theron and Nellie Photograph Christmas Postcard; George T. Bullen and Company, Albion, Michigan, Sales Slip,November 1931; 1932; undated + + + + + + 5 + 65 + Correspondence to: NDF and Family From: Various Friends, Postcards,1913-1949 + + + + + + 5 + 66 + Correspondence to: Pa From: ND, 1894; Theron Finley Newspaper Clippings, undated,1894, undated + + + + + + 5 + 67 + Correspondence to: Mr. and Mrs. W.H. Davis From: Mrs. J.A. Cornell,November 23, 1892 + + + + + + + 5 + 68 + Correspondence to: W. H. Davis From: Miscellaneous Notes, 1881-1882; Finley / Davis Wedding Newspaper Articles, undated; Peter C. Malaney, Michigan Mutual Life Insurance Business Card, Pocket Songster - Songs, Stories, Some in German; Wilson Case Newspaper Article (Reprint, 1927),1881-1882; 1927; undated + + + + + + 5 + 69 + Correspondence to: NDF From: George H. Burr and Company,October 1932 + + + + + + 5 + 70 + Correspondence to: NDF From: Grand Rapids Trust Company,September 1933 + + + + + + 5 + 71 + Correspondence to: NDF From: Jackson County Examination Reports of Various Students, 1931; Wedding Announcement - Prine / Howard, 1927,1927; 1931 + + + + + + 5 + 72 + Correspondence to: ND From: D. A. Waterman, May 28, 1908, 1908; Advertising Card (Fish) Black Cross Coffee, undated; Michigan State Normal College, Ypsilanti Commencement, 1907,1907-1908; undated + + + + + + 5 + 73 + Correspondence to: NDF From: Aunt Pruda,December 31, 1931 + + + + + + 5 + 74 + Correspondence to: W. H. Davis From: Devereaux Hall Association Stock Certificate,1921 + + + + + + 5 + 75 + NDF, Car Registration,1932 + + + + + + 5 + 76 + Correspondence to NDF? From: Jackson County Teachers', Circular Letter, September 1916; Business and Calling Cards, undated,September 1916; undated + + + + + + 5 + 77 + Correspondence to NDF From: N. A. Corbett, Telegram,November 19, 1928 + + + + + + 5 + 78 + Correspondence to NDF From: Caroline Elmer, Student, October 3, 1928; with Michigan Souvenir booklet, 1897; Ladies' Notebook and Calendar, with Family Birth dates, undated; Hartford, Connecticut Weekly Times (newspaper), June 1, 1861,1861; 1897; 1928; undated + + + + + + 5 + 79 + W. H. Davis, Insurance Policies, 1875-1937; Miscellaneous, 1975; Recipe book, circa 1865-1867; Recipes and Dr. Miles' Cookbook, undated,1865-1867, 1875-1937; 1975; undated + + + + + + 5 + 80 + Correspondence to: NDF From: Jackson County Republican Committee 1936, with Michigan State College 69th Commencement Program, 1927,1927; 1936 + + + + + + 5 + 81 + NDF, Springport Chapter Order of the Eastern Star Certificate,1937 + + + + + + 5 + 82 + Correspondence to: NDF From: Michigan State Normal College, Ypsilanti,1939 + + + + + + 5 + 83 + Correspondence to: NDF From: National Surety Company,1933 + + + + + + 5 + 84 + Correspondence to: NDF From: National Geographic Society,December 10, 1942 + + + + + + 5 + 85 + W. H. Davis, Knights of the Maccabees Certificate,1890 + + + + + + 5 + 86 + W. H. Davis, Jackson Life Underwriters' Association April 5, 1933; with Various Teachers' Term Reports, Springport and/or Parma, 1870s-1890s,1870s-1890s; 1933 + + + + + + 5 + 87 + Martha J. Davis, Ladies of the Maccabees Certificate, 1899; Laws of, 1898; State of Michigan Assessor of School District Check Stub Book, 1889-1896; Hartford, Connecticut, Daily Times, June 24, 1861, Hartford, Connecticut,Weekly Times, August 6, 10, 24, 1861; Harpers Weekly (reissue), May 18, 1861; The Call (San Francisco), September 26, 1881; New York Herald (2 copies), April 15, 1865; Inquirer and Mirror (Nantucket, Massachusetts), October 7, 1960; Michigan Normal College blank stationary, undated; Michigan State Normal College Commencement Program, 1908,1861; 1864-1865; 1881; 1889-1896; 1908; 1960; undated + + + + + + 5 + 88 + Correspondence to: NDF From: Lyle A. Torrant, Commissioner of Schools, Jackson, February 5, 1947; with Parma Teachers' Contract, 1896; Parma and Springport Schools Classification Report, 1895; Michigan State Normal College Ivy Day Booklet, 1909; Michigan State Normal College Diploma, 1908; Annual Statistical Reports, Parma Schools, 1876-1903; Jackson County Teacher's Certificate, 1874; Teachers' Term Reports, the District Director, Parma, 1902-1905,1874; 1876-1905; 1908-1909; 1947 + + + + + + 5 + 89 + Harry C. Finley, Michigan College of Mining and Technology, Report Card,1940 + + + + + + 5 + 90 + NDF?, Notebook About Classes and Accounts,1898-1901 + + + + + + 5 + 91 + NDF, Notebook About Trip to Niagara Falls, Canada, undated; Miscellaneous, undated; Holiday Greeting Cards, various dates,undated + + + + + + 6 + 1 + Correspondence to: ND From: Bessie,January 1911 + + + + + + 6 + 2 + Correspondence to: ND From: Edna,January 2, November 1911 + + + + + + 6 + 3 + Correspondence to: ND From: Lena,January 6, 1911 + + + + + + 6 + 4 + Correspondence to: ND From: Hazel,January 9, 1911 + + + + + + 6 + 5 + Correspondence to: ND From: Uncle Weston Davis,January 15, 1911 + + + + + + 6 + 6 + Correspondence to: ND From: Herb Tweedie,January 16, 1911 + + + + + + 6 + 7 + Correspondence to: ND From: Harriet D.,January 19, 1911 + + + + + + + 8 + Correspondence to: ND From: Sybil,January 29, 1911 + + + + + + 6 + 9 + Correspondence to: ND From: Floy,February 5, 1911 + + + + + + 6 + 10 + Correspondence to: ND From: Aunt Philena, with John Stamp's Obituary,February 7, 1911 + + + + + + 6 + 11 + Correspondence to: ND From: Edna,February 8, 1911 + + + + + + 6 + 12 + Correspondence to: Nellie McMurtie From: Harry, Zoe, and Wilson Davis,February 12, 1911 + + + + + + 6 + 13 + Correspondence to: ND From: Thomas Sattler,February 22, 1911 + + + + + + 6 + 14 + Correspondence to: ND From: Hattie,February 22, 1911 + + + + + + 6 + 15 + Correspondence to: ND From: Eva L. King, with Eastern Star Receipt,March 2, 1911 + + + + + + 6 + 16 + Correspondence to: ND From: Ida,March 2, 1911 + + + + + + 6 + 17 + Correspondence to: ND From: Orpha,March 4, 1911 + + + + + + 6 + 18 + Correspondence to: ND From: Uncle Weston Davis,March 5, 1911 + + + + + + 6 + 19 + Correspondence to: ND From: Anna Holland,March 6, 1911 + + + + + + 6 + 20 + Correspondence to: ND From: Bessie,March 6, 1911 + + + + + + 6 + 21 + Correspondence to: ND (Children of all you address) From: Grandma, Hannah Moore, Lannie,March 7, 1911 + + + + + + 6 + 22 + Correspondence to: ND From: A. T. Tweedie, with Instructions,March 15, 1911 + + + + + + 6 + 23 + Correspondence to: John E. Kribble From: Mrs. Frank Krenerick,March 19, 1911 + + + + + + 6 + 24 + Correspondence to: Theron S. Finley and Harmond Ruff From: Frank Krenerick,March 19, 1911 + + + + + + 6 + 25 + Correspondence to: ND From: Edna,March 22, 1911 + + + + + + 6 + 26 + Correspondence to: ND, Mr. and Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,March 23, 1911 + + + + + + 6 + 27 + Correspondence to: ND From: Marguerite Furey?,March 28, 1911 + + + + + + 6 + 28 + Correspondence to: ND From: Sybil,April 2, 1911 + + + + + + 6 + 29 + Correspondence to: ND From: Aunt Philena, includes fabric and newspaper clipping,April 2, 1911 + + + + + + 6 + 30 + Correspondence to: ND From: Herb,April 6, 1911 + + + + + + 6 + 31 + Correspondence to: Harmond Ruff and Theron S. Finley From: C. E. Finley,April 12, 1911 + + + + + + 6 + 32 + Correspondence to: Theron S. Finley From: E. G. "Pa" Finley, address,April 24, 1911 + + + + + + 6 + 33 + Correspondence to: ND From: Edna Howard,April 27, 1911 + + + + + + 6 + 34 + Correspondence to: Anna Corbett From: Gertie,May 2, 1911 + + + + + + 6 + 35 + Correspondence to: ND and Folks From: Aunt Philena,May 4, 1911 + + + + + + 6 + 36 + Correspondence to: ND and Girls From: Ida,May 6, 1911 + + + + + + 6 + 37 + Correspondence to: ND From: Chauncey Helmer,May 15, 1911 + + + + + + 6 + 38 + Correspondence to: Theron S. Finley and Harmond Ruff From: Doe,May 16, 1911 + + + + + + 6 + 39 + Correspondence to: ND From: Sybil,May 29, 1911? + + + + + + 6 + 40 + Correspondence to: Theron S. Finley From: E. G. "Pa" Finley,June 6, 1911 + + + + + + 6 + 41 + Correspondence to: ND From: Herb,June 7, 1911 + + + + + + 6 + 42 + Correspondence to: ND From: Bessie,June 21, 1911? + + + + + + 6 + 43 + Correspondence to: ND From: Floy,June 25, 1911 + + + + + + 6 + 44 + Correspondence to: ND From: Harriet,July 1, 1911? + + + + + + 6 + 45 + Correspondence to: ND From: Bessie,July 27, 1911 + + + + + + 6 + 46 + Correspondence to: ND From: S. M. Eaton,July 5, 1911 + + + + + + 6 + 47 + Correspondence to: ND From: Chauncey Helmer,July 17, 1911 + + + + + + 6 + 48 + Correspondence to: Philena From: Loretta Dain,July 21, 1911 + + + + + + 6 + 49 + Correspondence to: ND From: Bessie,July 27, 1911 + + + + + + 6 + 50 + Correspondence to: ND From: Weston and Aunt Philena,July 29, 1911 + + + + + + 6 + 51 + Correspondence to: ND From: Herb,July 29, 1911 + + + + + + 6 + 52 + Correspondence to: ND From: Aunt Philena,August 3, 1911 + + + + + + 6 + 53 + Correspondence to: Theron S. Finley From: E. G. Finley,July 24, 1911 + + + + + + 6 + 54 + Correspondence to: ND From: Bessie,July 27, 1911 + + + + + + 6 + 55 + Correspondence to: ND From: Herb,July 29, 1911 + + + + + + 6 + 56 + Correspondence to: ND From: Dele,August 4, 1911 + + + + + + 6 + 57 + Correspondence to: W. H. Davis From: Harry Davis,August 5, 1911 + + + + + + 6 + 58 + Correspondence to: ND From: Earl,August 13, 1911 + + + + + + 6 + 59 + Correspondence to: ND From: Aunt Philena,August 14, 1911 + + + + + + 6 + 60 + Correspondence to: ND From: Bessie and Quincy,August 14, 18, 1911 + + + + + + 6 + 61 + Correspondence to: ND From: Harriet,August 16, 1911 + + + + + + 6 + 62 + Correspondence to: ND and Folks From: Harry, Zoe, and Wilson Davis,August 17, 1911 + + + + + + 6 + 63 + Correspondence to: ND From: Chauncey J. Helmer,August 26, 1911 + + + + + + 6 + 64 + Correspondence to: ND From: Earl,September 5, 1911 + + + + + + 6 + 65 + Correspondence to: ND From: Edna,September 8, 1911 + + + + + + 6 + 66 + Correspondence to: Theron S. Finley From: E. G. "Pa" Finley,September 11, 1911 + + + + + + 6 + 67 + Correspondence to: ND From: Ida,September 13, 1911 + + + + + + 6 + 68 + Correspondence to: ND From: Nellie McMurtrie,September 17, 1911 + + + + + + 6 + 69 + Correspondence to: T. J. Finley (Theron S. Finley?) From: Union Bank,September 18, 1911 + + + + + + 6 + 70 + Correspondence to: ND From: Sybil,September 23, 1911 + + + + + + 6 + 71 + Correspondence to: ND From: Chauncey J. Helmer,September 25, 1911 + + + + + + 6 + 72 + Correspondence to: Manura From: Bessie,September 27, 1911 + + + + + + 6 + 73 + Correspondence to: ND From: Harrietta,October 1, 1911 + + + + + + 6 + 74 + Correspondence to: Theron S. Finley From: C. E. Finley, includes picture postcard,October 9, 1911 + + + + + + 6 + 75 + Correspondence to: ND From: Enda Howard,October 12, 1911 + + + + + + 6 + 76 + Correspondence to: ND and Girls From: Ida,October 21, 1911 + + + + + + 6 + 77 + Correspondence to: ND From: Bessie,October 27, 1911 + + + + + + 6 + 78 + Correspondence to: Theron S. Finley From: E. G. "Pa" Finley,October 29, 1911 + + + + + + 6 + 79 + Correspondence to: ND From: Ida,October 29, 1911 + + + + + + 6 + 80 + Correspondence to: ND From: Earl,November 22, 1911 + + + + + + 6 + 81 + Correspondence to: ND From: Edna Howard,November 22, 1911 + + + + + + 6 + 82 + Correspondence to: ND From: Anna,November [no day], 1911 + + + + + + 6 + 83 + Correspondence to: ND From: Bessie,November [no day], 1911 + + + + + + 6 + 84 + Correspondence to: ND From: Herb,December 3, 1911 + + + + + + 6 + 85 + Correspondence to: ND From: S. M. Eaton,December 3, 1911 + + + + + + 6 + 86 + Correspondence to: ND From: Harriet Dolly,December 4, 1911 + + + + + + 6 + 87 + Correspondence to: ND From: Earl,December 10, 1911 + + + + + + 6 + 88 + Correspondence to: ND From: Beckley Manufacturing Company,December 8, 1911 + + + + + + 6 + 89 + Correspondence to: ND From: Mama,December 11, 1911 + + + + + + 6 + 90 + Correspondence to: Mr. and Mrs. W. H. Davis From: Emma Honeywell,December 19, 1911 + + + + + + 6 + 91 + Correspondence to: ND From: Fay R.,December 19, 1911 + + + + + + 6 + 92 + Correspondence to: ND From: Uncle Weston Davis,December 22, 1911 + + + + + + 6 + 93 + Correspondence to: ND From: Edna,December 29, 1911 + + + + + + 6 + 94 + Correspondence to: ND From: Bessie,December 29, 1911 + + + + + + 6 + 95 + Correspondence to: ND From: Chauncey J. Helmer,December 30, 1911 + + + + + + 6 + 96 + Correspondence to: ND From: Sybil,December 30, 1911 + + + + + + 6 + 97 + Correspondence to: ND From: Mae McClelland,December 31, 1911 + + + + + + 6 + 98 + Correspondence to: ND From: Aunt Philena,December 31, 1911 + + + + + + 6 + 99 + Correspondence to: Theron S. Finley From: ND,1912 + + + + + + 6 + 100 + Correspondence to: ND From: Ida,January 2, 1912 + + + + + + 6 + 101 + Correspondence to: ND From: Marian E. Arnold,January 9, 1912 + + + + + + 6 + 102 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,January 11, 1912 + + + + + + 6 + 103 + Correspondence to: ND From: Marguerite E. Furey?,January 12, 1912 + + + + + + 6 + 104 + Correspondence to: Mr. and Mrs. W. H. Davis From: Wilson Davis,January 14, 1912 + + + + + + 6 + 105 + Correspondence to: ND From: Harry and Zoe Davis,January 14, 1912 + + + + + + 6 + 106 + Correspondence to: ND From: Gertie and Aunt Philena,January 14, 23, 1911 + + + + + + 6 + 107 + Correspondence to: ND From: Sybil,January 21, 1912 + + + + + + 6 + 108 + Correspondence to: Mrs. W. H. Davis From: Harry E. Davis,January 23, 1912 + + + + + + 6 + 109 + Correspondence to: ND From: Mr. and Mrs. W. H. Davis (Mama and Papa),January 23, 1912 + + + + + + 6 + 110 + Correspondence to: ND From: Chauncey J. Helmer,January 30, 1912 + + + + + + 6 + 111 + Correspondence to: ND From: Harriet Dolly,January [no day], 1912 + + + + + + 6 + 112 + Correspondence to: ND, Mr. and Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,February 1, 1912 + + + + + + 6 + 113 + Correspondence to: ND From: Edna Howard,February 8, 1912 + + + + + + 6 + 114 + Correspondence to: Miss Nellie G. McMurtrie From: Wilson L. Davis,February 12, 1912 + + + + + + + 6 + 115 + Correspondence to: ND From: Bessie,February [no day],1912; February 19, 1912 + + + + + + 6 + 116 + Correspondence to: ND From: Fay,February 29, 1912; February 19, 1912 + + + + + + 6 + 117 + Correspondence to: ND From: Nellie McMurtrie,March 7, 1912 + + + + + + 6 + 118 + Correspondence to: ND From: Herb,March 10, 1912 + + + + + + 6 + 119 + Correspondence to: "Girls" From: ND,March 11, 1912 + + + + + + 6 + 120 + Correspondence to: ND From: Bessie,March 14, 1912 + + + + + + 6 + 121 + Correspondence to: ND, Mr. and Mrs. W. H. Davis From: Harry and Zoe Davis,March 14, 31, 1912 + + + + + + 6 + 122 + Correspondence to: ND From: Sybil,March 31, 1912 + + + + + + 6 + 123 + Correspondence to: ND From: Theron S. Finley,April 5, 16, 1912 + + + + + + 6 + 124 + Correspondence to: ND From: Theron S. Finley,April 21, 28, 1912 + + + + + + 6 + 125 + Correspondence to: ND From: Edna,April 7, 1912 + + + + + + 6 + 126 + Correspondence to: Theron S. Finley From: ND,April 8, 12, 1912 + + + + + + + 6 + 127 + Correspondence to: Theron S. Finley From: ND,April 15, 22, 1912 + + + + + + 6 + 128 + Correspondence to: Theron S. Finley From: ND,April 24, 28, 1912 + + + + + + 6 + 129 + Correspondence to: Theron S. Finley From: ND,April 30, 1912 + + + + + + 6 + 130 + Correspondence to: ND, Mr. and Mrs. W. H. Davis From: Harry E. Davis,April 8, 19, 1912 + + + + + + 6 + 131 + Correspondence to: ND From: Amy,April 10, 1912 + + + + + + 6 + 132 + Correspondence to: Nellie G. McMurtrie From: Harry and Zoe Davis,April 10, 1912 + + + + + + 6 + 133 + Correspondence to: ND From: Stella,April 13, 1912 + + + + + + 6 + 134 + Correspondence to: ND From: Nellie McMurtrie,April 14, 1912 + + + + + + 6 + 135 + Correspondence to: ND From: Harriet,April 15, 1912 + + + + + + 6 + 136 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,April 17, 1912 + + + + + + 6 + 137 + Correspondence to: Theron S. Finley From: E. G. "Pa" Finley,April 20-21, 1912 + + + + + + 6 + 138 + Correspondence to: ND From: Bessie,April 25, 1912 + + + + + + 6 + 139 + Correspondence to: Elmer H. Abbott From: John Russell Lines,May 3, 1912 + + + + + + 6 + 140 + Correspondence to: ND From: Theron S. Finley,May 4, 12, 1912 + + + + + + 6 + 141 + Correspondence to: ND From: Theron S. Finley,May 19, 26, 1912 + + + + + + 6 + 142 + Correspondence to: ND From: Fay,May 5, 1912 + + + + + + 6 + 143 + Correspondence to: Theron S. Finley From: ND,May 6, 8, 12, 1912 + + + + + + 65 + 144 + Correspondence to: Theron S. Finley From: ND,May 16, 19, 1912 + + + + + + 6 + 145 + Correspondence to: Theron S. Finley From: ND,May 22, 26, 1912 + + + + + + 6 + 146 + Correspondence to: ND, Mr. and Mrs. W. H. Davis From: Wilson Davis,May 13, 1912 + + + + + + 6 + 147 + Correspondence to: ND From: Amy,May 19, 1912 + + + + + + 6 + 148 + Correspondence to: ND From: Sybil,May 19, 1912 + + + + + + 6 + 149 + Correspondence to: Theron S. Finley From: E. G. "Pa" Finley,May 26, 1912 + + + + + + 6 + 150 + Correspondence to: ND From: Della,May 29, 1912 + + + + + + 6 + 151 + Correspondence to: Theron S. Finley From: ND,June 3, 6, 10, 1912 + + + + + + 6 + 152 + Correspondence to: Theron S. Finley From: ND,June 12, 15, 1912 + + + + + + 6 + 153 + Correspondence to: Theron S. Finley From: ND,June 17, 20, 1912 + + + + + + 6 + 154 + Correspondence to: ND From: Theron S. Finley,June 4, 9, 16, 1912 + + + + + + 6 + 155 + Correspondence to: ND From: Theron S. Finley,June 23, 1912 + + + + + + 6 + 156 + Correspondence to: ND From: Edna Howard,June 7, 1912 + + + + + + 6 + 157 + Correspondence to: ND, Mr. and Mrs. W. H. Davis From: Harry E. Davis,June 12, 1912 + + + + + + 6 + 158 + Correspondence to: Theron S. Finley From: Rev. I. H. Riddick,June 14, 1912 + + + + + + 6 + 159 + Correspondence to: Theron S. Finley From: E. G. "Pa" Finley,June 16, 1912 + + + + + + 6 + 160 + Correspondence to: ND From: Mrs. T. P. Finley,June 20, 1912 + + + + + + 6 + 161 + Correspondence to: ND From: Fay,June 22, 1912 + + + + + + 6 + 162 + Correspondence to: ND From: Gertrude Abbott,July 1, 1912 + + + + + + 6 + 163 + Correspondence to: ND, Mr. and Mrs. W. H. Davis From: Anna Corbett?,July 1, 1912 + + + + + + 6 + 164 + Correspondence to: ND From: Sybil,July 1, 1912 + + + + + + 6 + 165 + Correspondence to: ND From:Della,July 2, 1912 + + + + + + 6 + 166 + Theron S. Finley, Theron and Nelllie's Wedding Announcement,July 3, 1912 + + + + + + 6 + 167 + Correspondence to: Finley? and Company From: Coast Lumber Company, Ltd.,July 4, 20, 1912 + + + + + + 6 + 168 + Correspondence to: Theron S. Finley From: International Harvester Company of America,July 6, 11, 1912 + + + + + + 6 + 169 + Correspondence to: NDF From: Bessie and June,July 9, 1912 + + + + + + 6 + 170 + Correspondence to: NDF From: Aunt Addie McMurtrie,July 11, 1912 + + + + + + 6 + 171 + Correspondence to: NDF From: Harriet Dolly,July 13, 1912 + + + + + + 6 + 172 + Correspondence to: Mrs. W. H. Davis From: Gertie,July 17, 1912 + + + + + + 6 + 173 + Correspondence to: NDF From: Edna Howard,July 19, 1912 + + + + + + 6 + 174 + Correspondence to: NDF, Mr. and Mrs. W. H. Davis From: Earl,July 21, 1912 + + + + + + 6 + 175 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Thera,July 23, 1912 + + + + + + 6 + 176 + Correspondence to: NDF and Theron From: Mr. and Mrs. W. H. Davis, and Wilson L. Davis,July 24, 1912 + + + + + + 6 + 177 + Correspondence to: NDF From: Grace H.,July 28, 1912 + + + + + + 6 + 178 + Correspondence to: Mr. and Mrs. W. H. Davis, and Wilson L. Davis From: Harry E. "Papa" Davis,July 29, 1912 + + + + + + 6 + 179 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Mr. and Mrs. W. H. Davis,August 4, 18, 1912 + + + + + + 6 + 180 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Mr. and Mrs. W. H. Davis,August 23, 26, 1912 + + + + + + 6 + 181 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Zoe Davis,August 8, 1912 + + + + + + 6 + 182 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry, Zoe, and Wilson L. Davis,August 8, 28, 1912 + + + + + + 6 + 183 + Correspondence to: Theron S. Finley From: L. H. Field Company,August 9, 1912 + + + + + + 6 + 184 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Uncle Phil and Aunt Louie Hartung,August 11, 1912 + + + + + + 6 + 185 + Correspondence to: Mr. and Mrs. Theron S. Finley From: E. G. "Pa" Finley,August 14, 1912 + + + + + + 6 + 186 + Correspondence to: Mr. and Mrs. W. H. Davis From: Theron S., Nellie Finley,August 15, 19, 1912 + + + + + + 6 + 187 + Correspondence to: Mr. and Mrs. W. H. Davis From: Theron S., Nellie Finley,August 27, 1912 + + + + + + 6 + 188 + Correspondence to: Theron S., Nellie Finley From: Zoe, Wilson L. Davis,August 18, 1912 + + + + + + 6 + 189 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Nellie McMurtrie,August 18, 1912 + + + + + + 6 + 190 + Correspondence to: NDF From: Harry E. Davis,August 18, 1912 + + + + + + 6 + 191 + Correspondence to: NDF (Tigr) From: Floy,August 20, 1912 + + + + + + 6 + 192 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Pruda Wise,August 20, 1912 + + + + + + 6 + 193 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Aunt Florence,August 21, 1912 + + + + + + 6 + 194 + Correspondence to: NDF From: Sybil,August 23, 1912 + + + + + + 6 + 196 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Nellie McMurtrie,August 26, 1912 + + + + + + 6 + 197 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Aunt Lena, Uncle John, Mildred,August 30, 1912 + + + + + + 6 + 198 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Thera,September 1, 1912 + + + + + + 6 + 199 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Mr. and Mrs. W. H. Davis,September 2, 9, 15, 1912 + + + + + + 6 + 200 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Mr. and Mrs. W. H. Davis,September 22, 29, 1912 + + + + + + 6 + 201 + Correspondence to: Mr. and Mrs. W. H. Davis From: Theron S., Nellie Finley,September 7, 12, 1912 + + + + + + 6 + 202 + Correspondence to: Mr. and Mrs. W. H. Davis From: Theron S., Nellie Finley,September 18, 1912 + + + + + + 6 + 203 + Correspondence to: NDF From: Sybil,September 8, 1912 + + + + + + 6 + 204 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Bessie,September 12, 1912 + + + + + + 6 + 205 + Correspondence to: NDF From: Edna,September 12, 1912 + + + + + + 6 + 206 + Correspondence to: NDF From: Inez A. McNie l,September 15, 1912 + + + + + + 6 + 207 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Bernadine, Addie McMurtrie,September 16, 1912 + + + + + + 6 + 208 + Correspondence to: NDF From: Elizabeth,September 17, 1912 + + + + + + 6 + 209 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Minnie M. Sherman,September 17, 1912 + + + + + + 6 + 210 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Earl,September 18, 1912 + + + + + + 6 + 211 + Correspondence to: NDF From: Fay,September 18, 1912 + + + + + + 6 + 212 + Correspondence to: Mr. and Mrs. Theron S. Finley From: C. E. Finley,September 18, 1912 + + + + + + 6 + 213 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry E. Davis,September 18, 1912 + + + + + + 2 + 214 + Correspondence to: NDF From: Hazel R.,September 20, 1912 + + + + + + 6 + 215 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Harry, Zoe, and Wilson Davis,September 22, 1912 + + + + + + 6 + 216 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry and Zoe Davis,September 22, 1912 + + + + + + 6 + 217 + Correspondence to: NDF From: Anna Corbett?,September 22, 24, 1912 + + + + + + 6 + 218 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry E. Davis,September 29, 1912 + + + + + + 6 + 219 + Correspondence to: NDF From: Hassie?,September 30, 1912 + + + + + + 6 + 220 + Correspondence to: NDF From: Harriet "Hattie" Dolly Helmer,October [no day], 1912 + + + + + + 6 + 221 + Correspondence to: Mr. Will McAuliffe From: E. J. Finley, Traveling Salesman for Plow Point,October 1, 1912 + + + + + + 6 + 222 + Correspondence to: NDF From: Della B.,October 2, 1912 + + + + + + 6 + 223 + Correspondence to: Mr. and Mrs. W. H. Davis From: Nellie, Theron Finley,October 2, 10, 1912 + + + + + + 6 + 224 + Correspondence to: Mr. and Mrs. W. H. Davis From: Nellie, Theron Finley,October 15, 23, 1912 + + + + + + 6 + 225 + Correspondence to: Mr. and Mrs. W. H. Davis From: Nellie, Theron Finley,October 30, 1912 + + + + + + 6 + 226 + Correspondence to: NDF From: Earl,October 6, 1912 + + + + + + 6 + 227 + Correspondence to: NDF From: Gertrude, Clarence Abbott,October 6-7, 1912 + + + + + + 6 + 228 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Mr. and Mrs. W. H. Davis,October 6, 13, 1912 + + + + + + 6 + 229 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Mr. and Mrs. W. H. Davis,October 20, 29, 1912 + + + + + + 6 + 230 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,October 9, 18, 1912 + + + + + + 6 + 231 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,October 20, 27, 1912 + + + + + + 6 + 232 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,October 9, 20, 1912 + + + + + + 6 + 234 + Correspondence to: Mr. Theron S. Finley From: E. G. "Pa" Finley,October 15, 1912 + + + + + + 6 + 235 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Uncle Phil, Aunt Louie Hartung,October 20, 1912 + + + + + + 65 + 236 + Correspondence to: Mr. and Mrs. Thera S. Finley From: Therag,October 22, 1912 + + + + + + 6 + 237 + Correspondence to: NDF From: S. M. Eaton,October 27, 1912 + + + + + + 6 + 238 + Correspondence to: NDF From: Aunt Nellie G. McMurtrie,October 30, 1912 + + + + + + 6 + 239 + Correspondence to:Mr. and Mrs. Theron S. Finley From: Mr. and Mrs. W. H. Davis,November 4, 10, 1912 + + + + + + 6 + 240 + Correspondence to:Mr. and Mrs. Theron S. Finley From: Mr. and Mrs. W. H. Davis,November 17, 24, 1912 + + + + + + 6 + 241 + Correspondence to: Mr. and Mrs. W. H. Davis From: Zoe, Wilson L. Davis,November 6, 10, 1912 + + + + + + 6 + 242 + Correspondence to: Mr. and Mrs. W. H. Davis From: Zoe, Wilson L. Davis,November 23, 1912 + + + + + + 6 + 243 + Correspondence to: Mr. and Mrs.Theron S. Finley From: Earl,November 7, 1912 + + + + + + 6 + 245 + Correspondence to: Mr. and Mrs. W. H. Davis From: Nellie, Theron Finley,November 7, 18, 1912 + + + + + + 6 + 246 + Correspondence to: Mr. and Mrs. W. H. Davis From: Nellie, Theron Finley,November 27, 1912 + + + + + + 6 + 247 + Correspondence to: Mr. and Mrs. Theron S. Finley From: C. E. Finley,November 8, 1912 + + + + + + 6 + 248 + Correspondence to: NDF From: Dorothy Callahan and All,November 10, 1912 + + + + + + 6 + 249 + Correspondence to: NDF From: Edith, George, and Betsy,November 11, 1912 + + + + + + 6 + 250 + Correspondence to: NDF From: Margaret Lines,November 12, 1912 + + + + + + 6 + 251 + Correspondence to: NDF "Dearest Girls" From: Ida,November 12, 1912 + + + + + + 6 + 252 + Correspondence to: Mr. and Mrs. Theron S. Finely From: Mr. and Mrs. W. H. Davis,November 14, 1912 + + + + + + 6 + 253 + Correspondence to: NDF From: Vina Robinson,November 17, 1912 + + + + + + 6 + 254 + Correspondence to: Mrs. W. H. Davis From: Mrs. Bancroft,November 17, 1912 + + + + + + 6 + 255 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Harry, Zoe, and Wilson Davis,November 20, 1912 + + + + + + 6 + 256 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Thera,December 1, 1912 + + + + + + 6 + 257 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Harry, Zoe, and Wilson Davis, and Mrs. W. H. Davis,December 1, 1912 + + + + + + 6 + 258 + Correspondence to: NDF From: M. A. Merritt,December 1, 1912 + + + + + + 6 + 259 + Correspondence to: NDF From: Frank and Edna Howard,December 4, 1912 + + + + + + 6 + 260 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Minnie M. Sherman,December 8, 1912 + + + + + + 6 + 261 + Correspondence to: NDF From: Sybil,December 8, 1912 + + + + + + 6 + 262 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Mr. and Mrs. W. H. Davis, Thelma, Aunt Nellie,December 8, 15, 1912 + + + + + + 6 + 263 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Mr. and Mrs. W. H. Davis, Thelma, Aunt Nellie,December 22, 28, 1912 + + + + + + 6 + 264 + Correspondence to: Mr. and Mrs. W. H. Davis, Aunt Nellie From: Nellie, Theron S. Finley,December 9, 25, 1912 + + + + + + 6 + 265 + Correspondence to: NDF From: Floy A. Bornen,December 10, 1912 + + + + + + 6 + 266 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Bessie,December 13, 1912 + + + + + + 6 + 267 + Correspondence to: NDF From: Anna, Aunt Philena Corbett,December 16, [no day], 1912 + + + + + + + 6 + 268 + Correspondence to: NDF From: Fay Riggs,December 21, 1912 + + + + + + 6 + 269 + Correspondence to: Mr. and Mrs. Theron Finley From: Gran Ma,December 25, 1912 + + + + + + 6 + 270 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Bernadine, Addie McMurtrie,December 29, 1912 + + + + + + 6 + 271 + Correspondence to: Mr. and Mrs. W. H. Davis From: Anna, Inez, and Mother,December 30, 1912 + + + + + + 7 + 1 + Correspondence to: NDF From: Sybil,January 1, 1913 + + + + + + 7 + 2 + Correspondence to: Mr. and Mrs. W. H. Davis From: Theron S., Nellie Finley,January 1, 9, 18, 1913 + + + + + + 7 + 3 + Correspondence to: Mr. and Mrs. W. H. Davis From: Theron S., Nellie Finley,January 19, 1913 + + + + + + 7 + 4 + Correspondence to: NDF From: Inez McNeil,January 3, 1913 + + + + + + 7 + 5 + Correspondence to: Mr. and Mrs. W. H. Davis From: Ruth A. Stone,January 3, 1913 + + + + + + 7 + 6 + Correspondence to: Mr. and Mrs.Theron S. Finley From: Mr. and Mrs. W. H. Davis,January 3, 5, 12, 1912 + + + + + + 7 + 7 + Correspondence to: Mr. and Mrs.Theron S. Finley From: Mr. and Mrs. W. H. Davis,January 19, 26, 1912 + + + + + + 7 + 8 + Correspondence to: NDF From: Harriet Dolly,January 4, 1913 + + + + + + 7 + 9 + Correspondence to: NDF From: Della Burgess,January 5, 1913 + + + + + + 7 + 10 + Correspondence to: NDF From: Aunt Philena, Anna Corbett,January 5, 1913 + + + + + + 7 + 11 + Correspondence to: Mrs. W. H. Davis From: Gertie,January 5, 1913 + + + + + + 7 + 12 + Correspondence to: NDF From: Hazel Lloyd,January 7, 1913 + + + + + + 7 + 13 + Correspondence to: NDF From: Mildred Smith,January 8, 1913 + + + + + + 7 + 14 + Correspondence to: Mr. and Mrs. Theron S. Finley From: G. McEwen,January 8, 18, 1913 + + + + + + 7 + 15 + Correspondence to: NDF From: Mrs. C. R. Prine,January 9, 1913 + + + + + + 7 + 16 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Mrs. Mary Wright Collins,January 11, 1913 + + + + + + 7 + 17 + Correspondence to: NDF From: Aunt Nellie McMurtrie?,January 12, 1913 + + + + + + 7 + 18 + Correspondence to: Theron S. Finley From: Doc, Pa,January 12, 1913 + + + + + + 7 + 19 + Correspondence to: NDF From: Earl,January 13, 1913 + + + + + + 7 + 20 + Correspondence to: NDF From: Amy Ruff,January 18, 1913 + + + + + + 7 + 21 + Correspondence to: NDF From: Harry, Zoe, and Wilson Davis,January 19, 30, 1913 + + + + + + 7 + 22 + Correspondence to: NDF From: Mrs. J. E. Helmer,January 19, 1913 + + + + + + 7 + 23 + Correspondence to: NDF From: Uncle Phil, Aunt Louie Hartung,January 23, 1913 + + + + + + 7 + 24 + Correspondence to: NDF From: Bessie Thompson,January 24, 1913 + + + + + + 7 + 25 + Correspondence to: NDF From: Harry and Zoe Davis,January 30, 1913 + + + + + + 7 + 26 + Correspondence to: Theron S. Finley From: Lizzie, Gib,January 31, 1913 + + + + + + 7 + 27 + Correspondence to: Theron S. Finley From: Edward,February 2, 24, 1913 + + + + + + 7 + 28 + Correspondence to: Mrs. W. H. Davis From: Theron and Nellie Finley,February 13-14, 1913 + + + + + + 7 + 29 + Correspondence to: Mrs. W. H. Davis From: Theron and Nellie Finley,February 20, 1913 + + + + + + 7 + 30 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,February 9, 18, 1913 + + + + + + 7 + 31 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,February 23, 1913 + + + + + + 7 + 32 + Correspondence to: NDF From: Mr. and Mrs. W. H. Davis,February 2, 9, 16, 1913 + + + + + + 7 + 33 + Correspondence to: NDF From: Mr. and Mrs. W. H. Davis,February 23, 1913 + + + + + + 7 + 34 + Correspondence to: Theron S. Finley From: George Marshall,February 2, 1913 + + + + + + 7 + 35 + Correspondence to: Theron S. Finley From: E. G. "Pa' Finley,February 4, 1913 + + + + + + 7 + 36 + Correspondence to: NDF From: Mrs. M. A. Merritt,February 5, 1913 + + + + + + 7 + 37 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Wilson Davis,February 17, 1913 + + + + + + 7 + 38 + Correspondence to: Theron S. Finley From: Aunt Florence Finley,February 18, 1913 + + + + + + 7 + 39 + Correspondence to: NDF From: Nellie McMurtrie,February 2, 23, 1913 + + + + + + 7 + 40 + Correspondence to: NDF From: The Shermans,February 23, 1913 + + + + + + 7 + 41 + Correspondence to: NDF From: Mr. and Mrs. W. H. Davis,March 2, 9, 16, 1913 + + + + + + 7 + 42 + Correspondence to: NDF From: Mr. and Mrs. W. H. Davis,March 24, 30, 1913 + + + + + + 7 + 43 + Correspondence to: NDF From: Flossie Foster,March 11, 1913 + + + + + + 7 + 44 + Correspondence to: NDF From: Harry, Zoe, and Wilson Davis,March 16, 24, 1913 + + + + + + 7 + 45 + Correspondence to: Mrs. W. H. Davis From: Theron S., Nellie Finley,March 14, 21, 1913 + + + + + + 7 + 46 + Correspondence to: NDF From: Grace,March 14, 1913 + + + + + + 7 + 47 + Correspondence to: NDF From: S.M. Eaton,March 16, 1913 + + + + + + 7 + 48 + Correspondence to: Mr. and Mrs. Theron S. Finley From: E. G. "Pa" Finley,March 16, 1913 + + + + + + 7 + 49 + Correspondence to: NDF From: Gertrude, Clarence, and Elmer H. Abbott,March 16, 1913 + + + + + + 7 + 50 + Correspondence to: NDF From: Anna,March 17, 1913 + + + + + + 7 + 51 + Correspondence to: Mr. and Mrs. Theron S. Finley From: C. E. Finley,March 21, 1913 + + + + + + 7 + 52 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,March 27, 1913 + + + + + + 7 + 53 + Correspondence to: Mrs. W. H. Davis From: Theron S., Nellie Finley,April 1, 10, 1913 + + + + + + 7 + 54 + Correspondence to: Mrs. W. H. Davis From: Theron S., Nellie Finley,April 13, 20, 1913 + + + + + + 7 + 55 + Correspondence to: Mrs. W. H. Davis From: Theron S., Nellie Finley,April 27, 1913 + + + + + + 7 + 56 + Correspondence to: NDF From: Bessie,April 2, 1913 + + + + + + 7 + 57 + Correspondence to: NDF From: Anna,April 2, 1913 + + + + + + 7 + 58 + Correspondence to: NDF From: Fay,April 5, 1913 + + + + + + 7 + 59 + Correspondence to: NDF From: Mr. and Mrs. W. H. Davis,April 5, 13, 1913 + + + + + + 7 + 60 + Correspondence to: NDF From: Mr. and Mrs. W. H. Davis,April 20, 25, 1913 + + + + + + 7 + 61 + Correspondence to: NDF From: Mr. and Mrs. W. H. Davis,April 28, 1913 + + + + + + 7 + 62 + Correspondence to: Mrs. W. H. Davis From: Ina Stone,April 5, 24, 1913 + + + + + + 7 + 63 + Correspondence to: NDF From: Inez A. McNeil,April 6, 1913 + + + + + + 7 + 64 + Correspondence to: NDF From: Aunt Philena Corbett,April 7, 1913 + + + + + + 7 + 65 + Correspondence to: Mr. and Mrs. Theron S. Finley From: E. G. "Pa" Finley,April 13, 1913 + + + + + + 7 + 66 + Correspondence to: Mrs. W. H. Davis From: Amy Ruff,April 14-15, 1913 + + + + + + 7 + 67 + Correspondence to: Mrs. W. H. Davis From: Harry E. Davis,April 15, 1913 + + + + + + 7 + 68 + Correspondence to: NDF From: Harry and Zoe Davis,April 18, 20, 1913 + + + + + + 7 + 69 + Correspondence to: NDF From: Harry and Zoe Davis,April 26-27, 1913 + + + + + + 7 + 70 + Correspondence to: NDF From: Mrs. L. L. Herrick,April 20, 1913 + + + + + + 7 + 71 + Correspondence to: NDF From: Aunt Philena,April 21, 1913 + + + + + + 7 + 72 + Correspondence to: NDF From: Aunt Adelie?,April 21, 1913 + + + + + + 7 + 73 + Correspondence to: NDF From: Ida,April 24, 30, 1913 + + + + + + 7 + 74 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Aunt Thera, Aunt Louie,April 26, 1913 + + + + + + 7 + 75 + Correspondence to: NDF From: N. G. McMurtrie,April 27, 1913 + + + + + + 7 + 76 + Correspondence to: Mr. and Mrs. Theron S. Finley From: E. G. "Pa" Finley,April 27, 1913 + + + + + + 7 + 77 + Correspondence to: NDF From: Unidentified,April 27, 1913 + + + + + + 7 + 78 + Correspondence to: NDF From: Mr. and Mrs. W. H. Davis,May 4, 11, 1913 + + + + + + 7 + 79 + Correspondence to: NDF From: Mr. and Mrs. W. H. Davis,May 18, 25, 1913 + + + + + + 7 + 80 + Correspondence to: NDF From: Auntie Scurrah,May 6, 1913 + + + + + + 7 + 81 + Correspondence to: NDF From: Nellie G. McMurtrie,May 6, 1913 + + + + + + 7 + 82 + Correspondence to: NDF From: Grandma Barnes, Aunt Bessie,May 8, 1913 + + + + + + 7 + 83 + Correspondence to: Mr. and Mrs. W. H. Davis From: Theron S., Nellie, and baby Theron Finley,May 10, 14, 1913 + + + + + + 7 + 84 + Correspondence to: Mr. and Mrs. W. H. Davis From: Theron S., Nellie, and baby Theron Finley,May 28, 1913 + + + + + + 7 + 85 + Correspondence to: NDF From: Harry and Zoe Davis,May 11, 18, 1913 + + + + + + 7 + 86 + Correspondence to: NDF From: E. G. "Pa" Finley,May 18, 1913 + + + + + + 7 + 87 + Correspondence to: Theron S. Finley From: C. W. Yost,May 24, 1913 + + + + + + 7 + 88 + Correspondence to: NDF From: Minnie M. Sherman,May 31, 1913 + + + + + + 7 + 89 + Correspondence to: NDF From: Mr. and Mrs. W. H. Davis,June 1, 7, 15, 1913 + + + + + + 7 + 90 + Correspondence to: NDF From: Mr. and Mrs. W. H. Davis,June 22, 27, 1913 + + + + + + 7 + 91 + Correspondence to: Mr. and Mrs. W. H. Davis From: Nellie, Theron S., and baby Theron Finley,June 5, 8, 25, 1913 + + + + + + 7 + 92 + Correspondence to: NDF From: Bessie,June 12, 1913 + + + + + + + 7 + 93 + Correspondence to: Mr. and Mrs. Theron S. Finley From: E. G. "Pa" Finley,June 15, 1913 + + + + + + 7 + 94 + Correspondence to: Mrs. W. H. Davis From: Harry E. Davis,June 19, 26, 1913 + + + + + + 7 + 95 + Correspondence to: Mrs. W. H. Davis From: Harry E. Davis,June 28, 1913 + + + + + + 7 + 96 + Correspondence to: NDF From: Nellie McMurtrie,June 22, 1913 + + + + + + 7 + 97 + Correspondence to: NDF From: Ida,June 26, 1913 + + + + + + 7 + 98 + Correspondence to: NDF From: Mary A. Merritt,June 27, 1913 + + + + + + 7 + 99 + Correspondence to: NDF From: Bessie,July 1, 5, 1913 + + + + + + 7 + 100 + Correspondence to: Mr. and Mrs. W. H. Davis From: Theron S., Nellie, and Theron W. Finley,July 3, 19, 1913 + + + + + + 7 + 101 + Correspondence to: Mr. and Mrs. W. H. Davis From: Theron S., Nellie, and Theron W. Finley,July 25, 31, 1913 + + + + + + 7 + 102 + Correspondence to: Theron S., Nellie, and Theron W. Finley From: Aunt Philena,July 6, 1913 + + + + + + 7 + 103 + Correspondence to: NDF From: Mr. and Mrs. W. H. Davis,July 6, 13, 1913 + + + + + + 7 + 104 + Correspondence to: NDF From: Mr. and Mrs. W. H. Davis,July 20, 1913 + + + + + + 7 + 105 + Correspondence to: NDF From: Gertie,July 7, 1913 + + + + + + 7 + 106 + Correspondence to: Mrs. W. H. Davis From: Gertie,July 13, 1913 + + + + + + 7 + 107 + Correspondence to: NDF From: Sybil,July 14, 1913 + + + + + + 7 + 108 + Correspondence to: NDF From: Fay,July 14, 1913 + + + + + + 7 + 109 + Correspondence to: NDF From: Della Burgess,July 18, 1913 + + + + + + 7 + 110 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Mr. and Mrs. W. H. Davis,July 27, 1913 + + + + + + 7 + 111 + Correspondence to: NDF From: Sylvia,July 27, 1913 + + + + + + 7 + 112 + Correspondence to: NDF From: Nellie G. McMurtrie,July 29, 1913 + + + + + + 7 + 113 + Correspondence to: Mr. W. H. Davis From: Harry, Zoe, and Wilson Davis,July 29, 31, 1913 + + + + + + 7 + 114 + Correspondence to: NDF From: Harrietta,August [no day], 1913 + + + + + + 7 + 115 + Correspondence to: NDF From: Aunt Addie,August 2, 1913 + + + + + + 7 + 116 + Correspondence to: NDF From: Mr. and Mrs. W. H. Davis,August 3, 10, 1913 + + + + + + 7 + 117 + Correspondence to: NDF From: Mr. and Mrs. W. H. Davis,August 11, 19, 1913 + + + + + + 7 + 118 + Correspondence to: NDF From: Mr. and Mrs. W. H. Davis,August 25, 31, 1913 + + + + + + 7 + 119 + Correspondence to: Mr. and Mrs. Theron S. Finley From: E. G. "Pa" Finley,August 4, 1913 + + + + + + 7 + 120 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry and Zoe Davis,August 5, 26, 1913 + + + + + + 7 + 121 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Florence,August 7, 1913 + + + + + + 7 + 122 + Correspondence to: Mr. and Mrs. W. H. Davis From: Theron S., Nellie, and Theron W. Finley,August 8, 16, 1913 + + + + + + 7 + 123 + Correspondence to: Mr. and Mrs. W. H. Davis From: Theron S., Nellie, and Theron W. Finley,August 22, 28, 1913 + + + + + + 7 + 124 + Correspondence to: NDF From: Edna,August 10, 1913 + + + + + + 7 + 125 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Thera,August 17, 1913 + + + + + + 7 + 126 + Correspondence to: NDF From: Inez A. McNeil,August 25, 1913 + + + + + + 7 + 127 + Correspondence to: NDF From: Anna, Alice B.,September 1, 1913 + + + + + + 7 + 128 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Aunt Philena,September 1, 1913 + + + + + + 7 + 129 + Correspondence to: Theron S. Finley From: E. G. "Pa" Finley,September 2, 1913 + + + + + + 7 + 130 + Correspondence to: NDF From: Nellie G. McMurtrie,September 2, 1913 + + + + + + 7 + 131 + Correspondence to: Mr. and Mrs. W. H. Davis From: NDF, Theron Wilson Finley,September 5, 1913 + + + + + + 7 + 132 + Correspondence to: NDF From: Harry, Zoe, and Wilson Davis,September 7, 1913 + + + + + + 7 + 133 + Correspondence to: NDF From: Mr. and Mrs. W. H. Davis,September 7, 15, 1913 + + + + + + 7 + 134 + Correspondence to: NDF From: Mr. and Mrs. W. H. Davis,September 21, 27, 1913 + + + + + + 7 + 135 + Correspondence to: NDF From: Mrs. Helmer,September 8, 1913 + + + + + + 7 + 136 + Correspondence to: Mr. and Mrs. W. H. Davis From: Mr. and Mrs. Theron S. Finley, Theron W. Finley,September 11, 1913 + + + + + + 7 + 137 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry E. Davis,September 16, 1913 + + + + + + 7 + 138 + Correspondence to: NDF From: Elmer, Clarence, and Gertrude Abbott,September 20-21, 1913 + + + + + + 7 + 139 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Bessie Thompson,September 25, 1913 + + + + + + 7 + 140 + Correspondence to: NDF From: Fred McMurtrie,September 27, 1913 + + + + + + 7 + 141 + Correspondence to: NDF From: Fay,October 1, 1913 + + + + + + 7 + 142 + Correspondence to: NDF From: Edna,October 5, 1913 + + + + + + 7 + 143 + Correspondence to: NDF From: Mr. and Mrs. W. H. Davis,October 5, 19, 1913 + + + + + + 7 + 144 + Correspondence to: NDF From: Mr. and Mrs. W. H. Davis,October 26, 1913 + + + + + + 7 + 145 + Correspondence to: NDF From: Ida,October 6, 1913 + + + + + + 7 + 146 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,October 8, 12, 1913 + + + + + + 7 + 147 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,October 28, 1913 + + + + + + 7 + 148 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Mr. and Mrs. W. H. Davis, Aunt Nellie,October 11, 17, 1913 + + + + + + 7 + 149 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Mr. and Mrs. W. H. Davis, Aunt Nellie,October 18, 23, 1913 + + + + + + 7 + 150 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Mr. and Mrs. W. H. Davis, Aunt Nellie,October 24, 31, 1913 + + + + + + 7 + 151 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Mr. and Mrs. W. H. Davis,October 12, 1913 + + + + + + 7 + 152 + Correspondence to: Mrs. W. H. Davis From: Ethel,October 12, 1913 + + + + + + 7 + 153 + Correspondence to: NDF From: Sybil,October 12, 1913 + + + + + + 7 + 154 + Correspondence to: NDF From: Mary A. Merritt,October 17, 1913 + + + + + + 7 + 155 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Harry, Zoe, and Wilson Davis,October 19, 28, 1913 + + + + + + 7 + 156 + Correspondence to: NDF From: Harrietta,October 20, 1913 + + + + + + 7 + 157 + Correspondence to: NDF From: Earl,October 26, 1913 + + + + + + 7 + 158 + Correspondence to: NDF c/o Harmond Ruff From: E. G. "Pa" Finley,October 27, 1913 + + + + + + 7 + 159 + Correspondence to: Mr. and Mrs. Theron S. Finley From: E. G. "Pa" Finley,October 27, 1913 + + + + + + 7 + 160 + Correspondence to: Theron S. Finley From: C. D. White,October 30, 1913 + + + + + + 7 + 161 + Correspondence to:Mr. and Mrs. Theron S. Finley From: Mr. and Mrs. W. H. Davis,November 2, 1913 + + + + + + 7 + 162 + Correspondence to: Mrs. W. H. Davis From: Anna,November 3, 1913 + + + + + + 7 + 163 + Correspondence to: NDF From: Edna Howard,November 3, 1913 + + + + + + 7 + 164 + Correspondence to: NDF From: Amy Ruff,November 10, 1913 + + + + + + 7 + 165 + Correspondence to: Mrs. W. H. Davis From: Gran Ma Finley,November 12, 1913 + + + + + + 7 + 166 + Correspondence to: NDF From: Anna, Aunt Philena,November 12-13, 1913 + + + + + + 7 + 167 + Correspondence to: NDF From: Harry E. Davis,November 14, 1913 + + + + + + 7 + 168 + Correspondence to: NDF From: Harmond and Amy Ruff,November 15, 21, 1913 + + + + + + 7 + 169 + Correspondence to: NDF From: Jeanne Destree,November 16, 1913 + + + + + + 7 + 170 + Correspondence to: NDF From: Della Burgess,November 23, 1913 + + + + + + 7 + 171 + Correspondence to: NDF From: Ida,December 7, 1913 + + + + + + 7 + 172 + Correspondence to: Mrs. W. H. Davis From: Anna,December 11, 1913 + + + + + + 7 + 173 + Correspondence to: NDF From: Harry, Zoe, and Wilson Davis,December 12, 1913 + + + + + + 7 + 174 + Correspondence to: Anna From: Gertie,December 15, 1913 + + + + + + 7 + 175 + Correspondence to: NDF From: Amy Ruff,December 16, 1913 + + + + + + 7 + 176 + Correspondence to: NDF From: Mother, Inez, and Anna,December 16, 26, 1913 + + + + + + 7 + 177 + Correspondence to: NDF From: S. M. Eaton,December 21, 1913 + + + + + + 7 + 178 + Correspondence to: Mrs. W. H. Davis From: Harry E. Davis,December 23, 1913 + + + + + + 7 + 179 + Correspondence to: NDF From: Sybil,December 29, 1913 + + + + + + 7 + 180 + Correspondence to: NDF From: Loretta Dain,December 27, 1913 + + + + + + 8 + 1 + Correspondence to: NDF From: Ina Stone,January 22, 1914 + + + + + + 8 + 2 + Correspondence to: Mama From: NDF,1914? + + + + + + 8 + 3 + Correspondence to: Mr. T. S. Finley From: Michigan Mutual Life Insurance Company,January 2, 1914 + + + + + + 8 + 4 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis, Aunt Nellie,January 5, 1914 + + + + + + 8 + 5 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis, Aunt Nellie,January 28, 1914 + + + + + + 8 + 6 + Correspondence to: NDF From: Aunt Philena,January 5, 1914 + + + + + + 8 + 7 + Correspondence to: NDF From: Aunt Philena, with Poem and Picture by Alice Blanch Corbett,January 30, 1914 + + + + + + 8 + 8 + Correspondence to: NDF From: Jeanne Destree,January 5, 1914 + + + + + + 8 + 9 + Correspondence to: NDF From: Harrietta Helmer, January 11, 1914; with Agreement between Theron S. Finley and Harmond A. Ruff, November 1, 1913,January 1, 1913; November 11, 1914 + + + + + + 8 + 10 + Correspondence to: NDF From: Aunt Amy,January 12, 1913 + + + + + + 8 + 11 + Correspondence to: Mr. T. S. Finley From: Harmond A. Ruff, January 11, 1914; with Lumberyard Receipts, November 1913,November 1913; January 11, 1914 + + + + + + 8 + 12 + Correspondence to: NDF From: Sybil,January 25, 1914 + + + + + + 8 + 13 + Correspondence to: NDF From: Alice Prine,January 31, 1914 + + + + + + 8 + 14 + Correspondence to: NDF From: Fay,February 8, 1914 + + + + + + 8 + 15 + Correspondence to: NDF From: "We Three Howards?",February 11, 1914 + + + + + + 8 + 16 + Correspondence to: NDF From: Amy,undated + + + + + + 8 + 17 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Bessie Thompson,February 14, 1914 + + + + + + 8 + 18 + Correspondence to: Theron S. Finley From: H. A. Ruff, February 16, 1914; with Lumberyard Receipts, January 1914,January 1914; February 16, 1914 + + + + + 8 + 19 + Correspondence to: NDF From: Della B.,February 21, 1914 + + + + + + 8 + 20 + Correspondence to: NDF From: Mama,March 9, 1914 + + + + + + 8 + 21 + Correspondence to: NDF From: Mama, Papa; with a program, undatedMarch 22, 1914; undated + + + + + + 8 + 22 + Correspondence to: NDF From: The RuffsMarch 1, 1914 + + + + + + 8 + 23 + Correspondence to: Mrs. W. H. Davis From: Harry,March 1, 1914 + + + + + + 8 + 24 + Correspondence to: NDF From: W.; March 15, 1914; with Miscellaneous Receipts, undated,March 15, 1914; undated + + + + + + 8 + 25 + Correspondence to: NDF From: Aunt Philean,March 21, 1914 + + + + + + 8 + 26 + Correspondence to: NDF, TSF, and Baby From: Harry, Wilson, and Zoe Davis,March 21, 1914 + + + + + + 8 + 27 + Correspondence to: NDF From: Jeanne S. Destree,March 23, 1914 + + + + + + 8 + 28 + Correspondence to: NDF From: Sybil,March 29, 1914 + + + + + + 8 + 29 + Correspondence to: NDF, From: May B. Hawes, Eva L. King,March 31, 1914 + + + + + + 8 + 30 + Correspondence to: NDF, All From: Harmond, Richard, and Amy Ruff, April 27, 1914; with Miscellaneous Receipts, undated,April 27, 1914; undated + + + + + 8 + 31 + Correspondence to: NDF, All From: Amy Ruff and Family,April 3, 1914 + + + + + + 8 + 32 + Correspondence to: Mr. T. S. Finley From: Michigan Mutual Life Insurance Company, April 3, 1914; Death Notice from same company, January 21, 1915,April 3, 1914; January 21, 1915 + + + + + + 8 + 33 + Correspondence to: NDF From: Mama,April 7, 1914 + + + + + + 8 + 34 + Correspondence to: NDF, All From: Harry Davis,April 26, 1914 + + + + + + 8 + 35 + Correspondence to: NDF From: Sybil,May 10, 1914 + + + + + + 8 + 36 + Correspondence to: NDF From: Sybil,May 31, 1914 + + + + + + 8 + 37 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Mr. and Mrs. McEwen,May 13, 1914 + + + + + + 8 + 38 + Correspondence to: NDF From: Aunt Philena,May 15, 1914 + + + + + + 8 + 39 + Correspondence to: NDF From: Anna, with Swatches of Material,undated + + + + + + 8 + 40 + Correspondence to: NDF and All From: Harry Davis,May 24, 1914 + + + + + + 8 + 41 + Correspondence to: NDF and All From: Zoe, Wilson Davis,May 24, 1914 + + + + + + 8 + 42 + Correspondence to: NDF and All From: Zoe, Wilson Davis,May 24, 1914 + + + + + + 8 + 43 + Correspondence to: Parents From: Harry,May 24, 1914 + + + + + + 8 + 44 + Correspondence to: Theron S. Finley From: H. A. Ruff,May 24, 1914 + + + + + + + 8 + 45 + Correspondence to: NDF and All From: Amy Ruff, with Miscellaneous Receipts,May 24, 1914 + + + + + + 8 + 46 + Correspondence to: Girls (Ida, Anna) From: NDF,May 24, 1914 + + + + + + 8 + 47 + Correspondence to: NDF From: Ida,undated + + + + + + 8 + 48 + Correspondence to: NDF From: Sybil,June 23, 1914 + + + + + + 8 + 49 + Correspondence to: NDF From: Sybil,June 27, 1914 + + + + + + 8 + 50 + Correspondence to: Mrs. W. H. Davis From: Theron, Nellie Finley, with Miscellaneous Newspaper Clippings,June 1, 1914 + + + + + + 8 + 51 + Correspondence to: Parents, Aunt (Mrs. W. H. Davis) From: Harry, Zoe, and Wilson Davis,June 8, 1914 + + + + + + 8 + 52 + Correspondence to: Mrs. W. H. Davis From: Anna,June 9, 1914 + + + + + + 8 + 53 + Correspondence to: NDF From: Della B.,June 14, 1914 + + + + + + 8 + 54 + Correspondence to: Theron S. Finley From: George M.,June 14, 1914 + + + + + + 8 + 55 + Correspondence to: NDF From: Harry Davis,undated + + + + + + 8 + 56 + Correspondence to: NDF and All From: Harry and Zoe Davis,June 22, 1914 + + + + + + 8 + 57 + Correspondence to: NDF From: Amy Ruff,June 27, 1914 + + + + + + 8 + 58 + Correspondence to: NDF From: Sybil,July 2, 1914 + + + + + + 8 + 59 + Correspondence to: NDF From: Sybil, with Wedding Invitation,July 12, 1914 + + + + + + 8 + 60 + Correspondence to: NDF From: Harrietta Helmer,July 13, 1914 + + + + + + 8 + 61 + Correspondence to: Theron S. Finley From: H. A. Ruff, with Miscellaneous Receipts,July 15, 1914 + + + + + + 8 + 62 + Correspondence to: NDF and All From: Amy Ruff,July 14, 1914 + + + + + + 8 + 63 + Correspondence to: Parents and All From: Harry Davis,July 14, 1914 + + + + + + 8 + 64 + Correspondence to: NDF and All From: Harry Davis,July 19, 1914 + + + + + + 8 + 65 + Correspondence to: NDF From: Mama, Papa,July 24, 1914 + + + + + + 8 + 66 + Correspondence to: Aunt Mattie From: Anna,July 2, 1914 + + + + + + 8 + 67 + Correspondence to: NDF From: Anna,July 29, 1914 + + + + + + 8 + 68 + Correspondence to: Aunt Mattie From: Anna, Alice B.,July 20, 1914 + + + + + + 8 + 69 + Correspondence to: NDF From: Fay,July 30, 1914 + + + + + + 8 + 70 + Correspondence to: NDF From: Mama, Papa,August 11, 1914 + + + + + + 8 + 71 + Correspondence to: NDF From: Mama, Papa,August 21, 1914 + + + + + + 8 + 72 + Correspondence to: Father, Aunt From: Harry Davis, with Map and Directions,August 24, 1914 + + + + + + 8 + 73 + Correspondence to: Parents and All From: Harry, Dave,August 4, 1914 + + + + + + 8 + 74 + Correspondence to: Parents and All From: Harry Davis,August 5, 1914 + + + + + + 8 + 75 + Correspondence to: Parents and All From: Harry Davis,August 22, 1914 + + + + + + 8 + 76 + Correspondence to: Parents and All From: Harry Davis,August 20, 1914 + + + + + + 8 + 77 + Correspondence to: Father, Aunt From: Harry Davis,August 25, 1914 + + + + + + 8 + 78 + Correspondence to: Father, Aunt From: Harry Davis,August 31, 1914 + + + + + + 8 + 79 + Correspondence to: NDF From: Harry Davis,August 31, 1914 + + + + + + 8 + 80 + Correspondence to: NDF and All From: Harry Davis,August 22, 1914 + + + + + + 8 + 81 + Correspondence to: NDF and All From: Zoe, Harry Davis,August 17, 1914 + + + + + + 8 + 82 + Correspondence to: NDF From: Harry Davis,August 25, 1914 + + + + + + 8 + 83 + Correspondence to: NDF From: May L. Carson,August 17, 1914 + + + + + + 8 + 84 + Correspondence to: NDF From: Earl (Cousin),August 30, 1914 + + + + + + 8 + 85 + Correspondence to: NDF and All From: Amy Ruff,September 20, 1914 + + + + + + 8 + 86 + Correspondence to: Theron S. Finley From: The Ruff Bunch, with business Updates, Receipts,undated + + + + + + 8 + 87 + Correspondence to: Theron S. Finley From: H. A. Ruff,November 14, 1914 + + + + + + 8 + 88 + Correspondence to: NDF From: Anna,September 1, 1914 + + + + + + 8 + 89 + Correspondence to: NDF From: Amy Ruff,August 11, 1914 + + + + + + 8 + 90 + Correspondence to: NDF and All From: Amy Ruff,August 26, 1914 + + + + + + 8 + 91 + Correspondence to: Mr. W. H. Davis From: Mattie,September 2, 1914 + + + + + + 8 + 92 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Harry, Wilson, Grandma, and Zoe [Davis],September 2, 1914 + + + + + + 8 + 93 + Correspondence to: Father, Aunt From: Harry Davis,September 3, 1914 + + + + + + 8 + 94 + Correspondence to: NDF From: Sybil,September 6, 1914 + + + + + + 8 + 95 + Correspondence to: NDF From: Amy Ruff,September 5, 1914 + + + + + + 8 + 96 + Correspondence to: NDF From: Edna H.,September 27, 1914 + + + + + + 8 + 97 + Correspondence to: NDF From: C. H. Langman,September 28, 1914 + + + + + + 8 + 98 + Correspondence to: Theron S. Finley and All From: Aunt Pruda,October 8, 1914 + + + + + + 8 + 99 + Correspondence to: NDF From: Aunt Pruda,October 20, 1914 + + + + + + 8 + 100 + Correspondence to: Theron S. Finley and All From: Amy Ruff, with Miscellaneous Receipts,October 2, 1914 + + + + + + 8 + 101 + Correspondence to: NDF and All From: Harry, Zoe, and Wilson Davis,October 9, 1914 + + + + + + 8 + 102 + Correspondence to: NDF and All From: Anna,October 14, 1914 + + + + + + 8 + 103 + Correspondence to: NDF From: Kate Thatcher,October 20, 1914 + + + + + + 8 + 104 + Correspondence to: NDF From: M. G. Andrews,November 10, 1914 + + + + + + 8 + 105 + Correspondence to: NDF From: M. G. Andrews, with Memorial Fund Certificate,October 21, 1914 + + + + + + 8 + 106 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Aunt Lena, Uncle John, Mildred,October 25, 1914 + + + + + + 8 + 107 + Correspondence to: NDF From: Sybil,October 25, 1914 + + + + + + 8 + 108 + Correspondence to: NDF From: Mama, Papa,November 18, 1914 + + + + + + 8 + 109 + Correspondence to: NDF From: Helen Burruss,undated + + + + + + 8 + 110 + Correspondence to: NDF From: Mama, Papa,November 25, 1914 + + + + + + 8 + 111 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Harry and Zoe Davis,November 25, 1914 + + + + + + 8 + 112 + Correspondence to: NDF From: Harry Davis,November 19, 1914 + + + + + + 8 + 113 + Correspondence to: NDF From: Edna, with Receipts from H. A. Ruff,November 4, 1914 + + + + + + 8 + 114 + Correspondence to: NDF From: Theron S. Finley,November 5, 1914 + + + + + + 8 + 115 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Bessie,November [no day], 1914 + + + + + + + 8 + 116 + Correspondence to: Theron S. Finley From: Clellem, Edith,November 23, 1914 + + + + + + 8 + 117 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Mrs. James Kirby,November 29, 1914 + + + + + + 8 + 118 + Correspondence to: Mr. and Mrs.Theron S. Finley From: Grandma, Grandpa, Aunt Nellie, Harry, Zoe, and Wilson Davis,December 25, 1914 + + + + + 8 + 119 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Harry Davis,December 26, 1914 + + + + + + 8 + 120 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Harry Davis,December 4, 1914 + + + + + + 8 + 121 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Zoe, Wilson Davis,December 5, 1914 + + + + + + 8 + 122 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Harry and Zoe Davis,December 8, 1914 + + + + + + 8 + 123 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Zoe, Harry, and Wilson Davis,December 14, 1914 + + + + + + 8 + 124 + Correspondence to: NDF From: Mama, Papa,December 3, 1914 + + + + + + 8 + 125 + Correspondence to: NDF From: Mama, Papa,December 8, 1914 + + + + + + 8 + 126 + Correspondence to: NDF From: Mama, Papa, and Baby Theron,December 14, 1914 + + + + + + 8 + 127 + Correspondence to: NDF From: Mama, Papa, and Baby Theron,December 19, 1914 + + + + + + 8 + 128 + Correspondence to: NDF From: Mama, Papa, and Baby Theron,December 22, 1914 + + + + + + 8 + 129 + Correspondence to: NDF From: Mama, Papa, and Baby Theron,December 30, 1914 + + + + + + + 8 + 130 + Correspondence to: NDF From: Anna,December 28, 1914 + + + + + + 8 + 131 + Correspondence to: NDF From: Unidentified,undated + + + + + + 8 + 132 + Correspondence to: NDF From: Inez Stine,undated + + + + + + 8 + 133 + Correspondence to: NDF From: Aunt Philena, Anna,December 11, 1914 + + + + + + 8 + 134 + Correspondence to: Mrs. W. H. Davis From: Mr. and Mrs. Theron S. Finley,December 24, 1914 + + + + + + 8 + 135 + Correspondence to: Mrs. W. H. Davis From: NDF,December 26, 1914 + + + + + + 8 + 136 + Correspondence to: Mrs. W. H. Davis From: NDF,January 3, 1915 + + + + + + 8 + 137 + Correspondence to: NDF From: Papa,December 13, 1914 + + + + + + 8 + 138 + Correspondence to: NDF From: Thera Finley,December 13, 1914 + + + + + + 8 + 139 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Aunt Florence, Uncle Nell,December 16, 1914 + + + + + + 8 + 140 + Correspondence to: Theron S. Finley From: Aunt Pruda,December 18, 1914 + + + + + + 8 + 141 + Correspondence to: NDF From: Hazel L.,December 28, 1914 + + + + + + 8 + 142 + Correspondence to: Aunt Mattie and All From: Anna,December 28, 1914 + + + + + + 8 + 143 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Uncle Phil, Aunt Louie,December 28, 1914 + + + + + + 8 + 144 + Correspondence to: H. A. Ruff From: Rural Municipality of Sarnia,August 5, 1915 + + + + + + 8 + 145 + Correspondence to: NDF From: Anna,undated + + + + + + 8 + 146 + Correspondence to: NDF From: Mother, Alice, Anna,January 15, 1915 + + + + + + 8 + 147 + Correspondence to: NDF and All From: Zoe Davis,January [no day], 1915 + + + + + + 8 + 148 + Correspondence to: NDF and All From: Bessie,January 6, 1915 + + + + + + 8 + 149 + Correspondence to: NDF From: June, Bessie,January [no day], 1915 + + + + + + 8 + 150 + Correspondence to: NDF and babies From: Bessie,January [no day], 1915 + + + + + + 8 + 151 + Correspondence to: NDF From: Edna,January 21, 1915 + + + + + + 8 + 152 + Correspondence to: Parents, Aunt Nellie From: Zoe, Harry, and Wilson Davis,January 5, 1915 + + + + + + 8 + 153 + Correspondence to: Parents and All From: Harry Davis,January 1, 1915 + + + + + + 8 + 154 + Correspondence to: Mrs. W. H. Davis (Folks) From: Zoe, Wilson Davis,January 15, 1915 + + + + + + 8 + 155 + Correspondence to: Mrs. W. H. Davis (Folks) From: Zoe Davis,January 25, 1915 + + + + + + 8 + 156 + Correspondence to: Grandpa, Grandma, and All From: Wilson Davis,January 24, 1915 + + + + + + 8 + 157 + Correspondence to: Parents and All From: Harry Davis, with Miscellaneous Receipts,January 23, 1915 + + + + + + 8 + 158 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Aunt Pruda,January 6, 1915 + + + + + + 8 + 159 + Correspondence to: NDF From: Aunt Pruda,undated + + + + + + 8 + 160 + Correspondence to: NDF and All From: Amy Ruff,January [no day], 1915 + + + + + + 8 + 161 + Correspondence to: Theron S. Finley From: Harmond A. Ruff,January 3, 1915 + + + + + + 8 + 162 + Correspondence to: NDF From: Harmond, Amy, and Richard Ruff,January 22, 1915 + + + + + + 8 + 163 + Correspondence to: NDF From: Amy Ruff,December 9, 1914 + + + + + + 8 + 164 + Correspondence to: NDF and All From: Amy Ruff,November 15, 1914 + + + + + + 8 + 165 + Correspondence to: NDF From: Amy Ruff, with Miscellaneous Receipt,January 31, 1915 + + + + + + 8 + 166 + Correspondence to: NDF From: Ida,January 11, 1915 + + + + + + 8 + 167 + Correspondence to: Girls (Anna, NDF) From: Ida,January 31, 1915 + + + + + + 8 + 168 + Correspondence to: NDF From: E. A. P.,January 2, 1915 + + + + + + 8 + 169 + Correspondence to: NDF From: Sybil,January 3, 1915 + + + + + + 8 + 170 + Correspondence to: NDF From: Mama, Papa, and Baby Theron,January 6, 1915 + + + + + + 8 + 171 + Correspondence to: NDF From: Jeanne Destree,January 6, 1915 + + + + + + 8 + 171 + Correspondence to: NDF From: Harrietta Helmer,January 11, 1915 + + + + + + 8 + 172 + Correspondence to: NDF From: Floy,January 14, 1915 + + + + + + 8 + 173 + Correspondence to: NDF From: Harrietta Helmer,January 17, 1915 + + + + + + 8 + 174 + Correspondence to: NDF From: Hazeldell Wright,January 15, 1915 + + + + + + 8 + 175 + Correspondence to: Miss. Nellie G. McMurtrie From: M. G. Andrews,January 16, 1915 + + + + + + + 8 + 176 + Correspondence to: NDF From: M. G. Andrews,January 16, 1915 + + + + + + 8 + 177 + Correspondence to: NDF From: Aunt Lena, Uncle John, Mildred,January 17, 1915 + + + + + + 8 + 178 + Correspondence to: NDF From: Aunt Lena, Uncle John, Mildred,January 17, 1915 + + + + + + 8 + 179 + Correspondence to: NDF From: Mrs. Helen F. Burruss,January 17, 1915 + + + + + + 8 + 180 + Correspondence to: NDF From: Anna,January 17, 1915 + + + + + + 8 + 181 + Correspondence to: NDF From: Aunt Thera, Aunt Louie,January 17, 1915 + + + + + + 8 + 182 + Correspondence to: NDF From: Aunt Addie,January 17, 1915 + + + + + + 8 + 183 + Correspondence to: NDF From: Frederick J. McMurtrie,January 18, 1915 + + + + + + 8 + 184 + Correspondence to: NDF From: Earl,January 18, 1915 + + + + + + 8 + 185 + Correspondence to: NDF From: Katherine S. Langman,January 25, 1915 + + + + + + 8 + 186 + Correspondence to: NDF From: Kate Thatcher,January 19, 1915 + + + + + + 8 + 187 + Correspondence to: NDF and Baby From: Jud, Matie,January 20, 1915 + + + + + + 8 + 188 + Correspondence to: NDF From: Sylvia,January 22, 1915 + + + + + + 8 + 189 + Correspondence to: NDF From: Della B.,January 24, 1915 + + + + + + 8 + 190 + Correspondence to: NDF From: Hattie,January 24, 1915 + + + + + + 8 + 191 + Correspondence to: NDF From: Helen Burruss,January 28, 1915 + + + + + + 8 + 192 + Correspondence to: NDF From: Frederick J. McMurtrie,February 11, 1915 + + + + + + 8 + 193 + Correspondence to: NDF From: Frederick J. McMurtrie,February 16, 1915 + + + + + + 8 + 194 + Correspondence to: NDF From: Uncle Phil, Aunt Louie,February 23, 1915 + + + + + + 8 + 195 + Correspondence to: NDF, Theron W. Finley From: Uncle Phil, Aunt Louie,February 10, 1915 + + + + + + 8 + 196 + Correspondence to: NDF From: Aunt Louie,January 22, 1915 + + + + + + 8 + 197 + Correspondence to: NDF From: Aunt Lida,February 7, 1915 + + + + + + 8 + 198 + Correspondence to: NDF From: Aunt Thera,February 6, 1915 + + + + + + 8 + 199 + Correspondence to: NDF From: May L. Carson,February 14, 1915 + + + + + + 8 + 200 + Correspondence to: NDF From: Fay Riggs,February 14, 1915 + + + + + + 8 + 201 + Correspondence to: NDF From: A. Rodger (Michigan Mutual Life Insurance Company),February 11, 1915 + + + + + + 8 + 202 + Correspondence to: NDF From: Uncle John, Mildred,February 13, 1915 + + + + + + 8 + 203 + Correspondence to: Parents From: Harry, Zoe, and Wilson Davis,February 26, 1915 + + + + + + 8 + 205 + Correspondence to: NDF From: Sybil,February 28, 1915 + + + + + + 8 + 206 + Correspondence to: NDF and All From: Fred McMurtrie,March 20, 1915 + + + + + + 8 + 207 + Correspondence to: NDF and All From: Fred McMurtrie, with Miscellaneous Receipts,March 10, 1915 + + + + + + 8 + 208 + Correspondence to: NDF and All From: Kate Thatcher,March 7, 1915 + + + + + + 8 + 209 + Correspondence to: NDF From: Aunt Addie,March 7, 1915 + + + + + + 8 + 210 + Correspondence to: NDF From: Jeanne Destree,March 8, 1915 + + + + + + 8 + 211 + Correspondence to: NDF From: Earl,March 11, 1915 + + + + + + 8 + 212 + Correspondence to: NDF From: Anna,March 16, 1915 + + + + + + 8 + 213 + Correspondence to: NDF From: Della,March 24, 1915 + + + + + + 8 + 214 + Correspondence to: NDF From: Ida,March 30, 1915 + + + + + + 8 + 215 + Correspondence to: NDF From: Sylvia Eaton,April 2, 1915 + + + + + + 8 + 216 + Correspondence to: NDF and Boys From: Amy,April 3, 1915 + + + + + + 8 + 217 + Correspondence to: NDF From: Ruth M. Taylor,April 6, 1915 + + + + + + 8 + 218 + Correspondence to: Mattie (Mrs. W. H. Davis) From: Philena,April 11, 1915 + + + + + + 8 + 219 + Correspondence to: NDF and All From: Amy Ruff,April 17, 1915 + + + + + + 8 + 220 + Correspondence to: NDF and All From: Harry Davis,April 22, 1915 + + + + + + 8 + 221 + Correspondence to: NDF From: Bessie,April 27, 1915 + + + + + + 8 + 222 + Correspondence to: NDF From: Sybil,May 2, 1915 + + + + + + 8 + 223 + Correspondence to: NDF From: Anna,May 4, 1915 + + + + + + 8 + 224 + Correspondence to: NDF and Nephews From: Aunt Thera,May 5, 1915 + + + + + + 8 + 225 + Correspondence to: NDF From: Aunt Pruda,May 14, 1915 + + + + + + 8 + 226 + Correspondence to: NDF and All From: Anna,May 10, 1915 + + + + + + 8 + 227 + Correspondence to: NDF and All From: Gertie,May 3, 1915 + + + + + + 8 + 228 + Correspondence to: NDF and All From: Amy Ruffm,undated + + + + + + 8 + 229 + Correspondence to: H. A. Ruff From: Supreme Court of Saskatchewan, with List of Expenses,May 19, 1915 + + + + + + 8 + 230 + Correspondence to: NDF From: Bessie,May 22, 1916 + + + + + + 8 + 231 + Correspondence to: NDF From: Zoe Davis and All,May 25, 1915 + + + + + + 8 + 232 + Correspondence to: NDF From: Amy Ruff,July 21, 1915 + + + + + + 8 + 233 + Correspondence to: NDF From: Amy Ruff,June 26, 1915 + + + + + + 8 + 234 + Correspondence to: NDF and All From: Earl,June 28, 1915 + + + + + + 8 + 235 + Correspondence to: NDF From: Earl,June 22, 1915 + + + + + + 8 + 236 + Correspondence to: NDF From: Della B.,June 1, 1915 + + + + + + 8 + 237 + Correspondence to: NDF From: Zoe Davis,June 2, 1915 + + + + + + 8 + 238 + Correspondence to: NDF From: Sybil,June 27, 1915 + + + + + + 8 + 239 + Correspondence to: NDF and All From: Aunt Philena, with birthday Postcard,June 30, 1915 + + + + + + 8 + 240 + Correspondence to: NDF and All From: Anna,July 3, 1915 + + + + + + 8 + 241 + Correspondence to: NDF From: Jeanne Destree,July 5, 1915 + + + + + + 8 + 242 + Correspondence to: NDF and All From: Aunt Thera,July 7, 1915 + + + + + + 8 + 243 + Correspondence to: NDF From: Zoe, Harry Davis,August 5, 1915 + + + + + + 8 + 244 + Correspondence to: NDF From: Zoe, Harry, and Wilson Davis,August 15, 1915 + + + + + + 8 + 245 + Correspondence to: NDF From: Earl,August [no day], 1915 + + + + + + 8 + 246 + Correspondence to: NDF, Mrs. Davis, and All From: Anna R. Holden,August 6, 1915 + + + + + + 8 + 247 + Correspondence to: NDF and All From: Gertie,August 5, 1915 + + + + + + 8 + 248 + Correspondence to: NDF and Boys From: Aunt Lena,August 8, 1915 + + + + + + 8 + 249 + Correspondence to: NDF From: Aunt Florence,August 11, 1915 + + + + + + 8 + 250 + Correspondence to: NDF From: Mama, Papa,August 26, 1915 + + + + + + 8 + 251 + Correspondence to: NDF and All From: Frederick J. McMurtrie,September 6, 1915 + + + + + + 8 + 252 + Correspondence to: NDF From: Anna,undated + + + + + + 8 + 253 + Correspondence to: NDF and All From: Anna,September 2, 1915 + + + + + + 8 + 254 + Correspondence to: NDF From: Mama, Papa,September 2, 1915 + + + + + + 8 + 255 + Correspondence to: NDF and Boys From: Aunt Lena, Uncle John, Mildred,September 4, 1915 + + + + + + 8 + 256 + Correspondence to: NDF From: Amy Ruff,September 11, 1915 + + + + + + 8 + 257 + Correspondence to: NDF From: Hattie,September 13, 1915 + + + + + + 8 + 258 + Correspondence to: NDF and All From: Bessie,September 21, 1915 + + + + + + 8 + 259 + Correspondence to: NDF and Boys From: Aunt Thera,October 13, 1915 + + + + + + 8 + 260 + Correspondence to: NDF From: Edna H.,October 15, 1915 + + + + + + 8 + 261 + Correspondence to: NDF From: Anna,undated + + + + + + 8 + 262 + Correspondence to: NDF and All From: Aunt Philena,October 14, 1915 + + + + + + 8 + 263 + Correspondence to: NDF From: Sylvia,October 17, 1915 + + + + + + 8 + 264 + Correspondence to: NDF From: Harry, Zoe, and Wilson Davis,October 19, 1915 + + + + + + 8 + 265 + Correspondence to: NDF From: Amy Ruff,October 25, 1915 + + + + + + 8 + 266 + Correspondence to: NDF From: Aunt Thera,October 27, 1915 + + + + + + 8 + 267 + Correspondence to: NDF From: Lena Herrick,October 29, 1915 + + + + + + 8 + 268 + Correspondence to: NDF and All From: Bessie,November 11, 1915 + + + + + + 8 + 269 + Correspondence to: NDF and All From: Bessie,November 5, 1915 + + + + + + 8 + 270 + Correspondence to: NDF From: Amy Ruff,November 26, 1915 + + + + + + 8 + 271 + Correspondence to: NDF From: Amy Ruff,November 24, 1915 + + + + + + 8 + 272 + Correspondence to: NDF From: Mama, Papa,November 26, 1915 + + + + + + 8 + 273 + Correspondence to: NDF From: Insurance Company, Settlement,November 26, 1915 + + + + + + 8 + 274 + Correspondence to: Matthew Bush, Esq. From: Martin and McEwen,December 16, 1915 + + + + + + 8 + 275 + Correspondence to: Mr. Harry Davis From: Matthew Bush, Esq.,December 22, 1915 + + + + + + 8 + 276 + Correspondence to: Mr. H. A. Ruff From: Supreme Court of Saskatchewan,May 13, 1915 + + + + + + 8 + 277 + Correspondence to: Miss Nellie McMurtrie From: Jessie,December 23, 1915 + + + + + + 8 + 278 + Correspondence to: NDF From: Aunt Miller,December 6, 1915 + + + + + + 8 + 279 + Correspondence to: NDF From: Bessie,December 11, 1915 + + + + + + 8 + 280 + Correspondence to: NDF From: Katherine S. Langman,December 12, 1915 + + + + + + 8 + 281 + Correspondence to: Matthew Bush, Esq. From: H. A. Ruff,December 18, 1915 + + + + + + 8 + 282 + Correspondence to: NDF From: Aunt Louie,December 20, 1915 + + + + + + 8 + 283 + Correspondence to: NDF From: H. M. Peckham,December 24, 1915 + + + + + + 8 + 284 + Correspondence to: Mrs. W. H. Davis From: Zoe, Harry Davis,December 26, 1915 + + + + + + 8 + 285 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Grandma (Theron's),December 27, 1915 + + + + + + 8 + 286 + Correspondence to:NDF and All From: Harry and Zoe Davis,December 29, 1915 + + + + + + 9 + 1 + Correspondence to: NDF From: Sybil,January 2, 1916 + + + + + + 9 + 2 + Correspondence to: NDF From: Jeanne,January 3, 1916 + + + + + + 9 + 3 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,January 3, 1916 + + + + + + 9 + 4 + Correspondence to: NDF From: Lizzie McEwen,January 9, 1916 + + + + + + 9 + 5 + Correspondence to: NDF From: Jud, Matie,January 5, 1916 + + + + + + 9 + 6 + Correspondence to: NDF From: Inez Stine,January 11, 1916 + + + + + + 9 + 7 + Correspondence to: NDF From: Edna Honeywell,January 14, 1916 + + + + + + 9 + 8 + Correspondence to: NDF From: Harry Davis,January 14, 1916 + + + + + + 9 + 9 + Correspondence to: NDF From: Unidentified,January 21, 1916 + + + + + + 9 + 10 + Correspondence to: NDF From: Wilson Davis,January 31, 1916 + + + + + + 9 + 11 + Correspondence to: NDF From: Harry, Zoe, and Wilson Davis,February 1, 14, 28, 1916 + + + + + + 9 + 12 + Correspondence to: NDF From: Sybil,February 5, 1916 + + + + + + 9 + 13 + Correspondence to: NDF From: Fay,February 5, 1916 + + + + + + 9 + 14 + Correspondence to: NDF From: Harry Davis,February 1, 6, 1916 + + + + + + 9 + 15 + Correspondence to: NDF From: Aunt Philena,February 7, 1916 + + + + + + 9 + 16 + Correspondence to: NDF From: Amy Ruff,February 9, 1916 + + + + + + 9 + 17 + Correspondence to: NDF From: Amy Ruff,March 20, 25, 1916 + + + + + + 9 + 18 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,March 13, 1916 + + + + + + 9 + 19 + Correspondence to: NDF From: Uncle Phil, Aunt Louie (Hartung),March 14, 1916 + + + + + + 9 + 20 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry and Zoe Davis,April 9, 1916 + + + + + + 9 + 21 + Correspondence to: NDF From: Aunt Thera,April 11, 1916 + + + + + + 9 + 22 + Correspondence to: NDF From: G. McGwen,April 12, 1916 + + + + + + 9 + 23 + Correspondence to: NDF / (Theron W. Finley) From: Mama,April 18, 1916 + + + + + + 9 + 24 + Correspondence to: NDF From: Aunt Thera,April 18, 25, 1916 + + + + + + 9 + 25 + Correspondence to: Theron W. Finley From: Harry E. Davis,April 20, 1916 + + + + + + 9 + 26 + Correspondence to: Theron W. Finley From: Mama,April 21, 1916 + + + + + + 9 + 27 + Correspondence to: NDF From: Mr. and Mrs. Edwin Hubert,May 6, 1916 + + + + + + 9 + 28 + Correspondence to: NDF From: Lizzie McEwen,May 10, 1916 + + + + + + 9 + 29 + Correspondence to: NDF From: Aunt Louie (Mrs. Hartung),May 30, 1916 + + + + + + 9 + 30 + Correspondence to: NDF From: Amy Ruff,June 4, 1916 + + + + + + 9 + 31 + Correspondence to: Mrs. T. S. Finley From: Howard Meat Company,June 6, 1916 + + + + + + 9 + 32 + Correspondence to: NDF From: Sylvia,June 18, 1916 + + + + + + 9 + 33 + Correspondence to: Theron W. Finley From: Harry, Zoe, and Wilson Davis,June 23, 1916 + + + + + + 9 + 34 + Correspondence to: NDF From: Harry Davis, Mama,July 17, 27, 1916 + + + + + + 9 + 35 + Correspondence to: NDF From: Harry, Zoe, and Wilson Davis,July 3, 1916 + + + + + + 9 + 36 + Correspondence to: NDF From: Lizzie McEwen,July 9, 1916 + + + + + + 9 + 37 + Correspondence to: NDF From: Amy Ruff,July 10, 1916 + + + + + + 9 + 38 + Correspondence to: NDF From: Jeanne Destree,July 16, 1916 + + + + + + 9 + 39 + Correspondence to: NDF From: Aunt Louie (Mrs. L. M. Thompson),July 25, 1916 + + + + + + 9 + 40 + Correspondence to: Mrs. T. S. Finley From: Howard Meat Company,August 7, 1916 + + + + + + 9 + 41 + Correspondence to: NDF From: Uncle John, Mildred,August 10, 1916 + + + + + + 9 + 42 + Correspondence to: Mrs. Wilson Davis From: Earl and Gertrude Tweedie,August 26, 1916 + + + + + + 9 + 43 + Correspondence to: NDF From: Auntie Lida Miller,August 27, 1916 + + + + + + 9 + 44 + Correspondence to: Theron W. Finley From: Harry, Zoe, and Wilson Davis,August 28, 1916 + + + + + + 9 + 45 + Correspondence to: NDF From: Rose McMurtrie,August 28, 1916 + + + + + + 9 + 46 + Correspondence to: NDF From: W. W. McLain,September 13, 19, 1916 + + + + + + 9 + 47 + Correspondence to: NDF From: Amy Ruff,September 1, 1916 + + + + + + 9 + 48 + Correspondence to: NDF From: Aunt Louie (Mrs. P. C. Hartung),September 6, 1916 + + + + + + 9 + 49 + Correspondence to: NDF From: Hattie Helmer,September 11, 1916 + + + + + + 9 + 50 + Correspondence to: NDF From: Lena Herrick?,September 26, 1916 + + + + + + 9 + 51 + Correspondence to: NDF From: Sylvia,October 1, 1916 + + + + + + 9 + 52 + Correspondence to: NDF From: Amy Ruff,October 26, 1916 + + + + + + 9 + 53 + Correspondence to: NDF From: A. M. Brown (Michigan Agricultural College),October 28, 1916 + + + + + + 9 + 54 + Correspondence to: NDF From: Lizzie McEwen,November 12, 1916 + + + + + + 9 + 55 + Correspondence to: NDF From: Lena P. Yax,November 18, 1916 + + + + + + 9 + 56 + Correspondence to: NDF From: W. M. Welch Manufacturing Company,November 21, 1916 + + + + + + 9 + 57 + Correspondence to: NDF From: Marian Martin,November 22, 1916 + + + + + + 9 + 58 + Correspondence to: NDF From: Aunt Louie (Mrs. P. C. Hartung),November 30, 1916 + + + + + + 9 + 59 + Correspondence to: NDF From: Anna,December 27, 29, 1916 + + + + + + 9 + 60 + Correspondence to: NDF From: Rose McMurtrie,December 1, 1916 + + + + + + 9 + 61 + Correspondence to: NDF From: Aunt Louie (Mrs. P. C. Hartung),December 7, 1916 + + + + + + 9 + 62 + Correspondence to: NDF From: Amy Ruff,December 17, 1916 + + + + + + 9 + 63 + Correspondence to: NDF From: Aunt Phlean,December 18, 1916 + + + + + + 9 + 64 + Correspondence to: NDF From: Inez Stine,December 19, 1916 + + + + + + 9 + 65 + Correspondence to: NDF From: Marianne Scurrah,December 23, 1916 + + + + + + 9 + 66 + Correspondence to: NDF From: Ethel Stone,December 26, 1916 + + + + + + 9 + 67 + Correspondence to: Mrs. W. H. Davis From: Harry E. Davis,December 31, 1916 + + + + + + 9 + 68 + Correspondence to: NDF From: Floy Campbell,January 1, 1917 + + + + + + 9 + 69 + Correspondence to: NDF From: Della,January 1, 1917 + + + + + + 9 + 70 + Correspondence to: NDF From: Sylvia,January 3, 1917 + + + + + + 9 + 71 + Correspondence to: NDF From: Caryl, Herb,January 4, 1917 + + + + + + 9 + 72 + Correspondence to: NDF From: Matie,January 5, 1917 + + + + + + 9 + 73 + Correspondence to: NDF From: Alice Grout,January 7, 1917 + + + + + + 9 + 74 + Correspondence to: NDF From: Bessie,January 8, 1917 + + + + + + 9 + 75 + Correspondence to: NDF From: W. W. McLain,January 8, 1917 + + + + + + 9 + 76 + Correspondence to: Mrs. W. H. Davis From: Papa (Wilson Davis),January 13, 1917 + + + + + + 9 + 77 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,January 12, 14, 1917 + + + + + + 9 + 78 + Correspondence to: NDF From: Hattie,January 27, 1917 + + + + + + 9 + 79 + Correspondence to: NDF From: Aunt Thera Finley,February 7, 20, 1917 + + + + + + 9 + 80 + Correspondence to: Miss Nellie McMurtrie From: Rose McMurtrie,February 9, 1917 + + + + + + 9 + 81 + Correspondence to: Theron W. Finley From: Alice Blanch Corbett,February 10, 1917 + + + + + + + + 9 + 82 + Correspondence to: NDF From: Amy Ruff,February 19, 1917 + + + + + + 9 + 83 + Correspondence to: NDF From: Harry Davis,February 5-6, 22, 1917 + + + + + + 9 + 84 + Correspondence to: NDF From: W. W. McLain,February 6, 1917 + + + + + + 9 + 85 + Correspondence to: NDF From: Aunt Louie (Mrs. Hartung),February 11, 1917 + + + + + + 9 + 86 + Correspondence to: Nellie McMurtrie From: Harry and Zoe Davis,February 12, 1917 + + + + + + 9 + 87 + Correspondence to: NDF From: Wilma Davis,February 19, 1917 + + + + + + 9 + 88 + Correspondence to: Wilson H. Davis From: Colon Lodge, E. M. Shaw,February 20, 1917 + + + + + + 9 + 89 + Correspondence to: NDF From: Fay,March 5, 1917 + + + + + + 9 + 90 + Correspondence to: NDF From: Thera,March 6, 1917 + + + + + + 9 + 91 + Correspondence to: NDF From: Jeanne S. Destree,March 11, 1917 + + + + + + 9 + 92 + Correspondence to: Mrs. W. H. Davis From: Harry Davis,March 14, 1917 + + + + + + 9 + 939 + Correspondence to: NDF From: Zoe Davis,March 5, 1917 + + + + + + 9 + 94 + Correspondence to: Allen, Gordan, and Gordan From: Harry E. Davis,March 19, 1917 + + + + + + 9 + 95 + Correspondence to: Mr. W. H. Davis From: Mama (Mrs. Wilson Davis),March 19, 1917 + + + + + + 9 + 96 + Correspondence to: NDF From: Grace,March 31, 1917 + + + + + + 9 + 97 + Correspondence to: Mrs. Wilson Davis From: Earl and Gertrude Tweedie,April 1, 1917 + + + + + + 9 + 98 + Correspondence to: NDF From: Mrs. Fred McMurtrie,June 3, 1917 + + + + + + 9 + 99 + Correspondence to: NDF From: Doris,June 12, 1917 + + + + + + 9 + 100 + Correspondence to: Mrs. W. H. Davis From: NDF,June 17, 1917 + + + + + + 9 + 101 + Correspondence to: NDF From: Doris,June 22, 1917 + + + + + + 9 + 102 + Correspondence to: Theron W. Finley From: Harry, Wilson, and Zoe Davis,June 25, 1917 + + + + + + 9 + 103 + Correspondence to: NDF From: Lizzie McEwen,June 27, 1917 + + + + + + 9 + 104 + Correspondence to: NDF From: Harry Davis,July 10, 1917 + + + + + + 9 + 105 + Correspondence to: Theron W. Finley From: Harry, Wilson, and Zoe Davis,July 18, 1917 + + + + + + 9 + 106 + Correspondence to: NDF From: Harry E. Davis,August 3, 7, 16, 1917 + + + + + + 9 + 107 + Correspondence to: NDF From: C. H. Dale,August 7, 1917 + + + + + + 9 + 108 + Correspondence to: NDF From: Grandma,August 7, 1917 + + + + + + 9 + 109 + Correspondence to: NDF From: S. Lamb,August 9, 1917 + + + + + + 9 + 110 + Correspondence to: NDF From: H. T. Lamb,August 10, 1917 + + + + + + 9 + 111 + Correspondence to: NDF From: Flossie Foster,August 13, 1917 + + + + + + + 9 + 112 + Correspondence to: NDF From: Grandma, Grandpa (Mr. and Mrs. W. H. Davis),August 15, 1917 + + + + + + 9 + 113 + Correspondence to: Mrs. Wilson Davis From: Earl, Gertrude Tweedie,August 16, 1917 + + + + + + 9 + 114 + Correspondence to: NDF From: Aunt Thera,August 16, 1917 + + + + + + 9 + 115 + Correspondence to: NDF From: Edna Honeywell,August 17, 1917 + + + + + + 9 + 116 + Correspondence to: NDF From: Anna,August 19, 1917 + + + + + + 9 + 116 + Correspondence to: NDF From: Allan, Gordon, and Gordon,August 20, 1917 + + + + + + 9 + 117 + Correspondence to: NDF From: Aunt Louie (Mrs. P. C. Hartung),August 23, 1917 + + + + + + 9 + 118 + Correspondence to: NDF From: Peter C. Malaney,August 27, 1917 + + + + + + 9 + 119 + Correspondence to: Theron W. Finley From: Harry, Wilson, and Zoe Davis,August 28, 1917 + + + + + + 9 + 120 + Correspondence to: NDF From: Peter Malaney,September 15, 27, 1917 + + + + + + 9 + 121 + Correspondence to: NDF From: Corbetts,September 9, 1917 + + + + + + 9 + 122 + Correspondence to: NDF From: D. A. Wright,September 10, 1917 + + + + + + 9 + 123 + Correspondence to: NDF From: Della,September 23, 1917 + + + + + + 9 + 124 + Correspondence to: NDF From: Aunt Thera,September 24, 1917 + + + + + + 9 + 125 + Correspondence to: NDF From: Sylvia,September 25, 1917 + + + + + + 9 + 126 + Correspondence to: NDF From: Bessie,October 2, 1917 + + + + + + 9 + 127 + Correspondence to: Master Theron W. Finley From: Harry, Zoe, and Wilson Davis,October 4, 30, 1917 + + + + + + 9 + 128 + Correspondence to: NDF From: Amy Ruff,October 14, 1917 + + + + + + 9 + 129 + Correspondence to: NDF From: Zoe Davis,October 16, 1917 + + + + + + + 9 + 130 + Correspondence to: NDF From: Mrs. Arthur Greene re: Red Cross,October 16, 1917 + + + + + + 9 + 131 + Correspondence to: NDF From: Mrs. Arthur Greene re: Red Cross,November 17, 1917 + + + + + + 9 + 132 + Correspondence to: NDF From: Tillie,November [no day], 1917 + + + + + + 9 + 133 + Correspondence to: NDF From: Lizzie McEwen,November 19, 1917 + + + + + + 9 + 134 + Correspondence to: NDF From: Grandma, Mother, and Alice,November 23, 1917 + + + + + + 9 + 135 + Correspondence to: NDF From: Election of Officers,November 29, 1917 + + + + + + 9 + 136 + Correspondence to: NDF From: W. W. McLain,December 5, 1917 + + + + + + 9 + 137 + Correspondence to: NDF, Harry Finley From: Zoe Davis,December 11, 1917 + + + + + + 9 + 138 + Correspondence to: NDF From: Anna,December 11, 1917 + + + + + + 9 + 139 + Correspondence to: NDF From: Grace H. Waterman,December 15, 1917 + + + + + + 9 + 140 + Correspondence to: NDF From: Alice Blanch Corbett, Anna, Inez,December 27-28, [no day], 1917 + + + + + + 9 + 141 + Correspondence to: NDF From: Harry E. Davis,December 29, 1917 + + + + + + 9 + 142 + Correspondence to: NDF From: Sybil,January 6, 1918 + + + + + + 9 + 143 + Correspondence to: NDF From: Harry E. Davis,January 6, 1918 + + + + + + 9 + 144 + Correspondence to: NDF From: Edna Howard,January 9, 1918 + + + + + + 9 + 145 + Correspondence to: NDF From: Auntie Lida Miller,January 10, 1918 + + + + + + 9 + 146 + Correspondence to: NDF From: Bessie,January 13, 1918 + + + + + + 9 + 147 + Correspondence to: Mr. and Mrs. W. Davis, NDF From: Mark, Alice,January 15, 1918 + + + + + + 9 + 148 + Correspondence to: NDF From: Amy Ruff,January 17, 1918 + + + + + + 9 + 149 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,January 20, 1918 + + + + + + 9 + 150 + Correspondence to: Mrs. W. H. Davis From: Harry E. Davis,January 27, 1918 + + + + + + 9 + 151 + Correspondence to: NDF From: W. W. McLain,January 29, 1918 + + + + + + 9 + 152 + Correspondence to: Mrs. Theron S. Finley From: Loretta (Deur),February 2, 1918 + + + + + + 9 + 153 + Correspondence to: NDF From: Sylvia,February 5, 1918 + + + + + + 9 + 154 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,February 12, 1918 + + + + + + 9 + 155 + Correspondence to: NDF From: Aunt Thera,February 19, 1918 + + + + + + 9 + 156 + Correspondence to: Mrs. W. H. Davis From: Harry E. Davis,March 10, 1918 + + + + + + 9 + 157 + Correspondence to: NDF From: Mrs. Arthur Greene re: Red Cross,March 15, 1918 + + + + + + 9 + 158 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,March 26, 1918 + + + + + + 9 + 159 + Correspondence to: NDF From: F. A. Showerman,April 11, 1918 + + + + + + 9 + 160 + Correspondence to: NDF From: Anna,April 15, 1918 + + + + + + + 9 + 161 + Correspondence to: NDF From: Children's Flower Mission,April 25, 1918 + + + + + + 9 + 162 + Correspondence to: NDF From: Mrs. Claribel H. Anderson,April 29, 1918 + + + + + + 9 + 163 + Correspondence to: NDF From: Harry and Zoe Davis,May 7, 1918 + + + + + + 9 + 164 + Correspondence to: NDF From: Anna,May 11, 1918 + + + + + + 9 + 165 + Correspondence to: Nellie McMurtrie From: Mrs. Prudy,May 12, 1918 + + + + + + 9 + 166 + Correspondence to: Theron W. Finley From: Harry, Zoe, and Wilson Davis,May 14, 1918 + + + + + + 9 + 167 + Correspondence to: NDF From: Claribel H. Anderson,May 22, 1918 + + + + + + 9 + 168 + Correspondence to: NDF From: Inez,May 28, 1918 + + + + + + 9 + 169 + Correspondence to: Mrs. W. H. Davis From: H.T. Lamb,June 1, 1918 + + + + + + 9 + 170 + Correspondence to: NDF From: Aunt Philena,June 17, 1918 + + + + + + 9 + 171 + Correspondence to: NDF From: D. A. Garfield, Albion State Bank,June 17, 24, 1918 + + + + + + 9 + 172 + Correspondence to: Theron W. Finley From: Mama (Mrs. W. H. Davis),July 8, 19, [no day], 25, 1918 + + + + + + 9 + 173 + Correspondence to: NDF From: Aunt Thera,July 25, 1918 + + + + + + 9 + 174 + Correspondence to: Theron W. Finley From: Mama, Papa (Mr. and Mrs. W. H. Davis),July 30, 1918 + + + + + + 9 + 175 + Correspondence to: NDF From: Flossie,August 8, 1918 + + + + + + 9 + 176 + Correspondence to: Nellie McMurtrie From: Zoe Davis,August 13, 1918 + + + + + + 9 + 177 + Correspondence to: NDF From: Mrs. Alice Prise,August 15, 1918 + + + + + + 9 + 178 + Correspondence to: NDF From: Ethel,August 15, 1918 + + + + + + 9 + 179 + Correspondence to: NDF From: Mrs. Feba Dixon Comstock,August 16, 1918 + + + + + + 9 + 180 + Correspondence to: Mrs. W. H. Davis From: Harry Davis,August 17, 1918 + + + + + + 9 + 181 + Correspondence to: NDF From: Daisy Tompkins,August 17, 1918 + + + + + + 9 + 182 + Correspondence to: NDF From: W. B. Marshutz, Michigan Mutual Life Insurance Company,August 20, 1918 + + + + + + 9 + 183 + Correspondence to: NDF From: Amy Ruff,August 25, 1918 + + + + + + 9 + 184 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,August 26, 1918 + + + + + + 9 + 185 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,August 17, 29, 1918 + + + + + + 9 + 186 + Correspondence to: NDF From: Fern C. Kinne,September 12, 1918 + + + + + + 9 + 187 + Correspondence to: NDF From: Aunt Philena,September 13, 1918 + + + + + + 9 + 188 + Correspondence to: NDF From: Mrs. Stone,September 30, 1918 + + + + + + 9 + 189 + Correspondence to: NDF From: Rose McMurtrie,October 1, 1918 + + + + + + 9 + 190 + Correspondence to: NDF From: Auntie Scurrah,October 6, 1918 + + + + + + 9 + 191 + Correspondence to: NDF From: E. T. Meredith,November [no day], 1918 + + + + + + 9 + 192 + Correspondence to: NDF From: Thera,November 19, 1918 + + + + + + 9 + 193 + Correspondence to: Theron W. Finley From: Harry, Zoe, and Wilson Davis,November 19, 1918 + + + + + + 9 + 194 + Correspondence to: NDF From: Methodist Episcopal Church Dedication, St. Louis, Michigan,December 1, 1918 + + + + + + 9 + 195 + Correspondence to: NDF From: Zoe Davis,December 2, 1918 + + + + + + 9 + 196 + Correspondence to: NDF From: Jeanne Destree,December 6, 1918 + + + + + + 9 + 197 + Correspondence to: NDF From: Inez Stowe,December 6, 1918 + + + + + + 9 + 199 + Correspondence to: NDF From: Lena Herrick,December 6, 1918 + + + + + + 9 + 200 + Correspondence to: NDF From: Aunt Philena,December 12, 1918 + + + + + + 9 + 201 + Correspondence to: NDF From: Sears, Roebuck, and Company,December 16, 1918 + + + + + + 9 + 202 + Correspondence to: NDF From: Edna,December 19, 1918 + + + + + + 9 + 203 + Correspondence to: Theron W. Finley From: Aunt Lida Miller,January 5, 1919 + + + + + + 9 + 204 + Correspondence to: NDF From: Sybil,January 6, 1919 + + + + + + 9 + 205 + Correspondence to: NDF From: Anna,January 6, 1919 + + + + + + 9 + 206 + Correspondence to: NDF From: Michigan State Normal School,January 17, 1919 + + + + + + 9 + 207 + Correspondence to: NDF From: Hannah T. Lamb,January 21, 1919 + + + + + + 9 + 208 + Correspondence to: NDF From: W. W. McLain,January 23, 1919 + + + + + + 9 + 209 + Correspondence to: NDF From: Northern Fur Company,February 6, 1919 + + + + + + 9 + 210 + Correspondence to: NDF From: Sylvia,February 9, 1919 + + + + + + 9 + 211 + Correspondence to: NDF From: Jeanne,February 11, 1919 + + + + + + 9 + 212 + Correspondence to: NDF From: W. W. McLain,February 17, 1919 + + + + + + 9 + 213 + Correspondence to: NDF From: Dorothy Callahan,February 19, 1919 + + + + + + 9 + 214 + Correspondence to: Mrs. W. H. Davis From: Harry Davis,February 20, 1919 + + + + + + 9 + 215 + Correspondence to: Harry C. Finley From: Harry, Zoe, and Wilson Davis,February 21, 1919 + + + + + + 9 + 216 + Correspondence to: Harry C. Finley From: Harry and Zoe Davis,February 25, 1919 + + + + + + 9 + 217 + Correspondence to: NDF From: Aunt Philena,March 6, 1919 + + + + + + 9 + 218 + Correspondence to: W. H. Davis From: Harry Davis,March 16, 1919 + + + + + + + + + 9 + 219 + Correspondence to: NDF From: W. W. McLain,March 22, 1919 + + + + + + 9 + 220 + Correspondence to: NDF From: Auntie Lida Miller,April 13, 1919 + + + + + + 9 + 221 + Correspondence to: NDF From: Alice B. Corbett,April 14, 1919 + + + + + + 9 + 222 + Correspondence to: Theron W. Finley From: Harry and Zoe Davis,April 14, 1919 + + + + + + 9 + 223 + Correspondence to: NDF From: Sylvia,April 21, 1919 + + + + + + 9 + 224 + Correspondence to: NDF From: The Ruffs,April 23, 1919 + + + + + + 9 + 225 + Correspondence to: NDF From: Aunt Thera (Mrs. J. H. Clone),May 9, 1919 + + + + + + 9 + 226 + Correspondence to: NDF From: Rose McMurtrie,May 13, 1919 + + + + + + 9 + 227 + Correspondence to: NDF From: D. A. Garfield,May 13, 1919 + + + + + + 9 + 228 + Correspondence to: NDF From: Lena Herrick,May 22, 1919 + + + + + + 9 + 229 + Correspondence to: Theron W. Finley From: Mama,May 27, 1919 + + + + + + 9 + 230 + Correspondence to: NDF From: Auntie Lida Miller,June 22, 1919 + + + + + + 9 + 231 + Correspondence to: NDF From: The Ruffs,May 30, June 23, 1919 + + + + + + 9 + 232 + Correspondence to: NDF From: Lena,August 6, 1919 + + + + + + 9 + 233 + Correspondence to: NDF From: Sylvia,August 17, 1919 + + + + + + 9 + 234 + Correspondence to: NDF From: A. S. Lamb,August 18, 1919 + + + + + + 9 + 235 + Correspondence to: NDF From: W. W. McLain,August 20, 1919 + + + + + + 9 + 236 + Correspondence to: NDF From: W. B. Marshutz, Michigan Mutual Life Insurance Company,August 22, 1919 + + + + + + 9 + 237 + Correspondence to: NDF From: Mama, Papa, Wilson, and Harry,August 25, 1919 + + + + + + 9 + 238 + Correspondence to: NDF From: Robert C. Baker,August 27, 1919 + + + + + + 9 + 239 + Correspondence to: NDF From: Anna,September 19, 26, 1919 + + + + + + 9 + 240 + Correspondence to: NDF From: D. A. Wright,September 3, 1919 + + + + + + 9 + 241 + Correspondence to: NDF From: Mollie and Lida Miller,September 19, 1919 + + + + + + 9 + 242 + Correspondence to: NDF From: Rose P. Flurey,September 29, 1919 + + + + + + 9 + 243 + Correspondence to: NDF From: Della Beers, Wedding Announcement,September 29, 1919 + + + + + + 9 + 244 + Correspondence to: NDF From: Ada Philip,October 29, 1919 + + + + + + 9 + 245 + Correspondence to: NDF From: Sylvia M. Eaton,November 2, 1919 + + + + + + 9 + 246 + Correspondence to: NDF From: Robert A. Smith,November 13, 1919 + + + + + + 9 + 247 + Correspondence to: NDF From: R. E. Schumacher,November 14, 1919 + + + + + + 9 + 248 + Correspondence to: NDF From: Anna,December 8, 1919 + + + + + + 9 + 249 + Correspondence to: NDF From: Amy,December 8, 1919 + + + + + + 9 + 250 + Correspondence to: NDF From: Edna,December 10, 1919 + + + + + + 9 + 251 + Correspondence to: NDF From: R. E. Schumacher,December 15, 1919 + + + + + + 9 + 252 + Correspondence to: NDF From: Grandma,December 16, 1919 + + + + + + 9 + 253 + Correspondence to: NDF From: Ma,December 18, 1919 + + + + + + 9 + 254 + Correspondence to: Mrs. Martha Davis From: Parma Masonic Temple Association,December [no day], 1919 + + + + + + 9 + 255 + Correspondence to: NDF From: Thera,December 19, 1919 + + + + + + 9 + 256 + Correspondence to: NDF From: Auntie Lida Miller,December 30-31, 1919 + + + + + + 10 + 1 + Correspondence to: NDF From: Edna,November 4, 192u + + + + + + 10 + 2 + Correspondence to: NDF From: N. A. Corbett,December [no day], 192u + + + + + + 10 + 3 + Correspondence to: NDF From: Harry and Zoe Davis,192u + + + + + + 10 + 4 + Correspondence to: NDF From: Anna,July 2, 192u + + + + + + 10 + 5 + Correspondence to: NDF From: Anna,July 10, 192u + + + + + + 10 + 6 + Correspondence to: NDF From: Alice Corbett,December [no day], 192u + + + + + + 10 + 7 + Correspondence to: Theron W. Finley From: Papa and Mama (Theron and NDF),January 1, 1920 + + + + + + 10 + 8 + Correspondence to: NDF From: Sylvia M. Eaton,January 3, 1920 + + + + + + 10 + 9 + Correspondence to: NDF From: Ira Stone,January 5, 1920 + + + + + + 10 + 10 + Correspondence to: NDF From: H. J. Lamb,January 6, 1920 + + + + + + 10 + 11 + Correspondence to: NDF From: H. B. L.,January 13, 1920 + + + + + + 10 + 12 + Correspondence to: NDF From: Aunt L. Hartung,January 13, 1920 + + + + + + 10 + 13 + Correspondence to: NDF From: Mrs. Jeanne Bouchat,January 15, 1920 + + + + + + 10 + 14 + Correspondence to: Professor W. H. Davis From: Jane H. Swan,January 30, 1920 + + + + + + 10 + 15 + Correspondence to: Nellie McMurtrie From: Prudy,February 10, 1920 + + + + + + 10 + 16 + Correspondence to: NDF From: Rose McMurtrie,February 10, 1920 + + + + + + 10 + 17 + Correspondence to: NDF From: Bernice and Jennie P.,February 15, 1920 + + + + + + 10 + 18 + Correspondence to: NDF From: Flossie,February 24, 1920 + + + + + + 10 + 19 + Correspondence to: NDF From: Unidentified (no signature),March [no day], 1920 + + + + + + 10 + 20 + Correspondence to: NDF From: Mary Harthey,March 5, 1920 + + + + + + 10 + 21 + Correspondence to: NDF From: Lena,March 7, 1920 + + + + + + 10 + 22 + Correspondence to: NDF From: P.L. Burgess,March 17, 1920 + + + + + + 10 + 23 + Correspondence to: NDF From: The Stones,March 22, 1920 + + + + + + 10 + 24 + Correspondence to: NDF From: Springport Public School,March 30, 1920 + + + + + + 10 + 25 + Correspondence to: NDF From: Amy Ruff,April 4, 1920 + + + + + + 10 + 26 + Correspondence to: NDF From: Mary Haight,April 15, 1920 + + + + + + 10 + 27 + Correspondence to: NDF From: Unidentified (no signature),May 17, 1920 + + + + + + 10 + 28 + NDF, Driver's License,May 17, 1920 + + + + + + 10 + 29 + Correspondence to: NDF From: H. J. Lamb,May 21, 1920 + + + + + + 10 + 30 + Correspondence to: NDF From: Aunt Louie,May 28, 1920 + + + + + + 10 + 31 + Correspondence to: NDF From: F. H. Newkirk,June [no day], 1920 + + + + + + 10 + 32 + Correspondence to: NDF From: Alice,June 7, 1920 + + + + + + 10 + 33 + Correspondence to: NDF From: Mr. and Mrs. Delbert Greenman,June 9, 1920 + + + + + + 10 + 34 + Correspondence to: NDF From: Jackson State Savings Bank,June 14, 1920 + + + + + + 10 + 35 + Correspondence to: NDF From: Anna,July 11, 16, 1920 + + + + + + 10 + 36 + Correspondence to: NDF From: Anna,July 24,27, 1920 + + + + + + 10 + 37 + Correspondence to: NDF From: Harriet,July 9, 1920 + + + + + + 10 + 38 + Correspondence to: NDF From: Lena Herrick,July 13, 1920 + + + + + + 10 + 39 + Correspondence to: NDF From: Corbett's Drug Store,August 9, 1920 + + + + + + 10 + 40 + Correspondence to: NDF From: L. C. Field,August 14, 1920 + + + + + + 10 + 41 + Correspondence to: NDF From: Anna,August 14, 1920 + + + + + + 10 + 42 + Correspondence to: Mrs. W. H. Davis From: Earl and Gertrude Tweedie?,August 15, 1920 + + + + + + 10 + 43 + Correspondence to: NDF From: Michigan Republican Woman's State Executive Committee,August 28, 1920 + + + + + + 10 + 44 + Correspondence to: NDF From: Auntie Miller,August 29, 1920 + + + + + + 10 + 45 + Correspondence to: NDF From: Harry, Zoe, and Wilson Davis,August 31, 1920 + + + + + + 10 + 46 + Correspondence to: NDF From: Anna,September 2, 5, 1920 + + + + + + 10 + 47 + Correspondence to: NDF From: Auntie Miller,September 3, 1920 + + + + + + 10 + 48 + Correspondence to: NDF From: National Geographic Society,September 3, 1920 + + + + + + 10 + 49 + Correspondence to: NDF From: Grace Carleton,September 4, 1920 + + + + + + 10 + 50 + Correspondence to: Carrie Hoog From: Edith Shaw,September 6, 1920 + + + + + + 10 + 51 + Correspondence to: NDF From: Mrs. W. S. Sparks,September 7, 1920 + + + + + + 10 + 52 + Correspondence to: NDF From: Sylvia M. Eaton,September 26, 1920 + + + + + + 10 + 53 + Correspondence to: NDF From: Ada Melville Shaw,October 8, 1920 + + + + + + 10 + 54 + Correspondence to: NDF From: Aunt Loena,October 11, 1920 + + + + + + 10 + 55 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,October 18, 1920 + + + + + + + + 10 + 56 + Correspondence to: NDF From: Gran Ma,October 25, 1920 + + + + + + 10 + 57 + Correspondence to: NDF From: Auntie Miller,October 6, 14, 1920 + + + + + + 10 + 58 + Correspondence to: NDF From: Auntie Miller,October 19, 26, 1920 + + + + + + 10 + 59 + Correspondence to: NDF From: Gran Ma,October 31, 1920 + + + + + + 10 + 60 + Correspondence to: NDF From: Aunt Florence and Uncle Nelson,November 7, 1920 + + + + + + 10 + 61 + Correspondence to: NDF From: Auntie Miller,November 8, 1920 + + + + + + 10 + 62 + Correspondence to: NDF From: Alice, Anna,November 8, 1920 + + + + + + 10 + 63 + Correspondence to: Mrs. W. H. Davis From: Zoe Davis,November 11, 1920 + + + + + + 10 + 64 + Correspondence to: NDF From: George, Ira (Stone), and Girls,November 13, 1920 + + + + + + 10 + 65 + Correspondence to: NDF From: A. Stranford,November 18, 1920 + + + + + + + 10 + 66 + Correspondence to: NDF From: Grace Carleton,November 20, 1920 + + + + + + 10 + 67 + Correspondence to: NDF From: Hattie,November 23, 1920 + + + + + + 10 + 68 + Correspondence to: NDF From: Rose McMurtrie,November 23, 1920 + + + + + + 10 + 69 + Correspondence to: NDF From: Citizens Mutual Automobile Insurance Company,November 27, 1920 + + + + + + 10 + 70 + Correspondence to: NDF From: Aunt Florence and Uncle Nell,November 29, 1920 + + + + + + 10 + 71 + Correspondence to: NDF From: Anna,November 30, 1920 + + + + + + 10 + 72 + Correspondence to: NDF From: Lena,December 31, 1920 + + + + + + 10 + 73 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,December 27, 1920, January [no day], 1921 + + + + + + 10 + 74 + Correspondence to: NDF From: The Farmer's Wife School Service Department,December [no day], 1920 + + + + + + 10 + 75 + Correspondence to: NDF From: Mildred,December 3, 1920 + + + + + + 10 + 76 + Correspondence to: NDF From: Thera,December 17, 1920 + + + + + + 10 + 77 + Correspondence to: NDF From: Mr. and Mrs. L. C. Field,December 19, 1920 + + + + + + 10 + 78 + Correspondence to: NDF From: John Collmenter,December 22, 1920 + + + + + + 10 + 79 + Correspondence to: NDF From: Anna,December 27, 1920 + + + + + + 10 + 80 + Correspondence to: Mr. and Mrs. W. H. Davis From: Zoe Davis,January 3, 1921 + + + + + + 10 + 81 + Correspondence to: NDF From: Auntie Miller,January 3, 1921 + + + + + + 10 + 82 + Correspondence to: NDF From: Sylvia,January 9, 1921 + + + + + + 10 + 83 + Correspondence to: NDF From: P. Dean,January 10, 1921 + + + + + + 10 + 84 + Correspondence to: NDF From: The Ruffs,January 11, 1921 + + + + + + 10 + 85 + Correspondence to: NDF From: Thelma,January 13, 1921 + + + + + + 10 + 86 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,January 17, 1921 + + + + + + 10 + 87 + Correspondence to: Mrs. W. H. Davis From: Anna,January 30, 1921 + + + + + + 10 + 88 + Correspondence to: NDF From: Zoe Davis,February 1, 1921 + + + + + + 10 + 89 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,February 1, 20, 1921 + + + + + + 10 + 90 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,April 17, 1921 + + + + + + 10 + 91 + Correspondence to: NDF From: Alice Blanche Corbett,February 5, 1921 + + + + + + 10 + 92 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,February 16, 1921 + + + + + + 10 + 93 + Correspondence to: NDF From: Flossie,February 17, 1921 + + + + + + 10 + 94 + Correspondence to: Harry C. Finley From: Uncle Harry, Aunt Zoe, and Wilson Davis,February 22, 1921 + + + + + + 10 + 95 + Correspondence to: NDF From: Aunt Louie,February 26, 1921 + + + + + + 10 + 96 + Correspondence to: NDF From: Inez Stone,February 27, 1921 + + + + + + 10 + 97 + Correspondence to: NDF From: Auntie Miller,March 1, 1921 + + + + + + 10 + 98 + Correspondence to: Mrs. W. H. Davis From: Harry Davis,March 25, 1921 + + + + + + 10 + 99 + Correspondence to: NDF From: Roberta Sanford,April 11, 1921 + + + + + + 10 + 100 + Correspondence to: NDF From: Earl Tweedie?,April 14, 1921 + + + + + + 10 + 101 + Correspondence to: NDF From: Anna,April 20, 1921 + + + + + + 10 + 102 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,May 1, 11, 1921 + + + + + + 10 + 103 + Correspondence to: NDF From: Aunt Florence and Uncle Nell,May 9, 1921 + + + + + + 10 + 104 + Correspondence to: Mrs. W. H. Davis From: Harry Davis,May 22, 1921 + + + + + + 10 + 105 + Correspondence to: NDF From: W. W. McLain,June 9, 17, 1921 + + + + + + 10 + 106 + Correspondence to: NDF From: Mrs. Clara Miller,June 15, 1921 + + + + + + 10 + 107 + Correspondence to: NDF From: W. W. McLain,June 16, 1921 + + + + + + 10 + 108 + Correspondence to: NDF From: Tillie,July 17, 1921 + + + + + + 10 + 109 + Correspondence to: NDF From: Dorothy M,July 18, 1921 + + + + + + 10 + 110 + Correspondence to: NDF From: D. A. Wright,July 23, 1921 + + + + + + 10 + 111 + Correspondence to: NDF From: Harry, Zoe, and Wilson Davis,July 26, 1921 + + + + + + 10 + 112 + Correspondence to: NDF From: Code Manufacturing Company,July 30, 1921 + + + + + + 10 + 113 + Correspondence to: NDF From: Alice,August 2, 1921 + + + + + + 10 + 114 + Correspondence to: NDF From: Sylvia M. Eaton,August 10, 1921 + + + + + + 10 + 115 + Correspondence to: NDF From: Gran Ma,August 10, 1921 + + + + + + 10 + 116 + Correspondence to: NDF From: Mrs. A. Field,August 10, 1921 + + + + + + 10 + 117 + Correspondence to: NDF From: Edna,August 16, 1921 + + + + + + 10 + 118 + Correspondence to: NDF From: Anna,August 17, 1921 + + + + + + 10 + 119 + Correspondence to: NDF From: W. J. Bowker,August 17, 1921 + + + + + + 10 + 120 + Correspondence to: NDF From: Albion State Bank,August 18, 1921 + + + + + + 10 + 121 + Correspondence to: Theron W. Finley From: Mama (NDF),August 27, 31, 1921 + + + + + + 10 + 122 + Correspondence to: NDF From: W. W. McLain,August 30, 1921 + + + + + + 10 + 123 + Correspondence to: NDF From: Ethel,August 31, 1921 + + + + + + 10 + 124 + Correspondence to: NDF From: Contract with Springport Schools,September 6, 1921 + + + + + + 10 + 125 + Correspondence to: NDF From: W. J. Bowker,September 7, 1921 + + + + + + 10 + 126 + Correspondence to: NDF From: Harry, Zoe, and Wilson Davis,September 11, 1921 + + + + + + 10 + 127 + Correspondence to: NDF From: Grace Carleton,September 13, 1921 + + + + + + 10 + 128 + Correspondence to: NDF From: Auntie Miller,September 18, 1921 + + + + + + 10 + 129 + Correspondence to: NDF From: Louisa,September 29, 1921 + + + + + + 10 + 130 + Correspondence to: NDF From: Louisa,October 2, 1921 + + + + + + 10 + 131 + Correspondence to: NDF From: Harry, Zoe, and Wilson Davis,October 4, 1921 + + + + + + 10 + 132 + Correspondence to: NDF From: Alice Corbett, Anna,October 10, 1921 + + + + + + 10 + 133 + Correspondence to: NDF From: Anna,October 21, 1921 + + + + + + 10 + 134 + Correspondence to: NDF From: International Harvester Company,December 8, 1921 + + + + + + 10 + 135 + Correspondence to: NDF From: Sylvia,December 11, 1921 + + + + + + 10 + 136 + Correspondence to: Nellie McMurtrie From: Bertie McMurtrie,December 11, 1921 + + + + + + 10 + 137 + Correspondence to: Mrs. W. H. Davis From: Harry Davis,December 13-14, 1921 + + + + + + 10 + 138 + Correspondence to: Mrs. W. H. Davis From: Harry Davis,December 21, 27, 1921 + + + + + + 10 + 139 + Correspondence to: NDF From: Anna,December 22, 1921 + + + + + + 10 + 140 + Correspondence to: NDF From: Aunt Florence,December 27, 1921 + + + + + + 10 + 141 + Correspondence to: Theron W. Finley, Harry C. Finley From: Thelma Beatrice Thompson,December 29, 1921 + + + + + + 10 + 142 + Correspondence to: NDF From: Anna,January 9, 1922 + + + + + + 10 + 143 + Correspondence to: W. H. Davis From: Harry Davis,January 11, 1922 + + + + + + 10 + 144 + Correspondence to: NDF From: Lena Hewitt,January 12, 1922 + + + + + + 10 + 145 + Correspondence to: NDF From: Dana Richardson,January 23, 1922 + + + + + + 10 + 146 + Correspondence to: Mrs. W. H. Davis From: Harry Davis,January 24, 1922 + + + + + + 10 + 147 + Correspondence to: NDF From: Auntie Miller,January 27, 1922 + + + + + + 10 + 148 + Correspondence to: Nellie McMurtrie From: Harry and Zoe Davis,February 11, 1922 + + + + + + 10 + 149 + Correspondence to: Nellie McMurtrie From: Wilson Davis,February 11, 1922 + + + + + + 10 + 150 + Correspondence to: W. H. Davis From: Harry Davis,February 16, 1922 + + + + + + 10 + 151 + Correspondence to: Harry C. Finley From: Uncle Harry and Aunt Zoe Davis,March 1, 1922 + + + + + + 10 + 152 + Correspondence to: NDF From: Hazel,March 7, 1922 + + + + + + 10 + 153 + Correspondence to: W. H. Davis From: Harry Davis,March 16, 1922 + + + + + + 10 + 154 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,March 26, 1922 + + + + + + 10 + 155 + Correspondence to: NDF From: Anna,March 29, 1922 + + + + + + 10 + 156 + Correspondence to: NDF From: Aunt S. Miller,April 2, 1922 + + + + + + 10 + 157 + Correspondence to: NDF From: Mary C. Spencer,April 6, 1922 + + + + + + 10 + 158 + Correspondence to: NDF From: Alice,April 23, 1922 + + + + + + 10 + 159 + Correspondence to: NDF From: Anna,May 4, 1922 + + + + + + 10 + 160 + Correspondence to: NDF From: Aunt Pruda,May 4, 1922 + + + + + + 10 + 161 + Correspondence to: NDF From: H. J. Lamb,May 10, 1922 + + + + + + 10 + 162 + Correspondence to: NDF From: Aunt Pruda and Philip Hoot,May 16, 1922 + + + + + + 10 + 163 + Correspondence to: NDF From: Alice, Anna,June 6, 1922 + + + + + + 10 + 164 + Correspondence to: NDF From: Anna,June 17, 1922 + + + + + + 10 + 165 + Correspondence to: NDF From: Harry, Zoe, and Wilson Davis,June 20, 1922 + + + + + + 10 + 166 + Correspondence to: NDF From: Harry Davis,June 22, 1922 + + + + + + 10 + 167 + Correspondence to: NDF From: Bernice,June 14, 1922 + + + + + + 10 + 168 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,July 15, 19, 1922 + + + + + + 10 + 169 + Correspondence to: NDF From: Mama, Papa,July 12, 1922 + + + + + + 10 + 170 + Correspondence to: NDF From: Mama,July 14, 1922 + + + + + + 10 + 171 + Correspondence to: NDF From: Gertrude and Earl Tweedie,July 19, 1922 + + + + + + 10 + 172 + Correspondence to: NDF From: Anna,July 31, 1922 + + + + + + 10 + 173 + Correspondence to: Mrs. W. H. Davis From: Zoe Davis,August 1, 3, 1922 + + + + + + 10 + 174 + Correspondence to: NDF From: Aunt Louie M. Hartung,August 9, 1922 + + + + + + 10 + 175 + Correspondence to: NDF From: Zoe Davis,August 10, 1922 + + + + + + 10 + 176 + Correspondence to: NDF From: Mama, Papa,August 15, 1922 + + + + + + 10 + 177 + Correspondence to: NDF From: Rose McMurtrie,August 18, 1922 + + + + + + 10 + 178 + Correspondence to: NDF From: Frances, Kenneth,August 21, 1922 + + + + + + 10 + 179 + Correspondence to: Mrs. W. H. Davis From: Nellie (NDF),August 26, 1922 + + + + + + 10 + 180 + Correspondence to: NDF From: Aunt S. Miller,September 20, 1922 + + + + + + 10 + 181 + Correspondence to: Mrs. W. H. Davis From: Harry Davis,October 15, 1922 + + + + + + 10 + 182 + Correspondence to: NDF From: Lena,October 22, 1922 + + + + + + 10 + 183 + Correspondence to: NDF From: Gran Ma Finley,October 26, 1922 + + + + + + 10 + 184 + Correspondence to: W. H. Davis From: Berien Campbell and Helen Chapel,November 4, 1922 + + + + + + 10 + 185 + Correspondence to: Mrs. W. H. Davis From: Harry Davis,November 5, 1922 + + + + + + 10 + 186 + Correspondence to: W. H. Davis From: Susan Staley Hill,November 6, 1922 + + + + + + 10 + 187 + Correspondence to: NDF From: Cousin Anna,November 15, 1922 + + + + + + + 10 + 188 + Correspondence to: NDF From: Michigan State University Library,November 20, 1922 + + + + + + 10 + 189 + Correspondence to: NDF From: Harry, Zoe, and Wilson Davis,November 23, 1922 + + + + + + 10 + 190 + Correspondence to: NDF From: Mrs. Hobart,November 26, 1922 + + + + + + 10 + 191 + Correspondence to: NDF From: State Library,November 27, 1922 + + + + + + 10 + 192 + Correspondence to: NDF From: Albion State Bank,December 9, 1922 + + + + + + 10 + 193 + Correspondence to: Mrs. W. H. Davis From: Harry Davis,December 11, 1922 + + + + + + 10 + 194 + Correspondence to: NDF From: Lena,December 17, 1922 + + + + + + 10 + 195 + Correspondence to: Nellie McMurtrie From: Fred and Rose McMurtrie,December 18, 1922 + + + + + + 10 + 196 + Correspondence to: NDF From: Fred and Rose McMurtrie,December 18, 1922 + + + + + + 10 + 197 + Correspondence to: NDF From: Edna,December 19, 1922 + + + + + + 10 + 198 + Correspondence to: W. H. Davis From: Zoe and Harry Davis,December 20, 1922 + + + + + + 10 + 199 + Correspondence to: NDF From: Etta Leidy,December 22, 1922 + + + + + + 10 + 200 + Correspondence to: NDF From: E. H.,January 3, 1923 + + + + + + 10 + 201 + Correspondence to: Mrs. W. H. Davis From: Mr. and Mrs. L. C. Field,January 4, 1923 + + + + + + 10 + 202 + Correspondence to: NDF From: Aunt Thera,January 21, 1923 + + + + + + 10 + 203 + Correspondence to: Nellie McMurtrie From: Fred and Rose McMurtrie,February 9, 1923 + + + + + + 10 + 204 + Correspondence to: Mrs. W. H. Davis From: Harry Davis,February 18, 1923 + + + + + + 10 + 205 + Correspondence to: NDF From: Sylvia,February 25, 1923 + + + + + + 10 + 206 + Correspondence to: Harry C. Finley From: Mama (NDF),March 16, 1923 + + + + + + 10 + 207 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,March 21, 1923 + + + + + + 10 + 208 + Correspondence to: NDF From: Anna,April 13, 1923 + + + + + + 10 + 209 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,April 16, 1923 + + + + + + 10 + 210 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,May 9, 11, 1923 + + + + + + 10 + 211 + Correspondence to: Mrs. W. H. Davis From: Harry Davis,May 15, 1923 + + + + + + 10 + 212 + Correspondence to: NDF From: Anna and the Corbetts,May 16, 1923 + + + + + + 10 + 213 + Correspondence to: NDF From: Genevieve,June 6, 1923 + + + + + + 10 + 214 + Correspondence to: Nellie McMurtrie From: Helen Peckham,June 13, 1923 + + + + + + 10 + 215 + Correspondence to: W. H. Davis From: Mama,June 18, 1923 + + + + + + 10 + 216 + Correspondence to: NDF From: Bessie,August 8, 1923 + + + + + + 10 + 217 + Correspondence to: W. H. Davis From: Harry, Zoe, and Wilson Davis,August 13, 1923 + + + + + + 10 + 218 + Correspondence to: NDF From: Ethel,August 15, 1923 + + + + + + 10 + 219 + Correspondence to: NDF From: Sylvia,September 9, 1923 + + + + + + 10 + 220 + Correspondence to: NDF From: Donahue-Adams Company,September 14, 1923 + + + + + + 10 + 221 + Correspondence to: NDF From: Grace Carleton,September 24, 1923 + + + + + + 10 + 222 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,September 24, 1923 + + + + + + 10 + 223 + Correspondence to: NDF From: Harry, Zoe, and Wilson Davis,October 21, 1923 + + + + + + 10 + 224 + Correspondence to: NDF From: Helen Clarke,October 25, 1923 + + + + + + 10 + 225 + Correspondence to: Mrs. W. H. Davis From: Mrs. L. Field,October 26, 1923 + + + + + + 10 + 226 + Correspondence to: NDF From: World Book Company,October 26, 1923 + + + + + + 10 + 227 + Correspondence to: NDF From: Harry, Zoe, and Wilson Davis,October 28, 1923 + + + + + + 10 + 228 + Correspondence to: A. D. White From: NDF,October 30, 1923 + + + + + + 10 + 229 + Correspondence to: NDF From: Anna,October 31, 1923 + + + + + + 10 + 230 + Correspondence to: NDF From: Walter Grant,November 1, 1923 + + + + + + 10 + 231 + Correspondence to: NDF From: E. T. Brusie World Book Company,November 12, 1923 + + + + + + 10 + 232 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,November 18, 1923 + + + + + + 10 + 233 + Correspondence to: NDF From: Genevieve,December 8, 1923 + + + + + + 10 + 234 + Correspondence to: NDF From: Zoe Davis,December 11, 1923 + + + + + + 10 + 235 + Correspondence to: Nellie McMurtrie From: the Stones,December 17, 1923 + + + + + + 10 + 236 + Correspondence to: NDF From: Lena, Frank,December 19, 1923 + + + + + + 10 + 237 + Correspondence to: NDF From: Auntie Miller,December 20, 1923 + + + + + + 10 + 238 + Correspondence to: NDF From: Arthur Destree,December 26, 1923 + + + + + + 10 + 239 + Correspondence to: Theron W. Finley, Harry C. Finley From: Thelma Thompson,December 27, 1923 + + + + + + 10 + 240 + Correspondence to: NDF From: Aunt Pruda,December 28, 1923 + + + + + + 10 + 241 + Correspondence to: NDF From: H. Y. Lamb,December 29, 1923 + + + + + + 10 + 242 + Correspondence to: NDF From: Alice,December 31, 1923 + + + + + + 11 + 1 + Correspondence to: Harry C. Finley From: NDF,[no month] 7, 1924 + + + + + + 11 + 2 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,[no month, no day] 1924 + + + + + + 11 + 3 + Correspondence to: NDF From: Hazel,January 15, 1924 + + + + + + 11 + 4 + Correspondence to: NDF From: Harry, Zoe, and Wilson Davis,January 1, 1924 + + + + + + 11 + 5 + Correspondence to: NDF From: Lena,January 1, 1924 + + + + + + + + + 11 + 6 + Correspondence to: Miss Nellie McMurtrie From: Bernadine Klohn,January 2, 1924 + + + + + + 11 + 7 + Correspondence to: NDF From: Edna,January 3, 1924 + + + + + + 11 + 8 + Correspondence to: Theron W. Finley From: Albion State Bank,January 12, 1924 + + + + + + 11 + 9 + Correspondence to: Harry C. Finley From: Albion State Bank,January 12, 1924 + + + + + + 11 + 10 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,January 20, 1924 + + + + + + 11 + 11 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,December 26, 1923 + + + + + + 11 + 12 + Correspondence to: NDF From: Albion State Bank,January 29, 1924 + + + + + + 11 + 13 + Correspondence to: NDF From: Uncle Nell, Aunt Florence,January 31, 1924 + + + + + + 11 + 14 + Correspondence to: NDF From: Helen Millard, with small Photograph of a Church in Frontier, Michigan,February 3, 1924 + + + + + + 11 + 15 + Correspondence to: Miss Nellie McMurtrie From: H. L. Routier,February 6, 1924 + + + + + + 11 + 16 + Correspondence to: NDF and All From: Anna,February 8, 1924 + + + + + + 11 + 17 + Correspondence to: Nellie McMurtrie From: Alice Grout,February 9, 1924 + + + + + + 11 + 18 + Correspondence to: NDF From: Sylvia,February 10, 1924 + + + + + + 11 + 19 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,February 11, 1924 + + + + + + 11 + 20 + Correspondence to: Nellie McMurtrie From: Rose McMurtrie,February 11, 1924 + + + + + + 11 + 21 + Correspondence to: Harry C. Finley From: Uncle Harry, Aunt Zoe, and Wilson Davis,February 23, 1924 + + + + + + 11 + 22 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,March 9, 1924 + + + + + + 11 + 23 + Correspondence to: Mr. and Mrs. W. H. Davis and All From: Harry E. Davis,March 2, 1924 + + + + + + 11 + 24 + Correspondence to: NDF From: Donahue-Adams Company,March 19, 1924 + + + + + + 11 + 25 + Correspondence to: NDF From: Genevieve,March 31, 1924 + + + + + + 11 + 26 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,April 7, 1924 + + + + + + 11 + 27 + Correspondence to: NDF From: Earl,April 15, 1924 + + + + + + 11 + 28 + Correspondence to: Nellie McMurtrie From: Tacoma cousins,April 16, 1924 + + + + + + 11 + 29 + Correspondence to: NDF From: Treasury Department,May 5, 1924 + + + + + + 11 + 30 + Correspondence to: NDF From: Helen Clarke,May 9, 1924 + + + + + + 11 + 31 + Correspondence to: Girl Scouts of Springport From: Helen Clarke,May 9, 1924 + + + + + + 11 + 32 + Correspondence to: NDF and All From: Alice,May 12, 1924 + + + + + + 11 + 33 + Correspondence to: NDF and All From: Anna,May 14, 1924 + + + + + + 11 + 34 + Correspondence to: NDF and All From: Anna,May 19, 1924 + + + + + + 11 + 35 + Correspondence to: Mrs. W. H. Davis From: Zoe Davis,June 19, 1924 + + + + + + 11 + 36 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,June 30, 1924 + + + + + + 11 + 37 + Correspondence to: NDF From: Invitation to Senior Banquet,June 4, 1924 + + + + + + 11 + 38 + Correspondence to: NDF From: Gertrude,June 25, 1924 + + + + + + 11 + 39 + Correspondence to: NDF From: Mrs. Field,June 26, 1924 + + + + + + 11 + 40 + Correspondence to: NDF From: Anna,June 28, 1924 + + + + + + 11 + 41 + Correspondence to: NDF and All From: Mama,July 8, 1924 + + + + + + 11 + 42 + Correspondence to: NDF From: Mama,July 25, 1924 + + + + + + 11 + 43 + Correspondence to: NDF From: Aunt Florence,July 3, 1924 + + + + + + 11 + 44 + Correspondence to: NDF From: Grace Carleton,July 15, 1924 + + + + + + 11 + 45 + Correspondence to: Mrs. W. H. Davis From: NDF,July 17, 1924 + + + + + + 11 + 46 + Correspondence to: NDF From: Zoe Davis,July 18, 1924 + + + + + + 11 + 47 + Correspondence to: NDF and All From: Earl,August 12, 1924 + + + + + + 11 + 48 + Correspondence to: NDF From: Earl,August 19, 1924 + + + + + + 11 + 49 + Correspondence to: NDF From: Harry and Zoe Davis,August 10, 1924 + + + + + + 11 + 50 + Correspondence to: NDF From: Sylvia,August 10, 1924 + + + + + + 11 + 51 + Correspondence to: NDF From: Bessie,August 20, 1924 + + + + + + 11 + 52 + Correspondence to: NDF From: Wedding Announcement,August 25, 1924 + + + + + + 11 + 53 + Correspondence to: NDF From: Alice,August 27, 19uu + + + + + + 11 + 54 + Correspondence to: NDF From: Helen Millard,September 23, 1924 + + + + + + 11 + 55 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,September 25, 1924 + + + + + + 11 + 56 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,September 9, 1924 + + + + + + 11 + 57 + Correspondence to: Mrs. W. H. Davis From: Zoe Davis,September 19, 1924 + + + + + + 11 + 58 + Correspondence to: NDF From: Ginn and Company,September 23, 1924 + + + + + + 11 + 59 + Correspondence to: NDF From: Bessie,October 12, 1924 + + + + + + 11 + 60 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,October 21, 1924 + + + + + + 11 + 61 + Correspondence to: NDF From: Anna,October 22, 1924 + + + + + + 11 + 62 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,December 3, 1924 + + + + + + 11 + 63 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,November 7, 1924 + + + + + + 11 + 64 + Correspondence to: NDF and All From: Earl, Gertrude,November 10, 1924 + + + + + + 11 + 65 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,November 20, 1924 + + + + + + 11 + 66 + Correspondence to: NDF From: Helen C. Clarke, Brochure on the Sunnycrest School for Girls,December 5, 1924 + + + + + + 11 + 67 + Correspondence to: NDF From: Dorothy Geiger,December 16, 1924 + + + + + + 11 + 68 + Correspondence to: Mr. and Mrs. W. H. Davis From: the Stone Family,December 19, 1924 + + + + + + 11 + 69 + Correspondence to: Nellie McMurtrie From: Mrs. Stone,December 20, 1924 + + + + + + 11 + 70 + Correspondence to: NDF and All From: Grace Carleton,December 22, 1924 + + + + + + 11 + 71 + Correspondence to: NDF From: Aunt Lena and Uncle John,December 22, 1924 + + + + + + 11 + 72 + Correspondence to: Mrs. W. H. Davis From: Lida Miller,December 23, 1924 + + + + + + 11 + 73 + Correspondence to: NDF and All From: Nelson and Florence Finley,December 28, 1924 + + + + + + 11 + 74 + Correspondence to: NDF From: Anna,December 31, 1924 + + + + + + 11 + 75 + Correspondence to: NDF and All From: Alice,January 11, 1925 + + + + + + 11 + 76 + Correspondence to: NDF From: Floyd H. Loser,January 9, 1925 + + + + + + 11 + 77 + Correspondence to: NDF From: Helen Clarke,January 3, 1925 + + + + + + 11 + 78 + Correspondence to: NDF From: Zarita,January 9, 1925 + + + + + + 11 + 79 + Correspondence to: Mr. J. E. Adams From: Sidney Tench,January 15, 1925 + + + + + + 11 + 80 + Correspondence to: NDF From: Sidney Tench,January 15, 1925 + + + + + + 11 + 81 + Correspondence to: NDF From: Sylvia,January 18, 1925 + + + + + + 11 + 82 + Correspondence to: NDF From: Donahue-Adams Company,January 21, 1925 + + + + + + 11 + 83 + Correspondence to: NDF From: W. W. McLain,January 29, 1925 + + + + + + 11 + 84 + Correspondence to: NDF From: Auntie Miller,February 6, 1925 + + + + + + 11 + 85 + Correspondence to: NDF From: Wilson Davis (Nephew),January 13, 1925 + + + + + + 11 + 86 + Correspondence to: Mr. H. W. Sintz From: NDF,February 28, 1925 + + + + + + 11 + 87 + Correspondence to: NDF From: Universal Institute,February 18, 1925 + + + + + + 11 + 88 + Correspondence to: NDF and All From: George and Ina Stone, with Miscellaneous Newspaper Clipping,March 1, 1925 + + + + + + 11 + 89 + Correspondence to: Theron W. Finley From: Harry E. Davis,March 3, 1925 + + + + + + 11 + 90 + Correspondence to: Harry C. Finley From: Mama (NDF),March 11, 1925 + + + + + + 11 + 91 + Correspondence to: NDF From: Grace Carleton,April 5, 1925 + + + + + + + 11 + 92 + Correspondence to: Theron W. Finley From: Uncle Harry and Aunt Zoe Davis,April 9, 1925 + + + + + + 11 + 93 + Correspondence to: NDF and All From: Earl,April 12, 1925 + + + + + + 11 + 94 + Correspondence to: NDF From: A. J. Skinner,April 13, 1925 + + + + + + 11 + 95 + Correspondence to: Kate Bromeling From: L. C. Monks,April 21, 1925 + + + + + + 11 + 96 + Correspondence to: Mrs. W. H. Davis From: Harry,May 6, 1925 + + + + + + 11 + 97 + Correspondence to: NDF From: Aunt Louie,May 11, 1925 + + + + + + 11 + 98 + Correspondence to: NDF From: Alice,May 18, 1925 + + + + + + 11 + 99 + Correspondence to: NDF From: D. M. McAuliffe,April 13, 1925 + + + + + + 11 + 100 + Correspondence to: NDF From: Citizens Mutual Auto Insurance Company,October 1, 1924 + + + + + + 11 + 101 + Correspondence to: Mrs. W. H. Davis From: Gertie,May 5, 1925 + + + + + + 11 + 102 + Correspondence to: NDF From: Grace Waterman,May 25, 1925 + + + + + + 11 + 103 + Correspondence to: NDF From: Albion State Bank,June 8, 1925 + + + + + + 11 + 104 + Correspondence to: NDF From: Universal Institute,June 12, 1925 + + + + + + 11 + 105 + Correspondence to: Mrs. W. H. Davis From: Earl,June 20, 19uu + + + + + + 11 + 106 + Correspondence to: Mrs. W. H. Davis From: Gertie,June 21, 1925 + + + + + + 11 + 107 + Correspondence to: NDF From: Dick Ford,July 27, 1925 + + + + + + 11 + 108 + Correspondence to: NDF From: Jessie Heisler,July 18, 1925 + + + + + + 11 + 109 + Correspondence to: NDF From: Jessie Heisler,July 21, 1925 + + + + + + 11 + 110 + Correspondence to: NDF From: Jessie Heisler,July 24, 1925 + + + + + + 11 + 111 + Correspondence to: NDF From: Jessie Heisler,July 27, 1925 + + + + + + 11 + 112 + Correspondence to: NDF From: Jessie Heisler,July 30, 1925 + + + + + + 11 + 113 + Correspondence to: NDF From: Theron W. Finley,July 16, 1925 + + + + + + 11 + 114 + Correspondence to: NDF From: Theron W. Finley,July 17, 1925 + + + + + + 11 + 115 + Correspondence to: NDF From: Theron W. Finley,July 20, 1925 + + + + + + 11 + 116 + Correspondence to: NDF From: Theron W. Finley,July 21, 1925 + + + + + + 11 + 117 + Correspondence to: NDF From: Theron W. Finley,July 27, 1925 + + + + + + 11 + 118 + Correspondence to: NDF From: Regal Service,July 9, 1925 + + + + + + 11 + 119 + Correspondence to: NDF From: Harry and Zoe Davis,July 16, 1925 + + + + + + 11 + 120 + Correspondence to: Mrs. W. H. Davis From: Earl,July 17, 1925 + + + + + + 11 + 121 + Correspondence to: Mrs. W. H. Davis From: Wilson Davis (Grandson),July 21, 1925 + + + + + + 11 + 122 + Correspondence to: NDF From: Bessie,July 28, 1925 + + + + + + 11 + 123 + Correspondence to: NDF From: Anna Corbett,July 31, 1925 + + + + + + 11 + 124 + Correspondence to: NDF and All From: Alice and All,August 3, 1925 + + + + + + 11 + 125 + Correspondence to: NDF From: Amy Ruff??,August 4, 1925 + + + + + + 11 + 126 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,August 11, 1925 + + + + + + 11 + 127 + Correspondence to: NDF From: Anna,August 12, 1925 + + + + + + 11 + 128 + Correspondence to: NDF From: Anna,August 26, 1925 + + + + + + 11 + 129 + Correspondence to: NDF From: Harry and Zoe Davis, Theda,August 23, 1925 + + + + + + 11 + 130 + Correspondence to: NDF From: Fred and Rose McMurtrie,September 25, 1925 + + + + + + 11 + 131 + Correspondence to: NDF and Boys From: Aunt Louie,October 14, 1925 + + + + + + 11 + 132 + Correspondence to: NDF From: Aunt Louie,October 29, 1925 + + + + + + 11 + 133 + Correspondence to: Policy Holder From: Citizens Mutual Auto Insurance Company,October 1, 1925 + + + + + + 11 + 134 + Correspondence to: NDF From: Helen Millard,October 11, 1925 + + + + + + 11 + 135 + Correspondence to: NDF and All From: Aunt Lida,October 18, 1925 + + + + + + 11 + 136 + Correspondence to: NDF and Sons, 25th Wedding Anniversary Invitation,October 19, 1925 + + + + + + 11 + 137 + Correspondence to: NDF From: Flossie,October 27, 1925 + + + + + + 11 + 138 + Correspondence to: NDF From: Citizens Mutual Insurance Company, Notice of Renewal,October 28, 1925 + + + + + + 11 + 139 + Correspondence to: NDF From: Richard B. Ford,October 30, 1925 + + + + + + 11 + 140 + Correspondence to: NDF From: Alice, Musical Program for which Alice played piano,December 6, 1925 + + + + + + 11 + 141 + Correspondence to: Nellie McMurtrie From: Martha Stover Grim,December 16, 1925 + + + + + + 11 + 142 + Correspondence to: Mr. and Mrs. W. H. Davis From: Mrs. L. C. Field,December 17, 1925 + + + + + + 11 + 143 + Correspondence to: NDF From: E. A. McKaig,December 21, 1925 + + + + + + 11 + 144 + Correspondence to: Pa and Millie From: Gertrude (Mrs. Earl Tweedie),January 5, 1926 + + + + + + 11 + 145 + Correspondence to: NDF and All From: Alice,January 6, 1926 + + + + + + 11 + 146 + Correspondence to: Harry From: Earl,January 6, 1926 + + + + + + 11 + 147 + Correspondence to: NDF From: Auntie Miller,January 7, 1926 + + + + + + 11 + 148 + Correspondence to: NDF From: Flossie,January 12, 1926 + + + + + + 11 + 149 + Correspondence to: NDF From: Aunt Louie,January 18, 1926 + + + + + + 11 + 150 + Correspondence to: NDF From: Alice,February 18, 1926 + + + + + + 11 + 151 + Correspondence to: Nellie McMurtrie From: Wilson Davis (Great-nephew),February 9, 1926 + + + + + + 11 + 152 + Correspondence to: Nellie McMurtrie From: Alice G.,February 10, 1926 + + + + + + 11 + 153 + Correspondence to: NDF From: W. H. Rogers, Parma Public School,March 24, 30, 1926 + + + + + + 11 + 154 + Correspondence to: NDF From: Geraldine,March 2, 1925 + + + + + + 11 + 155 + Correspondence to: NDF From: Zoe Davis,March 11, 1926 + + + + + + 11 + 156 + Correspondence to: NDF and All From: Amy Ruff??,March 14, 1926 + + + + + + + 11 + 157 + Correspondence to: Mrs. W. H. Davis From: Harry, Zoe, and Wilson Davis,March 31, 1926 + + + + + + 11 + 158 + Correspondence to: NDF From: Mama,March 23, 1926 + + + + + + 11 + 159 + Correspondence to: NDF From: Alice,April 19, 1926 + + + + + + 11 + 160 + Correspondence to: NDF From: Alice,April 3, 1926 + + + + + + 11 + 161 + Correspondence to: NDF From: Charles W. Snow, The Central Garage,April 1, 1926 + + + + + + 11 + 162 + Correspondence to: NDF From: Ruby Weldon,April 2, 1926 + + + + + + 11 + 163 + Correspondence to: NDF From: Alice, with articles written by Alice,May 1, 1926 + + + + + + 11 + 164 + Correspondence to: NDF and All From: Albert and Bernardine Klohn,May 16, 1926 + + + + + + 11 + 165 + Correspondence to: NDF From: Mrs. W. O. Kimball,May 16, 1926 + + + + + + 11 + 166 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,June 20, 1926 + + + + + + 11 + 167 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,July 4, 1926 + + + + + + 11 + 168 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,July 15, 1926 + + + + + + 11 + 169 + Correspondence to: NDF From: Geraldine,July 12, 1926 + + + + + + 11 + 170 + Correspondence to: NDF From: Geraldine,July 27, 1926 + + + + + + 11 + 171 + Correspondence to: NDF From: Alice,July 13, 1926 + + + + + + 11 + 172 + Correspondence to: NDF From: Alice,July 31, 1926 + + + + + + 11 + 173 + Correspondence to: NDF From: the Corbetts,July 3, 1926 + + + + + + 11 + 174 + Correspondence to: Mrs. W. H. Davis From: Gertrude and Wilson Davis,July 20, 1926 + + + + + + 11 + 175 + Correspondence to: NDF From: Edyth Hall,July 26, 1926 + + + + + + 11 + 176 + Correspondence to: NDF and All From: Sadie,July 27, 1926 + + + + + + 11 + 177 + Correspondence to: NDF From: Rose McMurtrie,August 5, 1926 + + + + + + 11 + 178 + Correspondence to: NDF From: Rose McMurtrie,August 10, 1926 + + + + + + 11 + 179 + Correspondence to: NDF From: King E. Burgess,August 1, 1926 + + + + + + 11 + 180 + Correspondence to: Mrs. W.H. Davis From: Ferty and Wilson Davis,August 2, 1926 + + + + + + 11 + 181 + Correspondence to: NDF From: May L. Carson,August 15, 1926 + + + + + + 11 + 182 + Correspondence to: NDF From: Harry and Zoe Davis,August 21, 1926 + + + + + + 11 + 183 + Correspondence to: NDF From: Bessie,September 11, 1926 + + + + + + 11 + 184 + Correspondence to: NDF From: Donahue-Adams Company,September 15, 1926 + + + + + + 11 + 185 + Correspondence to: Mrs. W. H. Davis From: Mrs. Anna Field,September 15, 1926 + + + + + + 11 + 186 + Correspondence to: Mrs. W. H. Davis From: Harry,September 16, 1926 + + + + + + 11 + 187 + Correspondence to: NDF From: Alice,September 29, 1926 + + + + + + 11 + 188 + Correspondence to: NDF From: Harry and Zoe Davis,October 26, 1926 + + + + + + 11 + 189 + Correspondence to: NDF From: Harry and Zoe Davis,October 22, 1926 + + + + + + 11 + 190 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,October 8, 1926 + + + + + + 11 + 191 + Correspondence to: NDF From: the Springport Signal,October 8, 1926 + + + + + + 11 + 192 + Correspondence to: NDF From: Sylvia M. Eaton,October 10, 1926 + + + + + + 11 + 193 + Correspondence to: NDF From: Mrs. D. Greenman,October 18, 1926 + + + + + + 11 + 194 + Correspondence to: NDF From: Helen Millard,October 18, 1926 + + + + + + 11 + 195 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,November 10, 1926 + + + + + + 11 + 196 + Correspondence to: NDF From: Gerty and Wilson Davis,November 14, 1926 + + + + + + 11 + 197 + Correspondence to: NDF From: Auntie Miller,November 7, 1926 + + + + + + 11 + 198 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,November 16, 1926 + + + + + + 11 + 199 + Correspondence to: NDF From: Zoe Davis,December 1, 1926 + + + + + + 11 + 200 + Correspondence to: Mrs. W. H. Davis From: Anna Field,December 13, 1926 + + + + + + 11 + 201 + Correspondence to: NDF From: Frank, Lena,December 17, 1926 + + + + + + 11 + 202 + Correspondence to: Theron W. Finley, Harry C. Finley From: Gerty and Wilson Davis,December 18, 1926 + + + + + + 11 + 203 + Correspondence to: Harry C. Finley From: Harry and Zoe Davis,January 17, 1927 + + + + + + + + + 11 + 204 + Correspondence to: NDF From: Auntie Miller,January 23, 1927 + + + + + + 11 + 205 + Correspondence to: NDF and All From: Grace Carleton,March 24, 1927 + + + + + + 11 + 206 + Correspondence to: NDF and All From: Grace Carleton,March 13, 1927 + + + + + + 11 + 207 + Correspondence to: NDF and All From: Flossie,January 24, 1927 + + + + + + 11 + 208 + Correspondence to: Mr. and Mrs. W. H. Davis, NDF From: Mr. and Mrs. A. J. Osmun,January 25, 1927 + + + + + + 11 + 209 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,February 1, 1927 + + + + + + 11 + 210 + Correspondence to: Harry C. Finley From: Gerty and Wilson Davis,March 1, 1927 + + + + + + 11 + 211 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,March 28, 1927 + + + + + + 11 + 212 + Correspondence to: Harry C. Finley From: Uncle Harry and Aunt Zoe Davis,March 8, 1927 + + + + + + 11 + 213 + Correspondence to: NDF and Boys From: Aunt Louie,April 18, 1927 + + + + + + 11 + 214 + Correspondence to: NDF From: Aunt Louie,April 11, 1927 + + + + + + 11 + 215 + Correspondence to: NDF From: Fred and Rose McMurtrie,April 19, 1927 + + + + + + 11 + 216 + Correspondence to: NDF From: June,May 17, 1927 + + + + + + 11 + 217 + Correspondence to: NDF From: Zarita,May 17, 1927 + + + + + + 11 + 218 + Correspondence to: NDF From: Fred Hamman,May 17, 1927 + + + + + + 11 + 219 + Correspondence to: NDF From: Fannie,May 23, 1927 + + + + + + 11 + 220 + Correspondence to: NDF From: Mrs. W.W. Corbett,June 5, 1927 + + + + + + 11 + 221 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis, Commencement Program,June 6, 1927 + + + + + + 11 + 222 + Correspondence to: Mrs. W. H. Davis From: Gerty Davis,June 7, 1927 + + + + + + 11 + 223 + Correspondence to: NDF From: Donahue-Adams Company,July 6, 1927 + + + + + + 11 + 224 + Correspondence to: NDF and All From: Alice,July 8, 1927 + + + + + + 11 + 225 + Correspondence to: NDF From: Thelma Covey,June 20, 1927 + + + + + + 11 + 226 + Correspondence to: NDF From: Gerty and Wilson Davis,July 25, 1927 + + + + + + 11 + 227 + Correspondence to: NDF From: Rose McMurtrie,July 28, 1927 + + + + + + 11 + 228 + Correspondence to: NDF From: Gertie Palmer,August 10, 1927 + + + + + + 11 + 229 + Correspondence to: Theron W. Finley From: Harry and Zoe Davis,August 23, 1927 + + + + + + 11 + 230 + Correspondence to: NDF From: Thelma Tweedie,August 21, 1927 + + + + + + 11 + 231 + Correspondence to: NDF From: Mrs. George W. Stone, with Various Newspaper Clippings,November 13, 1927 + + + + + + 11 + 232 + Correspondence to: NDF and All From: Mrs. George W. Stone,November 24, 1927 + + + + + + 11 + 233 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,November 16, 1927 + + + + + + 11 + 234 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,November 14, 1927 + + + + + + 11 + 235 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,November 28, 1927 + + + + + + 11 + 236 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,November 24, 1927 + + + + + + 11 + 237 + Correspondence to: Mrs. W. H. Davis From: Gertie,November 23, 1927 + + + + + + 11 + 238 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,November 28, 1927 + + + + + + 11 + 239 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,November 14, 1927 + + + + + + 11 + 240 + Correspondence to: Mrs. W. H. Davis From: Harry,November 21, 1927 + + + + + + 11 + 241 + Correspondence to: Mrs. W. H. Davis From: Harry,November 14, 1927 + + + + + + 11 + 242 + Correspondence to: Mrs. W. H. Davis From: Harry,November 16, 1927 + + + + + + 11 + 243 + Correspondence to: NDF and All From: Grace Carleton,November 4, 1927 + + + + + + 11 + 244 + Correspondence to: NDF and All From: Grace Carleton,November 16, 1927 + + + + + + 11 + 245 + Correspondence to: NDF and All From: Norvin,November 15, 1927 + + + + + + 11 + 246 + Correspondence to: NDF From: Rose and Fred McMurtrie,November 20, 1927 + + + + + + 11 + 247 + Correspondence to: NDF From: Geraldine,November 2[u], 1927 + + + + + + 11 + 248 + Correspondence to: NDF From: Alice,November 20, 1927 + + + + + + 11 + 249 + Correspondence to: Mrs. W. H. Davis From: Mrs. Anna Field,November 21, 1927 + + + + + + 11 + 250 + Correspondence to: NDF From: Meda Burgess,November 23, 1927 + + + + + + 11 + 251 + Correspondence to: Mrs. W. H. Davis From: Wilson and Harry Davis,November 25, 1927 + + + + + + 11 + 252 + Correspondence to: Mrs. W. H. Davis From: Mrs. Greenman,November 30, 1927 + + + + + + 11 + 253 + Correspondence to: NDF and All From: Gertie and Henry Palmer,November 30, 1927 + + + + + + 11 + 254 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,December 5, 1927 + + + + + + 11 + 255 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,December 13, 1927 + + + + + + 11 + 256 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,December 6, 1927 + + + + + + 11 + 257 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,December 14, 1927 + + + + + + 11 + 258 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,December 1, 1927 + + + + + + 11 + 259 + Correspondence to: Mrs. W. H. Davis From: Harry,December 19, 1927 + + + + + + 11 + 260 + Correspondence to: Mrs. W. H. Davis From: Harry,December 12, 1927 + + + + + + 11 + 261 + Correspondence to: Mrs. W. H. Davis From: Harry,December 16, 1927 + + + + + + + 11 + 262 + Correspondence to: NDF From: Lida Miller,December 19, 1927 + + + + + + 11 + 263 + Correspondence to: NDF From: Mr. and Mrs. N. C. Davis,December 2[u], 1927 + + + + + + 11 + 264 + Correspondence to: NDF From: Eva Bumpus,December 6, 1927 + + + + + + 11 + 265 + Correspondence to: NDF From: Fred and Rose McMurtrie,December 19, 1927 + + + + + + 11 + 266 + Correspondence to: NDF From: Joe and Jane,December 21, 1927 + + + + + + 11 + 267 + Correspondence to: NDF From: Grace Spear (Theron's Teacher),December 21, 1927 + + + + + + 12 + 1 + Correspondence to: Mrs. W. H. Davis From: Gertie Palmer,January 1, 1933 + + + + + + 12 + 2 + Correspondence to: NDF From: Theron W. Finley,January 7, 1933 + + + + + + 12 + 3 + Correspondence to: NDF From: Sylvia,January 8, 1933 + + + + + + 12 + 4 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry and Zoe Davis,January 10, 1933 + + + + + + 12 + 5 + Correspondence to: NDF From: Alta,January 17, 1933 + + + + + + 12 + 6 + Correspondence to: Mr. and Mrs. W. H. Davis From: Gertie Palmer,January 22, 1933 + + + + + + 12 + 7 + Correspondence to: NDF From: Aunt Miller,January 22, 1933 + + + + + + 12 + 8 + Correspondence to: W. H. Davis From: Theron W. Finley,January 26, 1933 + + + + + + 12 + 9 + Correspondence to: Theron W. Finley From: Mother (NDF),January 29, 1933 + + + + + + 12 + 10 + Correspondence to: NDF From: Alice Corbett,January 30, 1933 + + + + + + 12 + 11 + Correspondence to: Mrs. W. H. Davis From: Wilson, Gerty, and Marydena Davis,January 30, 1933 + + + + + + 12 + 12 + Correspondence to: NDF From: Theron W. Finley,February 9, 1933 + + + + + + 12 + 13 + Correspondence to: NDF From: Theron W. Finley,February 28, 1933 + + + + + + 12 + 14 + Correspondence to: Mrs. W. H. Davis From: Theron W. Finley,February 2, 1933 + + + + + + 12 + 15 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,February 6, 1933 + + + + + + 12 + 16 + Correspondence to: Harry From: Theron S. Finley,February 9, 1933 + + + + + + 12 + 17 + Correspondence to: Theron W. Finley From: Mother (NDF),March 13, 1933 + + + + + + 12 + 18 + Correspondence to: Mrs. W. H. Davis From: Harry Davis,March 8, 1933 + + + + + + 12 + 19 + Correspondence to: Theron S. Finley From: Michigan State College,March 8, 1933 + + + + + + 12 + 20 + Correspondence to: NDF From: Eleanor,March 1, 1933 + + + + + + 12 + 21 + Correspondence to: NDF From: Grand Rapids Trust,March 29, 1933 + + + + + + 12 + 22 + Correspondence to: Theron W. Finley From: Grandma,March 20, 1933 + + + + + + 12 + 23 + Correspondence to: Mrs. W. H. Davis From: Gertie,March 15, 1933 + + + + + + 12 + 24 + Correspondence to: NDF From: Theron W. Finely,March 23, 1933 + + + + + + 12 + 25 + Correspondence to: Theron W. Finley From: Mother (NDF),April 2, 1933 + + + + + + 12 + 26 + Correspondence to: Theron W. Finley From: Mother (NDF),April 11, 1933 + + + + + + 12 + 27 + Correspondence to: Theron W. Finley From: Mother (NDF),April 18, 1933 + + + + + + 12 + 28 + Correspondence to: Theron W. Finley From: Mother (NDF),April 27, 1933 + + + + + + 12 + 29 + Correspondence to: NDF From: Grace Carleton,April 4, 1933 + + + + + + 12 + 30 + Correspondence to: Mrs. W. H. Davis From: Theron W. Finley,April 8, 1933 + + + + + + 12 + 31 + Correspondence to: NDF From: Jennie Slack Cook,April 8, 1933 + + + + + + 12 + 32 + Correspondence to: Theron W. Finley From: Grandma, Grandpa, and Mother,April 11, 1933 + + + + + + 12 + 33 + Correspondence to: Theron W. Finley From: Uncle Harry Davis,April 14, 1933 + + + + + + 12 + 34 + Correspondence to: NDF From: Alta and Girls,April 16, 1933 + + + + + + 12 + 35 + Correspondence to: NDF From: Zoe Davis,April 17, 1933 + + + + + + 12 + 36 + Correspondence to: Theron W. Finley From: Wilson, Gerty, and Marydena Davis,April 18, 1933 + + + + + + 12 + 37 + Correspondence to: W. H. Davis From: Theron W. Finley,April 23, 1933 + + + + + + 12 + 38 + Correspondence to: Mrs. W. H. Davis From: Gertie Palmer,April 23, 1933 + + + + + + 12 + 39 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry and Zoe Davis,April 26, 1933 + + + + + + 12 + 40 + Correspondence to: Theron W. Finley From: Mother (NDF),May 3, 1933 + + + + + + 12 + 41 + Correspondence to: Theron W. Finley From: Mother (NDF),May 15, 1933 + + + + + + 12 + 42 + Correspondence to: Theron W. Finley From: Mother (NDF),May 17, 1933 + + + + + + 12 + 43 + Correspondence to: Theron W. Finley From: Mother (NDF),May 29, 1933 + + + + + + 12 + 44 + Correspondence to: NDF From: Theron W. Finley,May 17, 1933 + + + + + + 12 + 45 + Correspondence to: NDF From: Theron W. Finley,May 14, 1933 + + + + + + 12 + 46 + Correspondence to: NDF From: Ethel Stone,May 2, 1933 + + + + + + 12 + 47 + Correspondence to: NDF From: Theron W. Finley,May 13, 1933 + + + + + + 12 + 48 + Correspondence to: Theron W. Finley From: Grandma and Grandpa,May 7, 1933 + + + + + + 12 + 49 + Correspondence to: NDF From: State of New York Insurance Department,May 7, 1933 + + + + + + + 12 + 50 + Correspondence to: NDF From: Jackson Association of Life Underwriters,May 9, 1933 + + + + + + 12 + 51 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry and Zoe Davis,May 11, 1933 + + + + + + 12 + 52 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry and Zoe Davis,May 22, 1933 + + + + + + 12 + 53 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry and Zoe Davis,June 1, 1933 + + + + + + 12 + 54 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry and Zoe Davis,May 16, 1933 + + + + + + 12 + 55 + Correspondence to: Theron W. Finley From: Harry and Zoe Davis,May 22, 1933 + + + + + + 12 + 56 + Correspondence to: Theron W. Finley From: Fanny Harris,May 23, 1933 + + + + + + 12 + 57 + Correspondence to: NDF From: Ethel,May 26, 1933 + + + + + + 12 + 58 + Correspondence to: Mrs. W. H. Davis From: Theron W. Finley,June 27, 1933 + + + + + + + + + 12 + 59 + Correspondence to: Mrs. W. H. Davis From: Theron W. Finley,June 22, 1933 + + + + + + 12 + 60 + Correspondence to: Theron W. Finley From: Wilson, Gerty, and Marydena Davis,June 26, 1933 + + + + + + 12 + 61 + Correspondence to: Theron W. Finley From: Wilson, Gerty, and Marydena Davis,June 22, 1933 + + + + + + 12 + 62 + Correspondence to: Theron W. Finley From: Mother (NDF),June 4, 1933 + + + + + + 12 + 63 + Correspondence to: Theron W. Finley From: Mother (NDF),June 13, 1933 + + + + + + 12 + 64 + Correspondence to: Theron W. Finley From: Mother (NDF),June 23, 1933 + + + + + + 12 + 65 + Correspondence to: NDF From: Theron W. Finley,June 2, 1933 + + + + + + 12 + 66 + Correspondence to: NDF From: Mrs. John Barrett,June 7, 1933 + + + + + + 12 + 67 + Correspondence to: NDF From: May,June 11, 1933 + + + + + + 12 + 68 + Correspondence to: NDF From: Meda Burgess,June 18, 1933 + + + + + + 12 + 69 + Correspondence to: Theron W. Finley From: Zoe and Harry Davis,June 19, 1933 + + + + + + 12 + 70 + Correspondence to: Theron W. Finley From: Mother (NDF), Grandma and Grandpa,June 21, 1933 + + + + + + 12 + 71 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,June 21, 1933 + + + + + + 12 + 72 + Correspondence to: W. H. Davis From: Harry Davis,June 22, 1933 + + + + + + 12 + 73 + Correspondence to: Mrs. W. H. Davis From: Gerty, Wilson, and Marydena Davis,June 22, 1933 + + + + + + 12 + 74 + Correspondence to: Mr. and Mrs. W. H. Davis From: Zoe and Harry Davis,June 26, 1933 + + + + + + 12 + 75 + Correspondence to: Mr. and Mrs. W. H. Davis From: Zoe and Harry Davis,June 30, 1933 + + + + + + 12 + 76 + Correspondence to: NDF From: Mary Marks,June 22, 1933 + + + + + + 12 + 77 + Correspondence to: NDF From: Mary Marks,June 22, 1933 + + + + + + + + 12 + 78 + Correspondence to: Mrs. W. H. Davis From: Theon W. Finley,July 16, 1933 + + + + + + 12 + 79 + Correspondence to: Mrs. W. H. Davis From: Theon W. Finley,July 14, 1933 + + + + + + 12 + 80 + Correspondence to: Mrs. W. H. Davis From: Theron W. Finley,July 19, 1933 + + + + + + 12 + 81 + Correspondence to: Mrs. W. H. Davis From: Theron W. Finley,July 25, 1933 + + + + + + 12 + 82 + Correspondence to: Theron W. Finley From: Mother (NDF),July 7, 1933 + + + + + + 12 + 83 + Correspondence to: Theron W. Finley From: Mother (NDF),July 11, 1933 + + + + + + 12 + 84 + Correspondence to: Theron W. Finley From: Mother (NDF),July 18, 1933 + + + + + + 12 + 85 + Correspondence to: Theron W. Finley From: Mother (NDF),July 24, 1933 + + + + + + 12 + 86 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry, Zoe and Zoe Davis,July 11, 1933 + + + + + + 12 + 87 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry DavisJuly 17, 1933 + + + + + + 12 + 88 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry and Zoe DavisJuly 3, 1933 + + + + + + 12 + 89 + Correspondence to: Mrs. W. H. Davis From: Gerty DavisJuly 4, 1933 + + + + + + 12 + 90 + Correspondence to: Mrs. W. H. Davis From: Zoe ThatcherJuly 7, 1933 + + + + + + 12 + 91 + Correspondence to: NDF From: Fred McMurtrie,July 7, 1933 + + + + + + 12 + 92 + Correspondence to: Theron W. Finley From: Harry Davis,July 24, 1933 + + + + + + 12 + 93 + Correspondence to: Mrs. W. H .Davis From: Harry and Zoe Davis,July 25, 1933 + + + + + + 12 + 94 + Correspondence to: NDF From: Gertie Palmer,July 25, 1933 + + + + + + 12 + 95 + Correspondence to: NDF From: Gertie Palmer,July 27, 1933 + + + + + + 12 + 96 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,July 31, 1933 + + + + + + 12 + 97 + Correspondence to: NDF From: Aunt Pruda,July 31, 1933 + + + + + + 12 + 98 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,August 11, 1933 + + + + + + 12 + 99 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,August 22, 1933 + + + + + + 12 + 100 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,August 31, 1933 + + + + + + 12 + 101 + Correspondence to: Theron W. Finley From: Mother (NDF),August 3, 1933 + + + + + + 12 + 102 + Correspondence to: Theron W. Finley From: Mother (NDF),August 14, 1933 + + + + + + 12 + 103 + Correspondence to: Theron W. Finley From: Mother (NDF),August 22, 1933 + + + + + + 12 + 104 + Correspondence to: Theron W. Finley From: Mother (NDF),August 30, 1933 + + + + + + 12 + 105 + Correspondence to: Mrs. W. H. Davis From: Theron W. Finley,August 1, 1933 + + + + + + 12 + 106 + Correspondence to: NDF From: Grace Carleton,August 3, 1933 + + + + + + 12 + 107 + Correspondence to: NDF From: Jennie Slack Cook,August 6, 1933 + + + + + + 12 + 108 + Correspondence to: NDF From: Harry and Zoe Davis,August 7, 1933 + + + + + + 12 + 109 + Correspondence to: W. H. Davis From: Harold, Geraldine, and Charles,August 9, 1933 + + + + + + 12 + 110 + Correspondence to: NDF From: Hazel Helmer,August 11, 1933 + + + + + + 12 + 111 + Correspondence to: NDF From: Alta and the Girls,August 11, 1933 + + + + + + + + + 12 + 112 + Correspondence to: Mr. and Mrs. W. H. Davis From: Martha Olsen and Charles Crittenden,August 12, 1933 + + + + + + 12 + 113 + Correspondence to: NDF From: Maud and Nettie Green,August 13, 1933 + + + + + + 12 + 114 + Correspondence to: NDF From: Grace Waterman,August 13, 1933 + + + + + + 12 + 115 + Correspondence to: NDF and Father From: Eugene Chapel,August 14, 1933 + + + + + + 12 + 116 + Correspondence to: Theron W. Finley From: R. W. Tenny,August 15, 1933 + + + + + + 12 + 117 + Correspondence to: NDF From: Mary Marks,August 15, 1933 + + + + + + 12 + 118 + Correspondence to: NDF From: Alice,August 23, 1933 + + + + + + 12 + 119 + Correspondence to: NDF From: Auntie Miller,August 25, 1933 + + + + + + 12 + 120 + Correspondence to: NDF From: Meda Burgess,August 28, 1933 + + + + + + 12 + 121 + Correspondence to: NDF From: W. H. Davis,September 30, 1933 + + + + + + 12 + 122 + Correspondence to: NDF From: W. H. Davis,undated + + + + + + 12 + 123 + Correspondence to: Theron W. Finley From: Mother (NDF),September 7, 1933 + + + + + + 12 + 124 + Correspondence to: Theron W. Finley From: Mother (NDF),September 13, 1933 + + + + + + 12 + 125 + Correspondence to: Theron W. Finley From: Mother (NDF),September 27, 1933 + + + + + + 12 + 126 + Correspondence to: W. H. Davis From: A. L. Foster,September 1, 1933 + + + + + + 12 + 127 + Correspondence to: NDF From: Gertie and Henry Palmer,September 3, 1933 + + + + + + 12 + 128 + Correspondence to: W. H. Davis From: Fred, Rose,September 6, 1933 + + + + + + 12 + 129 + Correspondence to: W.H. Davis From: Harry and Zoe Davis,September 7, 1933 + + + + + + 12 + 130 + Correspondence to: NDF From: Ethel Stone,September 11, 1933 + + + + + + 12 + 131 + Correspondence to: NDF From: W. H. Davis,September 14, 1933 + + + + + + 12 + 132 + Correspondence to: NDF From: Geraldine Gumbert,September 19, 1933 + + + + + + 12 + 133 + Correspondence to: Theron W. Finley From: Grandpa, Mother (NDF), and Harry Finley,September 19, 1933 + + + + + + 12 + 134 + Correspondence to: NDF From: Theron W. Finley,September 24, 1933 + + + + + + 12 + 135 + Correspondence to: NDF From: Amy Ruff and All,September 24, 1933 + + + + + + 12 + 136 + Correspondence to: Theron W. Finley From: Fanny Harris,September 26, 1933 + + + + + + 12 + 137 + Correspondence to: NDF From: Dora Wheeler,September 27, 1933 + + + + + + 12 + 138 + Correspondence to: W.H. Davis, From: Harry Davis,September 28, 1933 + + + + + + 12 + 139 + Correspondence to: Theron W. Finley From: Mother (NDF),October 5, 1933 + + + + + + 12 + 140 + Correspondence to: Theron W. Finley From: Mother (NDF),October 9, 1933 + + + + + + 12 + 141 + Correspondence to: Theron W. Finley From: Mother (NDF),October 18, 1933 + + + + + + 12 + 142 + Correspondence to: NDF From: Gertie Palmer,October 5, 1933 + + + + + + 12 + 143 + Correspondence to: Theron W. Finley From: R. W. Terry,October 11, 1933 + + + + + + 12 + 144 + Correspondence to: W. H. Davis From: Harry Davis,October 13, 1933 + + + + + + 12 + 145 + Correspondence to: NDF From: Sadie and Bertie McMurtrie,October 15, 1933 + + + + + + 12 + 146 + Correspondence to: Harry C. Finley From: William Lewis,October 22, 1933 + + + + + + 12 + 147 + Correspondence to: NDF From: Theron W. Finley,October 30, 1933 + + + + + + 12 + 148 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,October 26, 1933 + + + + + + 12 + 149 + Correspondence to: NDF From: Theron W. Finley,November 1, 1933 + + + + + + 12 + 150 + Correspondence to: NDF From: Edna Honeywell,November 27, 1933 + + + + + + + 12 + 151 + Correspondence to: W.H. Davis From: Harry DavisNovember 28, 1933 + + + + + + 12 + 152 + Correspondence to: W.H. Davis From: Harry and Zoe DavisDecember 27, 1933 + + + + + + 12 + 153 + Correspondence to: W.H. Davis and Family From: Jud and MatieDecember 1933 + + + + + + 12 + 154 + Correspondence to: NDF From: Gerty DavisDecember 3, 1933 + + + + + + 12 + 155 + Correspondence to: NDF From: Edna HowardDecember 17, 1933 + + + + + + 12 + 156 + Correspondence to: NDF From: Thomas, Edyth, Marvin,December 18, 1933 + + + + + + 12 + 157 + Correspondence to: NDF From: Jennie Slack Cook,December 19, 1933 + + + + + + 12 + 158 + Correspondence to: NDF From: Theron W. Finley,December 19, 1933 + + + + + + 12 + 159 + Correspondence to: NDF From: Grace Carleton,December 21, 1933 + + + + + + 12 + 160 + Correspondence to: Theron W. Finley From: Mother (NDF),December 26, 1933 + + + + + + 12 + 161 + Correspondence to: NDF From: Mary Marks,December 28, 1933 + + + + + + 12 + 162 + Correspondence to: NDF From: Mutual Hail Insurance Company,[no month, day], 1934 + + + + + + 12 + 163 + Correspondence to: NDF From: Clark Olmsted,January 1, 1934 + + + + + + 12 + 164 + Correspondence to: NDF From: Ma Honeywell,January 2, 1934 + + + + + + 12 + 165 + Correspondence to: NDF From: Meda Burgess,January 9, 1934 + + + + + + 12 + 166 + Correspondence to: NDF From: Aunt Louie,January 25, 1934 + + + + + + 12 + 167 + Correspondence to: NDF From: Harold,January 30, 1934 + + + + + + 12 + 168 + Correspondence to: NDF From: Theron W. Finley,February 5, 1934 + + + + + + 12 + 169 + Correspondence to: NDF From: Harry C. Finley,February 26, 1934 + + + + + + 12 + 170 + Correspondence to: NDF From: Harry C. Finley,March [no day], 1934 + + + + + + 12 + 171 + Correspondence to: W. H. Davis From: Harry C. Finley,March [no day], 1934 + + + + + + 12 + 172 + Correspondence to: W. H. Davis From: Harry C. Finley,March 3, 1934 + + + + + + 12 + 173 + Correspondence to: W. H. Davis From: Harry C. Finley,March 16, 1934 + + + + + + 12 + 174 + Correspondence to: NDF From: Flossie,March 18, 1934 + + + + + + 12 + 175 + Correspondence to: NDF From: Harry C. Finley,March 24, 1934 + + + + + + 12 + 176 + Correspondence to: NDF From: Harry C. Finley,April 10, 1934 + + + + + + 12 + 177 + Correspondence to: NDF From: Harry C. Finley,April 21, 1934 + + + + + + 12 + 178 + Correspondence to: W. H. Davis From: Harry C. Finley,April 3, 1934 + + + + + + 12 + 179 + Correspondence to: W. H. Davis From: Harry C. Finley,April 24, 1934 + + + + + + 12 + 180 + Correspondence to: NDF From: Jessie,April 6, 1934 + + + + + + 12 + 181 + Correspondence to: NDF From: Edna Honeywell,May 6, 1934 + + + + + + 12 + 182 + Correspondence to: W. H. Davis From: Harry C. Finley,May 18, 1934 + + + + + + 12 + 183 + Correspondence to: Theron W. Finley From: Harry C. Finley,May 23, 1934 + + + + + + 12 + 184 + Correspondence to: NDF From: Jane Howard,June 2, 1934 + + + + + + 12 + 185 + Correspondence to: W. H. Davis From: Harry C. Finley,June 19, 1934 + + + + + + 12 + 186 + Correspondence to: W. H. Davis From: Harry C. Finley,June 12, 1934 + + + + + + 12 + 187 + Correspondence to: NDF From: Gertie Palmer,June 18, 1934 + + + + + + 12 + 188 + Correspondence to: NDF From: Amy Ruff,June 27, 1934 + + + + + + 12 + 189 + Correspondence to: NDF From: Harry C. Finley,July 13, 1934 + + + + + + 12 + 190 + Correspondence to: Harry C. Finley From: Grandpa (W. H. Davis),July 18, 1934 + + + + + + 12 + 191 + Correspondence to: Harry C. Finley From: Mother (NDF),July 29, 1934 + + + + + + 12 + 192 + Correspondence to: W. H. Davis From: Harry C. Finley,July 30, 1934 + + + + + + 12 + 193 + Correspondence to: Harry C. Finley From: Mother (NDF),August 6, 1934 + + + + + + 12 + 194 + Correspondence to: Harry C. Finley From: Mother (NDF),August 16, 1934 + + + + + + 12 + 195 + Correspondence to: W. H. Davis From: Harry C. Finley,August 9, 1934 + + + + + + 12 + 196 + Correspondence to: W. H. Davis From: Harry C. Finley,August 13, 1934 + + + + + + 12 + 197 + Correspondence to: W. H. Davis From: Harry C. Finley,August 29, 1934 + + + + + + 12 + 198 + Correspondence to: NDF From: Harry C. Finley,August 2, 1934 + + + + + + 12 + 199 + Correspondence to: NDF From: Harry C. Finley,August 22, 1934 + + + + + + 12 + 200 + Correspondence to: NDF From: Hattie,August 17, 1934 + + + + + + 12 + 201 + Correspondence to: Harry C. Finley From: Mother (NDF),September 4, 1934 + + + + + + 12 + 202 + Correspondence to: Harry C. Finley From: Mother (NDF),September 10, 1934 + + + + + + 12 + 203 + Correspondence to: Harry C. Finley From: Mother (NDF),September 25, 1934 + + + + + + 12 + 204 + Correspondence to: NDF From: Harry C. Finley,September 5, 1934 + + + + + + 12 + 205 + Correspondence to: NDF From: Harry C. Finley,September 9, 1934 + + + + + + 12 + 206 + Correspondence to: NDF From: Harry C. Finley,September 15, 1934 + + + + + + 12 + 207 + Correspondence to: NDF From: Harry C. Finley,September 22, 1934 + + + + + + 12 + 208 + Correspondence to: W. H. Davis From: Harry C. Finley,September 17, 1934 + + + + + + 12 + 209 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,September 21, 1934 + + + + + + 12 + 210 + Correspondence to: Harry C. Finley From: Mildred Jeffers,September 22, 1934 + + + + + + 12 + 211 + Correspondence to: W. H. Davis From: Harry C. Finley,October 2, 1934 + + + + + + 12 + 212 + Correspondence to: Harry C. Finley From: Mother (NDF),October 4, 1934 + + + + + + 12 + 213 + Correspondence to: NDF From: Harry C. Finley,October 5, 1934 + + + + + + 12 + 214 + Correspondence to: NDF From: Mutual Hail Insurance Company,October 20, 1934 + + + + + + 12 + 215 + Correspondence to: Harry C. Finley From: Mother (NDF),November 12, 1934 + + + + + + 12 + 216 + Correspondence to: Harry C. Finley From: Mother (NDF),November 20, 1934 + + + + + + 12 + 217 + Correspondence to: Harry C. Finley From: Mother (NDF),November 26, 1934 + + + + + + 12 + 218 + Correspondence to: W. H. Davis From: Harry C. Finley,November 8, 1934 + + + + + + 12 + 219 + Correspondence to: W. H. Davis From: Harry C. Finley,November 19, 1934 + + + + + + 12 + 220 + Correspondence to: NDF From: Mutual Hail Insurance Company,November 30, 1934 + + + + + + 12 + 221 + Correspondence to: NDF From: Harry C. Finley,November 11, 1934 + + + + + + 12 + 222 + Correspondence to: Harry C. Finley From: Theron and Mother (NDF),December 11, 1934 + + + + + + 12 + 223 + Correspondence to: Harry C. Finley From: Theron and Mother (NDF),December 3, 1934 + + + + + + 12 + 224 + Correspondence to: NDF From: Harry C. Finley,December 2, 1934 + + + + + + 12 + 225 + Correspondence to: NDF From: Harry C. Finley,December 11, 1934 + + + + + + 12 + 226 + Correspondence to: NDF From: Meda Burgess,December 7, 1934 + + + + + + 12 + 227 + Correspondence to: W. H. Davis From: Harry C. Finley,January 27, 1935 + + + + + + 12 + 228 + Correspondence to: W. H. Davis From: Harry C. Finley,January 21, 1935 + + + + + + 12 + 229 + Correspondence to: NDF From: Harry C. Finley,January 1, 1935 + + + + + + 12 + 230 + Correspondence to: NDF From: Harry C. Finley,January 7, 1935 + + + + + + 12 + 231 + Correspondence to: NDF From: Gerty Davis,January 2, 1935 + + + + + + 12 + 232 + Correspondence to: W. H. Davis From: Harry and Zoe Davis?,January 4, 1935 + + + + + + 12 + 233 + Correspondence to: Theron W. Finley From: D. E. Cramton,January 14, 1935 + + + + + + 12 + 234 + Correspondence to: W. H. Davis From: Harry C. Finley,February 11, 1935 + + + + + + 12 + 235 + Correspondence to: W. H. Davis From: Harry C. Finley,February 17, 1935 + + + + + + 12 + 236 + Correspondence to: NDF From: Mutual Hail Insurance Company,February 16, 1935 + + + + + + 12 + 237 + Correspondence to: NDF From: Harry C. Finley,February 22, 1935 + + + + + + 12 + 238 + Correspondence to: NDF From: Harry C. Finley,March 6, 1935 + + + + + + 12 + 239 + Correspondence to: NDF From: Harry C. Finley,May 4, 1935 + + + + + + 12 + 240 + Correspondence to: Harry C. Finley From: Fort Wayne-Detroit, Letter of Transfer,February 6, 1935 + + + + + + 12 + 241 + Correspondence to: NDF From: Harry C. Finley,April 1, 1935 + + + + + + 12 + 242 + Correspondence to: NDF From: Harry C. Finley,April 25, 1935 + + + + + + 12 + 243 + Correspondence to: W. H. Davis From: Harry C. Finley,March 18, 1935 + + + + + + 12 + 244 + Correspondence to: NDF From: Mutual Hail Insurance Company,April 1, 1935 + + + + + + 12 + 245 + Correspondence to: W. H. Davis From: Harry C. Finley,April 15, 1935 + + + + + + 12 + 246 + Correspondence to: W. H. Davis From: Harry C. Finley,April 26, 1935 + + + + + + 12 + 247 + Correspondence to: NDF From: Harry and Zoe Davis,April 5, 1935 + + + + + + 12 + 248 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry and Zoe Davis,April 17, 1935 + + + + + + 12 + 249 + Correspondence to: NDF From: Harry C. Finley,April 21, 1935 + + + + + + 12 + 250 + Correspondence to: NDF From: Mutual Hail Insurance Company,May 1, 1935 + + + + + + 12 + 251 + Correspondence to: NDF From: Harry C. Finley,May 4, 1935 + + + + + + 12 + 252 + Correspondence to: NDF From: Harry C. Finley,May 24, 1935 + + + + + + 12 + 253 + Correspondence to: NDF From: Jennie Slack Cook,June 21, 1935 + + + + + + 12 + 254 + Correspondence to: NDF From: Harry C. Finley,June 20, 1935 + + + + + + 12 + 255 + Correspondence to: NDF From: Harry C. Finley,June 5, 1935 + + + + + + 12 + 256 + Correspondence to: W. H. Davis From: Harry C. Finley,June 8, 1935 + + + + + + 12 + 257 + Correspondence to: W. H. Davis From: Harry C. Finley,June 26, 1935 + + + + + + 12 + 258 + Correspondence to: NDF From: Harry C. Finley,July 2, 1935 + + + + + + 12 + 259 + Correspondence to: NDF From: Harry C. Finley,July 6, 1935 + + + + + + 12 + 260 + Correspondence to: NDF From: Harry C. Finley,July 16, 1935 + + + + + + 12 + 261 + Correspondence to: NDF From: Harry C. Finley,July 25, 1935 + + + + + + 12 + 262 + Correspondence to: NDF From: Earl Fox,July 4, 1935 + + + + + + 12 + 263 + Correspondence to: W. H. Davis From: Harry C. Finley,July 10, 1935 + + + + + + 12 + 264 + Correspondence to: Harry C. Finley From: Theron and Mother (NDF),July 30, 1935 + + + + + + 12 + 265 + Correspondence to: NDF From: Harry C. Finley,August 19, 1935 + + + + + + 12 + 266 + Correspondence to: NDF From: Harry C. Finley,August 8, 1935 + + + + + + 12 + 267 + Correspondence to: NDF From: Harry C. Finley,August 30, 1935 + + + + + + 12 + 268 + Correspondence to: W. H. Davis From: Harry C. Finley,August 13, 1935 + + + + + + 12 + 269 + Correspondence to: NDF From: Mutual Hail Insurance Company,August 2, 1935 + + + + + + 12 + 270 + Correspondence to: W. H. Davis From: Gerty Davis,August 30, 1935 + + + + + + 12 + 271 + Correspondence to: NDF From: Gerty, Wilson, and Marydena Davis,August 30, 1935 + + + + + + 12 + 272 + Correspondence to: Theron W. Finley From: Celia,September 4, 1935 + + + + + + 12 + 273 + Correspondence to: Theron W. Finley From: Celia,September 9, 1935 + + + + + + 12 + 274 + Correspondence to: Theron W. Finley From: Celia,September 15, 1935 + + + + + + 12 + 275 + Correspondence to: Theron W. Finley From: Celia,September 22, 1935 + + + + + + 12 + 276 + Correspondence to: Theron W. Finley From: Celia,September 25, 1935 + + + + + + 12 + 277 + Correspondence to: Theron W. Finley From: Celia,September 29, 1935 + + + + + + 12 + 278 + Correspondence to: NDF From: Harry C. Finley,September 13, 1935 + + + + + + 12 + 279 + Correspondence to: NDF From: Harry C. Finley,September 23, 1935 + + + + + + 12 + 280 + Correspondence to: NDF From: Mutual Hail Insurance Company,September 12, 1935 + + + + + + 12 + 281 + Correspondence to: W. H. Davis From: Gerty, Wilson, and Marydena Davis,September 3, 1935 + + + + + + 12 + 282 + Correspondence to: W. H. Davis From: Gerty, Wilson, and Marydena Davis,September 29, 1935 + + + + + + 12 + 283 + Correspondence to: Harry, W. H., and Zoe Davis From: Gerty, Wilson, and Marydena Davis,September 2, 1935 + + + + + + 12 + 284 + Correspondence to: Harry, W. H., and Zoe Davis From: Gerty, Wilson,September 18, 1935 + + + + + + 12 + 285 + Correspondence to: Harry, W. H., and Zoe Davis From: Wilson Davis,September 24, 1935 + + + + + + 12 + 286 + Correspondence to: W. H. Davis From: Harry C. Finley,September 5, 1935 + + + + + + 12 + 287 + Correspondence to: W. H. Davis From: Harry C. Finley,September 10, 1935 + + + + + + 12 + 288 + Correspondence to: W. H. Davis From: Harry C. Finley,September 24, 1935 + + + + + + 12 + 289 + Correspondence to: NDF From: Gerty Davis,September 11, 1935 + + + + + + 12 + 290 + Correspondence to: W. H. Davis From: Harry Davis,October 16, 1935 + + + + + + 12 + 291 + Correspondence to: W. H. Davis From: Harry Davis,October 28, 1935 + + + + + + 12 + 292 + Correspondence to: NDF From: Mutual Hail Insurance Company,October 19, 1935 + + + + + + 12 + 293 + Correspondence to: Theron W. Finley From: Celia,October 9, 1935 + + + + + + 12 + 294 + Correspondence to: Theron W. Finley From: Celia,October 18, 1935 + + + + + + 12 + 295 + Correspondence to: Theron W. Finley From: Celia,October 24, 1935 + + + + + + 12 + 296 + Correspondence to: Theron W. Finley From: Celia,October 31, 1935 + + + + + + 12 + 297 + Correspondence to: NDF From: Harry C. Finley,October 1, 1935 + + + + + + 12 + 298 + Correspondence to: W. H. Davis From: Gerty, Wilson, and Marydena Davis,October 5, 1935 + + + + + + 12 + 299 + Correspondence to: Harry C. Finley From: Ruth, Celia,October 8, 1935 + + + + + + 12 + 300 + Correspondence to: W. H. Davis From: Harry C. Finley,October 2, 1935 + + + + + + 12 + 301 + Correspondence to: W. H. Davis From: Harry C. Finley,October 8, 1935 + + + + + + 12 + 302 + Correspondence to: NDF From: Wilson and Gerty,October 10, 1935 + + + + + + 12 + 303 + Correspondence to: Harry C. Finley From: Gerty, Wilson, and Marydena Davis,October 13, 1935 + + + + + + 12 + 304 + Correspondence to: Harry C. Finley From: Mother (NDF),October 22, 1935 + + + + + + 12 + 305 + Correspondence to: W. H. Davis From: Harry, Zoe and Zoe Davis,November 21, 1935 + + + + + + 12 + 306 + Correspondence to: W. H. Davis From: Harry, Zoe ,November 12, 1935 + + + + + + 12 + 307 + Correspondence to: NDF From: Harry Davis,November 13, 1935 + + + + + + 12 + 308 + Correspondence to: NDF From: Harry Davis,November 17, 1935 + + + + + + 12 + 309 + Correspondence to: Harry C. Finley From: Harry, and Zoe Davis,November 7, 1935 + + + + + + 12 + 310 + Correspondence to: Harry C. Finley From: Harry, and Zoe Davis,November 21, 1935 + + + + + + 12 + 311 + Correspondence to: NDF From: Harry C. Finley,November 1, 1935 + + + + + + 12 + 312 + Correspondence to: NDF From: Harry C. Finley,November 5, 1935 + + + + + + 12 + 313 + Correspondence to: Theron W. Finley From: Celia,November 6, 1935 + + + + + + 12 + 314 + Correspondence to: Theron W. Finley From: Celia,November 12, 1935 + + + + + + 12 + 315 + Correspondence to: Theron W. Finley From: Celia,November 13, 1935 + + + + + + 12 + 316 + Correspondence to: Theron W. Finley From: Celia,November 20, 1935 + + + + + + 12 + 317 + Correspondence to: Theron W. Finley From: Mother (NDF),November 18, 1935 + + + + + + 12 + 318 + Correspondence to: Theron W. Finley From: Mother (NDF),November 25, 1935 + + + + + + 12 + 319 + Correspondence to: Harry C. Finley From: Mother (NDF),November 4, 1935 + + + + + + 12 + 320 + Correspondence to: Harry C. Finley From: Grandpa and Mother (NDF),November 10, 1935 + + + + + + 12 + 321 + Correspondence to: NDF From: Theron W. Finley,November 11, 1935 + + + + + + 12 + 322 + Correspondence to: Harry C. Finley From: Gerty, Wilson, and Marydena Davis,November 13, 1935 + + + + + + 12 + 323 + Correspondence to: Theron W. Finley From: Phillipp Cerminka,November 18, 1935 + + + + + + 12 + 324 + Correspondence to: NDF From: Theron W. Finley,November 19, 1935 + + + + + + 12 + 325 + Correspondence to: NDF From: Theron W. Finley,November 25, 1935 + + + + + + 12 + 326 + Correspondence to: Harry C. Finley From: Earl Fox,November 21, 1935 + + + + + + 12 + 327 + Correspondence to: NDF From: Alice,November 22, 1935 + + + + + + 12 + 328 + Correspondence to: Harry C. Finley From: Mildred Jeffers,November 23, 1935 + + + + + + 12 + 329 + Correspondence to: NDF From: Gerty Davis,November 25, 1935 + + + + + + 12 + 330 + Correspondence to: W. H. Davis From: Harry C. Finley,November 29, 1935 + + + + + + 12 + 331 + Correspondence to: Theron W. Finley From: Harry C. Finley,November 30, 1935 + + + + + + 12 + 332 + Correspondence to: Theron W. Finley From: Mother (NDF),December 8, 1935 + + + + + + 12 + 333 + Correspondence to: Theron W. Finley From: Mother (NDF),December 15, 1935 + + + + + + 12 + 334 + Correspondence to: Theron W. Finley From: Mother (NDF),December 31, 1935 + + + + + + 12 + 335 + Correspondence to: Theron W. Finley From: Mother (NDF),December 23, 1935 + + + + + + 12 + 336 + Correspondence to: W. H. Davis From: Harry, Zoe, and Zoe Davis,December 3, 1935 + + + + + + 12 + 337 + Correspondence to: W. H. Davis From: Harry, Zoe, and Zoe Davis,December 12, 1935 + + + + + + 12 + 338 + Correspondence to: W. H. Davis From: Harry, Zoe, and Zoe Davis,December 26, 1935 + + + + + + 12 + 339 + Correspondence to: NDF From: Gerty Davis,December 14, 1935 + + + + + + 12 + 340 + Correspondence to: NDF From: Gerty Davis,December 20, 1935 + + + + + + 12 + 341 + Correspondence to: NDF From: Theron W. Finley,December 4, 1935 + + + + + + 12 + 342 + Correspondence to: NDF From: Theron W. Finley,December 11, 1935 + + + + + + 12 + 343 + Correspondence to: Theron W. Finley From: Grandpa and Mother (NDF),December 2, 1935 + + + + + + 12 + 344 + Correspondence to: Harry C. Finley From: Mother (NDF),December 9, 1935 + + + + + + 12 + 345 + Correspondence to: Harry C. Finley From: Mother (NDF),December 23, 1935 + + + + + + 12 + 346 + Correspondence to: Theron W. Finley From: Celia,December 11, 1935 + + + + + + 12 + 347 + Correspondence to: Theron W. Finley From: Celia,December 21, 1935 + + + + + + 12 + 348 + Correspondence to: NDF From: Harry C. Finley,December 8, 1935 + + + + + + 12 + 349 + Correspondence to: NDF From: Aunt Miller,December 10, 1935 + + + + + + 12 + 350 + Correspondence to: Harry C. Finley From: Theron W. Finley,December 12, 1935 + + + + + + 12 + 351 + Correspondence to: W. H. Davis From: Harry C. Finley,December 16, 1935 + + + + + + 12 + 352 + Correspondence to: Harry C. Finley From: Uncle Harry Davis,December 17, 1935 + + + + + + 12 + 353 + Correspondence to: NDF From: Jennie Slack Cook,December 21, 1935 + + + + + + 12 + 354 + Correspondence to: Theron W. Finley From: Gerty, Wilson, and Marydena Davis,December 29, 1935 + + + + + + 12 + 355 + Correspondence to: NDF From: Flossie,December 19, 1935 + + + + + + 13 + 1 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,January 3, 11, 1928 + + + + + + 13 + 2 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,January 3, 20, 30, 1928 + + + + + + 13 + 3 + Correspondence to: NDF From: Thera (Mrs. J. E. Cone),January 3, 1928 + + + + + + 13 + 4 + Correspondence to: NDF From: Auntie Lida Mller,January 5, 1928 + + + + + + 13 + 5 + Correspondence to: NDF From: Cousin Alice,January 15, 1928 + + + + + + 13 + 6 + Correspondence to: Mrs. W. H. Davis From: Harry E., Zoe, and Zoe Davis ,February 4, 6, 1928 + + + + + + 13 + 7 + Correspondence to: Mrs. W. H. Davis From: Harry E., Zoe, and Zoe Davis ,February 10, 14, 1928 + + + + + + 13 + 8 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,February 4, 1928 + + + + + + 13 + 9 + Correspondence to: NDF From: Uncle E. and Aunt Louie Thompson,February 5, 1928 + + + + + + 13 + 10 + Correspondence to: NDF From: Harriette Curtis,February 14, 1928 + + + + + + 13 + 11 + Correspondence to: NDF From: Ruth Kimble,February 16, 1928 + + + + + + 13 + 12 + Correspondence to: NDF From: Edith L. Johnson,February 23, 1928 + + + + + + 13 + 13 + Correspondence to: NDF From: W. C. Harton,February 29, 1928 + + + + + + 13 + 13 + Correspondence to: NDF From: Grace O. Spear,March 3, 1928 + + + + + + 13 + 14 + Correspondence to: NDF From: Sylvia M. Eaton,March 4, 1928 + + + + + + 13 + 15 + Correspondence to: NDF From: Kate L.,March 13, 1928 + + + + + + 13 + 16 + Correspondence to: NDF From: Geraldine Gumbert,March 16, 1928 + + + + + + 13 + 17 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,March 23, 1928 + + + + + + 13 + 18 + Correspondence to: NDF From: Cousin Bertie,April 1, 1928 + + + + + + 13 + 19 + Correspondence to: NDF From: Sylvia M. Eaton,April 3, 1928 + + + + + + 13 + 20 + Correspondence to: Mrs. W. H. Davis From: Harry E. Davis,April 5, 1928 + + + + + + 13 + 21 + Correspondence to: NDF From: Rose Blue McMurtrie,April 26, 1928 + + + + + + 13 + 22 + Correspondence to: NDF From: Grace Carleton,May 3, 29, 1928 + + + + + + 13 + 23 + Correspondence to: NDF From: Aunt Pruda A. Philip,May 30, 1928 + + + + + + 13 + 24 + Correspondence to: NDF From: Alice Corbett, her Dad, and Grandma,June 19, 1928 + + + + + + 13 + 25 + Correspondence to: NDF From: Gerty and Wilson Davis,July 26, 1928 + + + + + + 13 + 26 + Correspondence to: NDF From: Harry and Zoe Davis,July 10-11, 19, 1928 + + + + + + 13 + 27 + Correspondence to: NDF From: Geraldine Gumbert,July 24, 1928 + + + + + + 13 + 28 + Correspondence to: NDF From: Simeon and Lida Miller,July 25, 1928 + + + + + + 13 + 29 + Correspondence to: NDF From: Grace Carleton,July 25, 1928 + + + + + + 13 + 30 + Correspondence to: NDF From: Fred and Rose McMurtrie,August 15, 23, 31, 1928 + + + + + + 13 + 31 + Correspondence to: Mrs. W. H. Davis From: Zoe and Harry Davis,August 13, 20, 30, 1928 + + + + + + 13 + 32 + Correspondence to: NDF From: Meda Burgess,August 28, 1928 + + + + + + 13 + 33 + Correspondence to: NDF From: Mrs. Anna Field, Grace Carleton,August 30, 1928 + + + + + + 13 + 34 + Correspondence to: NDF From: Bessie,September 3, 1928 + + + + + + 13 + 35 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,September 3, 9, 11, 1928 + + + + + + 13 + 36 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,September 16, 25-26, 1928 + + + + + + 13 + 37 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,September 29, 1928 + + + + + + 13 + 38 + Correspondence to: Mrs. W. H. Davis From: Zoe and Harry Davis,September 4, 10, 13, 1928 + + + + + + 13 + 39 + Correspondence to: Mrs. W. H. Davis From: Zoe and Harry Davis,September 17, 21, 24, 1928 + + + + + + 13 + 40 + Correspondence to: NDF From: Mrs. George W. Stone,September 4, 1928 + + + + + + 13 + 41 + Correspondence to: NDF From: Jennie Slack Cook,September 9, 1928 + + + + + + 13 + 42 + Correspondence to: NDF From: Aunt Pruda A. Philip,September 13, 1928 + + + + + + 13 + 43 + Correspondence to: NDF From: Mr. and Mrs. E. L. Thompson,September 14, 1928 + + + + + + 13 + 44 + Correspondence to: NDF From: Aunt Louie Thompson,September 19, 1928 + + + + + + 13 + 45 + Correspondence to: NDF From: Gertie and Henry Palmer,September 23, 1928 + + + + + + 13 + 46 + Correspondence to: NDF From: Harry and Zoe Davis,September 25, 1928 + + + + + + 13 + 47 + Correspondence to: NDF From: Fred McMurtrie,September 30, 1928 + + + + + + 13 + 48 + Correspondence to: NDF From: Gerty and Wilson Davis,October 3,7,14, 1928 + + + + + + 13 + 49 + Correspondence to: NDF From: Gerty and Wilson Davis,September 25, 1928 + + + + + + 13 + 50 + Correspondence to: NDF From: Zoe and Harry Davis,October 1,11,15, 1928 + + + + + + 13 + 51 + Correspondence to: NDF From: Zoe and Harry Davis,October 22.26, 1928 + + + + + + 13 + 52 + Correspondence to: NDF From: Grace Carleton,October 3, 1928 + + + + + + 13 + 53 + Correspondence to: NDF From: Jennie Slack Cook,October 10, 1928 + + + + + + 13 + 54 + Correspondence to: NDF From: Mrs. E.C. Dane,October 14, 1928 + + + + + + 13 + 55 + Correspondence to: NDF From: Geraldine Gumbert,October 17, 1928 + + + + + + 13 + 56 + Correspondence to: NDF From: Aunt Louie Thompson,October 29, 1928 + + + + + + 13 + 57 + Correspondence to: Mrs. W.H. Davis From: Gerty and Wilson Davis,November 7,15,25, 1928 + + + + + + 13 + 58 + Correspondence to: Mrs. W.H. Davis From: Harry E. Davis,November 2, 1928 + + + + + + 13 + 59 + Correspondence to: NDF From: Grace Carleton,November 8, 1928 + + + + + + 13 + 60 + Correspondence to: NDF From: Jennie Slack Cook,November 11, 1928 + + + + + + 13 + 61 + Correspondence to: NDF From: Mary MacDonald,November 19, 1928 + + + + + + 13 + 62 + Correspondence to: NDF From: Jennie Slack Cook,December 2, 1928 + + + + + + 13 + 63 + Correspondence to: NDF From: Aunt Lida Miller,December 2, 1928 + + + + + + 13 + 64 + Correspondence to: NDF From: Sadie,December 17, 1928 + + + + + + 13 + 65 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,December 18, 1928 + + + + + + 13 + 66 + Correspondence to: NDF From: Alice Corbett, Grandmother,December 19, 1928 + + + + + + 13 + 67 + Correspondence to: NDF From: Amy Ruff,December 19, 1928 + + + + + + 13 + 68 + Correspondence to: Theron Finley and Harry Finley From: Thelma R. Thompson,December 25, 1928 + + + + + + 13 + 69 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,January 6, 25, 1929 + + + + + + 13 + 70 + Correspondence to: NDF From: Lida J. Miller,January 3, 1929 + + + + + + 13 + 71 + Correspondence to: NDF From: Mrs. W. W. Corbett,January 3, 1929 + + + + + + 13 + 72 + Correspondence to: NDF From: Geraldine Gumbert,January 4, 1929 + + + + + + 13 + 73 + Correspondence to: Mrs. W. H. Davis From: Zoe and Harry Davis,January 8, 21, 28, 1929 + + + + + + 13 + 74 + Correspondence to: Harry Finley From: Earle Tweedie,January 10, 1929 + + + + + + 13 + 75 + Correspondence to: NDF From: Geraldine Gumbert,January 14, 1929 + + + + + + 13 + 76 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,January 14, 1929 + + + + + + 13 + 77 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,January 20, 1929 + + + + + + 13 + 78 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry E. Davis,February 4, 6, 11, 1929 + + + + + + 13 + 79 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry E. Davis,February 18, 1929 + + + + + + 13 + 80 + Correspondence to: NDF From: Grace Carleton,February 20, 1929 + + + + + + 13 + 81 + Correspondence to: Harry Finley From: Harry and Zoe Davis,March 1, 1929 + + + + + + 13 + 82 + Correspondence to: Mrs. W. H. Davis From: Harry E. Davis,March 4, 8, 11, 1929 + + + + + + 13 + 83 + Correspondence to: Mrs. W. H. Davis From: Harry E. Davis,March 21, 1929 + + + + + + 13 + 84 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,March 3, 10, 1929 + + + + + + 13 + 85 + Correspondence to: NDF From: Grace Carleton,March 8, 1929 + + + + + + 13 + 86 + Correspondence to: NDF From: Dianne H. Hobart,March 11, 1929 + + + + + + 13 + 87 + Correspondence to: Harry Finley From: Earle and Gertrude Tweedie,February 7, 1929 + + + + + + 13 + 88 + Correspondence to: Harry Finley From: Earle and Gertrude Tweedie,March 21, 1929 + + + + + + 13 + 89 + Correspondence to: NDF From: Dianne H. Hobart,April 1, 1929 + + + + + + 13 + 90 + Correspondence to: Mrs. W. H. Davis From: Harry And Zoe Davis,April 3, 8, 11, 1929 + + + + + + 13 + 91 + Correspondence to: NDF From: Grace Carleton,April 4, 1929 + + + + + + 13 + 92 + Correspondence to: NDF From: Mrs. George W. Stone,April 6, 1929 + + + + + + 13 + 93 + Correspondence to: Mrs. W. H. Davis From: Gerty and Wilson Davis,April 8, 1929 + + + + + + 13 + 94 + Correspondence to: NDF From: Dianne H. Hobart,April 20, 1929 + + + + + + 13 + 95 + Correspondence to: NDF From: Dianne H. Hobart,May 2, 1929 + + + + + + 13 + 96 + Correspondence to: NDF From: Jennie Slack Cook,April 21, 1929 + + + + + + 13 + 97 + Correspondence to: NDF From: Alice Stokoe,April 27, 1929 + + + + + + 13 + 98 + Correspondence to: NDF From: Dianne H. Hobart,May 27, 1929 + + + + + + 13 + 99 + Correspondence to: NDF From: Harry and Zoe Davis,May 28, 1929 + + + + + + 13 + 100 + Correspondence to: NDF From: Grace Carleton,June 5, 1929 + + + + + + 13 + 101 + Correspondence to: NDF From: Jennie Slack Cook,June 15, 1929 + + + + + + 13 + 102 + Correspondence to: NDF From: Grace Carleton,July 3, 1929 + + + + + + 13 + 103 + Correspondence to: NDF From: June F. Thompson,August 8, 1929 + + + + + + 13 + 104 + Correspondence to: NDF From: Lida Miller,August 22, 1929 + + + + + + 13 + 105 + Correspondence to: NDF From: Mr. and Mrs. J. W. Peckham,September 17, 1929 + + + + + + 13 + 106 + Correspondence to: NDF From: Anna, Art,September 24, 1929 + + + + + + 13 + 107 + Correspondence to: NDF From: Gerty and Wilson Davis,September 24, 26, 1929 + + + + + + 13 + 108 + Correspondence to: NDF From: Margaret Dane,November 18, 1929 + + + + + + 13 + 109 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry and Zoe Davis,November 26, 1929 + + + + + + 13 + 110 + Correspondence to: NDF From: Belle Pratt,December 6, 1929 + + + + + + 13 + 111 + Correspondence to: NDF From: W. C. Harton,December 9, 1929 + + + + + + 13 + 112 + Correspondence to: NDF From: Jennie Slack Cook, Martha,November 10, 1929 + + + + + + 13 + 113 + Correspondence to: NDF From: Jennie Slack Cook, Martha,December 15, 1929 + + + + + + 13 + 114 + Correspondence to: NDF From: Harry and Zoe Davis,December 15, 1929 + + + + + + 13 + 115 + Correspondence to: Mr. W. H. Davis From: Mrs. George W. Stone,December 18, 1929 + + + + + + 13 + 116 + Correspondence to: NDF From: Geraldine Gumbert,December 30, 1929 + + + + + + 13 + 117 + Correspondence to: NDF From: Sadie,January 26, 1930 + + + + + + 13 + 118 + Correspondence to: NDF From: Jennie Slack Cook,February 17-18, 1930 + + + + + + 13 + 119 + Correspondence to: NDF From: W. C. Harton,February 22, 1930 + + + + + + 13 + 120 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,March 6, 193u + + + + + + 13 + 121 + Correspondence to: NDF From: M. Crittenden,March 14, 1930 + + + + + + 13 + 122 + Correspondence to: NDF From: Harry and Zoe Davis,March 21, 23, 193u + + + + + + 13 + 123 + Correspondence to: NDF From: D. A. Garfield, Albion State Bank,March 22, 1930 + + + + + + 13 + 124 + Correspondence to: W. H. Davis From: Fred and Rose McMurtrie,April 3, 1930 + + + + + + 13 + 125 + Correspondence to: NDF From: Harry and Zoe Davis,April 11, 193u + + + + + + 13 + 126 + Correspondence to: NDF From: W. C. Harton,April 15, 1930 + + + + + + 13 + 127 + Correspondence to: NDF From: Michigan Mutual Hail Insurance Company,June 17, 1930 + + + + + + 13 + 128 + Correspondence to: Mr. and Mrs. W. H. Davis From: Marydena Davis,July 24, 1930 + + + + + + 13 + 129 + Correspondence to: NDF From: Mr. and Mrs. Harry E. Davis,July 19, 1930 + + + + + + 13 + 130 + Correspondence to: NDF From: Anna, Norvin, Alice,August 6, 1930 + + + + + + 13 + 131 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,August 14, 1930 + + + + + + 13 + 132 + Correspondence to: W. H. Davis From: Fred, Rose, and Robert McMurtrie,August 11, 1930 + + + + + + 13 + 133 + Correspondence to: Mrs. W. H. Davis From: Gerty, Wilson, and Marydena Davis,August 30, 1930 + + + + + + 13 + 134 + Correspondence to: NDF From: Pruda Wise,September 24, 1930 + + + + + + 13 + 135 + Correspondence to: Mrs. W. H. Davis From: Harry E. Davis,November 21, 1930 + + + + + + 13 + 136 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,December 2, 9, 16, 1930 + + + + + + 13 + 137 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,December 30, 1930 + + + + + + 13 + 138 + Correspondence to: NDF From: Sylvia M. Eaton,December 22, 1930 + + + + + + 13 + 139 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,January 20, 27, 1931 + + + + + + 13 + 140 + Correspondence to: NDF From: Earle and Gertrude Tweedie,January 11, 1931 + + + + + + 13 + 141 + Correspondence to: NDF From: Geraldine Gumbert,January 16, 1931 + + + + + + 13 + 142 + Correspondence to: Mrs. W. H. Davis From: Gerty, Wilson, and Marydena Davis,January 23, 1931 + + + + + + 13 + 143 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,February 9, 1931 + + + + + + 13 + 144 + Correspondence to: NDF From: Grace Carleton,February 28, 1931 + + + + + + 13 + 145 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,March 2, 11, 1931 + + + + + + 13 + 146 + Correspondence to: Mrs. W. H. Davis From: Gerty, Wilson, and Marydena Davis,March 16, 1931 + + + + + + 13 + 147 + Correspondence to: NDF From: Daniel E. Hoag,March 16, 1931 + + + + + + 13 + 148 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,March 31, 1931 + + + + + + 13 + 149 + Correspondence to: NDF From: Fred and Rose McMurtrie,April 10, 1931 + + + + + + 13 + 150 + Correspondence to: NDF From: Alice,April 12, 14, 1931 + + + + + + 13 + 151 + Correspondence to: Mrs. W. H. Davis From: Gerty Davis,May 8, 1931 + + + + + + 13 + 152 + Correspondence to: Mrs. W. H. Davis From: Harry Davis,May 18, 1931 + + + + + + 13 + 153 + Correspondence to: NDF From: Jennie Slack Cook,May 31, 1931 + + + + + + 13 + 154 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,June 5, 15, 24, 1931 + + + + + + 13 + 155 + Correspondence to: NDF From: Guardian Trust Company,February 16, 1931 + + + + + + 13 + 156 + Correspondence to: NDF From: Guardian Trust Company,March 3, 1931 + + + + + + 13 + 157 + Correspondence to: NDF From: Guardian Trust Company,July 1, 1925 + + + + + + 13 + 158 + Correspondence to: NDF From: Guardian Trust Company,June 12, 1931 + + + + + + 13 + 159 + Correspondence to: W. H. Davis From: Gerty and Wilson Davis,June 18, 1931 + + + + + + 13 + 160 + Correspondence to: Mrs. W. H. Davis From: Fred, Rose, and Robert McMurtrie,July 16, 1931 + + + + + + 13 + 161 + Correspondence to: NDF From: Sarah Greenman,July 30, 1931 + + + + + + 13 + 162 + Correspondence to: NDF From: Fred McMurtrie,August 3, 1931 + + + + + + 13 + 163 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,August 24, 1931 + + + + + + 13 + 164 + Correspondence to: Mrs. W. H. Davis From: Gerty, Wilson, and Marydena Davis,August 24, 1931 + + + + + + 13 + 165 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,September 9, 16, 1931 + + + + + + 13 + 166 + Correspondence to: NDF From: Jennie Slack Cook,September 6, 1931 + + + + + + 13 + 167 + Correspondence to: NDF From: Alice,September 7, 1931 + + + + + + 13 + 168 + Correspondence to: NDF From: Grace Carleton,September 15, 1931 + + + + + + 13 + 169 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,October 8, 13, 23, 1931 + + + + + + 13 + 170 + Correspondence to: NDF From: Lida Miller,October 4, 1931 + + + + + + 13 + 171 + Correspondence to: NDF From: Grace Carleton,October 4, 1931 + + + + + + 13 + 172 + Correspondence to: Mrs. W. H. Davis From: Gerty, Wilson, and Marydena Davis,October 9, 1931 + + + + + + 13 + 173 + Correspondence to: NDF From: Mr. George W. Stone,October 19, 1931 + + + + + + 13 + 174 + Correspondence to: Mrs. W. H. Davis From: Gerty Davis,November 3, 1931 + + + + + + 13 + 175 + Correspondence to: NDF From: Ethel L. Stone,November 17, 1931 + + + + + + 13 + 176 + Correspondence to: NDF From: Laverne and Ethel Stone,November 27, 1931 + + + + + + 13 + 177 + Correspondence to: W. H. Davis From: Harry E. Davis,November 27, 1931 + + + + + + 13 + 178 + Correspondence to: NDF From: Elva Kreninck,December 4, 1931 + + + + + + 13 + 179 + Correspondence to: NDF From: Lida Miller,December 11, 1931 + + + + + + 13 + 180 + Correspondence to: NDF From: Ethel Stone,December 11, 1931 + + + + + + 13 + 181 + Correspondence to: NDF From: Geraldine Gumbert,December 13, 1931 + + + + + + 13 + 182 + Correspondence to: Theron W. Finley From: Zoe Davis,December 15, 1931 + + + + + + 13 + 183 + Correspondence to: NDF From: Gerty Davis,December 18, 1931 + + + + + + 13 + 184 + Correspondence to: NDF From: Sylvia M. Eaton,December 20, 1931 + + + + + + 13 + 185 + Correspondence to: NDF From: Mary Jane,December 21, 1931 + + + + + + 13 + 186 + Correspondence to: NDF From: Maud Egrill,December 24, 1931 + + + + + + 13 + 187 + Correspondence to: Mr. and Mrs. W. H. Davis From: Gertie and Henry Palmer,December 29, 1931 + + + + + + 13 + 188 + Correspondence to: NDF From: Alice B. Corbett,December 31, 1931 + + + + + + 13 + 189 + Correspondence to: Mrs. W. H. Davis From: Wilson, Gerty, and Marydena Davis,[no month, day], 1932 + + + + + + 13 + 190 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,January 22, 25, 1932 + + + + + + 13 + 191 + Correspondence to: Mrs. W. H. Davis From: Sadie and Bertie McMurtrie,January 3, 1932 + + + + + + 13 + 192 + Correspondence to: NDF From: Fred, Rose, and Robert McMurtrie,January 3, 1932 + + + + + + 13 + 193 + Correspondence to: NDF From: Thelma, includes a photograph,January 10, 1932 + + + + + + 13 + 194 + Correspondence to: NDF From: Howard C. Prine,January 11, 1932 + + + + + + 13 + 195 + Correspondence to: NDF From: Flossie Foster,January 25, 1932 + + + + + + 13 + 196 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry and Zoe Davis,February 1, 10, 1932 + + + + + + 13 + 197 + Correspondence to: NDF From: Miss Marian Turk,February 3, 1932 + + + + + + 13 + 198 + Correspondence to: NDF From: Mrs. Meda Burgess,February 14, 1932 + + + + + + 13 + 199 + Correspondence to: NDF From: Michigan Mutual Savings Association,February 12, 1932 + + + + + + 13 + 200 + Correspondence to: NDF From: Ethel Stone,February 15, 1932 + + + + + + 13 + 201 + Correspondence to: NDF From: Wilson, Gerty, and Marydena Davis,February 23, 1932 + + + + + + 13 + 202 + Correspondence to: NDF From: Ethel Stone,March 2, 1932 + + + + + + 13 + 203 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,March 4, 1932 + + + + + + 13 + 204 + Correspondence to: NDF From: Dova,March 6, 1932 + + + + + + 13 + 205 + Correspondence to: Mrs. W. H. Davis From: Gerty, Wilson, and Marydena Davis,March 13, 1932 + + + + + + 13 + 206 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry and Zoe Davis,March 14, 1932 + + + + + + 13 + 207 + Correspondence to: W. H. Davis From: Springport Chapter Order of the Eastern Star,March 17, 1932 + + + + + + 13 + 208 + Correspondence to: NDF From: Nina L. Parks,March 17, 1932 + + + + + + 13 + 209 + Correspondence to: NDF From: Jennie Slack Cook,April 3, 1932 + + + + + + 13 + 210 + Correspondence to: NDF From: Fred McMurtrie,April 5, 1932 + + + + + + 13 + 211 + Correspondence to: Mrs. W. H. Davis From: Harry E. Davis,April 21, 1932 + + + + + + 13 + 212 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,April 26, 1932 + + + + + + 13 + 213 + Correspondence to: NDF From: Jennie Slack Cook,May 10, 1932 + + + + + + 13 + 214 + Correspondence to: NDF From: Ethel Stone,May 12, 1932 + + + + + + 13 + 215 + Correspondence to: Mrs. W. H. Davis From: Zoe Davis,May 18, 1932 + + + + + + 13 + 216 + Correspondence to: NDF From: Grace,May 22, 1932 + + + + + + 13 + 217 + Correspondence to: NDF From: Zoe Thatcher,May 24, 1932 + + + + + + 13 + 218 + Correspondence to: NDF From: Aunt Louie Thompson,May 26, 1932 + + + + + + 13 + 219 + Correspondence to: Mrs. W. H. Davis From: Harry and Zoe Davis,May 31, 1932 + + + + + + 13 + 220 + Correspondence to: NDF From: Sylvia,June 24, 27, 1932 + + + + + + 13 + 221 + Correspondence to: NDF From: Aunt Louie Thompson,June 2, 1932 + + + + + + 13 + 222 + Correspondence to: NDF From: Alice,June 2, 1932, undated + + + + + + 13 + 223 + Correspondence to: NDF From: Robert E. Brown, includes report card,June 8, 1932 + + + + + + 13 + 224 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry E. Davis,June 8, 1932 + + + + + + 13 + 225 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry and Zoe Davis,June 14, 1932 + + + + + + 13 + 226 + Correspondence to: NDF From: Gertie and Henry Palmer,June 19, 1932 + + + + + + 13 + 227 + Correspondence to: NDF From: Grandma and Grandpa,July 14, 18, 1932 + + + + + + 13 + 228 + Correspondence to: NDF From: Earl,July 3, 1932 + + + + + + 13 + 229 + Correspondence to: NDF From: Jennie Slack Cook,July 6, 1932 + + + + + + 13 + 230 + Correspondence to: NDF From: Harry E. Davis,July 12, 1932 + + + + + + 13 + 231 + Correspondence to: NDF From: Gertie Palmer,July 12, 1932 + + + + + + 13 + 232 + Correspondence to: NDF From: Zoe Davis,July 18, 1932 + + + + + + 13 + 233 + Correspondence to: NDF From: Mama and Papa,July 26, 1932 + + + + + + 13 + 234 + Correspondence to: NDF From: Sylvia,July 28, 1932 + + + + + + 13 + 235 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry, Zoe, and Zoe Davis,August 9, 17, 1932 + + + + + + 13 + 236 + Correspondence to: NDF From: Ethel Stone,August 5, 1932 + + + + + + 13 + 237 + Correspondence to: NDF From: Gerty, Wilson, and Marydena Davis,August 9, 1932 + + + + + + 13 + 238 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry and Zoe Davis,September 9, 17, 1932 + + + + + + 13 + 239 + Correspondence to: NDF From: Auntie Lida Miller,September 13, 1932 + + + + + + 13 + 240 + Correspondence to: NDF From: Sylvia,September 25, 1932 + + + + + + 13 + 241 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry and Zoe Davis,October 11, 1932 + + + + + + 13 + 242 + Correspondence to: NDF From: Harry and Zoe Davis,October 26, 1932 + + + + + + 13 + 243 + Correspondence to: NDF From: Theron W. Finley,November 2, 9, 18, 1932 + + + + + + 13 + 244 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry and Zoe Davis,November 1, 1932 + + + + + + 13 + 245 + Correspondence to: NDF From: Flossie,November 5, 1932 + + + + + + 13 + 246 + Correspondence to: NDF From: Fred and Rose McMurtrie,November 9, 1932 + + + + + + 13 + 247 + Correspondence to: NDF From: Sylvia,November 27, 1932 + + + + + + 13 + 248 + Correspondence to: NDF From: Theron W. Finley,December 1, 14, 1932 + + + + + + 13 + 249 + Correspondence to: Mr. and Mrs. W. H. Davis From: Fred and Rose McMurtrie,December 22, 1932 + + + + + + 13 + 250 + Correspondence to: NDF From: Gertie Palmer,December 5, 1932 + + + + + + 13 + 251 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry and Zoe Davis,December 5, 1932 + + + + + + 13 + 252 + Correspondence to: NDF From: Montgomery Ward and Company,December 9, 1932 + + + + + + 13 + 253 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry and Zoe Davis,December 14, 1932 + + + + + + 13 + 254 + Correspondence to: NDF From: May L. Garson,December 19, 1932 + + + + + + 13 + 255 + Correspondence to: NDF From: Alta Finley,December 20, 1932 + + + + + + 13 + 256 + Correspondence to: NDF From: Grace Carleton,December 22, 1932 + + + + + + 13 + 257 + Correspondence to: NDF From: Ruth Kimble,December 23, 1932 + + + + + + 13 + 258 + Correspondence to: NDF From: Meda Burgess,December 25, 1932 + + + + + + 13 + 259 + Correspondence to: NDF From: Flossie,December 27, 1932 + + + + + + 13 + 260 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry and Zoe Davis,December 28, 1932 + + + + + + 14 + 1 + Correspondence to: Harry E. Davis From: Robert Blair,December 20, 1935 + + + + + + 14 + 2 + Correspondence to: W. H. Davis, NDF From: Harry, Zoe, and Zoe Davis,January 15, 30, 1936 + + + + + + 14 + 3 + Correspondence to: Theron W. Finley From: Celia,January 9, 16, 1936 + + + + + + 14 + 4 + Correspondence to: NDF From: Harry C. Finley,January 11, 19, 1936 + + + + + + 14 + 5 + Correspondence to: Harry C. Finley From: Mother (NDF),January 1, 13, 1936 + + + + + + 14 + 6 + Correspondence to: Theron W. Finley From: Mother (NDF),January 6, 13, 1936 + + + + + + 14 + 7 + Correspondence to: Harry C. Finley From: Gerty, Wilson, and Marydena Davis,January 2, 1936 + + + + + + 14 + 8 + Correspondence to: NDF From: Harry C. Finley,January 3, 1936 + + + + + + 14 + 9 + Correspondence to: Theron W. Finley From: D. E. Cramton,January 6, 1936 + + + + + + 14 + 10 + Correspondence to: NDF From: Theron W. Finley,January 21, 1936 + + + + + + 14 + 11 + Correspondence to: NDF, Grandpa (W. H. Davis) From: Gerty Davis,January 24, 1936 + + + + + + 14 + 12 + Correspondence to: Theron W. Finley From: NDF,January 30, 1936 + + + + + + 14 + 13 + Correspondence to: Harry C. Finley From: Grandpa (W. H. Davis), Mother (NDF),January 22, 31, 1936 + + + + + + 14 + 14 + Correspondence to: Harry C. Finley From: NDF,February 14, 21, 1936 + + + + + + 14 + 15 + Correspondence to: NDF From: Harry C. Finley,February 5, 9, 15, 26, 1936 + + + + + + 14 + 16 + Correspondence to: Theron W. Finley From: Celia,February 12, 25, 1936 + + + + + + 14 + 17 + Correspondence to: Harry C. Finley From: Mildred,February 8, 20, 1936 + + + + + + 14 + 18 + Correspondence to: Harry C. Finley From: Grandpa (W. H. Davis), Mother (NDF),February 7, 1936 + + + + + + 14 + 19 + Correspondence to: NDF From: Flossie Foster,February 14, 1936 + + + + + + 14 + 20 + Correspondence to: Harry C. Finley From: Aunt Louie Thompson,February 14, 1936 + + + + + + 14 + 21 + Correspondence to: Theron W. Finley From: NDF,February 15, 1936 + + + + + + 14 + 22 + Correspondence to: W. H. Davis, NDF From: Zoe Davis,February 17, 1936 + + + + + + 14 + 23 + Correspondence to: NDF From: Theron W. Finley,February 20, 1936 + + + + + + 14 + 24 + Correspondence to: Harry C. Finley From: Harry and Zoe Davis,February 21, 1936 + + + + + + 14 + 25 + Correspondence to: NDF From: Alta Yoder,February 23, 1936 + + + + + + 14 + 26 + Correspondence to: NDF From: Wilson and Gerty Davis,March 1, 22, 1936 + + + + + + 14 + 27 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,March 10, 23, 1936 + + + + + + 14 + 28 + Correspondence to: Theron W. Finley From: Celia,March 11, 29, 1936 + + + + + + 14 + 29 + Correspondence to: NDF From: Rose and Fred McMurtrie,March 10, 1936 + + + + + + 14 + 30 + Correspondence to: NDF From: Alice Gault,March 10, 1936 + + + + + + 14 + 31 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,April 17, 2u, 1936 + + + + + + 14 + 32 + Correspondence to: Theron W. Finley From: Celia,April 12, 1936 + + + + + + 14 + 33 + Correspondence to: NDF, Grandpa (W. H. Davis) From: Harry C. Finley,April 17, 1936 + + + + + + 14 + 34 + Correspondence to: NDF From: Gerty Davis,April 23, 1936 + + + + + + 14 + 35 + Correspondence to: W. H. Davis From: Harry E. Davis,May 8, 26, 1936 + + + + + + 14 + 36 + Correspondence to: NDF From: Harry C. Finley,May 18, 25, 1936 + + + + + + 14 + 37 + Correspondence to: Theron W. Finley From: Celia,May 17, 1936 + + + + + + 14 + 38 + Correspondence to: NDF From: Gerty Davis,May 20, 1936 + + + + + + 14 + 39 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,June 2, 14, 30, 1936 + + + + + + 14 + 40 + Correspondence to: NDF From: Harry C. Finley,June 1, 20, 1936 + + + + + + 14 + 41 + Correspondence to: NDF From: Harry C. Finley,July 1, 11, 23, 1936 + + + + + + 14 + 42 + Correspondence to: NDF From: Flossie Foster,July 18, 1936 + + + + + + 14 + 43 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,July 23, 1936 + + + + + + 14 + 44 + Correspondence to: NDF From: Wilson and Gerty Davis,July 19, 30, 1936 + + + + + + 14 + 45 + Correspondence to: NDF From: Harry and Zoe Davis,August 11, 26, 1936 + + + + + + 14 + 46 + Correspondence to: NDF From: Harry C. Finley,August 7, 22, 29, 1936 + + + + + + 14 + 47 + Correspondence to: NDF From: Auntie Miller,August 9, 1936 + + + + + + 14 + 48 + Correspondence to: NDF From: Aunt Louie Thompson,August 12, 1936 + + + + + + 14 + 49 + Correspondence to: Harry C. Finley From: Mother (NDF),August 14, 1936 + + + + + + 14 + 50 + Correspondence to: NDF From: Harry C. Finley,September 2,23,25, 1936 + + + + + + 14 + 51 + Correspondence to: NDF From: Harry C. Finley,September 29-30, 1936 + + + + + + 14 + 52 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,September 9, 24, 1936 + + + + + + 14 + 53 + Correspondence to: NDF From: Geraldine Gumbert,September 3, 1936 + + + + + + 14 + 54 + Correspondence to: NDF From: Meda Burgess,September 8, 1936 + + + + + + 14 + 55 + Correspondence to: NDF From: Harry and Zoe Davis,September 17, 1936 + + + + + + 14 + 56 + Correspondence to: NDF From: Gerty Davis,September 24, 1936 + + + + + + 14 + 57 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,October 17, 26, 1936 + + + + + + 14 + 58 + Correspondence to: W. H. Davis, NDF From: Harry C. Finley, Gerty and Wilson Davis,October 4-5, 1936 + + + + + + 14 + 59 + Correspondence to: W. H. Davis, NDF, T. W. Finley From: Harry C. Finley,October 12, 1936 + + + + + + 14 + 60 + Correspondence to: NDF From: Gerty Davis,October 15, 1936 + + + + + + 14 + 61 + Correspondence to: NDF From: Aunt Louie Thompson,October 24, 1936 + + + + + + 14 + 61 + Correspondence to: Harry C. Finley From: NDF,November 5, 1936 + + + + + + 14 + 62 + Correspondence to: NDF From: Harry C. Finley,November 5, 1936 + + + + + + 14 + 63 + Correspondence to: NDF From: Aunt Louie Thompson,November 6, 1936 + + + + + + 14 + 64 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,November 16, 1936 + + + + + + 14 + 65 + Correspondence to: NDF From: Gerty Davis,November 17, 1936 + + + + + + 14 + 66 + Correspondence to: NDF From: Harry C. Finley,November 18, 1936 + + + + + + 14 + 67 + Correspondence to: Harry C. Finley From: Harry Cole,December 2, 29, 1936 + + + + + + 14 + 68 + Correspondence to: Harry C. Finley From: NDF,December 1, 14, 23, 1936 + + + + + + 14 + 69 + Correspondence to: Harry C. Finley From: NDF,December 28, 1936 + + + + + + 14 + 70 + Correspondence to: NDF From: Theron W. Finley,December 11-12, 15, 1936 + + + + + + 14 + 71 + Correspondence to: NDF From: Theron W. Finley,December 22, 29, 1936 + + + + + + 14 + 72 + Correspondence to: NDF From: Gerty Davis,December 14, 1936 + + + + + + 14 + 73 + Correspondence to: NDF From: Harry C. Finley,December 13, 24, 1936 + + + + + + 14 + 74 + Correspondence to: NDF From: Gerty Davis,December 5, 1936 + + + + + + 14 + 75 + Correspondence to: NDF From: Harry and Zoe Davis,December 15, 1936 + + + + + + 14 + 76 + Correspondence to: NDF From: Aunt Louie Thompson,December 17, 1936 + + + + + + 14 + 77 + Correspondence to: NDF From: Edna,December 22, 1936 + + + + + + 14 + 78 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,December 30, 1936 + + + + + + 14 + 79 + Correspondence to: Harry C. Finley From: Underwood Elliott Fisher Company,December 31, 1936 + + + + + + 14 + 80 + Correspondence to: NDF From: Gerty Davis,May 20, 1936 + + + + + + 14 + 81 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,June 2, 14, 30, 1936 + + + + + + 14 + 82 + Correspondence to: NDF From: Harry C. Finley,June 1, 20, 1936 + + + + + + 14 + 83 + Correspondence to: NDF From: Harry C. Finley,July 1, 11, 23, 1936 + + + + + + 14 + 84 + Correspondence to: NDF From: Flossie Foster,July 18, 1936 + + + + + + 14 + 85 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,July 23, 1936 + + + + + + 14 + 86 + Correspondence to: NDF From: Wilson and Gerty Davis,July 19, 30, 1936 + + + + + + 14 + 87 + Correspondence to: NDF From: Harry and Zoe Davis,August 11, 26, 1936 + + + + + + 14 + 88 + Correspondence to: NDF From: Harry C. Finley,August 7, 22, 29, 1936 + + + + + + 14 + 89 + Correspondence to: NDF From: Auntie Miller,August 9, 1936 + + + + + + 14 + 90 + Correspondence to: NDF From: Aunt Louie Thompson,August 12, 1936 + + + + + + 14 + 91 + Correspondence to: Harry C. Finley From: Mother (NDF),August 14, 1936 + + + + + + 14 + 92 + Correspondence to: NDF From: Harry C. Finley,September 2, 23, 25, 1936 + + + + + + 14 + 93 + Correspondence to: NDF From: Harry C. Finley,September 29-30, 1936 + + + + + + 14 + 94 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,September 9, 24, 1936 + + + + + + 14 + 95 + Correspondence to: NDF From: Geraldine Gumbert,September 3, 1936 + + + + + + 14 + 96 + Correspondence to: NDF From: Meda Burgess,September 8, 1936 + + + + + + 14 + 97 + Correspondence to: NDF From: Harry and Zoe Davis,September 17, 1936 + + + + + + 14 + 98 + Correspondence to: NDF From: Gerty Davis,September 24, 1936 + + + + + + 14 + 99 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,October 17, 26, 1936 + + + + + + 14 + 100 + Correspondence to: W. H. Davis, NDF From: Harry C. Finley, Gerty and Wilson Davis,October 4-5, 1936 + + + + + + 14 + 101 + Correspondence to: W. H. Davis, NDF, T. W. Finley From: Harry C. Finley,October 12, 1936 + + + + + + 14 + 102 + Correspondence to: NDF From: Gerty Davis,October 15, 1936 + + + + + + 14 + 103 + Correspondence to: NDF From: Aunt Louie Thompson,October 24, 1936 + + + + + + 14 + 104 + Correspondence to: Harry C. Finley From: NDF,November 5, 1936 + + + + + + 14 + 105 + Correspondence to: NDF From: Harry C. Finley,November 5, 1936 + + + + + + 14 + 106 + Correspondence to: NDF From: Aunt Louie Thompson,November 6, 1936 + + + + + + 14 + 107 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,November 16, 1936 + + + + + + 14 + 108 + Correspondence to: NDF From: Gerty Davis,November 17, 1936 + + + + + + 14 + 109 + Correspondence to: NDF From: Harry C. Finley,November 18, 1936 + + + + + + 14 + 110 + Correspondence to: Harry C. Finley From: Harry Cole,December 2, 29, 1936 + + + + + + 14 + 111 + Correspondence to: Harry C. Finley From: NDF,December 1, 14, 23, 1936 + + + + + + 14 + 112 + Correspondence to: Harry C. Finley From: NDF,December 28, 1936 + + + + + + 14 + 113 + Correspondence to: NDF From: Theron W. Finley,December 11-12, 15, 1936 + + + + + + 14 + 114 + Correspondence to: NDF From: Theron W. Finley,December 22, 29, 1936 + + + + + + 14 + 115 + Correspondence to: NDF From: Gerty Davis,December 14, 1936 + + + + + + 14 + 116 + Correspondence to: NDF From: Harry C. Finley,December 13, 24, 1936 + + + + + + 14 + 117 + Correspondence to: NDF From: Gerty Davis,December 5, 1936 + + + + + + 14 + 118 + Correspondence to: NDF From: Harry and Zoe Davis,December 15, 1936 + + + + + + 14 + 119 + Correspondence to: NDF From: Aunt Louie Thompson,December 17, 1936 + + + + + + 14 + 120 + Correspondence to: NDF From: Edna,December 22, 1936 + + + + + + 14 + 121 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,December 30, 1936 + + + + + + 14 + 122 + Correspondence to: Harry C. Finley From: Underwood Elliott Fisher Company,December 31, 1936 + + + + + + 14 + 123 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,January 23, 29, 1937 + + + + + + 14 + 124 + Correspondence to: NDF From: Harry C. Finley,January 10, 20, 1937 + + + + + + 14 + 125 + Correspondence to: Harry C. Finley From: W. H. Davis, NDF,January 4, 19, 1937 + + + + + + 14 + 126 + Correspondence to: W. H. Davis From: Harry C. Finley,January 4, 1937 + + + + + + 14 + 127 + Correspondence to: NDF From: Eleanor,January 4, 1937 + + + + + + 14 + 128 + Correspondence to: NDF From: Marine Recruiting,January 5, 1937 + + + + + + 14 + 129 + Correspondence to: NDF From: Theron W. Finley,January 13, 1937 + + + + + + 14 + 130 + Correspondence to: NDF From: Alice,January 14, 1937 + + + + + + 14 + 131 + Correspondence to: NDF From: Gerty Davis,January 17, 1937 + + + + + + 14 + 132 + Correspondence to: NDF From: Roy and Eva,January 11, 1937 + + + + + + 14 + 133 + Correspondence to: NDF From: Meda Burgess,January 17, 1937 + + + + + + 14 + 134 + Correspondence to: NDF From: Amy Ruff,January 17, 1937 + + + + + + 14 + 135 + Correspondence to: NDF From: Aunt Louie Thompson,January 18, 1937 + + + + + + 14 + 136 + Correspondence to: NDF From: Theron W. Finley,February 3, 1937 + + + + + + 14 + 137 + Correspondence to: NDF From: Harry and Zoe Davis,February 5, 1937 + + + + + + 14 + 138 + Correspondence to: NDF From: Grace Carleton,February 5, 1937 + + + + + + 14 + 139 + Correspondence to: W. H. Davis From: Harry C. Finley,February 8, 1937 + + + + + + 14 + 140 + Correspondence to: NDF From: Gerty Davis,February 9, 1937 + + + + + + 14 + 141 + Correspondence to: Harry C. Finley From: W. H. Davis, NDF,February 10, 1937 + + + + + + 14 + 142 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,February 16, 1937 + + + + + + 14 + 143 + Correspondence to: NDF From: Lois Lloyd,February 27, 1937 + + + + + + 14 + 144 + Correspondence to: NDF From: Opal,March 18, 1937 + + + + + + 14 + 145 + Correspondence to: NDF From: Harry C. Finley,March 19, 1937 + + + + + + 14 + 146 + Correspondence to: NDF From: Hercules Life Insurance Company,March 12, 1937 + + + + + + 14 + 147 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,March 25, 1937 + + + + + + 14 + 148 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,April 12, 1937 + + + + + + 14 + 149 + Correspondence to: Harry C. Finley From: Theron W. Finley,April 15, 1937 + + + + + + 14 + 150 + Correspondence to: NDF From: Amy Ruff,April 26, 1937 + + + + + + 14 + 151 + Correspondence to: Harry C. Finley From: Harry and Zoe Davis,May 3, 1937 + + + + + + 14 + 152 + Correspondence to: Harry C. Finley From: Earl,May 7, 1937 + + + + + + 14 + 153 + Correspondence to: NDF From: Gerty, Wilson, and Marydena Davis,May 16, 1937 + + + + + + 14 + 154 + Correspondence to: NDF From: Meda Burgess,May 16, 1937 + + + + + + 14 + 155 + Correspondence to: NDF From: Amy Ruff,May 20, 1937 + + + + + + 14 + 156 + Correspondence to: NDF From: Lucille Slade,May 22, 1937 + + + + + + 14 + 157 + Correspondence to: W. H. Davis From: William E. Beebe,June 5, 1937 + + + + + + 14 + 158 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,June 17-18, 1937 + + + + + + 14 + 159 + Correspondence to: NDF From: Gerty Davis,June 30, 1937 + + + + + + 14 + 160 + Correspondence to: NDF From: Theron W. Finley,July 7, 1937 + + + + + + 14 + 161 + Correspondence to: NDF From: Grace Carleton,July 20, 1937 + + + + + + 14 + 162 + Correspondence to: W. H. Davis From: Harry and Zoe Davis,July 13, 28, 1937 + + + + + + 14 + 163 + Correspondence to: NDF From: Amy Ruff,August 5, 1937 + + + + + + 14 + 164 + Correspondence to: NDF From: University of Michigan Archives,August 4, 1937 + + + + + + 14 + 165 + Correspondence to: NDF From: Harry and Zoe Davis,August 13, 1937 + + + + + + 14 + 166 + Correspondence to: NDF From: Theron W. Finley,August 19, 1937 + + + + + + 14 + 167 + Correspondence to: NDF From: The Davises (Gerty, Wilson, and Mary D.?),September 3, 1937 + + + + + + 14 + 168 + Correspondence to: NDF From: Gerty Davis,September 8, 1937 + + + + + + 14 + 169 + Correspondence to: NDF From: Jennie Slack Cook,September 12, 1937 + + + + + + 14 + 170 + Correspondence to: NDF From: Auntie Miller,September 19, 1937 + + + + + + 14 + 171 + Correspondence to: NDF From: Harry C. Finley,September 24, 26, 1937 + + + + + + 14 + 172 + Correspondence to: NDF From: Meda Burgess,September 27, 1937 + + + + + + 14 + 173 + Correspondence to: NDF From: Harry C. Finley,October 3, 8, 20, 1937 + + + + + + 14 + 174 + Correspondence to: NDF From: Harry C. Finley,October 27, 1937 + + + + + + 14 + 175 + Correspondence to: NDF From: Theron W. Finley,October 1, 18, 1937 + + + + + + 14 + 176 + Correspondence to: NDF From: Harry and Zoe Davis,October 6, 1937 + + + + + + 14 + 177 + Correspondence to: W. H. Davis, NDF From: Wilson and Gerty Davis,October 4, 1937 + + + + + + 14 + 178 + Correspondence to: W. H. Davis, NDF From: Harry and Zoe Davis,October ?, 16, 1937 + + + + + + 14 + 179 + Correspondence to: NDF, From: Aunt Louie Thompson,October 22, 16, 1937 + + + + + + 14 + 180 + Correspondence to: NDF From: L. G. Vandevelde, University of Michigan Archives,October 15, 1937 + + + + + + 14 + 181 + Correspondence to: NDF From: Jennie Slack Cook,October 28, 1937 + + + + + + 14 + 182 + Correspondence to: NDF From: Auntie Miller,November 8, 1937 + + + + + + 14 + 183 + Correspondence to: W. H. Davis, NDF From: Harry C. Finley,November 3, 10, 16, 1937 + + + + + + 14 + 184 + Correspondence to: NDF From: Gerty Davis,November 2, 19, 1937 + + + + + + 14 + 185 + Correspondence to: NDF From: Amy Ruff,November 4, 1937 + + + + + + 14 + 186 + Correspondence to: NDF From: Flossie Foster,November 6, 1937 + + + + + + 14 + 187 + Correspondence to: NDF From: Ruth Saxton,November 14, 1937 + + + + + + 14 + 188 + Correspondence to: NDF From: Zoe,[no month, no day], 1937 + + + + + + 14 + 189 + Correspondence to: NDF From: Aunt Louie Thompson,November 22, 1937 + + + + + + 14 + 190 + Correspondence to: NDF From: Meda Burgess,November 25, 1937 + + + + + + 14 + 191 + Correspondence to: NDF From: Lorraine,November 30, 1937 + + + + + + 14 + 192 + Correspondence to: NDF From: Gerty Davis,December 1, 1937 + + + + + + 14 + 193 + Correspondence to: W. H. Davis From: Harry C. Finley,December 1, 1937 + + + + + + 14 + 194 + Correspondence to: NDF From: Ara D. Sharp, M.D.,December 4, 1937 + + + + + + 14 + 195 + Correspondence to: NDF From: Harry D. Brown, University of Michigan Archives,December 7, 1937 + + + + + + 14 + 196 + Correspondence to: NDF From: Harry C. Finley,December 8, 1937 + + + + + + 14 + 197 + Correspondence to: NDF From: Zoe Davis,December 14, 1937 + + + + + + 14 + 198 + Correspondence to: NDF From: Edna "Ma" Honeywell,December 15, 1937 + + + + + + 14 + 199 + Correspondence to: NDF From: Amy Ruff,December 15, 1937 + + + + + + 14 + 200 + Correspondence to: NDF From: Aunt Louie Thompson,December 16, 23, 1937 + + + + + + 14 + 201 + Correspondence to: Folks All From: Rose and Fred McMurtrie,December 17, 1937 + + + + + + 14 + 202 + Correspondence to: NDF From: Mary Jane and Bernice Peckham,December 19, 1937 + + + + + + 14 + 203 + Correspondence to: NDF From: Flossie Foster,December 20, 1937 + + + + + + 14 + 204 + Correspondence to: NDF From: Grace Carleton,December 20, 1937 + + + + + + 14 + 205 + Correspondence to: NDF From: M. L. G.,December 21, 1937 + + + + + + 14 + 206 + Correspondence to: NDF From: Hazel,December 22, 1937 + + + + + + 14 + 207 + Correspondence to: NDF From: Alice,December 29, 1937 + + + + + + 14 + 208 + Correspondence to: NDF From: Jennie Slack Cook,December 29, 1937 + + + + + + 14 + 209 + Correspondence to: NDF From: Meda Burgess,January 1, 1938 + + + + + + 14 + 210 + Correspondence to: NDF From: Harry C. Finley,January 22, 1938 + + + + + + 14 + 211 + Correspondence to: NDF From: Kirkland, Fleming, Green, Martin and Ellis,January 10, 1938 + + + + + + 14 + 212 + Correspondence to: NDF From: Ruth Saxton, Zoe,January 24, 1938 + + + + + + 14 + 213 + Correspondence to: NDF From: Elmer Thompson,January 25, 1938 + + + + + + 14 + 214 + Correspondence to: NDF From: Auntie Lida Miller,January 27, 1938 + + + + + + 14 + 215 + Correspondence to: NDF From: Theron W. Finley,January 15, 1938 + + + + + + 14 + 216 + Correspondence to: W. H. Davis From: Harry C. Finley,January 15, 1938 + + + + + + 14 + 217 + Correspondence to: NDF From: Elmer Thompson,January 17, 1938 + + + + + + 14 + 218 + Correspondence to: NDF From: Zoe,January 17, 1938 + + + + + + 14 + 219 + Correspondence to: NDF From: Emmy (W. H. Davis' granddaughter),January 21, 1938 + + + + + + 14 + 220 + Correspondence to: NDF From: Harry C. Finley,February 13, 16, 20, 1938 + + + + + + 14 + 221 + Correspondence to: NDF From: Meda Burgess,February 6, 1938 + + + + + + 14 + 222 + Correspondence to: NDF From: Bertie and Sadie McMurtrie,February 6, 1938 + + + + + + 14 + 223 + Correspondence to: NDF From: Mr. and Mrs. G. K. McMurtrie,February 17, 1938 + + + + + + 14 + 224 + Correspondence to: NDF From: Myrtie,February 12, 1938 + + + + + + 14 + 225 + Correspondence to: NDF From: Zarita,February 24, 1938 + + + + + + 14 + 226 + Correspondence to: NDF From: Dorothy,February 1, 1938 + + + + + + 14 + 227 + Correspondence to: NDF From: Lucy,February 18, 1938 + + + + + + 14 + 228 + Correspondence to: NDF From: Flossie Foster,March 1, 1938 + + + + + + 14 + 229 + Correspondence to: NDF From: Hazel,March 7, 1938 + + + + + + 14 + 230 + Correspondence to: NDF From: Mary J. Peckham,March 7, 1938 + + + + + + 14 + 231 + Correspondence to: NDF From: Harry C. Finley,March 7, 1938 + + + + + + 14 + 232 + Correspondence to: NDF From: Gerty Davis,March 8, 1938 + + + + + + 14 + 233 + Correspondence to: Theron W. Finley From: Emmy,March 8, 1938 + + + + + + 14 + 234 + Correspondence to: NDF From: Carrie Hoag,March 16, 1938 + + + + + + 14 + 235 + Correspondence to: NDF From: Zoe,March 17, 1938 + + + + + + 14 + 236 + Correspondence to: NDF From: Grace Carleton,March 19, 1938 + + + + + + 14 + 237 + Correspondence to: NDF From: Ada Hammond,March 24, 1938 + + + + + + 14 + 238 + Correspondence to: NDF From: Lida Miller,March 27, 1938 + + + + + + 14 + 239 + Correspondence to: NDF From: Zoe,March 31, 1938 + + + + + + 14 + 240 + Correspondence to: NDF From: Meda Burgess,April 4, 1938 + + + + + + 14 + 241 + Correspondence to: W. H. Davis From: Harry C. Finley,April 4, 11, 18, 1938 + + + + + + 14 + 242 + Correspondence to: W. H. Davis From: Harry C. Finley,April 24, 1938 + + + + + + 14 + 243 + Correspondence to: NDF From: Theron W. Finley,April 13, 1938 + + + + + + 14 + 244 + Correspondence to: NDF From: Springport Signal,April 19, 1938 + + + + + + 14 + 245 + Correspondence to: NDF From: Gerty Davis,April 20, 1938 + + + + + + 14 + 246 + Correspondence to: NDF From: Harry and Zoe Davis,April 27, 1938 + + + + + + 14 + 247 + Correspondence to: NDF From: Harry and Zoe Davis,May 4, 22, 1938 + + + + + + 14 + 248 + Correspondence to: NDF, W. H. Davis From: Harry C. Finley,May 2, 8, 23, 30, 1938 + + + + + + 14 + 249 + Correspondence to: NDF From: Flossie Foster,May 12, 1938 + + + + + + 14 + 250 + Correspondence to: NDF From: Gerty Davis,May 9, 1938 + + + + + + 14 + 251 + Correspondence to: NDF From: Grace Carleton,May 15, 1938 + + + + + + 14 + 252 + Correspondence to: NDF From: Meda Burgess,May 15, 1938 + + + + + + 14 + 253 + Correspondence to: NDF From: Auntie Lida Miller,May 17, 1938 + + + + + + 14 + 254 + Correspondence to: W. H. Davis, NDF From: Harry and Zoe Davis,May 18, 1938 + + + + + + 14 + 255 + Correspondence to: Harry and Zoe Davis From: Theron W. Finley,May 20, 1938 + + + + + + 14 + 256 + Correspondence to: NDF, W. H. Davis From: Theron W. Finley,May 20, 1938 + + + + + + 14 + 257 + Correspondence to: NDF From: Jennie Slack Cook,May 27, 1938 + + + + + + 14 + 258 + Correspondence to: NDF From: Harry C. Finley,June 5, 12, 20, 1938 + + + + + + 14 + 259 + Correspondence to: NDF From: Harry C. Finley,June 27, 1938 + + + + + + 14 + 260 + Correspondence to: NDF From: Auntie Lida Miller,June 1, 1938 + + + + + + 14 + 261 + Correspondence to: NDF From: Harry and Zoe Davis,June 2, 14, 23, 1938 + + + + + + 14 + 262 + Correspondence to: NDF From: Theron W. Finley,June 20, 1938 + + + + + + 14 + 263 + Correspondence to: NDF From: Harry C. Finley,July 5, 10, 19, 1938 + + + + + + 14 + 264 + Correspondence to: NDF From: Harry C. Finley,July 27, 1938 + + + + + + 14 + 265 + Correspondence to: NDF From: Harry and Zoe Davis,July 6, 23, 26, 1938 + + + + + + 14 + 266 + Correspondence to: NDF From: Fred McMurtrie,July 7, 1938 + + + + + + 14 + 267 + Correspondence to: NDF From: Mary J. Peckham,July 13, 1938 + + + + + + 14 + 268 + Correspondence to: NDF From: Mrs. Lynn Olson,July 11, 1938 + + + + + + 14 + 269 + Correspondence to: NDF From: Gerty Davis,July 12, 1938 + + + + + + 14 + 270 + Correspondence to: NDF From: Sara,August 1, 1938 + + + + + + 14 + 271 + Correspondence to: NDF From: Gerty Davis,August 9, 16, 1938 + + + + + + 14 + 272 + Correspondence to: NDF From: Harry and Zoe Davis,August 11, 17, 25, 1938 + + + + + + 14 + 273 + Correspondence to: NDF From: Harry and Zoe Davis,August 31, 1938 + + + + + + 14 + 274 + Correspondence to: NDF From: Mina Wilder Atkins,August 2, 1938 + + + + + + 14 + 275 + Correspondence to: NDF From: Aunt Louie Thompson,August 5, 1938 + + + + + + 14 + 276 + Correspondence to: NDF From: Amy Ruff,August 7, 1938 + + + + + + 14 + 277 + Correspondence to: Harry C. Finley From: Michigan College of Mining and Technology,August 8, 1938 + + + + + + 14 + 278 + Correspondence to: NDF From: Gertrude Harrington,August 16, 1938 + + + + + + 14 + 279 + Correspondence to: Harry C. Finley From: Harold D. Cullum,August 18, 1938 + + + + + + 14 + 280 + Correspondence to: Harry C. Finley From: Carson,August 19, 1938 + + + + + + 14 + 281 + Correspondence to: NDF From: Theron W. Finley,August 28, 1938 + + + + + + 14 + 282 + Correspondence to: NDF From: Harry and Zoe Davis,September 8, 22, 1938 + + + + + + 14 + 283 + Correspondence to: Harry C. Finley From: Bob Steveling,September 16, 27, 1938 + + + + + + 14 + 284 + Correspondence to: NDF From: Jessie,September 1, 1938 + + + + + + 14 + 285 + Correspondence to: Harry C. Finley From: Alice, includes photograph,September 5, 1938 + + + + + + 14 + 286 + Correspondence to: NDF From: Maud E. Grill, Jackson County Library,September 6, 1938 + + + + + + 14 + 287 + Correspondence to: Harry C. Finley From: War Department, Regular Army Reserves,August 8, 14, 17, 25, 1938 + + + + + + 14 + 288 + Correspondence to: NDF From: Charles S. Crittenden,September 9, 1938 + + + + + + 14 + 289 + Correspondence to: NDF From: Frederick McMurtrie,September 14, 1938 + + + + + + 14 + 290 + Correspondence to: NDF From: Meda Burgess,September 15, 1938 + + + + + + 14 + 291 + Correspondence to: NDF From: Order of the Eastern Star,September 21, 1938 + + + + + + 14 + 292 + Correspondence to: NDF From: Aunt Louie Thompson,September 27, 1938 + + + + + + 14 + 293 + Correspondence to: NDF From: Dorothy,September 28, 1938 + + + + + + 14 + 294 + Correspondence to: NDF From: Auntie Lida Miller,October 2, 17, 1938 + + + + + + 14 + 295 + Correspondence to: NDF From: Zarita,October 13, 1938 + + + + + + 14 + 296 + Correspondence to: NDF From: Harry C. Finley,October 7, 16, 21, 1938 + + + + + + 14 + 297 + Correspondence to: NDF From: Harry C. Finley,October 30, 1938 + + + + + + 14 + 298 + Correspondence to: NDF From: Harry and Zoe Davis,October 11, 20, 25, 1938 + + + + + + 14 + 299 + Correspondence to: NDF From: Harry and Zoe Davis,October [no day], 1938 + + + + + + 14 + 300 + Correspondence to: NDF From: Mary Belle,October 24, 1938 + + + + + + 14 + 301 + Correspondence to: NDF From: Gerty and Wilson Davis,October 30, 1938 + + + + + + 14 + 302 + Correspondence to: NDF From: Aunt Louie Thompson,November 1, 1938 + + + + + + 14 + 303 + Correspondence to: NDF From: Dorothy Snider,November 2, 1938 + + + + + + 14 + 304 + Correspondence to: NDF From: Theron W. Finley,November 6, 1938 + + + + + + 14 + 305 + Correspondence to: NDF From: Harry C. Finley,November 6, 13, 29, 1938 + + + + + + 14 + 306 + Correspondence to: NDF From: Huberts Greenhouse,November 7, 1938 + + + + + + 14 + 307 + Correspondence to: NDF From: Gerty Davis,November 9, 12, 1938 + + + + + + 14 + 308 + Correspondence to: NDF From: Harry and Zoe Davis,November 10, 28, 1938 + + + + + + 14 + 309 + Correspondence to: NDF From: Fred and Rose McMurtrie,November 14, 1938 + + + + + + 14 + 310 + Correspondence to: NDF From: Zoe Thatcher,November 22, 1938 + + + + + + 14 + 311 + Correspondence to: NDF From: Meda Burgess,November 26, 1938 + + + + + + 14 + 312 + Correspondence to: NDF From: Jennie Slack Cook,November 27, 1938 + + + + + + 14 + 313 + Correspondence to: NDF From: Harry E. Davis,November 30, 1938 + + + + + + 14 + 314 + Correspondence to: NDF From: Harry and Zoe Davis,December 7, 12, 28, 1938 + + + + + + 14 + 315 + Correspondence to: NDF From: Auntie Lida Miller,December 9, 1938 + + + + + + 14 + 316 + Correspondence to: NDF From: "Ma" Honeywell,December 10, 1938 + + + + + + 14 + 317 + Correspondence to: Mrs. Louie Thompson From: Harry C. Finley,December 11, 1938 + + + + + + 14 + 318 + Correspondence to: NDF From: Zoe Thatcher,December 14, 1938 + + + + + + 14 + 319 + Correspondence to: NDF From: Amy Ruff,December 15, 1938 + + + + + + 14 + 320 + Correspondence to: NDF From: Lorraine, Peter, and Gayle Geuye?,December 15, 1938 + + + + + + 14 + 321 + Correspondence to: NDF From: Zoe Davis,December 15, 1938 + + + + + + 14 + 322 + Correspondence to: NDF From: Harry E. Davis,December 16, 1938 + + + + + + 14 + 323 + Correspondence to: NDF From: Mary Belle and Billy,December 17, 1938 + + + + + + 14 + 324 + Correspondence to: NDF From: Theron W. Finley,December 27, 1938 + + + + + + 14 + 325 + Correspondence to: NDF From: Flossie Foster,December 28, 1938 + + + + + + 14 + 326 + Correspondence to: Harry C. Finley From: Earl Fox,December 29, 1938 + + + + + + 15 + 1 + Correspondence to: NDF From: Meda Burgess,January 2, 27, 1939 + + + + + + 15 + 2 + Correspondence to: NDF From: Harry and Zoe Davis,January 5, 1939 + + + + + + 15 + 3 + Correspondence to: NDF From: Harry C. Finley,January 4, 15, 22, 1939 + + + + + + 15 + 4 + Correspondence to: NDF From: Gerty Davis,January 15, 1939 + + + + + + 15 + 5 + Correspondence to: NDF From: Alice Gault,January 17, 1939 + + + + + + 15 + 6 + Correspondence to: W. H. Davis From: Theron W. Finley,January 22, 1939 + + + + + + 15 + 7 + Correspondence to: Aunt Louie Thompson From: Harry C. Finley,January 29, 1939 + + + + + + 15 + 8 + Correspondence to: NDF From: Auntie Miller,January 29, 1939 + + + + + + 15 + 9 + Correspondence to: NDF From: Harry and Zoe Davis,February 2, 8, 23, 1939 + + + + + + 15 + 10 + Correspondence to: NDF From: Harry C. Finley,February 6, 14, 19, 1939 + + + + + + 15 + 11 + Correspondence to: NDF From: Harry C. Finley,February 27, 1939 + + + + + + 15 + 12 + Correspondence to: NDF From: Gerty Davis,February 1, 1939 + + + + + + 15 + 13 + Correspondence to: NDF From: Thelma,February 6, 1939 + + + + + + 15 + 14 + Correspondence to: NDF From: Fred and Rose McMurtrie,February 19, 28, 1939 + + + + + + 15 + 15 + Correspondence to: NDF From: L. Olmsted,February 27, 1939 + + + + + + 15 + 16 + Correspondence to: NDF From: Gertie (Palmer?),February 27, 1939 + + + + + + 15 + 17 + Correspondence to: NDF From: Geraldine and Harold Gumbert,February 28, 1939 + + + + + + 15 + 18 + Correspondence to: NDF From: Theron W. Finley,March 5-6, 12, 22, 1939 + + + + + + 15 + 19 + Correspondence to: NDF From: Theron W. Finley,March 26, 1939 + + + + + + 15 + 20 + Correspondence to: NDF From: Harry C. Finley,March 5, 12, 28, 1939 + + + + + + 15 + 21 + Correspondence to: NDF From: Mary J. and Bernice Peckham,March 2, 1939 + + + + + + 15 + 22 + Correspondence to: NDF, Aunt Louie Thompson From: Zoe Davis,March 14, 1939 + + + + + + 15 + 23 + Correspondence to: Uncle Harry and Aunt Zoe Davis From: Theron W. Finley,March 5, 1939 + + + + + + 15 + 24 + Correspondence to: NDF From: Meda Burgess,March 5, 1939 + + + + + + 15 + 25 + Correspondence to: NDF From: Gerty, Marydena, and Wilson Davis,February 28, March 5, 1939 + + + + + + 15 + 26 + Correspondence to: NDF From: Matie and Jud, Mrs. Perry,March 6, 1939 + + + + + + 15 + 27 + Correspondence to: NDF From: Harry and Zoe Davis,March 2, 7-8, 1939 + + + + + + 15 + 2289 + Correspondence to: NDF From: Sarah Greenman,March 8, 1939 + + + + + + 15 + 29 + Correspondence to: NDF From: Narcorosie,March 8, 1939 + + + + + + 15 + 30 + Correspondence to: NDF From: Narcorosie,March 8, 1939 + + + + + + 15 + 31 + Correspondence to: NDF From: Bertha Thompson,March 13, 1939 + + + + + + 15 + 32 + Correspondence to: NDF From: H. S. Don Carlos,March 13, 1939 + + + + + + 15 + 33 + Correspondence to: NDF From: Auntie Miller,March 19, 1939 + + + + + + 15 + 34 + Correspondence to: NDF From: Grace Waterman,March 20, 1939 + + + + + + 15 + 35 + Correspondence to: NDF From: Louisa Wheeler,March 21, 1939 + + + + + + 15 + 36 + Correspondence to: NDF From: Flossie Foster,March 24, 1939 + + + + + + 15 + 37 + Correspondence to: NDF From: Alice Gault,March 27, 1939 + + + + + + 15 + 38 + Correspondence to: NDF From: Ethel,March 31, 1939 + + + + + + 15 + 39 + Correspondence to: NDF From: Harry and Zoe Davis,March 17 and April 11, 1939 + + + + + + 15 + 40 + Correspondence to: NDF From: Harry and Zoe Davis,April 21, 1939 + + + + + + 15 + 41 + Correspondence to: NDF From: Gerty Davis,April 7, 20, 25, 1939 + + + + + + 15 + 42 + Correspondence to: NDF From: Harry C. Finley,April 2,9, 16, 25, 1939 + + + + + + 15 + 43 + Correspondence to: NDF From: Harry C. Finley,April 30, 1939 + + + + + + 15 + 44 + Correspondence to: NDF From: Maude Crittenden,April 3, 1939 + + + + + + 15 + 45 + Correspondence to: NDF From: Amy Ruff,April 2, 1939 + + + + + + 15 + 46 + Correspondence to: NDF From: Meda Burgess,April 15, 1939 + + + + + + 15 + 47 + Correspondence to: NDF From: Zoe Davis,April 17, 1939 + + + + + + 15 + 48 + Correspondence to: NDF From: Sarah Greenman,April 18, 1939 + + + + + + 15 + 49 + Correspondence to: NDF From: Sarah Greenman,April 19, 1939 + + + + + + 15 + 50 + Correspondence to: NDF From: Aunt Louie Thompson,May 3, 19, 1939 + + + + + + 15 + 51 + Correspondence to: NDF From: Zarita Saxton,May 10, 16, 1939 + + + + + + 15 + 52 + Correspondence to: NDF From: Bertie McMurtrie,May 15, 1939 + + + + + + 15 + 53 + Correspondence to: NDF From: Harry and Zoe Davis,May 7, 13, 1939 + + + + + + 15 + 54 + Correspondence to: NDF From: Gerty Davis,May 7, 9, 1939 + + + + + + 15 + 55 + Correspondence to: NDF From: Zoe Davis, Ruth Saxton,May 2, 1939 + + + + + + 15 + 56 + Correspondence to: NDF From: Zoe Thatcher,May 6, 14, 1939 + + + + + + 15 + 57 + Correspondence to: NDF From: Ethel and Laverne,May 16, 1939 + + + + + + 15 + 58 + Correspondence to: Gerty Davis From: Aunt Nellie Finley (NDF),May 13, 1939 + + + + + + 15 + 59 + Correspondence to: NDF From: Amy Ruff,May 19, 1939 + + + + + + 15 + 60 + Correspondence to: NDF From: Harry C. Finley,May 14, 19, 21, 1939 + + + + + + 15 + 61 + Correspondence to: NDF From: Harry C. Finley,May 28, 1939 + + + + + + 15 + 62 + Correspondence to: NDF From: Dorothy Hicks,May 31, 1939 + + + + + + 15 + 63 + Correspondence to: NDF From: Amy Ruff,June 9, 1939 + + + + + + 15 + 64 + Correspondence to: NDF From: Aunt Louie Thompson,June 9, 1939 + + + + + + 15 + 65 + Correspondence to: NDF From: Harry C. Finley,June 4, 11, 20, 1939 + + + + + + 15 + 66 + Correspondence to: NDF From: Harry C. Finley,June 25, 1939 + + + + + + 15 + 67 + Correspondence to: NDF From: Bertie McMurtrie,June 12, 1939 + + + + + + 15 + 68 + Correspondence to: NDF From: Zarita Saxton,June 13, 1939 + + + + + + 15 + 69 + Correspondence to: NDF From: Meda Burgess,June 21, 1939 + + + + + + 15 + 70 + Correspondence to: NDF From: Theron W. Finley,June 25, 1939 + + + + + + 15 + 71 + Correspondence to: NDF From: Gerty Davis,June 27, 1939 + + + + + + 15 + 72 + Correspondence to: NDF From: Gerty Davis,June 28, 1939 + + + + + + 15 + 73 + Correspondence to: NDF From: Harry and Zoe Davis,June 29, 1939 + + + + + + 15 + 74 + Correspondence to: NDF From: Harry and Zoe Davis,June 6, 12, 21, 1939 + + + + + + 15 + 75 + Correspondence to: NDF From: Harry and Zoe Davis,July 25, 28, 1939 + + + + + + 15 + 76 + Correspondence to: NDF From: Harry C. Finley,July 2, 14, 18, 1939 + + + + + + 15 + 77 + Correspondence to: NDF From: Sylvia Chappell,July 2, 1939 + + + + + + 15 + 78 + Correspondence to: NDF From: Gerty Davis, includes Photograph,July 2, 22, 25, 1939 + + + + + + 15 + 79 + Correspondence to: NDF From: Aunt Louie Thompson,June 9, 1939 + + + + + + 15 + 80 + Correspondence to: NDF From: M. and L. Gribbles,July 19, 1939 + + + + + + 15 + 81 + Correspondence to: NDF From: Lida Miller,July 21, 1939 + + + + + + 15 + 82 + Correspondence to: NDF From: Harry C. Finley,August 6, 16, 20, 1939 + + + + + + 15 + 83 + Correspondence to: NDF From: Harry and Zoe Davis,August 3, 8, 1939 + + + + + + 15 + 84 + Correspondence to: NDF From: Harry and Zoe Davis,September 2, 26, 1939 + + + + + + 15 + 85 + Correspondence to: NDF From: Lida J. Miller,September 3, 1939 + + + + + + 15 + 86 + Correspondence to: NDF From: Meda Burgess,September 3, 1939 + + + + + + 15 + 87 + Correspondence to: NDF From: Zoe Davis,September 7, 1939 + + + + + + 15 + 88 + Correspondence to: NDF, Harry C. Finley From: Gerty Davis and All,September 10, 1939 + + + + + + 15 + 89 + Correspondence to: NDF From: Harry Zoe and Davis,October 10, 13, 1939 + + + + + + 15 + 90 + Correspondence to: NDF From: Theron W. Finley,October 19, 1939 + + + + + + 15 + 91 + Correspondence to: NDF From: Theron W. Finley,November 10, 1939 + + + + + + 15 + 92 + Correspondence to: NDF From: Aunt Louie Thompson,October 4, 1939 + + + + + + 15 + 93 + Correspondence to: NDF From: Aunt Louie Thompson,October 10, 1939 + + + + + + 15 + 94 + Correspondence to: NDF From: Zoe Thatcher,October 15, 1939 + + + + + + 15 + 95 + Correspondence to: NDF From: Marvin O. Hall,October 27, 1939 + + + + + + 15 + 96 + Correspondence to: NDF From: Harry C. Finley,October 3, 8, 15, 1939 + + + + + + 15 + 97 + Correspondence to: NDF From: Harry C. Finley,October 22, 29, 1939 + + + + + + 15 + 98 + Correspondence to: NDF From: Harry C. Finley,November 5, 12, 19, 1939 + + + + + + 15 + 99 + Correspondence to: NDF From: Harry C. Finley,November 24, 1939 + + + + + + 15 + 100 + Correspondence to: NDF From: Harry C. Finley,December 1, 9, 1939 + + + + + + 15 + 101 + Correspondence to: NDF From: "Ma" Honeywell,December 1, 1939 + + + + + + 15 + 102 + Correspondence to: NDF From: Dorothy Hicks,[no month, day] 194u + + + + + + 15 + 103 + Correspondence to: NDF From: Harry C. Finley,January 13, 20, 28, 1940 + + + + + + 15 + 104 + Correspondence to: NDF From: "Ma" Honeywell,January 18, 1940 + + + + + + 15 + 105 + Correspondence to: NDF From: Harry C. Finley,February 3, 10, 17, 1940 + + + + + + 15 + 106 + Correspondence to: NDF From: Harry C. Finley,February 25-26, 1940 + + + + + + 15 + 107 + Correspondence to: NDF From: Rose Blodgett,February 7, 1940 + + + + + + 15 + 108 + Correspondence to: NDF From: Zoe and Harry Davis,February 17, 194u + + + + + + 15 + 109 + Correspondence to: NDF From: Harry C. Finley,March 3, 9, 17, 30, 1940 + + + + + + 15 + 110 + Correspondence to: NDF From: "Ma" Honeywell,March 6, 1940 + + + + + + 15 + 111 + Correspondence to: NDF From: Dorothy Hicks,March 18, 1940 + + + + + + 15 + 112 + Correspondence to: NDF From: Harry C. Finley,April 6, 13, 20, 1940 + + + + + + 15 + 113 + Correspondence to: NDF From: Harry C. Finley,April 22-23, 27, 1940 + + + + + + 15 + 114 + Correspondence to: NDF From: Harry C. Finley,May 3, 12, 16, 1940 + + + + + + 15 + 115 + Correspondence to: NDF From: Harry C. Finley,May 21, 25, 30, 1940 + + + + + + 15 + 116 + Correspondence to: NDF From: Harry C. Finley,June 11, 27, 1940 + + + + + + 15 + 117 + Correspondence to: NDF From: Harry C. Finley,July 1, 12, 1940 + + + + + + 15 + 118 + Correspondence to: NDF From: Harry and Zoe Davis,July 30, 1940 + + + + + + 15 + 119 + Correspondence to: Harry C. Finley From: Ted Walker,August 26, 1940 + + + + + + 15 + 120 + Correspondence to: NDF From: Harry C. Finley,September 11, 30, 1940 + + + + + + 15 + 121 + Correspondence to: NDF From: Theron W. Finley,September 6, 1940 + + + + + + 15 + 122 + Correspondence to: NDF From: Harry C. Finley,October 6, 11, 21, 1940 + + + + + + 15 + 123 + Correspondence to: NDF From: Harry C. Finley,October 25, 1940 + + + + + + 15 + 124 + Correspondence to: NDF From: Harry C. Finley,November 3, 10, 17, 1940 + + + + + + 15 + 125 + Correspondence to: NDF From: Harry C. Finley,November 27, 1940 + + + + + + 15 + 126 + Correspondence to: NDF From: Theron W. Finley,November 9, 1940 + + + + + + 15 + 127 + Correspondence to: NDF From: Harry C. Finley,December 2, 7, 15, 1940 + + + + + + 15 + 128 + Correspondence to: NDF From: Mr. and Mrs. Ard A. Ludlow,[no month, day], 1941 + + + + + + 15 + 129 + Correspondence to: Harry C. Finley From: Dorothy Hicks,[no month, day], 1941 + + + + + + 15 + 130 + Correspondence to: NDF From: Harry C. Finley,January 12, 26, 1941 + + + + + + 15 + 131 + Correspondence to: NDF From: Harry C. Finley, includes Photographs, 1944,February 2,9, 16, 1941, 1944 + + + + + + 15 + 132 + Correspondence to: NDF From: Harry C. Finley,March 2, 10, 18, 1941 + + + + + + 15 + 133 + Correspondence to: NDF From: Harry C. Finley,March 24, 30, 1941 + + + + + + 15 + 134 + Correspondence to: NDF From: Theron W. Finley,March 30, 1941 + + + + + + 15 + 135 + Correspondence to: NDF From: Harry C. Finley,April 7, 13, 20, 1941 + + + + + + 15 + 136 + Correspondence to: NDF From: Harry C. Finley,April 24, 1941 + + + + + + 15 + 137 + Correspondence to: NDF From: Harry C. Finley,May 5, 13, 20, 1941 + + + + + + 15 + 138 + Correspondence to: NDF From: Harry C. Finley,May 25, 1941 + + + + + + 15 + 139 + Correspondence to: NDF From: Aunt Louie Thompson,May 27, 1941 + + + + + + 15 + 140 + Correspondence to: NDF From: Bud Klenner, and reply from NDF,May 5, 1941 + + + + + + 15 + 141 + Correspondence to: Harry C. Finley From: Merle,June 6, 1941 + + + + + + 15 + 142 + Correspondence to: Harry C. Finley From: Ruth Saxton,June 4, 1941 + + + + + + 15 + 143 + Correspondence to: Harry C. Finley From: George and Kay,June 5, 1941 + + + + + + 15 + 144 + Correspondence to: unidentified From: Harry C. Finley,June 6, 1941 + + + + + + 15 + 145 + Correspondence to: Harry C. Finley From: Mother (NDF),June 19, 1941 + + + + + + 15 + 146 + Correspondence to: Harry C. Finley From: A. N. MacIntosh,June 20, 1941 + + + + + + 15 + 147 + Correspondence to: Harry C. Finley From: Aunt Louie Thompson,June 21, 1941 + + + + + + 15 + 148 + Correspondence to: Harry C. Finley From: Bill,June 21, 1941 + + + + + + 15 + 149 + Correspondence to: Harry C. Finley From: Mom (NDF),June 24, 1941 + + + + + + 15 + 150 + Correspondence to: Harry C. Finley From: Harry and Zoe Davis,June 25, 1941 + + + + + + 15 + 151 + Correspondence to: Harry C. Finley From: Don Harrington,July 6, 1941 + + + + + + 15 + 152 + Correspondence to: Harry C. Finley From: Edward R. Kubilins,July 17, 1941 + + + + + + 15 + 153 + Correspondence to: Harry C. Finley From: Mom (NDF),July 26, 1941 + + + + + + 15 + 154 + Correspondence to: NDF From: Harry C. Finley,August 4, 6, 11, 19, 1941 + + + + + + 15 + 155 + Correspondence to: NDF From: Harry C. Finley,August 24, 1941 + + + + + + 15 + 156 + Correspondence to: Harry C. Finley From: Mother (NDF),August 3, 1941 + + + + + + 15 + 157 + Correspondence to: Harry C. Finley From: Mother (NDF), includes Photographs,August 18, 1941 + + + + + + 15 + 158 + Correspondence to: Harry C. Finley From: Aunt Louie Thompson,August 20, 1941 + + + + + + 15 + 159 + Correspondence to: NDF From: Dorothy Hicks,September 22, 27, 30, 1941 + + + + + + 15 + 160 + Correspondence to: NDF From: Harry C. Finley,September 1, 17, 25, 1941 + + + + + + 15 + 161 + Correspondence to: NDF From: Harry C. Finley,September 29, 1941 + + + + + + 15 + 162 + Correspondence to: NDF From: Harry C. Finley,October 2, 9, 11, 1941 + + + + + + 15 + 163 + Correspondence to: NDF From: Harry C. Finley,October 12, 25, 1941 + + + + + + 15 + 164 + Correspondence to: NDF From: Harry C. Finley,November 1, 10, 20, 1941 + + + + + + 15 + 165 + Correspondence to: NDF From: Harry C. Finley,November 30, 1941 + + + + + + 15 + 166 + Correspondence to: NDF From: Theron W. Finley,November 7, 1941 + + + + + + 15 + 167 + Correspondence to: Mr. and Mrs. Frederick J. McMurtrie From: Harry C. Finley,November 13, 1941 + + + + + + 15 + 168 + Correspondence to: NDF From: Harry C. Finley,December 11, 21, 1941 + + + + + + 15 + 169 + Correspondence to: NDF From: Edna,December 30, 1941 + + + + + + 15 + 170 + Correspondence to: NDF From: Harry C. Finley,January 4, 10, 21, 1942 + + + + + + 15 + 171 + Correspondence to: NDF From: Harry C. Finley,January 29, 1942 + + + + + + 15 + 172 + Correspondence to: NDF From: Theron W. Finley,January 18, 1942 + + + + + + 15 + 173 + Correspondence to: NDF From: Harry C. Finley,February 7, 12, 18, 1942 + + + + + + 15 + 174 + Correspondence to: NDF From: Harry C. Finley,February 24, 1942 + + + + + + 15 + 175 + Correspondence to: Mrs. Frederick J. McMurtrie From: Harry C. Finley,February 5, 1942 + + + + + + 15 + 176 + Correspondence to: Gerty, Wilson, and Marydena Davis From: Harry C. Finley,February 13, 1942 + + + + + + 15 + 177 + Correspondence to: NDF From: Dorothy Hicks,March 9, 19, 1942 + + + + + + 15 + 178 + Correspondence to: NDF From: Harry C. Finley,March 2, 7, 15, 1942 + + + + + + 15 + 179 + Correspondence to: NDF From: Harry C. Finley,March 23, 28, 1942 + + + + + + 15 + 180 + Correspondence to: NDF From: Theron W. Finley,March 9, 1942 + + + + + + 15 + 181 + Correspondence to: NDF From: Harry C. Finley,April 2, 8, 16, 1942 + + + + + + 15 + 182 + Correspondence to: NDF From: Harry C. Finley,April 20, 29, 1942 + + + + + + 15 + 183 + Correspondence to: NDF From: Jerry,April 24, 1942 + + + + + + 15 + 184 + Correspondence to: NDF From: Harry C. Finley,May 3, 7, 11, 1942 + + + + + + 15 + 185 + Correspondence to: NDF From: Harry C. Finley,May 17, 23, 30, 1942 + + + + + + 15 + 186 + Correspondence to: NDF From: Harry C. Finley,June 6, 10, 17, 1942 + + + + + + 15 + 187 + Correspondence to: NDF From: Harry C. Finley,June 25, 30, 1942 + + + + + + 15 + 188 + Correspondence to: Harry and Zoe Davis From: Harry C. Finley,June 21, 1942 + + + + + + 15 + 189 + Correspondence to: NDF From: Dorothy Hicks,June 29, 1942 + + + + + + 15 + 190 + Correspondence to: NDF From: Harry C. Finley,July 8, 14, 19, 1942 + + + + + + 15 + 191 + Correspondence to: NDF From: Harry C. Finley,July 28, 1942 + + + + + + 15 + 192 + Correspondence to: NDF From: Harry C. Finley,August 2, 11, 18, 1942 + + + + + + 15 + 193 + Correspondence to: NDF From: Harry C. Finley,August 25, 1942 + + + + + + 15 + 194 + Correspondence to: NDF From: Dorothy Grindatti,August 8, 1942 + + + + + + 15 + 195 + Correspondence to: NDF From: Harry C. Finley,September 1, 8, 14, 1942 + + + + + + 15 + 196 + Correspondence to: NDF From: Harry C. Finley,September 26, 30, 1942 + + + + + + 15 + 197 + Correspondence to: NDF From: Harry C. Finley,August 15, 1942 + + + + + + 15 + 198 + Correspondence to: NDF From: Harry C. Finley,October 4, 13, 20, 1942 + + + + + + 15 + 199 + Correspondence to: NDF From: Harry C. Finley,October 26, 1942 + + + + + + 15 + 200 + Correspondence to: NDF From: Theron W. Finley,October 6, 1942 + + + + + + 15 + 201 + Correspondence to: NDF From: Harry C. Finley,November 8, 14, 21, 1942 + + + + + + 15 + 202 + Correspondence to: NDF From: Harry C. Finley,November 27, 29, 1942 + + + + + + 15 + 203 + Correspondence to: NDF From: Harry C. Finley,December 6, 13, 20, 1942 + + + + + + 15 + 204 + Correspondence to: NDF From: Harry C. Finley,December 27, 29, 1942 + + + + + + 16 + 1 + Correspondence to: NDF From: Harry C. Finley,January 1, 8, 18, 25, 1943 + + + + + + 16 + 2 + Correspondence to: NDF From: Harry C. Finley,January 26, 1943 + + + + + + 16 + 3 + Correspondence to: NDF From: Edna C.,January 14, 1943 + + + + + + 16 + 4 + Correspondence to: NDF From: Harry C. Finley,February 6, 13, 21, 1943 + + + + + + 16 + 5 + Correspondence to: NDF From: Harry C. Finley,February 28, 1943 + + + + + + 16 + 6 + Correspondence to: NDF From: Harry C. Finley,March 4, 7, 14, 29, 1943 + + + + + + 16 + 7 + Correspondence to: Gerty, Marydena, and Wilson Davis From: Harry C. Finley,March 31, 1943 + + + + + + 16 + 8 + Correspondence to: NDF From: Harry C. Finley,April 4, 11, 19, 1943 + + + + + + 16 + 9 + Correspondence to: NDF From: Harry C. Finley,April 27, 1943 + + + + + + 16 + 10 + Correspondence to: NDF From: Dorothy Grindatti,April 8, 1943 + + + + + + 16 + 11 + Correspondence to: NDF From: Harry C. Finley,May 1, 4, 10, 16, 1943 + + + + + + 16 + 12 + Correspondence to: NDF From: Harry C. Finley,May 17, 20-21, 1943 + + + + + + 16 + 13 + Correspondence to: NDF From: Harry C. Finley,May 27, 1943 + + + + + + 16 + 14 + Correspondence to: NDF From: Dorothy Grindatti,May 5, 1943 + + + + + + 16 + 15 + Correspondence to: NDF From: Harry C. Finley,June 4, 11, 20, 1943 + + + + + + 16 + 16 + Correspondence to: NDF From: Harry C. Finley, includes Photograph,June 21, 28, 1943 + + + + + + 16 + 17 + Correspondence to: NDF From: Harry C. Finley,July 2, 8, 15, 24, 1943 + + + + + + 16 + 18 + Correspondence to: NDF From: Harry C. Finley,July 25, 29, 1943 + + + + + + 16 + 19 + Correspondence to: NDF From: Theron W. Finley,July 25, 1943 + + + + + + 16 + 20 + Correspondence to: NDF From: Harry C. Finley,August 9, 14, 21, 1943 + + + + + + 16 + 21 + Correspondence to: NDF From: Harry C. Finley,August 30, 1943 + + + + + + 16 + 22 + Correspondence to: NDF From: Dorothy M. Grindatti,August 3, 1943 + + + + + + 16 + 23 + Correspondence to: NDF From: Harry C. Finley,September 6, 10, 18, 1943 + + + + + + 16 + 24 + Correspondence to: NDF From: Harry C. Finley,September 25, 1943 + + + + + + 16 + 25 + Correspondence to: NDF From: Harry C. Finley,October 3, 8, 15, 1943 + + + + + + 16 + 26 + Correspondence to: NDF From: Harry C. Finley,October 24, 30, 1943 + + + + + + 16 + 27 + Correspondence to: NDF From: Harry C. Finley,November 5, 13, 20, 1943 + + + + + + 16 + 28 + Correspondence to: NDF From: Harry C. Finley,November 27, 1943 + + + + + + 16 + 29 + Correspondence to: NDF From: Dorothy Grindatti,November 6, 1943 + + + + + + 16 + 30 + Correspondence to: NDF From: Harry C. Finley,December 5, 12, 15, 1943 + + + + + + 16 + 31 + Correspondence to: NDF From: Harry C. Finley,December 16, 26, 1943 + + + + + + 16 + 32 + Correspondence to: NDF From: Theron W. Finley,December 15, 1943 + + + + + + 16 + 33 + Correspondence to: NDF From: Harry C. Finley,January 1, 5, 11, 18, 1944 + + + + + + 16 + 34 + Correspondence to: NDF From: Harry C. Finley,January 24, 29, 1944 + + + + + + 16 + 35 + Correspondence to: NDF From:Edith and Charles Sheehan,January 13, 1944 + + + + + + 16 + 36 + Correspondence to: NDF From:Harry C. Finley,February 4, 12, 19, 1944 + + + + + + 16 + 37 + Correspondence to: NDF From: Harry C. Finley,February 26, 1944 + + + + + + 16 + 38 + Correspondence to: NDF From: Harry C. Finley,March 2, 10, 16, 1944 + + + + + + 16 + 39 + Correspondence to: NDF From: Harry C. Finley,March 23-24, 1944 + + + + + + 16 + 40 + Correspondence to: NDF From: Harry C. Finley,April 1, 8, 16, 21, 1944 + + + + + + 16 + 41 + Correspondence to: NDF From: Harry C. Finley,April 30, 1944 + + + + + + 16 + 42 + Correspondence to: NDF From: Harry C. Finley,May 8, 14, 25, 1944 + + + + + + 16 + 43 + Correspondence to: NDF From: Theron W. Finley,May 11, 1944 + + + + + + 16 + 44 + Correspondence to: NDF From: Dorothy Hicks,June 20, 23, 1944 + + + + + + 16 + 45 + Correspondence to: NDF From: Harry C. Finley,June 4, 18, 1944 + + + + + + 16 + 46 + Correspondence to: NDF From: Theron W. Finley,June 7, 1944 + + + + + + 16 + 47 + Correspondence to: NDF From: Dorothy Grindatti,June 7, 1944 + + + + + + 16 + 48 + Correspondence to: NDF From: Harry C. Finley,July 10, 13, 22, 1944 + + + + + + 16 + 49 + Correspondence to: NDF From: Harry C. Finley,July 27, 31, 1944 + + + + + + 16 + 50 + Correspondence to: Gerty Davis From: Harry C. Finley,July 7, 14, 1944 + + + + + + 16 + 51 + Correspondence to: NDF From: Theron W. Finley,July 15, 1944 + + + + + + 16 + 52 + Correspondence to: Marydena Davis From: Harry C. Finley,July 17, 1944 + + + + + + 16 + 53 + Correspondence to: NDF From: Dorothy Grindatti,July 20, 1944 + + + + + + 16 + 54 + Correspondence to: NDF From: Harry C. Finley,August 2, 8, 15, 17, 1944 + + + + + + 16 + 55 + Correspondence to: NDF From: Harry C. Finley,August 19, 23, 26, 1944 + + + + + + 16 + 56 + Correspondence to: NDF From: Harry C. Finley,August 30, 1944 + + + + + + 16 + 57 + Correspondence to: NDF From: Harry C. Finley,September 1, 3, 6, 8, 11, 1944 + + + + + + 16 + 58 + Correspondence to: NDF From: Harry C. Finley,September 18, 26, 28, 1944 + + + + + + 16 + 59 + Correspondence to: NDF From: Harry C. Finley,September 21, 1944 + + + + + + 16 + 60 + Correspondence to: NDF From: Theron W. Finley,September 20, 1944 + + + + + + 16 + 61 + Correspondence to: NDF From: Theron W. Finley,October 1, 31, 1944 + + + + + + 16 + 62 + Correspondence to: NDF From: Zoe Thatcher,November 2, 1944 + + + + + + 16 + 63 + Correspondence to: NDF From: Harry C. Finley,October 7, 13, 21, 1944 + + + + + + 16 + 64 + Correspondence to: NDF From: Harry C. Finley,October 29, 1944 + + + + + + 16 + 65 + Correspondence to: NDF From: Harry C. Finley,November 2, 11, 16, 1944 + + + + + + 16 + 66 + Correspondence to: NDF From: Harry C. Finley,November 26, 30, 1944 + + + + + + 16 + 67 + Correspondence to: NDF From: Dorothy Grindatti,December 15, 1944 + + + + + + 16 + 68 + Correspondence to: NDF From: Harry C. Finley,December 11, 17, 22, 1944 + + + + + + 16 + 69 + Correspondence to: NDF From: Harry C. Finley,December 26, 1944 + + + + + + 16 + 70 + Correspondence to: NDF From: Ruth I.,December 20, 1944 + + + + + + 16 + 71 + Correspondence to: NDF From: Theron W. Finley,December 21, 1944 + + + + + + 16 + 72 + Correspondence to: NDF From: Harry C. Finley,January 4, 12, 18, 1945 + + + + + + 16 + 73 + Correspondence to: NDF From: Harry C. Finley,January 27, 31, 1945 + + + + + + 16 + 74 + Correspondence to: NDF From: Harry and Zoe Davis,February 14, 1945 + + + + + + 16 + 75 + Correspondence to: NDF From: Harry C. Finley,February 19, 24, 1945 + + + + + + 16 + 76 + Correspondence to: NDF From: Harry C. Finley,March 3, 13, 19, 1945 + + + + + + 16 + 77 + Correspondence to: NDF From: Harry C. Finley,March 23, 1945 + + + + + + 16 + 78 + Correspondence to: Marydena Davis From: Harry C. Finley,March 18, 1945 + + + + + + 16 + 79 + Correspondence to: NDF From: Theron W. Finley,April 2, 1945 + + + + + + 16 + 80 + Correspondence to: NDF From: Harry C. Finley,April 5, 7, 9, 16, 1945 + + + + + + 16 + 81 + Correspondence to: NDF From: Harry C. Finley,April 20, 27, 29, 1945 + + + + + + 16 + 82 + Correspondence to: Zoe Davis From: Harry C. Finley,April 20, 1945 + + + + + + 16 + 83 + Correspondence to: NDF From: Harry C. Finley,May 1, 4, 8, 12, 1945 + + + + + + 16 + 84 + Correspondence to: NDF From: Harry C. Finley,May 18, 21, 25, 1945 + + + + + + 16 + 85 + Correspondence to: NDF From: Harry C. Finley,May 28, 1945 + + + + + + 16 + 86 + Correspondence to: NDF From: Theron W. Finley,May 10, 1945 + + + + + + 16 + 87 + Correspondence to: NDF From: Margaret,May 21, 1945 + + + + + + 16 + 88 + Correspondence to: NDF From: Harry C. Finley,June 2, 5, 9, 11, 1945 + + + + + + 16 + 89 + Correspondence to: NDF From: Harry C. Finley,June 14, 16, 20, 1945 + + + + + + 16 + 90 + Correspondence to: NDF From: Harry C. Finley,June 24, 27, 1945 + + + + + + 16 + 91 + Correspondence to: NDF From: Theron W. Finley,June 16, 1945 + + + + + + 16 + 92 + Correspondence to: NDF From: Gerty Davis,June 18, 1945 + + + + + + 16 + 93 + Correspondence to: NDF From: Earl L. Fox,June 28, 1945 + + + + + + 16 + 94 + Correspondence to: NDF From: Harry C. Finley,July 1, 5-6, 15, 1945 + + + + + + 16 + 95 + Correspondence to: NDF From: Harry C. Finley,July 18, 23, 25, 1945 + + + + + + 16 + 96 + Correspondence to: NDF From: Harry C. Finley,July 29, 1945 + + + + + + 16 + 97 + Correspondence to: NDF From: Meda Burgess,July 14, 1945 + + + + + + 16 + 98 + Correspondence to: NDF From: Harry C. Finley,August 2, 8, 10, 12, 1945 + + + + + + 16 + 99 + Correspondence to: NDF From: Harry C. Finley,August 18, 1945 + + + + + + 16 + 100 + Correspondence to: NDF From: Harry C. Finley,September 4, 13, 1945 + + + + + + 16 + 101 + Correspondence to: NDF From: Alice and Mark,September 16, 1945 + + + + + + 16 + 102 + Correspondence to: NDF From: Nina and John Grindatti,October 5, 1945 + + + + + + 16 + 103 + Correspondence to: NDF From: Marydena Davis,October 6, 1945 + + + + + + 16 + 104 + Correspondence to: NDF From: Gerty, Wilson, and Marydena Davis,October 21, 1945 + + + + + + 16 + 105 + Correspondence to: Harry C. Finley From: Theron W. Finley,November 6, 1945 + + + + + + 16 + 106 + Correspondence to: NDF From: Gerty Davis,November 8, 1945 + + + + + + 16 + 107 + Correspondence to: NDF From: Theron W. Finley,November 11, 1945 + + + + + + 16 + 108 + Correspondence to: NDF From: Dorothy Grindatti,November 13, 1945 + + + + + + 16 + 109 + Correspondence to: NDF From: Gerty Davis,December 2, 8, 27, 1945 + + + + + + 16 + 110 + Correspondence to: NDF From: Gertrude H.,December [no day], 1945 + + + + + + 16 + 111 + Correspondence to: NDF From: Mel, Lydia, and Shirley Ann,December [no day], 1945 + + + + + + 16 + 112 + Correspondence to: NDF From: Nina and John Grindatti,December [no day], 1945 + + + + + + 16 + 113 + Correspondence to: NDF From: Charles and Ruth Ludlow, Mother Steele,December 10, 1945 + + + + + + 16 + 114 + Correspondence to: NDF From: Jessie Geiger,December 12, 1945 + + + + + + 16 + 115 + Correspondence to: NDF From: E. E., includes Photograph,December 13, 1945 + + + + + + 16 + 116 + Correspondence to: NDF From: Ethel,December 13, 1945 + + + + + + 16 + 117 + Correspondence to: NDF From: Jeanne Bouchat,December 14, 1945 + + + + + + 16 + 118 + Correspondence to: NDF From: Harry and Dorothy Finley,December 15, 1945 + + + + + + 16 + 119 + Correspondence to: NDF From: Harry and Dorothy Finley (folder 1 of 2),December 16, 1945 + + + + + + 16 + 120 + Correspondence to: NDF From: Harry and Dorothy Finley (folder 2 of 2),December 16, 1945 + + + + + + 16 + 121 + Correspondence to: NDF From: Loraine DeKorte (M. and M. Adrian DeKorte),December 16, 1945 + + + + + + 16 + 122 + Correspondence to: NDF From: Jessie,December 17, 1945 + + + + + + 16 + 123 + Correspondence to: NDF From: Herb and Caryl Tweedie,December 17, 1945 + + + + + + 16 + 124 + Correspondence to: NDF From: Edith and Charles Sheehan,December 17, 1945 + + + + + + 16 + 125 + Correspondence to: NDF From: Frank and Edna Howard,December 16, 1945 + + + + + + 16 + 126 + Correspondence to: NDF From: Mr. and Mrs. Norvin A. Corbett,December 17, 1945 + + + + + + 16 + 127 + Correspondence to: NDF From: Mary,December 19, 1945 + + + + + + 16 + 128 + Correspondence to: NDF From: The Stringers,December 19, 1945 + + + + + + 16 + 129 + Correspondence to: NDF From: Alice, Harry, and Carolyn,December 19, 1945 + + + + + + 16 + 130 + Correspondence to: NDF From: Eva,December 19, 1945 + + + + + + 16 + 131 + Correspondence to: NDF From: Ard and Bessie,December 20, 1945 + + + + + + 16 + 132 + Correspondence to: NDF From: Amy,December 20, 1945 + + + + + + 16 + 133 + Correspondence to: NDF From: Alice,December 20, 1945 + + + + + + 16 + 134 + Correspondence to: NDF From: Nellie,December 21, 1945 + + + + + + 16 + 135 + Correspondence to: NDF From: May L. Carson,December 21, 1945 + + + + + + 16 + 136 + Correspondence to: NDF From: All of Us,Cadillac,December 21, 1945 + + + + + + 16 + 137 + Correspondence to: NDF From: Bill and Grace Divens,December 21, 1945 + + + + + + 16 + 138 + Correspondence to: NDF From: Ernestine and Don Smith,December 22, 1945 + + + + + + 16 + 139 + Correspondence to: NDF From: Mrs. Linda Gibbs,December 22, 1945 + + + + + + 16 + 140 + Correspondence to: NDF From: Mary J. Peckham,December 22, 1945 + + + + + + 16 + 141 + Correspondence to: NDF From: Charlotte,December 23, 1945 + + + + + + 16 + 142 + Correspondence to: NDF From: Nina and John Grindatti,December 26, 1945 + + + + + + 16 + 143 + Correspondence to: NDF From: Donna and Edd,December 26, 1945 + + + + + + 16 + 144 + Correspondence to: NDF From: Alan, Shirley, and Dana Packer,December 26, 1945 + + + + + + 16 + 145 + Correspondence to: NDF From: Mrs. Leo S. (Ada) PhillipsDecember 27, 1945 + + + + + + 16 + 146 + Correspondence to: NDF From: Flossie,December 28, 1945 + + + + + + 16 + 147 + Correspondence to: NDF From: Harry and Zoe Davis,December 28, 1945 + + + + + + 16 + 148 + Correspondence to: NDF From: Harry and Dorothy Finley,December 30, 1945 + + + + + + 16 + 149 + Correspondence to: NDF From: Jud, Matie, and Lura,December 31, 1945 + + + + + + 16 + 150 + Correspondence to: NDF From: Herb Tweedie,December 31, 1945 + + + + + + 16 + 151 + Correspondence to: NDF From: Michigan State University Diploma (on top of letters in this box),1908 + + + + + + 17 + 1 + Correspondence to: NDF From: Dorothy Finley,[no month, day], 1946 + + + + + + 17 + 2 + Correspondence to: NDF From: Harry and Zoe Davis,January 5, 12, 1946 + + + + + + 17 + 3 + Correspondence to: NDF From: Harry and Dorothy Finley,January 9, 18, 1946 + + + + + + 17 + 4 + Correspondence to: NDF From: Doris,January 12, 1946 + + + + + + 17 + 5 + Correspondence to: NDF From: Gerty and Marydena Davis,January 16, 27, 1946 + + + + + + 17 + 6 + Correspondence to: NDF From: Ruth Stringer,January 20, 1946 + + + + + + 17 + 7 + Correspondence to: Theron W. Finley From: NDF,January 29, 1946 + + + + + + 17 + 8 + Correspondence to: NDF From: Dorothy Finley,February 1, 1946 + + + + + + 17 + 9 + Correspondence to: NDF From: Harry and Dorothy Finley,February 9, 26, 1946 + + + + + + 17 + 10 + Correspondence to: NDF From: Harry and Zoe Davis,February 6, 1946 + + + + + + 17 + 11 + Correspondence to: NDF From: Marydena Davis,February 12, 1946 + + + + + + 17 + 12 + Correspondence to: NDF From: Theron W. Finley,February 14, 1946 + + + + + + 17 + 13 + Correspondence to: NDF From: Almeda (Meda) Burgess,February 15, 1946 + + + + + + 17 + 14 + Correspondence to: NDF From: Gerty Davis,February 19, 1946 + + + + + + 17 + 15 + Correspondence to: NDF From: Dorothy Abboth,February 19, 1946 + + + + + + 17 + 16 + Correspondence to: NDF From: John and Nina Grindatti,February 26, 1946 + + + + + + 17 + 17 + Correspondence to: NDF From: Mary,February 28, 1946 + + + + + + 17 + 18 + Correspondence to: NDF From: John and Nina Grindatti,March 3, 12, 22, 1946 + + + + + + 17 + 19 + Correspondence to: NDF From: Harry and Zoe Davis,March 3, 18, 31, 1946 + + + + + + 17 + 20 + Correspondence to: NDF From: Harry and Dorothy Finley,March 10-11, 1946 + + + + + + 17 + 21 + Correspondence to: NDF From: Alise C. Gault,March 14, 1946 + + + + + + 17 + 22 + Correspondence to: NDF From: Gertrude Harrington,March 14, 27, 1946 + + + + + + 17 + 23 + Correspondence to: NDF From: Aunt Lena,March 18, 1946 + + + + + + 17 + 24 + Correspondence to: NDF From: Dorothy Parker,March 22, 1946 + + + + + + 17 + 25 + Correspondence to: NDF From: Theron W. Finley,March 23, 1946 + + + + + + 17 + 26 + Correspondence to: NDF From: Flossie Foster,March 29, 1946 + + + + + + 17 + 27 + Correspondence to: NDF From: John and Nina Grindatti,April 1, 15, 1946 + + + + + + 17 + 28 + Correspondence to: NDF From: Almeda Burgess,April 2, 1946 + + + + + + 17 + 29 + Correspondence to: NDF From: Gertrude Harrington,April 7, 21, 1946 + + + + + + 17 + 30 + Correspondence to: NDF From: Harry and Zoe Davis,April 13, 1946 + + + + + + 17 + 31 + Correspondence to: NDF From: Margaret Abbott,April 14, 1946 + + + + + + 17 + 32 + Correspondence to: NDF From: Bertie McMurtrie,April 17, 1946 + + + + + + 17 + 33 + Correspondence to: NDF From: Gerty Davis,April 17, 21, 1946 + + + + + + 17 + 34 + Correspondence to: NDF From: Edith and Charles,April 21, 1946 + + + + + + 17 + 35 + Correspondence to: NDF From: Alice,April 24, 1946 + + + + + + 17 + 36 + Correspondence to: Theron W. Finley From: NDF (Mother),April 25, 1946 + + + + + + 17 + 37 + Correspondence to: NDF From: Dorothy Abboth,April 27, 1946 + + + + + + 17 + 38 + Correspondence to: NDF From: Harry C. Finley,April 30, 1946 + + + + + + 17 + 39 + Correspondence to: NDF From: Flossie Foster,May 1, 1946 + + + + + + 17 + 40 + Correspondence to: Theron W. Finley From: NDF (Mother),May 1, 1946 + + + + + + 17 + 41 + Correspondence to: NDF From: Harry and Zoe Davis,May 7, 21, 1946 + + + + + + 17 + 42 + Correspondence to: NDF From: Gerty Davis,May 8, 1946 + + + + + + 17 + 43 + Correspondence to: NDF From: Amy Ruff,May 10, 1946 + + + + + + 17 + 44 + Correspondence to: NDF From: Mr. and Mrs. Edward Finley,May 12, 1946 + + + + + + 17 + 45 + Correspondence to: NDF From: Dorothy Finley,May 13, 1946 + + + + + + 17 + 46 + Correspondence to: NDF From: Harry C. Finley,May 14, 1946 + + + + + + 17 + 47 + Correspondence to: NDF From: John and Nina Grindatti,May 15, 1946 + + + + + + 17 + 48 + Correspondence to: NDF, Theron W. Finley From: Dorothy Finley,May 18, 1946 + + + + + + 17 + 49 + Correspondence to: NDF From: Almeda Burgess,May 19, 1946 + + + + + + 17 + 50 + Correspondence to: NDF From: Harry and Zoe Davis,June 1, 7, 27, 1946 + + + + + + 17 + 51 + Correspondence to: NDF From: Amy Ruff,June 10, 1946 + + + + + + 17 + 52 + Correspondence to: NDF From: Dorothy Finley,June 10, 1946 + + + + + + 17 + 53 + Correspondence to: NDF From: John and Nina Grindatti,June 12, 1946 + + + + + + 17 + 54 + Correspondence to: NDF From: Ruth Stringer,June 17, 1946 + + + + + + 17 + 55 + Correspondence to: NDF From: Gertrude Harrington,June 20, 1946 + + + + + + 17 + 56 + Correspondence to: NDF From: Flossie Foster,June 26, 1946 + + + + + + 17 + 57 + Correspondence to: NDF From: Harry and Zoe Davis,July [no day], 1946 + + + + + + 17 + 58 + Correspondence to: NDF From: John and Nina Grindatti,July 1, 25, 1946 + + + + + + 17 + 59 + Correspondence to: NDF From: Harry and Dorothy Finley,July 2, 5, 1946 + + + + + + 17 + 60 + Correspondence to: NDF From: Edith,July 3, 1946 + + + + + + 17 + 62 + Correspondence to: NDF From: Gerty and Wilson Davis and All,July 3, 7, 21, 1946 + + + + + + 17 + 63 + Correspondence to: NDF From: Eva Greenman,July 12, 1946 + + + + + + 17 + 64 + Correspondence to: NDF From: Dorothy Parker,July 16, 1946 + + + + + + 17 + 65 + Correspondence to: NDF From: Charlotte,July 21, 1946 + + + + + + 17 + 66 + Correspondence to: NDF From: Jennie P.,July 23, 1946 + + + + + + 17 + 67 + Correspondence to: NDF From: Harry C. Finley,July 29, 1946 + + + + + + 17 + 68 + Correspondence to: NDF From: Harry and Dorothy Finley,August 1, 8, 26, 1946 + + + + + + 17 + 69 + Correspondence to: NDF From: Dorothy P.,August 3, 1946 + + + + + + 17 + 70 + Correspondence to: NDF From: Aunt Lena,August 5, 1946 + + + + + + 17 + 71 + Correspondence to: NDF From: Eva Robertson,August 23, 1946 + + + + + + 17 + 72 + Correspondence to: NDF From: Aunt Louie Thompson,August 26, 1946 + + + + + + 17 + 73 + Correspondence to: Zoe and Harry Davis From: Dorothy Finley,August 26, 1946 + + + + + + 17 + 74 + Correspondence to: NDF From: Dorothy Finley,September 2, 1946 + + + + + + 17 + 75 + Correspondence to: NDF From: L. R. Smith,September 5, 1946 + + + + + + 17 + 76 + Correspondence to: NDF From: Harry and Zoe Davis,September 6, 17, 1946 + + + + + + 17 + 77 + Correspondence to: NDF From: Gerty Davis,September 13, 1946 + + + + + + 17 + 78 + Correspondence to: NDF From: Harry and Dorothy Finley,September 22, 1946 + + + + + + 17 + 79 + Correspondence to: NDF From: Mrs. Pruda Wise,September 25, 1946 + + + + + + 17 + 80 + Correspondence to: NDF From: Harry and Dorothy Finley,October 1, 11, 20, 1946 + + + + + + 17 + 81 + Correspondence to: NDF From: Harry and Dorothy Finley,October 31, 1946 + + + + + + 17 + 82 + Correspondence to: NDF From: Nina and John Grindatti,October 4, 1946 + + + + + + 17 + 83 + Correspondence to: NDF From: Dorothy Parker,October 7, 14, 1946 + + + + + + 17 + 84 + Correspondence to: NDF From: Harry and Zoe Davis,October 7, 15, 20, 1946 + + + + + + 17 + 85 + Correspondence to: NDF From: Alice, Harry, and Carolyn,October 14, 1946 + + + + + + 17 + 86 + Correspondence to: NDF From: Flossie Foster,October 15, 1946 + + + + + + 17 + 87 + Correspondence to: NDF From: Gerty Davis (and All),October 23, 1946 + + + + + + 17 + 88 + Correspondence to: NDF From: Almeda Burgess,October 25, 1946 + + + + + + 17 + 89 + Correspondence to: NDF From: Dorothy Finley,November 3, 1946 + + + + + + 17 + 90 + Correspondence to: NDF From: Ruth Stringer,November 4, 1946 + + + + + + 17 + 91 + Correspondence to: NDF From: Marydena Davis,November 10, 1946 + + + + + + 17 + 92 + Correspondence to: NDF From: Meda Burgess,November 12, 1946 + + + + + + 17 + 93 + Correspondence to: NDF From: Harry and Dorothy Finley,November 16, 21, 25, 1946 + + + + + + 17 + 94 + Correspondence to: NDF From: Anna,November 23, 1946 + + + + + + 17 + 95 + Correspondence to: Mr. and Mrs. Wilson H. Davis From: Gerty and Wilson Davis,November 24-25, 1946 + + + + + + 17 + 96 + Correspondence to: NDF From: Gertrude Harrington,December 3, 1946 + + + + + + 17 + 97 + Correspondence to: NDF From: Harry and Zoe Davis,December 3, 1946 + + + + + + 17 + 98 + Correspondence to: NDF From: Marydena Davis,December 5, 1946 + + + + + + 17 + 99 + Correspondence to: NDF From: Gerty Davis (and All),December 5, 1946 + + + + + + 17 + 100 + Correspondence to: NDF From: Harry C. Finley,December 7, 1946 + + + + + + 17 + 101 + Correspondence to: NDF From: Ruth Ludlow,December 9, 1946 + + + + + + 17 + 102 + Correspondence to: NDF From: Theron W. Finley,December 12, 1946 + + + + + + 17 + 103 + Correspondence to: NDF From: Mamie Marble,December 12, 1946 + + + + + + 17 + 104 + Correspondence to: NDF From: Doris,December 14, 1946 + + + + + + 17 + 105 + Correspondence to: NDF From: Nina and John Grindatti,December 15, 28, 1946 + + + + + + 17 + 106 + Correspondence to: NDF From: Edna,December 15, 1946 + + + + + + 17 + 107 + Correspondence to: NDF From: Edith,December 16, 1946 + + + + + + 17 + 108 + Correspondence to: NDF From: Aunt Louie,December 16, 1946 + + + + + + 17 + 109 + Correspondence to: NDF From: Jeanne,December 17, 1946 + + + + + + 17 + 110 + Correspondence to: NDF From: Mauice,December 18, 1946 + + + + + + 17 + 111 + Correspondence to: NDF From: unidentified,December 18, 1946 + + + + + + 17 + 112 + Correspondence to: NDF From: Harry, Carolyn, and Alice,December 20, 1946 + + + + + + 17 + 113 + Correspondence to: NDF From: Edward, Theresa, and Betty,December 22, 1946 + + + + + + 17 + 114 + Correspondence to: NDF From: Dorothy Parker,December 28, 1946 + + + + + + 17 + 115 + Correspondence to: NDF From: Gerty Davis,January 2, 22, 1947 + + + + + + 17 + 116 + Correspondence to: NDF From: Nina and John Grindatti,January 5, 19, 1947 + + + + + + 17 + 117 + Correspondence to: NDF From: Mrs. Pruda Wise,January 6, 1947 + + + + + + 17 + 118 + Correspondence to: NDF From: Dorothy Jean Ahbatha,January 8, 1947 + + + + + + 17 + 119 + Correspondence to: NDF From: Edith and Charles,January 12, 1947 + + + + + + 17 + 120 + Correspondence to: NDF From: Ruth,January 14, 1947 + + + + + + 17 + 121 + Correspondence to: NDF From: Dorothy Parker,January 15, 24, 1947 + + + + + + 17 + 122 + Correspondence to: NDF From: Shirley, Alan, and Dana, Jr. Parker,January 17, 1947 + + + + + + 17 + 123 + Correspondence to: NDF From: Gerty Davis,February 6, 26, 1947 + + + + + + 17 + 124 + Correspondence to: NDF 1: Thelma Hayes,February 17, 1947 + + + + + + 17 + 125 + Correspondence to: NDF From: MaryBelle,February 19, 1947 + + + + + + 17 + 126 + Correspondence to: NDF From: Flossie Foster,February 22, 1947 + + + + + + 17 + 127 + Correspondence to: NDF From: Charlene, Clyde, and Charles Greenman,February 23, 1947 + + + + + + 17 + 128 + Correspondence to: NDF From: Nina and John Grindatti,February 27, 1947 + + + + + + 17 + 129 + Correspondence to: NDF From: Harry and Zoe Davis,March 13, 16, 24, 1947 + + + + + + 17 + 130 + Correspondence to: NDF From: Geraldine,March 3, 1947 + + + + + + 17 + 131 + Correspondence to: NDF From: Ruth Clawson,March 5, 1947 + + + + + + 17 + 132 + Correspondence to: Mr. and Mrs. Wilson H. Davis From: Gerty Davis,March 15, 1947 + + + + + + 17 + 133 + Correspondence to: NDF From: Gerty Davis,March 16, 1947 + + + + + + 17 + 134 + Correspondence to: NDF From: Matie, Jud, and Lura,March 17, 1947 + + + + + + 17 + 135 + Correspondence to: NDF From: Gertrude Harrington,March 20, 1947 + + + + + + 17 + 136 + Correspondence to: NDF From: Harry and Dorothy Finley,March 28, 1947 + + + + + + 17 + 137 + Correspondence to: NDF From: Edith and Charles,April 1, 18, 1947 + + + + + + 17 + 138 + Correspondence to: NDF From: Flossie Foster,April 9, 1947 + + + + + + 17 + 139 + Correspondence to: NDF From: Jud, Matie, and Lura,April 14, 1947 + + + + + + 17 + 140 + Correspondence to: NDF From: Gerty Davis,April 23, 27, 1947 + + + + + + 17 + 141 + Correspondence to: NDF From: Ruth Stringer,April 25, 1947 + + + + + + 17 + 142 + Correspondence to: NDF From: Theron W. Finley,April 25, 1947 + + + + + + 17 + 143 + Correspondence to: NDF From: Harry and Dorothy Finley,May 1, 7, 18, 1947 + + + + + + 17 + 144 + Correspondence to: NDF From: Jud, Matie, and Lura,May 2, 1947 + + + + + + 17 + 145 + Correspondence to: NDF From: Jo,May 7, 1947 + + + + + + 17 + 146 + Correspondence to: NDF From: Nina and John Grindatti,May 13, 1947 + + + + + + 17 + 147 + Correspondence to: NDF From: Flossie Foster,May 27, 1947 + + + + + + 17 + 148 + Correspondence to: NDF From: Almeda Burgess,June 8, 1947 + + + + + + 17 + 149 + Correspondence to: NDF From: Harry and Dorothy Finley,June 22, 1947 + + + + + + 17 + 150 + Correspondence to: NDF From: Nina and John Grindatti,July 1, 1947 + + + + + + 17 + 151 + Correspondence to: NDF From: Harry and Dorothy Finley,July 6, 23, 1947 + + + + + + 17 + 152 + Correspondence to: NDF From: Doris,July 9, 1947 + + + + + + 17 + 153 + Correspondence to: NDF From: Theron W. Finley,July 14, 21, 1947 + + + + + + 17 + 154 + Correspondence to: NDF From: Miss C. Keltz,July 15, 1947 + + + + + + 17 + 155 + Correspondence to: NDF From: Eva Robertson,July 20, 1947 + + + + + + 17 + 156 + Correspondence to: NDF From: The Ruffs,July 22, 1947 + + + + + + 17 + 157 + Correspondence to: NDF From: Jerry (Geraldine) Finley,August 6, 29, 1947 + + + + + + 17 + 158 + Correspondence to: NDF From: Harry and Dorothy Finley,August 17, 19, 1947 + + + + + + 17 + 159 + Correspondence to: NDF From: Eva Robertson,September 6, 1947 + + + + + + 17 + 160 + Correspondence to: NDF From: Harry and Dorothy Finley,September 7, 10, 30, 1947 + + + + + + 17 + 161 + Correspondence to: NDF From: Matie,September 11, 1947 + + + + + + 17 + 162 + Correspondence to: NDF From: Theron and Jerry Finley and Kent,September 14, 25, 1947 + + + + + + 17 + 163 + Correspondence to: NDF From: Genevieve,September 17, 1947 + + + + + + 17 + 164 + Correspondence to: NDF From: Matie,September 18, 1947 + + + + + + 17 + 165 + Correspondence to: NDF From: Ruth Stringer,September 26, 1947 + + + + + + 17 + 166 + Correspondence to: NDF From: Pruda Wise,September 28, 1947 + + + + + + 17 + 167 + Correspondence to: NDF From: Harry and Dorothy Finley,October 16, 31, 1947 + + + + + + 17 + 168 + Correspondence to: NDF From: Dorothy Kilburn,October 21, 1947 + + + + + + 17 + 169 + Correspondence to: NDF From: Flossie Foster,October 26, 1947 + + + + + + 17 + 170 + Correspondence to: NDF From: Jerry Finley,October 30, 1947 + + + + + + 17 + 171 + Correspondence to: NDF From: Amy E. Ruff,October 30, 1947 + + + + + + 17 + 172 + Correspondence to: NDF From: Harry and Dorothy Finley,November 2-3, 1947 + + + + + + 17 + 173 + Correspondence to: NDF From: Flossie Foster,November 7, 1947 + + + + + + 17 + 174 + Correspondence to: NDF From: Eva Robertson,November 10, 1947 + + + + + + 17 + 175 + Correspondence to: NDF From: Dorothy Finley,November 19, 1947 + + + + + + 17 + 176 + Correspondence to: NDF From: Amy Ruff,November 28, 1947 + + + + + + 17 + 177 + Correspondence to: NDF From: Ruth Stringer,December 3, 1947 + + + + + + 17 + 178 + Correspondence to: NDF From: Burt and Bertie,December 10, 1947 + + + + + + 17 + 179 + Correspondence to: NDF From: Dorothy Finley,December 12, 1947 + + + + + + 17 + 180 + Correspondence to: NDF From: Pruda Wise,December 13, 1947 + + + + + + 17 + 181 + Correspondence to: NDF From: Matie, Jud, and Lura,December 14, 1947 + + + + + + 17 + 182 + Correspondence to: NDF From: Ruth Ludlow,December 18, 1947 + + + + + + 17 + 183 + Correspondence to: NDF From: Nina and John Grindatti,December 18, 1947 + + + + + + 17 + 184 + Correspondence to: NDF From: Mrs. L. D. Abbott,December 23, 1947 + + + + + + 17 + 185 + Correspondence to: NDF From: Charlotte,December 24, 1947 + + + + + + 17 + 186 + Correspondence to: NDF From: Mrs. Dana Parker,December 24, 1947 + + + + + + 17 + 187 + Correspondence to: NDF From: Bessie,December 27, 1947 + + + + + + 17 + 188 + Correspondence to: NDF From: Harry C. Finley,December 28, 1947 + + + + + + 17 + 189 + Correspondence to: NDF From: Almeda Burgess,December 29, 1947 + + + + + + 17 + 190 + Correspondence to: NDF From: Gerty Davis,January 2, 1948 + + + + + + 17 + 191 + Correspondence to: NDF From: Harry and Dorothy Finley,January 3, 25, 1948 + + + + + + 17 + 192 + Correspondence to: NDF From: Flossie Foster,January 5, 1948 + + + + + + 17 + 193 + Correspondence to: NDF From: Dee Coater,January 9, 1948 + + + + + + 17 + 194 + Correspondence to: NDF From: Jerry Finley and Kent,January 10, 1948 + + + + + + 17 + 195 + Correspondence to: NDF From: Jud, Matie, and Lura,January 11, 1948 + + + + + + 17 + 196 + Correspondence to: NDF From: Zoe Davis,January 15, 20, 29, 1948 + + + + + + 17 + 197 + Correspondence to: NDF From: Dorothy Parker,January 20, 1948 + + + + + + 17 + 198 + Correspondence to: NDF From: Zarita Saxton,January 29, 1948 + + + + + + 17 + 199 + Correspondence to: NDF From: Pruda Wise,February 4, 1948 + + + + + + 17 + 200 + Correspondence to: NDF From: Jerry Finley,February 4, 12, 1948 + + + + + + 17 + 201 + Correspondence to: NDF From: Nina and John Grindatti,February 10, 1948 + + + + + + 17 + 202 + Correspondence to: NDF From: Flossie Foster,February 15, 1948 + + + + + + 17 + 203 + Correspondence to: NDF From: Edith Sheehan,February 26, 1948 + + + + + + 17 + 204 + Correspondence to: NDF From: Harry and Zoe Davis,March 2, 7, 9, 1948 + + + + + + 17 + 205 + Correspondence to: NDF From: Zoe Davis,March 2, 17, 1948 + + + + + + 17 + 206 + Correspondence to: NDF From: Flossie Foster,March 13, 1948 + + + + + + 17 + 207 + Correspondence to: NDF From: Dorothy Parker,March 17, 1948 + + + + + + 17 + 208 + Correspondence to: NDF From: Nina Grindatti,March 20, 31, 1948 + + + + + + 17 + 209 + Correspondence to: NDF From: Dorothy Finley,March 20, 31, 1948 + + + + + + 17 + 210 + Correspondence to: NDF From: Zoe Davis,April 1-2, 15, 28, 1948 + + + + + + 17 + 211 + Correspondence to: NDF From: Jerry and Theron Finley,April 3, 1948 + + + + + + 17 + 212 + Correspondence to: NDF From: Flossie Foster,April 4, 1948 + + + + + + 17 + 213 + Correspondence to: NDF From: Charlotte,April 11, 1948 + + + + + + 17 + 214 + Correspondence to: NDF From: Nina Grindatti,April 14, 1948 + + + + + + 17 + 215 + Correspondence to: NDF From: Dorothy Finley,April 20, 23, 1948 + + + + + + 17 + 216 + Correspondence to: NDF From: Nina and John Grindatti,May 5, 1948 + + + + + + 17 + 217 + Correspondence to: NDF From: Ruth Stringer,May 6, 21, 1948 + + + + + + 17 + 218 + Correspondence to: NDF From: Jerry Finley,June 11, 1948 + + + + + + 17 + 219 + Correspondence to: NDF From: Dorothy Finley,June 28, 1948 + + + + + + 17 + 220 + Correspondence to: NDF From: Harry and Dorothy Finley,July 7, 11, 1948 + + + + + + 17 + 221 + Correspondence to: NDF From: Dorothy Finley,July 15, 1948 + + + + + + 17 + 222 + Correspondence to: NDF From: Dorothy and Harry Finley,August 7, 23, 1948 + + + + + + 17 + 223 + Correspondence to: NDF From: Dorothy and Harry Finley,September 6, 1948 + + + + + + 17 + 224 + Correspondence to: NDF From: Kent (of Theron and Jerry Finley),September 13, 1948 + + + + + + 17 + 225 + Correspondence to: NDF From: Gerty Davis,September 27, 1948 + + + + + + 17 + 226 + Correspondence to: NDF From: Dorothy Finley,October 11, 18, 28, 1948 + + + + + + 17 + 227 + Correspondence to: NDF (Mom, Grandmother) From: Dorothy Finley,November 1, 3, 8, 28, 1948 + + + + + + 17 + 228 + Correspondence to: NDF From: Libbie Elmer,November 3, 1948 + + + + + + 17 + 229 + Correspondence to: NDF From: Ethel,November 5, 1948 + + + + + + 17 + 230 + Correspondence to: NDF From: Theron and Jerry Finley,November 29, 1948 + + + + + + 17 + 231 + Correspondence to: NDF From: Theron and Jerry Finley,December 4, 21, 1948 + + + + + + 17 + 232 + Correspondence to: NDF From: Harry and Dorothy Finley,December 8, 26, 1948 + + + + + + 18 + 1 + Correspondence to: NDF From: Jerry Finley and Kent,January 4, 1949 + + + + + + 18 + 2 + Correspondence to: NDF From: Nina and John Grindatti,January 22, 1949 + + + + + + 18 + 3 + Correspondence to: NDF From: Dorothy and Harry Finley,February 1, 13, 20, 1949 + + + + + + 18 + 4 + Correspondence to: NDF From: Dorothy and Harry Finley,February 23, 28, 1949 + + + + + + 18 + 5 + Correspondence to: NDF From: Jerry and Theron Finley,February 17, 1949 + + + + + + 18 + 6 + Correspondence to: NDF From: Theron W. Finley,March 10, 1949 + + + + + + 18 + 7 + Correspondence to: NDF From: Dorothy Finley,March 12, 1949 + + + + + + 18 + 8 + Correspondence to: NDF From: Kent,March 29, 1949 + + + + + + 18 + 9 + Correspondence to: NDF From: Harry and Dorothy Finley,April 9, 22, 1949 + + + + + + 18 + 10 + Correspondence to: NDF From: Jerry and Theron Finley,April 10-11, 24, 1949 + + + + + + 18 + 11 + Correspondence to: NDF From: Jerry and Theron Finley,April 26, 1949 + + + + + + 18 + 12 + Correspondence to: NDF From: Theron W, Finley,May [no day], 1949 + + + + + + 18 + 13 + Correspondence to: NDF From: Jerry Finley and Kent,May 2, 1949 + + + + + + 18 + 14 + Correspondence to: NDF From: Harry, Dorothy, and Pamela Finley,May 4, 6, 10, 23, 1949 + + + + + + 18 + 15 + Correspondence to: NDF From: Dorothy and Harry Finley,June 19, 26, 30, 1949 + + + + + + 18 + 16 + Correspondence to: NDF From: Jerry Finley and Kent,June 6, 1949 + + + + + + 18 + 17 + Correspondence to: NDF From: Theron W. Finley,July 3, 1949 + + + + + + 18 + 18 + Correspondence to: NDF From: Dorothy and Harry Finley,July 17, 24, 1949 + + + + + + 18 + 19 + Correspondence to: NDF From: Jerry Finley and Kent,July 12, 30, 1949 + + + + + + 18 + 20 + Correspondence to: NDF From: Harry and Dorothy Finley,August 5, 15, 23, 1949 + + + + + + 18 + 21 + Correspondence to: NDF From: Harry and Dorothy Finley,August 24, 1949 + + + + + + 18 + 22 + Correspondence to: NDF From: Jerry and Theron Finley and Kent,August 31, 1949 + + + + + + 18 + 23 + Correspondence to: NDF From: Dorothy Finley,September 17, 27, 1949 + + + + + + 18 + 24 + Correspondence to: NDF From: Theron and Jerry Finley and Kent,September 6, 27, 1949 + + + + + + 18 + 25 + Correspondence to: NDF From: Jerry Finley,October 13, 1949 + + + + + + 18 + 26 + Correspondence to: NDF From: Dorothy Finley,October 24, 1949 + + + + + + 18 + 27 + Correspondence to: NDF From: Dorothy Finley,November 4, 30, 1949 + + + + + + 18 + 28 + Correspondence to: NDF From: Harry C. Finley,November 11, 1949 + + + + + + 18 + 29 + Correspondence to: NDF From: Theron and Jerry Finley and Kent,November 13, 1949 + + + + + + 18 + 30 + Correspondence to: NDF From: Dorothy Finley,December 5, 1949 + + + + + + 18 + 31 + Correspondence to: NDF From: Harry C. Finley,December 28, 1949 + + + + + + 18 + 32 + Correspondence to: NDF From: Theron and Jerry Finley and Kent,January 11, 1950 + + + + + + 18 + 33 + Correspondence to: NDF From: Dorothy and Harry Finley,January 25, 1950 + + + + + + 18 + 34 + Correspondence to: NDF From: Harry C. Finley,February 6, 1950 + + + + + + 18 + 35 + Correspondence to: NDF From: Dorothy Finley,February 21, 24, 1950 + + + + + + 18 + 36 + Correspondence to: NDF From: Jerry and Theron Finley and Kent,March 6, 1950 + + + + + + 18 + 37 + Correspondence to: NDF From: Harry and Dorothy Finley,March 20, 1950 + + + + + + 18 + 38 + Correspondence to: NDF From: Dorothy Finley,April 10, 20?, 1950 + + + + + + 18 + 39 + Correspondence to: NDF From: Jerry Finley,April 28, 1950 + + + + + + 18 + 40 + Correspondence to: NDF From: Dorothy and Harry Finley,May 7, 15-16, 1950 + + + + + + 18 + 41 + Correspondence to: NDF From: Dorothy Finley,June 14, 1950 + + + + + + 18 + 42 + Correspondence to: NDF From: Harry and Dorothy Finley,July 2, 10, 20, 1950 + + + + + + 18 + 43 + Correspondence to: NDF From: Jerry Finley,July 31, 1950 + + + + + + 18 + 44 + Correspondence to: NDF From: Harry and Dorothy Finley,August 7, 12, 23, 1950 + + + + + + 18 + 45 + Correspondence to: NDF From: Harry and Dorothy Finley,August 27, 31, 1950 + + + + + + 18 + 46 + Correspondence to: NDF From: Jerry Finley,August 15, 26, 1950 + + + + + + 18 + 47 + Correspondence to: NDF From: Jerry Finley and Kent,September 10, 21, 1950 + + + + + + 18 + 48 + Correspondence to: NDF From: Theron W. Finley,September 16, 1950 + + + + + + 18 + 49 + Correspondence to: NDF From: Harry and Dorothy Finley,September 17, 24, 1950 + + + + + + 18 + 50 + Correspondence to: NDF From: Harry and Dorothy Finley,October 2, 7, 15, 1950 + + + + + + 18 + 51 + Correspondence to: NDF From: Harry and Dorothy Finley,October 20-21, 1950 + + + + + + 18 + 52 + Correspondence to: Jerry Finley From: Theron W. Finley,October 15, 1950 + + + + + + 18 + 53 + Correspondence to: NDF From: Theron and Jerry Finley,October 15, 25, 1950 + + + + + + 18 + 54 + Correspondence to: NDF From: Dorothy and Harry Finley,November 2, 6, 13, 1950 + + + + + + 18 + 55 + Correspondence to: NDF From: Dorothy Finley,November 18, 1950 + + + + + + 18 + 56 + Correspondence to: NDF From: Nina and John Grindatti,November 8, 1950 + + + + + + 18 + 57 + Correspondence to: NDF From: Harry C. Finley,November 20, 23, 1950 + + + + + + 18 + 58 + Correspondence to: NDF From: Jerry Finley,November 26, 1950 + + + + + + 18 + 59 + Correspondence to: NDF From: Jerry Finley,December 1, 26, 1950 + + + + + + 18 + 60 + Correspondence to: NDF From: Western Union (Notice of Theron's Injury),December 12, 1950 + + + + + + 18 + 61 + Correspondence to: NDF From: Western Union (Notice of Theron's Injury),January 15, 1951 + + + + + + 18 + 62 + Correspondence to: NDF From: Dorothy Newell,December 26, 1950 + + + + + + 18 + 63 + Correspondence to: NDF and Mr. and Mrs. W. H. Davis From: Dorothy Finley,January 6, 20, 1951 + + + + + + 18 + 64 + Correspondence to: Jerry Finley and Kent From: Theron W. Finley,January 8, 1951 + + + + + + 18 + 65 + Correspondence to: NDF From: Theron and Jerry Finley and Kent,January 9, 11, 18, 1951 + + + + + + 18 + 66 + Correspondence to: NDF From: Dorothy Finley,February 4, 19, 1951 + + + + + + 18 + 67 + Correspondence to: NDF From: Harry C. Finley,February 12, 1951 + + + + + + 18 + 68 + Correspondence to: NDF From: Jerry and Theron Finley,February 15, 18, 1951 + + + + + + 18 + 69 + Correspondence to: NDF From: Navy Department,February 21, 1951 + + + + + + 18 + 70 + Correspondence to: NDF From: Dorothy and Harry Finley,March 22, 26, 1951 + + + + + + 18 + 71 + Correspondence to: NDF From: Theron W. Finley,March 23, 1951 + + + + + + 18 + 72 + Correspondence to: NDF From: Jerry Finley,March 25, 1951 + + + + + + 18 + 73 + Correspondence to: NDF From: John Grindatti,March 29, 1951 + + + + + + 18 + 74 + Correspondence to: NDF From: Dorothy Finley,April 9, 30, 1951 + + + + + + 18 + 75 + Correspondence to: NDF From: Theron and Jerry Finley,April 10, 14, 26, 1951 + + + + + + 18 + 76 + Correspondence to: NDF From: Dorothy Finley,May 7, 1951 + + + + + + 18 + 77 + Correspondence to: NDF From: Nina Grindatti,May 12, 1951 + + + + + + 18 + 78 + Correspondence to: NDF From: Harry and Dorothy Finley,May 14, 31, 1951 + + + + + + 18 + 79 + Correspondence to: NDF From: Jerry Finley,June 17, 1951 + + + + + + 18 + 80 + Correspondence to: NDF From: Dorothy Finley,June 18, 1951 + + + + + + 18 + 81 + Correspondence to: NDF From: Jerry and Theron Finley,July 2, 11, 17, 1951 + + + + + + 18 + 82 + Correspondence to: NDF From: Dorothy Finley,July 12, 1951 + + + + + + 18 + 83 + Correspondence to: NDF From: Dorothy Finley,August 10, 1951 + + + + + + 18 + 84 + Correspondence to: NDF From: Theron and Jerry Finley,August 27, 29, 1951 + + + + + + 18 + 85 + Correspondence to: NDF From: Nina Grindatti,September 5, 1951 + + + + + + 18 + 86 + Correspondence to: NDF From: Theron and Jerry Finley,September 4, 20, 1951 + + + + + + 18 + 87 + Correspondence to: NDF From: Dorothy Finley,September 27, 1951 + + + + + + 18 + 88 + Correspondence to: NDF From: Dorothy Finley,October 12, 1951 + + + + + + 18 + 89 + Correspondence to: NDF From: Dorothy Finley,November 5, 27, 1951 + + + + + + 18 + 90 + Correspondence to: NDF From: Jerry Finley,November 15, 1951 + + + + + + 18 + 91 + Correspondence to: NDF From: Nina Grindatti,November 20, 1951 + + + + + + 18 + 92 + Correspondence to: NDF From: Dorothy Finley,December 14, 1951 + + + + + + 18 + 93 + Correspondence to: NDF From: Jerry Finley,December 28, 1951 + + + + + + 18 + 94 + Correspondence to: NDF From: Marydena Davis,January 3, 1952 + + + + + + 18 + 95 + Correspondence to: NDF From: Dorothy Finley,January 7, 26, 1952 + + + + + + 18 + 96 + Correspondence to: NDF From: Jerry Finley,January 3, 1952 + + + + + + 18 + 97 + Correspondence to: NDF From: Gerty Davis,February 13, 1952 + + + + + + 18 + 98 + Correspondence to: NDF From: Dorothy Finley,February 13, 27, 1952 + + + + + + 18 + 99 + Correspondence to: NDF From: Jerry and Theron Finley,February 27, 1952 + + + + + + 18 + 100 + Correspondence to: NDF From: Theron W. Finley,March 16, 1952 + + + + + + 18 + 101 + Correspondence to: NDF From: Dorothy Finley,April 1, 23, 1952 + + + + + + 18 + 102 + Correspondence to: NDF From: Gerty Davis,April 17, 1952 + + + + + + 18 + 103 + Correspondence to: NDF From: Jerry Finley,April 29, 1952 + + + + + + 18 + 104 + Correspondence to: NDF From: Jerry Finley,May 4, 8, 1952 + + + + + + 18 + 105 + Correspondence to: NDF From: Dorothy Finley,May 6, 1952 + + + + + + 18 + 106 + Correspondence to: NDF From: Dorothy and Harry Finley,June 1, 5, 26, 30, 1952 + + + + + + 18 + 107 + Correspondence to: NDF From: Dorothy Finley,July 15, 1952 + + + + + + 18 + 108 + Correspondence to: NDF From: Dorothy Finley,August 11, 1952 + + + + + + 18 + 109 + Correspondence to: NDF From: Harry and Dorothy Finley,September 2, 7, 1952 + + + + + + 18 + 110 + Correspondence to: NDF From: Jerry Finley,September 3, 26, 1952 + + + + + + 18 + 111 + Correspondence to: NDF From: Dorothy Finley,October 2, 27, 1952 + + + + + + 18 + 112 + Correspondence to: NDF From: Marydena Davis,October 9, 1952, undated + + + + + + 18 + 113 + Correspondence to: NDF From: Gerty Davis,October 30, 1952 + + + + + + 18 + 114 + Correspondence to: NDF From: Dorothy Finley,November 8, 1952 + + + + + + 18 + 115 + Correspondence to: NDF From: Wilson and Gerty Davis,November 9, 1952 + + + + + + 18 + 116 + Correspondence to: NDF From: Jerry and Theron Finley,November 14, 1952 + + + + + + 18 + 117 + Correspondence to: NDF From: Gerty Davis,December 9, 1952 + + + + + + 18 + 118 + Correspondence to: NDF From: Dorothy Finley,December 12 1952 + + + + + + 18 + 119 + Correspondence to: NDF From: Adrian, Loraine, and Garth DeKorte,December 10, 1952 + + + + + + 18 + 120 + Correspondence to: NDF From: Dorothy Finley,January 9-10, 1953 + + + + + + 18 + 121 + Correspondence to: NDF From: Jerry Finley,January 13, 1953 + + + + + + 18 + 122 + Correspondence to: NDF From: Edward Finley,January 14, 1953 + + + + + + 18 + 123 + Correspondence to: NDF, Mr. and Mrs. W. H. Davis From: Dorothy Finley, Gerty Davis,January 17, 1953 + + + + + + 18 + 124 + Correspondence to: NDF From: Wilson L. Davis,January 25, 1953 + + + + + + 18 + 125 + Correspondence to: NDF From: Wilson L. Davis,February 1, 1953 + + + + + + 18 + 126 + Correspondence to: NDF From: Dorothy Finley,April 30, 1953 + + + + + + 18 + 127 + Correspondence to: NDF From: Jerry Finley,May 5, 14, 1953 + + + + + + 18 + 128 + Correspondence to: NDF From: Emmy Honeywell,May 20, 1953 + + + + + + 18 + 129 + Correspondence to: NDF From: Marydena and Gene Duckworth,June 27, 1953 + + + + + + 18 + 130 + Correspondence to: NDF From: Jerry and Theron Finley,July 4, 1953 + + + + + + 18 + 131 + Correspondence to: NDF From: Gerty Davis,July 9, [no day], 1953 + + + + + + 18 + 132 + Correspondence to: NDF From: Dorothy Finley,August 2, 1953 + + + + + + 18 + 133 + Correspondence to: NDF From: Mrs. Albam Mehling,August 12, 1953 + + + + + + 18 + 134 + Correspondence to: NDF From: Jerry Finley,August 25, 1953 + + + + + + 18 + 135 + Correspondence to: NDF From: Gerty Davis,September 13, 1953 + + + + + + 18 + 136 + Correspondence to: NDF From: Dorothy Finley,September 17, 1953 + + + + + + 18 + 137 + Correspondence to: NDF From: Thelma Hayes and All,November 11, 1953 + + + + + + 18 + 138 + Correspondence to: NDF From: Adrian, Loraine, and Garth DeKorte,December 1, 1953 + + + + + + 18 + 139 + Correspondence to: NDF From: Dorothy Finley,December 1, 7, 1953 + + + + + + 18 + 140 + Correspondence to: NDF From: Geraldine,December 19, 1953 + + + + + + 18 + 141 + Correspondence to: NDF From: N. A. Corbett,January 12, 1954 + + + + + + 18 + 142 + Correspondence to: NDF From: Harry C. Finley,January 25, 1954 + + + + + + 18 + 143 + Correspondence to: NDF From: Gene and Marydena Duckworth,February 9, 1954 + + + + + + 18 + 144 + Correspondence to: NDF From: Milo Farmer, Jr.,February 17, 1954 + + + + + + 18 + 145 + Correspondence to: NDF From: Jennie G.,March 5, 1954 + + + + + + 18 + 146 + Correspondence to: NDF From: Gene and Marydena Duckworth,March 18, 1954 + + + + + + 18 + 147 + Correspondence to: NDF From: Jessie,March 22, 1954 + + + + + + 18 + 148 + Correspondence to: NDF From: Dorothy Parker,April 14, 1954 + + + + + + 18 + 149 + Correspondence to: NDF From: Pruda Wise,April 26, 1954 + + + + + + 18 + 150 + Correspondence to: NDF From: Gerty Davis,April 28, 1954 + + + + + + 18 + 151 + Correspondence to: NDF From: Gaylord Clone,May 6, 1954 + + + + + + 18 + 152 + Correspondence to: NDF From: Kent G. Phillips and Jerry Finley,May 7, 10, 1954 + + + + + + 18 + 153 + Correspondence to: NDF From: Thomas, Dee,May 7, 1954 + + + + + + 18 + 154 + Correspondence to: NDF From: Gerty and Wilson Davis,May 9, 25, 1954 + + + + + + 18 + 155 + Correspondence to: NDF From: Thelma and All,May 17, 1954 + + + + + + 18 + 156 + Correspondence to: NDF From: Gene and Marydena Duckworth,May 19, 1954 + + + + + + 18 + 157 + Correspondence to: NDF From: Jud and Matie,May 25, 29, 1954 + + + + + + 18 + 158 + Correspondence to: NDF From: DeVere J. Noakes,May 29, 1954 + + + + + + 18 + 159 + Correspondence to: NDF From: Gerty Davis,June 8, 19, 1954 + + + + + + 18 + 160 + Correspondence to: NDF From: Gaylord J. Clone,June 12, 1954 + + + + + + 18 + 161 + Correspondence to: NDF From: Tom, Dee,June 12, 1954 + + + + + + 18 + 162 + Correspondence to: NDF From: Jud and Matie,June 24, 1954 + + + + + + 18 + 163 + Correspondence to: NDF From: Gerty Davis,July 13, 29, 1954 + + + + + + 18 + 164 + Correspondence to: NDF From: Harry and Dorothy Finley,July 14-15, 18, 1954 + + + + + + 18 + 165 + Correspondence to: NDF From: Harry and Dorothy Finley,July 23, 1954 + + + + + + 18 + 166 + Correspondence to: NDF From: Jerry Finley and Kent Phillips,August 5, 1954 + + + + + + 18 + 167 + Correspondence to: NDF From: Gaylord Clone,August 6, 1954 + + + + + + 18 + 168 + Correspondence to: NDF From: Grace West,August 7, 1954 + + + + + + 18 + 169 + Correspondence to: NDF From: Floy Hedley,August 9, 1954 + + + + + + 18 + 170 + Correspondence to: NDF From: Gene and Marydena Duckworth,August 9, 1954 + + + + + + 18 + 171 + Correspondence to: NDF From: George Mesler,August 10, 1954 + + + + + + 18 + 172 + Correspondence to: NDF From: Dorothy Finley,August 10, 31, 1954 + + + + + + 18 + 173 + Correspondence to: NDF From: Gerty Davis,August 11, 1954 + + + + + + 18 + 174 + Correspondence to: NDF From: Amy E. Reed,August 12, 1954 + + + + + + 18 + 175 + Correspondence to: NDF From: Ethel Stone,August 13, 1954 + + + + + + 18 + 176 + Correspondence to: NDF From: Helen Angell,August 13, 1954 + + + + + + 18 + 177 + Correspondence to: NDF From: Gerty Davis,September 18, 21, 1954 + + + + + + 18 + 178 + Correspondence to: NDF From: Jerry Finley,September 20, 1954 + + + + + + 18 + 179 + Correspondence to: NDF From: Gene and Marydena Duckworth,September 22, 1954 + + + + + + 18 + 180 + Correspondence to: NDF From: DeVere Hoakes,September 22, 1954 + + + + + + 18 + 181 + Correspondence to: NDF From: Dorothy Finley,September 27, 1954 + + + + + + 18 + 182 + Correspondence to: NDF From: Gaylord Clone,September 30, 1954 + + + + + + 18 + 183 + Correspondence to: NDF From: Gerty Davis,October 1, 1954 + + + + + + 18 + 184 + Correspondence to: NDF From: Nina and John Grindatti,October 10, 1954 + + + + + + 18 + 185 + Correspondence to: NDF From: Dorothy Finley,October 27, 1954 + + + + + + 18 + 186 + Correspondence to: NDF From: Nina and John Grindatti,November 1, 1954 + + + + + + 18 + 187 + Correspondence to: NDF From: Jerry Finley,November 8, 1954 + + + + + + 18 + 188 + Correspondence to: NDF From: Gerty Davis,November 11 , 1954 + + + + + + 18 + 189 + Correspondence to: NDF From: Gaylord Clone,November 23, 1954 + + + + + + 18 + 190 + Correspondence to: NDF From: Dorothy Finley,December 3, 1954 + + + + + + 18 + 191 + Correspondence to: NDF From: Gaylord Clone,December 9, 1954 + + + + + + 19 + 1 + Correspondence to: NDF From: Jerry Finley,January 5, 1955 + + + + + + 19 + 2 + Correspondence to: NDF From: Dorothy Finley,January 8, 1955 + + + + + + 19 + 3 + Correspondence to: NDF From: Dana C. Parker,January 24, 1955 + + + + + + 19 + 4 + Correspondence to: NDF From: Gerty Davis,January 28, 1955 + + + + + + 19 + 4 + Correspondence to: NDF From: Gerty Davis,March 3, 1955 + + + + + + 19 + 5 + Correspondence to: NDF From: DeVere Noakes,March 6, 1955 + + + + + + 19 + 6 + Correspondence to: NDF From: Dorothy Finley,March 9, 1955 + + + + + + 19 + 7 + Correspondence to: NDF From: Gerty Davis,March 15, 1955 + + + + + + 19 + 8 + Correspondence to: NDF From: Nina and John Grindatti,March 23, 1955 + + + + + + 19 + 9 + Correspondence to: NDF From: Theron W. Finley,April 8, 23, 1955 + + + + + + 19 + 10 + Correspondence to: NDF From: Gerty Davis,April 16, 1955 + + + + + + 19 + 11 + Correspondence to: NDF From: Dorothy Finley,April 18, 1955 + + + + + + 19 + 12 + Correspondence to: NDF From: Gerty and Wilson Davis,April 5, May 24, 1955 + + + + + + 19 + 13 + Correspondence to: NDF From: Gene and Marydena Duckworth,May 13, 1955 + + + + + + 19 + 14 + Correspondence to: NDF From: Dorothy Finley,May 23, 1955 + + + + + + 19 + 15 + Correspondence to: NDF From: Gerty Davis,June 6, 1955 + + + + + + 19 + 16 + Correspondence to: NDF From: Gene and Marydena Duckworth,June 17, 1955 + + + + + + 19 + 17 + Correspondence to: NDF From: Dorothy Finley,June 28, 1955 + + + + + + 19 + 18 + Correspondence to: NDF From: Kent Phillips,July 1, 1955 + + + + + + 19 + 19 + Correspondence to: NDF From: Jerry Finley,July 19, 1955 + + + + + + 19 + 20 + Correspondence to: NDF From: Gerty Davis,July 25, 1955 + + + + + + 19 + 21 + Correspondence to: NDF From: Gerty Davis,August 10, 20, 31, 1955 + + + + + + 19 + 22 + Correspondence to: NDF From: Dorothy Finley,August 2, 1955 + + + + + + 19 + 23 + Correspondence to: NDF From: Gene and Marydena Duckworth,August 14, 1955 + + + + + + 19 + 24 + Correspondence to: NDF From: DeVere Noakes,August 16, 1955 + + + + + + 19 + 25 + Correspondence to: NDF From: Jerry Finley,August 26, 1955 + + + + + + 19 + 26 + Correspondence to: NDF From: Theron W. Finley,September 11, 1955 + + + + + + 19 + 27 + Correspondence to: NDF From: Gerty Davis, Dave,September 13-14, 1955 + + + + + + 19 + 28 + Correspondence to: NDF From: Gene and Marydena Duckworth,September 19, 1955 + + + + + + 19 + 29 + Correspondence to: NDF From: Dorothy Finley,October 8, 1955 + + + + + + 19 + 30 + Correspondence to: NDF From: Gene and Marydena Duckworth,October 12, 1955 + + + + + + 19 + 31 + Correspondence to: NDF From: Gerty Davis,October 16, 1955 + + + + + + 19 + 32 + Correspondence to: NDF From: Dorothy Finley,November 3, 1955 + + + + + + 19 + 34 + Correspondence to: NDF From: Gerty and Wilson Davis,November 7, 16, 1955 + + + + + + 19 + 35 + Correspondence to: NDF From: Gene and Marydena Duckworth,November 15, 1955 + + + + + + 19 + 36 + Correspondence to: NDF From: Jerry Finley,November 16, 1955 + + + + + + 19 + 37 + Correspondence to: NDF From: Gerty Davis,December 11, 27, 1955 + + + + + + 19 + 38 + Correspondence to: NDF From: Gene and Marydena Duckworth,December 13, 1955 + + + + + + 19 + 39 + Correspondence to: NDF From: Dorothy Finley,December 20, 1955 + + + + + + 19 + 40 + Correspondence to: NDF From: Gene and Marydena Duckworth,January 4, 1956 + + + + + + 19 + 41 + Correspondence to: NDF From: Gene and Marydena Duckworth,January 19, 1956 + + + + + + 19 + 42 + Correspondence to: NDF From: Gerty Davis,January 22, 1956 + + + + + + 19 + 43 + Correspondence to: NDF From: Gerty Davis,February 5, 12-13, 1956 + + + + + + 19 + 44 + Correspondence to: NDF From: Gerty Davis,February 20, 1956 + + + + + + 19 + 45 + Correspondence to: NDF From: Dorothy Finley,February 6, 1956 + + + + + + 19 + 46 + Correspondence to: NDF From: Gene and Marydena Duckworth,February 23, 1956 + + + + + + 19 + 47 + Correspondence to: NDF From: Gene and Marydena Duckworth,March 10, 1956 + + + + + + 19 + 48 + Correspondence to: NDF From: Dorothy Finley,March 12, 1956 + + + + + + 19 + 49 + Correspondence to: NDF From: Wilson and Gerty Davis,March 24, 1956 + + + + + + 19 + 50 + Correspondence to: NDF From: DeVere Noakes,March 26, 1956 + + + + + + 19 + 51 + Correspondence to: NDF From: Gene and Marydena Duckworth,April 5, 16, 19, 1956 + + + + + + 19 + 52 + Correspondence to: NDF From: Gerty Davis,April 8, 1956 + + + + + + 19 + 53 + Correspondence to: NDF From: Jerry Finley,April 21, 1956 + + + + + + 19 + 54 + Correspondence to: NDF From: Nina and John Grindatti,April 24, 1956 + + + + + + 19 + 55 + Correspondence to: NDF From: Gerty Davis,May 4, 1956 + + + + + + 19 + 56 + Correspondence to: NDF From: Ruth Stringer, Tom, and Ted,May 11, 1956 + + + + + + 19 + 57 + Correspondence to: NDF From: Gene and Marydena Duckworth,May 29, 1956 + + + + + + 19 + 58 + Correspondence to: NDF From: Gerty Davis,June 3-4, 28, 1956 + + + + + + 19 + 59 + Correspondence to: NDF From: Nina and John Grindatti,June 18, 1956 + + + + + + 19 + 60 + Correspondence to: NDF From: Dorothy Finley,June 30, 1956 + + + + + + 19 + 61 + Correspondence to: NDF From: Harry C. Finley,June 30, 1956 + + + + + + 19 + 62 + Correspondence to: NDF From: Nina and John Grindatti,July 10, 1956 + + + + + + 19 + 63 + Correspondence to: NDF From: Gerty Davis,July 30, 1956 + + + + + + 19 + 64 + Correspondence to: NDF From: Gerty Davis,August 6, 1956 + + + + + + 19 + 65 + Correspondence to: NDF From: Dorothy Finley,August 10, 1956 + + + + + + 19 + 66 + Correspondence to: NDF From: Gene and Marydena Duckworth,August 17, 1956 + + + + + + 19 + 67 + Correspondence to: NDF From: Theron W. Finley,August 19, 1956 + + + + + + 19 + 68 + Correspondence to: NDF From: Gerty Davis,September 14, 16, 1956 + + + + + + 19 + 69 + Correspondence to: NDF From: Gene and Marydena Duckworth,September 17, 1956 + + + + + + 19 + 70 + Correspondence to: NDF From: Gerty and Wilson Davis,October 3, 11, 23, 1956 + + + + + + 19 + 71 + Correspondence to: NDF From: Dorothy Finley,October 1, 15, 1956 + + + + + + 19 + 72 + Correspondence to: NDF From: Dorothy Finley,November 19, 1956 + + + + + + 19 + 73 + Correspondence to: NDF From: Jerry Finley,November 20, 1956 + + + + + + 19 + 74 + Correspondence to: NDF From: Gene and Marydena Duckworth,November 25, 1956 + + + + + + 19 + 75 + Correspondence to: NDF From: Wilson and Gerty Davis,December 2, 1956 + + + + + + 19 + 76 + Correspondence to: NDF From: Jud and Matie,December 7, 1956 + + + + + + 19 + 77 + Correspondence to: NDF From: Sheri Smith,December 25, 1956 + + + + + + 19 + 78 + Correspondence to: NDF From: Jerry Finley,December 26, 1956 + + + + + + 19 + 79 + Correspondence to: NDF From: Dorothy Finley,January 2, 1957 + + + + + + 19 + 80 + Correspondence to: NDF From: Gerty and Wilson Davis,February 4, 13, 19, 1957 + + + + + + 19 + 81 + Correspondence to: NDF From: Jerry Finley,February 5, 1957 + + + + + + 19 + 82 + Correspondence to: NDF From: Nina Grindatti,February 6, 1957 + + + + + + 19 + 83 + Correspondence to: NDF From: Gene and Marydena Duckworth,February 7, 1957 + + + + + + 19 + 84 + Correspondence to: NDF From: Gerty and Wilson Davis,March 9, 28, 1957 + + + + + + 19 + 85 + Correspondence to: NDF From: Gene and Marydena Duckworth,March 7, 27, 1957 + + + + + + 19 + 86 + Correspondence to: NDF From: Dorothy Finley,March 19, 1957 + + + + + + 19 + 87 + Correspondence to: NDF From: Nina and John Grindatti,March 24, 1957 + + + + + + 19 + 88 + Correspondence to: NDF From: Charlotte,April 2, 1957 + + + + + + 19 + 89 + Correspondence to: NDF From: Wilson and Gerty Davis,April 14, 1957 + + + + + + 19 + 90 + Correspondence to: NDF From: Gene and Marydena Duckworth,April 17, 1957 + + + + + + 19 + 91 + Correspondence to: NDF From: Charlotte,April 25, 1957 + + + + + + 19 + 92 + Correspondence to: NDF From: Dorothy Finley,May 8, 21, 1957 + + + + + + 19 + 93 + Correspondence to: NDF From: Jud and Matie,May 19, 1957 + + + + + + 19 + 94 + Correspondence to: NDF From: Gene, Marydena, and Anna-Jeanelle Duckworth,May 23, 1957 + + + + + + 19 + 95 + Correspondence to: NDF From: Wilson and Gerty Davis,May 24, 1957 + + + + + + 19 + 96 + Correspondence to: NDF From: Amy Ruff,May 26, 1957 + + + + + + 19 + 97 + Correspondence to: NDF From: Margaret Abbott,May 28, 1957 + + + + + + 19 + 98 + Correspondence to: NDF From: Gerty Davis,May 30, 1957 + + + + + + 19 + 99 + Correspondence to: NDF From: Alice Gault,May 31, 1957 + + + + + + 19 + 100 + Correspondence to: NDF From: Gene, Marydena, and Anna-Jeanelle Duckworth,June 3, 1957 + + + + + + 19 + 101 + Correspondence to: NDF From: Gerty Davis,June 4, 10, 1957 + + + + + + 19 + 102 + Correspondence to: NDF From: Gene, Marydena, and Anna-Jeanelle Duckworth,June 12, 18, 1957 + + + + + + 19 + 103 + Correspondence to: NDF From: Dorothy Finley,June 10, 1957 + + + + + + 19 + 104 + Correspondence to: NDF From: Delores,June 18, 1957 + + + + + + 19 + 105 + Correspondence to: NDF From: Dorothy Finley,August 1, 1957 + + + + + + 19 + 106 + Correspondence to: NDF From: Wilson and Gerty Davis,August 7, 1957 + + + + + + 19 + 107 + Correspondence to: NDF From: Jud and Matie,August 7, 28, 1957 + + + + + + 19 + 108 + Correspondence to: NDF From: Mary Gardner Beaucroft,August 15, 1957 + + + + + + 19 + 109 + Correspondence to: NDF From: Wilson and Gerty Davis,September 2, 30, 1957 + + + + + + 19 + 110 + Correspondence to: NDF From: Gene, Marydena, and Anna-Jeanelle Duckworth,September 10, 19, 1957 + + + + + + 19 + 111 + Correspondence to: NDF From: Jud and Matie,September 21, 1957 + + + + + + 19 + 112 + Correspondence to: NDF From: Dorothy Finley,September 23, 1957 + + + + + + 19 + 113 + Correspondence to: NDF From: Gene, Marydena, and Anna-Jeanelle Duckworth,October 21, 28, 1957 + + + + + + 19 + 114 + Correspondence to: NDF From: Jerry Finley,October 15, 1957 + + + + + + 19 + 115 + Correspondence to: NDF From: Gerty Davis,October 21, 1957 + + + + + + 19 + 116 + Correspondence to: NDF From: Dorothy Finley,October 31, 1957 + + + + + + 19 + 117 + Correspondence to: NDF From: Gerty and Wilson Davis,November 4, 12, 1957 + + + + + + 19 + 118 + Correspondence to: NDF From: Gene, Marydena, and Anna-Jeanelle Duckworth,November 14, 1957 + + + + + + 19 + 119 + Correspondence to: NDF From: Dorothy Finley,November 21, 1957 + + + + + + 19 + 120 + Correspondence to: NDF From: Jim Stringer,November 25, 1957 + + + + + + 19 + 121 + Correspondence to: NDF From: Gerty and Wilson Davis,December 1, 1957 + + + + + + 19 + 122 + Correspondence to: NDF From: Marshall Keltz,December 6, 1957 + + + + + + 19 + 123 + Correspondence to: NDF From: Harry and Dorothy Finley,December 22, 1957 + + + + + + 19 + 124 + Correspondence to: NDF From: Gene, Marydena, and Anna-Jeanelle Duckworth,December 29, 1957 + + + + + + 19 + 125 + Correspondence to: NDF From: Gerty Davis,January 2, 7, 14, 16, 1958 + + + + + + 19 + 126 + Correspondence to: NDF From: Gerty Davis,January 27, 1958 + + + + + + 19 + 127 + Correspondence to: NDF From: Jud and Matie,January 3, 1958 + + + + + + 19 + 128 + Correspondence to: NDF From: Dorothy Finley,January 9, 1958 + + + + + + 19 + 129 + Correspondence to: NDF From: Gene, Marydena, and Anna-Jeanelle Duckworth,January 19, 1958 + + + + + + 19 + 130 + Correspondence to: NDF From: Jerry Finley,January 20, 1958 + + + + + + 19 + 131 + Correspondence to: NDF From: Flossie Foster,January 22, 1958 + + + + + + 19 + 132 + Correspondence to: NDF From: Gerty Davis,February 3, 10, 1958 + + + + + + 19 + 133 + Correspondence to: NDF From: Eva Robertson,February 6, 1958 + + + + + + 19 + 134 + Correspondence to: NDF From: Gene, Marydena, and Anna-Jeanelle Duckworth,February 6, 27, 1958 + + + + + + 19 + 135 + Correspondence to: NDF From: Dorothy Finley,February 10, 1958 + + + + + + 19 + 136 + Correspondence to: NDF From: Marian Weed,February 12, 1958 + + + + + + 19 + 137 + Correspondence to: NDF From: Dorothy Finley,March 12, 1958 + + + + + + 19 + 138 + Correspondence to: NDF From: Charlotte,March 13, 1958 + + + + + + 19 + 139 + Correspondence to: NDF From: Gerty and Wilson Davis,March 14, 1958 + + + + + + 19 + 140 + Correspondence to: NDF From: Nina and John Grindatti,March 29, 1958 + + + + + + 19 + 141 + Correspondence to: NDF From: Dorothy and Pam Finley,April 7, 1958 + + + + + + 19 + 142 + Correspondence to: NDF From: Eva Robertson,April 7, 1958 + + + + + + 19 + 143 + Correspondence to: NDF From: Jessie,April 9, 1958 + + + + + + 19 + 144 + Correspondence to: NDF From: Wilson L. Davis,April 17, 27, 1958 + + + + + + 19 + 145 + Correspondence to: NDF From: Charlotte and family,April 21, 1958 + + + + + + 19 + 146 + Correspondence to: NDF From: Gene, Marydena, and Anna-Jeanelle Duckworth,April 27, 1958 + + + + + + 19 + 147 + Correspondence to: NDF From: Jud and Matie,April 21, 1958 + + + + + + 19 + 148 + Correspondence to: NDF From: Gerty Davis,April 29, 1958 + + + + + + 19 + 149 + Correspondence to: NDF From: Dorothy Osborne,May 6, 1958 + + + + + + 19 + 150 + Correspondence to: NDF From: Gerty Davis,May 6, 8, 1958 + + + + + + 19 + 151 + Correspondence to: NDF From: Gene, Marydena, and Anna-Jeanelle Duckworth,May 13, 1958 + + + + + + 19 + 152 + Correspondence to: NDF From: Dorothy Parker,May 26, 1958 + + + + + + 19 + 153 + Correspondence to: NDF From: Dorothy Finley,June 14, 1958 + + + + + + 19 + 154 + Correspondence to: NDF From: Jerry Finley,June 20, 1958 + + + + + + 19 + 155 + Correspondence to: NDF From: Gene, Marydena, and Anna-Jeanelle Duckworth,June 25, 1958 + + + + + + 19 + 156 + Correspondence to: NDF From: Gerty Davis,June 30, 1958 + + + + + + 19 + 157 + Correspondence to: NDF From: Charlotte,July 2, 1958 + + + + + + 19 + 158 + Correspondence to: NDF From: Wilson and Gerty Davis,July 7, 14, 26, 1958 + + + + + + 19 + 159 + Correspondence to: NDF From: Gene, Marydena, and Anna-Jeanelle Duckworth,July 14, 1958 + + + + + + 19 + 160 + Correspondence to: NDF From: Jud and Matie,July 24, 1958 + + + + + + 19 + 161 + Correspondence to: NDF From: Jerry Finley,August 1, 1958 + + + + + + 19 + 162 + Correspondence to: NDF From: Gerty Davis,August 5, 1958 + + + + + + 19 + 163 + Correspondence to: NDF From: Gene, Marydena, and Anna-Jeanelle Duckworth,August 7, 1958 + + + + + + 19 + 164 + Correspondence to: NDF From: Dorothy Finley,August 19, 1958 + + + + + + 19 + 165 + Correspondence to: NDF From: John Stringer,September 3, 1958 + + + + + + 19 + 166 + Correspondence to: NDF From: Gerty and Wilson Davis,September 23, 1958 + + + + + + 19 + 167 + Correspondence to: NDF From: Jerry Finley,October [no day], 1958 + + + + + + 19 + 168 + Correspondence to: NDF From: Harry C. Finley,October 12, 1958 + + + + + + 19 + 169 + Correspondence to: NDF From: Dorothy Finley,November 3, 1958 + + + + + + 19 + 170 + Correspondence to: NDF From: Jim Stringer,December 4, 1958 + + + + + + 19 + 171 + Correspondence to: NDF From: Marshall Keltz,December 13, 1958 + + + + + + 19 + 172 + Correspondence to: NDF From: Dorothy Finley,December 16, 1958 + + + + + + 19 + 173 + Correspondence to: NDF From: Gerty Davis,undated + + + + + + 19 + 174 + Correspondence to: NDF From: Theron and Jerry Finley, Kent Phillips,December 30, 1958 + + + + + + 19 + 175 + Correspondence to: NDF From: Gerty Davis,January 1, 5, 10, 1959 + + + + + + 19 + 176 + Correspondence to: NDF From: Dorothy and Harry Finley,January 2, 8, 1959 + + + + + + 19 + 177 + Correspondence to: NDF From: Gene, Marydena, and Ann-Jeanelle Duckworth,January 9, 14, 1959 + + + + + + 19 + 178 + Correspondence to: NDF From: Gerty and Wilson Davis,February 9, 16, 1959 + + + + + + 19 + 179 + Correspondence to: NDF From: Gene, Marydena, and Ann-Jeanelle Duckworth,March 4, 1959 + + + + + + 19 + 180 + Correspondence to: NDF From: Gerty Davis,March 18, 1959 + + + + + + 19 + 181 + Correspondence to: Gerty and Wilson Davis From: NDF?, partial letter,undated + + + + + + 19 + 182 + Correspondence to: Mrs. Wilson L. (Gerty) Davis From: New England Historic Genealogical Society,[no month, day], 1978 + + + + + + 20 + 1 + Correspondence to: Unidentified From: Michigan Boys and Girls Clubs,[no month, day], 1915 + + + + + + 20 + 2 + Correspondence to: NDF From: Schoolmate,December 26, 19uu + + + + + + 20 + 3 + Correspondence to: NDF From: Frankie's Mamma,[no month, day], 19uu + + + + + + 20 + 4 + Correspondence to: NDF From: Rebecca,June 28, 19uu + + + + + + 20 + 5 + Correspondence to: NDF From: Rica Company,[no month, day], 19uu + + + + + + 20 + 6 + Correspondence to: NDF From: Hester H., Alberta M., Dorothy M., Leah L., Dorothy H,., Nettie S., Ruth M., Francis P., Margaret M., Ruberta S., Eleanor T., and Elis C.,[no month, day], 19uu + + + + + + 20 + 7 + Correspondence to: NDF From: Miscellaneous Receipts,1912-1916 + + + + + + 20 + 8 + Correspondence to: NDF From: Droodles Duckworth,[no month, day], 19uu + + + + + + 20 + 9 + Correspondence to: NDF From: W. E. R.,[no month, day], 19uu + + + + + + 20 + 10 + Correspondence to: NDF From: American Book Company,March [no day], 19uu + + + + + + 20 + 11 + Correspondence to: NDF From: Ruth,January 5, 19uu + + + + + + 20 + 12 + Correspondence to: NDF From: Kate,[no month, day], 19uu + + + + + + 20 + 13 + Correspondence to: NDF From: Grandma,[no month, day], 19uu + + + + + + 20 + 14 + Correspondence to: NDF From: Charlotte,February 1, 19uu + + + + + + 20 + 15 + Correspondence to: NDF From: May,July 14, 19uu + + + + + + 20 + 16 + Correspondence to: NDF From: Genevieve,November 8, 19uu + + + + + + 20 + 17 + Correspondence to: NDF From: Elma Munyan,[no month, day], 19uu + + + + + + 20 + 18 + Correspondence to: NDF From: Manufacturers Supply Department,[no month, day], 19uu + + + + + + 20 + 19 + Correspondence to: NDF From: Thelma,[no month, day], 19uu + + + + + + 20 + 20 + Correspondence to: NDF From: Floy Darmon,[no month, day], 19uu + + + + + + 20 + 21 + Correspondence to: NDF From: Salvia,[no month, day], 19uu + + + + + + 20 + 22 + Correspondence to: Theron W. Finley and Harry C. Finley From: Harrold,[no month, day], 19uu + + + + + + 20 + 23 + Correspondence to: NDF From: Jessie Tweedie,December 8, 19uu + + + + + + 20 + 24 + Correspondence to: NDF From: Henry D. Brown,[no month, day], 19uu + + + + + + 20 + 25 + Correspondence to: NDF From: MSL,[no month, day], 19uu + + + + + + 20 + 26 + Correspondence to: NDF From: Helen Baker,[no month, day], 19uu + + + + + + 20 + 27 + Correspondence to: NDF From: Ada,[no month, day], 19uu + + + + + + 20 + 28 + Correspondence to: NDF From: Grace,[no month, day], 19uu + + + + + + 20 + 29 + Correspondence to: NDF From: Harriet,[no month, day], 19uu + + + + + + 20 + 30 + Correspondence to: Theron W. Finley From: Harrietta,[no month, day], 19uu + + + + + + 20 + 31 + Correspondence to: NDF From: Sarah and Del,January 20, 19uu + + + + + + 20 + 32 + Correspondence to: NDF From: Charlene,[no month, day], 19uu + + + + + + 20 + 33 + Correspondence to: NDF From: Meda,[no month, day], 19uu + + + + + + 20 + 34 + Correspondence to: NDF From: Vesta,[no month, day], 19uu + + + + + + 20 + 35 + Correspondence to: Mrs. McMurtrie From: Mattie Andrews,[no month, day], 19uu + + + + + + 20 + 36 + Correspondence to: NDF From: Sarah,January 8, 19uu + + + + + + 20 + 37 + Correspondence to: Harry C. Finley From: Aunt Lorri,[no month, day], 19uu + + + + + + 20 + 38 + Correspondence to: Mother From: Matthew and Will,[no month, day], 19uu + + + + + + 20 + 39 + Correspondence to: Mr. and Mrs. Theron S. Finley From: Wilson L. Davis,[no month, day], 19uu + + + + + + 20 + 40 + Correspondence to: NDF From: Esther,[no month, day], 19uu + + + + + + 20 + 41 + Correspondence to: NDF From: Philena,[no month, day], 19uu + + + + + + 20 + 42 + Correspondence to: Theron Finley From: Rayson Service Bureau,[no month, day], 19uu + + + + + + 20 + 43 + Correspondence to: NDF From: Gene and Marydena Duckworth,[no month, day], 19uu + + + + + + 20 + 44 + Correspondence to: NDF From: Melicent Cook Getchell,September 28, 19uu + + + + + + 20 + 45 + Correspondence to: Harry C. Finley From: Aunt Louie,[no month, day], 19uu + + + + + + 20 + 46 + Correspondence to: NDF From: Aunt Louie,[no month, day], 19uu + + + + + + 20 + 47 + Correspondence to: Harry C. Finley From: Coyne Electrical and Radio School,[no month, day], 19uu + + + + + + 20 + 48 + Correspondence to: Theron W. Finley From: Coyne Electrical and Radio School,[no month, day], 19uu + + + + + + 20 + 49 + Correspondence to: Dorothy D. Finley From: Gerty Davis,December 13, 19uu + + + + + + 20 + 50 + Correspondence to: NDF From: Gerty Davis,[no month, day], 19uu + + + + + + 20 + 51 + Correspondence to: NDF From: Gerty Davis,October 28, 19uu + + + + + + 20 + 52 + Correspondence to: NDF From: Gerty Davis,April 26, 19uu + + + + + + 20 + 53 + Correspondence to: NDF From: Gerty Davis,June 4, 19uu + + + + + + 20 + 54 + Correspondence to: Aunt Nellie From: Gerty Davis,[no month, day], 19uu + + + + + + 20 + 55 + Correspondence to: NDF From: The Corbetts,[no month, day], 19uu + + + + + + 20 + 56 + Correspondence to: NDF From: N. A. Corbett,October 16, 19uu + + + + + + 20 + 57 + Correspondence to: NDF From: The Corbetts,July 19, 19uu + + + + + + 20 + 58 + Correspondence to: NDF From: Amy Ruff (letter 1 of 3),[no month, day], 19uu + + + + + + 20 + 59 + Correspondence to: NDF From: Amy Ruff (letter 2 of 3),[no month, day], 19uu + + + + + + 20 + 60 + Correspondence to: NDF From: Amy Ruff (letter 3 of 3),[no month, day], 19uu + + + + + + 20 + 61 + Correspondence to: Mrs. W. H. Davis From: Inez Stone (letter 1 of 2),[no month, day], 19uu + + + + + + 20 + 62 + Correspondence to: Mrs. W. H. Davis From: Inez Stone (letter 2 of 2),[no month, day], 19uu + + + + + + 20 + 63 + Correspondence to: NDF From: Inez Stone,[no month, day], 19uu + + + + + + 20 + 64 + Correspondence to: Mr. and Mrs. W.H. Davis From: Inez Stone,[no month, day], 19uu + + + + + + 20 + 65 + Correspondence to: NDF From: The Stones,[no month, day], 19uu + + + + + + 20 + 66 + Correspondence to: NDF From: Alice (letter 1 of 2),[no month, day], 19uu + + + + + + 20 + 67 + Correspondence to: NDF From: Alice (letter 2 of 2),[no month, day], 19uu + + + + + + 20 + 68 + Correspondence to: NDF From: Ida (letter 1 of 2),[no month, day], 19uu + + + + + + 20 + 69 + Correspondence to: NDF From: Ida (letter 2 of 2),[no month, day], 19uu + + + + + + 20 + 70 + Correspondence to: Mrs. W. H. Davis From: Earl Tweedie,September 21, 19uu + + + + + + 20 + 71 + Correspondence to: NDF From: Earl Tweedie,November 19, 19uu + + + + + + 20 + 72 + Correspondence to: Mrs. W. H. Davis From: Earl and Gertrude Tweedie,[no month, day], 19uu + + + + + + 20 + 73 + Correspondence to: NDF From: Bessie,February 1, 19uu + + + + + + 20 + 74 + Correspondence to: NDF From: Bessie,[no month, day], 19uu + + + + + + 20 + 75 + Correspondence to: NDF From: Bessie,December 6, 19uu + + + + + + 20 + 76 + Correspondence to: NDF From: Bessie,July 30, 19uu + + + + + + 20 + 77 + Correspondence to: NDF From: Bessie (letter 1 of 2),[no month, day], 19uu + + + + + + 20 + 78 + Correspondence to: NDF From: Bessie (letter 2 of 2),[no month, day], 19uu + + + + + + 20 + 79 + Correspondence to: NDF From: Bessie,May 31, 19uu + + + + + + 20 + 80 + Correspondence to: Theron Finley From: Bessie,March 22, 19uu + + + + + + 20 + 81 + Correspondence to: Theron Finley From: Bessie,[no month, day], 19uu + + + + + + 20 + 82 + Correspondence to: NDF From: Bessie / June,[no month, day], 19uu + + + + + + 20 + 83 + Correspondence to: NDF From: Anna (letter 1 of 6),[no month, day], 19uu + + + + + + 20 + 84 + Correspondence to: NDF From: Anna (letter 2 of 6),[no month, day], 19uu + + + + + + 20 + 85 + Correspondence to: NDF From: Anna (letter 3 of 6),[no month, day], 19uu + + + + + + 20 + 86 + Correspondence to: NDF From: Anna (letter 4 of 6),[no month, day], 19uu + + + + + + 20 + 87 + Correspondence to: NDF From: Anna (letter 5 of 6),[no month, day], 19uu + + + + + + 20 + 88 + Correspondence to: NDF From: Anna (letter 6 of 6),[no month, day], 19uu + + + + + + 20 + 89 + Correspondence to: Theron Finley From: Anna,[no month, day], 19uu + + + + + + 20 + 90 + Correspondence to: Mr. and Mrs. W. H. Davis From: Anna,[no month, day], 19uu + + + + + + 20 + 91 + Correspondence to: NDF From: Theron W. Finley at San Pedro,June 27, 19uu + + + + + + 20 + 92 + Correspondence to: NDF From: Theron W. Finley at San Diego,January 30, 19uu + + + + + + 20 + 93 + Correspondence to: NDF From: Theron W. Finley,May 28, 19uu + + + + + + 20 + 94 + Correspondence to: Harry C, Finley From: General Orders,[no month, day], 19uu + + + + + + 20 + 95 + Correspondence to: Harry C, Finley From: Dorothy Finley,August 20, 1941 + + + + + + 20 + 96 + Correspondence to: NDF From: Harry and Dorothy Finley in Hawaii,March 24, 19uu + + + + + + 20 + 97 + Correspondence to: NDF From: Harry and Dorothy Finley, in Hawaii,April 15, 19uu + + + + + + 20 + 98 + Correspondence to: NDF From: Harry and Dorothy Finley, in Hawaii,December 24, 19uu + + + + + + 20 + 99 + Correspondence to: NDF From: Harry and Dorothy Finley, in Hawaii,[no month, day], 19uu + + + + + + 20 + 100 + Correspondence to: NDF From: Harry and Dorothy Finley, in Hawaii,December 26, 19uu + + + + + + 20 + 101 + Correspondence to: NDF From: Dorothy Finley in Hawaii,(letter 1 of 3),[no month, day], 19uu + + + + + + 20 + 102 + Correspondence to: NDF From: Dorothy Finley in Hawaii,(letter 2 of 3),[no month, day], 19uu + + + + + + 20 + 103 + Correspondence to: NDF From: Dorothy Finley in Hawaii,(letter 3 of 3),[no month, day], 19uu + + + + + + 20 + 104 + Correspondence to: NDF From: Dorothy Finley, in Hawaii,December 16, 19uu + + + + + + 20 + 105 + Correspondence to: NDF From: Dorothy Finley, in Hawaii,August 25, 19uu + + + + + + 20 + 106 + Correspondence to: NDF From: Dorothy Finley, in Hawaii,June 27, 19uu + + + + + + 20 + 107 + Correspondence to: Gerty, Wilson, and Grandma Davis From: Dorothy Finley, in Hawaii,[no month, day], 19uu + + + + + + 20 + 108 + Correspondence to: NDF From: Harry C. Finley, in Hawaii,June 2, 19uu + + + + + + 20 + 109 + Correspondence to: NDF From: Harry C. Finley, in Hawaii,January 26, 19uu + + + + + + 20 + 110 + Correspondence to: NDF From: Harry C. Finley, in Hawaii,February 15, 19uu + + + + + + 20 + 111 + Correspondence to: NDF From: Harry C. Finley, in Hawaii,February 4, 19uu + + + + + + 20 + 112 + Correspondence to: NDF From: Harry C. Finley in Los Angeles,September 28, 19uu + + + + + + 20 + 113 + Correspondence to: NDF and W. H. Davis From: Harry C. Finley in Houghton,[no month, day], 19uu + + + + + + 20 + 114 + Correspondence to: W. H. Davis From: Harry C. Finley, in Houghton,[no month, day], 19uu + + + + + + 20 + 115 + Correspondence to: NDF From: Harry C. Finley, in HoughtonFebruary 23, 19uu + + + + + + 20 + 116 + Correspondence to: Harry C. Finley From: NDF,[no month, day], 19uu + + + + + + 20 + 117 + Correspondence to: NDF From: W. H. Davis,September 19, 19uu + + + + + + 20 + 118 + Correspondence to: NDF From: Mrs. Wilson H. Davis (letter 1 of 2),[no month, day], 19uu + + + + + + 20 + 119 + Correspondence to: NDF From: Mrs. Wilson H. Davis (letter 2 of 2),[no month, day], 19uu + + + + + + 20 + 120 + Correspondence to: W. H. Davis From: NDF,[no month, day], 19uu + + + + + + 20 + 121 + Correspondence to: Mrs. W. H. Davis From: Mr. and Mrs. Theron S. Finley,November 15, 19uu + + + + + + 20 + 122 + Correspondence to: Mrs. W. H. Davis From: NDF (letter 1 of 2),[no month, day], 19uu + + + + + + 20 + 123 + Correspondence to: Mrs. W. H. Davis From: NDF (letter 2 of 2),[no month, day], 19uu + + + + + + 20 + 124 + Correspondence to: Mrs. W. H. Davis From: NDF,July 13, 19uu + + + + + + 20 + 125 + Correspondence to: Mrs. W. H. Davis From: NDF,[no month, day], 19uu + + + + + + 20 + 126 + Correspondence to: NDF From: Harry and Zoe Davis,July 2, 19uu + + + + + + 20 + 127 + Correspondence to: W.H. Davis From: Harry and Zoe Davis (letter 1 of 4),[no month, day], 19uu + + + + + + 20 + 128 + Correspondence to: W.H. Davis From: Harry and Zoe Davis (letter 2 of 4),[no month, day], 19uu + + + + + + 20 + 129 + Correspondence to: W.H. Davis From: Harry and Zoe Davis (letter 3 of 4),[no month, day], 19uu + + + + + + 20 + 130 + Correspondence to: W.H. Davis From: Harry and Zoe Davis (letter 4 of 4),[no month, day], 19uu + + + + + + 20 + 131 + Correspondence to: Mr. and Mrs. W. H. Davis From: Harry Davis,[no month, day], 19uu + + + + + + 20 + 132 + Davis Genealogy After death of Mrs. (W. H.?) Davis,[no month, day], 19uu + + + + + + 20 + 133 + Theron W. Finley, School Report Cards,1919-1931 + + + + + + 20 + 134 + Harry C. Finley, School Report Cards,192u-193u + + + + + + 20 + 135 + Correspondence to: NDF From: American Book Company,[no month, day], 19uu + + + + + + 20 + 136 + Correspondence to: NDF From: Unidentified,August 20, 19uu + + + + + + 21 + 1 + Greeting Cards, Miscellaneous Postcards,1908-1928 + + + + + + 21 + 2 + Greeting Cards, Miscellaneous Postcards and Advertising Cards,undated + + + + + + 21 + 3 + Greeting Cards, Halloween,October 31, 19uu + + + + + + 21 + 4 + Greeting Cards, Birthday,November 7, 1912-November 6, 1937 + + + + + + 21 + 5 + Greeting Cards, Birthday,February 10, 1915-April 15, 1933 + + + + + + 21 + 6 + Greeting Cards, Birthday,1926-1936 + + + + + + 21 + 7 + Greeting Cards, Birthday,November 14, 1927-July 12, 1933 + + + + + + 21 + 8 + Greeting Cards, Mother's Day,May 5, 1927-May 10, 1947 + + + + + + 21 + 9 + Greeting Cards, Graduation,June 6, 1928-June 12, 1931 + + + + + + 21 + 10 + Greeting Cards, Father's Day,June 16, 1929-June 12, 1930 + + + + + + 21 + 11 + Greeting Cards, New Year's,December 24, 1912-December 28, 1945 + + + + + + 21 + 12 + Greeting Cards, Congratulations,July 31, 1924-March 8, 1930 + + + + + + 21 + 13 + Greeting Cards, Thanksgiving,November 22, 1927-November 4, 1947 + + + + + + 21 + 14 + Greeting Cards, Wedding,April 10, 1888-November 13, 1912 + + + + + + 21 + 15 + Greeting Cards, Birth Announcements,September 9, 1899, undated + + + + + + 21 + 16 + Greeting Cards, Sympathy,June 4, 1924-August 29, 1933 + + + + + + 21 + 17 + Greeting Cards, Best Wishes,March 14, 1918, undated + + + + + + 21 + 18 + Greeting Cards, Easter,April 7, 1914-April 22, 1948 + + + + + + 21 + 19 + Greeting Cards, Anniversary,July 23, 1923-July 30, 1931 + + + + + + 21 + 20 + Greeting Cards, Valentines,February 15, 1913-February 11, 1948 + + + + + + 21 + 21 + Greeting Cards, Thank Yous,September 1, 1913-June 23, 1938 + + + + + + 21 + 22 + Greeting Cards, Christmas (folder 1 of 4),undated + + + + + + 21 + 23 + Greeting Cards, Christmas (folder 2 of 4),undated + + + + + + 21 + 24 + Greeting Cards, Christmas (folder 3 of 4),undated + + + + + + 21 + 25 + Greeting Cards, Christmas (folder 4 of 4),undated + + + + + + 21 + 26 + Greeting Cards, Christmas,1900-1910 + + + + + + 21 + 27 + Greeting Cards, Christmas,1911-1920 + + + + + + 21 + 28 + Greeting Cards, Christmas,1921-1922 + + + + + + 21 + 29 + Greeting Cards, Christmas,1923 + + + + + + 21 + 30 + Greeting Cards, Christmas,1924-1925 + + + + + + 21 + 31 + Greeting Cards, Christmas,1926 + + + + + + 21 + 32 + Greeting Cards, Christmas,1927 + + + + + + 21 + 33 + Greeting Cards, Christmas,1928 + + + + + + 21 + 34 + Greeting Cards, Christmas,1929 + + + + + + 21 + 35 + Greeting Cards, Christmas,1930 + + + + + + 21 + 36 + Greeting Cards, Christmas,1931-1940 + + + + + + 21 + 37 + Greeting Cards, Christmas,1941-1958 + + + + + + 22 + 1 + Books, Teacher's Manuals, Lesson Books, etc., McClure's Magazine,June 1897 + + + + + + 22 + 2 + Books, Teacher's Manuals, Lesson Books, etc., Catalogue of the Lakeview Public Schools,1891-1892 + + + + + + 22 + 3 + Books, Teacher's Manuals, Lesson Books, etc., Course of Study for the Lakeview Graded School,1888-1889 + + + + + + 22 + 4 + Books, Teacher's Manuals, Lesson Books, etc., Robert's Rules of Order, copyright 1876,1876 + + + + + + 22 + 5 + Books, Teacher's Manuals, Lesson Books, etc., Teachers Directory,1887 + + + + + + 22 + 6 + Books, Teacher's Manuals, Lesson Books, etc., The Vision of Sir Lountal Lowell,1926 + + + + + + 22 + 7 + Books, Teacher's Manuals, Lesson Books, etc., Michigan Teachers Directory,1902-1903 + + + + + + 22 + 8 + Books, Teacher's Manuals, Lesson Books, etc., Probate Court of the State of Michigan,1912 + + + + + + 22 + 9 + Books, Teacher's Manuals, Lesson Books, etc., Michigan Teachers Directory,1900-1901 + + + + + + 22 + 10 + Books, Teacher's Manuals, Lesson Books, etc., Michigan Teachers Directory,1901-1902 + + + + + + 22 + 11 + Books, Teacher's Manuals, Lesson Books, etc., Michigan Teachers Directory,1899-1900 + + + + + + 22 + 12 + Books, Teacher's Manuals, Lesson Books, etc., Michigan Teachers Directory,1898-1899 + + + + + + 22 + 13 + Books, Teacher's Manuals, Lesson Books, etc., M. F. Scotts Teachers Directory,1888-1889 + + + + + + 22 + 14 + Books, Teacher's Manuals, Lesson Books, etc., Michigan Teachers Directory,1889-1890 + + + + + + 22 + 15 + Books, Teacher's Manuals, Lesson Books, etc., M. F. Scotts Teachers Directory,1887-1888 + + + + + + 22 + 16 + Books, Teacher's Manuals, Lesson Books, etc., M. F. Scotts Teachers Directory,1886 + + + + + + 22 + 17 + Books, Teacher's Manuals, Lesson Books, etc., Kodak and Kodak Supplies,1908 + + + + + + 22 + 18 + Books, Teacher's Manuals, Lesson Books, etc., Public Schools of Albion, Michigan,1893 + + + + + + 22 + 19 + Books, Teacher's Manuals, Lesson Books, etc., Michigan Directory of Superintendents and Principals,1890-1891 + + + + + + 22 + 20 + Books, Teacher's Manuals, Lesson Books, etc., By-laws of Gatotent, No. 151,1889 + + + + + + 22 + 21 + Books, Teacher's Manuals, Lesson Books, etc., Summer School of the Michigan State Normal College,1906 + + + + + + 22 + 22 + Books, Teacher's Manuals, Lesson Books, etc., State of Michigan Manual and Course of Study, Elementary Schools,1916 + + + + + + 22 + 23 + Books, Teacher's Manuals, Lesson Books, etc., American Seating Company, School Furniture and School Supplies,1920-1921 + + + + + + 22 + 24 + Books, Teacher's Manuals, Lesson Books, etc., Michigan State Teachers Association Institute, Official Program,1911 + + + + + + 22 + 25 + Books, Teacher's Manuals, Lesson Books, etc., Anxious Inquirer After Salvation,1814 + + + + + + 22 + 26 + Books, Teacher's Manuals, Lesson Books, etc., Thoughts for the Quiet Hour,1899 + + + + + + 22 + 27 + Books, Teacher's Manuals, Lesson Books, etc., Laws Governing the Great Camp K.O.T.M. (Knights of the Maccabees) for Michigan,1890 + + + + + + 22 + 28 + Books, Teacher's Manuals, Lesson Books, etc., Books for Libraries, School, and Home,1907 + + + + + + 22 + 29 + Books, Teacher's Manuals, Lesson Books, etc., Detroit Driving Club, Summer Meeting,1889 + + + + + + 22 + 30 + Books, Teacher's Manuals, Lesson Books, etc., How I Became Acquainted with Nature Cure,1917 + + + + + + 22 + 31 + Books, Teacher's Manuals, Lesson Books, etc., Township Unit System in Michigan,1913 + + + + + + 22 + 32 + Books, Teacher's Manuals, Lesson Books, etc., A Directory of Leading College Professors and Etc. in Michigan,1885 + + + + + + 22 + 33 + Books, Teacher's Manuals, Lesson Books, etc., Battle Creek College Bulletin,1926 + + + + + + 22 + 34 + Books, Teacher's Manuals, Lesson Books, etc., Ferris Institute School Bulletin,1924 + + + + + + 22 + 35 + Books, Teacher's Manuals, Lesson Books, etc., The Teaching of Reading,1916 + + + + + + 22 + 36 + Books, Teacher's Manuals, Lesson Books, etc., Michigan Township Officers Guide,1918 + + + + + + 22 + 37 + Books, Teacher's Manuals, Lesson Books, etc., The Teaching of English Grammar,1902 + + + + + + 22 + 38 + Books, Teacher's Manuals, Lesson Books, etc., Real Life Stories - Selections from Tales of Courage,1932 + + + + + + 22 + 39 + Books, Teacher's Manuals, Lesson Books, etc., Supplementary Problems in Arithmetic - Grades 5-8,1924 + + + + + + 22 + 40 + Books, Teacher's Manuals, Lesson Books, etc., Supplementary Problems in Arithmetic - Grades 3-4,1924 + + + + + + 22 + 41 + Books, Teacher's Manuals, Lesson Books, etc., Practice Exercises in Careful Silent Reading,1923 + + + + + + 22 + 42 + Books, Teacher's Manuals, Lesson Books, etc., Creative Activity Plan,1926 + + + + + + 22 + 43 + Books, Teacher's Manuals, Lesson Books, etc., Elementary Geography,1885 + + + + + + 22 + 44 + Books, Teacher's Manuals, Lesson Books, etc., Modern School Geography,1862 + + + + + + 22 + 45 + Books, Teacher's Manuals, Lesson Books, etc., Course of Study for the Lakeview Graded School,1888-1889 + + + + + + 22 + 46 + Books, Teacher's Manuals, Lesson Books, etc., Art Education for Elementary Schools in Michigan,1915 + + + + + + 22 + 47 + Books, Teacher's Manuals, Lesson Books, etc., Art for the Rural Schools in Michigan,1929 + + + + + + 22 + 48 + Books, Teacher's Manuals, Lesson Books, etc., Poems by Grades,1921 + + + + + + 22 + 49 + Books, Teacher's Manuals, Lesson Books, etc., The Year's Entertainments,November 1909 + + + + + + 22 + 50 + Books, Teacher's Manuals, Lesson Books, etc., Old-Time Songs (4 copies),1870 + + + + + + 22 + 51 + Books, Teacher's Manuals, Lesson Books, etc., The Year's Entertainments,January-June, September-October 1909 + + + + + + 22 + 52 + Books, Teacher's Manuals, Lesson Books, etc., Snow Bound,1866 + + + + + + 22 + 53 + Books, Teacher's Manuals, Lesson Books, etc., Four Great Musicians,1913 + + + + + + 22 + 54 + Books, Teacher's Manuals, Lesson Books, etc., Little Workers and What They Work With,1905 + + + + + + 22 + 55 + Books, Teacher's Manuals, Lesson Books, etc., Christmas at Finnegan's Flat,1907 + + + + + + 22 + 56 + Books, Teacher's Manuals, Lesson Books, etc., Eye Foolers,1943 + + + + + + 22 + 57 + Books, Teacher's Manuals, Lesson Books, etc., Analytical System of Penmanship,1882 + + + + + + 22 + 58 + Books, Teacher's Manuals, Lesson Books, etc., Titus - A Comrade of the Cross,1894 + + + + + + 22 + 59 + Books, Teacher's Manuals, Lesson Books, etc., "I'm Proud of My Careful Children" Poster,1930 + + + + + + 22 + 60 + Books, Teacher's Manuals, Lesson Books, etc., A Journal of a Surveying Trip into Western Pennsylvania,1965 + + + + + + 22 + 61 + Books, Teacher's Manuals, Lesson Books, etc., Teacher's Geography, a Syllabus and Notebook,1906 + + + + + + 22 + 62 + Books, Teacher's Manuals, Lesson Books, etc., Everywhere, Conducted by: Will Carleton,January 1911 + + + + + + 22 + 63 + Books, Teacher's Manuals, Lesson Books, etc., Everywhere, Conducted by: Will Carleton,February 1911 + + + + + + 22 + 64 + Books, Teacher's Manuals, Lesson Books, etc., Everywhere, Conducted by: Will Carleton,March 1911 + + + + + + 22 + 65 + Books, Teacher's Manuals, Lesson Books, etc., Everywhere, Conducted by: Will Carleton,April 1911 + + + + + + 22 + 66 + Books, Teacher's Manuals, Lesson Books, etc., Everywhere, Conducted by: Will Carleton,May 1911 + + + + + + 22 + 67 + Books, Teacher's Manuals, Lesson Books, etc., Everywhere, Conducted by: Will Carleton,June 1911 + + + + + + 22 + 68 + Books, Teacher's Manuals, Lesson Books, etc., Everywhere, Conducted by: Will Carleton,July 1911 + + + + + + 22 + 69 + Books, Teacher's Manuals, Lesson Books, etc., Everywhere, Conducted by: Will Carleton,August 1911 + + + + + + 22 + 70 + Books, Teacher's Manuals, Lesson Books, etc., Everywhere, Conducted by: Will Carleton,September 1911 + + + + + + 22 + 71 + Books, Teacher's Manuals, Lesson Books, etc., Everywhere, Conducted by: Will Carleton,October 1911 + + + + + + 22 + 72 + Books, Teacher's Manuals, Lesson Books, etc., Everywhere, Conducted by: Will Carleton,November 1911 + + + + + + 22 + 73 + Books, Teacher's Manuals, Lesson Books, etc., Everywhere, Conducted by: Will Carleton,December 1911 + + + + + + 22 + 74 + Books, Teacher's Manuals, Lesson Books, etc., Blue Folder with Recipes (on side of box),undated + + + + + + 22 + 75 + Books, Teacher's Manuals, Lesson Books, etc., My Christmas List (on side of box),1911 + + + + + + 22 + 76 + Books, Teacher's Manuals, Lesson Books, etc., Definite Educational Advantages (on side of box),1932 + + + + + + 22 + 77 + Books, Teacher's Manuals, Lesson Books, etc., The Springport Signal (on side of box),1937 + + + + + + 22 + 78 + Books, Teacher's Manuals, Lesson Books, etc., Fighting Yanks (on side of box),1943 + + + + + + 22 + 79 + Books, Teacher's Manuals, Lesson Books, etc., Mandolin and Guitar Folio (on side of box),1900 + + + + + + 23 + 1 + Miscellaneous, Chemistry Laboratory Notebook, Nellie D. Finley,undated + + + + + + + 23 + 2 + Miscellaneous, NDF, Farmington Township, Taxes,1927- 1928 + + + + + + 23 + 3 + Miscellaneous, Theron W. Finley, Michigan State College Grades,December 28, 1932 + + + + + + 23 + 4 + Miscellaneous, Finley Estate,1920-1928 + + + + + + 23 + 5 + Miscellaneous, Finley from Hicks Diary, Albion, Michigan,September-October 1937 + + + + + + 23 + 6 + Miscellaneous, ND from Mears and Lovejoy,August 1916 + + + + + + 23 + 7 + Miscellaneous, O'Shaugnessy and Company, Receipt,July 30, 1892 + + + + + + 23 + 8 + Miscellaneous, Harry Finley, Reports of Grades from Michigan College of Mining Technology,1940-1941 + + + + + + 23 + 9 + Miscellaneous, Telegram to: Harry Davis From: Harry Finley,December 14, 1941 + + + + + + 23 + 10 + Miscellaneous, Correspondence to: NDF From: Gertrude,undated + + + + + + 23 + 11 + Miscellaneous, ND, Third Grade Certificate and School Receipt,March 1905, March 1906 + + + + + + 23 + 12 + Miscellaneous, W. H. Davis, First Grade Certificate,November 1, 1879 + + + + + + 23 + 13 + Miscellaneous, Carl K. Locke, Fine Cigars Receipt,November 1, 1892 + + + + + + 23 + 14 + Miscellaneous, District School Letters,June 22-27, 1894 + + + + + + 23 + 15 + Miscellaneous, Correspondence to: ND, From: Mama,October 2, [no year] + + + + + + 23 + 16 + Miscellaneous, Estimate Value of Personal Property,1916 + + + + + + 23 + 17 + Miscellaneous, O. H. Gale Receipt,May 14, 1914 + + + + + + 23 + 18 + Miscellaneous, Correspondence to: Nellie and Theron, From: Harry and Zoe [Davis],July 6, 1916 + + + + + + 23 + 19 + Miscellaneous, Marriage License (Gress and Hartring),June 30, 1904 + + + + + + 23 + 20 + Miscellaneous, Albion College Cadet Band,Spring 1921 + + + + + + 23 + 21 + Miscellaneous, Test,1922-1928 + + + + + + 23 + 22 + Miscellaneous, Finley Bank Book, Royal Bank of Canada, Aylesbury, Saskatchewan,undated + + + + + + 23 + 23 + Miscellaneous, St. Patrick's Banquet, Morrice, Michigan,March 17, 1914 + + + + + + 23 + 24 + Miscellaneous, Warranty Deed, Yellow Medicine, Minnesota,February 8, 1906 + + + + + + 23 + 25 + Miscellaneous, Report To Judge Russel,June 1, 1920 + + + + + + 23 + 26 + Miscellaneous, Jackson County School Letter,1917-1918 + + + + + + 23 + 27 + Miscellaneous, Correspondence to: NDF From: Universal Institute,June 24, 1925 + + + + + + 23 + 28 + Miscellaneous, Parma Township Ballot and Votes,1905 + + + + + + 23 + 29 + Miscellaneous, NDF, List of Christmas Presents,1898-1899 + + + + + + 23 + 30 + Miscellaneous, W. H. Davis Recommendations,March 26, 1880 + + + + + + 23 + 31 + Miscellaneous, Bale's Opera Rink, Lakeview, Playbill,March 27-28, 1891 + + + + + + 23 + 32 + Miscellaneous, Correspondence to: Grandma Finley From: Ruth,January 1954 + + + + + + 23 + 33 + Miscellaneous, Correspondence to: NDF From: Flossie Foster,December 10, 1954 + + + + + + 23 + 34 + Miscellaneous, Correspondence to: NDF From: Jerry and Theron Finley, Camp LeJunne, North Carolina,1949 + + + + + + 23 + 35 + Miscellaneous, W. H. Davis, Classbook,undated + + + + + + 23 + 36 + Miscellaneous, W. H. Davis, Classbook,1886-1887 + + + + + + 23 + 37 + Miscellaneous, Auction Sale,April 10, 1906 + + + + + + 23 + 38 + Miscellaneous, Auction Sale,November 7, [no year] + + + + + + 23 + 39 + Miscellaneous, Wilson H. Davis, Notary Public,May 1, 1895 + + + + + + 23 + 40 + Miscellaneous, NDF, Cash Account,September 26, 1906 + + + + + + 23 + 41 + Miscellaneous, Shakespeare Club,January 28, 1908 + + + + + + 23 + 42 + Miscellaneous, W. H. Davis,September 20, 1928 + + + + + + 23 + 43 + Miscellaneous, K.O.T.M. (Knights of the Maccabees) Banquet,June 27, 1891 + + + + + + 23 + 44 + Miscellaneous, NDF, Physical Science Laboratory Notebook,1901 + + + + + + 23 + 45 + Miscellaneous, Ford Motor Company, U.S. Map,undated + + + + + + 23 + 46 + Miscellaneous, Geographic News Bulletin,May-December 1923 + + + + + + 23 + 47 + Miscellaneous, Geographic News Bulletin,December 1923-March 1924 + + + + + + 23 + 48 + Miscellaneous, Geographic News Bulletin,March-May 1924 + + + + + + 23 + 49 + Miscellaneous, Geographic News Bulletin,May-December 1924 + + + + + + 23 + 50 + Miscellaneous, Geographic News Bulletin,December 1924-March 1925 + + + + + + 23 + 51 + Miscellaneous, Geographic News Bulletin,March-May 1925 + + + + + + 23 + 52 + Miscellaneous, Geographic News Bulletin,December 1925-March 1926 + + + + + + 23 + 53 + Miscellaneous, Geographic News Bulletin, Miscellaneous Photographs,undated + + + + + + 23 + 54 + Miscellaneous, W. H. Davis, Shopping Lists,May 3-September 14, 1892 + + + + + + 23 + 55 + Miscellaneous, The Parma News,September 22, 1905 + + + + + + 23 + 56 + Miscellaneous, Normal College News,April 9, 1908 + + + + + + 23 + 57 + Miscellaneous, NDF, New Year's 1897 by Uncle and Auntie Herrick,January 1, 1897 + + + + + + 23 + 58 + Miscellaneous, The Kalamazoo College Bulletin,1932 + + + + + + 23 + 59 + Miscellaneous, Jackson County Official Fee Book,1900 + + + + + + 23 + 60 + Miscellaneous, Probate Court Inventory of Personal Property,undated + + + + + + 23 + 61 + Miscellaneous, Buffalo Fertilizer Company Notepad,undated + + + + + + 23 + 62 + Miscellaneous, Notebook,undated + + + + + + 23 + 63 + W.H. Davis, CLass Register,undated + + + + + + 23 + 64 + Miscellaneous, W. H. Davis, Recitation Record,1888 + + + + + + 23 + 65 + Miscellaneous, W. H. Davis, Recitation Record,1889 + + + + + + 23 + 66 + Miscellaneous, W. H. Davis, Recitation Record,1890 + + + + + + 23 + 67 + Miscellaneous, W. H. Davis, Recitation Record,1889-1890 + + + + + + 23 + 68 + Miscellaneous, W. H. Davis, Recitation Record,1891 + + + + + + 23 + 69 + Miscellaneous, W. H. Davis, Recitation Record,1890 + + + + + + 23 + 70 + Miscellaneous, W. H. Davis, Class Register,undated + + + + + + 23 + 71 + Miscellaneous, Nellie M. Davis, Notepad,undated + + + + + + 23 + 72 + Miscellaneous, Nellie M. Davis, Students Notebook (volume 1 of 2),undated + + + + + + 23 + 73 + Miscellaneous, Nellie M. Davis, Students Notebook (volume 2 of 2),undated + + + + + + 23 + 74 + Miscellaneous, The Year 1888 Notebook,1888 + + + + + + 23 + 75 + Miscellaneous, Autograph Book,undated + + + + + + 23 + 76 + Miscellaneous, Standard Miniature Notebook,undated + + + + + + 23 + 77 + Miscellaneous, Part of Place Booklet,undated + + + + + + 23 + 78 + Miscellaneous, ND, Oxford Notebook,undated + + + + + + 23 + 79 + Miscellaneous, Expense Account Record Book,undated + + + + + + 24 + 1 + Miscellaneous, Doll Scrapbook, Trade Cards,undated + + + + + + 24 + 2 + Miscellaneous, Flower and Vase Scrapbook, Memorabilia (Bulletins and Newspaper Clippings, copies),undated + + + + + + 24 + 3 + Miscellaneous, Family Negatives, Correspondence to: Madame Queen From: Andy,undated + + + + + + 24 + 4 + Miscellaneous, Scrapbook, Newspaper Clippings (Theme: War Through Women's Eyes),undated + + + + + + 24 + 5 + Miscellaneous, Christoforo's Method for Mandolin (Music Instruction Book, copyright 1897, John Church Company),1897 + + + + + + 24 + 6 + Miscellaneous, Teacher's Schedule Book,April 1900-June 1902 + + + + + + 24 + 7 + Miscellaneous, Justice of the Peace,undated + + + + + + 24 + 8 + Miscellaneous, From Manager to Throne, by Rev. T. Delvitt Talmage,undated + + + + + + 24 + 9 + Miscellaneous, 77th Annual Report of the Superintendent of Public Instruction of the State of Michigan with Accompanying Documents for the Year 1913-1914, by Authority,1913-1914 + + + + + + 24 + 10 + Miscellaneous, Homestead on the Hillside, by Mary J. Holmes, copyright J. H. Sears and Company, Inc.,undated + + + + + + 25 + 1 + ND, Age 12, Grammar Homework,1900 + + + + + + 25 + 2 + ND, Report Cards,1895-1903 + + + + + + 25 + 3 + NDF, Account Book,1916 + + + + + + 25 + 4 + NDF, Composition Book,1916 + + + + + + 25 + 5 + NDF, Examination Questions for 1920, Bulletin No. 3, State of Michigan, Department of Public Instruction,1920 + + + + + + 25 + 6 + NDF, Marriage and Baby Announcement, and Hair, Invitation, and Newspaper Clippings,1912, 1914 + + + + + + 25 + 7 + NDF, Receipts, 1917, 1945; Membership Cards, 1922,1945; Teaching Contract, Parma, 1931,1917, 1922, 1931, 1945 + + + + + + 25 + 8 + NDF, Sketches,189u + + + + + + 25 + 9 + NDF, War Ration Book Four,[1940s] + + + + + + 25 + 10 + Correspondence to: Mr. W. H. Davis, 1901 From: Parma High School and 1908, 1924, 1927, includes Commencement Material from NDF,1901, 1908, 1924, 1927 + + + + + + 25 + 11 + Correspondence to: Mrs. Wilson H. Davis From: NDF,1912 + + + + + + 25 + 12 + Correspondence to: Theron S. Finley From: friends and relatives, mostly while in Tuberculosis Hospital, Highland Park,1914-1915 + + + + + + 25 + 13 + Correspondence to: Theron W. Finley Family From: Mr. and Mrs. H. E. Davis,1912-1925 + + + + + + 25 + 14 + Correspondence to: ND From: , includes Name Plate,1898, 1911, undated + + + + + + 25 + 15 + Correspondence to: NDF From: Many,1916 + + + + + + 25 + 16 + Correspondence to: NDF From: Many,1918-1919 + + + + + + 25 + 17 + Correspondence to: NDF From: Many,1920 + + + + + + 25 + 18 + Correspondence to: NDF From: Many,1922 + + + + + + 25 + 19 + Correspondence to: NDF From: Many,1923 + + + + + + 25 + 20 + Correspondence to: NDF From: Many,1924-1925 + + + + + + 25 + 21 + Correspondence to: NDF From: Many,1926 + + + + + + 25 + 22 + Correspondence to: NDF From: Many,1927-1928 + + + + + + 25 + 23 + Correspondence to: NDF From: Many,1925, 1939 + + + + + + 25 + 24 + Correspondence to: NDF From: Many,1941-1945 + + + + + + 25 + 25 + Correspondence to: NDF From: Many,undated + + + + + + 25 + 26 + Photograph Album, Devereaux School (Jackson County, Michigan),1926-1927 + + + + + + 25 + 27 + Photographs, Harry Finley, other children (8),1916, [1940s], undated + + + + + + 25 + 28 + Photographs, ND as a child (4),1895, undated + + + + + + 25 + 29 + Photographs, ND, Parma High School Graduation (3),1904 + + + + + + 25 + 30 + Photographs, NDF, Normal School at Ypsilanti (5),1908 + + + + + + 25 + 31 + Photographs, NDF, as older lady, teacher, in California (10),1957, undated + + + + + + 25 + 32 + Photographs, Parma Methodist Episcopal Church, interior,1904 + + + + + + 25 + 33 + Postcards to: Mr. and Mrs. W. H. Davis From: Harry, 1928, 1935, and Invitation, 1900,1900, 1928, 1935 + + + + + + 25 + 34 + Receipts of H. A. Duff, 1915-1916; Correspondence to Theron S. Finley re: Duff, 1912, 1916,1912, 1915-1917 + + + + + + 25 + 35 + Souvenir Photographs to: Mrs. E. Davis,1907, to: Mr. Wilson L. Davis,1908 From: NDF,1907-1908 + + + + + + 1 + Oversized folder 1, Certificates: ND and Theron S. Finley, Parma Marriage Certificate (printed form illustrated with colored flowers), July 3, 1912; ND Parma High School Diploma, printed and illustrated with handwriting, spotted, June 23, 1904; Gravure print? on board, spotted and battered, of Orlando de [H.] Moore, undated [post-Civil War],June 23, 1904; July 3, 1912, undated + + + + + +
    +
    + + + + + + + + + + + diff --git a/sample-ead/clarke/franciscotemplate.xml b/sample-ead/clarke/franciscotemplate.xml new file mode 100644 index 0000000..a17b66a --- /dev/null +++ b/sample-ead/clarke/franciscotemplate.xml @@ -0,0 +1,29155 @@ + + + + + ehll--francisco + + + Finding Aid for +francisco + Collection processed and finding aid created by J. Knapp, A. Abruquah, J.Finn, E. Brilinski, B. Campbell, M. Matyn + + + Clarke Historical Library + +1998, 2002 + + + + + Encoded finding aid created by +Marian Matyn, +2012 + + The finding aid is written in English + + + + + + Clarke Historical LibraryCentral Michigan University + Finding aid for +Francisco Photography Studio Photographic collection + Finding aid created by +Marian Matyn + + + + + + + Francisco Photography Studio. + + +Francisco Photography Studio Photographic collection, + +1910-1990, and undated + + + + +9 cubic feet (in 9 boxes, 1 Oversized folder) + + + +MSS. + + The material is in English + + +The collection includes mostly black and white photographs and negatives in various sizes documenting multiple generations of hundreds of families from the Mount Pleasant, Michigan, area and nearby locales.. + + + + Clarke Historical Library, Central Michigan University + + + + + +

    +Acc# 3163, 39131 +

    +
    + +

    +Francisco Photography Studio Photographic collection is open for research.

    +
    + +

    +Copyright is unknown. +

    +
    + +

    +Francisco Photography Studio Photographic collection is open for research, Folder # , Box #, Clarke Historical Library, Central Michigan University +

    +
    +
    + +

    Biography:

    +

    The Francisco Photography Studio was operated on West Broadway in Mount Pleasant, Michigan, by a father and son team, Harry H. and Harrison Francisco, for 68 years.

    +

    Harry H. “Poddy” Francisco was born on August 10, 1891 in Mount Pleasant, to Charles and Mabel Francisco. In 1910, he married Lillian Belle Alexander of Gaylord, Michigan. They had two children, Harrison, and Mrs. Verona Sutton, both of Mount Pleasant.

    +

    Harry entered the photography business at age 19 and worked until eight weeks before his death. An avid outdoorsman, he also enjoyed novelty woodwork and was a member of the Elks Lodge. On August 14, 1944, Harry died at his home on South Fancher. He was survived by his wife, children, mother, and one granddaughter, Elrae Mayville.

    +

    Harrison A. Francisco was born on August 14, 1911 in Mount Pleasant. Except or service in the U.S. Army during World War II, he worked all of his life in the photography studio, from which he retired in 1973. Like his father, Harrison was an avid hunter and fisherman. He never married. He died on December 2, 1990 and was survived by his sister. (This information is from the collection.)

    +
    + +

    Arrangement is The collection is organized as it was created, with negatives and photographs separated by media, then by size, and then either alphabetically by customers’ surname or by date.

    +
    + +

    The collection includes mostly black and white photographs and negatives, circa 1910-1990, in various sizes hosued in envelopes, no folders. Several generations of local families are documented in the collection through family portraits, first communion, wedding, high school graduation, identification, and armed service photographs. Other topics include sports teams, marriage licenses, service discharge certificates, hunting and fishing, buildings, art, vehicles, and a burn victim, among others. There may be more than one view of an image, Ex. - 2, and more than one sleeve or envelope of images on a topic or a person, Ex. (2 envelopes). There are eight folders of Francisco family photographs and negatives in the back of Box 9. A folder of biographical information on the Franciscos and mostly World War II postcards is in the front of Box 1. Oversized photographs (4) are also of the Francisco family. Some of the photographs are copies of images from the turn of the 19th/20th century.

    +

    The collection is organized as it was created, with negatives and photographs separated by media, then by size, and then either alphabetically by customers’ surname or by date as follows: Box 1- 5 x 7 inch Negatives, A-G; Box 2- 5 x 7 inch Negatives, H-R; Box 3- 5 x 7 inch Negatives, S-Z; Box 4- 3.5x 4.5 inch Negatives, A-Gr; Box 5- 3.5x 4.5 inch Negatives, Gr-R; Box 6- 3.5x4.5 inch Negatives, S-Z; Miscellaneous Smaller Photos: 5.5 x 7.25 inches Photographs and Negatives; Box 7- 8 x 10 inch Negatives; Box 8- 8 x 10 inch Photographs, 1961-1970; 5.5 x 6 inch Photographs, 1958-1965; Box 9- 5.5 x 6 inch Photographs, 1965-1969; 3.5 x 4 inch and Smaller Sized Photographs and Negatives, 1917-1958; Francisco Family Photographs, 1927-1964 and undated; Negatives, undated; Oversized folder Francisco Family (4 Oversized prints). Any additional notes or abbreviations are taken from the original wrappers and were made by the photographers.

    +
    + +

    + +

    + + Subjects: + Francisco, Harrison A., 1911-1990. + Francisco, Harry H., 1891-1944. + Francisco Photography Studio. + Photographers--Michigan--Mount Pleasant. + Mount Pleasant (Mich.)--History. + Mount Pleasant (Mich.)--Genealogy. +
    + + + + Francisco Photography Studio Photographic Collection is open for research. + + + + 1 + 1 + Biographical Materials,1990 + + + + + + 1 + 2 + 5 x 7 inch Negatives, A-G, Abbey, Oma,undated + + + + + + 1 + 3 + 5 x 7 inch Negatives, A-G, Abbey, Oma, I.D.,undated + + + + + + 1 + 4 + 5 x 7 inch Negatives, A-G, Abbott, Marshall, Sr. (2 envelopes),undated + + + + + + 1 + 5 + 5 x 7 inch Negatives, A-G, Abbott, Marshall - Girl,undated + + + + + + 1 + 6 + 5 x 7 inch Negatives, A-G, Abbott, Marshall and Wife,Christmas 1962 + + + + + + 1 + 7 + 5 x 7 inch Negatives, A-G, Abbott, Mickey - 2 children,undated + + + + + + 1 + 8 + 5 x 7 inch Negatives, A-G, Abbott, Wayne - 4 children,undated + + + + + + 1 + 9 + 5 x 7 inch Negatives, A-G, Abby, Ron and Wife,undated + + + + + + + 1 + 10 + 5 x 7 inch Negatives, A-G, Acker, Ken - Wedding (3 envelopes),undated + + + + + + 1 + 11 + 5 x 7 inch Negatives, A-G, Acne, I.D.,undated + + + + + + 1 + 12 + 5 x 7 inch Negatives, A-G, Albar, Al,undated + + + + + + 1 + 13 + 5 x 7 inch Negatives, A-G, Albee, J. A. - Baby Girl,undated + + + + + + 1 + 14 + 5 x 7 inch Negatives, A-G, Albee, J. A. - Family,undated + + + + + + 1 + 15 + 5 x 7 inch Negatives, A-G, Albee, Jack - Daughter,undated + + + + + + 1 + 16 + 5 x 7 inch Negatives, A-G, Albee, Jack - Daughter and Wife,undated + + + + + + 1 + 17 + 5 x 7 inch Negatives, A-G, Aldrich, J. C. - Girl,undated + + + + + + 1 + 18 + 5 x 7 inch Negatives, A-G, Aldrich, J. C. - Girl and Boy,undated + + + + + + 1 + 19 + 5 x 7 inch Negatives, A-G, Alexander, Minnie - Copy,August 1957 + + + + + + 1 + 20 + 5 x 7 inch Negatives, A-G, Allen, Barbara - 3 boys,undated + + + + + + 1 + 21 + 5 x 7 inch Negatives, A-G, Allen, Barbara,undated + + + + + + 1 + 22 + 5 x 7 inch Negatives, A-G, Allen, Donna - H.S.,undated + + + + + + 1 + 23 + 5 x 7 inch Negatives, A-G, Allen, Katie,undated + + + + + + 1 + 24 + 5 x 7 inch Negatives, A-G, Allen, Leona,undated + + + + + + 1 + 25 + 5 x 7 inch Negatives, A-G, Allen, Woody,undated + + + + + + 1 + 26 + 5 x 7 inch Negatives, A-G, Anderson, Claudie,undated + + + + + + 1 + 27 + 5 x 7 inch Negatives, A-G, Anderson, Dale - Wedding,undated + + + + + + 1 + 28 + 5 x 7 inch Negatives, A-G, Anderson, Loren - Wedding (3 envelopes),undated + + + + + + 1 + 29 + 5 x 7 inch Negatives, A-G, Anthony, Wayne - Wedding (2 envelopes),undated + + + + + + 1 + 30 + 5 x 7 inch Negatives, A-G, Archey, Ed (Mrs.) - Copy,January 5, 1970 + + + + + + 1 + 31 + 5 x 7 inch Negatives, A-G, Armstrong, Shirley,undated + + + + + + 1 + 32 + 5 x 7 inch Negatives, A-G, Arnold, James - Copy,June 17, 1968 + + + + + + 1 + 33 + 5 x 7 inch Negatives, A-G, Art Photographs, Francisco,undated + + + + + + 1 + 34 + 5 x 7 inch Negatives, A-G, Ash, Alvin - 1-year-old,undated + + + + + + 1 + 35 + 5 x 7 inch Negatives, A-G, Ash, Alvin - 1- and 2-year-old Children,undated + + + + + + 1 + 36 + 5 x 7 inch Negatives, A-G, Ash, Alvin - 1-year-old, 9th month,1961 + + + + + + 1 + 37 + 5 x 7 inch Negatives, A-G, Ash, Alvin - Wedding (2 envelopes),undated + + + + + + 1 + 38 + 5 x 7 inch Negatives, A-G, Ash, Shirley - 1-year-old,March 5, 1966 + + + + + + 1 + 39 + 5 x 7 inch Negatives, A-G, Ashquab, Rosie - Copies,undated + + + + + + 1 + 40 + 5 x 7 inch Negatives, A-G, Askegard, H. L. - (3 babies),undated + + + + + + 1 + 41 + 5 x 7 inch Negatives, A-G, Askegard, Harry - 1- and 2-year-old,March 21, 1964 + + + + + + 1 + 42 + 5 x 7 inch Negatives, A-G, Aungst, Don - H.S.,undated + + + + + + 1 + 43 + 5 x 7 inch Negatives, A-G, Austin, Marge,undated + + + + + + 1 + 44 + 5 x 7 inch Negatives, A-G, Avery, Lloyd - 9-month-old,undated + + + + + + 1 + 45 + 5 x 7 inch Negatives, A-G, Avery, Lloyd,undated + + + + + + 1 + 46 + 5 x 7 inch Negatives, A-G, Bader, Geo. - Baby,undated + + + + + + 1 + 47 + 5 x 7 inch Negatives, A-G, Bader, Geo. - 1st Communion,undated + + + + + + 1 + 48 + 5 x 7 inch Negatives, A-G, Bader, Geo. - Copy,undated + + + + + + 1 + 49 + 5 x 7 inch Negatives, A-G, Bader, Geo. - 13th-month-old,undated + + + + + + 1 + 50 + 5 x 7 inch Negatives, A-G, Bailey, Fred - Wedding (2 envelopes),undated + + + + + + 1 + 51 + 5 x 7 inch Negatives, A-G, Bailey, Nancy,undated + + + + + + 1 + 52 + 5 x 7 inch Negatives, A-G, Bailey, Sue - I.D.undated + + + + + + 1 + 53 + 5 x 7 inch Negatives, A-G, Baker, LeRoy,1966 + + + + + + 1 + 54 + 5 x 7 inch Negatives, A-G, Baldwin, Tripto (2 envelopes),undated + + + + + + 1 + 55 + 5 x 7 inch Negatives, A-G, Ball, Bob - H.S. (Robert H.),undated + + + + + + 1 + 56 + 5 x 7 inch Negatives, A-G, Ball, Bob - Family,undated + + + + + + 1 + 57 + 5 x 7 inch Negatives, A-G, Ball, Florence,undated + + + + + + 1 + 58 + 5 x 7 inch Negatives, A-G, Ball, Jack,undated + + + + + + 1 + 59 + 5 x 7 inch Negatives, A-G, Ball, Leonard - Copy,undated + + + + + + 1 + 60 + 5 x 7 inch Negatives, A-G, Ball, Ruth,undated + + + + + + 1 + 61 + 5 x 7 inch Negatives, A-G, Bardaville, John (2 envelopes),undated + + + + + + 1 + 62 + 5 x 7 inch Negatives, A-G, Barker, Geneva,undated + + + + + + 1 + 63 + 5 x 7 inch Negatives, A-G, Barnes, Caralane,undated + + + + + + 1 + 64 + 5 x 7 inch Negatives, A-G, Barrett, Clarence - (2),undated + + + + + + + 1 + 65 + 5 x 7 inch Negatives, A-G, Barrett, Joyce,undated + + + + + + 1 + 66 + 5 x 7 inch Negatives, A-G, Barton, Phylis,undated + + + + + + 1 + 67 + 5 x 7 inch Negatives, A-G, Bates, Janice - 5-month,undated + + + + + + 1 + 68 + 5 x 7 inch Negatives, A-G, Battle Motor Company Bowling,1941-1942 + + + + + + 1 + 69 + 5 x 7 inch Negatives, A-G, Baugham, Laura - I.D.,undated + + + + + + 1 + 70 + 5 x 7 inch Negatives, A-G, Bauman, Gerald - 1-year-old Girl,undated + + + + + + 1 + 71 + 5 x 7 inch Negatives, A-G, Bauman, Ted - Copyundated + + + + + + 1 + 72 + 5 x 7 inch Negatives, A-G, Baumann, Mable,undated + + + + + + 1 + 73 + 5 x 7 inch Negatives, A-G, Baxter, (Miss) - (Copy - Earl Peterson),undated + + + + + + 1 + 74 + 5 x 7 inch Negatives, A-G, Baxter, Neva - (Copy - Mrs. Warick),undated + + + + + + 1 + 75 + 5 x 7 inch Negatives, A-G, Beck, Andy,undated + + + + + + 1 + 76 + 5 x 7 inch Negatives, A-G, Beck, G. L. - Copy,undated + + + + + + 1 + 77 + 5 x 7 inch Negatives, A-G, Beckrend, Wm., Jr. - 3 children,undated + + + + + + 1 + 78 + 5 x 7 inch Negatives, A-G, Beerman, Gerald - 2- and 4-year-olds,undated + + + + + + 1 + 79 + 5 x 7 inch Negatives, A-G, Behrend, [no first name] - I.D.,undated + + + + + + 1 + 80 + 5 x 7 inch Negatives, A-G, Belint, Anna - Copy (2 envelopes),undated + + + + + + 1 + 81 + 5 x 7 inch Negatives, A-G, Belle, Lillian - I.D.,undated + + + + + + 1 + 82 + 5 x 7 inch Negatives, A-G, Bellinger, [no first name] - Copy,undated + + + + + + 1 + 83 + 5 x 7 inch Negatives, A-G, Bellinger, [no first name] - Bride (Chas. McConnell Daughter),undated + + + + + + 1 + 84 + 5 x 7 inch Negatives, A-G, Bellinger, Cecil - 4 Generations,undated + + + + + + 1 + 85 + 5 x 7 inch Negatives, A-G, Bellinger, Kathryn,undated + + + + + + 1 + 86 + 5 x 7 inch Negatives, A-G, Belsin, Betty,undated + + + + + + 1 + 87 + 5 x 7 inch Negatives, A-G, Benfard, Joch - Copy,undated + + + + + + 1 + 88 + 5 x 7 inch Negatives, A-G, Bergman, Belva - I.D.,undated + + + + + + 1 + 89 + 5 x 7 inch Negatives, A-G, Bierschback, E.,undated + + + + + + 1 + 90 + 5 x 7 inch Negatives, A-G, Bierschback, Eugene - 6- and 8-year-olds,November 14, 1967 + + + + + + 1 + 91 + 5 x 7 inch Negatives, A-G, Bierschback, Eugene - 1st Communion - Girl,May 4, 1968 + + + + + + 1 + 92 + 5 x 7 inch Negatives, A-G, Bierschback, James - Copy,undated + + + + + + 1 + 93 + 5 x 7 inch Negatives, A-G, Bierschback, Pat - Girl,undated + + + + + + 1 + 94 + 5 x 7 inch Negatives, A-G, Billsby, Roy - 2-year-old,undated + + + + + + 1 + 95 + 5 x 7 inch Negatives, A-G, Bissett, Carol - H.S.,undated + + + + + + 1 + 96 + 5 x 7 inch Negatives, A-G, Bissett, Sharon - H.S.,undated + + + + + + 1 + 97 + 5 x 7 inch Negatives, A-G, Bissette, Viola, I.D.,undated + + + + + + 1 + 98 + 5 x 7 inch Negatives, A-G, Bixby, Ed - 3 Children,Christmas 1949 + + + + + + 1 + 99 + 5 x 7 inch Negatives, A-G, Bixby, Ed,Christmas 1948 + + + + + + 1 + 100 + 5 x 7 inch Negatives, A-G, Bixby, John - 3 Children,undated + + + + + + 1 + 101 + 5 x 7 inch Negatives, A-G, Black, Delores,undated + + + + + + 1 + 102 + 5 x 7 inch Negatives, A-G, Blackman, Ann,undated + + + + + + 1 + 103 + 5 x 7 inch Negatives, A-G, Blackman, E. and Wife - 50th Anniversary,October 12, 1968 + + + + + + 1 + 104 + 5 x 7 inch Negatives, A-G, Bland, A. T. - Trooper (Michigan State Police),undated + + + + + + 1 + 105 + 5 x 7 inch Negatives, A-G, Blizzard, Jeann,undated + + + + + + 1 + 106 + 5 x 7 inch Negatives, A-G, Boder, Geo. -1st Communion - Girl,1960 + + + + + + 1 + 107 + 5 x 7 inch Negatives, A-G, Bollman, D. - Wedding (2 envelopes),undated + + + + + + 1 + 108 + 5 x 7 inch Negatives, A-G, Bollman, Ken - 4 Children and Mother,undated + + + + + + 1 + 109 + 5 x 7 inch Negatives, A-G, Bollman, Ken - 4 Children,undated + + + + + + 1 + 110 + 5 x 7 inch Negatives, A-G, Bollman, Ken - Twin Girls -1-year-old,undated + + + + + + 1 + 111 + 5 x 7 inch Negatives, A-G, Bollman, (Mrs.), Sr.,undated + + + + + + 1 + 112 + 5 x 7 inch Negatives, A-G, Bondy, [no first name] - Wedding (2 envelopes),undated + + + + + + 1 + 113 + 5 x 7 inch Negatives, A-G, Bonnell, Ed Jr. Copy (2 envelopes)undated + + + + + + 1 + 114 + 5 x 7 inch Negatives, A-G, Border, Geo. - Baby (2 envelopes),undated + + + + + + 1 + 115 + 5 x 7 inch Negatives, A-G, Bordine, Barbara Ann - Copy,undated + + + + + + 1 + 116 + 5 x 7 inch Negatives, A-G, Borle, Ray,undated + + + + + + 1 + 117 + 5 x 7 inch Negatives, A-G, Bourland, Jim - Family -Copy,undated + + + + + + 1 + 118 + 5 x 7 inch Negatives, A-G, Bourland, Jim, Jr.,undated + + + + + + 1 + 119 + 5 x 7 inch Negatives, A-G, Bourland, Joanne,undated + + + + + + 1 + 120 + 5 x 7 inch Negatives, A-G, Bourland, Joanne - H.S.,undated + + + + + + 1 + 121 + 5 x 7 inch Negatives, A-G, Bourland, Sharron,undated + + + + + + 1 + 122 + 5 x 7 inch Negatives, A-G, Bousbey, Cris, - I.D.,November 3, 1967 + + + + + + 1 + 123 + 5 x 7 inch Negatives, A-G, Boussum, C.,undated + + + + + + 1 + 124 + 5 x 7 inch Negatives, A-G, Bowser, Wm. - 2-year-old,undated + + + + + + 1 + 125 + 5 x 7 inch Negatives, A-G, Brandt Electronics (3 envelopes),undated + + + + + + 1 + 126 + 5 x 7 inch Negatives, A-G, Branson, Orville (2 envelopes),undated + + + + + + 1 + 127 + 5 x 7 inch Negatives, A-G, Brazington, [no first name] - Copy,undated + + + + + + 1 + 128 + 5 x 7 inch Negatives, A-G, Brecht, Marjorie (Mrs.) - 1-year-old Boy and 3-year-old Girl,undated + + + + + + 1 + 129 + 5 x 7 inch Negatives, A-G, Brecht, Marjorie (Mrs.) - 1-year-old Boy,undated + + + + + + 1 + 130 + 5 x 7 inch Negatives, A-G, Brecht, Richard - 1-year-old Girl,undated + + + + + + 1 + 131 + 5 x 7 inch Negatives, A-G, Brecht, Richard - 3 Children,undated + + + + + + 1 + 132 + 5 x 7 inch Negatives, A-G, Brewer, Matt - and Wife,undated + + + + + + 1 + 133 + 5 x 7 inch Negatives, A-G, Brickner, Dale - 14-month-old,undated + + + + + + 1 + 134 + 5 x 7 inch Negatives, A-G, Brock, Valeria,undated + + + + + + 1 + 135 + 5 x 7 inch Negatives, A-G, Brondstetter, Joe -2.5-year-old Girl,undated + + + + + + 1 + 136 + 5 x 7 inch Negatives, A-G, Brondstetter, Joe -2.5-year-old Girl with 3.5-year-old Ronald Warners,undated + + + + + + 1 + 137 + 5 x 7 inch Negatives, A-G, Brown, Betty,undated + + + + + + 1 + 138 + 5 x 7 inch Negatives, A-G, Brown, Cedrie - Boy, 1st Communion,undated + + + + + + 1 + 139 + 5 x 7 inch Negatives, A-G, Brown, Cedrie,1954 + + + + + + 1 + 140 + 5 x 7 inch Negatives, A-G, Brown, Cedrie, I.D.undated + + + + + + 1 + 141 + 5 x 7 inch Negatives, A-G, Brown, R.L.,undated + + + + + + 1 + 142 + 5 x 7 inch Negatives, A-G, Brown, Ronald -I.D.,undated + + + + + + 1 + 143 + 5 x 7 inch Negatives, A-G, Brunson, R. -I.D.,undated + + + + + + 1 + 144 + 5 x 7 inch Negatives, A-G, Buffard, Jean,undated + + + + + + 1 + 145 + 5 x 7 inch Negatives, A-G, Bugbee, Bertha,undated + + + + + + 1 + 146 + 5 x 7 inch Negatives, A-G, Bugbee, Lewis,undated + + + + + + 1 + 147 + 5 x 7 inch Negatives, A-G, Bullard, Alden - Wedding (2 envelopes),undated + + + + + + 1 + 148 + 5 x 7 inch Negatives, A-G, Builders Supply Company,1940 + + + + + + 1 + 149 + 5 x 7 inch Negatives, A-G, Bullard, Ed - Wedding (2 envelopes),undated + + + + + + 1 + 150 + 5 x 7 inch Negatives, A-G, Bullard, Ray - Wedding (2 envelopes),undated + + + + + + 1 + 151 + 5 x 7 inch Negatives, A-G, Bundy, Wm. (Mrs.) - Copy of His Last Will and Testament (3 envelopes),undated + + + + + + 1 + 152 + 5 x 7 inch Negatives, A-G, Bundy, William - and Wife,undated + + + + + + 1 + 153 + 5 x 7 inch Negatives, A-G, Bunker, Joyce,undated + + + + + + 1 + 154 + 5 x 7 inch Negatives, A-G, Bunker, Larry,1963 + + + + + + 1 + 155 + 5 x 7 inch Negatives, A-G, Bunker, Larry - H.S.,1961 + + + + + + 1 + 156 + 5 x 7 inch Negatives, A-G, Bunker, Walter (2 envelopes),undated + + + + + + 1 + 157 + 5 x 7 inch Negatives, A-G, Bunting, Oral - and Wife,undated + + + + + + 1 + 158 + 5 x 7 inch Negatives, A-G, Burch, Jim - H.S.,undated + + + + + + 1 + 159 + 5 x 7 inch Negatives, A-G, Burned Victim,undated + + + + + + 1 + 160 + 5 x 7 inch Negatives, A-G, Bush, Joe (Mrs.) - 1.5-year-old Girl,undated + + + + + + 1 + 161 + 5 x 7 inch Negatives, A-G, Bushong, Ben,undated + + + + + + 1 + 162 + 5 x 7 inch Negatives, A-G, Bushong, Marvel - H.S.,undated + + + + + + 1 + 163 + 5 x 7 inch Negatives, A-G, Bushong, Patricia - H.S.,undated + + + + + + 1 + 164 + 5 x 7 inch Negatives, A-G, Bushong, Shirley,undated + + + + + + 1 + 165 + 5 x 7 inch Negatives, A-G, Byrd, Paulette - 8-week-old Girl,undated + + + + + + 1 + 166 + 5 x 7 inch Negatives, A-G, Byrd, Pauline - 2-year-old,June 11, 1966 + + + + + + 1 + 167 + 5 x 7 inch Negatives, A-G, Caldwell, K.,undated + + + + + + 1 + 168 + 5 x 7 inch Negatives, A-G, Calkins, [no first name],September 17, 1948 + + + + + + 1 + 169 + 5 x 7 inch Negatives, A-G, Calkins, Wm. and Wife,undated + + + + + + + 1 + 170 + 5 x 7 inch Negatives, A-G, Campbell, [no first name],undated + + + + + + 1 + 171 + 5 x 7 inch Negatives, A-G, Campbell, Beverly,1951 + + + + + + 1 + 172 + 5 x 7 inch Negatives, A-G, Campbell, Beverly,1954 + + + + + + 1 + 173 + 5 x 7 inch Negatives, A-G, Campbell, Connie,undated + + + + + + 1 + 174 + 5 x 7 inch Negatives, A-G, Campbell, Hugh,May 1939 + + + + + + 1 + 175 + 5 x 7 inch Negatives, A-G, Campbell, Lawrence B. - (3),undated + + + + + + 1 + 176 + 5 x 7 inch Negatives, A-G, Campbell, Robt. - Baby Boy,undated + + + + + + 1 + 177 + 5 x 7 inch Negatives, A-G, Campbell, Robt. - 2 Boys,undated + + + + + + 1 + 178 + 5 x 7 inch Negatives, A-G, Canute, Clair - 9-month-old,undated + + + + + + 1 + 179 + 5 x 7 inch Negatives, A-G, Canute, Glen L. - Army Discharge,undated + + + + + + 1 + 180 + 5 x 7 inch Negatives, A-G, Carey, Ed and Wife (2 envelopes),undated + + + + + + 1 + 181 + 5 x 7 inch Negatives, A-G, Carey, Richard - 1st Communion,1961/1962 + + + + + + 1 + 182 + 5 x 7 inch Negatives, A-G, Carey, Richard- 4 year-old boy,undated + + + + + + 1 + 183 + 5 x 7 inch Negatives, A-G, Carmichael, Duncan - and Wife,undated + + + + + + 1 + 184 + 5 x 7 inch Negatives, A-G, Carnaham, Tip,September 5, 1969 + + + + + + 1 + 185 + 5 x 7 inch Negatives, A-G, Carnaham, Tip (Mrs.),September 5, 1969 + + + + + + 1 + 186 + 5 x 7 inch Negatives, A-G, Carr, Guy (Mrs.),November 5, 1966 + + + + + + 1 + 187 + 5 x 7 inch Negatives, A-G, Carroll, Mike,undated + + + + + + 1 + 188 + 5 x 7 inch Negatives, A-G, Cartwright, Floyd,undated + + + + + + 1 + 189 + 5 x 7 inch Negatives, A-G, Cashen, George -1-and 3-year-old Boys,undated + + + + + + 1 + 190 + 5 x 7 inch Negatives, A-G, Casner, Mary Lou,undated + + + + + + 1 + 191 + 5 x 7 inch Negatives, A-G, Catcher, Chief Amos - I.D.,undated + + + + + + 1 + 192 + 5 x 7 inch Negatives, A-G, Caulkins, Nelson,undated + + + + + + 1 + 193 + 5 x 7 inch Negatives, A-G, Centennial Association, Central State Normal School Building,June 26, 1964 + + + + + + 1 + 194 + 5 x 7 inch Negatives, A-G, Centennial Association, Broadway Avenue View of Mount Pleasant,June 26, 1964 + + + + + + 1 + 195 + 5 x 7 inch Negatives, A-G, Centennial Association, John W. Morrison Store,June 26, 1964 + + + + + + 1 + 196 + 5 x 7 inch Negatives, A-G, Centennial Association, Main Street,June 26, 1964 + + + + + + 1 + 197 + 5 x 7 inch Negatives, A-G, Central [Michigan University] Football Players,1942 + + + + + + 1 + 198 + 5 x 7 inch Negatives, A-G, Chaffee, Don - 1-year-old Girl,undated + + + + + + 1 + 199 + 5 x 7 inch Negatives, A-G, Chamberlain (Mrs.) - I.D.,undated + + + + + + 1 + 200 + 5 x 7 inch Negatives, A-G, Chase, Fanny,undated + + + + + + 1 + 201 + 5 x 7 inch Negatives, A-G, Chippewa River,undated + + + + + + 1 + 202 + 5 x 7 inch Negatives, A-G, Christianson, (Mrs.) - Mrs. Christianson with 2 Children,undated + + + + + + 1 + 203 + 5 x 7 inch Negatives, A-G, Clare, Cecil - (Bruce) - 1st Communion (2 envelopes),undated + + + + + + 1 + 204 + 5 x 7 inch Negatives, A-G, Clare, Cecil - (Mark) - 1st Communion,1963 + + + + + + 1 + 205 + 5 x 7 inch Negatives, A-G, Clark, Larry (2 envelopes),undated + + + + + + 1 + 206 + 5 x 7 inch Negatives, A-G, Cline Advertising Agency - Hanson's Milk - Milk Carton,July 17, 1968 + + + + + + 1 + 207 + 5 x 7 inch Negatives, A-G, Cline Advertising Agency - Ideal Cottage Cheese,undated + + + + + + 1 + 208 + 5 x 7 inch Negatives, A-G, Cline Advertising Agency - vel-va-cote -Latex Flat Paint,December 26, 1964 + + + + + + 1 + 209 + 5 x 7 inch Negatives, A-G, Cline, Roy -Advertising Agency (2 envelopes),undated + + + + + + 1 + 210 + 5 x 7 inch Negatives, A-G, Cluley, Wallace - 7-month-old Girl,undated + + + + + + 1 + 211 + 5 x 7 inch Negatives, A-G, Clymiers (Mrs.),undated + + + + + + 1 + 212 + 5 x 7 inch Negatives, A-G, Coady, James - 1-and 3-year-olds,undated + + + + + + 1 + 213 + 5 x 7 inch Negatives, A-G, Coady, Mary - I.D.,undated + + + + + + 1 + 214 + 5 x 7 inch Negatives, A-G, Cochran, Gary,undated + + + + + + 1 + 215 + 5 x 7 inch Negatives, A-G, Cochran, Joe - Academy Senior,September 29, 1962 + + + + + + 1 + 216 + 5 x 7 inch Negatives, A-G, Coellner, Elaine -Copy,February 5, 1965 + + + + + + 1 + 217 + 5 x 7 inch Negatives, A-G, Coellner, Elaine,December 14, 1968 + + + + + + 1 + 218 + 5 x 7 inch Negatives, A-G, Conners, Bob - Wedding (2 envelopes),undated + + + + + + 1 + 219 + 5 x 7 inch Negatives, A-G, Conners, Francis Thomas - Honorable Discharge from Navy,February 26, 1946 + + + + + + 1 + 220 + 5 x 7 inch Negatives, A-G, Conners, Jim,undated + + + + + + 1 + 221 + 5 x 7 inch Negatives, A-G, Conners, Jim - Baby Boy,undated + + + + + + 1 + 222 + 5 x 7 inch Negatives, A-G, Conners, Jim - Wedding,undated + + + + + + 1 + 223 + 5 x 7 inch Negatives, A-G, Conners, Jim, Sr. - Copy (2 envelopes),undated + + + + + + 1 + 224 + 5 x 7 inch Negatives, A-G, Cook, Bob - Wedding,undated + + + + + + 1 + 225 + 5 x 7 inch Negatives, A-G, Cook, Fritz,undated + + + + + + 1 + 226 + 5 x 7 inch Negatives, A-G, Cook, Steve,undated + + + + + + 1 + 227 + 5 x 7 inch Negatives, A-G, Cook, Theo -3-month-old,undated + + + + + + + 1 + 228 + 5 x 7 inch Negatives, A-G, Cook, Theo - Girl,undated + + + + + + 1 + 229 + 5 x 7 inch Negatives, A-G, Cooley, Dick (Mrs.),undated + + + + + + 1 + 230 + 5 x 7 inch Negatives, A-G, Cooley, Elaine,undated + + + + + + 1 + 231 + 5 x 7 inch Negatives, A-G, Coon, Buelah (Mrs.) -Copy (4 envelopes),March 1, 1967 + + + + + + 1 + 232 + 5 x 7 inch Negatives, A-G, Coppins, Emiel,undated + + + + + + 1 + 233 + 5 x 7 inch Negatives, A-G, Coppins, Elmer - and Wife,undated + + + + + + 1 + 234 + 5 x 7 inch Negatives, A-G, Coppins, Elmer - Son,undated + + + + + + 1 + 235 + 5 x 7 inch Negatives, A-G, Corcoran, Fred,June 20,1966 + + + + + + 1 + 236 + 5 x 7 inch Negatives, A-G, Corcoran, Fred - (copy Thomas C.),undated + + + + + + 1 + 237 + 5 x 7 inch Negatives, A-G, Corcoran, George and Wife,undated + + + + + + 1 + 238 + 5 x 7 inch Negatives, A-G, Corcoran, Jim,undated + + + + + + + 1 + 239 + 5 x 7 inch Negatives, A-G, Corcoran, Pat - and Glen Donahue,undated + + + + + + 1 + 240 + 5 x 7 inch Negatives, A-G, Costello, Delores - H.S.,undated + + + + + + 1 + 241 + 5 x 7 inch Negatives, A-G, Cotsman, John - Baby Girl,undated + + + + + + 1 + 242 + 5 x 7 inch Negatives, A-G, Courser, [no first name] -25th Anniversary,undated + + + + + + 1 + 243 + 5 x 7 inch Negatives, A-G, Courser, Ed and Wife,December 14, 1966 + + + + + + 1 + 244 + 5 x 7 inch Negatives, A-G, Courser, William - Wedding (2 envelopes),undated + + + + + + 1 + 245 + 5 x 7 inch Negatives, A-G, Cowden, Kenneth,undated + + + + + + 1 + 246 + 5 x 7 inch Negatives, A-G, Cowell, Janie - I.D.,undated + + + + + + 1 + 247 + 5 x 7 inch Negatives, A-G, Crane, Doris,undated + + + + + + 1 + 248 + 5 x 7 inch Negatives, A-G, Crane, G. (Mrs.),undated + + + + + + 1 + 249 + 5 x 7 inch Negatives, A-G, Crane, Loyd - Baby Girl,undated + + + + + + 1 + 250 + 5 x 7 inch Negatives, A-G, Crane, Loyd - Wedding,undated + + + + + + 1 + 251 + 5 x 7 inch Negatives, A-G, Crane, Pat - H.S.,undated + + + + + + 1 + 252 + 5 x 7 inch Negatives, A-G, Craven, [no first name] - Couple,undated + + + + + + 1 + 253 + 5 x 7 inch Negatives, A-G, Crawford, Ronald - Family,undated + + + + + + 1 + 254 + 5 x 7 inch Negatives, A-G, Curtis, S.L.,undated + + + + + + 1 + 255 + 5 x 7 inch Negatives, A-G, Cutler, Chas. - 9-month-old,September 12, 1962 + + + + + + 1 + 256 + 5 x 7 inch Negatives, A-G, Cutler, Chas. - 9-month-old,December 16, 1967 + + + + + + 1 + 257 + 5 x 7 inch Negatives, A-G, Cutler, Chas. - Wedding (2 envelopes),undated + + + + + + 1 + 258 + 5 x 7 inch Negatives, A-G, Dale, Ronnie,undated + + + + + + 1 + 259 + 5 x 7 inch Negatives, A-G, Dalrymple, Bill - H.S.,April 4, 1969 + + + + + + 1 + 260 + 5 x 7 inch Negatives, A-G, Dammeyer, Karen,undated + + + + + + 1 + 261 + 5 x 7 inch Negatives, A-G, Darrow, Matthew,February 25, 1967 + + + + + + 1 + 262 + 5 x 7 inch Negatives, A-G, Dart, Ross - Baby Girl,undated + + + + + + 1 + 263 + 5 x 7 inch Negatives, A-G, Davis, George -Copy of Germany,September 1951 + + + + + + 1 + 264 + 5 x 7 inch Negatives, A-G, Davis, Gordon,undated + + + + + + 1 + 265 + 5 x 7 inch Negatives, A-G, Davis, Jack - Wedding (3 envelopes),undated + + + + + + 1 + 266 + 5 x 7 inch Negatives, A-G, Davis, Larry - H.S.,undated + + + + + + 1 + 267 + 5 x 7 inch Negatives, A-G, Davis, Mary,undated + + + + + + 1 + 268 + 5 x 7 inch Negatives, A-G, Davis, Norma,undated + + + + + + 1 + 269 + 5 x 7 inch Negatives, A-G, Davis, W.D. - Copy,undated + + + + + + 1 + 270 + 5 x 7 inch Negatives, A-G, Day, W. S. (Mrs.),undated + + + + + + 1 + 271 + 5 x 7 inch Negatives, A-G, Decess, Homer,undated + + + + + + 1 + 272 + 5 x 7 inch Negatives, A-G, Decker, George and Wife,April 5, 1969 + + + + + + 1 + 273 + 5 x 7 inch Negatives, A-G, Decker, Glenn E. - Wedding (2 envelopes),undated + + + + + + 1 + 274 + 5 x 7 inch Negatives, A-G, Deer,undated + + + + + + 1 + 275 + 5 x 7 inch Negatives, A-G, Deer - (4),undated + + + + + + 1 + 276 + 5 x 7 inch Negatives, A-G, Deer Hunting,1949 + + + + + + 1 + 277 + 5 x 7 inch Negatives, A-G, DeFay, James - (2),undated + + + + + + 1 + 278 + 5 x 7 inch Negatives, A-G, Degard, Cy - and Wife,undated + + + + + + 1 + 279 + 5 x 7 inch Negatives, A-G, DeLong, Mrs., Sr. - 3 Babies,January 23, 1965 + + + + + + 1 + 280 + 5 x 7 inch Negatives, A-G, DeLong, Barbara -5.5-month-old Girl,August 4, 1962 + + + + + + 1 + 281 + 5 x 7 inch Negatives, A-G, Demis, Tom,undated + + + + + + 1 + 282 + 5 x 7 inch Negatives, A-G, DeMoines, Mary,May 28, 1969 + + + + + + 1 + 283 + 5 x 7 inch Negatives, A-G, Demski, George,undated + + + + + + 1 + 284 + 5 x 7 inch Negatives, A-G, Demski, Rose,undated + + + + + + 1 + 285 + 5 x 7 inch Negatives, A-G, Dennis, Shirley,October 7, 1966 + + + + + + 1 + 286 + 5 x 7 inch Negatives, A-G, Denslow, Harriet,undated + + + + + + 1 + 287 + 5 x 7 inch Negatives, A-G, Denslow, L. (2 envelopes),undated + + + + + + 1 + 288 + 5 x 7 inch Negatives, A-G, Dent, Gerald,undated + + + + + + 1 + 289 + 5 x 7 inch Negatives, A-G, Dent, Paul - Family,undated + + + + + + 1 + 290 + 5 x 7 inch Negatives, A-G, Dent, Rodney - H.S.,undated + + + + + + 1 + 291 + 5 x 7 inch Negatives, A-G, Detiviler, Will - Copy,undated + + + + + + 1 + 292 + 5 x 7 inch Negatives, A-G, Devaney, F. and Wife,October 10, 1968 + + + + + + 1 + 293 + 5 x 7 inch Negatives, A-G, Dexter (Mrs.) - Copy,undated + + + + + + 1 + 294 + 5 x 7 inch Negatives, A-G, Dibble, Lewis F. - 3 Boys,undated + + + + + + 1 + 295 + 5 x 7 inch Negatives, A-G, Dibble, Lloyd - Copy,undated + + + + + + 1 + 296 + 5 x 7 inch Negatives, A-G, Dibble, Tom,December 27, 1966 + + + + + + 1 + 297 + 5 x 7 inch Negatives, A-G, Dickinson, Terry and Wife,undated + + + + + + 1 + 298 + 5 x 7 inch Negatives, A-G, Dill, Francis - Wedding (2 envelopes),undated + + + + + + 1 + 299 + 5 x 7 inch Negatives, A-G, Dintaman, Bernice,undated + + + + + + 1 + 300 + 5 x 7 inch Negatives, A-G, Dixon, Frank (Mrs.) - Copy,undated + + + + + + 1 + 301 + 5 x 7 inch Negatives, A-G, Doerfer, Eldon - Wedding (2 envelopes),undated + + + + + + 1 + 302 + 5 x 7 inch Negatives, A-G, Doerfer, Ellen,undated + + + + + + 1 + 303 + 5 x 7 inch Negatives, A-G, Doerfer, Violet,undated + + + + + + 1 + 304 + 5 x 7 inch Negatives, A-G, Doll, Marlene,undated + + + + + + 1 + 305 + 5 x 7 inch Negatives, A-G, Donald, Bertha,undated + + + + + + 1 + 306 + 5 x 7 inch Negatives, A-G, Donald, Loretta,undated + + + + + + 1 + 307 + 5 x 7 inch Negatives, A-G, Dora, Bernice,undated + + + + + + 1 + 308 + 5 x 7 inch Negatives, A-G, Dowell, Al - H.S. (2 envelopes),undated + + + + + + 1 + 309 + 5 x 7 inch Negatives, A-G, Dowell, Dick,undated + + + + + + 1 + 310 + 5 x 7 inch Negatives, A-G, Dowell, Ray - H.S.,undated + + + + + + 1 + 311 + 5 x 7 inch Negatives, A-G, Dozik, Regenia,undated + + + + + + 1 + 312 + 5 x 7 inch Negatives, A-G, Draper, Rosie Fairchild,undated + + + + + + 1 + 313 + 5 x 7 inch Negatives, A-G, Duddles, Jim,undated + + + + + + 1 + 314 + 5 x 7 inch Negatives, A-G, Duddles, Linda,undated + + + + + + 1 + 315 + 5 x 7 inch Negatives, A-G, Dumon, Chas.,undated + + + + + + 1 + 316 + 5 x 7 inch Negatives, A-G, Earl, Don (2 envelopes),undated + + + + + + 1 + 317 + 5 x 7 inch Negatives, A-G, Earns, Harry - Copy (2 envelopes),undated + + + + + + + + 1 + 318 + 5 x 7 inch Negatives, A-G, Edmonds, Robert - Copy of Honorable Discharge,December 13, 1947 + + + + + + 1 + 319 + 5 x 7 inch Negatives, A-G, Egbert, C.E.,undated + + + + + + 1 + 320 + 5 x 7 inch Negatives, A-G, Ege, Anthony - and Wife,undated + + + + + + 1 + 321 + 5 x 7 inch Negatives, A-G, Ege, Joanne,undated + + + + + + 1 + 322 + 5 x 7 inch Negatives, A-G, Ehle, Thelma - H.S.,undated + + + + + + 1 + 323 + 5 x 7 inch Negatives, A-G, Eikland, Erling - I.D.,undated + + + + + + 1 + 324 + 5 x 7 inch Negatives, A-G, Eismann, Nancy - Copy,undated + + + + + + 1 + 325 + 5 x 7 inch Negatives, A-G, Eismann, Nancy,1961 + + + + + + 1 + 326 + 5 x 7 inch Negatives, A-G, Eismann, Nancy, H.S.,undated + + + + + + 1 + 327 + 5 x 7 inch Negatives, A-G, Elliott, Robert - 2-year-old,undated + + + + + + 1 + 328 + 5 x 7 inch Negatives, A-G, Ellison, Ray - I.D.,undated + + + + + + 1 + 329 + 5 x 7 inch Negatives, A-G, Emlinger, R. - Wedding (2 envelopes),undated + + + + + + 1 + 330 + 5 x 7 inch Negatives, A-G, Emory, Marjory,undated + + + + + + 1 + 331 + 5 x 7 inch Negatives, A-G, Emory, Marjarie -Baby Boy,undated + + + + + + 1 + 332 + 5 x 7 inch Negatives, A-G, English, Diann - I.D.,undated + + + + + + 1 + 333 + 5 x 7 inch Negatives, A-G, Ervin, Effie,undated + + + + + + 1 + 334 + 5 x 7 inch Negatives, A-G, Esch, Bernard,undated + + + + + + 1 + 335 + 5 x 7 inch Negatives, A-G, Esch, Lewis and Wife,August 28, 1965 + + + + + + 1 + 336 + 5 x 7 inch Negatives, A-G, Esch, Lynn Don - Copy of Army Discharge,undated + + + + + + 1 + 337 + 5 x 7 inch Negatives, A-G, Esch, Paul - Wedding,undated + + + + + + 1 + 338 + 5 x 7 inch Negatives, A-G, Faber, Bill - I.D.,undated + + + + + + 1 + 339 + 5 x 7 inch Negatives, A-G, Faber, Richard - 1-year-old,July 24, 1965 + + + + + + 1 + 340 + 5 x 7 inch Negatives, A-G, Faber, Wm. and Wife,undated + + + + + + 1 + 341 + 5 x 7 inch Negatives, A-G, Fabiano, Erdine,undated + + + + + + 1 + 342 + 5 x 7 inch Negatives, A-G, Fabiano, Joe,undated + + + + + + 1 + 343 + 5 x 7 inch Negatives, A-G, Fabiano, Joe - Copy of Mother,August 20, 1966 + + + + + + 1 + 344 + 5 x 7 inch Negatives, A-G, Fabiano, Joe and Erdine,undated + + + + + + 1 + 345 + 5 x 7 inch Negatives, A-G, Fair, Roy,undated + + + + + + 1 + 346 + 5 x 7 inch Negatives, A-G, Fair, Roy - Wedding,October 15, 1964 + + + + + + 1 + 347 + 5 x 7 inch Negatives, A-G, Feltman, Leo - Wedding (2 envelopes),undated + + + + + + 1 + 348 + 5 x 7 inch Negatives, A-G, Feltman, Martha,undated + + + + + + 1 + 349 + 5 x 7 inch Negatives, A-G, Feltman, Rose Marie,undated + + + + + + 1 + 350 + 5 x 7 inch Negatives, A-G, Ferris, Chas. (Mrs.),undated + + + + + + 1 + 351 + 5 x 7 inch Negatives, A-G, Fertaw, Leonard (Mrs.) - 1st Communion, Boy,undated + + + + + + 1 + 352 + 5 x 7 inch Negatives, A-G, Fetterly, Dorothy,June 22, 1968 + + + + + + 1 + 353 + 5 x 7 inch Negatives, A-G, Finnerty, K. - 5 children,undated + + + + + + 1 + 354 + 5 x 7 inch Negatives, A-G, Finnerty, Robt. - 8-month-old Boy,1962 + + + + + + 1 + 355 + 5 x 7 inch Negatives, A-G, Finnerty, Robt. - 6-month-old,January 11, 1964 + + + + + + 1 + 356 + 5 x 7 inch Negatives, A-G, Finney, Paul - H.S.,undated + + + + + + 1 + 357 + 5 x 7 inch Negatives, A-G, Fire Truck,undated + + + + + + 1 + 358 + 5 x 7 inch Negatives, A-G, Fish,1949 + + + + + + 1 + 359 + 5 x 7 inch Negatives, A-G, Fish, Eirnice,undated + + + + + + 1 + 360 + 5 x 7 inch Negatives, A-G, Fish, Enoch - Honorable Discharge (2 envelopes),July 4, 1945 + + + + + + 1 + 361 + 5 x 7 inch Negatives, A-G, Fish, Georgia - Copy,undated + + + + + + 1 + 362 + 5 x 7 inch Negatives, A-G, Fish, Robt. - Wedding (2 envelopes),undated + + + + + + 1 + 363 + 5 x 7 inch Negatives, A-G, Fisher, Verla,undated + + + + + + 1 + 364 + 5 x 7 inch Negatives, A-G, Fitzgerald, Floyd - 50th Anniversary,January 17, 1970 + + + + + + 1 + 365 + 5 x 7 inch Negatives, A-G, Fitzpatrick Family,undated + + + + + + 1 + 366 + 5 x 7 inch Negatives, A-G, Fitzpatrick, J. - Family,undated + + + + + + 1 + 367 + 5 x 7 inch Negatives, A-G, Fitzpatrick, Jack - 2 Children,undated + + + + + + 1 + 368 + 5 x 7 inch Negatives, A-G, Fitzpatrick, Jim - 2.5-month-old Boy,undated + + + + + + 1 + 369 + 5 x 7 inch Negatives, A-G, Flannery, Bob, 1-year-old,undated + + + + + + 1 + 370 + 5 x 7 inch Negatives, A-G, Flannery, Bob, 2-year-old Boy,undated + + + + + + 1 + 371 + 5 x 7 inch Negatives, A-G, Flannery, Rome and Wife (2 envelopes),undated + + + + + + 1 + 372 + 5 x 7 inch Negatives, A-G, Flaugher, Elmer,undated + + + + + + 1 + 373 + 5 x 7 inch Negatives, A-G, Flaugher, Elmer - Copy (2 envelopes),undated + + + + + + 1 + 374 + 5 x 7 inch Negatives, A-G, Flaugher, Mrs. Elmer (Elizabeth, 2 envelopes),undated + + + + + + 1 + 375 + 5 x 7 inch Negatives, A-G, Flaugher, Ron (Mrs.) -Playing Drums,undated + + + + + + 1 + 376 + 5 x 7 inch Negatives, A-G, Fluharty, Harold - 4 Children,1955 + + + + + + 1 + 377 + 5 x 7 inch Negatives, A-G, Fluharty, Harold (Mrs.),undated + + + + + + 1 + 378 + 5 x 7 inch Negatives, A-G, Fluharty, Jack - H.S.,undated + + + + + + 1 + 379 + 5 x 7 inch Negatives, A-G, Foltz, Frank,undated + + + + + + 1 + 380 + 5 x 7 inch Negatives, A-G, Foltz, Judy,undated + + + + + + 1 + 381 + 5 x 7 inch Negatives, A-G, Foote, Lawrence,undated + + + + + + 1 + 382 + 5 x 7 inch Negatives, A-G, Forney, Mabel,undated + + + + + + 1 + 383 + 5 x 7 inch Negatives, A-G, Forney, Mabel (Mrs. Sam) - Copy of Sam in Uniform,undated + + + + + + 1 + 384 + 5 x 7 inch Negatives, A-G, Fortino, Paul,undated + + + + + + 1 + 385 + 5 x 7 inch Negatives, A-G, Fortino, Wm., Dr.,undated + + + + + + 1 + 386 + 5 x 7 inch Negatives, A-G, Fortino, Wm., Dr., - 7-year-old,undated + + + + + + 1 + 387 + 5 x 7 inch Negatives, A-G, Fox, Herman - 1.5-year-old Girl,undated + + + + + + 1 + 388 + 5 x 7 inch Negatives, A-G, Fox, Mary,undated + + + + + + 1 + 389 + 5 x 7 inch Negatives, A-G, Fox, Richard - Wedding (2 envelopes),undated + + + + + + 1 + 390 + 5 x 7 inch Negatives, A-G, Fox, Sylvester - Girl - 1st Communion,undated + + + + + + 1 + 391 + 5 x 7 inch Negatives, A-G, Fox, W.J. - Wedding (2 envelopes),undated + + + + + + 1 + 392 + 5 x 7 inch Negatives, A-G, Francisco (Mrs., 2 envelopes, see also Oversized folder),undated + + + + + + 1 + 393 + 5 x 7 inch Negatives, A-G, Francisco Family (27 envelopes),undated + + + + + + 1 + 394 + 5 x 7 inch Negatives, A-G, Francisco Studio,undated + + + + + + 1 + 395 + 5 x 7 inch Negatives, A-G, Frank, Linda - Girl,undated + + + + + + 1 + 396 + 5 x 7 inch Negatives, A-G, Frantz, Bill - Copy,undated + + + + + + 1 + 397 + 5 x 7 inch Negatives, A-G, Frantz, June,undated + + + + + + 1 + 398 + 5 x 7 inch Negatives, A-G, Frantz, Wm and Wife - 50th Anniversary,September 27, 1969 + + + + + + 1 + 399 + 5 x 7 inch Negatives, A-G, Freeze, Barbara - H.S.,undated + + + + + + 1 + 400 + 5 x 7 inch Negatives, A-G, Freeze, Richard L. - Copy of Army Discharge,July 1952 + + + + + + 1 + 401 + 5 x 7 inch Negatives, A-G, Freeze, Roger - 14-year-old Boy,undated + + + + + + 1 + 402 + 5 x 7 inch Negatives, A-G, French, Clark - Electric Spur,December 21, 1968 + + + + + + 1 + 403 + 5 x 7 inch Negatives, A-G, Frich, Carl,undated + + + + + + 1 + 404 + 5 x 7 inch Negatives, A-G, Frich, Carl - Wedding (3 envelopes),undated + + + + + + 1 + 405 + 5 x 7 inch Negatives, A-G, Frick, August, Sr. - Family,undated + + + + + + 1 + 406 + 5 x 7 inch Negatives, A-G, Frick, August, Sr. - 2 Sisters,undated + + + + + + 1 + 407 + 5 x 7 inch Negatives, A-G, Frick, Carl - 8-month-old,1958 + + + + + + 1 + 408 + 5 x 7 inch Negatives, A-G, Frick, Carl - 3 Children,undated + + + + + + 1 + 409 + 5 x 7 inch Negatives, A-G, Frick, Carl,undated + + + + + + 1 + 410 + 5 x 7 inch Negatives, A-G, Frick, Carl - Baby,undated + + + + + + 1 + 411 + 5 x 7 inch Negatives, A-G, Frick, Carl - 8-month-old Girl,1966 + + + + + + 1 + 412 + 5 x 7 inch Negatives, A-G, Frick, Frank, - 1-year-old - Copy of 3 Girls,October 1963 + + + + + + 1 + 413 + 5 x 7 inch Negatives, A-G, Frick, Frank, Baby Girl,undated + + + + + + 1 + 414 + 5 x 7 inch Negatives, A-G, Frick, Frank,1955 + + + + + + 1 + 415 + 5 x 7 inch Negatives, A-G, Frick, Frank, 4 and 1,1959 + + + + + + 1 + 416 + 5 x 7 inch Negatives, A-G, Frick, Max - H.S.,undated + + + + + + 1 + 417 + 5 x 7 inch Negatives, A-G, Frick, Otto,undated + + + + + + 1 + 418 + 5 x 7 inch Negatives, A-G, Fugate, R.J. - Copy,November 10, 1964 + + + + + + 1 + 419 + 5 x 7 inch Negatives, A-G, Funnell, Joyce,undated + + + + + + 1 + 420 + 5 x 7 inch Negatives, A-G, Fussman, John - 1.5- year-old,undated + + + + + + 1 + 421 + 5 x 7 inch Negatives, A-G, Fussman, Walt (Mrs.) - 1-year-old Girl,undated + + + + + + 1 + 422 + 5 x 7 inch Negatives, A-G, Gall, F. - Wedding (2 envelopes),undated + + + + + + 1 + 423 + 5 x 7 inch Negatives, A-G, Gallardo, Raymond - Wedding (2 envelopes),undated + + + + + + 1 + 424 + 5 x 7 inch Negatives, A-G, Gamary, Matt - Copy,undated + + + + + + 1 + 425 + 5 x 7 inch Negatives, A-G, Garchow, Amy (2 envelopes),July 24, 1967 + + + + + + 1 + 426 + 5 x 7 inch Negatives, A-G, Gardai, LaVern,undated + + + + + + 1 + 427 + 5 x 7 inch Negatives, A-G, Gardner, Veronica,undated + + + + + + 1 + 428 + 5 x 7 inch Negatives, A-G, Garret, Chas. - 5 Children, 2 Adults,undated + + + + + + 1 + 429 + 5 x 7 inch Negatives, A-G, Garrett, Clayton - Wedding (2 envelopes),undated + + + + + + 1 + 430 + 5 x 7 inch Negatives, A-G, Garthy, Anne (6 envelopes),September 8, 1965 + + + + + + 1 + 431 + 5 x 7 inch Negatives, A-G, Gatehouse, Gary,August 24, 1963 + + + + + + 1 + 432 + 5 x 7 inch Negatives, A-G, Gaudard, Max,undated + + + + + + + 1 + 433 + 5 x 7 inch Negatives, A-G, Geasler, Joan,undated + + + + + + 1 + 434 + 5 x 7 inch Negatives, A-G, Geasler, Myrtle,undated + + + + + + 1 + 435 + 5 x 7 inch Negatives, A-G, Gepford, Bill (2 envelopes),undated + + + + + + 1 + 436 + 5 x 7 inch Negatives, A-G, Gepford, Bill - 9-month-old,undated + + + + + + 1 + 437 + 5 x 7 inch Negatives, A-G, Gepford, P., - 10-month-old,October 15, 1965 + + + + + + 1 + 438 + 5 x 7 inch Negatives, A-G, Gepford, Pat, - 9-month-old Boy,undated + + + + + + 1 + 439 + 5 x 7 inch Negatives, A-G, Gepford, Pat, - 7-month-old,undated + + + + + + 1 + 440 + 5 x 7 inch Negatives, A-G, Gepford, Pat, - 9-month-old,1959 + + + + + + 1 + 441 + 5 x 7 inch Negatives, A-G, Gepford, Pat, - 9-month-old,undated + + + + + + 1 + 442 + 5 x 7 inch Negatives, A-G, Gepford, Pat, - 9-month-old,March 10, 1962 + + + + + + 1 + 443 + 5 x 7 inch Negatives, A-G, Gepford, Pat, - 10-month-old,1961 + + + + + + 1 + 444 + 5 x 7 inch Negatives, A-G, Getchell,undated + + + + + + 1 + 445 + 5 x 7 inch Negatives, A-G, Getchell, Bud - and Wife,undated + + + + + + 1 + 446 + 5 x 7 inch Negatives, A-G, Getchell, Evelyn - H.S.,undated + + + + + + 1 + 447 + 5 x 7 inch Negatives, A-G, Getchell, John - H.S.,undated + + + + + + 1 + 448 + 5 x 7 inch Negatives, A-G, Getchell, Lois - 7-month-old,undated + + + + + + 1 + 449 + 5 x 7 inch Negatives, A-G, Getchell, Pat -H.S.,undated + + + + + + 1 + 450 + 5 x 7 inch Negatives, A-G, Gibson, Alva (2 envelopes),undated + + + + + + 1 + 451 + 5 x 7 inch Negatives, A-G, Gibson, Marge - I.D.,undated + + + + + + 1 + 452 + 5 x 7 inch Negatives, A-G, Gibson, Sadie,undated + + + + + + 1 + 453 + 5 x 7 inch Negatives, A-G, Gibson, Wilard, Jr. (Marie) 7-month-old,undated + + + + + + 1 + 454 + 5 x 7 inch Negatives, A-G, Gill, Louise,undated + + + + + + 1 + 455 + 5 x 7 inch Negatives, A-G, Gill, Terry - H.S.,undated + + + + + + 1 + 456 + 5 x 7 inch Negatives, A-G, Gillan, Mary.,undated + + + + + + 1 + 457 + 5 x 7 inch Negatives, A-G, Gillett, Jesse R. - Copy of Marriage License,undated + + + + + + 1 + 458 + 5 x 7 inch Negatives, A-G, Gillett, Jesse R. (2 envelopes),1954 + + + + + + 1 + 459 + 5 x 7 inch Negatives, A-G, Gillette, Dory - and Wife - Copy,January 3, 1964 + + + + + + 1 + 460 + 5 x 7 inch Negatives, A-G, Gillis, Don and Wife (2 envelopes),1964 + + + + + + 1 + 461 + 5 x 7 inch Negatives, A-G, Gilpin, Brenda,undated + + + + + + 1 + 462 + 5 x 7 inch Negatives, A-G, Goodrich, Marion,undated + + + + + + 1 + 463 + 5 x 7 inch Negatives, A-G, Gover, Bob - Copy,undated + + + + + + 1 + 464 + 5 x 7 inch Negatives, A-G, Gover, N.D.,April 29, 1966 + + + + + + 1 + 465 + 5 x 7 inch Negatives, A-G, Grace, Dick (2 envelopes),undated + + + + + + 1 + 466 + 5 x 7 inch Negatives, A-G, Graham, Art, I.D.,undated + + + + + + 1 + 467 + 5 x 7 inch Negatives, A-G, Graham, Donald - Copy of Diploma,undated + + + + + + 1 + 468 + 5 x 7 inch Negatives, A-G, Graham, Lowell - H.S.,undated + + + + + + 1 + 469 + 5 x 7 inch Negatives, A-G, Graham, Ronald - I.D.,undated + + + + + + 1 + 470 + 5 x 7 inch Negatives, A-G, Grandy, Jean - H.S.,undated + + + + + + 1 + 471 + 5 x 7 inch Negatives, A-G, Grave, Ruth - Copy,January 6, 1964 + + + + + + 1 + 472 + 5 x 7 inch Negatives, A-G, Gregg, Lewis - I.D.,undated + + + + + + 1 + 473 + 5 x 7 inch Negatives, A-G, Gregg, Norma,undated + + + + + + 1 + 474 + 5 x 7 inch Negatives, A-G, Grenada, H. - (2),undated + + + + + + 1 + 475 + 5 x 7 inch Negatives, A-G, Griffin, L. - G.I. and Sister,undated + + + + + + 1 + 478 + 5 x 7 inch Negatives, A-G, Griffin, Tom,undated + + + + + + 1 + 479 + 5 x 7 inch Negatives, A-G, Gross, [no first name] - 3 Children,undated + + + + + + 1 + 480 + 5 x 7 inch Negatives, A-G, Gross, Bernard - 1- and 2-year-old Girls,January 4, 1964 + + + + + + 1 + 481 + 5 x 7 inch Negatives, A-G, Gross, Bob - Copy (2 envelopes),undated + + + + + + 1 + 482 + 5 x 7 inch Negatives, A-G, Gross, Ernest - Boy,undated + + + + + + 1 + 483 + 5 x 7 inch Negatives, A-G, Gross, Marilyn,undated + + + + + + 1 + 484 + 5 x 7 inch Negatives, A-G, Gross, Pete - Copy,March 26, 1968 + + + + + + 1 + 485 + 5 x 7 inch Negatives, A-G, Gross, Rollen - and Wife,1962 + + + + + + 1 + 486 + 5 x 7 inch Negatives, A-G, Gross, Theresa,undated + + + + + + 1 + 487 + 5 x 7 inch Negatives, A-G, Gross, Wm. - Baby Girl,undated + + + + + + 1 + 488 + 5 x 7 inch Negatives, A-G, Grover, Ethel - I.D.,undated + + + + + + 1 + 489 + 5 x 7 inch Negatives, A-G, Gruss, Joe,undated + + + + + + 1 + 490 + 5 x 7 inch Negatives, A-G, Gruss, Joe,October 31, 1966 + + + + + + 1 + 491 + 5 x 7 inch Negatives, A-G, Gruss, Richard - Wedding (2 envelopes),undated + + + + + + 2 + 1 + 5 x 7 inch Negatives, H-R, Hackett, Elaine,undated + + + + + + 2 + 2 + 5 x 7 inch Negatives, H-R, Hackett, John and Wife,undated + + + + + + 2 + 3 + 5 x 7 inch Negatives, H-R, Hackett, K.,undated + + + + + + 2 + 4 + 5 x 7 inch Negatives, H-R, Hackett, Rose,undated + + + + + + 2 + 5 + 5 x 7 inch Negatives, H-R, Hadlock, Mary - 7-months,undated + + + + + + 2 + 6 + 5 x 7 inch Negatives, H-R, Hafer, Charol - 9-year-old Girl,undated + + + + + + 2 + 7 + 5 x 7 inch Negatives, H-R, Hafer, Julie Ann - Choir Gown,February 11, 1967 + + + + + + 2 + 8 + 5 x 7 inch Negatives, H-R, Hall, Aaron,undated + + + + + + 2 + 9 + 5 x 7 inch Negatives, H-R, Hall, Carol,undated + + + + + + 2 + 10 + 5 x 7 inch Negatives, H-R, Hall, Curtiss - H.S.,undated + + + + + + 2 + 11 + 5 x 7 inch Negatives, H-R, Hall,Dinah,undated + + + + + + 2 + 12 + 5 x 7 inch Negatives, H-R, Hall, Herbert - Wedding (2 envelopes),undated + + + + + + 2 + 13 + 5 x 7 inch Negatives, H-R, Hall, Jerry - 15-month-old,undated + + + + + + 2 + 14 + 5 x 7 inch Negatives, H-R, Hall, Jerry,undated + + + + + + 2 + 15 + 5 x 7 inch Negatives, H-R, Hall, Lonna,undated + + + + + + 2 + 16 + 5 x 7 inch Negatives, H-R, Hall, Stanley - 2-year-old,undated + + + + + + 2 + 17 + 5 x 7 inch Negatives, H-R, Halley, P.B. - Copy (4 envelopes),undated + + + + + + 2 + 18 + 5 x 7 inch Negatives, H-R, Hallock, Harold - and Wife,undated + + + + + + 2 + 19 + 5 x 7 inch Negatives, H-R, Hammel, Arnold -I.D. and Photograph,undated + + + + + + 2 + 20 + 5 x 7 inch Negatives, H-R, Hammond, Ann - 2-year-old,undated + + + + + + 2 + 21 + 5 x 7 inch Negatives, H-R, Hammond, Kitty,undated + + + + + + 2 + 22 + 5 x 7 inch Negatives, H-R, Hard, Gaylord (2 envelopes),undated + + + + + + 2 + 23 + 5 x 7 inch Negatives, H-R, Harless, Marion - I.D.,undated + + + + + + 2 + 24 + 5 x 7 inch Negatives, H-R, Harless, Pauline,undated + + + + + + 2 + 25 + 5 x 7 inch Negatives, H-R, Harless, Roy - Policeman,undated + + + + + + 2 + 26 + 5 x 7 inch Negatives, H-R, Harless, Ruth (Mrs.) - Copy (2 envelopes),undated + + + + + + 2 + 27 + 5 x 7 inch Negatives, H-R, Harris, Phil - H.S.,undated + + + + + + 2 + 28 + 5 x 7 inch Negatives, H-R, Harter, Clara - 5-year-old,undated + + + + + + 2 + 29 + 5 x 7 inch Negatives, H-R, Harter, Clara - Girl,undated + + + + + + 2 + 30 + 5 x 7 inch Negatives, H-R, Hartley, Russell H.,undated + + + + + + 2 + 31 + 5 x 7 inch Negatives, H-R, Harton, Annette,undated + + + + + + 2 + 32 + 5 x 7 inch Negatives, H-R, Harvey, [no first name] -Copy (2 envelopes),undated + + + + + + 2 + 33 + 5 x 7 inch Negatives, H-R, Hast, Donald - Wedding (2 envelopes),undated + + + + + + 2 + 34 + 5 x 7 inch Negatives, H-R, Hatt, Vf.,undated + + + + + + 2 + 35 + 5 x 7 inch Negatives, H-R, Hatt, Lavier - 8-year-old Girl,undated + + + + + + 2 + 36 + 5 x 7 inch Negatives, H-R, Havck, Carl - 4-year-old Boy,undated + + + + + + 2 + 37 + 5 x 7 inch Negatives, H-R, Haviland, Wm. - Copy,undated + + + + + + 2 + 38 + 5 x 7 inch Negatives, H-R, Hayden, Jim,undated + + + + + + 2 + 39 + 5 x 7 inch Negatives, H-R, Haynes, Patty - (Girl),undated + + + + + + 2 + 40 + 5 x 7 inch Negatives, H-R, Hayward, D. F. - Copy of Air Force Discharge,undated + + + + + + 2 + 41 + 5 x 7 inch Negatives, H-R, Hayward, Roy - Copy of Army Discharge,undated + + + + + + 2 + 42 + 5 x 7 inch Negatives, H-R, Haywood, LeRoy - Couple and Dog,1963 + + + + + + 2 + 43 + 5 x 7 inch Negatives, H-R, Hazelton, Duane,undated + + + + + + 2 + 44 + 5 x 7 inch Negatives, H-R, Hazelton, Esther,undated + + + + + + 2 + 45 + 5 x 7 inch Negatives, H-R, Hazelton, Mary Lou - H.S.,undated + + + + + + 2 + 46 + 5 x 7 inch Negatives, H-R, Hech, Barbara - (Nurse),undated + + + + + + 2 + 47 + 5 x 7 inch Negatives, H-R, Heckert, M.J.,undated + + + + + + 2 + 48 + 5 x 7 inch Negatives, H-R, Heinlein, Don - H.S.,undated + + + + + + + 2 + 5=49 + 5 x 7 inch Negatives, H-R, Heinlein, William - I.D.,undated + + + + + + 2 + 50 + 5 x 7 inch Negatives, H-R, Heinlien, Robt. - Baby Girl (2 envelopes),undated + + + + + + 2 + 51 + 5 x 7 inch Negatives, H-R, Helman, Oliver - Weller, Beulah - Marriage License,undated + + + + + + 2 + 52 + 5 x 7 inch Negatives, H-R, Heushaw, Joe - 2-year-old Boy,undated + + + + + + 2 + 53 + 5 x 7 inch Negatives, H-R, Hewitt, Roy -3 Boys,March 28, 1966 + + + + + + 2 + 54 + 5 x 7 inch Negatives, H-R, Hewlett, Roy - and Wife,undated + + + + + + 2 + 55 + 5 x 7 inch Negatives, H-R, Hewlett, Yvonne - Copy of Marriage License,December 26, 1955 + + + + + + 2 + 56 + 5 x 7 inch Negatives, H-R, Hill, L.D. - I.D.,undated + + + + + + 2 + 57 + 5 x 7 inch Negatives, H-R, Hills, Herbert - Wedding (2 envelopes),undated + + + + + + 2 + 58 + 5 x 7 inch Negatives, H-R, Hitchingham, Leo - 1-year-old Girl,undated + + + + + + 2 + 59 + 5 x 7 inch Negatives, H-R, Hoas, George,undated + + + + + + 2 + 60 + 5 x 7 inch Negatives, H-R, Hodgins, Harold - 4 Children,undated + + + + + + 2 + 61 + 5 x 7 inch Negatives, H-R, Hoffman, David,undated + + + + + + 2 + 62 + 5 x 7 inch Negatives, H-R, Hoffmeyer, Olin - Copy,February 12, 1969 + + + + + + 2 + 63 + 5 x 7 inch Negatives, H-R, Hogg, Rollie - Copy,undated + + + + + + 2 + 64 + 5 x 7 inch Negatives, H-R, Hogg, Rollie - Family,undated + + + + + + 2 + 65 + 5 x 7 inch Negatives, H-R, Hoggart, M. - Copy,undated + + + + + + 2 + 66 + 5 x 7 inch Negatives, H-R, Holley, Autumn - H.S. (2 envelopes),undated + + + + + + 2 + 67 + 5 x 7 inch Negatives, H-R, Holliday, Gladys,undated + + + + + + 2 + 68 + 5 x 7 inch Negatives, H-R, Holliday, Gladys - Girl,undated + + + + + + 2 + 69 + 5 x 7 inch Negatives, H-R, Holliday, Sally,June 24, 1964 + + + + + + 2 + 70 + 5 x 7 inch Negatives, H-R, Holt, Diann - H.S.,undated + + + + + + 2 + 71 + 5 x 7 inch Negatives, H-R, Holt, Russell - H.S.,undated + + + + + + 2 + 72 + 5 x 7 inch Negatives, H-R,Hood, Herbert - Boy,undated + + + + + + 2 + 73 + 5 x 7 inch Negatives, H-R, Horn, Clarence,undated + + + + + + 2 + 74 + 5 x 7 inch Negatives, H-R, Horn, Helen - I.D.,undated + + + + + + 2 + 75 + 5 x 7 inch Negatives, H-R, Hough, Jim - 1-year-old,September 20, 1961 + + + + + + 2 + 76 + 5 x 7 inch Negatives, H-R, Hough, Jim,May 1959 + + + + + + 2 + 77 + 5 x 7 inch Negatives, H-R, Hough, Jim - 14-month-old,undated + + + + + + 2 + 78 + 5 x 7 inch Negatives, H-R, House, Ed - Copy (5 envelopes),undated + + + + + + 2 + 79 + 5 x 7 inch Negatives, H-R, House, Ed - Family Tree (William Marlin),July 8, 1966 + + + + + + 2 + 80 + 5 x 7 inch Negatives, H-R, House, Grace - I.D.,undated + + + + + + 2 + 81 + 5 x 7 inch Negatives, H-R, Hovey, Terry,undated + + + + + + 2 + 82 + 5 x 7 inch Negatives, H-R, Howard, Clarence - Wedding - Martha Nickel,undated + + + + + + 2 + 83 + 5 x 7 inch Negatives, H-R, Howard, Richard,May 19, 1967 + + + + + + 2 + 84 + 5 x 7 inch Negatives, H-R, Howell, C. - Baby,undated + + + + + + 2 + 85 + 5 x 7 inch Negatives, H-R, Howell, Florence,undated + + + + + + 2 + 86 + 5 x 7 inch Negatives, H-R, Hoyt, Shirley - H.S.,undated + + + + + + 2 + 87 + 5 x 7 inch Negatives, H-R, Huber, Floyd - Family,undated + + + + + + 2 + 88 + 5 x 7 inch Negatives, H-R, Huguelet, Frank - Couple at Moose Lodge,195u? + + + + + + 2 + 89 + 5 x 7 inch Negatives, H-R, Hunter, John - H.S.,undated + + + + + + 2 + 90 + 5 x 7 inch Negatives, H-R, Hunter, Lyle,undated + + + + + + 2 + 91 + 5 x 7 inch Negatives, H-R, Hunter, Lyle - Girl,undated + + + + + + 2 + 92 + 5 x 7 inch Negatives, H-R, Hurbis, Helen,undated + + + + + + 2 + 93 + 5 x 7 inch Negatives, H-R, Hutchinson, Sandra,undated + + + + + + 2 + 94 + 5 x 7 inch Negatives, H-R, Hyde, Mary - I.D.,undated + + + + + + 2 + 95 + 5 x 7 inch Negatives, H-R, Hyde, Mary and Son,undated + + + + + + 2 + 96 + 5 x 7 inch Negatives, H-R, Irwin, Pam,undated + + + + + + 2 + 97 + 5 x 7 inch Negatives, H-R, Irwin, Patricia - H.S.,undated + + + + + + 2 + 98 + 5 x 7 inch Negatives, H-R, Jackson, Floyd,undated + + + + + + 2 + 99 + 5 x 7 inch Negatives, H-R, Jackson, Floyd (2 envelopes),1959 + + + + + + 2 + 100 + 5 x 7 inch Negatives, H-R, Jackson, Floyd - 3-year-old Girl,undated + + + + + + 2 + 101 + 5 x 7 inch Negatives, H-R, Jackson, Floyd - 14-year-old Girl,undated + + + + + + 2 + 102 + 5 x 7 inch Negatives, H-R, Jackson, Floyd - 2- and 4-year-olds,undated + + + + + + 2 + 103 + 5 x 7 inch Negatives, H-R, Jackson, Joe, I.D.,undated + + + + + + 2 + 104 + 5 x 7 inch Negatives, H-R, Jackson, John, 11-month-old,undated + + + + + + 2 + 105 + 5 x 7 inch Negatives, H-R, Jackson, Sue,undated + + + + + + 2 + 106 + 5 x 7 inch Negatives, H-R, Jackson, Terry - H.S.,undated + + + + + + 2 + 107 + 5 x 7 inch Negatives, H-R, Jagger, Lowell - Copy,undated + + + + + + 2 + 108 + 5 x 7 inch Negatives, H-R, Jagger, Lowell - and wife,undated + + + + + + 2 + 109 + 5 x 7 inch Negatives, H-R, Jarecki Manufacturing Company (3 envelopes),undated + + + + + + 2 + 110 + 5 x 7 inch Negatives, H-R, Jarman, Glen - Copy,undated + + + + + + 2 + 111 + 5 x 7 inch Negatives, H-R, Jarman, Jack,undated + + + + + + 2 + 112 + 5 x 7 inch Negatives, H-R, Jason, Laurie -1st Communion,undated + + + + + + 2 + 113 + 5 x 7 inch Negatives, H-R, Jennings, P.L. - Wedding (2 envelopes),undated + + + + + + 2 + 114 + 5 x 7 inch Negatives, H-R, Jennings, Stanford - I.D.,undated + + + + + + 2 + 115 + 5 x 7 inch Negatives, H-R, Jimenez, Jane - H.S. (2 envelopes),undated + + + + + + 2 + 116 + 5 x 7 inch Negatives, H-R, John, Marion (Mrs.) - Copy,undated + + + + + + 2 + 117 + 5 x 7 inch Negatives, H-R, Johnson, Arnold,undated + + + + + + 2 + 118 + 5 x 7 inch Negatives, H-R, Johnson, Harald - Copy,undated + + + + + + 2 + 119 + 5 x 7 inch Negatives, H-R, Johnson, Jerry Lou,undated + + + + + + 2 + 120 + 5 x 7 inch Negatives, H-R, Johnson, John - H.S.,undated + + + + + + 2 + 121 + 5 x 7 inch Negatives, H-R, Johnston, Mark - H.S.,undated + + + + + + 2 + 122 + 5 x 7 inch Negatives, H-R, Jones, Dick,undated + + + + + + 2 + 123 + 5 x 7 inch Negatives, H-R, Jones, Harry - 7-month-old and 3-year-old,undated + + + + + + 2 + 124 + 5 x 7 inch Negatives, H-R, Jones, Howard,undated + + + + + + 2 + 125 + 5 x 7 inch Negatives, H-R, Jones, Jim,undated + + + + + + 2 + 126 + 5 x 7 inch Negatives, H-R, Jones, John - H.S.,undated + + + + + + 2 + 127 + 5 x 7 inch Negatives, H-R, Jones, Lynn - and Girl,undated + + + + + + 2 + 128 + 5 x 7 inch Negatives, H-R, Jones, Mary A.,undated + + + + + + 2 + 129 + 5 x 7 inch Negatives, H-R, Jones, Milo - Fish (2 envelopes),undated + + + + + + 2 + 130 + 5 x 7 inch Negatives, H-R, Jones, Ted - Wedding,undated + + + + + + 2 + 131 + 5 x 7 inch Negatives, H-R, Joslin, Gail,undated + + + + + + 2 + 132 + 5 x 7 inch Negatives, H-R, Joslin, R.E., Sr. - Copy,undated + + + + + + 2 + 133 + 5 x 7 inch Negatives, H-R, Joslin, Sue,undated + + + + + + 2 + 134 + 5 x 7 inch Negatives, H-R, Kahgegab, Lorna - I.D.,undated + + + + + + 2 + 135 + 5 x 7 inch Negatives, H-R, Kampt, H. - Wedding,undated + + + + + + 2 + 136 + 5 x 7 inch Negatives, H-R, Kappler, Melva,undated + + + + + + 2 + 137 + 5 x 7 inch Negatives, H-R, Keast, George - Wedding,undated + + + + + + 2 + 138 + 5 x 7 inch Negatives, H-R, Keene, Duane - Copy of a Horse Race at Ionia,August 9, 1962 + + + + + + 2 + 139 + 5 x 7 inch Negatives, H-R, Keene, Tom,undated + + + + + + 2 + 140 + 5 x 7 inch Negatives, H-R, Kelso, [no first name] - Copy,June 22, 1965 + + + + + + 2 + 141 + 5 x 7 inch Negatives, H-R, Kennedy, John - Family,September 11, 1966 + + + + + + 2 + 142 + 5 x 7 inch Negatives, H-R, Kennedy, Phillip - H.S.,undated + + + + + + 2 + 143 + 5 x 7 inch Negatives, H-R, Kequom, Frank - Wedding (2 envelopes),undated + + + + + + + 2 + 144 + 5 x 7 inch Negatives, H-R, Ketchum, John,undated + + + + + + 2 + 145 + 5 x 7 inch Negatives, H-R, Kickey Electric Company,undated + + + + + + 2 + 146 + 5 x 7 inch Negatives, H-R, Kierunsaari, Gerald,undated + + + + + + 2 + 147 + 5 x 7 inch Negatives, H-R, Kile, Carol,undated + + + + + + 2 + 148 + 5 x 7 inch Negatives, H-R, Kile, Jean - ?-month-old and Mother,undated + + + + + + 2 + 149 + 5 x 7 inch Negatives, H-R, Kinkle, Fred,undated + + + + + + 2 + 150 + 5 x 7 inch Negatives, H-R, Kinkle, Margaret - 6-month-old,undated + + + + + + 2 + 151 + 5 x 7 inch Negatives, H-R, Kipfmueller, Karl - (2),undated + + + + + + 2 + 152 + 5 x 7 inch Negatives, H-R, Kipfmueller, Kate,undated + + + + + + 2 + 153 + 5 x 7 inch Negatives, H-R, Kipfmueller, Leo - (2), 3 - month - old,undated + + + + + + 2 + 154 + 5 x 7 inch Negatives, H-R, Kipfmueller, R.,1951 + + + + + + 2 + 155 + 5 x 7 inch Negatives, H-R, Kirvan, Otis -Mrs. and Son,undated + + + + + + 2 + 156 + 5 x 7 inch Negatives, H-R, Klein, Richard - H.S.,undated + + + + + + 2 + 157 + 5 x 7 inch Negatives, H-R, Klozik, John - Roethlisberger, Jean, Copy of Marriage License,undated + + + + + + + + 2 + 158 + 5 x 7 inch Negatives, H-R, Knake, Henrietta,undated + + + + + + 2 + 159 + 5 x 7 inch Negatives, H-R, Kniffen, H. - 2 Babies,undated + + + + + + 2 + 160 + 5 x 7 inch Negatives, H-R, Knour, L. - Wedding (2 envelopes),1949 + + + + + + 2 + 161 + 5 x 7 inch Negatives, H-R, Knour, L.,undated + + + + + + 2 + 162 + 5 x 7 inch Negatives, H-R, Knowlton, Sharon - H.S.,undated + + + + + + 2 + 163 + 5 x 7 inch Negatives, H-R, Kobel, John,undated + + + + + + 2 + 164 + 5 x 7 inch Negatives, H-R, Kornexl, J.W.,undated + + + + + + 2 + 165 + 5 x 7 inch Negatives, H-R, Kornexl, Myrtle -1st Communion,undated + + + + + + 2 + 166 + 5 x 7 inch Negatives, H-R, Krell, Merne - I.D.,undated + + + + + + 2 + 167 + 5 x 7 inch Negatives, H-R, Kuhlman, [no first name] - 4 generations (2 envelopes),undated + + + + + + 2 + 168 + 5 x 7 inch Negatives, H-R, Kuhlman, Al,undated + + + + + + 2 + 169 + 5 x 7 inch Negatives, H-R, Kuhlman, Helen,undated + + + + + + 2 + 170 + 5 x 7 inch Negatives, H-R, Kuhlman, LeRoy - 1-year-old,undated + + + + + + 2 + 171 + 5 x 7 inch Negatives, H-R, Kuhlman, LeRoy,undated + + + + + + 2 + 172 + 5 x 7 inch Negatives, H-R, Kullman, Betty - H.S.,undated + + + + + + 2 + 173 + 5 x 7 inch Negatives, H-R, Kullman, Leroy -1-and 3-year-olds,undated + + + + + + 2 + 174 + 5 x 7 inch Negatives, H-R, Kullman, Raymond,undated + + + + + + 2 + 175 + 5 x 7 inch Negatives, H-R, Kullman, Raymond - Wedding (3 envelopes),undated + + + + + + 2 + 176 + 5 x 7 inch Negatives, H-R, Kullman, Rosie,undated + + + + + + 2 + 177 + 5 x 7 inch Negatives, H-R, Kunkle, Dan,undated + + + + + + 2 + 178 + 5 x 7 inch Negatives, H-R, Kuzma, Joe,April 11, 1969 + + + + + + 2 + 179 + 5 x 7 inch Negatives, H-R, Kye, Harry C. (4 envelopes),undated + + + + + + 2 + 180 + 5 x 7 inch Negatives, H-R, Kyser, E.,undated + + + + + + 2 + 190 + 5 x 7 inch Negatives, H-R, Kyser, Vern - Couple,undated + + + + + + 2 + 191 + 5 x 7 inch Negatives, H-R, LaBrecque, Larry,undated + + + + + + 2 + 192 + 5 x 7 inch Negatives, H-R, Lackie, Don - 2 Children,undated + + + + + + 2 + 193 + 5 x 7 inch Negatives, H-R, Laidley, Mary Kay,undated + + + + + + 2 + 194 + 5 x 7 inch Negatives, H-R, Landon, Dorothy - Copy (3 envelopes),undated + + + + + + 2 + 195 + 5 x 7 inch Negatives, H-R, Landwehr, Wm. - Copy (2 envelopes),undated + + + + + + 2 + 196 + 5 x 7 inch Negatives, H-R, Larsen, Lucene,undated + + + + + + 2 + 197 + 5 x 7 inch Negatives, H-R, Lasko, John - I.D.,undated + + + + + + 2 + 198 + 5 x 7 inch Negatives, H-R, Latham, J. - 6-month-old Girl,August 10, 1962 + + + + + + 2 + 199 + 5 x 7 inch Negatives, H-R, Lawens, Mark - H.S.,undated + + + + + + 2 + 200 + 5 x 7 inch Negatives, H-R, Lawens, Wm. and Wife- 50th Anniversary,April 14, 1969 + + + + + + 2 + 201 + 5 x 7 inch Negatives, H-R, Lawrence, Tom - Wedding (2 envelopes),undated + + + + + + 2 + 202 + 5 x 7 inch Negatives, H-R, Lawson, Jack - 1st Communion (2),undated + + + + + + 2 + 203 + 5 x 7 inch Negatives, H-R, Lawson, L.,undated + + + + + + 2 + 204 + 5 x 7 inch Negatives, H-R, Layfield, [no first name] - Baby,undated + + + + + + 2 + 205 + 5 x 7 inch Negatives, H-R, Layfield, Art - 2 Children (3 envelopes),undated + + + + + + 2 + 206 + 5 x 7 inch Negatives, H-R, Layfield, Art - Flower Girl,undated + + + + + + 2 + 207 + 5 x 7 inch Negatives, H-R, Layfield, Art - Flower Girl and Ring Bearer,undated + + + + + + 2 + 208 + 5 x 7 inch Negatives, H-R, Lea, Chas. (Mr. and Mrs.) - Singles (2 envelopes),November 30, 1968 + + + + + + 2 + 209 + 5 x 7 inch Negatives, H-R, Leffingwell, Harold - Copy of Marriage License,undated + + + + + + 2 + 210 + 5 x 7 inch Negatives, H-R, Leffingwell, Harold - Wedding,undated + + + + + + 2 + 211 + 5 x 7 inch Negatives, H-R, Left, Gerald,undated + + + + + + 2 + 212 + 5 x 7 inch Negatives, H-R, Left, Gerald (3),undated + + + + + + 2 + 213 + 5 x 7 inch Negatives, H-R, Lehman, Dwight - 3 Babies,undated + + + + + + 2 + 214 + 5 x 7 inch Negatives, H-R, Len, Norbert,undated + + + + + + 2 + 215 + 5 x 7 inch Negatives, H-R, Leonard, Alfred - Wedding (2 envelopes),undated + + + + + + 2 + 216 + 5 x 7 inch Negatives, H-R, Leonard, Alfred - Nine-month-old,undated + + + + + + 2 + 217 + 5 x 7 inch Negatives, H-R, Leonard, Gale - H.S.,undated + + + + + + 2 + 218 + 5 x 7 inch Negatives, H-R, Leonard, Jim - H.S.,undated + + + + + + 2 + 219 + 5 x 7 inch Negatives, H-R, Leonard, Marge - H.S.,December 20, 1967 + + + + + + 2 + 220 + 5 x 7 inch Negatives, H-R, Lewis, Janet - H.S.,undated + + + + + + 2 + 221 + 5 x 7 inch Negatives, H-R, Ley, Edward - Wedding (3 envelopes),undated + + + + + + 2 + 222 + 5 x 7 inch Negatives, H-R, Ley, LeRoy - Wedding (2 envelopes),undated + + + + + + 2 + 223 + 5 x 7 inch Negatives, H-R, Lezen, Stella - Copy,undated + + + + + + 2 + 224 + 5 x 7 inch Negatives, H-R, Lichert, Dolph,undated + + + + + + 2 + 225 + 5 x 7 inch Negatives, H-R, Lirones, Dan,undated + + + + + + 2 + 226 + 5 x 7 inch Negatives, H-R, Lirones, Dan,1953 + + + + + + 2 + 227 + 5 x 7 inch Negatives, H-R, Lirones, Sam - I.D.,undated + + + + + + 2 + 228 + 5 x 7 inch Negatives, H-R, Little, Blanche - Copy,undated + + + + + + 2 + 229 + 5 x 7 inch Negatives, H-R, Little, Jack -1-year-old Girl,undated + + + + + + 2 + 230 + 5 x 7 inch Negatives, H-R, Lloyd, Ada,undated + + + + + + 2 + 231 + 5 x 7 inch Negatives, H-R, Long, Patrick - I.D.,undated + + + + + + 2 + 232 + 5 x 7 inch Negatives, H-R, Loomis, Betty - 2.5-year-old,undated + + + + + + 2 + 233 + 5 x 7 inch Negatives, H-R, Loomis, Buhl, - 2 Children,undated + + + + + + 2 + 234 + 5 x 7 inch Negatives, H-R, Loomis, R., - 1.5-year-old,undated + + + + + + 2 + 235 + 5 x 7 inch Negatives, H-R, Loomis, Roby - Copy of Isabella County State Bank Receipt,June 12, 1961 + + + + + + 2 + 236 + 5 x 7 inch Negatives, H-R, Loreny, Rose Marie,undated + + + + + + 2 + 237 + 5 x 7 inch Negatives, H-R, Lorenz, Mary Lou,undated + + + + + + 2 + 238 + 5 x 7 inch Negatives, H-R, Lorenz, Pete,undated + + + + + + 2 + 239 + 5 x 7 inch Negatives, H-R, Lough, Richard - Baby,undated + + + + + + 2 + 240 + 5 x 7 inch Negatives, H-R, Love, Floyd - 2 Babies,undated + + + + + + 2 + 241 + 5 x 7 inch Negatives, H-R, Lovejoy, Pat,undated + + + + + + 2 + 242 + 5 x 7 inch Negatives, H-R, Lowther, Ed and Wife,January 8, 1966 + + + + + + 2 + 243 + 5 x 7 inch Negatives, H-R, Luce, Clifford - and Brother,undated + + + + + + 2 + 244 + 5 x 7 inch Negatives, H-R, Lueder, Irvin (2 envelopes),undated + + + + + + 2 + 245 + 5 x 7 inch Negatives, H-R, Lueder, Irvin - Wedding (2 envelopes),undated + + + + + + 2 + 246 + 5 x 7 inch Negatives, H-R, Lueder, Otto and Wife - Copy,April 19, 30, 1966 + + + + + + 2 + 247 + 5 x 7 inch Negatives, H-R, Lumbert, A. - Baby Boy,undated + + + + + + 2 + 248 + 5 x 7 inch Negatives, H-R, Lyon, Sandra,undated + + + + + + 2 + 249 + 5 x 7 inch Negatives, H-R, Lyou, Udele,undated + + + + + + 2 + 250 + 5 x 7 inch Negatives, H-R, McAlester, Joe - Copy,undated + + + + + + 2 + 251 + 5 x 7 inch Negatives, H-R, McBride, Dianna - I.D.,September 11, 1967 + + + + + + 2 + 252 + 5 x 7 inch Negatives, H-R, McBride, Nelson - 2-year-old,undated + + + + + + 2 + 253 + 5 x 7 inch Negatives, H-R, McBride, Rachel,December 2, 1969 + + + + + + 2 + 254 + 5 x 7 inch Negatives, H-R, McBride, Rachel, Sailors,December 2, 1969 + + + + + + 2 + 255 + 5 x 7 inch Negatives, H-R, McCabe, Jim,undated + + + + + + 2 + 256 + 5 x 7 inch Negatives, H-R, McCall, John - Copy,undated + + + + + + 2 + 257 + 5 x 7 inch Negatives, H-R, McCann, Pete,undated + + + + + + 2 + 258 + 5 x 7 inch Negatives, H-R, McCaul, Gerald,undated + + + + + + 2 + 259 + 5 x 7 inch Negatives, H-R, McClintic, Shirley - I.D.,October 28, 1963 + + + + + + 2 + 260 + 5 x 7 inch Negatives, H-R, McConnell, Chas. (Mrs.) - Copy,undated + + + + + + 2 + 261 + 5 x 7 inch Negatives, H-R, McConnell, Chas. - Daughter's Wedding,undated + + + + + + 2 + 262 + 5 x 7 inch Negatives, H-R, McConnell, Jesse,undated + + + + + + 2 + 263 + 5 x 7 inch Negatives, H-R, McConnell, Kenneth - 2 Children,1961 + + + + + + 2 + 264 + 5 x 7 inch Negatives, H-R, McConnell, Kenneth - Copy, Marine,undated + + + + + + 2 + 265 + 5 x 7 inch Negatives, H-R, McCord, Gerald - 8- and 12-year-olds,undated + + + + + + 2 + 266 + 5 x 7 inch Negatives, H-R, McCord, Jerry (7 envelopes),undated + + + + + + 2 + 267 + 5 x 7 inch Negatives, H-R, McCord, Jerry, 2 children,undated + + + + + + 2 + 268 + 5 x 7 inch Negatives, H-R, McCrimmon, Betty - 2 Children,undated + + + + + + 2 + 269 + 5 x 7 inch Negatives, H-R, McCullough, Florence - I.D.,undated + + + + + + 2 + 270 + 5 x 7 inch Negatives, H-R, McCullough, Ron - H.S.,undated + + + + + + 2 + 271 + 5 x 7 inch Negatives, H-R, McDonald, [no first name],undated + + + + + + 2 + 272 + 5 x 7 inch Negatives, H-R, McDonald, Barbara - 2 Children 8- and 2-year-olds,undated + + + + + + 2 + 273 + 5 x 7 inch Negatives, H-R, McDonald, Barbara - 2-year-old,undated + + + + + + 2 + 274 + 5 x 7 inch Negatives, H-R, McDonald, Ed - 7-month-old,September 1961 + + + + + + 2 + 275 + 5 x 7 inch Negatives, H-R, McDonald, Ed,March 12, 1968 + + + + + + 2 + 276 + 5 x 7 inch Negatives, H-R, McDonald, Elton - 18-month-old,undated + + + + + + 2 + 277 + 5 x 7 inch Negatives, H-R, McDonald, Elton - 1-year-old,1960 + + + + + + 2 + 278 + 5 x 7 inch Negatives, H-R, McDonald, Frank - Family,undated + + + + + + 2 + 279 + 5 x 7 inch Negatives, H-R, McDonald, Gerald - 7-month-old,September 21, 1966 + + + + + + 2 + 280 + 5 x 7 inch Negatives, H-R, McDonald, John - 7-month-old,undated + + + + + + 2 + 281 + 5 x 7 inch Negatives, H-R, McDonald, John - 8-month-old,April 23, 1962 + + + + + + 2 + 282 + 5 x 7 inch Negatives, H-R, McDonald, John - 6-month-old,December 8, 1964 + + + + + + 2 + 283 + 5 x 7 inch Negatives, H-R, McDonald, John - 7-month-old,July 20, 1966 + + + + + + 2 + 284 + 5 x 7 inch Negatives, H-R, McDonald, John - 6-month-old,October 1967 + + + + + + 2 + 285 + 5 x 7 inch Negatives, H-R, McDonald, John - 7 Children,December 9, 1967 + + + + + + 2 + 286 + 5 x 7 inch Negatives, H-R, McDonald, Kay - 7-month-old,undated + + + + + + 2 + 287 + 5 x 7 inch Negatives, H-R, McDonald, Mike - H.S.,September 28, 1968 + + + + + + 2 + 288 + 5 x 7 inch Negatives, H-R, McDowell, M.K.,undated + + + + + + 2 + 289 + 5 x 7 inch Negatives, H-R, McDowell, M.K. - Copy,undated + + + + + + 2 + 290 + 5 x 7 inch Negatives, H-R, McDowell, M.K. (Mrs.) - Copy (2 envelopes),June 25, 1963 + + + + + + 2 + 291 + 5 x 7 inch Negatives, H-R, McIntosh, Ed - 2 Children (2 envelopes),undated + + + + + + 2 + 292 + 5 x 7 inch Negatives, H-R, McIntosh, Ed (2 envelopes),undated + + + + + + 2 + 293 + 5 x 7 inch Negatives, H-R, McLacklin, Mrs.,undated + + + + + + 2 + 294 + 5 x 7 inch Negatives, H-R, McLacklin, Betty,undated + + + + + + 2 + 295 + 5 x 7 inch Negatives, H-R, McLacklin, Maxine (2 envelopes),undated + + + + + + 2 + 296 + 5 x 7 inch Negatives, H-R, McQueen, Harol - Wedding (2 envelopes),undated + + + + + + 2 + 297 + 5 x 7 inch Negatives, H-R, McQueen, Lee - Couple,undated + + + + + + 2 + 298 + 5 x 7 inch Negatives, H-R, McQuirk, Sue,undated + + + + + + 2 + 299 + 5 x 7 inch Negatives, H-R, MacGregor News Women's League Bowling Champs,December 1941 + + + + + + 2 + 300 + 5 x 7 inch Negatives, H-R, Machuta, Hope (2 envelopes),undated + + + + + + 2 + 301 + 5 x 7 inch Negatives, H-R, Machuta, John - Girl,undated + + + + + + 2 + 302 + 5 x 7 inch Negatives, H-R, Mahaffey, Joe - and Wife,undated + + + + + + 2 + 303 + 5 x 7 inch Negatives, H-R, Malusek, Anne - I.D.,undated + + + + + + 2 + 304 + 5 x 7 inch Negatives, H-R, Manausa, Thomas - Boy,undated + + + + + + 2 + 305 + 5 x 7 inch Negatives, H-R, Mardiny, Benny,undated + + + + + + 2 + 306 + 5 x 7 inch Negatives, H-R, Markham, M. - Copy (2 envelopes),December 20, 1968 + + + + + + 2 + 307 + 5 x 7 inch Negatives, H-R, Marks, Betty - H.S.,undated + + + + + + 2 + 308 + 5 x 7 inch Negatives, H-R, Marks, Tom, Wife I.D. and Daughter I.D.,undated + + + + + + 2 + 309 + 5 x 7 inch Negatives, H-R, Marquardt, Dick,undated + + + + + + 2 + 310 + 5 x 7 inch Negatives, H-R, Mars, Jack,undated + + + + + + 2 + 311 + 5 x 7 inch Negatives, H-R, Martin, Harry - 3-year-old Boy,March 9, 1966 + + + + + + 2 + 312 + 5 x 7 inch Negatives, H-R, Martin, Harry - 2-year-old Boy,March 6, 1965 + + + + + + 2 + 313 + 5 x 7 inch Negatives, H-R, Martin, Harry - Wedding (2 envelopes),undated + + + + + + 2 + 314 + 5 x 7 inch Negatives, H-R, Martin, Herbert,undated + + + + + + 2 + 351 + 5 x 7 inch Negatives, H-R, Martin, Herman - and Wife,undated + + + + + + 2 + 316 + 5 x 7 inch Negatives, H-R, Martin, Howard - Wedding (3 envelopes),undated + + + + + + 2 + 317 + 5 x 7 inch Negatives, H-R, Martin, Leon,undated + + + + + + 2 + 318 + 5 x 7 inch Negatives, H-R, Martin, Nancy - H.S.,undated + + + + + + 2 + 319 + 5 x 7 inch Negatives, H-R, Marzke, Lloyd - Copy, Lloyd's Shoes,undated + + + + + + 2 + 320 + 5 x 7 inch Negatives, H-R, Mason, Velda - I.D.,undated + + + + + + 2 + 321 + 5 x 7 inch Negatives, H-R, Mathews, Dave and Girlfriend,undated + + + + + + 2 + 322 + 5 x 7 inch Negatives, H-R, Maybee, Dale - 2 Children,undated + + + + + + 2 + 323 + 5 x 7 inch Negatives, H-R, Maybee, Milan,undated + + + + + + 2 + 324 + 5 x 7 inch Negatives, H-R, Mayville, Anne,1950 + + + + + + 2 + 325 + 5 x 7 inch Negatives, H-R, Meade, Carol - I.D.,undated + + + + + + 2 + 326 + 5 x 7 inch Negatives, H-R, Meade, James,1957 + + + + + + 2 + 327 + 5 x 7 inch Negatives, H-R, Meade, James, - 3- and 5-year-olds,undated + + + + + + 2 + 328 + 5 x 7 inch Negatives, H-R, Meade, James,1960 + + + + + + 2 + 329 + 5 x 7 inch Negatives, H-R, Meade, James, 4 Children (2 envelopes),undated + + + + + + 2 + 330 + 5 x 7 inch Negatives, H-R, Meffert, Laura - 2- and 3-year-olds (2 envelopes),undated + + + + + + 2 + 331 + 5 x 7 inch Negatives, H-R, Merrifield, Barbara - H.S.,undated + + + + + + 2 + 332 + 5 x 7 inch Negatives, H-R, Merrifield, Clara,February 17, 1967 + + + + + + 2 + 333 + 5 x 7 inch Negatives, H-R, Messersmith, Russell - Wedding (2 envelopes),undated + + + + + + 2 + 334 + 5 x 7 inch Negatives, H-R, Michigan Bow Hunters' Annual Banquet (2 envelopes),1953-1954 + + + + + + 2 + 335 + 5 x 7 inch Negatives, H-R, Millegan, Dan, 1st Community,undated + + + + + + 2 + 336 + 5 x 7 inch Negatives, H-R, Miller, Carl,undated + + + + + + 2 + 337 + 5 x 7 inch Negatives, H-R, Miller, Gene - H.S.,undated + + + + + + 2 + 338 + 5 x 7 inch Negatives, H-R, Miller, Larry - H.S.,undated + + + + + + 2 + 339 + 5 x 7 inch Negatives, H-R, Miller, Lona,undated + + + + + + 2 + 340 + 5 x 7 inch Negatives, H-R, Miller, R. -I.D.,undated + + + + + + 2 + 341 + 5 x 7 inch Negatives, H-R, Milligan, Don - Wedding,undated + + + + + + 2 + 342 + 5 x 7 inch Negatives, H-R, Milligan, Don - 2-month-old,1952 + + + + + + 2 + 343 + 5 x 7 inch Negatives, H-R, Milligan, Don,1954 + + + + + + 2 + 344 + 5 x 7 inch Negatives, H-R, Milligan, Don and Julia (Mrs.) - 2-month-old,1957 + + + + + + 2 + 345 + 5 x 7 inch Negatives, H-R, Milligan, Don - 2-month-old,1959 + + + + + + 2 + 346 + 5 x 7 inch Negatives, H-R, Milligan, Don - 3-month-old,November 1961 + + + + + + 2 + 347 + 5 x 7 inch Negatives, H-R, Milligan, Don - 1st Communion - Girl,May 1, 1965 + + + + + + 2 + 348 + 5 x 7 inch Negatives, H-R, Milligan, Don - 1st Communion,1961 + + + + + + 2 + 349 + 5 x 7 inch Negatives, H-R, Milligan, Don - 1st Communion,May 30, 1967 + + + + + + 2 + 350 + 5 x 7 inch Negatives, H-R, Milligan, George - H.S.,1966 + + + + + + 2 + 351 + 5 x 7 inch Negatives, H-R, Milligan, Marianne - H.S.,September 14, 1968 + + + + + + 2 + 352 + 5 x 7 inch Negatives, H-R, Mills, Agnes - Photograph, Copy,undated + + + + + + 2 + 353 + 5 x 7 inch Negatives, H-R, Mills, Leo - Couple,undated + + + + + + 2 + 354 + 5 x 7 inch Negatives, H-R, Minics, James - I.D.,January 18, 1968 + + + + + + 2 + 355 + 5 x 7 inch Negatives, H-R, Minics, James and Walt,undated + + + + + + 2 + 356 + 5 x 7 inch Negatives, H-R, Missersmith, Russell - 3 Children,undated + + + + + + 2 + 357 + 5 x 7 inch Negatives, H-R, Missersmith, Russell - 1st Communion - Girl,undated + + + + + + 2 + 358 + 5 x 7 inch Negatives, H-R, Mitchell, Barbara - Wedding (2 envelopes),undated + + + + + + 2 + 359 + 5 x 7 inch Negatives, H-R, Moeggenborg, Harry - and Wife,December 5, 1967 + + + + + + + 2 + 360 + 5 x 7 inch Negatives, H-R, Mogg, Pete,undated + + + + + + 2 + 361 + 5 x 7 inch Negatives, H-R, Mogg, Pete - Tractor,undated + + + + + + 2 + 362 + 5 x 7 inch Negatives, H-R, Mogg, Reynold - 5-month-old Girl,undated + + + + + + 2 + 363 + 5 x 7 inch Negatives, H-R, Mogg, Ronald - 3-month-old,February 9, 1963 + + + + + + 2 + 364 + 5 x 7 inch Negatives, H-R, Mogg, Ronald - 3-month-old Boy,undated + + + + + + 2 + 365 + 5 x 7 inch Negatives, H-R, Moody, William - Baby,undated + + + + + + 2 + 366 + 5 x 7 inch Negatives, H-R, Moore, Robert Wedding (2 envelopes),undated + + + + + + 2 + 367 + 5 x 7 inch Negatives, H-R, Moorehead, Wm. - Baby Girl 2-year-old,undated + + + + + + 2 + 368 + 5 x 7 inch Negatives, H-R, Moose, Nan,undated + + + + + + 2 + 369 + 5 x 7 inch Negatives, H-R, Morris, Rex - Copy,undated + + + + + + 2 + 370 + 5 x 7 inch Negatives, H-R, Mosher, Gene - H.S.,undated + + + + + + 2 + 371 + 5 x 7 inch Negatives, H-R, Mosher, Norris - 4 generations,August 21, 1962 + + + + + + 2 + 372 + 5 x 7 inch Negatives, H-R, Mosher, Norris, Jr.,undated + + + + + + 2 + 373 + 5 x 7 inch Negatives, H-R, Moyna, Gene,undated + + + + + + 2 + 374 + 5 x 7 inch Negatives, H-R, Mrazek, J. - 2 Children,undated + + + + + + 2 + 375 + 5 x 7 inch Negatives, H-R, Mount Pleasant High School Winning Football Team Squad,1972 + + + + + + 2 + 376 + 5 x 7 inch Negatives, H-R, Mount Pleasant Sacred Heart Class Composite,September 1941 + + + + + + 2 + 377 + 5 x 7 inch Negatives, H-R, Mullett, Willeon - Wedding (2 envelopes),undated + + + + + + 2 + 378 + 5 x 7 inch Negatives, H-R, Mumford, Basil (Mrs.) - Copy (2 envelopes),December 20, 1969 + + + + + + 2 + 379 + 5 x 7 inch Negatives, H-R, Mumy, Joyce - I.D.,undated + + + + + + 2 + 380 + 5 x 7 inch Negatives, H-R, Mumy, Pauline,undated + + + + + + 2 + 381 + 5 x 7 inch Negatives, H-R, Munn, George and Wife,undated + + + + + + 2 + 382 + 5 x 7 inch Negatives, H-R, Muny, Frank and Wife,undated + + + + + + 2 + 383 + 5 x 7 inch Negatives, H-R, Murphy, Agnes - Copy,undated + + + + + + 2 + 384 + 5 x 7 inch Negatives, H-R, Murphy, Theresa - Copy,undated + + + + + + 2 + 385 + 5 x 7 inch Negatives, H-R, Murphy, William - Copy of Farm Photograph,September 18, 1962 + + + + + + 2 + 386 + 5 x 7 inch Negatives, H-R, Murvine, Laura,undated + + + + + + 2 + 387 + 5 x 7 inch Negatives, H-R, Myers, Albert - Family,undated + + + + + + 2 + 388 + 5 x 7 inch Negatives, H-R, Myers, Walter,undated + + + + + + 2 + 389 + 5 x 7 inch Negatives, H-R, Nagy, Mike - Copy,undated + + + + + + 2 + 390 + 5 x 7 inch Negatives, H-R, Nagy, Rhea,undated + + + + + + 2 + 391 + 5 x 7 inch Negatives, H-R, Nall, Mrs. - Copy 2,undated + + + + + + 2 + 392 + 5 x 7 inch Negatives, H-R, Nall, L.E. - Copy,undated + + + + + + 2 + 393 + 5 x 7 inch Negatives, H-R, Naslund, Ruth,undated + + + + + + 2 + 394 + 5 x 7 inch Negatives, H-R, Naumes, Mrs. Mike - (Tommy),undated + + + + + + 2 + 395 + 5 x 7 inch Negatives, H-R, Neeland, Frank,undated + + + + + + 2 + 396 + 5 x 7 inch Negatives, H-R, Neff, Dinah,undated + + + + + + 2 + 397 + 5 x 7 inch Negatives, H-R, Neff, Gerald -2 Boys,undated + + + + + + 2 + 398 + 5 x 7 inch Negatives, H-R, Nestle, Robt. and Wife,undated + + + + + + 2 + 399 + 5 x 7 inch Negatives, H-R, Nickle, Martha - Copy,undated + + + + + + 2 + 400 + 5 x 7 inch Negatives, H-R, Nicks, E. A.,undated + + + + + + 2 + 401 + 5 x 7 inch Negatives, H-R, Nicks, Helen,undated + + + + + + 2 + 402 + 5 x 7 inch Negatives, H-R, Niswonger, Stella - Air Force Sergeant,undated + + + + + + 2 + 403 + 5 x 7 inch Negatives, H-R, Nogy, Alex and Wife,March 21, 1966 + + + + + + 2 + 404 + 5 x 7 inch Negatives, H-R, Northrup, Dorothy,undated + + + + + + 2 + 405 + 5 x 7 inch Negatives, H-R, Northway, E.A., Dr.,undated + + + + + + 2 + 406 + 5 x 7 inch Negatives, H-R, Nutt, Mrs. Floyd (2 envelopes),undated + + + + + + 2 + 407 + 5 x 7 inch Negatives, H-R, O'Brien, Theresa,undated + + + + + + 2 + 408 + 5 x 7 inch Negatives, H-R, O'Brien, William - Copy,undated + + + + + + 2 + 409 + 5 x 7 inch Negatives, H-R, O'Conner, Bonnie -10-month-old,undated + + + + + + 2 + 410 + 5 x 7 inch Negatives, H-R, Offill, Nina - H.S.,undated + + + + + + 2 + 411 + 5 x 7 inch Negatives, H-R, O'Green, P.W. (2 envelopes),undated + + + + + + 2 + 412 + 5 x 7 inch Negatives, H-R, Ohms, Donna,undated + + + + + + 2 + 413 + 5 x 7 inch Negatives, H-R, Onstatt, Kenneth - H.S.,undated + + + + + + 2 + 414 + 5 x 7 inch Negatives, H-R, Onstatt, Sandra - H.S.,undated + + + + + + 2 + 415 + 5 x 7 inch Negatives, H-R, Opdycke, Diann - H.S.,undated + + + + + + 2 + 416 + 5 x 7 inch Negatives, H-R, Oplinger, Earl - Baby,undated + + + + + + 2 + 417 + 5 x 7 inch Negatives, H-R, Oplinger, Earl - Wedding (2 envelopes),undated + + + + + + 2 + 418 + 5 x 7 inch Negatives, H-R, Oplinger, Earl - 2 Boys,undated + + + + + + 2 + 419 + 5 x 7 inch Negatives, H-R, Oplinger, Earl - Family,Christmas 1954 + + + + + + 2 + 420 + 5 x 7 inch Negatives, H-R, Oplinger, Earl -Boy - 1st Communion,undated + + + + + + 2 + 421 + 5 x 7 inch Negatives, H-R, Osoki, Ed - I.D.,undated + + + + + + 2 + 422 + 5 x 7 inch Negatives, H-R, Otterbine, Russell,undated + + + + + + 2 + 423 + 5 x 7 inch Negatives, H-R, Owen, Ethel - Copy,undated + + + + + + 2 + 424 + 5 x 7 inch Negatives, H-R, Packer, Roy - Wedding (2 envelopes),undated + + + + + + 2 + 425 + 5 x 7 inch Negatives, H-R, Palmer, Jerry - 5 Children,undated + + + + + + 2 + 426 + 5 x 7 inch Negatives, H-R, Pappas, Tom- 1st Communion - Girl,April 13, 1963 + + + + + + 2 + 427 + 5 x 7 inch Negatives, H-R, Pappas, Tom- 1st Communion,April 9, 1966 + + + + + + 2 + 428 + 5 x 7 inch Negatives, H-R, Parker, E.W.,undated + + + + + + 2 + 429 + 5 x 7 inch Negatives, H-R, Parker, George and Wife,undated + + + + + + 2 + 430 + 5 x 7 inch Negatives, H-R, Parker, Rodney,November 15, 1968 + + + + + + 2 + 431 + 5 x 7 inch Negatives, H-R, Parker, Roy - I.D.,undated + + + + + + 2 + 432 + 5 x 7 inch Negatives, H-R, Parks, Richard C. - Family I.D.s (2 envelopes),undated + + + + + + 2 + 433 + 5 x 7 inch Negatives, H-R, Parole Face Sheet - Irvin W. Mater,undated + + + + + + 2 + 434 + 5 x 7 inch Negatives, H-R, Pasch, R.,April 20, 1965 + + + + + + 2 + 435 + 5 x 7 inch Negatives, H-R, Pasch, Raldon - 1-year-old,undated + + + + + + 2 + 436 + 5 x 7 inch Negatives, H-R, Payne, Mary - I.D.,undated + + + + + + 2 + 437 + 5 x 7 inch Negatives, H-R, Peabody, Frank - Wedding,undated + + + + + + 2 + 438 + 5 x 7 inch Negatives, H-R, Pearsale, Eleanor - I.D.,undated + + + + + + 2 + 439 + 5 x 7 inch Negatives, H-R, Pego, James,undated + + + + + + 2 + 440 + 5 x 7 inch Negatives, H-R, Pego, James, - 1.5-year-old Boy,undated + + + + + + 2 + 441 + 5 x 7 inch Negatives, H-R, Peltier, Don -1st Communion, Girl,undated + + + + + + 2 + 442 + 5 x 7 inch Negatives, H-R, Perkins, Harold - 7 - month - old,undated + + + + + + 2 + 443 + 5 x 7 inch Negatives, H-R, Perkins, Phylis -2 Children 1- and 1-year-olds (may be same child in 2 different views),undated + + + + + + 2 + 445 + 5 x 7 inch Negatives, H-R, Peters, Betsy - and Theresa,undated + + + + + + 2 + 446 + 5 x 7 inch Negatives, H-R, Peters, David -8-month-old,undated + + + + + + 2 + 447 + 5 x 7 inch Negatives, H-R, Peters, Dan,undated + + + + + + 2 + 448 + 5 x 7 inch Negatives, H-R, Peters, James A. - Copy of Honorable Discharge,undated + + + + + + 2 + 449 + 5 x 7 inch Negatives, H-R, Peters, Wade and Wife - I.D.,undated + + + + + + 2 + 450 + 5 x 7 inch Negatives, H-R, Peterson, Arlene,undated + + + + + + 2 + 451 + 5 x 7 inch Negatives, H-R, Peterson, Tom, H.S.,undated + + + + + + 2 + 452 + 5 x 7 inch Negatives, H-R, Pety, Patricia,undated + + + + + + 2 + 453 + 5 x 7 inch Negatives, H-R, Phelps, Roy - Wedding (2 envelopes),undated + + + + + + 2 + 454 + 5 x 7 inch Negatives, H-R, Phelps, Shirley - 3 Children,undated + + + + + + 2 + 455 + 5 x 7 inch Negatives, H-R, Phelps, Shirley - 8-month-old Boy,July 21, 1962 + + + + + + 2 + 456 + 5 x 7 inch Negatives, H-R, Phelps, Shirley - 1-year-old,June 15, 1965 + + + + + + 2 + 457 + 5 x 7 inch Negatives, H-R, Phibbs, Bob - Wedding (2 envelopes),undated + + + + + + 2 + 458 + 5 x 7 inch Negatives, H-R, Phillips, Frances,undated + + + + + + 2 + 459 + 5 x 7 inch Negatives, H-R, Phipps, Ruby - two 10-year-olds, 8-year-old,undated + + + + + + 2 + 460 + 5 x 7 inch Negatives, H-R, Pickens, Albert,undated + + + + + + 2 + 461 + 5 x 7 inch Negatives, H-R, Pierce, Stanley - Couple,undated + + + + + + 2 + 462 + 5 x 7 inch Negatives, H-R, Pierce, Stanley - Copy of Son,undated + + + + + + 2 + 463 + 5 x 7 inch Negatives, H-R, Pingatore, Fred - Wedding (3 envelopes),undated + + + + + + 2 + 464 + 5 x 7 inch Negatives, H-R, Pitts, E.,undated + + + + + + 2 + 465 + 5 x 7 inch Negatives, H-R, Piwowarczyk, Joe,undated + + + + + + 2 + 466 + 5 x 7 inch Negatives, H-R, Porter, Dan,undated + + + + + + 2 + 467 + 5 x 7 inch Negatives, H-R, Potter, Carla - H.S.,undated + + + + + + 2 + 468 + 5 x 7 inch Negatives, H-R, Potter, Jay and Wife,undated + + + + + + 2 + 469 + 5 x 7 inch Negatives, H-R, Powell, Jim - I.D.,undated + + + + + + 2 + 470 + 5 x 7 inch Negatives, H-R, Preston, Ester - I.D.,undated + + + + + + 2 + 471 + 5 x 7 inch Negatives, H-R, Price, M.,undated + + + + + + 2 + 472 + 5 x 7 inch Negatives, H-R, Price, Tom - H.S.,undated + + + + + + 2 + 473 + 5 x 7 inch Negatives, H-R, Priest, [no first name] -Sailor,undated + + + + + + 2 + 474 + 5 x 7 inch Negatives, H-R, Priest, Bob - I.D. (Weidman),undated + + + + + + 2 + 475 + 5 x 7 inch Negatives, H-R, Priest, Frank and Wife,undated + + + + + + 2 + 476 + 5 x 7 inch Negatives, H-R, Priest, John (3) - Copy,undated + + + + + + 2 + 477 + 5 x 7 inch Negatives, H-R, Priest, John - Mrs. and 2 Boys,July 20, 1962 + + + + + + 2 + 478 + 5 x 7 inch Negatives, H-R, Priest, John H. - Mr. and Mrs.,undated + + + + + + 2 + 479 + 5 x 7 inch Negatives, H-R, Prior, Wm. - 2-month-old,undated + + + + + + 2 + 480 + 5 x 7 inch Negatives, H-R, Prout, Asa - and Wife,undated + + + + + + 2 + 481 + 5 x 7 inch Negatives, H-R, Prout, Cliff - and Wife,undated + + + + + + 2 + 482 + 5 x 7 inch Negatives, H-R, Prout, Floyd - 8-year-old Boy,undated + + + + + + 2 + 483 + 5 x 7 inch Negatives, H-R, Prout, Floyd and Wife,June 11, 1966 + + + + + + 2 + 484 + 5 x 7 inch Negatives, H-R, Purtil, C. - Wedding (2 envelopes),undated + + + + + + 2 + 485 + 5 x 7 inch Negatives, H-R, Quillen, A.,undated + + + + + + 2 + 486 + 5 x 7 inch Negatives, H-R, Quillen, Joe - Wedding (3 envelopes),undated + + + + + + 2 + 487 + 5 x 7 inch Negatives, H-R, Quinlan, Bob - Wedding,undated + + + + + + 2 + 488 + 5 x 7 inch Negatives, H-R, Quinlan, Lucille,undated + + + + + + 2 + 489 + 5 x 7 inch Negatives, H-R, Quinn, Wm. (Mrs.),undated + + + + + + 2 + 490 + 5 x 7 inch Negatives, H-R, Rademaker, Cy,undated + + + + + + 2 + 491 + 5 x 7 inch Negatives, H-R, Ranken, Bob,undated + + + + + + 2 + 492 + 5 x 7 inch Negatives, H-R, Rau, Steve -1st Communion - Girl,1960 + + + + + + 2 + 493 + 5 x 7 inch Negatives, H-R, Rau, Steve (Mrs.) -1st Communion - Boy,undated + + + + + + 2 + 494 + 5 x 7 inch Negatives, H-R, Rau, Steve - 1st Communion - Girl,undated + + + + + + 2 + 495 + 5 x 7 inch Negatives, H-R, Rau, Steve,1959 + + + + + + 2 + 496 + 5 x 7 inch Negatives, H-R, Raymond, Gale - H.S.,undated + + + + + + 2 + 497 + 5 x 7 inch Negatives, H-R, Raymond, Sharon,undated + + + + + + 2 + 498 + 5 x 7 inch Negatives, H-R, Reen, Ardean,undated + + + + + + 2 + 499 + 5 x 7 inch Negatives, H-R, Reese, Edward - Copy,undated + + + + + + 2 + 500 + 5 x 7 inch Negatives, H-R, Reese, Mason - I.D.,undated + + + + + + 2 + 501 + 5 x 7 inch Negatives, H-R, Reffey, Jr. - Wedding (2 envelopes),undated + + + + + + 2 + 502 + 5 x 7 inch Negatives, H-R, Reid, Chas. - I.D.,undated + + + + + + 2 + 503 + 5 x 7 inch Negatives, H-R, Reid, Chas. and Wife,undated + + + + + + 2 + 504 + 5 x 7 inch Negatives, H-R, Reid, Walter (Mrs.),undated + + + + + + 2 + 505 + 5 x 7 inch Negatives, H-R, Reihl, Joe - 10-month-old Girl,undated + + + + + + 2 + 506 + 5 x 7 inch Negatives, H-R, Reihl, John and Wife - 50th Anniversary,undated + + + + + + 2 + 507 + 5 x 7 inch Negatives, H-R, Render, Bob - 2-year-old Jimmy,undated + + + + + + 2 + 508 + 5 x 7 inch Negatives, H-R, Render, Bob - Wedding (2 envelopes),undated + + + + + + 2 + 509 + 5 x 7 inch Negatives, H-R, Rhode, Max - Couple,undated + + + + + + 2 + 510 + 5 x 7 inch Negatives, H-R, Rice, Lester,undated + + + + + + 2 + 511 + 5 x 7 inch Negatives, H-R, Rice, Lester (Mrs.) - Copy,undated + + + + + + 2 + 512 + 5 x 7 inch Negatives, H-R, Rice, R.O. - Baby Girl,undated + + + + + + 2 + 513 + 5 x 7 inch Negatives, H-R, Richardson, Ben,undated + + + + + + 2 + 514 + 5 x 7 inch Negatives, H-R, Richardson, E.,undated + + + + + + 2 + 515 + 5 x 7 inch Negatives, H-R, Riggle, Becky,undated + + + + + + 2 + 516 + 5 x 7 inch Negatives, H-R, Riggle, Libby,undated + + + + + + 2 + 517 + 5 x 7 inch Negatives, H-R, Rinard, Robt. - Wedding (2 envelopes),undated + + + + + + + 2 + 518 + 5 x 7 inch Negatives, H-R, Roach, Francis - I.D.,undated + + + + + + 2 + 519 + 5 x 7 inch Negatives, H-R, Robinson, Barbara,undated + + + + + + 2 + 520 + 5 x 7 inch Negatives, H-R, Robinson, Joe, I.D.,undated + + + + + + 2 + 521 + 5 x 7 inch Negatives, H-R, Robinson, Mildred - Copy,undated + + + + + + 2 + 522 + 5 x 7 inch Negatives, H-R, Rodriguez, Albert - Wedding,undated + + + + + + 2 + 523 + 5 x 7 inch Negatives, H-R, Rodriguez, Carmen,undated + + + + + + 2 + 524 + 5 x 7 inch Negatives, H-R, Rodriguez, Mary Lou,undated + + + + + + 2 + 525 + 5 x 7 inch Negatives, H-R, Roethlisberger, Albert,undated + + + + + + 2 + 526 + 5 x 7 inch Negatives, H-R, Roethlisberger, Leon - 1-year-old,undated + + + + + + + 2 + 527 + 5 x 7 inch Negatives, H-R, Rogers, Janice,undated + + + + + + + 2 + 528 + 5 x 7 inch Negatives, H-R, Romins, Bev. - 3 Children, 8-, 10-, and 12-years-old; 1st Communion,July 8, 1969 + + + + + + 2 + 529 + 5 x 7 inch Negatives, H-R, Rood, Jean - I.D.,undated + + + + + + 2 + 530 + 5 x 7 inch Negatives, H-R, Root, Kathryn,undated + + + + + + 2 + 531 + 5 x 7 inch Negatives, H-R, Ross, James - Wedding,undated + + + + + + 2 + 532 + 5 x 7 inch Negatives, H-R, Roval, John - 3-month-old Girl,undated + + + + + + 2 + 533 + 5 x 7 inch Negatives, H-R, Russell, Walt,January 31, 1967 + + + + + + 2 + 534 + 5 x 7 inch Negatives, H-R, Rutledge, James T.,undated + + + + + + 2 + 535 + 5 x 7 inch Negatives, H-R, Ryzenga, John - Wedding,undated + + + + + + 3 + 1 + 5 x 7 inch Negatives, S-Z, Sagamall, Joe,undated + + + + + + 3 + 2 + 5 x 7 inch Negatives, S-Z, Saldana, Julia - 2-month-old,undated + + + + + + 3 + 3 + 5 x 7 inch Negatives, S-Z, Sanders, Carold Arthur - Honorable Discharge,undated + + + + + + 3 + 4 + 5 x 7 inch Negatives, S-Z, Sanders, Phil - Wedding,undated + + + + + + 3 + 5 + 5 x 7 inch Negatives, S-Z, Sandy, Howard - 3-year-old Girl,undated + + + + + + 3 + 6 + 5 x 7 inch Negatives, S-Z, Sankel, Carl - Wedding,undated + + + + + + 3 + 7 + 5 x 7 inch Negatives, S-Z, Sargent, Judy,undated + + + + + + 3 + 8 + 5 x 7 inch Negatives, S-Z, Sauter, Linda,undated + + + + + + 3 + 9 + 5 x 7 inch Negatives, S-Z, Savage, Fred (Mrs.) - I.D.,undated + + + + + + 3 + 10 + 5 x 7 inch Negatives, S-Z, Sawade, Williard - H.S.,undated + + + + + + 3 + 11 + 5 x 7 inch Negatives, S-Z, Schade, Margaret,undated + + + + + + 3 + 12 + 5 x 7 inch Negatives, S-Z, Schade, Mary,undated + + + + + + 3 + 13 + 5 x 7 inch Negatives, S-Z, Schafer, Dolores,undated + + + + + + 3 + 14 + 5 x 7 inch Negatives, S-Z, Schafer, Eugene - Copy,undated + + + + + + 3 + 15 + 5 x 7 inch Negatives, S-Z, Schafer, Gertrude,undated + + + + + + 3 + 16 + 5 x 7 inch Negatives, S-Z, Schafer, John,undated + + + + + + 3 + 17 + 5 x 7 inch Negatives, S-Z, Schafer, Richard - 9-month-old,February 21, 1970 + + + + + + 3 + 18 + 5 x 7 inch Negatives, S-Z, Schafer, Tom - Wedding,undated + + + + + + 3 + 19 + 5 x 7 inch Negatives, S-Z, Schaller, Bennie - Wedding,undated + + + + + + 3 + 20 + 5 x 7 inch Negatives, S-Z, Schimantowski, Evelyn,undated + + + + + + 3 + 21 + 5 x 7 inch Negatives, S-Z, Schmidt, Frank (Mrs.) - Copy,undated + + + + + + + 3 + 22 + 5 x 7 inch Negatives, S-Z, Schmittler, R.H. - Baby,undated + + + + + + 3 + 23 + 5 x 7 inch Negatives, S-Z, Schoner, Duane - I.D.,undated + + + + + + 3 + 24 + 5 x 7 inch Negatives, S-Z, Schroeck, Katherine,undated + + + + + + 3 + 25 + 5 x 7 inch Negatives, S-Z, Schrot, Joe,undated + + + + + + 3 + 26 + 5 x 7 inch Negatives, S-Z, Schulbough, John,undated + + + + + + 3 + 27 + 5 x 7 inch Negatives, S-Z, Schumacher, Keith - Wedding,undated + + + + + + 3 + 28 + 5 x 7 inch Negatives, S-Z, Schumacher, Steve (Mrs.),undated + + + + + + 3 + 29 + 5 x 7 inch Negatives, S-Z, Schupbach, John - Baby,1951 + + + + + + 3 + 30 + 5 x 7 inch Negatives, S-Z, Schutt, Sharon,undated + + + + + + 3 + 31 + 5 x 7 inch Negatives, S-Z, Scott, James,undated + + + + + + 3 + 32 + 5 x 7 inch Negatives, S-Z, Scramlin, R.,February 7, 1968 + + + + + + 3 + 33 + 5 x 7 inch Negatives, S-Z, Segraves, [no first name] - H.S.,undated + + + + + + 3 + 34 + 5 x 7 inch Negatives, S-Z, Seimmer, Paul - Wedding,undated + + + + + + 3 + 35 + 5 x 7 inch Negatives, S-Z, Seiting, John - 2- and 3-year-olds,undated + + + + + + 3 + 36 + 5 x 7 inch Negatives, S-Z, Servass, Anita,undated + + + + + + 3 + 37 + 5 x 7 inch Negatives, S-Z, Sexton, Dick,undated + + + + + + 3 + 38 + 5 x 7 inch Negatives, S-Z, Sharmh, Bonkey L. - I.D.,undated + + + + + + 3 + 39 + 5 x 7 inch Negatives, S-Z, Sharp, Robt. - Wedding,undated + + + + + + 3 + 40 + 5 x 7 inch Negatives, S-Z, Sharr, Diane - 2- and 3-year-old Boys,undated + + + + + + 3 + 41 + 5 x 7 inch Negatives, S-Z, Shattuck, Donald - Wedding,undated + + + + + + 3 + 42 + 5 x 7 inch Negatives, S-Z, Sheets, Dick - 7-month-old Boy,February 22, 1964 + + + + + + 3 + 43 + 5 x 7 inch Negatives, S-Z, Sheets, Leula - Copy of Soldier,July 15, 1964 + + + + + + 3 + 44 + 5 x 7 inch Negatives, S-Z, Sheldon, Charlie,undated + + + + + + 3 + 45 + 5 x 7 inch Negatives, S-Z, Sheppard, Joe,March 5, 1969 + + + + + + 3 + 46 + 5 x 7 inch Negatives, S-Z, Sheredy, Sherry - Brother,September 10, 1965 + + + + + + 3 + 47 + 5 x 7 inch Negatives, S-Z, Sheredy, Stan - Family,May 18, 1968 + + + + + + 3 + 48 + 5 x 7 inch Negatives, S-Z, Shinkle, Earl,undated + + + + + + 3 + 49 + 5 x 7 inch Negatives, S-Z, Shoe, Kay,undated + + + + + + 3 + 50 + 5 x 7 inch Negatives, S-Z, Siefker, Harry - 4 Children,undated + + + + + + 3 + 51 + 5 x 7 inch Negatives, S-Z, Sieting, John - Wedding,undated + + + + + + 3 + 52 + 5 x 7 inch Negatives, S-Z, Silver, Don,undated + + + + + + 3 + 53 + 5 x 7 inch Negatives, S-Z, Simmer, Henry and Wife - I.D., Mrs.,undated + + + + + + 3 + 54 + 5 x 7 inch Negatives, S-Z, Simmer, Rosaleen,undated + + + + + + 3 + 55 + 5 x 7 inch Negatives, S-Z, Simmer, Stephen - Wedding,undated + + + + + + 3 + 56 + 5 x 7 inch Negatives, S-Z, Simon, A.M. - Couple,undated + + + + + + 3 + 57 + 5 x 7 inch Negatives, S-Z, Skalitzky, Jim,undated + + + + + + 3 + 58 + 5 x 7 inch Negatives, S-Z, Slater, Cara,undated + + + + + + 3 + 59 + 5 x 7 inch Negatives, S-Z, Slater, Leonard - Beard Family,undated + + + + + + 3 + 60 + 5 x 7 inch Negatives, S-Z, Slates, D. Ray - 2 Children,undated + + + + + + 3 + 61 + 5 x 7 inch Negatives, S-Z, Sloan, Mrs. Dorotha - Bernard Feltman Family,undated + + + + + + 3 + 62 + 5 x 7 inch Negatives, S-Z, Sloan, Raymond - Baby,August 22, 1964 + + + + + + 3 + 63 + 5 x 7 inch Negatives, S-Z, Slocum, Emily - (Moerlin),undated + + + + + + 3 + 64 + 5 x 7 inch Negatives, S-Z, Slocum, John,November 30, 1961 + + + + + + 3 + 65 + 5 x 7 inch Negatives, S-Z, Smalley, Clarence - 9-month-old Boy,undated + + + + + + 3 + 66 + 5 x 7 inch Negatives, S-Z, Smalley, Earl - Baby Boy,undated + + + + + + 3 + 67 + 5 x 7 inch Negatives, S-Z, Smiley, Alec,undated + + + + + + 3 + 68 + 5 x 7 inch Negatives, S-Z, Smith, (Mrs.) - Ula's Mother,undated + + + + + + 3 + 69 + 5 x 7 inch Negatives, S-Z, Smith, Bernard - Buster's Wedding,undated + + + + + + 3 + 70 + 5 x 7 inch Negatives, S-Z, Smith, Carl - and 8-year-old son,undated + + + + + + 3 + 71 + 5 x 7 inch Negatives, S-Z, Smith, Chas. and Wife,undated + + + + + + 3 + 72 + 5 x 7 inch Negatives, S-Z, Smith, Emory T. - Copy,undated + + + + + + 3 + 73 + 5 x 7 inch Negatives, S-Z, Smith, Gerald - and Wife,June 7, 1968 + + + + + + 3 + 74 + 5 x 7 inch Negatives, S-Z, Smith, Gerald T.,undated + + + + + + 3 + 75 + 5 x 7 inch Negatives, S-Z, Smith, Gladys - Copy,undated + + + + + + 3 + 76 + 5 x 7 inch Negatives, S-Z, Smith, Harold - 2 Children,undated + + + + + + 3 + 77 + 5 x 7 inch Negatives, S-Z, Smith, J.P.,undated + + + + + + 3 + 78 + 5 x 7 inch Negatives, S-Z, Smith, Larry - 11-month-old,undated + + + + + + 3 + 79 + 5 x 7 inch Negatives, S-Z, Smith, Lorraine,undated + + + + + + 3 + 80 + 5 x 7 inch Negatives, S-Z, Smith, Mary,September 7, 1966 + + + + + + 3 + 81 + 5 x 7 inch Negatives, S-Z, Smith, Orville - H.S.,January 7, 1967 + + + + + + 3 + 82 + 5 x 7 inch Negatives, S-Z, Smith, Ralph - H.S.,undated + + + + + + 3 + 83 + 5 x 7 inch Negatives, S-Z, Smith, Robert - I.D., Charlie's Son,undated + + + + + + 3 + 84 + 5 x 7 inch Negatives, S-Z, Sneathen, George E. - Copy of Central Michigan College of Education Transcript,undated + + + + + + + 3 + 85 + 5 x 7 inch Negatives, S-Z, Snyder, Janet - H.S.,undated + + + + + + 3 + 86 + 5 x 7 inch Negatives, S-Z, Sogamall, Paula Chi,undated + + + + + + 3 + 87 + 5 x 7 inch Negatives, S-Z, South, Agnes - Boy,undated + + + + + + 3 + 88 + 5 x 7 inch Negatives, S-Z, South, Agnes - Boy and Girl,undated + + + + + + 3 + 89 + 5 x 7 inch Negatives, S-Z, Spagnoula, Frank (Mrs.) - Copy of Daughter,undated + + + + + + 3 + 90 + 5 x 7 inch Negatives, S-Z, Spence, Sandra - 4 Children,undated + + + + + + 3 + 91 + 5 x 7 inch Negatives, S-Z, Spencer, Dick - Copy,undated + + + + + + 3 + 92 + 5 x 7 inch Negatives, S-Z, Spencer, Donna - Copy,undated + + + + + + 3 + 93 + 5 x 7 inch Negatives, S-Z, Spencer, Evelyn - I.D.,undated + + + + + + 3 + 94 + 5 x 7 inch Negatives, S-Z, Spencer, Roy,undated + + + + + + 3 + 95 + 5 x 7 inch Negatives, S-Z, Spillman, James (Mrs.),undated + + + + + + 3 + 96 + 5 x 7 inch Negatives, S-Z, Spiris, Geo.,undated + + + + + + 3 + 97 + 5 x 7 inch Negatives, S-Z, Sponseller, Geo. - 4 Children,undated + + + + + + 3 + 98 + 5 x 7 inch Negatives, S-Z, Stacy, G.,undated + + + + + + 3 + 99 + 5 x 7 inch Negatives, S-Z, Staley, Don - I.D.,undated + + + + + + 3 + 100 + 5 x 7 inch Negatives, S-Z, Stamm, Carl,undated + + + + + + 3 + 101 + 5 x 7 inch Negatives, S-Z, Stamm, Jake,undated + + + + + + 3 + 102 + 5 x 7 inch Negatives, S-Z, Stamm, John - Saw Mill, Blanchard,August 25, 1967 + + + + + + 3 + 103 + 5 x 7 inch Negatives, S-Z, Stanley, Eva,undated + + + + + + 3 + 104 + 5 x 7 inch Negatives, S-Z, Stebleton, J. - Baby,undated + + + + + + 3 + 105 + 5 x 7 inch Negatives, S-Z, Stevens, Lucy - I.D.,undated + + + + + + 3 + 106 + 5 x 7 inch Negatives, S-Z, Stewart, William - Wedding,undated + + + + + + 3 + 107 + 5 x 7 inch Negatives, S-Z, Stokes, Jerry,undated + + + + + + 3 + 108 + 5 x 7 inch Negatives, S-Z, Straka, Emma - 2 Boys and Mother,undated + + + + + + 3 + 109 + 5 x 7 inch Negatives, S-Z, Straley, Robt.,undated + + + + + + 3 + 110 + 5 x 7 inch Negatives, S-Z, Strange, Robert,undated + + + + + + 3 + 111 + 5 x 7 inch Negatives, S-Z, Straus, Max -14-month-old Boy,undated + + + + + + 3 + 112 + 5 x 7 inch Negatives, S-Z, Strehl, Harry - and Wife,February 19,1968 + + + + + + 3 + 113 + 5 x 7 inch Negatives, S-Z, Streng, Fred - 2-year-old Girl,October 19,1968 + + + + + + 3 + 114 + 5 x 7 inch Negatives, S-Z, Strong, Alson,undated + + + + + + 3 + 115 + 5 x 7 inch Negatives, S-Z, Stroup, Joyce,undated + + + + + + 3 + 116 + 5 x 7 inch Negatives, S-Z, Sutton, Jan,undated + + + + + + 3 + 118 + 5 x 7 inch Negatives, S-Z, Swain, Linda - H.S.,undated + + + + + + 3 + 119 + 5 x 7 inch Negatives, S-Z, Swan, Alice Dowell,undated + + + + + + 3 + 120 + 5 x 7 inch Negatives, S-Z, Swan, Bob - Baby Boy,undated + + + + + + 3 + 121 + 5 x 7 inch Negatives, S-Z, Swan, Francis, Jr. - H.S.,undated + + + + + + 3 + 122 + 5 x 7 inch Negatives, S-Z, Swan, Mrs. H.,undated + + + + + + 3 + 123 + 5 x 7 inch Negatives, S-Z, Swett, Joy,undated + + + + + + 3 + 124 + 5 x 7 inch Negatives, S-Z, Sytek, Theodor,undated + + + + + + 3 + 125 + 5 x 7 inch Negatives, S-Z, Tate, Harry - Copy of Honorable Discharge,undated + + + + + + 3 + 126 + 5 x 7 inch Negatives, S-Z, Tayler, Lewis - Copy,undated + + + + + + 3 + 127 + 5 x 7 inch Negatives, S-Z, Taylor, Nick - I.D.,1956 + + + + + + 3 + 128 + 5 x 7 inch Negatives, S-Z, Thayer, Wallace,undated + + + + + + 3 + 129 + 5 x 7 inch Negatives, S-Z, Theilen, Betty - and Mrs. Gunderman, I.D.,undated + + + + + + 3 + 130 + 5 x 7 inch Negatives, S-Z, Theilen, Peter - Family,undated + + + + + + 3 + 131 + 5 x 7 inch Negatives, S-Z, Theisen, Bob - Wedding (Mary Lou Loreny),undated + + + + + + 3 + 132 + 5 x 7 inch Negatives, S-Z, Theisen, Dianne,undated + + + + + + 3 + 133 + 5 x 7 inch Negatives, S-Z, Theisen, Dorothy,undated + + + + + + 3 + 134 + 5 x 7 inch Negatives, S-Z, Theisen, H.,undated + + + + + + 3 + 135 + 5 x 7 inch Negatives, S-Z, Theisen, Jack - (3),November 23, 1968 + + + + + + 3 + 136 + 5 x 7 inch Negatives, S-Z, Theisen, John - 9-month-old,April 13, 1963 + + + + + + 3 + 137 + 5 x 7 inch Negatives, S-Z, Thering, Bill - H.S.,undated + + + + + + 3 + 138 + 5 x 7 inch Negatives, S-Z, Thering, Elmer (3 Soldiers),undated + + + + + + 3 + 139 + 5 x 7 inch Negatives, S-Z, Thering, Helen,undated + + + + + + 3 + 140 + 5 x 7 inch Negatives, S-Z, Thering, John,October 20, 1966 + + + + + + 3 + 141 + 5 x 7 inch Negatives, S-Z, Thering, Marilyn - H.S.,undated + + + + + + 3 + 142 + 5 x 7 inch Negatives, S-Z, Therman, A. -1-year-old Boy,undated + + + + + + 3 + 143 + 5 x 7 inch Negatives, S-Z, Thielen, Don - Copy of Chiropractic Letter,August 28, 1963 + + + + + + 3 + 144 + 5 x 7 inch Negatives, S-Z, Thomas, Larry - 3-month-old,1963 + + + + + + 3 + 145 + 5 x 7 inch Negatives, S-Z, Thompkins, Russ (Mrs.) - I.D.,undated + + + + + + 3 + 146 + 5 x 7 inch Negatives, S-Z, Thorn, Sharon - Copy,undated + + + + + + 3 + 147 + 5 x 7 inch Negatives, S-Z, Tilman, Roy - Copy of 1928 Photograph,undated + + + + + + 3 + 148 + 5 x 7 inch Negatives, S-Z, Tilman, Roy - Children; 3-, 5-, and 11-year-olds,undated + + + + + + 3 + 149 + 5 x 7 inch Negatives, S-Z, Tilman, Roy - 3-year-old Girl,undated + + + + + + 3 + 150 + 5 x 7 inch Negatives, S-Z, Tilmann, Roy - 4-year-old Boy,1959 + + + + + + 3 + 151 + 5 x 7 inch Negatives, S-Z, Tilmann, Roy - 1st Communion, Boy,May 1962 + + + + + + 3 + 152 + 5 x 7 inch Negatives, S-Z, Tilmann, Roy - 1st Communion, Girl,May 4, 1966 + + + + + + 3 + 153 + 5 x 7 inch Negatives, S-Z, Tilmann, Roy - 1-year-old Girl,July 28, 1964 + + + + + + 3 + 154 + 5 x 7 inch Negatives, S-Z, Todd, Bud - I.D.,undated + + + + + + 3 + 155 + 5 x 7 inch Negatives, S-Z, Torpey, Leo - 1-year-old,undated + + + + + + 3 + 156 + 5 x 7 inch Negatives, S-Z, Torpey, Susan,undated + + + + + + 3 + 157 + 5 x 7 inch Negatives, S-Z, Torres, Dan - 14-month-old,undated + + + + + + 3 + 158 + 5 x 7 inch Negatives, S-Z, Trainor, Jack - Baby Girl,undated + + + + + + 3 + 159 + 5 x 7 inch Negatives, S-Z, Travis, H.,undated + + + + + + 3 + 160 + 5 x 7 inch Negatives, S-Z, Travis, Kenneth,undated + + + + + + 3 + 161 + 5 x 7 inch Negatives, S-Z, Travis, Kenneth - Wedding,undated + + + + + + 3 + 162 + 5 x 7 inch Negatives, S-Z, Traylor, [no first name] (Mrs.),undated + + + + + + 3 + 163 + 5 x 7 inch Negatives, S-Z, Trevisiol, Carol - H.S.,undated + + + + + + 3 + 164 + 5 x 7 inch Negatives, S-Z, Tromblay, Arthur - I.D.,undated + + + + + + 3 + 165 + 5 x 7 inch Negatives, S-Z, Tromblay, Effie - I.D.,February 28, 1949 + + + + + + 3 + 166 + 5 x 7 inch Negatives, S-Z, Trumbley, E. (Mrs.),undated + + + + + + 3 + 167 + 5 x 7 inch Negatives, S-Z, Twindlehurst, Jeaneen,undated + + + + + + 3 + 168 + 5 x 7 inch Negatives, S-Z, Ulbrich, John (Mrs.),undated + + + + + + 3 + 169 + 5 x 7 inch Negatives, S-Z, Ulbrich, John - and Wife,undated + + + + + + 3 + 170 + 5 x 7 inch Negatives, S-Z, Underland,undated + + + + + + 3 + 171 + 5 x 7 inch Negatives, S-Z, Urmerback, Rudy,undated + + + + + + 3 + 172 + 5 x 7 inch Negatives, S-Z, VanArker, Harry - and Wife,undated + + + + + + 3 + 173 + 5 x 7 inch Negatives, S-Z, Vanderwoude, Louise,undated + + + + + + 3 + 174 + 5 x 7 inch Negatives, S-Z, VanHorn, Forrest - Family 4, Copy,undated + + + + + + 3 + 175 + 5 x 7 inch Negatives, S-Z, VanHorn, Fred - 1-year-old Boy,undated + + + + + + 3 + 176 + 5 x 7 inch Negatives, S-Z, VanHorn, Fred - Wedding,undated + + + + + + 3 + 177 + 5 x 7 inch Negatives, S-Z, VanLiew, M. - 2 Children,undated + + + + + + 3 + 178 + 5 x 7 inch Negatives, S-Z, VanNostrand, Howard - Wedding,undated + + + + + + 3 + 179 + 5 x 7 inch Negatives, S-Z, VanOmmeran, C. (Three Group),undated + + + + + + 3 + 180 + 5 x 7 inch Negatives, S-Z, VanOrden, Betty,undated + + + + + + 3 + 181 + 5 x 7 inch Negatives, S-Z, VanOrden, Shirley - H.S.,undated + + + + + + 3 + 182 + 5 x 7 inch Negatives, S-Z, Vanzo, Ralph Bruce - Copy of Honorable Discharge,undated + + + + + + 3 + 183 + 5 x 7 inch Negatives, S-Z, Varga, Violet - (Couple, Bridesmaid),undated + + + + + + 3 + 184 + 5 x 7 inch Negatives, S-Z, Verrette, Ethyl - Copy of Marriage License,April 29, 1961 + + + + + + 3 + 185 + 5 x 7 inch Negatives, S-Z, Verwey, Andrew - (Mr. and Mrs.),April 22, 1958 + + + + + + 3 + 186 + 5 x 7 inch Negatives, S-Z, Verwey, Joe,undated + + + + + + 3 + 187 + 5 x 7 inch Negatives, S-Z, Verwey, John -3 Boys,undated + + + + + + 3 + 188 + 5 x 7 inch Negatives, S-Z, Verwey, Marinus - I.D.,undated + + + + + + 3 + 189 + 5 x 7 inch Negatives, S-Z, Vodicka, Robert - 1.5 -year-old Girl,undated + + + + + + 3 + 190 + 5 x 7 inch Negatives, S-Z, Vogel, Joseph - Weidman R #1, Copy,undated + + + + + + 3 + 191 + 5 x 7 inch Negatives, S-Z, Voisen, Ed (Mrs.),August 18, 1967 + + + + + + 3 + 192 + 5 x 7 inch Negatives, S-Z, Voisin, Ed,undated + + + + + + 3 + 193 + 5 x 7 inch Negatives, S-Z, Voisin, Norma,undated + + + + + + 3 + 194 + 5 x 7 inch Negatives, S-Z, VonDoloski, Walter - 5- and 7-year-old Boys,undated + + + + + + 3 + 195 + 5 x 7 inch Negatives, S-Z, Waiversik, Ed and Wife,July 21, 1967 + + + + + + 3 + 196 + 5 x 7 inch Negatives, S-Z, Walker, Ann - 2 Children,December 2, 1967 + + + + + + 3 + 197 + 5 x 7 inch Negatives, S-Z, Wallace, Billie Lee - Copy,undated + + + + + + 3 + 198 + 5 x 7 inch Negatives, S-Z, Wallace, Mary - I.D.,undated + + + + + + 3 + 199 + 5 x 7 inch Negatives, S-Z, Walters, Marcella,undated + + + + + + 3 + 200 + 5 x 7 inch Negatives, S-Z, Walton, James - I.D.,undated + + + + + + 3 + 201 + 5 x 7 inch Negatives, S-Z, Ward, Bob,undated + + + + + + 3 + 202 + 5 x 7 inch Negatives, S-Z, Ward, Esther - 1-year-old Girl,undated + + + + + + 3 + 203 + 5 x 7 inch Negatives, S-Z, Ward, Roger - (1 and 2) 1-year-old,1963 + + + + + + 3 + 204 + 5 x 7 inch Negatives, S-Z, Warner, Bob - H.S.,undated + + + + + + 3 + 205 + 5 x 7 inch Negatives, S-Z, Warner, Ronald -2 Children 2.5- and 3.5-year-olds,undated + + + + + + 3 + 206 + 5 x 7 inch Negatives, S-Z, Watson, Don- and Anne Mayville,undated + + + + + + 3 + 207 + 5 x 7 inch Negatives, S-Z, Watson, Lloyd,undated + + + + + + 3 + 208 + 5 x 7 inch Negatives, S-Z, Watson, Sally,undated + + + + + + 3 + 209 + 5 x 7 inch Negatives, S-Z, Wattelet, Ray,undated + + + + + + 3 + 210 + 5 x 7 inch Negatives, S-Z, Weaver, Al - Copy,undated + + + + + + 3 + 211 + 5 x 7 inch Negatives, S-Z, Weaver, Jess -2-year-old Boy,undated + + + + + + 3 + 212 + 5 x 7 inch Negatives, S-Z, Weaver, Jess,undated + + + + + + 3 + 213 + 5 x 7 inch Negatives, S-Z, Weaver, Ken - 10-month-old,undated + + + + + + 3 + 214 + 5 x 7 inch Negatives, S-Z, Weaver, Kim - Copy,undated + + + + + + 3 + 215 + 5 x 7 inch Negatives, S-Z, Weeke, Clayton - Mr. and Mrs.,undated + + + + + + 3 + 216 + 5 x 7 inch Negatives, S-Z, Wehrly, Clarice,undated + + + + + + 3 + 217 + 5 x 7 inch Negatives, S-Z, Weipert, John - 50th Anniversary,undated + + + + + + 3 + 218 + 5 x 7 inch Negatives, S-Z, Welsh, Jim - Blanchard, Michigan - Copy,undated + + + + + + 3 + 219 + 5 x 7 inch Negatives, S-Z, Wentworth, Dick - 5 Children,1962 + + + + + + 3 + 220 + 5 x 7 inch Negatives, S-Z, Wentworth, Richard - 2-year-old Boy,undated + + + + + + 3 + 221 + 5 x 7 inch Negatives, S-Z, Wermette, Dan - 3 Children,undated + + + + + + 3 + 222 + 5 x 7 inch Negatives, S-Z, Wernette, M.J. - Grandpa and 3 Children,undated + + + + + + 3 + 223 + 5 x 7 inch Negatives, S-Z, Wert, Dale (Mrs.) - Copy,undated + + + + + + 3 + 224 + 5 x 7 inch Negatives, S-Z, Westbrook, Jack - 3-year-old Girl,undated + + + + + + 3 + 225 + 5 x 7 inch Negatives, S-Z, Westie, Chas. - Wife and Daughter,March 26, 1968 + + + + + + 3 + 226 + 5 x 7 inch Negatives, S-Z, Weston, Kenneth - Baby Boy,undated + + + + + + 3 + 227 + 5 x 7 inch Negatives, S-Z, Wezensky, Ann - I.D.,undated + + + + + + 3 + 228 + 5 x 7 inch Negatives, S-Z, Wezensky, Helen - I.D.,undated + + + + + + 3 + 229 + 5 x 7 inch Negatives, S-Z, Whaley, Earl - Copy of Honorable Discharge,undated + + + + + + 3 + 230 + 5 x 7 inch Negatives, S-Z, Wheaton, Louise,undated + + + + + + 3 + 231 + 5 x 7 inch Negatives, S-Z, Whitney, Bob,undated + + + + + + 3 + 232 + 5 x 7 inch Negatives, S-Z, Whitney, Doris,undated + + + + + + 3 + 233 + 5 x 7 inch Negatives, S-Z, Whitney, Wm. - 50th Anniversary,undated + + + + + + 3 + 234 + 5 x 7 inch Negatives, S-Z, Whittier, L.,undated + + + + + + 3 + 235 + 5 x 7 inch Negatives, S-Z, Wicks, John - Couple,undated + + + + + + 3 + 236 + 5 x 7 inch Negatives, S-Z, Wicks, Murray - Couple,undated + + + + + + 3 + 237 + 5 x 7 inch Negatives, S-Z, Wilberg, [no first name] (Mrs.),undated + + + + + + 3 + 238 + 5 x 7 inch Negatives, S-Z, Wilcox, Jerrie - 1-year-old Boy,March 12, 1966 + + + + + + 3 + 239 + 5 x 7 inch Negatives, S-Z, Wilcox, Jerry - 7-month-old Boy,undated + + + + + + 3 + 240 + 5 x 7 inch Negatives, S-Z, Wilcox, Jimmy - Copy of Christmas Card,undated + + + + + + 3 + 241 + 5 x 7 inch Negatives, S-Z, Wilcox, Richard,undated + + + + + + 3 + 242 + 5 x 7 inch Negatives, S-Z, Wilcox, Ruth - 4-year-old Girl,undated + + + + + + 3 + 243 + 5 x 7 inch Negatives, S-Z, Wiley, George Alvin - Copy of Honorable Discharge,undated + + + + + + 3 + 244 + 5 x 7 inch Negatives, S-Z, Wiley, Jerry - Copy,November 19, 1964 + + + + + + 3 + 245 + 5 x 7 inch Negatives, S-Z, Williams, G. - Family,undated + + + + + + 3 + 246 + 5 x 7 inch Negatives, S-Z, Williams, John - Copy,undated + + + + + + 3 + 247 + 5 x 7 inch Negatives, S-Z, Williamson, John - Couple,undated + + + + + + 3 + 248 + 5 x 7 inch Negatives, S-Z, Wilmat, James - Wedding,undated + + + + + + + 3 + 249 + 5 x 7 inch Negatives, S-Z, Wilmout, Joe - 2 Children,undated + + + + + + 3 + 250 + 5 x 7 inch Negatives, S-Z, Wilson, Aletha - 3 Children,undated + + + + + + 3 + 251 + 5 x 7 inch Negatives, S-Z, Wilson, Joan,undated + + + + + + 3 + 252 + 5 x 7 inch Negatives, S-Z, Wilson, John and Wife,undated + + + + + + 3 + 253 + 5 x 7 inch Negatives, S-Z, Wilson, Luciele,undated + + + + + + 3 + 254 + 5 x 7 inch Negatives, S-Z, Wilson, Pat,December 7, 1968 + + + + + + 3 + 255 + 5 x 7 inch Negatives, S-Z, Wilson, Richard E. - 14-month-old,June 19, 1965 + + + + + + 3 + 256 + 5 x 7 inch Negatives, S-Z, Wilson, Roy,undated + + + + + + 3 + 257 + 5 x 7 inch Negatives, S-Z, Wilson, Tom - 7-month-old,undated + + + + + + 3 + 258 + 5 x 7 inch Negatives, S-Z, Wilt, Ted - I.D.,undated + + + + + + 3 + 259 + 5 x 7 inch Negatives, S-Z, Winder, R. - Trooper,undated + + + + + + 3 + 260 + 5 x 7 inch Negatives, S-Z, Winesburgh, Geo.,undated + + + + + + 3 + 261 + 5 x 7 inch Negatives, S-Z, Wonsey, Geo. - Copy,undated + + + + + + 3 + 262 + 5 x 7 inch Negatives, S-Z, Wood, Chas. - Baby,undated + + + + + + 3 + 263 + 5 x 7 inch Negatives, S-Z, Wood, Kathryn - 1-year-old Boy,undated + + + + + + 3 + 264 + 5 x 7 inch Negatives, S-Z, Wood, W.D. - Copy,undated + + + + + + 3 + 265 + 5 x 7 inch Negatives, S-Z, Woodburg, Tom - H.S.,undated + + + + + + 3 + 266 + 5 x 7 inch Negatives, S-Z, Woodin, Loretta Allen,undated + + + + + + 3 + 267 + 5 x 7 inch Negatives, S-Z, Woods, Helen,undated + + + + + + 3 + 268 + 5 x 7 inch Negatives, S-Z, Woods, Lewis - Family,undated + + + + + + 3 + 269 + 5 x 7 inch Negatives, S-Z, Woods, Mike,undated + + + + + + 3 + 270 + 5 x 7 inch Negatives, S-Z, Wooster, Don,undated + + + + + + 3 + 271 + 5 x 7 inch Negatives, S-Z, Wright, Joe - 45th Anniversary,undated + + + + + + 3 + 272 + 5 x 7 inch Negatives, S-Z, Yaeger, Ione - I.D.,undated + + + + + + 3 + 273 + 5 x 7 inch Negatives, S-Z, Yoder, Gene - Copy,June 9, 1969 + + + + + + 3 + 274 + 5 x 7 inch Negatives, S-Z, Yoder, Rochel,undated + + + + + + 3 + 275 + 5 x 7 inch Negatives, S-Z, Yost, Carl (Mrs.),undated + + + + + + 3 + 276 + 5 x 7 inch Negatives, S-Z, Yost, Harry - I.D.,undated + + + + + + 3 + 277 + 5 x 7 inch Negatives, S-Z, Young, Sylvia,undated + + + + + + 3 + 278 + 5 x 7 inch Negatives, S-Z, Young, Sylvia (Mrs.),September 23, 1967 + + + + + + 3 + 279 + 5 x 7 inch Negatives, S-Z, Youngs, Jess - Son - Air Force,undated + + + + + + 3 + 280 + 5 x 7 inch Negatives, S-Z, Yunker, F. - Baby,undated + + + + + + 3 + 281 + 5 x 7 inch Negatives, S-Z, Yunkers, Arlene,undated + + + + + + 3 + 282 + 5 x 7 inch Negatives, S-Z, Yunkers, Herbert - Family,undated + + + + + + 3 + 283 + 5 x 7 inch Negatives, S-Z, Yunkers, Herbert - Boy, 1st Communion,undated + + + + + + 3 + 284 + 5 x 7 inch Negatives, S-Z, Yunkers, Richard - Wedding,undated + + + + + + 3 + 285 + 5 x 7 inch Negatives, S-Z, Zarks, Ben - Baby Girl,undated + + + + + + 3 + 286 + 5 x 7 inch Negatives, S-Z, Zeien, L. - 4-year-old Girl,undated + + + + + + 3 + 287 + 5 x 7 inch Negatives, S-Z, Zuker, Ed - Copy of Honorable Discharge,undated + + + + + + 3 + 288 + 5 x 7 inch Negatives, S-Z, Zuker, Frank - and Wife,November 1967 + + + + + + 3 + 289 + 5 x 7 inch Negatives, S-Z, Zuker, Helen,undated + + + + + + 3 + 290 + 5 x 7 inch Negatives, S-Z, Zygmond, Gloria,undated + + + + + + 4 + 1 + 3.5 x 4.5 inch Negatives, A-Gran, Abbey, Ron and Wife,undated + + + + + + 4 + 2 + 3.5 x 4.5 inch Negatives, A-Gran, Abbot, Donald W. - I.D. (2 envelopes),July 7, 1959 + + + + + + 4 + 3 + 3.5 x 4.5 inch Negatives, A-Gran, Abbot, Marshall, Sr. (2 envelopes),undated + + + + + + 4 + 4 + 3.5 x 4.5 inch Negatives, A-Gran, Abbot, Marshall (2 envelopes),undated + + + + + + 4 + 5 + 3.5 x 4.5 inch Negatives, A-Gran, Abbot, Marshall - Girl (2 envelopes),undated + + + + + + 4 + 6 + 3.5 x 4.5 inch Negatives, A-Gran, Abbot, Marshall and Wife (2 envelopes),Christmas 1962 + + + + + + 4 + 7 + 3.5 x 4.5 inch Negatives, A-Gran, Abbot, Mickey - 2 Children (2 envelopes),undated + + + + + + 4 + 8 + 3.5 x 4.5 inch Negatives, A-Gran, Abbot, Wayne -4 Children,undated + + + + + + 4 + 9 + 3.5 x 4.5 inch Negatives, A-Gran, Achenback, Paul,June 21, 1969 + + + + + + 4 + 10 + 3.5 x 4.5 inch Negatives, A-Gran, Achenback, Paul (Mrs.),June 23, 1969 + + + + + + 4 + 11 + 3.5 x 4.5 inch Negatives, A-Gran, Acher, Donna (2 envelopes),undated + + + + + + 4 + 12 + 3.5 x 4.5 inch Negatives, A-Gran, Ackerman, C. (3 envelopes),undated + + + + + + 4 + 13 + 3.5 x 4.5 inch Negatives, A-Gran, Adams, Shirley - I.D.,undated + + + + + + 4 + 14 + 3.5 x 4.5 inch Negatives, A-Gran, Alban, Art (3 envelopes),undated + + + + + + 4 + 15 + 3.5 x 4.5 inch Negatives, A-Gran, Albar, Al (2 envelopes),undated + + + + + + 4 + 16 + 3.5 x 4.5 inch Negatives, A-Gran, Albar, Art - Copy,undated + + + + + + 4 + 17 + 3.5 x 4.5 inch Negatives, A-Gran, Albee, J.A. - Baby Girl (2 envelopes),undated + + + + + + 4 + 18 + 3.5 x 4.5 inch Negatives, A-Gran, Albee, Jack - Mother,undated + + + + + + 4 + 19 + 3.5 x 4.5 inch Negatives, A-Gran, Albee, Jack - Daughter,undated + + + + + + 4 + 20 + 3.5 x 4.5 inch Negatives, A-Gran, Aldrick, J.C. - 1-year-old,undated + + + + + + 4 + 21 + 3.5 x 4.5 inch Negatives, A-Gran, Aldrick, J.C. - 4-year-old,undated + + + + + + 4 + 22 + 3.5 x 4.5 inch Negatives, A-Gran, Aldrick, J.C. - 1- and 4-year-old,undated + + + + + + 4 + 23 + 3.5 x 4.5 inch Negatives, A-Gran, Aleman, Martin - I.D.,undated + + + + + + 4 + 24 + 3.5 x 4.5 inch Negatives, A-Gran, Alexander, Clara - Aunt,undated + + + + + + 4 + 25 + 3.5 x 4.5 inch Negatives, A-Gran, Alexander, Evelyn,undated + + + + + + 4 + 26 + 3.5 x 4.5 inch Negatives, A-Gran, Alexander Family,undated + + + + + + 4 + 27 + 3.5 x 4.5 inch Negatives, A-Gran, Allen, Donna - 2-year-old,undated + + + + + + 4 + 28 + 3.5 x 4.5 inch Negatives, A-Gran, Allen, Donna,undated + + + + + + 4 + 29 + 3.5 x 4.5 inch Negatives, A-Gran, Allen, Katie,undated + + + + + + 4 + 30 + 3.5 x 4.5 inch Negatives, A-Gran, Allen, Leona,undated + + + + + + 4 + 31 + 3.5 x 4.5 inch Negatives, A-Gran, Allen, Loretta - I.D.,July 7, 1959 + + + + + + 4 + 32 + 3.5 x 4.5 inch Negatives, A-Gran, Allen, Marjorie,undated + + + + + + 4 + 33 + 3.5 x 4.5 inch Negatives, A-Gran, Allen, Treva - I.D.,undated + + + + + + 4 + 34 + 3.5 x 4.5 inch Negatives, A-Gran, Allen, Willard - Copy of Honorable Discharge,undated + + + + + + 4 + 35 + 3.5 x 4.5 inch Negatives, A-Gran, Anderson, Dale - Wedding (2 envelopes),undated + + + + + + 4 + 36 + 3.5 x 4.5 inch Negatives, A-Gran, Anne [no surname],undated + + + + + + 4 + 37 + 3.5 x 4.5 inch Negatives, A-Gran, Armstrong, Janet - I.D.,undated + + + + + + 4 + 38 + 3.5 x 4.5 inch Negatives, A-Gran, Army Years,undated + + + + + + 4 + 39 + 3.5 x 4.5 inch Negatives, A-Gran, Ash, Alvin - 1-year-old,undated + + + + + + 4 + 40 + 3.5 x 4.5 inch Negatives, A-Gran, Ash, Alvin - 1-year-old Boy,undated + + + + + + 4 + 41 + 3.5 x 4.5 inch Negatives, A-Gran, Ash, Alvin - 1- and 2-year-old Children (2 envelopes),undated + + + + + + 4 + 42 + 3.5 x 4.5 inch Negatives, A-Gran, Ash, Alvin - 1-year-old,September 1961 + + + + + + 4 + 43 + 3.5 x 4.5 inch Negatives, A-Gran, Ash, Shirley - 1-year-old,March 5, 1966 + + + + + + 4 + 44 + 3.5 x 4.5 inch Negatives, A-Gran, Ashivarth, Lucille,April 1, 1967 + + + + + + 4 + 45 + 3.5 x 4.5 inch Negatives, A-Gran, Ashivarth, Lucille - Daughter,April 1, 1967 + + + + + + 4 + 46 + 3.5 x 4.5 inch Negatives, A-Gran, Ashquab, Rosie - Copies,undated + + + + + + 4 + 47 + 3.5 x 4.5 inch Negatives, A-Gran, Asiala, Roger,undated + + + + + + 4 + 48 + 3.5 x 4.5 inch Negatives, A-Gran, Askegard, Harry - I.D.,July 7, 1959 + + + + + + 4 + 49 + 3.5 x 4.5 inch Negatives, A-Gran, Askegard, Harry - 1- and 2-year-olds,March 21,1964 + + + + + + 4 + 50 + 3.5 x 4.5 inch Negatives, A-Gran, Askegard, H.L. - 3 Babies,July 19, 1965 + + + + + + 4 + 51 + 3.5 x 4.5 inch Negatives, A-Gran, Askegard, Mildred - I.D.,July 7, 1959 + + + + + + 4 + 52 + 3.5 x 4.5 inch Negatives, A-Gran, Askegard, Shirley - I.D.,undated + + + + + + 4 + 53 + 3.5 x 4.5 inch Negatives, A-Gran, Barney, Ruth H.,November 11, 1961 + + + + + + 4 + 54 + 3.5 x 4.5 inch Negatives, A-Gran, Barrett, Clarence (2),undated + + + + + + 4 + 55 + 3.5 x 4.5 inch Negatives, A-Gran, Barrett, Joyce,undated + + + + + + 4 + 56 + 3.5 x 4.5 inch Negatives, A-Gran, Barrett, Marlene,undated + + + + + + 4 + 57 + 3.5 x 4.5 inch Negatives, A-Gran, Barry, Richard - I.D.,undated + + + + + + 4 + 58 + 3.5 x 4.5 inch Negatives, A-Gran, Barton, Fred - I.D.,undated + + + + + + 4 + 59 + 3.5 x 4.5 inch Negatives, A-Gran, Barton, Phylis,undated + + + + + + 4 + 60 + 3.5 x 4.5 inch Negatives, A-Gran, Bates, Janice -5-month-old,undated + + + + + + 4 + 61 + 3.5 x 4.5 inch Negatives, A-Gran, Bates, Rosellie,undated + + + + + + 4 + 62 + 3.5 x 4.5 inch Negatives, A-Gran, Batson, Dr. - Baby,undated + + + + + + 4 + 63 + 3.5 x 4.5 inch Negatives, A-Gran, Battey, Sharene - I.D.,undated + + + + + + 4 + 64 + 3.5 x 4.5 inch Negatives, A-Gran, Bauer, Dr. A.R.- Wife,June 18, 1969 + + + + + + 4 + 65 + 3.5 x 4.5 inch Negatives, A-Gran, Bauer, Dr. A.R.,June 18, 1969 + + + + + + 4 + 66 + 3.5 x 4.5 inch Negatives, A-Gran, Bauer, Dr. A.R. - 2 Boys,June 18, 1969 + + + + + + 4 + 67 + 3.5 x 4.5 inch Negatives, A-Gran, Bauer, Dr. A.R. - Daughter,June 18, 1969 + + + + + + 4 + 68 + 3.5 x 4.5 inch Negatives, A-Gran, Bauer, Dr. A.R. - Son,June 18, 1969 + + + + + + 4 + 69 + 3.5 x 4.5 inch Negatives, A-Gran, Bauman, Gerald - 1-year-old,undated + + + + + + 4 + 70 + 3.5 x 4.5 inch Negatives, A-Gran, Baumann, Mable,undated + + + + + + 4 + 71 + 3.5 x 4.5 inch Negatives, A-Gran, Baxter, Naomi,undated + + + + + + 4 + 72 + 3.5 x 4.5 inch Negatives, A-Gran, Bazaire, Bill - I.D.,undated + + + + + + 4 + 73 + 3.5 x 4.5 inch Negatives, A-Gran, Bazaire, Bill,undated + + + + + + 4 + 74 + 3.5 x 4.5 inch Negatives, A-Gran, Bearden, Joyce - I.D.,undated + + + + + + 4 + 75 + 3.5 x 4.5 inch Negatives, A-Gran, Bearse, Ed - I.D.,undated + + + + + + 4 + 76 + 3.5 x 4.5 inch Negatives, A-Gran, Beaublien, Peggy - I.D.,undated + + + + + + 4 + 77 + 3.5 x 4.5 inch Negatives, A-Gran, Beck, Andy,undated + + + + + + 4 + 78 + 3.5 x 4.5 inch Negatives, A-Gran, Beck, Jerry - I.D.,undated + + + + + + 4 + 79 + 3.5 x 4.5 inch Negatives, A-Gran, Beerman, Gerald - 2- and 4-year-olds,undated + + + + + + 4 + 80 + 3.5 x 4.5 inch Negatives, A-Gran, Beers, Dean R. - Copy,undated + + + + + + 4 + 81 + 3.5 x 4.5 inch Negatives, A-Gran, Bekrend, Wm., Jr. - 3 Children,undated + + + + + + 4 + 82 + 3.5 x 4.5 inch Negatives, A-Gran, Bellinger, W. - Girl,undated + + + + + + 4 + 83 + 3.5 x 4.5 inch Negatives, A-Gran, Beltnik, Ona - Copy,undated + + + + + + 4 + 84 + 3.5 x 4.5 inch Negatives, A-Gran, Beltnik, Tom - Joe Initzler Copy,undated + + + + + + 4 + 85 + 3.5 x 4.5 inch Negatives, A-Gran, Bengel, Mrs. - Copy,undated + + + + + + 4 + 86 + 3.5 x 4.5 inch Negatives, A-Gran, Bennett, Alice (Mrs.),undated + + + + + + 4 + 87 + 3.5 x 4.5 inch Negatives, A-Gran, Bennett, Evelyn,August 31, 1964 + + + + + + 4 + 88 + 3.5 x 4.5 inch Negatives, A-Gran, Bennett, Floyd - Copy,undated + + + + + + 4 + 89 + 3.5 x 4.5 inch Negatives, A-Gran, Bennett, L.J.,undated + + + + + + 4 + 90 + 3.5 x 4.5 inch Negatives, A-Gran, Bennett, Mark - I.D.,undated + + + + + + 4 + 91 + 3.5 x 4.5 inch Negatives, A-Gran, Bennett, Vern - Copy,undated + + + + + + 4 + 92 + 3.5 x 4.5 inch Negatives, A-Gran, Bennett, Vickie - I.D.,May 11, 1968 + + + + + + 4 + 93 + 3.5 x 4.5 inch Negatives, A-Gran, Benson, [no first name] -Copy,undated + + + + + + 4 + 94 + 3.5 x 4.5 inch Negatives, A-Gran, Bentley, Lloyd,September 27, 1967 + + + + + + 4 + 95 + 3.5 x 4.5 inch Negatives, A-Gran, Berryhill, Dorothy -I.D.,July 7, 1959 + + + + + + 4 + 96 + 3.5 x 4.5 inch Negatives, A-Gran, Berryhill, John,undated + + + + + + 4 + 97 + 3.5 x 4.5 inch Negatives, A-Gran, Bertolissi, Ted,undated + + + + + + 4 + 98 + 3.5 x 4.5 inch Negatives, A-Gran, Bierschback, E.,undated + + + + + + 4 + 99 + 3.5 x 4.5 inch Negatives, A-Gran, Bierschback, Eugene - 6- and 8-year-olds,November 4, 1967 + + + + + + 4 + 100 + 3.5 x 4.5 inch Negatives, A-Gran, Bierschback, James - Copy,undated + + + + + + 4 + 101 + 3.5 x 4.5 inch Negatives, A-Gran, Bierschback, Pat,undated + + + + + + 4 + 102 + 3.5 x 4.5 inch Negatives, A-Gran, Bierschback, Pat - Girl,undated + + + + + + 4 + 103 + 3.5 x 4.5 inch Negatives, A-Gran, Bigelow, Helen - I.D.,July 7, 1959 + + + + + + 4 + 104 + 3.5 x 4.5 inch Negatives, A-Gran, Billsby, Ray - 7-month-old,undated + + + + + + 4 + 105 + 3.5 x 4.5 inch Negatives, A-Gran, Billsby, Roy - 2-year-old,undated + + + + + + 4 + 106 + 3.5 x 4.5 inch Negatives, A-Gran, Bingham, John - I.D.,undated + + + + + + 4 + 107 + 3.5 x 4.5 inch Negatives, A-Gran, Bird Hunting,1939 + + + + + + 4 + 108 + 3.5 x 4.5 inch Negatives, A-Gran, Bishop, Pete,February 12, 1968 + + + + + + 4 + 109 + 3.5 x 4.5 inch Negatives, A-Gran, Bishop, Pete, Jr.,February 27, 1968 + + + + + + 4 + 110 + 3.5 x 4.5 inch Negatives, A-Gran, Bishop, Peter and Tuohy, Rita - Copy of Marriage License,undated + + + + + + 4 + 111 + 3.5 x 4.5 inch Negatives, A-Gran, Bissett, Carol - H.S.,undated + + + + + + 4 + 112 + 3.5 x 4.5 inch Negatives, A-Gran, Bissett, Ed. - I.D.,March 25, 1967 + + + + + + 4 + 113 + 3.5 x 4.5 inch Negatives, A-Gran, Bissett, Sharon - H.S.,undated + + + + + + 4 + 114 + 3.5 x 4.5 inch Negatives, A-Gran, Bixby, Ed - Appl.,undated + + + + + + 4 + 115 + 3.5 x 4.5 inch Negatives, A-Gran, Bixby, Ed - Family - Copy,1956 + + + + + + 4 + 116 + 3.5 x 4.5 inch Negatives, A-Gran, Bixby, Ed - 3 Children,Christmas 1949 + + + + + + 4 + 117 + 3.5 x 4.5 inch Negatives, A-Gran, Bixby, Ed - Family,1951 + + + + + + 4 + 118 + 3.5 x 4.5 inch Negatives, A-Gran, Bixby, Ed,Christmas 1948 + + + + + + 4 + 119 + 3.5 x 4.5 inch Negatives, A-Gran, Bixby, Ed, Pony,May 21, 1958 + + + + + + 4 + 120 + 3.5 x 4.5 inch Negatives, A-Gran, Bixler, Devere,undated + + + + + + 4 + 121 + 3.5 x 4.5 inch Negatives, A-Gran, 606 Hanse - Bixley's,undated + + + + + + 4 + 122 + 3.5 x 4.5 inch Negatives, A-Gran, Black, Delores,undated + + + + + + 4 + 123 + 3.5 x 4.5 inch Negatives, A-Gran, Blackman, Ann,undated + + + + + + 4 + 124 + 3.5 x 4.5 inch Negatives, A-Gran, Blackman, Anne,undated + + + + + + 4 + 125 + 3.5 x 4.5 inch Negatives, A-Gran, Blackman, E, and Wife - 50th Anniversary,October 12, 1968 + + + + + + 4 + 126 + 3.5 x 4.5 inch Negatives, A-Gran, Blacker, Mary - I.D.,undated + + + + + + 4 + 127 + 3.5 x 4.5 inch Negatives, A-Gran, Bland, A.T. - Trooper (Michigan State Police),undated + + + + + + 4 + 128 + 3.5 x 4.5 inch Negatives, A-Gran, Bleise, Marilyn - I.D.,undated + + + + + + 4 + 129 + 3.5 x 4.5 inch Negatives, A-Gran, Blidar, C.,undated + + + + + + 4 + 130 + 3.5 x 4.5 inch Negatives, A-Gran, Blizyord, Mrs., Sr. - Copy,undated + + + + + + 4 + 131 + 3.5 x 4.5 inch Negatives, A-Gran, Blizzard [a man, no first name],undated + + + + + + 4 + 132 + 3.5 x 4.5 inch Negatives, A-Gran, Blizzard, Jeann,undated + + + + + + 4 + 133 + 3.5 x 4.5 inch Negatives, A-Gran, Block, Carlene,undated + + + + + + 4 + 134 + 3.5 x 4.5 inch Negatives, A-Gran, Blue, Frank - I.D.,undated + + + + + + 4 + 135 + 3.5 x 4.5 inch Negatives, A-Gran, Boder, Geo.,undated + + + + + + 4 + 136 + 3.5 x 4.5 inch Negatives, A-Gran, Boelman, Ken - 4 Children and Mother,undated + + + + + + 4 + 137 + 3.5 x 4.5 inch Negatives, A-Gran, Boody, Mrs. Melvin - I.D.,undated + + + + + + 4 + 138 + 3.5 x 4.5 inch Negatives, A-Gran, Border, Harold,undated + + + + + + 4 + 139 + 3.5 x 4.5 inch Negatives, A-Gran, Bosley, Marie,undated + + + + + + 4 + 140 + 3.5 x 4.5 inch Negatives, A-Gran, Bott, Max,undated + + + + + + 4 + 141 + 3.5 x 4.5 inch Negatives, A-Gran, Bouch, Tom - I.D.,undated + + + + + + 4 + 142 + 3.5 x 4.5 inch Negatives, A-Gran, Boulton, Bruce,undated + + + + + + 4 + 143 + 3.5 x 4.5 inch Negatives, A-Gran, Bourland, Jim, Jr.,undated + + + + + + 4 + 144 + 3.5 x 4.5 inch Negatives, A-Gran, Bourland, Joanne - H.S.,undated + + + + + + 4 + 145 + 3.5 x 4.5 inch Negatives, A-Gran, Bourland, Joanne (2 envelopes),undated + + + + + + 4 + 146 + 3.5 x 4.5 inch Negatives, A-Gran, Bourland, Sharron,undated + + + + + + 4 + 147 + 3.5 x 4.5 inch Negatives, A-Gran, Boussum, C.,undated + + + + + + 4 + 148 + 3.5 x 4.5 inch Negatives, A-Gran, Bower, C.M. - Copy,undated + + + + + + 4 + 149 + 3.5 x 4.5 inch Negatives, A-Gran, Bowerman, Evart,June 28, 1968 + + + + + + 4 + 150 + 3.5 x 4.5 inch Negatives, A-Gran, Bowers, Stewart - I.D.,undated + + + + + + 4 + 151 + 3.5 x 4.5 inch Negatives, A-Gran, Bowser, Wm. - 2-year-old,undated + + + + + + 4 + 152 + 3.5 x 4.5 inch Negatives, A-Gran, Boyer, Bert,undated + + + + + + 4 + 153 + 3.5 x 4.5 inch Negatives, A-Gran, Bozer, Curtis - Copy,undated + + + + + + 4 + 154 + 3.5 x 4.5 inch Negatives, A-Gran, Bracken, B. - Copy,undated + + + + + + 4 + 155 + 3.5 x 4.5 inch Negatives, A-Gran, Brady, [no first name],April 30, 1953 + + + + + + 4 + 156 + 3.5 x 4.5 inch Negatives, A-Gran, Bragg, Eugene - I.D.,undated + + + + + + 4 + 157 + 3.5 x 4.5 inch Negatives, A-Gran, Brand, James - I.D.,July 7, 1959 + + + + + + 4 + 158 + 3.5 x 4.5 inch Negatives, A-Gran, Brand, Marie G.,May 18, 1944 + + + + + + 4 + 159 + 3.5 x 4.5 inch Negatives, A-Gran, Branham, J.W. (Elder) - Copy,undated + + + + + + 4 + 160 + 3.5 x 4.5 inch Negatives, A-Gran, Branson, Orville (3, 1),undated + + + + + + 4 + 161 + 3.5 x 4.5 inch Negatives, A-Gran, Brazington, Ivan - Copy,undated + + + + + + 4 + 162 + 3.5 x 4.5 inch Negatives, A-Gran, Brazington, Tess, I.D.,undated + + + + + + 4 + 163 + 3.5 x 4.5 inch Negatives, A-Gran, Brazington, Sr. - Copy,undated + + + + + + 4 + 164 + 3.5 x 4.5 inch Negatives, A-Gran, Brecht, Marjorie (Mrs.) - 1-year-old Boy and 3-year-old Girl,undated + + + + + + 4 + 165 + 3.5 x 4.5 inch Negatives, A-Gran, Brecht, Marjorie (Mrs.) - 1-year-old Boy,undated + + + + + + 4 + 166 + 3.5 x 4.5 inch Negatives, A-Gran, Brecht, Richard - 1-year-old Girl,undated + + + + + + 4 + 167 + 3.5 x 4.5 inch Negatives, A-Gran, Brewer, Gerald - Girl,undated + + + + + + 4 + 168 + 3.5 x 4.5 inch Negatives, A-Gran, Brewer, Matt and Wife,undated + + + + + + 4 + 169 + 3.5 x 4.5 inch Negatives, A-Gran, Brickner, Aaron - I.D.,undated + + + + + + 4 + 170 + 3.5 x 4.5 inch Negatives, A-Gran, Brickner, Dale - 14-month-old,undated + + + + + + 4 + 171 + 3.5 x 4.5 inch Negatives, A-Gran, Brien, Gale - I.D.,undated + + + + + + 4 + 172 + 3.5 x 4.5 inch Negatives, A-Gran, Brien, Norma - I.D.,undated + + + + + + 4 + 173 + 3.5 x 4.5 inch Negatives, A-Gran, Brondstetter, Joe - 2.5-year-old Girl,undated + + + + + + 4 + 174 + 3.5 x 4.5 inch Negatives, A-Gran, Brondstetter, Williard - Mrs.,undated + + + + + + 4 + 175 + 3.5 x 4.5 inch Negatives, A-Gran, Brooks, Viola - I.D.,undated + + + + + + 4 + 176 + 3.5 x 4.5 inch Negatives, A-Gran, Brown,undated + + + + + + 4 + 177 + 3.5 x 4.5 inch Negatives, A-Gran, Brown, Betty,undated + + + + + + 4 + 178 + 3.5 x 4.5 inch Negatives, A-Gran, Brown, Carol,undated + + + + + + 4 + 179 + 3.5 x 4.5 inch Negatives, A-Gran, Brown, Cedric - Boy-1st Communion,undated + + + + + + 4 + 180 + 3.5 x 4.5 inch Negatives, A-Gran, Brown, Dave,undated + + + + + + 4 + 181 + 3.5 x 4.5 inch Negatives, A-Gran, Brown, Henry - I.D.,undated + + + + + + 4 + 182 + 3.5 x 4.5 inch Negatives, A-Gran, Brown, Judy - Copy,undated + + + + + + 4 + 183 + 3.5 x 4.5 inch Negatives, A-Gran, Brown, Julia - I.D.,undated + + + + + + 4 + 184 + 3.5 x 4.5 inch Negatives, A-Gran, Brown, R.L. - 2 Girls,undated + + + + + + 4 + 185 + 3.5 x 4.5 inch Negatives, A-Gran, Brown, Ronald - I.D.,undated + + + + + + 4 + 186 + 3.5 x 4.5 inch Negatives, A-Gran, Brown, Shirley - I.D.,undated + + + + + + 4 + 187 + 3.5 x 4.5 inch Negatives, A-Gran, Brown, Vincent, Dr. (Dentist),March 14,1967 + + + + + + 4 + 188 + 3.5 x 4.5 inch Negatives, A-Gran, Brown, Vincent, Dr. (Dentist), Daughter,December 27, 1967 + + + + + + 4 + 189 + 3.5 x 4.5 inch Negatives, A-Gran, Brownson, Stanley - Copy,January 31, 1969 + + + + + + 4 + 190 + 3.5 x 4.5 inch Negatives, A-Gran, Brummage, Leslie - I.D.,undated + + + + + + 4 + 191 + 3.5 x 4.5 inch Negatives, A-Gran, Brundage, E.,undated + + + + + + 4 + 192 + 3.5 x 4.5 inch Negatives, A-Gran, Bryan, Martha - I.D.,undated + + + + + + 4 + 193 + 3.5 x 4.5 inch Negatives, A-Gran, Bryant, Kenneth,undated + + + + + + 4 + 194 + 3.5 x 4.5 inch Negatives, A-Gran, Buckner, Lue - Copy,undated + + + + + + 4 + 195 + 3.5 x 4.5 inch Negatives, A-Gran, Budde, Thomas King - I.D.,September 17, 1968 + + + + + + 4 + 196 + 3.5 x 4.5 inch Negatives, A-Gran, Buffard, Jean,undated + + + + + + 4 + 197 + 3.5 x 4.5 inch Negatives, A-Gran, Bugbee, Bertha,undated + + + + + + 4 + 198 + 3.5 x 4.5 inch Negatives, A-Gran, Bugbee, Lewis,undated + + + + + + 4 + 199 + 3.5 x 4.5 inch Negatives, A-Gran, Bullard, Ray - Wedding,undated + + + + + + 4 + 200 + 3.5 x 4.5 inch Negatives, A-Gran, Bundy, Dam (A Man),June 25, 1929 + + + + + + 4 + 201 + 3.5 x 4.5 inch Negatives, A-Gran, Bundy, Dewey,undated + + + + + + 4 + 202 + 3.5 x 4.5 inch Negatives, A-Gran, Bundy, William and Wife,undated + + + + + + 4 + 203 + 3.5 x 4.5 inch Negatives, A-Gran, Bunker, Dale - I.D.,October 12, 1967 + + + + + + 4 + 204 + 3.5 x 4.5 inch Negatives, A-Gran, Bunker, Joyce,undated + + + + + + 4 + 205 + 3.5 x 4.5 inch Negatives, A-Gran, Bunker, Larry,1961, 1963 + + + + + + 4 + 206 + 3.5 x 4.5 inch Negatives, A-Gran, Bunker, Walter,undated + + + + + + 4 + 207 + 3.5 x 4.5 inch Negatives, A-Gran, Bunting, Miles - I.D.,undated + + + + + + 4 + 208 + 3.5 x 4.5 inch Negatives, A-Gran, Bunting, Oral and Wife,undated + + + + + + 4 + 209 + 3.5 x 4.5 inch Negatives, A-Gran, Burden, [no first name] - Copy of Soldier,undated + + + + + + 4 + 210 + 3.5 x 4.5 inch Negatives, A-Gran, Burman, Carol,undated + + + + + + 4 + 211 + 3.5 x 4.5 inch Negatives, A-Gran, Burns, Winifield - H.S.,undated + + + + + + 4 + 212 + 3.5 x 4.5 inch Negatives, A-Gran, Burr, Donna - Copy,undated + + + + + + 4 + 213 + 3.5 x 4.5 inch Negatives, A-Gran, Burrows, David E.,September 27, 1968 + + + + + + 4 + 214 + 3.5 x 4.5 inch Negatives, A-Gran, Bushony, Marvel,undated + + + + + + 4 + 215 + 3.5 x 4.5 inch Negatives, A-Gran, Bushony, Patricia,undated + + + + + + 4 + 216 + 3.5 x 4.5 inch Negatives, A-Gran, Bushony, Shirley,undated + + + + + + 4 + 217 + 3.5 x 4.5 inch Negatives, A-Gran, Burton, Seaver (Mrs.) - I.D.,undated + + + + + + 4 + 218 + 3.5 x 4.5 inch Negatives, A-Gran, Byard, Jerry,undated + + + + + + 4 + 219 + 3.5 x 4.5 inch Negatives, A-Gran, Byrd, Paulette - 8-week-old Girl, 4.5-months-old,undated + + + + + + 4 + 220 + 3.5 x 4.5 inch Negatives, A-Gran, Byrd, Pauline - 13-month-old,July 20, 1965 + + + + + + 4 + 221 + 3.5 x 4.5 inch Negatives, A-Gran, Byrd, Pauline - 2-year-old,June 11, 1966 + + + + + + 4 + 222 + 3.5 x 4.5 inch Negatives, A-Gran, Cairns, Donald - I.D.,undated + + + + + + 4 + 223 + 3.5 x 4.5 inch Negatives, A-Gran, Calkins, Ilene - I.D.,undated + + + + + + 4 + 224 + 3.5 x 4.5 inch Negatives, A-Gran, Calkins, Wm. and Wife,undated + + + + + + 4 + 225 + 3.5 x 4.5 inch Negatives, A-Gran, Cameron (For Glossy Pt.),undated + + + + + + 4 + 226 + 3.5 x 4.5 inch Negatives, A-Gran, Campbell, Beverly,1951 + + + + + + 4 + 227 + 3.5 x 4.5 inch Negatives, A-Gran, Campbell, Beverly,1954 + + + + + + 4 + 228 + 3.5 x 4.5 inch Negatives, A-Gran, Campbell, Connie,undated + + + + + + 4 + 229 + 3.5 x 4.5 inch Negatives, A-Gran, Campbell, Freda - I.D.,undated + + + + + + 4 + 230 + 3.5 x 4.5 inch Negatives, A-Gran, Campbell, Hugh (at Bell Parks Beer Joint),undated + + + + + + 4 + 231 + 3.5 x 4.5 inch Negatives, A-Gran, Campbell, J.H. - Copy,June 10, 1968 + + + + + + 4 + 232 + 3.5 x 4.5 inch Negatives, A-Gran, Campbell, Laura,undated + + + + + + 4 + 233 + 3.5 x 4.5 inch Negatives, A-Gran, Campbell, Robt.,undated + + + + + + 4 + 234 + 3.5 x 4.5 inch Negatives, A-Gran, Campbell, Robt. - Baby Boy,undated + + + + + + 4 + 235 + 3.5 x 4.5 inch Negatives, A-Gran, Campbell, Shirley,undated + + + + + + 4 + 236 + 3.5 x 4.5 inch Negatives, A-Gran, Campbell, Willard,undated + + + + + + 4 + 237 + 3.5 x 4.5 inch Negatives, A-Gran, Canute, Clair - 9-month-old,undated + + + + + + 4 + 238 + 3.5 x 4.5 inch Negatives, A-Gran, Carey, Ed and Wife - Passport,undated + + + + + + 4 + 239 + 3.5 x 4.5 inch Negatives, A-Gran, Carey, Margaret - I.D.,undated + + + + + + 4 + 240 + 3.5 x 4.5 inch Negatives, A-Gran, Carey, Richard - 4-year-old,undated + + + + + + 4 + 241 + 3.5 x 4.5 inch Negatives, A-Gran, Carmichael, Duncan and Wife,undated + + + + + + 4 + 242 + 3.5 x 4.5 inch Negatives, A-Gran, Carr, Guy (Mrs.),November 5, 1966 + + + + + + 4 + 243 + 3.5 x 4.5 inch Negatives, A-Gran, Carr, Guy,undated + + + + + + 4 + 244 + 3.5 x 4.5 inch Negatives, A-Gran, Carr, Leslie - Baby Boy,undated + + + + + + 4 + 245 + 3.5 x 4.5 inch Negatives, A-Gran, Carr, Leslie - Boy,undated + + + + + + 4 + 246 + 3.5 x 4.5 inch Negatives, A-Gran, Carrick, James - Copy,undated + + + + + + 4 + 247 + 3.5 x 4.5 inch Negatives, A-Gran, Carrick, Janet,undated + + + + + + 4 + 248 + 3.5 x 4.5 inch Negatives, A-Gran, Carrick, Verna - I.D.,undated + + + + + + 4 + 249 + 3.5 x 4.5 inch Negatives, A-Gran, Carser, Jackson Rex - Copy,undated + + + + + + + 4 + 250 + 3.5 x 4.5 inch Negatives, A-Gran, Carson, Bonnie (Mrs.) - 4-month-old and 2-year-old,September 23,1967 + + + + + + 4 + 251 + 3.5 x 4.5 inch Negatives, A-Gran, Carter, Donald - I.D.,undated + + + + + + 4 + 252 + 3.5 x 4.5 inch Negatives, A-Gran, Cascarelli, Sam - Copy,undated + + + + + + 4 + 253 + 3.5 x 4.5 inch Negatives, A-Gran, Casford, Harry - Copy,undated + + + + + + 4 + 254 + 3.5 x 4.5 inch Negatives, A-Gran, Cashen, Geo.,undated + + + + + + 4 + 255 + 3.5 x 4.5 inch Negatives, A-Gran, Cashen, Leo,undated + + + + + + 4 + 256 + 3.5 x 4.5 inch Negatives, A-Gran, Cashen, Mary Jean,undated + + + + + + 4 + 257 + 3.5 x 4.5 inch Negatives, A-Gran, Casner, Mary Lou,undated + + + + + + 4 + 258 + 3.5 x 4.5 inch Negatives, A-Gran, Cassidy, Bob,undated + + + + + + 4 + 259 + 3.5 x 4.5 inch Negatives, A-Gran, Caswell, Gorden,undated + + + + + + 4 + 260 + 3.5 x 4.5 inch Negatives, A-Gran, Caulkins, Nelson (Mrs.),undated + + + + + + 4 + 261 + 3.5 x 4.5 inch Negatives, A-Gran, Chaffee, Don - 1-year-old Girl,undated + + + + + + 4 + 262 + 3.5 x 4.5 inch Negatives, A-Gran, Chalmers, Richard and Ken,undated + + + + + + 4 + 263 + 3.5 x 4.5 inch Negatives, A-Gran, Chamberlain, [no first name] - Copy,undated + + + + + + 4 + 264 + 3.5 x 4.5 inch Negatives, A-Gran, Chamberlain, Dr. Ray,July 12, 1968 + + + + + + 4 + 265 + 3.5 x 4.5 inch Negatives, A-Gran, Chapman, Duane - I.D.,undated + + + + + + 4 + 266 + 3.5 x 4.5 inch Negatives, A-Gran, Chapman, Frances - I.D.,undated + + + + + + 4 + 267 + 3.5 x 4.5 inch Negatives, A-Gran, Charropin, Clara (Mrs.) - I.D.,undated + + + + + + 4 + 268 + 3.5 x 4.5 inch Negatives, A-Gran, Chase, Cliff - Copy,undated + + + + + + 4 + 269 + 3.5 x 4.5 inch Negatives, A-Gran, Chase, Fanny,undated + + + + + + 4 + 270 + 3.5 x 4.5 inch Negatives, A-Gran, Child Guidance Clinic, a Man,January 15, 1965 + + + + + + 4 + 271 + 3.5 x 4.5 inch Negatives, A-Gran, Child Guidance Clinic, a Woman,January 15, 1965 + + + + + + 4 + 272 + 3.5 x 4.5 inch Negatives, A-Gran, Christenson, Gale - Copy,undated + + + + + + 4 + 273 + 3.5 x 4.5 inch Negatives, A-Gran, Christmas 1939, Francisco Family,Christmas 1939 + + + + + + 4 + 274 + 3.5 x 4.5 inch Negatives, A-Gran, Clare, Cecil,October 15, 1965 + + + + + + 4 + 275 + 3.5 x 4.5 inch Negatives, A-Gran, Clare, Cecil, 7-month-old Son, Mark,1956 + + + + + + 4 + 276 + 3.5 x 4.5 inch Negatives, A-Gran, Clare, Cecil, 1st Communion, Mary Anne,undated + + + + + + 4 + 277 + 3.5 x 4.5 inch Negatives, A-Gran, Clare, Cecil, 1st Communion, Mark,1963 + + + + + + 4 + 278 + 3.5 x 4.5 inch Negatives, A-Gran, Clare, Cecil, 1st Communion Boy, Bruce,undated + + + + + + 4 + 279 + 3.5 x 4.5 inch Negatives, A-Gran, Clare, Cecil, Baby, Mary Anne,undated + + + + + + 4 + 280 + 3.5 x 4.5 inch Negatives, A-Gran, Clare, Cecil, Baby, Bruce,undated + + + + + + 4 + 281 + 3.5 x 4.5 inch Negatives, A-Gran, Clark, Esther F.,undated + + + + + + 4 + 282 + 3.5 x 4.5 inch Negatives, A-Gran, Clark, Paul,undated + + + + + + 4 + 283 + 3.5 x 4.5 inch Negatives, A-Gran, Cline Advertising Agency,undated + + + + + + 4 + 284 + 3.5 x 4.5 inch Negatives, A-Gran, Cline, Roy,undated + + + + + + 4 + 285 + 3.5 x 4.5 inch Negatives, A-Gran, Cluley, Wallace,undated + + + + + + 4 + 286 + 3.5 x 4.5 inch Negatives, A-Gran, Coady, James - 1-year-old Boy,undated + + + + + + 4 + 287 + 3.5 x 4.5 inch Negatives, A-Gran, Cochran, Gary,undated + + + + + + 4 + 288 + 3.5 x 4.5 inch Negatives, A-Gran, Cochran, Joe, Academy Senior (2 envelopes),September 29,1962 + + + + + + 4 + 289 + 3.5 x 4.5 inch Negatives, A-Gran, Code, Harvey - I.D.,undated + + + + + + 4 + 290 + 3.5 x 4.5 inch Negatives, A-Gran, Coellner, Elaine,undated + + + + + + 4 + 291 + 3.5 x 4.5 inch Negatives, A-Gran, Coffell, Dennis -I.D.,undated + + + + + + 4 + 292 + 3.5 x 4.5 inch Negatives, A-Gran, Cole, James (Mrs.),undated + + + + + + 4 + 293 + 3.5 x 4.5 inch Negatives, A-Gran, Colias, Peter - Copy of Honorable Discharge from the U.S. Navy,January 28, 1948 + + + + + + 4 + 294 + 3.5 x 4.5 inch Negatives, A-Gran, Collins, Cliff,undated + + + + + + 4 + 295 + 3.5 x 4.5 inch Negatives, A-Gran, Collins, Mary,August 29, 1960 + + + + + + 4 + 296 + 3.5 x 4.5 inch Negatives, A-Gran, Collins, Ron - I.D.,undated + + + + + + 4 + 297 + 3.5 x 4.5 inch Negatives, A-Gran, Conley, Otis,undated + + + + + + 4 + 298 + 3.5 x 4.5 inch Negatives, A-Gran, Conley, Veda,undated + + + + + + 4 + 299 + 3.5 x 4.5 inch Negatives, A-Gran, Conners, Bob - Wedding,undated + + + + + + 4 + 300 + 3.5 x 4.5 inch Negatives, A-Gran, Conners, Connie,undated + + + + + + 4 + 301 + 3.5 x 4.5 inch Negatives, A-Gran, Conners, Jim - Baby Boy,undated + + + + + + 4 + 302 + 3.5 x 4.5 inch Negatives, A-Gran, Conners, Tom - Certificate of Marriage,undated + + + + + + 4 + 303 + 3.5 x 4.5 inch Negatives, A-Gran, Conrad, Joanne,June 11, 1969 + + + + + + 4 + 304 + 3.5 x 4.5 inch Negatives, A-Gran, Cook, Bob - I.D.,undated + + + + + + 4 + 305 + 3.5 x 4.5 inch Negatives, A-Gran, Cook, Steve,undated + + + + + + 4 + 306 + 3.5 x 4.5 inch Negatives, A-Gran, Cook, Theo - Girl,undated + + + + + + 4 + 307 + 3.5 x 4.5 inch Negatives, A-Gran, Cook, Theo - Baby Girl,undated + + + + + + 4 + 308 + 3.5 x 4.5 inch Negatives, A-Gran, Cook, Theo - 3-month-old,undated + + + + + + 4 + 309 + 3.5 x 4.5 inch Negatives, A-Gran, Cooley, Dick (Mrs.),undated + + + + + + 4 + 310 + 3.5 x 4.5 inch Negatives, A-Gran, Cooley, Elaine,undated + + + + + + 4 + 311 + 3.5 x 4.5 inch Negatives, A-Gran, Cooley, Pauline,undated + + + + + + 4 + 312 + 3.5 x 4.5 inch Negatives, A-Gran, Coon, Mrs. - Copy,undated + + + + + + 4 + 313 + 3.5 x 4.5 inch Negatives, A-Gran, Cooper, Art,undated + + + + + + 4 + 314 + 3.5 x 4.5 inch Negatives, A-Gran, Cooper, Mary - Copy 2,undated + + + + + + 4 + 315 + 3.5 x 4.5 inch Negatives, A-Gran, Coppins, Elmer and Wife,undated + + + + + + 4 + 316 + 3.5 x 4.5 inch Negatives, A-Gran, Coppins, Elmer - Son,undated + + + + + + 4 + 317 + 3.5 x 4.5 inch Negatives, A-Gran, Coquillard, Mike,undated + + + + + + 4 + 318 + 3.5 x 4.5 inch Negatives, A-Gran, Corcoran, Fred,June 20, 1966 + + + + + + 4 + 319 + 3.5 x 4.5 inch Negatives, A-Gran, Corcoran, Fred - Copy,undated + + + + + + 4 + 320 + 3.5 x 4.5 inch Negatives, A-Gran, Corcoran, Jim,undated + + + + + + 4 + 321 + 3.5 x 4.5 inch Negatives, A-Gran, Cornell, Verna - I.D.,undated + + + + + + 4 + 322 + 3.5 x 4.5 inch Negatives, A-Gran, Corsett, Russell,April 26, 1964 + + + + + + 4 + 323 + 3.5 x 4.5 inch Negatives, A-Gran, Costello, Delores,undated + + + + + + 4 + 324 + 3.5 x 4.5 inch Negatives, A-Gran, Cotsman, John - Baby Girl,undated + + + + + + 4 + 325 + 3.5 x 4.5 inch Negatives, A-Gran, Cotter, Bev,undated + + + + + + 4 + 326 + 3.5 x 4.5 inch Negatives, A-Gran, Cotter, Noel,undated + + + + + + 4 + 327 + 3.5 x 4.5 inch Negatives, A-Gran, Cotton, Robert J. - I.D. - Copy,undated + + + + + 4 + 328 + 3.5 x 4.5 inch Negatives, A-Gran, Coughlin, Theresa - Copy of Ronald, Jr.,July 1, 1966 + + + + + 4 + 329 + 3.5 x 4.5 inch Negatives, A-Gran, Courser, Edwin - Baby,Christmas 1948 + + + + + 4 + 330 + 3.5 x 4.5 inch Negatives, A-Gran, Courtright, Val - Baby Girl,undated + + + + + 4 + 331 + 3.5 x 4.5 inch Negatives, A-Gran, Cowden, Kenneth,undated + + + + + + 4 + 332 + 3.5 x 4.5 inch Negatives, A-Gran, Cowiser, Ed and Wife,December 14, 1966 + + + + + + 4 + 333 + 3.5 x 4.5 inch Negatives, A-Gran, Cox, Eli,undated + + + + + + 4 + 334 + 3.5 x 4.5 inch Negatives, A-Gran, Cox, G.J.,undated + + + + + + 4 + 335 + 3.5 x 4.5 inch Negatives,3A-Gran, Coyne, Daniel G. - I.D.,undated + + + + + + 4 + 336 + 3.5 x 4.5 inch Negatives, A-Gran, Cozat, Bonnie - I.D.,undated + + + + + + 4 + 337 + 3.5 x 4.5 inch Negatives, A-Gran, Craig, Clara L. - I.D.,July 7, 1959 + + + + + + 4 + 338 + 3.5 x 4.5 inch Negatives, A-Gran, Crampton [no first name],undated + + + + + + 4 + 339 + 3.5 x 4.5 inch Negatives, A-Gran, Crampton, Edwin,undated + + + + + + 4 + 340 + 3.5 x 4.5 inch Negatives, A-Gran, Crane, Doris,undated + + + + + + 4 + 341 + 3.5 x 4.5 inch Negatives, A-Gran, Crane, Emmitt,undated + + + + + + 4 + 342 + 3.5 x 4.5 inch Negatives, A-Gran, Crane, G. (Mrs.),undated + + + + + + 4 + 343 + 3.5 x 4.5 inch Negatives, A-Gran, Crane, Lloyd - Baby Girl,undated + + + + + + 4 + 344 + 3.5 x 4.5 inch Negatives, A-Gran, Crane, Lloyd - Wedding,undated + + + + + + 4 + 345 + 3.5 x 4.5 inch Negatives, A-Gran, Crane, Pat - H.S.,undated + + + + + + 4 + 346 + 3.5 x 4.5 inch Negatives, A-Gran, Crape, Robert,undated + + + + + + + 4 + 347 + 3.5 x 4.5 inch Negatives, A-Gran, Crapo, Ralph - Copy of Building,undated + + + + + + 4 + 348 + 3.5 x 4.5 inch Negatives, A-Gran, Crawford, Elmer,undated + + + + + + 4 + 349 + 3.5 x 4.5 inch Negatives, A-Gran, Crawford, Lea (Raseler),undated + + + + + + 4 + 350 + 3.5 x 4.5 inch Negatives, A-Gran, Crowley, Dorothea - I.D. - Copy,undated + + + + + + 4 + 351 + 3.5 x 4.5 inch Negatives, A-Gran, Crowley, Jim,undated + + + + + + + 4 + 352 + 3.5 x 4.5 inch Negatives, A-Gran, Cruz, James, Jr., Mrs. - Copy,undated + + + + + + 4 + 353 + 3.5 x 4.5 inch Negatives, A-Gran, Curtis, Delores,undated + + + + + + 4 + 354 + 3.5 x 4.5 inch Negatives, A-Gran, Curtis, S.L.,undated + + + + + + 4 + 355 + 3.5 x 4.5 inch Negatives, A-Gran, Curtis, Stou and Wife,undated + + + + + + 4 + 356 + 3.5 x 4.5 inch Negatives, A-Gran, Curtiss, Glenn - Moose Lodge,April 4, 1969 + + + + + + 4 + 357 + 3.5 x 4.5 inch Negatives, A-Gran, Curtiss, Richard - Honorable Discharge,undated + + + + + + 4 + 358 + 3.5 x 4.5 inch Negatives, A-Gran, Cutler, Chas. - 9-month-old,December 16, 1967 + + + + + + 4 + 359 + 3.5 x 4.5 inch Negatives, A-Gran, Dad's Funeral - Francisco,undated + + + + + + 4 + 360 + 3.5 x 4.5 inch Negatives, A-Gran, Dad's Funeral - Francisco - Old Man,undated + + + + + + 4 + 361 + 3.5 x 4.5 inch Negatives, A-Gran, Dad's Funeral - Funeral Home - Francisco,undated + + + + + + 4 + 362 + 3.5 x 4.5 inch Negatives, A-Gran, Dad's Funeral - Francisco - 2 Men,undated + + + + + + 4 + 363 + 3.5 x 4.5 inch Negatives, A-Gran, Dale, R. E. - I.D.,undated + + + + + + 4 + 364 + 3.5 x 4.5 inch Negatives, A-Gran, Daley, Diane,undated + + + + + + 4 + 365 + 3.5 x 4.5 inch Negatives, A-Gran, Daley, Pat,undated + + + + + + 4 + 366 + 3.5 x 4.5 inch Negatives, A-Gran, Dalrymple, Bill,April 4, 1969 + + + + + + + 4 + 367 + 3.5 x 4.5 inch Negatives, A-Gran, Dammeyer, Karen,undated + + + + + + 4 + 368 + 3.5 x 4.5 inch Negatives, A-Gran, Dana, Enid,August 1, 1967 + + + + + + 4 + 369 + 3.5 x 4.5 inch Negatives, A-Gran, Danley, Dave,undated + + + + + + 4 + 370 + 3.5 x 4.5 inch Negatives, A-Gran, Dargity, Darlene - I.D.,undated + + + + + + 4 + 371 + 3.5 x 4.5 inch Negatives, A-Gran, Darnell, Floyd,undated + + + + + + 4 + 372 + 3.5 x 4.5 inch Negatives, A-Gran, Darrow, Matthew - Couple,February 25, 1967 + + + + + + 4 + 373 + 3.5 x 4.5 inch Negatives, A-Gran, Dart, Ross - Baby Girl,undated + + + + + + 4 + 374 + 3.5 x 4.5 inch Negatives, A-Gran, Davenport, Sharon,undated + + + + + + 4 + 375 + 3.5 x 4.5 inch Negatives, A-Gran, David, Geraldine - Cap and Gown,undated + + + + + + 4 + 376 + 3.5 x 4.5 inch Negatives, A-Gran, David, Robert,undated + + + + + + 4 + 377 + 3.5 x 4.5 inch Negatives, A-Gran, Davis, Cletus,undated + + + + + + 4 + 378 + 3.5 x 4.5 inch Negatives, A-Gran, Davis, Florence,undated + + + + + + 4 + 379 + 3.5 x 4.5 inch Negatives, A-Gran, Davis, Glen (Mrs.),undated + + + + + + 4 + 380 + 3.5 x 4.5 inch Negatives, A-Gran, Davis, Gordon,undated + + + + + + 4 + 381 + 3.5 x 4.5 inch Negatives, A-Gran, Davis, John,undated + + + + + + 4 + 382 + 3.5 x 4.5 inch Negatives, A-Gran, Davis, Lawrence (Mrs.) - Copy,undated + + + + + + 4 + 383 + 3.5 x 4.5 inch Negatives, A-Gran, Davis, Norma,undated + + + + + + 4 + 384 + 3.5 x 4.5 inch Negatives, A-Gran, Davis, Okla - I.D.,undated + + + + + + 4 + 385 + 3.5 x 4.5 inch Negatives, A-Gran, Dawson, Bob - I.D.,undated + + + + + + 4 + 386 + 3.5 x 4.5 inch Negatives, A-Gran, Dawson, J.,undated + + + + + + 4 + 387 + 3.5 x 4.5 inch Negatives, A-Gran, Day, W.S. (Mrs.),undated + + + + + + 4 + 388 + 3.5 x 4.5 inch Negatives, A-Gran, Dean, Zula (Mrs.) - Copy,undated + + + + + + 4 + 389 + 3.5 x 4.5 inch Negatives, A-Gran, DeBelle, M.H.,undated + + + + + + 4 + 390 + 3.5 x 4.5 inch Negatives, A-Gran, Decess, Homer,undated + + + + + + 4 + 391 + 3.5 x 4.5 inch Negatives, A-Gran, Decker, Geo. and Wife,April 5, 1969 + + + + + + 4 + 392 + 3.5 x 4.5 inch Negatives, A-Gran, Decker, Glenn E. - Copy of Birth Registration for Lorraine Blanche Decker,undated + + + + + + 4 + 393 + 3.5 x 4.5 inch Negatives, A-Gran, Deer Hunter,1939 + + + + + + 4 + 394 + 3.5 x 4.5 inch Negatives, A-Gran, Deer Hunting - Harrison and Rocky,1941 + + + + + + 4 + 395 + 3.5 x 4.5 inch Negatives, A-Gran, Deer Hunting,1949 + + + + + + 4 + 396 + 3.5 x 4.5 inch Negatives, A-Gran, DeFay,James,undated + + + + + + 4 + 397 + 3.5 x 4.5 inch Negatives, A-Gran, Degard, Cy and Wife,undated + + + + + + 4 + 398 + 3.5 x 4.5 inch Negatives, A-Gran, DeGrand, Madelin (Mrs.),undated + + + + + + 4 + 399 + 3.5 x 4.5 inch Negatives, A-Gran, Dehn, Douglas,June 28, 1968 + + + + + + 4 + 400 + 3.5 x 4.5 inch Negatives, A-Gran, Deibel, Florence (Mrs.),undated + + + + + + + 4 + 401 + 3.5 x 4.5 inch Negatives, A-Gran, Deihl, Ed - Copy of Soldier,undated + + + + + + 4 + 402 + 3.5 x 4.5 inch Negatives, A-Gran, Deihl, Ed and Wife,undated + + + + + + 4 + 403 + 3.5 x 4.5 inch Negatives, A-Gran, Deihl, Gertrude (Mrs.),undated + + + + + + 4 + 404 + 3.5 x 4.5 inch Negatives, A-Gran, Delick, Mike - I.D.,undated + + + + + + 4 + 405 + 3.5 x 4.5 inch Negatives, A-Gran, Dell, Barbara,March 28, 1960 + + + + + + 4 + 406 + 3.5 x 4.5 inch Negatives, A-Gran, Dell, Ernest,undated + + + + + + 4 + 407 + 3.5 x 4.5 inch Negatives, A-Gran, Delo, A.E.,undated + + + + + + 4 + 408 + 3.5 x 4.5 inch Negatives, A-Gran, Delong, Barbara - 5.5-month-old Girl,August 4, 1962 + + + + + + 4 + 409 + 3.5 x 4.5 inch Negatives, A-Gran, Delong, Carol,undated + + + + + + 4 + 410 + 3.5 x 4.5 inch Negatives, A-Gran, Delong, Nola,undated + + + + + + 4 + 411 + 3.5 x 4.5 inch Negatives, A-Gran, Delong, Walt - Copy,undated + + + + + + 4 + 412 + 3.5 x 4.5 inch Negatives, A-Gran, Demis, Tom,undated + + + + + + 4 + 413 + 3.5 x 4.5 inch Negatives, A-Gran, Demlow, Ronald,October 7, 1968 + + + + + + 4 + 414 + 3.5 x 4.5 inch Negatives, A-Gran, DeMoines, David - Couple,undated + + + + + + 4 + 415 + 3.5 x 4.5 inch Negatives, A-Gran, DeMoines, David - Wife,undated + + + + + + 4 + 416 + 3.5 x 4.5 inch Negatives, A-Gran, Demski, George,undated + + + + + + 4 + 417 + 3.5 x 4.5 inch Negatives, A-Gran, Demski, Rose,undated + + + + + + 4 + 418 + 3.5 x 4.5 inch Negatives, A-Gran, Deni, Luige,undated + + + + + + 4 + 419 + 3.5 x 4.5 inch Negatives, A-Gran, Dennis, Shirley,October 7, 1966 + + + + + + 4 + 420 + 3.5 x 4.5 inch Negatives, A-Gran, Denslow, Glee - I.D.,July 7, 1959 + + + + + + 4 + 421 + 3.5 x 4.5 inch Negatives, A-Gran, Denslow, L.,undated + + + + + + 4 + 422 + 3.5 x 4.5 inch Negatives, A-Gran, Dent, Gerald,undated + + + + + + 4 + 423 + 3.5 x 4.5 inch Negatives, A-Gran, Dent, Mabel,March 28, 1960 + + + + + + 4 + 424 + 3.5 x 4.5 inch Negatives, A-Gran, Dent, Rodney,undated + + + + + + 4 + 425 + 3.5 x 4.5 inch Negatives, A-Gran, Derry, Jack,undated + + + + + + 4 + 426 + 3.5 x 4.5 inch Negatives, A-Gran, Desormes, Robert - Wife - I.D.,undated + + + + + + 4 + 427 + 3.5 x 4.5 inch Negatives, A-Gran, Detiviler, Garold,undated + + + + + + 4 + 428 + 3.5 x 4.5 inch Negatives, A-Gran, Detiviler, Garold - Baby Girl,undated + + + + + + 4 + 429 + 3.5 x 4.5 inch Negatives, A-Gran, Detiviler, Garold, Sir.undated + + + + + + 4 + 430 + 3.5 x 4.5 inch Negatives, A-Gran, Detiviler, Garold - 5- and 7- year-old girls,undated + + + + + + 4 + 431 + 3.5 x 4.5 inch Negatives, A-Gran, DeVaney, F. and Wife,October 10, 1968 + + + + + + 4 + 432 + 3.5 x 4.5 inch Negatives, A-Gran, Dexter, [no first name] (Mrs.) - Copy,undated + + + + + + 4 + 433 + 3.5 x 4.5 inch Negatives, A-Gran, Diamond, Wm., Dr.,November 25, 1968 + + + + + + 4 + 434 + 3.5 x 4.5 inch Negatives, A-Gran, Dibble, Danny - I.D.,undated + + + + + + 4 + 435 + 3.5 x 4.5 inch Negatives, A-Gran, Dibble, John - Copy,undated + + + + + + 4 + 436 + 3.5 x 4.5 inch Negatives, A-Gran, Dibble, Tom,Decmeber 27, 1966 + + + + + + 4 + 437 + 3.5 x 4.5 inch Negatives, A-Gran, Dibble, Tonnie,undated + + + + + + 4 + 438 + 3.5 x 4.5 inch Negatives, A-Gran, Dickinson, Terry and Wife,undated + + + + + + 4 + 439 + 3.5 x 4.5 inch Negatives, A-Gran, Dierkes, N. - 6-month-old,undated + + + + + + 4 + 440 + 3.5 x 4.5 inch Negatives, A-Gran, Dingman, Howard (Mr.) - Copy,undated + + + + + + 4 + 441 + 3.5 x 4.5 inch Negatives, A-Gran, Dingman, Lois,undated + + + + + + 4 + 442 + 3.5 x 4.5 inch Negatives, A-Gran, Doebring, Ed,undated + + + + + + 4 + 443 + 3.5 x 4.5 inch Negatives, A-Gran, Doerfer, Eldon - Wedding,undated + + + + + + 4 + 444 + 3.5 x 4.5 inch Negatives, A-Gran, Doerfer, Ellen,undated + + + + + + 4 + 445 + 3.5 x 4.5 inch Negatives, A-Gran, Doerfer, Violet,undated + + + + + + 4 + 446 + 3.5 x 4.5 inch Negatives, A-Gran, Doherty, Erma - Copy,undated + + + + + + 4 + 447 + 3.5 x 4.5 inch Negatives, A-Gran, Doherty, Leo F.,undated + + + + + + 4 + 448 + 3.5 x 4.5 inch Negatives, A-Gran, Don, Stanley - I.D.,undated + + + + + + 4 + 449 + 3.5 x 4.5 inch Negatives, A-Gran, Donahue, Glen - Twin to Corcoran, Pat,undated + + + + + + 4 + 450 + 3.5 x 4.5 inch Negatives, A-Gran, Donald, Bertha - Cap and Gown,undated + + + + + + 4 + 451 + 3.5 x 4.5 inch Negatives, A-Gran, Donald, E.P. (Mrs.) - I.D.,undated + + + + + + 4 + 452 + 3.5 x 4.5 inch Negatives, A-Gran, Donald, John,undated + + + + + + 4 + 453 + 3.5 x 4.5 inch Negatives, A-Gran, Donald, Loretta,undated + + + + + + 4 + 454 + 3.5 x 4.5 inch Negatives, A-Gran, Doty, B.L.,undated + + + + + + 4 + 455 + 3.5 x 4.5 inch Negatives, A-Gran, Dowell, Al - H.S.,undated + + + + + + 4 + 456 + 3.5 x 4.5 inch Negatives, A-Gran, Dowell, Dick,undated + + + + + + 4 + 457 + 3.5 x 4.5 inch Negatives, A-Gran, Dowell, Jason,undated + + + + + + 4 + 458 + 3.5 x 4.5 inch Negatives, A-Gran, Dowell, Ray - H.S.,undated + + + + + + 4 + 459 + 3.5 x 4.5 inch Negatives, A-Gran, Draper, Rosie Fairchild,undated + + + + + + 4 + 460 + 3.5 x 4.5 inch Negatives, A-Gran, Dressler, Jeanne - I.D.,undated + + + + + + 4 + 461 + 3.5 x 4.5 inch Negatives, A-Gran, Duddles, Jim,undated + + + + + + 4 + 462 + 3.5 x 4.5 inch Negatives, A-Gran, Duddles, Linda,undated + + + + + + 4 + 463 + 3.5 x 4.5 inch Negatives, A-Gran, Duguay, Mary Edama,undated + + + + + + 4 + 464 + 3.5 x 4.5 inch Negatives, A-Gran, DuLai, Ivan,undated + + + + + + 4 + 465 + 3.5 x 4.5 inch Negatives, A-Gran, Durfee, Art,July 26, 1969 + + + + + + 4 + 466 + 3.5 x 4.5 inch Negatives, A-Gran, Durham, Rollie,undated + + + + + + 4 + 467 + 3.5 x 4.5 inch Negatives, A-Gran, Earl's Funeral,undated + + + + + + 4 + 468 + 3.5 x 4.5 inch Negatives, A-Gran, Earl, Don,undated + + + + + + 4 + 469 + 3.5 x 4.5 inch Negatives, A-Gran, Earl, Richard - Copy,undated + + + + + + 4 + 470 + 3.5 x 4.5 inch Negatives, A-Gran, Earns, Harry,undated + + + + + + 4 + 471 + 3.5 x 4.5 inch Negatives, A-Gran, Ebuilt, Ilah - I.D.,undated + + + + + + 4 + 472 + 3.5 x 4.5 inch Negatives, A-Gran, Ebuit, Sharlene - I.D.,undated + + + + + + 4 + 473 + 3.5 x 4.5 inch Negatives, A-Gran, Eckert, Martha - I.D.,undated + + + + + + 4 + 474 + 3.5 x 4.5 inch Negatives, A-Gran, Eckert, Roberta,undated + + + + + + 4 + 475 + 3.5 x 4.5 inch Negatives, A-Gran, Economan, Wm. - two girls,undated + + + + + + 4 + 476 + 3.5 x 4.5 inch Negatives, A-Gran, Edmonds, Robert- Copy,undated + + + + + + 4 + 477 + 3.5 x 4.5 inch Negatives, A-Gran, Egbert, C.E.,undated + + + + + + 4 + 478 + 3.5 x 4.5 inch Negatives, A-Gran, Ege, Anthony and Wife,undated + + + + + + 4 + 479 + 3.5 x 4.5 inch Negatives, A-Gran, Ege, Joanne,undated + + + + + + 4 + 480 + 3.5 x 4.5 inch Negatives, A-Gran, Ehle, Thelma - H.S.,undated + + + + + + 4 + 481 + 3.5 x 4.5 inch Negatives, A-Gran, Eismann, Nancy,1961 + + + + + + 4 + 482 + 3.5 x 4.5 inch Negatives, A-Gran, Eismann, Nancy - High School, Engagement,undated + + + + + + 4 + 483 + 3.5 x 4.5 inch Negatives, A-Gran, Eismann, Nancy - Vic Copy,undated + + + + + + 4 + 484 + 3.5 x 4.5 inch Negatives, A-Gran, Eismann, Vic - Copy,undated + + + + + + 4 + 485 + 3.5 x 4.5 inch Negatives, A-Gran, Eldred, Gladys, M. - I.D.,July 7, 1959 + + + + + + 4 + 486 + 3.5 x 4.5 inch Negatives, A-Gran, Elliot, Lanson - couple,undated + + + + + + 4 + 487 + 3.5 x 4.5 inch Negatives, A-Gran, Elliott, Ken - Moose Lodge,undated + + + + + + 4 + 488 + 3.5 x 4.5 inch Negatives, A-Gran, Elliott, Robert - 2-year-old,undated + + + + + + 4 + 489 + 3.5 x 4.5 inch Negatives, A-Gran, Elliott, Warren,undated + + + + + + + 4 + 490 + 3.5 x 4.5 inch Negatives, A-Gran, Ellis, Fern E.,July 7, 1959 + + + + + + 4 + 491 + 3.5 x 4.5 inch Negatives, A-Gran, Ellison, Roy,undated + + + + + + + 4 + 492 + 3.5 x 4.5 inch Negatives, A-Gran, Emory, Marjorie - Baby,undated + + + + + + 4 + 493 + 3.5 x 4.5 inch Negatives, A-Gran, Emory, Marjory,undated + + + + + + 4 + 494 + 3.5 x 4.5 inch Negatives, A-Gran, Endres, Gladys Copy,undated + + + + + + + 4 + 495 + 3.5 x 4.5 inch Negatives, A-Gran, Engelhardt, Devere,August 24, 1965 + + + + + + 4 + 496 + 3.5 x 4.5 inch Negatives, A-Gran, Engler, John (Mrs.) - Copy,undated + + + + + + 4 + 497 + 3.5 x 4.5 inch Negatives, A-Gran, Engler, Matt (Mrs.),undated + + + + + + 4 + 498 + 3.5 x 4.5 inch Negatives, A-Gran, English, Duane - I.D.,undated + + + + + + 4 + 499 + 3.5 x 4.5 inch Negatives, A-Gran, Epple, Dolores Pohl,undated + + + + + + 4 + 500 + 3.5 x 4.5 inch Negatives, A-Gran, Epple, Ed,undated + + + + + + 4 + 501 + 3.5 x 4.5 inch Negatives, A-Gran, Epple, Jim,undated + + + + + + 4 + 502 + 3.5 x 4.5 inch Negatives, A-Gran, Ercole, Noble,undated + + + + + + 4 + 503 + + 3.5 x 4.5 inch Negatives, A-Gran, Ervans, Eugene,undated + + + + + + 4 + 504 + 3.5 x 4.5 inch Negatives, A-Gran, Ervin, Effie,undated + + + + + + + 4 + 505 + 3.5 x 4.5 inch Negatives, A-Gran, Ervin, Larry,undated + + + + + + 4 + 506 + 3.5 x 4.5 inch Negatives, A-Gran, Ervin, Robt.,July 29, 1960 + + + + + + 4 + 507 + 3.5 x 4.5 inch Negatives, A-Gran, Erwin, Ronald,undated + + + + + + 4 + 508 + 3.5 x 4.5 inch Negatives, A-Gran, Esch, Delton,undated + + + + + + 4 + 509 + 3.5 x 4.5 inch Negatives, A-Gran, Esch, Lewis - Copy,undated + + + + + + 4 + 510 + 3.5 x 4.5 inch Negatives, A-Gran, Esch, Lewis and Wife,undated + + + + + + 4 + 511 + 3.5 x 4.5 inch Negatives, A-Gran, Esch, Lynn,undated + + + + + + 4 + 512 + 3.5 x 4.5 inch Negatives, A-Gran, Evans, L.,February 9, 1965 + + + + + + 4 + 513 + 3.5 x 4.5 inch Negatives, A-Gran, Faber, E.,undated + + + + + + 4 + 514 + 3.5 x 4.5 inch Negatives, A-Gran, Faber, Richard - 1-year-old,July 24, 1965 + + + + + + 4 + 515 + 3.5 x 4.5 inch Negatives, A-Gran, Faber, William and Wife,undated + + + + + + 4 + 516 + 3.5 x 4.5 inch Negatives, A-Gran, Fabiano, Erdine,undated + + + + + + 4 + 517 + 3.5 x 4.5 inch Negatives, A-Gran, Fabiano, Joe,undated + + + + + + 4 + 518 + 3.5 x 4.5 inch Negatives, A-Gran, Fair, Roland,undated + + + + + + 4 + 519 + 3.5 x 4.5 inch Negatives, A-Gran, Fair, Roy - Wedding (Myrtle Alexander),October 15, 1964 + + + + + + 4 + 520 + 3.5 x 4.5 inch Negatives, A-Gran, Fairchild, Vernon,undated + + + + + + 4 + 521 + 3.5 x 4.5 inch Negatives, A-Gran, Fallon, Mike,undated + + + + + + 4 + 522 + 3.5 x 4.5 inch Negatives, A-Gran, Fallon, Pete,undated + + + + + + 4 + 523 + 3.5 x 4.5 inch Negatives, A-Gran, Fallon, Tim,undated + + + + + + 4 + 524 + 3.5 x 4.5 inch Negatives, A-Gran, Falsetta, Sam,undated + + + + + + 4 + 525 + 3.5 x 4.5 inch Negatives, A-Gran, Farmer, J. - Baby Boy,undated + + + + + + 4 + 526 + 3.5 x 4.5 inch Negatives, A-Gran, Farnan, Gerald,undated + + + + + + 4 + 527 + 3.5 x 4.5 inch Negatives, A-Gran, Favreau, Sylvia,undated + + + + + + 4 + 528 + 3.5 x 4.5 inch Negatives, A-Gran, Fedewa, Ed. - 1st Communion - Girl,undated + + + + + + 4 + 529 + 3.5 x 4.5 inch Negatives, A-Gran, Fedewa, Ed. - 4 Children,undated + + + + + + 4 + 530 + 3.5 x 4.5 inch Negatives, A-Gran, Feltman, [no first name] - Copy of Family Group,undated + + + + + + 4 + 531 + 3.5 x 4.5 inch Negatives, A-Gran, Feltman, Martha,undated + + + + + + 4 + 532 + 3.5 x 4.5 inch Negatives, A-Gran, Feltman, Rose Marie,undated + + + + + + 4 + 533 + 3.5 x 4.5 inch Negatives, A-Gran, Ferris, Chas. - Mrs.,undated + + + + + + 4 + 534 + 3.5 x 4.5 inch Negatives, A-Gran, Ferris, Ed.,June 22, 1968 + + + + + + 4 + 535 + 3.5 x 4.5 inch Negatives, A-Gran, Ferrison, Audry,undated + + + + + + 4 + 536 + 3.5 x 4.5 inch Negatives, A-Gran, Fetterly, Dorothy,June 22, 1968 + + + + + + 4 + 537 + 3.5 x 4.5 inch Negatives, A-Gran, Filbin, John,undated + + + + + + 4 + 538 + 3.5 x 4.5 inch Negatives, A-Gran, Findley, Walt,undated + + + + + + 4 + 539 + 3.5 x 4.5 inch Negatives, A-Gran, Finnerty, Robert - 6-month-old,January 11, 1964 + + + + + + 4 + 540 + 3.5 x 4.5 inch Negatives, A-Gran, Finnerty, Robt. - 8-month-old Girl ,undated + + + + + + 4 + 541 + 3.5 x 4.5 inch Negatives, A-Gran, Finnerty, Robert (2),August 7, 1965, August 30, 1967 + + + + + + 4 + 542 + 3.5 x 4.5 inch Negatives, A-Gran, Finnerty, Robert. - 8-month-old,December 7, 1968 + + + + + + 4 + 543 + 3.5 x 4.5 inch Negatives, A-Gran, Finney, May - I.D.,undated + + + + + + 4 + 544 + 3.5 x 4.5 inch Negatives, A-Gran, Finney, Paul,undated + + + + + + 4 + 545 + 3.5 x 4.5 inch Negatives, A-Gran, Fish [a dead fish],1949 + + + + + + 4 + 546 + 3.5 x 4.5 inch Negatives, A-Gran, Fish, Chad - Mrs.,undated + + + + + + 4 + 547 + 3.5 x 4.5 inch Negatives, A-Gran, Fish, Eunice,undated + + + + + + 4 + 548 + 3.5 x 4.5 inch Negatives, A-Gran, Fish, Georgia - Copy,undated + + + + + + 4 + 549 + 3.5 x 4.5 inch Negatives, A-Gran, Fish, Joyce,July 7, 1959 + + + + + + 4 + 550 + 3.5 x 4.5 inch Negatives, A-Gran, Fish, Ray,undated + + + + + + 4 + 551 + 3.5 x 4.5 inch Negatives, A-Gran, Fisher, Helen - Copy,undated + + + + + + 4 + 552 + 3.5 x 4.5 inch Negatives, A-Gran, Fishing,undated + + + + + + 4 + 553 + 3.5 x 4.5 inch Negatives, A-Gran, Fishing - Three Men,May 1, 1938 + + + + + + 4 + 554 + 3.5 x 4.5 inch Negatives, A-Gran, Fishing Trip - Three Men,May 5, 1944 + + + + + + 4 + 555 + 3.5 x 4.5 inch Negatives, A-Gran, Fitzgerald, Ed - Mrs.,undated + + + + + + 4 + 556 + 3.5 x 4.5 inch Negatives, A-Gran, Fitzgerald, Floyd - 50th Anniversary,January 17, 1970 + + + + + + 4 + 557 + 3.5 x 4.5 inch Negatives, A-Gran, Fitzgibbons, Ellen,undated + + + + + + 4 + 558 + 3.5 x 4.5 inch Negatives, A-Gran, Fitzpatrick, Jim - 2.5-month-old Boy,undated + + + + + + 4 + 559 + 3.5 x 4.5 inch Negatives, A-Gran, Fitzpatrick, J. - Group of Five,undated + + + + + + 4 + 560 + 3.5 x 4.5 inch Negatives, A-Gran, Flannery, Bob - 2-year-old Boy,undated + + + + + + 4 + 561 + 3.5 x 4.5 inch Negatives, A-Gran, Flannery, Bob - Wedding,undated + + + + + + 4 + 562 + 3.5 x 4.5 inch Negatives, A-Gran, Flannery, Bob - 1-year-old,undated + + + + + + 4 + 563 + 3.5 x 4.5 inch Negatives, A-Gran, Flannery, Rome and Wife,undated + + + + + + 4 + 564 + 3.5 x 4.5 inch Negatives, A-Gran, Flaugher, Elmer,August 30, 1966 + + + + + + 4 + 565 + 3.5 x 4.5 inch Negatives, A-Gran, Flaugher, Mrs, Elmer (Elizabeth),undated + + + + + + 4 + 567 + 3.5 x 4.5 inch Negatives, A-Gran, Flaugher, Geo.,undated + + + + + + 4 + 568 + 3.5 x 4.5 inch Negatives, A-Gran, Flaugher, Glen - Mrs. - Copy,undated + + + + + + 4 + 569 + 3.5 x 4.5 inch Negatives, A-Gran, Flaugher, Ron - Mrs. - Drums - Passport,March 13, 1965 + + + + + + 4 + 570 + 3.5 x 4.5 inch Negatives, A-Gran, Flood, Wayne,undated + + + + + + 4 + 571 + 3.5 x 4.5 inch Negatives, A-Gran, Floria, Dawn,undated + + + + + + 4 + 571 + 3.5 x 4.5 inch Negatives, A-Gran, Fluharty, Harold - Family -Copy,undated + + + + + + 4 + 572 + 3.5 x 4.5 inch Negatives, A-Gran, Fluharty, Jack, H.S.,undated + + + + + + 4 + 573 + 3.5 x 4.5 inch Negatives, A-Gran, Flynn, Orm - Whit Lake - Copy,undated + + + + + + 4 + 574 + 3.5 x 4.5 inch Negatives, A-Gran, Flynn, Orman - Soldier,undated + + + + + + 4 + 575 + 3.5 x 4.5 inch Negatives, A-Gran, Flynn, Robert,undated + + + + + + 4 + 576 + 3.5 x 4.5 inch Negatives, A-Gran, Folty, Frank,undated + + + + + + 4 + 577 + 3.5 x 4.5 inch Negatives, A-Gran, Foltz, Judy,undated + + + + + + 4 + 578 + 3.5 x 4.5 inch Negatives, A-Gran, Foltz, Russell - Honorable Discharge,December 24, 1951 + + + + + + 4 + 579 + 3.5 x 4.5 inch Negatives, A-Gran, Ford, Fred,undated + + + + + + 4 + 580 + 3.5 x 4.5 inch Negatives, A-Gran, Forney, Mabel,undated + + + + + + 4 + 581 + 3.5 x 4.5 inch Negatives, A-Gran, Forney, Mabel - I.D.,March 28, 1960 + + + + + + 4 + 582 + 3.5 x 4.5 inch Negatives, A-Gran, Forney, Sam (Mrs.),undated + + + + + + 4 + 583 + 3.5 x 4.5 inch Negatives, A-Gran, Fortner, Clarence - Birth Certificate of Lois Ann Fortner,October 2, 1947 + + + + + + 4 + 584 + 3.5 x 4.5 inch Negatives, A-Gran, Fortner, Clarence - Birth Certificate of Walter John Fortner,September 5, 1946 + + + + + + 4 + 585 + 3.5 x 4.5 inch Negatives, A-Gran, Foster, Dick,undated + + + + + + 4 + 586 + 3.5 x 4.5 inch Negatives, A-Gran, Fox, Ed and Wife - Passport,undated + + + + + + 4 + 587 + 3.5 x 4.5 inch Negatives, A-Gran, Fox, Herman - 1.5-year-old Girl,undated + + + + + + 4 + 588 + 3.5 x 4.5 inch Negatives, A-Gran, Fox, James,undated + + + + + + 4 + 589 + 3.5 x 4.5 inch Negatives, A-Gran, Fox, Mary,undated + + + + + + 4 + 590 + 3.5 x 4.5 inch Negatives, A-Gran, Fox, Mutt,February 10, 1967 + + + + + + 4 + 591 + 3.5 x 4.5 inch Negatives, A-Gran, Fox, Steve and Wife,October 3, 1969 + + + + + + 4 + 592 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco, Mrs.,undated + + + + + + 4 + 593 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family,undated + + + + + + 4 + 594 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Army Soldier,undated + + + + + + 4 + 595 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Baby,undated + + + + + + 4 + 596 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family Baby,1930 + + + + + + 4 + 597 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Couple,undated + + + + + + 4 + 598 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Couple with Baby,undated + + + + + + 4 + 599 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Female Graduate,undated + + + + + + 4 + 600 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Girl,undated + + + + + + 4 + 601 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Little Girl,undated + + + + + + 4 + 602 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Little Girl,1930 + + + + + + 4 + 603 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Man,undated + + + + + + 4 + 604 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Man Fishing,1930 + + + + + + 4 + 605 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Man Playing Piano,undated + + + + + + 4 + 606 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Older Couple,undated + + + + + + 4 + 607 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Patient with a Doctor,undated + + + + + + 4 + 608 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Teenager,undated + + + + + + 4 + 609 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Woman,undated + + + + + + 4 + 610 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Woman,1930 + + + + + + 4 + 611 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Woman Carrying a Little Girl,1930 + + + + + + 4 + 612 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Woman Ice Skating,undated + + + + + + 4 + 613 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Woman with a Girl,undated + + + + + + 4 + 614 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Young Woman,undated + + + + + + 4 + 615 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Chief Shooting Bull,undated + + + + + + 4 + 616 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Cross Village,August 24, 1935 + + + + + + 4 + 617 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Dog,undated + + + + + + 4 + 618 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Downtown,undated + + + + + + 4 + 619 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Estates,1930 + + + + + + 4 + 620 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Five Little Children,undated + + + + + + 4 + 621 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Five People,undated + + + + + + 4 + 622 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Four Little Boys,undated + + + + + + 4 + 623 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Glen's First Cooking Class,undated + + + + + + 4 + 624 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Hospital with Army Soldiers and Nurses,undated + + + + + + 4 + 625 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Houghton Lake,March 24, 1935 + + + + + + 4 + 626 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Party,undated + + + + + + 4 + 627 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Older Woman in the Living Room,undated + + + + + + 4 + 628 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Negative of 6 family members seated,undated + + + + + + 4 + 629 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Studio,undated + + + + + + 4 + 630 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Three Older Men,undated + + + + + + 4 + 631 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Three Women,undated + + + + + + 4 + 632 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Two Girls,undated + + + + + + 4 + 633 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Two Little Girls,undated + + + + + + 4 + 634 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Two Men,undated + + + + + + 4 + 635 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco Family - Two Men Boxing,undated + + + + + + 4 + 636 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco, H.A.,undated + + + + + + 4 + 637 + 3.5 x 4.5 inch Negatives, A-Gran, Francisco, Lillian and Harrison - Copy of Each One's Driver's License,undated + + + + + + 4 + 638 + 3.5 x 4.5 inch Negatives, A-Gran, Frank, Carl,undated + + + + + + 4 + 639 + 3.5 x 4.5 inch Negatives, A-Gran, Frank, Linda - Girl,undated + + + + + + 4 + 640 + 3.5 x 4.5 inch Negatives, A-Gran, Frank, Ray - I.D.,undated + + + + + + 4 + 641 + 3.5 x 4.5 inch Negatives, A-Gran, Franklin, Wm. and Wife,May 6, 1968 + + + + + + 4 + 642 + 3.5 x 4.5 inch Negatives, A-Gran, Franko, Joe A. (p.p.),June 27, 1969 + + + + + + 4 + 643 + 3.5 x 4.5 inch Negatives, A-Gran, Frantz, June,undated + + + + + + 4 + 644 + 3.5 x 4.5 inch Negatives, A-Gran, Frantz, June - 5- and 2-year-old Girls,undated + + + + + + 4 + 645 + 3.5 x 4.5 inch Negatives, A-Gran, Frantz, Wm. and Wife,September 27,1 969 + + + + + + 4 + 646 + 3.5 x 4.5 inch Negatives, A-Gran, Frederick, Richard,November 29, 1969 + + + + + + 4 + 647 + 3.5 x 4.5 inch Negatives, A-Gran, Freeman, Alden - Wedding,undated + + + + + + 4 + 648 + 3.5 x 4.5 inch Negatives, A-Gran, Frees, Jerome,undated + + + + + + 4 + 649 + 3.5 x 4.5 inch Negatives, A-Gran, Freeze, Barbara,undated + + + + + + 4 + 650 + 3.5 x 4.5 inch Negatives, A-Gran, Freeze, Pearl - Copy,undated + + + + + + 4 + 651 + 3.5 x 4.5 inch Negatives, A-Gran, Frick, August, Sr. - Family Photograph,undated + + + + + + 4 + 652 + 3.5 x 4.5 inch Negatives, A-Gran, Frick, August, Sr. and Wife,undated + + + + + + 4 + 653 + 3.5 x 4.5 inch Negatives, A-Gran, Frick, Carl (2 envelopes),undated + + + + + + 4 + 654 + 3.5 x 4.5 inch Negatives, A-Gran, Frick, Carl - Baby,undated + + + + + + 4 + 655 + 3.5 x 4.5 inch Negatives, A-Gran, Frick, Carl - 8-month-old,undated + + + + + + 4 + 656 + 3.5 x 4.5 inch Negatives, A-Gran, Frick, Carl,April 25, 1967 + + + + + + 4 + 657 + 3.5 x 4.5 inch Negatives, A-Gran, Frick, Frank - Baby,undated + + + + + + 4 + 658 + 3.5 x 4.5 inch Negatives, A-Gran, Frick, Frank - Baby Girl,1955 + + + + + + 4 + 659 + 3.5 x 4.5 inch Negatives, A-Gran, Frick, Frank - Little Girl,1959 + + + + + + 4 + 660 + 3.5 x 4.5 inch Negatives, A-Gran, Frick, Max,undated + + + + + + 4 + 661 + 3.5 x 4.5 inch Negatives, A-Gran, Frick, Otto,undated + + + + + + 4 + 662 + 3.5 x 4.5 inch Negatives, A-Gran, Frissman, Mrs. Walt - 1-year-old Girl,undated + + + + + + 4 + 663 + 3.5 x 4.5 inch Negatives, A-Gran, Froggett, Nelson - Copy,undated + + + + + + 4 + 664 + 3.5 x 4.5 inch Negatives, A-Gran, Fuentes, Virginia,undated + + + + + + 4 + 665 + 3.5 x 4.5 inch Negatives, A-Gran, Fulk, Chas.,undated + + + + + + 4 + 667 + 3.5 x 4.5 inch Negatives, A-Gran, Funnell, Edna - Copy,undated + + + + + + 4 + 668 + 3.5 x 4.5 inch Negatives, A-Gran, Funnell, Jerry,undated + + + + + + 4 + 669 + 3.5 x 4.5 inch Negatives, A-Gran, Funnell, Jerry and Wife - Passport,February 6, 1965 + + + + + + 4 + 670 + 3.5 x 4.5 inch Negatives, A-Gran, Funnell, Joyce,undated + + + + + + 4 + 671 + 3.5 x 4.5 inch Negatives, A-Gran, Fussman, Jack,undated + + + + + + 4 + 672 + 3.5 x 4.5 inch Negatives, A-Gran, Fussman, John,undated + + + + + + 4 + 673 + 3.5 x 4.5 inch Negatives, A-Gran, Galgoczi, Steve - Moose Lodge Gov.,December 9, 1966 + + + + + + 4 + 674 + 3.5 x 4.5 inch Negatives, A-Gran, Gallardo, Raymond - Wedding,undated + + + + + + 4 + 675 + 3.5 x 4.5 inch Negatives, A-Gran, Gamary, Matt,undated + + + + + + 4 + 676 + 3.5 x 4.5 inch Negatives, A-Gran, Gamble's Store,undated + + + + + + 4 + 677 + 3.5 x 4.5 inch Negatives, A-Gran, Garber, Wanda,undated + + + + + + 4 + 678 + 3.5 x 4.5 inch Negatives, A-Gran, Garchow, Amy,undated + + + + + + 4 + 679 + 3.5 x 4.5 inch Negatives, A-Gran, Gardner, Veronica,undated + + + + + + 4 + 680 + 3.5 x 4.5 inch Negatives, A-Gran, Garner, Bob,undated + + + + + + 4 + 681 + 3.5 x 4.5 inch Negatives, A-Gran, Garrett, Carol,undated + + + + + + 4 + 682 + 3.5 x 4.5 inch Negatives, A-Gran, Garthy, Anne,undated + + + + + + 4 + 683 + 3.5 x 4.5 inch Negatives, A-Gran, Gatcher, [no first name],undated + + + + + + 4 + 684 + 3.5 x 4.5 inch Negatives, A-Gran, Gatehouse, Gary - 6- and 8-month-olds,August 24, 1963 + + + + + + 4 + 685 + 3.5 x 4.5 inch Negatives, A-Gran, Gatehouse, Ruth - Copy,undated + + + + + + 4 + 686 + 3.5 x 4.5 inch Negatives, A-Gran, Gates, Earl - Copy of Family Photograph,undated + + + + + + 4 + 687 + 3.5 x 4.5 inch Negatives, A-Gran, Gates, Ivan - Copy,undated + + + + + + 4 + 688 + 3.5 x 4.5 inch Negatives, A-Gran, Gates, Shirley,undated + + + + + + 4 + 689 + 3.5 x 4.5 inch Negatives, A-Gran, Gaudard, Max,undated + + + + + + 4 + 690 + 3.5 x 4.5 inch Negatives, A-Gran, Geasler, Carl,July 7, 1959 + + + + + + 4 + 691 + 3.5 x 4.5 inch Negatives, A-Gran, Geasler, Joan,undated + + + + + + 4 + 692 + 3.5 x 4.5 inch Negatives, A-Gran, Geasler, Myritle,undated + + + + + + 4 + 693 + 3.5 x 4.5 inch Negatives, A-Gran, Gelander, Harry,undated + + + + + + 4 + 694 + 3.5 x 4.5 inch Negatives, A-Gran, Genson, Clifford,undated + + + + + + 4 + 695 + 3.5 x 4.5 inch Negatives, A-Gran, Gepford, Bill - 9-month-old,undated + + + + + + 4 + 696 + 3.5 x 4.5 inch Negatives, A-Gran, Gepford, Pat - 9-month-old,undated + + + + + + 4 + 697 + 3.5 x 4.5 inch Negatives, A-Gran, Gepford, Pat - 10-month-old,1961 + + + + + + 4 + 698 + 3.5 x 4.5 inch Negatives, A-Gran, Gepford, Pat - 7-month-old,undated + + + + + + 4 + 699 + 3.5 x 4.5 inch Negatives, A-Gran, Gerve, Ruth,March 10, 1961 + + + + + + 4 + 700 + 3.5 x 4.5 inch Negatives, A-Gran, Getchell, Bud and Wife,undated + + + + + + 4 + 701 + 3.5 x 4.5 inch Negatives, A-Gran, Getchell, Evelyn,undated + + + + + + 4 + 702 + 3.5 x 4.5 inch Negatives, A-Gran, Getchell, Jane, Mrs.,undated + + + + + + 4 + 703 + 3.5 x 4.5 inch Negatives, A-Gran, Getchell, John, H.S.,undated + + + + + + 4 + 704 + 3.5 x 4.5 inch Negatives, A-Gran, Getchell, Lois - 7-month-old,undated + + + + + + 4 + 705 + 3.5 x 4.5 inch Negatives, A-Gran, Getchell, Pat,undated + + + + + + 4 + 706 + 3.5 x 4.5 inch Negatives, A-Gran, Gibson, Alva -10-year-old Boy,undated + + + + + + 4 + 707 + 3.5 x 4.5 inch Negatives, A-Gran, Gibson, Dorothy,undated + + + + + + 4 + 708 + 3.5 x 4.5 inch Negatives, A-Gran, Gibson, Jane - Copy,undated + + + + + + 4 + 709 + 3.5 x 4.5 inch Negatives, A-Gran, Gibson, Jerry,undated + + + + + + 4 + 710 + 3.5 x 4.5 inch Negatives, A-Gran, Gibson, Marge,undated + + + + + + 4 + 711 + 3.5 x 4.5 inch Negatives, A-Gran, Gibson, Marie,July 10, 1965 + + + + + + 4 + 712 + 3.5 x 4.5 inch Negatives, A-Gran, Gibson, Rita,undated + + + + + + 4 + 713 + 3.5 x 4.5 inch Negatives, A-Gran, Gibson, Sadie,undated + + + + + + 4 + 714 + 3.5 x 4.5 inch Negatives, A-Gran, Gibson, Steve,undated + + + + + + 4 + 715 + 3.5 x 4.5 inch Negatives, A-Gran, Gibson, Wilard, Jr. - 7-month-old Marie,undated + + + + + + 4 + 716 + 3.5 x 4.5 inch Negatives, A-Gran, Gilchrist, Gordon - 1.5-year-old,undated + + + + + + 4 + 717 + 3.5 x 4.5 inch Negatives, A-Gran, Gill, Louise,undated + + + + + + 4 + 718 + 3.5 x 4.5 inch Negatives, A-Gran, Gill, Terry,undated + + + + + + 4 + 719 + 3.5 x 4.5 inch Negatives, A-Gran, Gillian, Mary,undated + + + + + + 4 + 720 + 3.5 x 4.5 inch Negatives, A-Gran, Gillet, Eileen,undated + + + + + + 4 + 721 + 3.5 x 4.5 inch Negatives, A-Gran, Gillet, Eileen Rose - Birth Certificate,undated + + + + + + 4 + 722 + 3.5 x 4.5 inch Negatives, A-Gran, Gillette, Dory and Wife - Copy,January 3, 1964 + + + + + + 4 + 723 + 3.5 x 4.5 inch Negatives, A-Gran, Gillette, Jesse, Mrs.,undated + + + + + + 4 + 724 + 3.5 x 4.5 inch Negatives, A-Gran, Gillhooley, Ed,undated + + + + + + 4 + 725 + 3.5 x 4.5 inch Negatives, A-Gran, Gillis, Don and Wife - Son and Daughter,July 14, 1964 + + + + + + 4 + 726 + 3.5 x 4.5 inch Negatives, A-Gran, Gillis, Sharon,undated + + + + + + 4 + 728 + 3.5 x 4.5 inch Negatives, A-Gran, Gillis, Stan,undated + + + + + + 4 + 729 + 3.5 x 4.5 inch Negatives, A-Gran, Gilmore, Maynard,undated + + + + + + 4 + 730 + 3.5 x 4.5 inch Negatives, A-Gran, Gilmore, Nelda,undated + + + + + + 4 + 731 + 3.5 x 4.5 inch Negatives, A-Gran, Gilpin, Brenda,undated + + + + + + 4 + 732 + 3.5 x 4.5 inch Negatives, A-Gran, Glover, Susan,undated + + + + + + 4 + 733 + 3.5 x 4.5 inch Negatives, A-Gran, Goodrich, Marion,undated + + + + + + 4 + 734 + 3.5 x 4.5 inch Negatives, A-Gran, Gott, John - Copy,undated + + + + + + 4 + 735 + 3.5 x 4.5 inch Negatives, A-Gran, Goudie, Nancy,undated + + + + + + 4 + 736 + 3.5 x 4.5 inch Negatives, A-Gran, Gover, Bob - Copy,undated + + + + + + 4 + 737 + 3.5 x 4.5 inch Negatives, A-Gran, Gover, N.D.,April 29, 1966 + + + + + + 4 + 738 + 3.5 x 4.5 inch Negatives, A-Gran, Gover, N.D. - Dog,undated + + + + + + 4 + 739 + 3.5 x 4.5 inch Negatives, A-Gran, Gover, N.D. - Family,undated + + + + + + 4 + 740 + 3.5 x 4.5 inch Negatives, A-Gran, Gover, N.D. and Wife,undated + + + + + + 4 + 741 + 3.5 x 4.5 inch Negatives, A-Gran, Gover, Harry and Wife,undated + + + + + + 4 + 742 + 3.5 x 4.5 inch Negatives, A-Gran, Gover, Robert,undated + + + + + + 4 + 743 + 3.5 x 4.5 inch Negatives, A-Gran, Grace, Dick,undated + + + + + + 4 + 744 + 3.5 x 4.5 inch Negatives, A-Gran, Grace, Floyd, Mrs.,undated + + + + + + 4 + 745 + 3.5 x 4.5 inch Negatives, A-Gran, Grace, Karen,August 18, 1959 + + + + + + 4 + 746 + 3.5 x 4.5 inch Negatives, A-Gran, Grace, Lonnie,March 22, 1963 + + + + + + 4 + 747 + 3.5 x 4.5 inch Negatives, A-Gran, Grace, Richard,undated + + + + + + 4 + 748 + 3.5 x 4.5 inch Negatives, A-Gran, Grace, Zeke, Mrs. - Copy,undated + + + + + + 4 + 749 + 3.5 x 4.5 inch Negatives, A-Gran, Graham, Bob,undated + + + + + + 4 + 750 + 3.5 x 4.5 inch Negatives, A-Gran, Graham, Henry, Mrs.,undated + + + + + + 4 + 751 + 3.5 x 4.5 inch Negatives, A-Gran, Graham, Jackie,undated + + + + + + 4 + 752 + 3.5 x 4.5 inch Negatives, A-Gran, Graham, Lowell,undated + + + + + + 4 + 753 + 3.5 x 4.5 inch Negatives, A-Gran, Graham, Ronald - Birth Certificate,undated + + + + + + 4 + 754 + 3.5 x 4.5 inch Negatives, A-Gran, Graham, Ronald - Honorable Discharge,undated + + + + + + 4 + 755 + 3.5 x 4.5 inch Negatives, A-Gran, Grandy, Jean,undated + + + + + + 4 + 756 + 3.5 x 4.5 inch Negatives, A-Gran, Granger, L.E.,October 15, 1969 + + + + + + 5 + 1 + 3.5 x 4.5 inch Negatives, Grav-R, Graves, Pauline,undated + + + + + + 5 + 2 + 3.5 x 4.5 inch Negatives, Grav-R, Gray, Arlene,undated + + + + + + 5 + 3 + 3.5 x 4.5 inch Negatives, Grav-R, Gray, Natalie,undated + + + + + + 5 + 4 + 3.5 x 4.5 inch Negatives, Grav-R, Gregg, Lewis,undated + + + + + + 5 + 5 + 3.5 x 4.5 inch Negatives, Grav-R, Gregg, Norma,undated + + + + + + 5 + 6 + 3.5 x 4.5 inch Negatives, Grav-R, Grenada, H.,undated + + + + + + 5 + 7 + 3.5 x 4.5 inch Negatives, Grav-R, Grewe, Ruth,undated + + + + + + 5 + 8 + 3.5 x 4.5 inch Negatives, Grav-R, Griffin, L. - G.I. and Sister,undated + + + + + + 5 + 9 + 3.5 x 4.5 inch Negatives, Grav-R, Griffin, Tom,undated + + + + + + 5 + 10 + 3.5 x 4.5 inch Negatives, Grav-R, Griffith, Stephen,undated + + + + + + 5 + 11 + 3.5 x 4.5 inch Negatives, Grav-R, Grinstern, Patty,undated + + + + + + 5 + 12 + 3.5 x 4.5 inch Negatives, Grav-R, Grisdale, Art - Family,undated + + + + + + 5 + 13 + 3.5 x 4.5 inch Negatives, Grav-R, Grisdale, Betty,undated + + + + + + 5 + 14 + 3.5 x 4.5 inch Negatives, Grav-R, Griswold, H.,undated + + + + + + 5 + 15 + 3.5 x 4.5 inch Negatives, Grav-R, Grodski, Gertrude,undated + + + + + + 5 + 16 + 3.5 x 4.5 inch Negatives, Grav-R, Gross, Bernard - 1- and 2-year-olds,January 4, 1964 + + + + + + 5 + 17 + 3.5 x 4.5 inch Negatives, Grav-R, Gross, Betty,undated + + + + + + 5 + 18 + 3.5 x 4.5 inch Negatives, Grav-R, Gross, Bob,undated + + + + + + 5 + 19 + 3.5 x 4.5 inch Negatives, Grav-R, Gross, Claire,undated + + + + + + 5 + 20 + 3.5 x 4.5 inch Negatives, Grav-R, Gross, Donald J.,undated + + + + + + 5 + 21 + 3.5 x 4.5 inch Negatives, Grav-R, Gross, Ernest,undated + + + + + + 5 + 22 + 3.5 x 4.5 inch Negatives, Grav-R, Gross, Esther,undated + + + + + + 5 + 23 + 3.5 x 4.5 inch Negatives, Grav-R, Gross, Marilyn (2 envelopes),undated + + + + + + 5 + 24 + 3.5 x 4.5 inch Negatives, Grav-R, Gross, Theresa,undated + + + + + + 5 + 25 + 3.5 x 4.5 inch Negatives, Grav-R, Gross, Wm. - Baby Girl,undated + + + + + + 5 + 26 + 3.5 x 4.5 inch Negatives, Grav-R, Grove, Albert (2),March 8, August 16, 1965 + + + + + + 5 + 27 + 3.5 x 4.5 inch Negatives, Grav-R, Grove, Barbara,undated + + + + + + 5 + 28 + 3.5 x 4.5 inch Negatives, Grav-R, Grove, Miles,undated + + + + + + 5 + 29 + 3.5 x 4.5 inch Negatives, Grav-R, Grove, Tom,undated + + + + + + 5 + 30 + 3.5 x 4.5 inch Negatives, Grav-R, Groves, Alice,undated + + + + + + 5 + 31 + 3.5 x 4.5 inch Negatives, Grav-R, Grubb, Robert - Copy,undated + + + + + + 5 + 32 + 3.5 x 4.5 inch Negatives, Grav-R, Gruss, Joe,undated + + + + + + 5 + 33 + 3.5 x 4.5 inch Negatives, Grav-R, Gruss, Joe - Family Photograph,1962 + + + + + + 5 + 34 + 3.5 x 4.5 inch Negatives, Grav-R, Gruss, Marie - 1-year-old,undated + + + + + + 5 + 35 + 3.5 x 4.5 inch Negatives, Grav-R, Gruss, Peter,March 6, 1969 + + + + + + 5 + 36 + 3.5 x 4.5 inch Negatives, Grav-R, Guest, G. - Baby,undated + + + + + + 5 + 37 + 3.5 x 4.5 inch Negatives, Grav-R, Gullett, Don,undated + + + + + + 5 + 38 + 3.5 x 4.5 inch Negatives, Grav-R, Gundel, Mrs. - Copy,undated + + + + + + 5 + 39 + 3.5 x 4.5 inch Negatives, Grav-R, Gunton, Morlba,undated + + + + + + 5 + 40 + 3.5 x 4.5 inch Negatives, Grav-R, Guthrie, Mrs.and Mr. - Son - Copy,undated + + + + + + 5 + 41 + 3.5 x 4.5 inch Negatives, Grav-R, Guthrie, Howard,March 6, 1968 + + + + + + 5 + 42 + 3.5 x 4.5 inch Negatives, Grav-R, Haas, Geo.,May 6, 1968 + + + + + + 5 + 43 + 3.5 x 4.5 inch Negatives, Grav-R, Hackett, Elaine,,undated + + + + + + 5 + 44 + 3.5 x 4.5 inch Negatives, Grav-R, Hackett, John and Wife (2 envelopes),undated + + + + + + 5 + 45 + 3.5 x 4.5 inch Negatives, Grav-R, Hackett, K.,undated + + + + + + 5 + 46 + 3.5 x 4.5 inch Negatives, Grav-R, Hackett, Rose,undated + + + + + + 5 + 47 + 3.5 x 4.5 inch Negatives, Grav-R, Hadlock, Mary - 7-month-old,undated + + + + + + 5 + 48 + 3.5 x 4.5 inch Negatives, Grav-R, Hafer, Charol - 9-year-old,undated + + + + + + 5 + 49 + 3.5 x 4.5 inch Negatives, Grav-R, Hafer, Julie Ann,February 11, 1967 + + + + + + 5 + 50 + 3.5 x 4.5 inch Negatives, Grav-R, Hafer, Pamela,undated + + + + + + 5 + 51 + 3.5 x 4.5 inch Negatives, Grav-R, Hagerman, Geo.,undated + + + + + + 5 + 52 + 3.5 x 4.5 inch Negatives, Grav-R, Haggart, Joyce,undated + + + + + + 5 + 53 + 3.5 x 4.5 inch Negatives, Grav-R, Haggart, Robert,undated + + + + + + 5 + 54 + 3.5 x 4.5 inch Negatives, Grav-R, Haggart, Virgul,undated + + + + + + 5 + 55 + 3.5 x 4.5 inch Negatives, Grav-R, Hall, Carol,undated + + + + + + 5 + 56 + 3.5 x 4.5 inch Negatives, Grav-R, Hall, Clarence,undated + + + + + + 5 + 57 + 3.5 x 4.5 inch Negatives, Grav-R, Hall, Curtiss,undated + + + + + + 5 + 58 + 3.5 x 4.5 inch Negatives, Grav-R, Hall, Jerry -15-month-old,undated + + + + + + 5 + 59 + 3.5 x 4.5 inch Negatives, Grav-R, Hall, Lonna,undated + + + + + + 5 + 60 + 3.5 x 4.5 inch Negatives, Grav-R, Hall, Ray, Mrs.,undated + + + + + + 5 + 61 + 3.5 x 4.5 inch Negatives, Grav-R, Hall, Stanley - 2-year-old,undated + + + + + + 5 + 62 + 3.5 x 4.5 inch Negatives, Grav-R, Hall, Tink - Copy,undated + + + + + + 5 + 63 + 3.5 x 4.5 inch Negatives, Grav-R, Hall, Wayne,undated + + + + + + 5 + 64 + 3.5 x 4.5 inch Negatives, Grav-R, Hallock, Harold and Wife,undated + + + + + + 5 + 65 + 3.5 x 4.5 inch Negatives, Grav-R, Halton, Jackie,undated + + + + + + 5 + 66 + 3.5 x 4.5 inch Negatives, Grav-R, Hamilton, Fred,undated + + + + + + 5 + 67 + 3.5 x 4.5 inch Negatives, Grav-R, Hammel, Arnold - Photograph,undated + + + + + + 5 + 68 + 3.5 x 4.5 inch Negatives, Grav-R, Hammond, Ann - 2-year-old,undated + + + + + + 5 + 69 + 3.5 x 4.5 inch Negatives, Grav-R, Hammond, Glenn, Mrs. - Sailor,September 18, 1964 + + + + + + 5 + 70 + 3.5 x 4.5 inch Negatives, Grav-R, Haney, Arnold - Leo Scramlin,undated + + + + + + 5 + 71 + 3.5 x 4.5 inch Negatives, Grav-R, Hanlin, H. - Copy,undated + + + + + + 5 + 72 + 3.5 x 4.5 inch Negatives, Grav-R, Haring, Fred,undated + + + + + + 5 + 73 + 3.5 x 4.5 inch Negatives, Grav-R, Harless, Harold,undated + + + + + + 5 + 74 + 3.5 x 4.5 inch Negatives, Grav-R, Harless, Kay,undated + + + + + + 5 + 75 + 3.5 x 4.5 inch Negatives, Grav-R, Harless, Pauline,undated + + + + + + 5 + 76 + 3.5 x 4.5 inch Negatives, Grav-R, Harless, Roy - Policeman,undated + + + + + + 5 + 77 + 3.5 x 4.5 inch Negatives, Grav-R, Harless, Ruth, Mrs. - Couple,undated + + + + + + 5 + 78 + 3.5 x 4.5 inch Negatives, Grav-R, Harper, Elmer - Copy,undated + + + + + + 5 + 79 + 3.5 x 4.5 inch Negatives, Grav-R, Harris, Donna - Copy,undated + + + + + + 5 + 80 + 3.5 x 4.5 inch Negatives, Grav-R, Harris, John,undated + + + + + + 5 + 81 + 3.5 x 4.5 inch Negatives, Grav-R, Harris, Phil,undated + + + + + + 5 + 82 + 3.5 x 4.5 inch Negatives, Grav-R, Harrison, Chas.,undated + + + + + + 5 + 83 + 3.5 x 4.5 inch Negatives, Grav-R, Harrison,J.E.,,May 3, 1969 + + + + + + 5 + 84 + 3.5 x 4.5 inch Negatives, Grav-R, Hart, Clara - 5-year-old,undated + + + + + + 5 + 85 + 3.5 x 4.5 inch Negatives, Grav-R, Hart, Shirley,undated + + + + + + 5 + 86 + 3.5 x 4.5 inch Negatives, Grav-R, Hartman, Darwin,July 7, 1959 + + + + + + 5 + 87 + 3.5 x 4.5 inch Negatives, Grav-R, Harvey, [no first name],undated + + + + + + 5 + 88 + 3.5 x 4.5 inch Negatives, Grav-R, Haskins, Shirley,undated + + + + + + 5 + 89 + 3.5 x 4.5 inch Negatives, Grav-R, Hatt, F.,undated + + + + + + 5 + 90 + 3.5 x 4.5 inch Negatives, Grav-R, Hatt, Lavier -8-year-old Girl,undated + + + + + + 5 + 91 + 3.5 x 4.5 inch Negatives, Grav-R, Hatt, Lillian, Mrs. - Boy,undated + + + + + + 5 + 92 + 3.5 x 4.5 inch Negatives, Grav-R, Hauck, Floyd - 9-month-old,June 23, 1965 + + + + + + 5 + 93 + 3.5 x 4.5 inch Negatives, Grav-R, Haught, Colleen - I.D.,July 7, 1959 + + + + + + 5 + 94 + 3.5 x 4.5 inch Negatives, Grav-R, Hause, Ed - Copy,undated + + + + + + 5 + 95 + 3.5 x 4.5 inch Negatives, Grav-R, Hawkins, Burton,January 3, 1968 + + + + + + 5 + 96 + 3.5 x 4.5 inch Negatives, Grav-R, Hawkins, Jerry,undated + + + + + + 5 + 97 + 3.5 x 4.5 inch Negatives, Grav-R, Haynes, Cathy,undated + + + + + + 5 + 98 + 3.5 x 4.5 inch Negatives, Grav-R, Haynes, Judy,undated + + + + + + 5 + 99 + 3.5 x 4.5 inch Negatives, Grav-R, Haynes, Leo,undated + + + + + + 5 + 100 + 3.5 x 4.5 inch Negatives, Grav-R, Haynes, Patty - Girl,undated + + + + + + 5 + 101 + 3.5 x 4.5 inch Negatives, Grav-R, Hazelton, Duane,undated + + + + + + 5 + 102 + 3.5 x 4.5 inch Negatives, Grav-R, Hazelton, Esther,undated + + + + + + 5 + 103 + 3.5 x 4.5 inch Negatives, Grav-R, Hazelton, Mary Lou,undated + + + + + + 5 + 104 + 3.5 x 4.5 inch Negatives, Grav-R, Heckert, Jim,September 12, 1960 + + + + + + 5 + 105 + 3.5 x 4.5 inch Negatives, Grav-R, Heckler, Ted,October 25, 1967 + + + + + + 5 + 106 + 3.5 x 4.5 inch Negatives, Grav-R, Heinlein, Dan,undated + + + + + + 5 + 107 + 3.5 x 4.5 inch Negatives, Grav-R, Heinlein, Robt.,undated + + + + + + 5 + 108 + 3.5 x 4.5 inch Negatives, Grav-R, Heinlein, Sandy - Copy,undated + + + + + + 5 + 109 + 3.5 x 4.5 inch Negatives, Grav-R, Heinlein, Wm.,undated + + + + + + 5 + 110 + 3.5 x 4.5 inch Negatives, Grav-R, Heintman, Eric C.,undated + + + + + + 5 + 111 + 3.5 x 4.5 inch Negatives, Grav-R, Heintz, Robert,undated + + + + + + 5 + 112 + 3.5 x 4.5 inch Negatives, Grav-R, Henry, V.,undated + + + + + + 5 + 113 + 3.5 x 4.5 inch Negatives, Grav-R, Henshaw, Joe - 2-year-old,undated + + + + + + 5 + 114 + 3.5 x 4.5 inch Negatives, Grav-R, Heppler, John,July 3, 1969 + + + + + + 5 + 115 + 3.5 x 4.5 inch Negatives, Grav-R, Hersee, Wm., Dr. - Negative of House,1959 + + + + + + 5 + 116 + 3.5 x 4.5 inch Negatives, Grav-R, Hesson, [no first name] - Copy,undated + + + + + + 5 + 117 + 3.5 x 4.5 inch Negatives, Grav-R, Hetherington, K. - Boy,undated + + + + + + 5 + 118 + 3.5 x 4.5 inch Negatives, Grav-R, Hewlett, Roy and Wife,undated + + + + + + 5 + 119 + 3.5 x 4.5 inch Negatives, Grav-R, Hewlett, Yvonne - Copy of Marriage License,undated + + + + + + 5 + 120 + 3.5 x 4.5 inch Negatives, Grav-R, Hileman, Blanch,undated + + + + + + 5 + 121 + 3.5 x 4.5 inch Negatives, Grav-R, Hill, George,undated + + + + + + 5 + 122 + 3.5 x 4.5 inch Negatives, Grav-R, Hills, Herbert - Girl,undated + + + + + + 5 + 123 + 3.5 x 4.5 inch Negatives, Grav-R, Hills, Proctor - Copy,undated + + + + + + 5 + 124 + 3.5 x 4.5 inch Negatives, Grav-R, Hitchcock, Mary,undated + + + + + + 5 + 125 + 3.5 x 4.5 inch Negatives, Grav-R, Hoag, Merrill,undated + + + + + + 5 + 126 + 3.5 x 4.5 inch Negatives, Grav-R, Hoagg, Edith,undated + + + + + + 5 + 127 + 3.5 x 4.5 inch Negatives, Grav-R, Hoas, Geo.,undated + + + + + + 5 + 128 + 3.5 x 4.5 inch Negatives, Grav-R, Hogg, Rollie,undated + + + + + + 5 + 129 + 3.5 x 4.5 inch Negatives, Grav-R, Hoggart, M. - Copy,undated + + + + + + 5 + 130 + 3.5 x 4.5 inch Negatives, Grav-R, Hole, Gayle,undated + + + + + + 5 + 131 + 3.5 x 4.5 inch Negatives, Grav-R, Holley, Autumn,undated + + + + + + 5 + 132 + 3.5 x 4.5 inch Negatives, Grav-R, Holiday, Gladys,undated + + + + + + 5 + 133 + 3.5 x 4.5 inch Negatives, Grav-R, Holliday, Sally,June 24, 1964 + + + + + + 5 + 134 + 3.5 x 4.5 inch Negatives, Grav-R, Holmgren, James - Passport, wife and 2 Children,undated + + + + + + 5 + 135 + 3.5 x 4.5 inch Negatives, Grav-R, Holp, Don and Wife,undated + + + + + + 5 + 136 + 3.5 x 4.5 inch Negatives, Grav-R, Holt, Diann,undated + + + + + + 5 + 137 + 3.5 x 4.5 inch Negatives, Grav-R, Holt, Russell,undated + + + + + + 5 + 138 + 3.5 x 4.5 inch Negatives, Grav-R, Hood, Herbert - Boy,undated + + + + + + 5 + 139 + 3.5 x 4.5 inch Negatives, Grav-R, Hood, Lorence,undated + + + + + + 5 + 140 + 3.5 x 4.5 inch Negatives, Grav-R, Hoot, [no first name] - Mrs - Copy,undated + + + + + + 5 + 141 + 3.5 x 4.5 inch Negatives, Grav-R, Hoover, Jack - Bronze Wolf of the Capitol, New York,undated + + + + + + 5 + 142 + 3.5 x 4.5 inch Negatives, Grav-R, Hoover, Jack - The Great Seal of the State of New York,undated + + + + + + 5 + 143 + 3.5 x 4.5 inch Negatives, Grav-R, Horan, Carol - I.D.,undated + + + + + + 5 + 144 + 3.5 x 4.5 inch Negatives, Grav-R, Horgan, Tom,undated + + + + + + 5 + 145 + 3.5 x 4.5 inch Negatives, Grav-R, Horn, Helen,undated + + + + + + 5 + 146 + 3.5 x 4.5 inch Negatives, Grav-R, Host, Donald - Wedding,undated + + + + + + 5 + 147 + 3.5 x 4.5 inch Negatives, Grav-R, Hough, Jim - 1-year-old,September 20, 1961 + + + + + + 5 + 148 + 3.5 x 4.5 inch Negatives, Grav-R, Houghton Lake - Two Men,August 16, 1938 + + + + + + 5 + 149 + 3.5 x 4.5 inch Negatives, Grav-R, Houghton Lake - Pa's Cabin,1939 + + + + + + 5 + 150 + 3.5 x 4.5 inch Negatives, Grav-R, House, Barbara,undated + + + + + + 5 + 151 + 3.5 x 4.5 inch Negatives, Grav-R, House, Ed,undated + + + + + + 5 + 152 + 3.5 x 4.5 inch Negatives, Grav-R, Hovey, Terry,undated + + + + + + 5 + 153 + 3.5 x 4.5 inch Negatives, Grav-R, Howard, Clarence - Wedding to Martha Nickel,undated + + + + + + 5 + 154 + 3.5 x 4.5 inch Negatives, Grav-R, Howard, Kenneth,undated + + + + + + 5 + 155 + 3.5 x 4.5 inch Negatives, Grav-R, Howard, Richard,May 19, 1967 + + + + + + 5 + 156 + 3.5 x 4.5 inch Negatives, Grav-R, Howard, Tom -Copy of Family Photograph,May 19, 1967 + + + + + + 5 + 157 + 3.5 x 4.5 inch Negatives, Grav-R, Howay, Frank - Copy,undated + + + + + + 5 + 158 + 3.5 x 4.5 inch Negatives, Grav-R, Howe, Arlene,undated + + + + + + 5 + 159 + 3.5 x 4.5 inch Negatives, Grav-R, Howell, Florence,undated + + + + + + 5 + 160 + 3.5 x 4.5 inch Negatives, Grav-R, Howell, Sarah,undated + + + + + + 5 + 161 + 3.5 x 4.5 inch Negatives, Grav-R, Hoyt, Larry,undated + + + + + + 5 + 162 + 3.5 x 4.5 inch Negatives, Grav-R, Hoyt, Shirley,undated + + + + + + 5 + 163 + 3.5 x 4.5 inch Negatives, Grav-R, Hradel, Anna (2),June 12, 1964; February 21 1964 + + + + + + 5 + 164 + 3.5 x 4.5 inch Negatives, Grav-R, Hsu, Sylvia,undated + + + + + + 5 + 165 + 3.5 x 4.5 inch Negatives, Grav-R, Hubbel, Bruce,undated + + + + + + 5 + 166 + 3.5 x 4.5 inch Negatives, Grav-R, Huber, Jerry,January 2, 1958 + + + + + + 5 + 167 + 3.5 x 4.5 inch Negatives, Grav-R, Hubert, Karen,undated + + + + + + 5 + 168 + 3.5 x 4.5 inch Negatives, Grav-R, Huguelet, Frank - Moose Lodge,undated + + + + + + 5 + 169 + 3.5 x 4.5 inch Negatives, Grav-R, Hunter, John,undated + + + + + + 5 + 170 + 3.5 x 4.5 inch Negatives, Grav-R, Hunter, Lyle - Girl ,undated + + + + + + 5 + 171 + 3.5 x 4.5 inch Negatives, Grav-R, Hunter, Maybelle,1948 + + + + + + 5 + 172 + 3.5 x 4.5 inch Negatives, Grav-R, Hurbis, Helen,undated + + + + + + 5 + 173 + 3.5 x 4.5 inch Negatives, Grav-R, Husted, Mrs. Lorie,December 21, 1962 + + + + + + 5 + 174 + 3.5 x 4.5 inch Negatives, Grav-R, Hutchinson, Sandra,undated + + + + + + 5 + 175 + 3.5 x 4.5 inch Negatives, Grav-R, Hyde, Mary - 7-month-old,undated + + + + + + 5 + 176 + 3.5 x 4.5 inch Negatives, Grav-R, Hyde, Mary and son,undated + + + + + + 5 + 177 + 3.5 x 4.5 inch Negatives, Grav-R, Industrial Well Rig Supply,undated + + + + + + 5 + 178 + 3.5 x 4.5 inch Negatives, Grav-R, Irwin, Pam,undated + + + + + + 5 + 179 + 3.5 x 4.5 inch Negatives, Grav-R, Irwin, Patricia,undated + + + + + + 5 + 180 + 3.5 x 4.5 inch Negatives, Grav-R, Jackson, Bernard - Mrs. - Copy,April 13, 1963 + + + + + + 5 + 181 + 3.5 x 4.5 inch Negatives, Grav-R, Jackson, Floyd,1959 + + + + + + 5 + 183 + 3.5 x 4.5 inch Negatives, Grav-R, Jackson, Floyd - 3-year-old, 14-year-old Girls,undated + + + + + + 5 + 184 + 3.5 x 4.5 inch Negatives, Grav-R, Jackson, Floyd - 1.5-year-old,March 9, 1968 + + + + + + 5 + 185 + 3.5 x 4.5 inch Negatives, Grav-R, Jackson, Floyd - 2-year-old,November 16, 1968 + + + + + + 5 + 186 + 3.5 x 4.5 inch Negatives, Grav-R, Jackson, Fred - Copy,undated + + + + + + 5 + 187 + 3.5 x 4.5 inch Negatives, Grav-R, Jackson, Joe - Copy,undated + + + + + + 5 + 188 + 3.5 x 4.5 inch Negatives, Grav-R, Jackson, John - 11-month-old,undated + + + + + + 5 + 189 + 3.5 x 4.5 inch Negatives, Grav-R, Jackson, Lewis E. - Copy,undated + + + + + + 5 + 190 + 3.5 x 4.5 inch Negatives, Grav-R, Jackson, Sue,undated + + + + + + 5 + 191 + 3.5 x 4.5 inch Negatives, Grav-R, Jackson, T.G.,undated + + + + + + 5 + 192 + 3.5 x 4.5 inch Negatives, Grav-R, Jackson, Terry,undated + + + + + + 5 + 193 + 3.5 x 4.5 inch Negatives, Grav-R, Jacobs, Rose,undated + + + + + + 5 + 194 + 3.5 x 4.5 inch Negatives, Grav-R, Jagger, Lowell and Wife,undated + + + + + + 5 + 195 + 3.5 x 4.5 inch Negatives, Grav-R, Jamca, D. - Boy,undated + + + + + + 5 + 196 + 3.5 x 4.5 inch Negatives, Grav-R, James, Elmer - Copy, Tiny,January 3, 1968 + + + + + + 5 + 197 + 3.5 x 4.5 inch Negatives, Grav-R, Jarman, Edith - 8-month-old,undated + + + + + + 5 + 198 + 3.5 x 4.5 inch Negatives, Grav-R, Jarman, Jack,undated + + + + + + 5 + 199 + 3.5 x 4.5 inch Negatives, Grav-R, Jeffrey, Florence,undated + + + + + + 5 + 200 + 3.5 x 4.5 inch Negatives, Grav-R, Jennings, [no first name], Mrs.,undated + + + + + + 5 + 201 + 3.5 x 4.5 inch Negatives, Grav-R, Jeppson, Lee,March 10, 1962 + + + + + + 5 + 202 + 3.5 x 4.5 inch Negatives, Grav-R, Jewell, Lyle - Honorable Discharge,undated + + + + + + 5 + 203 + 3.5 x 4.5 inch Negatives, Grav-R, Jewell, [no first name], Mrs.,undated + + + + + + 5 + 204 + 3.5 x 4.5 inch Negatives, Grav-R, Jewvla, Frank,undated + + + + + + 5 + 205 + 3.5 x 4.5 inch Negatives, Grav-R, Jimenez, Jane - H.S.,undated + + + + + + 5 + 206 + 3.5 x 4.5 inch Negatives, Grav-R, Jimenez, Nicholas,undated + + + + + + 5 + 207 + 3.5 x 4.5 inch Negatives, Grav-R, Johanson, Robin L. - I.D.,undated + + + + + + 5 + 208 + 3.5 x 4.5 inch Negatives, Grav-R, John, Maurice, Jr.,August 26, 1966 + + + + + + 5 + 209 + 3.5 x 4.5 inch Negatives, Grav-R, Johnson, Buell - 7-month-old,1959 + + + + + + 5 + 210 + 3.5 x 4.5 inch Negatives, Grav-R, Johnson, Florence,February 28, 1949 + + + + + + 5 + 211 + 3.5 x 4.5 inch Negatives, Grav-R, Johnson, Jerry Lou,undated + + + + + + 5 + 212 + 3.5 x 4.5 inch Negatives, Grav-R, Johnson, John,undated + + + + + + 5 + 213 + 3.5 x 4.5 inch Negatives, Grav-R, Johnson, Lee - Boy,undated + + + + + + 5 + 214 + 3.5 x 4.5 inch Negatives, Grav-R, Johnson, Martha - Copy,undated + + + + + + 5 + 215 + 3.5 x 4.5 inch Negatives, Grav-R, Johnson, Robt. - Mrs.,undated + + + + + + 5 + 216 + 3.5 x 4.5 inch Negatives, Grav-R, Johnston, Barbara - Copy,undated + + + + + + 5 + 217 + 3.5 x 4.5 inch Negatives, Grav-R, Johnston, James M.,undated + + + + + + 5 + 218 + 3.5 x 4.5 inch Negatives, Grav-R, Johnston, John - Moose Lodge #195; Gas Company,January 26, 1968 + + + + + + 5 + 219 + 3.5 x 4.5 inch Negatives, Grav-R, Johnston, Judy - Passport,undated + + + + + + 5 + 220 + 3.5 x 4.5 inch Negatives, Grav-R, Johnston, Mark,undated + + + + + + 5 + 221 + 3.5 x 4.5 inch Negatives, Grav-R, Johnston, Ruth - Copy of Image of her 4 Brothers,undated + + + + + + 5 + 222 + 3.5 x 4.5 inch Negatives, Grav-R, Jones, Bob - 1-year-old,undated + + + + + + 5 + 223 + 3.5 x 4.5 inch Negatives, Grav-R, Jones, Dick,undated + + + + + + 5 + 224 + 3.5 x 4.5 inch Negatives, Grav-R, Jones, Howard L. - Copy,undated + + + + + + 5 + 225 + 3.5 x 4.5 inch Negatives, Grav-R, Jones, Jean (Mrs. Flynn) - I.D.,May 15, 1963 + + + + + + 5 + 226 + 3.5 x 4.5 inch Negatives, Grav-R, Jones, Jim,undated + + + + + + 5 + 227 + 3.5 x 4.5 inch Negatives, Grav-R, Jones, John,undated + + + + + + 5 + 228 + 3.5 x 4.5 inch Negatives, Grav-R, Jones, Kay,undated + + + + + + 5 + 229 + 3.5 x 4.5 inch Negatives, Grav-R, Jones, Lynn,undated + + + + + + 5 + 230 + 3.5 x 4.5 inch Negatives, Grav-R, Jones, Robert,undated + + + + + + 5 + 231 + 3.5 x 4.5 inch Negatives, Grav-R, Jones, Ted,undated + + + + + + 5 + 232 + 3.5 x 4.5 inch Negatives, Grav-R, Jones, W. - Mrs.,March 26, 1955 + + + + + + 5 + 233 + 3.5 x 4.5 inch Negatives, Grav-R, Jones, Wallace,February 20, 1965 + + + + + + 5 + 234 + 3.5 x 4.5 inch Negatives, Grav-R, Jordan, Paul, Dr.,undated + + + + + + 5 + 235 + 3.5 x 4.5 inch Negatives, Grav-R, Joseph, Marie,undated + + + + + + 5 + 236 + 3.5 x 4.5 inch Negatives, Grav-R, Joslin, Gail,undated + + + + + + 5 + 237 + 3.5 x 4.5 inch Negatives, Grav-R, Joslin, R.E., Sr.,undated + + + + + + 5 + 238 + 3.5 x 4.5 inch Negatives, Grav-R, Joslin, Sue,undated + + + + + + 5 + 239 + 3.5 x 4.5 inch Negatives, Grav-R, Jourdain, Inio,undated + + + + + + 5 + 240 + 3.5 x 4.5 inch Negatives, Grav-R, Judge, James,December 31, 1969 + + + + + + 5 + 241 + 3.5 x 4.5 inch Negatives, Grav-R, Juntunsen, Edna,undated + + + + + + 5 + 242 + 3.5 x 4.5 inch Negatives, Grav-R, Kahl, John N.,undated + + + + + + 5 + 243 + 3.5 x 4.5 inch Negatives, Kampt, H. - Wedding,undated + + + + + + 5 + 244 + 3.5 x 4.5 inch Negatives, Grav-R, Kampral, J.E. - Baby,undated + + + + + + 5 + 245 + 3.5 x 4.5 inch Negatives, Grav-R, Kazmers, N., Dr.,undated + + + + + + 5 + 246 + 3.5 x 4.5 inch Negatives, Grav-R, Keast, George - Wedding,undated + + + + + + 5 + 247 + 3.5 x 4.5 inch Negatives, Grav-R, Keebough, John,undated + + + + + + 5 + 248 + 3.5 x 4.5 inch Negatives, Grav-R, Keene, Carol B.,undated + + + + + + 5 + 249 + 3.5 x 4.5 inch Negatives, Grav-R, Keene, Duane,undated + + + + + + 5 + 250 + 3.5 x 4.5 inch Negatives, Grav-R, Keene, Tom,undated + + + + + + 5 + 251 + 3.5 x 4.5 inch Negatives, Grav-R, Keffer, Jerry - Copy - KJIM-TV,undated + + + + + + 5 + 252 + 3.5 x 4.5 inch Negatives, Grav-R, Keller, Walter,undated + + + + + + 5 + 253 + 3.5 x 4.5 inch Negatives, Grav-R, Kellogg, Betty,undated + + + + + + 5 + 254 + 3.5 x 4.5 inch Negatives, Grav-R, Kempf, Chas. - App. Photographs,undated + + + + + + 5 + 255 + 3.5 x 4.5 inch Negatives, Grav-R, Kennedy, Phillip,undated + + + + + + 5 + 256 + 3.5 x 4.5 inch Negatives, Grav-R, Kenny, Pat,undated + + + + + + 5 + 257 + 3.5 x 4.5 inch Negatives, Grav-R, Kent, Ernest O.,undated + + + + + + 5 + 258 + 3.5 x 4.5 inch Negatives, Grav-R, Ketchum, John and Wife,undated + + + + + + 5 + 259 + 3.5 x 4.5 inch Negatives, Grav-R, Kile, Carol,undated + + + + + + 5 + 260 + 3.5 x 4.5 inch Negatives, Grav-R, Kile, Jean - 8-month-old,undated + + + + + + 5 + 261 + 3.5 x 4.5 inch Negatives, Grav-R, Kilmer, Karon,undated + + + + + + 5 + 262 + 3.5 x 4.5 inch Negatives, Grav-R, King, Helen,undated + + + + + + 5 + 263 + 3.5 x 4.5 inch Negatives, Grav-R, Kinkle, Fred,undated + + + + + + 5 + 264 + 3.5 x 4.5 inch Negatives, Grav-R, Kinkle, Margaret - 6-month-old,undated + + + + + + 5 + 265 + 3.5 x 4.5 inch Negatives, Grav-R, Kipfmueller, Karl,undated + + + + + + 5 + 266 + 3.5 x 4.5 inch Negatives, Grav-R, Kipfmueller, Kate,undated + + + + + + 5 + 267 + 3.5 x 4.5 inch Negatives, Grav-R, Kipfmueller, Leo,undated + + + + + + 5 + 268 + 3.5 x 4.5 inch Negatives, Grav-R, Kipfmueller, R.,undated + + + + + + 5 + 269 + 3.5 x 4.5 inch Negatives, Grav-R, Kirvan, Otis, Mrs. and Son,undated + + + + + + 5 + 270 + 3.5 x 4.5 inch Negatives, Grav-R, Klein, Richard,undated + + + + + + 5 + 271 + 3.5 x 4.5 inch Negatives, Grav-R, Klein, Tom,undated + + + + + + 5 + 272 + 3.5 x 4.5 inch Negatives, Grav-R, Klisch, Mrs. Emma - Passport,March 13, 1965 + + + + + + 5 + 273 + 3.5 x 4.5 inch Negatives, Grav-R, Kloswski, Mr.,undated + + + + + + + 5 + 274 + 3.5 x 4.5 inch Negatives, Grav-R, Kloswski, Mrs.,undated + + + + + + 5 + 275 + 3.5 x 4.5 inch Negatives, Grav-R, Kloswski, Mr. and Mrs.,undated + + + + + + 5 + 276 + 3.5 x 4.5 inch Negatives, Grav-R, Klumpp, Geo. - Copy,undated + + + + + + 5 + 277 + 3.5 x 4.5 inch Negatives, Grav-R, Klumpp, Katherine,undated + + + + + + 5 + 278 + 3.5 x 4.5 inch Negatives, Grav-R, Klumpp, Kendall (4, 1, 1),undated + + + + + + 5 + 279 + 3.5 x 4.5 inch Negatives, Grav-R, Knake, Miss,undated + + + + + + 5 + 280 + 3.5 x 4.5 inch Negatives, Grav-R, Knake, Henrietta,undated + + + + + + 5 + 281 + 3.5 x 4.5 inch Negatives, Grav-R, Kniffin, H. - Baby,undated + + + + + + 5 + 282 + 3.5 x 4.5 inch Negatives, Grav-R, Kniffin, H. - Mom and 2 babies,undated + + + + + + 5 + 283 + 3.5 x 4.5 inch Negatives, Grav-R, Kniffin, John,undated + + + + + + 5 + 284 + 3.5 x 4.5 inch Negatives, Grav-R, Kniffin, Mrs. Ray - Copy, Terry,undated + + + + + + 5 + 285 + 3.5 x 4.5 inch Negatives, Grav-R, Knight, Harold,undated + + + + + + 5 + 286 + 3.5 x 4.5 inch Negatives, Grav-R, Knour, L.,undated + + + + + + 5 + 287 + 3.5 x 4.5 inch Negatives, Grav-R, Knowlton, Sharon,undated + + + + + + 5 + 288 + 3.5 x 4.5 inch Negatives, Grav-R, Knudson, Albert N.,undated + + + + + + 5 + 289 + 3.5 x 4.5 inch Negatives, Grav-R, Kobbe, John,undated + + + + + + 5 + 290 + 3.5 x 4.5 inch Negatives, Grav-R, Kobel, Don,undated + + + + + + 5 + 291 + 3.5 x 4.5 inch Negatives, Grav-R, Kock, Sandy,undated + + + + + + 5 + 292 + 3.5 x 4.5 inch Negatives, Grav-R, Kolarik, Howard E.,undated + + + + + + 5 + 293 + 3.5 x 4.5 inch Negatives, Grav-R, Kormexl, Harry,undated + + + + + + 5 + 294 + 3.5 x 4.5 inch Negatives, Grav-R, Kornexl, J.W.,undated + + + + + + 5 + 295 + 3.5 x 4.5 inch Negatives, Grav-R, Kornexl, Myrtle - 1st Communion - 2 Girls,undated + + + + + + 5 + 296 + 3.5 x 4.5 inch Negatives, Grav-R, Kornexl, Myrtle - Certificate for Nursing,undated + + + + + + 5 + 297 + 3.5 x 4.5 inch Negatives, Grav-R, Korniski, Stanley,undated + + + + + + 5 + 298 + 3.5 x 4.5 inch Negatives, Grav-R, Kortman, Gloria,undated + + + + + + 5 + 299 + 3.5 x 4.5 inch Negatives, Grav-R, Krgar, [no first name],undated + + + + + + 5 + 300 + 3.5 x 4.5 inch Negatives, Grav-R, Kriesche, Gerald - Child,undated + + + + + + 5 + 301 + 3.5 x 4.5 inch Negatives, Grav-R, Kripa, Orma M.,July 7, 1959 + + + + + + 5 + 302 + 3.5 x 4.5 inch Negatives, Grav-R, Kuhlman, Al,undated + + + + + + 5 + 303 + 3.5 x 4.5 inch Negatives, Grav-R, Kuhlman, Helen,undated + + + + + + 5 + 304 + 3.5 x 4.5 inch Negatives, Grav-R, Kuhlman, LeRoy - 1-year-old,undated + + + + + + 5 + 305 + 3.5 x 4.5 inch Negatives, Grav-R, Kullman, Betty,undated + + + + + + 5 + 306 + 3.5 x 4.5 inch Negatives, Grav-R, Kullman, LeRoy - Copy of Honorable Discharge,undated + + + + + + 5 + 307 + 3.5 x 4.5 inch Negatives, Grav-R, Kullman, Lillian,undated + + + + + + 5 + 308 + 3.5 x 4.5 inch Negatives, Grav-R, Kullman, Raymond,undated + + + + + + 5 + 309 + 3.5 x 4.5 inch Negatives, Grav-R, Kullman, Raymond - Wedding,undated + + + + + + 5 + 310 + 3.5 x 4.5 inch Negatives, Grav-R, Kullman, Rosie,undated + + + + + + 5 + 311 + 3.5 x 4.5 inch Negatives, Grav-R, Kunkle, Dan,undated + + + + + + 5 + 312 + 3.5 x 4.5 inch Negatives, Grav-R, Kurunsaari, Gerald,undated + + + + + + 5 + 313 + 3.5 x 4.5 inch Negatives, Grav-R, Kuzma, Joe,April 11, 1969 + + + + + + 5 + 314 + 3.5 x 4.5 inch Negatives, Grav-R, Kye, Harry C. - Copy,undated + + + + + + 5 + 315 + 3.5 x 4.5 inch Negatives, Grav-R, Kyser, Barbara,undated + + + + + + 5 + 316 + 3.5 x 4.5 inch Negatives, Grav-R, Kyser, Vern,undated + + + + + + 5 + 317 + 3.5 x 4.5 inch Negatives, Grav-R, LaBrecque, Larry,undated + + + + + + 5 + 318 + 3.5 x 4.5 inch Negatives, Grav-R, Lackie, Christine,undated + + + + + + 5 + 319 + 3.5 x 4.5 inch Negatives, Grav-R, Lackie, Don - 2 Children,undated + + + + + + 5 + 320 + 3.5 x 4.5 inch Negatives, Grav-R, Laidley, Bob,undated + + + + + + 5 + 321 + 3.5 x 4.5 inch Negatives, Grav-R, Laidley, Mary Kay,undated + + + + + + 5 + 322 + 3.5 x 4.5 inch Negatives, Grav-R, Lake Mashagama, Ontario, Canada,June 15, 1935 + + + + + + 5 + 323 + 3.5 x 4.5 inch Negatives, Grav-R, Lakely, Esther,February 10, 1967 + + + + + + 5 + 324 + 3.5 x 4.5 inch Negatives, Grav-R, LaLone, Helen,undated + + + + + + 5 + 325 + 3.5 x 4.5 inch Negatives, Grav-R, Lambert, Norman, Mrs. - Copy,undated + + + + + + 5 + 326 + 3.5 x 4.5 inch Negatives, Grav-R, Lampky, Jim, Dr., and Wife,May 20, 1968 + + + + + + 5 + 327 + 3.5 x 4.5 inch Negatives, Grav-R, Landivehr, Wm.,undated + + + + + + 5 + 328 + 3.5 x 4.5 inch Negatives, Grav-R, Landon, Dorothy - Copy,July 10, 1961 + + + + + + 5 + 329 + 3.5 x 4.5 inch Negatives, Grav-R, Landon, Lloyd, Jr.,June 24,1968 + + + + + + 5 + 330 + 3.5 x 4.5 inch Negatives, Grav-R, Lannen, Jude,undated + + + + + + 5 + 331 + 3.5 x 4.5 inch Negatives, Grav-R, Laphan, Verlin,undated + + + + + + 5 + 332 + 3.5 x 4.5 inch Negatives, Grav-R, LaPointe, C.,October 27, 1962 + + + + + + 5 + 333 + 3.5 x 4.5 inch Negatives, Grav-R, LaPointe, Cyniel - I.D.,undated + + + + + + 5 + 334 + 3.5 x 4.5 inch Negatives, Grav-R, Larsen, Lucene,undated + + + + + + 5 + 335 + 3.5 x 4.5 inch Negatives, Grav-R, Larson, James,undated + + + + + + 5 + 336 + 3.5 x 4.5 inch Negatives, Grav-R, Latham, J. - 6-month-old Girl,August 10, 1962 + + + + + + 5 + 337 + 3.5 x 4.5 inch Negatives, Grav-R, Lawens, Dale,undated + + + + + + 5 + 338 + 3.5 x 4.5 inch Negatives, Grav-R, Lawens, Mark,undated + + + + + + 5 + 339 + 3.5 x 4.5 inch Negatives, Grav-R, Lawens, Wm. and Wife -50th Anniversary,April 14, 1949 + + + + + + 5 + 340 + 3.5 x 4.5 inch Negatives, Grav-R, Lawler, May - Baby,undated + + + + + + 5 + 341 + 3.5 x 4.5 inch Negatives, Grav-R, Lawler, Russell - Baby,undated + + + + + + 5 + 342 + 3.5 x 4.5 inch Negatives, Grav-R, Lawson, Betty, Mrs. - Baby,undated + + + + + + 5 + 343 + 3.5 x 4.5 inch Negatives, Grav-R, Layfield, [no first name] - Baby,undated + + + + + + 5 + 344 + 3.5 x 4.5 inch Negatives, Grav-R, Layfield, Art,undated + + + + + + 5 + 345 + 3.5 x 4.5 inch Negatives, Grav-R, Lea, Chas. (Mr. and Mrs.),November 30, 1968 + + + + + + 5 + 346 + 3.5 x 4.5 inch Negatives, Grav-R, Leasher, Bill,undated + + + + + + 5 + 347 + 3.5 x 4.5 inch Negatives, Grav-R, Ledbeter, Mrs.,December 16, 1967 + + + + + + 5 + 348 + 3.5 x 4.5 inch Negatives, Grav-R, Lee, Chas.,undated + + + + + + 5 + 349 + 3.5 x 4.5 inch Negatives, Grav-R, Lee, Don,undated + + + + + + 5 + 350 + 3.5 x 4.5 inch Negatives, Grav-R, Leffingwell, [no first name],January 3, 1949 + + + + + + 5 + 351 + 3.5 x 4.5 inch Negatives, Grav-R, Leffingwell, F.C. - 2 Babies,undated + + + + + + 5 + 352 + 3.5 x 4.5 inch Negatives, Grav-R, Leffingwell, June,undated + + + + + + 5 + 353 + 3.5 x 4.5 inch Negatives, Grav-R, Leffingwell, Michael,undated + + + + + + 5 + 354 + 3.5 x 4.5 inch Negatives, Grav-R, Leffingwell, Milo,undated + + + + + + 5 + 355 + 3.5 x 4.5 inch Negatives, Grav-R, Left, Gerald,undated + + + + + + 5 + 356 + 3.5 x 4.5 inch Negatives, Grav-R, Leinake, Don,undated + + + + + + 5 + 357 + 3.5 x 4.5 inch Negatives, Grav-R, Leiter, Jean,undated + + + + + + 5 + 358 + 3.5 x 4.5 inch Negatives, Grav-R, Leiter, Ruth,undated + + + + + + 5 + 359 + 3.5 x 4.5 inch Negatives, Grav-R, Lemley, Freda,undated + + + + + + 5 + 360 + 3.5 x 4.5 inch Negatives, Grav-R, Lennox, Phylliss,undated + + + + + + 5 + 361 + 3.5 x 4.5 inch Negatives, Grav-R, Leonard, Alfred,undated + + + + + + 5 + 362 + 3.5 x 4.5 inch Negatives, Grav-R, Leonard, Ella - Copy,undated + + + + + + 5 + 363 + 3.5 x 4.5 inch Negatives, Grav-R, Leonard, Miss Gale - H.S.,undated + + + + + + 5 + 364 + 3.5 x 4.5 inch Negatives, Grav-R, Leonard, Jim,undated + + + + + + 5 + 365 + 3.5 x 4.5 inch Negatives, Grav-R, Leonard, Marge,December 20, 1967 + + + + + + 5 + 366 + 3.5 x 4.5 inch Negatives, Grav-R, Leonard, Roy,February 4, 1968 + + + + + + 5 + 367 + 3.5 x 4.5 inch Negatives, Grav-R, Leposky, Lillian,undated + + + + + + 5 + 368 + 3.5 x 4.5 inch Negatives, Grav-R, Lessiter, Barbara,undated + + + + + + 5 + 369 + 3.5 x 4.5 inch Negatives, Grav-R, Letson, Eva,undated + + + + + + 5 + 370 + 3.5 x 4.5 inch Negatives, Grav-R, Lewis, Harriet,undated + + + + + + 5 + 371 + 3.5 x 4.5 inch Negatives, Grav-R, Lewis, Jack,undated + + + + + + 5 + 372 + 3.5 x 4.5 inch Negatives, Grav-R, Lewis, Janet,undated + + + + + + 5 + 373 + 3.5 x 4.5 inch Negatives, Grav-R, Ley, Edward - Wedding,undated + + + + + + 5 + 374 + 3.5 x 4.5 inch Negatives, Grav-R, Lezen, Stella - Copy,undated + + + + + + 5 + 375 + 3.5 x 4.5 inch Negatives, Grav-R, Lichert, Dolph,undated + + + + + + 5 + 376 + 3.5 x 4.5 inch Negatives, Grav-R, Lightner, Alma - Copy,undated + + + + + + 5 + 377 + 3.5 x 4.5 inch Negatives, Grav-R, Lightner, Elma - Copy,undated + + + + + + 5 + 378 + 3.5 x 4.5 inch Negatives, Grav-R, Lincoln, Abe,undated + + + + + + 5 + 379 + 3.5 x 4.5 inch Negatives, Grav-R, Lirones, Dan,1953 + + + + + + 5 + 380 + 3.5 x 4.5 inch Negatives, Grav-R, Little, Blanche - Copy,undated + + + + + + 5 + 380 + 3.5 x 4.5 inch Negatives, Grav-R, Little, Jack - 1-year-old girl,undated + + + + + + 5 + 381 + 3.5 x 4.5 inch Negatives, Grav-R, Little, Pat,undated + + + + + + 5 + 382 + 3.5 x 4.5 inch Negatives, Grav-R, Lloyd, Ada,undated + + + + + + 5 + 383 + 3.5 x 4.5 inch Negatives, Grav-R, Lofgren, Theo P.,July 7, 1959 + + + + + + 5 + 384 + 3.5 x 4.5 inch Negatives, Grav-R, Logan, Wm. - I.D.,undated + + + + + + 5 + 385 + 3.5 x 4.5 inch Negatives, Grav-R, London, Cecil J.,undated + + + + + + 5 + 386 + 3.5 x 4.5 inch Negatives, Grav-R, London, Dorothy,undated + + + + + + 5 + 387 + 3.5 x 4.5 inch Negatives, Grav-R, Long, Brian,undated + + + + + + 5 + 388 + 3.5 x 4.5 inch Negatives, Grav-R, Long, Doris M., Mrs.,undated + + + + + + 5 + 389 + 3.5 x 4.5 inch Negatives, Grav-R, Longlois, Jim - 13-month-old,undated + + + + + + 5 + 390 + 3.5 x 4.5 inch Negatives, Grav-R, Loomis, Betty - 2.5-year-old,undated + + + + + + 5 + 391 + 3.5 x 4.5 inch Negatives, Grav-R, Loomis, Buhl - Boy,undated + + + + + + 5 + 392 + 3.5 x 4.5 inch Negatives, Grav-R, Loomis, Donald,undated + + + + + + 5 + 393 + 3.5 x 4.5 inch Negatives, Grav-R, Loomis, Florence - Copy,undated + + + + + + 5 + 394 + 3.5 x 4.5 inch Negatives, Grav-R, Loomis, Iva,July 7, 1959 + + + + + + 5 + 395 + 3.5 x 4.5 inch Negatives, Grav-R, Loomis, R. - 1.5 -year-old,undated + + + + + + 5 + 396 + 3.5 x 4.5 inch Negatives, Grav-R, Loomis, Virgil,August 2, 1969 + + + + + + 5 + 397 + 3.5 x 4.5 inch Negatives, Grav-R, Loomis, W.R.,undated + + + + + + 5 + 398 + 3.5 x 4.5 inch Negatives, Grav-R, Lorency, Donald - Copy,undated + + + + + + 5 + 399 + 3.5 x 4.5 inch Negatives, Grav-R, Lorency, Rose Marie,undated + + + + + + 5 + 400 + 3.5 x 4.5 inch Negatives, Grav-R, Lorenz, Mary Lou,undated + + + + + + 5 + 401 + 3.5 x 4.5 inch Negatives, Grav-R, Lorenz, Pete,undated + + + + + + 5 + 402 + 3.5 x 4.5 inch Negatives, Grav-R, Losey, Paul,undated + + + + + + 5 + 403 + 3.5 x 4.5 inch Negatives, Grav-R, Losey, Shirley,undated + + + + + + 5 + 404 + 3.5 x 4.5 inch Negatives, Grav-R, Louch, Beverly,undated + + + + + + 5 + 405 + 3.5 x 4.5 inch Negatives, Grav-R, Lough, Gene,undated + + + + + + 5 + 406 + 3.5 x 4.5 inch Negatives, Grav-R, Lough, Richard - Baby Girl,undated + + + + + + 5 + 407 + 3.5 x 4.5 inch Negatives, Grav-R, Love, Bessie,undated + + + + + + 5 + 408 + 3.5 x 4.5 inch Negatives, Grav-R, Lovejoy, Pat,undated + + + + + + 5 + 409 + 3.5 x 4.5 inch Negatives, Grav-R, Lowe, Nick,undated + + + + + + 5 + 410 + 3.5 x 4.5 inch Negatives, Grav-R, Lowther, Ed and Wife,January 8, 1966 + + + + + + 5 + 411 + 3.5 x 4.5 inch Negatives, Grav-R, Lowther, Pat,undated + + + + + + 5 + 412 + 3.5 x 4.5 inch Negatives, Grav-R, Luce, Cliff,August 30, 1967 + + + + + + 5 + 413 + 3.5 x 4.5 inch Negatives, Grav-R, Ludtke, Ted,March 3, 1967 + + + + + + 5 + 414 + 3.5 x 4.5 inch Negatives, Grav-R, Ludwig, Chas. - Copy,December 1961 + + + + + + 5 + 415 + 3.5 x 4.5 inch Negatives, Grav-R, Ludwig, Evelyn,undated + + + + + + 5 + 416 + 3.5 x 4.5 inch Negatives, Grav-R, Ludwig, Phyllis,undated + + + + + + 5 + 417 + 3.5 x 4.5 inch Negatives, Grav-R, Lueder, Irvin,undated + + + + + + 5 + 418 + 3.5 x 4.5 inch Negatives, Grav-R, Lueder, Otis and Wife,April 30, 1966 + + + + + + 5 + 419 + 3.5 x 4.5 inch Negatives, Grav-R, Lueder, Paul,undated + + + + + + 5 + 420 + 3.5 x 4.5 inch Negatives, Grav-R, Lumbert, A. - Baby,undated + + + + + + 5 + 421 + 3.5 x 4.5 inch Negatives, Grav-R, Lynch, Raymond,undated + + + + + + 5 + 422 + 3.5 x 4.5 inch Negatives, Grav-R, Lyon, Sandra,undated + + + + + + 5 + 423 + 3.5 x 4.5 inch Negatives, Grav-R, Lyons, Francis,undated + + + + + + 5 + 424 + 3.5 x 4.5 inch Negatives, Grav-R, Lyou, Udele,undated + + + + + + 5 + 425 + 3.5 x 4.5 inch Negatives, Grav-R, MacArthur, Robert Franklin,undated + + + + + + 5 + 426 + 3.5 x 4.5 inch Negatives, Grav-R, MacDonald, Bob,undated + + + + + + 5 + 427 + 3.5 x 4.5 inch Negatives, Grav-R, MacGregor, Donald,undated + + + + + + 5 + 428 + 3.5 x 4.5 inch Negatives, Grav-R, Machuta, Frank,undated + + + + + + 5 + 429 + 3.5 x 4.5 inch Negatives, Grav-R, Machuta, Hope,undated + + + + + + 5 + 430 + 3.5 x 4.5 inch Negatives, Grav-R, Machuta, John - Girl,undated + + + + + + 5 + 431 + 3.5 x 4.5 inch Negatives, Grav-R, Machuta, Regina,undated + + + + + + 5 + 432 + 3.5 x 4.5 inch Negatives, Grav-R, MacInoy, Ruth,undated + + + + + + 5 + 433 + 3.5 x 4.5 inch Negatives, Grav-R, Mahaffey, Evelyn,undated + + + + + + 5 + 434 + 3.5 x 4.5 inch Negatives, Grav-R, Mahaffey, Helen,undated + + + + + + 5 + 435 + 3.5 x 4.5 inch Negatives, Grav-R, Mahaffey, Joe and Wife,undated + + + + + + 5 + 436 + 3.5 x 4.5 inch Negatives, Grav-R, Mahon, Chas. - Copy,undated + + + + + + 5 + 437 + 3.5 x 4.5 inch Negatives, Grav-R, Mallay, Chas.,undated + + + + + + 5 + 438 + 3.5 x 4.5 inch Negatives, Grav-R, Mallay, Nathan,undated + + + + + + 5 + 439 + 3.5 x 4.5 inch Negatives, Grav-R, Maltby, Rozella,undated + + + + + + 5 + 440 + 3.5 x 4.5 inch Negatives, Grav-R, Manausa, Thomas - Boy,undated + + + + + + 5 + 441 + 3.5 x 4.5 inch Negatives, Grav-R, Mardiny, Benny,undated + + + + + + 5 + 442 + 3.5 x 4.5 inch Negatives, Grav-R, Margenstern, Larry - Copy,undated + + + + + + 5 + 443 + 3.5 x 4.5 inch Negatives, Grav-R, Marino, Mallony,undated + + + + + + 5 + 444 + 3.5 x 4.5 inch Negatives, Grav-R, Markham, M.,December 20, 1968 + + + + + + 5 + 445 + 3.5 x 4.5 inch Negatives, Grav-R, Marks, Betty,undated + + + + + + 5 + 446 + 3.5 x 4.5 inch Negatives, Grav-R, Marks, Florence,undated + + + + + + 5 + 447 + 3.5 x 4.5 inch Negatives, Grav-R, Marks, George,undated + + + + + + 5 + 448 + 3.5 x 4.5 inch Negatives, Grav-R, Marks, Hrisovla, Mrs.,June 24, 1969 + + + + + + 5 + 449 + 3.5 x 4.5 inch Negatives, Grav-R, Marks, Ike,undated + + + + + + 5 + 450 + 3.5 x 4.5 inch Negatives, Grav-R, Marquardt, Dick,undated + + + + + + 5 + 451 + 3.5 x 4.5 inch Negatives, Grav-R, Mars, Jack,undated + + + + + + 5 + 452 + 3.5 x 4.5 inch Negatives, Grav-R, Marsh, M. G., Mrs.,October 13, 1969 + + + + + + 5 + 453 + 3.5 x 4.5 inch Negatives, Grav-R, Martin, Harry,undated + + + + + + 5 + 454 + 3.5 x 4.5 inch Negatives, Grav-R, Martin, K.P., Mrs.,undated + + + + + + 5 + 455 + 3.5 x 4.5 inch Negatives, Grav-R, Martin, Leon,undated + + + + + + 5 + 456 + 3.5 x 4.5 inch Negatives, Grav-R, Martin, Marvin - Copy,undated + + + + + + 5 + 457 + 3.5 x 4.5 inch Negatives, Grav-R, Martin, Nancy,undated + + + + + + 5 + 458 + 3.5 x 4.5 inch Negatives, Grav-R, Martin, Wilford - Copy,July 16, 1963 + + + + + + 5 + 459 + 3.5 x 4.5 inch Negatives, Grav-R, Martinez, Dorothy,undated + + + + + + 5 + 460 + 3.5 x 4.5 inch Negatives, Grav-R, Mashagama Trip with a Man,undated + + + + + + 5 + 461 + 3.5 x 4.5 inch Negatives, Grav-R, Masonic Lodge - Copy -Ed Bailey,undated + + + + + + 5 + 462 + 3.5 x 4.5 inch Negatives, Grav-R, Massey, Royal,undated + + + + + + 5 + 463 + 3.5 x 4.5 inch Negatives, Grav-R, Mathews, Dave and Girlfriend,undated + + + + + + 5 + 464 + 3.5 x 4.5 inch Negatives, Grav-R, Matts, G.,October 21, 1947 + + + + + + 5 + 465 + 3.5 x 4.5 inch Negatives, Grav-R, Maxon, [no first name] - Boy,undated + + + + + + 5 + 466 + 3.5 x 4.5 inch Negatives, Grav-R, Maxon, Dorothy,undated + + + + + + 5 + 467 + 3.5 x 4.5 inch Negatives, Grav-R, Maxwell, William,undated + + + + + + 5 + 468 + 3.5 x 4.5 inch Negatives, Grav-R, Maybee, Dale,undated + + + + + + 5 + 469 + 3.5 x 4.5 inch Negatives, Grav-R, Maybee, Milan,undated + + + + + + 5 + 470 + 3.5 x 4.5 inch Negatives, Grav-R, Mayville, Anne,1950 + + + + + + 5 + 471 + 3.5 x 4.5 inch Negatives, Grav-R, Mayville, E. Arvne,undated + + + + + + 5 + 472 + 3.5 x 4.5 inch Negatives, Grav-R, McBride, Eugene (Junney),undated + + + + + + 5 + 473 + 3.5 x 4.5 inch Negatives, Grav-R, McBride, Nelson -4-month-old,undated + + + + + + 5 + 474 + 3.5 x 4.5 inch Negatives, Grav-R, McBride, Rachel,December 2, 1967 + + + + + + 5 + 475 + 3.5 x 4.5 inch Negatives, Grav-R, McBride, Rutt (Rutney),undated + + + + + + 5 + 476 + 3.5 x 4.5 inch Negatives, Grav-R, McCabe, Jim - Copy,undated + + + + + + 5 + 477 + 3.5 x 4.5 inch Negatives, Grav-R, McCarthy, [no first name],undated + + + + + + 5 + 478 + 3.5 x 4.5 inch Negatives, Grav-R, McCarthy, Janice,undated + + + + + + 5 + 479 + 3.5 x 4.5 inch Negatives, Grav-R, McCaul, Gerald - 1-year-old Boy,undated + + + + + + 5 + 480 + 3.5 x 4.5 inch Negatives, Grav-R, McClintic, Gary,undated + + + + + + 5 + 481 + 3.5 x 4.5 inch Negatives, Grav-R, McClintic, Shirley,undated + + + + + + 5 + 482 + 3.5 x 4.5 inch Negatives, Grav-R, McConnell, Chas. - Daughter's Wedding,undated + + + + + + 5 + 483 + 3.5 x 4.5 inch Negatives, Grav-R, McConnell, Jesse,undated + + + + + + 5 + 484 + 3.5 x 4.5 inch Negatives, Grav-R, McConnell, Matt,undated + + + + + + 5 + 485 + 3.5 x 4.5 inch Negatives, Grav-R, McConnell, Nikki,July 24, 1967 + + + + + + 5 + 486 + 3.5 x 4.5 inch Negatives, Grav-R, McCord, Gerald - 8- and 12-year-olds,undated + + + + + + 5 + 487 + 3.5 x 4.5 inch Negatives, Grav-R, McCord, Jerry -2 Children,undated + + + + + + 5 + 488 + 3.5 x 4.5 inch Negatives, Grav-R, McCrimmon, Betty,undated + + + + + + 5 + 489 + 3.5 x 4.5 inch Negatives, Grav-R, McCullough, Ron,undated + + + + + + 5 + 490 + 3.5 x 4.5 inch Negatives, Grav-R, McDonald, [no first name],undated + + + + + + 5 + 491 + 3.5 x 4.5 inch Negatives, Grav-R, McDonald, Barbara - 2-year-old,undated + + + + + + 5 + 492 + 3.5 x 4.5 inch Negatives, Grav-R, McDonald, Barbara - 2 Children - 2- and 8-year-olds,undated + + + + + + 5 + 493 + 3.5 x 4.5 inch Negatives, Grav-R, McDonald, Chas.,April 7, 1961 + + + + + + 5 + 494 + 3.5 x 4.5 inch Negatives, Grav-R, McDonald, Ed - 7-month-old,September 1961 + + + + + + 5 + 495 + 3.5 x 4.5 inch Negatives, Grav-R, McDonald, Elton -18-month-old,undated + + + + + + 5 + 496 + 3.5 x 4.5 inch Negatives, Grav-R, McDonald, Elwood, and Mrs.,undated + + + + + + 5 + 497 + 3.5 x 4.5 inch Negatives, Grav-R, McDonald, Fred - Family, Copy,undated + + + + + + 5 + 498 + 3.5 x 4.5 inch Negatives, Grav-R, McDonald, Gerald -7-month-old (2),September 20, 1966; December 12, 1967 + + + + + + 5 + 499 + 3.5 x 4.5 inch Negatives, Grav-R, McDonald, John - 8-month-old,undated + + + + + + 5 + 500 + 3.5 x 4.5 inch Negatives, Grav-R, McDonald, Kay - 7-month-old,undated + + + + + + 5 + 501 + 3.5 x 4.5 inch Negatives, Grav-R, McDonald, Mike,September 28, 1968 + + + + + + 5 + 502 + 3.5 x 4.5 inch Negatives, Grav-R, McDowell, M.K., Mrs. (3),June 25, 1963; June 12, 1965; August 24, 1966 + + + + + + 5 + 503 + 3.5 x 4.5 inch Negatives, Grav-R, McIntosh, Ed - 2 Children,undated + + + + + + 5 + 504 + 3.5 x 4.5 inch Negatives, Grav-R, McKenzie, John,undated + + + + + + 5 + 505 + 3.5 x 4.5 inch Negatives, Grav-R, McKinnon, Archie,undated + + + + + + 5 + 506 + 3.5 x 4.5 inch Negatives, Grav-R, McLachlin, Betty,undated + + + + + + 5 + 507 + 3.5 x 4.5 inch Negatives, Grav-R, McLacklin, Dolores,undated + + + + + + 5 + 508 + 3.5 x 4.5 inch Negatives, Grav-R, McLacklin, Maxine,undated + + + + + + 5 + 509 + 3.5 x 4.5 inch Negatives, Grav-R, McNamara, Raymond - Copy,undated + + + + + + 5 + 510 + 3.5 x 4.5 inch Negatives, Grav-R, McNeal, Al,August 30, 1966 + + + + + + 5 + 511 + 3.5 x 4.5 inch Negatives, Grav-R, McNeal, Francis,July 7, 1959 + + + + + + 5 + 512 + 3.5 x 4.5 inch Negatives, Grav-R, McNeal, Lisa,March 25, 1961 + + + + + + 5 + 513 + 3.5 x 4.5 inch Negatives, Grav-R, McNeil, W.,undated + + + + + + 5 + 514 + 3.5 x 4.5 inch Negatives, Grav-R, McNeilley, R.,undated + + + + + + 5 + 515 + 3.5 x 4.5 inch Negatives, Grav-R, McNerney, Chas.,undated + + + + + + 5 + 516 + 3.5 x 4.5 inch Negatives, Grav-R, McPhail, John,undated + + + + + + 5 + 517 + 3.5 x 4.5 inch Negatives, Grav-R, McQuaid, Sue,undated + + + + + + 5 + 518 + 3.5 x 4.5 inch Negatives, Grav-R, McQueen, Carl,undated + + + + + + 5 + 519 + 3.5 x 4.5 inch Negatives, Grav-R, McQueen, Dick,undated + + + + + + 5 + 520 + 3.5 x 4.5 inch Negatives, Grav-R, McQueen, Lee - Daughter and Child,undated + + + + + + 5 + 521 + 3.5 x 4.5 inch Negatives, Grav-R, McQueen, Richard - Copy,undated + + + + + + 5 + 522 + 3.5 x 4.5 inch Negatives, Grav-R, McQueen, Roy,undated + + + + + + 5 + 523 + 3.5 x 4.5 inch Negatives, Grav-R, McQuirk, Gerry, Mrs. - Copy,undated + + + + + + 5 + 524 + 3.5 x 4.5 inch Negatives, Grav-R, McTaggert, Pat, Mrs.,undated + + + + + + 5 + 525 + 3.5 x 4.5 inch Negatives, Grav-R, McWilliams, Karin,undated + + + + + + 5 + 526 + 3.5 x 4.5 inch Negatives, Grav-R, Meade, James,1957 + + + + + + 5 + 527 + 3.5 x 4.5 inch Negatives, Grav-R, Meade, Jim -2 Children,undated + + + + + + 5 + 528 + 3.5 x 4.5 inch Negatives, Grav-R, Meade, R.,undated + + + + + + 5 + 529 + 3.5 x 4.5 inch Negatives, Grav-R, Meade, Randall,undated + + + + + + 5 + 530 + 3.5 x 4.5 inch Negatives, Grav-R, Meffert, Laura - 2- and 3-year-olds,undated + + + + + + 5 + 531 + 3.5 x 4.5 inch Negatives, Grav-R, Meister, E.J.,undated + + + + + + 5 + 532 + 3.5 x 4.5 inch Negatives, Grav-R, Meller, Ernest, Mrs.,undated + + + + + + 5 + 533 + 3.5 x 4.5 inch Negatives, Grav-R, Merrifield, Barbara,undated + + + + + + 5 + 534 + 3.5 x 4.5 inch Negatives, Grav-R, Merrihew, Theron,undated + + + + + + 5 + 535 + 3.5 x 4.5 inch Negatives, Grav-R, Merrill, Dorothy,undated + + + + + + 5 + 536 + 3.5 x 4.5 inch Negatives, Grav-R, Merritt, Gene - 11-month-old,undated + + + + + + 5 + 537 + 3.5 x 4.5 inch Negatives, Grav-R, Meyer, Angel,undated + + + + + + 5 + 538 + 3.5 x 4.5 inch Negatives, Grav-R, Michigan Child Guidance Clinic,undated + + + + + + 5 + 539 + 3.5 x 4.5 inch Negatives, Grav-R, Miller, A.E.,undated + + + + + + 5 + 540 + 3.5 x 4.5 inch Negatives, Grav-R, Miller, Carol,undated + + + + + + 5 + 541 + 3.5 x 4.5 inch Negatives, Grav-R, Miller, Geneve - Copy,undated + + + + + + 5 + 542 + 3.5 x 4.5 inch Negatives, Grav-R, Miller, Jack,undated + + + + + + 5 + 543 + 3.5 x 4.5 inch Negatives, Grav-R, Miller, Jerry - Copy,undated + + + + + + 5 + 544 + 3.5 x 4.5 inch Negatives, Grav-R, Miller, Larry,undated + + + + + + 5 + 545 + 3.5 x 4.5 inch Negatives, Grav-R, Miller, Lona,undated + + + + + + 5 + 546 + 3.5 x 4.5 inch Negatives, Grav-R, Milligan, Don,1954 + + + + + + 5 + 547 + 3.5 x 4.5 inch Negatives, Grav-R, Milligan, Don and Julia, Mrs. - 1st Communion,undated + + + + + + 5 + 548 + 3.5 x 4.5 inch Negatives, Grav-R, Milligan, Geo.,undated + + + + + + 5 + 549 + 3.5 x 4.5 inch Negatives, Grav-R, Milligan, Marianne, [original]; Resitting (2),September 14, 1968; May 3, 1969 + + + + + + 5 + 550 + 3.5 x 4.5 inch Negatives, Grav-R, Mills, Agnes,undated + + + + + + 5 + 551 + 3.5 x 4.5 inch Negatives, Grav-R, Mills, Mary,undated + + + + + + 5 + 552 + 3.5 x 4.5 inch Negatives, Grav-R, Minics, James and Walt,January 18, 1968 + + + + + + 5 + 553 + 3.5 x 4.5 inch Negatives, Grav-R, Missersmith, Russell - 3 Children,undated + + + + + + 5 + 554 + 3.5 x 4.5 inch Negatives, Grav-R, Mississagua River, Ontario, Canada,undated + + + + + + 5 + 555 + 3.5 x 4.5 inch Negatives, Grav-R, Mitchell, Ron,undated + + + + + + 5 + 556 + 3.5 x 4.5 inch Negatives, Grav-R, Moe, Edwin,undated + + + + + + 5 + 557 + 3.5 x 4.5 inch Negatives, Grav-R, Moeggenberg, Harry and Wife,December 5, 1967 + + + + + + 5 + 558 + 3.5 x 4.5 inch Negatives, Grav-R, Moerlins, Mike,undated + + + + + + 5 + 559 + 3.5 x 4.5 inch Negatives, Grav-R, Mogg, Pete,undated + + + + + + 5 + 560 + 3.5 x 4.5 inch Negatives, Grav-R, Mogg, Reynold - 5-month-old Girl,undated + + + + + + 5 + 561 + 3.5 x 4.5 inch Negatives, Grav-R, Moody, Gorden, Mrs. - Third grade,undated + + + + + + 5 + 562 + 3.5 x 4.5 inch Negatives, Grav-R, Moore, Chester, Mrs.,undated + + + + + + 5 + 563 + 3.5 x 4.5 inch Negatives, Grav-R, Moore, H.E.,undated + + + + + + 5 + 564 + 3.5 x 4.5 inch Negatives, Grav-R, Moore, John - Copy,July 3, 1968 + + + + + + 5 + 565 + 3.5 x 4.5 inch Negatives, Grav-R, Moore, Lena E.,July 7, 1959 + + + + + + 5 + 566 + 3.5 x 4.5 inch Negatives, Grav-R, Moore, Pat - Wedding,undated + + + + + + 5 + 567 + 3.5 x 4.5 inch Negatives, Grav-R, Moore, Robt. - Wedding,undated + + + + + + 5 + 568 + 3.5 x 4.5 inch Negatives, Grav-R, Moore, Ruth,July 7, 1959 + + + + + + 5 + 569 + 3.5 x 4.5 inch Negatives, Grav-R, Moorehead, Wm. - 2-year-old,undated + + + + + + 5 + 570 + 3.5 x 4.5 inch Negatives, Grav-R, Moorre, Lyle - Boy,undated + + + + + + 5 + 571 + 3.5 x 4.5 inch Negatives, Grav-R, Moose, Nan,undated + + + + + + 5 + 572 + 3.5 x 4.5 inch Negatives, Grav-R, Moran, Connie,May 8, 1967 + + + + + + 5 + 573 + 3.5 x 4.5 inch Negatives, Grav-R, Moran, Tony, Mrs. - 2 Children,undated + + + + + + 5 + 574 + 3.5 x 4.5 inch Negatives, Grav-R, Morey, Connie,undated + + + + + + 5 + 575 + 3.5 x 4.5 inch Negatives, Grav-R, Morfort, [no first name],undated + + + + + + 5 + 576 + 3.5 x 4.5 inch Negatives, Grav-R, Morgan, Jerry,undated + + + + + + 5 + 577 + 3.5 x 4.5 inch Negatives, Grav-R, Morrison, Murrey,undated + + + + + + 5 + 578 + 3.5 x 4.5 inch Negatives, Grav-R, Morse, Chester - Copy,undated + + + + + + 5 + 579 + 3.5 x 4.5 inch Negatives, Grav-R, Mosher, Bob,undated + + + + + + 5 + 580 + 3.5 x 4.5 inch Negatives, Grav-R, Mosher, Gene,undated + + + + + + 5 + 581 + 3.5 x 4.5 inch Negatives, Grav-R, Mosher, Norris, Jr.,undated + + + + + + 5 + 582 + 3.5 x 4.5 inch Negatives, Grav-R, Moss, Genna,undated + + + + + + 5 + 583 + 3.5 x 4.5 inch Negatives, Grav-R, Mrazek, J. - 2 Children,undated + + + + + + 5 + 584 + 3.5 x 4.5 inch Negatives, Grav-R, Mueller, James,undated + + + + + + 5 + 585 + 3.5 x 4.5 inch Negatives, Grav-R, Mull, [no first name] (2 envelopes),January 24, 1959 + + + + + + 5 + 586 + 3.5 x 4.5 inch Negatives, Grav-R, Mullet, Wm., Jr.,undated + + + + + + 5 + 587 + 3.5 x 4.5 inch Negatives, Grav-R, Mullikin, Velma,undated + + + + + + 5 + 588 + 3.5 x 4.5 inch Negatives, Grav-R, Mumy, Joyce,undated + + + + + + 5 + 589 + 3.5 x 4.5 inch Negatives, Grav-R, Mumy, Pauline,undated + + + + + + 5 + 590 + 3.5 x 4.5 inch Negatives, Grav-R, Munn, Edna - Copy,undated + + + + + + 5 + 591 + 3.5 x 4.5 inch Negatives, Grav-R, Munn, Geo. and Wife,undated + + + + + + 5 + 592 + 3.5 x 4.5 inch Negatives, Grav-R, Muny, Frank and Wife,undated + + + + + + 5 + 593 + 3.5 x 4.5 inch Negatives, Grav-R, Murphy, John,undated + + + + + + 5 + 594 + 3.5 x 4.5 inch Negatives, Grav-R, Murphy, Kay,undated + + + + + + 5 + 595 + 3.5 x 4.5 inch Negatives, Grav-R, Murphy, Mary S.undated + + + + + + 5 + 596 + 3.5 x 4.5 inch Negatives, Grav-R, Murphy, Leo, Mrs.,undated + + + + + + 5 + 597 + 3.5 x 4.5 inch Negatives, Grav-R, Murphy, Mike,July 15, 1968 + + + + + + 5 + 598 + 3.5 x 4.5 inch Negatives, Grav-R, Murphy, Mike,undated + + + + + + 5 + 599 + 3.5 x 4.5 inch Negatives, Grav-R, Murphy, Pat,undated + + + + + + 5 + 600 + 3.5 x 4.5 inch Negatives, Grav-R, Murphy, Sheila,undated + + + + + + 5 + 601 + 3.5 x 4.5 inch Negatives, Grav-R, Murphy, William F.,undated + + + + + + 5 + 602 + 3.5 x 4.5 inch Negatives, Grav-R, Myers, Eleanor,undated + + + + + + 5 + 603 + 3.5 x 4.5 inch Negatives, Grav-R, Myers, Franch - Copy,undated + + + + + + 5 + 604 + 3.5 x 4.5 inch Negatives, Grav-R, Myers, Kenneth,undated + + + + + + 5 + 605 + 3.5 x 4.5 inch Negatives, Grav-R, Myshack, Adam,undated + + + + + + 5 + 606 + 3.5 x 4.5 inch Negatives, Grav-R, Nagy, Mike - Copy,undated + + + + + + 5 + 607 + 3.5 x 4.5 inch Negatives, Grav-R, Nagy, Rhea,undated + + + + + + 5 + 608 + 3.5 x 4.5 inch Negatives, Grav-R, Nall, Mrs. - Copy 2,undated + + + + + + 5 + 609 + 3.5 x 4.5 inch Negatives, Grav-R, Names, Chas., Mrs.,undated + + + + + + 5 + 610 + 3.5 x 4.5 inch Negatives, Grav-R, Nasku, Sharon,undated + + + + + + 5 + 611 + 3.5 x 4.5 inch Negatives, Grav-R, Naslund, Ruth,undated + + + + + + 5 + 612 + 3.5 x 4.5 inch Negatives, Grav-R, Naumes, Mike, Mrs. - Tommy,undated + + + + + + 5 + 613 + 3.5 x 4.5 inch Negatives, Grav-R, Neale, Lorraine,undated + + + + + + 5 + 614 + 3.5 x 4.5 inch Negatives, Grav-R, Neff, Dinah,undated + + + + + + 5 + 615 + 3.5 x 4.5 inch Negatives, Grav-R, Neff, Jack,September 19, 1967 + + + + + + 5 + 616 + 3.5 x 4.5 inch Negatives, Grav-R, Neff, Joyce,undated + + + + + + 5 + 617 + 3.5 x 4.5 inch Negatives, Grav-R, Neff, Sherman,undated + + + + + + 5 + 618 + 3.5 x 4.5 inch Negatives, Grav-R, Nelson, Lonira,undated + + + + + + 5 + 619 + 3.5 x 4.5 inch Negatives, Grav-R, Nestle, Geo.,undated + + + + + + 5 + 620 + 3.5 x 4.5 inch Negatives, Grav-R, Nestle, Robert and Wife,undated + + + + + + 5 + 621 + 3.5 x 4.5 inch Negatives, Grav-R, Newton, Cassie,undated + + + + + + 5 + 622 + 3.5 x 4.5 inch Negatives, Grav-R, Neyer, Bob,undated + + + + + + 5 + 623 + 3.5 x 4.5 inch Negatives, Grav-R, Neyer, F.M.,October 4, 1968 + + + + + + 5 + 624 + 3.5 x 4.5 inch Negatives, Grav-R, Neyer, Mary A.,October 4, 1968 + + + + + + 5 + 625 + 3.5 x 4.5 inch Negatives, Grav-R, Neyome, Fred,May 2, 1956 + + + + + + 5 + 626 + 3.5 x 4.5 inch Negatives, Grav-R, Neyome, Jennie,undated + + + + + + 5 + 627 + 3.5 x 4.5 inch Negatives, Grav-R, Nicholson, Gretchen,July 7, 1959 + + + + + + 5 + 628 + 3.5 x 4.5 inch Negatives, Grav-R, Nick,undated + + + + + + + + 5 + 629 + 3.5 x 4.5 inch Negatives, Grav-R, Nickle, Mary Anne - Copy,undated + + + + + + 5 + 630 + 3.5 x 4.5 inch Negatives, Grav-R, Nickle, Martha - Copy,undated + + + + + + 5 + 631 + 3.5 x 4.5 inch Negatives, Grav-R, Nicks, E.A.,undated + + + + + + 5 + 632 + 3.5 x 4.5 inch Negatives, Grav-R, Nicks, Guy - Copy,undated + + + + + + 5 + 633 + 3.5 x 4.5 inch Negatives, Grav-R, Nicks, Helen,undated + + + + + + 5 + 634 + 3.5 x 4.5 inch Negatives, Grav-R, Nigl, Peg,undated + + + + + + 5 + 635 + 3.5 x 4.5 inch Negatives, Grav-R, Niswonger, Stella - Air Force Sergeant,undated + + + + + + 5 + 636 + 3.5 x 4.5 inch Negatives, Grav-R, Nogy, Alex and Wife,undated + + + + + + 5 + 637 + 3.5 x 4.5 inch Negatives, Grav-R, Nolan, Joan,undated + + + + + + 5 + 638 + 3.5 x 4.5 inch Negatives, Grav-R, Nontelle, Don,undated + + + + + + 5 + 639 + 3.5 x 4.5 inch Negatives, Grav-R, Norain, V.A.,undated + + + + + + 5 + 640 + 3.5 x 4.5 inch Negatives, Grav-R, Norther, Marie,undated + + + + + + 5 + 641 + 3.5 x 4.5 inch Negatives, Grav-R, O'Brien, Theresa,undated + + + + + + 5 + 642 + 3.5 x 4.5 inch Negatives, Grav-R, O'Conner, Bonnie - 10-month-old,undated + + + + + + 5 + 643 + 3.5 x 4.5 inch Negatives, Grav-R, O'Dell, [no first name] - Baby Girl,undated + + + + + + 5 + 644 + 3.5 x 4.5 inch Negatives, Grav-R, O'Dell, Pat - 9-month-old Boy,1961 + + + + + + 5 + 645 + 3.5 x 4.5 inch Negatives, Grav-R, Offhill, Alice,undated + + + + + + 5 + 646 + 3.5 x 4.5 inch Negatives, Grav-R, Offill, Nina,undated + + + + + + 5 + 647 + 3.5 x 4.5 inch Negatives, Grav-R, O'Green, P.W.,undated + + + + + + 5 + 648 + 3.5 x 4.5 inch Negatives, Grav-R, Ohms, Donna,undated + + + + + + 5 + 649 + 3.5 x 4.5 inch Negatives, Grav-R, O'Neal, Pat,undated + + + + + + 5 + 650 + 3.5 x 4.5 inch Negatives, Grav-R, Onstatt, Kenneth,undated + + + + + + 5 + 651 + 3.5 x 4.5 inch Negatives, Grav-R, Onstatt, Sandra,undated + + + + + + 5 + 652 + 3.5 x 4.5 inch Negatives, Grav-R, Opdycke, Diann,undated + + + + + + 5 + 653 + 3.5 x 4.5 inch Negatives, Grav-R, Oplinger, Earl,undated + + + + + + 5 + 654 + 3.5 x 4.5 inch Negatives, Grav-R, Oplinger, Earl - 1st Communion Boy,undated + + + + + + 5 + 655 + 3.5 x 4.5 inch Negatives, Grav-R, Osborn, [no first name],undated + + + + + + 5 + 656 + 3.5 x 4.5 inch Negatives, Grav-R, Ososki, Ed,undated + + + + + + 5 + 657 + 3.5 x 4.5 inch Negatives, Grav-R, Overla, Mrs.,July 22, 1969 + + + + + + 5 + 658 + 3.5 x 4.5 inch Negatives, Grav-R, Owen, Chas. - Family,undated + + + + + + 5 + 659 + 3.5 x 4.5 inch Negatives, Grav-R, Paisley, Don - 3-year-old,undated + + + + + + 5 + 660 + 3.5 x 4.5 inch Negatives, Grav-R, Palmer, Jerry,undated + + + + + + 5 + 661 + 3.5 x 4.5 inch Negatives, Grav-R, Pantenburg, Carol,undated + + + + + + 5 + 662 + 3.5 x 4.5 inch Negatives, Grav-R, Pappas, Myrtle,undated + + + + + + 5 + 663 + 3.5 x 4.5 inch Negatives, Grav-R, Parker, E.W. - Baby,undated + + + + + + 5 + 664 + 3.5 x 4.5 inch Negatives, Grav-R, Parker, George and Wife,undated + + + + + + 5 + 665 + 3.5 x 4.5 inch Negatives, Grav-R, Parker, Rodney,November 15, 1968 + + + + + + 5 + 666 + 3.5 x 4.5 inch Negatives, Grav-R, Parker, Roy,March 22, 1969 + + + + + + 5 + 667 + 3.5 x 4.5 inch Negatives, Grav-R, Parks, Dick,undated + + + + + + 5 + 668 + 3.5 x 4.5 inch Negatives, Grav-R, Parks, Leon, Mrs.,undated + + + + + + 5 + 669 + 3.5 x 4.5 inch Negatives, Grav-R, Parks, Melvin,undated + + + + + + 5 + 670 + 3.5 x 4.5 inch Negatives, Grav-R, Parks, Robt., Mrs. - 1st Communion Girl,undated + + + + + + 5 + 671 + 3.5 x 4.5 inch Negatives, Grav-R, Parson, Carolene,undated + + + + + + 5 + 672 + 3.5 x 4.5 inch Negatives, Grav-R, Pasch, R.,undated + + + + + + 5 + 673 + 3.5 x 4.5 inch Negatives, Grav-R, Pasch, Raldon - 1-year-old,undated + + + + + + 5 + 674 + 3.5 x 4.5 inch Negatives, Grav-R, Patterson, Homer,undated + + + + + + 5 + 675 + 3.5 x 4.5 inch Negatives, Grav-R, Paulin, Don,undated + + + + + + 5 + 676 + 3.5 x 4.5 inch Negatives, Grav-R, Payne, C.A.,May 3, 1969 + + + + + + 5 + 677 + 3.5 x 4.5 inch Negatives, Grav-R, Peabody, Frank,undated + + + + + + 5 + 678 + 3.5 x 4.5 inch Negatives, Grav-R, Peacock, Dorothy,undated + + + + + + 5 + 679 + 3.5 x 4.5 inch Negatives, Grav-R, Peacock, Ethel,undated + + + + + + 5 + 680 + 3.5 x 4.5 inch Negatives, Grav-R, Peacock, Ray,undated + + + + + + 5 + 681 + 3.5 x 4.5 inch Negatives, Grav-R, Pearsale, Gordon,undated + + + + + + 5 + 682 + 3.5 x 4.5 inch Negatives, Grav-R, Pease, Wallace, Mrs.,undated + + + + + + 5 + 683 + 3.5 x 4.5 inch Negatives, Grav-R, Pego, James - 3-year-old,undated + + + + + + 5 + 684 + 3.5 x 4.5 inch Negatives, Grav-R, Perkins, Harold - 7-month-old,undated + + + + + + 5 + 685 + 3.5 x 4.5 inch Negatives, Grav-R, Perkins, Jo,undated + + + + + + 5 + 686 + 3.5 x 4.5 inch Negatives, Grav-R, Perkins, Phylis - 2 children, 1-year-olds, may be same child in two different views (2),undated + + + + + + 5 + 687 + 3.5 x 4.5 inch Negatives, Grav-R, Perry, Margaret,undated + + + + + + 5 + 688 + 3.5 x 4.5 inch Negatives, Grav-R, Perry, Markeith,undated + + + + + + 5 + 689 + 3.5 x 4.5 inch Negatives, Grav-R, Peter, Dick,undated + + + + + + 5 + 690 + 3.5 x 4.5 inch Negatives, Grav-R, Peters, Coleman,undated + + + + + + 5 + 691 + 3.5 x 4.5 inch Negatives, Grav-R, Peters, David,undated + + + + + + 5 + 692 + 3.5 x 4.5 inch Negatives, Grav-R, Peters, Ernie,undated + + + + + + 5 + 693 + 3.5 x 4.5 inch Negatives, Grav-R, Peters, Harley - Copy,undated + + + + + + 5 + 694 + 3.5 x 4.5 inch Negatives, Grav-R, Peters, John,undated + + + + + + 5 + 695 + 3.5 x 4.5 inch Negatives, Grav-R, Peters, Ruth,undated + + + + + + 5 + 696 + 3.5 x 4.5 inch Negatives, Grav-R, Peterson, Arlene,undated + + + + + + 5 + 697 + 3.5 x 4.5 inch Negatives, Grav-R, Peterson, Henry,undated + + + + + + 5 + 698 + 3.5 x 4.5 inch Negatives, Grav-R, Peterson, Shirlee,undated + + + + + + 5 + 699 + 3.5 x 4.5 inch Negatives, Grav-R, Peterson, Tom,undated + + + + + + 5 + 700 + 3.5 x 4.5 inch Negatives, Grav-R, Pety, Patricia,undated + + + + + + 5 + 701 + 3.5 x 4.5 inch Negatives, Grav-R, Pfefferl, M.,undated + + + + + + 5 + 702 + 3.5 x 4.5 inch Negatives, Grav-R, Phelps, Irene - Copy,undated + + + + + + 5 + 703 + 3.5 x 4.5 inch Negatives, Grav-R, Phelps, Rodney,undated + + + + + + 5 + 704 + 3.5 x 4.5 inch Negatives, Grav-R, Phelps, Shirley,undated + + + + + + 5 + 705 + 3.5 x 4.5 inch Negatives, Grav-R, Phelps, Vincent,undated + + + + + + 5 + 706 + 3.5 x 4.5 inch Negatives, Grav-R, Piatt, Beulah,undated + + + + + + 5 + 707 + 3.5 x 4.5 inch Negatives, Grav-R, Pinatore, Fred,October 15, 1969 + + + + + + 5 + 708 + 3.5 x 4.5 inch Negatives, Grav-R, Pitts, Edward,undated + + + + + + 5 + 709 + 3.5 x 4.5 inch Negatives, Grav-R, Pitts, Helen, Mrs. - Copy,undated + + + + + + 5 + 710 + 3.5 x 4.5 inch Negatives, Grav-R, Pitts, Mary Helen,undated + + + + + + 5 + 711 + 3.5 x 4.5 inch Negatives, Grav-R, Piwowarczyk, Joe - Military Certificate,undated + + + + + + + + 5 + 712 + 3.5 x 4.5 inch Negatives, Grav-R, Pope, Bertha, Mrs.,undated + + + + + + 5 + 713 + 3.5 x 4.5 inch Negatives, Grav-R, Poppass, Barbara - 1-year-old,undated + + + + + + 5 + 714 + 3.5 x 4.5 inch Negatives, Grav-R, Portlock, David,October 14,1967 + + + + + + 5 + 715 + 3.5 x 4.5 inch Negatives, Grav-R, Potter, Carla,undated + + + + + + 5 + 716 + 3.5 x 4.5 inch Negatives, Grav-R, Potter, J. - Copy,undated + + + + + + 5 + 717 + 3.5 x 4.5 inch Negatives, Grav-R, Potter, Jay and Wife,undated + + + + + + 5 + 718 + 3.5 x 4.5 inch Negatives, Grav-R, Powell, Alice,undated + + + + + + 5 + 719 + 3.5 x 4.5 inch Negatives, Grav-R, Pratt, Diann,undated + + + + + + 5 + 720 + 3.5 x 4.5 inch Negatives, Grav-R, Pray, W.D.,undated + + + + + + 5 + 721 + 3.5 x 4.5 inch Negatives, Grav-R, Preitz, Fred - Copy,undated + + + + + + 5 + 722 + 3.5 x 4.5 inch Negatives, Grav-R, Price, Helen,undated + + + + + + 5 + 723 + 3.5 x 4.5 inch Negatives, Grav-R, Price, Jerry,November 4, 1967 + + + + + + 5 + 724 + 3.5 x 4.5 inch Negatives, Grav-R, Price, M.,undated + + + + + + 5 + 725 + 3.5 x 4.5 inch Negatives, Grav-R, Price, R.G. - Baby,undated + + + + + + 5 + 726 + 3.5 x 4.5 inch Negatives, Grav-R, Price, Tom,undated + + + + + + 5 + 727 + 3.5 x 4.5 inch Negatives, Grav-R, Priest, Bob - H.S. Weidman,undated + + + + + + 5 + 728 + 3.5 x 4.5 inch Negatives, Grav-R, Priest, Don,undated + + + + + + 5 + 729 + 3.5 x 4.5 inch Negatives, Grav-R, Priest, Frank and Wife,undated + + + + + + 5 + 730 + 3.5 x 4.5 inch Negatives, Grav-R, Priest, John -7-month-old,undated + + + + + + 5 + 731 + 3.5 x 4.5 inch Negatives, Grav-R, Prior, Ernest,August 7, 1966 + + + + + + + 5 + 732 + 3.5 x 4.5 inch Negatives, Grav-R, Prior, Wm. -2-month-old,undated + + + + + + 5 + 733 + 3.5 x 4.5 inch Negatives, Grav-R, Prout, Asa and Wife,undated + + + + + + 5 + 734 + 3.5 x 4.5 inch Negatives, Grav-R, Prout, C.E. and Wife,undated + + + + + + 5 + 735 + 3.5 x 4.5 inch Negatives, Grav-R, Prout, Cliff and Wife,undated + + + + + + 5 + 736 + 3.5 x 4.5 inch Negatives, Grav-R, Prout, Floyd - 8-year-old Boy,undated + + + + + + 5 + 737 + 3.5 x 4.5 inch Negatives, Grav-R, Prout, Floyd and Wife,June 11, 1966 + + + + + + 5 + 738 + 3.5 x 4.5 inch Negatives, Grav-R, Pumper Vehicle - a Little Boy,1916 + + + + + + 5 + 739 + 3.5 x 4.5 inch Negatives, Grav-R, Purtil, C. - Wedding,undated + + + + + + 5 + 740 + 3.5 x 4.5 inch Negatives, Grav-R, Puustinen, Leonard,January 31, 1969 + + + + + + 5 + 741 + 3.5 x 4.5 inch Negatives, Grav-R, Pyne, Veronica,February 18, 1969 + + + + + + 5 + 742 + 3.5 x 4.5 inch Negatives, Grav-R, Pyrett, Myrtle,undated + + + + + + 5 + 743 + 3.5 x 4.5 inch Negatives, Grav-R, Quillen, A.,undated + + + + + + 5 + 744 + 3.5 x 4.5 inch Negatives, Grav-R, Quillen, Colleen,February 25, 1969 + + + + + + 5 + 745 + 3.5 x 4.5 inch Negatives, Grav-R, Quillen, Jim,October 26, 1964 + + + + + + 5 + 746 + 3.5 x 4.5 inch Negatives, Grav-R, Quin, Lucille,undated + + + + + + 5 + 747 + 3.5 x 4.5 inch Negatives, Grav-R, Quinlan, Bob - Wedding,undated + + + + + + 5 + 748 + 3.5 x 4.5 inch Negatives, Grav-R, Quinlan, Lucille,undated + + + + + + 5 + 749 + 3.5 x 4.5 inch Negatives, Grav-R, Quinn, Wm., Mrs.,undated + + + + + + 5 + 750 + 3.5 x 4.5 inch Negatives, Grav-R, Rademacher, [no first name],undated + + + + + + 5 + 751 + 3.5 x 4.5 inch Negatives, Grav-R, Rader, Stan,undated + + + + + + 5 + 752 + 3.5 x 4.5 inch Negatives, Grav-R, Radey, Evelyn,undated + + + + + + 5 + 753 + 3.5 x 4.5 inch Negatives, Grav-R, Raethlisberger, Henry - Copy,undated + + + + + + 5 + 754 + 3.5 x 4.5 inch Negatives, Grav-R, Raethlisberger, Leon - 1-year-old,undated + + + + + + 5 + 755 + 3.5 x 4.5 inch Negatives, Grav-R, Rahl, Christine,undated + + + + + + 5 + 756 + 3.5 x 4.5 inch Negatives, Grav-R, Ramos, Louise - Copy,undated + + + + + + 5 + 757 + 3.5 x 4.5 inch Negatives, Grav-R, Randalph, [no first name],January 17, 1963 + + + + + + 5 + 758 + 3.5 x 4.5 inch Negatives, Grav-R, Randolph, W.E. - Copy,undated + + + + + + 5 + 759 + 3.5 x 4.5 inch Negatives, Grav-R, Raney, Maxine,undated + + + + + + 5 + 760 + 3.5 x 4.5 inch Negatives, Grav-R, Rau, Harola - Copy,undated + + + + + + 5 + 761 + 3.5 x 4.5 inch Negatives, Grav-R, Rau, Steve - 1st Communion Girl,undated + + + + + + 5 + 762 + 3.5 x 4.5 inch Negatives, Grav-R, Rawson, Betty,undated + + + + + + 5 + 763 + 3.5 x 4.5 inch Negatives, Grav-R, Raymond, Gale,undated + + + + + + 5 + 764 + 3.5 x 4.5 inch Negatives, Grav-R, Raymond, Miss Sharon,undated + + + + + + 5 + 765 + 3.5 x 4.5 inch Negatives, Grav-R, Reasoner, Wm.,undated + + + + + + 5 + 766 + 3.5 x 4.5 inch Negatives, Grav-R, Recker, Joe,undated + + + + + + 5 + 767 + 3.5 x 4.5 inch Negatives, Grav-R, Reen, Ardean,undated + + + + + + 5 + 768 + 3.5 x 4.5 inch Negatives, Grav-R, Reese, L.E.,undated + + + + + + 5 + 769 + 3.5 x 4.5 inch Negatives, Grav-R, Reese, Mason,undated + + + + + + 5 + 770 + 3.5 x 4.5 inch Negatives, Grav-R, Reffey, Bernard,undated + + + + + + 5 + 771 + 3.5 x 4.5 inch Negatives, Grav-R, Reichow, Elsie,undated + + + + + + 5 + 772 + 3.5 x 4.5 inch Negatives, Grav-R, Reid, Walter, Mrs. - Copy,undated + + + + + + 5 + 773 + 3.5 x 4.5 inch Negatives, Grav-R, Reihl, Joe - 10-month-old,undated + + + + + + 5 + 774 + 3.5 x 4.5 inch Negatives, Grav-R, Reihl, John and Wife - 50th Anniversary,undated + + + + + + 5 + 775 + 3.5 x 4.5 inch Negatives, Grav-R, Rehmann, Bill,undated + + + + + + 5 + 776 + 3.5 x 4.5 inch Negatives, Grav-R, Rehmann, Lea,undated + + + + + + 5 + 777 + 3.5 x 4.5 inch Negatives, Grav-R, Render, Bob - 2-year-old Jimmy,undated + + + + + + 5 + 778 + 3.5 x 4.5 inch Negatives, Grav-R, Renner, Marjorie,undated + + + + + + 5 + 779 + 3.5 x 4.5 inch Negatives, Grav-R, Renwick, Howard - Copy, Mrs. John Benford,undated + + + + + + 5 + 780 + 3.5 x 4.5 inch Negatives, Grav-R, Rhode, Althea - Copy,undated + + + + + + 5 + 781 + 3.5 x 4.5 inch Negatives, Grav-R, Rice, Lester,undated + + + + + + 5 + 782 + 3.5 x 4.5 inch Negatives, Grav-R, Rice, R.O. - Baby Girl,undated + + + + + + 5 + 783 + 3.5 x 4.5 inch Negatives, Grav-R, Ricker, Oscar,undated + + + + + + 5 + 784 + 3.5 x 4.5 inch Negatives, Grav-R, Riggle, Becky - Copy,undated + + + + + + 5 + 785 + 3.5 x 4.5 inch Negatives, Grav-R, Riggle, Libby,undated + + + + + + 5 + 786 + 3.5 x 4.5 inch Negatives, Grav-R, Riggs, Bob,undated + + + + + + 5 + 787 + 3.5 x 4.5 inch Negatives, Grav-R, Riggs, Robt. - 3-year-old Girl,undated + + + + + + 5 + 788 + 3.5 x 4.5 inch Negatives, Grav-R, Riley, Darlene,March 1, 1967 + + + + + + 5 + 789 + 3.5 x 4.5 inch Negatives, Grav-R, Riley, Geo.,undated + + + + + + 5 + 790 + 3.5 x 4.5 inch Negatives, Grav-R, Rise, Helin,undated + + + + + + 5 + 791 + 3.5 x 4.5 inch Negatives, Grav-R, Robert, Jesse,undated + + + + + + 5 + 792 + 3.5 x 4.5 inch Negatives, Grav-R, Roberts, Ralph - Baby,undated + + + + + + 5 + 793 + 3.5 x 4.5 inch Negatives, Grav-R, Roberts, Rex,undated + + + + + + 5 + 794 + 3.5 x 4.5 inch Negatives, Grav-R, Robertson, Tad,March 26, 1968 + + + + + + 5 + 795 + 3.5 x 4.5 inch Negatives, Grav-R, Robinson, [no first name] - 1-year-old Baby,undated + + + + + + 5 + 796 + 3.5 x 4.5 inch Negatives, Grav-R, Robinson, Barbara,undated + + + + + + 5 + 797 + 3.5 x 4.5 inch Negatives, Grav-R, Robinson, Jack - Copy,undated + + + + + + 5 + 798 + 3.5 x 4.5 inch Negatives, Grav-R, Robinson, Mack - Mother and 3 Children,undated + + + + + + 5 + 799 + 3.5 x 4.5 inch Negatives, Grav-R, Rodgers, Mrs. - Citizenship,June 1947 + + + + + + 5 + 800 + 3.5 x 4.5 inch Negatives, Grav-R, Rodriquey, Rachel,undated + + + + + + 5 + 801 + 3.5 x 4.5 inch Negatives, Grav-R, Rodriguez, Albert - Wedding,undated + + + + + + 5 + 802 + 3.5 x 4.5 inch Negatives, Grav-R, Rodriguez, Ashmay,undated + + + + + + 5 + 803 + 3.5 x 4.5 inch Negatives, Grav-R, Rodriguez, Carmen,undated + + + + + + 5 + 804 + 3.5 x 4.5 inch Negatives, Grav-R, Rodriguez, Eugene - Copy,undated + + + + + + 5 + 805 + 3.5 x 4.5 inch Negatives, Grav-R, Rodriguez, Genio,undated + + + + + + 5 + 806 + 3.5 x 4.5 inch Negatives, Grav-R, Rodriguez, Mary Lou,undated + + + + + + 5 + 807 + 3.5 x 4.5 inch Negatives, Grav-R, Rodriguez, Sarah, Mrs.,undated + + + + + + 5 + 808 + 3.5 x 4.5 inch Negatives, Grav-R, Roethlisberger, Dale (3),1960; July 13, 1967; October 25, 1968 + + + + + + 5 + 809 + 3.5 x 4.5 inch Negatives, Grav-R, Roethlisberger, Henry,April 18,1963 + + + + + + 5 + 810 + 3.5 x 4.5 inch Negatives, Grav-R, Rogers, David,undated + + + + + + 5 + 811 + 3.5 x 4.5 inch Negatives, Grav-R, Rogers, Janice,undated + + + + + + 5 + 812 + 3.5 x 4.5 inch Negatives, Grav-R, Romins, Bev - 3 Children, Ages 8, 10, and 12, 1st Communion,July 8, 1969 + + + + + + 5 + 813 + 3.5 x 4.5 inch Negatives, Grav-R, Root, Kathryn,undated + + + + + + 5 + 814 + 3.5 x 4.5 inch Negatives, Grav-R, Root, Viola,undated + + + + + + 5 + 815 + 3.5 x 4.5 inch Negatives, Grav-R, Rouch, George,undated + + + + + + 5 + 816 + 3.5 x 4.5 inch Negatives, Grav-R, Rouse, Sharon,undated + + + + + + 5 + 817 + 3.5 x 4.5 inch Negatives, Grav-R, Roval, John - 3-month-old Girl,undated + + + + + + 5 + 818 + 3.5 x 4.5 inch Negatives, Grav-R, Ruemmler, Fred,July 30, 1968 + + + + + + 5 + 819 + 3.5 x 4.5 inch Negatives, Grav-R, Rush, Jim,undated + + + + + + 5 + 820 + 3.5 x 4.5 inch Negatives, Grav-R, Russell, Walt,January 31, 1967 + + + + + + 5 + 821 + 3.5 x 4.5 inch Negatives, Grav-R, Rutledge, James T.,undated + + + + + + 5 + 822 + 3.5 x 4.5 inch Negatives, Grav-R, Rychman, Earl, Mrs.,undated + + + + + + 5 + 823 + 3.5 x 4.5 inch Negatives, Grav-R, Rydman, Glen - Baby Boy,undated + + + + + + 5 + 824 + 3.5 x 4.5 inch Negatives, Grav-R, Ryzenga, John - Wedding,undated + + + + + + 6 + 1 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sagamall, Joe,undated + + + + + + 6 + 2 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sage, Frank,undated + + + + + + 6 + 3 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Saldana, Julia - 2-month-old Boy,undated + + + + + + 6 + 4 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Samo, Elias,undated + + + + + + 6 + 5 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sanbach, Robert,undated + + + + + + 6 + 6 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sanders, C.A. - Copy,undated + + + + + + 6 + 7 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sarakatsanis, Angelos,undated + + + + + + 6 + 8 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sargent, Judy,undated + + + + + + 6 + 9 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sauter, Linda,undated + + + + + + 6 + 10 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sawade, Williard,undated + + + + + + 6 + 11 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sazamall, Paula,undated + + + + + + 6 + 12 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schade, Margaret,undated + + + + + + 6 + 13 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schade, Mary,undated + + + + + + 6 + 14 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schafer, Chas.,undated + + + + + + 6 + 15 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schafer, Dolores,undated + + + + + + 6 + 16 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schafer, Don,May 28, 1966 + + + + + + 6 + 17 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schafer, Francis,undated + + + + + + 6 + 18 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schafer, Gertrude,undated + + + + + + 6 + 19 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schafer, Hazel,September 20, 1969 + + + + + + 6 + 20 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schafer, John,undated + + + + + + 6 + 21 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schafer, Joyce -14-month-old Girl,undated + + + + + + 6 + 22 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schafer, Mary Beth,undated + + + + + + 6 + 23 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schafer, Mik,undated + + + + + + 6 + 24 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schafer, Richard - 9-month-old,February 21, 1970 + + + + + + 6 + 25 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schaiberger, G.,October 29, 1969 + + + + + + 6 + 26 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schimantowski, Evelyn,undated + + + + + + 6 + 27 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schlemmer, Al,May 16, 1966 + + + + + + 6 + 28 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schmidt, Chas. -2-year-old,undated + + + + + + 6 + 29 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schmidt, Theresa,undated + + + + + + 6 + 30 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schmittler, R.H.,undated + + + + + + 6 + 31 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schneider, LuAnn,undated + + + + + + 6 + 32 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schneider, Paul H., Rev.,undated + + + + + + 6 + 33 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schoenhoff, Else and Dieter,undated + + + + + + 6 + 34 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schofield, Stella,undated + + + + + + 6 + 35 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Scholl, Dr.,January 31, 1961 + + + + + + 6 + 36 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schrock, Rozella,undated + + + + + + 6 + 37 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schroeck, Katherine,undated + + + + + + 6 + 38 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schrot, Joe,undated + + + + + + 6 + 39 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schueller, Joe - Copy,undated + + + + + + 6 + 40 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schulty, Betty,undated + + + + + + 6 + 41 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schumacher, Ed, Mrs.,undated + + + + + + 6 + 42 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schumacher, Steve, Mrs.,undated + + + + + + 6 + 43 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schumacker, Don - Copy,undated + + + + + + 6 + 44 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schumacker, Keith,undated + + + + + + 6 + 45 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schupbach, John - Baby Girl,undated + + + + + + 6 + 46 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schutt, Lyle - 5-year-old,undated + + + + + + 6 + 47 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Schutt, Sharon,undated + + + + + + 6 + 48 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Scott, James,undated + + + + + + 6 + 49 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Scott, James and Wife,undated + + + + + + 6 + 50 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Scott, Paul,undated + + + + + + 6 + 51 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Scott, Thelma,undated + + + + + + 6 + 52 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Scramblin, R.,December 7, 1968 + + + + + + 6 + 53 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Scramblin, Richard - 2 Children,December 1, 1969 + + + + + + 6 + 54 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Seamon, Roger,undated + + + + + + 6 + 55 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sedore, Indy,undated + + + + + + 6 + 56 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Seeley, [no first name] - Copy,undated + + + + + + 6 + 57 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Segraves, [no first name],undated + + + + + + 6 + 58 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Segraves, Ernest - Copy,undated + + + + + + 6 + 59 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Servass, Anita,undated + + + + + + 6 + 60 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Servass, Jr. - I.D.,undated + + + + + + 6 + 61 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Servass, L., Mrs.,undated + + + + + + 6 + 62 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sexton, Dick,undated + + + + + + 6 + 63 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Shanks, [no first name],March 11, 1967 + + + + + + 6 + 64 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Shanks, Emma (Tom) - 2-year-old Boy,undated + + + + + + 6 + 65 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sharr, Diane - 2- and 3-year-old Boys,undated + + + + + + 6 + 66 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Shawano, Floyd,undated + + + + + + 6 + 67 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sheets, Dick - 7-month-old Boy,February 22, 1964 + + + + + + 6 + 68 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sheets, Lillian - Baby Girl,undated + + + + + + 6 + 69 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sheets, Tom and Wife,undated + + + + + + 6 + 70 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sheldon, Charlie,undated + + + + + + 6 + 71 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sheppard, Joe,March 5, 1969 + + + + + + 6 + 72 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sheppard, Norman or Robert - Liquor License,undated + + + + + + 6 + 73 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sheredy, Sherry - Brother,September 10, 1965 + + + + + + 6 + 74 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sherwood, Calvin, Mrs.,undated + + + + + + 6 + 75 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Shinkle, Earl,undated + + + + + + 6 + 76 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Shinkle, Evert,November 4, 1969 + + + + + + 6 + 77 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Shiraef, Beverly - Copy,undated + + + + + + 6 + 78 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Shoe, Kay,undated + + + + + + 6 + 79 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sieting, John - Wedding,undated + + + + + + 6 + 80 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Silva, Kathleen,undated + + + + + + 6 + 81 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Silver, Don,undated + + + + + + 6 + 82 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Simeox, Dale - 10-month-old,undated + + + + + + 6 + 83 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Simmer, Henry and Wife, Mrs. - I.D.,undated + + + + + + 6 + 84 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Simmer, Pat,undated + + + + + + 6 + 85 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Simmer, Paul - John Krautz,January 9, 1967 + + + + + + 6 + 86 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Simmer, Rosaleen,undated + + + + + + 6 + 87 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Simmer, Stephen - Wedding,undated + + + + + + 6 + 88 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Simon, Francis C.,January 24, 1968 + + + + + + 6 + 89 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Simon, Margaret - Copy,undated + + + + + + 6 + 90 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sirblette, C.,undated + + + + + + 6 + 91 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sivenson, Lester, Mrs. - Copy of Paul while in the Navy,undated + + + + + + 6 + 92 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Slater, Cara,undated + + + + + + 6 + 93 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Slater, E., Mrs. - Copy,undated + + + + + + 6 + 94 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Slater, Leonard - Beard Family,undated + + + + + + 6 + 95 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Slates, D. Ray - 2 Children,undated + + + + + + 6 + 96 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sloan, Dorotha, Mrs. - Bernard Feltman Family,undated + + + + + + 6 + 97 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sloan, Dorotha, Mrs. - Copy,undated + + + + + + 6 + 98 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sloan, Dorotha, Mrs. - Jim Powell Family,undated + + + + + + 6 + 99 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sloan, Raymond - Couple,May 11, 1964 + + + + + + 6 + 100 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Slocum, Emily - Moerlin,undated + + + + + + 6 + 101 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Slocum, John,November 30, 1961 + + + + + + 6 + 102 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Small, Donna,undated + + + + + + 6 + 103 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Small, John - Copy,undated + + + + + + 6 + 104 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smalley, Clarence - 9-month-old Boy,undated + + + + + + 6 + 105 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smalley, Earl - Baby Boy,undated + + + + + + 6 + 106 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smiley, Alec,undated + + + + + + 6 + 107 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, Beulah,August 8, 1960 + + + + + + 6 + 108 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, Carl and Son - 8-year-old,undated + + + + + + 6 + 109 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, Chas. and Wife,undated + + + + + + 6 + 110 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, Eva Marie, Mrs. Marvin - Copy (John Peters),undated + + + + + + 6 + 111 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, Gerald and Wife,June 7, 1968 + + + + + + 6 + 112 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, Gladys - Copy,undated + + + + + + 6 + 113 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, Grace,undated + + + + + + 6 + 114 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, Harry, Jr.,undated + + + + + + 6 + 115 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, J.P.,undated + + + + + + 6 + 116 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, Jessie, Mrs.,undated + + + + + + 6 + 117 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, John,undated + + + + + + 6 + 118 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, Joyce - Copy,undated + + + + + + 6 + 119 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, Larry - 11-month-old,undated + + + + + + 6 + 120 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, Leon,undated + + + + + + 6 + 121 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, Lorraine,undated + + + + + + 6 + 122 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, Lucy,undated + + + + + + 6 + 123 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, Margaret,undated + + + + + + 6 + 124 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, Mary,September 7, 1966 + + + + + + 6 + 125 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, Orville,January 7, 1967 + + + + + + 6 + 126 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, Ralph,undated + + + + + + 6 + 127 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, Robt. - 7-month-old Girl,undated + + + + + + 6 + 128 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, Roy,undated + + + + + + 6 + 129 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, Ruth Ann,July 7, 1959 + + + + + + 6 + 130 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, Sheryl,June 21, 1968 + + + + + + 6 + 131 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, Ula's Mother, Mrs.,undated + + + + + + 6 + 132 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, Walter,undated + + + + + + 6 + 133 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Smith, William, Harrison, Michigan,undated + + + + + + 6 + 134 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Soloman, Abraham,undated + + + + + + 6 + 135 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sommer, Norm,undated + + + + + + 6 + 136 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Soners, Roy,November 25, 1967 + + + + + + 6 + 137 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sorola, Wm.,undated + + + + + + 6 + 138 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sowles, Larry,undated + + + + + + 6 + 139 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Speckled Trout Record, 1922 - a Man,1922 + + + + + + 6 + 140 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Spence, Patricia - 4-month-old,undated + + + + + + 6 + 141 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Spence,Sandra - 10-month-old,undated + + + + + + 6 + 142 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Spencer, Chas. A.,undated + + + + + + 6 + 143 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Spencer, H. - Copy,undated + + + + + + 6 + 144 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Spencer, Roy,undated + + + + + + 6 + 145 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Spiris, Geo,undated + + + + + + 6 + 146 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Spitsberger, J.E.,undated + + + + + + 6 + 147 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sponseller, Vern, Mrs.,undated + + + + + + 6 + 148 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sprague, Jai,undated + + + + + + 6 + 149 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sprague, Ralph,undated + + + + + + 6 + 150 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Springer, Lester - Copy,undated + + + + + + 6 + 151 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sprogue, Joe,undated + + + + + + 6 + 152 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Stacy, G.,undated + + + + + + 6 + 153 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Staley, Don,undated + + + + + + 6 + 154 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Starner, Glen and Wife,May 11, 1968 + + + + + + 6 + 155 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Staveley, Jane,undated + + + + + + 6 + 156 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Staveley, Janice,undated + + + + + + 6 + 157 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Stebelton, J. - Baby,undated + + + + + + 6 + 158 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Steven, Carol,undated + + + + + + 6 + 159 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Stevens, Ada,undated + + + + + + 6 + 160 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Stockham, Wm.,undated + + + + + + 6 + 161 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Stockes, Jerry,undated + + + + + + 6 + 162 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Storrs, Herbert,undated + + + + + + 6 + 163 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Straka, Dick,undated + + + + + + 6 + 164 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Straley, Robert and Wife,undated + + + + + + 6 + 165 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Stramm, Carl,undated + + + + + + 6 + 166 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Strang, Laurence G. - Copy of Marriage License,July 9, 1962 + + + + + + 6 + 167 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Straus, Max - 14-month-old Boy,undated + + + + + + 6 + 168 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Strauss, Ann,undated + + + + + + 6 + 169 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Streeter, Wilburt,undated + + + + + + 6 + 170 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Strehl, Harry and Wife,February 19, 1968 + + + + + + 6 + 171 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Stren, Fred - 9-month-old (2),June 18, 1966; August 5, 1967 + + + + + + 6 + 172 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Strong, Alson,undated + + + + + + 6 + 173 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Strong, Ray - Copy,undated + + + + + + 6 + 174 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Strong, Stella,undated + + + + + + 6 + 175 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Stroup, Joyce,undated + + + + + + 6 + 176 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Struble, Sid,undated + + + + + + 6 + 177 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Stuber, Pauline,undated + + + + + + 6 + 178 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Studer, [no first name],undated + + + + + + 6 + 179 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Stutting, Sandra,undated + + + + + + 6 + 180 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sutton, Jan,undated + + + + + + 6 + 181 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sutton, Shellie,undated + + + + + + 6 + 182 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Swain, Fred T.,November 4, 1969 + + + + + + 6 + 183 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Swan, Alice Dowell,undated + + + + + + 6 + 184 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Swan, Bob - Baby Boy,undated + + + + + + 6 + 185 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Swan, Francis, Jr.,undated + + + + + + 6 + 186 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Swan, H., Mrs.,undated + + + + + + 6 + 187 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sweet, Bert - Copy, Family,undated + + + + + + 6 + 188 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sweet, Bertrand,undated + + + + + + 6 + 189 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Swett, Joy,undated + + + + + + 6 + 190 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Swety, Joe - Baby,undated + + + + + + 6 + 191 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Swetzer, Deek,undated + + + + + + 6 + 192 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Switzer, Jim,undated + + + + + + 6 + 193 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Switzer, John,undated + + + + + + 6 + 194 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sygaisano, Gloria C. and Doctor,April 21, 1969 + + + + + + 6 + 195 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Sytek, Theodor,undated + + + + + + 6 + 196 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Tanner, Irene,undated + + + + + + 6 + 197 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Tayler, Lewis,undated + + + + + + 6 + 198 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Taylor, Carol,undated + + + + + + 6 + 199 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Taylor, Dona,undated + + + + + + 6 + 200 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Taylor, Phyliss,undated + + + + + + 6 + 201 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Taylor, Russell,undated + + + + + + 6 + 202 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Taylor, W.J.,undated + + + + + + 6 + 203 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Taylor, Wm. J. and Wife,December 2, 1967 + + + + + + 6 + 204 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Teeter, Herman,undated + + + + + + 6 + 205 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Teixeria, Arthur,undated + + + + + + 6 + 206 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Telmann, Roy - 1- and 4-year-olds,1959 + + + + + + + 6 + 207 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Thaller, Linda S.,July 30, 1967 + + + + + + 6 + 208 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Thayer, Wallace,undated + + + + + + 6 + 209 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Theilen, Betty,undated + + + + + + 6 + 210 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Theisen, Diane,undated + + + + + + 6 + 211 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Theisen, Genevieve - Copy,undated + + + + + + 6 + 212 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Theisen, Jack,November 23, 1968 + + + + + + 6 + 213 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Theisen, John - 3-year-old,undated + + + + + + 6 + 214 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Theisen, Mrs. Mike and Baby,March 11, 1967 + + + + + + 6 + 215 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Theisen, Richard - Bonnie,undated + + + + + + 6 + 216 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Theradakorh, Ravelorh - Application,undated + + + + + + 6 + 217 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Thering, Bill,undated + + + + + + 6 + 218 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Thering, Don - Academy Senior,1963 + + + + + + 6 + 219 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Thering, Elmer - Family Photograph,undated + + + + + + 6 + 220 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Thering, Helen,undated + + + + + + 6 + 221 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Thering, John,October 20, 1966 + + + + + + 6 + 222 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Thering, Marilyn,undated + + + + + + 6 + 223 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Thering, Ray,undated + + + + + + 6 + 224 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Thering, Raymond, Jr.,September 27, 1969 + + + + + + 6 + 225 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Therman, A. - 1-year-old Boy,undated + + + + + + 6 + 226 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Tilmann, Dale - 3 Children,November 4, 1967 + + + + + + 6 + 227 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Tilmann, Patricia,undated + + + + + + 6 + 228 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Tilmann, Philomena,March 24, 1966 + + + + + + 6 + 229 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Tilmann, Roy - 1-year-old Girl,July 28, 1964 + + + + + + 6 + 230 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Timpe, Donald - 8-month-old,undated + + + + + + 6 + 231 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Todd, George,July 7, 1959 + + + + + + 6 + 232 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Todink, Mrs., Sr. - Copy,undated + + + + + + 6 + 233 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Tope, John,August 7, 1968 + + + + + + 6 + 234 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Torpey, Hilton,undated + + + + + + 6 + 235 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Torpey, Jack - Copy,undated + + + + + + 6 + 236 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Torpey, Leo - 1-year-old,undated + + + + + + 6 + 237 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Torpey, Susan - Copy Negatives,April 2, 1963 + + + + + + 6 + 238 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Torres, Dan - 14-month-old,undated + + + + + + 6 + 239 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Toth, Marie - Baby Boy,undated + + + + + + 6 + 240 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Trainor, Jack,undated + + + + + + 6 + 241 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Travis, Barbara,undated + + + + + + 6 + 242 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Trevisol, Carol,undated + + + + + + 6 + 243 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Tripp, Sally M.,October 22, 1969 + + + + + + 6 + 244 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Tromblay, Arthur W. (2),February 28, 1949; March 1, 1950 + + + + + + 6 + 245 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Tromblay, Arthur W.,July 7, 1959 + + + + + + 6 + 246 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Tromblay, Effie,February 28, 1949 + + + + + + 6 + 247 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Trout - 8 pound with a Man,undated + + + + + + 6 + 248 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Truhlor, Lillian,undated + + + + + + 6 + 249 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Trumbley, E., Mrs.,undated + + + + + + 6 + 250 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Tully, Vince,undated + + + + + + 6 + 251 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Tupper, Mary Lou - Copy,undated + + + + + + 6 + 252 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Turck, [no first name],undated + + + + + + 6 + 253 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Twig, Phylis,undated + + + + + + 6 + 254 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Twindlehurst, Jeaneen,undated + + + + + + 6 + 255 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Tyler, Dorothy - 8-month-old,undated + + + + + + 6 + 256 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Tyler, Richard,undated + + + + + + 6 + 257 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Ulbrich, John,undated + + + + + + 6 + 258 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Upper Peninsula (U.P.) Trip with Jack Brewser,1932 + + + + + + 6 + 259 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, U.S. Granger,undated + + + + + + 6 + 260 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Utterback, Walt,undated + + + + + + 6 + 261 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Valentine, Mary,undated + + + + + + 6 + 262 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, VanArker, Harry and Wife,undated + + + + + + 6 + 263 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, VanBuskirk, Nola,undated + + + + + + 6 + 264 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, VanCoppenalle, Mary - Passport,undated + + + + + + 6 + 265 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, VanDecar, Jim,undated + + + + + + 6 + 266 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Vanderwoude, Louise,undated + + + + + + 6 + 267 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, VanHorn, Forrest - 2 Children,undated + + + + + + 6 + 268 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, VanHorn, Fred - Wedding,undated + + + + + + 6 + 269 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, VanLien, M. - 2 Children,undated + + + + + + 6 + 270 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, VanNostrand, Howard - Wedding,undated + + + + + + 6 + 271 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, VanOrden, Betty,undated + + + + + + 6 + 272 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, VanOrden, Helen,undated + + + + + + 6 + 273 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, VanOrden, Shirley,undated + + + + + + 6 + 274 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Veit, John, Mrs. - Grace,undated + + + + + + 6 + 275 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Veit, Stanley - 1-year-old,undated + + + + + + 6 + 276 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Verleger, Frank,October 28, 1966 + + + + + + 6 + 277 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Vernon, Raymond,undated + + + + + + 6 + 278 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Verwey, Andrew - Mr. and Mrs.,April 22, 1958 + + + + + + 6 + 279 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Verwey, F.J. - 4-month-old,undated + + + + + + 6 + 280 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Verwey, Joe,undated + + + + + + 6 + 281 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Verwey, John,undated + + + + + + 6 + 282 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Verwey, Mary Ann,undated + + + + + + 6 + 283 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Verwey, Mo. - Boy,undated + + + + + + 6 + 284 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Viet, Gary,undated + + + + + + 6 + 285 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Vodicka, Billie,undated + + + + + + 6 + 286 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Vodicka, Robt, - 1.5 - old girl,undated + + + + + + 6 + 287 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Vogel, Jim,undated + + + + + + 6 + 288 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Voisin, Ed,undated + + + + + + 6 + 289 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Voisin, Leo,undated + + + + + + 6 + 290 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Voisin, Norma,undated + + + + + + 6 + 291 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, VonDoloski, Margaret - Copy,undated + + + + + + 6 + 292 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, VonDoloski, Walter - 7-year-old Boy,undated + + + + + + 6 + 293 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wagner, John - Copy,undated + + + + + + 6 + 294 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wagner, Virginia - 3 copies, October 23, 1964; 2 Copies July 25, 1969,October 23, 1964; July 25, 1969 + + + + + + 6 + 295 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Waldorf, Bill,undated + + + + + + 6 + 296 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Walker, Ann - 2 Children,December 2,1967 + + + + + + 6 + 297 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Walker, Frank,undated + + + + + + 6 + 298 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Walker, John,undated + + + + + + 6 + 299 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Walker, Mike,undated + + + + + + 6 + 300 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wallace, Billie Lee - Copy,undated + + + + + + 6 + 301 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Walleyes - Three Men,undated + + + + + + 6 + 302 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Walters, M.L.,undated + + + + + + 6 + 303 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Walton, Leon, Mrs.,undated + + + + + + 6 + 304 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Walton, Myrtle - Copy,undated + + + + + + 6 + 305 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wang, Tong-eng,undated + + + + + + 6 + 306 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Ward, Bob,undated + + + + + + 6 + 307 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Ward, Esther - 1-year-old Girl,undated + + + + + + 6 + 308 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Ward, Roger - 1-year-old,1963 + + + + + + 6 + 309 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Warner, Bob,undated + + + + + + 6 + 310 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Warner, Ronald - Baby Girl,undated + + + + + + 6 + 311 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Watson, Bev,undated + + + + + + 6 + 312 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Watson, Don and Anne Mayville,undated + + + + + + 6 + 313 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Watson, Janette - serviceman,undated + + + + + + 6 + 314 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Watson, Lloyd,undated + + + + + + 6 + 315 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Watson, Ruth,undated + + + + + + 6 + 316 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Watson, Sally,undated + + + + + + 6 + 317 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Watts, Robt., Mrs. - Copy,undated + + + + + + 6 + 318 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Weaver, Jess,December 21, 1968 + + + + + + 6 + 319 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Weaver, Ken - 10-month-old,undated + + + + + + 6 + 320 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Weber, Ben - 2 Children,undated + + + + + + 6 + 321 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Weeke, Clayton, Mrs.,undated + + + + + + 6 + 322 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wehrly, Clarice,undated + + + + + + 6 + 323 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Weiferich, Jim,undated + + + + + + 6 + 324 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Weiser, Sara - Passport,July 17, 1967 + + + + + + 6 + 325 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Weller, Oreda,undated + + + + + + 6 + 326 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wells, Jim,undated + + + + + + 6 + 327 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wender, David - Copy,undated + + + + + + 6 + 328 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wentworth, Richard - 2-year-old Boy,undated + + + + + + 6 + 329 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wermette, Don - 3 Children,undated + + + + + + 6 + 330 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wernette, D. - Baby,undated + + + + + + 6 + 331 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wernette, Daniel,undated + + + + + + 6 + 332 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wernette, Lucille,undated + + + + + + 6 + 333 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Westbook, Arah,undated + + + + + + 6 + 334 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Westbook, Hood H.,undated + + + + + + 6 + 335 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Westbrook, Jack - 3-year-old Girl,undated + + + + + + 6 + 336 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Westie, Chas. - Passport, Wife and Daughter,March 26, 1968 + + + + + + 6 + 337 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Weston, Kenneth - Baby Boy,undated + + + + + + 6 + 338 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wheston, Louise,undated + + + + + + 6 + 339 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, White, Allen,undated + + + + + + 6 + 340 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, White, Carol,undated + + + + + + 6 + 341 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, White, Iva - I.D.,July 7, 1959 + + + + + + 6 + 342 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Whitney, [no first name],undated + + + + + + 6 + 343 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Whitney, A.B.,November 4, 1969 + + + + + + 6 + 344 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Whitney, Art and Wife,undated + + + + + + 6 + 345 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Whitney, Bob,undated + + + + + + 6 + 346 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Whitney, Doris,undated + + + + + + 6 + 347 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Whitney, Gerald,undated + + + + + + 6 + 348 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Whitney, Virginia,undated + + + + + + 6 + 349 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Whitney, Wm. - 50th Anniversary,undated + + + + + + 6 + 350 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Whittier, L.,undated + + + + + + 6 + 351 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wilber, Paul,undated + + + + + + 6 + 352 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wilberg, [no first name], Mrs.,undated + + + + + + 6 + 353 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wilcox, Arlene,undated + + + + + + 6 + 354 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wilcox, Bill,undated + + + + + + 6 + 355 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wilcox, Fred - Copy,undated + + + + + + 6 + 356 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wilcox, Gerald, Jr. - Copy,undated + + + + + + 6 + 357 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wilcox, Jerrie - 1-year-old,March 12, 1966 + + + + + + 6 + 358 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wilcox, Jerry - 7-month-old Boy,undated + + + + + + 6 + 359 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wilcox, Jimmey - Fire Department,undated + + + + + + 6 + 360 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wilcox, Ruth - 4-year-old Girl,undated + + + + + + 6 + 361 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wiley, Jerry (2),December 6, 1963; November 19, 1964 + + + + + + 6 + 362 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wilkenson, O.L. - Trooper,undated + + + + + + 6 + 363 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Williams, G. - 2 Girls,undated + + + + + + 6 + 364 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Williams, John - Copy,undated + + + + + + 6 + 365 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Williams, Linda L.,October 13, 1969 + + + + + + 6 + 366 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Williams, Marilyn,undated + + + + + + 6 + 367 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Williams, Neal, Mrs.,undated + + + + + + 6 + 368 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Williams, Norman,undated + + + + + + 6 + 369 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Williams, Peter - Copy,undated + + + + + + 6 + 370 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Williams, Sabakla,undated + + + + + + 6 + 371 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Williams, Susan,undated + + + + + + 6 + 372 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Williamson, John,June 15, 1959 + + + + + + 6 + 373 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wilmot, Lena,undated + + + + + + 6 + 374 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wilmot, Sandy,undated + + + + + + 6 + 375 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wilson, Basil - Baby,undated + + + + + + 6 + 376 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wilson, Cecil, Mrs.,undated + + + + + + 6 + 377 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wilson, Chas. J., Mrs. - Copy,undated + + + + + + 6 + 378 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wilson, Clare,undated + + + + + + 6 + 379 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wilson, Henry and Wife,undated + + + + + + 6 + 380 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wilson, Joan,undated + + + + + + 6 + 381 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wilson, Luciele,undated + + + + + + 6 + 382 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wilson, Oren - Baby,undated + + + + + + 6 + 383 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wilson, Pat,December 7, 1968 + + + + + + 6 + 384 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wilson, Richard E. - 14-month-old,June 19, 1965 + + + + + + 6 + 385 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wilson, Tom - 7-month-old,undated + + + + + + 6 + 386 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wilt, Ted,undated + + + + + + 6 + 387 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Winchell, Sue - Copy,undated + + + + + + 6 + 388 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Windel, Alide,undated + + + + + + 6 + 389 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Winder, R. - Trooper,undated + + + + + + 6 + 390 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Winter, Lee - Copy of Warriner Hall,undated + + + + + + 6 + 391 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Winter, Muriel,undated + + + + + + 6 + 392 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Winters, Virginia,undated + + + + + + 6 + 393 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wirick, Grace - Copy,undated + + + + + + 6 + 394 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wismer, Ruth - Copy, Marine G.I.,undated + + + + + + 6 + 395 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wittenkind, Connie,undated + + + + + + 6 + 396 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wood, Bessie,undated + + + + + + 6 + 397 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wood, Charlotte,undated + + + + + + 6 + 398 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wood, Floyd - Baby,undated + + + + + + 6 + 399 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wood, W.P. - Family and Model T. Ford,undated + + + + + + 6 + 400 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Woodburg, Al - Copy,undated + + + + + + 6 + 401 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Woodburg, Tom,undated + + + + + + 6 + 402 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Woodin, Loretta Allen,December 2, 1969 + + + + + + 6 + 403 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Warregesnik, R.N.,September 7, 1957 + + + + + + 6 + 404 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Worth, [no first name],September 7, 1957 + + + + + + 6 + 405 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wouch, Norma,undated + + + + + + 6 + 406 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wousey, Marvel - Copy,undated + + + + + + 6 + 407 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wright, Florence,undated + + + + + + + 6 + 408 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wright, Rita,undated + + + + + + 6 + 409 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Wyantt, Chester,April 22, 1964 + + + + + + 6 + 410 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Yager, Claire and Wife,October 15, 1966 + + + + + + 6 + 411 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Yager, Claire - 10-month-old,undated + + + + + + 6 + 412 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Yast, Amanda,undated + + + + + + 6 + 413 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Yoder, Jene,June 9, 1969 + + + + + + 6 + 414 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Yoder, Rochel,undated + + + + + + 6 + 415 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, York, Carol,undated + + + + + + 6 + 416 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Yost, Carl, Mrs.,undated + + + + + + 6 + 417 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Yost, John,undated + + + + + + 6 + 418 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Yost, Russell,undated + + + + + + 6 + 419 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Young, Charlotte,undated + + + + + + 6 + 420 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Young, LaVern,July 19, 1969 + + + + + + 6 + 421 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Young, Sylvia - Girl,undated + + + + + + 6 + 422 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Younger, Art - Copy,December 7, 1968 + + + + + + 6 + 423 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Youngs, Jess - Son, Air Force,undated + + + + + + 6 + 424 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Yunker, F. - Baby,undated + + + + + + 6 + 425 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Yunkers, Arlene,undated + + + + + + 6 + 426 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Yunkers, Herbert,undated + + + + + + 6 + 427 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Zaidinski, Opal,undated + + + + + + 6 + 428 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Zarks, Ben - Baby Girl,undated + + + + + + 6 + 429 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Zawadyinski, Theola,undated + + + + + + 6 + 430 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Zeien, Fred,undated + + + + + + 6 + 431 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Zeien, Lucille - Copy,June 9, 1969 + + + + + + 6 + 432 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Zein, Steve,undated + + + + + + 6 + 433 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Zingg, Helen - Copy,undated + + + + + + 6 + 434 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Zuker, Frank and Wife,November 1967 + + + + + + 6 + 435 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Zuker, Helen,undated + + + + + + 6 + 436 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Zygmond, Gloria,undated + + + + + + 6 + 437 + 3.5 x 4.5 inch Negatives, S-Z, Right side of the box, Zyonse, John,undated + + + + + + 6 + 438 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Anderson, Dale,December 13, 1954 + + + + + + 6 + 439 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Ball, Helen,December 11, 1969 + + + + + + 6 + 440 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Brady, [no first name],April 30, 1953 + + + + + + 6 + 441 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Children of Roger and Esther Ward, Now Esther Smith,undated + + + + + + 6 + 442 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Chippewa River,October 3, 1950 + + + + + + 6 + 443 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Crape, Robt.,undated + + + + + + 6 + 444 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Earl, Richard,June 20, 1961 + + + + + + 6 + 445 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Fair, Roland,undated + + + + + + 6 + 446 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Farnan, Becky,August 16, 1963 + + + + + + 6 + 447 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Fr. H.d.,undated + + + + + + 6 + 448 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Francisco Family - Glass Negatives (2 envelopes),undated + + + + + + 6 + 449 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Garchow, Amy,undated + + + + + + 6 + 450 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Gibson, Marge,October 3, 1960 + + + + + + 6 + 451 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Grandy, Jean,March 3, 1961 + + + + + + 6 + 452 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Horlms, Rutt,May 7, 1962 + + + + + + 6 + 453 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Jennings, [no first name],December 10, 1945 + + + + + + 6 + 454 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Johnston, Mark,undated + + + + + + 6 + 456 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Jones, John,June 13, 1964 + + + + + + 6 + 457 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Keinlein, Sandy,November 18, 1960 + + + + + + 6 + 458 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Lelubeigh, John,undated + + + + + + 6 + 459 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Parks, Root,May 1956 + + + + + + 6 + 460 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Peltier, [no first name],June 15, 1953 + + + + + + 6 + 461 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Perkens, P.,August 29, 1959 + + + + + + 6 + 462 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Prior, Wm.,October 9, 1963 + + + + + + 6 + 463 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Raymund, Gale,March 7, 1964 + + + + + + 6 + 464 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Romias, John,December 20, 1961 + + + + + + 6 + 465 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Shanks, Tom,February 27, 1967 + + + + + + 6 + 467 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Smith, Mary,March 2, 1962 + + + + + + 6 + 468 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Struble, Sid,January 30, 1960 + + + + + + 6 + 469 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Watson, Elton,September 30, 1962 + + + + + + 6 + 470 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Yost, John,October 25, 1963 + + + + + + 6 + 471 + 5.5 x 7.25 inch Photographs and Negatives, Left side, Front, of the box, Unidentified Photographs (22 envelopes),undated + + + + + + 6 + 472 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Barney, Ruth,November 11, 1960 + + + + + + 6 + 473 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Baucer, A.R., Dr. - Family,June 18, 1969 + + + + + + 6 + 474 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Bearse, Ed,undated + + + + + + 6 + 475 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Bennett, Mark,April 6, 1968 + + + + + + 6 + 476 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Bentley, [no first name],September 27, 1967 + + + + + + 6 + 477 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Brayington, Sr., [no first name],undated + + + + + + 6 + 478 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Children of John and Leona McDonald, Mount Pleasant, Michigan,undated + + + + + + 6 + 479 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Children of Marian and Gerry McDonald, Mount Pleasant, Michigan,undated + + + + + + 6 + 480 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Dingman, Lois A.,undated + + + + + + 6 + 481 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Ervin, Rous,July 29, 1960 + + + + + + 6 + 482 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Fish, Bob,July 6, 1964 + + + + + + 6 + 483 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Fox, [no first name],April 22, 1963 + + + + + + 6 + 484 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Francisco Negative,undated + + + + + + 6 + 485 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Garchow, Amy,July 24, 1967 + + + + + + 6 + 486 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Gibson, Marie,undated + + + + + + 6 + 487 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Grace, Karan,undated + + + + + + 6 + 488 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Greive, Ruth,March 10, 1961 + + + + + + 6 + 489 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Hall, Clarence,undated + + + + + + 6 + 490 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Holiday, Sally,May 24, 1966 + + + + + + 6 + 491 + Miscellaneous Smaller Photographs, Left side, Back, of the box, [Von] Horn, April,September 4, 1957 + + + + + + 6 + 492 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Huber, Rite,January 6, 1959 + + + + + + 6 + 493 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Husted, Lorie, Rosebush, Michigan,January 4, 1962 + + + + + + 6 + 494 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Knight, Harold,undated + + + + + + 6 + 495 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Kouty, Judy,undated + + + + + + 6 + 496 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Kuber, Jerry,undated + + + + + + 6 + 497 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Mallay, Chas.,April 18, 1959 + + + + + + 6 + 498 + Miscellaneous Smaller Photographs, Left side, Back, of the box, McBride, Ruth Putney,September 9, 1969 + + + + + + 6 + 499 + Miscellaneous Smaller Photographs, Left side, Back, of the box, McDonald, Chas.,April 7, 1961 + + + + + + 6 + 500 + Miscellaneous Smaller Photographs, Left side, Back, of the box, McDowell, Num,June 25, 1963 + + + + + + 6 + 501 + Miscellaneous Smaller Photographs, Left side, Back, of the box, McNeal, Lisa,March 25, 1961 + + + + + + 6 + 502 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Mrs. Meale,November 6, 1954 + + + + + + 6 + 503 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Morford, [no first name],October 15, 1963 + + + + + + 6 + 504 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Mull, [no first name],January 24, 1959 + + + + + + 6 + 505 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Munn, Edna,September 27, 1966 + + + + + + 6 + 506 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Nantelle, Don,April 20, 1959 + + + + + + 6 + 507 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Neyome, Fred,May 2, 1956 + + + + + + 6 + 508 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Patten, Duch,May 4, 1964 + + + + + + 6 + 509 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Peters, Ruth,August 15, 1964 + + + + + + 6 + 510 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Pointe, C.J.,November 5, 1962 + + + + + + 6 + 511 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Priest, Bob,November 30, 1957 + + + + + + 6 + 512 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Priest, Don,undated + + + + + + 6 + 513 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Quillen, June,October 26, 1964 + + + + + + + 6 + 514 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Robinson, Mark - Mother and 3 Children,undated + + + + + + 6 + 515 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Rubengh, Carrie,October 30, 1962 + + + + + + 6 + 516 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Schafer, Hazel,September 20, 1969 + + + + + + 6 + 517 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Schall, Dr.,January 13, 1961 + + + + + + 6 + 519 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Smith, Beulah,August 8, 1960 + + + + + + 6 + 520 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Smith, Beverly,August 23, 1961 + + + + + + 6 + 521 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Studio, Francisco,undated + + + + + + 6 + 522 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Swan, Roy,May 29, 1959 + + + + + + 6 + 523 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Thaller, Linda S.,undated + + + + + + 6 + 524 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Theisen, Jodi,September 18, 1966 + + + + + + 6 + 525 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Thering, John,August 19,1965 + + + + + + 6 + 526 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Thomas, Larry,January 21, 1963 + + + + + + 6 + 527 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Tripp, Sally M.,undated + + + + + + 6 + 528 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Voisin, [no first name],September 5, 1956 + + + + + + 6 + 529 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Ward, Esther - Children,undated + + + + + + 6 + 530 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Williams, A.,September 26, 1966 + + + + + + 6 + 531 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Wilmat, [no first name],September 16, 1963 + + + + + + 6 + 532 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Wongeshik, [no first name],September 7, 1957 + + + + + + 6 + 533 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Yoder, Rachell,May 5, 1967 + + + + + + 6 + 534 + Miscellaneous Smaller Photographs, Left side, Back, of the box, Unidentified Photographs (10 envelopes),undated + + + + + + 7 + 1 + 8 x 10 inch Negatives, Ace Hardware Store (3 envelopes),undated + + + + + + 7 + 2 + 8 x 10 inch Negatives, Aldon Rug Mills (2 envelopes),undated + + + + + + 7 + 3 + 8 x 10 inch Negatives, Ballman, Bob - Wedding,undated + + + + + + 7 + 4 + 8 x 10 inch Negatives, Basketball - Boys Team, Sacred Heart Academy,undated + + + + + + 7 + 5 + 8 x 10 inch Negatives, Bellinger, Cecil - Copy,April 4, 1967 + + + + + + 7 + 6 + 8 x 10 inch Negatives, Bissette, Ed -Wedding,November 28, 1964 + + + + + + 7 + 7 + 8 x 10 inch Negatives, Black, Ed, Mrs. - Copy, Koda Br. E.,August 27, 1968 + + + + + + 7 + 8 + 8 x 10 inch Negatives, Bourland, Jim - Family (2 envelopes),undated + + + + + + 7 + 9 + 8 x 10 inch Negatives, Brixby, Ed - Family,undated + + + + + + 7 + 10 + 8 x 10 inch Negatives, Casfard, Harry - Copy,undated + + + + + + 7 + 11 + 8 x 10 inch Negatives, Cashen, L.D. Myers Storefront,undated + + + + + + 7 + 12 + 8 x 10 inch Negatives, Cemetery - McClintric Gravestone,undated + + + + + + 7 + 13 + 8 x 10 inch Negatives, Circle X Cowboys (Country Band) - Earl, Jeff, Geo., Chum,1950 + + + + + + 7 + 14 + 8 x 10 inch Negatives, Cline Advertising Agency - Copy,September 8, 1968 + + + + + + 7 + 15 + 8 x 10 inch Negatives, Comers Wedding,undated + + + + + + 7 + 16 + 8 x 10 inch Negatives, Commencement Photograph - Beal City High School (BCHS),1923 + + + + + + 7 + 17 + 8 x 10 inch Negatives, Commencement Photograph, Unidentified,undated + + + + + + 7 + 18 + 8 x 10 inch Negatives, Confiscated Stills,undated + + + + + + 7 + 19 + 8 x 10 inch Negatives, Conners, Frank - Copy,undated + + + + + + 7 + 20 + 8 x 10 inch Negatives, Consumers Power Company, Mount Pleasant, Michigan,undated + + + + + + 7 + 21 + 8 x 10 inch Negatives, Crapo Agency,undated + + + + + + 7 + 22 + 8 x 10 inch Negatives, Crawford, Arnold - Softball Team,1947 + + + + + + 7 + 23 + 8 x 10 inch Negatives, Cummings, Chas.,undated + + + + + + 7 + 24 + 8 x 10 inch Negatives, Curtiss, Arlo - Family,undated + + + + + + 7 + 25 + 8 x 10 inch Negatives, Deer Antlers,undated + + + + + + 7 + 26 + 8 x 10 inch Negatives, Deer Hunting - Man with a Dead Deer,undated + + + + + + 7 + 27 + 8 x 10 inch Negatives, Elliott, Elsie (Klumpp) - Copy, Daylite, 1 sec.,undated + + + + + + 7 + 28 + 8 x 10 inch Negatives, Esch, Lewis - Family,undated + + + + + + 7 + 29 + 8 x 10 inch Negatives, Fadink Family - Weidman Carnival Accident group around coffin outside of house, wedding, 2 envelopes),undated + + + + + + 7 + 30 + 8 x 10 inch Negatives, Faltz, John - Wedding (2 envelopes),undated + + + + + + 7 + 31 + 8 x 10 inch Negatives, Family, Carl - H Family,undated + + + + + + 7 + 32 + 8 x 10 inch Negatives, Family Photograph - Unidentified,1948-1951 + + + + + + 7 + 33 + 8 x 10 inch Negatives, Fedeiva, Robt. - Wedding,undated + + + + + + 7 + 34 + 8 x 10 inch Negatives, Feltman, Wilbert - Family,undated + + + + + + 7 + 35 + 8 x 10 inch Negatives, Fish,undated + + + + + + 7 + 36 + 8 x 10 inch Negatives, Flynn, Bud (2 envelopes),undated + + + + + + 7 + 37 + 8 x 10 inch Negatives, Flynn, ORM - Copy,undated + + + + + + 7 + 38 + 8 x 10 inch Negatives, Fox, W.J. - Wedding,undated + + + + + + 7 + 39 + 8 x 10 inch Negatives, Frick, August, Sr. - Family,August 13, 1961 + + + + + + 7 + 40 + 8 x 10 inch Negatives, Frick, Frank - 5 Girls,1963 + + + + + + 7 + 41 + 8 x 10 inch Negatives, Frick, Otto - 4 Children,April 10, 1965 + + + + + + 7 + 42 + 8 x 10 inch Negatives, Gamary, Matt,undated + + + + + + 7 + 43 + 8 x 10 inch Negatives, Gates, Earl - Family, 5,undated + + + + + + 7 + 44 + 8 x 10 inch Negatives, Gepford, Bill - Wedding,undated + + + + + + 7 + 45 + 8 x 10 inch Negatives, Gover, N.D. - Retouched,undated + + + + + + 7 + 46 + 8 x 10 inch Negatives, Gover, Liquidatings Store, 2 envelopes,undated + + + + + + 7 + 47 + 8 x 10 inch Negatives, Graham, Donald Frederick - Air Force Dismissal Report,November 7, 1965 + + + + + + 7 + 48 + 8 x 10 inch Negatives, Graham, Henry,undated + + + + + + 7 + 49 + 8 x 10 inch Negatives, Group Photograph, Unidentified,undated + + + + + + 7 + 50 + 8 x 10 inch Negatives, Gruss, Joe - Family,undated + + + + + + 7 + 51 + 8 x 10 inch Negatives, Gruss, Joe - Family,Christmas 1961 + + + + + + 7 + 52 + 8 x 10 inch Negatives, Gruss, Richard - Wedding,undated + + + + + + 7 + 53 + 8 x 10 inch Negatives, Herrington Family,undated + + + + + + 7 + 54 + 8 x 10 inch Negatives, Howard, Tom - Family,undated + + + + + + 7 + 55 + 8 x 10 inch Negatives, Hutchinson, Orval - Wedding (2 envelopes),undated + + + + + + 7 + 56 + 8 x 10 inch Negatives, Jewell, W. - Family,undated + + + + + + 7 + 57 + 8 x 10 inch Negatives, Klumpp, Kendall,undated + + + + + + 7 + 58 + 8 x 10 inch Negatives, Leffingwell, Floyd,May 5, 1967 + + + + + + 7 + 59 + 8 x 10 inch Negatives, Leonard, Alfred - Wedding,undated + + + + + + 7 + 60 + 8 x 10 inch Negatives, Maniteau, W.R. - Wedding,October 19, 1968 + + + + + + 7 + 61 + 8 x 10 inch Negatives, McBride, Ruth Putney,August 3, 1968 + + + + + + 7 + 62 + 8 x 10 inch Negatives, McDonald, Fred - Family,undated + + + + + + 7 + 63 + 8 x 10 inch Negatives, McNeel, W. Bundy - Saw Mill,undated + + + + + + 7 + 64 + 8 x 10 inch Negatives, Men in Uniform - Unidentified,undated + + + + + + 7 + 65 + 8 x 10 inch Negatives, Michigan Bowhunters' Annual Banquet,1953-1954 + + + + + + 7 + 66 + 8 x 10 inch Negatives, Millington, Don - Wedding,undated + + + + + + 7 + 67 + 8 x 10 inch Negatives, Montgomery, Ward - Velox F3 SW,undated + + + + + + 7 + 68 + 8 x 10 inch Negatives, Mount Pleasant Hardware,1956 + + + + + + 7 + 69 + 8 x 10 inch Negatives, Murphy, Mike, Smithers Building,April 19, 1967 + + + + + + 7 + 70 + 8 x 10 inch Negatives, Myers, Robt. - Family,undated + + + + + + 7 + 71 + 8 x 10 inch Negatives, Nagy, Mike - Gas Station,August 4, 1957 + + + + + + 7 + 72 + 8 x 10 inch Negatives, National Field Archery Association Club Banquet,February 24, 1948 + + + + + + 7 + 73 + 8 x 10 inch Negatives, Owen, Chas. - Family,undated + + + + + + 7 + 74 + 8 x 10 inch Negatives, Quillen, Joe - Velox F3 SW,undated + + + + + + 7 + 75 + 8 x 10 inch Negatives, Renwick, Howard, Mrs.,May 6, 1963 + + + + + + 7 + 76 + 8 x 10 inch Negatives, Rice, Lester,undated + + + + + + 7 + 77 + 8 x 10 inch Negatives, Rinard, Robt. - Wedding,undated + + + + + + 7 + 78 + 8 x 10 inch Negatives, Russell, Walter - Village President,November 10, 1964 + + + + + + 7 + 79 + 8 x 10 inch Negatives, Russell, Walter,1957 + + + + + + 7 + 80 + 8 x 10 inch Negatives, Ryzenga, John - Wedding,September 11, 1965 + + + + + + 7 + 81 + 8 x 10 inch Negatives, Scene, Country Road - Bridge Out,undated + + + + + + 7 + 82 + 8 x 10 inch Negatives, Scene, Street,undated + + + + + + 7 + 83 + 8 x 10 inch Negatives, Schoen, Omar, Houghtaling Casket Photograph (2 envelopes),undated + + + + + + 7 + 84 + 8 x 10 inch Negatives, Schumacher, Ed, Mrs. (3 envelopes),undated + + + + + + 7 + 85 + 8 x 10 inch Negatives, Schumacher, Keith - 7 Girls,undated + + + + + + 7 + 86 + 8 x 10 inch Negatives, Seeley, Earl - Family Group,undated + + + + + + 7 + 87 + 8 x 10 inch Negatives, Sellers, Blanc - Copy,undated + + + + + + 7 + 88 + 8 x 10 inch Negatives, Simmer, Paul (3 envelopes),undated + + + + + + 7 + 89 + 8 x 10 inch Negatives, Softball, Girls - Picken's Girls 1949 Champs,1949 + + + + + + 7 + 90 + 8 x 10 inch Negatives, Softball, Girls - Picken's,[1949] + + + + + + 7 + 91 + 8 x 10 inch Negatives, Straus, Art (4 envelopes),undated + + + + + + 7 + 92 + 8 x 10 inch Negatives, Theilen, Bob - Wedding,February 1956 + + + + + + 7 + 93 + 8 x 10 inch Negatives, Theilen, Pete - Family,undated + + + + + + 7 + 94 + 8 x 10 inch Negatives, Theisen, Frank - Family (2 envelopes),October 27, 1962 + + + + + + 7 + 95 + 8 x 10 inch Negatives, Thering, Elmer - Family (3 envelopes),undated + + + + + + 7 + 96 + 8 x 10 inch Negatives, Thering, Tom - Wedding (5 envelopes),undated + + + + + + 7 + 97 + 8 x 10 inch Negatives, Times News - Copy,undated + + + + + + 7 + 98 + 8 x 10 inch Negatives, Torpey, Hilton - Wedding (5 envelopes),undated + + + + + + 7 + 99 + 8 x 10 inch Negatives, Watson, Lloyd - Family,undated + + + + + + 7 + 100 + 8 x 10 inch Negatives, Weber, Ben - Wedding,undated + + + + + + 7 + 101 + 8 x 10 inch Negatives, Wedding Photographs - Unidentified (4 envelopes),1948-1951 + + + + + + 7 + 102 + 8 x 10 inch Negatives, Wedding Photographs - Unidentified (4 envelopes),undated + + + + + + 7 + 103 + 8 x 10 inch Negatives, Unidentified Photographs (7 envelopes),undated + + + + + + 8 + 1 + 8 x 10 inch Black and White Unidentified Photographs, by date taken or reshot,February 1961 + + + + + + 8 + 2 + 8 x 10 inch Black and White Unidentified Photographs, by date taken or reshot (folder 1 of 2),February 1961-January 1962 + + + + + + 8 + 3 + 8 x 10 inch Black and White Unidentified Photographs, by date taken or reshot (folder 2 of 2),February 1961-January 1962 + + + + + + 8 + 4 + 8 x 10 inch Black and White Unidentified Photographs, by date taken or reshot (folder 1 of 2),December 1962-August 1963 + + + + + + 8 + 5 + 8 x 10 inch Black and White Unidentified Photographs, by date taken or reshot (folder 2 of 2),December 1962-August 1963 + + + + + + 8 + 6 + 8 x 10 inch Black and White Unidentified Photographs, by date taken or reshot (folder 1 of 2),August 1963-October 1964 + + + + + + 8 + 7 + 8 x 10 inch Black and White Unidentified Photographs, by date taken or reshot (Folder 2 of 2),August 1963-October 1964 + + + + + + 8 + 8 + 8 x 10 inch Black and White Unidentified Photographs, by date taken or reshot,December 1964-August 1965 + + + + + + 8 + 9 + 8 x 10 inch Black and White Unidentified Photographs, by date taken or reshot (folder 1 of 2),August 1965-November 1967 + + + + + + 8 + 10 + 8 x 10 inch Black and White Unidentified Photographs, by date taken or reshot (folder 2 of 2),August 1965-November 1967 + + + + + + 8 + 11 + 8 x 10 inch Black and White Unidentified Photographs, by date taken or reshot (folder 1 of 2),November 1969-January 1970 + + + + + + 8 + 12 + 8 x 10 inch Black and White Unidentified Photographs, by date taken or reshot (folder 2 of 2),November 1969-January 1970 + + + + + + 8 + 13 + mostly 5.5 x 6 inches or smaller Black and White Unidentified Photographs, by date taken or reshot (folder 1 of 2),November 1958-July 1959 + + + + + + 8 + 14 + mostly 5.5 x 6 inches or smaller Black and White Unidentified Photographs, by date taken or reshot (folder 2 of 2),November 1958-July 1959 + + + + + + 8 + 15 + mostly 5.5 x 6 inches or smaller Black and White Unidentified Photographs, by date taken or reshot,July 1959-January 1960 + + + + + + 8 + 16 + mostly 5.5 x 6 inches or smaller Black and White Unidentified Photographs, by date taken or reshot,January 1960-July 1960 + + + + + + 8 + 17 + mostly 5.5 x 6 inches or smaller Black and White Unidentified Photographs, by date taken or reshot,December 1960-February 1961 + + + + + + 8 + 18 + mostly 5.5 x 6 inches or smaller Black and White Unidentified Photographs, by date taken or reshot (Folder 1 of 2),February 1961-October 1961 + + + + + + 8 + 19 + mostly 5.5 x 6 inches or smaller Black and White Unidentified Photographs, by date taken or reshot (Folder 2 of 2),February 1961-October 1961 + + + + + + 8 + 20 + mostly 5.5 x 6 inches or smaller Black and White Unidentified Photographs, by date taken or reshot (Folder 1 of 2),February 1962-October 1962 + + + + + + 8 + 21 + mostly 5.5 x 6 inches or smaller Black and White Unidentified Photographs, by date taken or reshot (Folder 2 of 2),February 1962-October 1962 + + + + + + 8 + 22 + mostly 5.5 x 6 inches or smaller Black and White Unidentified Photographs, by date taken or reshot (Folder 1 of 2),November 1964-December 1964 + + + + + + 8 + 23 + mostly 5.5 x 6 inches or smaller Black and White Unidentified Photographs, by date taken or reshot (Folder 2 of 2),November 1964-December 1964 + + + + + + 8 + 24 + mostly 5.5 x 6 inches or smaller Black and White Unidentified Photographs, by date taken or reshot (Folder 1 of 2),December 1964-July 1965 + + + + + + 8 + 25 + mostly 5.5 x 6 inches or smaller Black and White Unidentified Photographs, by date taken or reshot (Folder 2 of 2),December 1964-July 1965 + + + + + + 9 + 1 + mostly 5.5 x 6 inches or smaller Black and White Unidentified Photographs, by date taken or reshot,July 1965-December 1965 + + + + + + 9 + 2 + mostly 5.5 x 6 inches or smaller Black and White Unidentified Photographs, by date taken or reshot,December 1965-April 1966 + + + + + + 9 + 3 + mostly 5.5 x 6 inches or smaller Black and White Unidentified Photographs, by date taken or reshot (Folder 1 of 2),January 1968-November 1968 + + + + + 9 + 4 + mostly 5.5 x 6 inches or smaller Black and White Unidentified Photographs, by date taken or reshot (Folder 2 of 2),January 1968-November 1968 + + + + + 9 + 5 + mostly 5.5 x 6 inches or smaller Black and White Unidentified Photographs, by date taken or reshot (Folder 1 of 2),November 1967-October 1969 + + + + + 9 + 6 + mostly 5.5 x 6 inches or smaller Black and White Unidentified Photographs, by date taken or reshot (Folder 2 of 2),November 1967-October 1969 + + + + + 9 + 7 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Abbey, Omea,November 7, 1956 + + + + + + 9 + 8 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Astavab, Rorella,April 31, 1948 + + + + + + 9 + 9 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Baker, Dorothy,December 22, 1950 + + + + + + 9 + 10 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Bech, [no first name],October 13, 1956 + + + + + + 9 + 11 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Beck, Grace,September 13, 1948 + + + + + + 9 + 12 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Bilcox, Mary,June 11, 1957 + + + + + + 9 + 13 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Bissette, Carol,June 20, 1956-1957 + + + + + + 9 + 14 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Cabin, H.A.,July 1939 + + + + + + 9 + 15 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Chippeway, Walter,June 13, 1958 + + + + + + 9 + 16 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Cojpens, Carol,May 1955 + + + + + + 9 + 17 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Collins, Ruth Ann,September 12, 1955 + + + + + + 9 + 18 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Coon, Nancy,December 20, 1957 + + + + + + 9 + 19 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Coppens, [no first name],December 3, 1955 + + + + + + 9 + 20 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Darfueres, [no first name],October 19, 1952 + + + + + + 9 + 21 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Diggers, Albert,January 5, 1951 + + + + + + 9 + 22 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Donald, Jolin,July 12, 1958 + + + + + + 9 + 23 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Eggleston, [no first name],May 15, 1952 + + + + + + 9 + 24 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Erway, Ida,November 16, 1955 + + + + + + + 9 + 25 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Gase, [no first name],August 11, 1948 + + + + + + 9 + 26 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Gibson, June,August 8, 1955 + + + + + + 9 + 27 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Gill, Betty,April 5, 1944 + + + + + + 9 + 28 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Goldhecker, [no first name],June 16, 1944 + + + + + + 9 + 29 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Gross, Francis,October 9, 1953 + + + + + + 9 + 30 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Haggart, Rosehauty M. - #1,undated + + + + + + 9 + 31 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Hanesworth, Don,March 13, 1956 + + + + + + 9 + 32 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Hoover, Jack,March 27, 1958 + + + + + + 9 + 33 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Johnson, Frank,June 7, 1957 + + + + + + 9 + 34 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Kahlgegab, Yvonne,August 6, 1954 + + + + + + 9 + 35 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Kennedy, Virgil,May 12, 1947 + + + + + + 9 + 36 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Langejans, [no first name],August 13-16, 1949 + + + + + + 9 + 37 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Machuta, Fruuh,February 27, 1956 + + + + + + 9 + 38 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Mangris, Ethel,September 25, 1953 + + + + + + 9 + 39 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Martin, K.P.,April 27, 1948 + + + + + + 9 + 40 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Martin, Mary,April 22, 1953 + + + + + + 9 + 41 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, McGuirk, Joan,May 12, 1956 + + + + + + 9 + 42 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Mount Pleasant, Michigan [copies],undated + + + + + + 9 + 43 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Mullin, Bernice,March 2, 1952 + + + + + + 9 + 44 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Neyome, Margaret,July 2, 1956 + + + + + + 9 + 45 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, O'Holliday, W.,July 12, 1949 + + + + + + 9 + 46 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Pitts, Helen,September 3, 1955 + + + + + + 9 + 47 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Rhodes, Bill,July 7, 1959 + + + + + + 9 + 48 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Roberts, Jim,September 25, 1948 + + + + + + 9 + 49 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Rydman, M.,February 25, 1957 + + + + + + 9 + 50 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Savage, Ges,June 22, 1928 + + + + + + 9 + 51 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Schafer, Tex,January 27, 1956 + + + + + + 9 + 52 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Shigibard, W.,September 8, 1951 + + + + + + 9 + 53 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Steele, [no first name] (2),November 3, 1948; December 4, 1948 + + + + + + 9 + 54 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Streber, [no first name],March 3, 1953 + + + + + + 9 + 55 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Strong, L.,October 8, 1917 + + + + + + 9 + 56 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Swarty, [no first name],January 14, 1953 + + + + + + 9 + 57 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Throw, Henry,April 5, 1949 + + + + + + 9 + 58 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Trussell, Bud,undated + + + + + + 9 + 59 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Tyman, Dale,October 31, 1947 + + + + + + 9 + 60 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Watson, Sally,February 19, 1955 + + + + + + 9 + 61 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Williams, John,March 2, 1952 + + + + + + 9 + 62 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Wright, Lily,February 10, 1951 + + + + + + 9 + 63 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Yonker, Clifford,February 23, 1955 + + + + + + 9 + 64 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Yunker, [no first name],June 25, 1952 + + + + + + 9 + 65 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Zygmunt, L.,October 23, 1956 + + + + + + 9 + 66 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Unidentified (folder 1 of 7),undated + + + + + + 9 + 67 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Unidentified (folder 2 of 7),undated + + + + + + 9 + 68 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Unidentified (folder 3 of 7),undated + + + + + + 9 + 69 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Unidentified (folder 4 of 7),undated + + + + + + 9 + 70 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Unidentified (folder 5 of 7),undated + + + + + + 9 + 71 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Unidentified (folder 6 of 7),undated + + + + + + 9 + 72 + Various 3.5 x 4 inches and Small Sized Photographs and Negatives, Unidentified (folder 7 of 7),undated + + + + + + 9 + 73 + Francisco Family Photographs (Various Sizes), Some Identified,1927-1964 + + + + + + 9 + 74 + Francisco Family Photographs (Various Sizes), Unidentified (folder 1 of 6),undated + + + + + + 9 + 75 + Francisco Family Photographs (Various Sizes), Unidentified (folder 2 of 6),undated + + + + + + 9 + 76 + Francisco Family Photographs (Various Sizes), Unidentified (folder 3 of 6),undated + + + + + + 9 + 77 + Francisco Family Photographs (Various Sizes), Unidentified (folder 4 of 6),undated + + + + + + 9 + 78 + Francisco Family Photographs (Various Sizes), Unidentified (folder 5 of 6),undated + + + + + + 9 + 79 + Francisco Family Photographs (Various Sizes), Unidentified (folder 6 of 6),undated + + + + + + 9 + 80 + Francisco Family Negatives,undated + + + + + + 1 + Oversized Folder, Francisco Family Photographs (folder 1 of 4),undated + + + + + + 2 + Oversized Folder, Francisco Family Photographs (folder 2 of 4),undated + + + + + + 3 + Oversized Folder, Francisco Family Photographs (folder 3 of 4),undated + + + + + + 4 + Oversized Folder, Francisco Family Photographs (folder 4 of 4),undated + + + + + +
    +
    + + + + + + + + + + + + diff --git a/sample-ead/clarke/luedtketemplate.xml b/sample-ead/clarke/luedtketemplate.xml new file mode 100644 index 0000000..96e1c7d --- /dev/null +++ b/sample-ead/clarke/luedtketemplate.xml @@ -0,0 +1,23846 @@ + + + + + ehll--luedtke + + + Finding Aid for +Luedtke Engineering Company (Frankfort, Mich.) Organizational Records + Collection processed and finding aid created by +A. Meyer, S. Albinhamad, C. Olson, K. Tremlin, B. Schamber, K. Mason, G. Richard, M. Matyn + + + Clarke Historical Library + +May-December, 2015 + + + + + Encoded finding aid created by +Marian Matyn, +2016 + + The finding aid is written in English + + + + + + Clarke Historical LibraryCentral Michigan University + Finding aid for +Luedtke Engineering Company (Frankfort, Mich.) Organizational Records + Finding aid created by +A. Meyer, S. Albinhamad, C. Olson, K. Tremlin, B. Schamber, K. Mason, G. Richard, M. Matyn + + + + + + + Luedtke Engineering Company (Frankfort, Mich.) + + +Luedtke Engineering Company (Frankfort, Mich.) Organizational Records, + +1932-2009 + + + + +187 cubic ft. (in 375 boxes) + + + +MSS. + + The material is in English + + The Organizational Records, 1932-2009, and undated, provide an unprecedented record of marine construction in the Great Lakes, including work on the Mackinac Bridge, the Soo Locks, and the Chicago Sanitary Canal, harbor work, dredging, and, more recent, habitat restoration projects. + + + Clarke Historical Library, Central Michigan University + + + + + +

    +Acc #75056 +

    +
    + +

    +Luedtke Engineering Company (Frankfort, Mich.) Organizational Records are open for research. ALLERGY NOTE: Those with allergies should be aware that parts of the collection have a slight mildew odor. Researchers should exercise caution while using the collection.

    +
    + +

    +Copyright is unknown. +

    +
    + +

    +Luedtke Engineering Company (Frankfort, Mich.) Organizational Records, Folder # , Box #, Clarke Historical Library, Central Michigan University +

    +
    +
    + +

    Organizational History:

    +

    The Luedtke Engineering Company, a family-owned, Great Lakes-based marine engineering and construction company, was established on April 1st 1930, by Elroy “Duke” R. Luedtke. Located on Frankfort’s Betsy Bay, the company was set up in order to capitalize off of the Ann Arbor Railroad’s need for year round repair and construction services for their ferry operations. A family business, the original stock owners of Luedkte Engineering included Elroy Luedkte, Lucille Luedkte, and Fred Thacker.

    +

    Born in the town of Reedsville, Wisconsin in 1900, Elroy Luedkte graduated from the University of Wisconsin Engineering School in 1923. He went to work for the U.S. Army Corps of Engineers in Milwaukee, Wisconsin, and then several private contractors before establishing his own business in 1930.

    +

    Elroy married his wife Lucille and had two sons, Karl and Erich, and one daughter, Gretchen. Mike Bauer became general superintendent after Elroy suffered a heart attack. Karl and Erich began working for their father’s company in 1955 and 1957 respectively.

    +

    Duke was a meticulous and detailed record keeper, a trait he passed onto his family and company.

    +

    On July 22, 1968 Elroy Luedkte died of a heart attack at his desk, passing, management of the company down to his sons. It was under the management of Karl and Erich Luedkte that the company saw the involvement of a third generation of Luedktes in the workforce.

    +

    Major events in the company’s history include:

    +

    1931 first steel sheet pile breakwater built in the world for Waukegan, Illinois, for the U.S. Army Corps of Engineers Chicago District.

    +

    1932 only job was rebuilding Algoma, Wisconsin, breakwater for U.S. Army Corps of Engineers.

    +

    1930s moving money to Marshall Ilsley bank before the national bank closure saved the company’s finances as the local banks where the company’s money had been did not reopen.

    +

    1933 dock work in Frankfort for Ann Arbor Railroad departing from their usual company.

    +

    1934 built Spectacle Reef and Minneapolis Shoal lighthouses. Company made profit 1932-1934.

    +

    1935 built breakwater at Kewaunee, Wisconsin, which allowed Company to buy first large crane.

    +

    1939-1942 placed stone on causeway for approach to what became Mackinaw Bridge on St. Ignace street.

    +

    1940 built water intake pipeline for Muskegon Heights.

    +

    1941-1945 during war years, the company’s net worth decline.

    +

    1941 built shipyard in Sturgeon Bay, Wisconsin.

    +

    1949 built 36 inch diameter water intake pipeline for Benton Harbor.

    +

    1950 company moved into market with private utilities when it built a subaqueous water intake at Sheboygan, Wisconsin, for Wisconsin Power and Light Company.

    +

    1950s period of steady growth.

    +

    1960s very profitable period. Major project was construction of two 14 foot diameter pipelines for Wisconsin, Michigan Power Company at Kewaunee, Wisconsin.

    +

    1970s very profitable period.

    +

    1971 moved into dredging business when dredged for Consumers Power Company, Pumped Storage Plant, Ludington.

    +

    1972 expanded, profitably, to Lake Erie. Mike Bauer retired.

    +

    1980s most profitable period in company. Karl Luedtke began having health issues.

    +

    1990s period of fluctuations in government and utilities cutbacks resulting in less work. Karl, his sons, Kurt, Paul and Alan, and Erich and his son, Chris, run business.

    +

    1994 Karl Luedtke died.

    +

    1996 Lucille Luedte died. Ownership passed to Kurt, Paul and Alan Luedtke. Chris Luedtke began his own business in Frankfort.

    +

    2000 the company’s 70th anniversary. (This information is from the collection.)

    +
    + +

    The collection is organized following its original order, by series, and within series by number, date, and format.

    +
    + +

    The Organizational Records, 1932-2009, and undated, provide an unprecedented record of marine construction in the Great Lakes, including work on the Mackinac Bridge, the Soo Locks, and the Chicago Sanitary Canal, harbor work, dredging, and, more recent, habitat restoration projects.

    +

    The records include the following four series: Professional Organizations and Local History, 1980-2009; Daily Reports, 1960-1993; Jobs, 1932-2002, and No Low Bids (NLBs), 1970-2002. In addition, one folder of organizational history materials, published and written notes, collected by the archivist, is found in the first folder in Box 1. The collection is organized following its original order, by series, and within series by number, date, and format.

    +

    Series1: Professional Organizations and Local History, 1980-2009 (3 boxes, 1.5 cubic ft.), includes records of the following organizations: AASD and MCC; BLU; DCA; NADC; and Benzie County Economic Development Corporation. The series documents the involvement of the Luedtke family in professional organizations and associations and in their local community. This series is organized alphabetical by organization name, type of format, and then chronologically.

    +

    AASD and MCC (the American Association of Small Dredging and Marine Construction Companies), which is the predecessor of the National Association of Dredging Contractors (NACD), Testimonial, Senate Committee on Small Business, September 21, 1987 (one folder in Box 1). This folder includes background information such as newspaper clippings, congressional testimony, witness lists.

    +

    Benzie County Economic Development Corporation, Annual Meeting Minutes, 1980-2009 (Box 2, .5 cubic foot) includes: agendas, meeting minutes, reports, board comments, bylaws, and attachments including guidelines to establish a port authority, consulting proposal, articles of incorporation, and as resignation letter.

    +

    BLUA (Betsie Lake Utilities Authority) organizational records, 2004-2008 (Box 3, .5 cubic foot), include: Articles of Incorporation, 1988; Correspondence, 2005; Engineering Proposal, 1998; photograph of board members, 2004; property purchases, 2004; meeting minutes, 2007-2008; and wastewater treatment facility improvements, 2003.

    +

    DCA (Dredging Contractors of America) Annual Meeting materials, 2001-2008 (part 6 folders in Box 1) includes: greetings, activities, maps, driving directions, lists of attendees, schedules of events, reception and banquet information, agendas, meeting Minutes, biographies of speakers, financial records, reports, and bylaws.

    +

    NADC (National Association of Dredging Contractors) Annual Meeting materials, 1988-1989 (3 folders in Box 1), includes: agendas, meeting minutes, reports, financial records, congressional reception materials, by-laws, and enclosures.

    +

    Series 2: Daily Reports, 1960-1993, Boxes 4-77 (73 boxes, 36.5 cubic feet). This series is on printed Daily Report forms. Each form includes the following information added in handwriting: job number, date, day, shift, location, names of men who worked that day, their classification and rate of pay, equipment used, hours worked, total figures. Daily Reports are organized by job number and begin with Job number 298, 1960. There are obvious skips in the sequential job numbers within the series which were present when the collection came to the Clarke.

    +

    Series 3: Jobs, 1932-2002, Boxes 77-314 (237 boxes, 118.5 cubic feet). This series includes the jobs that Luedtke bid on, won, and completed in Michigan and other states including Illinois, Wisconsin, New York, Indiana, Ohio, Minnesota, Pennsylvania, and California. Some of these jobs were for the U.S. Corps of Engineers, which was noted on the labels. Most of the jobs include building something in a marine environment, but Luedtke also hauled rocks, lifted sunken boats, and moved a crane. Each job may include some or all of the following material: communications (various types), bid opening form, bid proposal, contract, addendums to bid, bid proposal, and/or contract; drawings (various, often blue-lines), lists of cost, equipment, labor, hours; changes to contract, certificates or bills of insurance, quality assurance programs, claims, quality control, financials/cost sheets, permits, newspaper clippings (copies), contracts, orders for equipment, photographs, negatives, change orders, and survey reports. Some of the earliest photographs include 1920s photographs of Luedtke divers in hard hat suits for commercial diving (deep diving). There are also incident reports and notes about a fire in Chicago. The series is in order by job number, which is also in chronological order. The first Job documented is number 5, Waukegan, Illinois, 1932, and the last is Job 309, Kenosha, Wisconsin, 2002. The sequential job number is almost complete. Two jobs have no number and are filed in the order in which they were found: Job H, Mackinaw city, 1943 – 1944, and Job Unknown, Port Washington, WI, 1950.

    +

    Jobs of note include the following: Job 354 includes correspondence with Albert Kahn Associated Architects and Engineers, 1966. Job 692 includes vandalism and oil spill. Job 644 includes photographs of Luedtke on strike. Job 608 includes information that Luedtke was fined by the Environmental Protection Agency (EPA), see the correspondence on yellow paper. There are also several major lawsuits within this series, notably one with Chicago over a collapsed tunnel (Job 763), a long, vicious lawsuit in which Luedtke finally emerged vindicated.

    +

    Series 4: No Low Bids (NLBs), 1970-2002, Boxes 315-375 (60 boxes, 30 cubic feet) document jobs Luedtke either just collected data on and decided not to bid on, or jobs they collected data on, bid on, and lost to competitors. There are very few completed bids in this series. Some of these jobs were for the U.S. Coast Guard or the U.S. Corps of Engineers, which was noted on the labels. For each Michigan job the folder may include some of all of the following material: abstract, proposal and/or addendum, maps, photographs, negatives, bid form and instructions, description of work to be done, equipment to be used, survey reports, invitation to bid and addendums, drawings (various), communications (various), project manuals, Luedtke notes of informational meetings, and project planning notes (on green paper), and insurance bid bonds. Sometimes Luedtke sent letters protesting that the competitor who won the bid over Luedtke could not possibly do the job at the rate they promised. These letters have been retained in the series. Besides Michigan, there are NLBs for Wisconsin, Illinois, New York, Ohio, Michigan, Pennsylvania, Minnesota, Indiana, and Missouri. This series is in chronological by month, day and year. For labeling purposes, the name of the job and year was included on the folder label, not the month, but the strict chronological order in which they were originally filed was followed by the processors. This series was heavily weeded. Please refer to the processing notes for clarification on the weeding.

    +

    All the boxes in the collection are .5 cubic foot boxes, except for two, Box #4 and #351, which are both .25 cubic foot boxes, a point which is noted on the box and folder listing.

    +

    Allergy Note: Those with allergies should be aware that while the collection overall is in excellent condition, parts of it have a slight mildew odor. Researchers should exercise caution while using the collection.

    +

    Processing Note:

    +

    As per the donor agreement, all materials not retained by the Clarke were set aside to be reviewed by the donor. Materials weeded from the collection include duplicates, blank forms, taxes, miscellaneous financials and correspondence, and reading material. A total of 81 cubic feet (76 boxes) of material was withdrawn during processing.

    +

    The Jobs folder included lawsuit depositions which included social security numbers. Pages with social security numbers were removed or copied and the copies were retained. Much supporting documentation was withdrawn from the law suits. Lawsuit materials retained explain sufficiently what the lawsuit was, who was involved, and how it was finally settled. Also, all materials were retained for jobs at Detroit, Mackinaw and the Soo Locks.

    +

    The No Low Bid (NLB) series was heavily weeded. For out-of-state jobs that Luedtke actually bid on the Clarke retained the proposal, contract, addendums to both, and Luedtke notes (usually on green paper). Luedtke collected a lot of information in this series but did not always bid on the jobs. If there was no evidence that they actually bid on the job and it was out-of-state, the entire folder was weeded. If it was unclear if Luedtke bid on a job in Michigan, all the materials in the folder were retained and a note was put in from the archivist explaining the situation.

    +
    + +

    + +

    + + Subjects: + Kahn, Albert, 1869-1942. + Luedtke Engineering Company (Frankfort, Mich.) + American Association of Small Dredging and Marine Construction Companies. + National Association of Dredging Contractors. + Benzie County Economic Development Corporation (Mich.) + Betsie Lake Utilites Authority (Frankfort, Mich.) + United States. Environmental Protection Agency. + Albert Kahn and Associated Architects and Engineers, Inc. (Detroit, Mich.) + United States. Coast Guard. + United States. Army. Corps of Engineers. + Ann Arbor Railroad Company. + Specifications -- Engineering. + Public utilities. + Engineers -- Michigan. + Water withdrawals -- Illinois -- Chicago Sanitary and Ship Canal. + Deep diving -- United States -- History -- 20th century. + Deep diving -- Great Lakes (North America) -- History -- 20th century. + Great Lakes (North America) -- History -- Sources. + Great Lakes (North America) -- Commerce -- History. + Great Lakes (North America) -- Docks. + Great Lakes (North America) -- Dredging.. + Great Lakes (North America) -- Harbors. + Great Lakes (North America) -- History -- 20th century. + Great Lakes (North America) -- Inland Water Transportation -- History -- 20th century. + Great Lakes (North America) -- Marinas. + Great Lakes (North America) -- Shipping -- History -- 20th century. + Great Lakes (North America) -- Salvage. + Michigan -- History -- Sources. + Frankfort (Mich.) -- History. + Soo Locks (Mich.) -- History. + Mackinac Bridge (Mich.) -- History. + Benzie County (Mich.) -- History. +
    + + + + Luedtke Engineering Company (Frankfort, Mich.) Organizational Records. + + + + 1 + 1 + Organizational Materials (copies),2015 + + + + + + 1 + 2 + AASD and MCC, Testimonial, Senate Committee on Small Business,September 21, 1987 + + + + + + 1 + 3 + DCA Annual Meeting,2001 + + + + + + 1 + 4 + DCA Annual Meeting,2004 + + + + + + 1 + 5 + DCA Annual Meeting,2005 + + + + + + 1 + 6 + DCA Annual Meeting,2006 + + + + + + 1 + 7 + DCA Annual Meeting,2007 + + + + + + 1 + 8 + DCA Annual Meeting,2008 + + + + + + 1 + 9 + NADC Annual Meeting,1988 + + + + + + 1 + 10 + NADC Annual Meeting,1989 + + + + + + 1 + 11 + NADC Background Information,1989 + + + + + + 2 + 1 + Benzie County Economic Development Corporation, Annual Meeting Minutes,1980 – 1986 + + + + + + 2 + 2 + Benzie County Economic Development Corporation, Annual Meeting Minutes,1987 – 1989 + + + + + + 2 + 3 + Benzie County Economic Development Corporation, Annual Meeting Minutes,1995 – 1997 + + + + + + 2 + 4 + Benzie County Economic Development Corporation, Annual Meeting Minutes,1998 – 2000 + + + + + + 2 + 5 + Benzie County Economic Development Corporation, Annual Meeting Minutes,2001 – 2002 + + + + + + 2 + 6 + Benzie County Economic Development Corporation, Annual Meeting Minutes,2003 – 2004 + + + + + + 2 + 7 + Benzie County Economic Development Corporation, Annual Meeting Minutes,2005 – 2009 + + + + + + 3 + 1 + BLUA, Articles of Incorporation,April 12, 1988 + + + + + + 3 + 2 + BLUA, Correspondence,2005 + + + + + + 3 + 3 + BLUA, Engineering Proposal,June 11, 1998 + + + + + + 3 + 4 + BLUA, Photograph, 2004 Board Members,2004 + + + + + + 3 + 5 + BLUA, Property Purchases,2004 + + + + + + 3 + 6 + BLUA, Regular Meeting Minutes,2007 + + + + + + 3 + 7 + BLUA, Regular Meeting Minutes,January – July 2008 + + + + + + 3 + 8 + BLUA, Regular Meeting Minutes,August – December 2008 + + + + + + 3 + 9 + BLUA, Wastewater Treatment Facility Improvements, Basis of Design,April 28, 2003 + + + + + + 4 + 1 + (.25 cubic ft.): Daily Report, Job 38,1938 + + + + + + 4 + 2 + (.25 cubic ft.): Daily Report, Job 39,1939 + + + + + + 4 + 3 + (.25 cubic ft.): Daily Report, Job 50,1939 + + + + + + 4 + 4 + (.25 cubic ft.): Daily Report, Job 231,1952 + + + + + + 5 + 1 + Daily Report, Job 298,1960 + + + + + + 5 + 2 + Daily Report, Job 303,1960 + + + + + + 5 + 3 + Daily Report, Job 305,1960 + + + + + + 5 + 4 + Daily Report, Job 307,1961 + + + + + + 5 + 5 + Daily Report, Job 307, 1960, 1 of 4,1960 + + + + + + 5 + 6 + Daily Report, Job 307, 1960, 2 of 4,1960 + + + + + + 5 + 7 + Daily Report, Job 307, 1960, 3 of 4,1960 + + + + + + 5 + 8 + Daily Report, Job 307, 1960, 4 of 4,1960 + + + + + + 5 + 9 + Daily Report, Job 307,1961 + + + + + + 5 + 10 + Daily Report, Job 308, 1960, 1 of 2,1960 + + + + + + 5 + 11 + Daily Report, Job 308, 1960, 2 of 2,1960 + + + + + + 6 + 1 + Daily Report, Job 309,1960 + + + + + + 6 + 2 + Daily Report, Job 310,1960 + + + + + + 6 + 3 + Daily Report, Job 311, 1960, 1 of 3,1960 + + + + + + 6 + 4 + Daily Report, Job 311, 1960, 2 of 3,1960 + + + + + + 6 + 5 + Daily Report, Job 311, 1960, 3 of 3,1960 + + + + + + 6 + 6 + Daily Report, Job 312,1960 + + + + + + 6 + 7 + Daily Report, Job 313,1960 + + + + + + 6 + 8 + Daily Report, Job 314,1960 + + + + + + 6 + 9 + Daily Report, Job 315, 1961, 1 of 2,1961 + + + + + + 6 + 10 + Daily Report, Job 315, 1961, 2 of 2,1961 + + + + + + 6 + 11 + Daily Report, Job 316,1961 + + + + + + 6 + 12 + Daily Report, Job 319, 1963, 1 of 2,1963 + + + + + + 7 + 1 + Daily Report, Job 319, 1963, 2 of 2,1963 + + + + + + 7 + 2 + Daily Report, Job 319,1964 + + + + + + 7 + 3 + Daily Report, Job 320,1963 + + + + + + 7 + 4 + Daily Report, Job 321,1963 + + + + + + 7 + 5 + Daily Report, Job 322,1963 + + + + + + 7 + 5 + Daily Report, Job 322,1964 + + + + + + 7 + 6 + Daily Report, Job 323,1963 + + + + + + 7 + 7 + Daily Report, Job 324,1963 + + + + + + 7 + 8 + Daily Report, Job 325,1963 + + + + + + 7 + 9 + Daily Report, Job 326, 1964, 1 of 2,1964 + + + + + + 7 + 10 + Daily Report, Job 326, 1964, 2 of 2,1964 + + + + + + 7 + 11 + Daily Report, Job 327,1963 + + + + + + 7 + 12 + Daily Report, Job 328,1963 + + + + + + 7 + 13 + Daily Report, Job 329,1964 + + + + + + 7 + 14 + Daily Report, Job 330,1964 + + + + + + 7 + 15 + Daily Report, Job 331,1964 + + + + + + 7 + 16 + Daily Report, Job 332,1964 + + + + + + 7 + 17 + Daily Report, Job 333,1964 + + + + + + 8 + 1 + Daily Report, Job 334,1964 + + + + + + 8 + 2 + Daily Report, Job 334,1965 + + + + + + 8 + 3 + Daily Report, Job 335,1964 + + + + + + 8 + 4 + Daily Report, Job 337, 1965, 1 of 2,1965 + + + + + + 8 + 5 + Daily Report, Job 337, 1965, 2 of 2,1965 + + + + + + 8 + 6 + Daily Report, Job 338,1964 + + + + + + 8 + 7 + Daily Report, Job 339,1964 + + + + + + 8 + 8 + Daily Report, Job 340,1964 + + + + + + 8 + 9 + Daily Report, Job 340,1965 + + + + + + 8 + 10 + Daily Report, Job 341,1965 + + + + + + 8 + 11 + Daily Report, Job 342,1965 + + + + + + 8 + 12 + Daily Report, Job 343,1965 + + + + + + 8 + 13 + Daily Report, Job 345,1965 + + + + + + 8 + 14 + Daily Report, Job 346,1965 + + + + + + 9 + 1 + Daily Report, Job 347,1965 + + + + + + 9 + 2 + Daily Report, Job 348,1965 + + + + + + 9 + 3 + Daily Report, Job 349,1965 + + + + + + 9 + 4 + Daily Report, Job 350,1965 + + + + + + 9 + 5 + Daily Report, Job 454,1977 + + + + + + 9 + 6 + Daily Report, Job 457, 1977, 1 of 9,1977 + + + + + 9 + 7 + Daily Report, Job 457, 1977, 2 of 9,1977 + + + + + + 9 + 8 + Daily Report, Job 457, 1977, 3 of 9,1977 + + + + + + 10 + 1 + Daily Report, Job 457, 1977, 4 of 9,1977 + + + + + + 10 + 2 + Daily Report, Job 457, 1977, 5 of 9,1977 + + + + + + 10 + 3 + Daily Report, Job 457, 1977, 6 of 9,1977 + + + + + + 10 + 4 + Daily Report, Job 457, 1977, 7 of 9,1977 + + + + + + 10 + 5 + Daily Report, Job 457, 1977, 8 of 9,1977 + + + + + + 10 + 6 + Daily Report, Job 457, 1977, 9 of 9,1977 + + + + + + 11 + 1 + Daily Report, Job 457,1978 + + + + + + 11 + 2 + Daily Report, Job 460,1976-1977 + + + + + + 11 + 3 + Daily Report, Job 460, 1977, 1 of 4,1977 + + + + + + 11 + 4 + Daily Report, Job 460, 1977, 2 of 4,1977 + + + + + + 11 + 5 + Daily Report, Job 460, 1977, 3 of 4,1977 + + + + + + 11 + 6 + Daily Report, Job 460, 1977, 4 of 4,1977 + + + + + + 11 + 7 + Daily Report, Job 461,1977 + + + + + + 12 + 1 + Daily Report, Job 462,1977 + + + + + + 12 + 2 + Daily Report, Job 463,1977 + + + + + + 12 + 3 + Daily Report, Job 464,1977 + + + + + + 12 + 4 + Daily Report, Job 465, 1977, 1 of 3,1977 + + + + + + 12 + 5 + Daily Report, Job 465, 1977, 2 of 3,1977 + + + + + + 12 + 6 + Daily Report, Job 465, 1977, 3 of 3,1977 + + + + + + 12 + 7 + Daily Report, Job 467,1977 + + + + + + 12 + 8 + Daily Report, Job 469,1977 + + + + + + 12 + 9 + Daily Report, Job 471, 1977, 1 of 3,1977 + + + + + + 12 + 10 + Daily Report, Job 471, 1977, 2 of 3,1977 + + + + + + 13 + 1 + Daily Report, Job 471, 1977, 3 of 3,1977 + + + + + + 13 + 2 + Daily Report, Job 472,1977 + + + + + + 13 + 3 + Daily Report, Job 473,1977 + + + + + + 13 + 4 + Daily Report, Job 473, 1978, 1 of 2,1978 + + + + + + 13 + 5 + Daily Report, Job 473, 1978, 2 of 2,1978 + + + + + + 13 + 6 + Daily Report, Job 474,1977 + + + + + + 13 + 7 + Daily Report, Job 474, 1978, 1 of 3,1978 + + + + + + 14 + 1 + Daily Report, Job 474, 1978, 2 of 3,1978 + + + + + + 14 + 2 + Daily Report, Job 474, 1978, 3 of 3,1978 + + + + + + 14 + 3 + Daily Report, Job 475, 1978, 1 of 3,1978 + + + + + + 14 + 4 + Daily Report, Job 475, 1978, 2 of 3,1978 + + + + + + 14 + 5 + Daily Report, Job 475, 1978, 3 of 3,1978 + + + + + + 14 + 6 + Daily Report, Job 475, 1979,1979 + + + + + + 15 + 1 + Daily Report, Job 476,1977 + + + + + + 15 + 2 + Daily Report, Job 477, 1 of 2,1977 + + + + + + 15 + 3 + Daily Report, Job 477, 2 of 2,1977 + + + + + + 15 + 4 + Daily Report, Job 477,1978 + + + + + + 15 + 5 + Daily Report, Job 479,1977 + + + + + + 15 + 6 + Daily Report, Job 480,1977 + + + + + + 15 + 7 + Daily Report, Job 481,1977 + + + + + + 15 + 8 + Daily Report, Job 481,1978 + + + + + + 15 + 9 + Daily Report, Job 482,1978 + + + + + + 15 + 10 + Daily Report, Job 483,1978 + + + + + + 15 + 11 + Daily Report, Job 484,1978 + + + + + + 15 + 12 + Daily Report, Job 485,1978 + + + + + + 15 + 13 + Daily Report, Job 486,1978 + + + + + + 16 + 1 + Daily Report, Job 487, 1978, 1 of 2,1978 + + + + + + 16 + 2 + Daily Report, Job 487, 1978, 2 of 2,1978 + + + + + + 16 + 3 + Daily Report, Job 487, 1979, 1 of 3,1979 + + + + + + 16 + 4 + Daily Report, Job 487, 1979, 2 of 3,1979 + + + + + + 17 + 1 + Daily Report, Job 487, 1979, 3 of 3,1979 + + + + + + 17 + 2 + Daily Report, Job 488, 1978, 1 of 3,1978 + + + + + + 17 + 3 + Daily Report, Job 488, 1978, 2 of 3,1978 + + + + + + 17 + 4 + Daily Report, Job 488, 1978, 3 of 3,1978 + + + + + + 17 + 5 + Daily Report, Job 489,1979 + + + + + + 17 + 6 + Daily Report, Job 490, 1978, 1 of 3,1978 + + + + + + 17 + 7 + Daily Report, Job 490, 1978, 2 of 3,1978 + + + + + + 18 + 1 + Daily Report, Job 490, 1978, 3 of 3,1978 + + + + + + 18 + 2 + Daily Report, Job 491,1978 + + + + + + 18 + 3 + Daily Report, Job 491,1979 + + + + + + 18 + 4 + Daily Report, Job 492, 1978, 1 of 3,1978 + + + + + + 18 + 5 + Daily Report, Job 492, 1978, 2 of 3,1978 + + + + + + 18 + 6 + Daily Report, Job 492, 1978, 3 of 3,1978 + + + + + + 18 + 7 + Daily Report, Job 492, 1979, 1 of 3,1979 + + + + + + 18 + 8 + Daily Report, Job 492, 1979, 2 of 3,1979 + + + + + + 18 + 9 + Daily Report, Job 492, 1979, 3 of 3,1979 + + + + + + 19 + 1 + Daily Report, Job 493, 1978, 1 of 2,1978 + + + + + + 19 + 2 + Daily Report, Job 493, 1978, 2 of 2,1978 + + + + + + 19 + 3 + Daily Report, Job 493,1979 + + + + + + 19 + 4 + Daily Report, Job 494,1978 + + + + + + 19 + 5 + Daily Report, Job 494,1979 + + + + + + 19 + 6 + Daily Report, Job 495,1978 + + + + + + 19 + 7 + Daily Report, Job 498,1978 + + + + + + 19 + 8 + Daily Report, Job 499,1978 + + + + + + 19 + 9 + Daily Report, Job 500,1978 + + + + + + 19 + 10 + Daily Report, Job 501,1978 + + + + + + 19 + 11 + Daily Report, Job 501,1979 + + + + + + 19 + 12 + Daily Report, Job 502,1979 + + + + + + 19 + 13 + Daily Report, Job 502,1980 + + + + + + 20 + 1 + Daily Report, Job 503, 1979, 1 of 5,1979 + + + + + + 20 + 2 + Daily Report, Job 503, 1979, 2 of 5,1979 + + + + + + 20 + 3 + Daily Report, Job 503, 1979, 3 of 5,1979 + + + + + + 20 + 4 + Daily Report, Job 503, 1979, 4 of 5,1979 + + + + + + 20 + 5 + Daily Report, Job 503, 1979, 5 of 5,1979 + + + + + + 20 + 6 + Daily Report, Job 504, 1979, 1 of 3,1979 + + + + + + 21 + 1 + Daily Report, Job 504, 1979, 2 of 3,1979 + + + + + + 21 + 2 + Daily Report, Job 504, 1979, 3 of 3,1979 + + + + + + 21 + 3 + Daily Report, Job 505,1979 + + + + + + 21 + 4 + Daily Report, Job 506,1979 + + + + + + 21 + 5 + Daily Report, Job 507, 1979, 1 of 3,1979 + + + + + + 21 + 6 + Daily Report, Job 507, 1979, 2 of 3,1979 + + + + + + 21 + 7 + Daily Report, Job 507, 1979, 3 of 3,1979 + + + + + + 21 + 8 + Daily Report, Job 508,1979 + + + + + + 21 + 9 + Daily Report, Job 510,1979 + + + + + + 21 + 9 + Daily Report, Job 511,1979 + + + + + + 22 + 1 + Daily Report, Job 512, 1979, 1 of 4,1979 + + + + + + 22 + 2 + Daily Report, Job 512, 1979, 2 of 4,1979 + + + + + + 22 + 3 + Daily Report, Job 512, 1979, 3 of 4,1979 + + + + + + 22 + 4 + Daily Report, Job 512, 1979, 4 of 4,1979 + + + + + + 22 + 5 + Daily Report, Job 512, 1980, 1 of 7,1980 + + + + + + 22 + 6 + Daily Report, Job 512, 1980, 2 of 7,1980 + + + + + + 22 + 7 + Daily Report, Job 512, 1980, 3 of 7,1980 + + + + + + 22 + 8 + Daily Report, Job 512, 1980, 4 of 7,1980 + + + + + + 23 + 1 + Daily Report, Job 512, 1980, 5 of 7,1980 + + + + + + 23 + 2 + Daily Report, Job 512, 1980, 6 of 7,1980 + + + + + + 23 + 3 + Daily Report, Job 512, 1980, 7 of 7,1980 + + + + + + 23 + 4 + Daily Report, Job 513,1979 + + + + + + 23 + 5 + Daily Report, Job 513,1980 + + + + + + 23 + 6 + Daily Report, Job 514,1979 + + + + + + 23 + 7 + Daily Report, Job 515,1979 + + + + + + 23 + 8 + Daily Report, Job 516,1979 + + + + + + 23 + 9 + Daily Report, Job 517,1979 + + + + + + 23 + 10 + Daily Report, Job 521,1979 + + + + + + 23 + 11 + Daily Report, Job 523,1980 + + + + + + 23 + 12 + Daily Report, Job 524,1979 + + + + + + 23 + 13 + Daily Report, Job 524,1980 + + + + + + 23 + 14 + Daily Report, Job 526,1979-1980 + + + + + + 24 + 1 + Daily Report, Job 527, 1 of 2,1980 + + + + + + 24 + 2 + Daily Report, Job 527, 2 of 2,1980 + + + + + + 24 + 3 + Daily Report, Job 527,1981 + + + + + 24 + 4 + Daily Report, Job 528,1980 + + + + + 24 + 5 + Daily Report, Job 529,1980 + + + + + 24 + 6 + Daily Report, Job 530,1980 + + + + + + 24 + 7 + Daily Report, Job 536,1980 + + + + + + 24 + 8 + Daily Report, Job 536,1981 + + + + + 24 + 9 + Daily Report, Job 537, 1 of 2,1980 + + + + + + 24 + 10 + Daily Report, Job 537, 2 of 2,1980 + + + + + + 25 + 1 + Daily Report, Job 538,1980 + + + + + + 25 + 2 + Daily Report, Job 539,1 of 4,1980 + + + + + 25 + 3 + Daily Report, Job 539,2 of 4,1980 + + + + + + 25 + 4 + Daily Report, Job 539,3 of 4,1980 + + + + + + 25 + 5 + Daily Report, Job 539,4 of 4,1980 + + + + + + 25 + 6 + Daily Report, Job 539,1981 + + + + + 25 + 7 + Daily Report, Job 540,1980 + + + + + + 25 + 8 + Daily Report, Job 542,1980 + + + + + + 25 + 9 + Daily Report, Job 543,1981 + + + + + + 26 + 1 + Daily Report, Job 544,1980 + + + + + 26 + 2 + Daily Report, Job 545,1980 + + + + + + 26 + 3 + Daily Report, Job 545,1981 + + + + + + 26 + 4 + Daily Report, Job 545,1980 + + + + + + 26 + 5 + Daily Report, Job 546.1 of 6,1981 + + + + + 26 + 6 + Daily Report, Job 546. 2 of 6,1981 + + + + + + 26 + 7 + Daily Report, Job 546. 3 of 6,1981 + + + + + + 27 + 1 + Daily Report, Job 546. 4 of 6,1981 + + + + + 27 + 2 + Daily Report, Job 546. 5 of 6,1981 + + + + + + 27 + 3 + Daily Report, Job 546. 6 of 6,1981 + + + + + 27 + 4 + Daily Report, Job 547.1980 + + + + + + 27 + 5 + Daily Report, Job 548,1981 + + + + + 27 + 6 + Daily Report, Job 549,1981 + + + + + + 27 + 7 + Daily Report, Job 550,1981 + + + + + + 27 + 8 + Daily Report, Job 551, 1 of 31981 + + + + + 27 + 9 + Daily Report, Job 551, 2 of 31981 + + + + + + 28 + 1 + Daily Report, Job 551, 3 of 31981 + + + + + + 28 + 2 + Daily Report, Job 552, 1 of 4,1981 + + + + + + 28 + 3 + Daily Report, Job 552, 2 of 4,1981 + + + + + + 28 + 4 + Daily Report, Job 552, 3 of 4,1981 + + + + + + 28 + 5 + Daily Report, Job 552, 4 of 4,1981 + + + + + + 28 + 6 + Daily Report, Job 552, 1 of 8,1982 + + + + + + 29 + 1 + Daily Report, Job 552, 2 of 8,1982 + + + + + 29 + 2 + Daily Report, Job 552, 3 of 8,1982 + + + + + 29 + 3 + Daily Report, Job 552, 4 of 8,1982 + + + + + 29 + 4 + Daily Report, Job 552, 5 of 8,1982 + + + + + 29 + 5 + Daily Report, Job 552, 6 of 8,1982 + + + + + 29 + 6 + Daily Report, Job 552, 7 of 8,1982 + + + + + + 29 + 7 + Daily Report, Job 552, 8 of 8,1982 + + + + + + 30 + 1 + Daily Report, Job 553, 1 of 2,1981 + + + + + + 30 + 2 + Daily Report, Job 553, 2 of 2,1981 + + + + + + 30 + 3 + Daily Report, Job 555, 1 of 2,1981 + + + + + 30 + 4 + Daily Report, Job 555, 2 of 2,1981 + + + + + + 30 + 6 + Daily Report, Job 556,1981 + + + + + + 30 + 7 + Daily Report, Job 557,1981 + + + + + 30 + 8 + Daily Report, Job 558,1981 + + + + + + 31 + 1 + Daily Report, Job 558, 1 of 2,1982 + + + + + + 31 + 2 + Daily Report, Job 558, 2 of 2,1981 + + + + + + 31 + 3 + Daily Report, Job 559,1980 + + + + + + 31 + 4 + Daily Report, Job 560, 1 of 3,1981 + + + + + 31 + 5 + Daily Report, Job 560, 2 of 3,1981 + + + + + + 31 + 6 + Daily Report, Job 560, 3 of 3,1981 + + + + + + 31 + 7 + Daily Report, Job 560,1982 + + + + + + 31 + 8 + Daily Report, Job 561, 1 of 2,1982 + + + + + + 32 + 1 + Daily Report, Job 561, 2 of 2,1982 + + + + + + 32 + 2 + Daily Report, Job 562,1982 + + + + + + 32 + 3 + Daily Report, Job 563,1981 + + + + + + 32 + 4 + Daily Report, Job 563, 1 of 2,1982 + + + + + + 32 + 5 + Daily Report, Job 563, 2 of 2,1982 + + + + + + 32 + 6 + Daily Report, Job 564,1982 + + + + + + 32 + 7 + Daily Report, Job 565,1982 + + + + + + 32 + 8 + Daily Report, Job 566,1982 + + + + + + 32 + 9 + Daily Report, Job 567,1982 + + + + + + 32 + 8 + Daily Report, Job 568,1982 + + + + + + 32 + 9 + Daily Report, Job 569,1982 + + + + + + 33 + 1 + Daily Report, Job 570,1982 + + + + + + 33 + 2 + Daily Report, Job 571,1982 + + + + + + 33 + 3 + Daily Report, Job 572, 1 of 2,1983 + + + + + + 33 + 4 + Daily Report, Job 572, 2 of 2,1983 + + + + + 33 + 5 + Daily Report, Job 573,1982 + + + + + + 33 + 6 + Daily Report, Job 574, 1 of 3,1982 + + + + + + 33 + 7 + Daily Report, Job 574, 2 of 3,1982 + + + + + + 34 + 1 + Daily Report, Job 574, 3 of 3,1982 + + + + + + 34 + 2 + Daily Report, Job 575,1982 + + + + + + 34 + 3 + Daily Report, Job 576, 1 of 2,1982 + + + + + + 34 + 4 + Daily Report, Job 576, 2 of 2,1982 + + + + + 34 + 5 + Daily Report, Job 577,1982 + + + + + + 34 + 6 + Daily Report, Job 577, 1 of 2,1983 + + + + + + 34 + 7 + Daily Report, Job 577, 2 of 2,1983 + + + + + + 34 + 8 + Daily Report, Job 577, 1 of 2,1984 + + + + + + 35 + 1 + Daily Report, Job 577, 2 of 2,1984 + + + + + + 35 + 2 + Daily Report, Job 578,1982 + + + + + + 35 + 3 + Daily Report, Job 579,1982 + + + + + + 35 + 4 + Daily Report, Job 580,1982 + + + + + 35 + 5 + Daily Report, Job 581,1982 + + + + + + 35 + 6 + Daily Report, Job 582, 1 of 5,1983 + + + + + 35 + 6 + Daily Report, Job 582, 2 of 5,1983 + + + + + 35 + 7 + Daily Report, Job 582, 3 of 5,1983 + + + + + + 35 + 8 + Daily Report, Job 582, 4 of 5,1983 + + + + + + 36 + 1 + Daily Report, Job 582, 5 of 5,1983 + + + + + + 36 + 2 + Daily Report, Job 582,1984 + + + + + + 36 + 3 + Daily Report, Job 584,1982 + + + + + 36 + 4 + Daily Report, Job 584,1983 + + + + + 36 + 5 + Daily Report, Job 585,1982 + + + + + 36 + 6 + Daily Report, Job 586,1983 + + + + + 36 + 7 + Daily Report, Job 587, 1 of 2,1983 + + + + + 36 + 8 + Daily Report, Job 587, 2 of 2,1983 + + + + + 36 + 9 + Daily Report, Job 588, 1 of 2,1983 + + + + + 36 + 10 + Daily Report, Job 588, 2 of 2,1983 + + + + + 36 + 11 + Daily Report, Job 589,1983 + + + + + + 37 + 1 + Daily Report, Job 590, 1 of 4,1983 + + + + + + 37 + 2 + Daily Report, Job 590, 2 of 4,1983 + + + + + + 37 + 3 + Daily Report, Job 590, 3 of 4,1983 + + + + + + 37 + 4 + Daily Report, Job 590, 4 of 4,1983 + + + + + + 37 + 5 + Daily Report, Job 590, 1 of 6,1984 + + + + + + 37 + 6 + Daily Report, Job 590, 2 of 6,1984 + + + + + + 38 + 1 + Daily Report, Job 590, 3 of 6,1984 + + + + + + 38 + 2 + Daily Report, Job 590, 4 of 6,1984 + + + + + + 38 + 3 + Daily Report, Job 590, 5 of 6,1984 + + + + + + 38 + 4 + Daily Report, Job 590, 6 of 6,1984 + + + + + + 38 + 5 + Daily Report, Job 590,1985 + + + + + + 39 + 1 + Daily Report, Job 591,1984 + + + + + 39 + 2 + Daily Report, Job 592,1983 + + + + + + 39 + 3 + Daily Report, Job 592,1984 + + + + + + 39 + 4 + Daily Report, Job 593,1983 + + + + + + 39 + 5 + Daily Report, Job 593,1984 + + + + + 39 + 6 + Daily Report, Job 594,1983 + + + + + + 39 + 7 + Daily Report, Job 595,1983 + + + + + + 39 + 8 + Daily Report, Job 595,1984 + + + + + 39 + 9 + Daily Report, Job 596,1983 + + + + + + 39 + 10 + Daily Report, Job 596, 1 of 2,1984 + + + + + + 40 + 1 + Daily Report, Job 596, 2 of 2,1984 + + + + + 40 + 2 + Daily Report, Job 597, 1 of 2,1984 + + + + + 40 + 3 + Daily Report, Job 597, 2 of 2,1984 + + + + + 40 + 4 + Daily Report, Job 599,1984 + + + + + + 40 + 5 + Daily Report, Job 600, 1 of 3,1984 + + + + + 41 + 1 + Daily Report, Job 600, 2 of 3,1984 + + + + + 41 + 2 + Daily Report, Job 600, 3 of 3,1984 + + + + + + 41 + 3 + Daily Report, Job 601,1984 + + + + + + 41 + 4 + Daily Report, Job 602, 1 of 4,1984 + + + + + 41 + 5 + Daily Report, Job 602, 2 of 4,1984 + + + + + 41 + 6 + Daily Report, Job 602, 3 of 4,1984 + + + + + + 41 + 7 + Daily Report, Job 602, 4 of 4,1984 + + + + + + 42 + 1 + Daily Report, Job 603,1984 + + + + + + 42 + 2 + Daily Report, Job 604,1984 + + + + + 42 + 3 + Daily Report, Job 605,1984 + + + + + + 42 + 4 + Daily Report, Job 606, 1 of 5,1984 + + + + + 42 + 5 + Daily Report, Job 606, 2 of 5,1984 + + + + + + 42 + 6 + Daily Report, Job 606, 3 of 5,1984 + + + + + + 42 + 7 + Daily Report, Job 606, 4 of 5,1984 + + + + + + 43 + 1 + Daily Report, Job 606, 5 of 5,1984 + + + + + 43 + 2 + Daily Report, Job 607, 1 of 2,1984 + + + + + 43 + 3 + Daily Report, Job 607, 2 of 2,1984 + + + + + + 43 + 4 + Daily Report, Job 608,1984 + + + + + + 43 + 5 + Daily Report, Job 608, 1 of 8,1985 + + + + + 44 + 1 + Daily Report, Job 608, 2 of 8,1985 + + + + + 44 + 2 + Daily Report, Job 608, 3 of 8,1985 + + + + + 44 + 3 + Daily Report, Job 608, 4 of 8,1985 + + + + + 44 + 4 + Daily Report, Job 608, 5 of 8,1985 + + + + + 44 + 5 + Daily Report, Job 608, 6 of 8,1985 + + + + + 44 + 6 + Daily Report, Job 608, 7 of 8,1985 + + + + + + 44 + 7 + Daily Report, Job 608, 8 of 8,1985 + + + + + + 44 + 8 + Daily Report, Job 608,1986 + + + + + + 45 + 1 + Daily Report, Job 609,1984 + + + + + 45 + 2 + Daily Report, Job 609,1985 + + + + + 45 + 3 + Daily Report, Job 610,1984 + + + + + 45 + 4 + Daily Report, Job 610,1985 + + + + + 45 + 5 + Daily Report, Job 611, 1 of 2,1984 + + + + + 45 + 6 + Daily Report, Job 611, 2 of 2,1984 + + + + + 45 + 7 + Daily Report, Job 612,1985 + + + + + 45 + 8 + Daily Report, Job 613,1984 + + + + + + 45 + 9 + Daily Report, Job 614, 1 of 2,1984 + + + + + + 45 + 10 + Daily Report, Job 614, 2 of 2,1984 + + + + + + 46 + 1 + Daily Report, Job 614, 1 of 2,1985 + + + + + 46 + 2 + Daily Report, Job 614, 2 of 2,1985 + + + + + + 46 + 3 + Daily Report, Job 615, 1 of 8,1985 + + + + + 46 + 4 + Daily Report, Job 615, 2 of 8,1985 + + + + + 46 + 5 + Daily Report, Job 615, 3 of 8,1985 + + + + + + 46 + 6 + Daily Report, Job 615, 4 of 8,1985 + + + + + + 47 + 1 + Daily Report, Job 615, 5 of 8,1985 + + + + + 47 + 2 + Daily Report, Job 615, 6 of 8,1985 + + + + + 47 + 3 + Daily Report, Job 615, 7 of 8,1985 + + + + + + 47 + 4 + Daily Report, Job 615, 8 of 8,1985 + + + + + + 47 + 5 + Daily Report, Job 615, 1 of 2,1986 + + + + + + 47 + 6 + Daily Report, Job 615, 2 of 2,1986 + + + + + + 48 + 1 + Daily Report, Job 617,1985 + + + + + + 48 + 2 + Daily Report, Job 618,1985 + + + + + + 48 + 3 + Daily Report, Job 619,1985 + + + + + + 48 + 4 + Daily Report, Job 620, 1 of 3,1985 + + + + + + 48 + 5 + Daily Report, Job 620, 2 of 3,1985 + + + + + + 48 + 6 + Daily Report, Job 620, 3 of 3,1985 + + + + + + 48 + 7 + Daily Report, Job 621,1985 + + + + + + 48 + 8 + Daily Report, Job 622, 1 of 3,1985 + + + + + + 49 + 1 + Daily Report, Job 622, 2 of 3,1985 + + + + + + 49 + 2 + Daily Report, Job 622, 3 of 3,1985 + + + + + + 49 + 3 + Daily Report, Job 623,1985 + + + + + + 49 + 4 + Daily Report, Job 624,1985 + + + + + + 49 + 5 + Daily Report, Job 624, 1 of 5,1986 + + + + + + 49 + 6 + Daily Report, Job 624, 2 of 5,1986 + + + + + + 50 + 1 + Daily Report, Job 624, 3 of 5,1986 + + + + + 50 + 2 + Daily Report, Job 624, 4 of 5,1986 + + + + + + 50 + 3 + Daily Report, Job 624, 5 of 5,1986 + + + + + + 50 + 4 + Daily Report, Job 625, 1 of 3,1985 + + + + + + 50 + 5 + Daily Report, Job 625, 2 of 3,1985 + + + + + + 51 + 1 + Daily Report, Job 625, 3 of 3,1985 + + + + + + 51 + 2 + Daily Report, Job 626,1985 + + + + + 51 + 3 + Daily Report, Job 627,1985 + + + + + + 51 + 4 + Daily Report, Job 628,1987 + + + + + + 51 + 5 + Daily Report, Job 629, 1 of 5,1985 + + + + + + 51 + 6 + Daily Report, Job 629, 2 of 5,1985 + + + + + + 52 + 1 + Daily Report, Job 629, 3 of 5,1985 + + + + + + 52 + 2 + Daily Report, Job 629, 4 of 5,1985 + + + + + 52 + 3 + Daily Report, Job 629, 5 of 5,1985 + + + + + 52 + 4 + Daily Report, Job 629, 1 of 2,1986 + + + + + + 52 + 5 + Daily Report, Job 629, 2 of 2,1986 + + + + + + 52 + 6 + Daily Report, Job 630,1986 + + + + + + 53 + 1 + Daily Report, Job 631,1986 + + + + + 53 + 2 + Daily Report, Job 632,1986 + + + + + + 53 + 3 + Daily Report, Job 6331986 + + + + + + 53 + 4 + Daily Report, Job 634, 1 of 4,1986 + + + + + 53 + 5 + Daily Report, Job 634, 2 of 4,1986 + + + + + 53 + 6 + Daily Report, Job 634, 3 of 4,1986 + + + + + 53 + 7 + Daily Report, Job 634, 4 of 4,1986 + + + + + + 53 + 8 + Daily Report, Job 634,1987 + + + + + + 54 + 1 + Daily Report, Job 635,1986 + + + + + + 54 + 2 + Daily Report, Job 636,1986 + + + + + + 54 + 3 + Daily Report, Job 637,1986 + + + + + + 54 + 4 + Daily Report, Job 638,1986 + + + + + + 54 + 5 + Daily Report, Job 638,1987 + + + + + + 54 + 6 + Daily Report, Job 639, 1 of 2,1986 + + + + + + 54 + 7 + Daily Report, Job 639, 2 of 2,1986 + + + + + 54 + 8 + Daily Report, Job 640, 1 of 3,1986 + + + + + 54 + 9 + Daily Report, Job 640, 2 of 3,1986 + + + + + + 54 + 10 + Daily Report, Job 640, 3 of 3,1986 + + + + + + 55 + 1 + Daily Report, Job 640, 1 of 2,1987 + + + + + + 55 + 2 + Daily Report, Job 640, 2 of 2,1987 + + + + + + 55 + 3 + Daily Report, Job 641, 1 of 6,1986 + + + + + 55 + 4 + Daily Report, Job 641, 2 of 6,1986 + + + + + 55 + 5 + Daily Report, Job 641, 3 of 6,1986 + + + + + 55 + 6 + Daily Report, Job 641, 4 of 6,1986 + + + + + 56 + 1 + Daily Report, Job 641, 5 of 6,1986 + + + + + 56 + 2 + Daily Report, Job 641, 6 of 6,1986 + + + + + 56 + 3 + Daily Report, Job 643, 1 of 4,1987 + + + + + 56 + 4 + Daily Report, Job 643, 2 of 4,1987 + + + + + + 56 + 5 + Daily Report, Job 643, 3 of 4,1987 + + + + + + 56 + 6 + Daily Report, Job 643, 4 of 4,1987 + + + + + + 56 + 7 + Daily Report, Job 644,1987 + + + + + + 57 + 1 + Daily Report, Job 644, 1 of 9,1987 + + + + + 57 + 2 + Daily Report, Job 644, 2 of 9,1987 + + + + + 57 + 3 + Daily Report, Job 644, 3 of 9,1987 + + + + + 57 + 4 + Daily Report, Job 644, 4 of 9,1987 + + + + + 57 + 5 + Daily Report, Job 644, 5 of 9,1987 + + + + + 57 + 6 + Daily Report, Job 644, 6 of 9,1987 + + + + + 58 + 1 + Daily Report, Job 644, 7 of 9,1987 + + + + + 58 + 2 + Daily Report, Job 644, 8 of 9,1987 + + + + + 58 + 3 + Daily Report, Job 644, 9 of 9,1987 + + + + + + 58 + 4 + Daily Report, Job 645,1987 + + + + + 58 + 5 + Daily Report, Job 646,1987 + + + + + 58 + 6 + Daily Report, Job 647,1987 + + + + + 58 + 7 + Daily Report, Job 648,1987 + + + + + 58 + 8 + Daily Report, Job 649,1987 + + + + + 58 + 9 + Daily Report, Job 650,1987 + + + + + 58 + 10 + Daily Report, Job 651,1987 + + + + + 58 + 11 + Daily Report, Job 652,1987 + + + + + 58 + 12 + Daily Report, Job 653,1987 + + + + + 59 + 1 + Daily Report, Job 654,1987 + + + + + 59 + 2 + Daily Report, Job 654,1988 + + + + + 59 + 3 + Daily Report, Job 655,1987 + + + + + 59 + 4 + Daily Report, Job 656,1987 + + + + + 59 + 5 + Daily Report, Job 657,1988 + + + + + 59 + 6 + Daily Report, Job 657, 1 of 5,1988 + + + + + 59 + 7 + Daily Report, Job 657, 2 of 5,1988 + + + + + 59 + 8 + Daily Report, Job 657, 3 of 5,1988 + + + + + 59 + 9 + Daily Report, Job 657, 4 of 5,1988 + + + + + 60 + 1 + Daily Report, Job 657, 5 of 5,1988 + + + + + + 60 + 2 + Daily Report, Job 657,1989 + + + + + 60 + 3 + Daily Report, Job 658, 1 of 2,1987 + + + + + 60 + 4 + Daily Report, Job 658, 2 of 2,1987 + + + + + + 60 + 5 + Daily Report, Job 658,1988 + + + + + + 60 + 6 + Daily Report, Job 659,1988 + + + + + 60 + 7 + Daily Report, Job 660,1987 + + + + + 60 + 8 + Daily Report, Job 660,1988 + + + + + 60 + 9 + Daily Report, Job 661,1987 + + + + + + 60 + 10 + Daily Report, Job 661, 1 of 3,1988 + + + + + 60 + 11 + Daily Report, Job 661, 2 of 3,1988 + + + + + + 61 + 1 + Daily Report, Job 661, 3 of 3,1988 + + + + + + 61 + 2 + Daily Report, Job 661,1989 + + + + + + 61 + 3 + Daily Report, Job 662,1988 + + + + + + 61 + 4 + Daily Report, Job 663,1988 + + + + + + 61 + 5 + Daily Report, Job 664, 1 of 3,1988 + + + + + 61 + 6 + Daily Report, Job 664, 2 of 3,1988 + + + + + + 61 + 7 + Daily Report, Job 664, 3 of 3,1988 + + + + + + 62 + 1 + Daily Report, Job 664, 1 of 3,1989 + + + + + 62 + 2 + Daily Report, Job 664, 2 of 3,1989 + + + + + + 62 + 3 + Daily Report, Job 664, 3 of 3,1989 + + + + + + 62 + 4 + Daily Report, Job 664,1990 + + + + + 62 + 5 + Daily Report, Job 665,1988 + + + + + 62 + 6 + Daily Report, Job 666, 1 of 3,1988 + + + + + 62 + 7 + Daily Report, Job 666, 2 of 3,1988 + + + + + + 62 + 8 + Daily Report, Job 666, 3 of 3,1988 + + + + + + 63 + 1 + Daily Report, Job 667,1988 + + + + + + 63 + 2 + Daily Report, Job 667,1989 + + + + + + 63 + 3 + Daily Report, Job 668, 1 of 4,1989 + + + + + 63 + 4 + Daily Report, Job 668, 2 of 4,1989 + + + + + 63 + 5 + Daily Report, Job 668, 3 of 4,1989 + + + + + + 63 + 6 + Daily Report, Job 668, 4 of 4,1989 + + + + + + 63 + 7 + Daily Report, Job 669,1988 + + + + + + 63 + 8 + Daily Report, Job 670,1988 + + + + + + 64 + 1 + Daily Report, Job 671, 1 of 5,1988 + + + + + 64 + 2 + Daily Report, Job 671, 2 of 5,1988 + + + + + 64 + 3 + Daily Report, Job 671, 3 of 5,1988 + + + + + 64 + 4 + Daily Report, Job 671, 4 of 5,1988 + + + + + + 64 + 5 + Daily Report, Job 671, 5 of 5,1988 + + + + + + 64 + 6 + Daily Report, Job 672,1988 + + + + + + 64 + 7 + Daily Report, Job 672, 1 of 3,1989 + + + + + + 65 + 1 + Daily Report, Job 672, 2 of 3,1989 + + + + + + 65 + 2 + Daily Report, Job 672, 3 of 3,1989 + + + + + + 65 + 3 + Daily Report, Job 673,1988 + + + + + + 65 + 4 + Daily Report, Job 673, 1 of 2,1989 + + + + + + 65 + 5 + Daily Report, Job 673, 2 of 2,1989 + + + + + + 65 + 6 + Daily Report, Job 674, 1 of 3,1988 + + + + + 65 + 7 + Daily Report, Job 674, 2 of 3,1988 + + + + + + 66 + 1 + Daily Report, Job 674, 3 of 3,1988 + + + + + + 66 + 2 + Daily Report, Job 674,1989 + + + + + + 66 + 3 + Daily Report, Job 675,1989 + + + + + + 66 + 4 + Daily Report, Job 675,1989 + + + + + + 66 + 5 + Daily Report, Job 676,1988 + + + + + 66 + 6 + Daily Report, Job 677,1989 + + + + + 66 + 7 + Daily Report, Job 678,1989 + + + + + 66 + 8 + Daily Report, Job 679,1989 + + + + + + 66 + 9 + Daily Report, Job 680, 1 of 2,1989 + + + + + + 66 + 10 + Daily Report, Job 680, 2 of 2,1989 + + + + + + 67 + 1 + Daily Report, Job 681,1989 + + + + + 67 + 2 + Daily Report, Job 682,1989 + + + + + + 67 + 3 + Daily Report, Job 683, 1 of 2,1990 + + + + + + 67 + 4 + Daily Report, Job 683, 2 of 2,1990 + + + + + + 67 + 5 + Daily Report, Job 683,1991 + + + + + + 67 + 6 + Daily Report, Job 684, 1 of 31989 + + + + + 67 + 7 + Daily Report, Job 684, 2 of 31989 + + + + + + 67 + 8 + Daily Report, Job 684, 3 of 31989 + + + + + + 68 + 1 + Daily Report, Job 686, 1 of 31989 + + + + + 68 + 2 + Daily Report, Job 686, 2 of 31989 + + + + + + 68 + 3 + Daily Report, Job 686, 3 of 31989 + + + + + + 68 + 4 + Daily Report, Job 686,1990 + + + + + 68 + 5 + Daily Report, Job 686,1991 + + + + + 68 + 6 + Daily Report, Job 687,1989 + + + + + + 68 + 7 + Daily Report, Job 688, 1 of 2,1990 + + + + + + 68 + 8 + Daily Report, Job 688, 2 of 2,1990 + + + + + + 69 + 1 + Daily Report, Job 689,1989 + + + + + + 69 + 2 + Daily Report, Job 690, 1 of 3,1990 + + + + + + 69 + 3 + Daily Report, Job 690, 2 of 3,1990 + + + + + 69 + 4 + Daily Report, Job 690, 3 of 3,1990 + + + + + 69 + 5 + Daily Report, Job 690,1991 + + + + + 69 + 6 + Daily Report, Job 691,1989 + + + + + 69 + 7 + Daily Report, Job 691,1990 + + + + + + 69 + 8 + Daily Report, Job 691,1991 + + + + + + 70 + 1 + Daily Report, Job 692,1989 + + + + + + 70 + 2 + Daily Report, Job 692, 1 of 5,1990 + + + + + 70 + 3 + Daily Report, Job 692, 2 of 5,1990 + + + + + 70 + 4 + Daily Report, Job 692, 3 of 5,1990 + + + + + 70 + 5 + Daily Report, Job 692, 4 of 5,1990 + + + + + + 70 + 6 + Daily Report, Job 692, 5 of 5,1990 + + + + + + 71 + 1 + Daily Report, Job 693,1990 + + + + + 71 + 2 + Daily Report, Job 694,1990 + + + + + + 71 + 3 + Daily Report, Job 695,1990 + + + + + + 71 + 4 + Daily Report, Job 696,1990 + + + + + + 71 + 5 + Daily Report, Job 697,1990 + + + + + + 71 + 6 + Daily Report, Job 698,1990 + + + + + + 71 + 7 + Daily Report, Job 699,1990 + + + + + + 71 + 8 + Daily Report, Job 700,1990 + + + + + + 71 + 9 + Daily Report, Job 701, 1 of 4,1990 + + + + + 71 + 10 + Daily Report, Job 701, 2 of 4,1990 + + + + + 71 + 11 + Daily Report, Job 701, 3 of 4,1990 + + + + + + 71 + 12 + Daily Report, Job 701, 4 of 4,1990 + + + + + + 72 + 1 + Daily Report, Job 702, 1 of 3,1990 + + + + + + 72 + 2 + Daily Report, Job 702, 2 of 3,1990 + + + + + + 72 + 3 + Daily Report, Job 702, 3 of 3,1990 + + + + + + 72 + 4 + Daily Report, Job 703,1991 + + + + + + 72 + 5 + Daily Report, Job 704,1991 + + + + + + 73 + 1 + Daily Report, Job 705,1990 + + + + + + 73 + 2 + Daily Report, Job 705,1991 + + + + + + 73 + 3 + Daily Report, Job 705,1992 + + + + + + 73 + 4 + Daily Report, Job 706, 1 of 3,1991 + + + + + + 73 + 5 + Daily Report, Job 705, 2 of 3,1991 + + + + + + 73 + 6 + Daily Report, Job 705, 3 of 3,1991 + + + + + + 73 + 7 + Daily Report, Job 707, 1 of 3,1991 + + + + + 73 + 8 + Daily Report, Job 707, 2 of 3,1991 + + + + + + 74 + 1 + Daily Report, Job 707, 3 of 3,1991 + + + + + 74 + 2 + Daily Report, Job 708, 1 of 2,1991 + + + + + + 74 + 3 + Daily Report, Job 708, 2 of 2,1991 + + + + + + 74 + 4 + Daily Report, Job 709, 1 of 5,1991 + + + + + 74 + 5 + Daily Report, Job 709, 2 of 5,1991 + + + + + 74 + 6 + Daily Report, Job 709, 3 of 5,1991 + + + + + 75 + 1 + Daily Report, Job 709, 4 of 5,1991 + + + + + 75 + 2 + Daily Report, Job 709, 5 of 5,1991 + + + + + + 75 + 3 + Daily Report, Job 709-2, 1 of 4,1992 + + + + + 75 + 4 + Daily Report, Job 709-2, 2 of 4,1992 + + + + + 75 + 5 + Daily Report, Job 709-2, 3 of 4,1992 + + + + + + 75 + 6 + Daily Report, Job 709-2, 4 of 4,1992 + + + + + + 76 + 1 + Daily Report, Job 710,1991 + + + + + 76 + 2 + Daily Report, Job 711,1991 + + + + + 76 + 3 + Daily Report, Job 713, 1 of 4,1991 + + + + + 76 + 4 + Daily Report, Job 713, 2 of 4,1991 + + + + + 76 + 5 + Daily Report, Job 713, 3 of 4,1991 + + + + + 76 + 6 + Daily Report, Job 713, 4 of 4,1991 + + + + + + 77 + 1 + Job 5, Waukegan, IL,1932 + + + + + + 77 + 2 + Job 6, Frankfort,1932 + + + + + + 77 + 3 + Job 7, Algoma, WI,1932 + + + + + + 77 + 4 + Job 8, Frankfort,1932 + + + + + + 77 + 5 + Job 9, Algoma, WI,1932 + + + + + + 77 + 6 + Job 10, 11, 12, Frankfort,1932 + + + + + + 77 + 7 + Job 13, Frankfort,1933 + + + + + + 77 + 8 + Job 14, Manistee,1933 + + + + + 77 + 9 + Job 15, Manistee,1933 + + + + + 77 + 10 + Job 16, Manistee,1933 + + + + + 77 + 11 + Job 17, Traverse City,1933 + + + + + + 77 + 12 + Job 18, Manistee,1933 + + + + + + 77 + 13 + Job 19, Frankfort,1933 + + + + + + 77 + 14 + Job 20, Frankfort,1933 + + + + + + 77 + 15 + Job 21, Frankfort,1934 + + + + + + 77 + 16 + Job 22, Frankfort,1934 + + + + + + 77 + 17 + Job 23, Rodal’s Tug, (no location),1934 + + + + + + 77 + 18 + Job 24, Detroit,1934 + + + + + + 77 + 19 + Job 25, Escanaba,1934-1935 + + + + + + 77 + 20 + Job 25, Escanaba, photograph,undated + + + + + + 78 + 1 + Job 26, Port Huron,1935 + + + + + + 78 + 2 + Job 26, Port Huron, Drawings,1935 + + + + + + 78 + 3 + Job 27, Kewaunee, WI,1935 + + + + + + 78 + 4 + Job 27, Kewaunee, WI, Drawings,1935 + + + + + + 78 + 5 + Job 27, Kewaunee, WI, Photographs,1935 + + + + + + 78 + 6 + Job 27A, Kewaunee, WI,1936 + + + + + + 78 + 7 + Job 27B, Kewaunee, WI,1936 + + + + + + 78 + 8 + Job 27C, Kewaunee, WI,1936 + + + + + + 78 + 9 + Job 28, Sturgeon Bay, WI,1935 + + + + + + 78 + 10 + Job 29, Kewaunee, WI,1936 + + + + + + 78 + 11 + Job 30, Unknown location,1937-1938 + + + + + + 78 + 12 + Job 31, Kewaunee, WI,1937 + + + + + 78 + 13 + Job 31, Kewaunee, WI, Drawings,1937 + + + + + + 78 + 14 + Job 32, Frankfort,1937 + + + + + + 79 + 1 + Job 33, Kewaunee, WI,1937-1938 + + + + + + 79 + 2 + Job 34, Kewaunee, WI,1937 + + + + + 79 + 3 + Job 35, Frankfort,1937 + + + + + + 79 + 4 + Job 35 A-B, Frankfort,1938 + + + + + + 79 + 5 + Job 36, Mackinaw City,1937-1938 + + + + + 79 + 6 + Job 36, Mackinaw City, Drawings,1937-1938 + + + + + + 79 + 7 + Job 37, Crystal Lake,1939 + + + + + + 79 + 8 + Job 38, Menominee,1938 + + + + + + 79 + 9 + Job 38, Menominee, Drawings,1938 + + + + + 79 + 10 + Job 39, Ludington,1939 + + + + + + 79 + 11 + Job 40, Escanaba,1938 + + + + + + 80 + 1 + Job 41, Straits of Mackinac,1938 + + + + + + 80 + 2 + Job 41, Straits of Mackinac, Drawings,1938 + + + + + 80 + 3 + Job 41, Straits of Mackinac,1939 + + + + + + 80 + 4 + Job 41, Straits of Mackinac, Blueprints,1939 + + + + + + 80 + 5 + Job 41, Straits of Mackinac, Causeway,1949 + + + + + + 80 + 6 + Job 41, Straits of Mackinac, Core Borings,1953 + + + + + + 80 + 7 + Job 41, Straits of Mackinac, Reports,1939-1940 + + + + + + 80 + 8 + Job 41, Straits of Mackinac, Rock Cores and Probes,1954 + + + + + + 80 + 9 + Job 41, Straits of Mackinac, Tentative St. Ignace Plan,undated + + + + + 80 + 10 + Job 41, Straits of Mackinac, Traffic Studies,1961 + + + + + 81 + 1 + Job 42, Washington Island, WI,1938-1939 + + + + + + 81 + 2 + Job 42, Washington Island, WI,1940 + + + + + + 81 + 3 + Job 42, Washington Island, WI, Correspondence with Congress,1940-1941 + + + + + 81 + 4 + Job 42, Washington Island, WI, Drawings,1938-1939 + + + + + + 81 + 5 + Job 42, Washington Island, WI, Photographs,1939 + + + + + + 81 + 6 + Job 43, Cheboygan,1939-1940 + + + + + + 81 + 7 + Job 44, Kewaunee, WI,1939 + + + + + 81 + 8 + Job 45, St. Ignace,1939 + + + + + + 81 + 9 + Job 46, Traverse City,1939 + + + + + 81 + 10 + Job 47, Charlevoix,1939 + + + + + + 81 + 11 + Job 48, Frankfort,1939 + + + + + 81 + 12 + Job 49, New York, NY,1939 + + + + + + 81 + 13 + Job 50, St. Ignace,1939 + + + + + 81 + 14 + Job 51, Frankfort,1939 + + + + + 81 + 15 + Job 52, Mackinac Island,1939 + + + + + + 81 + 16 + Job 53, Frankfort,1939 + + + + + + 82 + 1 + Job 54, Mackinaw City,1939-1940 + + + + + + 82 + 2 + Job 55, Mackinac Island,1939-1940 + + + + + + 82 + 3 + Job 56, Crystal Lake,1940 + + + + + + 82 + 4 + Job 57, Muskegon Heights,1940-1941 + + + + + + 82 + 5 + Job 57, Muskegon Heights, Drawings,1940 + + + + + + 82 + 6 + Job 57, Muskegon Heights, Notice to Contractors, 1940 + + + + + + 82 + 7 + Job 58, St. Ignace,1940 + + + + + + 82 + 8 + Job 59, Frankfort,1940 + + + + + + 82 + 9 + Job 60, St. Ignace,1940 + + + + + + 82 + 10 + Job 61, Menominee, 1940 + + + + + + 82 + 11 + Job 62, St. Joseph,1940 + + + + + + 82 + 12 + Job 63, Frankfort,1940-1941 + + + + + + 82 + 13 + Job 64, Frankfort,1940-1941 + + + + + + 83 + 1 + Job 65, Frankfort,1940 + + + + + + 83 + 2 + Job 66, Manistee,1940 + + + + + 83 + 3 + Job 67, Manistee,1940-1941 + + + + + 83 + 4 + Job 68, Frankfort,1941 + + + + + 83 + 5 + Job 69, Grand Haven,1941 + + + + + + 83 + 6 + Job 70, Grand Rapids, 1 of 2,1941 + + + + + + 83 + 7 + Job 70, Grand Rapids, 2 of 2,1941 + + + + + + 83 + 8 + Job 70, Grand Rapids, Drawings,1938-1941 + + + + + + 83 + 9 + Job 70, Grand Rapids, Newspaper clippings,1941 + + + + + + 83 + 19 + Job 70A, Grand Rapids,1941 + + + + + + 83 + 11 + Job 71, Ludington,1941 + + + + + + 83 + 12 + Job 72, Ludington,1941 + + + + + + 83 + 13 + Job 73, Sturgeon Bay, WI,1941 + + + + + + 83 + 14 + Job 74, Ludington,1941 + + + + + + 83 + 15 + Job 75, Ludington,1941 + + + + + + 83 + 16 + Job 76, Sturgeon Bay, WI, 1 of 2,1942 + + + + + 84 + 1 + Job 76, Sturgeon Bay, WI, 2 of 2,1942 + + + + + + 84 + 2 + Job 73, Sturgeon Bay, WI, Drawings,1942 + + + + + + 84 + 3 + Job 77, Straits Causeway, 1 of 2,1941-1942 + + + + + 84 + 4 + Job 77, Straits Causeway, 2 of 2,1941-1942 + + + + + 84 + 5 + Job 77, Straits Causeway, Drawings, 1 of 2,1941-1942 + + + + + + 84 + 6 + Job 77, Straits Causeway, Drawings, 2 of 2,1941-1942 + + + + + + 84 + 7 + Job 78, Sturgeon Bay, WI,1941-1942 + + + + + + 85 + 1 + Job 79, Mackinaw,1942 + + + + + 85 + 2 + Job 80, Frankfort,1942 + + + + + 85 + 3 + Job 81, Frankfort,1942 + + + + + 85 + 4 + Job 82, Frankfort,1942 + + + + + 85 + 5 + Job 83, Grand Rapids,1942 + + + + + + 85 + 6 + Job 84, Sturgeon Bay, WI,1942 + + + + + 85 + 7 + Job 85, Frankfort,1942 + + + + + 85 + 8 + Job 86, Mackinac Island,1942 + + + + + 85 + 9 + Job 87, Mackinac Island,1942 + + + + + 85 + 10 + Job 88, Frankfort,1942 + + + + + 85 + 11 + Job 89, St. Ignace,1942 + + + + + 85 + 12 + Job 90, Frankfort,1943 + + + + + 85 + 13 + Job 91 – 91A, Sturgeon Bay, WI,1943 + + + + + 85 + 14 + Job 91B, Sturgeon Bay, WI,1944 + + + + + 85 + 15 + Job 92, Frankfort,1943 + + + + + 85 + 16 + Job 93, Mackinac Island,1943 + + + + + 85 + 17 + Job 94, Marinette, WI,1943 + + + + + 85 + 18 + Job 95, Frankfort,1943 + + + + + 85 + 19 + Job 96, Cheboygan,1943 + + + + + + 86 + 1 + Job 98, Sturgeon Bay, WI,1943 + + + + + + 86 + 2 + Job 99, Manistique,1944 + + + + + + 86 + 3 + Job 100, Mackinaw city,1943 + + + + + 86 + 4 + Job H, Mackinaw city,1943-1944 + + + + + + 86 + 5 + Job 101, Milwaukee, WI,1943-1944 + + + + + + 86 + 6 + Job 102, Manitowoc, WI,1943-1944 + + + + + 86 + 7 + Job 103, North Manitou Island,1943 + + + + + + 86 + 8 + Job 104, Frankfort,1943 + + + + + + 86 + 9 + Job 105, Mackinaw,1943 + + + + + 86 + 10 + Job 106, Manistique,1943 + + + + + 86 + 11 + Job 107, Manistee,1943 + + + + + + 86 + 12 + Job 108, Frankfort,1943-1944 + + + + + 86 + 13 + Job 109, Sturgeon Bay, WI,1944 + + + + + 86 + 14 + Job 110, Grand Haven,1944 + + + + + + 86 + 15 + Job 111, Sturgeon Bay, WI,1944 + + + + + 86 + 16 + Job 112, Manistique,1944 + + + + + + 86 + 17 + Job 113, Menominee Harbor,1944 + + + + + + 87 + 1 + Job 114, Sturgeon Bay, WI,1944 + + + + + + 87 + 2 + Job 115 – 115A, Frankfort,1944 + + + + + + 87 + 3 + Job 116, Sturgeon Bay, WI,1944 + + + + + + 87 + 4 + Job 117, Sturgeon Bay, WI,1944 + + + + + + 87 + 5 + Job 118, Sturgeon Bay, WI,1944 + + + + + + 87 + 6 + Job 119, Manistique,1944 + + + + + + 87 + 7 + Job 120, Sturgeon Bay, WI,1944 + + + + + + 87 + 8 + Job 121, Green Bay, WI,1944 + + + + + + 87 + 9 + Job 122, St. Ignace and Mackinaw,1944 + + + + + + 87 + 10 + Job 123, Menominee,1944 + + + + + + 87 + 11 + Job 124, Frankfort,1944 + + + + + + 87 + 12 + Job 125, Mackinaw,1944 + + + + + + 87 + 13 + Job 125, Mackinaw, Drawings,1944 + + + + + + 88 + 1 + Job 126, Kewaunee, WI,1945 + + + + + + 88 + 2 + Job 127, Sturgeon Bay, WI, ,1945 + + + + + + 88 + 3 + Job 128, Sturgeon Bay, WI, ,1945 + + + + + + 88 + 4 + Job 129, Mackinac Island,1945 + + + + + + 88 + 5 + Job 130, Mackinac Island,1945 + + + + + + 88 + 6 + Job 131, Kewaunee, WI,1945 + + + + + + 88 + 7 + Job 132, Mackinaw City,1945 + + + + + + 88 + 8 + Job 133, Frankfort,1945 + + + + + + 88 + 9 + Job 134, Kewaunee, WI,1945 + + + + + + 88 + 10 + Job 134, Kewaunee, WI, Drawings,1945 + + + + + + 88 + 11 + Job 135, Sturgeon Bay, WI,1945 + + + + + + 88 + 12 + Job 136, Mackinac Island,1945 + + + + + + 88 + 13 + Job 137, Sturgeon Bay, WI,1945 + + + + + + 88 + 14 + Job 138, Mackinaw City,1945 + + + + + + 88 + 15 + Job 138A, Mackinaw City,1945 + + + + + + 88 + 16 + Job 138B, Mackinaw City,1946 + + + + + + 89 + 1 + Job 138C, Mackinaw City,1946-1947 + + + + + + 89 + 2 + Job 138D, Mackinaw City,1947 + + + + + + 89 + 3 + Job 139, Frankfort,1945 + + + + + + 89 + 4 + Job 140, Sturgeon Bay, WI,1945 + + + + + 89 + 5 + Job 141, St. Ignace,1945 + + + + + + 89 + 6 + Job 142, Escanaba,1945 + + + + + + 89 + 7 + Job 143, Bay City,1945 + + + + + + 89 + 8 + Job 144, Menominee,1945 + + + + + + 89 + 9 + Job 145, Milwaukee, WI,1945 + + + + + + 89 + 10 + Job 146, St. Ignace,1945 + + + + + + 90 + 1 + Job 147, St. Ignace,1946 + + + + + + 90 + 2 + JJob 148, Frankfort,1946 + + + + + + 90 + 3 + Job 149, Round Island, 1 of 2,1946 + + + + + + 90 + 4 + Job 149, Round Island, 2 of 2,1946 + + + + + + 90 + 5 + Job 149, Round Island,1946-1947 + + + + + + 90 + 6 + Job 149, Round Island,1947 + + + + + + 90 + 7 + Job 149, Round Island, Drawings,1946 + + + + + + 91 + 1 + Job 150, Sturgeon Bay, WI,1946 + + + + + + 91 + 2 + Job 151, Frankfort,1946 + + + + + + 91 + 3 + Job 152, Manitou Island,1946 + + + + + + 91 + 4 + Job 153, Owosso,1946 + + + + + 91 + 5 + Job 154, Lansing,1946 + + + + + + 91 + 6 + Job 155, Round Island,1946 + + + + + + 91 + 7 + Job 156, Manistique,1946 + + + + + + 91 + 8 + Job 157, Mackinac Island,1946 + + + + + + 91 + 9 + Job 158, Albion,1946 + + + + + + 91 + 10 + Job 159, Frankfort,1946-1947 + + + + + + 91 + 11 + Job 160, St. Ignace,1946 + + + + + + 91 + 12 + Job 161, Mackinac Island,1946 + + + + + + + 91 + 13 + Job 162, Charlevoix, 1 of 4,1947 + + + + + 91 + 14 + Job 162, Charlevoix, 2 of 4,1947 + + + + + 91 + 15 + Job 162, Charlevoix, 3 of 4,1947 + + + + + + 91 + 16 + Job 162, Charlevoix, 4 of 4,1947 + + + + + + 92 + 1 + Job 162, Charlevoix,1950 + + + + + + 92 + 2 + Job 162, Charlevoix, Blue-line Drawings,1947 + + + + + + 92 + 3 + Job 162, Charlevoix, Blueprints,1947 + + + + + + 92 + 4 + Job 162, Charlevoix, Contract,1947 + + + + + + 92 + 5 + Job 162, Charlevoix, Drawings,1947 + + + + + 92 + 6 + Job 162, Charlevoix, Photographs,1947 + + + + + 92 + 7 + Job 163, Charlevoix,1947 + + + + + + 92 + 8 + Job 163, Charlevoix, Drawings,1947 + + + + + + 92 + 9 + Job 164, Frankfort,1947 + + + + + + 92 + 10 + Job 165, Sturgeon Bay, WI,1947 + + + + + + 92 + 11 + Job 166, Drummond Island,1947 + + + + + + 92 + 12 + Job 167, Mackinac Island,1947 + + + + + + 93 + 1 + Job 168, St. Ignace,1947 + + + + + + 93 + 2 + Job 169, St. Ignace,1947 + + + + + + 93 + 3 + Job 170, St. Joseph,1947 + + + + + + 93 + 4 + Job 171, Manistique,1947 + + + + + 93 + 5 + Job 172, Charlevoix,1947 + + + + + + 93 + 6 + Job 173, Frankfort,1948 + + + + + + 93 + 7 + Job 173, Frankfort, Drawings,1948 + + + + + + 93 + 8 + Job 174, Frankfort,1947 + + + + + + 93 + 9 + Job 175, St. Joseph,1948 + + + + + 93 + 10 + Job 176, Spring Lake,1948 + + + + + 93 + 11 + Job 176, Spring Lake, Blueprints,1948 + + + + + 93 + 12 + Job 176, Spring Lake, Photographs,1948 + + + + + 93 + 13 + Job 177, St. Ignace,1948 + + + + + 94 + 1 + Job 178, St. Ignace,1948 + + + + + + 94 + 2 + Job 179, Mackinaw City,1948 + + + + + + 94 + 3 + Job 180, Frankfort,1948 + + + + + + 94 + 4 + Job 181, Frankfort,1948 + + + + + + 94 + 5 + Job 182, Charlevoix,1948 + + + + + + 94 + 6 + Job 182, Charlevoix, Drawings,1948 + + + + + + 94 + 7 + Job 183, Mackinaw City,1948 + + + + + 94 + 8 + Job 183, Mackinaw City, Drawings,1948 + + + + + 94 + 9 + Job 184, Mackinaw City,1948 + + + + + 94 + 10 + Job 185, Mackinaw City,1948 + + + + + + 94 + 11 + Job 186, Frankfort,1948 + + + + + 94 + 12 + Job 187, St. Ignace,1948 + + + + + 94 + 13 + Job 188, Frankfort,1949 + + + + + + 94 + 14 + Job 189, Mackinaw City,1949 + + + + + + 95 + 1 + Job 190, Benton Harbor, 1 of 3,1949-1950 + + + + + 95 + 2 + Job 190, Benton Harbor, 2 of 3,1949-1950 + + + + + 95 + 3 + Job 190, Benton Harbor, 3 of 3,1949-1950 + + + + + 95 + 4 + Job 190, Benton Harbor, Contract and Documents,1949-1950 + + + + + 95 + 5 + Job 190, Benton Harbor, Blue – line Drawings,1946-1949 + + + + + 95 + 6 + Job 190, Benton Harbor, Drawings,1949-1950 + + + + + + 95 + 7 + Job 190, Benton Harbor, Drawings,1950 + + + + + + 96 + 1 + Job 191, Frankfort,1949 + + + + + + 96 + 2 + Job 192, Frankfort,1949 + + + + + 96 + 3 + Job 193, Frankfort,1949 + + + + + + 96 + 4 + Job 195, Gulliver,1949 + + + + + + 96 + 5 + Job 195, Kewaunee, WI,1949-1950 + + + + + + 96 + 6 + Job 196, Waukegan, WI,1949 + + + + + + 96 + 7 + Job 197, St. Ignace,1949 + + + + + + 96 + 8 + Job 198, St. Ignace,1949 + + + + + + 96 + 9 + Job Unknown, Port Washington, WI,1950 + + + + + + 96 + 10 + Job 199, Frankfort,1949 + + + + + + 96 + 11 + Job 200, Frankfort,1950 + + + + + + 96 + 12 + Job 201, Frankfort,1950 + + + + + + 96 + 13 + Job 202, Frankfort,1950 + + + + + + 96 + 14 + Job 203, St. Ignace,1950 + + + + + + 96 + 15 + Job 204, Sheboygan, WI, 1 of 3,1950 + + + + + 96 + 16 + Job 204, Sheboygan, WI, 2 of 3,1950 + + + + + + 96 + 17 + Job 204, Sheboygan, WI, 3 of 3,1950 + + + + + 96 + 18 + Job 204, Sheboygan, WI, Blueprints,1950 + + + + + + 96 + 19 + Job 204, Sheboygan, WI, Drawings,1950 + + + + + + 97 + 1 + Job 205, Frankfort,1950 + + + + + + 97 + 2 + Job 206, Frankfort,1950 + + + + + + 97 + 3 + Job 207, Frankfort,1950 + + + + + + 97 + 4 + Job 208, St. Ignace, 1 of 2,1950 + + + + + + 97 + 5 + Job 208, St. Ignace, 2 of 2,1950 + + + + + + 97 + 6 + Job 208, St. Ignace, Blueprints, 1 of 2,1950 + + + + + + 97 + 7 + Job 208, St. Ignace, Blueprints, 2 of 2,1950 + + + + + + 97 + 8 + Job 208, St. Ignace, Blue – line Drawings,1950 + + + + + + 97 + 9 + Job 209, Mackinaw City,1950 + + + + + + 97 + 10 + Job 210, Detour,1950 + + + + + + 97 + 11 + Job 211, Mackinaw City,1951 + + + + + 97 + 12 + Job 211, Mackinaw City, Drawings,1951 + + + + + + 98 + 1 + Job 212, Frankfort,1951 + + + + + + 98 + 2 + Job 213, Mackinaw City,1950 + + + + + + 98 + 3 + Job 213, Mackinaw City, Drawings,1950 + + + + + + 98 + 4 + Job 214, St. Ignace,1950 + + + + + + 98 + 5 + Job 215, St. Ignace,1951 + + + + + + 98 + 6 + Job 216, Frankfort,1951 + + + + + + 98 + 7 + Job 217, Mackinac Island,1951 + + + + + + 98 + 8 + Job 218, Sturgeon Bay, WI,1951 + + + + + + 98 + 9 + Job 219A, Sturgeon Bay, WI,1951 + + + + + 98 + 10 + Job 219B, Sturgeon Bay, WI,1952 + + + + + + 98 + 11 + Job 220, Port Inland,1951 + + + + + + 98 + 12 + Job 221, Drummond Island,1951 + + + + + + 98 + 13 + Job 221, Drummond Island, Drawings,1951 + + + + + + 98 + 14 + Job 222, Elberta,1951 + + + + + + 99 + 1 + Job 223, and A – B, Manistique,1951-1952 + + + + + + 99 + 2 + Job 224A, Sault Ste. Marie,1951 + + + + + + 99 + 3 + Job 224A, Sault Ste. Marie, Contract,1951 + + + + + + 99 + 4 + Job 224A, Sault Ste. Marie, Drawings,1951 + + + + + + 99 + 5 + Job 225, Sault Ste. Marie, Drawings,1951 + + + + + + 99 + 6 + Job 226, St. Ignace,1951 + + + + + + 99 + 7 + Job 227, Elberta,1952 + + + + + + 99 + 8 + Job 228, Drummond Island,1952 + + + + + 99 + 9 + Job 229, Manistique,1952 + + + + + + 99 + 10 + Job 230, St. Ignace,1952 + + + + + 99 + 11 + Job 231, Mackinac Island,1952 + + + + + + 99 + 12 + Job 232, Mackinaw City,1952 + + + + + 100 + 1 + Job 233, Frechette Point,1952 + + + + + 100 + 2 + Job 234, Gulliver,1952 + + + + + + 100 + 3 + Job 235, Frankfort,1952-1953 + + + + + 100 + 4 + Job 236, Sault Ste. Marie,1952 + + + + + 100 + 5 + Job 237, Manistique,1952-1953 + + + + + 100 + 6 + Job 238, Sturgeon Bay, WI,1953 + + + + + + 100 + 7 + Job 239, Elberta,1953 + + + + + + 100 + 8 + Job 240, Sault Ste. Marie,1953 + + + + + + 100 + 9 + Job 240, Sault Ste. Marie, Drawings,1953 + + + + + 100 + 10 + Job 240, Sault Ste. Marie, Photographs,1953 + + + + + 100 + 11 + Job 241, Sault Ste. Marie,1953 + + + + + + 100 + 12 + Job 241, Sault Ste. Marie, Photographs,1953 + + + + + 100 + 13 + Job 242, Drummond Island,1953 + + + + + 100 + 14 + Job 243, Mackinac Island,1953 + + + + + + 100 + 15 + Job 244, Frankfort,1953 + + + + + + 101 + 1 + Job 245, Grand Haven,1953-1955 + + + + + + 101 + 2 + Job 245, Grand Haven, Drawings,1953 + + + + + 101 + 3 + Job 245, Grand Haven, Invoices,1953 + + + + + 101 + 4 + Job 245, Grand Haven, Specifications,1953 + + + + + + 101 + 5 + Job 246 Sault Ste. Marie, CA,1953 + + + + + 101 + 6 + Job 247, St. Ignace,1953 + + + + + 101 + 7 + Job 248, St. Ignace,1953 + + + + + 101 + 8 + Job 249, St. Ignace,1953 + + + + + 101 + 9 + Job 250, St. Ignace,1953 + + + + + + 101 + 10 + Job 251, St. Ignace,1953 + + + + + + 101 + 11 + Job 252, Mackinac Island,1953 + + + + + 101 + 12 + Job 253, Drummond Island, ,1953-1954 + + + + + + 101 + 13 + Job 254, Elberta,1954 + + + + + + 101 + 14 + Job 255, Frankfort, 1 of 2,1954 + + + + + + 102 + 1 + Job 255, Frankfort, 2 of 2,1954 + + + + + 102 + 2 + Job 256, Grand Haven,1954-1955 + + + + + 102 + 3 + Job 256, Grand Haven, Blue – line Drawings,1953 + + + + + 102 + 4 + Job 256, Grand Haven, Contract,1954 + + + + + 102 + 5 + Job 256, Grand Haven, Estimates,1954 + + + + + 102 + 6 + Job 256, Grand Haven, Invoices,1954 + + + + + 102 + 7 + Job 257, Sturgeon Bay, WI,1954-1955 + + + + + 102 + 8 + Job 257, Sturgeon Bay, WI, Contract and Drawings,1954 + + + + + 102 + 9 + Job 257, Sturgeon Bay, WI, Photographs,1954 + + + + + 102 + 10 + Job 258, Muskegon,1954 + + + + + 103 + 1 + Job 259, Ludington,1954 + + + + + 103 + 2 + Job 260, Elberta,1954 + + + + + 103 + 3 + Job 261, Holland, 1 of 3,1955 + + + + + 103 + 4 + Job 261, Holland, 2 of 3,1955 + + + + + 103 + 5 + Job 261, Holland, 3 of 3,1955 + + + + + 103 + 6 + Job 261, Holland, Blue – line Drawings, 1 of 3,1955 + + + + + 103 + 7 + Job 261, Holland, Blue – line Drawings, 2 of 3,1955 + + + + + 104 + 1 + Job 261, Holland, Blue – line Drawings, 3 of 3,1955 + + + + + 104 + 2 + Job 262, Frankfort,1955 + + + + + 104 + 3 + Job 263, Elberta,1955 + + + + + + 104 + 4 + Job 264, Gulliver,1955 + + + + 104 + 5 + Job 265, Gulliver,1955 + + + + + + 104 + 6 + Job 266, Elberta,1955 + + + + + + 104 + 7 + Job 267, Mackinac Island,1955 + + + + + + 104 + 8 + Job 268, Mackinac Island,1955 + + + + + + 104 + 9 + Job 269, Mackinac City,1955 + + + + + + 104 + 10 + Job 271, St. Ignace,1955 + + + + + + 104 + 11 + Job 272, Drummond Island,1955 + + + + + + 104 + 12 + Job 272, Drummond Island, Blue – line Drawings,1955 + + + + + 104 + 13 + Job 272, Drummond Island, Drawings,1955 + + + + + + 105 + 1 + Job 273, Mackinaw City,1955 + + + + + + 105 + 2 + Job 274, Detour,1955 + + + + + + 105 + 3 + Job 274, Detour, Drawings,1955 + + + + + + 105 + 4 + Job 275, Mackinaw City,1955 + + + + + 105 + 5 + Job 276, Elberta,1955 + + + + + + 105 + 6 + Job 277, Frankfort,1956 + + + + + 105 + 7 + Job 278, Elberta,1956 + + + + + 105 + 8 + Job 279, Frankfort,1956 + + + + + 105 + 9 + Job 280, Chicago, IL, 1 of 2,1956-1957 + + + + + + 105 + 10 + Job 280, Chicago, IL, 2 of 2,1956-1957 + + + + + + 106 + 1 + Job 280, Chicago, IL, Drawings,1956 + + + + + 106 + 2 + Job 281, Mackinac Island,1956 + + + + + 106 + 3 + Job 282, Port Huron, 1 of 4,1956 + + + + + 106 + 4 + Job 282, Port Huron, 2 of 4,1956 + + + + + 106 + 5 + Job 282, Port Huron, 3 of 4,1956 + + + + + 106 + 6 + Job 282, Port Huron, 4 of 4,1956 + + + + + + 107 + 1 + Job 282, Port Huron, Drawings, 1 of 2,1956 + + + + + 107 + 2 + Job 282, Port Huron, Drawings, 2 of 2,1956 + + + + + + 107 + 3 + Job 282, Port Huron, Instructions to Bidders and Agreement,1956 + + + + + + 107 + 4 + Job 283, Frankfort,1956-1957 + + + + + + 107 + 5 + Job 284, St. Ignace,1956 + + + + + + 107 + 6 + Job 285, Frankfort,1957 + + + + + + 107 + 7 + Job 286, Manistee,1957 + + + + + + 107 + 8 + Job 286, Manistee, Blueprints,1956 + + + + + + 107 + 9 + Job 286, Manistee, Drawings,1956 + + + + + + 108 + 1 + Job 287, Port Huron,1957 + + + + + + 108 + 2 + Job 288, Frankfort,1957 + + + + + + 108 + 3 + Job 289, Ludington Harbor, 1 of 2,1957 + + + + + + 108 + 4 + Job 289, Ludington Harbor, 2 of 2,1957 + + + + + + 108 + 5 + Job 289, Ludington Harbor, Blueprints,1957 + + + + + + 108 + 6 + Job 289, Ludington Harbor, Blue – line Drawings,1957 + + + + + + 108 + 7 + Job 290, Frankfort,1957 + + + + + + 108 + 8 + Job 291, Frankfort,1957 + + + + + + 108 + 9 + Job 292, Frankfort,1957 + + + + + + 108 + 10 + Job 293, Frankfort,1957 + + + + + + 108 + 11 + Job 294, Frankfort,1958 + + + + + + 108 + 12 + Job 295, Kenosha, WI,1958 + + + + + + 109 + 1 + Job 296, Frankfort, 1 of 2,1958 + + + + + 109 + 2 + Job 296, Frankfort, 2 of 2,1958 + + + + + + 109 + 3 + Job 296, Frankfort, Drawings,1958 + + + + + + 109 + 4 + Job 297, Bay City,1958 + + + + + + 109 + 5 + Job 298, City of Michigan, IN, 1 of 6,1959-1960 + + + + + 109 + 6 + Job 298, City of Michigan, IN, 2 of 6,1959-1960 + + + + + + 109 + 7 + Job 298, City of Michigan, IN, 3 of 6,1959-1960 + + + + + + 110 + 1 + Job 298, City of Michigan, IN, 4 of 6,1959-1960 + + + + + 110 + 2 + Job 298, City of Michigan, IN, 5 of 6,1959-1960 + + + + + + 110 + 3 + Job 298, City of Michigan, IN, 6 of 6,1959-1960 + + + + + 110 + 4 + Job 298, City of Michigan, IN, Blueprints,1958 + + + + + + 110 + 5 + Job 298, City of Michigan, IN, Blue – line Drawings, 1 of 4,1959 + + + + + + 110 + 6 + Job 298, City of Michigan, IN, Blue – line Drawings, 2 of 4,1959 + + + + + + 111 + 1 + Job 298, City of Michigan, IN, Blue – line Drawings, 3 of 4,1959 + + + + + 111 + 2 + Job 298, City of Michigan, IN, Blue – line Drawings, 4 of 4,1959 + + + + + + 111 + 3 + Job 299, St. Ignace and Mackinac Island,1958 + + + + + 111 + 4 + Job 300, Mackinaw Island,1958 + + + + + + 111 + 5 + Job 301, Frankfort,1959 + + + + + 111 + 6 + Job 302, Kenosha, WI,1959 + + + + + + 111 + 7 + Job 303, Kewaunee, WI, 1 of 2,1960 + + + + + + 111 + 8 + Job 303, Kewaunee, WI, 2 of 2,1960 + + + + + + 111 + 9 + Job 303, Kewaunee, WI, Drawings,1960 + + + + + + 111 + 10 + Job 304, Jones Island, WI,1959 + + + + + + 112 + 1 + Job 305, Frankfort,1960 + + + + + 112 + 2 + Job 306, Frankfort,1960 + + + + + + 112 + 3 + Job 306, Frankfort, Drawings,1960 + + + + + + 112 + 4 + Job 307, Burn’s Ditch, IN, 1 of 3,1960 + + + + + 112 + 5 + Job 307, Burn’s Ditch, IN, 2 of 3,1960 + + + + + + 112 + 6 + Job 307, Burn’s Ditch, IN, 3 of 3,1960 + + + + + + 112 + 7 + Job 307, Burn’s Ditch, IN, Blue – line Drawings, 1 of 5,1960 + + + + + + 112 + 8 + Job 307, Burn’s Ditch, IN, Blue – line Drawings, 2 of 5,1960 + + + + + 113 + 1 + Job 307, Burn’s Ditch, IN, Blue – line Drawings, 3 of 5,1960 + + + + + 113 + 2 + Job 307, Burn’s Ditch, IN, Blue – line Drawings, 4 of 5,1960 + + + + + 113 + 3 + Job 307, Burn’s Ditch, IN, Blue – line Drawings, 5 of 5,1960 + + + + + + 113 + 4 + Job 307, Burn’s Ditch, IN, Formal Documents,1960 + + + + + + 113 + 5 + Job 307, Burn’s Ditch, IN, Miscellaneous Drawings,1960 + + + + + 113 + 6 + Job 307, Burn’s Ditch, IN, Soundings, Related Work,1960 + + + + + + 113 + 7 + Job 308, Ludington, 1 of 3,1960 + + + + + + 114 + 1 + Job 308, Ludington, 2 of 3,1960 + + + + + 114 + 2 + Job 308, Ludington, 3 of 3,1960 + + + + + + 114 + 3 + Job 308, Ludington, Drawings,1960 + + + + + + 114 + 4 + Job 309, Kenosha, WI,1960 + + + + + + 114 + 5 + Job 310, Frankfort,1960 + + + + + + 114 + 6 + Job 311, St. Joseph, 1 of 3,1960 + + + + + + 114 + 7 + Job 311, St. Joseph, 2 of 3,1960 + + + + + + 114 + 8 + Job 311, St. Joseph, 3 of 3,1960 + + + + + + 115 + 1 + Job 311, St. Joseph, Drawings,1960 + + + + + + 115 + 2 + Job 312, Charlevoix,1960 + + + + + + 115 + 3 + Job 312, Charlevoix, Blue – line Drawings,1960 + + + + + + 115 + 4 + Job 313, Muskegon,1960 + + + + + + 115 + 5 + Job 314, Manistique,1960 + + + + + + 115 + 6 + Job 315, Charlevoix, 1 of 3,1961 + + + + + + 115 + 7 + Job 315, Charlevoix, 2 of 3,1961 + + + + + + 115 + 8 + Job 315, Charlevoix, 3 of 3,1961 + + + + + + 115 + 9 + Job 315, Charlevoix, Blue – line Drawings, 1 of 2,1961 + + + + + + 116 + 1 + Job 315, Charlevoix, Blue – line Drawings, 2 of 2,1961 + + + + + + 116 + 2 + Job 316, St. Joseph, 1 of 2,1961-1962 + + + + + + 116 + 3 + Job 316, St. Joseph, 2 of 2,1961-1962 + + + + + + 116 + 4 + Job 316A, St. Joseph,1962 + + + + + + 116 + 5 + Job 316A, St. Joseph, Drawings,1962 + + + + + + 116 + 6 + Job 317, Ogden Dunes, IN, 1 of 4,1962 + + + + + + 116 + 7 + Job 317, Ogden Dunes, IN, 2 of 4,1962 + + + + + 117 + 1 + Job 317, Ogden Dunes, IN, 3 of 4,1962 + + + + + + 117 + 2 + Job 317, Ogden Dunes, IN, 4 of 4,1962 + + + + + 117 + 3 + Job 317, Ogden Dunes, IN, Blue – line Drawings, 1 of 2,1962 + + + + + + 117 + 4 + Job 317, Ogden Dunes, IN, Blue – line Drawings, 2 of 2,1962 + + + + + + 117 + 5 + Job 317, Ogden Dunes, IN, Blueprints,1962 + + + + + + 117 + 6 + Job 317, Ogden Dunes, IN, Drawings,1962 + + + + + + 117 + 7 + Job 318, West Olive,1962 + + + + + + 117 + 8 + Job 318, West Olive, Drawings,1962 + + + + + + 118 + 1 + Job 319, Muskegon, 1 of 3,1963 + + + + + 118 + 2 + Job 319, Muskegon, 2 of 3,1963 + + + + + 118 + 3 + Job 319, Muskegon, 3 of 3,1963 + + + + + 118 + 4 + Job 319, Muskegon, Blue – line Drawings, 1 of 3,1963 + + + + + 118 + 5 + Job 319, Muskegon, Blue – line Drawings, 2 of 3,1963 + + + + + 118 + 6 + Job 319, Muskegon, Blue – line Drawings, 3 of 3,1963 + + + + + + 119 + 1 + Job 320, Racine, WI,1963 + + + + + + 119 + 2 + Job 320, Racine, WI, Blue – line Drawings,1963 + + + + + + 119 + 3 + Job 321, Racine, WI,1963 + + + + + + 119 + 4 + Job 321, Racine, WI, Blue – line Drawings,1963 + + + + + + 119 + 5 + Job 322, Kenosha, WI, 1 of 3,1963 + + + + + 119 + 6 + Job 322, Kenosha, WI, 2 of 3,1963 + + + + + 119 + 7 + Job 322, Kenosha, WI, 3 of 3,1963 + + + + + + 119 + 8 + Job 322, Kenosha, WI, Drawings,1963 + + + + + + 120 + 1 + Job 323, Elberta,1963 + + + + + 120 + 2 + Job 324, Frankfort,1963 + + + + + 120 + 3 + Job 325, Manistee,1963 + + + + + 120 + 4 + Job 326, Sheboygan, WI, 1 of 3,1963 + + + + + 120 + 5 + Job 326, Sheboygan, WI, 2 of 3,1963 + + + + + 120 + 6 + Job 326, Sheboygan, WI, 3 of 3,1963 + + + + + + 120 + 7 + Job 326, Sheboygan, WI, Drawings,1963 + + + + + + 120 + 8 + Job 327, Frankfort,1963 + + + + + + 120 + 9 + Job 328, Frankfort,1963 + + + + + + 120 + 10 + Job 329, Frankfort,1963 + + + + + + 121 + 1 + Job 330, Frankfort,1964 + + + + + 121 + 2 + Job 331, Frankfort,1964 + + + + + 121 + 3 + Job 332, Frankfort,1964 + + + + + + 121 + 4 + Job 333, Frankfort,1964 + + + + + + 121 + 5 + Job 334, Mackinac Island, 1 of 4,1964 + + + + + + 121 + 6 + Job 334, Mackinac Island, 2 of 4,1964 + + + + + 121 + 7 + Job 334, Mackinac Island, 3 of 4,1964 + + + + + + 121 + 8 + Job 334, Mackinac Island, 4 of 4,1964 + + + + + + 121 + 9 + Job 334, Mackinac Island, Drawings, 1 of 2,1964 + + + + + + 121 + 10 + Job 334, Mackinac Island, Drawings, 2 of 2,1964 + + + + + + 122 + 1 + Job 335, Frankfort,1964 + + + + + + 122 + 2 + Job 336, Manistee,1964 + + + + + + 122 + 3 + Job 337, Wyoming,1965 + + + + + + 122 + 4 + Job 337, Wyoming, Black and Veatch Correspondence,1964-1966 + + + + + + 122 + 5 + Job 337, Wyoming, Blue – line Drawings,1965 + + + + + + 122 + 6 + Job 337, Wyoming, City of Wyoming Correspondence,1964-1967 + + + + + + 122 + 7 + Job 337, Wyoming, Estimate, Contract and Bids,1964 + + + + + + 122 + 8 + Job 337, Wyoming, Lamar Pipe Correspondence,1964-1965 + + + + + + 122 + 9 + Job 337, Wyoming, O’Laughlin Construction Correspondence,1965 + + + + + + 122 + 10 + Job 337, Wyoming, Receipt and Progress Schedule,1965 + + + + + + 122 + 11 + Job 338, Frankfort,1964 + + + + + + 122 + 12 + Job 339, Elberta,1965 + + + + + + 122 + 13 + Job 340, Frankfort,1964-1965 + + + + + + 123 + 1 + Job 341, Rogers City,1965 + + + + + + 123 + 2 + Job 341, Rogers City, Blue – line Drawings,1964-1965 + + + + + + 123 + 3 + Job 341, Rogers City, Specifications,1964 + + + + + + 123 + 4 + Job 342, Frankfort,1965 + + + + + + 123 + 5 + Job 343, Frankfort,1964-1965 + + + + + + 123 + 6 + Job 344, Frankfort,1965-1966 + + + + + + 123 + 7 + Job 344, Frankfort, Drawings,1965 + + + + + + 123 + 8 + Job 345, Frankfort,1965 + + + + + + 123 + 9 + Job 346, St. Ignace,1965 + + + + + + 123 + 10 + Job 347, Frankfort, 1 of 2,1965 + + + + + + 123 + 11 + Job 347, Frankfort, 2 of 2,1965 + + + + + + 124 + 1 + Job 347, Frankfort, Contract and Estimates,1965 + + + + + + 124 + 2 + Job 347, Frankfort, Drawings,1965 + + + + + + 124 + 3 + Job 347, Frankfort, Indiana Limestone Correspondence,1965-1966 + + + + + + 124 + 4 + Job 348, Elberta,1965 + + + + + + 124 + 5 + Job 349, Mackinac Island,1965 + + + + + + 124 + 6 + Job 350, Frankfort,1965 + + + + + 124 + 7 + Job 351, Frankfort,1966 + + + + + + 124 + 8 + Job 352, Frankfort,1966 + + + + + + 124 + 9 + Job 353, Frankfort,1966-1968 + + + + + + 124 + 10 + Job 353, Frankfort,1969-1979 + + + + + + 124 + 11 + Job 353, Frankfort, Drawings,1966-1969 + + + + + + 124 + 12 + Job 353, Frankfort, Drawings,Undated + + + + + + 124 + 13 + Job 353, Frankfort, Preliminary Drawings and Calculations,1968 + + + + + + 125 + 1 + Job 354, Traverse City,1966 + + + + + + 125 + 2 + Job 354, Traverse City, Albert Kahn Associated Architects and Engineers Correspondence,1966 + + + + + + 125 + 3 + Job 354, Traverse City, Blueprints,1966 + + + + + + 125 + 4 + Job 354, Traverse City, Estimates,1966 + + + + + + 125 + 5 + Job 354, Traverse City, Drawings,1966 + + + + + + 125 + 6 + Job 355, Harbor Beach,1966 + + + + + + 125 + 7 + Job 355, Harbor Beach, Contract and Estimate,1966 + + + + + + 125 + 8 + Job 355, Harbor Beach, Hercules, Inc., Correspondence,1966 + + + + + + 125 + 9 + Job 355, Harbor Beach, Indiana Limestone Company Freight Bill and Invoices,1966 + + + + + + 125 + 10 + Job 355, Harbor Beach, Inspection and Progress Reports,1966 + + + + + + 125 + 11 + Job 355, Harbor Beach, Plans and Specifications,1966 + + + + + + 126 + 1 + Job 355, Harbor Beach, Photographs and Negatives,1966 + + + + + + 126 + 2 + Job 356, Harbor Beach,1966 + + + + + + 126 + 3 + Job 356, Harbor Beach, Plans,1966 + + + + + + 126 + 4 + Job 356, Harbor Beach, Quotations and Estimates,1966 + + + + + + 126 + 5 + Job 357, Frankfort,1966 + + + + + + 126 + 6 + Job 358, New Buffalo,1966 + + + + + + 126 + 7 + Job 358, New Buffalo, Clyde E. Williams and Associates,1965 + + + + + + 126 + 8 + Job 358, New Buffalo, Contract and Bidding,1965 + + + + + + 126 + 9 + Job 358, New Buffalo, Payment Estimates,1966 + + + + + + 127 + 1 + Job 358, New Buffalo, Plans,1966 + + + + + + 127 + 2 + Job 358, New Buffalo, Profiles,1966 + + + + + + 127 + 3 + Job 359, Charlevoix,1967 + + + + + + 127 + 4 + Job 359, Charlevoix, Drawings,1967 + + + + + + 127 + 5 + Job 360, Two Creeks, WI,1967 + + + + + + 127 + 6 + Job 262A, Frankfort,1967 + + + + + + 127 + 7 + Job 363, Kewaunee, WI,1967 + + + + + 127 + 8 + Job 364, Frankfort,1968 + + + + + + 127 + 9 + Job 365, Frankfort,1968 + + + + + + 127 + 10 + Job 366, Charlevoix, 1 of 8,1968 + + + + + + 127 + 11 + Job 366, Charlevoix, 2 of 8,1968 + + + + + + 128 + 1 + Job 366, Charlevoix, 3 of 8,1968 + + + + + 128 + 2 + Job 366, Charlevoix, 4 of 8,1968 + + + + + 128 + 3 + Job 366, Charlevoix, 5 of 8,1968 + + + + + 128 + 4 + Job 366, Charlevoix, 6 of 8,1968 + + + + + 128 + 5 + Job 366, Charlevoix, 7 of 8,1968 + + + + + 128 + 6 + Job 366, Charlevoix, 8 of 8,1968 + + + + + + 129 + 1 + Job 366, Charlevoix, Blue – line Drawings,1968 + + + + + + 129 + 2 + Job 366, Charlevoix, Drawings,1968 + + + + + + 129 + 3 + Job 367, Charlevoix,1968 + + + + + + 129 + 4 + Job 368, Frankfort, 1 of 2,1968 + + + + + + 129 + 5 + Job 368, Frankfort, 2 of 2,1968 + + + + + + 129 + 6 + Job 368, Frankfort, Drawings,1968 + + + + + + 129 + 7 + Job 369, Frankfort,1968 + + + + + 129 + 8 + Job 370, Frankfort,1969 + + + + + + 129 + 9 + Job 371, Charlevoix,1969 + + + + + + 130 + 1 + Job 372, Kewaunee, WI,1969 + + + + + 130 + 2 + Job 372, Kewaunee, WI, Contract and Bidding Papers,1969 + + + + + 130 + 3 + Job 372, Kewaunee, WI, Divers Inspection Reports,1969 + + + + + 130 + 4 + Job 372, Kewaunee, WI, Job Hours Breakdown,1969 + + + + + 130 + 5 + Job 372, Kewaunee, WI, Orders,1969 + + + + + 130 + 6 + Job 372, Kewaunee, WI, Pioneer Services Inc., 1 of 2,1969 + + + + + + 130 + 7 + Job 372, Kewaunee, WI, Pioneer Services Inc., 2 of 2,1969 + + + + + + 131 + 1 + Job 372, Kewaunee, WI, Plans,1969 + + + + + + 131 + 2 + Job 372, Kewaunee, WI, Pre – Construction Information,1969 + + + + + + 131 + 3 + Job 372, Kewaunee, WI, Pro Fab Drawings,1969 + + + + + 131 + 4 + Job 372, Kewaunee, WI, Profiles,1969 + + + + + + 131 + 5 + Job 372, Kewaunee, WI, Progressive Fabrications,1969 + + + + + + 131 + 6 + Job 372, Kewaunee, WI, Shop Drawings,1969 + + + + + 131 + 7 + Job 372, Kewaunee, WI, Specifications,1969 + + + + + 132 + 1 + Job 373, Frankfort,1969 + + + + + 132 + 2 + Job 374, Burn’s Ditch, IN,1969 + + + + + 132 + 3 + Job 375, Charlevoix,1969 + + + + + 132 + 4 + Job 376, Traverse City,1969 + + + + + 132 + 5 + Job 376, Traverse City, Contract and Estimate,1969 + + + + + 132 + 6 + Job 376, Traverse City, Orders and Shop Drawings,1969 + + + + + 132 + 7 + Job 376, Traverse City, Plans and Specifications,1969 + + + + + 132 + 8 + Job 377, Charlevoix,1969 + + + + + + 132 + 9 + Job 378, Detroit,1970 + + + + + 133 + 1 + Job 379, Ludington,1970 + + + + + 133 + 2 + Job 379, Ludington, Michigan Drilling,1970 + + + + + 133 + 3 + Job 380, Frankfort,1970 + + + + + 133 + 4 + Job 381, Frankfort,1970 + + + + + 133 + 5 + Job 382, Ludington, 1 of 2,1970 + + + + + 133 + 6 + Job 382, Ludington, 2 of 2,1970 + + + + + 133 + 7 + Job 382, Ludington,1971 + + + + + 133 + 8 + Job 382, Ludington, Bid and Contract,1970 + + + + + + 133 + 9 + Job 382, Ludington, Blue – line Drawings,1970 + + + + + + 134 + 1 + Job 382, Ludington, Estimates,1970 + + + + + 134 + 2 + Job 382, Ludington, Orders,1970-1971 + + + + + + 134 + 3 + Job 382, Ludington, Progress and Job Hour Charts,1970-1971 + + + + + 134 + 4 + Job 383, Frankfort,1970 + + + + + + 134 + 5 + Job 384, Traverse City,1970 + + + + + 134 + 6 + Job 385, Charlevoix,1970 + + + + + 134 + 7 + Job 386, Frankfort,1970 + + + + + 134 + 8 + Job 387, Bridgeman,1971 + + + + + 134 + 9 + Job 387, Bridgeman, Blue – line Drawings,1969-1970 + + + + + 134 + 10 + Job 387, Bridgeman, Blueprints,1969 + + + + + 134 + 11 + Job 387, Bridgeman, Estimates,1970 + + + + + 134 + 12 + Job 387, Bridgeman, Job Summaries,1971-1972 + + + + + 135 + 1 + Job 387, Bridgeman, Profile Drawings,1971 + + + + + + 135 + 2 + Job 387, Bridgeman, Specifications,1969 + + + + + 135 + 3 + Job 388, Charlevoix, 1 of 2,1971 + + + + + 135 + 4 + Job 388, Charlevoix, 2 of 2,1971 + + + + + 135 + 5 + Job 388, Charlevoix, Armco Steel Correspondence,1971 + + + + + + 135 + 6 + Job 388, Charlevoix, Contract,1970 + + + + + 135 + 7 + Job 388, Charlevoix, Drawing Index,1971 + + + + + 135 + 8 + Job 388, Charlevoix, Drawings,1971 + + + + + + 135 + 9 + Job 388, Charlevoix, Newspaper Clippings,1971 + + + + + 135 + 10 + Job 388, Charlevoix, Photographs,1971 + + + + + 136 + 1 + Job 389, Cudahy, WI and Evanston, IL,1970 + + + + + 136 + 2 + Job 390, Frankfort,1970 + + + + + 136 + 3 + Job 391, Charlevoix,1970 + + + + + 136 + 4 + Job 392, Charlevoix,1970 + + + + + 136 + 5 + Job 393, Frankfort,1970 + + + + + 136 + 6 + Job 394, Frankfort,1970 + + + + + 136 + 7 + Job 395, Beaver Island,1971 + + + + + 136 + 8 + Job 395, Beaver Island, Contract,1971 + + + + + 136 + 9 + Job 395, Beaver Island, Drawings and Charts,1971 + + + + + 136 + 10 + Job 395, Beaver Island, Photographs,1971 + + + + + 136 + 11 + Job 396, Frankfort,1971 + + + + + 136 + 12 + Job 397, Frankfort,1971 + + + + + 136 + 13 + Job 398, Elberta,1971 + + + + + 136 + 14 + Job 399, Owosso,1971 + + + + + + 136 + 15 + Job 400, Two Creeks, WI,1971 + + + + + + 137 + 1 + Job 400, Two Creeks, WI, Blue – line Drawings,1971 + + + + + 137 + 2 + Job 400, Two Creeks, WI, Drawings,1971 + + + + + 137 + 3 + Job 401, Cudahy, WI,1971 + + + + + 137 + 4 + Job 402, Onekama,1971 + + + + + 137 + 5 + Job 403, Charlevoix,1971 + + + + + 137 + 6 + Job 404, Ludington,1971 + + + + + 137 + 7 + Job 405, Elberta,1971 + + + + + 137 + 8 + Job 406, Harbor Beach, 1 of 3,1971 + + + + + 137 + 9 + Job 406, Harbor Beach, 2 of 3,1971 + + + + + 137 + 10 + Job 406, Harbor Beach, 3 of 3,1971 + + + + + 138 + 1 + Job 406, Harbor Beach, Blue – line Drawings,1971 + + + + + + 138 + 2 + Job 407, Charlevoix,1971 + + + + + 138 + 3 + Job 408, Ludington,1971 + + + + + 138 + 4 + Job 409, Ludington, 1 of 12,1971-1972 + + + + + 138 + 5 + Job 409, Ludington, 2 of 12,1971-1972 + + + + + 138 + 6 + Job 409, Ludington, 3 of 12,1971-1972 + + + + + 138 + 7 + Job 409, Ludington, 4 of 12,1971-1972 + + + + + 138 + 8 + Job 409, Ludington, 5 of 12,1971-1972 + + + + + 139 + 1 + Job 409, Ludington, 6 of 12,1971-1972 + + + + + 139 + 2 + Job 409, Ludington, 7 of 12,1971-1972 + + + + + 139 + 3 + Job 409, Ludington, 8 of 12,1971-1972 + + + + + 139 + 4 + Job 409, Ludington, 9 of 12,1971-1972 + + + + + 139 + 5 + Job 409, Ludington, 10 of 12,1971-1972 + + + + + 139 + 6 + Job 409, Ludington, 11 of 12,1971-1972 + + + + + 139 + 7 + Job 409, Ludington, 12 of 12,1971-1972 + + + + + 140 + 1 + Job 409, Ludington, Articles,1971-1972 + + + + + + 140 + 2 + Job 409, Ludington, Blue – line Drawings, 1 of 4,1971-1972 + + + + + 140 + 3 + Job 409, Ludington, Blue – line Drawings, 2 of 4,1971-1972 + + + + + 140 + 4 + Job 409, Ludington, Blue – line Drawings, 3 of 4,1971-1972 + + + + + 140 + 5 + Job 409, Ludington, Blue – line Drawings, 4 of 4,1971-1972 + + + + + 140 + 6 + Job 409, Ludington, Drawings,1971-1972 + + + + + + 140 + 7 + Job 410, Frankfort,1971 + + + + + 141 + 1 + Job 411, Manistee,1971 + + + + + + 141 + 2 + Job 411, Manistee, Drawings,1971 + + + + + + 141 + 3 + Job 412, Manitowoc, WI,1971 + + + + + 141 + 4 + Job 413, Kewaunee, WI,1971 + + + + + 141 + 5 + Job 414, Harbor Beach,1971-1972 + + + + + 141 + 6 + Job 414, Harbor Beach, Blue – line Drawings,1971-1972 + + + + + 141 + 7 + Job 415, Frankfort,1971-1972 + + + + + 141 + 8 + Job 416, Frankfort,1971-1972 + + + + + + 141 + 9 + Job 417, Charlevoix,1971 + + + + + 141 + 10 + Job 418, Frankfort,1972 + + + + + + 141 + 11 + Job 419, Bridgman,1972 + + + + + 141 + 12 + Job 420, Bridgman,1972 + + + + + 141 + 13 + Job 421, Vermilion, OH,1972-1973 + + + + + 141 + 14 + Job 421, Vermilion, OH,1973-1980 + + + + + 141 + 15 + Job 421, Vermilion, OH, Bidding Papers,1972-1973 + + + + + + 142 + 1 + Job 421, Vermilion, OH, Contract,1972-1974 + + + + + + 142 + 2 + Job 421, Vermilion, OH, Contract Performances,1973-1974 + + + + + + 142 + 3 + Job 421, Vermilion, OH, Drawings,1972 + + + + + + 142 + 4 + Job 421, Vermilion, OH, Drawings,1973-1974 + + + + + + 142 + 5 + Job 421, Vermilion, OH, Orders,1973 + + + + + 142 + 6 + Job 422, Frankfort,1972 + + + + + 142 + 7 + Job 423, South Manitou Island,1972-1978 + + + + + + 142 + 8 + Job 423, South Manitou Island, Drawings and Maps,1978 + + + + + + 143 + 1 + Job 424, Oak Harbor, OH, 1 of 2,1973 + + + + + 143 + 2 + Job 424, Oak Harbor, OH, 2 of 2,1973 + + + + + + 143 + 3 + Job 424, Oak Harbor, OH, Backfill Soundings,1974 + + + + + + 143 + 4 + Job 424, Oak Harbor, OH, Contract,1973-1974 + + + + + + 143 + 5 + Job 424, Oak Harbor, OH, Diver Inspection Reports, 1 of 3,1973 + + + + + 143 + 6 + Job 424, Oak Harbor, OH, Diver Inspection Reports, 2 of 3,1973 + + + + + + 144 + 1 + Job 424, Oak Harbor, OH, Diver Inspection Reports, 3 of 3,1973 + + + + + 144 + 2 + Job 424, Oak Harbor, OH, Drawings, 1 of 2,1973 + + + + + 144 + 3 + Job 424, Oak Harbor, OH, Drawings, 2 of 2,1973 + + + + + 144 + 4 + Job 424, Oak Harbor, OH, Finkbeiner, Pettis and Strout Correspondence,1972-1974 + + + + + + 144 + 5 + Job 424, Oak Harbor, OH, Orders,1973 + + + + + 144 + 6 + Job 424, Oak Harbor, OH, Photographs,1973 + + + + + 144 + 7 + Job 425, Frankfort,1973 + + + + + 144 + 8 + Job 426, Elberta,1973 + + + + + + 144 + 9 + Job 427, Elberta,1973 + + + + + + 145 + 1 + Job 428, Lake Township,1974 + + + + + + 145 + 2 + Job 428, Lake Township, Consoer, Townsend and Associates Correspondence,1973-1974 + + + + + + 145 + 3 + Job 428, Lake Township, Drawings,1973-1974 + + + + + + 145 + 4 + Job 428, Lake Township, Price Brothers Correspondence,1973-1974 + + + + + + 145 + 5 + Job 428, Lake Township, Proposal and Contract,1973 + + + + + 145 + 6 + Job 429, Kewaunee, WI,1973 + + + + + + 145 + 7 + Job 430, Ludington,1973-1974 + + + + + + 145 + 8 + Job 431, Harbor Beach,1973 + + + + + + 145 + 9 + Job 432, Lorain, OH,1973-1975 + + + + + + 145 + 10 + Job 432, Lorain, OH, Drawings,Undated + + + + + + 146 + 1 + Job 432, Lorain, OH, Photographs,1975 + + + + + + 146 + 2 + Job 433, Lake Township,1974-1975 + + + + + + 146 + 3 + Job 433, Lake Township, Contract, 1 of 2,1974 + + + + + 146 + 4 + Job 433, Lake Township, Contract, 2 of 2,1974 + + + + + 146 + 5 + Job 433, Lake Township, Price Brothers Correspondence,1974 + + + + + 146 + 6 + Job 434, Saugatuck,1974 + + + + + + 146 + 7 + Job 434, Saugatuck, Bid and Contract,1974 + + + + + + 147 + 1 + Job 434, Saugatuck, Blue – line Drawings,1974 + + + + + + 147 + 2 + Job 435, Kenosha, WI, 1 of 2,1974 + + + + + 147 + 3 + Job 435, Kenosha, WI, 2 of 2,1974 + + + + + + 147 + 4 + Job 435, Kenosha, WI,1975 + + + + + + 147 + 5 + Job 435, Kenosha, WI, Blue –line Drawings, 1 of 2,1974 + + + + + 147 + 6 + Job 435, Kenosha, WI, Blue –line Drawings, 2 of 2,1974 + + + + + + 147 + 7 + Job 435, Kenosha, WI, Contract Modifications and Progress Schedule,1974-1976 + + + + + 148 + 1 + Job 435, Kenosha, WI, Contract Modification #501 Correspondence,1974-1976 + + + + + + 148 + 2 + Job 435, Kenosha, WI, Contract Performances,1974-1976 + + + + + + 148 + 3 + Job 435, Kenosha, WI, Edward E. Gillen Company Correspondence,1974 + + + + + + 148 + 4 + Job 435, Kenosha, WI, Edward E. Gillen Company Correspondence, 1 of 2,1975 + + + + + 148 + 5 + Job 435, Kenosha, WI, Edward E. Gillen Company Correspondence, 2 of 2,1975 + + + + + + 148 + 6 + Job 435, Kenosha, WI, Estimate and Proposal,1974 + + + + + 148 + 7 + Job 435, Kenosha, WI, Specifications,1974 + + + + + 148 + 8 + Job 435, Kenosha, WI, Vulcan Materials Correspondence,1974-1976 + + + + + 149 + 1 + Job 436, Lorain, OH,1974 + + + + + 149 + 2 + Job 436, Lorain, OH, Blue – line Drawings,1974 + + + + + 149 + 3 + Job 437, Monroe,1974 + + + + + 149 + 4 + Job 438, Cleveland, OH,1974-1975 + + + + + 149 + 5 + Job 438, Cleveland, OH,1975-1976 + + + + + + 149 + 6 + Job 438, Cleveland, OH, Bid, Proposal and Contract,1975 + + + + + + 150 + 1 + Job 438, Cleveland, OH, Drawings,1974 + + + + + 150 + 2 + Job 438, Cleveland, OH, Original Claque Road Intake Plans, 1 of 2,1954 + + + + + 150 + 3 + Job 438, Cleveland, OH, Original Claque Road Intake Plans, 2 of 2,1954 + + + + + 150 + 4 + Job 439, Ludington,1975 + + + + + 150 + 5 + Job 440, Elberta,1974 + + + + + 150 + 6 + Job 441, Elberta,1975 + + + + + 150 + 7 + Job 442, Au Sable,1975 + + + + + 150 + 8 + Job 442, Au Sable, Contract, Estimate and Change of Orders,1975 + + + + + + 151 + 1 + Job 442, Au Sable, Contract, Estimate and Change of Orders,1975 + + + + + 151 + 2 + Job 443, Ashtabula, OH,1975 + + + + + 151 + 3 + Job 444, Kenosha, WI,1974-1977 + + + + + 151 + 4 + Job 444, Kenosha, WI, Alvord, Burdict and Houston Correspondence,1975-1976 + + + + + + 151 + 5 + Job 444, Kenosha, WI, Bid Proposal and Contract,1975 + + + + + 151 + 6 + Job 444, Kenosha, WI, Drawings,1975 + + + + + 152 + 1 + Job 444, Kenosha, WI, Lock Joint Pipe Correspondence,1975-1976 + + + + + 152 + 2 + Job 445, Marblehead, OH,1975 + + + + + + 152 + 3 + Job 446, Kewaunee, WI,1975 + + + + + 152 + 4 + Job 446, Kewaunee, WI, Drawings and Specifications,1975 + + + + + 152 + 5 + Job 446, Kewaunee, WI, Photographs, 1 of 2,1975 + + + + + 152 + 6 + Job 446, Kewaunee, WI, Photographs, 2 of 2,1975 + + + + + + 152 + 7 + Job 447, Oak Harbor, OH,1975 + + + + + + 153 + 1 + Job 448, Little Lake,1975 + + + + + + 153 + 2 + Job 449, Toledo, OH,1975-1977 + + + + + + 153 + 3 + Job 449, Toledo, OH, Arco Pipe Accident,1976 + + + + + + 153 + 4 + Job 449, Toledo, OH, Bid Proposal and Contract,1975 + + + + + + 153 + 5 + Job 449, Toledo, OH, Construction Notebooks,1975-1976 + + + + + + 153 + 6 + Job 449, Toledo, OH, Drawings,1975-1976 + + + + + + 154 + 1 + Job 449, Toledo, OH, Photographs,1975 + + + + + + 154 + 2 + Job 449, Toledo, OH, Subcontractor Reports,1975 + + + + + + 154 + 3 + Job 450, Muskegon,1975 + + + + + + 154 + 4 + Job 451, Frankfort,1975-1976 + + + + + + 154 + 5 + Job 451, Frankfort, Drawings,1975 + + + + + + 154 + 6 + Job 451, Frankfort, Strong, Drury and Elkins Correspondence,1975-1976 + + + + + + 154 + 7 + Job 452, Conneaut, OH,1975-1976 + + + + + + 154 + 8 + Job 452, Conneaut, OH, Bid Proposal and Contract,1975 + + + + + + 155 + 1 + Job 452, Conneaut, OH, Drawings,1975 + + + + + + 155 + 2 + Job 452, Conneaut, OH, Official Bid Specifications,1975 + + + + + + 155 + 3 + Job 452, Conneaut, OH, Photographs,1976 + + + + + + 155 + 4 + Job 453, Ludington,1976 + + + + + + 155 + 5 + Job 454, Perry, OH,1976-1977 + + + + + + 155 + 6 + Job 454, Perry, OH, Bid Proposal and Drawings,1976 + + + + + + 155 + 7 + Job 455, Ludington,1976 + + + + + + 155 + 8 + Job 456, Sault Ste. Marie,1976 + + + + + 155 + 9 + Job 457, Lorain, OH,1976 + + + + + 155 + 10 + Job 457, Lorain, OH, Bid Invitation and Specifications,1976 + + + + + 156 + 1 + Job 457, Lorain, OH, Contract,1976 + + + + + + 156 + 2 + Job 457, Lorain, OH, Contract Correspondence,1976 + + + + + + 156 + 3 + Job 457, Lorain, OH, Contract Performances,1976-1978 + + + + + + 156 + 4 + Job 457, Lorain, OH, Correspondence, 1 of 2,1976-1977 + + + + + + 156 + 5 + Job 457, Lorain, OH, Correspondence, 2 of 2,1976-1977 + + + + + + 156 + 6 + Job 457, Lorain, OH, Drawings,1976 + + + + + + 156 + 7 + Job 457, Lorain, OH, Estimate,1976 + + + + + 156 + 8 + Job 457, Lorain, OH, Johnson Island Correspondence,1976 + + + + + + 156 + 9 + Job 458, Frankfort,1976 + + + + + 156 + 10 + Job 459, Frankfort,1976 + + + + + + 157 + 1 + Job 460, Marquette, 1 of 10,1976 + + + + + + 157 + 2 + Job 460, Marquette, 2 of 10,1976 + + + + + 157 + 3 + Job 460, Marquette, 3 of 10,1976 + + + + + + 157 + 4 + Job 460, Marquette, 4 of 10,1976 + + + + + 157 + 5 + Job 460, Marquette, 5 of 10,1976 + + + + + + 157 + 6 + Job 460, Marquette, 6 of 10,1976 + + + + + 158 + 1 + Job 460, Marquette, 7 of 10,1976 + + + + + + 158 + 2 + Job 460, Marquette, 8 of 10,1976 + + + + + 158 + 3 + Job 460, Marquette, 9 of 10,1976 + + + + + + 158 + 4 + Job 460, Marquette, 10 of 10,1976 + + + + + 158 + 5 + Job 460, Marquette, Blue – line Drawings, 1 of 4,1976 + + + + + 157 + 6 + Job 460, Marquette, Blue – line Drawings, 2 of 4,1976 + + + + + 159 + 1 + Job 460, Marquette, Blue – line Drawings, 3 of 4,1976 + + + + + 159 + 2 + Job 460, Marquette, Blue – line Drawings, 4 of 4,1976 + + + + + 159 + 3 + Job 460, Marquette, Drawings, 1 of 5,1976 + + + + + 159 + 4 + Job 460, Marquette, Drawings, 2 of 5,1976 + + + + + 159 + 5 + Job 460, Marquette, Drawings, 3 of 5,1976 + + + + + + 160 + 1 + Job 460, Marquette, Drawings, 4 of 5,1976 + + + + + 160 + 2 + Job 460, Marquette, Drawings, 5 of 5,1976 + + + + + + 160 + 3 + Job 461, Lorain, OH,1977 + + + + + 160 + 4 + Job 462, Frankfort,1977 + + + + + 160 + 5 + Job 462, Frankfort, Drawings,1977 + + + + + 160 + 6 + Job 463, Frankfort,1977 + + + + + + 160 + 7 + Job 464, Lorain, OH,1977 + + + + + + 161 + 1 + Job 464, Lorain, OH, Drawings,1977 + + + + + + 161 + 2 + Job 464, Lorain, OH, 1 of 3,1977 + + + + + 161 + 3 + Job 464, Lorain, OH, 2 of 3,1977 + + + + + + 161 + 4 + Job 464, Lorain, OH, 3 of 3,1977 + + + + + + 161 + 5 + Job 464, Lorain, OH, Blue – line Drawings, 1 of 2,1977 + + + + + + 161 + 6 + Job 464, Lorain, OH, Blue – line Drawings, 2 of 2,1977 + + + + + + 162 + 1 + Job 466, Frankfort,1977 + + + + + + 162 + 2 + Job 467, Elberta,1977 + + + + + + 162 + 3 + Job 468, Lorain, OH,1977 + + + + + + 162 + 4 + Job 469, Frankfort,1977 + + + + + + 162 + 5 + Job 470, Lorain, OH,1977 + + + + + + 162 + 6 + Job 471, Saugatuck,1977 + + + + + + 162 + 7 + Job 471, Saugatuck, Blue – line Drawings,1977 + + + + + + 162 + 8 + Job 472, Cleveland, OH,1977 + + + + + + 162 + 9 + Job 473, Frankfort, 1 of 2,1977 + + + + + + 162 + 10 + Job 473, Frankfort, 2 of 2,1977 + + + + + + 163 + 1 + Job 473, Frankfort, Drawings,1977 + + + + + + 163 + 2 + Job 474, Conneaut, OH,1977-1978 + + + + + + 163 + 3 + Job 474, Conneaut, OH, Contract Performances,1977-1978 + + + + + + 163 + 4 + Job 474, Conneaut, OH, Correspondence,1977-1978 + + + + + + 163 + 5 + Job 474, Conneaut, OH, Drawings,1974 + + + + + + 163 + 6 + Job 474, Conneaut, OH, Drawings,1977 + + + + + + 163 + 7 + Job 474, Conneaut, OH, Estimates and Specifications,1977 + + + + + + 163 + 8 + Job 474, Conneaut, OH, Millguad Corporation Correspondence,1977-1978 + + + + + + 164 + 1 + Job 475, Toledo, OH,1977-1978 + + + + + + 164 + 2 + Job 475, Toledo, OH, Bid Invitation and Estimate,1977 + + + + + + 164 + 3 + Job 475, Toledo, OH, Contract,1977 + + + + + + 164 + 4 + Job 475, Toledo, OH, Correspondence,1978 + + + + + + 164 + 5 + Job 475, Toledo, OH, Drawings,1977 + + + + + + 164 + 6 + Job 476, Little Lake, 1 of 2,1977 + + + + + + 164 + 7 + Job 476, Little Lake, 2 of 2,1977 + + + + + + 164 + 8 + Job 476, Little Lake, Drawings,1975-1977 + + + + + + 165 + 1 + Job 477, Houghton,1977 + + + + + + 165 + 2 + Job 477, Houghton, Bid and Contract,1977 + + + + + + 165 + 3 + Job 477, Houghton, Drawings and Specifications,1977 + + + + + + 165 + 4 + Job 478, Frankfort,1977 + + + + + + 165 + 5 + Job 479, Manistee,1977 + + + + + + 165 + 6 + Job 480, Lorain, OH,1977 + + + + + + 165 + 7 + Job 481, Elberta,1977 + + + + + + 165 + 8 + Job 481, Elberta, Bid and Contract,1977 + + + + + + 165 + 9 + Job 481, Elberta, Drawings,1977 + + + + + + 165 + 10 + Job 482, Elberta,1977 + + + + + + 165 + 11 + Job 483, Marblehead, OH,1978 + + + + + + 165 + 12 + Job 484, Elberta,1978 + + + + + + 166 + 1 + Job 485, Lorain, OH,1978 + + + + + + 166 + 2 + Job 485, Lorain, OH, Drawings,1978 + + + + + + 166 + 3 + Job 486, Erie, PA, 1 of 2,1978 + + + + + + 166 + 4 + Job 486, Erie, PA, 2 of 2,1978 + + + + + + 166 + 5 + Job 486, Erie, PA, Drawings,1978 + + + + + + 166 + 6 + Job 487, Milwaukee, WI, 1 of 4,1978 + + + + + 166 + 7 + Job 487, Milwaukee, WI, 2 of 4,1978 + + + + + 166 + 8 + Job 487, Milwaukee, WI, 3 of 4,1978 + + + + + + 167 + 1 + Job 487, Milwaukee, WI, 4 of 4,1978 + + + + + 167 + 2 + Job 487, Milwaukee, WI, Drawings, 1 of 2,1978 + + + + + 167 + 3 + Job 487, Milwaukee, WI, Drawings, 2 of 2,1978 + + + + + + 167 + 4 + Job 488, Milwaukee, WI, 1 of 2,1978 + + + + + + 167 + 5 + Job 488, Milwaukee, WI, 2 of 2,1978 + + + + + + 167 + 6 + Job 488, Milwaukee, WI, Blue – line Drawings,1978 + + + + + + 167 + 7 + Job 489, Michigan City, IN,1978-1979 + + + + + + 168 + 1 + Job 489, Michigan City, IN, Bid, Estimate and Contract,1978 + + + + + + 168 + 2 + Job 489, Michigan City, IN, Contract Modifications,1978-1979 + + + + + + 168 + 3 + Job 489, Michigan City, IN, Contract Performances,1977-1978 + + + + + + 168 + 4 + Job 489, Michigan City, IN, Drawings,1978 + + + + + + 168 + 5 + Job 489, Michigan City, IN, Interest Claims, 1 of 2,1978-1982 + + + + + + 168 + 6 + Job 489, Michigan City, IN, Interest Claims, 2 of 2,1978-1982 + + + + + + 168 + 7 + Job 490, Arcadia,1978 + + + + + + 169 + 1 + Job 490, Arcadia, Bid and Contract,1978 + + + + + + 169 + 2 + Job 490, Arcadia, Drawings and Photographs,1978 + + + + + + 169 + 3 + Job 491, Elberta,1978 + + + + + + 169 + 4 + Job 491, Elberta, Drawings,1978 + + + + + + 169 + 5 + Job 492, Cleveland, OH, 1 of 2,1977-1978 + + + + + + 169 + 6 + Job 492, Cleveland, OH, 2 of 2,1977-1978 + + + + + + 169 + 7 + Job 492, Cleveland, OH, Bid, Estimate and Contract,1978 + + + + + + 170 + 1 + Job 492, Cleveland, OH, Drawings,1978 + + + + + + 170 + 2 + Job 493, Toledo, OH, 1 of 2,1978 + + + + + + 170 + 3 + Job 493, Toledo, OH, 2 of 2,1978 + + + + + + 170 + 4 + Job 493, Toledo, OH, Bid, Estimate and Contract,1978 + + + + + + 170 + 5 + Job 493, Toledo, OH, Blue – line Drawings,1978 + + + + + 170 + 6 + Job 493, Toledo, OH, Pierce Construction Correspondence, 1 of 2,1978 + + + + + 170 + 7 + Job 493, Toledo, OH, Pierce Construction Correspondence, 2 of 2,1978 + + + + + + 171 + 1 + Job 494, Frankfort, 1 of 4,1978 + + + + + + 171 + 2 + Job 494, Frankfort, 2 of 4,1978 + + + + + + 171 + 3 + Job 494, Frankfort, 3 of 4,1978 + + + + + 171 + 4 + Job 494, Frankfort, 4 of 4,1978 + + + + + + 171 + 5 + Job 494, Frankfort, Blue – line Drawings, 1 of 2,1978 + + + + + + 171 + 6 + Job 494, Frankfort, Blue – line Drawings, 2 of 2,1978 + + + + + + 172 + 1 + Job 495, Milwaukee, WI,1978 + + + + + + 172 + 2 + Job 496, Muskegon,1978-1979 + + + + + + 172 + 3 + Job 497, Muskegon,1979 + + + + + + 172 + 4 + Job 498, Frankfort,1978 + + + + + + 172 + 5 + Job 499, Elberta,1978 + + + + + + 172 + 6 + Job 500, Milwaukee, WI,1978 + + + + + + 172 + 7 + Job 501, Toledo, OH,1978 + + + + + + 172 + 8 + Job 502, Two Harbors, MN, 1 of 3,1979 + + + + + 172 + 9 + Job 502, Two Harbors, MN, 2 of 3,1979 + + + + + + 173 + 1 + Job 502, Two Harbors, MN, 3 of 3,1979 + + + + + + 173 + 2 + Job 502, Two Harbors, MN, Blue – line Drawings, 1 of 2,1979 + + + + + + 173 + 3 + Job 502, Two Harbors, MN, Blue – line Drawings, 2 of 2,1979 + + + + + + 173 + 4 + Job 502, Two Harbors, MN, Drawings,1979 + + + + + + 173 + 5 + Job 503, Point Mouillee,1979 + + + + + + 173 + 6 + Job 504, Erie, PA, 1 of 5,1979 + + + + + + 174 + 1 + Job 504, Erie, PA, 2 of 5,1979 + + + + + + 174 + 2 + Job 504, Erie, PA, 3 of 5,1979 + + + + + 174 + 3 + Job 504, Erie, PA, 4 of 5,1979 + + + + + 174 + 4 + Job 504, Erie, PA, 5 of 5,1979 + + + + + 174 + 5 + Job 504, Erie, PA, Drawings,1979 + + + + + 174 + 6 + Job 505, Frankfort,1979 + + + + + 174 + 7 + Job 506, Frankfort,1979 + + + + + + 174 + 8 + Job 507, Harrisville, Little Lake, Lac la Belle, Big Bay, Black River and Grand Traverse,1 of 3,1979 + + + + + + 175 + 1 + Job 507, Harrisville, Little Lake, Lac la Belle, Big Bay, Black River and Grand Traverse, 2 of 3,1979 + + + + + + 175 + 2 + Job 507, Harrisville, Little Lake, Lac la Belle, Big Bay, Black River and Grand Traverse, 3 of 3,1979 + + + + + + 175 + 3 + Job 507, Harrisville, Little Lake, Lac la Belle, Big Bay, Black River and Grand Traverse, Drawings, 1 of 2,1979 + + + + + + 175 + 4 + Job 507, Harrisville, Little Lake, Lac la Belle, Big Bay, Black River and Grand Traverse, Drawings, 2 of 2,1979 + + + + + + 175 + 5 + Job 508, Ludington,1979 + + + + + 175 + 6 + Job 509, Frankfort,1979 + + + + + + 175 + 7 + Job 510, Frankfort,1979 + + + + + + 176 + 1 + Job 511, Elberta,1979 + + + + + + 176 + 2 + Job 512, Dunkirk, NY, 1 of 5,1979 + + + + + 176 + 3 + Job 512, Dunkirk, NY, 2 of 5,1979 + + + + + 176 + 4 + Job 512, Dunkirk, NY, 3 of 5,1979 + + + + + + 176 + 5 + Job 512, Dunkirk, NY, 4 of 5,1979 + + + + + 176 + 6 + Job 512, Dunkirk, NY, 5 of 5,1979 + + + + + + 177 + 1 + Job 512, Dunkirk, NY, Blue – line Drawings,1979 + + + + + + 177 + 2 + Job 512, Dunkirk, NY, Drawings,1979 + + + + + + 177 + 3 + Job 513, Frankfort,1979 + + + + + + 177 + 4 + Job 514, Manistee,1979 + + + + + + 177 + 4 + Job 515, Eastlake, OH,1979 + + + + + + 177 + 5 + Job 516, Ashtabula, OH, 1 of 2,1979 + + + + + 177 + 6 + Job 516, Ashtabula, OH, 2 of 2,1979 + + + + + + 177 + 7 + Job 516, Ashtabula, OH, Drawings,1979 + + + + + + 177 + 8 + Job 517, Vermilion, OH, 1 of 2,1979 + + + + + + 178 + 1 + Job 517, Vermilion, OH, 2 of 2,1979 + + + + + + 178 + 2 + Job 517, Vermilion, OH, Blue – line Drawings,1979 + + + + + + 178 + 3 + Job 518, Ashtabula, OH,1979 + + + + + + 178 + 4 + Job 519, Frankfort,1979 + + + + + + 178 + 5 + Job 520, Ashtabula, OH,1979 + + + + + + 178 + 6 + Job 521, Frankfort,1979 + + + + + + 178 + 7 + Job 521, Frankfort, Drawings,1979 + + + + + + 178 + 8 + Job 522, Marquette,1979 + + + + + + 178 + 9 + Job 523, Vermilion, OH,1979 + + + + + + 178 + 10 + Job 524, Toledo, OH,1980 + + + + + 178 + 11 + Job 525, Frankfort,1980 + + + + + + 178 + 12 + Job 526, Frankfort,1980 + + + + + + 179 + 1 + Job 527, Lorain, OH, 1 of 2,1980 + + + + + + 179 + 2 + Job 527, Lorain, OH, 2 of 2,1980 + + + + + + 179 + 3 + Job 527, Lorain, OH, Drawings,1980 + + + + + + 179 + 4 + Job 527, Lorain, OH, Photographs,1980 + + + + + + 179 + 5 + Job 528, Toledo, OH,1980 + + + + + + 179 + 6 + Job 529, Marblehead, OH,1980 + + + + + + 179 + 7 + Job 530, Duluth and Twin Harbors, MN,1980 + + + + + + 179 + 8 + Job 531, Frankfort,1980 + + + + + + 179 + 9 + Job 532, Muskegon,1980 + + + + + + 179 + 10 + Job 533, Spring Lake,1980 + + + + + + 180 + 1 + Job 534, Frankfort,1980 + + + + + 180 + 2 + Job 535, Frankfort,1980 + + + + + 180 + 3 + Job 536, St. Mary’s River, 1 of 2,1980 + + + + + 180 + 4 + Job 536, St. Mary’s River, 2 of 2,1980 + + + + + 180 + 5 + Job 536, St. Mary’s River, Drawings,1980 + + + + + 180 + 6 + Job 537, Dunkirk, NY, 1 of 3,1980 + + + + + 180 + 7 + Job 537, Dunkirk, NY, 2 of 3,1980 + + + + + 180 + 8 + Job 537, Dunkirk, NY, 3 of 3,1980 + + + + + + 181 + 1 + Job 537, Dunkirk, NY, Blue – line Drawings,1980 + + + + + + 181 + 2 + Job 537, Dunkirk, NY, Drawings,1980 + + + + + + 181 + 3 + Job 538, Fairport Harbor, OH, 1 of 2,1980 + + + + + + 181 + 4 + Job 538, Fairport Harbor, OH, 2 of 2,1980 + + + + + + 181 + 5 + Job 538, Fairport Harbor, OH, Blue – line Drawings, 1 of 2,1980 + + + + + + 181 + 6 + Job 538, Fairport Harbor, OH, Blue – line Drawings, 2 of 2,1980 + + + + + + 181 + 7 + Job 539, Sebewaing River,1980 + + + + + + 181 + 8 + Job 539, Sebewaing River, Bid and Estimate,1980 + + + + + + 182 + 1 + Job 539, Sebewaing River, Blue – line Drawings,1980 + + + + + + 182 + 2 + Job 539, Sebewaing River, Construction Contract and Modifications,1980 + + + + + + 182 + 3 + Job 540, Ashtabula, OH,1980 + + + + + 182 + 4 + Job 541, Cleveland, OH, 1 of 2,1980-1982 + + + + + + 182 + 5 + Job 541, Cleveland, OH, 2 of 2,1980-1982 + + + + + + 182 + 6 + Job 541, Cleveland, OH, Bid and Estimate,1980 + + + + + + 183 + 1 + Job 541, Cleveland, OH, Contract and Modifications,1980 + + + + + + 183 + 2 + Job 542, Erie, PA,1980 + + + + + + 183 + 3 + Job 543, Frankfort,1981 + + + + + + 183 + 4 + Job 544, Caseville,1980 + + + + + + 183 + 6 + Job 545, Toledo, OH,1980-1981 + + + + + + 183 + 7 + Job 545, Toledo, OH, Contract, 1 of 2,1980-1981 + + + + + + 183 + 8 + Job 545, Toledo, OH, Contract, 2 of 2,1980-1981 + + + + + + 183 + 9 + Job 545, Toledo, OH, Drawings,1980-1981 + + + + + + 184 + 1 + Job 545, Toledo, OH, Estimate,1980-1981 + + + + + + 184 + 2 + Job 545, Toledo, OH, ORBA Correspondence, 1 of 2,1980-1981 + + + + + + 184 + 3 + Job 545, Toledo, OH, ORBA Correspondence, 2 of 2,1980-1981 + + + + + + 184 + 4 + Job 546, Duluth, MN,1981 + + + + + + 184 + 5 + Job 546, Duluth, MN, Blue – line Drawings,1980-1981 + + + + + + 185 + 1 + Job 546, Duluth, MN, Drawings,1981 + + + + + + 185 + 2 + Job 546, Duluth, MN, Interest Claims,1981 + + + + + + 185 + 3 + Job 546, Duluth, MN, Photographs,1981 + + + + + + 185 + 4 + Job 546, Duluth, MN, U.S. Engineers Correspondence,1981 + + + + + 185 + 5 + Job 547, Lorain, OH,1980 + + + + + + 185 + 6 + Job 548, Detroit,1980-1981 + + + + + + 185 + 7 + Job 548, Detroit, Bid, Estimate and Contract,1980 + + + + + + 186 + 1 + Job 548, Detroit, Drawings,1980-1981 + + + + + + 186 + 2 + Job 548, Detroit, Photographs,undated + + + + + + 186 + 3 + Job 549, Duluth, MN,1980 + + + + + + 186 + 4 + Job 550, Dunkirk, NY,1981 + + + + + + 186 + 5 + Job 551, Kewaunee, WI,1981 + + + + + 186 + 6 + Job 551, Kewaunee, WI, Bid and Estimate,1981 + + + + + + 186 + 7 + Job 551, Kewaunee, WI, Contract Modifications,1981 + + + + + + 187 + 1 + Job 551, Kewaunee, WI, Drawings,1981 + + + + + + 187 + 2 + Job 551, Kewaunee, WI, Full Length and Copied Photographs,1981 + + + + + + 187 + 3 + Job 551, Kewaunee, WI, Payment Estimates,1981 + + + + + + 187 + 4 + Job 551, Kewaunee, WI, Photographs, 1 of 3,undated + + + + + 187 + 5 + Job 551, Kewaunee, WI, Photographs, 2 of 3,undated + + + + + 187 + 6 + Job 551, Kewaunee, WI, Photographs, 3 of 3,undated + + + + + + 187 + 7 + Job 551, Kewaunee, WI, Slides, 1 of 2,1981 + + + + + 187 + 8 + Job 551, Kewaunee, WI, Slides, 2 of 2,1981 + + + + + + 188 + 1 + Job 552, West Harbor, OH, 1 of 9,1981 + + + + + 188 + 2 + Job 552, West Harbor, OH, 2 of 9,1981 + + + + + + 188 + 3 + Job 552, West Harbor, OH, 3 of 9,1981 + + + + + 188 + 4 + Job 552, West Harbor, OH, 4 of 9,1981 + + + + + 188 + 5 + Job 552, West Harbor, OH, 5 of 9,1981 + + + + + 189 + 1 + Job 552, West Harbor, OH, 6 of 9,1981 + + + + + 189 + 2 + Job 552, West Harbor, OH, 7 of 9,1981 + + + + + 189 + 3 + Job 552, West Harbor, OH, 8 of 9,1981 + + + + + 189 + 4 + Job 552, West Harbor, OH, 9 of 9,1981 + + + + + + 189 + 5 + Job 552, West Harbor, OH, Blue – line Drawings, 1 of 4,1981 + + + + + 189 + 6 + Job 552, West Harbor, OH, Blue – line Drawings, 1 of 4,1981 + + + + + 189 + 7 + Job 552, West Harbor, OH, Blue – line Drawings, 2 of 4,1981 + + + + + + 190 + 1 + Job 552, West Harbor, OH, Blue – line Drawings, 3 of 4,1981 + + + + + + 190 + 2 + Job 552, West Harbor, OH, Blue – line Drawings, 4 of 4,1981 + + + + + 190 + 3 + Job 552, West Harbor, OH, Drawings,1981 + + + + + 190 + 4 + Job 553, Barcelona, NY, 1 of 2,1981 + + + + + 190 + 5 + Job 553, Barcelona, NY, 2 of 2,1981 + + + + + + 190 + 6 + Job 553, Barcelona, NY, Blue – line Drawings,1981 + + + + + + 190 + 7 + Job 554, Frankfort,1981 + + + + + + 190 + 8 + Job 555, Ashtabula, OH, 1 of 2,1981 + + + + + + 191 + 1 + Job 555, Ashtabula, OH, 2 of 2,1981 + + + + + + 191 + 2 + Job 555, Ashtabula, OH, Drawings,1981 + + + + + + 191 + 3 + Job 556, Frankfort, 1 of 2,1981 + + + + + + 191 + 4 + Job 556, Frankfort, 2 of 2,1981 + + + + + 191 + 5 + Job 556, Frankfort, Drawings,1981 + + + + + 191 + 6 + Job 557, Erie, PA,1981 + + + + + 191 + 7 + Job 558, Peach Island,1981-1983 + + + + + + 191 + 8 + Job 558, Peach Island, Bid Invitation and Estimate,1981 + + + + + + 192 + 1 + Job 558, Peach Island, Blue – line Drawings,1981 + + + + + + 192 + 2 + Job 558, Peach Island, Marine Accident,1983 + + + + + + 192 + 3 + Job 558, Peach Island, Photographs,1981 + + + + + 192 + 4 + Job 558, Peach Island, Quality Control Reports,1981-1982 + + + + + 192 + 5 + Job 559, Dunkirk, NY,1981 + + + + + + 192 + 6 + Job 560, Milwaukee, WI,1981 + + + + + + 193 + 1 + Job 560, Milwaukee, WI, Bid and Estimate,1981 + + + + + + 193 + 2 + Job 560, Milwaukee, WI, Drawings,1981 + + + + + + 193 + 3 + Job 561, Toledo, OH,1981-1982 + + + + + + 193 + 4 + Job 561, Toledo, OH, Bid Invitation,1981 + + + + + + 193 + 5 + Job 561, Toledo, OH, Contract and Estimate,1981 + + + + + + 193 + 6 + Job 561, Toledo, OH, Contract Correspondence,1982 + + + + + + 193 + 7 + Job 561, Toledo, OH, Correspondence,1981-1982 + + + + + + 194 + 1 + Job 561, Toledo, OH, Drawings,1982 + + + + + + 194 + 2 + Job 561, Toledo, OH, Photographs,1982 + + + + + + 194 + 3 + Job 562, Frankfort,1981-1982 + + + + + + 194 + 4 + Job 563, Grand Haven,1981-1982 + + + + + + 194 + 5 + Job 563, Grand Haven, Bid Invitation and Estimate,1981 + + + + + 194 + 6 + Job 563, Grand Haven, Blue – line Drawings,1981 + + + + + + 194 + 7 + Job 564, Elberta,1982 + + + + + + 194 + 8 + Job 565, Milwaukee, WI,1982 + + + + + + 194 + 9 + Job 566, Elberta,1982 + + + + + + 195 + 1 + Job 567, Cleveland, OH,1982 + + + + + + 195 + 2 + Job 568, Waukegan, IL,1982 + + + + + 195 + 3 + Job 568, Waukegan, IL, Bid Specifications and Contract,1982 + + + + + + 195 + 4 + Job 569, Toledo, OH,1982 + + + + + + 195 + 5 + Job 569, Toledo, OH, Drawings,1982 + + + + + + 195 + 6 + Job 569, Toledo, OH, Fondessy Enterprises Correspondence,1982 + + + + + + 195 + 7 + Job 569, Toledo, OH, Photographs and Publicity,1982 + + + + + + 196 + 1 + Job 570, Chicago, IL,1982 + + + + + 196 + 2 + Job 570, Chicago, IL, Photographs,1982 + + + + + 196 + 3 + Job 571, Dunkirk, NY,1982 + + + + + 196 + 4 + Job 572, Perry, OH,1982-1983 + + + + + 196 + 5 + Job 572, Perry, OH, Contract Correspondence, 1 of 21982-1983 + + + + + 196 + 6 + Job 572, Perry, OH, Contract Correspondence, 2 of 21982-1983 + + + + + 196 + 7 + Job 572, Perry, OH, Correspondence,1982-1983 + + + + + + 196 + 8 + Job 572, Perry, OH, Drawings,1982 + + + + + 196 + 9 + Job 572, Perry, OH, Estimate,1982-1983 + + + + + 197 + 1 + Job 572, Perry, OH, Receipts, 1 of 2,1983 + + + + + 197 + 2 + Job 572, Perry, OH, Receipts, 2 of 2,1983 + + + + + 197 + 3 + Job 572, Perry, OH, Photographs, 1 of 2,Undated + + + + + 197 + 4 + Job 572, Perry, OH, Photographs, 2 of 2,Undated + + + + + 197 + 5 + Job 572, Perry, OH, Negatives, 1 of 2,Undated + + + + + 197 + 6 + Job 572, Perry, OH, Negatives, 2 of 2,Undated + + + + + 197 + 7 + Job 573, Brevort,1982 + + + + + 198 + 1 + Job 574, Saginaw,1982 + + + + + 198 + 2 + Job 574, Saginaw, Blue – line Drawings,1982 + + + + + 198 + 3 + Job 575, Dunkirk, NY,1982 + + + + + 198 + 4 + Job 575, Dunkirk, NY, Drawings,1982 + + + + + 198 + 5 + Job 576, Detroit,1982 + + + + + 198 + 6 + Job 577, Milwaukee, WI, 1 of 2,1982-1984 + + + + + 199 + 1 + Job 577, Milwaukee, WI, 2 of 2,1982-1984 + + + + + 199 + 2 + Job 577, Milwaukee, WI, Claim,1983 + + + + + 199 + 3 + Job 577, Milwaukee, WI, Claim,1984 + + + + + 199 + 4 + Job 577, Milwaukee, WI, Claim, List of Exhibits,1982-1984 + + + + + 199 + 5 + Job 577, Milwaukee, WI, Contract and Estimate, 1 of 2,1982-1984 + + + + + 199 + 6 + Job 577, Milwaukee, WI, Contract and Estimate, 2 of 2,1982-1984 + + + + + + 199 + 7 + Job 577, Milwaukee, WI, Drawings,1983 + + + + + + 200 + 1 + Job 577, Milwaukee, WI, Photographs,undated + + + + + + 200 + 2 + Job 577, Milwaukee, WI, Photographs,1920s + + + + + + 200 + 3 + Medusa Challenger (Ship), Photograph,undated + + + + + + 200 + 4 + Job 578, Put – In – Bay, OH, 1 of 2,1982-1983 + + + + + 200 + 5 + Job 578, Put – In – Bay, OH, 2 of 2,1982-1983 + + + + + + 200 + 6 + Job 578, Put – In – Bay, OH, Blue – line Drawings,1982 + + + + + + 200 + 7 + Job 578, Put – In – Bay, OH, Contract Correspondence and Estimate,1982 + + + + + + 200 + 8 + Job 578, Put – In – Bay, OH, Photographs,1982 + + + + + + 200 + 9 + Job 579, Chicago, IL,1982 + + + + + + 200 + 10 + Job 580, Manitowoc, WI,1982 + + + + + + 201 + 1 + Job 580, Manitowoc, WI, Bid and Estimate,1982 + + + + + 201 + 2 + Job 581, Frankfort, 1 of 2,1982-1983 + + + + + 201 + 3 + Job 581, Frankfort, 2 of 2,1982-1983 + + + + + 201 + 4 + Job 581, Frankfort, Bid and Estimate,1982 + + + + + 201 + 5 + Job 581, Frankfort, Blue – line Drawings,1982 + + + + + 201 + 6 + Job 581, Frankfort, Photographs,1982-1983 + + + + + + 202 + 1 + Job 582, Sheboygan, WI,1981-1984 + + + + + + 202 + 2 + Job 582, Sheboygan, WI, Contract and Estimate,1982 + + + + + + 202 + 3 + Job 582, Sheboygan, WI, Correspondence,1982-1983 + + + + + + 202 + 4 + Job 582, Sheboygan, WI, Drawings,1983 + + + + + + 202 + 5 + Job 582, Sheboygan, WI, Photographs,undated + + + + + + 202 + 6 + Job 582, Sheboygan, WI, Progressive Fabricators Inc. Correspondence1982-1983 + + + + + + 202 + 7 + Job 583, Lakewood, OH,1982 + + + + + + 203 + 1 + Job 584, Frankfort,1982-1983 + + + + + + 203 + 2 + Job 584, Frankfort, Drawings,1982 + + + + + 203 + 3 + Job 585, Lorain, OH,1982 + + + + + + 203 + 4 + Job, 586, Catawba, OH,1982 + + + + + + 203 + 5 + Job, 586, Catawba, OH, Bid,1982 + + + + + 203 + 6 + Job, 586, Catawba, OH, Drawings,1982 + + + + + 203 + 7 + Job 587, Lorain, OH,1983 + + + + + 203 + 8 + Job 587, Lorain, OH, Bid, Estimate and Contract,1983 + + + + + + 204 + 1 + Job 588, Toledo, OH,1983 + + + + + + 204 + 2 + Job 588, Toledo, OH, Contract and Estimate,1983 + + + + + + 204 + 3 + Job 588, Toledo, OH, Drawings,1983 + + + + + + 204 + 4 + Job 589, Milwaukee, WI,1983 + + + + + + 204 + 5 + Job 590, Sandusky, OH,1982 – 1984 + + + + + + 204 + 6 + Job 590, Sandusky, OH, Bid,1983 + + + + + + 204 + 7 + Job 590, Sandusky, OH, Contract Correspondence,1983-1985 + + + + + 205 + 1 + Job 590, Sandusky, OH, Correspondence,1983 + + + + + 205 + 2 + Job 590, Sandusky, OH, Correspondence,January – July, 1984 + + + + + 205 + 3 + Job 590, Sandusky, OH, Correspondence,August – December, 1984 + + + + + 205 + 4 + Job 590, Sandusky, OH, Correspondence,1985 + + + + + 205 + 5 + Job 590, Sandusky, OH, Drawings and Maps,1983 – 1984 + + + + + 206 + 1 + Job 590, Sandusky, OH, Estimate,1983 – 1985 + + + + + + 206 + 2 + Job 590, Sandusky, OH, Feick Contractors Correspondence,1984 – 1985 + + + + + + 206 + 3 + Job 590, Sandusky, OH, Receipts, 1 of 2,1983 – 1985 + + + + + + 206 + 4 + Job 590, Sandusky, OH, Receipts, 2 of 2,1983 – 1985 + + + + + 206 + 5 + Job 591, Harrisville,1983 – 1984 + + + + + + 206 + 6 + Job 591, Harrisville, Bid and Estimate,1983 – 1985 + + + + + + 207 + 1 + Job 591, Harrisville, Drawings,1983 + + + + + + 207 + 2 + Job 591, Harrisville, Photographs,1984 + + + + + + 207 + 3 + Job 592, South Manitou Island,1983-1984 + + + + + 207 + 4 + Job 592, South Manitou Island, Contract and Estimate,1983 + + + + + 207 + 5 + Job 592, South Manitou Island, Photographs,1983 + + + + + 207 + 6 + Job 593, Milwaukee, WI,1983 + + + + + 207 + 7 + Job 593, Milwaukee, WI, Bid, Contract and Estimate,1983 + + + + + + 207 + 8 + Job 593, Milwaukee, WI, Bid, Correspondence,1983 + + + + + + 208 + 1 + Job 594, Dunkirk, NY,1983 + + + + + 208 + 2 + Job 595, Mouillee,1983-1984 + + + + + 208 + 3 + Job 595, Mouillee, Bid, Estimate and Contract,1983 + + + + + 208 + 4 + Job 595, Mouillee, Drawings,1983 + + + + + 208 + 5 + Job 596, Lake City, MN,1983-1984 + + + + + + 208 + 6 + Job 596, Lake City, MN, Contract,1983-1984 + + + + + + 209 + 1 + Job 596, Lake City, MN, Correspondence,1983-1984 + + + + + 209 + 2 + Job 596, Lake City, MN, Estimate,1983-1984 + + + + + + 209 + 3 + Job 596, Lake City, MN, Receipts,1983-1984 + + + + + 209 + 4 + Job 596, Lake City, MN, Specifications,1983 + + + + + 209 + 5 + Job 597, Lansing, IA,1983-1984 + + + + + 209 + 6 + Job 597, Lansing, IA, Contract,1983 + + + + + 209 + 7 + Job 597, Lansing, IA, Correspondence,1983-1984 + + + + + 209 + 8 + Job 597, Lansing, IA, Estimate,1983-1984 + + + + + + 210 + 1 + Job 597, Lansing, IA, Plans and Specifications,1983 + + + + + 210 + 2 + Job 597, Lansing, IA, Receipts,1983-1984 + + + + + + 210 + 3 + Job 598, Frankfort,1983 + + + + + 210 + 4 + Job 599, Toledo, OH,1983 + + + + + 210 + 5 + Job 599, Toledo, OH, Contracts,1983 + + + + + 210 + 6 + Job 599, Toledo, OH, Estimate and Receipts,1983 + + + + + 210 + 7 + Job 599, Toledo, OH, Plans and Specifications,1984 + + + + + 210 + 8 + Job 600, Chicago, IL,1984 + + + + + + 210 + 9 + Job 600, Chicago, IL, Blue - line Drawings,1984 + + + + + + 210 + 10 + Job 600, Chicago, IL, Contract,1984 + + + + + + 211 + 1 + Job 600, Chicago, IL, Correspondence,1984 + + + + + 211 + 2 + Job 600, Chicago, IL, Estimate,1984 + + + + + 211 + 3 + Job 600, Chicago, IL, Specifications,1984 + + + + + + 211 + 4 + Job 601, Frankfort,1984 + + + + + + 211 + 5 + Job 602, St. Joseph,1984 + + + + + + 211 + 6 + Job 602, St. Joseph, Blue – line Drawings,1984 + + + + + + 211 + 7 + Job 602, St. Joseph, Contract,1984 + + + + + + 212 + 1 + Job 602, St. Joseph, Correspondence,1984 + + + + + 212 + 2 + Job 602, St. Joseph, Estimate,1984 + + + + + 212 + 3 + Job 602, St. Joseph, Specifications,1984 + + + + + + 212 + 4 + Job 603, Milwaukee, WI,1984 + + + + + + 212 + 5 + Job 603, Milwaukee, WI, Estimate and Receipts,1984 + + + + + 212 + 6 + Job 604, Frankfort,1984 + + + + + 212 + 7 + Job 605, Ashtabula, OH,1984 + + + + + + 212 + 8 + Job 605, Ashtabula, OH, Drawings,1984 + + + + + + 213 + 1 + Job 606, Green Bay, WI,1984 + + + + + + 213 + 2 + Job 606, Green Bay, WI, Bid and Estimate,1984 + + + + + 213 + 3 + Job 606, Green Bay, WI, Drawings,1984 + + + + + + 213 + 4 + Job 607, Calumet, IL,1984 + + + + + + 213 + 5 + Job 607, Calumet, IL, Bid and Estimate,1984 + + + + + + 213 + 6 + Job 607, Calumet, IL, Drawings,1984 + + + + + + 213 + 7 + Job 607, Calumet, IL, Specifications,1984 + + + + + + 213 + 8 + Job 608, Irondequoit, NY,1984-1986 + + + + + + 214 + 1 + Job 608, Irondequoit, NY, Bid Invitation,1984 + + + + + 214 + 2 + Job 608, Irondequoit, NY, Claim #1, 1 of 2,1985-1986 + + + + + 214 + 3 + Job 608, Irondequoit, NY, Claim #1, 2 of 2,1985-1986 + + + + + 214 + 4 + Job 608, Irondequoit, NY, Claim #1, Backup Information,1985-1986 + + + + + + 214 + 5 + Job 608, Irondequoit, NY, Claim #2,1986-1987 + + + + + + 214 + 6 + Job 608, Irondequoit, NY, Claim #2, Backup Information,1986-1987 + + + + + 214 + 7 + Job 608, Irondequoit, NY, Contract,1984 + + + + + + 215 + 1 + Job 608, Irondequoit, NY, Contract Correspondence,1984-1986 + + + + + + 215 + 2 + Job 608, Irondequoit, NY, Contract Modifications,1984 + + + + + 215 + 3 + Job 608, Irondequoit, NY, Correspondence,1984 + + + + + 215 + 4 + Job 608, Irondequoit, NY, Correspondence,1985 + + + + + 215 + 5 + Job 608, Irondequoit, NY, Correspondence,1986-1987 + + + + + 215 + 6 + Job 608, Irondequoit, NY, Drawings, 1 of 2,1984-1986 + + + + + + 215 + 7 + Job 608, Irondequoit, NY, Drawings, 2 of 2,1984-1986 + + + + + + 216 + 1 + Job 608, Irondequoit, NY, Estimate,1984-1986 + + + + + + 216 + 2 + Job 608, Irondequoit, NY, Negatives,1984 + + + + + 216 + 3 + Job 608, Irondequoit, NY, Newspaper Clippings,1984-1986 + + + + + 216 + 4 + Job 608, Irondequoit, NY, Newspaper Clippings,Undated + + + + + + 216 + 5 + Job 608, Irondequoit, NY, Orders,1984-1986 + + + + + + 216 + 6 + Job 608, Irondequoit, NY, Payment Estimates,1984-1987 + + + + + + 216 + 7 + Job 608, Irondequoit, NY, Photographs,1984-1985 + + + + + 216 + 8 + Job 608, Irondequoit, NY, Protest Signs,1985 + + + + + 216 + 9 + Job 608, Irondequoit, NY, Specifications,1985 + + + + + 216 + 10 + Job 609, Sheboygan, WI,1984 + + + + + 216 + 11 + Job 609, Sheboygan, WI, Blue – line Drawings,1984 + + + + + 216 + 12 + Job 609, Sheboygan, WI, Receipts,1984 + + + + + + 217 + 1 + Job 610, Alton, IL,1984 + + + + + 217 + 2 + Job 610, Alton, IL, Blue – line Drawings,1984 + + + + + 217 + 3 + Job 610, Alton, IL, Contract,1984 + + + + + 217 + 4 + Job 610, Alton, IL, Estimate,1984 + + + + + 217 + 5 + Job 610, Alton, IL, Receipts,1984 + + + + + 217 + 6 + Job 610, Alton, IL, Specifications,1984 + + + + + + 217 + 7 + Job 611, Barcelona, NY,1984 + + + + + 217 + 8 + Job 611, Barcelona, NY, Blue – line Drawings,1984 + + + + + 217 + 9 + Job 611, Barcelona, NY, Canonie Transportation Correspondence, 1 of 2,1984 + + + + + 218 + 1 + Job 611, Barcelona, NY, Canonie Transportation Correspondence, 2 of 2,1984 + + + + + 218 + 2 + Job 611, Barcelona, NY, Canonie Transportation Correspondence, List of Exhibits,1984 + + + + + + 218 + 3 + Job 611, Barcelona, NY, Contract,1984 + + + + + + 218 + 4 + Job 611, Barcelona, NY, Correspondence,1984 + + + + + + 218 + 5 + Job 611, Barcelona, NY, Estimate and Receipts,1984 + + + + + 218 + 6 + Job 611, Barcelona, NY, Orders,1984 + + + + + + 218 + 7 + Job 612, Milwaukee, WI,1986 + + + + + + 218 + 8 + Job 613, Fairport, OH,1984 + + + + + + 219 + 1 + Job 614, Ogdensburg, NY,1984-1985 + + + + + + 219 + 2 + Job 614, Ogdensburg, NY, Blue – line Drawings,1984 + + + + + + 219 + 3 + Job 614, Ogdensburg, NY, Contract,1984-1985 + + + + + + 219 + 4 + Job 615, Muskegon,1984-1987 + + + + + + 219 + 5 + Job 615, Muskegon, Bethlehem Steel Correspondence,1985 + + + + + + 219 + 6 + Job 615, Muskegon, Blue – line Drawings, 1 of 2,1984 + + + + + + 219 + 7 + Job 615, Muskegon, Blue – line Drawings, 2 of 2,1984 + + + + + + 220 + 1 + Job 615, Muskegon, Contract Correspondence,1984-1988 + + + + + + 220 + 2 + Job 615, Muskegon, Contract Modifications, 1 of 2,1984-1987 + + + + + + 220 + 3 + Job 615, Muskegon, Contract Modifications, 2 of 2,1984-1987 + + + + + 220 + 4 + Job 615, Muskegon, Correspondence, 1 of 3,1984-1987 + + + + + 220 + 5 + Job 615, Muskegon, Correspondence, 2 of 3,1984-1987 + + + + + + 220 + 6 + Job 615, Muskegon, Correspondence, 3 of 3,1984-1987 + + + + + + 221 + 1 + Job 615, Muskegon, Estimate,1984-1988 + + + + + + 221 + 2 + Job 615, Muskegon, Orders, 1 of 2,1984-1986 + + + + + + 221 + 3 + Job 615, Muskegon, Orders, 2 of 2,1984-1986 + + + + + + 221 + 4 + Job 615, Muskegon, Payment Estimate, 1 of 2,1984-1987 + + + + + + 221 + 5 + Job 615, Muskegon, Payment Estimate, 2 of 2,1984-1987 + + + + + + 221 + 6 + Job 615, Muskegon, Photographs,1985 + + + + + 221 + 7 + Job 615, Muskegon, Quality Assurance Reports,1985 + + + + + 221 + 8 + Job 615, Muskegon, Specifications,1984 + + + + + + 222 + 1 + Job 617, Manitowoc, WI,1984 + + + + + 222 + 2 + Job 618, Hammond, IN,1985 + + + + + + 222 + 3 + Job 618, Hammond, IN, Receipts, Contract and Estimate,1985 + + + + + + 222 + 4 + Job 618, Hammond, IN, Specifications and Drawings,1985 + + + + + + 222 + 5 + Job 619, Holland,1985 + + + + + 222 + 6 + Job 619, Holland, Bid,1985 + + + + + + 222 + 7 + Job 619, Holland, Blue – line Drawings,1985 + + + + + + 222 + 8 + Job 619, Holland, Contract, Receipts and Estimate,1985 + + + + + + 222 + 9 + Job 620, Grand Haven,1985 + + + + + + 222 + 10 + Job 620, Grand Haven, Bid,1985 + + + + + + 223 + 1 + Job 620, Grand Haven, Contract, Receipts, and Estimate,1985 + + + + + + 223 + 2 + Job 620, Grand Haven, Marine Accidents, 1 of 2,1985 + + + + + 223 + 3 + Job 620, Grand Haven, Marine Accidents, 2 of 2,1985 + + + + + 223 + 4 + Job 621, Alpena,1985 + + + + + + 223 + 5 + Job 621, Alpena, Bid,1985 + + + + + 223 + 6 + Job 621, Alpena, Contract, Receipts and Estimate,1985 + + + + + + 223 + 7 + Job 621, Alpena, Drawings,1985 + + + + + + 223 + 8 + Job 622, Chicago, IL,1985 + + + + + + 224 + 1 + Job 622, Chicago, IL, Bid,1985 + + + + + + 224 + 2 + Job 622, Chicago, IL, Contract, Receipts, and Estimate,1985 + + + + + + 224 + 3 + Job 622, Chicago, IL, Drawings,1985 + + + + + + 224 + 4 + Job 623, Frankfort,1985 + + + + + + 224 + 5 + Job 623, Frankfort, Drawings,1985 + + + + + + 224 + 6 + Job 624, Au Gres,1985 + + + + + + 224 + 7 + Job 624, Au Gres, Bid, Estimate and Orders,1985 + + + + + + 225 + 1 + Job 624, Au Gres, Blue – line Drawings,1985 + + + + + + 225 + 2 + Job 624, Au Gres, Contract Correspondence,1985 + + + + + 225 + 3 + Job 624, Au Gres, Correspondence, 1 of 2,1985 + + + + + + 225 + 4 + Job 624, Au Gres, Correspondence, 2 of 2,1985 + + + + + + 225 + 5 + Job 624, Au Gres, Drawings,1985 + + + + + + 225 + 6 + Job 624, Au Gres, Receipts,1985 + + + + + + 225 + 7 + Job 624, Au Gres, Yacht Club Correspondence, 1 of 3,1987-1992 + + + + + 226 + 1 + Job 624, Au Gres, Yacht Club Correspondence, 2 of 3,1987-1992 + + + + + + 226 + 2 + Job 624, Au Gres, Yacht Club Correspondence, 3 of 3,1987-1992 + + + + + + 226 + 3 + Job 625, Ontonagon,1985 + + + + + + 226 + 4 + Job 625, Ontonagon, Bid,1985 + + + + + 226 + 5 + Job 625, Ontonagon, Contract, Receipts and Estimate,1985 + + + + + 226 + 6 + Job 626, Holland,1985 + + + + + + 226 + 7 + Job 627, Waukegan, IL,1985 + + + + + + 226 + 8 + Job 627, Waukegan, IL, Contract Correspondence,1985 + + + + + + 227 + 1 + Job 627, Waukegan, IL, Specifications and Blue – line Drawings,1985 + + + + + + 227 + 2 + Job 628, Lorain, OH,1985 + + + + + + 227 + 3 + Job 628, Lorain, OH, Bid and Estimate,1985 + + + + + + 227 + 4 + Job 628, Lorain, OH, Claims, 1 of 2,1985-1987 + + + + + + 227 + 5 + Job 628, Lorain, OH, Claims, 2 of 2,1985-1987 + + + + + 227 + 6 + Job 628, Lorain, OH, Contract Correspondence,1986-1987 + + + + + + 227 + 7 + Job 628, Lorain, OH, Correspondence, 1 of 3,1986-1987 + + + + + + 228 + 1 + Job 628, Lorain, OH, Correspondence, 2 of 3,1986-1987 + + + + + + 228 + 2 + Job 628, Lorain, OH, Correspondence, 3 of 3,1986-1987 + + + + + + 228 + 3 + Job 628, Lorain, OH, Drawings,1984-1986 + + + + + 228 + 4 + Job 628, Lorain, OH, Orders and Receipts,1986 + + + + + + 228 + 5 + Job 628, Lorain, OH, Price Brothers Correspondence,1986-1988 + + + + + + 228 + 6 + Job 628, Lorain, OH, Specifications,1984 – 1985 + + + + + + 229 + 1 + Job 629, Green Bay, WI,1985 – 1986 + + + + + + 229 + 2 + Job 629, Green Bay, WI, Contract, 1 of 2,1985 – 1986 + + + + + + 229 + 3 + Job 629, Green Bay, WI, Contract, 2 of 2,1985 – 1986 + + + + + + 229 + 4 + Job 629, Green Bay, WI, Contract Performance,1985 – 1986 + + + + + + 229 + 5 + Job 630, White Lake,1985 – 1986 + + + + + 229 + 6 + Job 630, White Lake, Contract,1985 – 1986 + + + + + + 229 + 7 + Job 630, White Lake, Drawings,1985 – 1986 + + + + + + 230 + 1 + Job 631, Frankfort,1985 – 1986 + + + + + + 230 + 2 + Job 632, Frankfort,1986 + + + + + + 230 + 3 + Job 633, Green Bay, WI,1985-1986 + + + + + 230 + 4 + Job 634, Racine, WI,1985-1987 + + + + + 230 + 5 + Job 634, Racine, WI, Bid and Estimate,1986 + + + + + + 230 + 6 + Job 634, Racine, WI, Claim, 1 of 2,1986 – 1989 + + + + + + 231 + 1 + Job 634, Racine, WI, Claim, 2 of 2,1986 – 1989 + + + + + + 231 + 2 + Job 634, Racine, WI, Correspondence, 1 of 2,1986 – 1987 + + + + + + 231 + 3 + Job 634, Racine, WI, Correspondence, 2 of 2,1986 – 1987 + + + + + + 231 + 4 + Job 634, Racine, WI, Contract,1985 – 1986 + + + + + 231 + 5 + Job 634, Racine, WI, Drawings,1986 + + + + + + 231 + 6 + Job 634, Racine, WI, Negatives,Undated + + + + + + 232 + 1 + Job 634, Racine, WI, Newspaper Clippings,1986 + + + + + + 232 + 2 + Job 634, Racine, WI, Photographs,1986 + + + + + + 232 + 3 + Job 634, Racine, WI, Schooner Rosabelle History,1986 + + + + + + 232 + 4 + Job 634, Racine, WI, Specifications,1985 + + + + + + 232 + 5 + Job 635, Manistee,1986 + + + + + + 232 + 6 + Job 635, Manistee, Bid,1986 + + + + + + 232 + 7 + Job 635, Manistee, Contract, Estimate and Receipts,1986 + + + + + + 232 + 8 + Job 635, Manistee, Drawings,1986 + + + + + + 232 + 9 + Job 636, Toledo, OH,1986 + + + + + + 232 + 10 + Job 636, Toledo, OH, Blue – line Drawings, 1 of 2,1986 + + + + + + 233 + 1 + Job 636, Toledo, OH, Blue – line Drawings, 2 of 2,1986 + + + + + + 233 + 2 + Job 636, Toledo, OH, Correspondence, 1 of 2,1986 + + + + + + 233 + 3 + Job 636, Toledo, OH, Correspondence, 2 of 2,1986 + + + + + + 233 + 4 + Job 636, Toledo, OH, Contract, Orders and Receipts,1986 + + + + + 233 + 5 + Job 636, Toledo, OH, Specifications, 1 of 2,1986 + + + + + 233 + 6 + Job 636, Toledo, OH, Specifications, 2 of 2,1986 + + + + + 233 + 7 + Job 637, Arcadia,1986 + + + + + + 233 + 8 + Job 637, Arcadia, Blue – line Drawings, 1 of 2,1986 + + + + + 234 + 1 + Job 637, Arcadia, Blue – line Drawings, 2 of 2,1986 + + + + + + 234 + 2 + Job 637, Arcadia, Contract, Orders and Receipts,1986 + + + + + 234 + 3 + Job 637, Arcadia, Correspondence, 1 of 2,1986 + + + + + 234 + 4 + Job 637, Arcadia, Correspondence, 2 of 2,1986 + + + + + 234 + 5 + Job 637, Arcadia, Drawings,1986 + + + + + 234 + 6 + Job 637, Arcadia, Estimate,1986 + + + + + + 234 + 7 + Job 638, Manistee,1986 + + + + + + 234 + 8 + Job 638, Manistee, Bid and Estimate,1986 + + + + + + 235 + 1 + Job 638, Manistee, Blue – line Drawings, 1 of 2,1986 + + + + + + 235 + 2 + Job 638, Manistee, Blue – line Drawings, 2 of 2,1986 + + + + + + 235 + 3 + Job 638, Manistee, Contract Correspondence,1986-1987 + + + + + + 235 + 4 + Job 638, Manistee, Orders and Receipts,1986-1987 + + + + + + 235 + 5 + Job 639, Cleveland, OH,1986 + + + + + + 235 + 6 + Job 639, Cleveland, OH, Blue – line Drawings, 1 of 2,1986 + + + + + + 235 + 7 + Job 639, Cleveland, OH, Blue – line Drawings, 2 of 2,1986 + + + + + 235 + 8 + Job 639, Cleveland, OH, Contract,1986 + + + + + + 236 + 1 + Job 639, Cleveland, OH, Correspondence, 1 of 3,1986 + + + + + + 236 + 2 + Job 639, Cleveland, OH, Correspondence, 2 of 3,1986 + + + + + + 236 + 3 + Job 639, Cleveland, OH, Correspondence, 3 of 3,1986 + + + + + + 236 + 4 + Job 639, Cleveland, OH, Estimate,1986 + + + + + + 236 + 5 + Job 639, Cleveland, OH, Orders, 1 of 2,1986 + + + + + + 236 + 6 + Job 639, Cleveland, OH, Orders, 2 of 2,1986 + + + + + + 236 + 7 + Job 639, Cleveland, OH, Photographs,1986 + + + + + + 237 + 1 + Job 639, Cleveland, OH, Specifications,1986 + + + + + + 237 + 2 + Job 640, Lorain, OH,1986-1987 + + + + + + 237 + 3 + Job 640, Lorain, OH, Bid,1986 + + + + + 237 + 4 + Job 640, Lorain, OH, Blue – line Drawings,1986 + + + + + 237 + 5 + Job 640, Lorain, OH, Contract,1986 + + + + + 237 + 6 + Job 640, Lorain, OH, Correspondence, 1 of 2,1986-1987 + + + + + + 238 + 1 + Job 640, Lorain, OH, Correspondence, 2 of 2,1986-1987 + + + + + + 238 + 2 + Job 640, Lorain, OH, Estimate,1986 + + + + + + 238 + 3 + Job 640, Lorain, OH, Orders and Receipts,1986 + + + + + + 238 + 4 + Job 641, Buffalo, NY,1986-1987 + + + + + + 238 + 5 + Job 641, Buffalo, NY, Bid,1986 + + + + + + 238 + 6 + Job 641, Buffalo, NY, Blue – line Drawings, 1 of 2,1986 + + + + + + 238 + 7 + Job 641, Buffalo, NY, Blue – line Drawings, 2 of 2,1986 + + + + + + 238 + 7 + Job 641, Buffalo, NY, Claim, Hillyer and Irwin, 1 of 4,1987-1988 + + + + + + 239 + 1 + Job 641, Buffalo, NY, Claim, Hillyer and Irwin, 2 of 4,1987-1988 + + + + + 239 + 2 + Job 641, Buffalo, NY, Claim, Hillyer and Irwin, 3 of 4,1987-1988 + + + + + 239 + 3 + Job 641, Buffalo, NY, Claim, Hillyer and Irwin, 4 of 4,1987-1988 + + + + + + 239 + 4 + Job 641, Buffalo, NY, Contract, Orders and Receipts,1986 + + + + + + 239 + 5 + Job 641, Buffalo, NY, Correspondence and Estimate,1986-1987 + + + + + + 239 + 6 + Job 641, Buffalo, NY, Drawings,1986 + + + + + + 240 + 1 + Job 641, Buffalo, NY, List of Exhibits,1987 + + + + + + 240 + 2 + Job 642, U.S. District Court vs. Luedtke, Appendix A, 1 of 3,1997 + + + + + + 240 + 3 + Job 642, U.S. District Court vs. Luedtke, Appendix A, 2 of 3,1997 + + + + + + 240 + 4 + Job 642, U.S. District Court vs. Luedtke, Appendix A, 3 of 3,1997 + + + + + + 240 + 5 + Job 642, U.S. District Court vs. Luedtke, Correspondence,1988-1991 + + + + + + 240 + 6 + Job 642, U.S. District Court vs. Luedtke, Documents,1997 + + + + + + 241 + 1 + Job 642, U.S. District Court vs. Luedtke, Response, Volume 1 of 2,1997 + + + + + + 241 + 2 + Job 642, U.S. District Court vs. Luedtke, Response, Volume 2 of 2,1997 + + + + + + 241 + 3 + Job 643, Grassy Island,1986-1987 + + + + + + 241 + 4 + Job 643, Grassy Island, Bid,1986 + + + + + + 241 + 5 + Job 643, Grassy Island, Blue – line Drawings, 1 of 2,1986 + + + + + + 241 + 6 + Job 643, Grassy Island, Blue – line Drawings, 2 of 2,1986 + + + + + + 242 + 1 + Job 643, Grassy Island, Claim and Estimate,1987-1988 + + + + + + 242 + 2 + Job 643, Grassy Island, Contract,1987 + + + + + + 242 + 3 + Job 643, Grassy Island, Correspondence,1986-1987 + + + + + + 242 + 4 + Job 643, Grassy Island, List of Exhibits,1988 + + + + + + 242 + 5 + Job 643, Grassy Island, Orders and Receipts,1986-1987 + + + + + + 242 + 6 + Job 643, Grassy Island, Photographs,1986-1987 + + + + + + 243 + 1 + Job 644, Milwaukee, WI,1986-1987 + + + + + + 243 + 2 + Job 644, Milwaukee, WI, Bid and Estimate,1986-1987 + + + + + 243 + 3 + Job 644, Milwaukee, WI, Contract,1986-1987 + + + + + + 243 + 4 + Job 644, Milwaukee, WI, Drawings,1986-1987 + + + + + 243 + 5 + Job 644, Milwaukee, WI, Photographs,undated + + + + + + 243 + 6 + Job 644, Milwaukee, WI, Prepakt Concrete Correspondence,1986 + + + + + + 243 + 7 + Job 644, Milwaukee, WI, Negatives,undated + + + + + + 244 + 1 + Job 644, Milwaukee, WI, Newspaper Clippings,1986 + + + + + 244 + 2 + Job 644, Milwaukee, WI, Photographs of Interest,1986 + + + + + + 244 + 3 + Job 644, Milwaukee, WI, Specifications,undated + + + + + + 244 + 4 + Job 644, Milwaukee, WI, Tug and Barge Rental,1987 + + + + + 244 + 5 + Job 645, Frankfort,1986-1987 + + + + + + 244 + 6 + Job 646, Frankfort,1987-1988 + + + + + 244 + 7 + Job 647, Kewaunee, WI,1987 + + + + + 244 + 8 + Job 648, Arcadia,1987 + + + + + + 244 + 9 + Job 649, Manitou Island,1986-1987 + + + + + + 245 + 1 + Job 649, Manitou Island, Blue – line Drawings,1986-1987 + + + + + + 245 + 2 + Job 650, Harrisville,1987 + + + + + + 245 + 3 + Job 651, Saginaw, 1 of 2,1987-1988 + + + + + + 245 + 4 + Job 651, Saginaw, 2 of 2,1987-1988 + + + + + + 245 + 5 + Job 651, Saginaw, Contract,1987 + + + + + + 245 + 6 + Job 652, Allendale,1987-1988 + + + + + + 246 + 1 + Job 652, Allendale, Contract,1987 + + + + + + 246 + 2 + Job 653, Avon Lake, OH,1987 + + + + + + 246 + 3 + Job 653, Avon Lake, OH, Contract,1987 + + + + + + 246 + 4 + Job 653, Avon Lake, OH, Drawings,1987 + + + + + + 246 + 5 + Job 653, Avon Lake, OH, Photographs,undated + + + + + + 246 + 6 + Job 654, Elberta,1987-1988 + + + + + + 246 + 7 + Job 655, Cleveland, OH,1987 + + + + + + 247 + 1 + Job 656, Lakeside Marblehead, OH,1987 + + + + + + 247 + 2 + Job 656, Lakeside Marblehead, OH, Contract,1987 + + + + + + 247 + 3 + Job 657, Green Bay, WI,1987 + + + + + + 247 + 4 + Job 657, Green Bay, WI, Bid,1987 + + + + + + 247 + 5 + Job 657, Green Bay, WI, Blue – line Drawings,1987-1988 + + + + + + 247 + 6 + Job 657, Green Bay, WI, Claim, 1 of 4,1987-1989 + + + + + + 248 + 1 + Job 657, Green Bay, WI, Claim, 2 of 4,1987-1989 + + + + + 248 + 2 + Job 657, Green Bay, WI, Claim, 3 of 4,1987-1989 + + + + + + 248 + 3 + Job 657, Green Bay, WI, Claim, 4 of 4,1987-1989 + + + + + 248 + 4 + Job 657, Green Bay, WI, Correspondence, 1 of 4,1987-1988 + + + + + + 248 + 5 + Job 657, Green Bay, WI, Correspondence, 2 of 4,1987-1988 + + + + + + 249 + 1 + Job 657, Green Bay, WI, Correspondence, 3 of 4,1987-1988 + + + + + + 249 + 2 + Job 657, Green Bay, WI, Correspondence, 4 of 4,1987-1988 + + + + + + 249 + 3 + Job 657, Green Bay, WI, Equitable Adjustment Claim,1988 + + + + + + 249 + 4 + Job 657, Green Bay, WI, Equitable Adjustment Claim Correspondence, 1 of 2,1987-1988 + + + + + + 249 + 5 + Job 657, Green Bay, WI, Equitable Adjustment Claim Correspondence, 2 of 2,1987-1988 + + + + + + 249 + 6 + Job 657, Green Bay, WI, Griffin, Cochrane, Marshall and Elger Correspondence, 1 of 5,1987-1988 + + + + + + 250 + 1 + Job 657, Green Bay, WI, Griffin, Cochrane, Marshall and Elger Correspondence, 2 of 5,1987-1988 + + + + + + 250 + 2 + Job 657, Green Bay, WI, Griffin, Cochrane, Marshall and Elger Correspondence, 3 of 5,1987-1988 + + + + + 250 + 3 + Job 657, Green Bay, WI, Griffin, Cochrane, Marshall and Elger Correspondence, 4 of 5,1987-1988 + + + + + + 250 + 4 + Job 657, Green Bay, WI, Griffin, Cochrane, Marshall and Elger Correspondence, 5 of 5,1987-1988 + + + + + + 250 + 5 + Job 657, Green Bay, WI, Receipts and Estimate,1987-1990 + + + + + + 250 + 6 + Job 658, Kewaunee, WI,1987-1988 + + + + + + 251 + 1 + Job 658, Kewaunee, WI, Blue – line Drawings,1987 + + + + + + 251 + 2 + Job 658, Kewaunee, WI, Bid and Estimate,1987-1988 + + + + + 251 + 3 + Job 658, Kewaunee, WI, Contract,1987-1988 + + + + + 251 + 4 + Job 658, Kewaunee, WI, Interest Claim,1987-1988 + + + + + + 251 + 5 + Job 658, Kewaunee, WI, Photographs,undated + + + + + + 251 + 6 + Job 659, Saginaw,1987-1988 + + + + + + 251 + 7 + Job 659, Saginaw, Contract,1987-1988 + + + + + + 252 + 1 + Job 659, Saginaw, Estimate,1987-1988 + + + + + + 252 + 2 + Job 659, Saginaw, Photographs,undated + + + + + + 252 + 3 + Job 660, Bay City,1987-1988 + + + + + + 252 + 4 + Job 660, Bay City, Contract,1987 + + + + + 252 + 5 + Job 661, Detroit, 1 of 2,1987-1989 + + + + + + 252 + 6 + Job 661, Detroit, 2 of 2,1987-1989 + + + + + 252 + 7 + Job 661, Detroit, Contract,1987-1988 + + + + + + 252 + 8 + Job 661, Detroit, Drawings,1987 + + + + + + 252 + 9 + Job 661, Detroit, Estimate,1987 + + + + + + 253 + 1 + Job 662, Frankfort,1987-1988 + + + + + + 253 + 2 + Job 663, Monroe,1988 + + + + + + 253 + 3 + Job 663, Monroe, Bid,1987 + + + + + + 253 + 4 + Job 663, Monroe, Blue – line Drawings,1987 + + + + + + 253 + 5 + Job 663, Monroe, Contract,1988 + + + + + + 253 + 6 + Job 663, Monroe, Photographs,1988 + + + + + + 253 + 7 + Job 663, Monroe, Receipts and Estimate,1988 + + + + + + 253 + 8 + Job 664, Milwaukee, WI,1988-1991 + + + + + + 253 + 9 + Job 664, Milwaukee, WI, Bid and Estimate,1988 + + + + + + 254 + 1 + Job 664, Milwaukee, WI, Claim,1988-1990 + + + + + + 254 + 2 + Job 664, Milwaukee, WI, Contract, Volume 1 of 2,1987 + + + + + + 254 + 3 + Job 664, Milwaukee, WI, Contract, Volume 2 of 2,1987 + + + + + + 254 + 4 + Job 664, Milwaukee, WI, Correspondence,1988-1994 + + + + + + 254 + 5 + Job 664, Milwaukee, WI, Photographs, 1 of 2,1988-1990 + + + + + + 254 + 6 + Job 664, Milwaukee, WI, Photographs, 2 of 2,1988-1990 + + + + + + 255 + 1 + Job 664, Milwaukee, WI, Receipts,1988-1991 + + + + + + 255 + 2 + Job 665, Frankfort,1988 + + + + + + 255 + 3 + Job 666, Evans, NY,1988 + + + + + + 255 + 4 + Job 666, Evans, NY, Blue – line Drawings, 1 of 2,1987 + + + + + + 255 + 5 + Job 666, Evans, NY, Blue – line Drawings, 2 of 2,1987 + + + + + + 256 + 1 + Job 666, Evans, NY, Contract,1988 + + + + + + 256 + 2 + Job 666, Evans, NY, Negatives,undated + + + + + + 256 + 3 + Job 666, Evans, NY, Orders and Estimate,1988 + + + + + + 256 + 4 + Job 666, Evans, NY, Photographs,1988 + + + + + + 256 + 5 + Job 666, Evans, NY, Selvick Marine Correspondence, 1 of 2,1988 + + + + + + 256 + 6 + Job 666, Evans, NY, Selvick Marine Correspondence, 2 of 2,1988 + + + + + + 257 + 1 + Job 667, Frankfort,1988-1989 + + + + + + 257 + 2 + Job 668, Gary, IN,1989 + + + + + + 257 + 3 + Job 668, Gary, IN, Contract, Receipts and Estimate,1989 + + + + + + 257 + 4 + Job 668, Gary, IN, Photographs,undated + + + + + + 257 + 5 + Job 669, Waukegan, IL,1988 + + + + + + 257 + 6 + Job 669, Waukegan, IL, Specifications,1988 + + + + + + 257 + 7 + Job 670, Waukegan, IL,1988 + + + + + + 257 + 8 + Job 670, Waukegan, IL, Photographs,1988 + + + + + + 257 + 9 + Job 671, Buffalo, NY,1988 + + + + + + 258 + 1 + Job 671, Buffalo, NY, Blue – line Drawings,1988 + + + + + + 258 + 2 + Job 671, Buffalo, NY, Con Agra Correspondence,1988 + + + + + + 258 + 3 + Job 671, Buffalo, NY, Con Agra Photographs,1988 + + + + + + 258 + 4 + Job 671, Buffalo, NY, Contract,1988 + + + + + + 258 + 5 + Job 671, Buffalo, NY, Correspondence,1988 + + + + + + 258 + 6 + Job 671, Buffalo, NY, Drawings,1988 + + + + + + 258 + 7 + Job 671, Buffalo, NY, Photographs,1988 + + + + + + 258 + 8 + Job 671, Buffalo, NY, Receipts, Estimate and Orders,1988 + + + + + + 258 + 9 + Job 672, Holland, 1 of 2,1988 – 1990 + + + + + + 258 + 10 + Job 672, Holland, 2 of 2,1988 – 1990 + + + + + + 259 + 1 + Job 672, Holland, Bid and Estimate,1988 – 1989 + + + + + + 259 + 2 + Job 672, Holland, Bid Instructions,1988 + + + + + + 259 + 3 + Job 672, Holland, Blue – line Drawings,1988 + + + + + + 259 + 4 + Job 672, Holland, Contract,1988 + + + + + + 259 + 5 + Job 672, Holland, Claim,1988-1989 + + + + + + 259 + 6 + Job 672, Holland, Correspondence, 1 of 2,1988-1989 + + + + + + 260 + 1 + Job 672, Holland, Correspondence, 2 of 2,1988-1989 + + + + + + 260 + 2 + Job 672, Holland, Drawings,1988-1989 + + + + + + 260 + 3 + Job 672, Holland, Orders,1988-1989 + + + + + + 260 + 4 + Job 672, Holland, Payment Estimate,1988-1990 + + + + + + 260 + 5 + Job 672, Holland, Photographs,Undated + + + + + + 260 + 6 + Job 673, Charlevoix,1988-1989 + + + + + + 260 + 7 + Job 673, Charlevoix, Bid and Estimate,1988 + + + + + + 261 + 1 + Job 673, Charlevoix, Bid Instructions,1988 + + + + + + 261 + 2 + Job 673, Charlevoix, Contract,1988-1990 + + + + + + 261 + 3 + Job 673, Charlevoix, Drawings, 1 of 2,1988 + + + + + + 261 + 4 + Job 673, Charlevoix, Drawings, 2 of 2,1988 + + + + + + 261 + 5 + Job 673, Charlevoix, Grout Problem,1990 + + + + + + 261 + 6 + Job 673, Charlevoix, Orders,1988 – 1989 + + + + + + 262 + 1 + Job 673, Charlevoix, Payment Estimate, 1 of 2,1988 – 1989 + + + + + + 262 + 2 + Job 673, Charlevoix, Payment Estimate, 2 of 2,1988 – 1989 + + + + + + 262 + 3 + Job 673, Charlevoix, Photographs,Undated + + + + + + 262 + 4 + Job 674, West Harbor, OH,1988 + + + + + + 262 + 5 + Job 673, Charlevoix, Claims,1988-1989 + + + + + + 262 + 6 + Job 673, Charlevoix, Contracts,1988 + + + + + 262 + 7 + Job 673, Charlevoix, Drawings,1988-1989 + + + + + + 262 + 8 + Job 673, Charlevoix, Receipts and Estimate,1988 + + + + + + 263 + 1 + Job 675, Frankfort,1988 + + + + + + 263 + 2 + Job 675, Frankfort, Correspondence and Estimate,1988 + + + + + + 263 + 3 + Job 675, Frankfort, Drawings,1988 + + + + + + 263 + 4 + Job 675, Frankfort, Specifications,1989 + + + + + + 263 + 5 + Job 676, Erie, PA,1988 + + + + + + 263 + 6 + Job 676, Erie, PA, Contract,1988 + + + + + + 263 + 7 + Job 677, Leland,1989 + + + + + + 263 + 8 + Job 677, Leland, Blue – line Drawings,1988 + + + + + + 263 + 9 + Job 677, Leland, Contract,1988 + + + + + + 264 + 1 + Job 677, Leland, Receipts and Estimate,1988 + + + + + + 264 + 2 + Job 678, Manistee,1989 + + + + + + 264 + 3 + Job 678, Manistee, Bid,1989 + + + + + + 264 + 4 + Job 678, Manistee, Contract, Receipts and Estimate,1989 + + + + + + 264 + 5 + Job 679, Erie, PA,1989 + + + + + + 264 + 6 + Job 679, Erie, PA, Claim,1989 + + + + + + 264 + 7 + Job 679, Erie, PA, Contract and Estimate, 1 of 2,1989 + + + + + + 264 + 8 + Job 679, Erie, PA, Contract and Estimate, 2 of 2,1989 + + + + + + 265 + 1 + Job 679, Erie, PA, Correspondence,1989 + + + + + + 265 + 2 + Job 679, Erie, PA, Drawings,1989 + + + + + 265 + 3 + Job 679, Erie, PA, McKinney Drilling Correspondence,1989 + + + + + + 265 + 4 + Job 679, Erie, PA, Photographs,Undated + + + + + + 265 + 5 + Job 679, Erie, PA, Specifications,1989 + + + + + + 265 + 6 + Job 679, Erie, PA, Top Roc Lawsuit, Official Correspondence,1989-1993 + + + + + + 265 + 7 + Job 679, Erie, PA, Top Roc Lawsuit, Final Correspondence,1993-1994 + + + + + + 266 + 1 + Job 679, Erie, PA, Top Roc Lawsuit, Trail Exhibits, 1 of 2,1989 + + + + + + 266 + 2 + Job 679, Erie, PA, Top Roc Lawsuit, Trail Exhibits, 2 of 2,1989 + + + + + + 266 + 3 + Job 680, Monroe,1988 – 1989 + + + + + + 266 + 4 + Job 680, Monroe, Bid Instructions,1989 + + + + + + 266 + 5 + Job 680, Monroe, Contract,1989 + + + + + + 266 + 6 + Job 681, Fairport, OH,1989 + + + + + 266 + 7 + Job 682, St. Joseph,1989 + + + + + + 266 + 8 + Job 682, St. Joseph, Contract,1989 + + + + + + 267 + 1 + Job 683, St. Joseph,1988 – 1991 + + + + + + 267 + 2 + Job 683, St. Joseph, Contract,1990 + + + + + + 267 + 3 + Job 683, St. Joseph, Correspondence,1989 – 1991 + + + + + + 267 + 4 + Job 683, St. Joseph, Drawings,1989 – 1990 + + + + + + 267 + 5 + Job 683, St. Joseph, Estimate and Design Calculations,1988 + + + + + + 267 + 6 + Job 683, St. Joseph, Orders,1990-1991 + + + + + + 267 + 7 + Job 683, St. Joseph, Permits,1988-1990 + + + + + + 267 + 8 + Job 683, St. Joseph, Photographs,Undated + + + + + + 267 + 9 + Job 683, St. Joseph, Specifications,1989-1990 + + + + + + 268 + 1 + Job 684, Michigan City, IN,1989 + + + + + + 268 + 2 + Job 684, Michigan City, IN, Contract,1989 + + + + + + 268 + 3 + Job 684, Michigan City, IN, Drawings,1989 + + + + + + 268 + 4 + Job 684, Michigan City, IN, Specifications,1989 + + + + + + 268 + 5 + Job 685, Filer City,1989-1990 + + + + + + 268 + 6 + Job 686, Evanston, IL,1989 + + + + + + 268 + 7 + Job 686, Evanston, IL, Blue – line Drawings, 1 of 2,1989 + + + + + + 269 + 1 + Job 686, Evanston, IL, Blue – line Drawings, 2 of 2,1989 + + + + + + 269 + 2 + Job 686, Evanston, IL, Contract,1989 + + + + + + 269 + 3 + Job 686, Evanston, IL, Correspondence, 1 of 2,1989-1990 + + + + + + 269 + 4 + Job 686, Evanston, IL, Correspondence, 2 of 2,1989-1990 + + + + + + 269 + 5 + Job 686, Evanston, IL, Drawings, 1 of 2,1989 + + + + + + 269 + 6 + Job 686, Evanston, IL, Drawings, 2 of 2,1989 + + + + + + 270 + 1 + Job 686, Evanston, IL, Gillen Co. Correspondence,1989 + + + + + + 270 + 2 + Job 686, Evanston, IL, Negatives,1989 + + + + + + 270 + 3 + Job 686, Evanston, IL, Orders,1989 + + + + + + 270 + 4 + Job 686, Evanston, IL, Photographs, 1 of 2,1989 + + + + + 270 + 5 + Job 686, Evanston, IL, Photographs, 2 of 2,1989 + + + + + + 270 + 6 + Job 686, Evanston, IL, Progressive Fabricators Correspondence,1989 + + + + + + 271 + 1 + Job 686, Evanston, IL, Receipts and Estimate,1989-1990 + + + + + + 271 + 2 + Job 686, Evanston, IL, Specifications,1989 + + + + + + 271 + 3 + Job 687, Eastlake, OH,1989 + + + + + + 271 + 4 + Job 687, Eastlake, OH, Contract and Specifications,1989 + + + + + + 271 + 5 + Job 688, Hammond, IN,1989-1991 + + + + + + 271 + 6 + Job 688, Hammond, IN, Blue – line Drawings, 1 of 2,1989 + + + + + + 271 + 7 + Job 688, Hammond, IN, Blue – line Drawings, 2 of 2,1989 + + + + + + 272 + 1 + Job 688, Hammond, IN, Contract,1989 + + + + + + 272 + 2 + Job 688, Hammond, IN, Photographs,Undated + + + + + + 272 + 3 + Job 691, Bay Village, OH,1989 – 1992 + + + + + + 272 + 4 + Job 691, Bay Village, OH, Contract,1989 – 1990 + + + + + + 272 + 5 + Job 691, Bay Village, OH, Drawings, 1 of 2,1989 + + + + + + 272 + 6 + Job 691, Bay Village, OH, Drawings, 2 of 2,1989 + + + + + + 273 + 1 + Job 691, Bay Village, OH, Estimate,1989 + + + + + + 273 + 2 + Job 691, Bay Village, OH, Orders,1989 + + + + + + 273 + 3 + Job 691, Bay Village, OH, Receipts,1989-1991 + + + + + + 273 + 4 + Job 691, Bay Village, OH, Specifications,1989 + + + + + + 273 + 5 + Job 692, Rock Island, IL, 1 of 2,1989-1990 + + + + + + 273 + 6 + Job 692, Rock Island, IL, 2 of 2,1989-1990 + + + + + 273 + 7 + Job 692, Rock Island, IL, Bid, Estimate and Contract,1989-1990 + + + + + 273 + 8 + Job 692, Rock Island, IL, Photographs,Undated + + + + + + 273 + 9 + Job 692, Rock Island, IL, Specifications,1989 + + + + + + 274 + 1 + Job 693, Milwaukee, WI,1989-1990 + + + + + + 274 + 2 + Job 694, Ontonagon,1990 + + + + + + 274 + 3 + Job 694, Ontonagon, Bid, Estimate and Contract,1989-1990 + + + + + + 274 + 4 + Job 694, Ontonagon, Specifications,1990 + + + + + + 274 + 5 + Job 695, Ashtabula, OH,1990 + + + + + + 274 + 6 + Job 696, Green Bay, WI,1990 + + + + + + 274 + 7 + Job 697, Frankfort,1990-1991 + + + + + + 274 + 8 + Job 698, Lorain, OH,1989-1990 + + + + + + 274 + 9 + Job 699, Port Austin,1990 + + + + + + 274 + 10 + Job 699, Port Austin, Blue-line Drawings,1990 + + + + + + 275 + 1 + Job 699, Port Austin, Contract and Correspondence and Estimate,1990 + + + + + + 275 + 2 + Job 699, Port Austin, Correspondence,1990 + + + + + + 275 + 3 + Job 700, Suttons Bay,1990 + + + + + + 275 + 4 + Job 700, Suttons Bay, Blue-line Drawings,1990 + + + + + + 275 + 5 + Job 700, Suttons Bay, Claim,1990 + + + + + + 275 + 6 + Job 700, Suttons Bay, Correspondence,1990 + + + + + + 275 + 7 + Job 701, Buffalo, NY,1990 + + + + + + 275 + 8 + Job 701, Buffalo, NY, Bid,1990 + + + + + + 276 + 1 + Job 701, Buffalo, NY, Contract,1990 + + + + + + 276 + 2 + Job 701, Buffalo, NY, Photographs,1990 + + + + + + 276 + 3 + Job 701, Buffalo, NY, Receipts and Estimate,1990-1992 + + + + + + 276 + 4 + Job 702, Milwaukee, WI,1990 + + + + + + 276 + 5 + Job 702, Milwaukee, WI, Blue-line Drawings,1990 + + + + + + 276 + 6 + Job 702, Milwaukee, WI, Contract,1990 + + + + + + 276 + 7 + Job 703, Cleveland, OH,1990 + + + + + + 276 + 8 + Job 703, Cleveland, OH, Bid and Estimate,1990 + + + + + + 277 + 1 + Job 703, Cleveland, OH, Blue-line Drawings, 1 of 2,1991 + + + + + + 277 + 2 + Job 703, Cleveland, OH, Blue-line Drawings, 2 of 2,1991 + + + + + + 277 + 3 + Job 703, Cleveland, OH, Contract Correspondence,1991 + + + + + + 277 + 4 + Job 703, Cleveland, OH, Correspondence,1991 + + + + + + 277 + 5 + Job 703, Cleveland, OH, Drawings,1991 + + + + + + 277 + 6 + Job 703, Cleveland, OH, Orders and Receipts,1991 + + + + + + 278 + 1 + Job 703, Cleveland, OH, Photographs, 1 of 2,1990 + + + + + + 278 + 2 + Job 703, Cleveland, OH, Photographs, 2 of 2,1990 + + + + + + 278 + 3 + Job 703, Cleveland, OH, Roth Manufacturing Corp. Correspondence,1991 + + + + + + 278 + 4 + Job 703, Cleveland, OH, Specifications,1991 + + + + + + 278 + 5 + Job 704, Tonawanda, NY,1990-1991 + + + + + + 278 + 6 + Job 704, Tonawanda, NY, Bid, Estimate, and Cost Sheets,1991 + + + + + + 278 + 7 + Job 704, Tonawanda, NY, Blue-line Drawings, 1 of 2,1991 + + + + + + 279 + 1 + Job 704, Tonawanda, NY, Blue-line Drawings, 2 of 2,1991 + + + + + + 279 + 2 + Job 704, Tonawanda, NY, Correspondence, 1 of 2,1991 + + + + + + 279 + 3 + Job 704, Tonawanda, NY, Correspondence, 2 of 2,1991 + + + + + + 279 + 4 + Job 704, Tonawanda, NY, County of Erie Contract Correspondence,1 of 4,1991 + + + + + + 279 + 5 + Job 704, Tonawanda, NY, County of Erie Contract Correspondence, 2 of 4,1991 + + + + + + 280 + 1 + Job 704, Tonawanda, NY, County of Erie Contract Correspondence, 3 of 4,1991 + + + + + + 280 + 2 + Job 704, Tonawanda, NY, County of Erie Contract Correspondence, 4 of 4,1991 + + + + + + 280 + 3 + Job 704, Tonawanda, NY, Drawings,1991 + + + + + + 280 + 4 + Job 704, Tonawanda, NY, Orders and Receipts,1991 + + + + + + 280 + 5 + Job 704, Tonawanda, NY, Photographs,1991 + + + + + + 280 + 6 + Job 705, Rochester, NY,1990-1992 + + + + + + 281 + 1 + Job 705, Rochester, NY, Bid and Estimate,1990-1991 + + + + + + 281 + 2 + Job 705, Rochester, NY, Blue-line Drawings, 1 of 2,1990 + + + + + + 281 + 3 + Job 705, Rochester, NY, Blue-line Drawings, 2 of 2,1990 + + + + + + 281 + 4 + Job 705, Rochester, NY, Claims, 1 of 2,1991 + + + + + + 281 + 5 + Job 705, Rochester, NY, Claims, 2 of 2,1991 + + + + + + 281 + 7 + Job 705, Rochester, NY, Contract Correspondence, 1 of 2,1990-1991 + + + + + + 281 + 8 + Job 705, Rochester, NY, Contract Correspondence, 2 of 2,1990-1991 + + + + + + 282 + 1 + Job 705, Rochester, NY, Correspondence, 1 of 2,1991 + + + + + + 282 + 2 + Job 705, Rochester, NY, Correspondence, 2 of 2,1991 + + + + + + 282 + 3 + Job 705, Rochester, NY, C.P. Ward Correspondence,1990-1991 + + + + + + 282 + 4 + Job 705, Rochester, NY, Orders and Receipts,1990-1991 + + + + + + 282 + 5 + Job 705, Rochester, NY, Photographs,1990-1991 + + + + + + 282 + 6 + Job 705, Rochester, NY, Quality Control,1990-1992 + + + + + + 282 + 7 + Job 705, Rochester, NY, Quotes,1990 + + + + + + 283 + 1 + Job 705, Rochester, NY, Transmittals,1990-1991 + + + + + + 283 + 2 + Job 706, Painesville, OH,1990-1992 + + + + + 283 + 3 + Job 706, Painesville, OH, Blue-line Drawings, 1 of 2,1989-1990 + + + + + + 283 + 4 + Job 706, Painesville, OH, Blue-line Drawings, 2 of 2,1989-1990 + + + + + + 283 + 5 + Job 706, Painesville, OH, Contract Specifications,1990 + + + + + 283 + 6 + Job 706, Painesville, OH, Correspondence,1990-1992 + + + + + 283 + 7 + Job 706, Painesville, OH, Estimate,1990 + + + + + 284 + 1 + Job 706, Painesville, OH, Norfolk Southern Correspondence,1990 + + + + + + 284 + 2 + Job 706, Painesville, OH, Orders,1990-1991 + + + + + + 284 + 3 + Job 706, Painesville, OH, Photographs, 1 of 3,1990 + + + + + + 284 + 4 + Job 706, Painesville, OH, Photographs, 2 of 3,1990 + + + + + + 284 + 5 + Job 706, Painesville, OH, Photographs, 3 of 3,1990 + + + + + + 284 + 6 + Job 706, Painesville, OH, Quantities,1992 + + + + + + 284 + 7 + Job 706, Painesville, OH, Quotation,1990 + + + + + + 285 + 1 + Job 706, Painesville, OH, Receipts, 1 of 2,1990 + + + + + + 285 + 2 + Job 706, Painesville, OH, Receipts, 2 of 2,1990 + + + + + + 285 + 3 + Job 707, Presque Isle,1990-1991 + + + + + + 285 + 4 + Job 707, Presque Isle, Blue-line Drawings, 1 of 3,1990 + + + + + 285 + 5 + Job 707, Presque Isle, Blue-line Drawings, 2 of 3,1990 + + + + + + 285 + 6 + Job 707, Presque Isle, Blue-line Drawings, 3 of 3,1990 + + + + + + 286 + 1 + Job 707, Presque Isle, Contract, 1 of 2,1990 + + + + + + 286 + 2 + Job 707, Presque Isle, Contract, 2 of 2,1990 + + + + + + 286 + 3 + Job 707, Presque Isle, Correspondence,1990-1992 + + + + + + 286 + 4 + Job 707, Presque Isle, Cross Concrete Pumping Correspondence,1991 + + + + + + 286 + 5 + Job 707, Presque Isle, Orders, Receipts and Estimates,1991 + + + + + + 286 + 6 + Job 707, Presque Isle, Photographs,1990 + + + + + + 286 + 7 + Job 708, Petoskey,1990-1991 + + + + + 287 + 1 + Job 708, Petoskey, Blue-line Drawings, 1 of 2,1991 + + + + + 287 + 2 + Job 708, Petoskey, Blue-line Drawings, 2 of 2,1991 + + + + + 287 + 3 + Job 708, Petoskey, Contract Correspondence,1991 + + + + + 287 + 4 + Job 708, Petoskey, Correspondence,1991 + + + + + 287 + 5 + Job 708, Petoskey, Estimate and Bidding papers,1991 + + + + + 287 + 6 + Job 708, Petoskey, Final As-builts and Report,1990 + + + + + 288 + 1 + Job 708, Petoskey, Photographs,1990 + + + + + 288 + 2 + Job 708, Petoskey, Quotations,1990 + + + + + 288 + 3 + Job 708, Petoskey, Receipts and Orders,1991 + + + + + 288 + 4 + Job 708, Petoskey, Specifications,1990 + + + + + 288 + 5 + Job 709, Illinois Waterway, IL,1991 + + + + + 288 + 6 + Job 709, Illinois Waterway, IL, Bid and Contract,1991 + + + + + 288 + 7 + Job 709, Illinois Waterway, IL, Estimate and Quotes,1991 + + + + + 289 + 1 + Job 709, Illinois Waterway, IL, Orders and Receipts,1991-1992 + + + + + 289 + 2 + Job 709, Illinois Waterway, IL, Photographs,1991 + + + + + 289 + 3 + Job 710, Sandusky, OH,1991 + + + + + 289 + 4 + Job 710, Sandusky, OH, Contract Correspondence and Bid,1991 + + + + + 289 + 5 + Job 710, Sandusky, OH, Correspondence,1991-1992 + + + + + 289 + 6 + Job 710, Sandusky, OH, Orders and Estimate,1991 + + + + + 289 + 7 + Job 711, Gulliver,1991 + + + + + 289 + 8 + Job 711, Gulliver, Specifications and Estimate,1991 + + + + + 290 + 1 + Job 712, Frankfort,1991 + + + + + 290 + 2 + Job 713, Fairport Harbor, OH,1991 + + + + + 290 + 3 + Job 713, Fairport Harbor, OH, Bid,1991 + + + + + 290 + 4 + Job 713, Fairport Harbor, OH, Contract,1991-1992 + + + + + 290 + 5 + Job 713, Fairport Harbor, OH, Correspondence,1991 + + + + + 290 + 6 + Job 713, Fairport Harbor, OH, Estimate and Receipts,1991 + + + + + 290 + 7 + Job 714, Buffalo, NY,1991 + + + + + 290 + 8 + Job 714, Buffalo, NY, Bid,1991 + + + + + 290 + 9 + Job 714, Buffalo, NY, Blue-line Drawings,1988-1991 + + + + + + 290 + 10 + Job 714, Buffalo, NY, ConAgra Correspondence,1991 + + + + + 291 + 1 + Job 714, Buffalo, NY, Contract,1991 + + + + + + 291 + 2 + Job 714, Buffalo, NY, Orders and Receipts,1991 + + + + + 291 + 3 + Job 714, Buffalo, NY, Photographs,1991 + + + + + 291 + 4 + Job 715, Marblehead, OH,1991 + + + + + + 291 + 5 + Job 715, Marblehead, OH, Blue-line Drawings,1991 + + + + + 291 + 6 + Job 715, Marblehead, OH, Estimate and Receipts,1991 + + + + + 291 + 7 + Job 716, Fairport, OH,1991 + + + + + 291 + 8 + Job 717, Toussaint River, OH,1991 + + + + + 291 + 9 + Job 717, Toussaint River, OH, Blue-line Drawings,1991 + + + + + + 291 + 10 + Job 717, Toussaint River, OH, Claim,1991 + + + + + 292 + 1 + Job 717, Toussaint River, OH, Photographs,1991 + + + + + 292 + 2 + Job 717, Toussaint River, OH, Receipts and Estimate,1991 + + + + + 292 + 3 + Job 717, Toussaint River, OH, Specifications,1991 + + + + + 292 + 4 + Job 718, Cleveland, OH,1991-1992 + + + + + 292 + 5 + Job 718, Cleveland, OH, Bid and Estimate,1991 + + + + + 292 + 6 + Job 718, Cleveland, OH, Blue-line Drawings, 1 of 2,1991 + + + + + 292 + 7 + Job 718, Cleveland, OH, Blue-line Drawings, 2 of 2,1991 + + + + + 292 + 8 + Job 718, Cleveland, OH, Contract, 1 of 2,1991 + + + + + 292 + 9 + Job 718, Cleveland, OH, Contract, 2 of 2,1991 + + + + + 293 + 1 + Job 718, Cleveland, OH, Correspondence,1991-1992 + + + + + 293 + 2 + Job 718, Cleveland, OH, Orders and Receipts,1991-1993 + + + + + 293 + 3 + Job 718, Cleveland, OH, Photographs,1991 + + + + + 293 + 4 + Job 719, Clinton River,1991 + + + + + 293 + 5 + Job 719, Clinton River, Bid,1991 + + + + + 293 + 6 + Job 719, Clinton River, Blue-line Drawings,1991 + + + + + 293 + 7 + Job 719, Clinton River, Contract and Estimate,1991-1992 + + + + + 294 + 1 + Job 719, Clinton River, Correspondence, 1 of 2,1991-1993 + + + + + 294 + 2 + Job 719, Clinton River, Correspondence, 2 of 2,1991-1993 + + + + + 294 + 3 + Job 719, Clinton River, Claim,1991 + + + + + 294 + 4 + Job 719, Clinton River, Order and Receipts,1991-1992 + + + + + 294 + 5 + Job 720, Lorain, OH,1991 + + + + + 294 + 6 + Job 721 Ashtabula, OH,1991 + + + + + 294 + 7 + Job 722, Charlevoix,1991-1992 + + + + + 294 + 8 + Job 722, Charlevoix, Bid and Specifications,1991 + + + + + + 295 + 1 + Job 722, Charlevoix, Contract,1992 + + + + + + 295 + 2 + Job 722, Charlevoix, Correspondence,1992 + + + + + + 295 + 3 + Job 722, Charlevoix, Orders and Receipts,1991-1992 + + + + + + 295 + 4 + Job 723, Ludington,1992 + + + + + + 295 + 5 + Job 723, Ludington, Contract,1992 + + + + + + 295 + 6 + Job 724, Gulliver,1992 + + + + + 295 + 7 + Job 724, Gulliver, Blue-line Drawings,1992 + + + + + 295 + 8 + Job 724, Gulliver, Specifications and Estimate,1991 + + + + + 295 + 9 + Job 725, Frankfort,1992 + + + + + 296 + 1 + Job 725, Frankfort, Hallmark Construction and Koch Materials Correspondence,1992 + + + + + 296 + 2 + Job 726, Harbor Beach,1992 + + + + + 296 + 3 + Job 726, Harbor Beach, Bid,1992 + + + + + + 296 + 4 + Job 726, Harbor Beach, Contract and Receipts,1992 + + + + + + 296 + 5 + Job 727, Rochester, NY,1992 + + + + + + 296 + 6 + Job 727, Rochester, NY, Bid,1992 + + + + + + 296 + 7 + Job 727, Rochester, NY, Contract and Receipts,1992 + + + + + + 297 + 1 + Job 728, Fairport Harbor, OH,1992 + + + + + 297 + 2 + Job 728, Fairport Harbor, OH, Bid, Receipts and Estimate,1992 + + + + + 297 + 3 + Job 728, Fairport Harbor, OH, Contract,1992 + + + + + 297 + 4 + Job 729, Milwaukee, WI,1992 + + + + + + 297 + 5 + Job 729, Milwaukee, WI, Blue-line Drawings, 1 of 2,1992 + + + + + 297 + 6 + Job 729, Milwaukee, WI, Blue-line Drawings, 2 of 2,1992 + + + + + + 297 + 7 + Job 729, Milwaukee, WI, Contract and Bid,1992 + + + + + 298 + 1 + Job 729, Milwaukee, WI, Correspondence, 1 of 2,1992 + + + + + 298 + 2 + Job 729, Milwaukee, WI, Correspondence, 2 of 2,1992 + + + + + + 298 + 3 + Job 729, Milwaukee, WI, Quality Control, Orders and Estimate,1992 + + + + + 298 + 4 + Job 729, Milwaukee, WI, Receipts,1992 + + + + + 298 + 5 + Job 729, Milwaukee, WI, Specifications,1992 + + + + + + 299 + 1 + Job 730, Bay City,1992 + + + + + + 299 + 2 + Job 730, Bay City, Blue-line Drawings,1992 + + + + + + 299 + 3 + Job 730, Bay City, Contract,1992 + + + + + + 299 + 4 + Job 730, Bay City, Correspondence,1992 + + + + + + 299 + 5 + Job 730, Bay City, Transmittal,1992 + + + + + + 299 + 6 + Job 731, Saginaw River,1992 + + + + + + 300 + 1 + Job 731, Saginaw River, Blue-line Drawings, 1 of 2,1992 + + + + + + 300 + 2 + Job 731, Saginaw River, Blue-line Drawings, 2 of 2,1992 + + + + + + 300 + 3 + Job 731, Saginaw River, Contract,1992 + + + + + + 300 + 4 + Job 731, Saginaw River, Correspondence and Bid,1992 + + + + + + 300 + 5 + Job 731, Saginaw River, Receipts and Estimate,1992-1994 + + + + + + 300 + 6 + Job 732, Green Bay, WI,1992-1993 + + + + + + 301 + 1 + Job 732, Green Bay, WI, Bid, Estimate, Receipts,1992 + + + + + + 301 + 2 + Job 732, Green Bay, WI, Blue-line Drawings,1992 + + + + + + 301 + 3 + Job 732, Green Bay, WI, Contract and Specifications,1992-1993 + + + + + + 301 + 4 + Job 732, Green Bay, WI, Correspondence, 1 of 2,1992-1993 + + + + + 301 + 5 + Job 732, Green Bay, WI, Correspondence, 2 of 2,1992-1993 + + + + + 301 + 6 + Job 732, Green Bay, WI, Photographs,1992 + + + + + 301 + 7 + Job 733, Saginaw,1992 + + + + + + 302 + 1 + Job 733, Saginaw, Bid, Receipts, Orders and Estimate,1992 + + + + + + 302 + 2 + Job 733, Saginaw, Blue-line Drawings,1992 + + + + + 302 + 3 + Job 733, Saginaw, Contract, 1 of 2,1992 + + + + + 302 + 4 + Job 733, Saginaw, Contract, 2 of 2,1992 + + + + + + 302 + 5 + Job 733, Saginaw, Photographs,1992 + + + + + 302 + 6 + Job 734, Cleveland, OH,1992-1993 + + + + + 302 + 7 + Job 734, Cleveland, OH, Bid and Receipts,1992-1993 + + + + + + 302 + 8 + Job 734, Cleveland, OH, Blue-line Drawings, 1 of 2,1992 + + + + + 302 + 9 + Job 734, Cleveland, OH, Blue-line Drawings, 2 of 2,1992 + + + + + 303 + 1 + Job 734, Cleveland, OH, Claim,1993 + + + + + + 303 + 2 + Job 734, Cleveland, OH, Contract,1992-1993 + + + + + 303 + 3 + Job 734, Cleveland, OH, Correspondence,1992-1993 + + + + + 303 + 4 + Job 734, Cleveland, OH, Orders and Estimate,1992-1993 + + + + + + 303 + 5 + Job 734, Cleveland, OH, Photographs, 1 of 3,1993 + + + + + 304 + 1 + Job 734, Cleveland, OH, Photographs, 2 of 3,1993 + + + + + 304 + 2 + Job 734, Cleveland, OH, Photographs, 3 of 3,1993 + + + + + 304 + 3 + Job 735, Milwaukee, WI,1992-1993 + + + + + 304 + 4 + Job 735, Milwaukee, WI, Bid and Estimate,1992 + + + + + 304 + 5 + Job 735, Milwaukee, WI, Contract and Specifications,1992-1993 + + + + + 304 + 6 + Job 735, Milwaukee, WI, Correspondence and Receipts,1992-1993 + + + + + 304 + 7 + Job 736, Frankfort,1993 + + + + + 304 + 8 + Job 737, Lake Erie, OH,1993 + + + + + + 304 + 9 + Job 737, Lake Erie, OH, Bid,1993 + + + + + + 305 + 1 + Job 738, Beulah,1993 + + + + + + 305 + 2 + Job 739, Erie Harbor, PA,1993 + + + + + + 305 + 3 + Job 739, Erie Harbor, PA, Bid and Specifications,1993 + + + + + + 305 + 4 + Job 739, Erie Harbor, PA, Contract, Receipts, and Estimate,1993 + + + + + + 305 + 5 + Job 740, Cleveland, OH,1993 + + + + + + 305 + 6 + Job 741, Au Gres River,1993 + + + + + 305 + 7 + Job 741, Au Gres River, Bid and Specifications,1993 + + + + + 305 + 8 + Job 741, Au Gres River, Blue-line Drawings,1993 + + + + + 305 + 9 + Job 741, Au Gres River, Drawings,1993 + + + + + 306 + 1 + Job 741, Au Gres River, Contract, Receipts and Estimate,1993 + + + + + 306 + 2 + Job 742, Green Bay, WI,1993 + + + + + 306 + 3 + Job 742, Green Bay, WI, Bid and Specifications,1993 + + + + + 306 + 4 + Job 742, Green Bay, WI, Blue-line Drawings,1993 + + + + + 306 + 5 + Job 742, Green Bay, WI, Contract Correspondence,1993 + + + + + 306 + 6 + Job 742, Green Bay, WI, Receipts and Estimate,1993 + + + + + 306 + 7 + Job 743, New Buffalo,1993 + + + + + 306 + 8 + Job 743, New Buffalo, Blue-line Drawings,1991-1993 + + + + + 307 + 1 + Job 743, New Buffalo, Claim,1994-1995 + + + + + 307 + 2 + Job 743, New Buffalo, Contract and Bid,1993 + + + + + 307 + 3 + Job 743, New Buffalo, Correspondence, 1 of 3,1993-1995 + + + + + 307 + 4 + Job 743, New Buffalo, Correspondence, 2 of 3,1993-1995 + + + + + 307 + 5 + Job 743, New Buffalo, Correspondence, 3 of 3,1993-1995 + + + + + 308 + 1 + Job 743, New Buffalo, Orders and Estimate,1993-1994 + + + + + 308 + 2 + Job 743, New Buffalo, Photographs, 1 of 2,1993 + + + + + 308 + 3 + Job 743, New Buffalo, Photographs, 2 of 2,1993 + + + + + 308 + 4 + Job 743, New Buffalo, Project Log Book,1994 + + + + + 308 + 5 + Job 743, New Buffalo, Quality Control,1994 + + + + + 308 + 6 + Job 743, New Buffalo, Receipts,1993-1994 + + + + + 309 + 1 + Job 743, New Buffalo, StresCore Correspondence,1993-1994 + + + + + 309 + 2 + Job 744, West Harbor, OH,1993-1994 + + + + + 309 + 3 + Job 744, West Harbor, OH, Bid,1993 + + + + + 309 + 4 + Job 744, West Harbor, OH, Contract, Receipts and Estimate,1993 + + + + + 309 + 5 + Job 744, West Harbor, OH, Correspondence,1993 + + + + + 309 + 6 + Job 745, Dunkirk, NY,1993 + + + + + + 310 + 1 + Job 745, Dunkirk, NY, All States Drilling and Blasting Correspondence,1993 + + + + + 310 + 2 + Job 745, Dunkirk, NY, Bid and Estimate,1993 + + + + + 310 + 3 + Job 745, Dunkirk, NY, Contract and Receipts,1993 + + + + + 310 + 4 + Job 745, Dunkirk, NY, Correspondence,1993 + + + + + 310 + 5 + Job 745, Dunkirk, NY, Drawings,1993 + + + + + 310 + 6 + Job 745, Dunkirk, NY, Photographs,1993 + + + + + + 310 + 7 + Job 745, Dunkirk, NY, Specifications,1993 + + + + + + 311 + 1 + Job 763, Chicago, IL, Advance Case,1998 + + + + + + 311 + 2 + Job 763, Chicago, IL, Advance Case,1999 + + + + + + 311 + 3 + Job 763, Chicago, IL, American Home Case,2001-2002 + + + + + + 311 + 4 + Job 763, Chicago, IL, Answer and Cross-Claim,1999 + + + + + + 311 + 5 + Job 763, Chicago, IL, City of Chicago Case Documents,2000-2001 + + + + + + 311 + 6 + Job 763, Chicago, IL, City of Chicago vs ABH and Luedtke, 1 of 3,1998 + + + + + + 311 + 7 + Job 763, Chicago, IL, City of Chicago vs ABH and Luedtke, 2 of 3,1998 + + + + + + 311 + 8 + Job 763, Chicago, IL, City of Chicago vs ABH and Luedtke, 3 of 3,1998 + + + + + + 312 + 1 + Job 763, Chicago, IL, Claims, 1 of 3,1997 + + + + + + 312 + 2 + Job 763, Chicago, IL, Claims, 2 of 3,1997 + + + + + 312 + 3 + Job 763, Chicago, IL, Claims, 3 of 3,1997 + + + + + 312 + 4 + Job 763, Chicago, IL, Claims,1998 + + + + + + 312 + 5 + Job 763, Chicago, IL, Contract, 1 of 3,1998 + + + + + + 312 + 6 + Job 763, Chicago, IL, Contract, 2 of 3,1998 + + + + + + 312 + 7 + Job 763, Chicago, IL, Contract, 3 of 3,1998 + + + + + + 313 + 1 + Job 763, Chicago, IL, Contract Appendix, Part A, 1 of 2,1994 + + + + + + 313 + 2 + Job 763, Chicago, IL, Contract Appendix, Part A, 2 of 2,1994 + + + + + 313 + 3 + Job 763, Chicago, IL, Contract Appendix, Part B, 1 of 3,1994 + + + + + + 313 + 4 + Job 763, Chicago, IL, Contract Appendix, Part B, 2 of 3,1994 + + + + + 313 + 5 + Job 763, Chicago, IL, Contract Appendix, Part B, 3 of 3,1994 + + + + + 313 + 6 + Job 763, Chicago, IL, Deposition, Sebeck, Jeffrey,2001 + + + + + + 313 + 7 + Job 763, Chicago, IL, News Articles,1998, 2000, 2002 + + + + + 313 + 8 + Job 763, Chicago, IL, Settlement,2001-2002 + + + + + + 314 + 1 + (Legal-size): Job 565, Milwaukee, WI, Bid Instructions,1982 + + + + + + 314 + 2 + (Legal-size): Job 567, Cleveland, Oh, Bid Instructions,1982 + + + + + 314 + 3 + (Legal-size): Job 569, Toledo, OH, Contract,1982 + + + + + + 314 + 4 + (Legal-size): Job 578, Put-in-Bay, OH, Bid Instructions, Proposal and Contract,1982 + + + + + + 314 + 5 + (Legal-size): Job 590, Sandusky, OH, Contract and Newspaper Clippings,1982-1985 + + + + + + 314 + 6 + (Legal-size): Job 591, Harrisville, Abstract of Bids and Permit Application,1980, 1983-1984 + + + + + + 314 + 7 + (Legal-size): Job 607, Calumet, IL, Incident Report,1984 + + + + + + 314 + 8 + (Legal-size): Job 608, Irondequoit, NY, Lease Agreement and Drawings,1985 + + + + + + 314 + 9 + (Legal-size): Job 608, Irondequoit, NY, Newspaper Clippings,1985 + + + + + + 314 + 10 + (Legal-size): Job 615, Muskegon, Incident Reports,1985-1986 + + + + + + 314 + 11 + (Legal-size): Job 629, Green Bay, WI, Incident Reports,1986 + + + + + 314 + 12 + (Legal-size): Job 632, Frankfort, Service Contract,1986 + + + + + + 314 + 13 + (Legal-size): Job 634, Racine, WI, Incident Report,1986 + + + + + + 314 + 14 + (Legal-size): Job 639, Cleveland, OH, Contract,1986 + + + + + + 314 + 15 + (Legal-size): Job 639, Cleveland, OH, Estimate,1986 + + + + + + 314 + 16 + (Legal-size): Job 644, Milwaukee, WI, Incident Report,1987 + + + + + + 314 + 17 + (Legal-size): Job 658, Kewaunee, WI, Incident Report,1987 + + + + + + 314 + 18 + (Legal-size): Job 659, Saginaw, Land Lease,1987 + + + + + + 314 + 19 + (Legal-size): Job 666, Evans, NY, Selvick Marine Correspondence,1988 + + + + + 314 + 20 + (Legal-size): Job 703, Cleveland, OH, Receipts,1990-1991 + + + + + 314 + 21 + (Legal-size): Job 704, Tonawanda, NY, Receipts,1991 + + + + + 315 + 1 + NLB Intake, Milwaukee, WI,1970 + + + + + + 315 + 2 + NLB U.S. Engineers, Harbor of Refuge, Point Lookout,1970 + + + + + 315 + 3 + NLB Breakwater and Jetties, Ludington,1970 + + + + + 315 + 4 + NLB Breakwater and Jetties, Ludington, Bid,1970 + + + + + 315 + 5 + NLB Breakwater and Jetties, Ludington, Drawings, 1 of 2,1970 + + + + + 315 + 6 + NLB Breakwater and Jetties, Ludington, Drawings, 2 of 2,1970 + + + + + 315 + 7 + NLB Intake, Wilmette, IL,1970 + + + + + 315 + 8 + NLB 48-inch Water Intake, Manitowoc, WI,1971 + + + + + 316 + 1 + NLB Palisades Intake Structure Repairs, South Haven,1971 + + + + + 316 + 2 + NLB Water Intake, Cudahy, WI,1971 + + + + + 316 + 3 + NLB Baffle Wall Intake Structure, Point Beach, WI,1972 + + + + + 316 + 4 + NLB U.S. Engineers, Harbor of Refuge, New Buffalo,1973 + + + + + 316 + 5 + NLB U.S. Engineers, Dike Disposal Area, Milwaukee, WI,1973 + + + + + 316 + 6 + NLB U.S. Engineers, Breakwater and Jetties, Oak Orchard, NY,1973 + + + + + 316 + 7 + NLB U.S. Engineers, River Dredging, St. Mary’s River,1973 + + + + + 317 + 1 + NLB U.S. Engineers, Dike Disposal Area, Huron Harbor, OH,1973 + + + + + + 317 + 2 + NLB U.S. Engineers, Dickinson Island,1974 + + + + + + 317 + 3 + NLB U.S. Engineers, Dickinson Island, Bid,1974 + + + + + + 317 + 4 + NLB U.S. Engineers, Dickinson Island, Drawings,1974 + + + + + + 317 + 5 + NLB Water Intake, Detroit,1974 + + + + + + 317 + 6 + NLB Water Intake, Detroit, Drawings, 1 of 3,1974 + + + + + + 317 + 7 + NLB Water Intake, Detroit, Drawings, 2 of 3,1974 + + + + + + 317 + 8 + NLB Water Intake, Detroit, Drawings, 3 of 3,1974 + + + + + + 318 + 1 + NLB Water Intake, Detroit, Contract,1974 + + + + + 318 + 2 + NLB Water Intake, Detroit,1974 + + + + + 318 + 3 + NLB U.S. Engineers, Manitowoc, WI,1974 + + + + + 318 + 4 + NLB U.S. Engineers, Buffalo Harbor, NY,1974 + + + + + 318 + 5 + NLB U.S. Engineers, River Widening, St. Mary’s River,1974 + + + + + 318 + 6 + NLB U.S. Engineers, River Widening, St. Mary’s River, Drawings,1974 + + + + + 318 + 7 + NLB U.S. Engineers, Toledo, OH,1974 + + + + + 318 + 8 + NLB U.S. Engineers, NLB 66-inch Water Intake, Bay County,1975 + + + + + 318 + 9 + NLB U.S. Engineers, Harbor of Refuge, Lexington,1975 + + + + + 318 + 10 + NLB U.S. Engineers, Harbor of Refuge, Lexington, Drawings,1975 + + + + + + 319 + 1 + NLB U.S. Engineers, Saginaw Bay, Bid,1976 + + + + + + 319 + 2 + NLB U.S. Engineers, Saginaw Bay, Estimates and Drawings,1976 + + + + + 319 + 3 + NLB U.S. Engineers, Detroit, Bid,1976 + + + + + 319 + 4 + NLB U.S. Engineers, Detroit, Drawings, 1 of 2,1976 + + + + + 319 + 5 + NLB U.S. Engineers, Detroit, Drawings, 2 of 2,1976 + + + + + 319 + 6 + NLB U.S. Engineers, Harbor of Refuge, Lexington, Drawings,1975 + + + + + 319 + 1 + NLB Intake, North Perry, OH,1976 + + + + + 320 + 1 + NLB U.S. Engineers, Cleveland, OH, Bid, 1 of 2,1976 + + + + + + 320 + 2 + NLB U.S. Engineers, Cleveland, OH, Bid, 2 of 2,1976 + + + + + + 320 + 3 + NLB Consumers Power Company, West Olive, 1 of 2,1976 + + + + + + 320 + 4 + NLB Consumers Power Company, West Olive, 2 of 2,1976 + + + + + + 320 + 5 + NLB Consumers Power Company, West Olive, 1Blue-line Drawings,1976 + + + + + + 320 + 6 + NLB U.S. Engineers, Bolles Harbor,1977 + + + + + + 321 + 1 + NLB U.S. Engineers, Bolles Harbor, Blue-line Drawings,1977 + + + + + + 321 + 2 + NLB U.S. Engineers, Erie, PA,1978 + + + + + + 321 + 3 + NLB U.S. Engineers, Huron Harbor, OH,1978 + + + + + + 321 + 4 + NLB U.S. Engineers, Green Bay, WI,1978 + + + + + + 321 + 4 + NLB U.S. Engineers, Port Washington, WI,1979 + + + + + + 322 + 1 + NLB U.S. Engineers, Manitowoc Harbor, WI,1981 + + + + + + 322 + 2 + NLB City of Kenosha Water Utility, Kenosha, WI,1981 + + + + + 322 + 3 + NLB Burgess and Niple, Lake County, OH,1981 + + + + + + 322 + 4 + NLB Rock Barrier, Port Austin,1989 + + + + + + 322 + 5 + NLB Dockwall, Racine, WI,1989 + + + + + + 322 + 6 + NLB U.S. Engineers, Duluth, MN,1989 + + + + + + 322 + 7 + NLB Dredging, Toledo, OH,1989 + + + + + + 323 + 1 + NLB Kirkland Crib Rehabilitation, Bid, Cleveland, OH, 1 of 2,1989 + + + + + + 323 + 2 + NLB Kirkland Crib Rehabilitation, Bid, Cleveland, OH, 2 of 2,1989 + + + + + + 323 + 3 + NLB Bulkhead Rehabilitation, Rocky River, OH,1990 + + + + + + 323 + 4 + NLB Pier Restoration, Bid, Grosse Ile, 1 of 2,1990 + + + + + + 323 + 5 + NLB Pier Restoration, Bid, Grosse Ile, 2 of 2,1990 + + + + + + 323 + 6 + NLB Breakwater Extension, Sandusky, OH,1990 + + + + + + 323 + 7 + NLB Clean Intake Forbay, Dunkirk Station, NY,1990 + + + + + + 324 + 1 + NLB Channel Construction, Piling, Village of Manistee, 1 of 2,1990 + + + + + + 324 + 2 + NLB Channel Construction, Piling, Village of Manistee, 2 of 2,1990 + + + + + + 324 + 3 + NLB Channel Construction, Piling, Blue-lines, Village of Manistee,1990 + + + + + + 324 + 4 + NLB Shoreline Construction, Bid, Manistee, MI, 1 of 2,1990 + + + + + + 324 + 5 + NLB Shoreline Construction, Bid, Manistee, MI, 2 of 2,1990 + + + + + + 325 + 1 + NLB Mooring for Steamer W.M.G. Mather, Cleveland, OH,1990 + + + + + + 325 + 2 + NLB Intake, Zion, IL,1990 + + + + + + 325 + 3 + NLB Underwater Bridge, Muskegon County,1990 + + + + + + 325 + 4 + NLB Dredge Boat Slip, Saginaw Bay,1990 + + + + + + 325 + 5 + NLB Marina Development, Manistee,1990 + + + + + + 325 + 6 + NLB Breakwaters, Waukegan, IL,1990 + + + + + + 325 + 7 + NLB USCOE/ Detroit, Clinton River,1990 + + + + + + 325 + 8 + NLB Transmission Main, Grand Rapids,1990 + + + + + + 325 + 9 + NLB Intake Structure, Bid, Instructions, Bridgman, 1 of 2,1990 + + + + + + 325 + 10 + NLB Intake Structure, Bid, Instructions, Bridgman, 2 of 2,1990 + + + + + + 326 + 1 + NLB Marina Extension, Suttons Bay,1991 + + + + + + 326 + 2 + NLB Small Boat Harbor, Buffalo, NY,1991 + + + + + + 326 + 3 + NLB Channel Cable Crossing, Grosse Isle,1991 + + + + + + 326 + 4 + NLB U.S. Engineers, Breakwater Repairs, Two Harbors, MN,1991 + + + + + + 326 + 5 + NLB Terminal Dock Replacement, Bay City,1991 + + + + + + 326 + 6 + NLB Terminal Dock Replacement, Bay City, Blue-line Drawings, 1 of 2,1991 + + + + + + 326 + 7 + NLB Terminal Dock Replacement, Bay City, Blue-line Drawings, 2 of 2,1991 + + + + + + 326 + 8 + NLB Iroquois Gas Transmission System, St. Lawrence River, NY,1991 + + + + + + 326 + 9 + NLB Replacement of Three Fender Walls at Carfloat, Detroit,1991 + + + + + + 326 + 10 + NLB Replacement of Three Fender Walls at Carfloat, Detroit, Photographs,1991 + + + + + + 327 + 1 + NLB Intake Chlorination Pipeline, St. Joseph,1991 + + + + + + 327 + 2 + NLB Intake Chlorination Pipeline, St. Joseph, Photographs,1991 + + + + + + 327 + 3 + NLB Rehabilitation of Lorain West Breakwater Lighthouse, Lorain, OH,1991 + + + + + + 327 + 4 + NLB Whitestone Point Intake Crib, Bay City,1991 + + + + + + 327 + 5 + NLB 3-inch Zebra Mussel Lines, Buffalo, NY,1991 + + + + + + 327 + 6 + NLB U.S. Engineers, West Retreatment Repair, Ontonagon, 1 of 2,1991 + + + + + + 327 + 7 + NLB U.S. Engineers, West Retreatment Repair, Ontonagon, 2 of 2,1991 + + + + + + 328 + 1 + NLB Rip Rap Breakwater, St. Ignace,1991 + + + + + + 328 + 2 + NLB Super Chlorination of Water Plant Intakes, Wilmette, IL,1991 + + + + + + 328 + 3 + NLB Zebra Mussel Control, Wyoming,1991 + + + + + + 328 + 4 + NLB Dock Slip Extension, Cleveland – Cuyahoga, OH,1991 + + + + + + 328 + 5 + NLB Raw Water Intake Phase 2, Monroe,1992 + + + + + + 328 + 6 + NLB Lake Intake Facilities, Saginaw – Midland,1992 + + + + + + 328 + 7 + NLB Lake Intake Facilities, Saginaw – Midland, Blue-lines and Drawings,1992 + + + + + + 329 + 1 + NLB Water System Improvements, North Brook, IL,1992 + + + + + + 329 + 2 + NLB New Fishing Pier, Harbor Beach,1992 + + + + + + 329 + 3 + NLB New Fishing Pier, Harbor Beach, Blue-lines and Photographs,1992 + + + + + + 329 + 4 + NLB Water Filtration Plant, New Buffalo,1992 + + + + + + 329 + 5 + NLB Breakwater Dock Construction, North Manitou Island,1992 + + + + + + 330 + 1 + NLB City Marina, Munising,1992 + + + + + + 330 + 2 + NLB City Marina, Munising, Blue-lines and Photographs,1992 + + + + + + 330 + 3 + NLB Water Filtration Plant, Muskegon,1992 + + + + + + 330 + 4 + NLB U.S. CG, Repair Boat Slip, Lorain, OH,1992 + + + + + + 330 + 5 + NLB Bay Entrance Channel, Bay City,1992 + + + + + + 330 + 6 + NLB Bay Entrance Channel, Bay City, Blue-lines, 1 of 2,1992 + + + + + + 330 + 7 + NLB Bay Entrance Channel, Bay City, Blue-lines, 2 of 2,1992 + + + + + + 331 + 1 + NLB U.S. Engineers, Breakwater Repairs, Harbor Beach, 1 of 2,1992 + + + + + + 331 + 2 + NLB U.S. Engineers, Breakwater Repairs, Harbor Beach, 2 of 2,1992 + + + + + + 331 + 3 + NLB U.S. Engineers, Breakwater Repairs, Harbor Beach, Blue-lines,1992 + + + + + + 331 + 4 + NLB Pile Cluster Repair, St. Joseph,1992 + + + + + + 331 + 5 + NLB Remedial Action, Frankfort,1992 + + + + + + 331 + 6 + NLB Water Treatment Plant Improvements, Muskegon Heights,1992 + + + + + + 331 + 7 + NLB New Cat Walks and Sheet Pile Firewalls, Sandusky, OH,1992 + + + + + + 331 + 8 + NLB U.S. Engineers, Fishing Pier, Charlevoix, 1 of 2,1992 + + + + + + 331 + 9 + NLB U.S. Engineers, Fishing Pier, Charlevoix, 2 of 2,1992 + + + + + + 332 + 1 + NLB Terminal Dock Replacement, Traverse City,1992 + + + + + + 332 + 2 + NLB Terminal Dock Replacement, Traverse City, Blue-lines,1992 + + + + + + 332 + 3 + NLB Shoreline Protection and Barge Removal, Perry, OH,1992 + + + + + + 332 + 4 + NLB U.S. Engineers, Confined Disposal Facility, Toledo, OH,1992 + + + + + + 332 + 5 + NLB Zebra Mussel Control, Grand Rapids,1992 + + + + + + 332 + 6 + NLB Dockwall Extension, Burns Harbor, IN,1992 + + + + + + 332 + 7 + NLB Fuel Storage Tanks, South Manitou Island,1992 + + + + + + 332 + 8 + NLB Raw Water Pump Station, Lexington,1992 + + + + + + 332 + 9 + NLB Raw Water Pump Station, Lexington, Blue-lines,1992 + + + + + + 333 + 1 + NLB ESELCO Sault St. Marie, 1 of 2,1993 + + + + + + 333 + 2 + NLB ESELCO Sault St. Marie, 2 of 2,1993 + + + + + + 333 + 3 + NLB ESELCO Sault St. Marie, Blue-lines,1993 + + + + + + 333 + 4 + NLB Consumers Power Company, Wellston,1993 + + + + + + 333 + 5 + NLB Consumers Power Company, Wellston, Drawings,1993 + + + + + + 333 + 6 + NLB U.S. Engineers, Ontonagon,1993 + + + + + + 334 + 1 + NLB U.S. Engineers, Ontonagon, Blue-lines, 1 of 2,1993 + + + + + + 334 + 2 + NLB U.S. Engineers, Ontonagon, Blue-lines, 2 of 2,1993 + + + + + + 334 + 3 + NLB U.S. Engineers, Ontonagon, Blue-lines, Photographs,1993 + + + + + + 334 + 4 + NLB U.S. Engineers, Lee County, OH,1993 + + + + + + 334 + 5 + NLB U.S. Engineers, Clark County, MO,1993 + + + + + + 334 + 6 + NLB U.S. Engineers, Lewis and Marion Counties, MO,1993 + + + + + + 334 + 7 + NLB U.S. Engineers, Marion County, MO,1993 + + + + + + 334 + 8 + NLB U.S. Engineers, Adams and Pike Counties, IL,1993 + + + + + + 334 + 9 + NLB U.S. Engineers, Levee Repair, Gregory Drainage District, MO,1993 + + + + + + 334 + 10 + NLB Townsend and Bottum Barrier Nets, Ludington,1993 + + + + + + 334 + 11 + NLB Mazurik Access Area, Ottawa County, OH,1993 + + + + + + 334 + 12 + NLB U.S. Engineers, Revetment Pier and Breakwater Repairs, Manistee Harbor, Proposal, 1 of 2,1994 + + + + + + 335 + 1 + NLB U.S. Engineers, Revetment Pier and Breakwater Repairs, Manistee Harbor, Proposal, 2 of 2,1994 + + + + + + 335 + 2 + NLB U.S. Engineers, Revetment Pier and Breakwater Repairs, Manistee Harbor, Blue-lines, 1 of 2,1994 + + + + + + 335 + 3 + NLB U.S. Engineers, Revetment Pier and Breakwater Repairs, Manistee Harbor, Blue-lines, 2 of 2,1994 + + + + + + 335 + 4 + NLB City Park Improvements, Au Gres,1994 + + + + + + 335 + 5 + NLB Indiana Port Commissions, Jeffersonville, IN,1994 + + + + + + 335 + 6 + NLB Whiskey Island Partners, Cleveland, OH,1994 + + + + + + 335 + 7 + NLB Department of Transportation, Mevidian Technologies, Inc. Manistee Lake, Big Rapids,1994 + + + + + + 335 + 8 + NLB Meridian Technologies, Inc., Manistee Lake,1994 + + + + + + 335 + 9 + NLB U.S. Engineers, Reads Landing, MN,1994 + + + + + + 336 + 1 + NLB U.S. Engineers, Crane H.J. Schwart, Lake Superior, 1 of 2,1994 + + + + + + 336 + 2 + NLB U.S. Engineers, Crane H.J. Schwart, Lake Superior, 2 of 2,1994 + + + + + + 336 + 3 + NLB Edison Sault Electric Company, Sault St. Marie,1994 + + + + + + 336 + 4 + NLB Edison Sault Electric Company, Sault St. Marie, Blue-lines and Drawings,1994 + + + + + + 336 + 5 + NLB Consumers Power Company, Ludington,1994 + + + + + + 337 + 1 + NLB Consumers Power Company, Ludington,1995 + + + + + + 337 + 2 + NLB U.S. Engineers, Manistee Harbor,1995 + + + + + + 337 + 3 + NLB U.S. Engineers, Manistee Harbor, Blue-line Drawings, 1 of 2,1995 + + + + + + 337 + 4 + NLB U.S. Engineers, Manistee Harbor, Blue-line Drawings, 2 of 2,1995 + + + + + + 337 + 5 + NLB Consumers Power Company, Newaygo County,1995 + + + + + + 337 + 6 + NLB Thatcher Engineering Corporation, Gary, IN,1995 + + + + + + 338 + 1 + NLB U.S. Engineers, East Pier Repair, Cleveland, OH,1995 + + + + + + 338 + 2 + NLB 108-inch Water Intake Line, Milwaukee, WI,1995 + + + + + + 338 + 3 + NLB U.S. Engineers, Black Rock Lock, Erie County, NY,1995 + + + + + + 338 + 4 + NLB Hodenpyl Tailrace Wall Rehabilitation, Mesick,1995 + + + + + + 338 + 5 + NLB Mohawk Power Co. Niagara, NY,1995-1996 + + + + + + 338 + 6 + NLB U.S. Engineers, Breakwater Repair, Saugatuck, Proposal,1996 + + + + + + 338 + 7 + NLB U.S. Engineers, Breakwater Repair, Saugatuck,1996 + + + + + + 338 + 8 + NLB U.S. Engineers, Breakwater Repair, Saugatuck, Blue-lines,1996 + + + + + + 338 + 9 + NLB Fixed Yacht Docks, Petoskey,1996 + + + + + + 338 + 10 + NLB Quarry Lake/ Harbor Lake, Petoskey,1996 + + + + + + 338 + 11 + NLB Water Intake, Mosel, WI, Kohler Co,1996 + + + + + + 339 + 1 + NLB Navigation Lights, Maumee Bay, OH,1996 + + + + + + 339 + 2 + NLB Boat Launch Dredging, Pinconning Park, Bay County,1996 + + + + + + 339 + 3 + NLB Bridge Scour Protection, Ypsilanti,1996 + + + + + + 339 + 4 + NLB U.S. Engineers, Dredging, Holland, Proposal,1996 + + + + + + 339 + 5 + NLB U.S. Engineers, Dredging, Holland,1996 + + + + + + 339 + 6 + NLB U.S. Engineers, Dredging, Holland, Blue-lines,1996 + + + + + + 340 + 1 + NLB Consumers Power, Dam Removal, Manistee,1996 + + + + + + 340 + 2 + NLB Consumers Power, Dam Removal, Manistee, Drawings,1996 + + + + + + 340 + 3 + NLB Breakwater, Avon Lake, OH,1996 + + + + + + 340 + 4 + NLB Bridge Scour Protection, Ypsilanti,1996 + + + + + + 340 + 5 + NLB Floating Docks, City of Chicago, Park District, IL,1996 + + + + + + 340 + 6 + NLB Floating Docks, City of Chicago, Park District, IL,1996 + + + + + + 340 + 7 + NLB U.S. Engineers, Dredging, Erie, PA,1996 + + + + + + 340 + 8 + NLB Consumer Power, Barrier Net, Ludington,1996 + + + + + + 341 + 1 + NLB Manistique River and Harbor Sediment Capping, Manistique,1996 + + + + + + 341 + 2 + NLB Manistique River and Harbor Sediment Capping, Manistique, Blue-lines, Photographs,1996 + + + + + + 341 + 3 + NLB Environmental Remediation, Manistique,1996 + + + + + + 341 + 4 + NLB Environmental Remediation, Manistique, Blue-lines,1996 + + + + + + 341 + 5 + NLB U.S. Engineers, Harbor of Refuge, Silver Bay, MN,1997 + + + + + + 341 + 6 + NLB U.S. Engineers, White Lake Harbor Repairs,1997 + + + + + + 341 + 7 + NLB U.S. Engineers, White Lake Harbor Repairs, Blue-lines,1997 + + + + + + 342 + 1 + NLB U.S. Engineers, Breakwater Repairs, Milwaukee, WI,1997 + + + + + + 342 + 2 + NLB Sault Ste. Marie Marina, Sault Ste. Marie,1997 + + + + + + 342 + 3 + NLB Sault Ste. Marie Marina, Sault Ste. Marie, Blue-lines,1997 + + + + + + 342 + 4 + NLB Sault Ste. Marie Marina, Sault Ste. Marie, Blue-lines, Photographs,1997 + + + + + + 342 + 5 + NLB Work Boat Harbor, Burns Harbor, IN,1997 + + + + + + 342 + 6 + NLB Pinconning Park Boat Launch Dredging, Bay County,1997 + + + + + + 343 + 1 + NLB Consumers Power, Fish Barrier, Essexville,1997 + + + + + + 343 + 2 + NLB Dredging, Tonawanda, NY,1997 + + + + + + 343 + 3 + NLB Port Washington Harbor Improvements, Port Washington, WI,1997 + + + + + + 343 + 4 + NLB U.S. Coast Guard, Navigation Light, Neebish Island,1997 + + + + + + 343 + 5 + NLB U.S. Coast Guard, Navigation Light, Neebish Island, Drawings,1997 + + + + + + 343 + 6 + NLB U.S. Engineers, Dam Machinery Renovation, Fox River, WI,1997 + + + + + + 343 + 7 + NLB Beaver Island Ferry Dock, Beaver Island,1997 + + + + + + 344 + 1 + NLB Beaver Island Ferry Dock, Beaver Island, Blue-lines, 1 of 2,1997 + + + + + + 344 + 2 + NLB Beaver Island Ferry Dock, Beaver Island, Blue-lines, 2 of 2,1997 + + + + + + 344 + 3 + NLB North Point Marina Erosion Protection, North Point, IL,1997 + + + + + + 344 + 4 + NLB Breakwater and SSP extension, Pleasant Prairie, WI,1997 + + + + + + 344 + 5 + NLB Harbor Improvements Oconto Co, WI,1997 + + + + + + 344 + 6 + NLB Consumers Power, Big Rock Nuclear Plant, Charlevoix, 1 of 2,1997 + + + + + + 344 + 7 + NLB Consumers Power, Big Rock Nuclear Plant, Charlevoix, 2 of 2,1997 + + + + + + 345 + 1 + NLB Consumers Power, Big Rock Nuclear Plant, Charlevoix, Drawings, 1 of 3,1997 + + + + + + 345 + 2 + NLB Consumers Power, Big Rock Nuclear Plant, Charlevoix, Drawings, 2 of 3,1997 + + + + + + 345 + 3 + NLB Consumers Power, Big Rock Nuclear Plant, Charlevoix, Drawings, 3 of 3,1997 + + + + + + 345 + 4 + NLB Rouge River Bridge Repair, Detroit,1997 + + + + + + 345 + 5 + NLB Rouge River Bridge Repair, Detroit, Drawings,1997 + + + + + + 345 + 6 + NLB Ludington Harbor Development Project, Ludington,1998 + + + + + + 345 + 7 + NLB Ludington Harbor Development Project, Ludington, Proposal/ Plan,1998 + + + + + + 346 + 1 + NLB U.S. Engineers, Revetment Repairs, White Lake, Construction Specs,1998 + + + + + + 346 + 2 + NLB U.S. Engineers, Revetment Repairs, White Lake,1998 + + + + + + 346 + 3 + NLB U.S. Engineers, Pier Repairs, Sault Ste. Marie,1998 + + + + + + 346 + 4 + NLB Forebay and Screenwell Dredging, Dunkirk, NY,1998 + + + + + + 346 + 5 + NLB U.S. Engineers, Revetment Repairs, Charlevoix, 1 of 2,1998 + + + + + + 346 + 6 + NLB U.S. Engineers, Revetment Repairs, Charlevoix, 2 of 2,1998 + + + + + + 347 + 1 + NLB U.S. Engineers, East Pier Repairs, Cedar River,1998 + + + + + + 347 + 2 + NLB U.S. Engineers, East Pier Repairs, Cedar River, Construction Specs,1998 + + + + + + 347 + 3 + NLB U.S. Engineers, East Pier Repairs, Cedar River, Blue-lines,1998 + + + + + + 347 + 4 + NLB Ferry Office and Dock, Erie, PA,1998 + + + + + + 347 + 5 + NLB 90-inch Outfall Sewers, Erie, PA,1998 + + + + + + 347 + 6 + NLB Cherry Farm Sediment Removal, Tonawanda, NY,1998 + + + + + + 347 + 7 + NLB U.S. Coast Guard, Buffalo, NY,1998 + + + + + + 347 + 8 + NLB CRA Services, Wyandotte,1998 + + + + + + 348 + 1 + NLB City of Menominee, Menominee, 1 of 2,1998 + + + + + + 348 + 12 + NLB City of Menominee, Menominee, 2 of 2,1998 + + + + + + 348 + 3 + NLB City of Menominee, Menominee, Blue-lines,1998 + + + + + + 348 + 4 + NLB U.S. Coast Guard, Detroit,1998 + + + + + + 348 + 5 + NLB Detroit and Canada Tunnel Corp, Detroit, 1 of 2,1998 + + + + + + 348 + 6 + NLB Detroit and Canada Tunnel Corp, Detroit, 2 of 2,1998 + + + + + + 348 + 7 + NLB Detroit and Canada Tunnel Corp, Detroit, Drawings, 1 of 2,1998 + + + + + + 349 + 1 + NLB Detroit and Canada Tunnel Corp, Detroit, Drawings, 2 of 2,1998 + + + + + + 349 + 2 + NLB U.S. Engineers, Sault Ste. Marie,1998 + + + + + + 349 + 3 + NLB U.S. Engineers, Sault Ste. Marie, Contract,1998 + + + + + + 349 + 4 + NLB U.S. Engineers, Sault Ste. Marie, Blue-lines, 1 of 4,1998 + + + + + + 349 + 5 + NLB U.S. Engineers, Sault Ste. Marie, Blue-lines, 2 of 4,1998 + + + + + 349 + 6 + NLB U.S. Engineers, Sault Ste. Marie, Blue-lines, 3 of 4,1998 + + + + + + 350 + 1 + NLB U.S. Engineers, Sault Ste. Marie, Blue-lines, 4 of 4,1998 + + + + + + 350 + 2 + NLB St Clair County, Algonac, 1 of 3,1998 + + + + + + 350 + 3 + NLB St Clair County, Algonac, 2 of 3,1998 + + + + + + 350 + 4 + NLB St Clair County, Algonac, 3 of 3,1998 + + + + + + 350 + 5 + NLB City of Chicago, Chicago, IL,1998 + + + + + + 350 + 6 + NLB Ohio Valley Electric Corporation, Cheshire, OH,1997 + + + + + + 350 + 7 + NLB McConnell and Scully Inc., Manistee Lake,1998 + + + + + + 350 + 8 + NLB U.S. Engineers, Mt. Morris, NY,1998 + + + + + + 351 + 1 + (.25 cubic ft.): NLB U.S. Engineers, Sault Ste. Marie,1998 + + + + + + 351 + 2 + (.25 cubic ft.): NLB Cedar Point, Sandusky, OH,1998 + + + + + + 351 + 3 + (.25 cubic ft.): NLB LaFarge Corporation, Green Bay, WI,1998 + + + + + + 352 + 1 + NLB City of Detroit, Detroit,1998 + + + + + + 352 + 2 + NLB U.S. Coast Guard, Bulkhead Repair, Marblehead, OH,1999 + + + + + + 352 + 3 + NLB U.S. Coast Guard, Lighthouse Repair, Harbor Beach,1999 + + + + + + 352 + 4 + NLB U.S. Coast Guard, Lighthouse Repair, Harbor Beach, Drawings,1999 + + + + + + 352 + 5 + NLB U.S. Coast Guard, Shoreline Stabilization, Grand Haven,1999 + + + + + + 352 + 6 + NLB U.S. Coast Guard, Shoreline Stabilization, Grand Haven, Blue-lines,1999 + + + + + + 352 + 7 + NLB U.S. Coast Guard, Haulout, Mooring, and Pier Work, Duluth, MN,1999 + + + + + + 352 + 8 + NLB U.S. Coast Guard, Waterfront Renovations, St. Ignace,1999 + + + + + + 353 + 1 + NLB U.S. Coast Guard, Waterfront Renovations, St. Ignace, Drawings,1999 + + + + + + 353 + 2 + NLB U.S. Engineers, Pier Repairs, Saugatuck, 1 of 3,1999 + + + + + + 353 + 3 + NLB U.S. Engineers, Pier Repairs, Saugatuck, Drawings and Photographs, 2 of 3,1999 + + + + + + 353 + 4 + NLB U.S. Engineers, Pier Repairs, Saugatuck, Drawings, 3 of 3,1999 + + + + + + 353 + 5 + NLB Wolverine Power, Repair Power Cable, Cross Village,1999 + + + + + + 353 + 6 + NLB Intake Inspections, Wyoming and Muskegon,1999 + + + + + + 353 + 7 + NLB Channel Dredging, Caseville,1999 + + + + + + 354 + 1 + NLB Environmental River Dredging, Green Bay, WI,1999 + + + + + + 354 + 2 + NLB Dock 22 East Slip Improvment, Cleveland, OH,1999 + + + + + + 354 + 3 + NLB U.S. Engineers, Repair of Dock and West Pier, Cleveland, OH,1999 + + + + + + 354 + 4 + NLB U.S. Engineers, Mechanical Dredging, Rock Island, IL,1999 + + + + + + 354 + 5 + NLB Bridge Fender Repair, Toledo, OH,1999 + + + + + 354 + 6 + NLB Bridge Fender Repair, Cleveland, OH,1999 + + + + + 354 + 7 + NLB U.S. Engineers, East Pier Repairs, Ontognagon Harbor,1999 + + + + + + 354 + 8 + NLB CSX Transportation Bridge 44, Ferrysburg,1999 + + + + + + 354 + 9 + NLB Repairs to North Piers and Revetments, Pentwater Harbor,1999 + + + + + + 354 + 10 + NLB Repairs to North Piers and Revetments, Pentwater Harbor, Drawings,1999 + + + + + + 355 + 1 + NLB U.S. Engineers, Stone Supply, Buffalo, NY,1999 + + + + + + 355 + 2 + NLB Water Systems Improvements, Village of Lexington,1999 + + + + + + 355 + 3 + NLB Dam Modifications, Edenville,1999 + + + + + + 355 + 4 + NLB U.S. Engineers, Chicago Shoreline Storm Drain Reduction, Chicago, IL, Reach #2,1999 + + + + + + 355 + 5 + NLB U.S. Engineers, East and West Breakwater Repairs, Manistique Harbor,1999 + + + + + + 355 + 6 + NLB U.S. Engineers, East and West Breakwater Repairs, Manistique Harbor,, Drawings,1999 + + + + + + 356 + 1 + NLB U.S. Engineers, East-West Breakwater Repairs, Manistique Harbor, Drawings and Photographs,1999 + + + + + + 356 + 2 + NLB Phase #1 Sediment Remedial Action, St. Louis,1999 + + + + + + 356 + 3 + NLB Launching Ramp, St. Ignace,1999 + + + + + + 356 + 4 + NLB U.S. Engineers, Stone Revetment Along Lake Michigan, Escanaba,1999 + + + + + + 356 + 5 + NLB U.S. Engineers, Phase 2 Repairs to MacArthur Lock, Sault Ste. Marie,1999 + + + + + + 356 + 6 + NLB U.S. Engineers, Phase 2 Repairs to MacArthur Lock, Sault Ste. Marie, Drawings,1999 + + + + + + 356 + 7 + NLB U.S. Engineers, Phase 2 Repairs to MacArthur Lock, Sault Ste. Marie, Drawings and Photographs,1999 + + + + + + 357 + 1 + NLB Village Dock Reconstruction, Egg Harbor, WI,1999 + + + + + + 357 + 2 + NLB U.S. Coast Guard, Install Camels and Rub Rails, Cleveland, OH,1999 + + + + + + 357 + 3 + NLB Renovation and Expansion of Town Marina, Baily’s Harbor, WI,1999 + + + + + + 357 + 4 + NLB U.S. Coast Guard, Navigation Tower, Northport,1999 + + + + + + 357 + 5 + NLB U.S. Engineers, Inflatable Dam, Flint,1999 + + + + + + 357 + 6 + NLB U.S. Engineers, Inflatable Dam, Flint, Blue-lines and Drawings,1999 + + + + + + 357 + 7 + NLB Bridge Replacement, Kaleva,1999 + + + + + + 357 + 8 + NLB Bridge Street Boat Launch, Elk Rapids,1999 + + + + + + 357 + 9 + NLB Bridge Street Boat Launch, Elk Rapids, Drawings and Photographs,1999 + + + + + + 358 + 1 + NLB U.S. Engineers, Taconite Harbor of Refuge, Taconite Harbor, MN,1999 + + + + + + 358 + 2 + NLB Place Armor Stone Over Bedding Stone, Sodus Point NY,1999 + + + + + + 358 + 3 + NLB Linnie Lac Dredging, New Berlin, WI,1999 + + + + + + 358 + 4 + NLB U.S. Engineers, Lock Repair, Menasha, WI,1999 + + + + + + 358 + 5 + NLB 42-inch Water Intake, Muskegon Heights,1999 + + + + + 358 + 6 + NLB Marina Dredging, Village of Suttons Bay,2000 + + + + + 358 + 7 + NLB Dam Demolition and Sediment Removal, Big Rapids,2000 + + + + + + 359 + 1 + NLB Dam Demolition and Sediment Removal, Big Rapids, Drawings and Photographs,2000 + + + + + + 359 + 2 + NLB U.S. Coast Guard, Submarine Cable Work, Great Lakes Area,2000 + + + + + + 359 + 3 + NLB Harbor Dredging and Improvements, Grosse Pointe,2000 + + + + + + 359 + 4 + NLB Emergency Dredging of Bois Blanc Island Pier, Pointe Aux Pins,2000 + + + + + + 359 + 5 + NLB Submarine Cables, St. Joe,2000 + + + + + + 359 + 6 + NLB U.S. Engineers, Repairs to Guide Walls, St. Mary’s River,2000 + + + + + + 359 + 7 + NLB Marina – Inner Harbor Wall Improvements, Grosse Pointe,2000 + + + + + + 359 + 8 + NLB Breakwater Extension and Fishing Platform, Rogers City,2000 + + + + + + 360 + 1 + NLB Breakwater Extension and Fishing Platform, Rogers City, Drawings,2000 + + + + + + 360 + 2 + NLB Breakwater Extension and Fishing Platform, Rogers City, Drawings and Photographs,2000 + + + + + + 360 + 3 + NLB U.S. Coast Guard, Dredging, St. Clair Shores,2000 + + + + + + 360 + 4 + NLB Dredging, City of Grosse Pointe Woods,2000 + + + + + + 360 + 5 + NLB CSX Transportation, Toledo, OH,2000 + + + + + + 360 + 6 + NLB LaFarge Corporation, Alpena,2000 + + + + + + 360 + 7 + NLB U.S. Engineers, Alpena Harbor,2000 + + + + + + 360 + 8 + NLB U.S. Engineers, Alpena Harbor, Drawings,2000 + + + + + + 361 + 1 + NLB U.S. Engineers, Lake County, OH,2000 + + + + + + 361 + 2 + NLB U.S. Engineers, Cleveland, OH,2000 + + + + + + 361 + 3 + NLB Gateway Trade Center, Buffalo, NY,2000 + + + + + + 361 + 4 + NLB U.S. Engineers, Porter County, IN,2000 + + + + + + 361 + 5 + NLB Detroit Edison Company, Harbor Beach,2000 + + + + + + 361 + 6 + NLB U.S. Engineers, Rocky River, OH,2000 + + + + + + 361 + 7 + NLB Eastern U.P. Transportation Authority, Drummond Island,2000 + + + + + + 361 + 8 + NLB Eastern U.P. Transportation Authority, Drummond Island, Drawings,2000 + + + + + + 361 + 9 + NLB LaFarge Corporation, Carrollton,2000 + + + + + + 362 + 1 + NLB U.S. Coast Guard, Cleveland, OH,2000 + + + + + + 362 + 2 + NLB U.S. Coast Guard, Lorain, OH,2000 + + + + + + 362 + 3 + NLB Norfolk Southern Railway, Bridge Rehabilitation, Rouge River,2000 + + + + + + 362 + 4 + NLB Bay Aggregate Relocation Site, Contract #1 – Sheet Piling, Bay City,2000 + + + + + + 362 + 5 + NLB Bay Aggregate Relocation Site, Contract #1 – Sheet Piling, Bay City, Drawings,2000 + + + + + + 362 + 6 + NLB Bay Aggregate Relocation Site, Contract #2 – Slip Dredging, Bay City,2000 + + + + + + 362 + 7 + NLB Bay Aggregate Relocation Site, Contract #2 – Slip Dredging, Bay City, Drawings,2000 + + + + + + 363 + 1 + NLB U.S. Engineers, Revetment Repair, Cook County, IL,2000 + + + + + + 363 + 2 + NLB Outfall Rehabilitation, St. Clair Shores,2000 + + + + + + 363 + 3 + NLB Outfall Rehabilitation, St. Clair Shores, Drawings and Photographs,2000 + + + + + + 363 + 4 + NLB Rubblemound Breakwater, Sandusky, OH,2000 + + + + + + 363 + 5 + NLB Net Repair and Installation, Ludington,2000 + + + + + + 363 + 6 + NLB MDOT, Structural and Fender Repair, Wayne City,2000 + + + + + + 363 + 7 + NLB MDOT, Structural and Fender Repair, Wayne City, Drawings,2000 + + + + + + 363 + 8 + NLB Rubblemound and Dredging, Door County, WI,2000 + + + + + + 364 + 1 + NLB Breakwater Rehabilitation, Cleveland, OH,2000 + + + + + + 364 + 2 + NLB Breakwater Rehabilitation, Cleveland, OH, Contract,2000 + + + + + + 364 + 3 + NLB U.S. Coast Guard, Upgrade Boat Haulout, U.S. Coast Guard Base Detroit,2000 + + + + + + 364 + 4 + NLB U.S. Coast Guard, Reroof Three light Lighthouse, Straits of Mackinac,2000 + + + + + + 364 + 5 + NLB U.S. Coast Guard, Reroof Three light Lighthouse, Straits of Mackinac, Drawings and Photographs,2000 + + + + + + 364 + 6 + NLB U.S. Coast Guard, Reroof Three light Lighthouse, Straits of Mackinac, Drawings and Photographs,2000 + + + + + + 364 + 7 + NLB Runway Paving, South Fox Island,2000 + + + + + + 365 + 1 + NLB Ottawa County, MI, Lake Michigan, 1 of 2,2001 + + + + + + 365 + 2 + NLB Ottawa County, MI, Lake Michigan, 2 of 2,2001 + + + + + + 365 + 3 + NLB Ottawa County, MI, Lake Michigan, Drawings,2001 + + + + + + 365 + 4 + NLB U.S. Coast Guard, Grand Haven,2001 + + + + + + 365 + 5 + NLB U.S. Coast Guard, Grand Haven, Drawings,2001 + + + + + + 365 + 6 + NLB NY Department of Environmental Conservation, Strawberry Island, NY,2001 + + + + + + 365 + 7 + NLB Covert Generating Company, South Haven, 1 of 2,2001 + + + + + + 365 + 8 + NLB Covert Generating Company, South Haven, 2 of 2,2001 + + + + + + 366 + 1 + NLB Covert Generating Company, South Haven, Drawings,2001 + + + + + + 366 + 2 + NLB LaFarge Corporation, Detroit,2001 + + + + + + 366 + 3 + NLB Toledo Edison Company, Oak Harbor, OH,2001 + + + + + + 366 + 4 + NLB City of Petoskey, Petoskey,2001 + + + + + + 366 + 5 + NLB City of Munising, Munising,2001 + + + + + + 366 + 6 + NLB U.S. Engineers, Cedar River, 1 of 2,2001 + + + + + + 366 + 7 + NLB U.S. Engineers, Cedar River, 2 of 2,2001 + + + + + + 366 + 8 + NLB U.S. Engineers, Cedar River, Drawings,2001 + + + + + + 366 + 9 + NLB Nuclear Management Company, Point Beach, WI,2001 + + + + + + 367 + 1 + NLB City of Sault Ste. Marie, Sault Ste. Marie,2001 + + + + + + 367 + 2 + NLB City of Sault Ste. Marie, Sault Ste. Marie, Blue-lines,2001 + + + + + + 367 + 3 + NLB City of Munising, Munising,2001 + + + + + + 367 + 4 + NLB U.S. Engineers, Sault Ste. Marie, 1 of 2,2001 + + + + + + 367 + 5 + NLB U.S. Engineers, Sault Ste. Marie, 2 of 2,2001 + + + + + + 367 + 6 + NLB U.S. Engineers, Sault Ste. Marie, Drawings, 1 of 3,2001 + + + + + + 367 + 7 + NLB U.S. Engineers, Sault Ste. Marie, Drawings, 2 of 3,2001 + + + + + + 368 + 1 + NLB U.S. Engineers, Sault Ste. Marie, Drawings, 3 of 3,2001 + + + + + + 368 + 2 + NLB City of St. Ignace, St. Ignace, 1 of 2,2001 + + + + + + 368 + 3 + NLB City of St. Ignace, St. Ignace, 2 of 2,2001 + + + + + + 368 + 4 + NLB City of St. Ignace, St. Ignace, Blue-lines, 1 of 2,2001 + + + + + + 368 + 5 + NLB City of St. Ignace, St. Ignace, Blue-lines, 2 of 2,2001 + + + + + + 368 + 6 + NLB MI Department of Natural Resources, Mackinac Island,2001 + + + + + + 369 + 1 + NLB MI Department of Natural Resources, Mackinac Island, Photographs,2001 + + + + + + 369 + 2 + NLB City of Escanaba, Escanaba,2001 + + + + + + 369 + 3 + NLB City of Escanaba, Escanaba, Drawings,2001 + + + + + + 369 + 4 + NLB LaFarge Corporation, Waukegan, IL,2001 + + + + + + 369 + 5 + NLB U.S. Coast Guard, Grand River, OH,2001 + + + + + + 369 + 6 + NLB LaFarge Corporation, St. Joseph,2001 + + + + + + 369 + 7 + NLB MI Department of Natural Resources, Au Gres,2001 + + + + + + 370 + 1 + NLB Maria Dredging, City of Escanaba,2001 + + + + + + 370 + 2 + NLB U.S. Coast Guard, Waterfront Rebuild Station, Port Huron,2001 + + + + + + 370 + 3 + NLB U.S. Coast Guard, Waterfront Rebuild Station, Port Huron, Drawings,2001 + + + + + + 370 + 4 + NLB Marina Renovations – Phase II, Elk Rapids,2001 + + + + + + 370 + 5 + NLB Marina Renovations – Phase II, Elk Rapids, Drawings,2001 + + + + + + 370 + 6 + NLB Detroit Water Sewerage District, 48-inch Discharge Line, Port Huron,2001 + + + + + + 370 + 7 + NLB U.S. Coast Guard, Sault Ste. Marie,2001 + + + + + + 370 + 8 + NLB Dredging and Clean Up, White Lake,2001 + + + + + + 370 + 9 + NLB Dredging, Manitowoc, WI,2001 + + + + + + 370 + 10 + NLB Dredging, Manitowoc, WI,2001 + + + + + + 371 + 1 + NLB Steel Sheet Pile Bulkhead, Manistee,2001 + + + + + + 371 + 2 + NLB Water Main / Sewer Outfall, Bay City,2001 + + + + + + 371 + 3 + NLB Water Intake Upgrade, Burns Harbor, IN,2001 + + + + + + 371 + 4 + NLB U.S. Engineers, North Revetment Repairs, South Haven,2002 + + + + + + 371 + 5 + NLB U.S. Engineers, North Revetment Repairs, South Haven, Drawings,2002 + + + + + + 371 + 6 + NLB U.S. Coast Guard, Dredging Boat Basin, St. Ignace,2002 + + + + + + 371 + 7 + NLB U.S. Engineers, East and West Pier Repairs, Ontonagon,2002 + + + + + + 372 + 1 + NLB U.S. Engineers, East and West Pier Repairs, Ontonagon, Drawings,2002 + + + + + + 372 + 2 + NLB Clinch Park Marina Improvements, Traverse City,2002 + + + + + + 372 + 3 + NLB Clinch Park Marina Improvements, Traverse City, Drawings, 1 of 3,2002 + + + + + + 372 + 4 + NLB Clinch Park Marina Improvements, Traverse City, Drawings, 2 of 3,2002 + + + + + + 372 + 5 + NLB Clinch Park Marina Improvements, Traverse City, Drawings, 3 of 3,2002 + + + + + + 372 + 6 + NLB Environmental Dredging, White Lake,2002 + + + + + + 372 + 7 + NLB Environmental Dredging, White Lake, Drawings,2002 + + + + + + 373 + 1 + NLB Launching Ramp Construction and Dredging, Bois Blanc,2002 + + + + + + 373 + 2 + NLB U.S. Engineers, Stone Supply, Hancock,2002 + + + + + + 373 + 3 + NLB Edison Sault Electric Company, Sault Ste. Marie,2002 + + + + + + 373 + 4 + NLB South Breakwater Rehabilitation, Racine Harbor, WI,2002 + + + + + + 373 + 5 + NLB Root River Dredging, Racine, WI,2002 + + + + + + 373 + 6 + NLB U.S. Engineers, Sault Ste. Marie,2002 + + + + + + 373 + 7 + NLB U.S. Engineers, Sault Ste. Marie, Drawings, 1 of 2,2002 + + + + + + 373 + 8 + NLB U.S. Engineers, Sault Ste. Marie, Drawings, 2 of 2,2002 + + + + + + 374 + 1 + NLB U.S. Engineers, Two Rivers Harbor, WI,2002 + + + + + + 374 + 2 + NLB U.S. Engineers, Two Rivers Harbor, WI, Drawings,2002 + + + + + + 374 + 3 + NLB City of St. Ignace, St. Ignace,2002 + + + + + + 374 + 4 + NLB City of St. Ignace, St. Ignace, Blue Line Drawings,2002 + + + + + + 375 + 1 + NLB Lorain Sailing and Yacht Club, Lorain, OH,2002 + + + + + + 375 + 2 + NLB NE Ohio Regional Sewer District, Cleveland, OH,2002 + + + + + + 375 + 3 + NLB Environmental Engineering U.S. Steel, Gary, IN,2002 + + + + + + 375 + 4 + NLB U.S. Coast Guard, St. Clair Shores,2002 + + + + + + 375 + 5 + NLB U.S. Coast Guard, St. Clair Shores, Drawings, 1 of 2,2002 + + + + + + 375 + 6 + NLB U.S. Coast Guard, St. Clair Shores, Drawings, 2 of 2,2002 + + + + + +
    +
    + + + + + diff --git a/sample-ead/clements-error/birdfam_final.xml b/sample-ead/clements-error/birdfam_final.xml new file mode 100755 index 0000000..0bd436b --- /dev/null +++ b/sample-ead/clements-error/birdfam_final.xml @@ -0,0 +1,148 @@ + + + + + + umich-wcl-M-2711bir + + + Finding Aid for Bird Family Papers + Collection processed and finding aid created by Clements Staff and Meg Hixon, November 2011 + + + William L. Clements Library, University of Michigan + 2014 + + + + Encoded finding aid created by Cheney J. Schopieray, June 20, 2014 + + The finding aid is written in English + + Finding aid prepared using Describing Archives: A Content Standard (DACS) + + + + 2014-06-20 + Original encoding from Word 2010 file using Word macros and Xmetal. + + + + + + Manuscripts DivisionWilliam L. Clements LibraryUniversity of Michigan + Finding aid forBird Family Papers, 1821-1947 + Finding aid created by Clements Staff and Meg Hixon, November 2011 + + + + + + Bird family + + Bird family papers 1821-1947 + 1879-1941 + + Bird family papers + + 2.25 linear feet + + wclmss000194 + The material is in English + + The Bird family papers are made up of correspondence, documents, ephemera, and other materials related to members of the Bird family of East Smithfield, Pennsylvania. + + + William L. Clements Library, University of Michigan + + + + + +

    1991. M-2711.

    +
    + +

    Cataloging funded by the National Historical Publications and Records Commission (NHPRC). This collection has been processed according to minimal processing procedures and may be revised, expanded, or updated in the future.

    +
    + +

    The collection is open for research.

    +
    + +

    Copyright status is unknown

    +
    + +

    Bird Family Papers, William L. Clements Library, The University of Michigan

    +
    +
    + + Biography +

    Hannah Minor (1802-1902) of Colerain, Massachusetts, and Halifax, Vermont, taught school briefly before marrying Samuel Niles in 1827. The couple moved to Smithfield, Pennsylvania, in 1837 with their children, some of whom were adopted. The couple moved to Burlingame, Kansas, in 1869, where they lived for the remainder of their lives. Their daughter Nancy was born in 1828 and taught school in Halifax, Vermont, before marrying Lark Bird of Smithfield, Pennsylvania. A deeply religious woman, she embraced multiple social causes during her life, serving as secretary for the Soldiers Aid Society of East Smithfield, Pennsylvania, from 1862-1864, and actively participating in the Women's Christian Temperance Union throughout her life. She died in 1914.

    +

    George Niles Bird, son of Lark and Nancy Niles Bird, was born in 1860 and married Frances Rowe in 1883; he worked as a farmer and later kept a general store in Smithfield. Helen, their daughter, was born in 1892 and attended West Chester Normal School for one academic year during 1912 and 1913. Their son Richard married Carrie M. Ballantine on October 12, 1910. Richard and Carrie's son, George Owen, was born in 1915 and received a degree in architecture from Pennsylvania State University in 1939. He joined the United States Army in July 1941, and served as a technical sergeant at Ellington Field, Texas. He was discharged in December 1945.

    +
    + +

    The collection is currently in a temporary arrangement.

    +
    + +

    The Bird family papers are made up of correspondence, documents, ephemera, and other materials related to members of the Bird family of East Smithfield, Pennsylvania. A number of letters written between George Niles Bird and Frances Rowe depict their lengthy, occasionally difficult, courtship in the late 19th century. Letters from other friends and family members are interspersed, including a letter from Hope Rowe recounting the funeral of President James A. Garfield (October 9, 1881).

    +

    Nancy N. Bird's correspondence consists primarily of incoming personal letters. Nancy's cousins wrote many of the letters, with the family's religiosity influencing much of their writing. The Bird family papers include many of Nancy N. Bird's speeches, including a series of talks delivered to fellow members of the Women's Christian Temperance Union (WCTU) between 1886 and 1912. She discussed temperance, religion, and topics of local interest, including the history of Smithfield, Pennsylvania. Nancy N. Bird's printed materials consist primarily of ephemera, programs, and newspaper clippings, largely related to her work with the WCTU and to the Bradford Baptist Association. Also present are three items written by Nancy: a short book entitled A History of the Sunday Schools in East Smithfield, PA. Since 1822, and two copies of The History of the Baptist Church of East Smithfield, PA. Other materials related to Nancy include journal pages, a photograph, and Sunday School papers.

    +

    Helen Bird's letters, written to her mother, chronicle her year at the West Chester Normal School, 1912-1913, and include frequent complaints about the atmosphere, the people, and the food.

    +

    Materials relating to George Bird consist primarily of incoming correspondence from friends and from his cousin Geraldine ("Jerry"). Jerry, who financially supported George during his time at Pennsylvania State University, also offered advice and updates on her academic life at Cornell University, while George's friend Eugene Edgar Doll discussed his experiences at the University of Chicago and his patronage of the arts. The collection also includes reports from George Bird's early studies and from his time at Pennsylvania State.

    +

    Personal letters from other members of the Niles and Bird families include early letters from Hannah Niles to her husband Samuel, and letters addressed to George N. Bird, his wife Frances, and their daughter-in-law Carrie. Two printed letters from "Robert and Bernie" in Impur, India, describe the country and their educational and missionary work; on January 7, 1921, they mentioned Gandhi's non-cooperation movement.

    +

    The collection contains diaries and journals, account books, and albums. The diaries include an 1844 unsigned journal, Hannah Minor Niles' 1866 diary, Nancy Niles Bird's 1851 diary, and Carrie M. Bird's 1921 diary. An account books tracks John Bird's expenses between 1846 and 1858, and a record book kept by Nancy Niles Bird includes the meeting minutes from the Soldiers Aid Society during the Civil War and household accounts. George Bird's autograph album covers the years 1879-1881 and Nancy Niles Bird's scrapbook, kept between 1850 and 1925, contains newspaper articles about her mother Hannah, members of the Bird family, and acquaintances from Pennsylvania and Kansas.

    +

    Other miscellaneous items include a printed map, a document related to the military chapel at Ellington Field, Texas, genealogical items, and manuscript poems.

    +
    + +

    + +

    + + Subjects: + Baptists--Pennsylvania--History. + Binghamton (N.Y.) + Christian women--Religious life. + Cornell College. + Courtship--United States. + Drinking of alcoholic beverages. + Family life. + Hiram College. + Missionaries--India. + Pennsylvania State University. + Postsecondary education. + Smithfield (Pa.) + Sunday schools--United States. + Temperance. + University of Chicago. + West Chester (Pa.) + Woman's Christian Temperance Union. + Women--Education--United States. + + + Contributors: + Bird, Carrie M. + Bird, Helen L. + Bird, Nancy Niles. + Bird, George N. + + + Genre Terms: + Account books. + Autograph albums. + Clippings (information artifacts) + Diaries. + Ephemera. + Letters (correspondence) + Scrapbooks. + Speeches. + +
    + + + + + Bird family papers, 1821-1947 + +

    [View selected images of illustrated manuscripts]

    + 123456
    +
    +
    +
    diff --git a/sample-ead/clements/diedrichdn_final.xml b/sample-ead/clements/diedrichdn_final.xml new file mode 100755 index 0000000..5f3ede1 --- /dev/null +++ b/sample-ead/clements/diedrichdn_final.xml @@ -0,0 +1,1604 @@ + + + + + + + +umich-wcl-M-1523die + + Finding Aid for +Letters, Documents, & Other Manuscripts, Duane Norman Diedrich Collection, 1595-2007 + Collection processed and finding aid created by +Cheney J. Schopieray + +William L. Clements Library, University of Michigan + +2020 + + +Encoded finding aid created by +Cheney J. Schopieray, +April 2020 + +The finding aid is written in English +Finding aid prepared using Describing Archives: A Content Standard (DACS) + + +2020-04-06 Original encoding from Word 2010 file using Word macros and Xmetal. + + + +Manuscripts DivisionWilliam L. Clements LibraryUniversity of Michigan + +Finding aid forLetters, Documents, & Other Manuscripts, Duane Norman Diedrich Collection, 1595-2007 + +Duane Norman Diedrich CollectionFinding aid created by +Cheney J. Schopieray, April 2020 + + + + + + Diedrich, D. N. (Duane Norman), 1935-2018Letters, Documents, & Other Manuscripts, Duane Norman Diedrich collection +1595-20071719-1945Diedrich, Duane Norman, Letters, Documents, & Other Manuscripts +3.5 linear feetwclmss002497The material is in English + The Letters, Documents, and Other Manuscripts of the Duane Norman Diedrich Collection is a selection of individual items compiled by manuscript collector Duane Norman Diedrich (1935-2018) +and the William L. Clements Library. The content of these materials reflect the life and interests of D. N. Diedrich, most prominently subjects pertinent to intellectual, artistic, and social history, education, speech and elocution, the securing of speakers for events, advice from elders to younger persons, and many others. + +William L. Clements Library, University of Michigan +

    1970-2017. M-1523, M-1727, M-1812, M-1829, M-1858, M-1864, M-1884, M-1893, M-1898, M-1900, -1902, M-1907, M-1923, M-1924, M-1949, M-1950, M-1957, M-1958, + M-1968, M-1990, M-2013, M-2014, M-2015, M-2017, M-2019, M-2026, M-2034, M-2055, M-2057, M-2060, M-2074, M-2078, M-2111, M-2118, M-2122, M-2125, M-2144, M-2161, M-2171, M-2175, M-2209, M-2215, M-2226, M-2240, M-2257, M-2258, M-2259, M-2291, M-2308, M-2311, M-2321, M-2371, M-2373, M-2384, M-2389, M-2396, M-2400, M-2443, M-2443a, M-2443b, M-2443l, M-2443m, M-2443o, M-2489, M-2490.3, M-2491, M-2503, M-2508, M-2514, M-2520e, M-2520h, M-2538, M-2637, M-2662, M-2662a28, M-2673, M-2682, M-2688, M-2710, M-2710c, M-2710d, M-2710e, + M-2710h, M-2710i, M-2710k, M-2710l, M-2712.1, M-2714.3, M-2714.12, M-2714.13, M-2714.20, M-2715.1, M-2724.3, M-2725.1, M-2725.2, M-2725.3, M-2725.4, M-2729.1, M-2731.3, M-2737.5, M-2787.3, M-2793, M-2797, M-2807.1, M-2812, M-2812.1, M-2812.3, M-2839, M-2843.2, M-2859, M-2862, M-2862.1, M-2876.1, M-2876.2, M-2880, M-2891.17, M-2892.3, M-2898, M-2898.2, M-2898.3, M-2907, M-2939.4, M-2947.38, M-2975.13, M-2975.6, M-2980.2, M-2980.4, M-2984.6, M-2995.1, M-2999.4, M-3001.5, M-3001.6, M-3006.3, M-3006.4, M-3006.6, M-3006.13, M-3006.18, M-3006.28, M-3011.1, -3011.3, M-3013.4, M-3016.3, M-3017.1, M-3030.3, + M-3046.1, M-3046.2, M-3082.3, M-3093, M-3119.1, M-3120.3, M-3120.7, M-3125, M-3132.2, M-3145.3, M-3159.4, M-3160.2, M-3163, M-3176.3, M-3193.1, M-3193.2, M-3198.6, M-3208.7, M-3219.2, M-3223.6, M-3227.2, M-3228.5, M-3240, M-3279, M-3287, M-3290, M-3298.2, M-3299.1, M-3299.2, M-3299.3, M-3301.3, M-3301.7, M-3312.2, M-3312.3, M-3322.1, M-3327.2, M-3334, M-3342, M-3360, M-3377.1, M-3377.3, M-3377.4, M-3404, M-3443.1, M-3445.3, M-3449.5, M-3449.6, M-3458.5, M-3458.6, M-3460, M-3460.7, M-3476.2, M-3476.4, M-3490, M-3495, M-4009.16, M-4009.2, M-4028, M-4032.1, M-4032.4, M-4052, M-4069, M-4078, M-4106.7, M-4115.2, M-4116.21, M-4121, M-4167, M-4170.1, M-4171.7, M-4173.1, M-4173.3, M-4173.4, M-4173.5, M-4179.2, M-4179.3, M-4191.1, M-4191.3, M-4191.6, + M-4263, M-4272.5, M-4293.2, M-4304.5, M-4306.2, M-4306.6, M-4318.2, M-4334, M-4335.1, M-4335.2, M-4336.3, M-4337.2, M-4338.12, M-4338.14, M-4338.16, M-4338.17, M-4338.18, M-4338.19, M-4338.20, M-4338.21, M-4338.24, M-4338.25, M-4338.26, M-4338.27, M-4338.28, M-4338.29, M-4338.3, M-4338.6, M-4341.1, M-4345.1, M-4348.4, M-4348.7, M-4349.1, M-4356.10, M-4356.11, M-4356.13, M-4356.2, M-4356.4, M-4356.5, M-4356.6, M-4356.7, M-4358.3, M-4370, M-4389, M-4397.1, M-4399.3, M-4400.1, M-4400.9, M-4408.5, M-4409.16, M-4439.10, M-4454.1, M-4454.2, M-4454.3, M-4454.4, M-4454.6, M-4454.7, M-4454.8, M-4456, M-4458.1, M-4507.37, M-4507.39, M-4531.1, M-4531.15, M-4531.2, M-4531.3, M-4531.4, M-4531.5, M-4531.8, M-4547.12, M-4547.13, M-4547.15, M-4547.16, + M-4547.18, M-4547.2, M-4547.24, M-4547.25, M-4547.4, M-4547.7, M-4547.8, M-4547.9, M-4559.2, M-4566.1 , M-4566.2, M-4566.3, M-4566.4, M-4566.5, M-4566.6, M-4566.7, M-4566.9, M-4583.2, M-4600.1, M-4600.10, M-4600.11, M-4600.22, M-4600.23, M-4600.24, M-4600.25, M-4600.26, M-4600.27, M-4600.28, M-4600.31, M-4600.32, M-4600.35, M-4600.4, M-4600.42, M-4600.43, M-4600.44, M-4600.45, M-4600.46, M-4600.47, M-4600.48, M-4600.49, M-4600.50, M-4600.51, M-4600.7, M-4600.8, M-4622.1, M-4622.100, M-4622.101, M-4622.12, M-4622.13, M-4622.14, M-4622.15, M-4622.16, M-4622.17, M-4622.18, M-4622.19, M-4622.2 , M-4622.20, M-4622.23, M-4622.25, M-4622.26, M-4622.27, M-4622.28, M-4622.34, M-4622.36, M-4622.37, M-4622.38, M-4622.39, M-4622.40, M-4622.41, M-4622.42, M-4622.44, M-4622.46, M-4622.47, M-4622.48, M-4622.5, M-4622.50, M-4622.51, M-4622.52, M-4622.54, M-4622.55, M-4622.57, M-4622.58, M-4622.59, + M-4622.62, M-4622.63, M-4622.65, M-4622.66, M-4622.70, M-4622.73, M-4622.76, M-4622.78, M-4622.79, M-4622.8, M-4622.85, M-4622.85, M-4622.86, M-4622.87, M-4622.88, M-4622.89, M-4622.9, M-4622.90, M-4622.91, M-4622.92, M-4622.94, M-4622.96, M-4622.96, M-4622.97, M-4622.98, M-4622.99, M-4623.2, M-4623.3, M-4630, M-4632.1, M-4632.10, M-4632.12, M-4632.2, M-4632.3, M-4632.5, M-4632.6, M-4632.7, M-4632.9, M-4633, M-4634.2, M-4634.3, M-4635.1, M-4635.10, M-4635.11, M-4635.4, M-4635.5, M-4635.6, M-4636.1, M-4636.2, M-4636.4, M-4636.6, M-4636.7, M-4636.8, M-4639.2, M-4639.3, M-4639.4, M-4642.2, M-4642.6, + M-4642.7, M-4643.6, M-4652.4, M-4654.2, M-4657, M-4658.2, M-4658.3, M-4663, M-4668.1, M-4671.1, M-4672.1, M-4676.1, M-4676.4, M-4678.2, M-4678.4, M-4681.3, M-4685.3, M-4698.2, M-4698.3, M-4741, M-4751.1, M-4751.2, M-4751.3, M-4751.4, M-4752.3, M-4752.5, M-4765.1, M-4767.1, M-4767.2, M-4767.3, M-4767.4, M-4782.1, M-4782.2, M-4782.4, M-4801, M-4833.4, M-4869.2, M-4871.9, M-4872.1, M-4872.2, M-4985.2, M-4985.3, M-5009.3, M-5009.4, M-5009.5, M-5015.1, M-5015.2, M-5015.3, M-5015.4, M-5035.2, M-5048.1, M-5048.2, M-5050, M-5088.3, M-6039, M-6040.31, M-7012.3.

    The collection is open for research.

    Copyright status is unknown

    Letters, Documents, & Other Manuscripts, Duane Norman Diedrich Collection, William L. Clements Library, The University of Michigan

    + + +Biography

    Duane Norman Diedrich was born on January 3, 1935, to parents E. L. "Bud" and Blandina Diedrich, in Bloomington, Illinois. His father had a lengthy career as manager and superintendent for the S. S. Kresge Corporation (later the Kmart Corporation) and his mother worked as a German translator and secretary for State Farm Insurance. The family lived in multiple places in the Midwest, including Kalamazoo, Michigan (where D. N. Diedrich graduated from high school), and Peru, Anderson, and Muncie, Indiana.

    + +

    "D. N. Diedrich graduated from the University of Michigan (A.B., 1956; M.A., 1957; Ph.D., 1961), and taught at U-M before leaving to pursue a career in academic teaching and administration elsewhere in the Midwest. Drawing upon an interest in history instilled in him by his parents and inspired by a personal letter from General Douglas MacArthur in 1952, Dr. Diedrich began to collect original manuscript letters, documents, speeches, musical manuscripts, and other primary sources pertinent to American history. His first purchase was an original signature of Theodore Roosevelt on a heavy-stock White House card." (Cheney J. Schopieray, One Hundred Selections from the Duane Norman Diedrich Collection of Manuscript Americana, 17th-20th Century. Ann Arbor, Mich.: William L. Clements Library, 2018: vii-viii).

    + +

    "As a Professor of Speech, Dr. Diedrich incorporated historical manuscripts into his pedagogy. He brought authenticity and authority to his classroom instruction by showing students original speech drafts, podium notes, and varying printed versions of speeches. These materials added relevance, introduced and emphasized concepts, provided illustrations of speechwriting processes, and improved student engagement." (Schopieray, One Hundred ...: xii).

    + +

    "Dr. Diedrich joined the Clements Library Associates during his graduate student days, in 1958, and served on the organization's Board of Governors beginning in 1975. On July 8, 1977, he made an agreement with the William L. Clements Library to build a collection of showpieces and research-rich manuscripts, by giving and adding items to his collection, and contributing funding and expertise. The collection was to include "original, authentic, and historical holograph manuscripts in the categories of religion, education, government, literature, art, music, business, science, and philanthropy." Working collaboratively with the Library, the Diedrich collection would complement existing holdings, add nuance to certain research areas, and help expand the Manuscripts Division's focus, especially to intellectual, artistic, and social history." (Schopieray, One Hundred...: viii).

    + +

    Duane Norman Diedrich died at his home in Muncie, Indiana, on October 25, 2018, and is interred with his parents in Elm Ridge Mausoleum, Muncie.

    +
    + +

    +The collection is arranged chronologically.

    + +

    The Letters, Documents, and Other Manuscripts of the Duane Norman Diedrich Collection is a selection of individual items compiled by manuscript collector Duane Norman Diedrich (1935-2018) and the William L. Clements Library. The content of these materials reflect the life and interests of D. N. Diedrich, most prominently subjects pertinent to intellectual, artistic, and social history, education, speech and elocution, the securing of speakers for events, advice from elders to younger persons, and many others.

    + +

    For an item-level description of the collection, with information about each manuscript, please see the box and folder listing below.

    +
    + +

    + +Subjects: + +Apprentices. +Autographs--Collectors and collecting. +Banks and banking. +Charities. +Christianity. +Church buildings. +Composition (Language arts) +Congregationalists. +Counseling. +Debt. +Education. +Education, Higher. +Elections. +Elocution. +Ethics. +Etiquette. +Fallen Timbers, Battle of, Ohio, 1794. +Guardianship. +Harvard University. +Holidays. +Indians of North America. +King Philip's War, 1675-1676. +Labor. +Libraries. +Music. +Oratory. +Parent and child. +Philippines--History--Philippine American War, 1899-1902. +Political parties. +Poverty. +Presidents--United States--Elections. +Printers--United States. +Quakers. +Schools. +School buildings. +Special events--Planning. +Speech. +Spiritualists. +Students. +Teachers. +Teachers--Salaries, etc. +Theater. +Transportation. +Tuition. +United States. Army. +United States--History--Civil War, 1861-1865. +United States--History--Revolution, 1776-1783. +United States--History--War of 1812. +United States. Marine Corps. +United States--Travel and description. +Washington, George, 1732-1799. +Women. +World War, 1914-1918. +World War, 1939-1945. + + + + + +Contributors: + +Abbott, Jacob, 1803-1879. +Abington (Mass.) +Abt, Franz, 1819-1885. +Adams, Charles Francis, 1807-1886. +Affleck, Thomas. +Aitken, Robert, 1735-1802. +Akst, Harry, 1894-1963. +Alden, Timothy, 1771-1839. +Alexander, Archibald, 1772-1851. +Alexander, James, 1691-1756. +Allen, Edward A. H. (Edward Augustus Holyoke), 1828-1898. +Allen, William H. (William Henry), 1808-1882. +American Society for the Diffusion of Useful Knowledge. +Andrews, John, 1764-1845. +Angel, William Gardner, 1790-1858. +Anthony, Susan B. (Susan Brownell), 1820-1906. +Arthur, T. S. (Timothy Shay), 1809-1885. +Ash, Patrick L. +Bacheldor, John Marvin, 1826-. +Banchen, Charles. +Bancroft, George, 1800-1891. +Bangs, Elijah Keeler, 1780-1856. +Baring-Gould, S. (Sabine), 1834-1924. +Barkley, Alben William, 1877-1956. +Barnes, Albert, 1798-1870. +Barnes, H. P. +Barry, Edward. +Barstow, C. H. (Charles H.), -1908. +Bartlett, John, 1820-1905. +Barton, W. K. +Beall, F. +Beardsley, Levi, 1785-1857. +Beasley, Frederic, 1777-1845. +Beaumont, Victor. +Beecher, Henry Ward, 1813-1887. +Beers, Nathan, 1753-1849. +Belknap, Jeremiah. +Belknap, Jeremy, 1744-1798. +Belknap, Samuel. +Benjamin, Park, 1809-1864. +Benton, Thomas Hart, 1782-1858. +Berlin, Irving, 1888-1989. +Berrien, John MacPherson, 1781-1856. +Beveridge, Albert J. (Albert Jeremiah), 1862-1927. +Beverly, J. Parker. +Biddle, John, 1789-1859. +Biles, Captain. +Bingham, Amelia, 1869-1927. +Bird, Henry D. +Bishop, Henry R., (Henry Rowley), 1786-1855. +Blackburn, George, 1765-1823. +Blaine, James Gillespie, 1830-1893. +Blair, Francis Preston, 1791-1876. +Bolmar, A. (Anthony), 1797-1861. +Boudinot, Elias, 1740-1821. +Boutwell, George S. (George Sewall), 1818-1905. +Brackenridge, H. M. (Henry Marie), 1786-1871. +Bradford, Alden, 1765-1843. +Bradley, Joseph H. (Joseph Habersham), 1802-1887. +Bradley, Tom P. +Bray, Thomas, 1658-1730. +Breed, George. +Brewer, Fred M. +Bridgman, Laura Dewey, 1829-1889. +Brooks, Phillips, 1835-1893. +Brougham, John, 1810-1880. +Brown, Matthew, 1776-1853. +Browne, William B. +Brundage, George C. +Bucher, George J. +Bunnell, Charles P. +Burnside, Ambrose Everett, 1824-1881. +Burr, Jonathan Kelsey, 1825-1882. +Burritt, Elihu, 1810-1879. +Butler, David, 1763-1842. +Byrnes, Daniel, 1773-1851. +Byrns, William, ca. 1839-1875. +Cabot, George, 1752-1823. +Cady, Mary W. +Caldecott, Randolph, 1846-1886. +Calhoun, John C. (John Caldwell), 1782-1850. +Calhoun, William B. (William Barron), 1795-1865. +Campbell, Charles, 1807-1876. +Campbell, John Archibald, 1811-1889. +Campbell, Thomas F. +Carlisle, James M. (James Mandeville), 1814-1877. +Carmichael, M. +Carnegie, Dale, 1888-1955. +Carpenter, Karen, 1950-1983. +Carpenter, Richard, 1946-. +Carroll, Lewis, 1832-1898. +Carter, Galen. +Carver, Edwin J. +Catlin, George, 1796-1872. +Catlin, Putman. +Chambers, Robert, 1802-1871. +Channing, W. H. (William Henry), 1810-1884. +Charles II, King of England, 1630-1685. +Chase, Stephen. +Chiffelle, Thomas P. +Christina, Queen of Sweden, 1626-1689. +Chrysler, Walter P. (Walter Percy), 1875-1940. +Clark, Joseph, 1751-1813. +Clarke, Charles G., Jr. +Clarke, M. St. Clair (Matthew St. Clair) +Cleaveland, J. M. +Clemens, Samuel Langhorne, 1835-1910. +Cleveland, Grover, 1837-1908. +Clymer, George, 1739-1813. +Coffin, Robert Barry, 1826-1886. +Coggshall, Mary. +Coleman, Dan. +Colman, Benjamin, 1673-1747. +Cook, Robert. +Coolidge, Calvin, 1872-1933. +Cooper, Edward, -1889. +Cooper, James Fenimore, 1789-1851. +Cooper, Peter, 1791-1883. +Cormick, Joseph G. +Coughenour, Henry. +Counts, Elijah. +Couper, J. Hamilton (James Hamilton), 1794-1866. +Cowles, William H. +Coxe, Richard S. (Richard Smith), 1792-1865. +Coxe, Tench, 1755-1824. +Craik, William, 1761-1814. +Crawford, David. +Critchley, William. +Cronkrite, J. B. +Crozer, John. +Cullen, Clarence Louis, -1922. +Cumming, Hooper, 1788-1825. +Cummins, R. K. +Curry, A. B. +Curtis, Benjamin Robbins, 1809-1874. +Cushing, Caleb, 1800-1879. +Cutting, John Browne, 1755?-1831. +Cutts, Richard, 1771-1845. +Cuyler, Theodore L. (Theodore Ledyard), 1822-1909. +Dana, Richard Henry, 1815-1882. +Dana, Richard Henry, Jr., 1815-1882. +Danforth, Royal W. +Davidson, John, 1738?-1794. +Davidson, Samuel. +Davis, David, 1815-1886. +Davis, John, 1787-1854. +Day, Jeremiah, 1773-1867. +Dearborn, Henry, 1751-1829. +Delaplaine, Joseph, 1777-1824. +Dempster, William R. (William Richardson), 1809-1871. +Deneale, George, 1766-1818. +Denny, William H. (William Henry), 1796-. +Dent, G. +Depew, Chauncey M. (Chauncey Mitchell), 1834-1928. +Derkheim, David. +Dessolles, Jean-Joseph Paul Augustin. +Dewey, John, 1859-1952. +Dey, Thomas. +Dickens, Catherine, 1815-1879. +Dickens, Charles, 1812-1870. +Dickson, H. A. +Disney, Walt, 1901-1966. +Dixon, Nathan Fellows, 1774-1842. +Dixon, Thomas, 1864-1946. +Donn, Thomas C. +Donnelly, Ignatius, 1831-1901. +Douglass, H. Ford. +Dow, Neal, 1804-1897. +Dreiser, Theodore, 1871-1945. +Dulany, Daniel, 1722-1797. +Dummer, Jeremiah, 1681-1739. +Duncan, John M. (John Morison), 1795?-1825. +Dunham, Daniel. +Duyckinck, Evert A. (Evert Augustus), 1816-1878. +Dwight, Theodore W. (Theodore William), 1822-1892. +Eaton, Samuel, 1737-1822. +Eddy, Samuel, 1769-1839. +Edwards, John. +Edwards, Jonathan, 1703-1758. +Egerton, Mathew. +Eisenhower, Dwight D. (Dwight David), 1890-1969. +Eisenhower, Earl D. (Earl Dewey), 1898-1968. +Eliot, Charles William, 1834-1926. +Eliot, Samuel. +Elliot, C. A. +Elliot, Jonathan, 1784-1846. +Ely, Ezra Stiles, 1786-1861. +Emerson, Ralph Waldo, 1803-1882. +Ennis, Jesse. +Erskine, John, 1721-1803. +Evans, Evan. +Everett, Edward, 1794-1865. +Everett, Moses, 1750-1813. +Farmin, Uriel. +Fenner, Arthur, 1745-1805. +Ferre, Jonathan E. +Ferris, David, 1707-1779. +Fessenden, Benjamin, 1701-1746. +Fessenden, William Pitt, 1806-1869. +Fiero, Caroline. +Finney, Charles G., 1792-1875. +Fish, Hamilton, 1808-1893. +Flanagan, Virginia. +Ford, John. +Foster, John C. +Fowle, William B., 1795-1865. +Fowler, John W. +Fowler, O. S. (Orson Squire), 1809-1887. +Fredericksburg Academy (Fredericksburg, Va.) +French, Daniel Chester, 1850-1931. +Frost, Elizabeth. +Furness, William Henry, 1802-1896. +Gales, Joseph Jr., 1786-1860. +Gallatin, Albert, 1761-1849. +Gallaudet, Edward Miner, 1837-1917. +Gaston, William, 1788-1844. +Gates, J. +Gayley, Charles Mills, 1858-1932. +Geming, A. W. +Gerry, Elbridge, 1744-1814. +Gibbs, George. +Gideon, Jacob, 1779-1864. +Gilman, Arthur, 1837-1909. +Gilpin, Henry D. (Henry Dilworth), 1801-1860. +Githens, Willliam Henry Harrison, 1840-1923. +Goddard, J. H. +Gontz, J. D. +Goodale, Hannah, 1787-. +Gore, Christopher, 1758-1827. +Gough, John B. (John Bartholomew), 1817-1886. +Graves, Charles. +Grayson, Clifford Prevost, 1857-1951. +Greeley, Horace, 1811-1872. +Greenleaf, Benjamin, 1732-1799. +Griffith, Henry Wharton. +Grote, Elisha. +Guiffrida, Francis. +Guilford, William. +Guthrie, James, 1792-1869. +Hackley, Charles William, 1809-1861. +Haley, S. G. +Hall, John L. +Hallsted, John B. +Hamilton, Alexander, 1786-1875. +Hamilton, James, Jr., 1786-1857. +Handy, W. C. (William Christopher), 1873-1958. +Haney, John. +Harrington, George. +Harrison, Benjamin, 1833-1901. +Haskins, Charles Homer, 1870-1937. +Hawley, Gideon, 1785-1870. +Hawley, Joseph R. (Joseph Roswell), 1826-1905. +Hawthorne, Julian, 1846-1934. +Hayden, Charles, 1764-. +Heath, Joseph. +Heckewelder, John Gottlieb Ernestus, 1743-1823. +Hedge, Frederic Henry, 1805-1890. +Hendricks, Thomas A. (Thomas Andrews), 1819-1885. +Henry, Joseph, 1797-1878. +Henshaw, Charles. +Herrick, Cheesman Abiah, 1866-1956. +Higgins, Lizzie. +Higginson, Edward, d. 1922. +Hildeburn, Charles Swift Riché, 1855-1901. +Hill, Charles. +Hill, Thomas, 1818-1891. +Hoar, George Frisbie, 1826-1904. +Hodge, Andrew. +Hoffman, Josef, 1876-1957. +Holbrook, Joseph C. +Holland, J. G. (Josiah Gilbert), 1819-1881. +Holmes, Oliver Wendell, 1809-1894. +Homer, Winslow, 1836-1910. +Hoover, Herbert, 1874-1964. +Hopkinson, Joseph, 1770-1842. +Horsford, Eben Norton, 1818-1893. +Hosack, David, 1769-1835. +Houston, David Franklin, 1866-1940. +Hovey, Edmund Otis, 1801-1877. +Hughes, Thomas, 1822-1896. +Huntington, Daniel, 1816-1906. +Huntington, John. +Hyrne, Edward. +Idler, Jacob. +Ingersoll, Ernest, 1852-1946. +Ingersoll, Robert Green, 1833-1899. +Ireland, William. H., Jr. +Irving, Wag D. K. +Jackson, Andrew, 1767-1845. +Jackson, Joseph. +Jacobs, M. (Michael), 1808-1871. +Jay, John, 1817-1894. +Johnson, Abigail. +Johnson, Francis, 1792-1844. +Jolson, Al, 1886-1950. +Jones, C. S. +Jones, J. +Judson, A. +Kalmar, Bert, 1884-1947. +Keith, Agnes. +Keith, Thomas. +Kemble, Fanny, 1809-1893. +Kemp, A. L. +Kemp, John, 1763-1812. +Kennan, George, 1845-1924. +Kennedy, John F., Jr., 1960-1999. +Kern, Jerome, 1855-1945. +Keyser, Adolphus. +Kilpatrick, Judson, 1836-1881. +Kingsland, A. +Kingsland, D. +Kinney, Benjamin Harris, 1821-1888. +Knox, Henry, 1750-1806. +Krummer, John G. +Kryzanosky, Wenzel. +L. L. Todd & Company. +Lamb, Caroline, Lady, 1785-1828. +Lancaster, Joseph, 1778-1838. +Landon, Melville D. (Melville DeLancey), 1839-1910. +Lanman, Charles, 1819-1895. +Launy, Charity. +Laurence, Abraham R. +Lee, Edmund Jennings, 1797-1877. +Lee, Robert E. (Robert Edward), 1807-1870. +Lindsey, John, 1821-1887. +Link, H. +Linnell, Nathan Seabury. +Little, Marion N. +Little, Josiah, 1747-1830. +Little, Moses, 1724-1798. +Lloyd, James Hendrie, 1853-. +Lodge, Henry Cabot, 1850-1924. +Long, Robert, approximately 1602-1673. +Loring, S. D. +Lowell, James Russell, 1819-1891. +Lukens, Cyrus. +Lyell, Charles, Sir, 1797-1875. +Lykins, Johnston, 1800?-1876. +Lyon, Mary, 1797-1849. +Maclaurin, Richard C. (Richard Cockburn), 1870-1920. +Mallbone, Thomas. +Malone, John. +Mason, William, 1829-1908. +Mather, John P. C. (John Perkins Cushing), 1816-1891. +Maurois, André, 1885-1967. +Mayo, Charles H. (Charles Horace), 1865-1939. +Mayo, William James, 1861-1939. +McCalla, John Moore, 1793-1873. +McCarthy, Eugene, 1916-2005. +McClan, Robert, Jr. +McCoy, Isaac, 1784-1846. +McDowell, Samuel. +McGuffey, William Holmes, 1800-1873. +McLain, William, 1806-1873. +M'Dowell, George, 1766 or 1767-1841. +Metcalfe, Thomas, 1780-1855. +Milledge, J. +Miller, Ferdinand von, 1813-1887. +Miller, Samuel, 1769-1850. +Milman, Henry Hart, 1791-1868. +Minor, Seth. +Moffit, Samuel. +Montgomery, James, 1771-1854. +Moodey, Samuel, 1676-1747. +Moody, Dwight Lyman, 1837-1899. +Moore, Thomas, 1779-1852. +Morris, Richard. +Morris, Robert, 1734-1806. +Morris, Staats Long, 1728-1800. +Morse, Jedediah, 1761-1826. +Morse, Samuel Finley Breese, 1791-1872. +Morton, J. Sterling (Julius Sterling), 1832-1902. +Morton, Nathaniel, 1613-1685. +Motley, John Lothrop, 1814-1877. +Mott, Lucretia, 1793-1880. +Murray, Catherine E. +Nast, Thomas, 1840-1902. +Nekervis, William. +Newburyport (Mass.). Selectmen. +Newhall, D. Wendell. +Newman, Jesse. +Nisbet, Charles, 1736-1804. +North, William, 1755-1836. +Nott, Eliphalet, 1773-1866. +Noyes, Joseph. +Obama, Barack. +Oden, Benjamin. +Ogden, John Cosens, 1751-1800. +O'Neal, Manuel M. +Orcutt, Samuel. +Ord, George, 1781-1866. +Otis, Harrison Gray, 1765-1848. +Otto, William T., 1816-1905. +Ould, Robert. +Owen, Robert, 1771-1858. +Owens, Mary. +Owens, Thomas. +Packard, Abel. +Palmer, Erastus Dow, 1817-1904. +Park, Edwards Amasa, 1808-1900. +Park, Laura Hall, 1828-1875. +Parker, Francis Edward, 1821-1886. +Parker, Theodore, 1810-1860. +Parsons, Chase Prescott, 1832-1879. +Parsons, Josiah. +Patten, Richard. +Peabody, George Foster, 1852-1938. +Peabody, George, 1795-1869. +Peabody, Jacob. +Peale, Rubens, 1784-1865. +Pearson, E. A. +Peary, Robert E. (Robert Edwin), 1856-1920. +Peck, Jesse T. (Jesse Truesdell), 1811-1883. +Pells, C. L. +Pepys, Samuel, 1633-1703. +Perit, John W. +Phelps, Almira Hart Lincoln, 1793-1884. +Phelps, Amos A. (Amos Augustus), 1805-1847. +Pickering, Timothy, 1745-1829. +Pierce, Franklin, 1804-1869. +Pierrepont, Edwards, 1817-1892. +Pitman, Isaac, 1813-1897. +Poe, Neilson. +Polhaus, J. W. +Poore, Benjamin Perley, 1820-1887. +Potter, Zilbast. +Powell, Levin M., 1800-1885. +Prentiss, S. S. (Seargent Smith), 1808-1850. +Prescott, F. M. +Prescott, William Hickling, 1796-1859. +Quevedo, John R .H. +Quincy, Josiah, 1772-1864. +Ralli, Pandias Theodore, ca. 1809-1882. +Rathburn, J. A. +Reed, Joseph, 1772-1846. +Reinhart, Benjamin Franklin, 1829-1885. +Rexford, Eben E. (Eben Eugene), 1848-1916. +Rice, John H. (John Holt), 1777-1831. +Rice, Thomas Dartmouth, 1808-1860. +Richards, William C. (William Carey), 1818-1892. +Ricord, Elizabeth Stryker, 1788-1865. +Riggs, Lawrason, 1814-1884. +Ringgold, Tench. +Ripley, Ezra, 1751-1841. +Ritzema, Johannes, 1707-1794. +Rives, John C. (John Cook), 1795-1864. +Roach, Edward N. +Robert, Henry M. (Henry Martyn), 1837-1923. +Robinson, Amos. +Robinson, David F., 1801?-1862. +Rockefeller, John D., Jr. (John Davison), 1874-1960. +Rogers, Daniel K. +Rogers, H. L. +Rogers, William A. +Rohr, George. +Roosevelt, Franklin D. (Franklin Delano), 1882-1945. +Roosevelt, Theodore, 1858-1919. +Root, Jesse, 1737-1822. +Rubinstein, Artur, 1887-1982. +Ruby, Herman, 1891-1959. +Rumford, Benjamin, Graf von, 1753-1814. +Rumpeltes, William M. +Rush, Richard, 1780-1859. +Sackett, William Augustus, 1811-1895. +Sage, Russell, 1816-1906. +Sawyer, Salmon. +Schlatter, Michael, 1716-1790. +Schosert, Helen. +Schurz, Carl, 1829-1906. +Scofield, A. +Sears, Josiah. +Seaton, William Winston, 1785-1866. +Sergeant, John, 1779-1852. +Shanklin, James Maynard, 1836-1863. +Shaw, William. +Shea, Phil. +Sherman, William T. (William Tecumseh), 1820-1891. +Shipley, William. +Shumway, Horatio. +Sidall, Joseph H. +Silliman, Benjamin D. (Benjamin Douglas), 1805-1901. +Sills, Henry. +Small, P. A. +Small, S. +Smith, B. F. +Smith, Harry B. (Harry Bache), 1860-1936. +Smith, Henry, 1766-1818. +Smith, John, 1781-1854. +Smith, Thomas Lacey, 1805-1875. +Snell, Thomas, 1774-1862. +Speed, James, 1812-1887. +Sprague, Samuel. +Sprague, William B. (William Buell), 1795-1876. +Staebler, Charles A. +Stanton, Edwin L. (Edwin Lamson), 1842-1877. +Stanton, Elizabeth Cady, 1815-1902. +Stanton, Richard. +Stearns, William A. (William Augustus), 1805-1876. +Stephens, Lemuel. +Stewart, George W. +Stowe, Harriet Beecher, 1811-1896. +Strauss, Johann, 1825-1899. +Strickland, William, 1787-1854. +Stuart, Alexander H. H. (Alexander Hugh Holmes), 1807-1891. +Studer, Jerome. +Sumner, Charles, 1811-1874. +Sumner, George. +Swing, Joseph M. (Joseph May), 1894-1984. +Taft, William H. (William Howard), 1857-1930. +Tallmadge, Benjamin, 1754-1835. +Talmage, T. De Witt (Thomas DeWitt), 1832-1902. +Taylor, Bayard, 1825-1878. +Taylor, Charles. +Taylor, Zachary, 1784-1850. +Tenent, John, Jr. +Terry, Geer, 1775-1858. +Thacher, Peter, 1677-1739. +Thompson, Mary Nexsen. +Thompson, Rebecca B. +Tibbets, C. E. +Titcomb, Henry. +Todd, John B. S. (John Blair Smith), 1814-1872. +Todd, Samuel. +Tordoff, Joseph B. +Totten, Catlyna. +Town, Ithiel, 1784-1844. +Trotter, Newbold Hough, 1827-1898. +Trueblood, Thomas C. (Thomas Clarkson), 1856-1951. +Truman, Harry S., 1884-1972. +Tucker, Ebenezer, 1758-1845. +Tyler, John, 1790-1862. +Tyler, Royall, 1757-1826. +Union College (Schenectady, N.Y.) Trustees. +Upham, Timothy, 1807-1843. +Urieta, Maria de. +Van Dyke, Henry, 1852-1933. +Vandergrift, William. +Varick, Richard, 1753-1831. +Vattemare, Alexandre, 1796-1864. +Virginia. General Assembly. House of Burgesses. +Wadsworth, James Wolcott, 1877-1952. +Walker, Zachariah. +Walt Disney Productions. +Walter, Bruno, 1876-1962. +Wanamaker, John, 1838-1922. +Wanzer, George. +Warfield, Catherine A. (Catherine Ann), 1816-1877. +Waring, M. +Warren, William Fairfield, 1833-1929. +Washington, Booker T., 1856-1915. +Waterbee, Samuel. +Watson, James W. +Wayland, Francis, 1796-1865. +Webster, Daniel, 1782-1852. +Webster, Noah, 1758-1843. +Weed, Elijah. +West, J. J. +West, Stephen. +Wharton, Arabelle Griffith. +Wharton, Emily. +Wharton, Thomas I. (Thomas Isaac), 1791-1856. +Wharton, Mary. +White, Andrew Dickson, 1832-1918. +White, William Allen, 1868-1944. +Whiton, John M. (John Milton), 1785-1856. +Whittier, John Greenleaf, 1807-1892. +Wightman, Thomas. +Wilkins, John, 1761-1816. +Willard, Emma, 1787-1870. +Willard, Joseph, 1738-1804. +Willcut, David. +Williams, Adèle Cutts Douglas, 1835-1899. +Williams, Thomas H. +Williams, William, 1731-1811. +Willig, George, 1764?-1851. +Willis, Henry. +Willis, Nathaniel Parker, 1806-1867. +Wilmot, David, 1814-1868. +Wilson, Thomas, 1703-1784. +Wilson, Woodrow, 1856-1924. +Winslow, Philinda. +Winthrop, John, 1588-1649. +Winthrop, Robert C. (Robert Charles), 1809-1894. +Wirt, William, 1772-1834. +Wood, Joseph, approximately 1778-1830. +Woolworth, Aaron, 1763-1821. +Woolworth, Frank Winfield, 1852-1919. +Wright, Horatio Gouverneur, 1820-1899. +Wroughton, Ann. +Wroughton, Thomas. +Wyman, Morrill, 1812-1903. +Yates, Eliza M. +Yates, M. T. (Matthew Tyson), 1819-1888. +Yeates, Jasper, 1745-1817. +Young, E. B. +Zane, Isaac, 1743-1795. +Zanuck, Darryl Francis, 1902-1979. + + + +Genre Terms: +Bills of exchange. +Documents (object genre) +Certificates. +Circulars (fliers) +Diaries. +Engravings (prints) +Letters (correspondence) +Lists (document genres) +Notebooks. +Pamphlets. +Photographic postcards. +Photographs. +Poems. +Receipts (financial records) +Speeches (documents) +Weather diaries + + + +
    + + + + +Letters, Documents, and Other Manuscripts, Duane Norman Diedrich Collection, 1595-2007 +11595 November 6. Maria de Urieta DS (with attachments) to Juan Perez de Aguirre; San Luis Minas de Potosi, [Mexico]12 pagesLoan of money by Juan Perez de Aguirre to Maria de Urieta (free woman of African descent), guaranteed by Juan de Vargas. [In Spanish. No translation.] +1645 June 5. John Winthrop ADS; [Boston, Massachusetts]1 page"Joan the wife of Jo:Stowe of Hull sworne sayth that she knoweth Purnell the wife of Jo:Bartoll & did come over in the shippe with her, & she sayth that her carriage was vere light, & havinge her Cabin near this attestant, she did once or twice rise in the night from her children & they would crye in her absence; & she was verye familiar with the Boatswain & would oft. sitt drinking tobacco wth him: & this is the worst that this Attestant did see or knowe by her." +1652 August 25. Christina ADS to Johann Olafsson Kiernin; Stockholm, [Sweden]1 pageOfficial document, with seal [Iin Swedish. No translation]. +1667 July 13. Rob[ert] Long DS; [London, England]1 pageWarrant for issuance to Samuel Pepys (1633-1703) of taxes and money for the use of the "Citty port and Garrison of Tanger." [Gift of Enid Gosling in the name of John Gwynne Gosling and John R. G. Gosling.] +1674 July 31. Charles II, King of England; Samuel Pepys DS; Windsor Castle, [England]1 pageConfirmation of a warrant granted by the Duke of York for Thomas Beckford to become slopseller to the Royal Navy. Also signed by Samuel Pepys. Includes a note dated June 26, 1662, pasted on the verso, "D of Y- For ye delivering of all books and papers relating to ye victualing into ye hands of Saml Pepys Esqr." [Gift of Enid Gosling in the name of John Gwynne Gosling and John R. G. Gosling.] +1677 January 28. Daniel Dunham ADS; Plymouth, [Massachusetts]1 pageDunham's last will and testament, bequeathing all property to his wife, Hannah, "to her proper use & dispose for the benefit of her and my two children," Hannah and Mehetabel. Docketed on verso by Nathaniel Morton (1613-1685). +1678/79 March 8. Nathaniel Morton DS; New Plymouth, [Massachusetts]1 page"Respecting the disbursements and charge of the Late Indian warr." Provides financial details and land agreements between New England colonies following the fighting with Native Americans in King Phillip's War. [Original in Gold Star Collection] +1694 June 4. Ann and Thomas Wroughton DS to George Hooper; Dorchester County, Maryland2 pagesDeed transferring ownership of land on eastern shore of Maryland to Hooper for 3000 pounds of tobacco. Includes Wroughtons' "marks." +1700 September 2. Edw[ar]d Hyrne ALS to Wife [Elizabeth Massingberd Hyrne?]; Charlestown, [South Carolina]3 pagesPersonal letter to his wife commenting on the birth of their son and his desire for her to join him in Charlestown. Notes household difficulties without her. Discusses merchant affairs, such as the shipment of goods to Jamaica, purchasing a plantation, and other financial matters. "My Dear I am come into a Country where great improvem[en]t may be made of Money, & if I had yo'r Fortune in my Hands or 1/2 or 1/3 of it, I cou'd make more Advantage of it here (w'th God's Blessing) in a few Years than my Lord chancellor can do w'th putting it out at Interest whilst we live." Acknowledges difficulties of living in the southern colonies. Briefly mentions the sale of wine in South Carolina. Addressed to Burrell Massingberd. +1700 November 13 and 1700 November 19. Edw[ar]d Hyrne Cy and ALS to Brother; Charlestown, [South Carolina]3 pagesUpset by the handling of their affairs in chancery, and the Lord Chancellor's decrees that were prejudicial to his wife's interests. Has been offered a new plantation on the Cooper River within ten miles of Charleston. Describes the plantation in detail. He would purchase it if he believed his wife had enough money. "...you must know that tho a small Plantation may & will maintain a Family very handsomly; so that they shall want for nothing (provided they have Slaves proportionable to manage it w'ch must always be understood) yet it will not raise an Estate in a great many Years, nor then neither, w'thout great Frugality." Notes the profitability of cattle. +1704 July 7. Elizabeth Frost DS to Thomas Lincoln; Boston, [Massachusetts]1 pageGrants power of attorney to Lincoln. Signed by Samuel Sewall, Jr., and Jane Green. +[ca. 1705]. [Thomas Bray] AMs.; [London, England]3 pages"A General Plan Of a Penitential Hospital for the Employing and Reforming Lewd Women." Notes that the lack of employment drives women to "that abominable Course of Life." Imprisoning the women "is to expose them to the same Temptations afresh." Warns against sending them to the colonies before reformation, comparing it to sending plague victims "to the unspeakable mischief of the people there, and the scandal of the Christian Religion." Recommends the construction of a house next to a church to supervise, employ, and reform the women, including through prayer and mortification. +1710 May 3. Jer[emiah] Dummer, Jr. ALS; London, [England]1 pageHeartily sorry for affairs in Massachusetts Bay: "Learning & good manners have been travelling westward severall thousand years, & ‘tis a pitty methinks they should Journey on & goe to the westward of New England by our driving away the hopefull young men to the Colony of Connetticut. I don't know any candidates for the ministry that will equall Mr. Adams & Mr Cuttler, when we have lost." Siege of Douai has caught the French by surprise. "We shall in all probability kindle such a fire in France as will burn to the foundations of it." Quarrelling at home over Dr. Henry Sacheverell (1674?-1724): "The Clergy, Women & the Mobb are almost universally on his side... Many People christen their children Sacheverell, beleiving it will engage a blessing upon their posterity, whilst with equall extravagance many people call their Dogs by that name. ‘T is well this Parliament has a year longer to set, for were there to be a new election now, it might make a Civil War." Includes a note on Dummer on the verso, dated April 3, 1841. +1714/15 February 8. Doc.; [Boston, Massachusetts?]5 pagesMemorandums and Inspections on a towns' inhabitants, many of which are women. Written by three different people reporting on inhabitants possibly involved in immoral or criminal conduct or suffering from poverty. Notes women living without their husbands and those suspected of having "fowle disease." Mentions people's housing and its condition. Notes those believed to be idle. Includes a reference to a man and his wife who "keep an Indian Woman" and a woman who "lives alone (save a Negro woman sometimes with her)." Notes a mixed-race man married to a Native American. +1717 May. Samuel Mo[o]dey DS; York, [District of Maine]2 pagesMoodey and the Church of Christ at York recommend Margaret Hilton to the Church of Christ at Manchester following her removal there. "We Comit her to ye Watch &c Beseeching you to Receive her in ye Lord, as becometh Saints." Includes notes written by a descendant. "She probably united with the church at York, after being driven from Moscongus 1696 by the Indians." Verso includes a note from J.B. to Moodey, dated Boston, April 24, 1717, requesting prayers. +1719 June 19. Joseph Heath ALS; DS to Edward Hutchinson; Brunswick, [District of Maine]3 pages [total]Provides details of a recent survey of Arrowsic Island, Maine, noting it contains less acreage and meadowlands than expected. Also includes financial accounts between Edward Hutchinson and the "Co. of the 15 Year Scheme" from January 1741 to August 1760, signed by Joshua Winslow. +1719 November 24. Joseph Jackson Partially printed DS; Boston, [Massachusetts]1 pageBill of lading, with printed illustration of a sailing ship. "Shipped by the Grace of God in good Order and well Conditioned, by Jona[than] Belcher." Shipment of "flower" from Boston to Piscataqua. "And so God send the good Ship to her desired Port in safety. Amen." +1722 December 16. [James Alexander] ADf to John Clark; New York, [New York]1 pageAsks Clark, a bookseller, to pay the bearer upon delivery of a "Steel Seal" cut with a coat of arms. Includes a pen and ink illustration of the coat of arms. +1722/23 January 22. Samuel Sprague ACyS to Josiah Marshall; Rochester, [Massachusetts]1 pageCertification of Josiah Marshall to teach grammar school, as Samuel Hunt (1681-1730) and Timothy Ruggles (1685-1768) examined his education and character. Selectmen Samuel Sprague and John Briggs note that the town has agreed to hire Marshall "to be our schoolmaster to Teach Chilldren to Read Wright Cipher and Latten." +1725 September 16. Josiah Sears DS to Joseph Staples; Bridgewater, [Massachusetts]1 pageContract apprenticing 8-year-old Mary Sears of Bridgewater to learn to "sew, spin both woolen and Linein" and to learn to read and write under Joseph Staples of Yarmouth. "She shall not commit fornication, nor contract matrimony with in the said term." Witnessed by Nath[anie]l and Abigail Otis. +[1727] July 24. B[enjamin] Fessenden ALS to Thomas Prince; Sandwich, [Massachusetts]1 pageIntends to visit Boston. Has heard of Mr. Eldad "going forth." Comments on the establishment of separate meetings and his surprise at Mr. Ruggle's advice about manning pulpits. Notes meetings among the "Dissatisfyed." "We had a full Assembly Yesterday, making Sanwich Allowances for the Season." +1730/31 February 25. Benjamin Colman and Peter Thacher ALS? to [Nathanael] Eells; Boston, [Massachusetts]4 pagesDispute over the censure of Benjamin Fessenden, pastor of Sandwich, Massachusetts. They believe that suspension of ministers "must be done upon no other Grounds than clear Necessity, unquestionable authority, and Reasons & Proofs proportioned to the weight of the Sentence." Disagree with the council's procedures and feel it violated the Congregational constitution, platform, and principles. Discusses the limited authority of Synods and Councils over individual churches. "... we w[oul]d be very ready to bear our Testimony ag[ain]st ch[urc]hs & Min[ister]s for gross, known & proved faults. But we dare not take suspicions for Proofs, nor break in upon the Dear Liberties of Men, & the peace of Society." +1732 December 29. Benj[amin] Colman ALS; s.l.1 pageWrites regarding an unsettled financial dispute over an estate. "How all ye Income of ye Estate those last years should be spent, is like ye other Mysteries of Iniquity before us." +[after 1734 May 28]. Jacob Peabody ADS; Topsfield, [Massachusetts]1 pageTwo extracts from the Topsfield town book, by Jacob Peabody, town clerk, concerning committees appointed at "a Legall Town Meeting" to hire a schoolmaster. Appointed John Howlet, Eliezer Lake, and George Bixby on 1731/2 March 21. Appointed Eliezer Lake, George Bixby, and John Wildes on 1734 May 28. + +1734 September 8. Charles Taylor ALS to [Society for the Propagation of the Gospel in Foreign Parts]; Richmond County, [New York]1 pageRequests salary from Society for instructing 44 poor youth for previous half year. "...the most of them I teach to write and Cypher I teach all of them the Church Catechism with the Explanation thereof & to bear a part in the Publick Worship I have taught several of them upon account of the venerable Societies bounty without any other Consideration." Witnessed and signed by "the Minister and the Justices of his Majesties peace." +1735/6 March 8. Charles Taylor ALS to [Society for the Propagation of the Gospel in Foreign Parts]; Richmond County, [New York]1 pageRequesting compensation for teaching 28 students. Witnessed and signed by "the Minister and the Justices of his Majesties peace." +1738 February 22. Henry Willis DS to Jonathan Fouwell; Orange County, [Virginia]1 pageFine levied against Fouwell "for swearing three oaths," to be paid to the church warden. +1738 June 16. Jer[emia]h Belknap DS to Christopher Kilby; Boston, Massachusetts2 pagesArticles of Agreement between Jeremiah Belknap and Christopher Kilby over the rights to a waterway under Brattle Street in Boston. The agreement stipulates that the Belknaps are able to use, amend, and repair the watercourse on Kilby's land - "to bear & pay all the Cost & charge which shall be Expended by digging or breaking up the ground and unstopping amending or repairing the said Draine or Watercourse, and will do as little hurt or Spoil as may be to the sd Kilbys land, and to Exonerate and freely discharge him and keep him harmless from paying any part of the Charge in repairing the said Draine..." The agreement is based on an earlier agreement between Joseph Belknap (Jeremiah's father) and Thomas Wallis, April 10, 1704. Witnessed and signed by John Haslot and Samuel Swift, Jr. +1741 October 7. David Ferris and William Shipley AM to John Swett [estate]; Wilmington, [Delaware]2 pagesInventory and appraisal of John Swett's estate by Ferris and Shipley. Contains a detailed listing and valuation of his house, furnishings, clothing, horses and tack, and one year of John Williams' time, possibly as an indentured servant. Included in this folder is a legal document from William Shaw to John Swett, New Castle, [Delaware], 1741 November 19. +1741 November 19. William Shaw Partially printed DS to John Swett [estate]; New Castle, [Delaware]1 pageBenjamin Franklin printing of legal document, signed by New Castle Register William Shaw, concerning the Swett estate. Elaborately cut-out and embossed Delaware seal. Included in this folder is an inventory and appraisal of the John Swett estate by David Ferris and William Shipley, Wilmington, [Delaware], 1741 October 7. +1749 April 1. Thomas Mallbone AMsS; Cambridge, [Massachusetts]34 pagesManuscript copy of laws of Harvard College, "made by the President and Fellows, and consented to by the Overseers of said College. Anno Domini 1734." Admittance of T. Mallbone to Harvard signed by Edward Augustus Holyoke (1728-1829), Henry Flynt (1675-1760), Joseph Mayhew, and Thomas Marsh. Includes one page written in Greek +1750 March 15. J[ohannes] Ritzema ALS to Benjamin Meynema; New York, [New York]1 page[Written in Dutch. No translation.] +[1750]. J[ona]th[an] Edwards ALS to Rev. [Joseph] Bellamy; Northamp[ton, Massachusetts]1 pagesCouncil will meet in Northampton in May to "look into the state of things and give me advice with respect to my duty in my circumstances; and also to give advice to the people here that have adhered to me what cause they shall take under their very difficult circumstances." Wants Rev. Bellamy to attend. "I shall think it of great Importance that some ministers should be here that give a fair Representation of things relating to Canaan & Stockbridge." Notes several ministers he hopes to call for the council. +1757-1885. 41 DSs; 44 pages [total]Tuition receipts. Includes receipts for male and female students from Louis Agassiz (1807-1873), public schools, boarding schools, music lessons, etc. +1759 January 15. [Thomas] Wilson AN to [Thomas] Broughton; London, [England]"Dr. Wilson desires upon ye Terms of ye Society 150 of ye Indian Instructed to be sent to our Plantations & Islands in America." Possibly referencing Wilson's work The Knowledge and Practice of Christianity Made Easy to the Meanest Capacities: Or, an Essay Towards an Instruction of the Indians. +1759 December. Samuel Eaton AMsS; [Cambridge, Massachusetts]30 pagesManuscript copy of Harvard College's laws, likely penned by Samuel Eaton upon admission. "This Body of Laws for Harvard College was made by the President and Fellows thereof, and consented to by the Overseers of said College Anno 1734." Signed on the last page by Edward Holyoke (1689-1769), Belcher Hancock, Thomas March, William Kneeland, and Joseph Jackson. +1763 May 21. Amos Robinson ALS to Eliezer Lake; Lebanon, [New Hampshire?]1 pageHas had trouble paying his debts due to his struggling trade. "Our people are so universally in Debt yt they but few git Clothes and them yt Do Cant Pay for ye Making Not More than one Quarter of ym Which Makes it Verry Difficult for me." Includes religious sentiments. +1766 February 10. Michael Schlatter Partially printed DS to Nathan Potts and Priscilla Morgan; Philadelphia, [Pennsylvania]1 pageMarriage certificate of Potts and Morgan, signed by German Reformed minister Michael Schlatter, early leader of the Reformed churches in Pennsylvania. A manuscript note, "Marriage Certificate to Mr. Nathan Potts and Miss. Proscilla Morgan. febr. 1766," is also included. +1768 January 22. J. Jones ALS to John Heywood; Egginton, [England]1 pageDid not see Miss Mandor and advises Jones to ignore her failure to write. "...it is the natural variableness and oddity of a Womans Temper to be continually Teazing what she best loves . . . and remember that sometime you may have it in your Power to make an ample return for all her Cruelty, tho' you then most likely will, and ought to forget and forgive it." Believes Mandor loves Heywood. Comments on keeping letters private and printing some verses. "I think they are much more compact and connected than some I have seen of Mr. Drownys Printing." +1769 May 5. Elias Boudinot ALS to Elizabeth Cumming; Eliza[beth]town, [New Jersey]2 pagesTook ill after trip to visit lands he had intended to patent. Attributes his recovery to God's mercy. Looks forward to her visit. Includes a brief note by E. [B?]acon confirming the letter's recipient was her mother. +1769 October 11. Isaac Zane ALS to John Pemberton; Marlbro Forge, [Virginia]4 pagesDiscusses bills of lading for shipments and the exchange of bonds. Comments on family and his attempts to get witnesses to stay longer for a delayed court proceeding. Asks after an African American boy. "I should like to hear whether the Negroe Lad is Expected to Come as I have reserv'd a berth for him at a fire..." Sends regards to Rachel Wilson, noting hospitality and friendship among Quakers internationally. +1773 April 3 - 1776 July 31. Seth Minor Doc. to Joshua Huntington; s.l.1 pageAccount of work and costs. Includes work performed at a Quaker meetinghouse, building a coffin, working on a dam, making furniture, "mending & painting a Cradle," and various construction jobs. +1774 April 8 - 1775 January 11. Doc.; [Philadelphia, Pennsylvania?]2 pagesAccounts of books, "115 History's," bought from Robert Aitken (1735-1802) and to whom they were sold, including to various Quakers. Notes payments received from Quakers and other individuals for books. +1775 June 24 - 1775 June 26. [Virginia. House of Burgesses] DS; [Virginia]2 pagesReceipt for wages in the House of Burgesses and for Commissioners "to settle the Militia Acct." Signed by Andrew Lewis (1720-1781), William Fleming (1729-1795), Champion Travis, Robert Nicholson on behalf of James Mercer (1736-1793), and Jacob Bruce on behalf of James Holt. Includes two additional partial signatures for a commissioner and a doorkeeper. +1776 January 3. W[illia]m Williams ADS to Com[mittee] of the Pay Table; Lebanon, [Connecticut]2 pagesOrder to pay Jona[than] Lester £8.15.5 for building gun carriages at Norwick, ordered by the Governor and Council of Safety. Verso: Tom Lester DS; Hartford, Connecticut, January 4, 1776. Acknowledging receipt of £8.15.5 from the Treasurer. +1776 May 28. DS; West Springfield, [Massachusetts]1 pageSigned subscription list for establishing a school at West Springfield. Signed by the founding subscribers with the number of each signers children written next to each name. "We the subscribers sensible of the necessity of the Education of youths & being desirous of promoting a school for such purpose promise... to pay the sums severally affix'd to our names... to be paid unto some capable school dame for her Instruction in such school at the rate of five shillings lawfull money per week..." Includes a note on the verso, "a Subscribtion for Mrs Granger to keep Shool." +1777 April 30. John Brown Cutting ALS to Andrew Craigie; Philadelphia, [Pennsylvania]3 pagesHas been staying with Dr. Tillotson, "who is just sitting out for the Northern Department." Discusses the "late Medical Arrangement establish'd by Congress," and the lower pay slated for the "Apothecary General to the several Departments" than for "a Senior Surgeon in the Hospital." Notes the difficulties facing the Apothecary General, especially "under the present situation of affairs." Discusses his efforts since the last campaign to procure "every valuable Drugg I cou'd lay my hands on, and compounding for the first Supply of our new Army." Was disheartened by Dr. Smith being appointed "Continental Druggist" but was placated when he was appointed Apothecary General of the Middle Department. +1779 April 16. B[enjamin] Greenleaf Partially printed DS to Josiah Little; Essex County, Massachusetts1 pageBenjamin Greenleaf, "Judge of the Probater of Wills, &c.," appoints Josiah Little as guardian of George Sawyer. +1779 May 31. John Crozer ALS to James Knowles; s.l.2 pagesCrozer, Knowles' guardian, advises him on love and courtship, grooming, behavior, and friendship. Warns him that "first love, fixed perhaps only on desire, will Vanish in the fruition & instead of delight may leave a Loathing Cloy." Hopes to act as guardian to Knowles' siblings, but knows his sister currently objects. Advises him on how to nurture a good relationship with his sister. +1780 October 18. Jeremy Belknap ACyS? to Mary Osburn; s.l.2 pagesSending specimens of evergreen. "...every Occur[r]ence In the Natural World is capable of Some Moral Improvement I here transcribe by Mrs Belknaps Desire some Verses written on a Similar Occasion." Includes verse, "On Gathering a Basket of evergreens, December 15, 1775" +1781 August 23. Stephen West ALS to Governor [Thomas Sim] Lee; Annapolis, [Maryland]2 pages"At the very beginning of the present War I apprehended that the making of fire Arms & of every useful Article of Manufacture were essentially necessary for the well being of the State." Disappointed that he has not received encouragement or assistance. Outfitted the army with guns on demand and has produced more arms, but carries a considerable debt to his workers and has not been paid. Advises on actions to take for the state's arms. With proper aid could also outfit the army with woolen goods. +1782 May 20. Joseph Williard ALS to John Tyng; Cambridge, [Massachusetts]2 pagesLetter informing Tyne of a recent vote of the Harvard Corporation to have the college president encourage the city selectmen to decline Major Torrington's license for a Tavern. "...it is their duty to take every step in their power to preserve the good morals of the students..." Underscores the importance of the public image of Harvard University as having a moral student body. +1783 May 20. John and Samuel Davidson DS to Thomas Gantt; Annapolis, [Maryland]1 pageAccount for linens, thread, and ribbons purchased of the Davidsons, June 27, 1781; payable by "Crop Tobacco at 12/6 pCent." +1783 July 21. Rev. Jos[eph] Clark ALS to Samuel Forman; Freehold, [New Jersey]3 pagesClark praises Forman's improvements in writing and composition, noticed in a recent letter. Returning the letter with corrections and offers to do so with subsequent correspondence. Comments on Forman's inconsistent capitalization and details three rules for capitalization. Encourages the use of a dictionary and offers advice on learning correct spelling. +1784 September 9 and 1785 February 21. Thomas Affleck Partially printed DS to Tench Francis; Philadelphia, [Pennsylvania]2 pagesDeed for a tract of land sold from famed Philadelphia joiner Thomas Affleck to merchant Tench Francis. Includes a signed note by Robert Martin certifying that Peter Notley witnessed the signing of the deed poll. +1786 July 17. Moses Little and Josiah Little DS to Benjamin Greenleaf; [Essex County, Massachusetts?]1 pageAgreement to pay Benjamin Greenleaf with corn, to be delivered to him at Newburyport. Witnessed by Hannah Greenleaf. +1787 January 10. Fredericksburg Academy Doc. to Mary Sullivan; [Fredericksburg, Virginia]1 pageTuition bill for two quarters at the Fredericksburg Academy. +1787 April 24. G. Dent Partially printed DS to Thomas Harwood [Commissioner of loans at Annapolis]; s.l.1 pageReceipt for fourteen certificates worth for interest on a loan-office certificate from Harwood, continental loan officer from Maryland. Signed, "G. Dent for R. Alexander." +1787 December 13. J[asper] Yeates ALS to Edward Hand; [Philadelphia, Pennsylvania]2 pagesHas been unable to get Hand's hard money, and his efforts with Mr. Delaey and Richard Peters were unfruitful as they left town in a hurry. "We this morning announced the Ratification of the federal Constitution at the Court House. The inclosed is the Order of Procession [not present] & thirteen Guns were fired in Memoriam." Comments on deliberations on "the 10 miles square for the Exclusive Jurisdiction of Congress," and ratifying "the System." See also J[asper] Yeates to William Hamilton, March 23, 1789. +1788 November 1. Ezra Ripley ALS to George Thacher; Concord, [Massachusetts]3 pagesFondly reminiscences of their student days and celebrates their lasting friendship. "I rejoice to find, that, my friend, who is pleased to stile himself, the Hebrew, has not, upon being called to take a seat in the first Council of America, overlook his old friend Ezra, who still attends to the feeding his few sheep in the wilderness." Comments on settling disagreements, discovering truth, and his longstanding views on religion. "The influence of your words, reach ye millions of America, and generations yet unborn. Your feeling and benevolent heart now has scope." +1789 February 12. Aaron Woolworth ALS to Levi Hart; Bridgehampton, [New York]2 pagesRead of the death of Hart's wife in the newspaper and sends condolences. Comments on grief, sympathy, and religion. +1789 March 23. J[asper] Yeates ALS to William Hamilton; Lancaster, [Pennsylvania]2 pages [total]Yeates writes in the same folio as a letter sent to him from William Maclay, dated March 13, 1789, concerning "the permanent residence of Congress." Maclay wants to "bring forward information from every part of Pennsylvania to throw light on this important subject," and is disturbed by having not heard from Lancaster. Maclay presses Yeates to send the requested information and to have Hamilton "furnish some Member of Congress with proposals... relating to the Terms on which he will give grounds for the public Buildings, and let out Lots for private Persons." Yeates expresses surprise at the letter and "The Propriety of being peculiarly active at this Period." Advises Hamilton to speak to Clymer and Fitzsimmons about his "Intentions & Dispositions" as well as to write to members of Congress. Has heard that Congress "will in all Probability settle at some Place between Delaware & Susquehannah." See also J[asper] Yeates ALS to Edward Hand, December 13, 1787. +1789 July 10. Newburyport, [Massachusetts] Selectmen DS; Newburyport, [Massachusetts]2 pages"List of the In[n]holders & Retailers in the Town of Newburyport the last year." Affirm that the list corresponds with licensed innholders and retailers from the past year, "and to the best of our knowledge, the persons named therein, have maintain'd good rule and order in their respective houses and shops..." Signed by Thomas Thompson, Benjamin Balch, William G. Johnson, and Edward Rand. +1789 September 15. Jesse Root ADS to Sheriff of Windham, Connecticut; Windham, [Connecticut]1 pageOrders the Windham sheriff to summon Moses Spafford to appear in court at Norwich to answer a suit brought by Levi Huntington. Huntington accused Spafford of neglecting his promise to provide "a good Merchantable House Frame" in 1787. "...in raizing the same the Deft. by Negligence & deceipt and for want of Integrity & Deligence & Skill in his profession raized said House Frame with one End thereof Nine Inches lower than the other." Notes the costs incurred in fixing the mistakes. Docketed on the verso by the Windham sheriff September 16, 1789, asserting that he read the writ to the defendant. Includes a list of costs, continuations, and defaults through May 27, 1790. +1789 October 7. Albert Gallatin ALS to Alexander Addison; Fayette County, [Pennsylvania]4 pagesOffers his opinions on government and politics upon hearing Addison is participating in the Convention. Believes the [Pennsylvania] Constitution needs amending but that the assent of the citizens is necessary for "any alteration which without subverting the liberties of the people might gratify the wishes of that numerous & powerful body of Men who from the first establishment of our Constitution have been averse to it." Discusses splitting the Legislature into two houses and the difficulties in making them true checks to the other's power. Comments on the Bill of Rights and the limitations it imposes on the branches of government. Notes the dangers to changing the government so soon after implementing it. Sending resolutions he hopes will be adopted [not included]. [Original in to be Gold Star collection] +1790 April 13 - 1803 September 6. Robert Cook Ms; [Pennsylvania]15 pages"A bill of Rates Carpenter and House-Joiner Work Settled and agreed on by the Subscribers, For the County of Franklin and Shippensburg." Lists charges for various jobs and names of the subscribes. Also includes several pages of accounts dated from 1795 to 1803, ranging from labor costs to the sale of meat and hay. +1790 May 13. Cha[rle]s Nisbet ALS; Wilmington, [Delaware?]1 pageDiscusses financial issues related to Dickinson College at Carlisle, Pennsylvania. Trustees have procured 1000 pounds from the State Assembly but still have as much unpaid in subscriptions and overdue tuition. They have threatened to sue but Nisbet believes it will be fruitless. +[1791 May]. John Kemp ADS to Cyrus King; [New York City, New York]2 pagesCyrus King's ticket of admission into the Columbia College "Second Mathematical Class from May 1791 to May 1792." NOTE: John Kemp became professor of mathematics at Columbia in 1786. With: Cyrus King AN regarding the ticket of admission. +21792 February 19. Ms; New Brunswick, [New Jersey]10 pages"Constitution of Library." Notes regarding the formation of a library company in New Brunswick. Considers election of office-holders and their duties, responsibilities and dues of subscribers and members, purchasing books and maintaining a catalog. Describes the types of books to be collected, the arrangement of the library, and the processing of checking out books. Details fines and rules. +1792 July 12. Benj[amin] Oden ALS to George Sibbald; Woodyard, [Maryland]2 pagesHas sent Sibbald's note to him to Hugh Roberts for collection. Sibbald may pay either in money or in wine, "such as good sherry, Lisbon or Madiera, all of good quality." +1792 December 21. John Wilkins, Jr. ALS to Clement Biddle; Pittsburgh, [Pennsylvania]2 pagesInforms Biddle that he has not received any pay records. Will be at Washington, Union Town, and Denniston's Mill in January to pay "the officers & soldiers of the six months State Militia." Has not received accounts of men who used their own arms, so he has paid them in full on application. Inquires about other payment matters, including for Col. Irvine and Major McCulley. +1793 May 27. Richard Varick DS to Daniel Phenix; New York, [New York]1 pageOrders for Phenix, Treasurer, to pay Abraham Van Gelder to light the public lamps using the "Lamp fund." Docketed on verso by Abraham Van Gelder, acknowledging receipt of payment. +1793 June 12. Cha[rle]s Nisbet ALS to Alexander Tweedie; Carlisle, [Pennsylvania]3 pagesComments on the uncertainty of health, difficulties obtaining good servants, and affairs in Scotland. Describes the moral state of the United States, lamenting the decline in religiosity and its negative impact on servants' behavior. Notes shortages in coal and lumber, the impact of the Hessian Fly, and other agricultural details. Laments the public's attachment to the "French Mob" and notes efforts to support the French. Mentions military troubles with Native Americans in southern and middle states, Native American distrust of the U.S. government, and his fears that it will bring war with Great Britain. Notes Britain's ongoing presence in Detroit and Niagara, contrary to treaty agreements, and his belief that they use Native Americans to gain more lands. Comments on politics and elections: "Their leaders & public Men are such as may be expected from the characters of those who chuse them, noisly ignorant, assuming & impudent, but professed Flatterers of the People." Discusses relations with France, French immigrants, Irish unrest, and his worries about the outcomes of the war. Mentions the administrative and teaching difficulties at Dickinson College. +1793 November 4. H[enry] Knox ALS to [Lucy Flucker] Knox; Falls of Schuylkill, [Pennsylvania]3 pagesComments on the good health of their daughter. Notes frequent communication and travelers to Philadelphia, with some catching ill, likely with yellow fever. The "sultry" weather makes "the work of purification" difficult. The President has rooms in Germantown and is expected to remain there until they are confident in Philadelphia's healthiness. Believes Congressmen will also assemble in Germantown. Hopes that "you and the rest of our dear little flock" will join him. +[1793]. Abington, Massachusetts, Inhabitants Doc.; Abington, [Massachusetts]4 pagesAbington town meeting appointed Aaron Hobart and Jacob Dyer as a committee to draft instructions for Luke Buknall, "representative in the general Court of Massachusetts," to uphold the law against theatrical performances. Believes the effort to repeal the law is "unconstitutional inexpedient and absurd." Repeal of the law against theaters "will equally conclude in favor of drunkenness bribery fraud adultery robbery burglary murder and every species of irregular apetite." Argues that prohibition of vice is necessary and that it does not impinge on the constitution or bill of rights. "...it is your duty as a member of the legislature to difuse wisdom knowlege and virtue through the body of the people as necessary for the preservation of their liberties and privileges, and to encourage industry frugality and punctuality in their dealings." Underscores the theater's harm to the poor and young. +1794 April 14. Doc. to Gardener; New London, [Connecticut]2 pagesAccount of costs owed by Gardener, listing amounts for repairing boats, pails, churns, washing and die tubs, and making oars. Also notes items purchased, such as lobster pots, hoops, and pails. Includes an account for materials for constructing a house, including "rum for ra[i]sing" the frame. +1795 December 12. Theu[ni]s Dey Ms to Horanian Literary Society; New York, [New York]6 pagesOpening argument for the Horanian Literary Society, titled "Is not Party Spirit disadvantageous to a Republican form of Government?" The speech details how a democratic society and the party spirit that accompanies it is antagonistic to the Republic. Underscores his allegiance to the Constitution rather than any political party. Blames party spirit for resistance to adopting the Constitution, the "insurrection in an Neighbouring State," possibly referring to the Whiskey Rebellion, and general factionalism. Dey refers to the Roman Republic and poses that it was party spirit that led to its downfall. He also references how "the evil of party spirit" is apparent in the Modern French Republic. +1796 December 9. Moses Everett ALS to [H. Everett]; Philadelphia, [Pennsylvania]2 pagesEverett writes home describing his journey to Philadelphia. He mentions passing through Boston and New York. He describes his lodging and his activities, staying at the City Tavern and at Mrs. Skinner's boarding house in Philadelphia. "Judge Livermore of New Hampshire, Mr. Lyman of Springfield & several other Senators & representatives board at the same Place. Yesterday I was highly gratified on seeing the President [George Washington] & hearing his speech to both Houses of Congress." +1796 December 18. Moses Everett ALS to [H. Everett]; Philadelphia, [Pennsylvania]2 pagesEverett describes being introduced to George and Martha Washington at their respective Levees. "The President receives the Gentlemen standing in a drawing room- those who are strangers are individually introduced to him, to whom he bows without taking them by the hand - a Circle is formed around him in which he walks & addresses himself to one & another just as it happens in the Way of common Conversations- the Gentlemen retire one after another or in small Parties after having tarried 10 or 15 minutes without the least formality..." Describes Martha Washington's Levee, noting social protocol and food: "Mrs. Washington Receives the Ladies & Gentlemen who attend In a capacious and elegant Drawing Room. When we entered she was seated with about 20 or thirty ladies placed on her right hand- seats were provided for the gentlemen by the side of them so as nearly to form a semicircle in the room- The President was there & took a seat beside the gentlemen or Ladies as it happened and conversed with individuals on common topics.." +1797 January 1. M. Waring ALS to John Muir; s.l.1 pageWaring notes the Lottery Company committee is willing to settle John Davidson's account, "in part in Prize Tickets & Cash." +1797 April 2. N[oah] Webster ALS to [Barzillai] Hudson & [George] Goodwin; New York [City, New York]1 pageHas given Isaac Beers an order for 500 selections. Spelling books are needed by the city. "While no other provision is made, you will find a ready market for all you can spare. It would be well to calculate on a considerable demand here." Comments on pricing and payments. "You run no risk in printing too many." +1797 June 3. Rob[er]t Aitken ALS to John Nicholson; [Philadelphia, Pennsylvania]1 pageRobert Aiken, Philadelphia printer, notes his serious financial straits. Owes a $500 note to the U.S. Bank. "All my earnings, at least from what could be spared over Maintenance, has gone to pay balance of the Invoice of Books, Wood Merch'ts for Joins & boards of printing Office, Bricklayer &c so that I am pinched beyond measure, Unable to purchase a R[ea]m of paper to retail in my shop." +1797 July. Henry Titcomb DS; Newburyport, [Massachusetts]1 pagePayment of three months wages ($100.00) to Titcomb, schoolmaster, by the town of Newburyport. +1797 August 3. John Erskine ALS to [Increase] Sumner; Lauriston, [Scotland]1 pageCongratulates Sumner on his election as governor. Sending books for Sumner and his wife, including the second volume of his recently published Sketches and hints of Church History, in which are many "proofs, that even in this enlightened century the church of Rome has retained her absurd idolatries & superstitions, & her treacherous & persecuting spirit." Acknowledges several Catholic leaders that "were of liberal & tolerant principles." Sends books for "Mr. Hyslop's Colledge." "I know infidelity is making rapid progress every where, & therefore have sent for that colledge at different times, some of the best books in defence of Christianity, which are now become rare." +1797 September 27. Union College Board of Trustees ALS to Robert Yates; Schenectady, [New York]1 pageNeed their treasurer to be authorized to receive "the donation of the Legislature" on behalf of Union College in order to pay the salary of a tutor, Mr. Yates. Enclosing a draught [not included] to be signed accordingly. Signed by D. Romey, John Glen, John B. Smith, John Yates, and Joseph C. Yates. +1797 October 2. Rob[er]t Aitken ALS to John Nicholson; [Philadelphia, Pennsylvania]1 pageHas sent Nicholson's bill book that better meets his specifications. Hopes that Robert Morris (1734-1806) could pay him. +1797 October 7. Staats [Long] Morris ALS to Lewis Morris; Fort McHenry, [Maryland]2 pagesCalhoun will arrive tomorrow at Charleston. Mentions his desire to share "some West Indian preserves" with the Gibbes party. While he was on furlough, all but one man in the company caught ill. Yellow fever has been prevalent in the area but has not struck the garrison. Had his pocket picked again while on his journey from New York to Baltimore. Believes a Frenchman took it at Elton. +1797 December 2. Rob[er]t Morris ALS to Israel Whelen; Hills, [Philadelphia, Pennsylvania]3 pagesDiscusses problems with land he bought of Whelen and Miller, upon Israel Whelen's recommendation. Sold them to Europeans who sent agents to verify their quality and were shown the wrong lands. When they returned, they found that the real land "consist[ed] almost wholly of rocks and Stones, except some Part on the Slope of the Hill..." A portion of the land was also already claimed by others. Disappointed because the Europeans planned "to buy extensively of Pensylvania Lands and were recommending similar speculations to their Friends." Asks him what is to be done, "for these people expect redress both as to quantity & quality." +1798 January 27. Rob[er]t Aitken ALS to John Nicholson; [Philadelphia, Pennsylvania]1 pageAttempting to set up a printing business, but Mr. Appele will not supply anything until he receives a stove and boards that he believes were wrongly taken. Is in need of "oil in Juggs, & pitchers ready for Mixing the black-- & some Coal." +1798 May 14. And[re]w Hodge ALS to B. M. Mumford; Philadelphia, [Pennsylvania]2 pagesComments on the figurehead Mr. Rush prepared for a ship, the Fair Lady. "...the head was to represent his Dulcenia--after the head engaged was painted & not til then, I observed she had a fancy Dress--the petticoat buttoned up to the Knee to I supposed your friend might be pleased in seeing & feeling (in due time) the handsome Leg--her delicacy would not wish it exposed to the Sight of every one." Had Rush prepare a new figurehead. "...this one has the picture of her Dearly Beloved at her Breast & a Letter from him in her hand." Comments on the need to paint and gild it. +1798 May 30. Rob[er]t Aitken ALS to John Nicholson; [Philadelphia, Pennsylvania]1 pageExperiencing anxiety over "the present affliction." Mr. Vaughan has been promoting subscriptions to their publication, but he fears they will not raise enough money "to make any kind of beginning, as the funds for such a work I fear will be rather pinching, I do not speak of letter press, but a vast expence of copper & engraving &c." +1798 June 21. Rob[er]t Aitken ALS to John Nicholson; [Philadelphia, Pennsylvania]1 pageSending copies of printing business accounts for Nicholson and Robert Morris (1734-1806). The accounts relate to printing items for the Pennsylvania Land Company. +1798 September 15. Charles Nisbet ALS; Carlisle, [Pennsylvania]8 pagesDetailed discussion of various topics in natural and moral philosophy, especially regarding (and with untranslated quotations from): Erasmus' Colloquia Familiaria; Albertus Magnus; and Nostradamus. Compares Nostradamus quotes to historical events, particularly the French Revolution. Mentions "the Philadelphia fever," swarms of Hessian flies, political trouble between France and England, and American foreign relations with France. "The Strength of America at present seems to be the Command it has of the French West India Islands, by with-holding their Provisions, tho' I fear that our Government has not Strength enough to prevent the Sans Culot[t]es of the Soutthern States from supplying our Enemies in these Islands." +1798 October 12. Samuel Eddy CyS; Providence, Rhode Island2 pages"An Act for regulating the Fishery and removing Obstructions in Pawcatuck River." Signed by Samuel Eddy, Secretary, attesting to its veracity as a copy of the act passed in January 1798. Includes a paper seal of Rhode Island. +1798 October 15. Arthur Fenner LS to Jonathan Trumbull; Providence, Rhode Island1 pageRemitting a copy of act on regulating fisheries in the Pawcatuck River, "in Conformity to one enacted by the Legislature of the State of Connecticut... of October A.D. 1785." Also sending a copy of "the Revision of the Laws of this State." +1798 November 16. A[rthur] Fenner LS to Jonathan Trumbull; Providence, Rhode Island1 pageRemitting a copy of act on regulating fisheries in the Pawcatuck River. +1799 January 21. John [Gottlieb Ernestus] Heckewelder ALS to Samuel Sitgreaves; Bethlehem, [Pennsylvania]9 pages (total)Seeking reparations for losses sustained during the Revolution. Comments on his attempts to recover his losses and be granted land, partially to support a "Settlement for the benefit of the Christian Indians." Did not want certificates relating to his cause read in Congress, fearing it would reveal the extent of his espionage against the British during the Revolution and negatively impact missionary work among the Chippewas in Canada. Includes two enclosures: "Representation of Facts -- seting forth the suffrings and losses sustained by John Heckewelder during the late American war," (4 pp.) and "Inventory & Valuation of Property lost to John Heckewelder & family on Muskingum on being taken Captives by the Enemy Indians the 3d day of September 1781," (3 pp.) Includes commentary on Native American warriors during the Revolution, the sufferings of Christian Indians, his work among them, and losses sustained when he was taken captive in 1781. +1799 April 15. H[enr]y Smith ALS to John Corlis; Providence, [Rhode Island]1 pageRequests prices for black and white marble and Newark stone for fireplaces. Provides dimensions for the needed marble slabs. +1800 April 25. [George Deneale?] Cy to [Henry] Lee; Alexandria, [Virginia]2 pagesNotes alarm raised by Lee's Congressional resolution regarding the formation of rules and regulations for the District of Columbia. People fear for their liberties, "this is owing to a supposition that congress at present can have no knowledge of the people or their local situation and of course cannot have their Interests in view in assuming the Jurisdiction at this early period." Asks for advice about having to relinquish his position in Virginia government or national government. +1800 May 8. John C[osens] Ogden ALS; New Castle, Delaware2 pagesMaking arrangements for the return of the papers concerning the Congressional claim by his mother-in-law, Mary Clap Wooster, widow of Gen. David Wooster (1711-1777). "The happy hour appears to be approaching when in the change of men, and measures of a national concern, the patriots of 1776, and military men in the revolutionary war, will find patrons & benefactors, at least to pity, and to hear their just, modest & manly supplications with patience and decency." +1801 August. [Elbridge Gerry] AL to [William?] Jenks; Cambridge, Massachusetts5 pagesInstructions written in the third person regarding education of "the children," commenting on philosophy of education, books and other materials, and curriculum. Believes the children's education "can only be promoted, by making it a pleasure." The "Globes, maps, & books" of the school need attention. Lists the books in use at the school. Provides instructions for the whitewashing of fences and painting of the barn and outhouses, including recipes for paints (white, yellow, and olive). +1801 December 23. DS; Hatfield, [Massachusetts]1 pagePledge to pay for a school master, to teach two evenings per week during the months of January and February. Includes ten signatures. +1802 April 12 - 1827 January 2. John Andrews AD to Ralph Cross and Jane Greenleaf; Newburyport, [Massachusetts]25 pages [total]Marriage certificate of Cross and Greenleaf, signed by John Andrews, "one of the ministers of the first religious society in Newburyport." Included in this folder are 24 ADs. [Hampden County, Massachusetts], April 15, 1811-January 2, 1827. Certificates for "intention of marriage" issued to various couples in the towns of Monson, Palmer, Ludlow, and Wilbraham, signed by the various town clerks. +1802 - 1831 December 17. AD to Asahel Hawkins; [Rhode Island]22 pages [total]16 receipts for accounts paid by Hawkins to various merchants and innkeepers. Extensive listing of goods and services purchased, mostly meals, lodging, and alcohol, including brandy, rum, cider, gin, and bitters. +1803 July 29. Geo[rge] Clymer ALS to Robert Milligan; Philadelphia, [Pennsylvania]3 pagesGives a detailed description of a new carriage, worried Catharine may not approve of it. Quotes from William Shakespeare. Comments on ongoing warfare and worries that if one side decisively wins it will prove troublesome for the freedom of the seas. Critiques Judge [Samuel] Chase's (1741-1811) recent charge to jury concerning natural rights. "Judge Chase denies the natural rights and admits only the social-- According to him there can be no claims to rights beyond what may have been dealt out by the Social compact. Of course all is gratuitous, and every one must be content." +1804 January 10. George Cabot ALS to Jonathan Williams; Boston, [Massachusetts]2 pagesThe recent loss of a son has delayed his response. Comments on education, salaries of instructors, and their abundance in Connecticut and Massachusetts. "... personal services of every kind have risen in price & the opulence has raised in some degree the scale of education here, so as to employ more Instructors than usual..." Background note: Cabot was later president of the Hartford Convention on December 15, 1814. +1804 January. Samuel Belknap ADS to Joseph Tolman; Boston, [Massachusetts]1 pageBill for silver tea spoons, knives and forks, and a pocket book. Samuel Belknap listed as silver and goldsmith at 30 Cornhill, Boston, in directories of the period. +1804 September 5. Thomas P. Chiffelle DS; Charleston, [South Carolina]2 pagesChiffelle agrees to to pay for the education of Edward Berard, son of a widow of St. Domingue, recently arrived in Charleston, "that may make him an useful member of society and a prop to his mother in her declining years." Sending her son, age 9, to a New Haven, Connecticut, grammar school and subsequently Yale College. Includes a signed statement, in French, by Mme Berard agreeing to the proposition. +1805 January 12. W[illia]m Nekervis ALS to Richard Hill Morris; Richmond, [Virginia]3 pagesLetter by cashier at the Farmer's Bank of Virginia. Remarks on "the melancholy intelligence contained" in Morris' letter about a recent misfortune, but emphasizes his faith in Morris' "integrity as a merchant." Comments on securing a position for his brother. His own financial straits prevent him from setting his brother up locally. Notes elections for a director, meetings of the stockholders, and his presenting Morris' cause to the President of the bank. +1807 March 15. H[enry] Dearborn ALS to H[enry] A.S. Dearborn; Washington, [D.C.]3 pagesSending advice to his son who has started practicing law at Portland. Sent a letter to Mr. S. Lee on his behalf and recommends he avoid requesting aid from him, "but if he discovers a disposition to assist you in your practice, and to cultivate a friendly acquaintance, meet him half way." Recommends not seeking the office of District Attorney until he has further developed his professional career. "... it is safest to rise gradually..." "You should never for an hour forget the importance of acquiring a correct & logical habit of speaking & reasoning, both in private & in public your habits are now forming, which will in a great measure remain through life..." +1807 April 23. John Tenent, Jr. ALS to John Nisbet; Glasgow, [Scotland]1 pageComments on trade and family. Bemoans that Nisbet's shipment of cordials was seized by excise agents. Tenent quotes from Robert Burns' (1759-1796) humorous poem, "Scotch Drink," cursing tax men who deprive "poor d--d drinkers." +1807 September 4. Newburyport, Massachusetts, Selectmen DS; Newburyport, [Massachusetts]2 pagesList of innkeepers and retailers who have been licensed and "maintained good rule and order in their respective houses or ships..." Signed by D.A. White, James Nelson, and Sewell Toppan. +1808 August 29. Samuel Moffit Partially printed receipt to T. Beall; Georgetown, [Washington, D.C.]1 pageTax payment to the Corporation of Georgetown. +1808 October 2. Cath[erine] E. Murray ALS to [Julia Stockton] Rush; Piney Grove, [South Carolina]3 pagesPleasant summer among friends and family, including a visit by Dr. Rush. Comments on lovely "Celebrated Virginia ladies," Mrs. Wickham and Mrs. Decatur. Sends thanks to Dr. Rush for a book. "...all the world are engaged in Politics. - Our retired situation keeps us from all the bustle made on such occasions." +1808 December 9. Purveyor of Public Supplies [Tench Coxe] Printed letter to [Arms contractors]; Philadelphia, [Pennsylvania]1 pageStresses the importance of good arms for the safety and defense of the country. "The lives of our fellow citizens, to whom the use of them is committed, depend upon the excellence of their arms... Their being delivered with punctuality, and in due season, are also essential to prudence, and may be so to the public safety." Comments on the manufacturing of arms, patterns, prices and contracts. "It is prudent... for the contractors to provide, from their respective commencements, for making good work out of materials really fit and proper." Charles Williams was appointed "the important duties of proving and inspecting" by the Secretary of War. +1809 April 29. Royall Tyler DS to Solomon Goodale; Brattleboro, [Vermont]1 pageGoodale received payment by Amos H. Rice in cash and maple sugar for rent due the corporation of the University of Vermont. Witnessed and signed by Royall Tyler. +1812 February 15. [Sir Benjamin Thompson, Count] Rumford ALS to Thomas Butler; Auteuil, near Paris, [France]4 pagesDoes not have plans for the house and does not have the time necessary to prepare them. "Were I to build a house for myself I know that I should pay particular attention to many circumstances little attended to by Architects." Describes the general principles for his ideal house. +1812 March 4. W[illia]m B. Calhoun ALS to Andrew Calhoun; N[ew] Haven, [Connecticut]3 pagesWritten as a student at Yale College. Mentions recent "disturbances" at the college, attributing his not participating in the events to the "kind and ever-watchful hand of the Almighty." Some students face dismissal for refusing to inform on classmates. "...a majority of our class feel very much irritated at what the faculty have done in order to extort it. The character of an informer is always considered despicable by the students in general." Notes the firing of cannons from the fort. Is in need of money to purchase supplies. Mr. Taylor will be established "at the Brick Church," replacing Mr. Stuart. Notes Mr. Frost "preached a missionary sermon here" and expects a missionary society will be established soon. +1812 June 27. William B. Fowle ALS to Caleb H. Snow; Boston, [Massachusetts]3 pagesComments on Bonaparte and learning French, joking "If the expectation that Buonaparte will come here to give us a fraternal hug is the reason why you wish to learn the French language; I can save you some trouble by assuring you that altho' he poisons his wounded soldiers, yet his submissive subjects in America will stand in no danger." Inquires after Snow's political leanings, "for I have heard that you was a full blooded French Democrat!!" Discusses books, including the encyclopedia and publications by Fisher Ames, and the utility of studying history. Argues the merits of republicanism and prays that "God may dissolve the cloud which hangs over our once happy country & once more restore the day." Pledges his support for American rulers. Mentions Latin translations and inquires about Snow's plans for the future upon leaving Brown University. "You are a little too roguish for a Minister not enough so for a Lawyer & just enough so for a Midw--- I mean Doctor.." +1812 August 21. [F.?] Beall Partially printed receipt; Geo[rgetown, Washington, D.C.]1 pageLand tax payment. The partially printed portion includes costs for horses and for slaves above 12 and 16 years old. These lines have been crossed out on this document. +1812 September 10. Nathan Beers ALS to Henry Davis; New Haven, [Connecticut]2 pagesHis son is leaving for Middlebury College, and he hopes he will not disappoint. "I know not that I ever experienced similar feelings, or ever had so deep a sence of the responsibility of Parents respecting their children as I do at present when my son is about to enter on so new and untryed a scene: this together with the unsettled & convulsed state of our Country & the heavy Clouds impending over it seem to keep alive these feelings..." John Phelps Beers attended Middlebury from 1812-15, received an AB at Yale in 1817, and died in 1819. +1812 September 21. John McCalla ALS to Martha McCalla; Fort Wayne, [Indiana]3 pagesLetter from John to his mother in Lexington, Kentucky. Notes reading the Bible and singing masters performing church music. Remarks on William Hull, the "Grand Traitor," written around one month after Hull's surrender of Fort Detroit. "I wish indeed that it was true, that Hull the 'Grand Traitor,' is captured. I could wish that they would bring him by Fort Wayne. I wish for him to see an Army of Kentuckians assembled to carry the war to that spot which he betray'd. But all that I am afraid of is that we are only brought here to build a Fort and to burn a few small Towns." Needs winter clothing. Muses about possibly marching to Fort Defiance, Detroit, or Canada. Comments on commanders and how the mean "almost idolize" General Harrison. Two servants, "boys from the line," attend to cooking and the horses. +[ca. 1812]. Anonymous AMs.; s.l.12 pagesFirst person account of the Battle of Fallen Timbers titled: "Recollections of General Wayne's campaign against the Northwestern Indians in [the] years 1793, & 4." First person account of the Battle of Fallen Timbers. Narrative briefly describes the lead-up to the campaign and provides an account of the army's arrival at Cincinnati in May, 1793, to the arrival of General Anthony Wayne in Greenville in late 1794. Describes mobilization and movement of the soldiers, building of Fort Recovery, several Indian attacks, and the closing of the campaign. +1813 February 12. Richard Morris ALS to Lewis Morris; Bloomingd[ale]2 pagesWhile visiting family on Christmas vacation he caught the measles. Notes the dismissal of his father's overseer, "whose conduct I made mention in my last letter to Mamma." Blames mistakes in his letters on boys "fiddling on their violins about me." Aunt Sally has gone to spend time at Uncle Gouverneur's home as his wife is confined. Notes that "the icehouse is filled" and remarks on their game cocks. +1813 December 25. T[imothy] Pickering ALS to Elizabeth Pickering; Washington, [D.C.]3 pagesLetter stressing the importance of literary education. Pickering offers Elizabeth (his daughter) advice on methods of learning proper language, reading, and spelling. "To have read many books is a poor cause for triumph, or for self-complacency- unless they have been understood; and it is impossible to understand them fully, unless the meaning of every word is known. The dictionary, therefore, must be resorted to... Correct spelling is now so universal among females of your standing, that I hold it impossible for you to omit the requisite attention to it." Urges her to use "your needle less, & your pen & books more." Applauds how she reads aloud and encourages her to use Mr. Gardner's library in Boston, "in which you may find a large store of mental food." +1814 July 25. Benj[ami]n Tallmadge ALS to John Treadwell; Litchfield, [Connecticut]3 pagesTallmadge, a Continental Army officer and a member of Congress writes to Treadwell, a former governor of Connecticut, about making a donation for the purpose of "spreading the Gospel & the knowledge of our holy religion among the Heathen..." Asks about the current state of Bible and missionary societies in the area. Also interested in donating "a Tract of Land in the State of Ohio, to be leased or sold, for the above purpose." +1814 August 20. Rubens Peale ALS to James Trimble; Philadelphia, [Pennsylvania]1 pageLetter from painter Rubens Peale regarding the shipping of paintings that belong to the State. Peale mentions asking his father and other artists for their advice on the best methods of shipping. Included is a Peale Museum silhouette marked "Joseph Russell," located in the Prints Division. +[1814 December 28-1815 June 28]. Jacob Idler Partially printed receipt to William Duane; s.l.1 pageSix month subscription to the Daily Aurora. Also includes charges for six services related to the "Brig America," dated March 22, 1815. +31815 February 13. St[ephe]n Chase ALS to Stephen Chase; Baltimore, [Maryland]5 pagesSon's letter to his father. Mentions the high cost of postage and the difficulty of getting bank notes. Would only obtain a commission in the army if he was unable to support himself otherwise. Notes Maryland raising troops for defending the region. Dislikes the "negroes and political sentiments of the Inhabitants of Baltimore," but prefers the area to New England, comparing the climate and starting businesses. Discusses peace and the end of the War of 1812: "We have received accounts from New Orleans that the British have cleared out after losing about 3000 men and almost all their principal officers. And O! joy – O! glad as Robinson Crusoe's man Friday says. We have just received information of peace. Peace is in every one's mouth and although the streets are full of People whose mouths are wide open like snuff boxes yet they cannot hold their peace, but run about grinning and chattering like so many monkies." +1815 March 24. Jesse Ennis DS to Jonathan Alston and Osbourn Alston; Chester, [Pennsylvania]2 pagesBill for carpentry work performed by Jesse Ennis. Work relates to constructing a house. Signed by Joseph Corbit. +1815 September 24. Joseph Delaplaine ALS to John W. Francis; Philadelphia, [Pennsylvania]1 pageRequested Francis to have an engraving of Dr. Hosack made in London. Enclosing a portrait of Washington [not present]. Includes a list of impressions to procure from Boydell's. Topics range from James Heath's riots, military figures and battles, Death of Wolfe, Zenobia, the siege of Gibraltar, and Thomas Paine. Asks Francis to subscribe him for Charles Heath's engraving of "West's Christ healing the sick." +1816 August 26. Tho[ma]s Snell ALS to Elisha S. Fish; North Brookfield3 pagesDiscusses putting Fish's sister in the employ of the Snell household. "What you say respecting the manner in which we shall treat her, accords with our views; tho' we may be obliged to put her to work about house more than she will think proper." Glad to hear of "the more flattering prospects of your society respecting religious order & christian privileges." Comments on religion and the growing "kingdom of Christ." +1817 January 4. Tourtellot & Hawkins DS to Asahel Hawkins; Gloucester, [Rhode Island]1 pageReceipt to Asahel Hawkins for $10 "in full for what he subscribed towards harmony school house..." +1817 January 16. Edmund Lee, Jr. ALS to Philip R. Fendall; Princeton, [New Jersey]3 pagesMentions Fendall's "loss of Cornelia." Currently have a number of "men of talents" in their Society. Will be sending Fendall a copy of Bolingbroke's works. Lists recent works he has read and seeks Fendall's opinion on them. Would like Fendall to send a list of books to read. "I begin to be ashamed that at my time of life I have read so little, the nights are long, and I think I may read at least 100 pages a day with ease..." Is interested in writing and receiving correspondence on "such subjects as may improve myself in writing." Suggests writing on a scientific topic. + +1817 May 1. [Trustees of the Clinton Grammar School Association] Paritally printed DS to Moses Bristol; Clinton, [New York]1 pageCertificate stating that Moses Bristoll "is entitled to one Share of twenty Dollars, in the property of Clinton Grammar School Association." Signed by Azel Backus, Joel Bristoll, Jesse Curtiss, and Seth Hastings, Jr., Trustees. Verso: receipt of ten dollars signed by Seth Hastings, clerk. +1817 July 1. Richard Cutts Partially printed DS to Sally Scofield; Washington, [D.C.]1 pagePension for "Sally Scofield, widow of Samuel Scofield, late a Hospital Surgeon's mate in the United States Army, who died June the 8th, 1813." +1817 September 20; [1817] September 27. [Joseph Reed] AL [Df?] to [Joseph Gwin]; Philadelphia, [Pennsylvania]7 pages [total]Two letters concerning upcoming Pennsylvania elections. Comments on political movements following upheaval in the treasury. Urges continued political action to ensure success. Bemoans the dangers posed by artificers and a press compromised by bribery and corruption. Mentions the state treasurer being caught embezzling. Provides strategies to gain public support. Sending circulars to determine general political opinion and inclinations. +[ca. 1817 October 27]. Evan Evans, et al. DS; s.l.2 pagesSubscription list for school to be opened by Ephraim Jackson. Notes number of scholars each person will send to the school, cost of tuition, and expenses to be covered. +1817. Caroline Lamb ALS to Joseph Lancaster; s.l.3 pagesDisagrees with Lancaster's ideas of education of the working classes. "Mankind is too well taught already- make schools dear- make learning difficult- unteach what has been taught & by that means alone restore every thing to order- for either must we all consent to live free & equal here -- or the lower orders must be kept from tasting of the Tree of Knowledge." Offers her help regardless. +1818 March 10. Jesse [F.]? Newman ALS to Henry B. Curtis; Sandusky, [Ohio]3 pagesWorking as a merchant and assistant post master. Describes Sandusky, noting its expanding population, rapid construction, etc. Describes Walter Knapp's capture by a party including two Native Americans and his being held at Fort Malden in Canada. Notes Knapp's brothers helping him escape to Detroit and then to Sandusky. "I have the above information from Walter's own Mouth." Has not been able to draw a plan of the city, as he has been "busily engaged in trading with the indians." +1818 June 26; 1818 July 30. Thomas Wightman ALS to "Gentlemen of the Humane Society of Newbury Port"; Boston, [Massachusetts]2 pages [total]Engraver desires payment for a Gold Medal prepared for the Humane Society in 1814. Verso: S. T., CyS to Thomas Wightman; Newbury Port, 1p. 1818 July 30. Suggestion for Wightman to seek out his payment from a David Fairman, who the Society had paid for the Medal. +[1818 June]. Edw[ar]d Barry ALS to T[homas] Philipps; Phila[delphia, Pennsylvania]1 pageLetter from Barry, theatrical manager, regarding the qualifications of a bugle player name Howard. "he plays very indifferently & would require 2 or 3 weeks rehearsal before he could enter into any agreement to take an orchestra part: besides this he is book-keeper (& not bar-keeper) to one of the stage offices." Encloses a news clipping about English tenor Charles Incledon's performance at a concert of the Handel and Haydn Society. The clipping is now affixed to the letter. Addressed to T. Philipps Esqr, Shorts' Soda Fountain, South Street, Baltimore. +1818 July 29. George Willig DS to T.R. Parcker; Philadelphia, [Pennsylvania]1 pageItemized bill for music sent to Parcker in Boston. Materials include instructions for playing the fife, guitar, and bassoon. Lists titles of other sheet music sent, including "A Canadian boat Song," "Hail to the chief," "Battle of Prague," various love songs, and others. Totals $38.25 for approximately 33 titles. + +1818 October 14. James [ ] and Samuel Eliot Partially printed DS to William W[inston] Seaton; [Washington, D.C.]1 pageWilliam W. Seaton, editor of the National Intelligencer, purchases land in Washington, D.C. +1819 April 4. Geo[rg]e Blackburn ALS to Ferdinand Campbell; Baltimore, [Maryland]7 pagesAsbury College professor of mathematics comments on Baltimore and on American society, religion and education to a former colleague at William and Mary. Bitterly critical of present American society and pessimistic about human nature. "Why did God make such a contemptible scoundrel as man? From what I have seen of this biped during half a century it is a truth that I would not call into existence such a race of being if I had the power of doing it." Agrees with Jefferson that "Nothing can save America from Despotism but the universal education of the rising generation." Comments on college matters. Considering going to the west or to Canada. +1819 April 23. Josiah Parsons ADS; Gilmantown, [New Hampshire]1 pageMarriage notice for John Kimball and Nancy Adams. Dated in the Quaker style and signed by Josiah Parsons, Town Clerk. +1819 September 7 - 1819 December 1. Hooper Cumming DS; Albany, [New York]2 pagesReceipts for payments paid by Joseph Fry, Treasurer of a Presbyterian church, for various services, including "for a plan and estimate of enlargement of Church" by P. Hooker, "services as Choirister" by Walter B. Roberts, and the salary of Hooper Cumming, pastor. +1819 November 1. Daniel [K.?] Rogers Cy; Weare, [New Hampshire]2 pagesWrites that he is "sensibly feeling that my days are but few," and that "my redemp[t]ion seems to draw nigh." Gives religious reflections on faith and death. Exhorts his dear friends to "accept of the Spirit" to ensure their salvation, and not to mourn those who "are taken from this world of trouble into eternal rest." Dated in the Quaker style. On verso: "Coppy of Daniel R. Rogers." +1819 December 13 and 1820 April 9. Putman Catlin and T[homas I.] Wharton ALS; Cy to T[homas I.] Wharton and Putnam Catlin; Montrose, [Pennsylvania]; Philadelphia, [Pennsylvania]5 pages [total]Having difficulty collecting money from debtors. Would prefer not to sell personal property and cattle to raise money and does not wish to close debtors' mortgages. His son, George Catlin (1796-1872), is trained in law but "goes to try his hand at painting." Wharton's letter from April 9, 1820, discusses government acts concerning the appraisals of property and his fears it will prevent their recovering debts. Comments on Catlin's son, believing he "has every prospect I think both of gaining a living and making himself a name here. We are not rich enough yet to give much encouragement to his Ionical and fancy painting but by portrait painting several persons here gain a respectable income and his talent in that department is considerable." +1819 December. Gideon Hawley Circular pamphlet; Albany, [New York]16 pagesInstructions for the Better Government and Organization of Common Schools. Prepared and Published Pursuant to a Provision in the Act for the Support of Common Schools, Passed April 12th, 1819. Albany: Websters and Skinners, 1819. +1820 January 27. Thomas Metcalfe ALS to Rob[er]t Poague; Washington, [D.C.]3 pagesDiscusses the heated Congressional debate over the Missouri bill. Notes John Randolph's blistering commentary on slavery's extension. "...he thought Gentlemen had conscientious objections to slavery in Missouri-- they talked of morality, benevolence, humanity and religion; but now he perceived they were willing to make Missouri river the boundary of their consciences." Worries about the political landscape. "...I fear that the era of good feeling & harmony has already gone by." +1820 June 28. David Hosack ANS; New York, [New York]1 pageCertifying that Anson Dickinson (1779-1852) is unfit for military service. Jam[es] W. Moore signed and approved the note. +1820 July [1810?]. Capt. Biles Ms; w.l.1 pageDescriptive list of mineral springs outside of Philadelphia. Notes their distance from Philadelphia or New York, the accommodations available, and the quality of the waters. +[1820] August 13. H[arrison] G[ray] Otis ALS; s.l.1 pageComments on school during war. Background note: Otis was a member of the Harford Convention on December 15, 1814, United States senator from 1817-1822, and the Mayor of Boston from 1829-1832. "I feel that nothing will go on well in School while the din of arms re sounds in our ears..." Wants the "little boys" to see "the play of the great boys." +1820 August 28. Will[iam] Gaston ALS; Georgetown, [Washington, D.C.]1 pageRequests sheet music for piano. Includes a list of titles. +1820 November 14. John M. Duncan ALS to Benjamin Silliman; Glasgow, [Scotland]1 pageNews that the Ministers in London have abandoned the Bill of Pains and Penalties, received by the people with much rejoicing (relating to the trail of Queen Caroline). "The popular rejoicing has been extreme, many of the poorer classes in the suburbs, who are suffering most from the distress of the times had their windows illuminated, and tar barrels and bonfires were numerous through the streets." +[ca. 1820?]. Doc.; New York, [New York]2 pagesCatalogue of Furniture Manufactured by Robert McConachy. Lists articles of household furniture and their prices. +1821 January 6. Adolphus Keyser ALS to Rev. David Benedict; Philadelphia, [Pennsylvania]3 pagesRespecting the probability of obtaining scholars in the French, German, and Hebrew languages. Currently engaged teaching "a Gentleman of this City" French and German. A permanent position at Brown College would be desirable. Gives his price for 36 lessons to 20 scholars, with additional instruction for four students supported by charity, "two of your Congregation & two of the Episcopal." Closes with statements in German and Hebrew. +1821 February 23. George Gibbs ALS to [William] King; Boston, [Massachusetts]1 pageLetter to the first Governor of Maine. Forwarding a bag of barley from Sweden, to attempt cultivation. Persons in New York and Connecticut will also be making trials respecting the barley. +1821 June 4. Timothy Alden ALS to Margaret F. Mead; Newark, [New Jersey]2 pages"We live in one of the most delightful places I ever saw. My academy begins to fill up very well. I have 60 scholars and a good many others who have bespoke a place..." Sending her the quarterly catalog of his Newark Academy [not included]. +1821 June 18; 1821 July 18. C[harity] Launy ALS; DS to John Slidell ; New York, [New York]3 pages [total]Willing to deduct money from his overdue bill for medical services to Mrs. Marschalk. Mentions Samuel Latham Mitchill (1764-1831) investigating the matter, "which you must acknowledge is one of our first scientific Characters." Included is a bill for services to Mrs. Marschalk, July 18, 1821, from the estate of Christian Marschalk. Includes cost of instruments, attending on Mrs. Marschalk and teaching her nurse the use of the instruments. Includes a statement certifying the account, signed by Charity Launy and Joseph Greenleaf. +1821 November 7. J[edediah] Morse ALS; New Haven, [Connecticut]1 pageDiscusses the contents and sales of Morse's "New Gazeteer." "..They have sold by subscription chiefly, nearly their whole edit[io]n of 3,000 before the books are from the hands of the binder. This Gaz. Is accompanied by a new Atlas of 20 Maps, very handsome & corrected to this time, price 4 dols. colored." Comments on exchanging books. +1822 April 4. C[hristopher] Gore ALS to John Lowell; Waltham, [Massachusetts]3 pagesHas little regard for current affairs. Critiques Alexander Hill Everett's (1790-1847) new book on Europe, especially his writing on the British Navy, and has prepared a rebuttal. Seeks Lowell's assistance in publishing it. Disappointed that George Cabot (1752-1823) liked the book. Comments on James Monroe (1758-1830). "the malignant Foe of the British Treaty of Washington, Hamilton and Jay, the Cherisher & Supporter of the reviling & blasphemous Tom Paine." [NOTE: The William L. Clements Library holds a copy of the rebuttal. Christopher Gore, Remarks on the Censures of the Government of the United States. Boston, Wells and Lilly, 1822]. +1822 July 7. M[ary] N[exsen] Thompson ALS to Cassandra Smith; Michilimackinac, [Michigan]6 pagesExtract from her journal, June 17 to July 5. Travel from Sacket's Harbor, N.Y., to Fort Niagara, to Buffalo, past Cleveland, then up the Detroit River, Lake St. Clair, and Lake Huron to Fort Mackinac. Mary Thompson, wife of Maj. Alexander Ramsay Thompson, wrote extensively of her journey and encounters with military figures and soldiers. With varying degrees of detail, she wrote of Col. Brady, General and Mrs. Porter at Buffalo; children on board and the noise they made; Fort Malden; picking up [Henry] Schoolcraft; Native Americans along the Detroit River and shore of Lake St. Clair, noting their clothing and activities; Thunder Bay; a July 4th celebration on board; Fort Mackinac; dancing Indians; and Fort Brady. +1822 September 2. Zach[ariah] Walker and Tench Ringgold DS (copy); Washington, [D.C.]2 pagesSeizure of Zachariah Walker's property, including "negroes," Joe Smart, James Brown, and Milly, by Marshal Tench Ringgold in virtue of a writ of fieri facias. Walker certifies that he waived his right for an appraisal. +1822 November 16. J[oseph] Hopkinson ANS to James Nelson Barker; [Philadelphia, Pennsylvania]1 pageRequests his presence at Mr. Ewing's office "to decide upon the Addresses offered for the opening of the Theatre." +1822-1844. 3 DSs; Boston; s.l.3 pages [total]Receipts for hardware and other goods, including paper. Receipt dated August 3, 1822, Boston, signed by John Bradford. Receipt ca. February [1828?] signed by David Cobb. Receipt for August 19, 1844, signed by Edward Southworth. +1823 January 12. M[ ] C[armichael] ALS to Maurice Carmichael; New Orleans, [Louisiana]7 pagesTravelled from Memphis to New Orleans by steamboat. Mentions Indian traders of four or five different tribes, noting that Chickasaw traders are the most successful. Describes the Mississippi River, settlements alongside of it, and types of boats plying it. Discusses crops, timber, cotton, and the trade in them along rivers. Comments on Natchez, Baton Rouge, and New Orleans. "From the accounts I had of it in my travels through the States and the idea I had brought with me from Europe, I had been induced to view [New Orleans] as a receptacle for all the felons from most parts of this side of the Atlantic." Surprised at its respectability and active police presence. Notes New Orleans' population, trade, rent, and entertainment. Comments on his dealings with Moars Milne and Company. Working on credit, especially as Tennessee money is doing poorly. Quality cotton grown in Memphis and Mississippi: "This is encouraging to landholders in the New Purchase." +ca. 1823 June 20. W[illiam] North ALS to Jones Mumford; 2 pagesEncourages Jones to pursue "female society," but warns him not to let pleasure "interfere with duty." Advises him to work hard at studies so as to be "a brilliant in your father's cap." Gives advice about living apart from other students and taking notes on readings. +1823 June 23. Galen [Carter] ALS to Timo[thy] Jarvis Carter; Bethel, [Maine]3 pagesLetter from Galen to his brother, letting him know that he is leaving his current location for elsewhere. He reflects at length on Timothy's sickness, providing diagnoses and suggested remedies and advice. Worries about Carter's mental and emotional state. There is a mention of Timothy's father being concerned about his welfare. "...your complaints do not arise so much from Calculi in the blad[d]er as from an enlarged Prostate Gland. If this opinion be correct, your disease is not so alarming... Should the dificulty to urinate continue or increase... I would advice you to make trial of the Bal. Cassavai, in doses of 10 to 20 drops, twice per day, taken in a little water..." +1823 September 1. [Joseph] Gales and [William] Seaton DS; [Washington, D.C.]1 pageJoseph Gales and William Seaton, editors of the National Intelligencer, certify that two affixed notifications of court cases were published in the Intelligencer "according to the order of the Court in the cases respectively." Concerns chancery cases involving estates. + +[1824] March 15. E[liza] J; Abigail Johnson ALS to Mrs. Benjamin Munn; Derby, [Connecticut]4 pagesJohnson writes to brother and sister Munn, including religious reflections. Attended a camp meeting where they heard "Elder Banngs," possibly Nathan Bangs (1778-1862), preach. Discusses a number of women making a living at weaving and of the solace her religious faith provides despite her doubts as to her worthiness. News of friends and family, including deaths and estate woes. They heard that "there was a girl near you that had five children at a birth we wish to know the truth of it." +1824 May 17. George Rohr ADS; Frederick County, Maryland1 pageRandolph Campbell swears that the woman before him was the same woman that his father, William Campbell, freed from slavery. +1824 August 1. [Ebenezer Tucker] Document; [Egg Harbor, New York]3 pages"Articles of association for Sea Bathing Establishment". Notes terms of Tucker's sale of Tucker's Beach to subscribers, distribution of certificates and stock, stockholder meetings and votes. Share holders agree to only sell the property as a whole instead of piece-meal, to maintain it as "a pleasant resort for sea bathing and rational amusement." Does not include any subscribers' names. +1824 August 19. Rich[ar]d Patten Partially printed DS; New York, [New York]1 pageReceipt for a thermometer purchased by Mr. Boardman. Written on illustrated Navigation Warehouse receipt. +1824 September 27. Frederic Beasley ALS to Rev. Lacey; Philadelphia, [Pennsylvania]1 pageRecommends Matthias O. Dayton as Professor of Languages for the academy in Albany. +1824 December 20. A. Judson ALS to B. P. Putnam; Plymouth, [Massachusetts?]1 pageWould like Putnam to pay all the taxes owed on his land. Plans to sell it soon. +1824-1834. [Philadelphia merchants] 9 DSs to Mr. Butler; Miss Butler; Philadelphia, [Pennsylvania]9 pages [total]Nine receipts for china, household and cloth goods, purchased by Mr. and Miss Butler of Gardiner & Veron, Townsend Sharpless, R. Tyndale, and L. J. Levy's. Includes partially printed receipts, with two illustrated receipts, one featuring a beehive and the other a ship and lighthouse. +1825 January 18. George Rohr ADS; Frederick County, Maryland1 pageJames A. Murphy swears that the man in front of him, York Jones, "is the same that was manumitted by Jacob Hams." +1825 July 5. Miss Lymans Institution for Young Ladies Doc.; 1 page"Terms of the Miss Lymans Institution for Young Ladies," listing curriculum and costs. Includes a receipt for D. Griscom's fees for his his son from July 5, 1824 to April 5, 1825, listing tuition, board, books, and supplies. +[1825] August 16. John H. Rice ALS to [Jeremiah] Day; Theological Seminary, Virginia1 pageIntroduces Mr. Hudson, "commending him to your paternal feelings as head of the college." Addressed to "The Reverend Doctor Day, President Yale College." +1825 November 21. Jonathan Elliot DS; Washington, [D.C.]1 pagePublisher of the Washington Gazette certifies that the affixed advertisement, for the public sale of real estate, appeared in the Gazette 76 times beginning on March 3, 1825. Includes notes on how the lot was divided and corrects typographical errors in the article. +1826 April 20. [Jean-Joseph Paul Augustin] Dessolles ALS to [Societe pour L'enseignement Elementaire]; Paris, [France]2 pagesIn French, translation included. Accepts the position of President of the Society for Elementary Education. Praises the Society, the teaching method they propagated in France, and the benefits they provide for the lower classes. Translated excerpt: "What a benefit for humanity to bring within everyone's reach those initial developments of the intellectual faculties which round out man's existence and from which proceed the moral and religious ideas which will later serve him to organize his life and to insure his happiness." Includes a note about a speech being published in the newspapers, which repeats similar ideas. +1826 June 9. John B. Hallsted DS to Peter McCarty; New York, [New York]4 pagesAgreement concerning Hallsted, a carpenter, building a house for McCarty. Describes how McCarty will pay Hallsted. Provides a detailed description of the building to be constructed and materials to be used. Witnessed and signed by William Reynolds +[before] 1826 July. AMs [Df?]; [Uniontown, Pennsylvania]5 pages"Prospectus of a New Weekly Paper, to be Entitled The Western Reporter," to be published in Uniontown, Fayette County, Pennsylvania. Quotes from Albert Gallatin concerning the freedom of the press and emphasizes the significance of this right to the United States. "Where, indeed, except in our own country, do we find 'the unlimited, unrestrained liberty of the press?' " Underscores their commitment to human rights and freedoms, "without regard to color, creed, or country - of Western interests - of General Science and Literature- of Agriculture - of Domestic manufacture..." Admits and explains their friendly views to the current administration but vows impartiality. Promises to avoid opposition to other publications. Describes the type of content to be included in the paper. +1827 January 2. E[zra] S[tiles] Ely ALS to Howard Malcom; Philadelphia, [Pennsylvania]3 pagesLists works on Hopkinsianism, providing separate categories for those of "the highest pitch of sublimination," "more moderate Hopkinsianism," and those "In opposition to Hopkinsianism." Wishes Malcolm well in his work "in pulling down the strong holds of Satan, and in winning souls for Christ." +1827 January 10. Ithiel Town ALS to Jonathan Livermore and Samuel Chittenden; New York, [New York]3 pagesExtensive construction details for a bridge to be built at Taylors Falls [Massachusetts?]; includes two small drawings of structural details; letter was sent to architect Alexander Parris (1780-1852), who evidently passed the project on to Town, a well-known bridge builder and holder of a patent for a truss bridge. The letter is worn through in spots and one of the drawings has lost some detail. +1827 March 13. John and Elizabeth H. ALS to Hannah Gurnett; Horsham, [England]3 pagesParents write to daughter in Upper Canada. They fear removal of discriminatory laws against Catholics in England will give them power; in such a case they would consider moving to America. They have sent her a likeness of [John?] made by an itinerant. Offer religious encouragement and send transcribed text of hymn[s]. +1827 April 4. Mathew Egerton & Son ADS to Capt. Jenkins; [New Brunswick, New Jersey?]1 pageReceipt for mahogany bureau and bookcase, made out to Captain Jenkins, Steam Boat Thistle. +1827 September 13. Edward Everett ALS; Winter Hill, Charlestown, [Massachusetts]2 pagesEverett writes about the Massachusetts Journal, praising the publication for numerous reasons. Pleased with its restrained use of advertisements and its publication of public documents and items of "scientific, literary, & general interest." Notes its liberal political course. Asks for the recipient to support the paper by recommending it to friends. +1827-1828. Ms; Cambridge, [Massachusetts?]40 pages"Subjects proposed weekly for the Dissertations of the Jun. Class of the Theological School of Cambridge." Includes 35 religious topics to discuss, often accompanied by lists of books to consult concerning them. +1828 September 19. H[enry] D. G[ilpin] ALS to Jos[hu]a Gilpin; Philadelphia, [Pennsylvania]18 pagesFifth letter in a series of five letters describing Gilpin's travels from Newcastle to Pittsburgh. Describes travel in western Pennsylvania en route to Pittsburgh. Notes local colleges, landscape, and canals. Discusses Pittsburgh manufactories, commerce, acquaintances. Includes a sketch of a keel boat and notes other watercraft. Describes journey to Philadelphia, noting landscape and German farmers. +1828 January 16. Timothy Upham ALS to Nathaniel G. Upham; Washington, [D.C.]3 pagesStudent of the Medical College, writing to his brother. Has obtained items from the "Negro Society" to send to Nathaniel. Finds Washington medical lectures to be the best he has yet attended, finding ones in other cities deficient in dissections. "At Washington we have just as many bodies for dissection as we wish--all the slaves, day labourers--& poor people are thrown into a place called "Potteres field," and are taken up with impunity, even in the day time." Has been introduced to many "whales amongst small fishes": Clay, Calhoun, Macomb, Porter, and Webster, among others. Has attended the House of Representatives and heard Elias Kane and Thomas Benton speak. Notes Benton's participation in a duel. Mentions speculation about who will compose Jackson's cabinet. Enclosing a sprig of Laurel taken "from the tomb of Washington" [not included]. +41828 February 8, April 25. Elizabeth Ricord 2 ALsS to Peter Macarty; Woodbridge, [New Jersey]2 pages [total]Discusses payment of a school account for "Nancy," including expenses with A. Brokaw. Notes her scholarly progress. Encloses a card to distribute to friends "who would be glad to send their daughters in the country." +1828 August 1. Printed Doc.; [New Haven, Connecticut]2 pagesA printed letter addressed to parents, explaining the reasons and outcome of a discussion of a large student protest again board conditions at Yale. Notes general dissatisfaction with food and the administration and faculty's failure to improve the situation. Discusses the college's response to the student boycott of the Hall. Includes the names of 134 students who signed the circular. Included in P[andias Theodore] Ralli ALS to James B. Porter, August 9, 1828. +1828 August 9. P[andias Theodore] Ralli ALS to James B. Porter; Yale College, New Haven, [Connecticut]4 pagesDiscussion of a large student protest against board conditions at Yale. Notes numbers of students having withdrawn from Yale following the unjust expulsion of four classmates over the boycott of the Hall. Mentions the impact this affair and the students' circular has had. "Greeks" have opted not to participate in the student demonstration. +The letter is written on a printed letter addressed to parents, explaining the reasons and outcome of the affair. +1828 September 4. H[enry] D. Gilpin ALS to Jos[hu]a Gilpin; Oaklands, [Maryland]7 pagesFirst in a series of five letters, approximating a journal describing Gilpin's trip from Newcastle to Baltimore and onward to Pittsburgh. This first letter (Sept. 4, 1828) recounts travel by steamboat, detailing fellow passengers' use of alcohol and those in love. Notes social calls in Baltimore and maps of the area. Letters are accompanied by a carte-de-visite of Henry Gilpin and six newspaper clippings concerning his death. +1828 September 7. H[enry] D. G[ilpin] ALS to Joshua Gilpin; Baltimore, [Maryland]12 pagesSecond letter in a series of five letters, describing Gilpin's travels from Newcastle to Pittsburgh. This letter discusses maps of Baltimore and roads, well-to-do local residents and their homesteads and farms, including the Caton Manor. Mentions artwork in a Catholic's home. Notes an outdoor political gathering with candidates giving stump speeches. Briefly mentions using a "Camera Lucida." +1828 September 11. H[enry] D. Gilpin ALS to Joshua Gilpin; Uniontown, [Pennsylvania]23 pagesThird letter in a series of five letters, describing Gilpin's travels from Newcastle to Pittsburgh. This letter remarks on wealthy social acquaintances around Baltimore and those visiting at the Caton Manor, recalling an "exceedingly strange" woman who has recovered and another who "talks politics too much." An elderly acquaintance has promised to send Gilpin's Biography of the Signers to Marquess Wellesley. Mentions holding prayer meetings in the Manor chapel for African Americans. "nearly all the negroes however have deserted the old faith, and turned methodists..." Describes his travels westward through Maryland and Pennsylvania, noting their ascent of "Negro Mountain." Describes how it got its name from " a very fierce battle which took place on its top, when the Indians still inhabited all these parts, between a chief & a negro." Notes the natural landscape in western Pennsylvania and the local interest in economic markets. Comments on roads, bridges, and infrastructure. Discusses lodging at Uniontown and a review of the local military volunteers. +1828 September 14. H[enry] D. Gilpin ALS to Jos[hu]a Gilpin; Pittsburg[h], [Pennsylvania]11 pagesFourth letter in a series of five letters describing Gilpin's travels from Newcastle to Pittsburgh. This letter notes the extreme weather and food conditions he has had to tolerate. Met with Colonel Evans and discussed some business matters, likely concerning land. Describes western Pennsylvania landscape and their tract of land, noting timber. +1828 November 7. David Derkheim DS to Mrs. G. Marks; 1 pageReceipt for constructing a walnut coffin. +1828 December. [John Milton Whiton]? AMs; 16 pages"Dissertation on the State and Place of Departed Spirits." Recommends using Ecclesiastes 8:8. Comments on death, the departure of the spirit from the body, and where the spirit dwells as it awaits resurrection. Notes the distinction between Heaven and Paradise for pure spirits and spiritual misery and Hell for evil ones. +1829 March 5. Alexander Hamilton, Jr. LS to Samuel W[hittelsey] Dana; New York, [New York]3 pagesComments on a recent letter from William Plumer to John Q. Adams concerning the 1803-1804 Congress discussing New England seceding over slavery. Notes dissatisfaction over unequal Southern representation and tax benefits and fears that Southern and Western interests outweighed Northern ones. Describes specifics about establishing a separate government. Was told Alexander Hamilton had agreed to attend a "select meeting of the Leading Federalists in New England" to discuss the measures. Asks for specifics about Dana's relationship with Alexander Hamilton, if he had heard of the plan, and who was involved in it. Seeking to defend his father's "Fame" and "refute the Calumny conveyed." +1829 April 28. E[liphalet] Nott ALS; U[nion] C[ollege], [Schenectady, New York]1 pageToo late to comply with the recipient's request before the Legislature adjourns. May be willing to write an address, similar to the speech he would have made, once he has more time. "But I doubt whether the public are prepared for receiving the views of the subject I have taken - and whether the freedom with which I have spoken would not do injury in certain quarters." +1829. Henry Coughenour AMs; [Lancaster Co., Pennsylvania]52 pagesName and date taken from cover; there is no proof that Henry Coughenour penned any of the recipes which are primarily for cakes, pies, preserves, and beers, wines, and liquors. Also includes the names Andrew Kauffm[an], with a later date in the inside cover [1837?], along with the names Magdalena Herr, Miss Courkholder, and David banks elsewhere in the book. Has recipe for "Indian Flatjacks," "Poor mans pound cake," and "A Compleat Cure for the Hieves." +1830-06-09. [Jeremiah] Day ADS to Johanni O Colton [John Owen Colton]; [New Haven, Connecticut]1 pageCertification of Colton's proficiency in Latin writing. In Latin and signed "Jeromius Day." +1830 February 3. John G. Krummer DS; ANS to Elizabeth Mehaffey; Litiz, Lancaster Co., Pennsylvania2 pages [total]Certificate of commendation from the principal of the Seminary for Young Ladies at Litiz. Includes a note from Krummer to Mehafey calling on her to "prove that the instructions received whilst a pupil at our Seminary have been beneficial to the advancement of your present & future welfare." Encourages dependence on Jesus and the grace of God. +1830 February-1830 March. H[enry] Wharton Griffith ADfs + 4 Printed Docs.; Philadelphia, [Pennsylvania]22 pages; 15 pagesA printed pamphlet and 2 printed circulars comment on the quarrel between Henry Wharton Griffith and R. Dillon Drake which led to the the duel between William Miller, Jr., and Charles G. Hunter. Several manuscript drafts are included of portions of Charles H. Duryee's pamphlet, which include pen and ink sketches of faces, abstract doodles, and a man in a red jacket and turban[?]. Two manuscript drafts also appear of a public letter, seemingly by Henry W. Griffith, about Drake's initial physical attacks. +1830 March 20. [Committee of the Proprietors] DS to Parlee Keith; [East Bridgewater, Massachusetts]1 pageCommittee of the Proprietors of the East Bridgewater Meetinghouse received payment of Parlee Keith for pew rent. Signed by John A. Whiting, Samuel D. Shaw, Seth Richard, and Alvan Shaw. +1830 March 27. John Biddle ALS to Edward Rutledge; Washington, [D.C.]2 pagesUnable to give Rutledge information on the value of land claimed by Mr. Portier. Notes that land sales near Green Bay, Wisconsin, are "not frequent" and ideas of the value of land are not settled. If the "bill establishing the Territorial Govt of Huron" passes, it will be near to Portier's land and will increase its value. Provides a rough estimate of value for Portier's farm. "The claim has not yet been acted upon by Congress but probebly will be decided by the H. of Reps during the next week." +1830 May 7. Elijah K[eeler] Bangs ALS to Charles F. Seidel; Phila[delphia, Pennsylvania]2 pages [total]Letter written to the principal of the Moravian Seminary at Bethlehem, Pennsylvania. The letter is regarding the poor conduct of Elijah's daughter, Mary Ann Bangs, at the school. He gives the teachers full authority to punish her as deemed proper. On the same sheet, Elijah writes to his daughter, Mary Ann Bangs, regarding her misconduct at school. He threatens that she will invoke his unending displeasure. If she does not improve her behavior he will "convey you to some lone dark Woodland farm, there to a ruff farmer, will bind you, as servant, untill you are eighteen, or as long the law will admit." NOTE: Seidel was the principal of the seminary from 1818-1819 and 1822-1836. Elijah Bangs owned a china shop on North Main Street in Philadelphia. +1830 July 22; 1830 August 12. Isaac McCoy and J[ohnston] Lykins ALS to James Polke; Fayette, Missouri; Prairie Creek, [Indiana?]2 pages [total]Remarks on the death of Josephus, relying on religious faith. Received Polke's letter offering to purchase McCoy's farm, and is sending Lykins to finalize the sale. Preparing to return west to survey Delaware lands above the Kauzau River. "I shall be attended by a guard of Indians." Passage of the Indian bill is gratifying to missionaries such as McCoy, and prospects have never been more promising. Need more missionaries. Includes a note from Lykins explaining his failure to attend to the sale of McCoy's farm and arranging to do so at a later date. +1830 October 16. Andrew Jackson AL to [Philip G.] Randolph; s.l.1 pageTo the acting Secretary of War. Enclosing a letter from the Governor of Massachusetts requesting a loan of surveying equipment. [Gov. of Mass. letter not present]. +1830 November 14. W. ALS to Mr. Lamb; Philadelphia, [Pennsylvania]8 pagesNotes the decline of popular interest in theater and how "Theatrical taste is getting exceedingly bad." Blames the great number of theaters for spreading acting talent too thinly. Believes the low price of admission draws a less sophisticated crowd, driving the decline in theatrical tastes. Comments on the appeal of high versus vulgar theater. Gives advice about what types of productions to show on different nights of the week, not forcing actors to sing, being judicious in using stars, and reigning in actors' improvisation and romantic displays on the stage. Discusses how to avoid distractions from the performances' illusions. Quotes from John Dryden. Advice to a beginning stage manager. Author could possibly be William Burke Wood (1779-1861), William Warren (1767-1832), or Francis Courtney Wemyss (1797-1859). +1830 December 24. W[illiam] G[ardner] Angel ALS to Russell G. Dorr; Washington, [D.C.]4 pagesDiscusses his recent election and the narrow margin of his majority. "... I have always remarked thro life that I have lost more friends and become more obnoxious by an excercise of plain honest dealing than I did by shuffling & deceit." No suitable positions are available for the president to appoint Dorr to, and advises Dorr to refrain from entering politics at all. Political offices prove financially and morally bankrupting. "Vicissitudes are so great and changes so frequent that the continuance of an office when once bestowed is so frail and uncertain that the incumbent lives in constant fear of being turned out, He loses his native independence and becomes a fawning sycophant ever ready to kiss the foot of him who is in power... The idle and extravagant habits acquired by office holders leads them unerringly to poverty and totally unfits them for other avocations." Advises Dorr to be "honest and faithful" with his clients and to be "content with small & certain gains and do not enter upon political life till you have secured a competence of lucre." +1830 December 31. H[enry] D. B[ird] ALS to R[obert] M[ontgomery] Bird; Port Clinton, [Pennsylvania]3 pagesComments on Robert's latest play and it being "given to F.," likely referring to Edwin Forrest (1806-1872), the actor. Discusses awaiting public reactions. Muses on names for "Yr. Fanatick," possibly a character. Worried that the topic is "too ticklish for your 2nd play. Religion (particularly in this presbyterian country) is a rather delicate subject for the stage..." Comments on local women and Pennsylvania Dutch girls. Discusses his personal finances. +[ca. 1830]. AMs; [Blawenburg, New Jersey]17 pages"Constitution of the Blawenburgh Temperance Society." Includes articles of association and list of 226 members, with Rev. Peter Labagh (1773-1858) listed as the first. +1831 May 9. Geo[rge] McDowell & Son ALS to Lawrence Lewis; Baltimore, [Maryland]1 pageComments on the costs and details of binding "Rees' Cyclopedia." +1831 September 10. Geo[rge] McDowell & Son ALS to Lawrence Lewis; Baltimore, [Maryland]1 pageList of costs associated with binding various books, including Rees' Cyclopedia and the Life of Washington. Includes a letter notifying Lewis of the completion of his order and a note from October 3, 1831, certifying payment. +1831 October 17. M[atthe]w Brown Partially printed DS; Canonsburg, [Pennsylvania]3 pagesFund-raising document for Jefferson College describing its history, philosophy, location, and reliance on tuition for funding. Students are expected to perform manual labor on the college farm in addition to their studies. "The object is to promote health and vigor, both of body and mind, to form habits of industry and economy, to impart some practical as well as scientific knowledge of agriculture, gardening, and the mechanic arts, and greatly to reduce the expenses of a college education." Handwritten addition by college President Brown sets forth amounts required to endow a scholar and the benefits associated with doing so; scholarships may be endowed both by individuals and by Sabbath School association. Lists costs of tuition, board, and other expenses. +1832 February 17. Samuel Todd ADS to Asa Fox; Plymouth, [Massachusetts]1 pageContract for provision of housing material. Lists details of the materials, its delivery, and costs. +1832 March. F[rancis] P[reston] Blair Printed Doc.; Washington, [D.C.]1 page"Proposals for an Extra Globe." Proposal for printing thirty numbers of an "extra Globe" to support Andrew Jackson's reelection. Criticizes his political opponents, noting the hazards they pose to America. "The Champion of an unreasonable Tariff and the Author of Nullification, having no principle in common but a restless ambition, are found united in their efforts to baffle the President in his foreign negotiations, kindle faction in our halls of legislation, and fill our country with discontent and anarchy." Notes the "causeless rejection of our Minister to Great Britain." Calls for subscriptions to the special editions of the Globe. +[1832?] July 7. Mary [Wharton] ALS to T[homas] I. Wharton; Bordentown, [New Jersey]3 pagesHopes to come home to hear his speech. Heard her first speech this past Fourth of July, "and I am sure you do not wish me to remain with that as a specimen in my head." Comments on the weather, her housing, and sewing a purse. Discusses Fourth of July celebrations, including songs. Many do not respect the local clergyman. Notes many musical residents and the famed "Mr. Waldie," "as distinguished in his way... as the president in his." +1832 July 31. Ch[arle]s Banchen ALS to Tho[ma]s I. Wharton; Philadelphia, [Pennsylvania]3 pagesDiscusses the local cholera epidemic. Tries to allay Wharton's fears. "The cases are, I understand, with the exception of that at the Almshouse, of the ordinary character attributable to irregularity of habit or great imprudence in some particular indulgence, and altogether confined to the class chiefly affected at New York." Philadelphians are remaining calm. "...the streets are as crouded and every one taken up in his own pursuits as tho' no cholera had appeared." Lists the number of cases and deaths. +1832 August 27. Hannah Goodale ALS to John Ayer; Mackinaw, [Michigan]3 pagesGoodale writes on behalf of Frederick Ayer (1803-1867), John's brother, offering condolences for the death of his father. Reflects on death and religion. Describes Frederick having gone with a trader to live, preach, and establish a school among the Indians at La Point (Madeline Island in Lake Superior). "After he considered it his duty to go he went very cheerfully, for he truly loves the souls of the poor Indians, and seems not to be at home unless he is among them." Comments on the Native American reaction to Frederick at La Pointe and his plain living. "To some people it would be next to banishment to go nine hundred miles into an Indian Country, some of the way almost impassable and settle down among them without one Christian friend, only one white man, and he an Indian wife. But all this your Brother has done cheerfully, accounting himself honoured and esteeming it a favour thus to be a forerunner to prepare the way of the Lord and make his paths straight." Includes extracts from a letter Frederick wrote to her from Sault Ste. Marie, commenting on religious gains there and his travels. +1832 November 16. Alden Bradford Partially printed DS to [Sheriff of Bristol County]; New Bedford, [Massachusetts]1 pageSheriff of Bristol County ordered to "attach the goods or estate of Frederic P. Taber of said Fairhaven painter," or arrest Taber to answer for the debts owed to James Bosworth, Jr., "portrait painter." Regarding the arrest of Tabor for indebtedness in Bosworth v. Tabor. Alden is the Judge of Fairhaven County, Massachusetts writing on behalf of James Bosworth. Includes manuscript note signed by Benja[min] T. Sisson, Deputy Sheriff, "the within precept satisfied-- and have charg my fees to Deft." +1833 May 11. David Butler ALS; Troy, [New York]2 pagesAsks for help with a young man, Houghton, whose scholarship has been supported "by those who are not his relations" because of his family's poverty. After having "fallen into rather profligate company" at Union College, he lost the financial support of his benefactors. Wishes to mend his ways. Hopes he and Mr. Kirk may have some way of employing the boy, as "it may perhaps be the means of preserving his from ruin." Asks for a copy of his "discourses to young men" to use with the boy. +1833 June 14. Thomas Moore ALS to G[ilbert] S. Newton; Sloperton [Cottage, England]1 page"Thanks, my dear Newton, to Mrs. N. and yourself for the pretty waltz, which I play over often to remind me of that agreeable evening, and those sweet Transatlantic tones, in which ‘like a wizard, by a spell / of my own teaching, I was caught.'" +1833 July 16. W[illia]m Wirt ALS to William Rawle; White Sulphur Springs, Virginia4 pagesComments on lands he purchased in Florida several years ago. Provides a detailed proposal and experiment to use destitute German immigrants, recruited in northern cities, as labor in southern states. Notes concerns about the climate and German immigrants' reputation of breaking indentures. Describes the recent German immigrant population and their good character. Wrote up "a plan of association," had a German clergyman translate it, and distributed it amongst immigrant families. Notes his obligations to set up and equip the workers and his son-in-laws' labor directing work and sending the produce to market. Workers split a third of the profits. Intends to grow cotton but may expand to sugar. "I reserve to myself the right of encreasing the colony at pleasure, but with white and consequently free labour only, there being an express stipulation against the introduction of slave or coloured labour." +1833 August 9. Seargent [Smith Prentiss] ALS to George L. Prentiss; Vicksburg, [Mississippi]3 pagesLetter from Seargent to his brother apologizing for writing so infrequently. Pleased that George enjoys college and advises him to study oration to supplement his academics, explaining in detail the importance of such an endeavor. "This attainment is to every man of the utmost importance. In fact, it is no less than the power of using his other attainments - for of what advantage is information - unless one has the power of conveying it - and shewing to the world that one possesses it..." Discusses how elocution brings men to greatness. Uses Henry Clay (1777-1852) as an example. "...his superiority consists in the power & adroitness with which he brings his information to bear." +1834 February 17. Almira H[art] L[incoln] Phelps ALS; AL to [Zilpah Polly Banister] Grant; Guilford, Vermont5 pages [total]Asks Ipswich Academy Headmistress Grant, as a "distinguished teacher," to write recommendations of her textbooks, Lectures on Botany and Lectures to Young Ladies, for the publisher. Revising her Child's Geography and asks Grant's opinion about female education in Geology and Greek. "I have long thought we ought to direct our pupils more to the contemplation of nature in her various forms than we have been accustomed to do." Working on a "Chemistry for Beginners." Phelps is trying to address "some of the deficiencies I have formerly felt, and which Teachers now complain of with respect to School Books." Would like teachers' feedback. Enclosed is an anonymous letter to be read to the "little ones." Tells of writing songs and visiting a public school closing exercise in which the writer joined them in reciting. Sang in classrooms. Tells a fanciful tale of a mouse inhabiting her boot while she napped. +1834 March. John Ford ALS to Timothy R. Green; Saratoga Springs, [New York]1 pageLetter soliciting business for the Pavilion Hotel in Saratoga Springs, "calculated expressly for Families & parties." Includes a description of the hotel accommodations and an apology for not having had apartments to suit Green the previous year. +1834 June 30. W[illiam] Strickland ALS to James Mitchell and Robert McCoy; Philadelphia, [Pennsylvania]1 pageRecommends John Kenworthy, "a painter & glazier in my employ." +1834 June 30. G. ALS to Henry B. Curtiss; Verona, [New York]3 pagesWas unable to visit due to pleurisy and attending a select school. Studying made his health suffer, so he has turned to farming. Notes his brother working as a carpenter and joiner. Comments on farming and land in Verona. Discusses business failures and scarcity of money. "Much is said about the U.S. Bank as the cause of distressing the Country, as also concerning the President of the U.S. both have here Friends and Enemies as in most parts of the Union." Describes local sect of "Perfectionists" who "pretend to be equal with Christ having power to work miracles, yet cautious how they attempt it as I have not heard of their performing any such deeds." Notes the upheaval they have caused in drawing church members away and proclaiming their desire to "break down & ultimately destroy the churches of the present day." The area may be rid of them soon, as they propose moving west, "where you may possibly be blest with them in Ohio." +1835 January 1 - 1835 February 28. Journal; [Maine]56 pagesDetailed "slice of life" journal with marginal illustrations, seemingly kept by a barber but with many references to women and women's work. Potpourri of topics, including social visits, women's and agricultural labor, religion, reading, religion, weather, death and health, cleaning and food preparation, tailoring, sewing, schools. Includes multiple drawings of straight-edge razors and references to getting and giving shaves. Describes reading the Bible, newspapers, periodicals, and novels. Notes the "Bank War" with U.S. Banks and the Treasury, federal land grants, and fires in New York City. Many fine pen and ink illustrations provide more details on the day's occurrences. Illustrations include razors, scissors, irons, buckets, a casket, manicules, clothing, people warming feet in hot water, clothes being washed, barrels, the moon, a mole, a musical instrument, an ax and grinder, kettles, wash tubs, baking and food, a goat, letters, logs being pulled, a butchered calf and a fish, a hearth, an umbrella, and a heart with arrows. [References Lydia Haskell, in need of new housing, create separate finding aid] +1835 January 29. Isaac McCoy ALS to James Polke; Westport, Missouri4 pages [total]Writes about sickness and death in their families. Includes religious reflections. Discusses financial matters relating to a land transfer. Sending a copy of his "Annual Register of Indian Affairs" [not included]. Had asked a cousin to "write all that he could recollect of former doings of, and with the Indians." Written on free sheet of prospectus for Isaac M'Coy's Indian Advocate. "PROPOSALS for publishing, on the Kauzau river, within the Indian Territory, west of the state of Missouri, and three hundred miles west of St. Louis, a semi-monthly periodical, to be entitled, THE INDIAN ADVOCATE, Devoted chiefly to Indian Affairs." +1835 May 15. W[illiam] H[enry] Channing ALS to Julia M. Allen [Channing]; Havre, [France]4 pagesGrateful for a safe sea voyage. Beautiful letter to his future wife, thinking of their future life together and their courtship thus far. Reflects on whether she wants to be his soul's keeper and to aid him in his work "of moral reformation, of human salvation." "Remember you are free - wholly free, as free in my view as if we had never explained to each other the labyrinth of causeless anxieties, in which our hearts have been entangled... that I was indeed candid in my conversations with you, candid to the degree of folly and presumption - both in what I said relative to you and our intercourse, and my own character and prospects..." Briefly mentions books he left for her to read. +1835 May 18. Richard Stanton ALS to Lawrence Lewis; Alexandria, [Virginia]2 pages [total]Letter concerning construction details of Washington's tomb. Stereoscope view of tomb, of later date, is included. Enclosed: James MacPherson ALS to Richard Stanton; Baltimore, Maryland, 1p. May 18, 1835. Apologizes for misunderstandings about the tomb's dimensions. Includes pen and pencil sketch of Washington's tomb. Letter accompanied by Alexander Gardner stereoscope view of the tomb. +1835 July 25. A. Scofield ALS to Eliphalet Nott; Auburn, [New York]3 pagesLetter regarding the question of admitting an African American young man into college. "He is a sensible, decent boy, well prepared to enter sophomore in any college in the land is anxious to enjoy the advantages of regular collegiate courses under your administration." Could be admitted at a school in Hudson, Ohio, but would prefer not to. "... when I think of Africa and her wrongs and the present condition of her exiled sons I feel as though it was time for humanity to awake and put on strength and moderation and wisdom and energy for in regards to this whole matter great events for good or ill are to follow in quick succession. And if the wise fail to act, fools cannot be restrained..." +1835 October 19. Jacob Abbott ALS to John S. C. Abbott; Roxbury, [Massachusetts]3 pagesWrites regarding John's recent move and construction on a church. Would like to speak to him about "the Magazine," but his presence is not required. Gives a detailed account of everything he did that day. Mentions steel plates, proofs, and an engraver. +[ca. 1835]. [American Society for the Diffusion of Useful Knowledge] L; 4 pagesDetails of a plan to publish a national library for district schools. Hope to collect 50 to 100 "instructive works on various subjects in all the departments of useful Knowledge calculated to benefit & interest the Youth of our Country." Lists estimates of different costs associated with establishing the library. +1836 January 9. Josiah Quincy Partially printed DS; [Cambridge, Massachusetts]1 page"Abstract of Laws and Regulations of the University in Cambridge [Harvard], for the Information of Parents and Guardians of Students accepted on Examination." Admitting John Ganson (1818-1874) as a member of the Freshman class on the condition that he passes a satisfactory examination of Latin syntax and Greek grammar and writing. Includes a revised dress code pasted over the previous version. + +1836 March 12. Nathan Seabury Linnell AMsS to Miss Charlotte; s.l.3 pagesReflections on youth, the formation of man's disposition, and childhood pleasures. Notes the irony of youth's impatient expectation of growing up to obtain happiness when most grown men look fondly on childhood as the happiest stage of life. Contrasts the empty pursuit of wealth and fame to the happiness and blessedness offered by religion. Item was originally laid in The Christian Parlor Magazine, volume 3 (1847). +1836 March 14. Nathan F[ellows] Dixon ALS to Nathan F[ellows] Dixon, Jr.; Westerly, [Rhode Island]8 pagesWritten as his son nears the completion of his studies at New Haven Law School. Comments on money he has sent to Nathan. Discusses young men's indecision about their careers and the importance of adhering to a chosen profession. Compares a man who switches professions without mastering either to a hybrid animal "... the misjoinder of a Sharke's foreparts, to a Bear's hind parts--would form a Compound animal--but poorly Calculated to get a good Living in either air or watter." Gives advice regarding the profession of law, encouraging Nathan to work in his law offices before returning to Cambridge and "Judge Story's Law School." Profits to made as a lawyer in New York City are greater than those of a merchant. Emphasizes the importance of scientific and mathematical knowledge for lawyers, the value of rising before the sun and exercising, the benefits of manual labor, natural philosophy, and good habits. Acknowledges that some classes of people will not pursue or benefit from these practices, including slave holders. Discusses their family history. +1836 June 9. J[ohn] Davis ALS to Phineas; Senate Chamber, [Washington, D.C.]2 pagesDiscusses finances and dealing in scrip. Notes that $500 of the scrip belongs to Webster. Includes a signed note from [Daniel] Webster (1782-1852). +1836 July 13. John Sergeant ALS to J[ames] C[ole] Van Dyke, Jr., +W[illiam] H[enry] Steele, and +W.W. Demerest; Philadelphia, [Pennsylvania]1 pageHas to decline the Philoclean Society's invitation, likely at Rutgers College, as he will be leaving for Newport. Wishes the institution well and hopes "that the blessings of Providence may rest upon every effort to promote the cause of piety and learning." + +1836 August 21. E[lijah] J. Weed ALS to John McLean; Washington, [D.C.]2 pagesHas been ordered north "to attend to the erection of the Marine Barracks at Norfolk & Charleston," as the "Creek Campai[g]n has finished. Comments on the Creek War, calling it "much of a humbug." "The Indians from what I could understand were goaded to desperation by the villanous whites around them - they were openly swindled out of their lands and other property - without the slightest means of redress... had I have had a choice I should have much sooner fought on their side than with the whites." Mentions the pleasant landscape and not losing any members of his corps. Sorry to have missed meeting Captain Taylor. Notes the unfair dismissal of Simpson and Harvey from the post office. Mentions the current presidential election. "The friends of Van Buren here are becoming alarmed at the news from the south & west." +1836 September 7. John Haney ALS to John Haney, Thomas [Haney], and William Haney; Galena, [Illinois]3 pagesInstructions to his sons in Rushville, regarding money and travel to Galena. Gives instructions for settling Thomas in to a new job at the Galena Advertiser, arranged through the editor, Mr. Bartlett. "A young man as smart as you can go any where, and do any thing." +1836 November 14. Cha[rle]s Graves ALS to James M. Smith; Shingle Creek, New York3 pagesGraves has been teaching: "I have engaged in this school as a kind of benevolent effort. To elevate if possible the standard of popular education, that pillar of our country's glory." Ann Maddock and Eliza Van Duzer, from Gouvernour, will be attending his school and boarding with his family. Describes local religious revivals, headed by Mr Stephens and Mr. Wicks "You know there is in such popular excitements a certain degree of feeling which carries men to such and such extremes and all who fall short of the standard set up by the leaders are regarded as hereticks." Comments on the loudness of revivalists' prayers and describes a revival meeting in detail. Discusses works recently read, including Peter Simple and Last Days of Pompeii. +1837 January 31. C[harles] W[illiam] Hackley ALS to Mahlon Dickerson; New York, [New York]2 pagesLetter of recommendation for James S. Woolley to act as mathematics teacher upon "one of our vessels of war." Notes Wooley "has been for two years past prosecuting mathematical and physical studies in the University in this city with eminent success." Note: Letter written while Hackley was Professor of Mathematics at the University of New York. +1837 June 24. Levi Beardsley ALS to A[zariah] C[utting] Flagg; C[herry] Valley, [New York]3 pagesDetails of banking and the "money market." Comments on Flagg's circular "proposing to accept from the Central Bank about 10 per cent in specie instead of 25 of the Canal monies." Willing to send the specie, even if it is inconvenient, as "the constant demand for change renders it very desirable to retain all that we have and more will be wanted." Worried that the reduction of specie will render them penniless soon. Asks whether he expects other banks to comply with his request and make it "desirable that the Central shall furnish the amount indicated." Would like Flagg to "pay the interest & reduce the stock without using all the specie" so it can be returned to them" instead of turning it over to other Banks." +1837 November 22. A[rchibald] Alexander ALS to Cortlandt Van Rensselaer; Princeton, [New Jersey]1 pageUnable to accept Van Rensselaer's invitation to preach at the opening of his new church, on account of his "delicate and variable" health. Unable to travel during winter. "... but should providence so order it, that the weather should be pleasant and my health as good as usual, you may possibly see me in Burlington, on that day." +1837 November 24. Sam[ue]l Miller ALS to C[ornelius] C. Cuyler; Princeton, [New Jersey]1 pageCuyler's church had applied for aid "in furnishing the means for completing the salary... of your Professor of 'Pastoral Theology,' " but they have not received any money. Action needs to be taken. +51838 February 13. N[oah] Webster Printed Circular S to Moby, Kimball, & Merrill; New Haven, [Connecticut]1 pagePrinted circular letter on the evils of over-publication of books. Prices of the Elementary Spelling Book has been drastically reduced. Notes the need to "restrict licenses in the number of copies" and for publishers to hold firm on prices. "I must urge them all to adopt this course, in which their interest, and the good of the public, in having well-made Books, are deeply concerned." +1838 April 19. Th[oma]s D[artmouth] Rice ALS to Fra[nci]s Weymms [Wemyss]; Louisville, [Kentucky]1 pageNotes travel arrangements for a minstrel show in Pittsburgh. "...are not the terms you propose pretty heavy - for Pittsburg. However we always agree on terms, and when I arrive we will arrange matters mutually beneficial for both parties." Includes a postscript noting, "My Houses here were overflowing Every night." +1838 June 3. F. M. Prescott ALS to T. O. Prescott; Camp on White River Opposite Yorktown, [Indiana]7 pagesWas directed to Indianapolis to "take the level in a locating party" for the "Central Canal North of Indianapolis." Found the long walks and weather difficult. engineering. Comments on James becoming an artist. Describes a typical day "examining the country to find the most fit place for Canals, roads, or what not." Requires strenuous effort in a rough camp setting. Notes the goals of the party and the engineers and other members of the crew. The work demands knowledge in "Geology, Minerology, Botany, Political Economy, and Law." T. A. Morris serves as the locating party's leader. +1838 August 2. H[enry] D[ilworth] Gilpin ALS to [Joshua Gilpin]; Washington, [D.C.]15 pagesDescribes a trip in Virginia with President Martin Van Buren, Secretary of War Joel Poinsett, and Secretary of Navy James Paulding. Stopped at Fortress Monroe and Fort Calhoun, noting General [Andrew] Jackson's fondness for the area. Notes their reception at Norfolk and Portsmouth, visiting the Norfolk Navy Yard and the "Exploring Squadron" headed to the South Seas. Comments on dinners and social engagements. Travelled on to Richmond, disembarking at Jamestown and describing the ruins. Describes the President's reception in Richmond. Studied the "manufacture of 'a mint sling,' " an alcoholic drink, noting how to make one. +1838 September 30. Salmon Sawyer ALS to Aaron Sawyer; [Appanoose], Hancock Co., Illinois4 pagesResponding to his cousin, who had inquired about "speculation &c in the West." Some think the area "the very Garden of the world while others... are disappointed and return back". Living three miles or more from streams and rivers minimizes chances of sickness. Sawyer notes that the area is excellent for selling goods; business is principally done on navigable streams. Persons who are able to speak in native languages are able to engage in profitable trading with Indians. The Blackhawks will not speak English. He also notes: high demand for blacksmithing, prices of foodstuffs, farming, land speculation and squatters in Iowa Territory, types of timber, and hunters and rifles. Asks for newspapers. Advises on the best travel route to Iowa. + +1838 October 10. Sam[ue]l Waterbee DS to Mr. Scranton; 1 pageBill for four chairs. +[1838] November 16. Francis E[dward] Parker Partial ALS to John A[bbot] Emery; [Cambridge, Massachusetts?]3 pagesDiscusses tutor [Jones] Very's (1813-1880) preoccupation with "Transcendental philosophy as applied to religion." Notes Very's decline into mental illness, "though sound on every other subject became entirely insane on religion." Very asserted that "he was perfect, he could commit no sin," and believed he was communing with God. Warned of impending judgment. Very was removed from the educational institution by recommendation of the President and other professors. Remarks on Mr. Reed leaving Dartmouth "as his standing was not very good here (as a scholar) he chose to go where he could begin anew and do better." College has been relatively quiet, except for "a few bonfires, & a cow was lodged one night in a recitation room." Happy to have missed the admission of Charles Soul, calling it "a ceremony so perverted." Sending Cleveland's Antiquities along with the letter. Addressed to John A. Emery, Student at Phillips Academy, Exeter N.H. +1838 December 22. W[illiam] S[prague] Buell ALS to Ebenezer Lane; Albany, [New York]4 pages (total)On account of a shared acquaintance with Lane's "near friends," Sprague asks for help in collecting "the autographs of the distinguished men of this and other countries" to be deposited in "some public institution." Interested in governors, judges of the Supreme Court, and members of the U.S. Senate who come from the West, to address a deficiency in his collection. "... I wish to preserve an entire document rather than a mere fragment or signature." Asks for any letters to be sent to Samuel Ingram, Member of Congress, who will forward them to Sprague. Sprague notes that he was pastor of the West Springfield church "and a neighbor of your excellent mother." Reverse of letter includes biographical details on William Buell Sprague, noting "he has... one of the largest collection of autographs in America." Includes a list of "Folio letters wanted" on a separate sheet. +1838-1840. Charles Hayden Ms; 20 pages"A genealogy of the late Col. Josiah Hayden..." Book made by hand from older paper, including the cover made from a page of Josiah Hayden's journal. Provides a detailed history of the Hayden family. +1839 February 4. Daniel Webster ALS to A. B. Gale; Washington, [D.C]1 pageAdvises Gale, "young friend," on his education. Prompts Gale to remain at Exeter. "You can never enjoy better means of education, than those which you now possess. Your friends do not doubt your capacity to learn; they are only conscious that you should be attentive & assiduous. And let me assure you, that without earnest attention & [serene?] study, you cannot give your friends pleasure, or do yourself honor." Accompanied by an engraved portrait of Daniel Webster by Avignon and Buttre +1839 March 29. R[alph] W[aldo] Emerson ALS to John G. Ladd; Concord, [Massachusetts]2 pagesLooks forward to seeing his cousin when he visits in the summer. Emerson will have "an opportunity of seeing you once again in our green fields, & talking with you of old & new times, of the books you have read, the men you have seen, the growth of your affections, your intellect, & and your character." Hopes for news from Andover. Addressed to Ladd at Phillips Academy, Andover. +Undated. [Sister?] and Charles Henshaw AL to James H. Eldredge; [Boston, Massachusetts]3 pagesDescription and list with prices of furnishings purchased for Eldredge. With: Charles Henshaw ALS to James H. Eldredge. Boston, [Massachusetts], May 20, 1839. +1839 May 20. Charles Henshaw ALS to James H. Eldredge; Boston, [Massachusetts]1 pageList of furnishings sent by rail to Eldredge (possibly related to undated letter to James H. Eldredge). +1839 September 20. Edward [Cooper] ALS to H. C. Cooper; Rutgers College, New Brunwick, [New Jersey]3 pagesHas entered the remarkably talented junior class at Rutgers. Describes friends, professors, classwork, buildings, literary societies, and life at Rutgers. "The deportment of the students is very good, strictly moral and the greater part are religious in their walk and conversation." Mentions that there are "not any ultra maniacs" among his classmates. Notes the promise the class holds for the "Dutch Church and the theological institutions," and the great number of students who attend the Dutch church because "most of the students are dutchmen." Describes the college president, who reminds him of "the old Puritan fathers about to land on our American Shores." Cooper later became a Presbyterian clergyman and educator. +1839 November 16. John W. Perit ALS to Pela[t]iah Perit; Philad[elphi]a, [Pennsylvania]3 pagesLetter regarding a painting sent for exhibit in Philadelphia. Perit reflects on the painting, offering his praises on the artist, [Samuel L.] Waldo, and his representation of Pelatiah. "A Connecticut friend who knows you says the painter is a Wizzard." Notes others who have found the artwork to be extraordinary. +1839 November 18 - 1840 January 6. Ms; [Birdsboro, Pennsylvania?]2 pagesRegister of pupils at the Birdsborough School House, with names of students, their ages, admittance date, and the progress of their studies. +1840 January 23. D. & A. Kingsland ALS to H[enry] Howard; New York [City, New York]3 pages (total)Writing about the lands they own in Michigan, the taxes paid upon them, and those that are still owed. Includes a 2-page table showing specific sections, ranges, and acreage for D. & A. Kingsland's land-holdings in 11 Michigan counties. Note: Henry Howard was the Auditor General for the State of Michigan from 1839-1840. +1840 January 26 - 1842 August 28. George Wanzer Journal; 44 pagesDetailed weather journal with a hand-painted cover, "WEATHER, TABLE." Notes precipitation, wind, temperatures. "An a count of the wether the depth of the snow at the time of my commencin foor feet." Notes depths of snow and changes in seasons. "... the snow being oll gon except the drifts round a bout and the spring burds made thare aperance, such as the bluburd and the robing." Remarks on storms, agricultural work, seasonal birds and frogs, northern lights, and details about the appearance of the sun and moon. Includes sporadic short poems preceding the first of the month and other extracts from books. Reflects on the passage of time with the New Year. +1840 February 8. Richard Rush ALS to J[ames] K[irke] Paulding; Sydeham, near Philadelphia, [Pennsylvania]4 pagesComments on his activities while in England, including visiting navy yards. Enclosing a copy of a "navy pay-roll of Cromwel's time" and a sample of teak wood [not present]. Mentions Dutch history. Interested in Paulding's recent report and the outcomes of Captain Perry's "experiments with the Paixhan guns." Comments on a model of a steam frigate, "and by my notions it will be the Alligator, snapping turtle (with a touch of h_ll and the d___l) and every thing else to boot." Agrees that the Navy Board should be abolished. Comments on how the navy practices with their guns, believing the higher costs of practicing with ball cartridges would be rewarded in battle. Believes war is a possibility +1840 February 14. D[avid] Crawford ALS to A. L. Miner; Putney, [Vermont]3 pagesLetter by a War of 1812 veteran, regarding the qualifications of Gen. William Henry Harrison. Unable to attend the Co. Convention at Arlington. "The nomination of Genl. H. seems to have united the whigs. We are now out of the fog... It appears to me that one thing only can prevent success & that is the efforts now making in the slave states to induce a belief there that the northern whigs are all abolitionists." Notes responses to assertions by the "'Spoils Party' that Genl. H. is too old, that he is wanting in talents & that he lacked skill & courage as a Genl." Emphasizes Harrison's prior political positions and actions in the War of 1812 and the Northwestern Territory against the British and Native Americans. "They s[ay] he is a 'poor man' - lives in a log cab[in] be it so- He has been faithful in the 'log ca[bin'] let him be master of the 'white house'." +1840 May 1. [?] Lloyd AMsS to Thomas I. Wharton; Logan Square, [Philadelphia, Pennsylvania?]2 pagesPoem in honor of delivery of two elbow chairs for Wharton's office. Celebrating Wharton and their friendship. +1840 May 15. Abel [Packard] ALS to Lucy W. Packard; Phillips Academy, Andover, [Massachusetts]3 pagesDescribes a May Day frolic at Andover and the Phillips Academy in the spring. Notes coursework. Enjoyed with Mr. Grover's remark on seeking excellence rather than happiness, copying it into her commonplace book. Exhorts her sister to seek excellence, believing happiness will ensue. Comments on Lucy's religious state. Notes a revival in the local Baptist Church. +1840 July 2. Mary [W. Cady] ALS to David Cady; South Hadley, [Massachusetts]3 pagesHopes to stay for a short while after the end of the term. Her finances are running low at Mt. Holyoke College, noting her expenses for books, personal items, living costs, and missionary contributions. Mentions daydreaming of home rather than studying. +1840 July 5. Thomas H[art] Benton ALS to B[enjamin] B. French; Washington, [D.C.]1 pageRegarding pens used to sign bills related to the expungement of Andrew Jackson's censure by the Senate. Thanks French for the gift of two pens. Benton will preserve them. "They have each done enough; and having acted their parts in such memorable events, will be exempted from future use,& guarded with honor." +1845 August 29. Tho[ma]s [Lacey] Smith ALS to Levi Lewis; New Albany, [Indiana]3 pagesBemoans Whig victories in Indiana. "We fought pretty hard for the old cause in Indiana but fortune has not smiled on us this time. Hard cider and log cabins, carried the day in this region, and I am almost ready to fear, that a restless desire of change, and the discontent produced by the hard times, as, they are called will trump over reason and good sence throughout the land." Comments on local election campaigning, including meetings, heated discussions, and his own participation in stump speeches. Remarks on a recent trial of Dr. S. McClellan's brother, which ended with a hung jury. Read of "a great gathering at Lancaster... it must have been almost a match for some of the Whig fandangos." Describes a political propaganda tool used in Indiana, "‘the big ball' an wooden machine fixed upon an axis supported on a wagon built for the purpose, with a variety of devices painted upon it, and hauled through the country, to be emblematical I suppose of the ball of whiggery rolling over the land." Remarks on local agriculture, the quality of the soil, and mosquitoes, "but I think them a much more civil kind than those I have seen in the south." Purchases butter from a Dutch family, describing their property and musing on how struggling farmers in Pennsylvania and New Jersey could prosper in Indiana. +1840 October 4. Charles Sumner ALS to J. Kenyan; Boston, [Massachusetts]3 pagesLetter of introduction for President Francis Wayland (1796-1865) of Brown University. Describes Wayland as "one of the most distinguished literary & scientific gentlemen of my country, & the author of several works on Ethical & Political science of marked merit." Wayland is travelling to England to study schools, including Oxford and Cambridge, "that he may find the secret of English education." +1841 February 6. Mary Lyon ALS to Sophia L. Porter; S[outh] Hadley, [Massachusetts]1 pageLetter requesting Porter to reply whether or not she wishes to have a place reserved for her at the seminary. Letter is in the hand of C.A. Hyde. Note: Sophia L. Porter graduated from Mount Holyoke Female Seminary in 1857. She then attended Oberlin College and graduated from there in 1860. She later taught in Ohio, Connecticut, and New York and was Principal of Chatham Academy in New York from 1867-1878. +1841 February 21. [Geer Terry] AL to Melzar Gardner; [Enfield, Connecticut]3 pagesLetter from a supporter of the "workingmens cause." Describes the difficulties workers face, especially with education and with prejudices against them. Asks recipients to petition Melzar to print school lessons in his weekly paper, and offers suggestions to make them useful. Signed, "The working men of the New England States." +1841 March 30. W[illia]m H[olmes] McGuffey ALS to Gen. J. T. Worthington; Athens, [Ohio]1 pageWritten as President of Ohio University. Hopes that Worthington will attend an upcoming board meeting. Notes an upcoming change in the commencement time. Remarks on a change in the English Department and institutional finances. With printed engraving of McGuffey, on opposite side: "The Eclectic Educational Series," listing where it received rewards from 1873-1885. +1841 June 27. Thomas H. Williams ALS to Nathan Williams; Cambridge, [Massachusetts]7 pagesWilliams writes to his brother at Yale from Cambridge, where he is working and saving to attend law school soon. He transcribes Lewis J. Cist's poem, "My beautiful! My own!" Recommends newspaper articles and promises to send editions if Nathan will preserve them. Describes his recent activities, notes his financial affairs, and hopes to earn a position at the Law Library. Mentions temperance meetings, dentistry, Gives a humorous account of Harvard students setting a tool shed on fire. They produced a satirical play program entitled "Shantee Conflagration or the Baffled Sneaks," copied by Thomas. The letter also includes a scale-drawing and description of Williams' room in "Warland's Building" on Harvard Street, including placement of furniture and artwork. +1841 June 28. Josiah Quincy to Mr. Wheeler; Cambridge, Massachusetts1 pageNote requesting Mr. Tutor Wheeler's attendance at a Harvard College faculty meeting. Possibly referring to Charles Stearns Wheeler, a tutor in Greek and History instructor from 1838-1842. +1841 July 16. H[enry] H[art] Milman ALS to Dan[ie]l Webster; Westm[inste]r Abbey, [England]4 pagesCharles and Mary Lyell will be visiting America on a scientific excursion. "Mr Lyell, you well know, is among the most distinguished Geologists in Europe." Introduces the Lyells to Webster. Milman would like to visit America to see the Niagara Falls, a primeval forest, and a vast river. "You are held in high official dignity; and I am sure as a man by sentiment and profession of peace, that the affairs of your country cannot be entrusted to those more disposed to promote public harmony between the countries, and private friendship between the individual members of either [Country?]" +1841 October 17. William [Guilford] ALS to Nathan and Mrs. Guilford; Yale College, [New Haven, Connecticut]4 pagesImagines life at home and describes his own room. "Do you not see in that room - the floor of which is so dirty - In one corner a heap of dirty clothes and in an other a cap, four or five books and a pair of shoes?" Joined the Linonian Society. Describes his activities at Yale, including social visits, attending church services, roommates, food. See also William Guilford's letter of 1841 November 1. +1841 October 22. George Peabody ALS to Messrs Peabody, Riggs & Co.; London, [England]3 pagesComments on financial and business matters, including loans, debts, and credits. Discusses items to be shipped on the Great Western and his limits for orders of Bank Shares. Mentions the sale of American stocks in England, Union Bank stock, an order of flour. Requests information on Samuel Taylor, formerly of George Rigg's company; send him $225 to Taylorsville, Wisconsin Territory. Money is scarce, and loans on stocks are out of the question. +ca. 1841 October. C. A. B. Notebook; [Philadelphia, Pennsylvania?]21 pagesContains remarks on Philadelphia's historic houses and landmarks (mostly quoted from John F. Watson's Annals of Philadelphia). Several newspaper articles, some illustrated, are pasted into the notebook relating to Philadelphia landmarks. Includes a number of pen-and-ink and pencil sketches, such as the monument at the Treaty Tree, a drawing of a Southwark Bank note from June 1837, and a wonderfully detailed sketch of William Penn's former residence, the "Slate-roof House," as it appeared in June 1841, signed C.A.B.. This sketch includes information on the current merchants in the house, including storefront signs and wares for sale. [The author of this journal may possibly be Charles A. Besson. A finished ink image of the "Slate Roof House" is held by the Historical Society of Pennsylvania.] +1841 November 1. William [Guilford] ALS to Nathan and Mrs. Guilford; Yale College, [New Haven, Connecticut]4 pagesDescribes a violent altercation between Yale students and local firemen over a dispute about using the town Green. Notes students going to evening prayer, "some with bloody noses some with black eyes some with their arms in a sling... and some with their coats minus a tail." Discusses how the dispute continued through the night, with some students destroying a fire engine and threats of destroying a Yale building. "A Yankee is a prudent man, as long as the fight is confined to fists he is brave enough, but when it comes to attacking the rooms at night, they fear the balls of the Southerners pistols." See also William Guilford's letter of 1841 October 17. +1841 November 20. C[harles] G[randison] Finney ALS to W[illia]m Dawes; Boston, [Massachusetts]3 pagesElecting Amasa Walker as professor of Political Economy at Oberlin College. Walker has an anticonservative viewpoint and is opposed to the "Banking system & thinks this trading upon false capital a great National evil." Notes that another man seeking employment is "with us in his views in respect to plain Diet, Living, Abolition, Sanctification, &c &c." Discusses "shocking carelessness" in regards to fires in Tappan Hall. References religion in the area and gives instructions to insure his father's house. +1842 February 10. Charles and Catherine Dickens ALS to J. H. Adams; Hartford, [Connecticut]2 pagesThank-you note for a musical performance of the previous evening. +1842 February 18. T[heodore] W[illiam] Dwight ALS to Sophia N. Dwight; New Haven, [Connecticut]3 pagesComments on reactions to Charles Dickens, who is visiting in America. "Mr. Dickens has been all the rage here for this two weeks past. In every party, in every reading society, in every sewing circle, in every district school, in ever bar room, the cry has been ringing, where is Dickens?" Describes Dickens, noting he appears somewhat dandyish and "possesses a pardonable spice of his vanity." Mentions beards, arranging for Sophia to visit New Haven, and details of his situation there. +1842 April 4. Sir Cha[rles] Lyell ALS to [Benjamin] Silliman; New York [City, New York]3 pagesReflection on his lectures, venues, attendees, and ticket prices. Notes poor management by the Lyceum and his expectation that he will not be fully remunerated. Anxious to do field work. Has travelled from Niagara to Georgia and met with many who "ascribe the taste they have for science to your tuition." Discusses his upcoming travel plans. +1842 April 23. Geo[rge] Catlin ALS; Egyptian Hall, [London, England]2 pagesApologizes for delays in correspondence, attributing them to a "severe affliction." Glad for offers for assistance in Glasgow. Will be in Liverpool in the summer. Written on paper with a black border. +1842 June 24. Francis Johnson Partially printed DS to E. Burd; Philadelphia, [Pennsylvania]1 pageReceipt for the services of Frank Johnson's band on June 22, 1842. On F. Johnson's personalized printed receipt, with an image of a music book surrounded by instruments. +[18]42 July 2; 1843 June 26. John C. Rives ADS and ALS to M[atthe]w St. Clair Clarke; s.l.5 pages [total]Two-page document concerning profits, payments, and costs associated with printing of Clarke's multi-volume work, The Documentary History of the American Revolution. Mentions [Peter] Force's printing costs. Accompanied by a three-page letter from Rives dated June 26, 1843, regarding his purchase of Clarke's interest in the work. Comments on Clarke's progress on additional volumes of the work, projected government subscriptions and appropriations, expected costs, and payments to Clarke. Includes a signed note from Clarke agreeing to the statements in the letter. +[NOTE: See also Clarke's letter of March 3, 1847] + +1842 December 19. AL to Uncle Aaron; s.l.2 pagesHenry did not want to let the writer see his letter, as he had misrepresented the number of people who would be present at Middletown. Has been disagreeing with Henry in regards to playing cards. Refused to return Henry's cards. "...I thought it wrong for a young man in College to have Cards for it was well to avoid the appearance of Evil." Only evidence he has that Henry uses the cards is a story he has heard of several boys, Henry included, refusing to allow a Middletown College tutor into their room. Sending the cards to Uncle Aaron. + +1842-1852. 3 Partially printed DsS to Samuel Tribou; 3 pages [total]Receipts for magazine subscriptions purchased by Samuel Tribou: Youth's Companion, Boston Recorder, Illustrated Family Magazine. The receipt for the Boston Recorder has the printed date 1842 changed to 1852. +1843 March 14. Philinda [Winslow] ALS to Rev. Horace Winslow; Henrietta, [New York]4 pagesWonders why it has been so long since he has written. Has only received one letter, "& that from the Sand[wich] Islands." Details about classes, their difficulty, etc. She mentions studying "french mental philosophy" and "conchology." She is in the process of deliberating whether or not to continue her studies. Would like to stay past the term. Her father "thinks it foolish to do so, but I am consulting my own interest." She relays information about family and friends, including Upham's plans to travel to Ohio and his education. She has been scolded for not calling on her mother. Mention of religious meetings and "unusual interest in religion in all this section of country." Presbyterians and Methodists are getting along well with each other. +1843 June 22. Park Benjamin ALS to Brantz Mayer; New York, [New York]3 pagesRegarding the style of publication for Mayer's forthcoming book. Describes "The Irish Sketch-Book" form. Notes types of paper and presses. "Moreover it will not be worked on a double-cylinder press but on an Adams press, which gives a perfect register and a beautiful impression." Mentions types of engraving plates, their effects, and limitations. Would like to use full-page wood engravings. Discusses booksellers, selling prices, and proofs. Enclosed: One-page, undated manuscript biographical sketch of Park Benjamin. +[18]43 August 23. J[ames] W. Watson ALS to William Young; [Princeton, New Jersey]4 pagesWatson writes to his father that he has been continually ill, as "[c]old, very cold weather does not, and in my opinion, never can agree with me." President of Princeton advised him to stay to his rooms. However, he does not wish to return home his senior year, "the polishing year," and miss the lectures in science given by "able and efficient Professors" such as Henry and Dod. "We all know, that there is no royal road to Science, its path is obscure and rugged - its defiles many." Excuses himself for writing home so much ("you must certainly think I am troubled with a kind of epistolatory Diarrheoa..."), but since his friends left he feels as a "stranger in a strange land." Briefly comments on finances. +1843 November 13. Emma Willard ALS to Miss English; Philadelphia, [Pennsylvania]2 pagesLetter of introduction for Mr. Nichols, an agent for the publishers of her "historical works." Reflects on her recent divorce and its impact on "the estimation of many who loved me. But bad as that was, to have violated my own conscience and lost 'the peace of God' in my heart, would have been worse." Notes general drop in school enrollment because of hard times. +1843 December. J. M. Cleaveland ALS to Henry W. Cleaveland; Princeton, [New Jersey]2 pagesCleaveland gives a fanciful depiction of the terrors of the night, student's late-night studying, and alcohol abuse during "revels with the jolly crew." Assures his family that he has taken the teetotal pledge, and wrote the "above nonsense . . . more for sport and to let off steam than anything." +1844 January 11. William A. Rogers ALS to John W. Andrews; Springfield, [Ohio]3 pagesSuspects that Andrews' assertion of a link between poverty and population levels is true. "I suppose the increase of poverty and population to spring in those cases from the same cause - a preponderance of the animal passions over the moral sentiments - of a love of present indulgence over a provident regard for the future welfare of the individual and his family..." Compares Irish and Scottish residents to illustrate his point. Worries about the availability of land and the spread of disease and famine if the American population continues to grow. +1844 January 24. Jospeh Noyes ALS to Noah J. Noyes; Boston, [Massachusetts]3 pagesTells of his son, George, being shipwrecked in the Pacific Ocean on a deserted island for seven months. "4 of the crew were drown'd, the rest about 24 in all made a raft & got clear from the rocks & moor'd in 2 fathoms water & were obliged to ride out 8 days & 7 nights... then they got on shore, But no hou[s]es or tree all desolate without man, or beast except a Dog." Eventually rescued and taken to the Sandwich Islands, and George took a position with a merchant in Oahu. His daughter settled in Cincinnati, [Ohio]. Has suffered financial losses and is sending notes in the hopes that Noah can help him settle some outstanding bills he needs to collect. Post-script details a falling out with a Mr. Coombs over a debt. See also: Joseph Noyes ALS to Noah J. Noyes, February 9, 1846. +1844 April 14. Samuel Orcutt ALS to Joseph W. Wright; Owego, [New York]3 pagesDescribes their move to Owego, the region, its agriculture, lumbering business, and residents. Father considering buying a farm. "...the people seem to be verry kind, and kind the right way too, there are some I expect that would like to pick a fellow's pocket, but they seem in general to be verry obliging to us as strangers." Notes religion and education in the area. Experiencing emotional pangs upon moving away from friends and family. +1844 August 22. M[atthew] Brown ALS; Canonsburg, [Pennsylvania]2 pagesWill be resigning his position, likely as President of Jefferson College, at the next board meeting and hopes a successor will be appointed, possibly the recipient. Assurance of the successor's acceptance of the position will limit disruption and harm to the college. Mentions an upcoming meeting of the Presbyterian Synod. Notes some calling for Robert Brackenridge, Professor Green, and Mr. Guffey to be his successor. +[before 1844 December 25]. Samuel McDowell DS; AMs; 6 pages [total]Commissioners appointed to "select a scite to build a county Jail" chose to use the "present jail lot." Appoint E. P. McNeal, Austin Miller, and E. C. Crisp as jail commissioner to "superintend the erection" of the jail and make necessary contracts to complete the jail by 25 December 1844. Signed by Samuel McDowell, clerk. Includes architectural plans for the county jail. +1844 December 26. J[ames] Montgomery ALS to [Fanny Bury] Palliser; Sheffield, [England]3 pagesPoet Montgomery gives Mrs. Palliser permission to use some of his pieces in the poetry collection she is publishing, but warns her "that it will be well for you to secure yourself from loss, . . . verse, original or selected, being the least marketable of all literacy commodities." He amusingly describes the letters he receives from hopeful poets "as a notorious character in the way of literature," and the burden it is for him to be unable to help them. Likely written to Fanny Bury Palliser about her collection, Modern Poetical Speaker (London: 1845). +[between 1844 and 1851]. Laura Bridgman ALS to [George Nixon] Briggs; [Boston, Massachusetts]1 pageLetter written to Massachusetts Representative George Nixon Briggs, governor of Massachusetts from 1844-1851, from Laura Brigman, the first known deaf/blind person to be educated. The letter offers kind words and hopes that Briggs will come and visit the Perkins Institution again to see her and the rest of "the blind girls" again. She also mentions sending Julia Brace, who was a student at the institution for a year, a present. +1845 February 4. J[ames] Fenimore Cooper ALS to Jos[eph] R[eed] Ingersoll; Cooperstown, [New York]1 pageComments on "how near you and I are to making a Marquess" and encourages him to proceed. References the "Bloody Lord John." Acknowledges that he owes Ingersoll some money. "We need not muster all the Johnstone's in the books, but stick to the noble line." Curious about the genealogy of Thomas Gregory and Patrick Henry. Offended Campbell by refusing to go with him on a social visit. Mentions transatlantic postage. Original in [To Be] Goldstar. +1845 February 4. W[illia]m A[ugustus] Sackett ALS to John H. Sackett; Seneca Falls, [New York]3 pagesComments on the value of education and urges him not to stop his classical studies. Remarks on the usefulness of knowing ancient languages. "You say Washington did not understand these languages This may be true- but he lived in a different period & acquired his distinction by different means." Gov. [Williah H.] Seward (1801-1872) was at John Sackett's family home. Jests about "Yankee girls" and whether they can "understand the Catechism & can make pumpkin pies in a way about to the liking of us Yorkers." Sends regards to Mr. and Mrs. Crittenden. Remarks on the election of Trustees to the Academy, including himself, and the possible removal of the male teacher. Expects their factory to be operational soon. + +1845 February 28. [Nicholas Marie] Alexandre Vattemare ALS to [Philip C. Johnson or William B. Hartwell]; Paris, [France]6 pages [total]Received the five boxes of "splendid collections of Books, maps, Minerals &c" to be distributed to libraries. Pleased with how this reflects on the people of Maine. The Museum of Natural History and the Royal School of Mines are preparing "collections of Mineralogical and Geological specimens" to send to Maine. Comments on details of arranging future international exchanges of biological and geological specimens. Requests additional copies of maps for the Secretary of the Navy, Secretary of War, and Geographical Library. Includes a "List of Books transmitted to the Honorable Secretary of the State of Maine for the State Library." +1845 March 19. Uriel Farmin ALS to Noah and Samuel Jewett; Ceresco, Wisconsin Territory3 pagesRegarding the principles of Fourierism. Comments on the evils of the "Isolated household, and the unitary mode of doing business," noting nature's tendency to form groups and associations. "See cattle and Horses in their natural state go in herds. Yea and men in their wild state, do the same. Look at our Western savages. Look at the Turk and the wandering Moor." Believes the divine injunction to "Love thy neighbor as yourself" requires communal living. Discusses the working man's plight under capitalism, especially in European cities and in mines. "His case is immensely worse than the slavery of the Africans of the South.—The master of the negro slave is bound by law to keep his slave and provide for his wants, in sickness and old age. But the poor man who has to labor for his bread, barely enough many times to sustain life." Argues that capitalism and individualism inspire crime and allow for the rise of "peace officers, such as Lawyers, Judges, Justices, Pettifog[g]ers &c—a complete set of Blood Suckers, Idlers, non-producers, living upon the labor, the bone, and the sinew of the nation." Advocates for the need to unify interests. Discusses communal property, arbitration without lawyers, and the underlying beliefs of Associationism. +1845 April 9. Albert Barnes ALS to A[ndrew] H[ull] Foot[e]; Philadelphia, [Pennsylvania]3 pagesThanks Foote for the gift of a cane from overseas, "that sacred mountain." Notes recent "remarkable coldness and deadness in religion," with few revivals. Discusses people from "the asylum." Mentions the recent publication by the U.S. Exploring Expedition. +1845 May 11. Joseph G. Cormick ALS to Isaac Fowler; [Columbus, Ohio]2 pagesLetter from the Ohio State Penitentiary to the Sheriff of Sandusky, offering a description of a 15-year-old escaped prisoner, William H. Green. Notes his known travels, physical appearance, and clothing. +1845 July 16. T[imothy] S[hay] Arthur ALS to Amelia B. Welby; Philadelphia, [Pennsylvania]1 pageIs editing a handsome annual and requests a contribution of a poem. +1845 September 30. Benjamin P[erley] Poore ALS; Paris, [France]2 pagesTrying to determine which of the papers he mailed have been mislaid. Remarks on the historical research he has undertaken for the recipient. Looked at accounts of "Radisson's expedition to Hudson's Bay," especially materials relating to La Salle. Copied a document from 1632 relating to the "restoration of Quebec," Samuel de Champlain, and Jacques Cartier. Believes the American continent was discovered by Cousin in 1488, and provides some notes on Cousin's travels. Is busy "accumulating a large quantity of matter for the State." The Parisian Legation is uninterested in his work. Has access to Marine and War Departments, but expects Mr. Broadhead's recent report may restrict future use. Attempting to access other archives. +1845 October 16. AL to Tim C. Ward; New Albany, [Indiana]7 pagesHappy to have heard from home, Fryeburg, Maine, but expresses homesickness. Will stay in New Albany for another term, even though it is difficult to retain students due to the summer break and the "Hoosier love of change." A school for girls which has recently opened and the nearby Anderson school have drawn away students. Has had to stay in New Albany due to debts he has incurred while not being paid. Does not believe "any school in this western country can flourish be profitable and live long-- that hasn't money to hold it up it won't live on its reputation as many of our eastern schools do." Notes the high number of charity students, the burden of unpaid tuition, and the unlikelihood of their school's survival. Will keep trying to make a living in the West, believing his options better than back east. Considering moving to Tennessee, believing teachers do better when they move frequently. Advises them not to emigrate to the West. Brief mention of a daguerreotype artist. +1845 December 25. C. S. Keeler ALS to Henry [C. Nash]; [Whitestown, New York?]5 pagesDeclined invitation to sleigh ride because of poor health and low spirits. Mentions Christmas and working in a store. Comments on Thanksgiving and feeling poorly about not celebrating holidays. Finds tending the store difficult work and has contemplated quitting. Talks of visiting Pittsfield, [Massachusetts], old acquaintances there, and members of the Pittsfield Young Ladies Institute. Feeling lonesome after selling his canary. Reminiscences about school friends, sleighing and skating, including a story about an African American falling into a pond, correcting himself after using a racial epithet. +[1845]. Signature; s.l.1 pageOjibwa totem, "Moonlight Night." "Flying Gull" crossed out. Possibly the autograph of Gish-ee-gosh-e-gee, whose portrait was painted by George Catlin in 1845. +61846 January 4. Henry Sills ALS to Mary Spenser Pease; St. Louis, [Missouri]3 pagesBleakly reflects on the passing time. Lauds Mrs. Marsh and her literary works. Describes a "tortuous, miserable trip" from Chicago to Springfield to St. Louis. Lectured at the Supreme Court in Springfield. Extremely fatigued from travel, but is keeping notes on his experiences in the hopes of producing a volume. Has finished his course of lectures on Ireland and plans on publishing them. "I trust that Providence will deliver me from the trade for ever. It is a truly sickening occupation - & were it not, that it enables me, at present, to see the country, I would lie down and die." Preparing to deliver lectures on Milton, Swift, Burke, and Fox. Describes his fatigue and headaches. +1846 February 9. Joseph Noyes ALS to Noah J. Noyes; Boston, [Massachusetts]2 pagesMuses on the decline of Newbury, Massachusetts. Comments on the "whig Prayer" of Doctor Jenks "at Court." "...he praised God that the members of the House, had & was about to still further to push the temperance Reform; But Nothing about the Freedom of a Vast portion of our Great population who sit in Darkness & the Shadow of Death." Joseph is skeptical of assemblymen, Whigs, or Democrats, being willing to act to "bring on the Kingdom of our God." Notes Jenks' religious arguments in support of slavery, stating that most old clergymen "have no bowels of compassion for the miserable wretches, slavery is an organized sin!!" On the reverse, in another hand, comments on Divine mercy, human unworthiness, and the coming of spring. See also: Joseph Noyes ALS to Noah J. Noyes, January 24, 1844. +1846 June 8. H[enry] M[arie] Brackenridge ALS to W[illia]m L[earned] Marcy; Tarentum, [Pennsylvania]2 pagesA friend is preparing to publish a newspaper to circulate "the earliest news and the fullest information in relation to the Mexican war." Will be helping him with editorials, enclosing a clipping from the Daily Dispatch as an example [included]. Has also sketched a map of Mexico for the newspaper. Comments on recent events in the Mexican War. Makes suggestions to advance the American position, including strategic geographical locations, negotiations with local peoples and granting them a portion of California, and encouraging the formation of separate confederacies from Mexican territories to gain passage rights. Discusses the future bombardment of Vera Cruz. +[18]46 June 15. J[ohn] M[arvin] Bacheldor ALS to Deacon [John] Bacheldor; [Williamstown, Massachusetts]10 pages [total]Written from Williams College. Describes New England and New York scenery, including mountains. Notes reasons for choosing Williams College over Oberlin (partly missing). Hears Albert Barnes (1798-1870), Theodore Frelinghuysen (1787-1862) and Stephen Higginson Tyng (1800-1865) preach. Includes 2 incomplete ALsS from Bacheldor to his parents, 6 pp., no date. Mentions revival meetings, conversions, small religious gatherings, and his personal walk with God. Discusses his education, the local church "showing off" and adding an organ, a temperance sermon against liquor and tobacco, and the rivalry between Williams College and West College. Refers to wild animals and possibly race. "Tell him to remember too those sable ones whose eager orbs look out from midst the darkness to him as their advocate of 'Freedom to all' As for me Black, White & Copper color are the same & I a bachelor." +1846 July 16. L[emuel] Stephens ALS to Anna [Stephens]; "Saut de St. Marie" [Sault Ste. Marie, Michigan]3 pagesDescribes the Native American settlement at the Falls of St. Mary. Travelled from Pittsburgh to Cleveland, Detroit, and the Falls of St. Mary by stage and steam boat. Describes scenery along the River St. Mary, including Native Americans. Notes travelers bound for "Copper Country" and the high "copper fever" at Detroit. Their voyage on Lake Superior is expected to last one to four days. + +1846 [after August 4]. L[evin] M[ynn] Powell DS; Fort Pitt Foundry, [Pennsylvania]2 pages"Register of Guns." Provides details of the casting of an iron 8-inch shell gun at the Fort Pitt Foundry. "This gun was cast in a hollow core similar to No 54 - The water flowed through the core for 39 hours, at the rate of two (2) cubic feet per minute or about 35000 gallons in all." Includes columns to record the "Result of Experiments." +1846 August 17. Rob[er]t McClan, [Jr.] ALS to Mother; Janesville, [Wisconsin]4 pagesMcClan describes his journey to Janesville from Geneva, New York, and his financial struggle upon arriving. He mentions traveling through Rochester, Buffalo, over Lake Erie (by steamboat) to Detroit, and also stopping at Mackinaw Island and Milwaukee. Describes Janesville and its residents, with the bulk of the population from New York. Starting his printing business is difficult, and he feels homesick. Has been working intermittently at the Janesville Gazette and will send a copy of an edition he worked on. Worried that if John Gould comes, "I must again do the rolling, and be a n----r for him." +1846 November 26. Elihu Burritt ALS to Lane; London, [England]1 pageAsks Lane to become a secretary of the League of Universal Brotherhood. Burritt hopes to send him 1000 signatures to the Pledge, and hopes that Lane will send Burritt American signatures by December 3. Written on illustrated stationery of the League of Universal Brotherhood, with logo of clasped hands and pledge not to serve the cause of war. +1846 December 11-1847 July 26. Doc.; [Bedford City, Virginia]9 pages"A Table of the Weather and Temperature by Fahrenheit Thermometer In Bedford Co[un]ty, Virginia, near Peaks of Otter." Includes thrice-daily thermometer readings, wind direction, remarks on the weather, and the average temperature for the month. +1847 January 21. A[nthony] Bolmar ALS to C[hristian] Schrack; West Chester, Pennsylvania1 pageWishes to know the price of linseed oil and cabinet varnish, as he intends to paint "the out side & part of the inside of my school." Written on illustrated "A. Bolmar's Boarding School for Boys" letterhead, featuring an image of the school's exterior. +1847 January 21. John C. Foster DS to Caroline E. Lake; Cayuga County, New York1 pageLicense to teach in the common schools of the town and district of Cayuga County, by authority of Foster, "County Superintendent of common schools." +1847 February 8. John Jay Printed LS to Daniel Webster; [New York City], New York3 pagesPartially printed circular letter regarding a resolution of the New York Historical Society respecting the procurement of printed and manuscript materials for the society. Lists items of interest for the Historical Society's collections. Encourages submission of original writing by members and information on the "Indian names and geographical terminology of this State." Signed by John Jay, Domestic Corresponding Secretary of the New York Historical Society. On The New York Historical Society Library Historical Rooms stationery. +1847 March 3. M[atthe]w St. Clair Clarke ALS to B[enjamin] B[rown] French; Washington, [D.C.]1 pagePaying out money appropriated for the purchase of books for several members of the 29th Congress. "...one half of the sum arising from the cost of volumes One, Two and Three of the Documentary History is due and payable to me – the other half is payable to Col P. Force. I further claim the half of the volumes, Four, Five & Six of the same work – about which Mr John C. Rives and myself have an unsettled controversy." Includes a note on the verso: "Mr Clarke requests Mr F. to retain this letter- it may be necessary to refer to it hereafter." +1847 March 14. D[aniel] Byrnes ALS to Jacob F. Byrnes; s.l.2 pagesAccount of a cure effected by mesmerism. Describes the female patient's symptoms and reaction to the doctor's mesmerism. Notes the doctor's work with other patients. Dated in the Quaker style. +1847 August 7. Charles P. Bunnell ALS to J[ames] K. Polk; Butternuts, New York1 pageRequest for a commission in the army, to fight in the Mexican War. "my request is that you will commission me in some part of your Army whare my burneing seperate may be satisfyed. I am young onley nineteen. my Blood Boiles to be with my countryman in arms" + +1847 November 25. John Lindsey ALS to Jane Lindsey; Bethany College, [West] Virginia3 pagesComments on family health. Was joined in preaching by Professor Mason, who decided to pursue the ministry. "You may be ashured that when he told me he had selected me as his tutor in that great work I felt my importance." Comments on his college studies. Acknowledges his romantic interest in a woman who he hopes to marry but who suffers from poor health. "So you will again see that the fortune-teller who said I was to be an old bachelor was right." +1847 December 20. J[ohn] W. Fowler ALS to A. G. Washburn; Cherry Valley, [New York]3 pagesLetter to the father of a student at Fowler's school, the State and National Law School. Explains responsibilities and traits of successful law students. Notes how he worked with Fowler's son to inspire him. Acknowledges he experienced difficulties with practicing public speaking and detailing how he helped the student overcome them. Praises Washburn's son and expects him to make a fine lawyer. See also letter dated July 5, 1849. +ca. 1847-1848. [Zachary Taylor] AL fragment to T. Allison; s.l.1 pageFragment of a letter. Mentions his Presidential nomination and his military service. Comments briefly on the Battle of Buena Vista, "all other affaires of the kind I was ever engaged in being mere children play when compared with it." +[18]48 February 13. Catlyna Totten ALS to Dan[ie]l Huntington; [Washington, D.C.]2 pagesPraising Huntington's painting, "Faith." Many have expressed admiration of it. "...it fills my eye and touches my heart . . . and with this emblem before us I trust our weak faith may be strengthened and kept in lively exercise." +1848 March 9. Rebecca [Bacon Thompson] ALS to Chauncey M[inott] Thompson; [New York City, New York]3 pagesRebecca saw Henry Clay in a procession and attended a memorial procession for John Quincy Adams. Chauncey's father is generally pleased with his school report, but stresses the importance of spelling. "...nothing shows a deficiency in education so much, as bad spelling." Discusses Chauncey's education and college preparation at Mr. Swinburne's school. Mentions a fancy ball at Madame Ferrero's. Their father is recovering his health but needs the use of a crutch. +1848 May 12. Joseph H. Sidall ADS; s.l.1 pagePlan of lot for schoolhouse. +1848 May 18. C.P. Gay ALS to Frances M. Gay; New York, [New York]3 pagesComments on the family missing her as she is away at school, likely at the Bloomfield Female Seminary. "It will try your patience some at first as you have so long been unaccustomed to regular lessons and close application, but in a little time you will find it a pleasure and then your progress will be rapid & agreeable." Notes her need to "prescribe some rules in speaking & acting" for herself. Cautions her against allowing "any ill humor towards any of your associates or teachers," connecting her sisters' successes to fostering these relationships. Addressed to Miss Frances M. Gay, care of Mr. R[obert] L. Cook[e], Bloomfield, New Jersey. Note: Robert L. Cooke (1809-1877), was principal of the Bloomfield Female Seminary. + +1848 June 21. P. A. & S. Small ALS to Cornelius & Son; [York, Pennsylvania]2 pagesRequesting information about lamps to be made for use in the local Presbyterian Church, to light the pulpit. Includes sketch and specifications. +1848 July 28. Giles LaBar ALS to [Reuben] N[elson]; Beaver Meadows, [Pennsylvania]3 pagesRemarks on Nelson's "anniversary exercises," his disappointment in not being able to attend, and good reviews of the exhibitions. Notes the good work that the "Wyoming Seminary" [Wyoming Conference Seminary] will perform in the Wyoming Valley region of Pennsylvania, asking, "what is more necessary than Education and general intelligence to counteract the influx of all kinds of characters, such as usually flood these sections?" Comments on the state of society in "the two lowest and largest Pennsylvania Coal Basins," including the failure of the higher classes to look beyond pecuniary interests towards social ones. Notes a general lack of investment in education. Will likely leave soon, as he feels his mission is not making progress. Brief mention of the "Company that vacated Wyoming Seminary in July 1847." Considering attending the Huntington Camp Meeting. +1848 July 31. E. A. Pearson ALS to Ephraim Abbot; Rye Beach, New Hampshire3 pagesDetailed suggestions for adding on to and renovating a house. Can retain the services of Joel Harlow, a "House wright." Encourages Abbot to meet with Harlow to discuss particulars. +1848 August 11. H. P. Barnes ALS to John S. Graham; Ithaca, [New York]1 pageSending application for a charter to form a Sons of Temperance chapter in Ithaca. The local division has proven "more particular than is for the interest of the cause" in accepting members. "The applicants are mostly persons whose advantages have not been the most favorable yet they express a hope that they would be able to reach a class who would not be likely to come under the influence of our present Division." +1848 September 1. A. W. Geming ALS to I. Woodward; New York, [New York]6 pagesHas been travelling, befriending sailors. Comments on seasickness and the joys of recovering from it. "...it is upon the same principle that induced the negro to say 'he loved to hit his shin, it felt so good to rub it.'" Notes the beauties of the ocean, jests about mermaids, and comments on his refusal to create a travel itinerary. Travelled along the Hudson River and visited Washington Irving's residence and "the place where Andre was hung." Discusses crowds in New York City, the contrast of classes, and the negative effects of Wall Street. Describes New York City, the burning of a gas factory, and its impact on business. Would like to go to California and make his fortune. +1848 October 2. B. F. Smith ALS to Cornelius & Company; Charleston, [South Carolina]3 pagesDuplicate of a letter written September 22. Saw standing gas lamps on Corinthian columns in a store window and was told they were available from Cornelius & Co. Seeking standing lamps for a Baptist church that is getting gas soon. Inquires about prices for various fixtures. Includes pen-and-ink sketches of desired patterns and fixtures. +1848 November 18. Daniel ALS to Clinton; New Haven, Connecticut4 pagesYale student, remarks on maintaining punctual correspondence. Has had to work much harder at school this year to maintain his class standing; mentions attending Professor [Denison] Olmsted's (1791-1859) lectures. Unable to afford to go away for Thanksgiving. "...I must pick my turkey bones without the prospect of a frolic in the evening, or participating in any of those glad festivities which invest a N. England Thanksgiving with such a magic charm." Comments on punishments doled out for the students participating in and observing a banned celebration, the "Euclid burial." The severity of punishments stems from students pelting a "very unpopular" sophomore tutor, [Edward Whiting] Gilman (1823-1900), with snowballs, chasing him, and accosting him. Students continued to harass the tutor by obstructing his reading of prayers at church. Guns saluted the election of Taylor to the Presidency. "...I am willing to trust Genl. Taylor on every point save one, and that is the Wilmot Proviso." Distrusts Taylor's position on slavery on account of his southern ties and own personal investment in slavery, believing he has an interest in transplanting slavery to "a new and more productive soil." + +1848 December 14. G[eorge] Breed ALS to Thomas Biddle; Pittsburgh, [Pennsylvania]2 pagesFollowing up in regards to real estate in Pittsburgh, giving particulars about certain properties and their costs. Includes a pen-and-ink map showing lots, roads, railroads, and described properties near the Allegheny, Ohio, and Monongahela Rivers. +1848 December 27. John Edwards ALS to Mr. Rhodes; Troy, [New York]2 pagesAn immigrant from England writes from his new home in New York. He worked first at a farm, then a paper mill, and finally at a planing machine. He will probably be out of work until the end of winter. His wife worked first at picking for a weaver and then at a carpet factory. Notes their respective wages. Edwards also talks about cost of boarding, food, fuel and clothing. He describes the people in the city. +[1848?]. J[ohn] C. Calhoun ALS to Ja[me]s A. Houston; s.l.2 pagesCalhoun has the highest opinion of Houston as a reporter. "During the long period I have been a member of Congress, no reporter has ever reported me with greater satisfaction to myself. Indeed, considering my manner of speaking, I have been surprised that you have on several occasions been able to report me with so much accuracy." Mentions his Oregon speech. +1849 January 20. J[acob] Gideon Partially printed DS; Washington County, D.C.1 pagePartially printed presentment for assault and battery, modified for "bastardy". "The Jurors of the United States for the County aforesaid, do, upon their OATH, PRESENT Charles P. Sengstack for begetting an illegitimate child upon one Mary Kirby." Signed by J. Gideon, Foreman +1849 January 22. C. A. Elliot ALS to Father; East Hampton, [New York]3 pagesLetter from Elliot to his father updating him on recent events. He is enjoying his studies, particularly his Greek, and he is happy with his father's mentioning that he might buy a piano for "the Girls." He suggest buying one of Chickerings. Elliot lists off the prices of some of his recent purchases and asks his father for ten dollars. +[ca. 1849 February-March]. J[oh]n MacPherson Berrien ALS to Reverend Doctor Butler; s.l.2 pagesLegal opinion on the presidential oath being administered to Zachary Taylor on March 4, 1849. "...he cannot enter upon the execution of the duties of his office, until he has taken it." +1849 April 10. R[obert] Chambers ALS to F[rederica Maclean] Rowan; Edinburgh, [Scotland]4 pagesDiscusses writing and translating Rowan may do for Chambers, having seen a recent letter Rowan wrote to Count Krasinski on the subject. More interested in original works but is willing to consider translated pieces. : "we are disposed, from what the Count has said regarding you, to ask you assistance for an[?] work of a periodical nature which we think of commencing in a few months -- an additional effort to instruct the people, and therefore on the cheap principle. The subject we have thought of for your pen -- though entirely as an experiment, is The Sepulchres of Etruria..." +1849 April 19. Joseph Henry ALS to Rev. C. W. Butler; Smithsonian Institution, [Washington, D.C.]2 pagesTo Butler, Rector of Trinity Church, Washington. Impressed by Mr. Lord's lectures at Princeton, but cannot invite him to speak at the Smithsonian because of their lack of funds (on account of building construction). Has a great number of applications from other lecturers he must also consider. +1849 May 30. Luther Loomis AD CyS; [Suffield, Connecticut]4 pagesCopy of Asahel Hatheway's last will and testament specifying distribution of his estate, with detailed instructions for the maintenance of his mentally handicapped son and daughter. "And whereas my son Mark Anthony Hatheway & Parmelia Hatheway are by the Providence of God deprived of the due exercise of their reason, & being desirous that everything should be done for them which can contribute to their comfort and convenience..." Original will dated November 16, 1822. Certified an authentic copy by Luther Loomis, Clerk. Includes July 1, 1850, Resolution of Connecticut General Assembly concerning the Hatheway estate. +1849 June 2. Elisa ALS to Mrs. George B. Richmond; Wareham, [Massachusetts]3 pagesDescribes the wearying practice of teaching school. "...my burden is fifty little dirty, ragged urchins, ignorant, self willed and vicious, added to a feeling of genuine homesickness, vexation and disgust." Comments on schoolteachers' disposition and her hope that religion can effect a good change in her. Discusses her housing situation and briefly mentions clothing. +1849 July 5. A[braham] R. Laurence ALS to Abraham R. Laurence, Jr.; New York [City, New York]3 pagesComments on education, believing the combination of practice and theory best suited for true learning. Recalls corresponding with Dr. Priestly, "a Unitarian Divine," about books to use for a history lecture. Satisfied with Abraham's choice of the law profession. Praises the school and methods of [John W.] Fowler (of the New York State and National Law School). Discusses oration, noting Cicero, Demosthenes, the Debates of the Virginia Convention on the Constitution, and the oratory styles of Patrick Henry and James Madison. See also letter dated December 20, 1847. +1849 August 13. Noble ALS to "Sister"; New Haven, [Connecticut]4 pagesAcknowledges his deficiencies in correspondence. New Haven has been experiencing "quite a good deal of sickness in the form of Dysentery" and a number of cholera cases. Notes a number of sudden deaths. Mentions "Commencement Week" and his expectation that fewer people will attend than usual. Comments on his boarding situation and going to view Claude-Marie Dubufe's (1790-1864) paintings depicting Adam and Eve. Uncertain whether he can visit home on account of construction in his store. +1849 October 9. W[illiam] P[itt] Fessenden ALS to James D. Fessenden; Portland, [Maine]2 pagesFessenden chastises his son for overspending on indulgences and declares that this will be the last time he pays his son's debts for "personal indulgence." See also William Pitt Fessenden ALS to James D. Fessenden, October 11, 1849. +1849 October 11. W[illiam] P[itt] Fessenden ALS to James D. Fessenden; Portland, [Maine]4 pagesFessenden recounts his son's expenditures and advises him to budget his money and avoid indulgences. "Hard as I am compelled to labour for the support and education of my children, and pressed as I am to meet necessary expenses, your course hitherto can find no palliation except in the want of experience, & the thoughtlessness of youth. You will not have this excuse for the future." Commands James to not incur debts; his allowance is satisfactory for all pocket expenses. Remarks on James' use of the formal "Dear Sir" in his letters: "Whether it means to denote a sense of injury & a feeling of anger, or is mere inadvertence, I will not undertake to say - If the former, it is not only ridiculous, but, when you have been so clearly in the wrong, and I have so repeatedly pardoned your errors, and so affectionately watched over you & ministered to your comfort and welfare, it is most unfeeling, and would denote a coldness & hardness of heart, which, if I could believe it of you, would be quite as bad as plunging a dagger into mine." See also William Pitt Fessenden ALS to James D. Fessenden, October 9, 1849. +1849 October 23. Wethersfield School District Committee AD; Wethersfield, [Connecticut]18 pagesReport of meeting of voters of the Fourth School District in the First School Society, who approved a new school tax. Tax collector Romanta Welles charged with collecting the tax and delivering the sum to the treasurer of the district, who may seize and dispose of "goods or chattels" of nonpayers. If such property is lacking, he may commit the person "unto the Keeper of the Gaol" until the tax is paid. Signed and dated by Alfred Francis, Justice of the Peace. Lists names, amounts owed, and amount collected. +1849 October 26. W[illiam] H. Allen and Jesse T. Peck Partially printed DS to Peter Whaley; [Carlisle, Pennsylvania]3 pagesBill for goods and services and grade report of Peter Whaley from Dickinson College. He performed "satisfactorily" in Mental Philosophy, Natural Sciences, Ancient Languages, Mathematics, and "not satisfactorily" in Moral Philosophy. Written on sheet with printed explanation of billing requests, recommending that students from out of town have a patron to handle their money for them. +1849 November 8. D[avid] F[ranklin] Robinson ALS to Henry C[ornelius] Robinson; Hartford, [Connecticut]3 pagesFatherly advice to a son beginning his studies at Yale. Comments on expenses and being cautious with money. "Money in the first place is hard to get honestly, as all the world are in pursuit of the prize..." Emphasizes the importance of education and preparing sufficiently for professional life afterwards. Encourages his son to live religiously. +1849 December 17. C.S. Jones and George W. Stewart CyS to Robert A. Armistead; Washington, D.C.2 pagesCopy of the legal agreement that Jones and Stewart are to pay $1,000.00 to Robert Armistead, administrator of the estate of the late George Hope. Lucy Williams and her child, slaves currently being held in a Washington County jail as fugitives, had filed a petition of freedom against George Hope – for herself and her child. Lucy and "her said child and any other child or children she may have" will be released from custody on the condition that they remain in Washington until the results of the petition has been decided. Signed by T. H. Goddard, Justice of the Peace. +1849 December 22-26. Salmon ALS to William Fay; Baton Rouge, Louisiana4 pagesAsks if Fay will be "traveling for the purpose of seeing the romantic wilds of America." Advises him to travel with a woman to "receive the first attention first served and first chance to all tables & entertainments." Comments on the doctor he works for, likely Dr. Denny, and other men in the office. Compares the warm Louisiana winter to the harsh northern one. Describes local Christmas traditions, including festivities among African Americans. "...such music as these darkeys will make for a few days cant be beat with tin horns, goard shells & gravel or beans." Discusses slavery among cotton and sugar plantations, noting the number of former Northerners amongst local slaveholding families. Mentions the wharf and freight, the garrison and its "arms & balls many of which have been on the Battle field of Mexico." Notes the doctor's dentistry practice and Americans' poor dental health. Salmon was an assistant to Dr. William H. Denny, whose letter of October 25 is in this collection. See also Salmon ALS to William Fay, January 24-28, 1850. +18[40s?] March 12. AD to Thomas E. Johnson; s.l.1 pageSubscribers' contract with Thomas E. Johnson to teach "an orderly English school." Salary, dates for term left blank; subscribers' names, number of scholars not included. Curriculum specified. +[1850] January 24-28. Salmon ALS to W[illia]m Fay; Baton Rouge, Louisiana2 pagesSpeculates about Fay's winter pleasure activities. Comments on bachelorhood and settling down to raise a family. Describes the inauguration of Louisiana governor, Joseph Marshall Walker (1786-1856). Notes a local circus he attended and gives advice about selling apple peelers. See also Salmon ALS to William Fay, December 22-26, 1849. +1850 February 8. Elizabeth ALS to Amelia [Day]; Marietta, [Ohio]3 pagesDiscusses news of family and acquaintances. Notes the demands of childrearing but is unwilling to let Amelia take one of her children to raise. Doubts she will be able to travel east, especially with children. Wishes Day could come visit, noting friends asking after her and inquiring for daguerreotypes. Discusses a young man teaching, wondering if he is "as low spirited as when a tutor at Yale." Written on illustrated letterhead for Marietta College, featuring the college grounds and two buildings. +1850 February 10. J. A. Rathbun ALS to Sister; Gowanda, [New York]4 pagesComments on teachers at the local school and notes the local literary society. Discusses his own teaching, but the number of scholars has diminished due to scarlet fever and the mumps. Describes "Spirit rappings" in western New York. "To be short, it porported . . . to be a spirit holding communication with mortals." Notes the respectability of believers. Some attribute the rappings to the devil or magnetism, "I think neither can be the case as the latter idea is preposterous & the devil has other business." +1850 April 19. J[ames] Hamilton Couper ALS to Robert Anderson; Near Darien, [Georgia?]11 pages (total)Plans, modifications, specifications and drawings for the tomb of Gen. Duncan Lamont Clinch (1787-1849), father-in-law of Robert Anderson. Includes contract with Chandler & Colby, stone cutters, for preparation of stonework for tomb. Chandler & Colby DS with Peter G. Munro; Boston, [Massachusetts], 3pp. August 1, 1850. Also includes 3 architectural drawings done with ink and watercolor plus 3 pp. specifications and notes. +1850 July 1. Connecticut General Assembly; John P. C. Mather Partially Printed DS; Hartford, Connecticut5 pagesResolution of the Connecticut General Assembly concerning the estate of Asahel Hatheway. His remaining heirs had asked that funds no longer required for the support of Mark Anthony Hatheway, who "has been for more than thirty years deprived of his reason, and has now become nearly idiotic...", be distributed to them. As "no judicial court is competent to grant relief in the premises,..." the matter has been taken to the Assembly, who approves their request. Document signed by Secretary of State, John P. C. Mather, with state seal. Located in folder of the May 30, 1849, copy of Asahel Hatheway's will and testament. +1850 July 4. E[dwards] A[masa] Park ALS to [Joel] Hawes; Andover, [Massachusetts]2 pagesSending a copy of his recent sermon [not included], where he tried to "unite the 'Old' and the 'New School' parties." Asks for feedback. Comments on theological controversy between Dr. Taylor and Dr. Humphrey over doctrine of "ability" and the "nature of sin." Feels that Dr. Taylor "did not pay sufficient attention to our impulses, our instinctive feelings." +1850 September 5. Edmund O[tis] Hovey ALS to Theron Baldwin; Crawfordsville, [Indiana]3 pagesRequesting continuation of funds from the Society for the Propagation of Theological & Collegiate Education at the West for the use of Wabash College. Provides information on graduates, the conversion of students, numbers of students entering the ministry, studying theology, or teaching. Religious revival not as pronounced as in years past. Notes on Wabash College's history. Supporting Wabash ensures "that a powerful influence will have been exerted toward accomplishing similar ends, for regions, onward toward the setting sun." Dr. White's son died of typhoid fever. +1850 December 2. Theodore Parker ALS to General Jones; Boston, [Massachusetts]1 pageGlad to see Jones is interested in temperance reform and the right to land. References Mill's Political Economy. +[18]50 December 8. J[ames] M[aynard] Shanklin ALS to John Shanklin; Crawfordsville, [Indiana]4 pagesLetter written to J. M.'s father regarding a letter of advice which he recently received. Includes remembrances of home. He talks about other students at Wabash College and about his plans to remain there over vacation. He mentions his studies, boarding situation, and upcoming examinations. The letter's postscript explicitly details tuition costs as well as room and board. +[ca. 1850-ca. 1860]. Partial AMs; s.l.6 pagesPartial Fourth of July speech reflecting on American governance and history. Compares America to the "aged and Enfeebled systems" of Europe, dismissing their critiques. Compares America to ancient Greece and Rome. Notes usual criticisms and stereotypes of Americans, acknowledging kernels of truth about commercial interests and motivations. +[18]51 January 10. N[athaniel] P[arker] Willis ALS to B[enjamin] B. French; [New York, New York]2 pagesRemarks on their friendship and mutual regard for Jenny Lind. Jenny Lind "is the angel we see her to be." Extends an open invitation for a visit. +1851 January 10. John Brougham ALS to R. Cornell White; [New York?]1 pageDeclining invitation to the "presentation of a silver Trumpet to the Empire Engine Co. No. 42." Sends his regards to "that glorious association of disinterested and noble hearts, the Firemen." Promises to come if he is able "and sing you a song or do something or another to assist in enlivening the latter end of the entertainment." +1851 January 20. Russell Sage ALS to F[reeman] Nye; B[artlett] Nye; Troy, [New York]1 pageWould like to buy their stock in the Commercial Bank. Inquires if they will trade for bonds of the Champlain & Ogdensburgh Railroad Company or require cash. Remarks on changes in the Commercial Bank Board of Directors (which he conveys confidentially) +1851 January 25. Mary Coggsha[ll] ALS to Mother; Cincinnati, [Ohio]6 pagesElaborate dream of visitation by dead relatives and friends, where she acted as "an electrical medium." ..."the room seemed transformed into light, and all the Brothers and sisters except Sarah came to us and embraced us, talking and singing of the joys of heaven and the glories of the future existence after this earthly sleep." Has felt a spiritual presence with her and mentions going into an "internal state" where she communes with her deceased father. He has intervened to restore her son's health. "To think that my Father whose loss I have mourned so long should be the guardian of my child." Notes local excitement over spirit rappings and their incidence in her house. "Many believe and many are frightened. We think that great and glorious truths are to be brought to light." +1851 March 3 - 1852 June 29. Cumberland County, New Jersey Committee for building an alms house AMs; [Cumberland County, New Jersey]18 pagesMinutes, agreements, proposals, and accounts recorded by the committee to "superintend the building of a new Alms House on the Farm now owned by the County." Notes decisions about the size and construction of the almshouse. The Committee visited the Trenton "Lunatic Asylum" and the Newark almshouse. Met with Robert Reeves "(Architect & Builder)" and discussed plans. Notes preparing newspaper advertisements and a dispute with Reeves about whether he fulfilled his contract. Includes a copy of the contract and the bill Reeves submitted. +1851 May 12-14. David Willcut ADS to Griffith Mendenhall; [Indiana]2 pagesAuthorizing Mendenhall as an agent for the Union Literary Institute, "established for the benefit of colored persons." Includes character reference and recommendation for Mendenhall. Signed by David Willcut, President, and other members of the Institute. Includes a paper seal. +[18]51 June 28. J. J. West ALS to Ja[me]s W. West; Milledgeville, [Georgia]3 pagesLetter written from Oglethorpe College in Milledgeville, Georgia describing college life in general, the "same old round of occupations, pleasures, and duties." Describes a student riot/rebellion (February 1851) including breaking windows, firing pistols, etc. "The others took up, broke the windows of the college buildings, fired pistols & made such a noise that even the Irishmen working on the R.R. were so badly scared that they hardly dared to show their noses." Comments on local vice, including gambling. Mentions his romantic attachment, etc. +[18]51 July 31. M. A. S. ALS to Florilla W. Hinckley; Hampden, [Maine]3 pagesLetter from a female student, frustrated with her studies and trying to overcome feelings of inadequacy and self-consciousness. "I always expect to be poor, and I never expect to know much more than I do now, for it costs so much to go to school that I can't afford it, I expect to work hard for a living as long as life lasts, to be sick and weary." Trying to cultivate a more optimistic outlook. Comments on her current boarding house, its scant library, and a desire to have more conversation and company. Contemplating moving to the South to teach, noting a young woman who is also considering the move. Mentions a young lady who teaches drawing lessons and has travelled to Europe. +1851 August 6. Lucretia Mott ALS to Lucy Stone; Auburn, New York3 pagesDiscusses opinions on the best place to hold the convention. Notes Cyrus M. Burleigh opposing Pennsylvania, believing "we had not strength for such an undertaking." If Worcester is selected, some women who travelled for the convention last year may not be able to attend. Amy Post hopes for Rochester. Her poor health will likely prevent her attendance. "I have been troubled with a constant cough for 6 mo. past, and now have quite a sore throat, occasioned in part by much speaking. Growing years also admonish me to leave some of the good causes of Reform with younger & fresher hands." Enclosing money from the sale of the Proceedings, but sales have been slow. References anti-slavery meetings and Elizabeth Cady Stanton. +1851 September 4. J. W. Polhaus ALS to George Gemunder; Boston, [Massachusetts]3 pagesLetter to violin maker in German. No translation. +1851 September 26. Edward Everett ALS to D[aniel] Webster; Cambridge, [Massachusetts]4 pagesSending Webster's speech (from March 7, 1850) to the printers. Requests Webster's preference for a running title: either "general adjustment of the slavery question," "Mr. Clay's resolutions," or "Mr. Clay's Compromise Resolutions." Requests Webster's preference for the title page of his speech of July 17, 1850: "On the Compromise Bill" or "on the Compromise Measures." Would like Webster to tell him about Oregon, for inclusion in the memoir. +1851 October 8-1851 October 17. E[liza] M. Yates ALS to Sister Wait; Shanghai, [China]4 pagesComments on missionary life in China. Feeling thankful for a box of goods and the support of friends for the missionary cause. Notes the contents, selling them to raise money, and their uses amongst the missionaries and schools. Discusses health and other missionaries. "If the missionaries did not take care of each other in sickness, -- the sick -- and none escape -- would suffer greatly." Miss Baker will open a girls' boarding school and is slowly learning the "dialect." Mr. Yates was complimented by scholarly Dr. Lockhart on his facility for the language and making himself understood by the natives. See also: Matthew T. Yates ALS to Brother Wait, 1852 September 25. +1851 October 13. W[illiam] A. Stearns ALS to Mr. Greely; Cambridgeport, [Massachusetts]1 pageIs sending him a discourse. "Had I known, when it was written some years ago that any body would ever desire to see it, I should have taken some pains to make it legible." Asks that it not be exposed "to the eyes of any who might consider it a fair subject for criticism." +[ca. 1851]. Candor AL to [Jeremiah] Hacker; [Portland, Maine]1 pageCriticism of newly founded Portland Y.M.C.A. branch for not accepting all denominations in its ranks. Compares it to the prejudice of the Dark Ages, as having "the same i[n]tolerant spirit by setting themselves apart as being more holier and purer than their honest neighbor? Is it not equivalant to saying 'stand aside for I am holier than thou?" Signed with the pseudonym, "Candor," and addressed to the "Editor of the Pleasure Boat." +71852 February 9. Charles G. Clarke, Jr. ALS to John Sears; Hudson, Ohio4 pagesLetter to John Sears at the University of Michigan, Ann Arbor, from Clarke at Western Reserve College, Hudson, Ohio. References a "fuss in college," possibly at the University of Michigan. Clarke describes how a poor student might receive funding for his education, hoping to sway Sears to transfer. He also describes the Western Reserve college, building by building as they appeared in the catalogue. Clarke writes about seeing Lajos Kossuth, revolutionary and former governor of Hungary, and the large crowds gathered to hear him speak. Kossuth was touring the U.S. for the cause of Hungarian Independence following his release from prison. "A week ago last Saturday the Hungarian exile, Louis Kossuth, passed through this place on his way to Cleveland... I went with several of the students. At 11 o'clock A.M. he addressed the assembled multitude from the balcony of the American House..." Mentions students' transferring "because they think it will be more honorable to graduate at some eastern institution." Discusses religion. +1852 May 23. J. Parker Beverly ALS to Richard Potter; Curtice's Creek, Tuolomne [Tuolumne] County, Calfornia4 pagesHas been healthy and satisfied working in the mines. "... we have the satisfaction of digging the Gold from the Earth to pay us for our labor instead of taking it, after it has been aloyd and maid into coin." Comments on profits, labor, prospectors, and costs of mining for gold on their land claim. Changes in mine processes, moving away from the use of quicksilver and small rockers in favor of Long Tom sluice boxes. Describes the construction and use of sluice boxes. Thoughts on how long their claim will last; worried that the purchasing of water for the sluice boxes will limit them. Discusses shares held on the claim. +1852 May 29. C. L. Pells ALS to George; Baltimore, [Maryland]5 pagesConcerned about the punctuality of his cousin George's postmaster. Discusses the presidential campaign of 1852 and the impending convention. Mentions Millard Fillmore, Lewis Cass, Whig party politics, etc. "The political fires are beginning to burn with that quadrennial brilliancy & heat peculiar to the Presidential campaign." Popular opinion favors Cass to be nominated. Worries that John P. Hale will lose his seat to "some of the eaters of Southern dirt." Asks George's opinion of "the ‘illustrious Magyar,' " Lajos Kossuth, (1802-1894). Notes the beginning of seasonal excursions, including to Washington's tomb. +1852 May. W[illia]m B. Browne Partially printed DS; Staunton, Virginia1 pageMonthly report for Miss M. F. Pilson from the Augusta Female Seminary, signed by Principle William B. Brown. Includes ratings in deportment, neatness, diligence, various studies and "extra branches." +[18]52 June 3. Victor Beaumont ALS to C. G. Brewster; New York, [New York]1 pageLetter of reply regarding an inquiry into the dates, cost, etc. of attending courses in Civil Engineering. The letter is written on a two-page printed circular which advertises the "School for Instruction in Civil Engineering" in New York, founded by Victor Beaumont. +1852 June 6. H. Link ALS to [Mr. and Mrs. Keller]; Little Falls, [New York]4 pagesSends sympathy for the death of their loved one. Describes how the author and Elizabeth were contacted by the spirits of Henry Keller and Julia Bowen. "Mourn no more for the loss a dear son-- he lives! He lives! In a Glorious world of light & love." Would like to keep these events private, because "There is so much ridiculing and sneering about it." +1852 July 20. W[illia]m R[ichardson] Dempster ALS to [Joseph Hartwell Barrett]; Saratoga Springs, [New York]1 pageIntends to perform "one of my original Ballad Entertainments" in Middlebury and hopes to have it advertised. Signed "Wm. R. Dempster, composer of The May Queen, Lament of the Irish Emigrant, The Blind Boy & other songs." +1852 July 30. W[illia]m R[ichardson] Dempster ALS to Jos[eph] H[artwell] Barrett; Rutland, [Vermont]2 pagesWishes Barrett to announce that he will perform in Middlebury "by putting out a Bill to that Effect," as there is not adequate time to advertise in the newspapers. +1852 August 10. H[oratio] Shumway Partially printed DS to Moses Bristol; [Buffalo, New York]2 pages [total]Signed by the president and secretary of the Buffalo Female Academy. Certificate stating that Moses Bristol owns one share of stock worth $100 in the Buffalo Female Academy. Verso: note written by Moses Bristol, February 3, 1866. +1852 September 25-27. M[atthew] T. Yates ALS to Bro. Wait; Shanghai, China4 pagesComments on the health of the mission circle. Have been in Shanghai for five years, now comfortably settled in the North Carolina Mission House. Ruminates over the years spent as a missionary in China and trying to learn Chinese. People are becoming more acquainted with the facts of the gospel and are attending preaching in droves, but "The Chinese seem to be devoid of the Moral, or religious element in their constitution. They manifest no great zeal in worshiping their idols..." See also E[liza] M. Yates ALS to sister Wait; October 8-17, 1851. +1852 October 15. Laura V[an Der Spiegle] H[all] Park ALS to Charles Goody Lincoln; San Francisco, [California]4 pagesHas settled in since Lincoln left. Spanish man assisted with carpentry, sawing wood, varnishing furniture and other tasks. Sister is happy, mother has been sick. Notes that the Senate would not confirm General Wilson. Quotes letter from Mary Wallace, chiding Lincoln for not writing. Mentions the upcoming execution of Jose Forni for murder. [Note: Jose's execution - the first legal execution to take place in San Francisco - occurred on December 10, 1852]. +1852 October 26. Rob[er]t C[harles] Winthrop ALS to Rev. [Clement Moore] Butler; Boston, [Massachusetts]4 pagesUnable to attend a meeting in Washington. Has been "overwhelmed with calls for literary & oratorical efforts." Wishes their organization well, "& I earnestly hope that its influence will surround the Capitol like an atmosphere, neutralizing the malaria which has been too long prevalent." Comments on the death of Henry Clay (1777-1852), wishing he had led a more righteous life but glad his memorials are moral ones. Laments the death of Daniel Webster (1781-1852). "...we shall not look on his like again. Yet both you & I would gladly have had some features of his character & some passages of his career Blotted out." Would like a copy of Butler's discourse on Webster, if he publishes one "...do not say in it what I hear dr. Vinton said -- that 'he died the victim of political persecution.' " +1852 October 29. Lawrason Riggs ALS to E[lisha] Riggs; St. Louis, [Missouri]3 pagesFarming in Missouri is in a "high state of prosperity," but the low level of the river causes difficulty. Worried about the financial future. "I cannot however but see a storm ahead judging from the present appearance of the financial sky." Comments on new banks increasing the circulation of money and the recent "Illinois Banking Law." Discusses banks and banking. State of the market. +1852 November 2. B[enjamin] H[arris] Kinney ALS to J[ohn] C[hester] Buttre; Worcester, Massachusetts2 pagesDiscusses Buttre producing an engraving of Kinney's of Ethan Allen from a daguerreotype. Notes the difficulties of producing a good daguerreotype of such a large statue. Sending two original daguerreotypes in different lights [not present]. +1852 December 22. Jona[than] E. Ferre ALS to Nephew; Agawam, [Massachusetts]4 pagesAcknowledges their differing views on the presence of "ministering spirits." Ferre believes that "we have both good and evils spirits constantly exerting an influence upon our minds." Influence of evil spirits over the thoughts of all is spiritual warfare, as written of in the Bible. Discusses the existence of guardian angels. Gives an account of a pious young woman receiving communications from her deceased grandmother and aunt, her guardian angels. "She is strictly forbidden to have any intercourse with the rapping spirits of the day being told that they are disorderly. She is in perfect freedom to make any disclosures she pleases." The family prefers this news not be made public. Men of the Primitive Church had similar gifts. Notes local regulars at Spiritualist meetings. +1852 December 23-26. S. G. Haley ALS to Maria (sister); Hooksett, [New Hampshire]4 pagesLetter from a teacher to his sister. Unable to follow her advice about limiting his interactions with women, as his teaching requires it. "... how can I get rid of speaking to the girls here, who attend my school, and who are real smart, pretty, fascinating girls, and, old enough when they improve every opportunity to speak to me?" Promises not to attend any more balls. He lists the names and ages of all of his students, underlining young women's names. Describes the daily class schedule. He also expresses how much he misses home, how Hooksett is a "rum hole" and describes his attitudes towards loud children and improvements he needs to make as a teacher. See also Haley letter dated January 14, 1853. +1852 October 11-1854 October 30. 5 ADsS; [Philadelphia, Pennsylvania]23 pages [total]Regarding the court case of E. C. and P. H. Warren vs. James Hunter and Bros, concerning the Hunter's pollution of Mill Creek (Pennsylvania) with chemical wastes, infringing on the water rights of the Warren's paper mill. Includes a letter from attorney Thomas Wharton to James Hunter & brothers warning them to desist from depositing dyes and chemicals into the river; two copies of testimony given by Frederick A. Genth on September 16, 1854, concerning his chemical analysis of the river water; short statements from various witnesses; and a record of filing Genth's deposition. Case tried by Thomas I. and Henry Wharton. +1853 January 2-[1908]. Isaac Pitman 8 items; various14 pages total8 items related to Isaac Pitman: 3 Shorthand ALs written in Pitman's hand, dated January 2, 1853; January 26, 1859; and January 18, 1886. One TL transcription of the 1853 shorthand letter to Benn Pitman. One ALS Photographic Institute Company postcard from Benn Pitman to Alex Hill [September 4, 1908]. 2 printed pamphlets regarding Pitman's shorthand and life. 1 photogravure of Isaac Pitman, 1890. +1853 January 14. S. G. Haley ALS to Geo[rge] H. Haley (brother); Hooksett, [New Hampshire]4 pagesLetter from a teacher to his brother, regarding his homesickness. Grateful for George's advice about girls. He writes out lines from a poem that he composed, "Old Kearsarge." He talks about going to Concord the next week and relays information regarding current events - particularly dealing with family matters. See also Haley letter dated December 23, 1852. +1853 February 25. W[illiam] McLain ALS to Horatio Seymour; Colonization Rooms, Washington, [D.C.]1 pageSeymour has been elected to the position of Vice President of the American Colonization Society. Forwarding a copy of the Annual Report [not included]. +1853 March 6. Elijah Counts ALS to Isaiah D. Counts; s.l.2 pagesComments on the construction of a railroad from Uniontown, Pennsylvania, to Logansport or Peru, Indiana, and efforts to get the line to pass through certain towns. The railroad may pass close to Counts's house. Notes prices of nearby land; encourages his brother to buy soon. +1853 March 8. J.M. Carlisle, Rich[ar]d S. Coxe, Jos. H. Bradley, W. Redin, J. Hellen, Walter [ ], and Jno. Marbury ALS to Franklin Pierce; Wash[ington, D.C.]1 pageMembers of the Bar of Washington, D.C., recommend Philip Barton Key (1818-1859) as U.S. Attorney. Signed by J. M. Carlisle, Rich[ar]d S. Coxe, Jos. H. Bradley, W. Redin, J. Hellen, Walter S. [Con?], and Jno. Marbury. +1853 June 17. Hamilton Fish ALS to Colin M[acrae] Ingersoll; New York [City, New York]1 pageRequests information on the organization of the faculty at Yale. Lists seven queries regarding wages, hours, terms, hiring requirements, privileges, etc. +1853 June 26. Geo[rge] C. Brundage ALS to "friend"; Gibson2 pagesHas been busy, having "the whole management of the farm." Includes news concerning mutual acquaintances. Discusses farming business and offers marriage advice. "Don't think of anything else, keep poking about the rubbish of the world till you have stirred up a gem worth possessing in the shape of a w.i.f.e." Encourages him to marry soon and emphasizes the positive benefits of marriage. +1853 July 1-[1860 December]. Cyrus Lukens AMs; s.l.82 pagesDiary of daily weather and events. Dates recorded in the Quaker style. Notes the anniversary of the "Great Fire 1850," death of Gen. Taylor, the reception of General Pierce, the opening of the Crystal Palace, eclipses, accidents, parades, exhibitions, social visits, the "U.S. National Show," and fires, including a deadly one at "Welch's Circus, Chinese Museum." In 1857, notes the loss of the S.S. Central America and a "Great run upon the banks" leading to the "suspension of spiecie payment." Notes the anniversary of the Pennsylvania Literary Society. Records the 1860 Presidential election and Lincoln's majority in Philadelphia and Pennsylvania. "So Ends my Diary Book. I being in Council Bluffs, Iowa" +1853 September 21. Thomas and Mary Owens ALS to Richard Owens; Cincinnati, Ohio3 pagesLetter to parents in Welsh; concerns business matters in part. +1853 November 05. J[ohn] A[rchibald] Campbell ALS to Duncan G. Campbell; Mobile, [Alabama]7 pagesJohn Campbell's advice to his son before his son leaves to study "mathematical science" in Germany. Campbell mentions the importance of "patient persevering study," choosing "honorable & moral" friends, and not making any "extravagant expenditure" or partaking in diversions. Advises him about not interfering with German government or laws. +1853 November 25. Sam[ue]l F.B. Morse ALS; Poughkeepsie, [New York]1 pageResponds to a request for his autograph. "So small a favor as my autograph cannot be denied, and I therefore comply with your request, trusting that your life so recently commenced may be devoted to the cause of Him who preserves it, and to Him who died to save you." With: Engraved portrait of Samuel F.B. Morse, 1867, from the original painting by [Alonzo] Chappel. +1853 November 29. F[rancis] Wayland ALS to N. Ropes; Providence, [Rhode Island]4 pagesHas been busy and seldom in Boston. Comments on the news from Crimea of suffering among the troops. "How horrible is the news from the Crimea The amount of death by disease and slaughter is awful." Emphasizes the need for Christianity. +1853 December 16. Henry H. Sage ALS to [Alonzo Dwight] Blodgett; Buffalo, [New York]2 pagesComical letter detailing Sage's "request & requirements" in order for him to perform at Blodgett's "Grand Concerto." "First Being in delicate health I should require the exclusive services of not more than seven colored male servants, with a female hairdresser to prepare my jetty locks for each entertainment." Requests two fine hotel rooms, restorative food and drink to counteract the heat, waiting maids for his "favorite poodle and two beautiful grey Tom-cats," as well as additional freight cars to help his pianist, Signor J. Randolpho Blogetti, cart his baggage and luxurious mustache. Remarks on payment. Written on illustrated J. Sage & Sons stationery, including an image of two cherubs playing a flute and reading, accompanied by a printed J. Sage & Sons envelope. "Publishers of Sheet Music & Wholesale & Retail Dealers in Piano Fortes & Musical Merchandise." + +1853 September 17 - 1854 February 4. Lizzie Higgins Diary; [near Norwalk, Ohio]27 pagesManuscript diary beginning in Washington, D.C. Describes her journey by railroad through Baltimore, Pennsylvania, and Ohio. Remarks on religion, social visits, health. Tells of a visit with Grandma Hoyt, who told them "of her being taken prisoner by the Indians & of their painting her up and telling her that she was a pretty little squaw and of her filling her pockets with bullets to kill the Indians, and crying when her sister threw them away because they made her so heavy. She telling her sister that now she had no way to kill the Indians." Comments on spirit rappings and mediums and her anxiety that participating in them are contrary to the Bible. +1854 April 12. John Smith ADS to Samuel Nelson; G[reat] S[alt] L[ake] City, [Utah]1 pagePatriarchal blessing from John Smith, Patriarch of the Mormon Church. +1854 April 22. C[aleb] Cushing ALS to Brantz Mayer; Washington, [D.C.]1 pageCushing (then U.S. Attorney-General) thanks historian Brantz Mayer for his letter and "two accompanying discourses." He comments on English history and on the Michael Cresap-James Logan affair, probably in reference to two 1851 Mayer works: "Mexico, Aztec, Spanish and Republican" and "Tah-Gah-Jute: or Logan and Captain Michael Cresap." +1854 September 15. W[illiam] A. Stearns ALS to Mr. Pollock; Cambridgeport, [Massachusetts]1 pageHas no copies of the discourse requested by Mr. Pollock, but believes that it may be obtained from the publisher, James Munroe & Co. Sending "a copy of a sermon, in Commemoration of Daniel Webster" [not present]. +1854 September 21. J[onathan] K[elsey] Burr ALS to "Sister"; Burlington, New Jersey4 pagesComments on prevailing "fever and ague" in the region and the end of the cholera season. Describes a camp meeting at which Burr (and 11 others) preached. "Communion with nature, on the Camp Ground after a long draught, means the breathing an atmosphere surcharged with dust - the Endurance of heat that would startle a Thermometer if had ventured there - and many other things that partake very much of the nature of inconveniences." Notes the emotional reactions of attendees. +[1854?]. Fanny Kemble ALS; Philadelphia, [Pennsylvania]3 pagesArranging details for her upcoming reading in Baltimore of Shakespeare's Merry Wives of Windsor. +1855 January 30. Josiah Quincy ALS to M[ary] A. Quincy; No. 1, Beacon Hill Place, [Boston, Massachusetts]1 pageWishes her a belated happy New Year. "It is never too late to follow the impulses of the heart, which time may strengthen, but cannot weaken nor to recall an opportunity, lost by your absence, to express the best affections toward you of your Grandfather." +1855 May 9. Edward Everett ALS to Thomas Talbot, J.G.D. Stearns, John Baldwin, W[illia]m H. Odiorne, Thomas B. Edwards; Boston, [Massachusetts]3 pagesDeclining an invitation to the "celebration of the Second Centennial Anniversary of the Incorporation of Billerica [Massachusetts]" "There are but a few of the ancient towns of Massachusetts, whose early history contains a fuller record of the stirring & trying scenes of border life." Comments on Indian attacks on the town; "men, women, & children were killed or carried into a captivity worse than death. But the great and good men of those times relied upon a wisdom & strength beyond those of man; & possessed the fortitude & resolution which carried them through the dreadful ordeal. They left a precious inheritance to their children." +[1855] June 4. W[illia]m H[ickling] Prescott ALS to [John Stetson Barry]; [Boston, Massachusetts]4 pagesThanking Stetson for sending him a copy of his History of Massachusetts. His progress in the book is slow due to his failing eyesight. Despite this, Prescott offers a lengthy critique of both the content and the writing itself. "The subject you have chosen is a noble one... A person, to do justice to our pilgrim fathers, should have some of their blood in his veins... The manner in which you have inlaid your narrative with brief extracts from your original authorities shows how freely you have drawn from the best sources of information & has the advantage of carrying the reader back more vividly to the scenes you describe..." +[18]55 July 16. Edward Everett ALS to [George William] Childs & [Robert E.] Peterson; Boston, [Massachusetts]4 pagesEdward Everett declines to review or offer his opinion on a volume sent to him previously by Childs & Peterson. The demands on his time and controversies attendant upon unfavorable reviews prevents him from undertaking such work. "I accordingly formed a rule to myself more than thirty years ago, not to express opinions of books except under peculiar circumstances, which would require or warrant an exception..." +1855 July 26. John [T?] Huntington ALS to Charley; Cape May, [New Jersey]3 pagesHuntington amusingly describes social life at the Mount Vernon Hotel where he is vacationing. "Last night there was a ‘Hop' in the Dining-Room which is 412 feet long, & such an array of bare-skinned dresses & beauty I never did see. Alas for the pomps & vanities of this remarkable world! What are we coming to?" +1855 October 19. Susan B. Anthony ALS to Mrs. C. M. Crowley; Rochester, [Massachusetts?]2 pagesEncourages Mrs. Crowley to work for the cause of women's rights and to enlist a woman in Cattaraugus County to canvas the area. "Cattaraugus ought to produce one woman with the requisite will- She has hundreds with the talent." She encloses printed materials to assist her in her efforts. Enclosures: One blank petition for the Senate and Assembly of New York to enfranchise women and one printed circular for insertion in local newspapers, "Justice to Women," advertising an upcoming convention and featuring an illustration of a train of shoes with an "E.A. Miller" banner. Crowley lived in Randolph, New York. Envelope stamped Worcester, Massachusetts. +[18]55 November 21. Geo[rge] Sumner ALS to Clinton C[assady? ]; New York [City, New York]4 pagesReceived his recipient's "interesting, clear and eloquent address on the 4th July last," which Sumner believes is sound for its strict neutrality and interest in "real liberty in Europe." Has finished writing his lecture on "the changes which education is working on the masses in Europe" Hopes the example of American education "may help progress & liberty, without the aid of gunpowder & fillibusters." Dedicates a portion of the lecture to school systems in Holland and Ireland Plans to return to Boston. +1855 December 3. John Tyler ALS to M. D. Phillips; Sherwood Forest [Plantation, Virginia]1 pageDeclines an invitation to deliver a lecture. "My lectures are never attended with any charge but are entirely voluntary and for the benefit of the Institutions or associations before which they are delivered." +1855 December 31 - 1857 July 19. AMs; 40 pages [total]Journal of a surveyor in Princeton, Illinois, with an account of his journey from (and return to) Lowell, Massachusetts. Describes landscape, passing through Canada and Detroit. Comments on his surveying work, religion, books he read, local education. Notes local hostility to the road surveys, with some residents threatening bodily harm. Witnessed "two young ladies... kissing each other frantically" and believes Dr. Sewall needs a wife, "for he hugs me outrageously nights." Comments on courtship and women, political meetings and the "Kansas matter," Fourth of July celebrations. Criticizes young women's behavior and comments on their appearance. Attended a sermon on the "Woman's sphere." Suffered from a lingering illness. On his return journey, visited a manufactory in Troy, New York. Includes an 11-page speech on common schools. +1855-1857. William Vandergrift Various; 8 items2 ALsS, 2 ADfs, 2 Docs, 1 Memo, 1 Account. regarding Vandergrift's building activities, with two plans for schoolhouses at Newportville, Pennsylvania. [Originals located in the William R. Vandergriff papers] +1856 Januray 28. James Guthrie DS to A[lexander] H[amilton] Bowman; Treasury Dept. [Washington, D.C.]1 pageInforms Bowman that he has been selected by the President as a commissioner to meet at the Philadelphia mint to test "the correctness of the Assay of the coinage of the U States" +1856 April 16. Henry D[ilworth] Gilpin ALS to Henry S[tephens] Randall; Philadelphia, [Pennsylvania]4 pagesWill send a volume of James Madison's letters for Randall's use, "if you think the safety of the Express can be relied upon." Praises Randall's biographical work on Thomas Jefferson (which would be published in 1858). Comments on how quickly original sources can vanish. Wondering if the Documentary History of New York has continued. +[1856] October 17. H[arriet] B[eecher] Stowe ALS to Mr. Thomas; London, [England]3 pagesHopes to visit her anti-slavery friends in Scotland in the spring. "A great crisis my dear Sir is hurrying on, and I am much comforted by the deep & brotherly interest which England feels for & with us who are called to suffer for & with the cause of freedom-- When I say us I mean the suffering brave of America who stand now as once your covenanters did for a sacred cause." +1857 April 11. A[mbrose] E. Burnside ALS to Mrs. Green; Bristol, Rhode Island1 pageNotification that he will no longer rent her house. Originally laid in notebook of the Bristol, Rhode Island Maternal Association of St. Michael's Church (Blandina Diedrich Collection). +1857 May 30. J[acob] Gideon ALS to "the President"; Washington, [D.C.]1 pageRecommending John S. Edwards for the position of Marshal, District of Columbia. +1857 July 7. Thomas C. Donn and J. H. Goddard ADS (copy); [Washington, D.C.]2 pagesCopy of the October 23, 1856 contract binding 16-year-old orphan Patrick Lynch as an apprentice to Michael McDermott, coach maker. With an amendment dated July 7, 1857: Letitia McDermott, widow of Michael McDermott, transfers her right to Patrick Lynch, apprentice. + +1857 August 23. J. D. Gontz ALS to Mr. Logan; Galena, [Illinois]3 pagesDescribes Galena, commenting on lead ore in the region. Traveled from Johnstown [New York] to Galena by stage and steamer. "...but when we arrived on the Mississipa it was raging at its greatest hight i have seen farmes and Houses and a few small villages that the watter was up to the seckond stories of the houses and the inhabitants were forced to fly to the mountains and in camp out until the water would fall and the they would get back to their homes again" +1857 September 2. J[ames] Hamilton ALS to W[illiam] W. Corcoran; Newport, Rhode Island6 pagesUrging Corcoran to engage in speculation of Texas lands, especially for coal and salt. Hopes to meet with Corcoran to discuss "the details of your proposed agency for paying the Texas Debt." Contrasts coal mining in Texas to the northern states. +1857 November 25. W[illia]m H. Ireland, Jr. ALS to M.A.W. Man[ ]; New York, [New York]10 pagesThanksgiving greetings; is sending a group of verses to brighten the recipient's holiday. Includes 9 pages of rhyming verses and musical score to sing them by. Describes in detail a steamer trip to New York, then to Perth Amboy, New Jersey, accompanied by a dog. The verses include 23 pen & ink illustrations, including: turkey, a man dressing, Steamboat Sylvan Shore, men taunting his dog, mishaps on the streets of New York, African American ticket salesman, ticket booths, life preservers, ports, stagecoach, tree, woman playing the piano, man preparing for bed, etc. +1857 December 10. Alex[ande]r H. H. Stuart ALS to J.E. Peyton; Richmond, [Virginia]1 pageComments on Republican politics. "If we can only persuade the Republicans to give up their sectional organization, & the conservative portion of them to unite with the Whigs & Americans, under the common denigration of ‘opposition', ‘People's' or ‘National Union' party, we can, undoubtedly, carry the election of 1860, provided we have a national candidate." +[ca. 1857?]. Doc.; [Massachusetts?]1 pageManuscript sketch of a school house. Floor plan and facade elevation. Pen and ink, with watercolor. [Located in Oversize Manuscripts] +1858 February 12. W[illia]m P. M[ason], Jr. ALS to W[illia]m P. Mason; Vienna, [Austria]8 pagesDescribes pre-Lenten balls and parties in "southern Germany." Emperor and Empress in attendance at a grand ball. Comments on clothing, dancing, women, and a daguerreotype. The Baroness "is persuaded that I own a gold-mine or two, with much of the western country, & innumerable negroes, & that it was by some unexplicable providence that I am not black myself..." +1858 March 22. Caroline Fiero ALS to Milla Bush; Oberlin, [Ohio]8 pagesFirst impressions of college. Describes accommodations, courses, and religious attendance required of Oberlin students. "I never heard of so many prayers in my life as there are offered here. It is prayer after prayer or some kind of religious meeting all the time." Heard about a murderer in a recent letter. +1858 April 1. Josiah Quincy ALS to W[illiam] B. Sprague; Boston, [Massachusetts]3 pagesThanks Sprague for sending him the 3rd and 4th volumes of Annals of the American Pulpit. Reflection on meeting Presbyterian minister Dr. John Witherspoon ca. 1792 and hearing him preach. "I was particularly struck with his style & manner in the delivery of his discourse. It was solemn, direct, with no display of oratory, or for effect. Terse . . . obviously studied, but without full notes, and relying more on his logic than on imagination for the result to be produced." Etc. Description and speaking style of Samuel Stanhope Smith, who presided over the marriage of Quincy and his wife "Excuse erasures & interlineations. At Eighty six the thread of thought breaks in ye weaving and splicing & knotting is unavoidable." [Note: Smith was also author of a sketch of the life of John Witherspoon, published in volume three of Sprague's Annals] +[18]58 May 20. Geo[rge] Bancroft ALS; New York, [New York]1 pageBancroft writes stating that he will be sending "Page 11" tomorrow. "I give up in despair teaching our stereotypers exactness." +1858 September 14 - 24. Edwin J. Carver ALS to Mr. and Mrs. John Carver; New York City, [New York]8 pagesLetter to his parents in Norwich, England. Detailed descriptions of New York City and Long Island. Notes the celebration of the completion of the Atlantic Telegraph. Comments on local farms and gardens, their produce, and insects. Discusses the construction of Central Park, "or Central stoneheap as Mr Richards calls it. It may be a park a hundred years hence, but it wont be much before." Mentions various religious services, including a Henry Ward Beecher sermon attacking slavery. Notes the burning of Quarantine Station on Staten Island. Remarks on various newspapers and other publications. +1858 October 18. D[aniel] Huntington ALS to L. Terry; Paris, [France]1 pageLetter introducing T. B. Raynolds and Mrs. Bond and asking Mr. Terry to "be kind" to them during their stay in Rome. +1858 November 6. H[ezekiah] Ford Douglass ALS to Thomas Peiner; Chicago, [Illinois]1 pageArrangements to bring Frederick Douglass to Aurora to deliver two lectures in Illinois. One on "Self Made Men" and the other on "the Races." Will charge an admission fee of 15 cents to defray Douglass's expenses of $50.00 per day +1859 July 22. W[illiam] A. Stearns ANS; Amherst, [Massachusetts]1 page"'God bless you'; so prays your friend & servant." Written while President of Amherst College. +1859 September 16. Theo[dore] L[edyard] Cuyler ALS to Theodore Tilton; [New York, New York?]2 pagesRemitting an article on John Griscom, "the great Quaker-the friend of Wilberforce - the father of 'Houses of Refuge,' " for publication in The Independent. Mentions Tilton's antislavery speech. +1859 October 10. Edward Everett ADS; Boston, [Massachusetts]1 pageEdward Everett, statesman, writes about Washington, praising his character. "It is one of the most striking proofs of the purity and elevation of Washington's character and of his hold upon the affections of his Countrymen, that toward the close of his first administration, notwithstanding the lengths to which party violence had already gone, the rival leaders were equally urgent in their appeals to him not to retire from public life, and he was elected for a second term unanimously." +1859 October 30. ALS; [New York City, New York]4 pagesLetter from a businessman, describing New York City. Saw an elephant. Comments on the construction of Central Park, "which is destined to be one of the greatest attractions in the country but it will take a big pile of money to make it so." Discusses ponds and water supply, city construction, manufacturing businesses. Notes the places he visited, including the Five Points district, the Battery Castle Garden, the Astor House, and other prominent buildings. City snow storm made the city muddy, making portions "very filthy, loathsome, & disgusting, I think if Mother would go down there & see how some specimens of human nature exist & subsist, she would think our cow yard was a beautiful posy bed in comparison." Notes the "nastiness" of the New York marketplace. +1859 November 18. Bayard Taylor Partially printed LS; New York, [New York]1 pagePublic speaker's form letter agreeing to lecture on March 20th. "My subjects are 'Moscow,' 'Life in the North,' 'Alexander Von Humboldt,' 'The Animal Man.'" Includes a manuscript note about fees. +81860 January 21. [George Ord] AL to Leighton [Coleman]; Philadelphia, [Pennsylvania]4 pagesAdmonishes Coleman for travelling by railroad by night. Coleman expects "Dr. Worcester's bulky Dictionary will be delivered to subscribers" shortly. Comments on its adoption of Webster's "Yankee orthography." Discusses Webster's encouragement of a separate American alphabet and reform of English language, challenging Jared Sparks's (1789-1866) assertion that it originated with Benjamin Franklin. Mentions English philologists compiling an English dictionary and expected resistance to American additions. "...will they adopt the innovations of our Yankee projectors? I presume they will not; as they are not apt to submit to the dictation, by foreigners, in matters of literature." Notes spelling of specific words, especially "saviour," and the role of scripture in opposing language changes. "...but the cold-blooded lexicographer was inexorable." Encourages Coleman to have his theology students remain true "to the orthography of the sacred Scriptures, in all their writings." Mentions a forthcoming publication on philology "in the Transactions of our learned Philosophical Society." + +1860 January 27. C[harles] F[rancis] Adams ALS to F. W. Bird; Washington, [D.C]4 pagesDiscusses Republican politics. Does not feel as strongly as Bird. Discusses recent points made by Miles Taylor, a pro-slavery congressional representative from Louisiana, and how certain policies have demoralized his party. "He hoped therefore that for the future silence should be tried, so that men might find where they could agree, and not where they differed." Silence can prove more powerful than speaking on contentious issues. Refuses to vote for "Mr. Clark's resolution" [Note: Ambrose W. Clark was a representative from New York] "I am not in the habit of attaching a great deal of importance to any one moment in the progress of this great struggle, and perhaps I do not therefore see so much the necessity of present and immediate action as you do." "In my belief an organization may yet be reached by abstaining from improper and irrelevant debate. I think that the object of the utmost possible importance to the very existence of the government during the next year." +1860 January 30. Charles Campbell ALS to J. B. Lippincott & Company; Petersburg, Virginia2 pagesSending $100. Clarifying that his order of 150 copies of History of Virginia did not include those for booksellers' subscribers. Finds the thickness of the book prevents it from opening properly and hopes its binding can be altered. +1860 August 11. L. L. Todd & Company Printed Letter to John C. Patterson; Lowell, Massachusetts3 pages [total]Regarding the business of Photochromatic Oil Painting and their hopes to engage traveling salesmen. Describes the process and its ability to enable people to paint landscapes "without the aid of a teacher." Comments on the work of salesmen. Lists references. Includes separate flier for the process, which was to be executed on glass. +1860 August 23. Geo[rge] Harrington LS to Theodore Glancy; Committee Rooms, Washington, D.C.1 pageSecretary of the Republican Executive Congressional Committee, Presidential Campaign of 1860 [Lincoln v. Breckinridge] forwards a copy of the Report of the Covode Investigation Committee. On official illustrated Committee stationery, with an image of an American eagle. With: Republican Executive Congressional Committee, printed circular letter; Washington, D.C., 3pp.; 1860. Denouncing the Democratic Party and its policies in support of slavery, disunion. Encourages the formation of clubs to distribute speeches and documents supporting the Republican cause. +1860 August 24. George Bancroft ALS to Mr. Falkner; New York, [New York]3 pagesLetter to Falkner, asking him to take in his son, John Chandler Bancroft, while in Paris to study the fine arts. He provides an introduction and states what he would like his son to experience while in Paris. +1860 September 6. [ ] Cassidy ALS to Rev. S. Guyer; Freeport, [Illinois]4 pages[Peter] Cartwright will speak at the dedication of the church at Apple River. Discusses cost and content of Cartwright's lectures, including lectures on the settlement of the West and the introduction of Methodism into the West. +1860 September 7. W[illiam] A. Stearns ALS to [Edward?] Sohier; Amherst, [Massachusetts]1 pageRegarding Mr. Phillip's bequest "to the Colleges of Mass." Considering calling a meeting of the Corporation. Written while President of Amherst College. +1860 October 20. C. E. Tibbets ALS; Jeffersonville, Ohio4 pagesLetter from a Connecticut woman taking time off from Oberlin College to teach and earn money. School teachers have flocked to Ohio, depressing wages. Lydia Maria Child's stepson teaches school. Studying to keep up with class at Oberlin while away. Compares Yankees to Southerners. Discusses teaching. Notes the formation of Sunday School. Briefly mentions the election of Abraham Lincoln. +1860 October 21. Chase P[rescott] Parsons ALS to "Cousin C."; Fort Wayne, Indiana8 pagesPresidential election news, noting "we are badly whipped in this State . . . the probability seems to be that the Little Giant is not destined to go the White House at present." Discomfort being associated with pro-slavery on account of his affiliation with the Democrats. Ideas about slavery have changed after living in a slave state, but still finds the system wrong. Clarifies his position as a Democrat, wishing the issue of slavery "work out its own cure." Brief mention of Southern disunion. Difficulties finding his cousin employment. Notes his own struggles to find a well-paying position. Discusses Hesiod's saying, "He is a fool who has not learned how much better is the half of a thing than the whole of it." Compares it to Christian beliefs. Hunting in Indiana, particularly its abundance of squirrels. Written on stationery for Goodrich's New Readers, Edited by Noble Butler, A. M. Butler's Grammars, the Officially Authorized Text-Books for the State of Indiana. +1860 November 30. A[ndrew] D[ickson] White ALS to A. Gailey; Trenton, [New Jersey?]1 pageSending a signature to Gailey [clipped]. Will send Gailey a letter he received from Rev. Dr. Neil if he is able to find it. +1860 December 27. Rob[er]t C[harles] Winthrop ALS to B[enjamin] B. French; Boston, [Massachusetts]2 pagesAgrees to help grow the National Intelligencer's subscription list. Notes anxieties about Fort Moultrie and that the nomination of Wilmot to the cabinet threatens further alienating the South. "We must look higher for help, for vain is the help of man." +[1860]. City Committee AMs to Committee appointed by the Maj. Genl., 1st Light Div. M.V.; [Boston, Massachusetts]1 pageOrders and program of procession for military escort of Japanese delegation. Listing of companies involved, specifications for firing of salute. +1860. Ed[ward] N. Roach DS to William A. Maury; s.l.1 pageMoney owed from Philip B. Key's estate "For making out distribution among the creditors, copy same & for final settlement of his administration & copy &c." +1861 January 29. Robert Ould CyS; Washington County, D.C.3 pagesCharges against Godard Bailey (of the Department of the Interior) for the theft of bonds issued by the States of Missouri, North Carolina, and Tennessee, and belonging to the Indian Trust Fund. Signed by Jno. A. Smith, certifying it as a true copy. +1861 February 5. Rich[ar]d H[enry] Dana, Jr. ALS to W[illiam] M[axwell] Evarts; Boston, [Massachusetts]3 pagesConsoles Evarts for loss in Senate race, but believes it will benefit him financially not to serve. At least "we are saved the disgust of seeing Horace Greeley in the Senate. If that had happened, I should have put my mouth in the dust." +1861 February 15. Knight & Hero ALS to W[illia]m Thwing; Yokohama, [Japan]2 pagesComments on trade from Yokohama and the likelihood of direct trade to the U.S. and England. Typhoons have destroyed the cotton and rape seed crops, but expects markets will recover by next November. Was surprised by the delivery and shipment of "uncolored Japan Teas." Tea, silk and oil will be important export products. Mentions prices for various trade goods. "The Japanese wants are growing fast, and an Import list will greatly increase this year." +1861 April 15. Catherine A[nn] Warfield ALS to Mr. Bonne[y?]; Beechmore, Oldham County, Kentucky3 pagesHad been advised to send him a story. A mutual friend was to have written Bonney, but believes he was distracted by "the disastrous turn of our political affairs." Her publisher, Mr. J. C. Derby, was to have sent the story. Concerned for the manuscript, titled "Angoisse: A tale of Dauphiny," as it is the only copy. Would like it returned if he does not want it, but will send the remaining 100 pages if he likes it. +1861 May 18. Josiah Quincy ALS to Mary A. Quincy; Boston, [Massachusetts]1 pageApproves of her marriage to Dr. [Benjamin] Gould. Believes Gould to be worthy of her in every regard. "May your lives be long and without a cloud, and be as propitious to their close as in their beginning." +1861 October 7. Josiah Quincy ALS to M[ary] A. Quincy; Quincy, [Massachusetts]1 pageSending a gift to celebrate her marriage [to Benjamin A. Gould], "as an evidence of my happiness at the gratifying prospects of your coming life & of my best wishes that an union, which has in every respect my approbation, may prove to you all the fondest affections could hope or desire." +[18]61 November 25. J[ohn] L[othrop] Motley ALS to C. C. Perkins; Vienna, [Austria]8 pagesAssessment by U.S. Minister to England and Austria as to British sentiment ("the much benighted English public") over siding with the Union or Confederacy. Notes his efforts to convince President Lincoln, his cabinet, and other leading figures "that the intentions of the English government toward us were perfectly honorable." Emphasizes that the English press does not reflect general English sentiment. "You see it isn't America so much as the ultra liberal party in England that these journals are attacking." Believes it a mistake to expect sympathy from the English government as well as to play into Confederate wishes for the Union to "quarrel with England." Notes the changes in opinion concerning Napoleon and the Italians. Mentions' the battle of Ball's Bluff and several notable and noble deaths. "The diplomatic corps here generally believe that the Southern Confederacy is to be made into a kingdom with an English prince on its throne!" Written on Legation of the United States of America at Vienna stationery. +1862 February 20. Rich[ard] H[enry] Dana, Jr. ALS to William M[axwell] Evarts; Boston, [Massachusetts]4 pagesPossibility that Dana may replace Gideon Welles as Secretary of Navy if Welles retires. "The office must go to a New England man." While it goes against his "material interests," he would accept it because of the war and because he thinks he would add honesty and "pride of character" to the Cabinet. Notes how Evarts could help him obtain the post. +ca. 1862 March 6. [Carl Schurz] AMs; s.l.73 pagesManuscript Civil War speech with revisions and marginal notes, including asides about crowd reactions. "Speech of Carl Schurz delivered at the Cooper Institute, N.Y. City, on Thursday, March 6, 1862." Mentions general surprise over the outbreak of war and the necessary actions to "put down the rebels in arms, and then to restore the union." Comments on slavery's role in bringing the war. Opposes the restoration of slavery and calls for immediate emancipation. "Slavery is like an egg, once broken, it can never be repaired." NOTE: Published as The Life of Slavery, Or the Life of the Nation : Speech of Hon. Carl Schurz, at the Mass Meeting, Cooper Institute, New York, March 6, 1862 (New York: G.P. Putnam, 1862). With: Carl Schurz' personal calling card and ANS; s.l., 2pp., undated. "For Genl. Grant. Should be happy to have a 10 or 15 minutes talk with Genl. Grant in the course of the day (note not about a petition for office, but about a matter which occurred three years ago, in which they were both concerned and which turns out to be of some consequence now. Will call for an answer at 2 P.M." +1862 April 28. O. S. Fowler AMs to Clara Bass; Bloomington, Illinois14 pagesPhrenological character analysis of Clara Bass, including notes on emotional, economic, and health tendencies. Comments on her likely character as a wife and mother. With printed covers. +1862 July 22. Edward Everett ALS to C[harles] A. Dana; Boston, [Massachusetts]3 pagesEdward Everett writes to Charles Dana (managing editor of the New York Tribune until 1862 and editor of the New York Sun from 1868) telling him of his progress on writing a "memoir of Washington." He describes the manner in which he is going about his research and responds to Dana's suggestion that he not "go deeply into the events of the Revolutionary War." Notes his efforts to differentiate the memoir from his entry on Washington in the Encyclopedia Britannica. +[18]62 August 2. B[enjamin] R[obbins] C[urtis] ALS to [Edwin Wallace] Stoughton; Maplehurst2 pagesWould like to visit Canada and London but will not visit Britain, "a place where there are so many people hostile, utterly hostile to my country in its peril." Is busy with legal cases. +1862 November 3. Josiah Quincy ALS to Susan Morton Quincy Gould; Boston, [Massachusetts]1 pageBest wishes for his [great] granddaughter. "May you inherit & exemplify the virtues and talents of her whose name you bear and like her be the pride & joy of all who may have the happiness of your society, an honour to your sex and to human nature." +1862 November 24. R[ichard] H[enry] Dana, Jr. ALS to W[illia]m M[axwell] Evarts; Boston, Massachusetts4 pagesComments on the law surrounding ships captured during Civil War. +[18]62 November 24. W[illiam] H[enry] Furness ALS to Oliver Johnson; Philadelphia, [Pennsylvania]1 pageFurness asks Johnson if he will see a friend of his, Miss Rosa Towne, off to Port Royal. +1863 January 20. Dan Coleman DS; [North Carolina]2 pagesCopyright registration for Samuel Lander's ‘Our own School Arithmetic' with the "Confederate District Court for the District of Cape Fear in the District of North Carolina." Submitted in compliance with the Congress of the C.S.A.'s act "to continue in force certain laws of the United States of America." Witnessed and signed by Dan Coleman, clerk. +[18]63 February 18. Charles [Hill] ALS to Martha [Hill]; New Bern, North Carolina3 pagesReflects on their correspondence and married life. Theo. Fisher is assistant surgeon of the 44th regiment. Describes a private school, including the schoolroom, teacher, children's antics, discipline, etc. "I know enough about schools to know that one cannot always judge of a school by one visit." Updates from camp. Mentions a clerk whose wife is with him in camp. Enclosing a hyacinth [not included]. "Gen Foster has given the blacks permission to drill and they are going into it. Those who have seen them say that they drill very well. I have full confidence in the ability of the negro as he is seen here at least, to make soldiers. And I believe that we shall begin to prosper just as soon as we are humble enough to accept help from the negro, and not before." Hopes for African American education. Comments on news from home. Treasures Martha's pictures. Includes a note to his child, Eddie. Glad they can communicate by mail. "The poor little black children cannot hear from their papas so for they can't write. don't you pity them?" +1863 April 16. R[ichard] H[enry] Dana, Jr. ALS to William M[axwell] Evarts; s.l.6 pagesAdvice on where to stay, whom to visit, and what to wear while in London. Enclosing letters of introduction [not present]. +[18]63 April 19. Royal W. Danforth ALS to Mrs. Richardson; Raynham, [Massachusetts?]4 pagesFather grapples with idea of his youngest son working in the city. He had been in Boston and met "a man who was puting up machines for sewing Boots & Shoes," and has contracted to work in Philadelphia. Worried about the struggle with temptation and danger. Includes reflections on old age and religion. "...I am wearing out shal soon if suffured to live pass into old age & second childhood Here comes the great question what is the destiny of our being, or in other words why were we called into life and action in this beautifull world & subjected to all the trials & temtation that surround us." +1863 June 17. Franz Abt ALS to D. Liebhardt; Forest Hills, [New York?]3 pagesNews of his travels (in German script). +[18]63 August 5. A. A. Phelps ALS to Bro. Hillman; Lyndonville, N[ew] Y[ork]2 pagesDiscussing the cost of insuring he and his wife. Ages and insurance rates. Queries about deductions. "I think I shall get my wife insured some time this summer, if I can get the cash to spare . . . Does such an operation imply any distrust in the God of Providence? I presume the question is often asked you? I want to be right & mean to be." Written on illustrated letterhead of a bearded man, by Putnam Brothers, publishers +1863 October 15. Will[iam] Byrns ALS to Mrs. William Byrns; Ann Arbor, Mich[igan]3 pagesDescribes of Ann Arbor. Notes efforts to find lodging, with remarks on the contents of his room and the exorbitant cost of rent. Mentions the lecture room at the Medical School and remarks on fellow students. +1863 October 18. Will[iam] Byrns ALS to Mrs. William Byrns; Ann Arbor, Michigan3 pagesChanged lodgings. Notes crowded medical lectures and the presence of students from every state, plus Canada and Cuba. Describes his courses and method of studying. Gives thoughts on the faculty. +1863 October 25. Will[iam] Byrns ALS to Mrs. William Byrns; Ann Arbor, Michigan4 pagesPleased with his boarding place. Befriended a young man who served in the same regiment as Byrns. Compares the medical college with others in the country. Plans for winter break. Sends love for his wife; concerned about her health and happiness. Dislikes being separated, but believes it is better "than I were in the army." Mentions the local Presbyterian church. +1863 October 28. [William Byrns] ALS to Mrs. William Byrns; Ann Arbor, Mich[igan]3 pagesDescribes his daily routine at the medical college and college buildings. "Attached to the library is quite a large museum & the Collections of zoological specimens is the largest & most varied I have ever seen. The prepared specimens of the birds & mammals of the U.S. are numerous & not well arranged. The collection of impressions of medals is the most complete in the U.S. There are many plaster casts, but I don't admire them." Fears that his wife regrets their marriage. Acknowledges the difficulties of living apart. Disapproves of her wanting to teach. +1863 November 1. Will[iam] [Byrns] ALS to Mrs. William Byrns; Ann Arbor, Michigan3 pagesUniversity of Michigan faculty member requests that an African American student leave the institution; reaction by abolitionist students. "The negro was informed by one of the Faculty that for the pease & harmony of the institution he had better leave, & he left, Whereupon some members of the class from Oberlin Ohio & others who were more than Abolitionists drew up a call for an indignation meeting to be held immediately after the lecture yesterday." Faculty suppressed the abolitionist meeting. "...very many of the ultra radicals of the class declare that a student from Egypt who is reported as being active & sending the negro away- will have to leave the institution." Attendance at an Episcopal church and topics covered. Wonders if she will accompany him to Buchanan for the holidays. Misses her and promises not to be separated for so long again. Studies are going well but does not expect to graduate. "The class is so enormously large - upwards of 320 now - that one cannot get the advantages that are to be obtained in lesser colleges." +1863 November 3. John Henry Reid ALS to William [Reid?]; Johnstown, [New York?]2 pages [total]Writing to William about a circular sent to him by Union College. Accusations of William joining members of the Senior class in "bolt[ing] their recitations to day, setting an example of great disorder and exerting a pernicious influence among the whole College." Urges caution to avoid jeopardizing his degree. Includes partially printed Union College reprimand, dated October 29, 1863, and signed by L[aurens] P[erseus] Hickock (1798-1888). +1863 November 5. Newspaper; Detroit, Michigan4 pagesDetroit Advertiser and Tribune, vol. 28, no. 126. Page 2 features a letter to the Editor by Alpheus W. Tucker, an African American student asked to leave the University of Michigan on account of his race. Discusses the expulsion, reflects on the racial antagonism and "Copperheadism" at the University that motivated it, and opposition to the injustice. "... received a note from Prof. Ford, stating that there was quite an objection amongst the students to my attendance, and that the Faculty had blamed him for receiving my name, and he thought it best that, to prevent an outburst amongst the students, I had better leave." Located in Oversize Manuscripts. See also William Byrns ALS to Mrs. William Byrns, Ann Arbor, Michigan, November 11, 1863, for further discussion of the expulsion. +[18]63 November 25. M[ichael] Jacobs ALS to S[amuel] W. Crawford; Gettysburg, Pennsylvania2 pagesRespecting Jacobs's recent book, "Rebel Invasion" [Notes on the rebel invasion of Maryland and Pennsylvania, and the battle of Gettysburg, July 1st, 2d and 3d, 1863]. Crawford apparently liked the book and has some additional information for Jacobs about "these terrific struggles, in which you & your 'Pa. Reserves' took so distinguished a part." Edward Everett mentioned it during his recent speech, which has helped facilitate sales. The 10,000 copy edition will soon be sold and an enlarged edition will probably follow. +1864 January 18. J[no.?] Milledge ALS to A[bner] J. Leavenworth; s.l.2 pagesDr. Stiles recently made a public appeal "to awaken our people to their danger." Asked Milledge to do likewise. Milledge seeks assistance with the writing of a lecture or address on the topic, "Our lives our fortunes and our most sacred honor." Hopes to increase Confederate patriotism. "It is the army in the rear and not in the front that we have to beat back and overcome." +1864 January 29. E[rastus] D[ow] Palmer ALS to Frederic E[dwin] Church; Albany, [New York]4 pagesPalmer requests Church to send him "Stewarts' picture" for an exhibition. He describes overworking himself in his studio, and mentions his sculptures "Peace Found," "Peri," "Evening," "Mercy Pleading" and compares his work on "Evening" to his previous sculpture, "Sappho." Notes a portrait of himself painted by Elliott. +1864 April 13. Thomas Keith and Agnes Keith DS to Parlee Keith; Plymouth, [Massachusetts]2 pagesSale of half-part of a pew from the "Meeting House of the Union Society of East & West Bridgewater." Witnessed and signed by B. W. Keith, Justice of the Peace. +1864 May 3. E[ben] N[orton] Horsford ALS to W[illia]m Cullen Bryant; Cambridge, [Massachusetts]2 pagesThanks for a favorable review in the Evening Post of Horsford's plan to use roasted wheat for Army rations. Notes how armies of the past, including the "troops besieging Carthage," did likewise. +1864 September 13. Thomas Hill ALS to Augustus Story; Harvard College, [Cambridge, Massachusetts]4 pagesDiscusses Story's "proposed gift to Harvard College" and matters with donation handling. "One motive for founding a scholarship may not occur to you, --it would be a very pleasant thing to very many friends of the College to have the honorable & highly honored name of your family thus perpetuated on our books." Comments on the selection of scholarship recipients. +1864 October 3. [Horatio G. Wright] ALS to Ed H. Wright; Harrisonburg, [Virginia]4 pagesAffectionate letter to son describing his tent and a marvelous dog. "He is not a bit afraid in a fight and capers about without caring for the bullets . . . I call him Pete because I got him at Petersburg when he was a puppy." Have had two fights and chased enemy to Harrisonburg area. Written on Headquarters Sixth Army Corps stationery. +1864 October 20. J[ames] G[illespie] Blaine ALS to Schuyler Colfax; Augusta, Maine4 pagesUrging Colfax to remain as Speaker of the House and not accept a Cabinet post. +1864 December 18. D[avid] Wilmot ALS to Ulysses Mercur; Washington, [D.C.]2 pagesWilmot believes the election of Landon to the Senate would cause Republican party difficulties. He will try to get the President to offer him a judgeship instead; enlists Mercur's help in doing so. +1864. 2 printed Docs.; Syracuse, [New York]2 pages (total)"Syracuse School" Senior Class annual exams for History and Arithmetic. +1865 March 14. W[illiam] W[inston] Seaton ALS to W[illia]m Gunton; Washington, [D.C.]2 pagesWilliam W. Seaton, editor of the National Intelligencer to William Gunton, President of the Bank of Washington. Regarding Seaton's claim against the estate of Joseph Gales and a postponement of debts owed to the Bank of Washington. Illinois Coal Stock and properties assigned to Mr. Carlisle will be used to settle debts to the Bank of Washington. A bond of [Robert] Olyphant, President of the "Delaware and Lacawanna [Lackawanna]" Railroad Company will serve as security. + +1865 April 9-10. E. B. Young ALS to Edward; Hudson, [New York]6 pagesAdmonishes Edward for not writing his family more frequently. Advises him not to marry "till you have means and an income sufficient to support both of you and can lay up something besides for a wet day, sick days & finally old age." Warns Edward against ruinous practices, including "tavern haunting, drinking, associating with bad women, gambling, and an inordinate patronizing of Livery Teams & stables all these keep a man poor in purse & character." Notes characteristics one should seek in a spouse, especially good education, practical economy, and housewifery skills. "...recollect that marriage is a lottery, both parties to it trying to entrap each other by hiding their bad qualities to come out bitterly after marriage." Warns Edward about marrying "a 1st full blooded cousin," noting potential birth defects and believing it criminal. "...I don't want you mortified for life or me to have fools for grandchildren." Believes the country will rebound after the end of the Civil War. Experiencing some difficulties due to the high price of silk. Mentions fabrics, clothing, and other items purchased for his mother, including a reference to false teeth: "...as soon as I get her new Teeth I think I shall have as good looking an old woman as any man has, and you need not be ashamed of her." Briefly notes a local celebration of [Robert E.] Lee's (1807-1870) surrender, "a General Illumination & Torch light procession &c." +1865 April 13. George S. Boutwell ALS to Schuyler Colfax; Groton, Massachusetts3 pagesPraises Colfax's address on education. Notes the importance of education. Celebrates recent victories and the closing of the Civil War. This is a triumph such as mankind have never before witnessed,-- a triumph of the people not only over rebels and tyrants, but also over the unnatural and inhuman distinctions of society by which some enjoy the rights, privileges and property which justly belong to others." +[18]65 May 25. Will H. Githens ALS to Wife; Near Alexandria, Virginia4 pagesLetter from Regimental Surgeon, 78th Ill. Vol. Infantry regarding the recently completed Grand Review of the Army. He describes their welcome, the attendance and decorations, seeing Sherman and the President, and the monumental nature of the occasion. Contrasts the generosity of the women against Confederate women, who "would rather cut our throats than give us a mouthful of food." "...the world will never see the like again. I have no idea such immense armies will ever be called for in this or any other country again. I feel proud that I was one of them, and glad that I was permitted to see it - proud also that I am a Western soldier..." +1865 May 31. James Speed ALS; Wash[ington, D.C.]2 pagesSigned as Attorney General and written shortly after President Johnson issued a proclamation of general amnesty. To a former Confederate: "I am glad to learn your purpose to return to loyalty & duty. Permit me to say however that it pained me to see you writing about ‘my government' - This government is... as much yours as mine. The sooner this fact is felt & acknowledged the better. It seems to me that until such is your feeling, you cannot begin to be what I know you desire to be a good citizen." +1865 August 18. Charles Lanman ALS to E[vert] A[ugustus] Duyckinck; Stratford, Connecticut2 pagesExpressing irritation at exclusion from Duyckinck's Cyclopaedia of American Literature. Threatens to make this mistreatment public and question his "conduct as a compiler." Lists some of his accolades and honors. Includes Duyckinck's reply dated at New York, 1865 August 21. +1865 August 21. Evert Duyckinck ALS to Cha[rle]s Lanman; New York, [New York]4 pagesResponding to Charles Lanman's indignant letter [dated August 18, 1865] about being excluded from the new edition of the Cyclopaedia of American Literature. Assures Lanman that his omission was not mean-spirited but due to the absence of a reply to a circular sent to him. Sending another circular and notes the information required. Found Lanman's letter unjust to himself and Mr. Scribner. +[ca. 1865?] [after 1830?]. AMs; s.l.23 pagesManuscript copy of portions of "Reminiscences of Philadelphia," by Sarah Hall (1761-1830) published in Selections of the Writings of Mrs. Sarah Hall (1833). Account of manners, customs, buildings, fashions, and the state of society in Philadelphia preceding the Revolution. Comments on servants and slaves. Includes a newspaper clipping from ca. February 7, 1822, about organized burglaries involving household servants. +1866 January 17. John B. Gough ALS to Dr. E. S. Crosier; Cin[cinna]ti, [Ohio]1 pageUnable to fulfill Crosier's request because of a busy schedule "It is always my desire to keep the Temperance Cause whenever it is in my power to do so." Notes his current lecture obligations +1866 February 20. R.K. Cummins ALS to "sister"; Mobile, [Alabama]7 pagesDiscusses work and wages as a shipping clerk for the Mobile and Ohio Railroad Company. Describes travel from Ohio to Louisiana, and the room and board in New Orleans. Suffering from rheumatism. Notes the recovering business climate, cotton industry. Population of southern cities increasing as northerners move south for the cotton industry, but laborers scarce as "so many of the negroes that have died, & have flocked to the cities & town's." Small pox proving deadly among African Americans. Former slaves are "doing better than was expected," and none of the expected disturbances occurred during Christmas and New Year's. Discusses the political climate. "If congress would only admit the southern members, & do away with the Freedmans Bureau, we would be one United Government again, the most dissatisfaction in the south is on account of our still haveing military rule, & the non admittance of their representatives." Mentions Reconstruction policy, Sherman for the Senate, abolition, etc. "I have no doubt now but that the Abolition of Slavery will be the better for the Whites of this country, but in time the extinction of the Blacks." On official "Office of the Mobile and Ohio R.R. Co." stationery. +1866 June 5. R[obert] E. Lee ALS to J. W. Sapsley; Lexington, [Virginia]3 pagesInforms the father of a student that his son is not keeping up with his studies and should be withdrawn from the college, likely Washington College. "I do not think it would be to his advantage to continue here, without reaping an adequate return for the expenditure of his time & money." +1866 July 20. J[ohn] B[lair] S[mith] Todd ALS to "J. W. Batchedor" [John B. Batchelder]; Fort Randolph, Dakota Ter[ritor]y2 pagesWritten by Mary Todd Lincoln's cousin and delegate from the Dakota Territory to the House of Representatives. Concerning his photograph "transmitted through the War Dept." "I regret very much that we have no artist in this quarter to touch it up, as you desire-- we are too far removed from the centre of civilization to afford the luxury of the fine arts." Explains his hair color and complexion. "I am glad to hear that you are progressing finely with your picture of the last hours of the President... The subject is a grand one, the tragic death of our Martyr President and well calculated to excited the loftiest emotions of genius." NOTE: John B. Batchelder designed Alonzo Chappel's 1868 painting The Last Hours of Abraham Lincoln. +1866 October 28. Horace Greeley ALS to C. B. [ ]; New York [City, New York]1 pageIntends to lecture in Cincinnati during the coming winter and will likely be able to provide a lecture for the recipient at that time. "I am so deeply engrossed in our political canvass that I cannot clearly see my way after the election." On Office of the Tribune stationery. [Original in the Horace Greeley Collection] +1866 November 15. Robert Barry Coffin ALS to E. C. Stedman; New York, [New York]1 pagePoet, also known as Barry Grey, declines invitation to a farewell dinner for James Lorimer Graham (1831-1876). +1867 December 27. [Pop?] ALS to "Brothers"; Bethany, W[est] Virginia2 pagesDelayed in writing due to a recent move, possibly from Dowagiac, Michigan. Sharing their new house with another family, "we were acquainted with them in Mich[igan]." Provides great detail about a dinner, possibly for Christmas. Notes the Christmas and New Year vacation for Bethany College, and John will commence after classes resume. [Currently housed in folder with John Lindsey ALS to Jane Lindsey, November 25, 1847] +1868 January 11. Horace Greeley ALS to H. R. Waite; New York [City, New York]1 pageAgrees to give a lecture on February 3, "my 57th birth-day." Suggests the following topics for the talk: "Great Men, Abraham Lincoln, Self-Made Men, or America Westward of the Mississippi." On "Office of the Tribune" stationery. [Original in the Horace Greeley Collection] +1868 November 7. R[ichard] H[enry] Dana, Jr. ALS to W[illiam] M. Evarts; Boston, [Massachusetts]8 pagesHis supporters deserted or became neutral, resulting in a small vote for Dawes. Massachusetts Congress and the State Central Committee responsible for Butler's success. Comments on Radical Republicans. "But, I do not think B.'s heresies nor his bad character hurt him much." +1868 November 12. David Davis ALS; Bloomington, Ill[inois]1 pageRegarding Abraham Lincoln's papers. "I have given away all the letters in my possession of Mr. Lincoln's, which it is proper I should give away." The papers left by Lincoln at his death have not yet been examined. "They are in my custody." Will send any that ought to belong to the letter's recipient. +1868 December 30. Johann Strauss Partially printed DS to Josef Homole; Wien, [Austria]4 pagesEmployment contract for musician Josef Homole, written in German. Signed by Johann Strauss as Hofballmusik-Direktor and Capellmeister. Signed by Josef Homole. With wax seal. +1869 February 16. William Tod Otto and Elisha Grote Partially printed DS to James Serrill; Washington, [D. C.]3 pages [total]Patent for toy savings bank with illustration of Columbia with scenes of industry and innovation. Includes two illustrations of the "magic Savings Bank" and its schematics, as well as the printed patent. [Located in Oversize Manuscripts] +1869 March 11. Hamilton Fish ALS to [Ulysses S.] Grant; New York, [New York]3 pagesDeclining nomination for Secretary of State. "Nothing would give me greater pleasure than to be associated with your Administration, and to give the best of my humble abilities to aid in advancing the high objects which are the aim of your thoughts & your hopes & to which the Country looks hopefully and confidently for the inauguration of a new era in the Government-- An era of honesty, economy, & fidelity." +1869 April 1. Neal Dow ALS to W[illia]m P[itt] Fessenden; Portland, [Maine]7 pagesAppreciation for nomination to the diplomatic service. Prefers a position in Switzerland, Belgium, or Holland. Dispute over the Alabama threatens relations with Britain. Likely in reference to British-built warships used by the Confederate States in the Civil War. Gives advice on how to best handle English anxieties and assure American desires are met. "The London Times said the Americans did not care so much for the pecuniary consideration involved in the Alabama claims, as they did for the national humiliation they had suffered-- or fancied they had suffered from the action of the British Gov't and I want them to suffer the humiliation of asking us to be kind enough to send in our bill- and be friends once more." Comments on other English newspaper articles on the affair. +1869 July 23. Susan B. Anthony ALS to Cha[rle]s F. Hatch; New York, [New York]2 pagesPlease to permit Thomas Phelan, who has "faithfully served The Revolution," passage on Hatch's road. "The Erie R.R. Co. have passed him over their road - & I hope the Southern Michigan & Lakeshore will do the same - & thus help one more young man out of this over crowded City to the great west." Written on The Revolution (Woman's Bureau) stationery. +1869 August. Printed Doc.; Milledgeville, [Georgia]4 pages"Let every Southern Educator read this. From the Milledgeville Union, August, 1869. Worcester's Quarto Dictionary." Printed flier comparing Webster's dictionary unfavorably to Worcester's dictionary. Comments on dictionaries mislabeling themselves as "Webster's." Notes the history of Worcester's Quarto, Octavo, and Great Pictorial dictionaries. The Webster's dictionary of 1864 displayed various political prejudices and revised definitions of words, including "Congress," "Compact," and "Constitution." Compares the former and new definitions of the word "State," showing the introduction of words and "radical" expressions related to a "National Government." "The doctrines necessarily implied in the new miscalled 'Webster's' definitions, are on ground more than half way from that of the old Republic to an Imperial Despotism, which many are now openly advocating." "We are not - we never were - a 'nation.' We are a community of nations, bound together by the compact of the United States Constitution." +[1860s]. [Professor Zendavesta] AM to Emma Dyer; 4 pagesHoroscope of Emma Dyer, with predictions for her life. Written on illustrated letterhead with a printed astrological diagram. "The Stars influence, but do not compel." +[1870 July 18]. Elizabeth Cady Stanton ALS to Cha[rle]s Mumford; [New York, New York]4 pagesLetter regarding preparations and fees for public speeches. +1870 October 6. J[osiah] G[ilbert] Holland ALS to [Daniel?] W. Burton; Springfield, Massachusetts1 pageWritten in the first year of the publication of Scribner's Monthly. Holland was editor and 1/3 owner of the publication. "My new magazine is soon to appear and I am too much absorbed in the matter to undertake any outside work. When I am running with a heavy train at full speed, I find it very hard to switch off upon another track without harm to the machinery." Hopes he has a good centennial and is grateful for the invitation. +1871 October 14. Ferdinand von Miller ALS to Editor of the Chronicle Times; Burnel House, [Cincinnati, Ohio?]1 pageLetter written by Miller with the intent of being published in the Chronicle Times. It is a public letter written "To the Citizens of Cincinnati" commending and thanking all who took part in the completion of the Tyler Davidson Fountain. Hopes it will link Cincinnati to Munich. [NOTE: Miller was the second director of the Royal Bronze Foundry in Munich.] + + +1872 March 4. S[abine] Baring-Gould ALS; Colchester, [England]1 pageHas sent an article "on the 'Waldeuses,' a demolition of the fables current relatives to them." He is currently at work on "Lives of the Saints," but will try to write a paper on "The Monks and Nature" for him. Is well-read in the history of the Reformation and could possibly write on a related subject. Written on East Mersea Rectory letterhead. +1872 September 16. Peter Cooper ALS to Arthur F. Sptson; New York, [New York]1 page"...men in all, the ages that have past, have failed, to Realize the fact -- That hea[l]th, pace, and Competance -- Forms the grand sum of the reall hapyness of mankind -- We fail to realize that that 'Health consists with temperance alone -- And Peace, O vertue Peace is all thine own.' " +1872 November 12. Edward Higginson ALS to [Mrs. Higginson]; Cambridge, [Massachusetts]5 pagesEyewitness account of great Boston fire by Harvard student. Notes destruction caused by fire and residents' attempts to save their household goods. Mentions the use of demolition to prevent the further spread of the fire. "The streets were now jam[m]ed with people, firemen from all parts of New England, policemen from New York and thieves from everywhere." An attempted arsonist was shot dead. Served as a guard. +1872 November 25. Joseph R. Hawley ALS to [Ulysses S.] Grant; Hartford, [Connecticut]2 pagesLetter regarding a preliminary report [not present] from the Centennial Commission. Hawley gives his view on the matter of Government appropriations for the Centennial Exhibition, and advice on what should be included in the Inaugural Address. Hopes for some comment on "specie payment." Congratulates Grant on his recent reelection. "So infamous and persistent were the slanders that it became, in my view, necessary to the national honor that you should be reelected. And I have full confidence that we are to have four years of administration that will rank with the very highest the country has enjoyed." Includes a small printed portrait of Hawley. +1873 January 18. W[illia]m C[arey] Richards ALS to Dappleton & Co.; New York, [New York]1 pageTo the Chairman of the Lecture Committee, YMCA. Looking to fill vacancies in his lecture schedule. The letter is written on a 2-page printed advertising circular, showing Professor W.C. Richards' scientific lecture schedule and topics, 1872-1873. Circular dated May 1, 1872. Includes an addition from August 29, 1872, noting Richards' recent return from Europe, "bringing with him the finest Electrical and Spectroscopic instruments ever constructed." +1873 January 29. Josiah Quincy ALS to Luke Bemis; Boston, [Massachusetts]2 pagesSending a memoir of Gridley Bryant, "the Engineer of the Quincy railroad which was the first in the United States." Remarks on the public interest (and benefit) surrounding the founding of the Quincy Railroad. Comments on its relationship to granite. +1873 March 29. Edwin L. Stanton ALS to W[illiam] P. Dole; Washington, D.C.1 pageEnclosing a bill [not present]. +[18]73 April 22. Henry Ward Beecher ALS to [George W. Bungay]; s.l.2 pagesDeclines a request for him to speak. "...tho' I preach on temperance, I have no lectures—and off handed talks I cannot give—with any comfort,-- except at home." +1874 Janurary 31. R[ichard] H[enry] Dana, Jr. ALS to [William M.] Evarts; [Boston, Massachusetts]4 pagesDiscusses Evarts' consideration of a judicial appointment. "I have always doubted whether the post would have suited you. Your talents and temperament fit you best for forensic life... You shine most in debate." Thoughts on the position of Chief Justice, Congress, and the distinction between men of merit and those who receive rewards. Mentions President Grant. +1874 April 18. Th[omas] Nast Illustration Signed; s.l.1 pagePen-and-ink self-portrait of Thomas Nast lecturing to a displeased crowd. +1874 November 21. Arthur Gilman ALS to Lucy Larcom; Cambridge, [Massachusetts]3 pagesLetter by Arthur Gilman, founder of Radcliffe College. Praises Lucy Larcom's new book; he will give it to his daughter for Christmas. "I never saw a book of the kind in which the beauty and grace of the pictures were so admirably complementary of the grace and sweetness of the verse, and the brightness and purity of the sentiment." Requests the author to write a few lines for his daughter so that he can place them in the book. Thanks her "In the name of all papas and mamas." +1875 September 21. W[illiam] T. Sherman ALS to J[ohn] E. Williams; St. Louis, Missouri4 pagesAssures Williams that "no delusion will seize me-- that no party, clique or combination will induce me to commit the act of destruction that you fear." Would prefer to "resume my old place as President of the 5th St. Railroad, than to be President of the US. There are plenty of Contestants. Let them fight it out." Disagrees with both political parties. Is unafraid of his enemies and is able to support his family even if they abolish his office. Comments on religion and education. "I confess I would dislike to see Religion enter into Politics, for when Religion begins, Reason ceases." Written on Headquarters Army of the United States letterhead. +91876 February 10. Oliver Wendell Holmes ALS to [Katherine Sedgwick] Washburn; [Boston, Massachusetts]4 pages [total]Praises her part in a reading of Othello. "They give new meaning to the delineations and thoughts of the great poets and lift the lesser ones - so that we can see the light of the glow worms, as well as of the stars." Accompanied by a 1-page printed broadside copy of the letter with manuscript corrections by Katherine Sedgwick Washburn, changing "Washburn" to "Valerio." +1876 March 10. W[illiam] T. Sherman ALS to J[ohn] E. Williams; St. Louis, Missouri8 pagesSorry that he noticed and recorded Stanton's insults and that Belknap has been corrupt. "The very Congress that took away from our poor frontier officers & soldiers the simple privilege of choosing their own traders, and gave it to Belknap for political uses, are now amazed that he used it to make money." Displeased with how the War Department fawns over Stanton, "more obsequiously than black slaves ever did to a master." Notes changes in Ulysses S. Grant. He "is not now the man he was when he breathed the pure air of the Camp, and associated with men who thought & were ready to back their thoughts with action." Courts at Washington are not to be trusted, comparing them to those at Constantinople. Fears Grant will be unable to keep power from passing to the "Old Rebel Element." Disappointed with "the system of bartering & trading offices and Government favors." Notes how if a bank operated on the same principles, it would fail. Has been avoiding returning to Washington. +1876 May 9. Charles W[illiam] Eliot ALS to Cha[rle]s E. Fitch; Cambridge, Mass[achusetts]4 pagesSends his report on a "National University" and a letter on the tax exemption status of churches and educational institutions. Recommends an article in the June 1875 edition of the Atlanticon schools' economy. "We, as a people, have invented such communistic methods in education as providing children with school books and transporting them to school at the public expense. We have also invented the very undemocratic method of educating to a high degree the few at the expense of the many." Believes free tuition is "as inexpedient as it is unjust." Written on Harvard University letterhead. +1876 September 10. Jerome Studer ALS to Ella; Fort Wayne, Indiana4 pagesDescription of Fort Wayne theater, including a piece featuring Major John Andre, possibly as a part of U.S. Centennial celebrations. "...Major Andre's Sun has set and I sincerely hope never to rise again at least while I am stage manager of the Litterary association." Comments on acting the part of General Putnam, costumes, audience reception, and the playing of patriotic music. On a rousing rendition of the Star Spangled Banner: "... the entire audience all that could raise wind enough had Joined in with them -- oh Ella it was Grand -- at last the bell rang up went curtain -- and up went every Actor's heart like a bunch of Feathers." + +1877 March 9. T[homas] A[ndrews] Hendricks ALS to Horatio King; Omaha, Nebraska1 pageOn his way to California for business. Sneers at the Rutherford B. Hayes administration and its "ill-gotten gains," but wishes for their success in "the interests of the Country." +1878 March 1. Geo[rge] Bancroft ALS to President [Charles William] Eliot; Washington, D.C.2 pagesLetter of recommendation to Harvard College for Charles Morris Addison, who is visiting prior to matriculation. +[18]79 January 15. D[aniel] Huntington AL to Judge Hilton; [New York, New York]1 pageLetter written in 3rd person, regretfully turning down an invitation to Judge Hilton's house. Includes printed biography of Huntington. +1879 March 5. C[harles] H. Barstow ALS to E.; Crow Agency, Montana1 pageNewspaper reports about Indian depredations are exaggerated. "There is only one band of Sitting Bulls warriors on Glendive Creek, and Miles sent three companies from Ft Custer last week to meet them. There is no probably [sic.] of their reaching this Post if they were disposed to which they are not. and even if they should we could muster too strong a force for them to ever think of making an attack on the Agency. we have now about 800 crow warriors camped around the stockade. Probably the Sioux on Glendive were only a hunting party." On Office of the United States Indian Agent. Crow Agency, Montana stationery. +[18]79 July 26. Benj[amin] D. Silliman ALS to [Horatio] Seymour; Babylon4 pagesRead Seymour's address "to the prisoners at Auburn." Comments on criminals and penal reform. "When we remember that it is but the accident of birth & training that has made us what we are, that made the criminal classes what they are we may well deal kindly with them, & be charitable in our estimate of their evil." +[ca. 1870s?]. [Hugh Judson Kilpatrick] AMs speech; s.l.7 pagesEloquent, patriotic, and inspirational speech by Hugh Kilpatrick to a group of students, possibly for a military academy commencement. Argues against the role or luck. "...a good name -- an honored position among your fellow men -- places of high honor & trust are the result of work - energy - & brains." Several pages written on Judson Kilpatrick, New York Agent, C.S. Carter, Am'n Literary Bureau stationery. Manuscript note in a different hand, written on the final page, verso: "Presented by Mrs Gen Kilpatrick Rec'd July 1st 1885 Portland Ore. +1881 February 18. O[liver] W[endell] Holmes ALS to Charles G. Leland; Beverly Farms, [Massachusetts]4 pagesHopes that Leland received the manuscript of Post-Prandial all right. Gives his thoughts on the Phi Beta Kappa poem and elocution while reading poems. Notes the disadvantages Leland faced with his recent reading, including audience exhaustion following an event with Wendell Phillips. Mentions Leland's work with "Indian Legends." +1881 May 1. D. Wendell Newhall ALS to Asa Smith; Sterling, [Massachusetts]4 pagesA spiritualist medium writes of his intense experiences 30 years previously. In his old age, wonders how he will be remembered, referencing Swedenborgian beliefs "that spirits love to be remembered by the associates left behind." "...how futile it is to talk, or tell anyone of the phenomena of which we know, and with what a power it fastened itself upon me." Keeps the events they experienced, seemingly a spirit possession, secret to avoid ridicule. +1881 June 22. B[enjami]n Fr[anklin] Reinhart ALS to [Edgar] Saltus; New York, [New York]1 pageThanks Saltus for the poem, "The Answer," which he wrote in Reinhart's Albums, and "cannot fail to be greatly admired by all who can appreciate grandeur of thought..." +1881 August 9. Edw[ar]d A.H. Allen ALS to [Elijah?] Baldwin; Sherborn, [Massachusetts]2 pagesEnclosing a circular of his school [not present]. "Sherborn is a small town, - the population almost wholly agricultural, - with no hotel, saloon, livery stable or factory. It is very quiet, not to say dull, - but in this account the better suited to the wants of a school." +1882 November 10. Th[omas] Nast LS to Cha[rle]s Townsend; Morristown, New Jersey2 pagesNast comments on his career and explains how he came to be a caricaturist. "I think I have always been inclined to caricature more than to serious subjects, but I think it was the wars which gave me my particular vocation." +1883 January 17. Oliver Wendell Holmes ALS to [Charles William] Eliot; [Boston, Massachusetts]3 pagesEloquent statement regarding his retirement from Harvard. "The pain of separation from the scene of my labors and from the companionship which lightened them, is greatly softened by the kind words and wishes which have followed me as I said goodby to them." +1883 March 5. W[illiam] T. Sherman ALS to W[illiam] A. Richardson; Washington, D.C.3 pagesSherman expresses his thanks for Richardson's praise on his recently published memoirs. Notes the range in reactions to it. He reflects on the value of memoirs for the preservation of the historical events of the Civil War. "If Grant, McLellan, mead, Thomas, Sheridan &c had done the same from 1866 to 1870 we should have had in a comparatively small compass all that need be preserved for the future history. Mentions efforts to compile records of the Civil War, "at a rate which will reach 1864 & 5, some time in the next Century." Scoffs at the recording efforts prior to 1863, when the Army "assumed form & spirit." "The next war will come on us, before we have cleared away the rubbish of the past." Written on Headquarters Army of the United States letterhead. +[18]83 May 3. R[obert] G[reen] Ingersoll AQS; s.l.1 pageSigned card, with the quote, "The school house is my cathedral." +1883 May 20. W[illiam] T[ecumseh] Sherman ALS to Mrs. Hall; Washington, D.C.8 pagesLengthy remarks on the poor character of naval cadet, Mr. Lowell. Rachel Sherman took "extreme offence at Mr. Lowell." Notes Lowell's disdain for soldiers and remarks on the distinction between men of words and men of action. Plans to travel across the country by way of the Great Lakes, and by rail across Dakota, Montana, etc. to Puget Sound, then to San Francisco. Friends will be traveling by boat or by way of Shasta [Mountain]. Cannot stay long because the Chief Justice is accompanying him and the next session of the Supreme Court will be starting soon. Gives advice concerning her son's education: "He should complete his education in one of our American colleges of which we have several as good as those at Oxford and Cambridge - I will enumerate Yale, Harvard and Princeton." Partially written on Headquarters Army of the United States stationery. +[18]84 January 24. Susan B. Anthony ALS to Laura Home Carpenter; Riggs House, Washington, D.C.2 pagesEncourages Laura to help recruit financial support for the cause of women's suffrage through the sale of a Convention report. Includes printed envelope: "National Woman Suffrage Association. 1881. 1882." +1884 April 1. J[ames] R[ussell] Lowell ALS to L. Barrett; [London, England]2 pagesResponding to a speech request. "I hate speechmaking, despite all false appearances to the contrary, and shall come in a very ill humour unless you find a substitute." +1884 June 12. Zibast. Potter ALS to Louis P[hilippe] d'Orleans; Washington, D.C.8 pagesDiscusses the presidential election of 1884 and the Democratic, Republican, and "Greenback" candidates. "Since the Union Veterans of the Civil War have united with the Confederate veterans of that war in raising funds for the erection & support of a House at Richmond Virginia for the disabled Confederate Veterans the fires of discord & animosity engendered by the War have been entirely smothered. I am pleased to assure you on the Authority of distinguished representative men of the South, that there is no feeling now existing between the North & South on war questions." Mentions disagreements over tariffs and free trade, d'Orleans work on the history of the Civil War, celebrating "Decoration day," monuments to Garfield, including a hospital in his honor. Notes the system of examination for the hire of government employees. Believes that the Presidential term limit will be extended to six years. Mentions political reform and foreign naturalization. +1884 November 8. "Le" ALS to Maurice M. Feustmann; Leadville, Colorado7 pagesLetter from "Le," to his son, Maurice M. Feustmann, attending high school in Philadelphia. Feustmann's father offers him a great deal of advice pertaining primarily to academic studies, and also to social difficulties. The advice specifically describes methods of studying mathematics, spelling, grammar, penmanship, and dealing with other students. There is a section of the letter dedicated to the prejudice of other students and Professors "against the Jew." Suggests combatting this by making them "ashamed of their unreasoning prejudice." Directs him to avoid "unpleasantness," but if an "insult is directed right at you resent it as best you know how and if it don't suit the other party, why lick somebody, that's all." Suggests Feustmann take up athletics to supplement his academic studies. Written on A. Y. and Minnie Mines stationery. +1885 March 7. W[illiam] T. Sherman ALS to Julia K. Dyer; St. Louis, Missiouri4 pagesDeclines an invitation to attend a "carnival" for Massachusetts Civil War veterans. Emphasizes his retirement and living "with my family as any ordinary citizen." "You in common with the world generally supposes that my best sympathies go out to my comrades of the Great Civil War of 1861-5, whereas there still remain to me comrades of the Florida War, of the Mexican War, and the numerous Indian Wars since 1865...all these are my 'comrades' and each class calls on me to recognize their claims to the charity of the nation. They call for me from Maine to California." +1885 December 23. Edwards Pierrepont ALS to [William Maxwell] Evarts; [New York, New York]4 pagesAdvice to Evarts as a senator relating to the Silver Question (free coinage of silver). Compares gold and silver and government practices relating to both. Notes English practices. Written on stationery with a black mourning border. +1886 January 9. W[illiam] T. Sherman ALS to Geo[rge] Morris Phipps [George Morris Phillips]; St. Louis, Missouri3 pagesInscribed two volumes of his memoirs for Phillips. Comments on the importance of both his and General Grant's memoirs, as more accurate histories than those taken down by correspondents who were not involved directly in the military activities. Correspondents wrote these histories because commanders were busy during the war. +1886 February 27. W[illiam] T. Sherman ALS to May; St. Louis, Missouri4 pagesRecently returned from a trip and has been "used by from hot cars - and handshaking which disabled my right hand so that for a week I could not write." Glad to hear of her impending marriage. Comments on wedding presents. Will send money, "a small sum, but you know I have a family of a hundred thousand soldiers every one of whom has a boy named after me and who expects me to educate & provide for him." +1886 April 21. W.K. Barton ALS to "Father"; Cambridge, Massachusetts16 pagesLengthy letter from a soon to be graduating Harvard student. He writes to his father, who had received a letter regarding Barton's academic work, to assure him that his degree is not in jeopardy. He discusses his grades, exams, and the upcoming graduation, stressing that his father must come to the Class Day. "I had a thousand times rather have you come to my graduation than to my marriage or funeral." The letter includes a brief schedule of events for Graduation Week. Written on Holworthy Hall, Harvard University letterhead. +[ca. 1886]. Webb School Printed Doc.; Bellbuckle, Tennessee4 pagesPromotional information on the Webb School, its course of instruction and results. Includes manuscript corrections of printer's errors. +1887 January 26. M[orrill] Wyman ALS to Rev. S[ ]; Cambridge, [Massachusetts]1 pageHas answered questions of importance. +[18]87 August 6. Benj[amin] Harrison ALS to M. Rosenthal; Indianapolis, Indiana1 pageDeclines to speak to the students in Ann Arbor because of his busy schedule. +1887 October 20. Thomas Hughes ALS to [ ]; Chester, [Cheshire, England]1 pageReturns the sender's card with his signature [not present]. "...as I on the whole rather dislike this autograph business I shall not pay the postage. If you ever get this I hope it may be a warning to you to renounce the 'autograph fiend.' " On mourning stationery. Accompanied by an engraved portrait of Hughes, "The Author of Tome Brown at Oxford," and a portrait clipped from a serial publication +1887 October 29. D[wight] L[yman] Moody TLS to E. H. Bok; Northfield, Massachusetts2 pagesSeeking financial contributions and support. Gives the numbers of students at "Mt. Hermon for young men at Gill and the Young Ladies Seminary at Northfield." "The students represent nineteen different nationalities, and many of them have the hope of returning to their far-off homes to work for their Master." Describes tuition costs and the desire to establish an endowment to assist students. Seeking donations. On Mouth Hermon Boys' School and Northfield Seminary stationery. +1887 November 27. D[aniel] Huntington ALS to Mr. Derby; [New York, New York?]1 pageAsking to be sent a copy of Appleton's Cyclopedia. +1887 November 30. Phillips Brooks ALS to [Thomas Wentworth] Higginson; Boston, [Massachusetts]1 pageRegarding his hymn O Little Town of Bethlehem "There is a simple air to my small Christmas Carol which was made for it by my Chorister in Philadelphia where the verses were written there twenty years ago." On "233 Clarendon Street. Boston" stationery Accompanied by a printed page from a Christmas hymnal, O Little Town of Bethlehem and a printed, engraved portrait of Phillips Brooks +1888 May 26. Frederic H[enry] Hedge ALS to Mr. Sanborn; Cambridge, [Massachusetts]4 pagesMemorial service for Amos Bronson Alcott by the Concord School of Philosophy is appropriate. Reminisces about his acquaintance with Alcott, whom Hedge met frequently at Emerson's house. "...Alcott stands in my recollection for the best representation I have known of the spiritual hero... & if he did not move the earth with his spiritual lever he has impressed himself as a grand & significant figure on his contemporaries." +1888 June 30. O[liver] W[endell] Holmes ALS to [Charles William] Eliot; Beverly Farms, Massachusetts3 pagesImpressed by Eliot's speech for the Phi Beta Kappa Society. "Simple and sensible as Franklin or Lincoln without scholastic airs or theatrical flourishes . . . I could not help thinking of Webster's 'then patriotism is eloquence' - for as a patriotic appeal to the American heart it seems to me better than any poem." On mourning stationery. +1888 August 13. J[ulius] Sterling Morton ALS to C. F. S. Templin; s.l.2 pagesIs unable to accept the invitation to the State Prohibition Convention. "I am a Temperance man. But- as you know- do not think prohibition is right." Comments on governmental control of alcohol sales and interstate commerce. Nature provides for the survival of the fittest, but "Prohibition provides for the continuance of those whom Nature dooms." Considers the responsibility of the individual versus the responsibility of society. "The Home is the unit of the State. When the Homes are all right and all the fathers and mothers of the Republic are doing their full duty to the children there will be no need of Laws and prisons. I place the Home over and above all Law and all police power. Prohibition exalts Laws and Policemen over Home influences and Mothers." +1888 December 24. Cha[rle]s R[iché] Hildeburn ALS to Bishop Hurst [John Fletcher Hurst?]; Philadelphia, [Pennsylvania]2 pagesWill send Hurst the 19 laws of Pennsylvania listed on page two of the letter, at a cost of $10.00 each. "19 Franklin imprints." On The Athenæum of Philadelphia stationery. +1889 March 18. John G[reenleaf] Whittier ALS to [Thomas DeWitt] Talmadge [Talmage]; Amesbury, Massachusetts2 pagesThanks for an "elegant volume wherein good advice which is often most unpotable to those who most need it, is sweetened by beautiful illustrations." +1889 April 1. Henry [Ievers?] ALS to E. G. Scott; Quebec, [Canada]8 pagesRestricting membership to the Montmorency Fish and Game Club and exacting different fees for resident and non-resident members. Restricting membership will be beneficial to fishing. Encloses names of present officers and members, assuring Scott that he can send his proxy to any of them to vote on his behalf. Quotes Scott's angry letter regarding membership dues. Writes of their initial meeting in 1887 with Ossie Richardson and a subsequent fishing trip where they benefited from the improvements made by the club. Comments on potential entrance fees. +1889 June 18. Charles M[ills] Gayley ALS to C. W. Loring; Ann Arbor, Mich[igan]2 pagesWrites on behalf of Dr. Ellicott Evans, who is bedridden and unable to attend the 50th reunion of the Harvard class of 1839 +1890 January 1. Frank W. Woolworth and John R. H. Quevedo TDS; [Elmira, New York?]2 pagesAn employment contract stating that J. R. H. Quevedo will be a manager for F. W. Woolworth & Co. for one year, at $8.00 per week (total $468.00). With: F.W. Woolworth AQS; s.l., 1p. February 15. 1917, "Energy Push and perseverance will accomplish wonderful results." +1890 January 20. Julian Hawthorne ALS to Mr. Tinker; Sag Harbor, New York2 pagesEnjoying Sag Harbor, noting activities to promote health and "finishing a new novel." Advocating for his friend, Edward Kemeys (1843-1907), "the American Barye," a sculptor of wild animals, "the only one now in existence." Notes Kemeys' financial straits and celebrated works. "...he is as brave as a grizzly, and as modest and unassuming as a girl." Carnegie had intended to purchase a sculpture for Central Park but the plan did not go through. Bemoans the rich's lack of appreciation for art. Kemeys' wife is attempting to open a store to support their family. Asks Tinker to see if her can persuade "many men" to buy some of Kemeys' work to decorate their homes. +1890 July 8. William T. Sherman ALS to To[?]; New York [City, New York]4 pagesAttended a meeting of the Society of the Army of the Potomac to "oblige friends and to get away from New York on the 4th of July." Discusses travel plans, including his intention to attend the unveiling of the "Grant Statue in Chicago." Notes his last visit to Washington, D.C., appearing at Palmer's Theatre for the "Actors fund, a Charity for the benefit of poor actors and actresses." Sherman gives his thoughts on monuments which he considers appropriate for himself and for Ulysses S. Grant. Disapproves of extravagant tombs. +1890 November 25. Clifford P[revost] Grayson ALS to George Corliss; New York, [New York]3 pagesGlad there is prospect of Monet's work being shown at Academy of Fine Arts exhibition. Asks if Mr. Johnson might lend an "uncommonly good work by Edelfelt." +[18]91 March 8. Charles L[utwidge] Dodgson ALS to Edith Dodgson; Christ Church, Oxford, [England]7 pagesEloquent and thoughtful advice to his niece regarding her education. Had hoped she would take a "sojourn of 2 or 3 years in Oxford." Emphasizes the role of education in preparing people to perform God's work and advance the good of mankind. +1891 September 10. J. B. Cronkrite ALS to "Chas"; Battle Creek, Michigan2 pagesLetter to the composer of a violin waltz regarding the publication of his music. Cronkrite suggests that Chas. might print the music himself, but that it would likely be better to have him publish the first few of his works in order to get his name circulated. Notes the number of dealers carrying their publications. Written on "J. B. Cronkrite Music Engraver and Printer" letterhead. +1892 April 1. George Kennan TDS to J[ames] B. Pond; [Washington, D.C.]1 pageKennan agrees to deliver 100 lectures between November 14, 1892, and April 15, 1893 Pond will receive the fees collected from the lectures and will pay Kennan $100 per lecture, plus travel expenses and advertising. +[18]93 April 26. D[aniel] Huntington ALS to [Jonathan Scott?] Hartley; [New York, New York]2 pagesRecommends George Innes Jr.'s work and vouches for his worthiness as an associate. Offers to examine "his picture now at the Exhibition." +1893 November 11. W[illia]m F[airfield] Warren TLS to Messrs. Balch Brothers; Boston, [Massachusetts]1 pageLetter by the first president of Boston University Appreciated the copy of "American Landmarks" [Note: by George Cleveland and Robert Campbell, published by Balch Bros. 1893]. "The work is well adapted to increase the fame and the wholesome influence of the precious historic shrines to whose representation its pages and pictures are devoted. Historical places of noble and sacred associations are among the best of teachers in every nation." On Boston University President's Office stationery +1894 October 29. Benj[amin] Harrison ALS to M[urat] Halstead; New York [City, New York]1 pageWill not attend an Oxford Club dinner because he needs Tuesday to prepare for a speech. "You know I am always distrait & nervous when I have a speech before me & generally disgusted when I have one behind me." Written on black bordered, personalized stationery. +1895 February 20. John Bartlett ALS to Mr. Boughton; Cambridge, [Massachusetts]2 pagesA great deal of literary content in this letter from American publisher, John Bartlett. Mentions the publication of "Sparks Life of Washington" and an address included in "Irvings Life." "... As the Bible [referring to "Uncle Sam's" Bible] excludes everything sectional, party, and exparte, I think Harrison's Commentary would be injurious. Why not quote from the "Father's" as a motto for the title page: I am not a Virginian, but an American. Patrick Henry... This would come home to the Southern bosom..." +[18]95 September 12. A.B. Curry ALS to James A. Christie; Boston, [Massachusetts]3 pagesRegarding the combination of the Boston College of Oratory with the School of Expression. Written on embossed School of Expression stationery. Enclosed: 2-page printed circular announcement to the students, graduates, and friends of the Boston College of oratory respecting plans for the new school. + +1895 September 30. Elizabeth ALS to Mary H. Thomas; St. Petersburg, [Russia]10 pagesLetter from Elizabeth to her mother, detailing her journey from Germany to Russia by train. She describes the sorts of difficulties that she had communicating with officials and with other travelers due to her not knowing German or Russian. Some of her anecdotes include nearly missing her train at the Berlin Station, being provided a sleeping car, comparing architectural styles and natural scenery in the different countries, women agricultural workers, and the difficulty of dealing with the Russian customs agents (due to language barrier). See also letter of 1895 December 26. +1895 December 26. Elizabeth ALS to Mary H. Thomas; Nizhny Novgorod, [Russia]4 pagesLetter from Elizabeth to her mother, reflecting on two meetings of the Zemstvo at the Hall of the Nobility. She mentions a woman, apparently active in school reform, called "Miss Shteven." There is a description of a rural home outside of Nizhmi that includes notes on the education of children there, a description of the house and surroundings and religious symbols located around the home. Locals worry of an impending war between England and America. She mentions her further travel plans, including visiting clerical schools. See also letter of 1895 September 30. +1896 August 9. Eben E. Rexford AMsS; Shiocton, Wisconsin1 pageHolograph of first eight lines of first stanza of "Silver Threads Among the Gold" +1896 August 25. Chalon to Casterman; Montreal + +1896 August 25. Chauncey M. Depew Telegram to C[harles] H[enry] Coster; Newport, R[hode] I[sland]1 pageAddressed to Coster, care of J. P. Morgan & Co. "Leave C Vanderbilt in that proxy the same as before. important." On Postal Telegraph Cable Company telegram. [NOTE: Donated by Michael Courlander, 1989] +1897 May 7. Ignatius Donnelly ALS to James Dangerfield, Jr.; Hastings, Minnesota1 pageLetter regarding the authorship of Shakespearean plays and Donnelly's idea of the "Shakespeare-Bacon Cipher." Written on illustrated State of Minnesota House of Representatives letterhead. Features exterior view of the "New State Capitol in Course of Construction." +1898 January 23. Theodore [Herman Albert Dreiser] ALS to S[ara] J. White; New York, [New York]7 pages [total]Sending publications that carry or refer to his works. Believes White's mother would object to his reading Quo Vadis. Mentions other literary pieces White may enjoy. Includes a clipped illustration of a cartoon tiger, noting fervor for the illustrator, [Jimmy] Swinnerton (1875-1974). Discusses health and death. Comments on Paul [Dresser's] new song, "On the Banks of the Wabash," claiming to have written the words. Comments on their personal relationship and the joy White brings. "...we can truly say we have enjoyed love." Hints at his desire for a physical relationship. Written on Salmagundi Club stationery. Includes an AN fragment, March 19, 1898, with portions redacted. Mentions the need to postpone marriage while he tends to Tillie. +1898 April 29. H[enry] C[abot] Lodge TLS to William; Washington, D.C.1 pageSeeking a report of William's speech before the Sons of the American Revolution. Grateful for William's allusions to Lodge's service. Reflects on the Spanish-American War. "War is a very terrible business, and I for one would have done anything to consistent with the honor and dignity of the country to have avoided it, but the horrors of that Cuban war right at our own doors and the determination of Spain to do nothing to remedy the situation have forced this condition of affairs upon us." On U.S. Senate stationery. +[1898-1899]. 4 printed fliers; Brooklyn, New York8 pages (total)Four flyers for Dramatic Readings, put on by the Brooklyn Institute of Arts and Sciences, Department of Philology. Henry Lawrence Southwick: "I, Hamlet, the Man of Will." Leland Powers: "Borrowed Spectacles." Garrett P. Serviss: "Spain and Her Hundred Years of Glory." F. Hopkinson Smith: "The Story of Colonel Carter of Cartersville." Garrett P. Serviss: "Old Holland and the Romance of the French Republic." George Riddle: "King Henry V." Burton Holmes (lectures): "Grecian Journeys" and "Grand Cañon of Arizona." +1899 May 18. Ja[me]s Hendrie Lloyd ALS to Dr. Baldwin; Philadelphia, [Pennsylvania]1 pageAppointments at the Methodist Hospital are made by competitive examination. Candidates must have an A.B. +1899 May 19. Harry B[ache] Smith TLS to Mr. Waller; New York, [New York]1 pageLibrettist Smith comments to composer Waller on a libretto the latter has sent for criticism, "the one Wagner began last spring." Believes it has "not the ghost of a chance," and suggests other librettists for him to work with who are worthy of his musical talent. "...never write music for the book of an inexperienced librettist, for libretto making is not a matter of inspiration. It is a trade." +1899 July 26. Ernest Ingersoll ALS to Mr. Mead; New York, [New York]3 pagesArrangements concerning natural history lectures to be delivered by Ingersoll, who is traveling throughout the east and is especially interested in lecturing at large schools and colleges. Mentions his terms and variety of topics. Written on "Ernest Ingersoll, Lectures on Natural History and Travel" letterhead. +1899 October 11. Geo[rge] F[risbie] Hoar TLS to [George S.] Boutwell; Worcester, Massachusetts2 pagesAgrees that the United States army and navy have no right to be in the Philippine Islands, "unless they be needed there to protect the people against foreign aggression." Comments on the positions of William McKinley and William Jennings Bryan and their political maneuvering. Republican politicians. On Committee of the Judiciary, United States Senate stationery. +1899 November 24. Benj[amin] Harrison TLS to J[ames] H[enry] Smart; Indianapolis, Indiana1 pageHappy to have received a letter from President Smart, "as it gave me an assurance that you were still at the helm." Hopes to give more attention to his position as a Trustee of Purdue University. Believes the article in the Southern Review of Commerce will bring more Southern students to Purdue. +1899 December 5; 1899 December 16-17. [Urias D. Lockman?] ALS to Ella Fulmer; Manaoag, Philippines17 pages (total)C Company, 13th U.S. Infantry. Commencement of general operations, driving Filipinos "from town to town through the muddy rice fields and through the mountains. Uses racial epithets. Bombardment of San Fabian, landing on shore under fire, releasing Spanish prisoners, and unloading supplies. Combat causalities among his own company and the 33rd as they traveled to Santa Tomas and San Jacinto. Food rations, Christmas, receiving newspapers, and mail service. Mentions Emilio Aguinaldo and a general in the mountains. Soldiers act sick to get sent to the hospital. Heavy fighting in the south, with northern Filipino reinforcements. Written on paper taken from a convent school, with one page written on the reverse of a Manaoag city tax receipt for January 1898 written in Spanish. Guarding rice paddies to prevent Aguinaldo's army pressing workers into service. Discusses Filipino's language use. +1901 December 1. Melville D[eLancey] Landon ALS to Mrs. Tilford; New York, [New York]1 pageSending the only copy of a book for her critical review. "I looked them all over and didn't see one that would just suit you. So I have written a book especially for you." Written on Colonial Club letterhead. +1902 April 9. [Edward Miner Gallaudet] ALS to Herbert D[raper] Gallaudet; St. Louis, [Missouri]3 pagesHas been able to keep up with his schedule despite a foot injury, resulting from a poor-fitting new shoe. "I have worked quite hard on my journey, making addresses, attending banquets, visiting schools, meeting committees, etc., and feel a good deal as Prince Henry did when he boarded the Deutschland for his homeward voyage." Must deliver one more lecture before his trip is over. Gives advice regarding Herbert's seminary course. On "Planters Hotel Co." illustrated stationery, with matching envelope. +1902 June 23. Woodrow Wilson TLS to E[lgin] R[alston] L[ovell] Gould; Princeton, N[ew] J[ersey]1 pageResponding to Gould's note of congratulation, for Wilson's appointment as president of Princeton. "One of the most delightful things which I look forward to in the difficult tasks that are ahead of me, is that of the number of warm friends I have, from whom I can get not only the sort of counsel I need, but also the sort of cheer and strength of heart." +1902 August 6. Thomas Dixon, Jr. ALS to Mrs. Hudson; Dixondale, Gloucester Co., Virginia2 pagesIs gathering material for two volumes to follow the Leopard's Spots, "one a romance of the Ku Klux Klan, and a sequel to the Leopard's Spots." Would like to know inside information about Jefferson Davis and references to "the best printed matter." Sending a copy of his book along with an autographed book plate. +[19]03 January 19. S[amuel] L[anghorne] Clemens ALS to Mrs. Osborn; Riverdale on the Hudson, [New York]2 pagesEloquent thanks for roses given by Mrs. Osborn. Hopes that once Mrs. Clemens is well, Professor Osborn and herself will come visit. On "Riverdale on the Hudson" stationery. +1903 January 28. Henry Van Dyke ALS to [James A.?] Tufts; Princeton, New Jersey1 pageHas agreed to edit "The Gateway Series" for the American Book Company, "a new series of the English texts required for entrance to college." Hopes that Tufts will edit Macaulay's essay on Addison. Notes publishing details and compensation. On Department of English, Princeton University stationery. +1903 July 23. Grover Cleveland ALS to Worthington C. Ford; Buzzard Bay, Mass[achusetts]2 pagesCannot comply with Ford's request. Did not save any of his Presidential messages. "During my second administration I was in the habit of writing them in pencil and destroying the sheets as fast as they came from the copyist." L. Clarke Davis of the Philadelphia Ledger surprised him by showing him the original draft of Cleveland's Inaugural Address. +1903 October 8. Daniel Chester French ALS to S[amuel] H[arden] Church; Glendale, Massachusetts2 pagesFrench expresses his gratitude for the invitation to speak at the Carnegie Institute for Founder's Day, but is unable to comply. "Whatever my vocation in life may be, however, it is certainly not speaking, and any word I may have to say upon art to my fellow mortals must be said, however imperfectly, through the work of my hands." On Daniel French's personal stationery. +1905 April 6. W[illia]m H[oward] Taft TLS to Harry W. Goddard; Washington, [D.C.]2 pagesEnjoyed his trip to Worchester, Massachusetts. Appreciates Goddard's hospitality, "as well as by the members of the Board of Trade at Worcester who attended the magnificent banquet which you held in Mechanics Hall." "I thank you for the copy of the paper which you sent me, which gave on the whole a very good report of the speech, and of which I have no reason to complain in view of my laziness in not preparing a formal address." On War Department, Washington stationery. +1905 May 22. Winslow Homer ALS to Laura N[orcross ] Marrs; [Scarboro, Maine]4 pagesTo Mrs. Kingsmill Marrs, at the Albemarle Hotel. Marrs has chosen "a proper season to arrive here- for a rest, - & a beautiful Summer home. "Weather recently turned. Has kept interested in work, "quite outside of my trade- which I think very little of- as its made up of all honor & no profit." "I am well & happy with lots of money (how I got it is my own business)." +1906 December 11. Grover Cleveland ALS to L. Clark Davis; Princeton, [New Jersey]2 pagesRemarks concerning an address: "I think a little over 5000 words; and these words will be about as common place, if not as absolutely poor, as- as- are generally offered up on such an occasion." Glad the "foolish project" of copyrighting the address was abandoned. Acknowledges this leaves it "undefended" against newspaper reprintings, "except as it will be protected by its own badness." Unable to accept a dinner invitation from the President of the New England Society. +[19]07 February 25. [Robert E.] Peary Cy to Henry L. Smith; "On the Train"1 pageAsks Smith to inform Mr. Latham of the location of the church and the time of the lecture. Smith owes Peary $115. "My talk takes from sixty to seventy minutes. I shall be with you at 8.45 sharp." Retained copy of a signed note. +1907 July 17. Woodrow Wilson TLS to Professor E. P. Adams; St. Hubert's Essex County, New York1 pageConcerning Adams' decision to leave Princeton for Colorado. "I of course do not wish to persuade you against your own advantage, but I cannot help thinking that the possibilities of Princeton ought to be enough to hold a man whom we value as much as we do you." On Princeton University President's Room stationery +1907 December 1. [Booker T. Washington] AMs; New Bedford, [Massachusetts]3 pagesRough manuscript outline for a speech on the progress of African Americans, and some of the problems facing both the north and the south. Written on the back of "Parker House, New Bedford" stationery. Includes a clipped printed portrait of Washington, "President of the Normal and Industrial Institute of Tuskegee, Alabama, A school That is doing Valuable Work Among the Southern Negroes." +1908 December 7. Woodrow Wilson TLS to Harry C. Black; Princeton, New Jersey2 pagesDeclines to speak at the banquet of the Quadrangle Club on the Friday before Commencement. Receives many invitations for club banquets and wants to avoid risking too many responsibilities for that day. "I know that you and the gentlemen associated with you in the club will appreciate how embarrasing the question is to me, and I know that you will not think that it is through any disinclination to risk the permanent addition of another Commencement duty." On Princeton University President's Room stationery. +1910 June 10. Clarence L[ouis] Cullen TLS to [Fred Charters] Kelly; Atlantic City, New Jersey1 pageComplements Kelly's writing on O. Henry, William Sydney Porter, and criticizes the "prodigious mass of drivel" written on him since his death. Dissatisfied with New York newspapers' accounts of O. Henry using "hearsay," but notes it being "more or less unavoidable, considering what a virtual recluse Porter was." Comments on his relationship with O. Henry and their activities in New York. Describes O. Henry. Will likely write about him. On reverse, in pen, "for John S. Mayfield from Fred C. Kelly, Apr. 12, 1959." +1910 September 21 [delivered]. [William Howard Taft] 2 typed speeches; Cincinnati, Ohio23 pages (total)1. Typed speech, with manuscript corrections, delivered at the Opening of the Ohio River Dam at Cincinnati, 2pp. Marked "File." 2. Typed speech, with manuscript corrections, delivered at the Opening of the Ohio River Dam at Cincinnati, 21pp. Marked "2d draft." Comments on waterway conventions, Congressional politics concerning waterway improvements, and regulating transportation. Discusses Cincinnati, commerce, transportation, improving trade along the Ohio River, and financial and political hurdles for doing so. +[printed in 1910]. Carte-de-visite; [Washington, D.C.]1 pagePortrait of Abraham Lincoln, seated. From a negative purchased by collector Frederick Hill Meserve (1865-1962). On reverse, handwritten note reads, "A photograph by Alexander Gardner- Wash. Apr. 9, 1865." +1911 May 24. John Wanamaker ALS to [Thomas B. Crosby]; Bad Ems, Germany2 pagesNotes on books about Abraham Lincoln, including "the volumes of Lincolns life letters & speeches." Convinced a circulating library in Biarritz, France, to give him one of their Lincoln books. Promises to send books on Lincoln "not much circulated in England" to Crosby, Lord Mayor of London. Comments on the Mayor preparing to give a speech and the success of the recent Guildhall meeting. Cannot make the coronation, especially since he would not have a seat in the Abbey. Written on Englischer Hof (Hôtel D'Angleterre) Und Park Villa stationery. +1912 May 14. Richard C[ockburn] Maclaurin partial TLS to E[dwin] T. Cole; [Cambridge, Massachusetts]1 pagePage two of a letter to Professor Cole, expressing appreciation for his work. Written as President of MIT. +[19]12 August 18. Henry M. Robert ALS to Reverend Peter Robertson; Chautauqua, New York2 pagesLetter in response to Robertson's suggestion that a board be appointed to investigate the causes of the failure of one of the Ohio River dams and recommending Mr. Hill be a member. An Army officer appealing to the Chief of Engineers or Secretary of War would be inappropriate and "against military etiquette." Robert also mentions the details of re-writing his "Rules of Order." +1912 August 31. Real Photo Postcard; Barre, Vermont1 pageReal photo postcard of Theodore Roosevelt as Progressive Party candidate for the President of the United States. Verso: "Roosevelt spoke in front of the Church street school house. this is only a little of the crowd. A splendid speech. The man with his arm over the railing is our lawyer. we are still in war." +1913 February 5. Charles H. Haskins TLS to Albert Bushnell Hart; Cambridge, Massachusetts1 pageRespecting the admission of Tyson into the graduate school. Awaiting his certificates from Oskaloosa College, Iowa, as the school is unknown to them. Is looking into Miss Hazard's case concerning being awarded a Ph.D. without a full year's residence. On Harvard University, The Graduate School of Arts and Sciences stationery. +1914 April 14. Richard C[ockburn] Maclaurin TLS to Edwin T. Cole; [Cambridge, Massachusetts]1 pageCole's budget recommendations were approved by the Executive Committee. Explains provisions for an assistant, renting an armory and target range, and pay for cadet officers and incidental expenses. On official MIT "Office of the President" stationery. +1914 October 3. W[illia]m H[oward] Taft TLS to Miss L. P. Loring; New Haven, Connecticut2 pagesTyped letter with manuscript revisions. Would like to speak at Symphony Hall, but Loring's proposed dates are not convenient. Describes his speaking schedule for November and accepting payment for his time. "I do a great deal of free work, but the truth is that with three children, one beginning the profession of law and two in College, and the small salary of a Professor, and only a limited income in addition, I find it necessary, in order to avoid the charge worse that that of infidelity, to accept such a generous tender as that you make, in case we agree upon a date." On Taft's personal stationery +1914 December 22. W[illia]m H[oward] Taft TLS to William E[leazar] Barton; New Haven, Connecticut1 pageExpresses his appreciation for Barton's accurate account of his speech at the Congregational Club. "There is nothing quite so exasperating as the slovenly, sloppy, inaccurate short accounts given in daily newspapers of ones impromptu speeches." On Taft's personal stationery. +1915 February 4. "Daddy" ALS to Kip; Belleair Heights, Florida4 pagesHas been playing a lot of golf. Sending a picture [not present] of wrecked cars that "tried to beat the train to the road crossing near the golf course." His caddy was involved, noting disapprovingly that "He will not work waiting to have the case settled and get damages from the Rail Road Co." Sending a picture of himself, a check to help replenish the recipient's funds, and a poetry verse, "the golfers lament," that he believes can be turned into song [not present]. Hotel and golf courses are crowded. Written on illustrated Belleview stationery, featuring an image of the hotel's exterior, its grounds, and a court with a fence. + +1915 May 27. Richard C[ockburn] Maclaurin TLS to Edwin T. Cole; [Cambridge, Massachusetts]1 pageHopes that Major Cole may be detailed for further service at MIT. Maclaurin has written to the Adjutant General respecting the matter. On official MIT "Office of the President" stationery. +1915 June 29. H[enry] C[abot] Lodge TLS to Charles G. Washburn; Nahant, Massachusetts3 pagesA great deal of political content, primarily concerning party politics. There are brief comments on women's suffrage, national prohibition, and "social welfare legislation;" however, the bulk of the letter stresses the importance of getting Wilson out of office. "National prohibition and woman suffrage are not party questions and divide the progressives as they do the Republicans." References Theodore [Roosevelt] and [John W.?] Weeks. Written on U.S. Senate, Committee on Private Land Claims stationery. +1916 May 11. John D[avison] Rockefeller, Jr. TLS to Albert J. Weil; New York [City, New York]1 pageEncourages Weil to establish himself in a single church during his New York visits. "Otherwise one is so apt to drift from church, or attend none, and thereby lose the opportunities for Christian service and the helpful and restraining influence which affiliation with some one church affords." +1916 May 27. J[ames] W. Wadsworth, Jr. TLS to Reverend Paul R. Hickock; Washington, D.C.2 pagesWadsworth reflects on fraternity life at Yale, and its distinctions from fraternities at other colleges. Acknowledges the great value that fraternities have with young men and for America. Includes manuscript revisions. Written on U.S. Senate letterhead. +1916 June 29. Charles W. Eliot TLS to Perriton Maxwell; Cambridge, Massachusetts1 pageComments on American men serving in the armed forces, noting that the "immense majority" of American mothers are in no need of a message on "the subject of giving their sons to the Country." "...it is the duty of every American, in time of war, to forego the privileges, which as a free man he exercises in time of peace, and to surrender to the State his right 'to life, liberty, and the pursuit of happiness'. " Believes American preparation would benefit from copying "the legislation of the ancient Swiss Republic." +1916 July 12. And[rew] D[ickson] White TLS to Reverend Paul R. Hickock; Ithaca, New York5 pagesTyped letter with manuscript revisions. White reflects on fraternities at Cornell University. He acknowledges the "evils" of fraternities, but emphasizes their potential for positive effects and recent improvements. A fellow fraternity member, Theodore Munger, "always came out with hearty expressions of joy that he had lived to see so much of the old follies, fooleries, and boyish pranks done away with." Considering organizing the Cornell student body "into clubs on the general plan of the fraternities." +1916 July 19. John Malone ALS to Margaret; McAllen, Texas2 pagesLetter from Malone, of the 12th U.S. National Guard, Company F. Describes trying environmental conditions and how soldiers killed four Mexicans "for cutting up one of our boys." Notes how they left the bodies to serve as an "example of the rest." Uses racial slurs. Has given up beer. Written on W.C.T.U. and Methodist Church Soldiers' Reading Room stationery. See also John Malone ALS to Margaret; 1917 February 15. +1916 September 28. Richard C[ockburn] Maclaurin TLS to W[illiam] B. Munro; [Cambridge, Massachusetts]1 pageCongratulations on the success of Munro's cooperative branch store. Pleased to hear of "the good service that Major Cole has rendered." On official MIT "Office of the President" stationery. Sent to Professor W. B. Munro, Harvard Cooperative Society. +1916 October 7. Charles W. Eliot TLS to W. R. Castle, Jr.; Cambridge, Massachusetts1 pageWill sign copies of his book, The Road towards Peace. Comments on recent labor legislation. "[B]oth parties truckle to the labor organizations incessantly." Notes the strength of the "Canadian law for the investigation of industrial disputes" in preventing strikes. Most Americans sympathize with strikers, because they feel strikes will raise wages. Recent events may alter this opinion, as "they are beginning to suffer from the increased cost of transportation, food, clothing, and houses,-- an increased cost which is caused chiefly by higher wages." +1916 October 30. Charles W. Eliot TLS to Perriton Maxwell; Cambridge, Massachusetts3 pages [total]"I enclose a brief statement about the teachings of the great War in respect to Christianity." Includes a signed, two-page piece about the teachings of Jesus and how organized religion corrupted them. Calls for a return Christianity's "simple essentials," abandoning "rites, dogmas, and creeds" which failed to restrain man's baser instincts. Hopes for greater respect for the heroism "of the doctor, nurse, fireman, policeman, rescuer, and lonely struggler against want, sickness, and temptation," rather than just reverence for soldiers. +101917 February 15. John Malone ALS to Margaret; McAllen, Texas2 pagesLetter from Malone, of the 12th U.S. National Guard, Company F. Hopes that his last letter did not hurt her feelings. Racial hatred. "Well Margaret we had a narrow escape the other night a few greaser's started something and we finished it we just shot his place so full of holes that it looked like a rifle range we were going to see how close we could come to his eyebrows with our six shooter's only the officer's had to but in he's lucky he's liven we just love to shoot these greaser's down here for pastime or to amuse our self's." Written on "The Army and Navy Young Men's Christian Association" stationery. See also John Malone ALS to Margaret; 1916 July 19. +1917 March 15. Joseph B. Tordoff ALS to "Friend"; Camp Kearny, California5 pagesHeadquarters Company, 143rd Field Artillery. Serving as the "radio man of the second Battalion," describes the equipment he uses and having to know how to fix telephones in the trenches. Notes weather at camp and troubles with mud. Comments on the price of provisions in San Diego. Describes a recent review, which included his regiment, the Utah Field Artillery, and the "144th (Grizzles?) crack regiment." The 144th has to borrow guns, horses, and signal kits. Written on illustrated YMCA stationery, "National War Work Council Army and Navy," with images of the YMCA logo and American flag. +1917 September 10. Charlie ALS to Myrtle; France8 pagesApologizes for length between letters; mentions censors. Comments on British Expeditionary Forces, the locations where they are serving, the food issued to them, and cooking in the trenches. Brief mention of the Battle of the Somme and his rations during it. Describes trench warfare, "when the opposing sides sit down & face one another ‘to gain time' shelling, bombing & shooting one another more or less frequently." Notes lulls in the fighting; time spent at camps and in French villages. Comments on clothing and mud in the trenches, and soldiers' willingness to risk leaving the trenches to dry their feet. "Even in the Battle of Arras in late spring, I have seen men literally stuck fast in the mud." Describes fighting in the beginning of the war, with reliance on field guns, and the shift to trench warfare. Strategies of fighting evolved due to trenches and attempts to force combatants "to get a move on," as in the battle of Neuve Chapelle. Notes the advantages of defense rather than offense, with "Barbed wire entanglements scores of feet thick, the fire of machine guns as numerous as daisies in a June..." Mentions the use of "gas & liquid fire," his serving for 27 months, and receiving the Meritorious Service Medal. +[1918] January 5. Edwin ALS to Folks; Camp McClellan, Anniston, Alabama2 pagesComments on a recent snowstorm and the heaters in the camp. Describes being quarantined and coming down with measles. "Send a cake down because we only get what sick people get." Written on Y.M.C.A. "With the Colors" letterhead, with images of Y.M.C.A. logo and American flag. See also: Edwin ALS to his uncle; September 3, 1918. +1918 February 15. Franklin D[elano] Roosevelt TLS to J. C. Heddle; Washington D.C.1 pageThanks Heddle for answering the Navy's call for binoculars. "The glasses will be very useful in the prosecution of Naval Operations until victory is won." Will return the binoculars at the end of the war if possible. Written on Navy Department, Assistant Secretary's Office letterhead. Accompanied by: 1. Check for $1.00 from the Navy Disbursing Office to J. C. Heddle 2. Typed letter (copy) explaining the purpose of the check. "Navy's Call for Binoculars, Spy-Glasses, Telescopes, Sextants and Chronometers." +1918 March 22. [Barbé?] TLS to Mac; Lonoke, Arkansas1 pageComments on Mac's transfer to the Cavalry. "I suppose politics plays a great big part in the Intelligence Dept., more so than in other branches of t[h]e service." Notes other men in the service, poking fun at one's interest in life insurance. Describes a married couple living in his house, "He is a Phi Kap from Columbia and is a flier." Mentions flying commencing in Lonoke soon and the arrival of cadets. Comments on another Phi Kap who married an actress "and she sure startles the natives here with her rags." "Everybody back here thinks the war is going to last for at least a couple of years longer.... I think myself it will go a year or two, but am hoping it will end before then. I would like to get out to-morrow if I could." +1918 May 6. Neilson Poe ALS to Jane Righter; France4 pagesPoe, of the 28th Infantry, AEF. Poe's close friend Pardee is engaged to a woman that he once courted and feels betrayed. Currently in rest billets. Future orders unknown. Frequent practice alerts make it impossible to tell whether alarms are fake or real "you don't know... whether you are coming back after a short hike or are really going up to one of the advance positions. You have to pack all your belongings & you have a very few minutes to do it in." Recently participated in artillery and infantry assault on the front lines. Aerial dogfights. +[1918] May 31. Malbone ALS to Gladys; Paris, [France]2 pagesMalbone, a Red Cross worker, writes from the Gare du Nord the day after the Germans took Soissons. Vivid description of the influx of refugees from the Aisne valley. Eloquent and thoughtful reflection on the refugees, war, democracy, liberty, and equality. Discusses strong women from the country, children, war and the French people, and feeding the thousands of refugees. Remarks on the French and American spirit and the ties that bind them. Distinguishes between a militaristic German government and the mass of German people. On American Red Cross (Croix-Rouge Américaine) stationery. +1918 July 8. Tho[ma]s F. Campbell ALS to I. F. Campbell; [France]4 pagesSgt. Thomas F. Campbell, Co. B, 306th Infantry, 77th Division. Writes from a hospital. "if luck wasn't with me, we would be prisoners of the 'hun' and that is pretty bad..." He and four other men injured in a ten-minute fight. Hand grenade shrapnel removed from his feet (12-14 pieces). American nurses are patient and pretty. +1918 July 14. "Cecil" ALS to "Grandma"; Camp Macarthur, Texas4 pages123rd Ordnance Depot. Promoted to corporal after eight days; currently serves as the "private secretary to the commanding officer," and expects to be promoted to an ordnance sergeant. Notes pay and his desire to be stationed in California. Friends and family sending him fruits and other food. Comments on food in the camp and his awareness that the variety will change once he goes overseas. See also, "Cecil" ALS to "Grandma," November 20, 1918. +1918 August 12. H. A. Dickson ALS to Geo[rge] W[ylie] P[aul] Hunt; s.l.1 pageCompany A, 314th Engineers, American Expeditionary Forces. Written on a postcard with a printed American Eagle atop a shield, with the stars and stripes. "Well Governor, things are happening near and about here." Mentions the "great drive" and hopes that fighting will cease before winter. Looking forward to receiving letters to lessen his lonesomeness. Includes censor stamp. +1918 August 14. W[illiam] H. Cowles ALS to Colonel C. W. Cowles; s.l.4 pagesH. is getting along very well; his nurse moved nearby. Gives news from the front lines. "I am glad I came over altho' at times it is dull, dirty, and dangerous and I would not miss it for a fortune." Allied plane shot down a German bomber. "Blew up hitting the ground but from the looks of it, it was a monster." +1918 August 15. A. L. Kemp ALS to R. B. Eastman; Aix-les-Bains, France1 pagePicture postcard with image of Hôtel Bernascon, Aix-les-Bains. Spending his seven days of leave at Aix-les-Bains, "a wonderful summer Resort." Includes censor stamp. +1918 August 24. H. L. Rogers Typed circular; s.l.5 pages"American Expeditionary Forces Headquarters Services of Supply Office of the Chief Quartermaster, A.E.F." H. L. Rogers, Major General, U.S. Army Chief Quartermaster. Publishing information received by the supply office about which items can be distributed, which have been discontinued or will not be issued, and particulars about various items in use. Notes on rolling kitchens and cooking equipment, marmites and milk cans, dishes. Details on bunks, gear, furniture, tools, flags and standards. Specifics on repairing office machinery. Rules about coffins and grave markers. +1918 August 31. "Curly" ALS to "Moore"; s.l.3 pagesCompany K, 2nd Pioneer Infantry, American Expeditionary Force. Comments on the cigarettes Moore sent and mishaps with mail. Was quickly sent overseas after arriving at camp. "I imagine the Army life is quite different from the days when you were in a uniform. Over here it is like one big family." Comments on Commissioned Officers fraternizing with other soldiers. Inquires after events at the Texaco station and whether anyone else has been drafted yet. See also, "Curly" TLS to "Moore," November 17, 1918. +[19]18 September 3. Edwin ALS to Uncle Simon; Camp Wadsworth, Spartanburg, South Carolina4 pagesMedical Replacement Unit #25. Compliments his uncle on the supportive letter he sent. "The knowledge that those at home are behind us, striving for the end of this catastrophe makes for the one thing we all need and that is gritty nerve & stamina." Comments on his turning to religion in the Army. Notes adjusting to army food, receiving inoculations and vaccines. "As the Medical Corp is consider the paramount branch of the service and its non-commissioned officers ranking higher than those in any other branch of Uncle Sam's army I am intending to make a hard upward fight for position." Written on Y.M.C.A. "With the Colors" letterhead, with images of Y.M.C.A. logo and American flag. See also: Edwin ALS to his Folks; January 5, [1918]. +[19]18 September 13. AL to Mother; Camp Mills, Long Island, New York1 page"I am over at the Y.M.C.A. but I'm not supposed to be, I sneaked out as I had nothing to do." Comments on his clothing, noting of his hobnail shoes, "I can't hardly carry them, they are so heavy." Written on Y.M.C.A. "With the Colors" letterhead, with images of Y.M.C.A. logo and American flag. +1918 October 10. Wenzel [Kryzanosky] ALS to Irma Kryzanosky; s.l.3 pagesLieutenant, Motor Supply Train 415, Motor Truck Company 455, American Expeditionary Forces. Disappointed in the mail for not delivering her letters. "What are the news and how is the war, what about peace?" Making progress in his sector, "takeing prisoners every day." Hopes the war ends soon, so they can be reunited. Wishes they had stayed in Puerto Rico. Envelope includes censor stamp, "officers mail." +1918 October 12. "Kenneth" ALS to Mr. Gibbs; [near Bordeaux, France]5 pagesNotes restrictions placed on his communications (on account of censors). Was stationed near Bordeaux, France, living in a "large chateau." Describes the country around Bordeaux, his attempts to learn French, and speaking with locals. Was selected to attend school and has been working with rifles and grenades. Believes he will be restless when he returns home, on account of moving about so frequently. A long line of soldiers waited at the Quartermaster store because they had chocolate in stock. Enclosing the chocolate wrapper and seal [not included]. Mentions the "sugar question" and wonders how they are handling it back home. Cannot provide more details on the events at the front than can be otherwise obtained. "The President handled the Kaiser in his usual crafty way and we are anxiously awaiting the answer. Of course we all know what the final answer will be...." Written on Y.M.C.A. "On Active Service" stationery. +1918 November 6. Paul ALS to Mother; [London, England]12 pagesDescribes his travel to Liverpool on board the S.S. Megantic, White Star Line, including other passengers and evasive maneuvers. Travelled to London by train. Describes London and darkening the city at night. Notes air raid shelters, food rations, and beliefs that the war is almost over. Ordered to Queenstown, Ireland. Written on American Officers' Club stationery. See also Paul ALS to Mother, November 12, 1918; November 23, 1918. +[19]18 November 12. Paul ALS to Mother; Queenstown, Ireland12 pagesSigning of the armistice has altered his plans and made future movements uncertain. "Of course all flying (except joy hops) has been suspended." Describes his travels from London to Queenstown. American naval men forbidden to visit Cork, "on account of dangerous complications with the Sinn Feiners." Describes the Irish countryside and his station. See also Paul ALS to Mother, November 6, 1918; November 23, 1918. +1918 November 13. "Tad" ALS to "Peggy"; s.l.8 pagesBattery B, 56th Artillery Regiment, Coast Artillery Corps, American Expeditionary Forces. Comments on the end of the war. "I just guess the huns know who is boss now... When I first heard it—well I cannot explain just how I did feel." A portion of the letter was cut out by a censor. Describes barrages, including by an African American artillery outfit. Notes military police with German prisoners of war. Describes the shelling of a village and the American movement up the main road. Germans with stretchers helped the Red Cross without guards. "... ever since early morning details of germans have been carrying in our wounded just as if they had always been with us and they sure have saved some lads." Appreciates receiving letters from home. Written on Y.M.C.A. stationery. +1918 November 16. Joseph C. Holbrook ALS to Effie Granade; France8 pagesBattery Co. 11. Signed "JC," with purple stamped signature "Joseph C. Holbrook 1st. Lieut. Q. M. C., U. S. A. Detailed description of the armistice celebration in "a large city" in France on November 11. Cheers, songs, music by an African American U.S. band, also a white U.S. band," including the Star Spangled Banner, Limey Stable Blues, etc. Streetlights lit for the first time in four years. Children shouting "La Guerre est fini; mon père sera à sa maison beintôt," women dressed in mourning: "To me, that is the most pathetic sight I've ever witnessed. They looked on with an expression of mixed joy and sorrow." French and American soldiers danced. City covered with allied flags: "To be in a foreign land, war-torn, bleeding but triumphant, and to see 'The Stars and Bars' waving in majesty and triumph from every door is Heaven on earth and makes a fellow happy that he is an American and willing to be a Champion of right." Nurses will be giving a "Victory Dance" to the officers. +1918 November 17. "Curly" TLS to "Moore"; s.l.1 pageCorporal Alfred Vos, Headquarters Detachment, Army Service Corps, American Expeditionary Forces. Disappointed that Moore is the only one "of the Texaco bunch" that has written. "I guess the rest of them are so busy making money on their jobs for the government that they haven't time to write a guy that is over here on this side of the water." Brief mention of celebration on account the signing of the armistice. Has been transferred to Army Headquarters. See also, "Curly" ALS to "Moore," August 31, 1918. +1918 Novembr 20. "Cecil" TLS to "Grandma"; [Camp Macarthur, Texas]2 pagesRemarks on the end of the war and his uncertainty about when he will be sent home. Sent pictures of himself to family members. Family news, including the poisoning of a pet. Notes rains and flooding of local rivers. Written on Y.M.C.A. stationery. See also, "Cecil" ALS to "Grandma," July 14, 1918. +1918 November 23. Paul ALS to Mother; Wexford, Ireland6 pagesDescribes Wexford, quarters, and the life of a soldier after the war. Notes playing sports and recreational flying. Uncertain what orders he will receive. Comments on local residents and the Sinn Fieners. "The war dropped out from under my feet in a way. All my plans have been built on it for so long that I was bewildered with the rapid change. It is hard for me to realize that it is really over and that the world is at peace." On U.S. Naval Forces Operating in European Waters. U.S. Naval Aviation Forces, Foreign Service. U.S. Naval Air Station. Wexford, Ireland stationery. See also Paul ALS to Mother, November 6, 1918; November 12, 1918. +1918 December 6. Virginia Flanagan ALS to Margaret Power; [France]4 pagesAmerican Red Cross, Military Hospital Number 1, American Expeditionary Forces. Sends condolences to Margaret upon the death of her mother. Comments on the loss of her own mother recently after arriving in France. "While I have enjoyed my stay here I will be glad to get home to the dear Old U.S.A." "Nurses mail" cancellation, along with censor stamp. +1918 December 21. Geo[rge] J. Bucher ALS to Harriet [Hudson]; Kelberg, Germany4 pagesHeadquarters Company, 16th Field Artillery, American Expeditionary Forces. Describes the occupation troops' march into Germany, the weather, countryside. Rode four days in the Radio Detail's truck, noting how they set up a station at every stop. Grateful for the pictures and possible Christmas gift, if the mail service can accommodate all the packages being sent. Thompson Yards Inc. sent a draft for eighty-one francs to all of their "former employees who are in service overseas." Notes the tires stripped from German cars to be used for "war material." Envelope includes censor stamp. +1919 January 1. Wag D. K. Irving ALS to "Sir"; Rupt-en-Woëvre, France3 pages302nd Field Artillery, Bat. C, American Expeditionary Forces. Disappointed at having not received more letters or a Christmas package from home. "... I don't mind as I am used to disappointments hoping this life will end this year for me any way & the rest of the 302." Did not get vacation, but has visited Verdun, Nancy, and Toul, France, "& quite a number of the citys that has been shook up." Had to give their traders guns and caissons to another outfit. Attending motorcycle school at Rupt, after already taking classes on trucks and tractors. Frustrated with his studies, preferring aviation, but may study flying when he returns home. "I was hauling number three Gun that sent the first shot at the Hun from the 302 I would like to be the first to step on the USA soil when we all come Marching home." Written on Knights of Columbus illustrated stationery, includes image of Knights of Columbus emblem and American Flag. +1919 January 1. Helen Schosert ALS to "Violet"; s.l.4 pagesSends Christmas and New Year greetings. Comments on the Spanish flu pandemic. "...hope the Flue situation has cleared up by this time and that the schools and churches are again open." Working the night shift as a nurse, describing her patients, the size of her ward, and the doctors. "I find nursing in a military hospital quite different from a civilian hospital. I always like the Wenotchee [Wenatchee] Deaconess Hospital because it had to me an atmosphere of home about it while here there is an atmosphere of discipline order and milit[arism] that you can't get away from." Written on illustrated YMCA letterhead, with YMCA logo and American flag. +1919 March 19. Phil Shea ALS to Julia Shea; [Fréjus, France]1 pageMusician, 52nd Pioneer Infantry Band, American Expeditionary Forces. Postcard, "Fréjus (Var)—Ancien Aqueduc Romain." Image of Roman aqueducts, which Phil visited the day before writing the postcard. Includes censor's stamp. See also Phil Shea ALS to Julia Shea, Undated. +1919 April 12. Charles A. Staebler ALS to Winifred Lyle Enos; Magny-Lambert, [France]5 pages11th Field Artillery, American Expeditionary Forces. Hoping she is less angry, as it is "not the best for beauty or health to remain angry over 12 hours at any one time." Has been busy preparing for General John Pershing (1860-1948) and "the trip into Germany." Explains the discrepancies in the Review, noting "we are as a step child in the 6th Div." on account of its seeing less action than the 11th Field Artillery. Anger over the uneven distribution of Distinguished Service Crosses. Comments on General Pershing's inspection of the troops. "He seemed to be a real fatherly old gentleman—I liked my conversation with him very much—I was expecting him to be a real H—cat like some of the inspectors that we get." Dispute over sending mentholatum. Written on American Y.M.C.A. and American Red Cross stationery. Envelope includes censor's stamp. See also, Charles A. Staebler ALS to Winifred Lyle Enos, April 21-22, 1919. +1919 April 21-22. Charles A. Staebler ALS to Winifred L[yle] Enos; Magny-Lambert, France5 pages11th Field Artillery, C Battery, American Expeditionary Forces. Sad to be leaving his battery for a position at Division Headquarters. His men got into a fight after a soldier from another battery insulted him. Comments on the ruckus related to Staebler being kept at 6th Division Headquarters. Expects to head into Germany soon. "I don't want to go—but I know my new job is a regular gold brick job—so in several days I will be having a great time and forget all about ‘C' Battery." Written on American Red Cross stationery, with the Y.M.C.A. envelope stamped by censor. See also, Charles A. Staebler ALS to Winifred Lyle Enos, April 12, 1919. +1919 October 14. Cheesman A. Herrick TLS to Atlantic Monthly; Philadelphia, [Pennsylvania]1 pageSubmitting his paper on "Ireland: England's Dilemma." On Girard College, President's Office stationery. +[ca. 1920] June 4. George Foster Peabody TLS to Don C[arlos] S[e]itz; Saratoga Springs, New York2 pagesDisapproves of recent efforts to "quash the indictment against the American Woolen Company." Mr. Hughes' "highly technical plea" seems to justify widespread prejudice against lawyers. Comments on speculative investment made by J. P. Morgan & Co. +1921 April 1 . Josef Hofmann TLS to Mr. Tremblay; Aiken, S[outh] C[arolina]1 pageNotes the effect of the color of a piano on the perception of its tone "While it is not true that the color of a piano actually affects it tone, nevertheless one fact must be borne in mind: that what attracts the eye, distracts the ear. It is therefore possible that a black case will appear to have a better tone than a mahogany case." Advice on Tremblay's performance program, including the removal of one of Liszt's Rhapsodies in favor of one of his less brilliant pieces - "so as to avoid an anti-climax." Will not be able to accept his invitation +1921 July 2. [William Howard Taft] ADf; s.l.7 pagesDraft of a speech on the importance of classical studies. Andrew Fleming West of Princeton will lead a "convention of scholars and educators" in Philadelphia to discuss cultural education and the humanities. Comments on reforms to the education system and the recent backlash against classical studies. Criticizes psychological studies of pedagogy and narrow vocational education. "The importance of hard mental work had been minimized. The ideal sought has been a wafting of the pupil on a flowery bed of ease to a complete education." Written on reverse side of Taft's personal stationery. [Note: dated 3 days after his Supreme Court Justice nomination] +1922 March 16. Charles W. Eliot TLS to W. R. Thayer; Cambridge, Mass[achusetts]1 pageSorry that Thayer is unable to attend a meeting at his Club "for I am planning to give some reminiscences, going back as far as 1869." "Your wish that I may live as long as my vigor lasts is a very sensible one." +1922 August 15. W[illiam] A[llen] White TLS to Isaac Markens; Emporia, Kansas1 pageThoughts on Lincoln's Gettysburg Address "It was something more than words. It was an executive attitude of hope and faith and charity in a troubled time. It's greatness was what Adams defined as true oratory which 'consists in the man, the subject and the occasion.'" On "The Emporia Gazette" stationery +[after 1923 May 28]. W[illiam M.] Critchley ALS to "Dear Comrade"; [Lake Pleasant, Massachusetts?]4 pagesReunited by an article in the National Tribune with his "comrade," likely from the 13th New Hampshire Volunteers, Co. K, in which Critchley served during the Civil War. "I am the only one in the Band living now... I Still play the Cornet, I was out Memorial Day & I had the Honor to Blow the Taps at Memorial services at the Cemetary in greenfield." Newspaper article published on the event reported Crithcley's age of 87. Also participated in a "Camp at Weirs N.H. last fall," possibly for a gathering of the Military Order of Foreign Wars, where General Clarence Edwards (1860-1931) had him play "Dixie as I played it for President Lincoln at Grants Head Quarters at City Point in 1865." Remembers how Abraham Lincoln requested he play "Dixie's Land, I said Mr. President that's a Confederate Tune, he smiled and said it was But we've Captured it... he call[e]d for it Every time we serenaded him." Has an item of Jefferson Davis's that he took from his office in Richmond along with two orders for Confederate ambulances. N.B.: Letter dated July 6, [18]92, but internal evidence places it ca. 1923, indicating the first sheet may have been recycled from an earlier unfinished letter. +1923 June 17. Albert Beveridge TLS to E. J. Edwards; Beverly Farms, [Massachusetts]1 pageLetter of appreciation to Edwards, particularly regarding an article written by Edwards about Beveridge's Lincoln speech before the Republican Club in 1898. Notes the impact of Edwards on Beveridge's career. "It was that which gave me my first recognition in the east; and, beyond all doubt, it helped to start moving those forces which finally landed me in the Senate." On Beverly Farms, Massachusetts, stationery. Accompanied by: Typed copy of Beveridge's letter on The McClure Newspaper Syndicate stationery, 1p. +1924 April 14 [delivered]. [Calvin Coolidge] TDf; [Washington, D.C.]7 pagesTyped speech with manuscript revisions by Calvin Coolidge. Given before the Daughters of the American Revolution at their annual meeting. Comments on the meaning of the American Revolution, the participation of women in politics, and the American political system. "You are each 'the heir of all the ages,' the daughter of every revolution that has aimed to broaden the rights and secure the liberties of the human race." Emphasizes the importance of political participation and suffrage, especially in the first presidential election following women gaining the right to vote. +1924 April 17. Photograph Signed; [Washington, D.C.]1 pagePhotograph of the American Composers & Authors (ASCAP), visiting President Calvin Coolidge, at the White House. 21.5" x 9.5" silver gelatin print. Signed by the 14 composers. [Located in Oversize Manuscripts] +1924 June 9 [delivered]. [Calvin Coolidge] Typed speech; [Washington, D.C.]4 pagesTyped speech with manuscript revisions by Calvin Coolidge. Commencement speech delivered at Georgetown University. Notes rising numbers of college graduates and its implications. "The advancement of intelligence has been marked by a continual elimination or amelioration of the more undesirable tasks." Notes the work ahead for graduates and the country's need for their loyalty. +1924 September 24. [Walter Percy Chrysler] TLS to [Walter P. Chrysler, Jr.]; New York City, New York2 pagesPleased that his son is acclimating to the Hotchkiss School. Gives advice regarding correspondence habits and financial support for books and supplies. Walter, Jr., should have the New Haven tailor fit him for a suit. Discusses the clothes that he should obtain and wear. On Walter P. Chrysler's personal stationery. +1925 October 13. Albert J. Beveridge TLS to George P. Hambrecht; Beverly Farms, Massachusetts1 pageThanks Hambrecht for his letter regarding Beveridge's work on John Marshall. Writing a similar work on Abraham Lincoln, finding it more difficult than the Marshall biography. "...it is well-nigh like Sanskrit compared to the A. B. C. primer." Will produce a companion to his Marshall work. Discusses writing from source materials, including the trustworthiness of recollections. Will try to write a requested letter of appreciation for Hambrecht's work, but finds his own work "so pressing, heavy and continuous... that it takes all my time and strength to the exclusion of every other activity." +1926 September 22. Dale Carnegie TLS to A. A. Wallgren; Paris, [France]2 pagesArranging for Public Speaking Courses. Suggests 'the secret of making money' as a subject for an upcoming talk. "I believe you were intending to prepare a talk on Fruit of the Family Tree. If you found time to do so, splendid. If not, and you want to assign a topic, here is one: What is the Secret of Making Money? You know some men who could afford to buy a new Rolls Royce every spring. You know others, with perhaps just as much intelligence, whose exchequer could hardly stand the strain of a bicycle. Why? Luck, or courage, or judgment, or superior knowledge, or personality, or what? J. Pierpont Morgan once said that he could walk into an office and pick out at a glance the men who will succeed in life. Can you? How?" On Dale Carnegie's personal stationery. +1927 November 25. W[illia]m H[oward] Taft TLS to Dr. Hamilton Holt; Washington, D.C. 2 pagesTaft voices his opinion on Holt's ideas for improving teaching methods and on the importance of having qualified teachers. Comments on memorable teachers. Written on Supreme Court of the United States stationery. +1929 January 26. W[illia]m H[oward] Taft TLS to H. Wilkinson Moore; Washington, D.C.1 pageApologizes for being unable to "give you the time which you ask for in respect to the general subjects which you discuss." Comments on having his views published. "I deprecate having my views published in a desultory way in the press." Typed on Supreme Court of the United States stationery. +1929 August 22. Franklin D[elano] Roosevelt TLS to James Elmer Christie; Albany, [New York]1 pageTo the president of the Board of Education at Nyack, New York. Congratulates the city of Nyack on their new "Junior-Senior High School" Responding to Christie's request for an autographed photograph. "Your City may well be proud for that progressive public spirit that promotes the education of its children." On Roosevelt's Governor stationery, State of New York Executive Chamber Albany. +1929 October 1. Herbert Hoover TLS to Edgar T. Read; Washington, [D.C.]1 pageCongratulations on the 100th Anniversary of the Calvary Methodist Protestant Church. "I... wish you every blessing in continuing your part of the invaluable service rendered by religious bodies to the people and the Nation." On White House stationery. +1930 February 27. D[avid] F[ranklin] Houston Typed MsS to [John E. Boos]; s.l.2 pagesHouston remarks on President Wilson's inaugural address, noting that "two of his sentences were reminiscent of Lincoln." Quotes from Wilson's speech and President Lincoln's first inaugural address. With printed image of Wilson on the stationery. [Note: the pencil notation "Houston" in the upper left corner of page one, the format of the manuscript, the type of paper, and the printed image match other manuscripts compiled by John E. Boos for his Lincoln collection]. +1930 April 17. Irving Berlin TLS to Edward J. Sieler, Jr.; New York [City, New York]1 pageResponding to Sieler's inquiry about the withdraw of Berlin's account from the Lefcourt National Bank & Trust. Notifies Sieler that he intends to "be away from New York City for an indefinite period of time." Also concerned about information his attorney, Dennis F. O'Brien, acquired concerning the Normandie National Securities Corporation, which holds a controlling interest in the bank. "Naturally, in making a selection of banks in which I might continue my accounts, I decided upon those whose management has been successful over a long period of years." Written on Irving Berlin personal stationery. +1931 March 2. C[harles] H[orace] Mayo TLS to Roger Metcalf; Rochester, Minn[esota]1 pageAdvice respecting medical school. Recommends attending pre-med summer school and studying year-round during medical school to cut down on the high costs. Suggests that he may decide on a specialization after his internship or after working in the field. On Dr. Charles H. Mayo personal stationery. +1934 October 11. W[illiam] J[ames] Mayo TLS to Roger Metcalf; Rochester, Minn[esota]1 pageAdvice respecting pre-medical work and choice of medical school. Three years of pre-med work should be sufficient, with at least a 2-year internship. Recommends Harvard and the University of Pennsylvania if he intends to pursue clinical training. Recommends Rochester or Yale if he intends to "gain a knowledge of some particular science connected with medicine, rather than to practice medicine." On Dr. William J. Mayo personal stationery. Includes manuscript notes on the verso about eighteenth- and nineteenth-century American history. +1935 August 13. Franklin D. Roosevelt TLS to Lillian D. Wald; White House, Washington, D.C.2 pagesRegarding corporate gifts to charities. Wants to prevent corporations from "buying good-will." Notes the distinction between proper and improper gifts. Invites her to come by in the fall. On White House stationery. +1936 December 31. Typed Document; New York [City, New York]1 page"French Foreign Performing Royalties on Unpublished Music from June 30 to December 31st, 1936." Calculation of royalties owed to Irving Berlin, Inc. by RKO Radio Pictures Inc. Lists films which used his original music, the amount received in French and American currency. Typed on Irving Berlin, Inc., Statement of Royalties printed sheet. +1937 August 6. F[ranklin] D. R[oosevelt] TNS; Cy to Basil O'Connor; Washington, [D.C.]2 pages [total]Note requesting O'Connor to respond to the enclosed typed copy of a letter from George B. Eager, Jr., to Franklin D. Roosevelt, dated August 2, 1937. Letter from the University of Virginia (Dept. of Law) requesting letters of recommendation for Franklin Jr.'s admissions application. "No doubt this will seem to you, as it does to a great many parents, to be an arbitrary and completely unnecessary requirement. However, we make no exceptions whatsoever, and we have found it one of the most valuable items of the formal application in, so to speak, scaring away undesirable applicants." +1937 September 27. Dale Carnegie Printed program signed; Philadelphia, Pennsylvania4 pages"Program Opening Session Dale Carnegie Course in How to Speak Effectively, How to Win Friends and Influence People." Lists speakers, including Carnegie and former participants, as well as dates of the program. Notes the cost of the course and what the tuition covers. Participants are to give a number of short speeches to be critiqued. Participants given three books: Dale Carnegie's Public Speaking and Influencing Men in Business and How to Win Friends and Influence People, as well as Richard Borden's Public Speaking as Listeners Like It. "You will develop a new skill in human relationships. You will win increased influence, increased prestige, and you will lead a richer happier life." Signed by Dale Carnegie. +[ca. 1939 January 9]. W[illiam] C. Handy AMsS; TLS to Elliott Shapiro; [New York, New York]3 pages [total]Manuscript copy of sheet music for "St. Louis Blues" made by Handy for Elliott Shapiro. Includes a signed, typed cover letter from Pearl Carn to Elliott Shapiro, dated January 9, 1939, and written on William C. Handy stationery with an ASCAP logo. +[1941]. Herbert Hoover TLS to Mrs. Ronald M. Macpherson; s.l.2 pagesProblems facing Stanford with regards to students who cannot afford to attend the school. Notes University expenditures per student. "Steadily the proportion of the educational costs borne by student fees has increased from virtually nothing in my day to almost one-half today. And, as we look forward into Stanford's next half-century, nothing appears more certain that that out of the present world conditions will emerge higher educational costs for the University and for its students to share." Advocates for the formation of the "Refunders Club," for alumni to donate funds to aid students "of meager finances." Would like feedback on the proposed program. On Herbert Hoover personal stationery. +1942 February 23. Joe [May] Swing TLS to Beverly F. Brown and Louise Brown; Fort Bliss, Texas1 pageReceived their telegram and wishes that Beverly could join him. "I think we would still make a good team." On Headquarters, Division Artillery, First Cavalry Division, Fort Bliss, Texas Stationery. See also: Joe Swing TLS to Beverly [F. Brown] dated May 16, 1945. +1942 May 15. M[arion] N. Little TLS to J. W. Bunkley; U.S.S. Beaver7 pagesDetailed list of activities performed on the California following the attack on Pearl Harbor, from December 7, 1941, to December 11, 1941. Describes working on the ship, evacuating and rescuing men, removing the deceased, salvaging operations, and working on mooring lines. Notes damage to the ship, flooding and fires onboard, and efforts to repair and contain issues. Mentions assistance from other crafts. Includes manuscript corrections and annotations. Written on U.S.S. Beaver stationery. +1942 October 3. "Daddy" ALS to Carolyn D. Young; Washington, [D.C.]2 pagesFrom one of George C. Marshall's aides to his daughter regarding the use of the autopen. Page one bears the original Marshall autograph used to create the matrix for General Marshall's autopen. "The machine will be used to sign thousands of letters of condolence to parents or wives of U.S. Soldiers who are killed or wounded in this war. The fact that these letters are signed by a machine should be kept a secret but you can see that it would be impossible for Gen. Marshall to sign all of them personally and still direct this tremendous war." On War Department Office of the Chief of Staff official stationery. +1943 November 3. Fred M. Brewer ALS to Jane A. Brewer; Osaka, Japan1 pageComments on letters received at camp and helping with the camp library. "After reading a group of books thoroughly, we are allowed to exchange them with the English camp." Notes health and the weather. On printed Japanese stationery. +1943 December 28. Tho[ma]s C. Trueblood ALS to John E. Boos; Bradenton, Florida1 pageBoyhood memories of Lincoln's campaign and news of his assassination. Believes him to have been "the most splendid individual in history." Signed Thos. C. Trueblood, Professor Emeritus of Speech, University of Michigan. +1944 January 11. Bruno Walter TLS to Edward Johnson; New York, New York1 pageTo Johnson, General Manager of the Metropolitan Opera. Decided against signing any contracts for the upcoming season, including with the Metropolitan Opera or the Philharmonic Symphony Society. Frank discussion of negative experiences with the Metropolitan Opera. +1944 February 27. Tho[mas] C. Trueblood TDS to [John E. Boos?]; Ann Arbor, Michigan2 pagesThomas Trueblood, Professor Emeritus of Speech at the University of Michigan, gives his personal views on Abraham Lincoln and monuments to him. Notes two Lincoln anecdotes that he considers little known, including his resistance to anti-English feeling during the Civil War and attempts to execute Confederate leaders. Includes portions of a letter he wrote to John E. Boos, December 28, 1943. On illustrated stationery featuring an image of a waving American flag. +1944 March 29. Al Jolson, Harry Akst, Herman Ruby, and Bert Kalmar Partially printed DS to Leo Feist, Inc.; s.l.4 pages"Uniform Popular Song- Writers Contract" respecting royalties, foreign revenues, and compensation for orchestrations for "The Kid That I've Never Seen." " Signed twice by each of the four writers. +1944 May 10. Jerome Kern TDS to T.B. Harms Company; Washington, [D.C.]4 pagesAssigning the copyright for 36 of Kern's songs to the T. B. Harms Company . Includes "When Your Heart's on Fire Smoke Gets in Your Eyes." + +1944 July 27. Harry S. Truman TLS to John W. Carey; [Washington, D.C.]1 pageLetter to John Carey of the Sioux City Journal thanking him for sending a marked copy of the Sunday edition. Comments briefly on the importance of fewer campaign speeches. On U.S. Senate Committee on Interstate Commerce stationery. +1945 January 15. Tom P. Bradley ALS to Al T. Healy; [Philippines]2 pagesHeadquarters 40th Infantry Div. Fin. Sec. Discusses stamps in the Philippines and stamp collecting. His group assigned to handle civilian affairs. Filipinos seem pleased to have Americans return, especially following the destruction of Japanese withdrawal. "... they apparently brought nothing into the islands except war materials and took all the civilian supplies for their own use since the occupation." Still experiencing air raids. +1945 February 24. Manuel O [Manuel M. O'Neal] ALS to Mr. and Mrs. B. H. O'Neal; Philippines2 pagesO'Neal, of the 1879th Engineer Aviation Battalion, Co. B. Remarks on military life and his health. "Some of the boys across the way are picking a guitar & a girl is singing something, of course I don't understand what she is singing but she has a nice voice. Most of the people can speak some English... We had a show the other night, something new since we have been here. The picture was old, but most of the boys enjoyed after not having seen one in so long." Uses racially derogative language concerning Japanese and promises they "will pay dear for the trouble they have caused." Sending home Japanese currency. Includes a numerical cypher on the envelope. On United States Army stationery. +[19]45 March 7. John Dewey TLS to [S. A.] Nock; Key West, Florida1 pageRelates an anecdote about a graduate student in the English department at Columbia and their discussion about the date of a piece of English literature. Mentions reviews. Dewey makes a comment on Barzun's book which as yet he has not read. Remarks on the deceased George Carpenter, a professor at Columbia. +1945 [ca. April-May]. Pat[rick] L. Ash AMsS to Edith L. Gingrich; s.l.10 pages2nd Bn. 14th Marines, H. and S. Bty., 4th Marine Division. History of the 4th Marine Division, noting its service in the Marshall Islands, Saipan, Tinian, and Iwo Jima. Vividly describes his experiences at Iwo Jima, including the initial landing and first night on the island. "... one would never suspect that on this tiny island of volcanic ash was soon to be fought the bloodiest battle of the entire war and the hardest fight in the one hundred and sixty nine years of the United States Marine Corps." Attributes survival to God. +1945 May 14. "Frank" [Francis Guiffrida] ALS to Walter Bielefield; Okinawa, [Japan]2 pagesLt. Commander Francis Guiffrida, H&S Co., Medical Battalion, 1st Marine Division. Sending a Japanese infantry manual and a Japanese 31 caliber rifle: "I'm not going to be so generous with that because it is the only one I have and they are not easy to get. Some men out here pay a tremendous price for them." Would like Walt to hold it for him until he returns. Describes the condition of the rifle and advice on ammunition. The battle [of Okinawa] is still "raging furiously." "When you see Marine die - and especially when among them are your friends, the smallest battle gains much importance." On American Red Cross stationery. +1945 May 16. "Joe" [Joseph May] Swing TLS to Beverly [F. Brown]; [Philippines]1 pageHeadquarters, 11th Airborne Division. References Beverly's note to "Look" about a "filthy thing they had about George Patton." "After 101 days straight of killing Japs, with an average of 93.8 per day, on the 102d day we failed to bag any game, so far as we are concerned, at an end." Attended a fiesta in San Juan, "in honor of one of the companies that liberated the town." A rest camp has been formed "on the beach near Lemery." Misses baseball. Will head to Mindoro for quail hunting. "Big things are evidently being cooked up by all the brass hats, but none of it trickles down to the lower levels, so we just sit, wait, and see what is going to happen." See also: Joe Swing TLS to Beverly and Louise Brown dated February 23, 1942. +1945 September 24. Dwight [D. Eisenhower] TNS; Cy to Arthur Eisenhower; s.l.2 pages [total]Enclosing a TL from Dwight Eisenhower to C.H. McClean. Written on Headquarters, U. S. Forces, European Theater, Office of the Commanding General stationery. Includes a typed copy of the letter, thanking McClean, of the Graybar Electric Company, for providing an electric fan for Eisenhower's mother. "...there is nothing more dear to me than the comfort and wellbeing of my Mother. Anyone who is nice to her has placed me everlastingly in his debt." Arthur has told him that McClean has a son in the 42nd Division. +1948 September 26. Earl [Eisenhower] ALS to Arthur [B. Eisenhower]; s.l.1 pageLetter concerning the upcoming inauguration of Dwight D. Eisenhower as president of Columbia University. Received a belated invitation. Notes no effort to attend the inauguration of Milton as President of Kansas State, "and, out side of the fact that Columbia is larger than Kansas State, I see no difference in their position." +1951 January 3. Dwight D. Eisenhower TLS to Arthur B. Eisenhower; s.l.1 pageLetter written regarding the transfer of $10,000.00 of Dwight Eisenhower's funds from Arthur Eisenhower's bank to the Dupont Circle Bank in Washington D.C. Signed both "Ike" and "Dwight D. Eisenhower." On D.D.E. personal stationery, featuring five stars. +1953 September 19. W[illiam] C. Handy TLS to Bob Whittemore; New York, New York3 pagesRecording of Handy's address at the University of Michigan will be broadcast over "500 Radio Stations through the Field of Education." Handy discusses the influence music has and how orders for their music are coming in from distant places. Political campaigns in New York: "one of our racial group will more than likely be elected to an important office for the first time, and yet, I fall back on an oft repeated quotation, 'I care not who makes the Nation's laws if I can write the Nation's songs.'" Discusses the state of the music publishing business. Article by Arno L. Bader, English professor at the University of Michigan, on "The Memphis Blues." Mentions his father's objections to studying music, but the state of the nation prevented him from attending Wilberforce University for Theology. Received an honorary Doctorate of Music from Wilberforce. "We publish much Sacred music written by more than 50 Race composers and about as many of the other racial group and this letter is my request to be permitted to send you sample copies that your Minister of Music could look over for its inclusion in your churches." Has received letters from "Senators, Congressmen, Governors, Mayors, ex-Presidents, and Generals of the front rank." Describes several of his compositions, inspirations, and honors bestowed upon him. On Handy Brothers Music Co., Inc. stationery. +1956 July 30 [approved]. Dwight Eisenhower Printed DS to [Duane N. Diedrich]; [Washington, D.C.]1 pagePublic Law 851 - 84th Congress. H.J. Res. 396. Joint resolution to establish "In God We Trust" as the national motto of the United States. Signed by Dwight Eisenhower, 1960. With: Whitman, Ann C. 1908-1991 TLS to D. N. Diedrich; Washington D.C., 1p. May 14, 1960. Whitman informs Diedrich that the President signed the copy of Public Law 851 and that she is returning it with his best wishes. On White House stationery. With: 3 newspaper clippings: Two regarding the national motto, 1956. One regarding Ann Whitman. +1958 January 3. Herbert [Hoover] TLS to Neil MacNeil; New York, New York1 pageRegarding a speech to be given at Valley Forge on Washington's birthday, for the Freedoms Foundation. Would like MacNeil to read the opening paragraph and the final paragraph. "If I don't do this I simply can not take the time to prepare a speech, and I don't want to either." On Hoover's personal stationery. +1958 April 2. Walt Disney TLS to Dr. Robert A. Reid; s.l.1 pageRefuses a request for a speaking engagement. "It is not my practice to accept speaking engagements because I do not consider myself a speaker and furthermore, time is not available for such activities because of the pressure of production and business affairs." On Walt Disney's personal stationery. +111961 June. André Maurois AMsS; [France]2 pagesWritten in French, includes typescript but no translation. Maurois describes a French press luncheon with President John F. Kennedy. Comments on journalists' difficult questions, touching on matters in France, the Soviet Union, England, and the United States. Admires Kennedy's diplomatic answers and poise. Describes Kennedy's tactics and the importance of strong oratory skills. References Abraham Lincoln's Gettysburg Address. Includes the 1961 June 2 issue of France-Soir (8pp), featuring a picture of John F. Kennedy and Jackie Kennedy Onassis. +[1964] December 2. Darryl F[rancis] Zanuck TLS to Elmo Williams; s.l.8 pagesZanuck summarizes recent conferences in Paris and their importance to his studio (20th Century Fox). Remarks on the studio's finances and the upcoming 1965 production year: 13 "important" films at a cost of $46,650,000. Detailed comments on the production of: Fantastic Voyage, Do Not Disturb, Our Man Flint, Flight of the Phoenix, The Day Custer Fell, The Sand Pebbles, Call Me When the Cross Turns Over, and others. Mentions Salvador Dali, Honor Blackman, Doris Day, Rod Taylor, James Stewart, Audrey Hepburn, Charlton Heston, Burt Lancaster, Brigitte Bardot, Steve McQueen, Sean Connery, and others. "We have learned today that even good pictures do not do business if they do not have that added touch or that added "gimmick", or if they do not have that certain something that will pull in an audience." +1965 June 22. Dwight D. Eisenhower TLS to Lou Cohen; Gettysburg, Pennsylvania1 pageUnable to give a speech for Cohen's United Nations committee. "I have been advised by my doctors to begin cutting down drastically on my out-of-town engagements, particularly when they involve ceremonies requiring a speech from me. I have promised both the doctors and my family to observe their instructions..." Applauds the United Nations. Offers possibilities for other speakers, including Richard Nixon, [George W.] Romney, [Mark O.] Hatfield, and [William] Scranton. On DDE Gettysburg Pennsylvania 17325 stationery (raised gold lettering). +1969 January 31. Arthur [Rubinstein] ALS to Muriel and George Marek; [New York City, New York]2 pagesRubinstein thanks the Mareks for his birthday present: volumes of Liszt-Wagner correspondence, in which he was surprised to find two autograph letters by Liszt and Wagner. "And so - let me rethank you from the bottom of my heart for the regal gift!" On Rubinstein's personal stationery. +[1972 May, delivered]. Eugene McCarthy AMsS; s.l.3 pagesMcCarthy's notes for a speech delivered to the Commonwealth Club in San Francisco. References literature, Ayn Rand, politics, Vietnam and the military, courts, Congress, and presidential powers. NOTE: McCarthy unsuccessfully ran for the Democratic nomination for President of the United States in 1968, 1972, and 1992. +1973 February 13. Karen Carpenter and Richard Carpenter TDS to Ars Nova, Inc.; [California]7 pagesArs Nova, Inc., employment contract for performances by "The Carpenters." Compensation: 15% of the total receipts or $150,000. +1975 January 13. W[illia]m M. Rumpeltes TLS to Buddie Nicholas; Grand Island, Nebraska2 pages [total]Sending a copy of the original message he recorded from Marshall Foch while acting as the first class wireless operator on the U.S.S. Utah. Comments on other services performed by the Utah and his current health. Written on the back of a photocopy of the Naval Signal sent by Marshall Foch on November 11, 1918. "Marshall Foch to Commander in Chief - Hostilities will cease upon the whole front from the eleventh November eleven o'clock (French o'clock) The Allied troops will not cross until a further order the line reached on that date and that hour." +1988 June 13. John [F.] Kennedy Partially printed DS to Manatt, Phelps, Rothenberg, & Phillips; [Los Angeles, California]1 pageEmployment application for summer clerk position at the law firm of Manatt, Phelps, Rothenberg, & Phillips. Lists Mrs. J. Onassis as his emergency contact. +2007 May 19 [delivered]. [Barack Obama] Typed speech; s.l.6 pagesTyped printed speech, with manuscript corrections by Senator Barack Obama. "Remarks of Senator Obama, Southern New Hampshire University Commencement, Manchester, New Hampshire, Saturday, May 19, 2007." Comments on maturity and how it is reflected in politics and media. Challenges cynicism and calls on graduates to be active citizens. Discusses how he learned that "the world doesn't just revolve around you" and the problem with the "empathy deficit." Describes his decision to organize in Chicago and the need to challenge one's self. Emphasizes the need for perseverance. "Cultivating empathy, challenging yourself, persevering in the face of adversity -- these are qualities that dare us to put away childish things." Notes the power of American youth to enact change. + +[no year] July 6. Josiah Quincy ALS to John Pierce; Cambridge, [Massachusetts]1 pageRequests Pierce to call a meeting of the Board of Overseers to be held in Quincy's council chambers. Needs to discuss conferring honorary degrees [likely from Harvard University]. +[no year] September 9. Adele Douglas (Mrs. Stephen Douglas) ALS to Mother [Ellen O'Neale Cutts]; St. Louis, [Missouri]1 pageTravelling with Mr. Douglas and will be heading south. Fatigued. "... he wanted me so much I consented to go & I do not find any moment to breathe." +Undated. He[nr]y R. Bishop ALS; 1 page"I have occasion for four (single) orders for the Oratorio of Tomorrow night: and also, two single for Saturday night!" +Undated. D[aniel?] Dulany ALS; s.l.1 pageRegarding the sale of pig iron. +[no year] January 28-30. Newbold H. Trotter Partially printed Invitation to Ferd[inan]d J. Dreer; Philadelphia, [Pennsylvania]1 pageInvitation for viewing of new painting, "Children of the Tropics" +Undated. ADf; s.l.23 pagesManuscript [draft?] of "Origin & History of Corporations." Describes the evolution of corporate history and law in Rome, Greece, and Europe. Discusses the "different species of Corporation and their several characteristics." Notes "the authority by which Corporations may be established," commenting on English and American law. +[no year] July 24. A[rabelle] G[riffith] W[harton] ALS to T[homas] I. Wharton; Long Branch, New Jersey2 pagesComments on summer resort activities. Has been feeling unwell, "either the air or the bathing or something has been too stimulating for me." Encourages him to visit rather than "remain over those tough old parchments." +Undated. W[illia]m Craik ALS to William Campbell; 3 pagesAnswering Campbell's inquires about Colonel Mercer's "Conduct during the last session of the General Assembly of Maryland." Uncertain about the reliability of his memory, but comments on Mercer's actions concerning taxes, finances, and questioning the "sale of confiscated British Property subsequent to the treaty." +Undated. Sam[ue]l Miller ALS to Rev. [Archibald?] Alexander; s.l.1 pageFeeling unwell and will be unable to attend the Board of Missions meeting. Would like Alexander to inform them. +Undated. Geo[rge] Catlin ANS to Mr. Mitchell; 1 pageOrder for printing. +Undated. Jo[seph] Wood ANS to [Anson Dickinson]; [Washington, D.C.]1 pagePoem inviting Dickinson to visit. +Undated. D[aniel] Huntington ALS to T. Addison Richards; s.l.2 pagesCongratulations to Mr. Richards for his being elected to an artists academy. Assures Richards that his acceptance was based on "your own abilities and marked improvement in landscape." +Undated. John L. Hall DS to H[ubbard] Grave; s.l.1 pagePayment on chairs, table, washstand and bedstead. Recipient recorded as H. Graves. +October 25. W[illia]m H. Denny ALS to Richard Denny; Mocksville, Davie County, North Carolina3 pagesComments on setting up his medical practice and tending to another doctor who fell ill with a fever. Region experiencing an uncommonly sickly season, which has impacted the capacity for the courts to function. Notes the high death toll. A local preacher "said that he had preached 1. and two funeral sermons every day for 3. weeks and that the people had become used to the toll of the bell so as not to mind it." Mentions medicines. +Undated. Amelia Bingham ALS to Mr. Jordan; Cincinnati, [Ohio]2 pagesIs busy rehearsing every day, but if the recipient will send for her at the Opera House, she will "run away from my people for an hour or so." On St. Nicholas Hotel stationery. +Undated. Joseph Lancaster ALS to J. Webster; [Newburgh, New York?]3 pagesReturning several books. Instructions for printing and payment of handbills and advertisements for lectures Lancaster intends to deliver in the area around Newburgh. Addressed to J. Webster, Webster & Skinner. +Undated. George Bancroft ALS to Reverend W. Ware; s.l.1 pageLetter of apology stating that he is unable to write anything substantial until his volume is published. +Undated. J. Gates ALS to J.M. Carlisle; s.l.1 pageForwarding packages for Carlisle to distribute to their appropriate recipients. +Undated. T[homas] DeWitt Talmage AMsS; [New York, New York?]2 pagesQuips on ideal womanhood and the character of women. "Fashioned to refine & soothe & lift & irradiate home & society & the world." +Undated. S[abine] Baring-Gould AMsS; s.l.1 pageManuscript copy of "Onward Christian Soldiers," signed by Sabine Baring-Gould (1834-1924). Housed in individual custom box. +Undated. D[aniel] Webster ALS to R[obert] C. Winthrop; [Boston, Massachusetts]2 pagesRegarding the unpleasant speaking conditions at Faneuil Hall. Will not return until the problems are fixed. +Undated. Robert Owen Signature; s.l.1 pageCut cover: Robert Owen's signature, written on paper headed with printed text "Robert Owen's Millennial Gazette. Registeredfor Foreign Transmission." Addressed to "The Assistant Post Master General of the United States." +Undated. Franklin Pierce ALS to Jeanie [Jane Pierce]; Concord, [New Hampshire]2 pagesPlans to travel to Hillsboro. "If my interests there were in as satisfactory condition as I find them here, there would be nothing to annoy me." Attended a lecture by [John B.] Gough at Phoenix Hall on "street life in London." Entertaining, but "did not amount to much in the way of instruction." Will return on Saturday and bring clothing articles that he is "so prone to scatter about." +Undated. D[wight] L. Moody ALS to Dr. Seamour; s.l.2 pagesMr. Jacob will take charge of the choir. Questions regarding the size of the hall. Inquires about the location of the day meeting. +Undated. Phil Shea ALS to Julia Shea; [France]1 pagePicture postcard, "Les Ruins de Clermont-en-Argonne." "... the war is about over if not at an end all ready." From "musician Phil Shea U.S. Army." Includes censor stamp. See also Phil Shea ALS to Julie Shea, March 19, 1919. +[World War I era]. 5 envelopes; Two envelopes from Lieutenant V. R. Modruff (21st Field Artillery, 5th Division Regiment, A.E.F.). Two envelopes to N. E. Dutro at Camp Bowie, Texas. One envelope from Private Leslie Henderson (Engineers, A.E.F.). +ca. 1880s?. S. D. Loring Printed Pamphlet; Boston, [Massachusetts]17 pagesSome Facts Regarding Water Works Bonds as a Desirable Form of Investment with Statistics "Prepared by S.D. Loring, Dealer in Investment Securities." Promotes investment in water works, comparing them to riskier investments. Notes the public health and safety advanced by water works. Comments on methods of supply, and discusses the British water works as an example. Includes a table of United States towns, organized by population, showing "Receipts and Expenditures of some Leading Water Works." +Undated. Alben W[illiam] Barkley Signed photograph; s.l.1 pageInternational News Photo of Barkley standing, with gavel. Signed "Sincerely Alben W. Barkley" +Undated. Irving Berlin AQS; s.l.1 pageSigned, "Alexanderly yours." +Undated. W[illiam] H[oward] T[aft] ANS to [ ]; s.l.1 page"File these papers left me...for use in connection with my political speech and also my annual message - WHT." +Undated. Theodore Roosevelt TMs; s.l.4 pagesTyped draft of a section from the second chapter in Theodore Roosevelt's autobiography, including redacted portions and revisions which appear in the printed edition. Discusses his speech "The Strenuous Life," and translations of it into Chinese and Italian. Comments on types of success, coming from unique abilities of the exceptional man and from dedication and perseverance. "I need hardly say that all the success I have ever won have been of the second type. I never won anything without hard labor and the exercise of my best judgment and careful planning and working long in advance." +Undated. Photograph; 1 pageCarte de visite photograph of Henry Ward Beecher (1813-1887), mounted on paper printed with his name and Brooklyn, N.Y. +Undated. [Randolph Caldecott] Illustration; s.l.3 pages (total)Three pencil and ink drawings of rural life. [NOTE: Originals located in the Graphics Division]. +Undated [ca. 1930s?]. [Walt Disney Productions] Film Cell; s.l.1 pageHand-painted film cell of Happy from Walt Disney's "Snow White and the Seven Dwarfs." Original located in the Graphics Division. +Undated. Theodore Roosevelt AQS; s.l.1 page"With warm regards to a fellow Republican and lover of American history." +Undated. AMs; [Boone County, Indiana]12 pagesAddress of a teacher at the Indiana Sugar Plain school, as he departs "its chair as Teacher." Notes significance of education and the duties of children and parents. Proper education assures a better future for all. Role of family, schools, community, religion, and the press. Applauds Quakers' dedication to education but underscores the need for a broader public school system. Disputes the notion that Jesus' apostles were unlearned. Comments on the difficulties facing Quaker boarding schools and the Sugar Plain school, including irregular attendance and poor behavior. Includes unattributed selections from Charles Northend's The Teacher and the Parent; a Treatise upon Common-School Education. +[no year] August 11. Emily Wharton ALS to T[homas] I. Wharton; Long Branch, [New Jersey]3 pagesDescribes resort activities, including attending a small fair with fireworks and a tableaux. Comments on her tableau, "a scene from the Tempest where Miranda is discovered playing chess with Ferdinand." + + + + + +

    +In addition to this collection of individual letters, documents, and other manuscripts, the Duane Norman Diedrich Collection includes a variety of other archives and manuscripts, which have their own catalog records. Please search the finding aids or Library catalog for "Duane Norman Diedrich Collection" to identify them.

    + +

    Schopieray, Cheney J. +One Hundred Selections from the Duane Norman Diedrich Collection of Manuscript Americana, 17th-20th Century. Ann Arbor, Mich.: William L. Clements Library, 2018.

    + +
    +
    +
    diff --git a/sample-ead/clements/germanauxiliaries_final.xml b/sample-ead/clements/germanauxiliaries_final.xml new file mode 100755 index 0000000..840a020 --- /dev/null +++ b/sample-ead/clements/germanauxiliaries_final.xml @@ -0,0 +1,795 @@ + + + + + + umich-wcl-M-54ger + + + Finding Aid for German Auxiliaries Muster Rolls + Collection processed and finding aid created by Philip Heslip, November 2009 + + + William L. Clements Library, University of Michigan + 2010 + + + + Encoded finding aid created by Meg Hixon, October 2010 + + The finding aid is written in English, French, and German + + Finding aid prepared using Describing Archives: A Content Standard (DACS) + + + + 2010-10-25 + Original encoding from Word 2007 file using Word macros and Xmetal. + + + + + + Manuscripts DivisionWilliam L. Clements LibraryUniversity of Michigan + Finding aid forGerman Auxiliaries Muster Rolls, 1776-1786 + Finding aid created by Philip Heslip, November 2009 + + + + + + Great Britain. Army + + German Auxiliaries muster rolls 1776-1786 + 1781-1783 + + German Auxiliaries muster rolls + + 0.25 linear feet + + wclmss000814 + The material is in English, French, and German + + This collection is comprised of seventy muster rolls and 15 additional letters and documents of the German regiments employed by the British to fight in the American Revolutionary War. + + + William L. Clements Library, University of Michigan + + + + + +

    The collection has been microfilmed

    +
    + +

    1929, 1956. M-54, M-1042.

    +
    + +

    Cataloging funded by the National Endowment for the Humanities (NEH) and the "We the People" project.

    +
    + +

    The collection is open for research.

    +
    + +

    Copyright status is unknown

    +
    + +

    German Auxiliaries Muster Rolls, William L. Clements Library, The University of Michigan

    +
    +
    + + History +

    In 1776, the British formed a treaty with the duke of Brunswick and other minor German princes that allowed the hiring of German mercenaries to bolster the British Army in North America. These German Auxiliaries muster rolls document the German regiments employed by the British to fight in the American Revolutionary War. England would pay the German princes annual subsidies, as well as additional fees, for wounded and killed soldiers. All together, approximately 30,000 men came to America from Germany and fought for the British in virtually every major campaign in the war.

    +
    + +

    This collection is organized alphabetically by the home residence of each army and then by the name of the regiment.

    +
    + +

    This collection is comprised of seventy muster rolls and 15 related letters and documents of the German regiments employed by the British to fight in the American Revolutionary War. Most of the rolls are from 1781 and 1783 and include lists for soldiers captured at Yorktown. The rolls contain details such as the rank and names of the Hessians, casualties, and remarks, such as "sick in the Barracks." These rolls are certified by British commanding officers.

    + + The rosters list the following regiments: + Anhalt Zerbst army under Riedesel, Regiment Prinz Friedrich, Grenadier Battalion von Mengen, Regiment von Riedesel, Regiment von Specht. + Hesse-Cassel. Grenadier Battalion vacant Graff; Grenadier Battalion von Loewenstein,Company von Biesenrodt, Company von Mondorff, Company von Wachs; Grenadier Regiment d'Angelelli, Leib Conmpany; Regiment von Bunau, Leib Company; Regiment Erb Prinz (4 folls for this list names of Hessians captured at Yorktown), Company von Cochenhausen, Company von Fuchs; Regiment von Lossberg, Jr., Company von Baurmeister, Company von Biesenrodt, Company von Romrod, Company von Wilmowsky, Leib Company. + Hesse-Hanau. Artillery detachment under Pausch. + Waldeck. Third Regiment, Company von Alberti, Company von Horn, Company von Penzel. + +

    In addition to muster rolls is a copy of the treaty executed in 1776 between the Duke of Brunswick and George III for hiring German mercenaries. Also enclosed is a barrack account for the first regiment of Anspach troops during the winter of 1777-1778; several receipts, including three accounts submitted to the Great Britain Army Victualing Office (1786); an account of payments to foreign troops in America; and a statement from a surgeon named Pralle of the Bath infantry, certifying that several men belonged to Major General de Rhetz' regiment (1781). Documents are in English and German.

    +
    + +

    + +

    + + Subjects: + Anhalt (Germany)--History, Military. + Braunschweig (Duchy) Heer. Prinz Friedrich Regiment--History--18th century. + Great Britain. Army--Colonial forces. + Great Britain. Army--History--Sources. + Great Britain. Army--Mercenaries. + Great Britain. Army--Registers. + Hanau-Munzenberg (Germany)--History, Military--18th century. + Hesse-Kassel (Electorate)--History, Military--18th century. + Hessian mercenaries--Registers. + Mercenary troops--Great Britain. + Pausch, Captain. + Riedesel, Friedrich Adolf, Freiherr von, 1738-1800. + Specht, Johann Friedrich, d. 1787. + United States--History--Revolution, 1775-1783--British forces. + United States--History--Revolution, 1775-1783--Participation, German. + United States--History--Revolution, 1775-1781--Prisoners and prisons--Registers. + United States--History--Revolution, 1775-1781--Registers. + Waldeck (Fürstentum) Waldeckische Regiment, 3te. + Yorktown (Va.)--History--Siege, 1781--Surrenders--British. + + + Genre Terms: + Muster rolls. + +
    + + + + German Auxiliaries Muster Rolls, 1776-1786 (bulk 1781-1783) + + + + 1 + 1 + [Anhalt-Zerbst]. Erasmi Garitz and W[illiam] Porter DS, July 20, 1781 + +

    [View Digital Surrogate]

    1a. Muster roll of . . . Anhalt Zerbst Recrcuits sent over from Jevern in the year 1780 . . . Fort Brooklyn on Long Island... Signed by Erasmi Garitz and commissary W. Porter.
    +
    + + + [Anhalt-Zerbst]. Erasmi Garitz and W[illiam] Porter DS, July 20, 1781 + +

    [View Digital Surrogate]

    1b. Erasmus Garitz to W. Porter, commissary. Muster Roll of . . . Anhalt Zerbst Recruits sent over from Jevern in . . . 1780 as muster'd . . . at Fort Brooklyn on Long Island, July 20, 1781. Signed by Erasmi Garitz and commissary W. Porter.
    +
    + + + + 2 + [Brunswick]. [Friedrich Adolf, Freiherr von] Riedesel and W[illiam] Porter DS, July 20, 1781 + +

    [View Digital Surrogate]

    2a. Muster roll of the General Staff of the Brunswick Ausiliar[y] Troops in His Britannick Majesty's Service in North America, as mustered by . . . Wm. Porter at Brooklyn... Signed by Riedesel and commissary W. Porter.
    +
    + + + [Brunswick]. Carl. de Geusau and W[illiam] Porter DS, July 20, 1781 + +

    [View Digital Surrogate]

    2b. Muster roll of the present Officers and Men of a Detachment of light infantry regiment Brunswick troops including the Recruits sent over . . . in . . . 1780. Signed by Carl de Geusau and commissary W. Porter.
    +
    + + + + 3[Brunswick]. Fr[iedrich] Cleve DS, June 26, 1783 +

    2c. Located in Oversize Manuscripts (see below)

    +
    + + [Brunswick]. Ernst August de Bartling and W[illiam] Porter DS, July 20, 1781 + +

    [View Digital Surrogate]

    3a. Muster roll of the present Officers and Men…Fort Brooklyn on Long Island... Signed by Ernst August Bartling and commissary W. Porter.
    +
    + + + + 4 + [Brunswick]. Carl de Schlagenteuffel DS, June 20, 1781 + +

    [View Digital Surrogate]

    3b. List of the Names of the Recruits now in Canada, belonging to the Regiment of Brunswick Dragoons . . . for compleating of the different Squadrons of that Regiment. Signed by C. von Schlagenteuffel.
    +
    + + + [Brunswick]. [Johann Lud.] de Unger and W[illiam] Porter DS, July 20, 1781 + +

    [View Digital Surrogate]

    4a. Muster roll of the present Non Commissioned Officer and Men of a Detachment of the Regiment Prince Fredéric Brunswicks Troops including the Recruits sent over . . . in . . . 1780. Signed by de Unger and commissary W. Porter.
    +
    + + + + 5 + [Brunswick]. [Charles] B[aron] de Wolzogen and W[illiam] Porter DS, June 24, 1782 + +

    [View Digital Surrogate]

    4b. Rolle de la Montre du Detachement du Regiment de Prince Frederic des Trouppes de . . . le Duc regnant de Bronsvic . . . avec les changements . . . 25 Dec. 1781-24 June 1782. Signed by Capt. C. von Wolzogen and commissary W. Porter.
    +
    + + + [Brunswick]. [Balthasar] Bogislaus de Lucke and W[illiam] Porter DS, July 20, 1781 + +

    [View Digital Surrogate]

    4c. Muster roll Of the present Officers and Men of a Detachment of Major General de Rhetz Regiment Brunswicks Troops, including the Recruits sent over . . . in . . . 1780. Signed by commissary W. Porter and Major de Lucke.
    +
    + + + + 6 + [Brunswick]. [Julius] de Poellnitz and W[illiam] Porter DS, July 20, 1781 + +

    [View Digital Surrogate]

    5. Muster roll of the present Officers and Men of Majr: General de Riedesels Infantery Regiment of the Brunswick Troops... Signed by de Poellnitz and commissary W. Porter.
    +
    + + + [Brunswick]. [Regiment von Friedrich Riedesel] Document, [between 1781 and 1783] + +

    [View Digital Surrogate]

    6. State of pay of the regiment von Riedesel.
    +
    + + + + 7 + [Brunswick]. [Regiment von Johann Friedrich von Specht] Document, May 13, 1776 + +

    [View Digital Surrogate]

    7a. Mondirungs Anschlag auf des Obristen Specht Regiment excl. der Augmentation Anno 1776.
    +
    + + + [Brunswick]. A. Lützow and W[illiam] Porter DS, July 20,1781 + +

    [View Digital Surrogate]

    7b. Muster roll of the present Officers and Men of the Detachment of the Regiment Specht Brunswick troops including the Recruits sent over . . . in . . . 1780. Signed by commisary W. Porter and Capt. Lützow.
    +
    + + + + 8 + [Hesse-Cassel]. Friedrich Platte, Johann Jacob Fritsch, Johann Henrich Brauns, Christn. Kleÿensteüber, and W[illiam] Porter DS, July 4, 1782 + +

    [View Digital Surrogate]

    8a. Bataillon des Grenadiers Vacant Graff de la Compagnie du Major Hessenmüller pour 182 Jours; du 25e. Decembre 1781: jusqu'au 24e. Juin 1782 inclusivement... Muster roll. Signed by Maj. Friedrich Platte, Capt. Johann Jacob Fritsch, Lt. Johann Henrich Brauns, Lt. Christn. Kleÿensteüber, and commissary William Porter.
    +
    + + + [Hesse-Cassel]. Friedrich Platte, G[eorge] Hohenstein, G[eorge] Schenck, B[arthold] H[enri] Schimmelpfeng, J[ean] G[eorge] Wagner, and W[illiam] Porter DS, July 4, 1782 + +

    [View Digital Surrogate]

    8b. Bataillon des Grenadiers Vacant Graff de la Compagnie du Capitaine Hohenstein Pour 182. Jours du 25me. Decembre 1781: jusqu'au 24me. Juin 1782 inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Maj. Friedrich Platte; Capt. G. Hohenstein; Lt. G. Schenck, 2nd Lieut. B. H. Hohenstein, Ensign J. G. Wagner, and commissary William Porter.
    +
    + + + + 9 + [Hesse-Cassel]. Frederich Platte, Gregorius Saltzmann, Wilhelm Studenroth, Joseph Henrich Wiederhold, and W[illia]m Porter DS, July 4, 1782 + +

    [View Digital Surrogate]

    8c. Bataillon des Grenadiers Vacant Graff de la Compagnie du Capitaine Salzmann pour 182. Jours du 25me. Decembre 1781: jusqu'au 24me. Juin 1782 inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Maj. Friedrich Platte, Capt. Gregorius Saltzmann, Lieut. Wilhelm Studenroth, 2nd Lieut. Joseph Henrich Wiederhold, and commissary William Porter.
    +
    + + + [Hesse-Cassel]. Friedrich Platte, A[ndrea]s Oehlhans, R[einhard] Junek, J[ohannes] Koeber, and W[illiam] Porter DS, July 4, 1782 + +

    [View Digital Surrogate]

    8d. Bataillon des Grenadiers Vacant Graff. Compagnie du Capitaine Sandrock pour 182 Jours du 25e. Decembre 1781. Jusqu'au 24e. Juin 1782 inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Maj. Friedrich Platte, Lieut. Andreas Oehlhans, 2nd Lieut. Reinhard Junek, 2nd Lieut. Johannes Koeber, and commissary William Porter.
    +
    + + + + 10 + [Hesse-Cassel]. W[illia]m Loewenstein, [Hans Henrich George Wilhelm] de Biesenrodt, H[enrich] F. Zinik, W[ilhelm] L[udwig] de Romrod, Louis Friedric de Rieger, and W[illiam] Porter DS, July 4, 1782 + +

    [View Digital Surrogate]

    9a. Battaillon des Grenadiers du Colonel de Loewenstein, Compagnie du Capitaine de Biesenrodt, pour 182 jours du 25me. Decembre 1781. jusqu'au 24me. Juin 1782. inlusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Col. William Loewenstein, Capt. Hans Henrich George Wilhelm de Biesenrodt, Liut. Henrich F. Zinik, 2nd Lieut. Ludwig Wilhelm de Romrod, 2nd Lieut. Louis Friedric de Rieger, and commissary William Porter.
    +
    + + + [Hesse-Cassel]. W[illia]m Loewenstein, [Friedrich] Klingender, C[harle] Marquard, P[ier] C[hristiene] Firnhaber, H[enrich] E[rnst] Loreÿ, and commissary W[illia]m Porter DS, July 4, 1782 + +

    [View Digital Surrogate]

    9b. Bataillon des Grenadiers du Colonel de Loewenstein Compagnie du Capitaine Klingender. Pour 182. Jours de 25me. Decembr 1781 jusqu'au 24me. Juin 1782. inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Col. William Loewenstein, Capt. Friedrich Klingender, Lieut. Charle Marquard, 2nd Lieut. Pier Christiene Firnhaber, 2nd Lieut. Henrich Ernst Loreÿ, and commissary William Porter.
    +
    + + + + 11 + [Hesse-Cassel]. W[illia]m Loewenstein, [Rudolf] Mondorff, [Otto Philip] de Münchhausen, [Christian] de Hobe, [Henrich] Hille, and W[illia]m Porter DS, July 4, 1782 + +

    [View Digital Surrogate]

    10. Battaillon des Grenadiers du Colonel de Loewenstein de la Compagnie du Capit. Mondorff. pour 182 jours, du 25me. Dec: 1781 jusqu'au 24me. Juin 1782./ inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Col. William Loewenstein, Capt. Rudolf Mondorff, Lieut. Otto Philip de Münchhausen, 2nd Lieut. Christian de Hobe, 2nd Lieut. Henrich Hille, and commissary William Porter.
    +
    + + + [Hesse-Cassel]. W[illia]m Loewenstein, H[enrich] F[riedrich] Wachs, [Andre Louis] de Coudres, and W[illiam] Porter DS, July 4, 1782 + +

    [View Digital Surrogate]

    11. Battaillon des Grenadiers du Colonel de Loewenstein du Capitaine Wachs pour 182 jours du 25me. Decembr. 1781. jusqu'au le 24me. Juin 1782 inclusivement... Signed by Col. William Loewenstein, Capt. Henrich Friedrich Wachs, 2nd Lieut. Andre Louis de Coudres, and commissary William Porter.
    +
    + + + + 12 + [Hesse-Cassel]. J. G. Endemann, J[ean] Christoph Mulhause, F. W. Bode, Jaques Klimenhagen, and George Henri Loderhose DS, [June-July 1782] + +

    [View Digital Surrogate]

    12a. Regiment Hessois des Grenadiers du Lieutenant General Marquis D'Angelelli de la Compagne du Corps pour 182 jours du 25me. Decembre 1781. jusqu'au 24me. Juin 1782 inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Lieut. Col. J. G. Endemann, Capt. Lieut. Jean Christoph Mulhause, Major F. W. Bode, ensign Jaques Klimenhagen, and ensign George Henri Loderhose.
    +
    + + + [Hesse-Cassel]. J. G. Endemann, Jean Adam Bauer, F. W. Bode, Frederic August Göbell, and ensign C[ÿriaeus] L[ouis] Schultz DS, June 24, 1782 + +

    [View Digital Surrogate]

    12b. Regiment Hessois des Grenadiers du Lieutenant General Marquis D'Angelelli, de la Compagnie du Capitaine Bauer, pour 182 jours du 25me. Decemr. 1781. jusqu'au 24me. Juin 1782. inclusivement..... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Lieut. Col. J. G. Endemann, Capt. Jean Adam Bauer, Maj. F. W. Bode, 2nd Lieut. Frederic August Göbell, and ensign Cÿriaeus Louis Schultz.
    +
    + + + + 13 + [Hesse-Cassel]. J. G. Endemann, Henrÿ Christofle Fenner, F. W. Bode, Guillaume Boecking, and Jean Pierre Gerlach DS, June 24, 1782 + +

    [View Digital Surrogate]

    12c. Regiment Hessois des Grenadiers du Lieutenant General Marquis D'Angelelli, de la Compagnie du Lieutenant Colonel Endemann, pour 182 jours du 25me. Decembre 1781. jusqu'au le 24me. Juin 1782. inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Lieut. Col. J. G. Endemann, Capt. Lieut. Henrÿ Christofle Fenner, Maj. F. W. Bode, 2nd Lieut. Guillaume Boecking, and ensign Jean Pierre Gerlach.
    +
    + + + [Hesse-Cassel]. J. G. Endemann, Philippe Henri Wiedekindl, F. W. Bode, and Philippe Pauli DS, June 24, 1782 + +

    [View Digital Surrogate]

    12d. Regiment Hessois des Grenadiers du Lieutenant General Marquis D'Angelelli, de la Compagnie du Colonel Hatzfeld pour 182 jours du 25me. Decembre 1781. jusqu-au le 24me. Juin 1782. inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Lieut. Col. J. G. Endemann, Capt. Lieut. Philippe Henri Wiedekindl, Maj. F. W. Bode, and 2nd Lieut. Philippe Pauli.
    +
    + + + + 14 + [Hesse-Cassel]. J. R[einhold] Heilmann, P[hilip] Hillebrand, M[elchior] Martini, and Johannes Krupp DS, June 24, 1782 + +

    [View Digital Surrogate]

    12e. Regiment d'Infanterie du Colonel de Benning, de la Compagnie du Corps, pour 182 jours, du 25me. Decembre 1781 jusq-au 24me. Juin 1782. inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Capt. Lieut. Joh: Reinhold Heilmann, Lieut. Col. Philip Hillebrand, Come Maj. Melchior Martini, and Lieut. Johannes Krupp.
    +
    + + + [Hesse-Cassel]. P[hilip] Hillebrand, M[elchior] Martini, and [Johannes] Hoerker DS, June 24, 1782 + +

    [View Digital Surrogate]

    12f. Regiment d'Infanterie du Colonel de Benning, de la Compagnie du Lieutenant Colonel Hillebrand, pour 182 jours, du 25me. Decembre 1781, jusq au 24me. Juin 1782. inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Lieut. Col. Philip Hillebrand, Come Maj. Melchior Martini, and Capt. Lieut. Johannes Hoerker.
    +
    + + + + 15 + [Hesse-Cassel]. P[hilip] Hillenbrand, M[elchior] Martini, C[laudÿ] Stüer, and O[tto] R[oland] Scheuek DS, June 24, 1782 + +

    [View Digital Surrogate]

    12g. Regiment d'Infanterie du Colonel de Benning de la Compagnie ou Lieutenant Colonel Martini, pour 182 jours du 25me. Decembre 1781 jusq'au 24me. Juin 1782 inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Lieut. Col. Philip Hillebrand, Come Maj. Melchior Martini, Capt. Lieut. Claudÿ Stüer, and 2nd Lieut. Otto Roland Scheuek.
    +
    + + + [Hesse-Cassel]. P[hilip] Hillebrand, M[elchior] Martini, D[ietrich] Reinhard, F[rantz] A[dam] Kuhl, and B. E. Eckhard DS, June 24, 1782 + +

    [View Digital Surrogate]

    12h. Regiment d'Infantrie du Colonel de Benning de la Compagnie du Major de Prueschenck pour 182 jours du 25me. Decembre 1781 jusq'au 24me Juin 1782. inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Lieut. Col. Philip Hillebrand, Come Maj. Melchior Martini, Capt. Lieut. Dietrich Reinhard, Lieut. Frantz Adam Kuhl, and 2nd Lieut. B. E. Eckhard.
    +
    + + + + 16 + [Hesse-Cassel]. P[hilip] Hillebrand, M[elchior] Martini, J[eremias] Roepenak, J. Martini, and F[riedrich] Kroeschell DS, June 24, 1782 + +

    [View Digital Surrogate]

    12i. Regiment d'Infanterie du Colonel de Benning, de la Compagnie du Capitaine Sonneborn pour 182 jours du 25me. Decembre 1781, jusq'au 24me. Juin 1782. inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Lieut. Col. Philip Hillebrand, Come Maj. Melchior Martini, Lieut. Jeremias Roepenak, 2nd Lieut. J. Martini [Martinus Martini?], and ensign Friedrich Kroeschell.
    +
    + + + [Hesse-Cassel]. R[udolph] von Bünau, [Wilhelm] H[enrich] Bauer, H. Hessenmüller, F. G[ottlieb] Greben, F. D. Selig, and commissary W[illiam] Porter DS, July 3, 1782 + +

    [View Digital Surrogate]

    13a. Regiment d'Infanterie du Colonell de Bünau, de la Compagnie du Corps 182 Jours du 25me. Decembre 1781 Jusq'ue au 24me. Juin 1782, inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Colonel Come Capitain Rudolph von Bünau, 2nd Lieut. Wilhelm Henrich Bauer, Maj. H. Hessenmüller, ensign F. Gottlieb Greben, ensign F. D. Selig, and commissary William Porter.
    +
    + + + + 17 + [Hesse-Cassel]. R[udolph] von Bünau, H. Hessenmüller, P[hil.] F[erdinand] Wolff de Gudenberg, P[eter] Munch, and W[illiam] Porter DS, July 3, 1782 + +

    [View Digital Surrogate]

    13b. Regiment d'Infanterie du Collonel de Bünau, de la Compagnie Vacant Major Boecking, pour 182 jours du 25me. Decembr 1781 jusqu'au 24me. Juin 1782. inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Chef et Commandeur Rudolph von Bünau, Maj. H. Hessenmüller, 2nd Lieut. Phil. Ferdinand Wolff de Gudenberg, ensign Peter Munch, and commissary William Porter.
    +
    + + + [Hesse-Cassel]. R[udolph] von Bünau, [Joh. Christian] Goebell, H. Hessenmüller, [George] Lyncker, [Joh. Peter] Quentell, and W[illiam] Porter DS, July 3, 1782 + +

    [View Digital Surrogate]

    13c. Regiment d'Infanterie du Colonel de Bünau de la Compagnie du Capitain Goebell pour 182 Jours du 25me. Decembre 1781 Jusq'au 24me. Juin 1782 inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Chef et Commandeur Rudolph von Bünau, Capt. Joh. Christian Goebell, Maj. H. Hessenmüller, 2nd Lieut. George Lyncker, ensign Joh. Peter Quentell, and commissary William Porter.
    +
    + + + + 18 + [Hesse-Cassel]. R[udolph] von Bünau, Philipp Christian Firnhaber, H. Hessenmüller, C[hristian] O[tto] Frohn, Carl Hillebrand, and W[illiam] Porter DS, July 3, 1782 + +

    [View Digital Surrogate]

    13d. Regiment Infanterie du Colonel de Bünau, de la Compagnie du Major Platte, pour 182. Jours, du 25me. Decembre 1781 jusq'au 24me. Juin 1782 inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Chef et Commandeur Rudolph von Bünau, Capt. Lieut. Philipp Christian Firnhaber, Maj. H. Hessenmüller, 2nd Lieut. Christian Otto Frohn, 2nd Lieut. Carl Hillebrand, and commissary William Porter
    +
    + + + [Hesse-Cassel]. R[udolph] von Bünau, Joh. Adam Scheffer, H. Hessenmüller, Christoph Feldner, R[einhard] F[ried.] Scheffer, F[ried.] W[ilhelm Küster], and W[illiam] Porter DS, July 3, 1782 + +

    [View Digital Surrogate]

    13e. Regiment d'Infanterie du Colonel de Bünau de la Compagnie du Colonel Scheffer pour 182 jours du 25me. Decembr 1781. jusq au 24me. Juin 1782 inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Chef et Commandeur Rudolph von Bünau, Col. Joh. Adam Scheffer, Maj. H. Hessenmüller, Capt. Lieut. Christoph Feldner, 2nd Lieut. Reinhard Fried. Scheffer, ensign Fried. Wilhelm Küster, and commissary William Porter.
    +
    + + + + + [Hesse-Cassel]. C[arl] P[hilipp] Heÿmell, Carl de Wurmb, P[hiliph] H. Murhard, Henri de Bardeleben, W[ilhelm] Freÿenhagen, and W[illiam] Porter DS, July 5, 1782 +

    13f. Located in Oversize Manuscripts (see below)

    + +
    + + + + [Hesse-Cassel]. C[arl] P[hilipp] Heÿmell, Carl de Wurmb, J. F[riedrich] Venator, C[arl] E. Henckell, and W[illiam] Porter DS, July 5, 1782 +

    13g. Located in Oversize Manuscripts (see below)

    +
    + + + + [Hesse-Cassel]. C[arl] P[hilipp] Heÿmell, Carl de Wurmb, Carl de Haussen, and W[illiam] Porter DS, July 5, 1782 +

    13h. Located in Oversize Manuscripts (see below)

    +
    + + + [Hesse-Cassel]. C[arl] P[hilipp] Heÿmell, Carl de Wurmb, F[ried.] [Wilh.] Geister, [Carl Fried.] de Nagell, F[ried. F.] Murhard, and W[illiam] Porter DS, + July 5, 1782 +

    13i. Located in Oversize Manuscripts (see below)

    +
    + + + + 21 + [Hesse-Cassel]. C[arl] P[hilipp] Heÿmell, Carl de Wurmb, E[rasmus] E[rnst] Hinte, K[ristoph Dietrich] von Donop, E[manuel] R[osenus] Hausmann, G. Lehrbach, and W[illiam] Porter DS, July 5, 1782 + +

    [View Digital Surrogate]

    13j. Regiment d'Infanterie de Donop de la Compagnie du Colonel Hinte pour 182 jours du 25me. Decembre 1781 jusqu'au 24me. Juin 1782 inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Col. Carl Philipp Heÿmell, Maj. Carl de Wurmb, Col. Erasmus Ernst Hinte, Maj. Carl de Wurmb, Capt. Kristoph Dietrich von Donop, Lieut. Emanuel Rosenus Hausmann, ensign G. Lehrbach, and commissary William Porter.
    +
    + + + [Hesse-Cassel]. J. Fr[ederic] de Cochenhausen, [Michael] Waldenberg, Reinh. Ungewitter, Louis DesCoudres, and W[illiam] Porter DS, [June-July 1782] + +

    [View Digital Surrogate]

    14. Regiment Infanterie du Prince Hereditaire de Hesse de la Compagnie du Colonel de Cochenhausen pour 182 jours du 25me. Decembr. 1781. jusqu'au 24me. Juin 1782. inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Col. J. Frederic de Cochenhausen, Maj. Waldenberg, 2nd Lieut. Reinh. Ungewitter, ensign Louis DesCoudres, and commissary William Porter.
    +
    + + + + 22 + [Hesse-Cassel]. J. Fr[ederic] de Cochenhausen, [Mathew] de Fuchs, [Michael] Waldenberg, [Guillaume] v[on] Andersohn, [Valentin] Schoenewolff, J[ean] H[ermann] Gebhard, and W[illiam] Porter DS, [June-July 1782] + +

    [View Digital Surrogate]

    15a. Regiment Infanterie du Prince Hereditaire de Hesse de la Compagnie du Lieut: Colonel de Fuchs Pour 182 Jours du 25me. Decembr. 1781 Jusqu au 24me. Juin 1782. Inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Col. J. Frederic de Cochenhausen, Lieut. Col. Mathieu de Fuchs, Maj. Waldenberg, 2nd Lieut. Guillaume von Andersohn, ensign Valentin Schoenewolff, Capt. Lieut. Jean Hermann Gebhard, and commissary William Porter.
    +
    + + + [Hesse Cassel]. J. Fr[erderic] de Cochenhausen, C[aspar] Kümmell, [Michael] Waldenberg, J. D[iet.] Pfaff, and W[illiam] Porter DS, [June-July 1782] + +

    [View Digital Surrogate]

    15b. Regiment Infanterie du Prince Hereditaire de Hesse de la Compagnie du General Major de Hachenberg pour 182 Jours du 25me. Decembr 1781 jusqu'au 24me. Juin 1782 inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Col. J. Frerderic de Cochenhausen, Capt. Caspar Kümmell, Maj. Waldenberg, 2nd Lieut. J. Diet. Pfaff, and commissary William Porter.
    +
    + + + + 23 + [Hesse-Cassel]. J. Fr[ederic] de Cochenhausen, [Michael] Waldenberg, F[rederic] de Kendell, F[rederic] Wyneken, and W[illiam] Porter DS, [June-July 1782] + +

    [View Digital Surrogate]

    15c. Regiment Infanterie du Prince Hereditaire de la Compagnie du Major Waldenberg, pour 182 jours de 25me. Dec. 1781 jusqu au 24me. uin 1782 inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Col. J. Frederic de Cochenhausen, Maj. Michael Waldenberg, 2nd Lieut. Frederic de Kendell, ensign Frederic Wyneken, and commissary William Porter.
    +
    + + + [Hesse-Cassel]. G[eorge] E. Lengecke DS, March 12, 1778 + +

    [View Digital Surrogate]

    15d. Return of Emendements made in the Quarters of Colonel de Lengeckes Batallion of Hessian Grenadiers. Signed by George E. von Lengecke.
    +
    + + + [Hesse-Cassel]. C[hristian] V[on] Romrod, E[manuel] de Wilmowsky, J[ohann] L[udolph] Rodemann, E[hrhard] de Drach, C[arl] de Ehrenstein, and W[illiam] Porter DS, + July 5, 1782 +

    16. Located in Oversize Manuscripts (see below)

    +
    + + + + [Hesse-Cassel]. C[hristian] V[on] Romrod, H[ans] M[oritz] de Biesenrodt, E[manuel] de Wilmowsky, [Carl Henrich] de Toll, M[artin] L[udwig] Wiscker, and W[illiam] Porter DS, July 5, 1782 +

    17. Located in Oversize Manuscripts (see below)

    +
    + + + + [Hesse-Cassel]. C[hristian] V[on] Romrod, E[manuel] de Wilmowsky, J[ohann] M[elchior] Rothe, C[arl Wilhelm] de Bultzingsloewen, C[arl] de Bode, and W[illiam] Porter DS, July 5, 1782 +

    18. Located in Oversize Manuscripts (see below)

    +
    + + + [Hesse-Cassel]. C[hristian] V[on] Romrod, E[manuel] de Wilmowsky, [Conrad] Schraidt, C[arl Heinrich Friedrich] Lange, and W[illiam] Porter DS, + July 5, 1782 +

    19. Located in Oversize Manuscripts (see below)

    +
    + + + [Hesse-Cassel]. C[hristian] V[on] Romrod, E[manuel] de Wilmowsky, H[ieronimus] Berner, [Friedrich Wilhelm] Fey, and W[illiam] Porter DS, + July 5, 1782 +

    20a. Located in Oversize Manuscripts (see below)

    +
    + + + + [Hesse-Cassel]. Charles de Kietzell, G. Langenschwartz, C[hristian] Münch, Jean Paul, and G[eorge] Langenschwartz DS, June 24, 1782 +

    20b. Located in Oversize Manuscripts (see below)

    +
    + + + + 27 + [Hesse-Cassel]. Charles de Kietzell, G. Langenschwartz, Lewis de Schallern, Guillaume Justi, J[ohann] P[hilipp Henri] Petri, and Henri Zilcher DS, June 24, 1782 + +

    [View Digital Surrogate]

    20c. Regiment d'Infanterie du Colonel De Seitz de la Compagnie du Lieutenant Colonel De Schallern pour 182. Jours du 25me. Decbr. 1781. jus'qu au 24me. Juin 1782 inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Col. Charles de Kietzell, Maj. G. Langenschwartz, Lieut. Col. Lewis de Schallern, Lieut. Guillaume Justi, ensign Johann Philipp Henri Petri, and ensign Henri Zilcher.
    +
    + + + [Hesse-Cassel]. Charles de Kietzell, G. Langenschwartz, George Langenschwartz, C[arl] A[ugust] Vieth, Ludw[ig] Friedr[ich] v[on] Boineburg, and G. Christian Itter DS, June 24, 1782 + +

    [View Digital Surrogate]

    20d. Regiment d'Infanterie du Colonel de Seitz de la Compagnie du Major Langenschwartz pour 182 Jours du 25me December 1781 Jusqu'au 24me. Juin 1782 inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Col. Charles de Kietzell, Maj. G. Langenschwartz, Capt. George Langenschwartz, 2nd Lieut. Carl August Vieth, 2nd Lieut. Ludwig Friederich von Boineburg, and ensign Christian Itter.
    +
    + + + + 28 + [Hesse-Cassel]. Charles de Kietzell, G. Langenschwartz, J[ean] Neuman, J[acob] W[ilhelm] Bode, Jean Knies, and E[manuel] Muuss DS, June 24, 1782 + +

    [View Digital Surrogate]

    20e. Regiment d Infanterie du Colonel de Seitz de la Compagnie du Major Neuman, pour 182 Jours du 25me. Decembr. 1781 jusqu'au 24me. Juin 1782, inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Col. Charles de Kietzell, Maj. G. Langenschwartz, Maj. Jean Neuman, Capt. Lieut. Jacob Wilhelm Bode, 2nd Lieut. Jean Knies, and ensign Emanuel Muuss.
    +
    + + + [Hesse-Hanau]. G[eorg] Pausch and W[illiam] Porter DS, July 20, 1781 + +

    [View Digital Surrogate]

    21a. Muster Roll of the present Officers and Men, of a Detachement of His Serene Highness Prince of Hessen Hanau Artillery, as muster'd by His Britannick Majesty's Commissary Wm. Porter Esqr., at Brooklyn on Long Island July the 20. de. 1781.
    +
    + + + + 29 + [Hesse-Hanau, Jäger Corps]. G[eorg] Pausch and W[illiam] Porter DS, July 20, 1781 + +

    [View Digital Surrogate]

    21b. Muster Roll. of His Serene Highness Prince of Hesse Hanau Yager Recruits, sent over from Hanau in the year 1780, as mustre'd by His Britanick Majesty's Commissary of Muster, Wm. Porter Esqr., at Fort Brooklyn on Long-Island July the 20. 1781.
    +
    + + + [Waldeck. 3rd Regiment]. C[hristoffle] Alberti, G. de Haacke, and W[illiam] Porter DS, July 12, 1782 + +

    [View Digital Surrogate]

    22. Muster Roll of Captain Albertis Compy: of the 3d. Regiment of Waldeck, for 182 Days, from the 25th. Decbr 1781 to the 24th. June 1782... Signed by Captain Christoffle Alberti, Captain G. de Haacke, and commissary William Porter.
    +
    + + + + 30 + [Waldeck. 3rd Regiment]. C[hristoffle] Alberti, Keppel, and Nolting 2 DS Fragments, August 24, 1778 + +

    [View Digital Surrogate]

    23. Two fragments of muster rolls. Each concluded: Passe'en Revue la Susdite Compagnie du Troissieme Regiment de Waldeck, Savoir le Capitaine et Son Garçon, un Premier Lieutenant et Son garçon, un Enseigne et Son Garçon, trois Sergeants, un Fourier, un Capit: d'armes, un Chirurgien, Six Caporaux, deux Tambours, et quatre vingt dix et un Soldats ÿ compris le Solliciteur, le tout duement et complettement armé. Both signed by Capt. C. Alberti, Lieut. Keppel, and ensign Nolting.
    +
    + + + [Waldeck. 3rd Regiment]. Augustin Alberti, G. de Haacke, and W[illiam] Porter DS, July 12, 1782 + +

    [View Digital Surrogate]

    24. Muster Roll of Lieut. Colonel and Capt. De Horns Company of the 3d. Regiment of Waldeck for 182 Days, from the 25 of Decembr 1781 to the 24 of June 1782... Signed by Capt. Lieut. Augustin Alberti, Capt. G. de Haacke, and commissary William Porter.
    +
    + + + + 31 + [Waldeck. 3rd Regiment]. C. De Horn, W[ilhelm] Keppel, C[arl] Hohmann, Lud[wig] Schmid[t], C[arl] Müller, and W[illiam] Porter DS, June 24, 1782 + +

    [View Digital Surrogate]

    25a. Major Penzels Compagnie [3rd Regiment of Waldeck]. Muster roll, Dec. 25, 1781 to June 24, 1782. Signed by 1st Lieut. Wilhelm Keppel, 2nd Lieut. Carl Hohmann, ensign Ludwig Schmidt, ensign Carl Müller, Lieut. Col. Albrecht De Horn, and commissary William Porter.
    +
    + + + [Waldeck. 3rd Regiment]. A[lbrecht] De Horn, A[lexander] de Baumbach, F[riedr.] de Wilmowsky, and W[illiam] Porter DS, July 12, 1782 + +

    [View Digital Surrogate]

    25b. Muster Roll of the Vacant Company, of the 3d Regiment of Waldeck, for 182 Days from the 25th. Of Decbr 1781. to the 24th. June 1782... Signed by Lieut. Col. Albrecht De Horn; Capt. Lieut. Alexander de Baumbach; Lieut. Friedr. de Wilmowsky, and commissary William Porter.
    +
    + + + + 32 + [Brunswick]. Gebhard Partially Printed DS, March 9, 1779 + +

    [View Digital Surrogate]

    26. T. F. Gebhard, Lieutenant and Pay Master of the Grenadier Bataillon de Mengen, signed this partially printed document for the receipt of 871/2/2 subsistence money for a body of Brunswick troops, held prisoner in the Province of Massachusetts Bay. Imprint beginning "RECEIVED of DAVID THOMAS, Esq; Deputy-Paymaster of His Majesty's Forces in North-America," Docket: "Expedition to Rhode Island."
    +
    + + + [Brunswick and Great Britain]. William Faucit and J. B. von Feronce DS Copy, January 9, 1776 + +

    [View Digital Surrogate]

    27. Tractal. Zwischen Sr. Grossbrittanischen Majestat und dem regierenden Herzoge von Braunschweig Unterzeichnet Braunschweig d. 9 Januar 1776. Handwritten copy of the treaty between Great Britain and the Duke of Brunswick, providing for the use of Brunswick troops against the Americans.
    +
    + + + + 33 + [Anspach]. de Reitzenstein, Henry Model, and Anthony Morengill DS, March 16, 1778 + +

    [View Digital Surrogate]

    28. Account of Reparations in the Quarters of the first Regiment of the Anspachs Troops, during winter quarters from 1777 to 1778. Signed by Maj. de Reitzenstein and Quartermaster Maj. Henry Model. Docket: "Barrack Account of the first Regt. Of Anspach Troops."
    +
    + + + [Anspach]. Christoph von Waldenfels Partially Printed DS, July 13, 1779 + +

    [View Digital Surrogate]

    29. Receipt on acount of subsistence for a Corps of Anspach Chasseurs. Signed by Captain Christoph von Waldenfels. Imprint beginning: "RECEIVED from THOMAS BARROW, Esq; Deputy of the Paymaster General of His Majesty's Forces."
    +
    + + + + 34 + [Brunswick]. H. Cleve LS, August 1782 + +

    [View Digital Surrogate]

    30. Sending enclosed papers [not present] to an unidentified Lord, at the request of the Duke of Brunswick and Brunswick Minister of State Feronce Baron de Rotencreutz. "Your Lordeship would be pleased, to give necessary Orders for their further Safety."
    +
    + + + Victualling Office Commissioners. J[ohn] Slade, A[lexander] Chorley, and G[eorge] P[hilipps] Towry LS to Rich[ar]d Rigby, May 24, 1786 + +

    [View Digital Surrogate]

    31. Discussing accounts made out by the Victualling Office for foreign troops aboard British ships of war and transports. Inability to distinguish troops of the Landgrave of Hesse from those of Hesse-Hanau, on account of not receiving such a distinction in the lists from the ships' pursors.
    +
    + + + + 35 + Victualling Office Commissioners. Geo[rge] Cherry, A[lexander] Chorley, G[eorge] P[hilipps] Towry, W[illia]m Lance, and W[illiam] Boscawen LS to [Richard] Rigby, December 13, 1786 + +

    [View Digital Surrogate]

    32. Respecting the settlement of accounts pertinent to shipboard stoppages during the late war, for the victualling of soldiers, women, and children in multiple regiments. Signed by George Cherry, Alexander Chorley, George Philipps Towry, William Lance, and William Boscawen.
    +
    + + + Victualling Office Commissioners. Geo[rge] Cherry, J[ames] Kirke, and G[eorge] P[hilipps] Towry LS to [William Grenville, 1st Baron] Grenville and [Constantine Phipps, 2nd Baron] Mulgrave, November 8, 1786 + +

    [View Digital Surrogate]

    33. Letter to the Paymasters of the Forces respecting the settlement of accounts pertinent to shipboard stoppages during the late war, for the victualling of soldiers, women, and children in multiple regiments. Signed by George Cherry, James Kirke, and George Philipps Towry
    +
    + + + W[illiam] Porter ALS to [William Petty, 1st Marquess of Lansdowne, 2nd Earl of] Shelburne, August 5, 1782, with 9 enclosures +

    34. Located in Oversize Manuscripts (see below)

    +
    + + + 36[Hesse-Cassel]. Th[oma]s Carleton DS, [1780] + +

    [View Digital Surrogate]

    35. Distribution De l'Argent de Bagage & Batt & 200 Jours, Argent de Fourages pour les Regiment, d Kniphausen [Knyphausen] pour L'Anné 1780. Signed by Quartermaster General Thomas Carleton.
    +
    + + + + 37 + [Hesse Cassel]. Tho[ma]s Gamble and Tho[ma]s Carleton DS, [1781] + +

    [View Digital Surrogate]

    36. Distribution des 200 Jours Argent de Fourages Bagage Et Batt, pour les Regiment Hessois de Son Excellence Le Lieutenant General Kniphausen [Knyphausen] pour 1781. [With] Distribution des . . . Argent de Fourage Bagage Et Batt pour le Regiment Hessois de Son Excellence le Lieutenant General D'Lossberg, pour L'Anné 1781. [With] Distribution des 165 Jours Argent de Fourage pour le Regiment Hessois de Son Excellence le Lieutenant d'Kniphausen pour L'Anné 1781. Signed by Thomas Gamble and Quartermaster General Thomas Carleton.
    +
    + + + Payments on Account of the Foreign Troops in General... Document, [after July 1783, regarding accounts June 1, 1776-July 28, 1783] + +

    [View Digital Surrogate]

    The following Payments on Account of the Foreign Troops in General have been Extracted from the American Extraordinaries. Includes accounts marked Quebec, Montreal, New York, Convention Army, and Rhode Island.
    +
    + + + + 38 + [Friedrich Adolph, Freiherr von] Riedesel DS, September 13, 1779 + +

    [View Digital Surrogate]

    Voucher for Subsistence on Account to the Troops of His Serene Highness the Duke of Brunswick.
    +
    + + + Pralle (surgeon) 2 DsS, July 20, 1781 + +

    [View Digital Surrogate]

    Two documents signed by surgeon Pralle, certifying lists of sick men in the Regiment of Maj. Gen. de Rhetz and a detachment of Regiment Prince Frederick, Brunswick Troops.
    +
    + + + + : Oversize Manuscripts[Brunswick]. Fr[iedrich] Cleve DS, June 26, 1783 +

    [View Digital Surrogate]

    2c. Raport von dem Hochfürstlich Braunschweigischen Corps in American unter Commando des General Major v. Riedesel. Signed by Cleve.
    +
    + + + + [Hesse-Cassel]. C[arl] P[hilipp] Heÿmell, Carl de Wurmb, P[hiliph] H. Murhard, Henri de Bardeleben, W[ilhelm] Freÿenhagen, and W[illiam] Porter DS, July 5, 1782 +

    [View Digital Surrogate]

    13f. Regiment d'Infanterie du Lieutenant General de Donop, de la Compagnie du Corps, pour 182 Jours, du 25me. Decembre 1781. jusqu'au 24me. Juin 1782 inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Col. Carl Philipp Heÿmell, Maj. Carl de Wurmb, Capt. Philip H. Murhard, Lieut. Henri de Bardeleben, 2nd Lieut. Wilhelm Freÿenhagen, and commissary William Porter.
    +
    + + + + [Hesse-Cassel]. C[arl] P[hilipp] Heÿmell, Carl de Wurmb, J. F[riedrich] Venator, C[arl] E. Henckell, and W[illiam] Porter DS, July 5, 1782 +

    [View Digital Surrogate]

    13g. Regiment d'Infanterie de Donop de la Compagnie du Major Küzleben pour 182 jours du 25me. Decembre. 1781 jusque au 24me. Juin 1782 inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Col. Carl Philipp Heÿmell, Maj. Carl de Wurmb, Capt. J. Friedrich Venator, ensign Carl E. Henckell, and commissary William Porter.
    +
    + + + + [Hesse-Cassel]. C[arl] P[hilipp] Heÿmell, Carl de Wurmb, Carl de Haussen, and W[illiam] Porter DS, July 5, 1782 +

    [View Digital Surrogate]

    13h. Regiment d'Infanterie de Donop de la Compagnie du Major de Wurmb pour 182 jours du 25me. Decembre 1781 jusqu'au 24me. Juin 1782/. inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Col. Carl Philipp Heÿmell, Maj. Carl de Wurmb, ensign Carl de Haussen, and commissary William Porter.
    +
    + + + [Hesse-Cassel]. C[arl] P[hilipp] Heÿmell, Carl de Wurmb, F[ried.] [Wilh.] Geister, [Carl Fried.] de Nagell, F[ried. F.] Murhard, and W[illiam] Porter DS, + July 5, 1782 +

    [View Digital Surrogate]

    13i. Regiment d'Infanterie de Donop de la Compagnie du Colonel Heymel pour 182 Jours du 25me. Decembre 1781 jusqu'au 24me. Juin 1782 inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Col. Carl Philipp Heÿmell, Maj. Carl de Wurmb, Capt. Lieut. Fried. Wilh. Geister, Lieut. Carl Fried. de Nagell, ensign Fried. F. Murhard, and commissary William Porter.
    +
    + + + [Hesse-Cassel]. C[hristian] V[on] Romrod, E[manuel] de Wilmowsky, J[ohann] L[udolph] Rodemann, E[hrhard] de Drach, C[arl] de Ehrenstein, and W[illiam] Porter DS, + July 5, 1782 +

    [View Digital Surrogate]

    16. Regiment de Lossberg jun. de Hesse de la Compagnie du Major Bauermeister pour 182 jours du 25me. Decembre 1781. jusqu'au 24me. Juin 1782. inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Christian von Romrod, Maj. Emanuel de Wilmowsky, Capt. Lieut. Johann Ludolph Rodemann, 2nd Lieut. Ehrhard de Drach, 2nd Lieut. Carl de Ehrenstein, and commissary William Porter.
    +
    + + + + [Hesse-Cassel]. C[hristian] V[on] Romrod, H[ans] M[oritz] de Biesenrodt, E[manuel] de Wilmowsky, [Carl Henrich] de Toll, M[artin] L[udwig] Wiscker, and W[illiam] Porter DS, July 5, 1782 +

    [View Digital Surrogate]

    17. Regiment de Lossberg jun. de Hesse de la Compagnie du Lieutenant Colonel de Biesenrodt pour 182 jours du 25me. Decembre 1781 jusq'au 24me. Juin 1782 inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Col. Christian von Romrod, Lieut. Col. Hans Moritz de Biesenrodt, Maj. Emanuel de Wilmowsky, Capt. Lieut. Carl Henrich de Toll, 2nd Lieut. Martin Ludwig Wiscker, and commissary William Porter.
    +
    + + + + [Hesse-Cassel]. C[hristian] V[on] Romrod, E[manuel] de Wilmowsky, J[ohann] M[elchior] Rothe, C[arl Wilhelm] de Bultzingsloewen, C[arl] de Bode, and W[illiam] Porter DS, July 5, 1782 +

    [View Digital Surrogate]

    18. Regiment de Losberg jun. de Hesse de la Compagne du Corps, pour 182 jours 25me. Decembre 1781 jusq'au 24me. Juin 1782. inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Col. Christian von Romrod, Maj. Emanuel de Wilmowsky, Capt. Lieut. Johann Melchior Rothe, 2nd Lieut. Carl Wilhelm de Bultzingsloewen, ensign Carl de Bode, and commissary William Porter.
    +
    + + + [Hesse-Cassel]. C[hristian] V[on] Romrod, E[manuel] de Wilmowsky, [Conrad] Schraidt, C[arl Heinrich Friedrich] Lange, and W[illiam] Porter DS, + July 5, 1782 +

    [View Digital Surrogate]

    19. Regiment de Losberg jun. de Hesse de la Compagnie du Colonel de Romrod pour 182 jours du 25me. Decembre 1781 jusqu]au 24me. Juin 1782 inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Col. Christian von Romrod, Maj. Emanuel de Wilmowsky, Capt. Lieut. Conrad Schraidt, ensign Carl Heinrich Friedrich Lange, and commissary William Porter.
    +
    + + + [Hesse-Cassel]. C[hristian] V[on] Romrod, E[manuel] de Wilmowsky, H[ieronimus] Berner, [Friedrich Wilhelm] Fey, and W[illiam] Porter DS, + July 5, 1782 +

    [View Digital Surrogate]

    20a. Regiment de Losberg jun. de Hesse, de la Compagnie du Major de Wilmowskÿ pour 182 jours du 25me. Decembre 1781 jusq'au 24me. juin 1782 inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Col. Christian von Romrod, Maj. Emanuel de Wilmowsky, 2nd Lieut. Hieronimus Berner, ensign Friedrich Wilhelm Feÿ, and commissary William Porter.
    +
    + + + + [Hesse-Cassel]. Charles de Kietzell, G. Langenschwartz, C[hristian] Münch, Jean Paul, and G[eorge] Langenschwartz DS, June 24, 1782 +

    [View Digital Surrogate]

    20b. Regiment d'Infanterie du Colonel de Seitz, Compagnie du Colonel de Kietzell pour 182 Jours du 25me. Decembr 1781 Jusqu au 24me. Juin 1782 inclusivement... Muster roll, Dec. 25, 1781-June 24, 1782. Signed by Col. Charles de Kietzell, Maj. G. Langenschwartz, Capt. Lieut. Christian Münch, 2nd Lieut. Jean Paul, and 2nd Lieut. George Langenschwartz.
    +
    + + + W[illiam] Porter ALS to [William Petty, 1st Marquess of Lansdowne, 2nd Earl of] Shelburne, August 5, 1782 +

    [View Digital Surrogate]

    34. Enclosing a List of the General & Staff Officers of the Hessian Troops, A State of the Foreign Regiments & Detachments at New York, as Mustered to the 24th of June 1782, together with the names, and reasons of absence, of the Officers who did not appear at the Muster. Inclosing [Hesse Cassel. Army]. General and staff officers, 26 July 1782; and Gt. Brit. Army in America. German regiments. State of Foreign Troops at New York … [24 June 1782], with list of officers not present, and 6 individual returns giving the state of the following regiments: Lowenstein, Platte, Donop, Losberg Jun., Bünau, and detachments of regiments in Canada.
    +
    + + + + [William Porter] AD, [between July 13 and August 5, 1782] +

    [View Digital Surrogate]

    34. Names and reasons of absence of the Officers of the Foreign Troops, who were not present at the Muster taken at New York to the 24 June 1782. Enclosed in W[illiam] Porter ALS to the Earl of Shelburne, August 5, 1782.
    +
    + + Fr[iedrich Wilhelm von] Losberg DS, July 26, 1782 +

    [View Digital Surrogate]

    34. General and Staff Officers of the Hessian Troops from the 25th. December 1781 to the 24th. June 1782. Enclosed in W[illiam] Porter ALS to the Earl of Shelburne, August 5, 1782.
    +
    + + W[illiam] Porter ADS, [July] 1782 +

    [View Digital Surrogate]

    34. State of the Foreign Troops at New York, as Mustered for 182 days from the 25th of December 1781 to the 24 of June 1782... Enclosed in W[illiam] Porter ALS to the Earl of Shelburne, August 5, 1782.
    +
    + + W[illiam] Porter ADS, July 3, 1782 +

    [View Digital Surrogate]

    34. State of the Hessian Regiment Bunau for the Muster to the 24 June 1782. Enclosed in W[illiam] Porter ALS to the Earl of Shelburne, August 5, 1782.
    +
    + + W[illiam] Porter ADS, July 5, 1782 +

    [View Digital Surrogate]

    34. State of the Hessian Regiment Donop . . . For the Muster to the 24 June 1782. Enclosed in W[illiam] Porter ALS to the Earl of Shelburne, August 5, 1782.
    +
    + + W[illiam] Porter ADS, July 5, 1782 +

    [View Digital Surrogate]

    34. State of the Hessian Regiment Losberg Junior for the Muster to the 24 June 1782. Enclosed in W[illiam] Porter ALS to the Earl of Shelburne, August 5, 1782.
    +
    + + W[illiam] Porter ADS, July 4, 1782 +

    [View Digital Surrogate]

    34. State of the Battallion of Hessian Grenadiers Commanded by Colonel de Lowenstein for the Muster to the 24 June 1782. Enclosed in W[illiam] Porter ALS to the Earl of Shelburne, August 5, 1782.
    +
    + + W[illiam] Porter ADS, July 4, 1782 +

    [View Digital Surrogate]

    34. State of the Battallion of Hessian Grenadiers Commanded by Major Platte (late Graffs) to the 24 June 1782. Enclosed in W[illiam] Porter ALS to the Earl of Shelburne, August 5, 1782.
    +
    + + W[illiam] Porter ADS, July 12, 1782 +

    [View Digital Surrogate]

    34. State of the Detachments at New York of the Foreign Regiments in Canada for the Muster from 25 Decem. 1781 to the 24 June 1782... Enclosed in W[illiam] Porter ALS to the Earl of Shelburne, August 5, 1782.
    +
    +
    + + + + Related collections held by the Clements Library include the following Revolutionary War collections that deal specifically with Hessian involvement: + + Loftus Cliffe papers + + + Henry Clinton papers + + + Benjamin Gilbert letterbook + + + Nathanael Greene papers + + + Freiherr von Jungkenn papers + + + Frederick Mackenzie papers + + + J.R. (Hessian) Journal + + + + +

    Auerbach, Inge. Die Hessen in Amerika 1776-1783. Darmstadt: Hessische Historische Kommission Darmstadt, 1996.

    +

    Mackenzie, Frederick, and Allen French. A British fusilier in revolutionary Boston: being the diary of Lieutenant Frederick Mackenzie, adjutant of the Royal Welch fusiliers, January 5-April 30, 1775, with a letter describing his voyage to America. Cambridge: Harvard University Press, 1926.

    +
    +
    +
    +
    diff --git a/sample-ead/clements/marshallfam_final.xml b/sample-ead/clements/marshallfam_final.xml new file mode 100755 index 0000000..3a01266 --- /dev/null +++ b/sample-ead/clements/marshallfam_final.xml @@ -0,0 +1,419 @@ + + + + + + umich-wcl-M-2549mar + + + Finding Aid for Humphry and Moses Marshall Papers + Collection processed and finding aid created by Manuscripts Division Staff, 1990; Shannon Wait, March 2010 + + + William L. Clements Library, University of Michigan + 2010 + + + + Encoded finding aid created by Meg Hixon, October 2010 + + The finding aid is written in English + + Finding aid prepared using Describing Archives: A Content Standard (DACS) + + + + 2010-10-21 + Original encoding from Word 2007 file using Word macros and Xmetal. + + + + + + Manuscripts DivisionWilliam L. Clements LibraryUniversity of Michigan + Finding aid forHumphry and Moses Marshall Papers, 1721-1863 + Finding aid created by Manuscripts Division Staff, 1990; Shannon Wait, March 2010 + + + + + + Marshall, Humphry, 1722-1801 and Marshall, Moses, 1758-1813 + + Humphry and Moses Marshall papers 1721-1863 + + Marshall, Humphry and Moses papers + + 1.25 linear feet + + wclmss001347 + The material is in English + + The Humphry and Moses Marshall papers primarily document the careers of botanist Humphry Marshall and his nephew and business associate, Moses Marshall. + + + William L. Clements Library, University of Michigan + + + + + +

    1990, 1999. M-2549; M-4048.

    +
    + +

    Cataloging funded by the National Endowment for the Humanities (NEH) and the "We the People" project.

    +
    + +

    The collection is open for research.

    +
    + +

    Copyright status is unknown

    +
    + +

    Humphry and Moses Marshall Papers, William L. Clements Library, The University of Michigan

    +
    +
    + + Biography +

    + Humphry Marshall +

    +

    Humphry Marshall was born in West Bradford, Pennsylvania, in 1722, the eighth child of Abraham and Mary Hunt Marshall. His parents, Quaker immigrants from Derbyshire, England, provided him with only a rudimentary English education, which ceased altogether at age 12, when he was apprenticed to a stonemason. However, from very early in life, Marshall was drawn to the study of natural history and continued his education on his own, reading widely. With the encouragement of his cousin, the botanist John Bartram, Marshall developed considerable practical skill in botany and natural history, and began to cultivate friendships with other scientists in America and abroad in the 1750s. Eventually, his correspondents included the British botanists John Fothergill, Peter Collinson, Sir Joseph Banks, and John Coakley Lettsom; the American scientists Thomas Parke, Benjamin Franklin, George Logan, Joseph Storrs, Timothy Pickering, John Dickinson, and Caspar Wistar; and French scientists and plant collectors including Michel-Guillaume St. Jean de Crèvecoeur, the Comtesse de Tesse, and Conrad-Alexandre Gérard; a number of German, Dutch, Swedish and Irish plant collectors and scientists.

    +

    In 1748, Marshall married Sarah Pennock (ca.1720-1766) and took up the management of his father's farm near the west branch of the Brandywine River. During the next few years, his time was largely consumed by farming; however, he continued to use free moments to pursue his botanical research. By the late 1750s, he began to exchange locally collected specimens with natural historians in other parts of the country and Great Britain, receiving scientific equipment, books, exotic specimens, money, or marketable goods such as linen in exchange. By 1764, when he began a major enlargement of his father's farmhouse, his botanical work had advanced to a stage that, necessitated his adding a conservatory for the culture of rare plants, probably the first such structure in Chester County.

    +

    Upon the death of his father in 1767, Marshall was left a substantial inheritance, enabling him to concentrate more time and resources on his botanical work. By this time, his correspondence with the British botanist, John Fothergill, had developed into an especially fruitful relationship, for Fothergill not only encouraged Marshall to collect plants beyond the confines of Chester County, but he paid well for Marshall's efforts. Equally important, Fothergill helped introduce Marshall to other botanists and plant collectors who had the resources to pay for American plants. Within a few years, Marshall found that he could depend almost entirely on horticulture and plant collecting for his income. His business expanded rapidly by means of a network of relationships established through family members, fellow Quakers, and fellow scientists.

    +

    In 1772, Marshall established a botanical garden on his estate, stocking it with herbaceous and arboreal representatives of the local flora and as many exotic plants as he could obtain from other parts of the nation and Europe. The following year, he began the construction of a new house adjacent to the garden, handling all phases of the construction by himself, and in that year, he was selected as a trustee of the General Loan Office. Despite pro-Independence sentiments, including long-standing support for the non-importation agreements, Marshall was in a precarious position as a pacifist and Quaker during the early days of the Revolution. He carefully monitored the events of the war as they unfolded, and was himself caught up when, in 1777, the Trustees of the Loan Office resigned as a body. Under the leadership of Samuel Preston Moore, the Trustees felt that to remain true to their affirmations that they would carry out the business of the crown, they should resign rather than follow the new laws.

    +

    Marshall's publishing career included contributions on tortoises, sunspots, and agriculture, but he is most remembered for Abrustrum Americanum (1785), the first botanical treatise written by a native American on American plants, produced in America. Despite slow sales in the United States, its use of Linnaean taxonomic nomenclature (though the plants are arranged alphabetically in the text) considerably enhanced Marshall's reputation among his European clientele. His scientific work and service to the scientific community earned Marshall honorary memberships in the Philadelphia Society for Promoting Agriculture and the American Philosophical Society.

    +

    Following the death of his first wife, Marshall married Margaret Minshall (1744-1823) in 1788. Neither marriage produced children. In the last two years of his life, his vision was greatly impaired by cataracts, for which he underwent an apparently unsuccessful surgery. He died in 1801 and was buried at Bradford Meeting House.

    +

    + Moses Marshall +

    +

    Moses Marshall was born in West Bradford, Pennsylvania, on November 30, 1758, to Humphry's younger brother, James Marshall and his wife, Sarah. Moses received an English and classical education, and from 1776 through 1779, he studied medicine in Wilmington, Delaware, under Dr. Nicholas Way. The Revolution, and particularly the nearby Battle of the Brandywine (1777), provided Moses a unique opportunity to sharpen his surgical skills. Moses soon abandoned his medical practice in favor of assisting his uncle in his expanding botanical and horticultural enterprise.

    +

    By late 1778, he was participating fully in his uncle's operations, assisting in locating, identifying, propagating, and shipping plant specimens, and he became quite a skilled "practical" botanist in his own right. His most significant contributions were in the preparation of Arbustrum Americanum, and the role he played on numerous exploring expeditions undertaken for the benefit of his uncle and their patrons. Moses appears to have taken great relish in these expeditions, and it was partly for his benefit that his uncle pressed scientific friends, including Franklin, Wistar, Jefferson (albeit indirectly), and members of the American Philosophical Society, to finance and organize a major expedition to the Missouri River region in 1785.

    +

    Moses' interest in botany appears to have waned by the mid-1790s. In 1796, Gov. Mifflin appointed him Justice of the Peace in Chester County, and his duties in this capacity occupied a great deal of his time. Moses' focus seems further to have shifted away from botany upon his marriage to Alice Pennock in 1797. The couple had six children. By the time of his uncle's death, Marshall had more or less washed his hands of the botanical and horticultural business, suggesting that he no longer had any time to fill orders for patrons and that his uncle's notes probably held little information of value to other botanists. Moses Marshall died in Philadelphia on October 13th, 1813.

    +

    + Moses Marshall, Jr. +

    +

    The life of Moses Marshall, Jr., is considerably less well known than that of his father or his great uncle. Moses, Jr., studied medicine in Philadelphia during the 1830s, and established a general practice in West Bradford shortly thereafter. Apparently he lectured publicly on scientific subjects, at least periodically, during the 1840s or 50s. Politically, Moses, Jr., aligned himself with the Democratic Party during the Civil War period, opposed actions to keep the South in the Union by force, and (unlike his mildly abolitionist great uncle), did not seem to consider slavery a major evil.

    +
    + +

    The collection is arranged into three series: "Correspondence, Writings, and Documents," "Poetry," and "Bound Materials."

    +
    + +

    The Humphry and Moses Marshall papers consist of 233 items: 181 letters (including drafts), 15 legal documents, 11 manuscripts, 10 poems, 4 account books, and several each of books, letter books, arithmetic notebooks, and broadsides. The materials span from 1721-1863.

    +

    The first series contains correspondence and a few legal documents and writings, arranged chronologically. The correspondence dates from 1733 to 1863 and is predominantly incoming. Humphry Marshall is the recipient of the bulk of the material (approximately 40%), followed by Moses Marshall (approx. 30%). The majority of the outgoing correspondence comes from the two "letterbooks" kept by Moses Marshall in 1791 and 1793. These books contain correspondence from a couple of days each, but provide a record of Marshall's response to inquiries from clients.

    +

    The bulk of correspondence prior to 1800 relates to Marshall's horticultural and botanical operations. Substantial numbers of orders are for plants and seeds from clients in other parts of the United States, England, Ireland, France, and Germany, and communications with middle men in the operation detail methods of packaging and shipping. Also of botanical interest is the correspondence with Marshall's "agents" in the field, including Moses Mendenhall, John and James Watson, Matthias King, Samuel Kramsh, and James Kenny. These men were admirers and friends of Humphry Marshall, and provided him with specimens collected from various regions of the country. The unsuccessful search for wild Franklinia alatamaha is mentioned in several letters (April 8, 1788: "There is not a plant of the Franklinia to be found"), and other letters include discussions of scientific expeditions either actualized or planned, mostly involving the participation of Moses Marshall. On November 14, 1786, Humphry described the logistics of tracking down ginseng, providing insight into the duties of plant collectors: "both of you being obliged to…encamp in the mountains strike up a fire & lie by it all night in the morning…climb up the sides of the mountains and dig towards evening…about 20 days in Going and Coming home again & digging the roots packing up &c." The content of the letters does not indicate the Marshalls' scientific interests or abilities, but this correspondence provides documentation for the complex network used by the Marshalls to collect, sell and distribute plants.

    +

    Approximately 18 letters relate to the Revolutionary War (see "Subject Index" under "Additional Descriptive Data"). These include letters that indicate Marshall's support for the nonimportation agreements (January 6, 1775), second hand reports of the Battles of Lexington and Concord (April 25, 1775) and of Yorktown (August 24, 1781), and an important series of correspondence from Samuel Preston Moore relating to the resignation of the trustees of the General Loan Office when American revolutionaries seized control (June 17 and 21, 1777). Also significant are two letters from Quaker conscientious objectors on the morality of paying taxes to support military activities (undated c. 1780 letter; July 14, 1781), a letter relating to the North Carolina Regulator insurrection (March 3, 1771), and one concerning the arrest by American forces of Quakers suspected of Loyalist sympathies (September 6, 1777). Finally, in the pre-Revolutionary period, the letters of James Kenny provide excellent descriptions of plant collecting and the area around Fort Pitt in 1759-60.

    +

    The items from 1840-1863 mainly relate to Moses Marshall, Jr. Most notable in among them are several letters from William Darlington written as he was preparing his Memorial to Humphry and Moses Marshall in 1848 and 1849. Moses, Jr's pro-Confederacy political views are clearly expressed in the series of three speeches written during the Civil War, also included in the series.

    +

    The Poetry series includes 10 undated poems. The Bound Materials series comprises the arithmetic notebooks of Jacob Martin, whose relationship to the Marshalls is unclear; Darlington’s manuscript, Historical Introduction to Bartram & Marshall, Marshall's copy of Dover's Useful Miscellanies; and nine uncut and unfolded sets of signatures from Arbustrum Americanum.

    +
    + +

    + +

    + + Subjects: + Botany--America. + Chester (Pa.) + Fothergill, John, 1712-1780. + Franklinia. + Plant collectors. + Plants. + Quakers. + Science--History. + Trees. + United States--History--Civil War, 1861-1865. + United States--History--Revolution, 1775-1783. + United States--History--Revolution, 1775-1783--Conscientious objectors. + + + Contributors: + Crèvecoeur, Michel-Guillaume Jean de, 1735-1813. + Darlington, William, 1782-1863. + Fothergill, Samuel, 1715-1772. + Kenny, James. + Martin, Jacob. + Mendenhall, Moses. + Moore, Samuel Preston, 1710-1785. + Watson, James. + Watson, John. + + + Genre Terms: + Field notes. + Legal documents. + Letters (correspondence) + Memorial works. + +
    + + + + Correspondence, Writings, and Documents + + 1[Luke Cock] Manuscript Copy Summary of a Sermon, 9mo 2d. 1721

    [View Digital Surrogate]

    "The substance of a Sermon publicly delivered at York in England by our Friend Luke Cock"
    +A[braham] M[arshall] and M[ary] M[arshall] ADS Copy to Samuel Marshall, May 2, 1733

    [View Digital Surrogate]

    Deed for land in Chester County.
    +Samuel Fothergill ALS to Ellen Evans, February 4, 1757

    [View Digital Surrogate]

    Fothergill sympathises with the loss of Evans' huband and advises her how best to cope
    +James Kenny ALS to Humphry Marshall, May 23, 1759

    [View Digital Surrogate]

    Botanical collecting in western Pennsylvania; Comments on Col. Hugh Mercer and the soldiers at Fort Duquesne; The Indians are glad to trade with Quakers for whom 'they profess a greater love & regard . . . than for any other amongst ye English'
    +Christopher AMs. Copy, June 30, 1759

    [View Digital Surrogate]

    Fragment of a manuscript.
    +Sam[ue]l Fothergill ALS Copy to Susannah Hatton, June 27, 1760

    [View Digital Surrogate]

    Advice to a woman about to depart on a mission to America
    +P. C_____n [Peter Collinson?] AMsS, ca. 1760

    [View Digital Surrogate]

    "Some Reflections on the Trial of Earl Ferrars"
    +James Kenny ALS to Humphry Marshall, June 7, 1761

    [View Digital Surrogate]

    Report on plants and animals in western Pennsylvania
    +James Kenny ALS to Humphry Marshall, December 6, 1761

    [View Digital Surrogate]

    Plants collected near Fort Pitt; Fort Pitt has been rebuilt in a more defensive posture
    +John Gibbons ALS to Humphry Marshall, December 26, 1767

    [View Digital Surrogate]

    +Samuel Fisher ALS to Humphry Marshall, December 28, 1768

    [View Digital Surrogate]

    +Moses Mendenhall ALS to Humphry Marshall, October 21, 1769

    [View Digital Surrogate]

    Mendenhall sends plant specimens from North Carolina and has made efforts to collect materials
    + + H[enry] H[ale] Graham ALS to Humphry Marshall, December 25, 1769

    [View Digital Surrogate]

    Thanks for plants received
    +Joseph Williams and Nath[anie]l Pennock ADS to Catherine Wistar, December 22, 1770 - December 9, 1789

    [View Digital Surrogate]

    Loan of 200 pounds
    +Willi[am] Millikan ALS to Humphry Marshall, March 3, 1771

    [View Digital Surrogate]

    Account of the expulsion of Hermon Husbands from the North Carolina Assembly and the Regulator Insurrection
    +Hu[gh] Campbell ALS to Humphry Marshal[l], April 27, 1771

    [View Digital Surrogate]

    Thanks for plants and seeds received
    +John Marshall ALS to Humphry Marshall, August 14, 1771, and Joseph Storrs ALS to Humphry Marshall, August 28, 1771

    [View Digital Surrogate]

    Notes on Marshall's relatives in England
    +Joseph Shippen ALS to Humphry Marshall, January 12, 1773

    [View Digital Surrogate]

    +H[enry] H[ale] Grah[am] ALS to Humphry Marshall (1722-1801), January 25, 1773

    [View Digital Surrogate]

    Congratulations on appointment as trustee to the General Loan Office
    +John Watts Manuscript Map, March 19, 1773

    [View Digital Surrogate]

    "Draught of the Fulling Mill Land in Lower Dublin which Richard Mathers conveyed to James Paul"
    +H[ugh] Campbell ALS to Humphry Marshall, April 19, 1773

    [View Digital Surrogate]

    +AMs., [after May 15, 1773]

    [View Digital Surrogate]

    "A Brief account of the last Sickness and Death of Esther Lewis"
    +Samuel Preston Moore ALS to Humphry Marshall, September 8, 1773

    [View Digital Surrogate]

    Meeting of the trustees of the General Loan Office
    +Hu[gh] Campbell ALS to Humphry Marshall, April 11, 1774

    [View Digital Surrogate]

    Receipt of nuts and seeds
    +James Marshall ADS, October 29, 1774

    [View Digital Surrogate]

    Last will and testament of James Marshall
    +John Gibbons ALS Copy to Humphry Marshall, January 2, 1775, and John Gibbons ALS to Humphry Marshall, February 16, 1775

    [View Digital Surrogate]

    +Jno. Gibbons [John Gibbons] ALS to Humphry Marshall, January 6, 1775

    [View Digital Surrogate]

    Heavy losses by merchants to privateers. Hope for the success of the non-importation and non-exportation agreements
    James Kenny ALS to Humphry Marshall, April 25, 1775

    [View Digital Surrogate]

    News that the King intends to arrest the members of Congress and all who write against the government; Trials of dissidents will be held in Admiralty Court with no evidence allowed other than their own writings. Rumor that persons of African descent will be given guns to rise against the Colonies. Battle near Boston
    John Gibbons ALS to Humphry Marshall, August 7, 1775

    [View Digital Surrogate]

    Requests that Joseph Baker carry out some business for him. Ports in St. Eustatius may be closed
    +S[amuel] P[reston] Moore ALS to Humphry Marshall, February 7, 1777, and T[imoth]y Matlack ADS to Samuel Preston Moore, February 7, 1777

    [View Digital Surrogate]

    Order for the Trustees of the General. Loan Office to open "or they will answer the contrary at their peril"
    +Moses Mendenhall ALS to Humphry Marshall, May 13, 1777

    [View Digital Surrogate]

    Offer to collect plants for Marshall; Request for lima beans, juniper, etc.
    +S[amuel] P[reston] Moore ALS to Humphry Marshall, June 17, 1777

    [View Digital Surrogate]

    The General Assembly will draw out public monies held with the Loan Office
    +Sam[uel] Preston Moore ALS to [Humphry Marshall], June 21, 1777

    [View Digital Surrogate]

    Moore, as a trustee of the Loan Office, cannot follow the new laws as he is bound to obey the old. He therefore resigns and expects the other trustees to do likewise
    +S[amuel] P[reston] Moore ALS to Humphry Marshall, September 6, 1777

    [View Digital Surrogate]

    15 or 16 Friends have been confined in the Free Masons' Lodge and will be removed to Staunton, Virginia.
    +T[homas] Bond ALS to Humphry Marshall, August 7, 1779

    [View Digital Surrogate]

    Mr. Gerard, the French minister, "wants our Curiosities and Novelties, we want his valuable Collections from all other Parts of the World"
    +T[homas] Bond ALS to Humphry Marshall, November 3, 1779

    [View Digital Surrogate]

    Bond has received plants for Mr. Gerard
    +T[homas] Bond ALS to Humphry Marshall, October 18, 1780

    [View Digital Surrogate]

    Gerard has not been heard from. Bond assumes 'his constant attention to the affairs of the Cabinet' is the reason
    +Th[omas] Bond ALS to Humphry Marshall, October 26, 1780

    [View Digital Surrogate]

    Noailles wishes to obtain plants for the Royal Garden in Paris. "They do not desire botanic curiosities, but such things only as would enrich France"
    +Th[omas] Bond ALS to Humphry Marshall, November 20, 1780

    [View Digital Surrogate]

    Bond favors Marshall's plan for reciprocal exchange of specimen with the French
    +Th[omas] Bond ALS to Humphry Marshall, December 2, 1780

    [View Digital Surrogate]

    Bond favors exchange of plants with Europeans
    +Anthony Benezet ALS to Humphry Marshall, [ca. 1780?]

    [View Digital Surrogate]

    Thoughts on taxes to be used in support of the war: "The nature of the Gospel will not permit our giving either party and assistance in the . . . accomplishment of that horrid work"
    +Th[omas] Bond ALS to Humphry Marshall, March 16, 1781

    [View Digital Surrogate]

    Gerard wishes to continue their correspondence
    +Th[omas] Bond ALS to Humphry Marshall, April 6, 1781

    [View Digital Surrogate]

    +Miers Fisher ALS to Humphry Marshall, April 18, 1781

    [View Digital Surrogate]

    +Th[omas] Bond ALS to Humphry Marshall, July 2, 1781

    [View Digital Surrogate]

    Introduction for Gustavus Frederick Hilman, a Swedish naturalist
    +James Kenny ALS to Humphry Marshall, July 14, 1781

    [View Digital Surrogate]

    Comments on strife within the church and whether Friends should pay taxes to support the war
    +Th[omas] Bond ALS to Humphry Marshall, August 24, 1781

    [View Digital Surrogate]

    Hilman is working at Penn. Hospital. No prospect for peace. A large fleet will arrive, with Cornwallis as their object.
    +John Dickinson ALS to Humphry Marshall, November 7, 1781

    [View Digital Surrogate]

    Receipt and payment for seeds
    +James Marshall ADS to Moses Marshall, June 2, 1783

    [View Digital Surrogate]

    Power of attorney to reclaim possessions taken by the British at Brandywine
    +Geo[rge] Baker ALS to Humphry Marshall, December 12, 1783

    [View Digital Surrogate]

    +John Gibbons ALS to Humphry Marshall, December 24, 1783

    [View Digital Surrogate]

    Will collect plants for Marshall in North Carolina
    +M[oses] Marshall ALS to Hum[phr]y Marshall, June 27, 1784

    [View Digital Surrogate]

    Description of plants seen and collected in central Pennsylvania. Has not collected shells or minerals
    +J. Logan ALS to Humphrey Marshall [Humphry Marshall], June 29, 1784

    [View Digital Surrogate]

    +Geo[rge] Newsom ALS to Humphry Marshall, August 21, 1784

    [View Digital Surrogate]

    Few seeds received from Marshall have germinated
    +Geo[rge] Baker ALS to Humphry Marshall, August 28, 1784

    [View Digital Surrogate]

    +Geo[rge] Newsom ALS to Humphry Marshall, April 21, 1785

    [View Digital Surrogate]

    +Jno. Vaughan ALS to Humphry Marshall, May 5, 1785

    [View Digital Surrogate]

    +Andrew Laffan ALS to Humphry Marshall, May 25, 1785

    [View Digital Surrogate]

    Request for plants
    +M[oses] Marshall ALS to Humphry Marshall, December 14, 1785

    [View Digital Surrogate]

    +[Louis-Philippe-Joseph duc d' Orléans] Letter to [John Vaughan and Humphry Marshall?], [ca. 1785]

    [View Digital Surrogate]

    Request for plants and seeds with instructions on how to prepare them for shipping. Letter written in French, translation present - possibly in the hand of William Temple Franklin, re: Ellen Cohen - Franklin Papers.
    +John Cummings ALS to Humphry Marshall, April 1, 1786

    [View Digital Surrogate]

    Cummings will try to fill Marshall's request for Southern seeds and plants. Request for plants. Severe weather has damaged his garden.
    +John Cummings ALS to Humphry Marshall, April 20, 1786

    [View Digital Surrogate]

    +Mary Dickinson ALS to Humphry Marshall, June 12, 1786

    [View Digital Surrogate]

    Request for plants for an English friend
    +Geo[rge] Baker ALS to Humphry Marshall, September 13, 1786

    [View Digital Surrogate]

    +Humphry Marshall ALS to Joseph Banks, November 14, 1786

    [View Digital Surrogate]

    Marshall and nephew have collected a large quantity of ginseng for Banks. Moses Marshall is available for Western exploration. Ginseng was collected under tough conditions 200 miles distant in the Alleghanies
    +John Cummings ALS to Humphry Marshall, March 20, 1787

    [View Digital Surrogate]

    Cummings has plants from South Carolina and Georgia for Marshall
    +Levis Janney ALS to Humphry Marshall, March 20, 1787

    [View Digital Surrogate]

    Janney has some cypress specimens
    +And[re]w Laffan ALS to Humphry Marshall, May 20, 1787, and Humphry Marshall AL Copy to Andrew Laffan, November 3, 1787

    [View Digital Surrogate]

    Acknowledgement of receipt of plants and order for more. Partial fulfilment of order
    +John Watson ALS to Humphry Marshall, October 1, 1787

    [View Digital Surrogate]

    With enclosures.
    +John Watson ALS to Humphry Marshall, October 23, 1787

    [View Digital Surrogate]

    More plants for Marshall and request from some in return; Franklinia is scarce and does not occur at all in Watson's area
    +John Watson ALS to Humphry Marshall, November 9, 1787

    [View Digital Surrogate]

    Request for fruit trees
    +St. John [Michel-Guillaume Jean de Crevecoeur] LS to Humphrey Marshall [Humphry Marshall], [before November 20], 1787

    [View Digital Surrogate]

    Wishes to see Marshall's catalogue and may be interested in purchasing plants for friends in France
    +St. John [Michel-Guillaume Jean de Crevecoeur] ALS to Humphrey Marshall [Humphry Marshall], November 20, [1787?]

    [View Digital Surrogate]

    Has received Marshall's catalogue and wishes to know prices for seeds and plants
    +[Michel-Guillaume Jean de Crevecoeur] AL to [Humphry Marshall], [November 20, 1787?]

    [View Digital Surrogate]

    List of plants and seeds desired for export to France. Includes notes on whether each species is common in France, how well each may grow there, and how to pack for shipment; See also Crevecoeur to Marshall, November 20, [1787?]
    +Jno. Vaughan [John Vaughan] ALS to Humphry Marshall, November 22, 1787

    [View Digital Surrogate]

    Bartram's catalog is longer and more varied than Marshall's
    +Comtesse de Tessé AL to [Humphry Marshall], [December 6, 1787]

    [View Digital Surrogate]

    Request for plants and seeds; Instructions for preparing specimens for shipping
    +[Andrew Laffan] AL to Humphry Marshall, [ca. 1787]

    [View Digital Surrogate]

    List of plants and seeds desired
    +John Watson ALS to Humphry Marshall, April 8, 1788

    [View Digital Surrogate]

    The search for wild Franklinia has proved fruitless
    +Humphry Marshall ALS Copy to [John Coakley] Lettsom, May 7, 1788

    [View Digital Surrogate]

    Marshall sends four tortoises. Remarks on the dietary preferences of tortoises. Descriptions of new species of Sedum, Portulacaea, and an evergreen to be named Lettsomaea
    +John Strode ALS to Humphry Marshall, June 20, 1788

    [View Digital Surrogate]

    The search for Andromeda arborea continues
    +Samuel Kramsch ALS to Humphry Marshall (1722-1801), July 2, 1788

    [View Digital Surrogate]

    Favorable comments on "Arbustrum Americanum". Kramsch encourages Marshall to complete the volume on hebaceous plants of North America
    +[Moses Marshall] AL to Hannah Buffington, September 30, 1788

    [View Digital Surrogate]

    Re: estate of Grandfather Waits
    +James Kenny ALS to Humphry Marshall, February 10, 1789

    [View Digital Surrogate]

    Comments on Erasmus' paraphrase of Matthew respecting paying tribute to Casear
    +R[ichar]d Bennett ALS to Humphry Marshall, February 24, 1789

    [View Digital Surrogate]

    Thanks for plants received
    Samuel Kramsch ALS to Humphry Marshall, July 25, 1789

    [View Digital Surrogate]

    Kramsch is surprised by the lack of encouragement to prepare a volume on the herbaceous plants of North America and by the slow sales of "Arbustrum"
    Thomas Parke ALS to Humphry Marshall, August 17, 1789

    [View Digital Surrogate]

    +J[ames?] Ross ALS to Humphry Marshall, September 21, 1789

    [View Digital Surrogate]

    Re: attempts to divide Chester County
    + +2James M. Watson ALS to Humphry Marshall, December 10, 1789

    [View Digital Surrogate]

    Acknowledgement of receipt of plants and seeds. "List of Seeds & plants of Flowering Trees Shrubs Evergreens &c. Bot of James Watson"
    Rich[ar]d Burnett ALS to Humphry Marshall, January 15, 1790

    [View Digital Surrogate]

    List of plants Burnett does and does not wish to receive
    +[Thomas] Parke ANS to Humphry Marshall, January 20, 1790

    [View Digital Surrogate]

    +Geo[rge] Baker ALS to Humphry Marshall, January 26, 1790.

    [View Digital Surrogate]

    +Samuel Kramsh ALS to Humphry Marshall, February 20, 1790

    [View Digital Surrogate]

    +R[ichar]d Burnett ALS to Humphry Marshall, March 2, 1790

    [View Digital Surrogate]

    Payment for most recent shipment of plants. Seeks Magnolia, Liriodendron, and Kalmia more than 'a great number of insignificant little shrubs'
    +Jean Reichert ALS to [Humphry Marshall], March 6, 1790, and Grommee & Co. ALS to Humphry Marshall, April 1790

    [View Digital Surrogate]

    Receipt of shipment and new order. Grommee & Co. (the intermediaries) provide a translation of Reichert's letter
    +Thomas Parke ALS to Humphrey Marshall [Humphry Marshall], March 20, 1790

    [View Digital Surrogate]

    +Baker & Abel ALS to Moses Marshall, May 17, 1790

    [View Digital Surrogate]

    Have sold some gin for Marshall
    +Sarah Arnold ADS, June 16, 1790

    [View Digital Surrogate]

    Sarah Arnold's will.
    +James M. Watson ALS to Hum[phr]y Marshall, July 27, 1790

    [View Digital Surrogate]

    Offers services to collect plants
    +Robert Barclay ALS extract to [Thomas] Parke, July 1790

    [View Digital Surrogate]

    Order for plants for John Mackie and Lord Suffield to be filled by Humphry Marshall
    +John Gordon ALS to Humphry Marshall, August 14, 1790

    [View Digital Surrogate]

    Order for forest trees and other plants to be used for 'experiment and amusement'
    +J. Cockfield ALS to Humphrey Marshall [Humphry Marshall], August 24, 1790

    [View Digital Surrogate]

    +T[homas] Parke ALS to Humphrey Marshall [Humphry Marshall], October 19, 1790

    [View Digital Surrogate]

    Order for plants for Drs. Pitcairn and Orne
    +Thomas Parke ALS to Humphrey Marshall [Humphry Marshall], October 26, 1790

    [View Digital Surrogate]

    +Moses Marshall ADfS to Jos[eph] Banks, October 30, 1790, and Moses Marshall ADfS to Gent[leme]n, [ca. October 30, 1790]

    [View Digital Surrogate]

    Fulfillment of Banks' order; Mention of Marshall's 'botanic tour' through the Appalachians; Discovery of wild Franklinia alatamaha; Mention of the 'botanic tour'
    +Thomas Parke ALS to Humphrey Marshall [Humphry Marshall], November 6, 1790

    [View Digital Surrogate]

    Shipment forwarded to Banks
    +James M. Watson ALS to Moses Marshall, November 6, 1790

    [View Digital Surrogate]

    List of plants and seeds collected for the Marshalls
    +Manuscript Note, [ca. 1790]

    [View Digital Surrogate]

    Transcription of Benjamin Franklin's epitaph and notes on his bequest
    +R[ichar]d Burnett ALS to Hump[hr]y Marshall, April 13, 1791

    [View Digital Surrogate]

    The last shipment of plants was destroyed in transit
    +Steph[e]n Girard ALS to Humphrey Marshall [Humphry Marshall], August 11, 1791

    [View Digital Surrogate]

    Order for plants from a 'Gentleman in Paris'
    +J. Cockfield ALS to Humphrey Marshall [Humphry Marshall], August 23, 1791

    [View Digital Surrogate]

    +Thomas Parke ALS to Moses Marshall, October 5, 1791

    [View Digital Surrogate]

    +Tho[ma]s Parke ALS to Humphrey Marshall [Humphry Marshall], October 7, 1791

    [View Digital Surrogate]

    Bond requests 4 boxes of ornamental shrubs for his 'Gentleman's garden'
    +Steph[e]n Girard ALS to Humphrey Marshall [Humphry Marshall], October 29, 1791

    [View Digital Surrogate]

    +[Moses Marshall] Letterbook, November 10, 1791 - November 28, 1791

    [View Digital Surrogate]

    +John Sellers ALS to Humphry Marshall, February 2, 1792

    [View Digital Surrogate]

    News on a proposed road through southeastern Pennsylvania being discussed in the Pennsylvania legislature
    +A[rchibald] Thomson ALS to Humphry Marshall, March 26, 1792

    [View Digital Surrogate]

    Large order for plants
    +Thomas Parke ALS to M[oses] Marshall, May 2, 1792

    [View Digital Surrogate]

    Eddy vs. Turner
    +Caspar Wistar, Jr. ALS to Humphrey Marshall [Humphry Marshall], May 27, 1792

    [View Digital Surrogate]

    Control of the Hessian Fly; Letter written on printed circular soliciting information on the Hessian Fly
    +T[homas] Parke ALS to Humphrey Marshall [Humphry Marshall], June 13, 1792

    [View Digital Surrogate]

    +Caspar Wistar, Jr. ALS to [Moses] Marshall or Humphry Marshall, June 20, 1792

    [View Digital Surrogate]

    Information on a proposed expedition to explore the West
    +Thomas Parke ALS to Humphrey Marshall [Humphry Marshall], September 11, 1792

    [View Digital Surrogate]

    +Tho[mas] Parke ALS to Humphrey Marshall [Humphry Marshall], September 18, 1792

    [View Digital Surrogate]

    +Geo[rge] Baker ALS to Moses Marshall, December 21, 1792

    [View Digital Surrogate]

    Burnett's order has been sent
    +Tim[oth]y Hurst ALS to Moses Marshall, August 5, 1793

    [View Digital Surrogate]

    Will assist in collecting ginseng
    +Tho[ma]s Parke ALS to Humphrey Marshall [Humphry Marshall], November 7, 1793

    [View Digital Surrogate]

    Order for plants. Yellow Fever epidemic is ended
    +Moses Marshall Letterbook, December 11, 1793 - December 12, 1793

    [View Digital Surrogate]

    +Archi[bald] Thomson ALS to Humphrey Marshall [Humphry Marshall], June 4, 1794

    [View Digital Surrogate]

    Large order for plants
    +"Person in Liverpool" ALS Copy to "Friend in New York", September 1, 1794

    [View Digital Surrogate]

    Story of Sarah Harrison's meeting the King of England
    +Thomas Fisher ALS to Moses Marshall, January 27, 1795

    [View Digital Surrogate]

    Estate of Jas. Gibbons
    +Reg[inald] Whitley ALS to Humphry Marshall, May 17, 1795

    [View Digital Surrogate]

    Introduces himself and request plants
    +Reginald Whitley ALS to Moses Marshall, July 1, 1795, with M[oses] M[arshall] ALS to Reginald Whitley, [1795]

    [View Digital Surrogate]

    +Reg[inald] Whitley ALS to Moses Marshall, May 3, 1796

    [View Digital Surrogate]

    Large order for plants
    +Samuel Bard ALS to Humphry Marshall, June 24, 1796

    [View Digital Surrogate]

    +Samuel Bard ALS to Moses Marshall, September 10, 1796

    [View Digital Surrogate]

    Order for ornamental plants
    +John Dickinson ALS to Humphry Marshall, November 1, 1796

    [View Digital Surrogate]

    +Thomas Parke ALS to Humphrey Marshall [Humphry Marshall], January 31, 1797

    [View Digital Surrogate]

    +John Dickinson ALS to Humphrey Marshall [Humphry Marshall], July 31, 1797

    [View Digital Surrogate]

    +John Dickinson ALS to Moses Marshall, November 7, 1797

    [View Digital Surrogate]

    +Milling Account Book, March 20, 1799 - September 9, 1808

    [View Digital Surrogate]

    +Thomas Parke ANS to Moses Marshall, August 3, 1799

    [View Digital Surrogate]

    +Thomas Parke ANS to Moses Marshall, September 21, 1799

    [View Digital Surrogate]

    Re: delayed order of plants to be sent to Britain
    +Baron Itzenplitz ALS to Moses Marshall, November 18, 1799

    [View Digital Surrogate]

    Order for plants and seeds
    +Roger Dicks ALS to Humphry Marshall, February 6, 1800

    [View Digital Surrogate]

    Eye surgery might help Marshall's cataracts
    +C[aspar] Wistar, Jr. ALS to Humphrey Marshall [Humphry Marshall], April 11, 1800

    [View Digital Surrogate]

    Recommends Marshall remain on his diet until surgery
    +Humphry Marshall ALS to "Respected Friend", May 13, 1800, and Sarah Marshall ADS, [ca. 1800]

    [View Digital Surrogate]

    Receipt for salve
    +C[aspar] Wistar, Jr. ALS to Humphry Marshall, May 16, 1800

    [View Digital Surrogate]

    Suggestions on post-operative care
    +A[rchibald] Thomson ALS to Humphry Marshall, May 28, 1800

    [View Digital Surrogate]

    Order for plants and seeds
    +Thomas Parke ALS to Moses Marshall, September 13, 1800

    [View Digital Surrogate]

    Order for seeds for British client
    +Mathias King ALS to Humphry Marshall, November 9, 1800

    [View Digital Surrogate]

    Order for plants
    +John Romans and Mary Smith ADS, July 23, 1801

    [View Digital Surrogate]

    Marriage Certificate.
    +Moses Marshall ADS Copy to Jacob Dinger and William Lollar, November 17, 1801

    [View Digital Surrogate]

    +James Mease ALS to Moses Marshall, February 2, 1802

    [View Digital Surrogate]

    Thanks Marshall for his promise to assist with horticultural articles in Mease's forthcoming encyclopedia
    +J. Allison D[ ] Partially Printed DS Fragment to Moses Marshall, November 30, 1801

    [View Digital Surrogate]

    Names Marshall executor of an estate
    +James Mease ALS to Moses Marshall, January 3, 1803

    [View Digital Surrogate]

    Prospects for his 'Domestic Encyclopedia'. Death of Humphry Marshall
    +James Mease ALS to Moses Marshall, January 19, 1803

    [View Digital Surrogate]

    Wishes to publish Humphry Marshall's notes on herbaceous American plants, if such exist
    +Moses Marshall ALS Copy to James Mease, February 10, 1803

    [View Digital Surrogate]

    Marshall, being busy with his grist mill, cannot assist much with Mease's requests; Humphry Marshall's notes not likely to provide much useful information
    +James Mease ALS to Moses Marshall, March 22, 1803

    [View Digital Surrogate]

    Intends to name a new genus Marshallia in honor of Marshall
    +James Mease ALS to Moses Marshall, April 13, 1803

    [View Digital Surrogate]

    Comments on botanical matters, including Barton's "Elements of Botany"
    +Mathias King ALS to [Moses] Marshall, July 13, [1803?]

    [View Digital Surrogate]

    Description of a botanical tour in the Poconos (?)
    +Mathias King ALS to Moses Marshall, August 24, 1803

    [View Digital Surrogate]

    King can provide plants from Florida
    +James Mease ALS to Moses Marshall, September 1, 1803

    [View Digital Surrogate]

    Wishes to obtain a specimen of the oil nut. How to propagate plants.
    +Manuscript Document Copy, "Courses & Distances of the Strasburgh road...", June 18, 1804

    [View Digital Surrogate]

    "Courses & Distances of the Strasburgh road from W. Chester to Strasburgh"
    +Manuscript Document Copy, "General Directions to the Administrators of Jonathan Matlock, deceased", April 11, 1805

    [View Digital Surrogate]

    +James Mease ALS to Moses Marshall, September 11, 1806

    [View Digital Surrogate]

    Seeks information on a threshing machine seen at T. Coxe's
    +[Unidentified shoemaker's] Account Book, January 1809 - February 1815

    [View Digital Surrogate]

    +Richard Marshall ALS to Moses Marshall, May 6, 1812

    [View Digital Surrogate]

    Legal and financial trouble
    +[Moses Marshall] Account Book, December 17, 1812 - September 15, 1813

    [View Digital Surrogate]

    + +3Samuel Butler ADS Copy to Margaret Arnold, April 4, 1830

    [View Digital Surrogate]

    Life-time lease of property to Margaret Arnold
    +M[aria] W. Marshall ALS to Moses Marshall, April 10, 1830

    [View Digital Surrogate]

    News of family and friends; John Pim 'has started toward the Western country'. Samuel Peirce is 'making his usual fall collection of Seeds & plants'
    +[Moses Marshall?] Account Book, January 1829 - March 4, 1831

    [View Digital Surrogate]

    Personal expenditures of Moses Marshall while in Philadelphia studying medicine
    +Humphry Marshall, Aquila Marshall, Townsend Samborn, and James Jefferies Partially Printed DS to Maria Marshall, July 30, 1832

    [View Digital Surrogate]

    "Bond…in the penalty of $16602.74 Conditioned for the payment of her distributive share in Lot No. 1"
    +[Eliza Gause] AL to Caroline E. Baily [Marshall], December 19, 1834

    [View Digital Surrogate]

    Account of daily activities
    +Caroline E. [Baily] Marshall ADS Copy, September 8, 1838

    [View Digital Surrogate]

    Caroline E. Marshall's will.
    +John Nelson ADS Copy, May 15, 1840

    [View Digital Surrogate]

    Survey of plot of land on the Susquehanna River
    +[Moses Marshall] Manuscript Copy, "Pains Political", [ca. 1845]

    [View Digital Surrogate]

    +George Rich[ar]d Baker ALS to Moses Marshall, February 6, 1847

    [View Digital Surrogate]

    Inquiry into establishing an almshouse
    +Moses Marshall ALS Copy to William Darlington, December 25, 1847

    [View Digital Surrogate]

    Regarding a memorial to Humphry and Moses Marshall
    +Moses Marshall ALS to William Richardson, December 30, 1847

    [View Digital Surrogate]

    +[Moses Marshall] ADf. to [William Darlington], [before May 17, 1848]

    [View Digital Surrogate]

    Notes on the lives of Humphry and Moses Marshall
    +[Moses Marshall] 6 ADfs. to [William Darlington], May 17, 1848

    [View Digital Surrogate]

    Drafts with information on the lives of Humphry and Moses Marshall
    +Moses Marshall ALS Copy to John Fisher, December 29, 1848

    [View Digital Surrogate]

    Regarding rental property
    +W[illia]m Darlington ALS to [Moses Marshall], March 9, 1849

    [View Digital Surrogate]

    Regarding Memorial of John Bartram and Humphry Marshall
    +William Richardson ALS to [Moses] Marshall, March 23, 1849

    [View Digital Surrogate]

    Rental of lime kilns
    +W[illia]m Darlington ALS to John Bohlen, September 10, 1849

    [View Digital Surrogate]

    List of plants still growing in Humphry Marshall's garden
    +W[illia]m Darlington ALS to Moses Marshall, December 25, 1849

    [View Digital Surrogate]

    Wishes to see two letters from Franklin written to Marshall (March 18, 1770, and April 22, 1771)
    +Manuscript Biographies of John Bartram, Humphry and Moses Marshall, and William Baldwin, [ca. 1849]

    [View Digital Surrogate]

    Biographies of John Bartram, Humphry and Moses Marshall, and William Baldwin
    +Moses Marshall ALS Copy to James Slaughter, November 30, 1850

    [View Digital Surrogate]

    Dispute over property sold by John Fisher
    +William Richardson ALS to Moses Marshall, May 1, 1851

    [View Digital Surrogate]

    Regarding taxes on 'the ferry property'
    +Moses Marshall DS to [Joel C. Baily], October 16, 1851, with Joel C. Baily ADS to [Moses Marshall], October 17, 1851

    [View Digital Surrogate]

    +William Richardson ALS to [Moses] Marshall, October 23, 1854, and Moses Marshall ALS Copy to William Richardson, November 6, 1854

    [View Digital Surrogate]

    +W[illia]m Richardson ALS to [Moses Marshall], March 14, 1855

    [View Digital Surrogate]

    Hard winter. Smallpox epidemic has not affected Richardson's family because they were inoculated
    +W[illia]m Richardson ALS to [Moses] Marshall, January 4, 1856

    [View Digital Surrogate]

    +W[illia]m Richardson ALS to Moses Marshall, August 4, 1856

    [View Digital Surrogate]

    +William Richardson ALS to M[oses] Marshall, November 21, 1856

    [View Digital Surrogate]

    +W[illia]m Richardson ALS to M[oses] Marshall, December 15, 1856

    [View Digital Surrogate]

    +W[illia]m Darlington ALS to M[oses] Marshall, November 16, 1861

    [View Digital Surrogate]

    Mrs. James, preparing biological sketches of botanists, wishes to reproduce facsimiles of some letters in Marshall's posession
    +[Moses Marshall?] ADf., [Against Suspension of Writ of Habeas Corpus], [1861]

    [View Digital Surrogate]

    Diatribe against suspension of writ of habeas corpus
    +James J. Levick ALS to Elizabeth W. Levick and Mary Levick, with silhouette of James J. Levick, September 20, 1862

    [View Digital Surrogate]

    Includes Peale Museum silhouette of James J. Levick, 1840
    +[Moses Marshall] ADf., [Secession and Politics], [1863]

    [View Digital Surrogate]

    Resolution on the right for Southern states to secede. Support of the candidacies of George W. Woodward for Governor and Walter Lowrey for Supreme Court
    +[Moses Marshall] ADf., [Pro-Southern Diatribe], [1863]

    [View Digital Surrogate]

    Pro-Southern diatribe.
    +[Moses Marshall] ADf., [Political Parties, Slavery, and Wage Labor], [1863]

    [View Digital Surrogate]

    Discussion of political parties, slavery, and wage labor
    +Manuscript Genealogical Chart of the Marshall Family, Undated

    [View Digital Surrogate]

    Genealogical chart of Marshall family
    +Manuscript Diary Pages, Undated

    [View Digital Surrogate]

    Visit to Dr. Squibb
    +Lloyd, Peter Z. ANS to Humphry Marshall, May 10

    [View Digital Surrogate]

    +[Marshall, Moses] AMs., "Apoplexia", Undated

    [View Digital Surrogate]

    "Apoplexia"
    +[Marshall, Moses] AMs., "The Brandywine Railroad", Undated

    [View Digital Surrogate]

    "The Brandywine Railroad"
    +[Marshall, Moses] AMs., [Chemistry Lecture Notes], Undated

    [View Digital Surrogate]

    Chemistry lecture notes
    +[Marshall, Moses] AL to Unknown Recipient, Undated, and Unidentified Writer AMs. Poem, Undated

    [View Digital Surrogate]

    Receipt for kidney ailment
    +Squibb, R[obert] ALS to [Humphry] Marshall, Undated

    [View Digital Surrogate]

    Squibb is collecting plants to fill an order for Mr. DeBrahm
    +Squibb, Rob[er]t ALS to Humphry Marshall, August 14

    [View Digital Surrogate]

    Request for lettuce
    +
    + + + 3 + Poetry + + + Manuscript Poetry, [18th-19th century]

    [View Digital Surrogate]

    Poetry by multiple writers, in multiple hands.
    + + + 3 + Bound and Printed Items + + Jacob Martin Arithmetic Notebook, March 10, 1856 - June 20, 1856

    [View Digital Surrogate]

    +Jacob Martin Arithmetic Notebook, September 1, 1856 - October 17, 1856

    [View Digital Surrogate]

    +William Darlington Manuscript, "Historical introduction to Bartram & Marshall", Undated

    [View Digital Surrogate]

    +John Milleson Account and Memorandum Book, November 3, 1846 - April 3, 1848

    [View Digital Surrogate]

    +Arbustrum Americanum, Uncut Sheets, [1785]

    [View Digital Surrogate]

    + + + Other published works + + 7 items + + + +

    See separated materials section of this finding aid for a complete list of these publications.

    +
    +
    +
    +
    + + + + Items located in the Book Division of the Clements Library: + + Anno regni Georgii III. Regis, Magnae Britanniae, Franciae & Hiberniae, decimo tertio.: At a General Assembly of the province of Pennsylvania, begun and holden at Philadelphia, the fourteenth day of October, anno Domini 1772 ... And from thence continued by adjournments to the twenty-sixth day of February, 1773. Philadelphia: Printed and sold by Hall and Sellers, at the new printing-office, near the market, 1773. + Darlington, William, and H. Fennell. Florula cestrica:: an essay towards a catalogue of the phaenogamous plants, native and naturalized, growing in the vicinity of the borough of West-Chester, in Chester County, Pennsylvania: with brief notices of their properties, and uses, in medicine, rural economy, and the arts. : To which is subjoined an appendix of the useful cultivated plants of the same district.... West-Chester, Penn.: Printed for the author, by Simeon Siegfried, 1826. + Dover, William. Useful miscellanies: or, Serious reflections, respecting mens duty to God, and one toward another: With advices, civil and religious, tending to regulate their conduct in the various occurrences of human life. Published for general service, by a well-wisher to all mankind.... London: printed for T. Cooper, 1739. + Ellis, John, and Simon Taylor. An historical account of coffee: with an engraving, and botanical description of the tree : to which are added sundry papers relative to its culture and use, as an article of diet and of commerce. London: Printed for Edward and Charles Dilly, 1774. + Lettsom, J. Coakley. The natural history of the tea-tree: with observations on the medical qualities of tea, and effects of tea-drinking.... London: Printed for E. and C. Dilly, 1772. + Marshall, Humphry. Arbustrum Americanum: the American grove, or, An alphabetical catalogue of forest trees and shrubs, natives of the American United States, arranged according to the Linnæan system ... : also, some hints of their uses in medicine, dyes, and domestic oeconomy. Philadelphia: Printed by Joseph Crukshank, 1785. + Randall, Joseph. A system of geography: or, A dissertation on the creation and various phænomena of the terraqueous globe .... London: Printed for Joseph Lord, bookseller, in Wakefield, and sold by him... and J. Rivington..., 1744. + + + +

    The Clements Library's Wayne papers contain a letter by Humphry Marshall: Humphry Marshall to A[nthony] Wayne, May 16, 1790.

    +

    The University of Michigan holds copies of both Arbustrum Americanum and its French translation (search the University's online catalog).

    +

    Marshall papers at other repositories include: Humphry Marshall papers, Special Collections, National Agricultural Library.

    +
    + +

    Darlington, William, and Peter Collinson. Memorials of John Bartram and Humphry Marshall: with notices of their botanical contemporaries. Philadelphia: Lindsay & Blakiston, 1849.

    +

    Marshall, Humphry, and Lézermes. Catalogue alphabétique des arbres et arbrisseaux: qui croissent naturellement dans les Etats-Unis de l'Amérique Septentrionale, arrangés selon les systême de Linne; contenant les caractères particuliers qui distinguent les genres auxquels ils sont rapportés, avec des descriptions claires & familières de leur manière de croître, de leur forme extérieure, &c., & leurs différentes espèces & variétes. A Paris: Chez Cuchet, libraire, rue & hotel Serpente, 1788.

    +

    Pleasants, Henry. Three scientists of Chester County: by Henry Pleasants, Jr. [n. p., 1936].

    +
    + +
    +
    +
    diff --git a/sample-ead/clements/minto_final.xml b/sample-ead/clements/minto_final.xml new file mode 100755 index 0000000..4173e78 --- /dev/null +++ b/sample-ead/clements/minto_final.xml @@ -0,0 +1,6098 @@ + + + + + + umich-wcl-M-4423min + + + Finding Aid for Minto-Skelton Papers + Collection processed and finding aid created by Robert Lewis + + + William L. Clements Library, University of Michigan + 2009 + + + + Encoded finding aid created by Emiko Hastings, February 2009 + + The finding aid is written in English + + Finding aid prepared using Describing Archives: A Content Standard (DACS) + + + + 2009-02-06 + Original encoding from Word 2000 file using Word macros and Xmetal. + + + + + + Manuscripts DivisionWilliam L. Clements LibraryUniversity of Michigan + Finding aid forMinto-Skelton Papers, 1757-1956 + Finding aid created by Robert Lewis, March 2009 + + + + + + Skelton family + + Minto-Skelton papers 1757-1956 + 1770-1900 + + Minto-Skelton papers + + 2 linear feet + + wclmss001444 + The material is in English, French, Italian, Latin, and Spanish. + The Minto-Skelton papers contain the papers of Walter Minto (1753-1796), noted mathematician and educator, his nephew Walter Minto Skelton (1804-1848), and other members of their extended family. Walter Minto's papers contain correspondence, writings, and other documents related to his travels in Italy, scholarship, and teaching career. The Walter Minto Skelton and family papers include correspondence, poetry, prose writings, illustrations and photographs, documents, printed materials, notes, invitations, and miscellanea. + + + William L. Clements Library, University of Michigan + + + + + +

    1934, 2005.M-211, M-4423.

    +
    + +

    The collection is open to research.

    +
    + +

    Copyright status is unknown.

    +
    + +

    The Minto papers were donated by Harry B. Earhart in 1934. These have been incorporated into the larger collection of Minto-Skelton family papers donated by Jean McIntyre Conrad in 2004.

    +
    + +

    Minto-Skelton Papers, William L. Clements Library, The University of Michigan

    +
    +
    + + Biography +

    + Walter Minto: +

    +

    Walter Minto (1753-1796), noted mathematician and educator, was born in a village near Cowdenknows in the Merse district of Scotland (not far from Redpath in the former Berwickshire) on 6 December 1753. He was the oldest son of Walter Minto, Sr., and Agnes Waugh Minto, and brother of Thomas, Nanny, Agnes, and David, all of whom were living in Edinburgh by the early 1770's. Thomas's Uncle Robert Minto, a landowner in Jamaica, helped him secure a position there in the 1770's; he later owned his own plantation on the island. Minto's forebears were from Spain originally, but by the second half of the 18th century his immediate family was living in impoverished circumstances. Nevertheless, in 1768, when Minto was only 15, he was able to attend lectures at the University of Edinburgh, where, until 1771, he studied Latin, Logic, Natural Philosophy, Greek, and Moral Philosophy under various professors of arts and sciences, including Adam Ferguson and James Robertson. He must have suspended, or temporarily interrupted, his studies at the University, for between 1773 and the spring of 1775 he was a student of divinity living at the home of a Robert Watson in East Rhynd, near Abernethy in Perthshire. But by the fall of 1775 he was back at the University of Edinburgh studying Moral Philosophy and Rhetoric, and in early 1776 he received his diploma.

    +

    Minto had hoped to travel, and especially to visit Italy, but was financially unable to do so. When David Hume, whom he had met and studied with in Edinburgh, proposed that he become tutor to two young boys, who were soon to go to Italy to continue their education there, he eagerly accepted. The two boys were John and George Johnstone, sons of George Johnstone, Member of Parliament for Cockermouth, former Governor of West Florida (1764-67), and soon to go to America on a mission of conciliation (1778). Minto began his appointment in January of 1776 in Johnstone's London home and continued there until the end of May, when he and the boys left for Italy on the ship Westmoreland, traveling around Spain, via southern France, and then to the port of Livorno, arriving in Pisa in late August. Minto secured lodgings for the three of them in the home of Dr. Giuseppe Slop de Cadenberg, an associate of Tommaso Perelli, the Professor of Astronomy at the University of Pisa (Slop succeeding him in 1780). Slop's wife, Elisabetta Dodsworth, was the daughter of an English father and an Italian mother.

    +

    Minto remained in Pisa with the Slops from 1776 until 1778, following a rigorous schedule of instruction for the Johnstone boys as laid out by their father in advance of their leaving England. In the summer of 1778, however, John Johnstone became ill, as did Minto, and when Johnstone learned of this in October, he immediately wrote an intemperate letter to Minto, accusing him of being the cause of the illness for disobeying his orders for the boys, berating his behavior in general, and ordering him to bring the boys home immediately. By return mail, in a dignified letter, Minto disputed these accusations, but at the same time made arrangements for transport on the ship Westmoreland, Capt. Willis Machell, to London for the three of them, and in mid-December, they sailed from Livorno. Early in January of 1779, their ship was captured by a French man-of-war off the coast of Spain, and they were put ashore in Malaga, where they stayed in the English consul's house while the French were deciding about an exchange. In late February Minto and the boys were put at liberty in Cadiz, west of Malaga, and in early March he delivered the boys into the care of Captain Machell, with whom they sailed back to England. Minto then took a ship to Genoa, and ultimately back to the Slops' house in Pisa.

    +

    Back in Pisa, without the responsibility of the Johnstone boys, Minto began an intensive study of mathematics under the direction of Slop, which continued until mid-1782. During this period, in March of 1781, William Herschel announced his discovery of a new planet (later called Uranus), which was of great interest to Slop as an astronomer, but was also important to Minto, who later remarked that "the discovery of the new planet drew [his] attention to Astronomy." Minto began to record the observations of Herschel at Bath, Slop at Pisa, Nevil Maskelyne at Greenwich, and others in preparation for a book on the radii vectores and the shape of the orbit of the new planet. In 1782, after more than three years of concentrated study, which had "weakened" his "constitution," as he explained in a letter to his parents, he decided to return to Scotland. He left Pisa during the summer, traveling overland this time, via Switzerland, Germany, and the Low Countries to Ostend in Belgium, where he embarked in September, and arrived back in Scotland in October.

    +

    Upon his return, Minto must have immediately turned his attention to completing his book on the new planet, for in it he recorded the observations of John Robison, Professor of Natural Philosophy at the University of Edinburgh, from December 4, 1782, to January 23, 1783. The book itself was published shortly thereafter as Researches into some Parts of the Theory of the Planets in which is Solved the Problem, To determine the circular Orbit of a Planet by Two Observations; exemplified in the New Planet (London: C. Dilly, 1783), and was dedicated to Slop.

    +

    The years 1783 to 1786 were busy ones for Minto. He taught mathematics in Edinburgh, perhaps in a part-time capacity at the University. At least as early as 1784, he began to take an interest in emigrating to America, and he made plans to leave in 1785, but postponed his departure a few times before finally setting out in mid-1786. In 1784, he began a voluminous correspondence, leading to a love interest, with Catherine Drummond, daughter of John Drummond, 3rd Laird of Logie Almond of Perthshire, who also had a home in Edinburgh. This correspondence lasted several years, and in the spring of 1788, he proposed to her, but she declined.

    +

    His growing reputation as a mathematician came to the attention of David Stewart Erskine, 11th Earl of Buchan, who asked him to collaborate on a book about John Napier, the discoverer of logarithms, with Buchan writing the biographical parts and Minto the scientific parts. The book was far enough along at the end of January 1786 for Buchan to show it to King George III, who voiced his approval. At the beginning of the next month, Minto was awarded an honorary LLD degree by the University of Aberdeen in recognition of his scientific publications. In early June he embarked for America from Greenock, Buchan and others having helped to smooth the way for his resettlement there by writing letters of recommendation and making contacts for him with a number of important Americans.

    +

    On his arrival in Philadelphia on August 1, Minto lodged in the home of Benjamin Rush. While in Philadelphia, he met Benjamin Franklin, and pursued various possible opportunities, one of which was the chair of mathematics at Washington College in Maryland, which apparently came to nothing. By December 1786, the Napier book was in press, and was published the following year as An Account of the Life, Writings, and Inventions of John Napier, of Merchiston; by David Stewart, Earl of Buchan, and Walter Minto L.L.D. (Perth: R. Morison, Jr., 1787). During the winter months of his first year in America (from late December 1786 to late February 1787) he spent his time in and around Albany, New York, staying with a fellow Scottish immigrant, the Rev. John McDonald. In March, he was involved in negotiations to become the Principal of Erasmus Hall in Flatbush, New York; he agreed to the trustees' terms and took up his appointment there in May. In late July he was naturalized as a United States citizen, and in late September he was offered the professorship of Mathematics and Natural Philosophy at the College of New Jersey in Princeton (to succeed Ashbel Green, who had held the position since 1785). He was released from his contract at Erasmus Hall and took up residence in Princeton before the end of the year.

    +

    In late 1787, Minto began a peripatetic year and a half, after which he lived a settled life as a member of the College of New Jersey faculty, so far as one can judge from the extant documents and correspondence. During his first year, he gave his inaugural oration on the night before graduation, in late September 1788; it was printed before the end of the year as An Inaugural Oration, on the Progress and Importance of the Mathematical Sciences (Trenton: Isaac Collins, 1788). Immediately after graduation, the trustees of the College accepted his proposal that he relinquish five pounds of his salary to provide a medal to be given by the trustees and faculty for the best dissertation on one of two topics: "The unlawfulness & impolicy of capital punishment & the best method of reforming criminals & making them useful to society" and "The unlawfulness & impolicy of African slavery & the best means of abolishing it in the United States & promoting the happiness of free negroes." Before the end of Minto's first year, John Witherspoon, President of the College of New Jersey, remarked to Lord Buchan on the quality of his teaching and on his "amiable" participation in the life of both the College and the town of Princeton.

    +

    In January of 1789, Minto was elected a member of the American Philosophical Society in Philadelphia, with his certificate signed by Benjamin Franklin, David Rittenhouse, and others. In late September or early October, he married Mary Skelton of Princeton. Having no children of their own, they took students into their home as boarders (John Rush, son of Benjamin Rush, in 1792; Lewis or Philip Woofoin in 1793-94; his nephew Ennion Skelton; and others), who regarded Minto as a mentor.

    +

    In November 1792, Isaac Collins, a printer in Trenton, New Jersey, wrote to Minto giving him an estimate for printing a pamphlet containing his "Calculations." There is nothing in print that matches this description, but a mid-19th-century writer commented that "we have seen the manuscript of his Mathematical works, arranged and prepared by himself for publication." Whatever this manuscript was, it seems to have been lost. What does exist in the collection is a manuscript of Minto's lecture notes, divided into three parts (trigonometry, practical geometry, and conic), which was transcribed by a student in the junior class shortly after his death (1802).

    +

    From 1795 to 1796, Minto held the positions of both clerk of the Board of Trustees and treasurer of the College, responsible for receiving tuition fees and room rents, paying bills, and overseeing the College funds and investments. On October 21, 1796, after what was apparently an illness of at least nine months, Minto died, just short of 43 years of age, and was buried in the Princeton cemetery. His wife Mary outlived him (until 1824), but he seems not to have left her very well provided for financially, as evidenced by various bonds and repayment schedules made during the last two years of his life and by letters she received after his death. Shortly before he died, he purchased a slave named Toney, but freed him on the agreement that Toney would work for him for some six years. By this gesture he fulfilled the intent of one of the topics in his proposal of 1788: "The unlawfulness & impolicy of African slavery & the best means of abolishing it in the United States & promoting the happiness of free negroes."

    +

    + Walter Minto Skelton (1804-48) and Family: +

    +

    Walter Minto's wife was Mary Skelton, daughter of Joseph Skelton (1720-78), a merchant miller and owner of a number of properties on Stony Brook (a few miles southwest of Princeton, New Jersey, close to the location of the Battle of Princeton) and later (by 1774) judge of the Court of Common Pleas for Middlesex County, and his first wife, about whom nothing is known. Mary was probably born in the 1750's, and she and her family were Quakers. At the time she married Walter Minto (1789) she had five living siblings, all of whom appear in the Skelton family papers. The oldest was Josiah (1741-1821), who followed in his father's footsteps as a merchant miller and landowner, and who apparently paid off in 1798 one of the debts outstanding after Walter Minto's death. The other siblings, who must have been born in the 1740's and 1750's, were: Sarah; Elizabeth (b. ca. 1851), known as Betsey; Thomas; and Joseph, the youngest, who served as a 1st lieutenant in the Revolutionary War. The family probably moved to Princeton in the 1770's, when Skelton became judge, and by the 1780's Mary and Betsey, as unmarried women, were often invited to dances, exhibitions, orations, etc. by the gentlemen of the College of New Jersey. After Minto's death in 1796, Mary lived with her sister, Betsey, in Princeton, perhaps in the Skelton family home, and she followed in her husband's footsteps by freeing her own Negro slave Gitty in 1812. She died in late 1824, leaving all of her personal property and real estate to Betsey, with $100 to another sister, Sarah (by then married to Matthew Clark and living in Princeton), and $600 to a nephew, Walter Minto Skelton.

    +

    Walter Minto Skelton, the predominant figure in the Skelton family papers, was born on August 19, 1804, in New York, the son of Mary Minto's brother, Joseph Skelton (date of birth uncertain; dead by 1840 and probably buried in Armstrong County, Pennsylvania), and Sarah White Skelton (b. 1781; d. 1870 or later). Walter was named for his uncle, Walter Minto, and was the second oldest of at least seven children: the others were Elizabeth (b. 1803 in New York), Peter (b. 1805 in New York), Thomas (b. 1807 in New York), Mary (b. 1812 on Long Island; d. 1831 in Princeton), Ann (b. 1818 in "Conemaugh, Pennsylvania"), and Joseph (b. 1824 also in "Conemaugh").

    +

    Joseph and Sarah Skelton lived in New York, and struggled financially to support their family, so Walter was sent to live with his aunt Mary Minto and her unmarried sister, Betsey Skelton, in Princeton (from at least 1810). Walter matriculated as an undergraduate at the College of New Jersey in 1820, and he graduated in late 1825; he apparently studied law as well, but the circumstances of his apprenticeship are unknown. He must have continued to live with his aunt Betsey, after Mary's death in 1824, and he was the primary beneficiary of Betsey's estate, both her real property and most of her personal property, when she died in October 1826.

    +

    In early 1826, he traveled to western Pennsylvania, perhaps to visit his parents, with whom he had lost touch. His father Joseph Skelton was at the time working at the Conemaugh Salt Works, on the Conemaugh River in what is now southern Indiana County, a short distance upriver from the present-day Saltsburg. Joseph was probably employed by his brother Thomas, who established a well or wells there in 1816 and operated them until 1824, when they ceased to be profitable. At some point, Walter began to work at the Salt Works himself, and was apparently in partnership with his uncle by 1829. The wells were restarted in 1830, and from then until the mid-1840's were known as the Walter Skelton works. He seems to have returned to Princeton from time to time: in July 1826, when he delivered an a oration on the 4th in Cranbury, New Jersey; in July 1831, when he was captain (1830-31) of the Princeton Blues, a militia company of citizens of the town; and in the winter of 1832, when his brother Thomas went out to Conemaugh to relieve him at the Salt Works.

    +

    In January 1840, Walter purchased two tracts of land, totaling 410 acres, formerly owned by Benjamin Franklin on the Allegheny River in South Buffalo Township, Armstrong County, not far from the present McVille; he lived there with his mother Sarah Skelton and perhaps one or more of his siblings. He died in 1848, probably in June, leaving his property in thirds to his sister Ann, his brother Joseph, Jr., and in trust to his sister Ann for the use of his mother Sarah. He never married.

    +

    After Walter's death his youngest sister, Ann, as his main heir, is the Skelton family member who appears most frequently in the Skelton family papers, in leases, indentures, and other documents. In the 1850 census, she was living on the property she inherited from Walter, and she was still there in 1860 and 1880, but by 1900 had moved to Freeport, Armstrong County, Pennsylvania. Her mother Sarah was living with her in 1850 and 1860, but by 1870 had moved to Bucks County, in eastern Pennsylvania, and was boarding in the home of Mahlon Scarborough. Ann, who never married, lived until 1906; she seems to have been a revered figure to her relatives, for her name appeared long after her death as the bearer of a "spirit" message to her niece Mary L. Boyd in 1930.

    +

    However, Walter's older sister Elizabeth was, in a sense, the most important remaining Skelton, for she, through her marriage and the marriage of one of her offspring, forged the connection to the other families that figure prominently in the Skelton family papers after 1822. In November of that year, living by then in western Pennsylvania, she married William McFarland. He, like Walter Skelton, was also a salt manufacturer on the Conemaugh River, a little farther upriver from the Skelton Works. The McFarland Works was founded in 1801, and William was active in the business from at least 1821 to 1838 (and possibly to 1846), and may have been a partner of Walter Skelton or his uncle Thomas for part of that time. The McFarlands had (at least) three children (Mary, Hannah, and George). Mary, the oldest, was born in 1823 and died unmarried in 1904; and George, probably the youngest, died in action in the Civil War in 1862.

    +

    The second daughter, Hannah P. McFarland (b. 1832; d. between 1906 and 1911), married William M[orison] Boyd (b. 1834; d. 1912) in 1860 and, through him and the Boyd family, extended the connection to the Craig, Earhart, and McIntyre families. They had their home in the vicinity of Slate Lick, Armstrong County. William was an insurance agent, and later a justice of the peace in Freeport, Armstrong County, and both he and his unmarried sister Lizzie frequently appear in the family papers from the late 19th century into the early 20th. Many Boyds lived in and around Freeport, especially in McVille and Slate Lick, and the extended family, which traced its roots in America to John and Mary Fulton Boyd, who emigrated from Ireland to Westmoreland County, Pennsylvania, in 1772, held biennial conventions in western Pennsylvania and Ohio between 1881 (the first) and (at least) 1900 (the tenth). The origins of the Armstrong County Boyds are not entirely clear. The earliest recorded Boyd in the County was the Rev. John Boyd, the oldest of the nine children of John and Mary Fulton Boyd, who was pastor of the Slate Lick and Union Presbyterian churches from 1802 to 1809, but there were descendants of other original Boyd children in the County as well.

    +

    The connections both among the Boyds and with the Craig, Earhart, and McIntyre families have not been thoroughly unraveled. The oldest of William and Hannah Boyd's five children was Walter Skelton Boyd (1864-92), who was named for Hannah's uncle, Walter Skelton; another was Mary L. Boyd, who was William's only heir when he died in 1912, but it is unknown who the other siblings were, though they may be lurking among the attendees listed by name in the Proceedings of the various Boyd conventions (as may some of the Boyd names in what follows). The Craig family is connected through the marriage of Isabella Craig (daughter of John Craig of South Buffalo Township) and John Boyd circa 1840; this may have been the John Boyd who opened a store in McVille in 1864 and/or who was instrumental in erecting the Presbyterian church in Slate Lick in 1871-72. Isabella and John's children were James Boyd, Eliza Boyd, and Mary Boyd, and their grandchildren (James's children) were John C. Boyd and Jane Boyd. The Earhart family is connected through the sister (first name unknown) of William M. Boyd; she married an Earhart (perhaps a descendant of the Rev. David Earhart, pastor of the Lutheran church in South Buffalo Township in the 1840's and grandfather of Amelia Earhart). Her son was Harry B. Earhart, who lived in Ann Arbor and who gave the first collection of Minto papers in 1934, and her daughter must have been Marie Earhart White, who appears in the family correspondence between 1937 and 1940 (living in Ann Arbor by the latter date). The McIntyre connection is through Annie S. Boyd (antecedents uncertain; d. 1899), who between 1881 and 1888 married Frank F. McIntyre (d. 1949), a farmer in South Buffalo Township; they moved to Pittsburgh a few years after their marriage. Frank and Annie had two children, both born in the 1880's: Charles B[oyd] McIntyre and Helen B. McIntyre (never married; retired from school-teaching in the Pittsburgh area in 1956). The Jean McIntyre Conrad who gave the second collection of Minto-Skelton papers in 2004 is presumably a member of the same family, which would explain why she owned the papers.

    +
    + + + The Minto-Skelton papers are arranged in two series: + Series I: Walter Minto papers + Sub-series 1: Correspondence + Sub-series 2: Notebooks, Diaries, and Account Books + Sub-series 3: Notes + Sub-series 4: Documents + + + Series II: Walter Minto Skelton (1804-48) and Family + Sub-series 1: Correspondence + Sub-series 2: Prose Writings and Poetry + Notebooks + In WMS's hand + In other hands + + + Orations, Lectures, Essays + In WMS's hand + In other hands + + + Miscellaneous Verse + In WMS's hand + In other hands + + + + + Sub-series 3: Illustrations and Photographs + Sub-series 4: Documents + Boyd + Craig + Detargny + Franklin heirs + McFarland + Scudder + Skelton family + White + + + Sub-series 5: Printed Materials + Sub-series 6: Notes, Invitations, and Miscellanea + + + + + +

    The collection entitled Minto-Skelton family papers is divided into two series: the Walter Minto papers and the Skelton family papers. It began as the Walter Minto papers by donation from Harry B. Earhart in 1934, and this collection, which consists of 21 documents and seven letters, has been incorporated into the new, larger collection of Minto-Skelton family papers given by Jean McIntyre Conrad in 2004. The Skelton family papers contains only a few items from the Earhart donation: specifically, seven of the ten Detargny documents between 1796 and 1798 (in Series 2, sub-series 4) and one printed broadside from 1799 (in Series 2, sub-series 5); the rest come from the much larger Conrad donation. In the Contents Lists that follow each collection it has been noted which papers originally belonged in the Earhart donation.

    +

    + Walter Minto Papers: +

    +

    The Walter Minto papers consists of 296 letters and 31 documents, along with nine manuscript notebooks, diaries, account books, etc. and five short handwritten notes by Minto himself. Nearly all of the letters were written during Minto's lifetime, from 1774 to 1796, with four from 1797-98 added to the collection because they refer to him or to his estate. Most of the letters were written to him (253), and they are about equally divided between those written before he left Scotland for America (mid-1786) and those written after he arrived in America. Those from 1779 to 1786 are especially revealing about two events in his life that were either unknown or only hinted at previously.

    +

    The first has to do with his sojourn in Italy. He accompanied the Johnstone boys to Italy in 1776 as their tutor and remained with them there until early 1779, when they, and presumably he with them, returned to England. But letters both to and from his father, Walter Minto, Sr., along with references in other letters, make clear that, after entrusting the boys to Captain Machell in Spain, he returned to Slop's home in Pisa in March of 1779, began a formal, concentrated study of mathematics with Slop, that he continued that study there until mid-1782, and that it affected his health.

    +

    The second has to do with Minto's previously unknown relationship with a woman named Catherine Drummond. This relationship can be seen in the 49 letters (sometimes in French, occasionally in Italian) written by her to him between March of 1784 and early June of 1786, when he left Scotland for America. The correspondence continued in America, though less frequently; she wrote only three letters between February of 1787 and January of 1788. In a letter (of which there exists only a partial "translation") in response to hers of January of 1788 he tells her that he has loved her for four years and proposes marriage to her. She rejects his proposal by return mail, but continues writing to him until 1791, even after his marriage to Mary Skelton in the fall of 1789.

    +

    During his time in America, he met and exchanged letters with a number of influential people, both before going to Princeton (mid-1786 to late 1787) and afterwards (1787-96): for example, John Witherspoon, president of the College of New Jersey; the astronomer and clockmaker David Rittenhouse; Dr. Benjamin Rush, a signer of the Declaration of Independence, with whom he lodged when he first came to America; the army officers James Chrystie and Francis Gurney, who became his friends; even George Washington, to whom he sent a copy of his book on the new planet.

    +

    Another 25 letters are neither to nor from him. Most were written from one Minto family member to another and concern primarily family matters; they were probably brought by Minto to America, or were perhaps sent to his wife, Mary (Skelton) Minto, by his Scottish relatives after his death. Two of the letters were written to or from the Johnstones, in 1764 and 1772 (the latter by David Garrick), before Minto had even met the family. Three of the four letters written in 1797-98, after his death, were addressed to his wife, and the fourth to a close friend of hers.

    +

    Of the 18 letters written by Minto himself, eight are originals, having been sent to relatives and friends. The other ten are copies or drafts, in his own hand, that he kept for his personal use: these are always marked "copy" or "draft" in the Contents List.

    +

    Following the letters are nine manuscript notebooks, diaries, account books, etc. (eight written by Minto, 1776-96; plus one written in 1802, after his death) and five miscellaneous notes in his own hand. Most of the notebooks provide details about events in his life, especially the lists of expenses in the notepads from 1776 and 1779, having to do with his theological education and his dealings with the Johnstone boys, his trip to America in June and July of 1786 from the daily log he kept of it, his travels during his first few months in America from the notepads for late 1786 and early 1787, and the nature of his mathematical lectures at the College of New Jersey from the notebook dated 1802.

    +

    Of the remaining 31 documents: 14 date from 1757 to 1786, when Minto left Scotland for America; 14 from 1787, after he arrived in America, to his death in 1796; and three from after his death, the latest of which is dated 1801. The earliest one (a transcript of the entry for Elisabetta Dodsworth's baptism in 1739, from the Baptismal Record of Leghorn in Italy) is dated 1757, when Minto was only four years old. The last is a bill of lading, dated 1801, for what was probably family memorabilia sent from the Minto family in Scotland to Mrs. Mary Minto after her husband's death. In between are documents providing glimpses into Minto's education (24 January 1776), his being set free in Cadiz (13 March 1779), his trip home from Italy in the summer of 1782 (the passport signed by Sir Horace Mann on 11 June 1782), his honorary degree from the University of Aberdeen (3 February 1786), his becoming a United States citizen (24 July 1787), and his membership in the American Philosophical Society (17 January 1789).

    +

    + Walter Minto Skelton (1804-48) and Family Papers: +

    +

    The Skelton family papers, unlike the Walter Minto papers, consist of a great variety of materials: 43 letters, written between 1780 and 1940; a large body of prose writings and poetry, including 6 notebooks of prose and poetry, 20 orations, lectures, and essays, and 22 manuscripts of miscellaneous verse; one engraving, one drawing, one print, and four portrait photographs; 50 documents of various kinds; 14 printed materials and 3 newspaper clippings; and 58 items of miscellanea, including 7 notes, 18 invitations, and 24 round pieces of cloth with writing in ink.

    +

    The letters are divided into three groups based on the primary correspondent in each group: Mary Skelton Minto (from before 1780 to 1813, and possibly to 1824, the date of her death); Walter M. Skelton (from 1824 to 1843); and the Boyd family (from 1872 to 1940). All three groups of letters provide details about events in the lives of family members. In addition, the first group provides some chronology on the life of Marin Detargny, which is described in detail in the section below on documents. The second group contains some important Skelton family documents, especially the very difficult-to-read letter to Walter Skelton from his father Joseph dated 20 January 1825, and the one from his aunt Elizabeth White dated 22 March 1827. The third group of letters contains a mix of dates and correspondents, mainly regarding the extended Skelton families (especially the Boyds). Two letters in particular are revealing in their insights into the late 19th-century (and later) interest in spiritualism, or spiritism: the one from Edgar Ryder to Ann Skelton dated March 1872 announcing his belief that her brother Walter "is one of the Big Guns in the Spirit world"; and the one from Charles Robb to Elizabeth Boyd dated 12 January 1930 enclosing his transcript of a spirit message from her aunt Ann Skelton during a séance the previous day.

    +

    Following the letters are prose writings and poetry, divided into three groups. The first consists of manuscript notebooks containing one or the other or (usually) both genres, and is further divided into notebooks in Walter Skelton's own hand (3) and those in other hands (3). Except for "Elizabeth White's Collection of Poetry," all of these notebooks have Princeton connections, and a few have western Pennsylvania connections.

    +

    The second group contains orations, lectures, and essays, nearly all of which are in Skelton's hand and presumably composed by him. The dated ones are from his years at the College of New Jersey in Princeton, and most of the others must be as well. Public speaking was an integral part of the College curriculum, and some of the orations must have been delivered there during his student days (see especially the one dated July 1825).

    +

    The third group contains miscellaneous verse. A few of the poems are in Skelton's hand and may have been composed by him (3); the leaf containing the second poem has a few occurrences of the name "(Miss) C. Morford," who may have been a love interest of his. Most of the poems (19), however, are in other hands and range from well known ones like "Don't give up the Ship," Burns' "Auld Lang Syne," and Waller's "Of My Lady Isabella playing on the lute" to obscure ones, including a "Canzonetta" in Italian by Peruchini. Along with Elizabeth White's collection in the first group, these poems indicate a strong interest in poetry in Walter Skelton's extended family.

    +

    After a few miscellaneous illustrations and photographs are a large group of documents (certificates, wills, receipts, deeds of land sales, surveys, and the like), divided by the families to which they refer. Most of these families were from western Pennsylvania and related to the Skeltons (Boyd, Craig, McFarland) or were members of the Skelton family itself. The Franklin Heirs also relates to western Pennsylvania, for in January of 1840 Walter Skelton purchased two tracts of land, totaling 410 acres, on the west side of the Allegheny River in South Buffalo Township, Armstrong County, Pennsylvania, which had been owned in the 1780's by Benjamin Franklin; Skelton presumably built a house on the property and lived there until his death in 1848, when it passed into the hands of his sister Ann Skelton. The Scudders were friends of the Skelton family in New Jersey, and the deed of sale described here was probably from a descendant of that family. The two White family documents refer to Elizabeth White, whose collection of poetry is described in Series II, sub-series 2 above and who lived in Scarsdale, New York; she was the sister of Walter Skelton's mother, Sarah White Skelton, wife of Joseph Skelton, Sr.

    +

    The most intriguing set of documents has to do with Marin Detargny. It is uncertain how his papers came to be included in the papers of the Mintos or of the extended Skelton family. Moreover, seven of the ten Detargny documents between 1796 and 1798 were in the Earhart donation; why or how they became separated from the rest of the Detargny documents is a mystery, especially since they are not so different from the other three of the same date. From the documents (and four letters referring to him) one learns that Marin Detargny was born in France on 26 June 1776, son of Jean Francois Detargny. He is twice called "homme de lettres," once "Professeur," and is later referred to as "Reverend." He remained in France until at least 1798, not leaving until 1800 or a little later. By December 1802 he was in Virginia, residing in Alexandria and trying to open a school, but at about the same time he must have moved to Annapolis, where he taught French until at least April 1804. Between November 1805 and August 1807 he was in Charleston, South Carolina, but by 1810 he was in Philadelphia and being looked after, at least financially, by Benjamin Hopkins (husband of Mary Skelton Minto's niece, Elizabeth, the daughter of Mary's brother Josiah). By early 1813, Detargny was destitute and was in danger of being sent to the overseers of the poor; his wife was also destitute and depended on "relatives" who could not afford to help her husband.

    +

    How the Skeltons and the Hopkinses came to know him, and especially how the Hopkinses came to be responsible for him, is unknown, though intriguing; sometime after 1807 (see undated letter from M. Chrystie to Mary Minto) a "Mrs. Ditennia" (probably Mrs. Detargny), who had been ill, visited Mary Minto in Princeton.

    +

    The next category consists of printed materials (a broadside; an interesting advertisement and list of fees for Mrs. Graham's school in New York from the early 19th century; two newspapers; some pamphlets and announcements; and three newspaper clippings about family events). The most numerous group is the pamphlets and announcements, which contains primarily the Proceedings of seven Boyd family reunions held in western Pennsylvania and Ohio between 1881 and 1892 (at least ten reunions through 1900, but no other Proceedings appear in the Skelton family papers). These Proceedings contain lists of the participants and attendees at the various reunions, along with biographies of some of the Boyds (including Walter Skelton Boyd [1864-92], who was named for his uncle, Walter Skelton, in the 7th Proceedings), and an in-depth study of some of these people might help to unravel the connections both among the Boyds and of the Boyds with the Craigs, Earharts, and McIntyres.

    +

    The final group consists of miscellaneous materials, including notes by Walter Skelton; invitations to parties, dances, and college exercises; a statement from students at the College of New Jersey directed to James Carnahan, president of the College; a notebook containing "By-Laws of ‘The Princeton Blues'," a militia group in Princeton whose captain in 1830-31 was Walter Skelton; a booklet of proverbs and common sayings in English and Spanish on facing pages; a series of primarily 20th-century family notes and lists about the contents of the second Minto-Skelton collection before it was given to the Clements Library; and some obscure pieces of cloth with writing on them. Three of the five notes written by Walter Skelton are presumably from his days at the College of New Jersey; a fourth is apparently a record of the books in his library; and the fifth is a unique list of "Provincialisms noticed in the Western part of Pennsylvania," which he must have recorded when he first went out to that part of the country in 1826. Fourteen of the eighteen invitations (some on the backs of playing cards) are addressed to one or more of the Skelton sisters requesting their attendance at parties, dances, and college exercises, and they attest to the active social life for young women in Princeton and environs in the 1780's.

    +

    The last item in the group of miscellaneous materials is a set of twenty-four round pieces of cloth with writing in ink on one side of twenty-two of them. The writing has various configurations: always the name of the writer and, in addition, occasionally the name of the addressee, usually a sentiment of some kind, and frequently a date and the home of the writer. The addressee, when given, is always Mary or Mary McFarland; the year, when given, is 1845, usually in October; the home addresses are nearly always somewhere in Indiana County or Armstrong County, Pennsylvania; and the writers are often relatives (five are Skeltons).

    +
    + +

    + +

    + + Subjects: + Mathematics--Study and teaching. + Italy--Description and travel. + Speeches, addresses, etc. + Astronomy--Study and teaching. + Uranus (Planet) + Tutors and tutoring. + Spiritualism. + College of New Jersey (Princeton, N.J.) + Education, Higher--United States--History--18th century. + Education, Higher--United States--History--19th century. + Landowners--Pennsylvania. + + + Contributors: + Aitchison, Alexander, Jr. + Blackhall, John. + Boyd, William Morison, 1834-1912. + Broom, Jacob, 1752-1810. + Buchan, David Stewart Erskine, Earl of, 1742-1829 + Buist, John. + Craig, John. + Detargny, Marin, b. 1776. + Drummond, Catherine, 1762-1833. + Garrick, David, 1717-1779. + Gurney, Francis, 1738-1815. + Jamieson, John, 1759-1838. + Johnstone, George, 1730-1787 + McDonald, Jo. + Minto, Mary Skelton, d. 1824. + Minto, Nanny. + Minto, Robert. + Minto, Thomas. + Minto, Walter, 1753-1796 + Minto, Walter, Sr. + Rittenhouse, David, 1732-1796. + Rush, Benjamin, 1746-1813. + Skelton, Ann, 1818-1906. + Skelton, Elizabeth, ca. 1851-1826. + Slop von Cadenberg, Joseph Anton, 1740-1808 + + + Genre Terms: + Announcements. + Cabinet photographs. + Cartes-de-visite. + Certificates. + Clippings (information artifacts) + Correspondence. + Deeds. + Engravings (prints) + Essays. + Invitations. + Lecture notes. + Notebooks. + Notes. + Pamphlets. + Receipts (financial records) + Wills. + +
    + + + + I: Walter Minto papers + + + + 1: Minto correspondence, 1764-1798 + + + + + 1 + 1 + + 2[-] December 1764, Johnstone, B[arbara], [Lady], to John Johnstone + + + + + + 28 June 1772, Garrick to Governor Johnstone + + + + + + 1 March 1774, Minto, Agnes + + + + + + 6 April 1774, Aitchison + + + + + + 13 June 1774, Bell + + + + + 1 + 2 + + 3 August 1774, Chalmers + + + + + + 7 August 1774, Taylor + + + + + + 7 December 1774, Aitchison + + + + + + 11 December 1774, Anderson, Thomas + + + + + 1 + 3 + + 8 February 1775, Aitchison + + + + + + 15 February 1775, Aitchison + + + + + + 18 February 1775, Aitchison + + + + + + 8 March 1775, Aitchison + + + + + + Undated, between 2 November 1773 and 11 March 1775, Walter Minto, Sr. + + + + + 1 + 4 + + 20 April 1775, Anderson, Jo. + + + + + + 19 July 1775, Minto, Robert, to Walter Minto Sr. + + + + + + 30 November 1775, Oliver, Katharine + + + + + + Undated [early 1776 probably January], Walter Minto to Walter Minto, Sr. and/or wife + + + + + 1 + 5 + + 22 March 1776, Barlass + + + + + + 30 May 1776, Johnstone, George + + + + + + 30 May [1776], Johnstone, George (a kind of P.S. to the preceding) + + + + + + 9 September 1776, Ragueneau + + + + + + Undated, after 7 September 1776, Walter Minto to Wauch + + + + + 1 + 6 + + 5 March 1777, Walter Minto to David Minto, Jr. + + + + + + 15 March 1777, Aitchison + + + + + + Undated, probably spring 1777, Thomas Minto to his parents + + + + + + 26 July 1777, Thomas Minto to his parents + + + + + + 29 August 1777, Walter Minto, Sr. + + + + + 1 + 7 + + 1 September 1777, Walter Minto to Waugh + + + + + + 29 November 1777, Taylor + + + + + + 9 February 1778, Walter Minto, Sr. + + + + + + 10 April 1778, Thomas Minto to his parents + + + + + + 1 August 1778, Thomas Minto to his parents + + + + + 1 + 8 + + 26 August 1778, F[ord] to George and John [Johnstone] + + + + + + 12 September 1778, F[ord] + + + + + + 30 October 1778, Johnstone (copy) + + + + + + 7 November 1778, Panton + + + + + + 13 November 1778 Slop to Johnstone (in French) + +

    Included with 30 October.

    +
    +
    +
    + + + + 23 November 1778 (copy) Minto to Johnstone + +

    Included with 30 October.

    +
    +
    +
    + + + + Before 10 December 1778, Slop (in Italian) + + + + + + 10 December 1778, Minto to Johnstone (copy) + + + + + 1 + 9 + + 12 January 1779, Walter Minto to Walter Minto Sr. and/or wife + + + + + + 30 January 1779, Robert Minto to Walter Minto Sr. + + + + + + 2 March 1779, Marth + + + + + + Undated, probably early March 1779, Walter Minto to Johnstone + +

    Fragment, a P.S. to something else.

    +
    +
    +
    + + + + Undated, probably spring 1779, Walter Minto to Ferguson (copy) + + + + + 1 + 10 + + 2 June 1779, Walter Minto, Sr. + + + + + + 12 January 1780, Betts + + + + + + 21 May 1780, Thomas Minto to his parents + + + + + 1 + 11 + + 14 June 1780, Walter Minto, Sr. + + + + + + 2 August 1780, Walter Minto, Sr. + +

    Includes a P.S. from A. Waugh.

    +
    +
    +
    + + + + 22 January 1781, Walter Minto, Sr. + + + + + + 10 February 1781, Thomas Minto to his sister Nanny Minto + + + + + + 10 February 1781, Thomas Minto to his parents + +

    With P.S. 15 February.

    +
    +
    +
    + + + 1 + 12 + + 24 July 1781, Thomas Minto to his sister Nanny Minto + + + + + + 24 July 1781, Thomas Minto to his parents + + + + + + 28 September 1781, Walter Minto to Walter Minto, Sr. and/or wife (fragment) + + + + + + 11 March 1782, Walter Minto to Walter Minto, Sr. and/or wife + + + + + 1 + 13 + + 12 September 1782, Walter Minto, Sr. + + + + + + 14 October [1782], Blackhall + + + + + + 4 January 1783, Robert Minto to Walter Minto, Sr. + + + + + + 6 February 1783, Blackhall + + + + + + 19 May 1783, Blackhall + + + + + 1 + 14 + + 21 September 1783, McDonald + + + + + + March 1784, Drummond + + + + + + 24 June 1784, Drummond + + + + + + 28 June 1784, McDonald + + + + + + 30 June 1784, Walter Minto to Lord Buchan + + + + + 1 + 15 + + 10 July 1784, Walter Minto to Monthly Reviewers (copy) + + + + + + [14 July 1784], Drummond + + + + + + 22 July 1784, Drummond + + + + + + 30 July 1784, Lord Buchan + + + + + 1 + 16 + + [July / August 1784], Drummond + + + + + + 19 August [1784], Drummond + + + + + + [21 August 1784], Drummond + + + + + + 6 September 1784, Drummond + + + + + + 4 October [1784], Drummond + + + + + 1 + 17 + + 10 November [1784], Drummond + + + + + + 25 November 1784, Drummond + + + + + + [November / December 1784], Drummond + + + + + + 13 December 1784, Drummond + + + + + 1 + 18 + + 3 January 1785, Drummond + + + + + + 11 January 1785, Drummond + + + + + + 21 January [1785], Drummond + + + + + + 6 February 1785, Drummond + + + + + 1 + 19 + + [February-April 1785], Drummond + + + + + + [February-April 1785], Drummond + + + + + + [February-April 1785], Drummond + + + + + + [February-April 1785], Drummond + + + + + + [February-April 1785], Drummond + + + + + 1 + 20 + + 2 May 1785, Drummond + + + + + + [25 & 26 May 1785], Drummond + + + + + + 26 May 1785, Lord Buchan + + + + + + 26 June 1785, Drummond + + + + + + 28 June [1785], Drummond + + + + + 1 + 21 + + [21 July 1785], Drummond + + + + + + [22 July 1785], Drummond + + + + + + [24 July 1785], Drummond + + + + + + [29 July 1785], Drummond + + + + + 1 + 22 + + 8 August [1785], Drummond + + + + + + 23 August 1785, Lord Buchan + + + + + + 23 August 1785, Minto, Thomas + + + + + + [1 September 1785], Drummond + + + + + + 4 September 1785, Drummond + + + + + 1 + 23 + + [10 September 1785], Slop + + + + + + 13 September 1785, Thomas Minto + + + + + + [16 September 1785], Drummond + + + + + + 22 September 1785, Lord Buchan + + + + + + 29 September 1785, Minto, Thomas + + + + + 1 + 24 + + [5 October 1785], Drummond + + + + + + [10 October 1785], Drummond + + + + + + 11 October 1785, Drummond + + + + + + 25 October 1785, Jamieson + + + + + + 31 October [1785], Drummond + + + + + 1 + 25 + + 14 November 1785, Thomas Minto + + + + + + 16 November 1785, Jamieson + + + + + + 25 November 1785, Lord Buchan + + + + + + 24 December 1785, Jamieson + + + + + + 29 December 1785, Coventry + + + + + 1 + 26 + + [November 1785-January 1786], Drummond + + + + + + [November 1785-January 1786], Drummond + + + + + + 8 January 1786, Lord Buchan + + + + + + 16 January 1786, Lord Buchan + + + + + + 21 January 1786, Walter Minto to Lord Buchan + + + + + + 23 January 1786, Lord Buchan + + + + + 1 + 27 + + 31 January 1786, Walter Minto to Anonymous (1) (copy?) + + + + + + 6 February 1786, Thomas Minto + + + + + + [8 February 1786], Drummond + + + + + + 10 February 1786, Slop + + + + + + 10 February [1786], Lord Buchan + + + + + 1 + 28 + + [16 February 1786], Drummond + + + + + + [3-23 February 1786], Jamieson + + + + + + [1786 between February and May], "Paulus Mart. 5722," "Rhomboidus" + + + + + + 5 March [1786], J.C. + + + + + + 13 March 1786, [A.] O. + + + + + 1 + 29 + + 18 March 1786, Lawson + + + + + + [21 March 1786], Drummond + + + + + + 3 April 1786, Blackhall + + + + + + [3 April 1786], Drummond + + + + + + [8 April 1786], Drummond + + + + + 1 + 30 + + [April-May 1786], Drummond + + + + + + 3 May 1786, Watson + + + + + + 11 May [1786], Drummond + + + + + + [12 May 1786], Lord Buchan + + + + + + 13 May 1786, Watson + + + + + + 13 May 1786, Lord Buchan to Joseph Reed + + + + + 1 + 31 + + 16 May 1786, Buist + + + + + + [19 May 1786], Drummond + + + + + + 20 May 1786, Steuart + + + + + + 23 May 1786, N[?ichol]nson + + + + + + 2 June [1786], Drummond + + + + + 1 + 32 + + 18 August 1786, Nanny Minto + + + + + + 19 August 1786, McDonald + + + + + + 11 September [1786], Alex. Addison + + + + + + 23 September 1786, Lord Buchan + + + + + 1 + 33 + + 23 October 1786, Alex. Addison + + + + + + 23 October 1786, Jean Addison + + + + + + 18 December 1786, Grant + + + + + + December 1786, Lord Buchan + + + + + 1 + 34 + + 7 January 1787, Alex. Addison + + + + + + 29 January 1787, Gurney + + + + + + 2 February 1787, Drummond + + + + + + 18 February 1787, Gurney + + + + + 1 + 35 + + 28 February 1787, Harpur + + + + + + 28 February 1787, Livingston + + + + + + 4 March 1787, Mason + + + + + + 22 March 1787, Thomas Minto + + + + + 1 + 36 + + 27 March 1787, Thorburn + + + + + + 28 March 1787, Gurney + + + + + + March 1787, Lawson + + + + + + 10 April 1787, David Minto + + + + + 1 + 37 + + 11 April 1787, Walter Minto, Sr. + + + + + + 17 April 1787, Drummond + + + + + + 18 April 1787, Witherspoon + + + + + + 24 April 1787, Thomas Minto + + + + + 1 + 38 + + 20 June 1787, Bond + + + + + + 25 June 1787, Gurney + + + + + + 11 July 1787, McDonald + + + + + + 19 July 1787, Aitchison + + + + + 1 + 39 + + 20 July 1787, Alex. Addison + + + + + + 14 August 1787, Brown + + + + + + 29 August 1787, Witherspoon + + + + + 1 + 40 + + 9 September 1787, Anonymous (1) + + + + + + 10 September 1787, Thomas Minto + + + + + + 10 October 1787, Jamieson + + + + + + 17 October 1787, VanDerbilt + + + + + 1 + 41 + + 28 January 1788, Drummond + + + + + + 20 February 1788, Anonymous (2) + + + + + + 22 May 1788, Paterson + + + + + + 26 May 1788, James Tod + + + + + + 10 June 1788, Nanny Minto + + + + + 1 + 42 + + 27 June 1788, Aitchison + + + + + + [February-June 1788], Walter Minto to Drummond + + + + + + 5 July [1788], Drummond + + + + + + 15 December 1788, Collins + + + + + + 21 December 1788, Stone + + + + + 2 + 1 + + Undated, probably between 1788 and 1789, Walter Minto to [Mary] Skelton (later Mary Minto) + + + + + + Undated , probably between 1788 and 1789, Anonymous (3) + + + + + 2 + 2 + + 5 January 1789, Rush + + + + + + 10 January 1789, Anderson, Thomas + + + + + + 16 January 1789, Drummond + + + + + + 6 February 1789, Hutchison and Vaughan + + + + + 2 + 3 + + 16 February 1789, Lord Buchan + + + + + + 26 February 1789, Nanny Minto + + + + + + 1 March 1789, Anonymous (5) + + + + + + 2 March 1789, Woodhull + + + + + 2 + 4 + + 18 March 1789, Fisher + + + + + + 29 March 1789, Drummond + + + + + + 28 April 1789, Mundell + + + + + + 12 June 1789, Thomas Minto + + + + + + 15 June 1789, Ann[i]e Tod + + + + + 2 + 5 + + 19 June 1789, N[?ichol]nson + + + + + + 29 June 1789, McDonald + + + + + + 6 July 1789, Baynton + + + + + + 1[2] July 1789Walter Minto to Anonymous (2) [= Baynton] (draft or copy) + + + + + + 15 September 1789, Paterson + + + + + 2 + 6 + + 7 October [probably 1789 though could be later], Minto, Mary + + + + + + 25 October 1789, Drummond + + + + + + 10 November 1789, McDonald + + + + + + 14 December 1789, Irving + + + + + 2 + 7 + + 18 January 1790, Minto, Walter Sr., to Buist + + + + + + 24 February 1790, Drummond + + + + + + 10 March 1790, Rittenhouse + + + + + + 20 March 1790, Stone + + + + + 2 + 8 + + 27 March 1790, Lord Buchan + + + + + + 19 July 1790, Drummond + + + + + + 15 November 1790, Rittenhouse + + + + + 2 + 9 + + 5 March 1791, Kemp + + + + + + 5 March 1791, Mason + + + + + + 27 April 1791, Drummond + + + + + + 25 June 1791, Minto, Thomas + + + + + + 28 June 1791, Lord Buchan + + + + + 2 + 10 + + 30 July 1791, Minto, Thomas + + + + + + 16 August 1791, Buist + + + + + + 26 September 1791, Rittenhouse + + + + + + 11 November 1791, McDonald + + + + + 2 + 11 + + 24 March 1792, Rush + + + + + + 6 April 1792, Gale + + + + + + 30 April 1792, Rush + + + + + 2 + 12 + + 3 May 1792, Hubey + + + + + + 9 May 1792, Rush + + + + + + 25 May 1792, Rittenhouse + + + + + + 28 May 1792, McDonald + + + + + 2 + 13 + + 21 June 1792, Paterson + + + + + + 24 July 1792, Steuart + + + + + + 15 August 1792, Jamieson + + + + + + 20 August 1792, Anonymous (6) + + + + + 2 + 14 + + 19 September 1792, Rush + + + + + + 27 September 1792, Bonrie + + + + + + 2 November 1792, McDonald + + + + + + 13 November 1792, Collins + + + + + 2 + 15 + + 13 March 1793, Buist + + + + + + 4 April 1793, Rittenhouse + + + + + + 5 August 1793, Lord Buchan + + + + + + 9 October 1793, Rochefontaine + + + + + 2 + 16 + + 1 February 1794, Jamieson + + + + + + 10 June 1794, Hunter + + + + + + 12 July 1794, McDonald + + + + + + 30 July 1794, Broom + + + + + 2 + 17 + + 13 August 1794, Buist + + + + + + 9 September 1794, Lord Buchan + + + + + + 11 September 1794, Oliver, Stephen + + + + + + 12 September 1794, Broom + + + + + 2 + 18 + + 20 September 1794, Minto, Nanny + + + + + + 24 September 1794, Coventry + + + + + + 1 October 1794, Woofoin + + + + + + 22 October 1794, Littlejohn + + + + + 2 + 19 + + 24 October 1794, Tod, James + + + + + + 27 October 1794, Young + + + + + + 1 November 1794, McCormick to George Morgan + + + + + + [15 November 1794], S. Smith + + + + + 2 + 20 + + 14 February 1795, Rochefontaine + + + + + + 3 March 1795, Laurie + + + + + + 24 March 1795, Buist + + + + + 2 + 21 + + 2 April 1795, Tod, James + + + + + + 23 April 1795, Addison, Alex. + + + + + + 5 May 1795, Minto, Nanny + + + + + + 16 May 1795, Rodgers + + + + + 2 + 22 + + 6 August 1795, Buist + + + + + + [6 July-28 September 1795], Stockton + + + + + + 27 [?Octo]bre 1795, Woofoin + + + + + + 28 October 1795, Rittenhouse + + + + + 2 + 23 + + 14 November 1795, B. Smith + + + + + + 3 December 1795, Imlay + + + + + + 21 December 1795, Rittenhouse to Mary Minto + + + + + 2 + 24 + + 5 September 1796, Minto, Thomas + + + + + + 26 September 1796, Kemp + + + + + 2 + 25 + + Undated [between 1788 and 1796], Anonymous (4, 7, 8) + + + + + + 29 October [prob. 1790s before late 1796], Chrystie to Mrs. Clark + + + + + + Undated [1790s before late 1796], Skinner + + + + + 2 + 26 + After Minto's death (but referring to him) + + + + + 14 February 1797, Minto, Nanny, to Mrs. Christie (with P.S. 10 March ) + + + + + + 16 March 1797, Skelton, Joseph, to Mary Minto + + + + + + 1 July 1797, Snowden, Isaac Jr., to Mary Minto + + + + + + 15 February 1798, Minto, Walter Sr., to Mary Minto + + + +
    + + + 2: Manuscript Notebooks, Diaries, Account Books, etc. + +

    All in Minto's hand except the last.

    +
    +
    + + + 2 + 27 + 1. [May 1776]: Fragment (perhaps taken from a notepad) containing expenses, receipts, and diary entries from October 1771 (during his stay at Grange Toll in Edinburgh from that date until June 1773) to May 1776. + He set off [from London] for Gravesend on 26 May and went on board the Westmoreland on 30 May. This item includes entry for his stay with Mr. Watson in East Rhynd from 2 November 1773 to 11 March 1775 and payments for his engagement with Governor Johnstone's sons from 17 January to 21 May 1776. + 1 small leaf, with recto and verso pages numbered 28 and 29; writing on page 28 only; page 29 blank except for a later note. + + + + + 2. [March 1779]: Notepad containing expenses incurred and payments received on behalf of the Johnstone boys between 17 January 1776 and 2 December 1778. + Last dated receipt is 6 March 1779 for payment of 37 pounds, probably for expenses of the boys, from a Mr. Duff in Cadiz. Minto lists his hypothetical monthly salary through to January 1780 on pages [1]-[2]. + 10 small leaves, bound by stitching. + + + + + 3. [July 1785]: Travel log of a trip within Scotland in July of 1785. + Carron, Lithgow, Queen Mary's birthplace, Falkirk, Perth, etc. The only dated stop is Carron on 5 July. + 1 small leaf, with writing on recto only. + + + + + 2 + 28 + 4. [July 1786]: "Log-Book & Journal / of a Voyage intended, under God's Providence, / from Greenock to Philadelphia / In the Ship Alexander, Alex. Ritchie Commander, / Kept by W. Minto, Passenger / 1786". + Title on recto of 1st leaf. Leaves 2-52 are numbered (except for leaf 11) on versos from 1 to 50, with each verso and facing recto devoted to a single day of Minto's trip (9 June to 30 July 1786); leaves 53 verso-80 blank and unnumbered. A leaf containing compass directions is inserted in the front of the notebook. + 80 leaves, bound. + + + + + 2 + 29 + 5. 1786: Notepad containing a travel log and notes. + Notes on Philadelphia and New Jersey; with a few brief comments on New York, Connecticut, Maryland, Delaware, etc. + 8 small leaves, bound with a pin; the first 6 leaves are numbered. + + + + + 6. [February 1787]: Notepad containing a travel log and notes between September 1786 and 2 February 1787. + September 1786 (number of houses in various cities), 26 December 1786 (Albany), 19 January 1787 ("Jaunt to Saratoga"), 2 February 1787 (some Oneida Indian terms). + 8 small leaves, bound with a pin; leaves 2-3 are paginated 2 to 4 beginning with the verso of leaf 2; the rest are unnumbered. + + + + + 2 + 30 + 7. Undated [?1782-87]: Notebook of longitudes. + For various years from 1600 to 1830, filled only for 1756 and 1770-87; then one for a full but unknown year; other charts based on Greenwich; references to Slop for many calculations in the early 1780s. + 52 leaves, unnumbered, with leaves 1-2, 30-52 blank; leaves 3-29 are written on rectos and/or versos; stubs can be seen between leaves 5 and 6, 15 and 16, 18 and 19, 19 and 20, 21 and 22, 51 and 52. + + + + + 2 + 31 + 8. Undated [?perhaps after arriving in America]: "Elements of Algebra" (fragmentary). + 3 leaves folded in half to make a booklet of 6 leaves/12 pages, with writing on pages [1], [3], and [5] only. + + + + + 2 + 32 + 9. [1802]: Notebook entitled "Practical Geometry, Trigonometry, and Conick Sections; Trigonometry and Practical Geometry by Walter Minto LLD Transcribed by William Hay, Jr. [?] Princeton NJersey, United States of North America, New World". + Appears to be class notes based originally on Minto's lectures, transcribed by one student and sold to others; other names are George Joness Booth, Jno Crump, George Crump, G. Williams, Stevenson Archer, George Jones; references to Richmond and Manchester, Virginia, and to Western Shore of Maryland; dates included = 26 May 1802 17 August 1802 2 & 3 March 1804. + 85 leaves, bound; beginning on the verso of the 2nd leaf and going to the recto of the 50th leaf the pages are numbered 2-95; from there to the end the pages are mostly blank; many additions in hands other than the main one. + + +
    + + + 3: Notes by Minto + +

    In his own hand, all undated.

    +
    +
    + + + 3 + 1 + 1. [Must have been written after he arrived in America in 1786]: "To the Citizens of America". + Appears to be the beginning of a draft of a speech; gives reasons for emigrating to America: "his heart was warm in the cause of America" and "he thought he could be more useful & more happy here than at home." + 2 leaves folded to make a booklet of 8 small pages, with writing on pages [1]-[4] only. + + + + + 2. Undated: List of surnames with some initials of first names. + 1 leaf folded to make 4 pages, with writing on all 4. + + + + + 3. Undated: List of books. + 1 leaf folded to make 4 pages, with writing on all 4. + + + + + 4. Undated: Notes on story of David, youngest son of Jesse. + 1 leaf, with writing on both sides. + + + + + 5. Undated: List of 15 topics, political or historical + Perhaps intended for speeches like 1 above. + 1 leaf, with writing on both sides. + + +
    + + + 4: Documents from Minto's time + + + + 3 + 2 + 1. 16 July 1757: Extract from the Baptismal Record of Leghorn [= Livorno in Italy] for 8 April 1739 for Anna Elisabetta, daughter of Capitano Daniello di [P]uglielmo Dousuord di Londra and Marg. d'And. Par[?]ment di Livorno + +

    Elisabetta later became Mrs. Slop: see letter of Minto to Johnstone dated 23 November 1778.

    +
    +
    +
    + + + 2. 15 December 1768 to 15 December 1769: Reading card for the library of the University of Edinburgh + +

    Housed in Graphics Division.

    +
    +
    +
    + + + 3. 1771: + Invitation from Adam Ferguson to Walter Minto (perhaps to attend a lecture by Ferguson) + + + + + 4. 24 January 1776: Testimonial (in Latin) by James Robertson of Minto's study at the University of Edinburgh between 1768 and 1771. + Minto called a scholar and citizen of the library; in 1768 he studied Latin, in 1769 Logic and Latin, in 1770 Natural Philosophy, Logic, Latin and Greek, in 1771 Moral Philosophy under professors of arts and sciences) and in 1775 (when he studied Moral Philosophy and Rhetoric). + + + + + 3 + 3 + 5. 25 November 1778: Statements by two doctors in Pisa, Carlo Barsanti and Domenico Cappucci, about John Johnstone's health + +

    In Italian; with two notarizations in Latin, 1 December 1778.

    +
    +
    +
    + + + 6. 30 November 1778: Certificate of good conduct of Walter Minto, in company with John Johnstone, by Conte Cosimo Agostini. + +

    In Italian; with two notarizations in Latin, 1 December 1778.

    +
    +
    +
    + + + 7. 1 December 1778: + Certificate of good conduct for Walter Minto by Jacopo Andrea Tommasini, professor of mathematics at University of Pisa. + +

    In Italian; notarized.

    +
    +
    +
    + + + 8. 2 December 1778: Receipt for 20 sequins from "William" Minto for passage from Leghorn to England, signed by Willis Machell. + + + + + + 3 + 4 + 9. 1 February 1779: Attestation of Walter Minto's good behavior in Pisa by Count Demetrius de Mocenigo, Commissary General of the Navy in Italy for the Empress of Russia, Pisa. + +

    In French.

    +
    +
    +
    + + + 10. 13 March 1779: Attestation by Jean Baptiste Poirel, French vice consul, that Minto was put at liberty in Cadix on 23 February [1779], signed by Poirel at "consulat general de France a Cadix" on 13 March 1779. + Specifically, that Minto, who was made a prisoner of war on the English ship "Le Westmoreland" by the French ship "Le Destin", passed from Cadiz to Genes [= Genoa] on the "Paquebot" Hollandais called "Le Postillou" commanded by Joseph Dodero. + +

    In French.

    +
    +
    +
    + + + 11. 18 April 1782: Bill of lading for a box of books, Port of Livorno. + Minto's name is not on this, but rather Reverend Padre Ockelli; mentions journey to Ostend, signed Giorgio Bagovich, Dice Epene. + +

    In Italian.

    +
    +
    +
    + + + 12. 11 June 1782: (Florence) Passport for Minto for passage through Germany, signed by Sir Horace Mann. + +

    Housed in Broadsides under Great Britain, Florentine Legation.

    +
    +
    +
    + + + 13. 3 February 1786: Diploma from the University of Aberdeen for the degree of LL.D. for Walter Minto. + +

    Housed in Oversize Manuscripts.

    +
    +
    +
    + + + 14. 20 May 1786: Certificate of Walter Minto's membership in the Orange Society, Edinburgh, signed by Selkirk Steuart, president, and James Wright, secretary. + + + + + 3 + 5 + 15. 7 April 1787: Invitation to Walter Minto to attend Columbia College commencement on the Tuesday following (April 10). + + + + + + 16. 1787 [day and month not filled in yet, but probably between March, when first contact was made with Minto, and May, when school opened]: Draft of an agreement between Minto and the trustees of Erasmus Hall in Flatbush for his services as principal of the Hall. + +

    Minto was at Flatbush for circa six months before October 1787.

    +
    +
    +
    + + + 17. 24 July 1787: Minto's certificate of U.S. naturalization, New York + + + + + 18. [September 1788]: Draft of a proposal + Proposed by Minto to give up 5 pounds of his salary to purchase a medal to be given by the trustees and faculty of the College for the best dissertation on either of 2 topics: the unlawfulness and impolicy of capital punishment and the unlawfulness and impolicy of African slavery (date from Eisenhart, pp. 290-91). + + + + + 3 + 6 + 19. 17 January 1789 : Certificate of membership in the American Philosophical Society, signed by B. Franklin, John Ewing, Wm. White, and David Rittenhouse and witnessed by James Hutchinson, R. Patterson, Sam. Magan, and Jn. Vaughan. + + + + + 20. 1 December 1790: Bond of Matthew Clarke to Minto for 160 pounds + + + + + 21. 22 October 1792: Certificate of membership in the St. Andrew's Society of New York. + +

    Housed in Small Broadsides under S.

    +
    +
    +
    + + + 22. 6 May 1793: Indenture between Walter Minto and the Congregation for 2 pews in the Presbyterian meeting house, Princeton. + + + + + 23. 6 July 1795: Memorandum of an agreement between Benjamin Smith and Walter Minto. + Smith was one of the executors of the will of Samuel [T]ucker, deceased. Agreement "not to expose to sale" the house and land now in Minto's possession and that Minto will execute a bond for 590 pounds to be paid 1/3 on 1 October 1795 the other 2/3 in 4 equal annual payments beginning 1 October 1796. + + + + + 3 + 7 + 24. 28 September 1795, 1796[with "six" written over a "five," but day and month are torn away]: Part 1: Bond of indemnity by Minto to Richard Stockton for 1180 pounds, with additional stipulations, with Thomas P. Johnsone, among others, as witness. Part 2: Some sort of codicil by Mary Skelton [Minto], executrix of Minto's last will (he being deceased), probably asking to have debt set aside, with Elizabeth Skelton as witness + + + + + 25. 1 October 1795: Note beginning "Doctor Minto sined a Bond in conjunction with Richard Stockton to [T]uckers Executors" for 590 pounds. + With payment schedule on reverse through 1 October 1799 (see item 9 above). + +

    This note was found with Stockton letter in Series I, sub-series 1 above, and is clearly connected with it in subject matter, but it is not in the same hand, and it is uncertain whether the two were originally together in the Minto donation.

    +
    +
    +
    + + + 26. 2 May 1796: Bond of Minto to Robert Armstrong for 200 pounds. + With notes of repayment on back from Mary Minto in 4 installments (1797-98), the last of which has the name of Josiah Skelton (Mary Minto's older brother) on it; with receipt from Armstrong dated 4 May 1796 for a piece of paper mentioned in the bond. + + + + + 27. 3 May 1796, 4 May 1796: Statement and release of quitclaim between Robert Armstrong and his slave Tony. + Part 1: Copy of statement made on 30 April 1796 that Robert Armstrong brought before 2 justices and 2 overseers of the poor his slave Tony, sound of mind, etc. (original filed in Clerk's office of Middlesex County on 3 May 1796). Part 2: Release by Armstrong of quitclaim to Tony. + One leaf, with writing on the recto only. + + + + + 3 + 8 + 28. 4 May 1796: Bond of John Duryie and Toney to Minto for 200 pounds. + John Duryie and Toney both free black men (but Toney late a slave to Robert Armstrong, from whom Minto had previously bought him for 100 pounds, as this document says). Bond stipulates that if Toney binds himself to Minto for 6 years and 5 months and carries out all lawful commands, then the debt will be extinguished. + + + + + 29. [October 1796 = the week after 21 October ]: Draft of obituary for Minto. + 2 leaves sewn together, with writing only on pages [1] and [4] + + + + + 30. 8 November 1796, 9 November 1796: Board of Trustees of the College of New Jersey directs Enos Kelley to call on Minto's executor and retrieve the books, public stock, cash, etc. that Minto had as Treasurer of the College. Receipt by Enos Kelley to Mary Minto for the above items. + One leaf, with writing on the recto only. + + + + + 31. 23 May 1801: Bill of lading. + For one box, shipped from Leith to New York on the Russell, directed to Mrs. Minto, to be delivered to Mrs. Chrystie of New York for payment; contents unknown to Rowland Gibbs, master of the Russell [probably sent by the Mintos in Scotland; cf. letters of Nanny Minto to Mrs. Chrystie dated 1797 and of Walter Minto Sr. to Mary Minto dated 1798] + + +
    +
    + + + II: Walter Minto Skelton (1804-48) and Family + + + + 1: Correspondence + + +

    Correspondence from 1780 to 1813 (and possibly to 1824), primarily to or from Mary Skelton Minto (died late 1824). Correspondence from 1824 to 1843 primarily to or from Walter M. Skelton (died 1848). Later correspondence chiefly concerning Boyd family.

    +
    + + + 3 + 9 + 18 October [probably before 1780], Skelton, M[ary], to Betsey Skelton + + + + + + 4 March 1780-6 April 1780, Invitations + +

    Filed in Series II, sub-series 6.

    +
    +
    +
    + + + + 17 February 1781, Invitation + +

    Filed in Series II, sub-series 6.

    +
    +
    +
    + + + [a few days before 19 November 1781], Mrs. S[cudder] to her husband + + + + + + 24 June 1782--[probably mid-1780s], Invitations + +

    Filed in Series II, sub-series 6.

    +
    +
    +
    + + + + [1788-1789], Minto, Walter, to Miss [Mary] Skelton + +

    Filed in Series I, sub-series 1.

    +
    +
    +
    + + + 7 October [probably 1789 though could be later], Minto, M[ary], to Walter Minto + +

    Filed in Series I, sub-series 1.

    +
    +
    +
    + + + + 21 December 1795, Rittenhouse to Mary Minto + +

    Filed in Series I, sub-series 1.

    +
    +
    +
    + + + + 14 February 1797 (with P.S. 10 March 1797), Minto, Nanny, to Mrs. Christie + +

    Filed in Series I, sub-series 1.

    +
    +
    +
    + + + + 16 March 1797, Skelton, Joseph, to Mary Minto + +

    Filed in Series I, sub-series 1.

    +
    +
    +
    + + + + 1 July 1797, Snowden to Mary Minto + +

    Filed in Series I, sub-series 1.

    +
    +
    +
    + + + + 15 February 1798, Minto, Walter, Sr., to Mary Minto + +

    Filed in Series I, sub-series 1.

    +
    +
    +
    + + + 3 + 10 + + 17 July 1799, Anonymous to Mary Minto + + + + + + 6 February 1800, Garcia del Rio to Drake + + + + + 3 + 11 + + 1 December 1802, Gamble to Detargny + + + + + + 7 December 1805, Chrystie, John, to Mary Minto + + + + + + 2 February 1807, Chrystie, John, to Mary Minto + + + + + + 4 May 1808, Chrystie, John, to Mary Minto + + + + + 3 + 12 + + 24 October 1808, Gibbes to Mary Minto + + + + + + 22 January 1810, Chrystie, M, to Mary Minto + + + + + + 14 February 1811, Hopkins to Mary Minto + + + + + + 19 January 1813, Hopkins to Mary Minto + + + + + 3 + 13 + + Undated, [probably after 1796 and perhaps after 1807, before late 1824], Chrystie, M., to Mary Minto + + + + + + Undated, [probably after 1796 but not clear how long after; before late 1824], Cuthbert to Mary Minto + + + + + + Undated, [probably after 1796 but not clear how long after; before late 1824], [Cuthbert] to Mary Minto (a draft of the preceding) + + + + + 3 + 14 + + 27 June 1824, Skelton, Walter Minto, to John Skelton (appears to be a draft, or else the letter was not sent) + + + + + + 18 August 1824, Maclean to WMS + + + + + + 29 September 1824, Skelton, W. M., to Anonymous (draft) + + + + + + 20 January 1825, Skelton, Joseph, to WMS + + + + + + 2 February 1826, Skelton, W. M., to Mary Skelton + + + + + + 6 February 1826, Invitation to Mr. [Walter] Skelton + +

    Filed in Series II, sub-series 6.

    +
    +
    +
    + + + + 22 March 1827, White, Elizabeth, to WMS + + + + + 3 + 15 + + 8 July 1831, Skelton, W. M., to John Lourey (copy) + + + + + [received 25 July 1831], Committee of the Princeton Blues to WMS + + + + + + 14 January 1832, Skelton, Ann, to WMS + + + + + + 6 February 1832, Skelton, W. M., to Sarah Skelton + + + + + 8 February 1834 Invitation to Ann Skelton + +

    Filed in Series II, sub-series 6.

    +
    +
    +
    + + + + February 1843, Invitation to W.M. Skelton & Lady + +

    Filed in Series II, sub-series 6.

    +
    +
    +
    + + + 3 + 16 + + [?2]4 March [18]72, Ryder to Ann Skelton + + + + + + 17 February 1887, Rayburn to Hannah P. Boyd + + + + + + 7 January [18]98, Earhart, Harry B., to W.M. Boyd + + + + + 3 + 17 + + 30 March 1906, Duffy to Hill + + + + + + 11 September 1915, K., H.L., to Elizabeth [Boyd] + + + + + + 11 January 1930, Skelton, Ann, to Mary Boyd (transcript of spirit message enclosed in next letter) + + + + + + 12 January 1930, Robb to Elizabeth Boyd + + + + + + 7 April 1931, Thorsen to Elizabeth Boyd + + + + + 3 + 18 + + 18 November 1937, White, Marie Earhart, to Elizabeth Boyd + + + + + + 24 August 1938, Jack[s]on to Elizabeth Boyd + + + + + + 2 May 1939, White, Marie Earhart, to Elizabeth Boyd + + + + + + 6 September 1940, White, Marie Earhart, to Elizabeth Boyd + + +
    + + + 2. Prose Writings and Poetry + + + + Notebooks + + + + In WMS's hand + + + + 3 + 19 + + 1822-1827, "Original Pieces / in Poetry and Prose. / 1824" (title, on page 3) + A mixture of verse and prose pieces. The first item is a poem entitled "To the Memory of A Mother." At ends of pieces there are frequently dates, usually consecutive (e.g., August 10, August 14, September 5 1824, March 5 1825, July 1822, January 1825, April 2nd 1825, July 8th 1825, January 9th 1825, January 1826, June 1827), followed by initials or names (e.g., AHDH, my mother, MBW, Miss S. Bayley, MW, TA-n, DB), perhaps referring to people to whom Skelton has shown the pieces; occasionally the note "Published" appears. Most prose pieces parallel those found in Orations, Lectures, and Essays below. + + 189 pages (with numbering beginning with "1" on page [4]); pages 116-89 are blank. + + + + + 3 + 20 + + 1824, "Extracts-1824 / Walter M. Skelton's" (title page) + Primarily verse, with attributions at the ends of each piece. The cover and title page both have "W M Skelton" stamped on them. + + 190 pages. + + + + + 3 + 21 + + Undated, ca. 1824-27, "Extracts / Skelton's" (title page) + Primarily verse, but a few prose pieces: a series of quotations, with name or source at the end of each. 96 pages, with 60-64, 68-69, and 74-96 blank. + + + + + + In other hands + + + + 3 + 22 + + 1818-[183]4, lecture notes + Notes from 8 lectures on history (both general and ancient), some with questions appended; followed by (and occasionally interspersed with) verse. On front cover: "M [W] McAllister / Princeton College / Nassau Hall / Newjersey / January 9, 1818 / in the 42 year of the Amer / ican Independence." On page 3: "Conemaugh Loyalhanna," "Conemaugh" again, "T.W. Simpson," "Theodore Simpson," "Conemaugh Thomas Chrystie Skelton" (this last upside down in bottom margin); on page 52: "Conamaugh May 18[3]4." + + 50 pages (numbered beginning with 3 and going to 52), covered with boards; appears to be same hand throughout. + + + + + 3 + 23 + + 1829-1830, "Elizabeth White's / Collection / of Poetry" (on cover, printed or traced) + Attributions appear at the ends of many poems, but not all. On page 133 are these notes and dates: "My Dear Mother departed this life 1st mo. 18th 1829" followed by: "EW 1st mo. 1830." + + 140 pages, counting front and back paper covers, with pagination beginning with "1" on page [5] and going to "133" on recto of back cover; table of contents (called "Index to Part 1st") on pages [1-4]. + + + + + 3 + 24 + + Undated, ca. 1834-1836 + + Extracts in prose and (especially) verse, some of which are attributed. Internal dates: "Princeton 1835" at the end of a poem; " October 4th 1836" at the end of a poem; "The Hon. Nicholas Biddles address before the Alumni of Nassau Hale Sept 30th 1835" at the end of a proverb; "1834" and "Webb" after a prose sentence; " July 1834" at the end of a poem "By a Lady." The first item is a poem by Campbell, "The Last Man"; on verso of last leaf are scribbles, including names (James Hogg, Washington Irving, Walter Scott, and Anderson), titles of poems, some quotations, the date 1836 and (at the top) the place name Freeport. + 36 leaves (the 1st one torn away), unnumbered. + + + + + + + Orations, Lectures, Essays + + + + In WMS's hand + + +

    Presumably composed by WMS (the undated items are probably mid-1820s)

    +
    + + + 4 + 1 + + 28 September 1824, On chivalry (no title, but "II" is at the top of p. 1). + Begins: "There are some subjects which naturally strike the mind." The date and "Skelton" are on p. 8. Also in Notebooks above. + + 8 pages + + + + + + + 14 February 1825, On slander, etc. (no title). + Begins: "If we should closely scrutinize the motives that prompt our own actions." The date and "Skelton" are on p. [4]. + + 4 pages, unnumbered + + + + + + 30 June 1825, Oration (no title), beginning: "All again is hushed in quiet." + The date and "Skelton" are on p. [7]. Also in Notebooks above; and cf. next item. + 8 pages, unnumbered, with p. [8] blank. + + + + + 4 + 2 + + July 1825, "An Oration delivered in the College chapel of Nassau Hall a few days after the 4th of July of 1825." + Begins: "All again is hushed in quiet!"; ends: "‘Fiat justitia, si ruat coelum!' Skelton." Also in Notebooks above; and cf. previous item. + 6 leaves, unnumbered, bound, with one half-sheet (with writing on the verso) added between 3rd and 4th leaves. + + + + + + 1825, "Oration 1825" on slavery. + Begins: "Slavery, as it exists in our country at the present day." Title and date written vertically on p. [8], which is otherwise blank; the text ends on p. [7]. Also in Notebooks above; and cf. draft beginning "Many have pretended" below. + 8 pages, unnumbered, held together by pins, with a small fragment with a one-sentence insertion pasted to the top of p. [3]. + + + + + 4 + 3 + + July 1826, "An Oration delivered at Cranbury July 4th 1826." + Begins: "Friends and Fellow Citizens-Welcome! To one and all, as the organ of all, I bid a mutual and a cordial welcome." Not in WMS's hand, but the ending "Skelton" on leaf [9b] does look like his hand. Cf. Oration, beginning "Friends and Fellow Citizens - Welcome!" below. + 10 leaves, unnumbered, bound; the writing fills leaves [2-9]. + + + + + + 5 September 1826, Oration entitled "The Influence of the Arts & Sciences on Civil Liberty." + Begins: "It is an evil peculiarly attached to literary pursuits." The date is on p. [4]. + 4 pages, unnumbered. + + + + + + 1826, Oration (no title), beginning: "Friends & Fellow Citizens-Welcome!" + On p. [10] are "End" and below it "Skelton 1826." Cf. "An Oration delivered at Cranbury" above. + 10 pages, unnumbered. + + + + + 4 + 4 + + Undated, Untitled oration. + Begins: "The discovery and direction of those feelings which May be made subservient to the prevention of crime and promotion of good conduct, have engaged the attention of mankind since the creation of civil government to the present day." Leaf [1] blank, text begins on leaf [2a], and "Skelton" on leaf [8b]. A version in Notebooks above; and cf. draft beginning "Time is the greatest innovator" on capital punishment, and draft beginning "Many have pretended" below. + 8 leaves, unnumbered, bound together with a ribbon. + + + + + 4 + 5 + + Undated, Oration or essay entitled "Proverb the 19th. Vers. 23d. a man's pride shall bring him Low." + Begins: "It is often the fate of those who stray from the paths of duty, in pursuit of happiness, to defeat their own views, & to embrace misery, where they hope to find enjoyment"; no colophon, just ends. + 11 leaves, unnumbered, bound. Text on leaves [1a]-[10a], leaf [11] blank. + + + + + 4 + 6 + + Undated, "Sympathy." + Short oration or essay, probably incomplete but ending with a full sentence in the middle of p. [2]. Begins: "The great author of all things, in the formation of that strange and wonderful creature Man." + 1 leaf (2 pages, unnumbered). + + + + + + Undated, "For the True American." + Outline or draft of half a page. Begins with a 6-line poem by "Beattie"; then: "Most truly has it been written, in the emphatic and breathing characters of inspiration." Ends: "Moderation in all things May be ranked as the first, or alpha, in this list of first principles." A version also in Notebooks above. + 4 pages, unnumbered; writing only on p. [1]. + + + + + + Undated, "The Bachelor of Arts." + Outline or draft of a page. Begins with three lines from Shakespeare; then: "This is the age of improvement, & opinions should not be stamped with the sin of hetrodoxy [sic]." + 1 leaf, 2/3 to 3/4 the normal size (2 pages, unnumbered); writing only on p. [1]. + + + + + + Undated, Draft or part of an essay or oration on capital punishment (no title). + Begins: "Time is the greatest innovator . . ." (a quotation from Lord Bacon); then: "The present is an age of progressive improvement." Also in Notebooks above; and cf. oration beginning "The discovery and direction of those feelings" above and draft beginning "Many have pretended" below. + 4 pages, unnumbered; writing on p. [1] plus 2 lines at the top of p. [2]. + + + + + 4 + 7 + + Undated, "W.M. Skelton Universal Suffrage": a note. + Fragment of a leaf; writing only on the recto. + + + + + + Undated, "The United States Senate" and "Chief Justice Marshall": two notes. + The name "W.M. Skelton" follows each note. + Half a leaf; writing only on the recto. + + + + + + Undated, On slavery (no title). + Draft or outline. Begins: "Much has been said & written on the subject of slavery as it exists in these United States." A version also in Notebooks above; and cf. "Oration 1825" above. + Half a leaf; writing only on the recto. + + + + + + Undated, On capital punishment (no title). + Draft or outline. Begins: "Many have pretended to rest their support of this barbarian practice on parts of the Jewish dispensation." Cf. oration beginning "The discovery and direction of those feelings" and draft beginning "Time is the greatest innovator" above. + Half a leaf; writing only on the recto. + + +
    + + + In other hands + + +

    Both probably written in the mid-1820s.

    +
    + + + 4 + 8 + + Undated, "Oration" in praise of Hamilton, with the names "GW Crump" and "GeoW Crump Powhatan" (on p. [2]). + Begins: "To swell the sable triumph of the tomb the Great destroyer in pointing his shaft at Hamilton has selected a victim of no ordinary value." + 1 leaf ( 2 pages, unnumbered), with writing on both pages. + + + + + + Undated, On misery and happiness in life (no title), with the name "Bryce" at the end. + Begins: "It is the delight of a certain class of men to describe the miseries of human life in the most lively manner." + 1 leaf folded in half (4 pages, unnumbered), with writing on the first 2 1/2 pages only. + + +
    +
    + + + Miscellaneous Verse + + + + In WMS's hand + + +

    Perhaps composed by WMS.

    +
    + + + 4 + 9 + + 8 September 1824, Untitled. + Begins: "My Mary's form is fair and delicate; / As fair -- but stronger -- is her chastened mind." + Poem of 9 lines. 1 small scrap of paper; writing only on the recto. + + + + + + 22 February 1826, Untitled. + Begins: "I said, fair lady, that ‘my Muse was dead', / And that, with all becoming obsequies / To such a frail and worthless thing." The date is on the verso followed by "S" and then: "Skelton To Miss C. Morford," with repetitions: "To Miss CM," "To Miss C," "Miss C Morford." + Poem of 22 lines, ending with the last line at the top of the verso. 1 leaf + + + + + + 14 June 1826, "My Mother." + Begins: "Whose anxious love for me was first, / While yet an embryo of being." Poem of 27 lines (9 stanzas of 3 lines each), with "My Mother" as a tag to each stanza. The date and "Skelton" are on the verso. + 1 leaf (6 stanzas on recto, 3 on verso). + + +
    + + + In other hands + + + + 4 + 10 + + [Late 1824?], Untitled. + Begins: "A welcome gallant chief / From Gallia's sunny clime"; ends: "It bade us honour thee / Lov'd La Fayette." These are lines sung at the celebration of General Lafayette's second visit to Trenton, on 25 September 1824 by 13 young women, each representing one of the 13 original colonies; printed in the Trenton Federalist of 27 September 1824 and in the True American for 2 October 1824 a full account is in A History of Trenton 1679-1929 (1929), Chapter IV, Section V. + Poem of 16 lines (4 stanzas of 4 lines each). 1 leaf; writing only on the recto. + + + + + + [1825?], "Lines upon hearing a discourse from the Revd Dr. Alexander, from the words referred to -- preached Sunday, March 6th 1825 -- in the College Chapel --" [in Princeton]. + Begins: "By faith -- tho' bow'd beneath the vilest yoke / Oppression dire for slavery ever made"; preceded by the text: "By faith Moses when he was born etc. etc. Hebrews 11th Ch. [?] 23 to 29 inclusive -- see also Exodus." The title follows the poem on the verso. + Poem of 52 lines (4 stanzas of 13 lines each). 1 leaf (3 stanzas on recto, 1 on verso). + + + + + 4 + 11 + + Undated, "Parody." + Ashbel Green, President of the College of New Jersey from 1812-22, is referred to in the poem. Begins: "In Princeton when t'was nine o'clock / To Junior room did College flock / To get a holiday or knock / Town Tutors & the Faculty." Poem of 32 lines (8 stanzas of 4 lines each); the poem is in a hand that has many characteristics of WMS's hand and may be a hastily written copy by him. Also on the verso, following the poem, in what is probably WMS's hand, are "A parody," "Mrs. Mary Minto," and "Johnson is Skelton." + 1 leaf (5 stanzas on the recto, 3 on the verso). + + + + + + Undated, "Don't give up the Ship / A new song / Composed in / Dartmoor prison / By an American tar and sold by the author." + Begins: "You parliament of England you Lords and Commons too / Consider well what you're aboute and what you mean to do." Poem of 44 long lines (11 stanzas of 4 lines each), frequently reprinted; the title is based on Captain James Lawrence's last words to his crew, on the U.S.S. Chesapeake, in a battle against the British frigate HMS Shannon just outside Boston Harbor in June of 1813 during the War of 1812. On page 4 is an alphabetical list of surnames (in WMS's hand and including his surname) and then the name and address (not in WMS's hand) "B.W. Leigh Esq. / Richmond / Virginia." + 1 leaf, folded in half to make 4 pages; the poem is on pages 1-3, ending with the last 2 stanzas at the top of page 3. + + + + + + Undated, Untitled. + Begins: "If on my heart the mildew of the blight / Of rash transgression sits & like a [v…] / Of darkness shrouds the future . . ." In margin on page [1], upside down, is the name "Thomas Skelton" followed by "Conam[e]ugh," with many other scribbles in margins of pages [1]-[2]. + 1 large leaf, folded in half to make 4 pages, with writing on pages [1]-[2]; but only a scrap of pages [3]-[4] remains, with a bit of writing visible on page [4] and the beginning of an account on page [3]. + + + + + + Undated, two poems. + 1st leaf, containing 2 items: 1st item: "The Burial," beginning "He buried her silently ‘neath the green sod / Where the flowers were freshly blooming." Poem of 20 lines (5 stanzas of 4 lines each), all on the recto, followed by "Struthfield" and then "Ann." 2nd item: An untitled poem of 32 lines (8 stanzas of 4 lines each) in pencil on the verso, in a different hand, beginning "I hate the world be cause the world / Hath ever hated me"; 6 stanzas are on the verso and the last 2 written upside down at the bottom of the recto. 2nd leaf: Untitled, but a recopying of "The Burial" on the recto in the same hand as on the recto of the 1st leaf. + 2 separate leaves. + + + + + 4 + 12 + + Undated, "Auld Lang Syne." + Begins: "Should auld acquaintance be forgot / And never brought to mind?" Well known poem in 5 stanzas (of 4 lines each, with a 4-line refrain) by Robert Burns, written in 1788. The name "W Joline" written 15 times in the margins and at the top of the recto. + 1 small leaf, with writing on both sides (3 stanzas on recto, 2 on verso). + + + + + + Undated, "Parody on the Knight Errant." + Begins: "T'was Samy Jones the fisherman was bound for Sandy Hook / But first upon his almanack a solem oath he took." + Poem of 16 lines (4 stanzas of 4 lines each). Half a leaf, with writing on both sides (3 stanzas on recto, 1 on verso). + + + + + + Undated, "A Picture." + Begins: "She was a lovely girl I trow, / This all who've seen her can avow." + Poem of 52 lines, not divided into stanzas. 1 large leaf, folded to make 4 pages; the poem begins on page 1 and ends at the bottom of page 2; pages 3-4 are blank. + + + + + 4 + 13 + + Undated, "Days of Yore." + Begins: "There is a charm in evenings hour / When wearied nature sinks to rest." This item and "To a Friend" and "To Melancholy" are all written by the same hand. The name "Rosalind" appears at the end. + Poem of 32 lines (4 stanzas of 8 lines each). 1 leaf, with 3 stanzas on recto and 1 stanza on verso. + + + + + + Undated, "To a Friend." + Begins with 4 lines by Byron (from "The Corsair," Canto II, passus XIV): "Oh I envy those / Whose hearts on hearts as faithful can repose," etc. The poem proper begins: "I have longed for a soul as exalted and true / As I've seen in those visions of fancy so fair." This item and "Days of Yore" and "To Melancholy" are all written by the same hand. The name "Rosalind" appears at the end. + 1 leaf, with 2 stanzas on recto and 2 on verso. + + + + + + Undated, "To Melancholy." + Begins: "I know thee when the breezes play, / So calmly and so softly driven." Poem of 52 lines (3 stanzas of 12 lines each and 1 of 16 lines). This item and "Days of Yore" and "To a Friend" are all written by the same hand. The name "Rosalind" appears at the end. + 1 large leaf, with 2 1/2 stanzas on recto and 1 1/2 on verso. + + + + + 4 + 14 + + Undated, "The Lacerated Glove" and "Lines on revisiting the Cottage of Rosa after a long absence." + 2 items, written by same hand. 1st item: "The Lacerated Glove" on pages 1-2. Begins with 2 lines by Shakespeare (from Romeo and Juliet, Act II, Scene 2): "Oh that I were a glove upon that hand / That I might touch that cheek." The poem proper begins: "O Romeo! Had thy wish been granted, / What poet could thy raptures speak?" Poem of 28 lines (7 stanzas of 4 lines each, with 4 on page 1 and 3 on page 2); there are 3 notes to the poem: on "Capricorn (line 12), with 3 lines by Shakespeare; on "glove from Harriet's hand now torn" (line 14), with reference to "Mrs. Harriet Rodman"; and on "Scorpio" (line 23), with a quotation in Latin from Virgil's Georgics. 2nd item: "Lines. / On revisiting the Cottage of Rosa after a long absence. May 4th 1807 " on pages 3-4. Begins: "Seven summers have flown, and once more do I see / The fields, and the groves I deserted so long!" Poem of 24 lines (6 stanzas of 4 lines each, with 4 1/4 stanzas on page 3 and 1 3/4 on page 4), by Anthony Bleecker (1770-1827), printed in Samuel Kettell, ed., Specimens of American Poetry, with Critical and Biographical Notes (1829), II.382. The name "Paridel" appears at the end of the poem. + 1 large leaf, folded in half to make 4 pages. + + + + + + Undated, "Of My Lady Isabella playing on the lute." + Begins: "Such moving sounds from such a careless touch! / So unconcern'd herself, and we so much." Poem of 16 lines by Edmund Waller (1606-87) about Lady Isabella Thynne (nee Rich). The hand is perhaps that of a child practicing careful writing. + 1 small leaf, with writing on both sides. + + + + + + Undated, four poems. + 4 poems, each of 40 lines (10 stanzas of 4 lines each), entitled "December," "February," "March," and "April ." (1) "December" (on pages [1]-[2]) begins: "From mountains of eternal snow / And zembla's dreary plains / Where the bleak winds for ever blow." Poem by Francis Fawkes (1721-77) entitled "Ode to Winter." (2) "February" (pages [3]-[4]) begins: "The Sister regent of the opening year / Now sways the scepter of revolving time." (3) " March " (pages [5]-[6]) begins: "At length stern Winters frigid sway subsides / And leaves progressive this auspicious isle." (4) " April " (pages [6]-[8]) begins: "A Scene of pleasure nature oer the plains / Displays propitious with a lib'ral hand." + 2 leaves, each folded in half to make 4 pages and then combined into a little booklet of 8 unnumbered pages. + + + + + 4 + 15 + + Undated, Untitled. + Begins: "Hail sinless child we welcome three / In the unblemished purity / Of thy young heart." Poem of 12 lines (2 stanzas of 6 lines each, rhyming aabccb, with the b-lines shorter than the others). ; on the verso are accounts, in dollars, adding up to $32.70, with what appears to be a date: "20-12-40" (?1840). + 1 small leaf, with the poem on the recto only + + + + + + Undated, "Stork of Lea." + Begins: "There was wailing on the water / And thunder in the sky." Poem of an uncertain number of stanzas (51 lines total, but the first 6 lines on the verso are a repeat of the first 6 lines on the recto and the last 4 lines at the bottom of the recto are written upside down); appears to be written by the same careless hand as (r) below. 1 large leaf; numbers (mainly sums) appear on both the recto and the verso; also on the verso is the place name "Holladaysburghe" and the personal name "Hiram" written 4 times. + + + + + + Undated, three poems. + 3 items, written by one careless hand, which appears to be the same as (q) above. At top right, written sideways, is "Samuel Whites […] / pair gloves 62 1/2." 1st item: Untitled, beginning "Tis midnighte & the clear blue sky looks down / [L..nd]ly on a slumbring world." 2nd item: "Dreams." Begins: "Here am I! What are they? If shadows of the mind / Along without prosstit[] sanction. They / are haughty -- perhaps they are but as the wind." Poem of 1 8-line stanza, followed by 3 lines, with 2 other sets of 3 lines written sideways in the margins, one set on the left and one on the right. 3rd item: "To Lydia." Begins: "The hour has come I must away / And yet before I go / One parting thought I'll cast on thee." 2 stanzas, the first of 6 lines rhyming abccab, the second of 7 lines rhyming abccbab, followed by 2 more stanzas written sideways in the margins, 1 of 5 lines on the left and 1 of 4 lines on the right. + 1 large leaf, with writing on the recto only. + + + + + + Undated, "Canzonetta" (in Italian). + Begins: "La Biondina in gondoletta / l'altra sera gho mena." Poem of 40 lines (5 stanzas of 8 lines each) by Giovanni Battista Peruchini (1784-1870). 1 small leaf, folded in half to make 4 pages, with 2 stanzas on page 1, 2 on page 2, 1 on page 3 and with page 4 blank; the poem ends with "per un Veneziano" and "fin." + + + +
    +
    + + + 3. Illustrations and Photographs + + + + 4 + 16 + Engraving and drawing + + + + (a) Undated, Engraving. + From an unknown book, with "Tab. II" and then "Fig. 3" and "Fig. 4" on it. Fig. 3 pictures the side view of gears, probably for a clock (or perhaps some sort of astronomical device); Fig. 4 pictures the front view of a plate probably for the gears, with the inscription "Gio Filipp Tresler" on it, and underneath "Augosto." The 1823 6th edition of the Encyclopedia Britannica, in the entry for clock, says that "one Tresler, at that time [mid-17th century] clock-maker to the father of the Grand Duke of Tuscany, made the first pendulum clock at Florence, by direction of Galileo Galilei" (page 200b). + + + + + (b) Undated, Drawing. + A drawing of the same, slightly larger. It is uncertain whether the drawing is the original from which the engraving was made or was itself made from the engraving. + + + + + + 4 + 17 + + 1846, Print of Nassau Hall, Princeton, NJ. + + + + + 4 + 18 + + Undated, 4 unidentified photographs, probably of Skelton or related families. + + + + Bust portrait of an old man; carte-de-visite with 3-cent stamp on back, [late 1860s] + + + + + + Bust portrait of a young boy and a young girl; cabinet card taken at Kennedy [Studio], 20 Fifth Ave., Pittsburgh, Pa., [ca. 1870-1890] + + + + + + Old woman leaning on back of velvet chair; cabinet card taken at Aufrecht [Studio], Allegheny, Pa., [ca. 1870-1890] + + + + + + Baby (in clothes) in velvet chair; cabinet card taken at Stewart & Co., Federal St. and Stockton Ave., Allegheny, Pa., [ca. 1870-1890] + + + + + + + + 4. Documents (probate, land, certificates, summons, etc.) + + + + 4 + 19 + Boyd + + + + + 16 April 1900, Official certification from the Commonwealth of Pennsylvania. + W.M. Boyd of Armstrong County has been duly elected a Justice of the Peace for the Borough of Freeport for a term of 5 years; recorded 7 May 1900. + + + + + + 11 April 1905, Official certification from the Commonwealth of Pennsylvania. + W.M. Boyd of Armstrong County has been duly elected a Justice of the Peace for the Borough of Freeport for a term of 5 years; recorded 4 May 1905. + + + + + + 30 December 1905, Itemized bill and receipt (dated 6 January 1906). + For funeral expenses of $51.50 for John B. Boyd from S. Turner and Son, Freeport; paid by W.M. Boyd. + + + + + + 4 February 1911, Last will and testament of W.M. Boyd. + Leaving everything to his daughter Mary L. Boyd; witnessed by 2 persons; also appoints her executor; 3 attachments, all dated 8 October 1912 (1) attestation of the hand of 1 of the 2 witnesses; (2) attestation by 2nd witness that he witnessed the will of W.M. Boyd, now deceased; (3) will proven by Registrar of Wills in Kittanning and Mary L. Boyd appointed executrix. + + + + + + 4 + 20 + Craig + + + + + 5 September 1[8]36, Will of John Craig of Buffalo Township, Armstrong County. + Dividing his real estate into 6 parcels among (1) his son Samuel, (2) his son John, (3) his daughter Isabella, (4) 3 daughters (named Clark) of his daughter Elizabeth deceased, (5) his daughter Martha, and (6) his 2 daughters and the 3 granddaughters already mentioned, plus $100 to his grandson John Craig; and his personal and movable property among Isabella, Samuel, and 4 granddaughters; appoints his son John executor, to whom he also gives $40; codicils of 11 July 1839 and 2 July 1844 (in latter Isabella is said to be married to a man named John Boyd and has a son James and daughters Eliza Boyd and Mary Boyd; James has children of his own, John C. Boyd and Jane Boyd); will registered 5 April 1850 (no place given); the present copy is typewritten and considerably later + + + + + + 4 + 21 + Detargny + +

    Cf. section I.A above, letters of Gamble, Garcia del Rio, and Hopkins.

    +
    +
    + + + + 25 November 1796, Summons to [Marin] Detargny for guard duty, Paris, 5 Frimaire, l'an cinquieme (formerly in 1934 Minto donation) + + + + + + 12 March 1797, Certificate of identity for Marin Detargny, Departement de la Seine, Canton de Paris, 22 Ventose, an 5 (formerly in 1934 Minto donation) + + + + + + 20 March 1797, Summons to [Marin] Detargny for guard duty, Paris, 30 Ventose, l'an cinquieme + + + + + + 30 April 1797, Summons to [Marin] Detargny for guard duty, Paris, 11 Floreal, l'an cinquieme + + + + + + 26 May 1797, Summons to [Marin] Detargny for guard duty, Paris, 7 Prairial, l'an cinquieme (formerly in 1934 Minto donation) + + + + + + 18 April 1798, Carte de Surete for Marin Detargny, Bureau Central, Canton de Bordeaux, 29 Germinal, l'an sixieme (M.D., profession = Professeur, has lived in Bordeaux for 1 year) + + + + + + 13 June 1798, Birth certificate for Marin Detargny, born 26 June 1776 son of Jean Francois Detargny, Archives du Departement de la Seine, Commune de Paris, 24 Prairial, l'an 6e (formerly in 1934 Minto donation) + + + + + + 13 June 1798, Copy of death certificate for Jean Francois Detargny, died 26 March 1794 aged 60 years of age, Commune de Paris, 24 Prairial, l'an 6 (formerly in 1934 Minto donation) + + + + + + 20 October 1798, Certificat de Conscription for Marin Detargny, "homme de lettres," Canton de Bordeaux, 29 Vendemiaire, septieme annee (formerly in 1934 Minto donation) + + + + + + 22 November 1798, Carte de Surete for Marin Detargny, "homme de lettres," Bureau Central, Canton de Marseille (M.D. has been living in Marseille for [?less than] 3 months), le Deux frimaire, an 7e (formerly in 1934 Minto donation) + + + + + + 28 April 1804, Statement signed by six citizens of Annapolis certifying that Mr. Marin Detargny has resided in said city as a French teacher for 17 months and "has behaved himself with propriety, and sustained the Character of a Gentleman" + + + + + + 1805, One sheet of paper, folded (addressed on outside to Rev. Mr. Detargny). 11 November 1805 Resolution (on page 1) from the Council Chamber, Charleston, that 29 November be set apart as a day of General Thanksgiving to God for all the benefits and blessings conferred on the citizens of said city and that the clergy of the city be requested to promote this to their congregations on that day.12 November 1805 Circular (on page 2) from the Intendant, Charleston, conveying this request. + + + + + + 1 December 1806, Receipt from the Reverend Marin Detargny, Charleston, for $12.75 "as a Consideration" for a "Policy of Assurance" for $2000 to be issued by Phoenix Assurance-Company of London, signed by Jno. M. Davis, Agent + + + + + + 18 August 1807, Authorization from Charles Lining, "Esquire, Ordinary," South Carolina, Charleston District, to the Reverend Mr. Marin Detargny to join in matrimony Joseph Finch of Charleston, Manufacturer of Cut Nails, and Catharine Spencer of Charleston, Spinster + + +
    + + + 4 + 22 + Franklin Heirs + + + + + 9 June 1785, Survey by Joshua Elder of a plot of land called "Settle," containing 200 4/10 acres, in Westmoreland County, Pennsylvania, for Benjamin Franklin; returned to secretary's office for Benjamin Franklin 10 October 1787 + + + + + + 29 October 1814, Deed of sale of 11 tracts of land on the northwest side of the Allegheny River, "now or formerly" in Westmoreland County, by Louis Bache and Richard Bache, executors of the will of Richard Bache, deceased, of Settle, Bucks County, Pennsylvania, acting on behalf of some of the members of the Bache family in Pennsylvania, heirs of Benjamin Franklin, and by other members of the family in their own right, to Randall Hutchinson; recorded in Armstrong County 21 August 1815 + + + + + + 29 October 1814, Deed of sale of the tract called "Settle," "now or formerly" in Westmoreland County, from Randall Hutchinson to William I. Duane and his wife Deborah (who are one of the parties to the sale of the 11 tracts in previous item) for $1.00; recorded in Armstrong County 21 August 1815 + + + + + + 24 January 1840, Deed of sale of a tract of land called "Settle" (of 200 4/10 acres), formerly in Westmoreland County but now in Armstrong, by William I. Duane and Deborah his wife to WMS for $4000 + + + + + + 24 January 1840, Deed of sale of a tract of land called "Broughton" (of 209 7/10 acres), formerly in Westmoreland County but now in Armstrong, by William I. Duane and Deborah his wife to WMS for $4180 + + + + + + 4 + 23 + McFarland + + + + + Undated, ca. 1887, Draft claim of Hannah P. Boyd and Mary McFarland, sisters of George McFarland, for "arrears of pay and bounty." + On a form that has 188 plus a blank for the year in the decade (probably 1887). George, a private in Company G, 5th Regiment of the "Calafornia Volunteers," died "on or about the" 31st October 1862 in the service of the U.S.; the sisters appoint Calvin Rayburn of Kittanning to prosecute the claim (see letter of Rayburn to Hannah Boyd above in section I.C) + + + + + + 1 June 1908, Bill for funeral expenses of $66.79 for Mrs. [sic; cf. previous item] Mary S. McFarland from S. Turner and Son, Freeport. + With receipt of payment by Miss Lizzie Boyd dated 8 December 1908. Since the actual expenses are dated 6 August 1904 this may have been a second or third bill. + + + + + + 4 + 24 + Scudder + + + + + 13 March 1826, Deed of sale of land by Jacob Scudder and his wife Hester to William Gulick in Montgomery Township, Somerset County, New Jersey. + +

    Jacob Scudder, May have been the son of H[annah] S[cudder]: see her letter to her husband in section I.A above.

    +
    +
    +
    +
    + + + Skelton Family + + + + 4 + 25 + Ann Skelton (1818-1906) + + + + + 13 June 1856, Survey ("Draft") of a tract of land (i.e., the 2 tracts mentioned in Walter Skelton, item 3) for Ann Skelton (cf. WMS.'s wills in Walter Skelton, items 2 and 4) + + + + + + 11 May 1858, Indenture by Jacob M. Bush to Ann Skelton. + For $1100 with interest, to be paid according to a schedule ending in 1862 for 25+ acres of land, part of a larger tract conveyed by William I. Duane to Walter Skelton (either item 4 or 5 in Franklin heirs or both), who devised it to Ann Skelton, Sarah Skelton, and Joseph Skelton Jr. (see Walter Skelton, item 4), and Joseph Skelton Jr. and his wife Elizabeth conveyed 184 acres of which this is a part to Ann Skelton. + + + + + + 22 July 1900, Lease by Ann Skelton of Freeport Borough, Armstrong County, to Thomas McCauley and P.J. McCauley of Pittsburgh. + Leases the right to quarry stone on the southern part of a piece of land owned by her for a period of 5 years initially, with the possibility of a further 5 years; the McCauleys to pay her rental of 10 cents per cubic yard and to quarry at least 2000 cubic yards each year. + + + + + + 29 November 1904, Grant by Ann Skelton to the Kiskiminetas Connecting Railroad Co. + For a right of way 66 feet wide for the location, etc. of a railroad over 10 acres more or less of her land in South Buffaloe Township, Armstrong County, for $50; sealed and delivered in the presence of W.M. Boyd. + + + + + + Undated, Informal draft of someone's will (probably Ann Skelton's). + Leaving specific items of her personal property to Hannah Boyd, Lizzie Boyd, John H. Boyd, and Helen M. McIntyre and, after expenses have been paid, dividing the profits from the remainder of her personal property and from her real estate equally to the same four persons (except that Helen McIntyre's part is to be shared with her brother Charles B. McIntyre). + +

    Dates to before 4 February 1911 (Boyd, item 4) because W.M. Boyd is referred to as still alive, but not clear how much earlier; before 30 March 1906 and certainly before 1 July 1906 (see next item), if Ann Skelton is the writer.

    +
    +
    +
    + + + + 1 July 1906, Bill and receipt for funeral expenses of $116.75 for Miss Ann Skelton from S. Turner and Son, Freeport; + +

    Paid by Lizzie Boyd, Executrix (probably dead by 30 March 1906 see letter of Duffy to Hill above in section I.B).

    +
    +
    +
    + + + + Undated, ca. 1933-1934, Notification by County Treasurer, Kittanning, to estate of Annie Skelton. + Her property in South Buffalo has been returned for non-payment of taxes for 1932 amounting to $12.81 and, unless they are paid, the property will be sold at the Court House in Armstrong County on 6 August 1934. + + +
    + + + 4 + 26 + Elizabeth Skelton (?-1826) + + + + + 29 March 1825, Will of Elizabeth Skelton. + Leaving all of her personal property and real estate to her nephew WMS, except for some plate and wearing apparel (to Elizabeth McFarland, niece, daughter of Joseph and Sarah Skelton) and a mourning ring (to Harriet Nicholson, niece, daughter of Samuel and Hannah Nicholson); appoints John Lowrey executor, unless WMS is of legal age at time of her death, in which case he is to be executor; certified as true copy 13 November 1826 Elizabeth Skelton now deceased. + + + + + + 29 March 1825, Copy of preceding item; certified as such 17 June 1839 + + + + + + 13 November 1826, Inventory of possessions of Elizabeth Skelton; certified 18 November 1829 Elizabeth Skelton now deceased + + + + + + 4 + 27 + Joseph Skelton Sr. (?-before 1840) + + + + Undated, marriage certificate. + Certificate by Thomas Lyell, witnessed by W. [?]. Bessonett and James Thorburn: "This will certify that I did on Thursday evening the 27 of May join together in marriage Mr. Joseph Skelton and Miss Sarah White." + +

    Probably before 1803, when the Skeltons' 1st child was born.

    +
    +
    +
    +
    + + + Mary Skelton Minto (?-1824) + + + + + 9 November 1796, Receipt by Enos Kelley to Mary Minto for the items mentioned in document B.16 (a) in Series 1: IV.Documents (this receipt is now item B.16 (b) in Series 1: IV.Documents) + + + + + + 1796 [day and month torn away]: Codicil by Mary Skelton [Minto], executrix of Minto's last will (he being deceased), to a bond of indemnity (dated 28 September 1795) by Minto to Richard Stockton for 1180 pounds, probably asking to have debt set aside (this is now item B.10 (b) in Series 1: IV.Documents) + + + + + + 23 May 1801, Bill of lading for one box, shipped from Leith to New York on the Russell, directed to Mrs. Minto, to be delivered to Mrs. Chrystie of New York for payment; contents unknown to Rowland Gibbs, master of the Russell (this is now item B.17 in Series 1: IV.Documents) + + + + + 4 + 28 + + 25 August 1812, Middlesex County, State of New Jersey: Certificate that Mary Minto brought before 2 overseers of the poor and 2 justices of the peace her female slave named Gitty, who appears to be of sound mind and not under any bodily incapacity, between 21 and 40 years; recorded in Clerk's office, no date + + + + + + 25 August 1812, Statement of Mary Minto that she has set free her slave Gitty (of 21 years or thereabouts); recorded in Clerk's office on 26 August 1812 + + + + + + 8 January 1817, Will of Mary Minto, leaving $100 to her sister Sarah Clark, $600 to Walter Minto Skelton (to be used at the discretion of her sister Elizabeth), and the remainder of her personal property and all of her real estate to her sister Elizabeth; appoints her sister executrix and administratrix; certified as a true copy of the will by a surrogate in New Brunswick on 17 June 1839 + + + + + + 4 + 29 + Walter Skelton (1804-48) + + + + + 20 October 1830, Commission of Walter M. Skelton to be Captain of the company Princeton Blues, having been elected to such position on 25 May 1830 + + + + + + ca. 1840, Draft of will of WMS, leaving to his mother, Sarah Skelton, "a comfortable maintenance" out of his estate, and then leaving everything to his sister Ann Skelton; appoints Ann executrix + + + + + + 21 April 1841, Survey of 2 tracts of land in Buffaloe Township, Armstrong County, for WMS (these are the tracts sold to him in 1840 mentioned in Franklin heirs, items 4 and 5 above) + + + + + + 16 September 1845, Will (copy) of WMS, of Buffaloe Township, Armstrong County; leaving 1/3 to his sister Ann Skelton, 1/3 to his brother Joseph Skelton, Jr., and 1/3 in trust to his sister Ann for the use of his mother Sarah Skelton; appoints Ann executrix; will proved in Kittanning, Pennsylvania 20 June 1848 (Walter Skelton being deceased), and certified in Register's Office 21 June 1848 + + + +
    + + + 4 + 30 + White + + + + + 23 March 1839, Will of Elizabeth White of Scarsdale, Westchester County, New York, leaving the bulk of her estate to (1) various charities (half) and (2) her 3 sisters, Mary Bessonett, Phebe White, and Jane White (half, in various proportions); certified as true copy 12 October 1841 Elizabeth White now deceased + + + + + + 13 June 1839, Memorandum of land owned by Elizabeth White in Illinois, deeded to her on 1 April 1837 and recorded in Illinois on 27 June 1837 + + + +
    + + + 5: Printed Materials + + + + + 31 December 1799, Sacred music, to be performed in St. Paul's Church, on Tuesday the 31st December, 1799 by the Anacreontic and Philharmonic Societies, at the Funeral Ceremonies in honor of the Memory of the late General Washington [New York, 1799]. (formerly in 1934 Minto donation) + (In Broadsides Small under S) + + + + + 4 + 31 + + ca. early 1800s, "Boarding and Education for Young Ladies, At Mrs GRAHAM's, Broadway, NEW YORK": advertisement and list of fees (on a ca. 3" x 5" card) for a school run by Isabella Graham (1742-1814); Mrs. Graham began teaching in New York in late 1789 when fees for schools like hers were ca. $80 per year for full boarders; by the time of this advertisement her fee was $125 for full boarders, which must put the date considerably later than 1789 Mrs. Graham was a good friend of the Mrs. Chrystie who corresponded with the Mintos from the 1790s until 1810 and who is often mentioned in other correspondence, along with her husband, Major (later Colonel) Chrystie. + + + + + 4 + 32 + + 29 August 1844 The Clay Bugle, No. 35, Harrisburg, Thursday, [Pa.,] August 29, 1844 a weekly Whig campaign newspaper created to support the candidacy of Henry Clay for President of the U.S. + + + + + 4 + 33 + + 13 March 1852, The Home Journal, for the week ending Saturday March 13, 1852 ed. George Pope Morris and Nathaniel Parker Willis, "[Whole NO. 318.--SERIES FOR 1852--NO. 11." [New York]. + + + + + 4 + 34 + + 1882, Proceedings of the First Boyd Convention Held at Beaver, Pennsylvania, October 26 and 27, 1881. Published by the Boyd Association Historical Committee. Youngstown, Ohio: Youngstown Publishing Company, 1882. 42 pages. + + + + + 4 + 35 + + ca. early 1883, The Second Re-Union of the Descendants of John and Mary-Fulton Boyd, will be held in Lima, Allen County, Wednesday and Thursday, October 24th and 25th, 1883. Printed in Chambersburg, Pa., [?early 1883]. Announcement of reunion, with program, committees, etc.; 1 leaf folded in half to make 4 pages, the last of which is blank. + + + + + 7. 1884, Proceedings of the Second Boyd Convention Held at Lima, Ohio, October 24th and 25th, 1883. Youngstown, Ohio: W.H. Woodrow, 1884. 48 pages. + + + + + 4 + 36 + + 1885, Proceedings of the Third Boyd Convention Held at Kiskiminetas Springs, Saltsburg, Pa., August 27th and 28th, 1884. Youngstown, Ohio: W.H.Woodrow, 1885. 33 pages. + + + + + 4 + 37 + + ca. early 1887, Call for a Reunion to Be Held at Slate Lick, Pennsylvania, Tuesday and Wednesday, August 30 and 31, 1887. Announcement to residents and former residents of Slate Lick; 1 leaf folded in half to make 4 pages, the last of which is blank; addressed to Miss A. Skelton at Scilney, Pa. [postmarked "Kittanning"]. + + + + + + 1887, Re-Union at Slate Lick, Pa. Of Present and Former Residents, Tuesday and Wednesday, August 30 & 31, 1887. "Programme" of events. 1 narrow leaf, with printing on recto only. + + + + + 4 + 38 + + 1888, Proceedings of the Fourth Boyd Convention Held at Hamilton, Ohio, September 15th and 16th, 1886. H. Byxbe, 1888. 26 pages. + + + + + 4 + 39 + + 1888, Proceedings of the Fifth Boyd Convention Held at Pittsburgh, Pa., (Hotel Boyer,) September 5th and 6th, 1888. H. Byxbe, 1888. 59 pages. + + + + + 4 + 40 + + 1892, Proceedings of the Sixth Boyd Convention Held at Marion, Ohio, (Hotel Marion,) August 27th and 28th, 1890. H. Byxbe, 1892. 42 pages. + + + + + 4 + 41 + + 1894, Proceedings of the Seventh Boyd Convention Held at Seventh Avenue Hotel, Pittsburgh, Pa., August 31st and September 1st, 1892. H. Byxbe, 1894. 30 pages. + + + + + 4 + 42 + 3 newspaper clippings about family events: + + + + + [May 1935]: Article, perhaps from a newspaper in Tarentum, Pa. (since on the reverse is an advertisement for "Chantler's" in that city), about Amelia Earhart's non-stop flight from Mexico City to New York City on May 8; mentions Samuel (age 68) and Ida (age 73) Earhart, first cousins of Amelia's father Edwin Earhart (who was a schoolmaster near Saltsburg, Pa.), and another cousin, Emma Elizabeth Earhart Fleming (age 83) of Indiana, Pa.; Amelia's grandfather, Rev. David Earhart, had the Lutheran parsonage in Apollo, Pa., and the Earhart family used to visit Samuel and Ida. + + + + + + [November 1949]: Death notice, probably from a Pittsburgh newspaper, of Frank F. McIntyre of Altoona, Pa., on 16 November 1949 Frank was the father of Charles B. McIntyre and Helen B. McIntyre of Pittsburgh; the funeral was held in Freeport, Pa. + + + + + + 14 June 1956: Notice from the Pittsburgh Press of the honoring of Miss Helen McIntyre, retiring school teacher, by the Shakespeare School PTA in East Liberty, Pa. + + + + + + + 6: Notes, Invitations, Miscellanea + + + + Notes (all in WMS's hand except the last two) + + + + 5 + 1 + Syllabus, with required readings; probably from WMS's years at the College of New Jersey. + Single leaf, with writing on recto only. + + + + + A list of college classes, beginning on a Tuesday and going to the following Monday, with only Sunday omitted; probably from WMS's years at the College of New Jersey. + Scrap of paper, with writing on recto only. + + + + + A set of 5 series of surnames, followed by "Valedictory. D. Crawford": perhaps a list of College of New Jersey graduates or graduation speakers (WMS's name is not among them). + Half a leaf, with writing on recto only. + + + + + "Catalogue of Books," divided into "Classicks & French," "Class Books & Books of Science," "Novels & Plays," "Books of a miscellaneous kind," "Musick"; probably WMS's library, with catalogue written in what appears to be a formal variety of his hand. + Large single leaf, folded in half vertically to make 4 pages. + + + + + "Provincialisms noticed in the Western part of Pennsylvania," a series of equivalents in the form "A for B," signed (on reverse) "Skelton," followed by WMS's height and weight measured in "Peal's Museum" on 8 February 1826 then signed again "W.M. Skelton." + Small single leaf. + + + + + 5 + 2 + Recipe "To boil a Fowl"; this leaf was found in item (a) (1818-[3]4) in section II.A.2, but it is not certain if it was there originally: the hand is quite different and appears to be untrained. + Small single leaf, with writing on recto only. + + + + + "Kate's Manumission Papers," (at the top of the second quarter (from the left) of the recto), probably in a Skelton family hand (but earlier than the late family hands in section F below). + Scrap of rag paper ca. 11 1/2 " x 4 1/2 ", folded in 4 roughly equal parts and apparently used to enclose something. + + + + + + Invitations + + +

    Some on backs of playing cards, marked with * below.

    +
    + + + 5 + 3 + + 4 March 1780, [Princeton]*: to Miss Skelton from the Gentlemen of the College to a dance and a play + + + + + + 6 April 1780, Princeton*: to Miss Betsy Skelton from the Gentlemen of the Senior Class to public exhibitions in the College Hall + + + + + + 17 February 1781, Princeton*: to Miss Betsy Skelton from the Gentlemen of the College to public exhibitions in the College Hall + + + + + + 24 June 1782, Philadelphia: to Miss B. Baynton from the Minister of France to an entertainment to celebrate the birth of the Dauphin + + + + + + 1 December 1782, Princeton: to Miss Skelton from the managers of an unnamed organization to a dance + + + + + + 17 February 1783, Princeton*: to Miss Skelton from the Junior Class of College to a play and other exercises in the College Hall + + + + + + 14 April 1783, Trenton: to Miss Polly Skelton from the Governor and the Gentlemen of Trenton to a dance "in Celebration of Peace" at Mr. Cape's + + + + + + 22 April 1783, Princeton: to Miss Betsy Skelton from the Gentlemen of Princeton and its Vicinity to a ball "in Celebration of Peace" at Mr. Beekman's + + + + + + December 1785, [Princeton]: to Miss Eliza Skelton for the season of the Princeton Assembly + + + + + 5 + 4 + 30 April [probably mid-1780s], [Princeton]: to Miss E. Skelton from the Gentlemen of the College to public exhibitions in the College Hall + + + + + 30 April [probably mid-1780s], [Princeton]: to Miss Polly Skelton from the Gentlemen of the College to public exhibitions in the College Hall + + + + + 23 September [probably mid-1780s]*, Princeton: to Miss Skelton to a dance at Mr. [?] d[. . .] + + + + + [late December /early January] [probably mid-1780s], Bordentown*: to the Miss Skeltons to a ball on Twelfth Night, 6 January + + + + + Tuesday morning [probably mid-1780s], [Princeton]: to the Miss Skeltons from Dr. Beatty to a dance at his house "this evening" (with additional comments about Mrs. Deane expecting to see the Miss Skeltons at her house for tea, etc.) + + + + + Saturday morning [probably mid-1780s], [Princeton]: to Miss Betsey Skelton from the Senior Class to the public orations in the College Hall + + + + + 5 + 6 + + 6 February 1826, Harrisburg: to Mr. [Walter] Skelton to a Cotillion Party at the house of Mr. John Shock, Harrisburg, on Tuesday next; with envelope addressed to Mr. Skelton + + + + + + 8 February 1834, to Miss Ann Skelton to a "Birth-Night Ball" at Mr. M'Anulty's Hotel, Blairsville, on 21 February 1834 + + + + + + February 1843, to Mr. W.M. Skelton & Lady to a Cotillion Party at the house of Mr. Isreal Hill, Leechburg, on 17 February 1843 + + +
    + + + 5 + 7 + Statement to James Carnahan 1823-?25: Statement directed to Dr. [James] Carnahan [president of the College of New Jersey from May 1823 to 1854], from a meeting of college, signed by 75 persons (including WMS), deploring some outrageous act by an unknown person and expressing their support. + + + + + 5 + 8 + Small Notebook, Undated [?1830-31]: Small notebook containing "By-Laws of ‘The Princeton Blues'," followed by signatures of, presumably, the 62 members of the Company (Skelton's is the 4th one on the list). + +

    Skelton was commissioned Captain of the Company on 20 October 1830 and resigned his commission on 8 July 1831 (see section IV. Walter Skelton, item 1).

    +
    + 29 leaves, unnumbered, covered with boards; title on leaf [3a]; text on leaves [3a]-[8b]; signatures on leaves [13b]-[15a]. Not in WMS's hand. +
    +
    + + + Booklet of proverbs and common sayings, Undated: in English (on versos), with Spanish equivalents (on facing rectos), entitled (on page [8]) "A Collection of Proverbs & Common Saying" and (on page [1]) "una Colleccion de refranes y de dichos communes." + 2 leaves, folded in half to make 4 (8 pages), unnumbered; English text on pages [8], [2], [4], [6], Spanish on [1], [3], [5], [7]. Not in WMS's hand. + + + + + Various notes, undated [but mainly 20th century]. Late family (?and other) notes, in various hands, made about the Minto-Skelton papers before they were given to the Clements Library. + + + + 5 + 9 + 5 leaves, in ink (mainly) and pencil, listing letters in the Minto part of the collection (mainly addressed to him), a bond, a bill, and a few books + + + + + 5 + 10 + 2 leaves in pencil, listing a few books and giving a summary of the Minto letters + + + + + 5 + 11 + 7 small leaves in pencil, with writing on both sides, listing family books published between 1745 and 1870 + + + + + + 5 + 12 + 1 3" x 5" card in ink with some dates + + + + + 5 + 13 + 17 xeroxes of 32 envelopes that contained some of the Minto-Skelton Papers, with notes on the outsides about what they contained (the envelopes themselves have been discarded) + + + + + 5 + 14 + 8 small pieces of light cardboard used as markers for books and manuscripts, 2 of which have notes on them + + + + + + Pieces of cloth 1845 and undated: 24 round pieces of cloth circa 4" in diameter, perhaps congratulatory or farewell remembrances to Mary McFarland (b. 1823), with writing in ink on one side and usually containing a verse or verses, a proverb, etc. (variable) and the name of the writer; frequently also a date and the home of the writer; and occasionally the name of the addressee: + + + + 5 + 15 + With addressee first, then name of writer, date, and verse: + + + + Mary McFarland: Saltsburgh Indiana Co. Pa. May 1845 W.H. + + + + + Mary: Eliza Kirkpatrick Poke Run, October 26th 1845 + + + + + + Mary: R.S. Johnston Saltzburg, September 23rd 1845 + + + + + + To Mary: Jane H. Johnston Saltzburg, October 1st 1845 + + + + + + To Mary: Saltsburgh, October the 6th 1845, S. Skelton + + + + + + 5 + 16 + With addressee first, then name of writer and verse: + + + + Mary: Mary Kirkpatrick + + + + + + 5 + 17 + With name of writer, date, and verse: + + + + + May 1845 Watson Hughes (with name written backwards so as to show through correctly on the reverse) + + + + + Saltsburg, October 16th 1845 E.W. Robinson + + + + + David Kirkpatrick, October 20th 1845 + + + + + + John M. Kirkpatrick Oakland Farm, October 20th 1845 + + + + + + Joseph Skelton White Rock Eddy, October 1845 + + + + + + Rob. Skelton Freeport, 1845 + + + + + + A. Skelton, 1845 + + + + + + + 5 + 18 + With name of writer and verse: + + + + W.M. Skelton + + + + + Your Friend N[a]ncy White + + + + + W. N. Woodend + + + + + Your friend R. L. + + + + + Affectionately yours Jane White + + + + + [J.G.] McQuaide + + + + + Mrs. E.F. Farren Saltsburg Pa + + + + + + 5 + 19 + With name of writer only: + + + + Mrs. Mary Fretz Doylestown Pa. + + + + + J. Farren Saltsburg Pa. + + + + + + 5 + 20 + 2 blank pieces of cloth + + + +
    +
    +
    + + +

    + Materials housed in Print Division: +

    +

    + Reading card for the library of the University of Edinburgh. +

    +

    + Materials housed in Broadsides: +

    +

    + Diplomatic passport for Walter Minto, signed by Sir Horace Mann. +

    +

    + Certificate of Walter Minto's honorary membership in the St. Andrew's Society of New York. +

    +

    + Materials housed in Small Oversize: +

    +

    Walter Minto's diploma from the University of Aberdeen

    +
    + +

    Princeton University Library: The Department of Rare Books and Special Collections at the Princeton University Library has letters of Minto in its miscellaneous manuscripts collection about the business of the College of New Jersey between 1787 and 1796, when Minto was a professor there, as well as two volumes of notes from his course on mathematics.

    +
    + +

    [William C. Alexander]. "Walter Minto, LL. D." The Princeton Magazine 1 (1850): 38-47.

    +

    Baskervill, P. Hamilton. The Skeltons of Paxton, Powhatan County, Virginia and Their Connections. Richmond, Virginia: Old Dominion Press, Inc., Printers, 1922. Primarily Chapter II.

    +

    Dzombak, William C. Salt in the Conemaugh Valley: The Importance of the Conemaugh Salt Works in the Early American Salt Industry (1800-1860). Saltspurg [sic], Pennsylvania: Saltsburg Historical Society, 2004.

    +

    Luther P. Eisenhart. "Walter Minto and the Earl of Buchan." Proceedings of the American Philosophical Society 94 (1950): 282-94.

    +

    John Maclean. History of the College of New Jersey from Its Origin in 1746 to the Commencement of 1854 , 2 vols. Philadelphia: J.B. Lippincott & Co., 1877.

    +

    Smith, Robert Walter. History of Armstrong County, Pennsylvania. Chicago: Waterman, Watkins, 1883. Primarily Chapter XX.

    +

    Joseph D. Zund. "Minto, Walter." Dictionary of American Biography Online. American Council of Learned Societies, February 2000. The most recent biography.

    +
    + + Minto papers - Correspondence addressed to Walter Minto (unless noted), by correspondent: + + Addison, Alex. (5 letters) + + + 11 September [1786], Philadelphia + 23 October 1786, Washington [Pa.] + 7 January 1787, Washington [Pa.] + 20 July 1787, Washington [Pa.] + 23 April 1795, Washington [Pa.] + + + + + Addison, Jean. (1 letter) + + + 23 October 1786 (with P.S. from husband, Alex. Addison [see preceding], dated 26 October), Washington [Pa.] + + + + + Aitchison, Alex., Jr. (9 letters) + + + 6 April 1774, Edinburgh + 7 December 1774, Edinburgh + 8 February 1775, Edinburgh + 15 February 1775, [Edinburgh] + 18 February 1775, [Edinburgh] + 8 March 1775, Edinburgh + 15 March 1777, Edinburgh + 19 July 1787, Edinburgh + 27 June 1788, Edinburgh + + + + + Anderson, Jo. (1 letter) + + + 20 April 1775, Lonend [Paisley, Renfrewshire] + + + + + Anderson, Thomas. (2 letters) + + + 11 December 1774, Selkirk + 10 January 1789, Selkirk + + + + + Anonymous (1)–to Walter Minto c/o Mr. Chrystie, New York. (1 letter) + + + 9 September 1787, Philadelphia (mentions "Aunt ana Elisa") + + + + + Anonymous (2) (1 letter) + + + 20 February 1788, New York (probably from a woman; mentions Mr. Chrystie, Mr. and Mrs. Tad, Miss Graff, Miss Robisson) + + + + + Anonymous (3): "Mr[?s]. laconic"–to Walter Minto, New York. (1 letter) + + + Undated [?1788-89] (sounds as though she may be an intermediary for letters that will bring him happiness, perhaps in his courtship of Mary Skelton) + + + + + Anonymous (4)–to Walter Minto at no address. (1 letter) + + + Undated [1788-96] (brief note of thanks, probably with a little money enclosed, for Minto's attention to his/her son) + + + + + Anonymous (5) [= M. Chrystie: same hand as M. Chrystie letter below and M. Chrystie letters in Series 2.I; refers to "Mr. Chrystie" as though he is her husband]. (1 letter) + + + 1 March 1789, New York (mentions letter from Mr. Hutchison to Walter Minto; also mentions Mrs. Tad, Miss Ga[u]) + + + + + Anonymous (6) "A friend to Learning". (1 letter) + + + 20 August 1792, New York (your college, where my son is, has done injury by recommending "a Silly, Ignorant Boy, to be a Professor of Languages," but you could make up for it by conferring an L.L.D. on Mr. Peter Wilson of Flatbush) + + + + + Anonymous (7-8) (1 (?) letter) + + + No date, no address (2 leaves; probably 2 separate items, as hands are not the same; cannot make out much of either: 1st appears to begin "Sir"; mentions "Miss Grant," "Mrs. Rit," "his friend M P," "Minto"; 2nd has a seal on the back and mentions "Johnson's") + + + + + Barlass, William. (1 letter) + + + 22 March 1776, Paisley + + + + + Baynton, Peter. (1 letter) + + + 6 July 1789, Philadelphia (requests Minto to appear on the commission for examining witnesses produced by John Morgan in his suit against the executors of John Baynton) (formerly in 1934 Minto donation) + + + + + Bell, John. (1 letter) + + + 13 June 1774, Glasgow (mentions what must have been a serious illness of Minto) + + + + + Betts, H. (1 letter) + + + 12 January 1780, Leghorn + + + + + Blackhall, John, Reverend. (4 letters) + + + 14 October [1782], Berwick + 6 February 1783, Berwick + 19 May 1783, Berwick + 3 April 1786, Berwick + + + + + Bond, P[hineas]. (1 letter) + + + 20 June 1787, Philadelphia + + + + + Bonrie, Ralph. (1 letter) + + + 27 September 1792, Philadelphia (mentions "the Son of Monsieur Woofoin" now under Minto's care) + + + + + Broom, Jacob (signer of the U. S. Constitution) (2 letters) + + + 30 July 1794, Wilmington + 12 September 1794, Wilmington + + + + + Brown, Colin (to W.M. c/o Major Chrystie, New York) (1 letter) + + + 14 August 1787, Philadelphia + + + + + Buchan, Lord (= David Steuart Erskine, 1742-1829; noted Scottish antiquarian) (17 letters) + + + 30 July 1784, Kirkhill + 26 May 1785, Kirkhill + 23 August 1785, Kirkhill + 22 September 1785, Kirkhill + 25 November 1785, N. Edinburgh + 8 January 1786, Great Pulteney Street + 16 January 1786, London + 23 January 1786, London + 10 February [1786], [prob. Edinburgh or Kirkhill; not London] + [May 1786; received 12 May] + 23 September 1786, Kirkhill + December 1786, Edinburgh + 16 February 1789, Edinburgh + 27 March 1790, Dryburgh Abbey + 28 June 1791, Dryburgh Abbey + 5 August 1793, Dryburgh Abbey + 9 September 1794, Dryburgh Abbey + + + + + Buchan, Lord, to Joseph Reed, Philadelphia. (1 letter) + + + 13 May 1786, Kirkhill (letter of introduction for Walter Minto, who probably took it with him to America; cf. Eisenhart) + + + + + Buist, John. (6 letters) + + + 16 May 1786, Greenock + 16 August 1791, Greenock + 13 March 1793, Greenock + 13 August 1794, Greenock + 24 March 1795 (with P.S. dated 27 March), Greenock + 6 August 1795, Greenock + + + + + C., J. (1 letter) + + + 5 March [1786], Stirling + + + + + Chalmers, Robert. (1 letter) + + + 3 August 1774, Pathead + + + + + Chrystie, M., to Mrs. Clark--to be left at Dr. Minto's. (1 letter) + + + 29 October [1790's–may be near end of Walter Minto's life, since it mentions his illness/ague] (talks about Minto's health, refers to Mrs. Minto; give love to Mr. Clark, also our "young friend Polly" and sister Betsey) + + + + + [Chrystie, M.]. + + + (see Anonymous (5) above) + + + + + Collins, Isaac. (2 letters) + + + 15 December 1788, Trenton (about proofs of Minto's inaugural oration at College of New Jersey) + 13 November 1792, Trenton (gives estimate for printing Minto's calculations) + + + + + Coventry, Andrew. (2 letters) + + + 29 December 1785, Stichill + 24 September 1794, Edinburgh + + + + + Drummond, Catherine (1762-1833; daughter of John Drummond, 3rd Laird of Logie Almond, Perthshire) (59 letters, numbered #1 to #48 (with #32 and #33 chronologically reversed, #35 and #46 omitted), plus 1 undated letter preceding #1, 6 dated letters following #48, and unnumbered letters between #25 and #26, #38 and #39, #42 and #43; all letters signed "CD" or unsigned unless noted; for "Catherine" see Minto's letter to Drummond in section B below) + + + Tuesday morning [March 1784 on outside by WM], St. John's Street [Edinburgh] (handwritten invitation from "Miss Drummond," with numbers on inside pages in Walter Minto's hand) + (1) 24 [June 1784; Recd. 26 June 1784], Logie Almond + (2) [July 1784; 14 July on outside by WM], Logie Almond + (3) 22 July 1784, Logie Almond + (4) [July/August 1784] (partly in French) + (5) 19 August [1784], Logie Almond + (6) [Recd. 21 August 1784] + (7) 6 September 1784 + (8) 4 October [1784] + (9) 10 November [1784] (with P.S. dated 22 November), Stobhall (signed "CDrummond") + (10) 25 November 1784, Logie Almond + (11) [November/December 1784] (has names of her siblings on outside in Minto's hand: Will., Thom., Cath., Eliz., Maria, Louisa, Fanny) + (12) 13 December 1784 + (13) 3 January 1785, Logie Almond + (14) 11 January 1785, Logie Almond + (15) 21 January [1785] + (16) 6 February 1785 + (17) [February-April 1785] + (18) [February-April 1785] + (19) [February-April 1785] + (20) [February-April 1785] + (21) [February-April 1785] + (22) 2 May 1785, Logie Almond + (23) [May 1785] (with P.P.S. dated 25 May and 26 May) + (24) 26 June 1785, Logie Almond + (25) 28 June [1785], [stamped Perth] + Thursday [21 July 1785 added inside by WM], St. John's Street [Edinburgh] (this and the next three, all in French, are sewn together and have their pages numbered 4-7) + [22 July 1785 added inside by WM] + [24 July 1785 added inside by WM] + [29 July 1785, plus Vendredi, added inside by WM] + (26) 8 August [1785], [stamped Perth] (mentions Uncle William and Mrs. Murray; also Lord Dunmore) + (27) [Recd. 1 September 1785] + (28) 4 September 1785 + (29) [Recd. 16 September 1785] (in French) + (30) [Recd. 5 October 1785] (in French) + (31) [Recd. 10 October 1785] [stamped Perth] (in French) + (33) 11 October 1785 (in French) + (32) 31 October [1785] [stamped Perth] (in French) + (34) [November 1785-January 1786] (has note: "La 35eme fut brulee") + (36) [November 1785-January 1786] (in French) + (37) [Recd. 8 February 1786] + (38) [Recd. 16 February 1786] (in French) + Mardi [21 March 1786 added inside by WM] (in French) + (39) [3 April 1786 added inside by WM] (in French) + (40) [8 April 1786 added inside by WM] (in French) + (41) Jeudi [April/May 1786] (in French) + (42) 11 May [1786 added inside by WM] (in French) + [19 May 1786 added inside by WM] (in French) + (43) 2 June [1786], Edinburgh (in French) + (44) 2 February 1787 (sent to Philadelphia; recd. 21 July) + (45) 17 April 1787, Logie Almond (in French) (sent to Philadelphia; recd. 30 November) + (47) 28 January 1788 (in French) (all from here on sent to Princeton; recd. 23 April) + (48) 5 July [1788] (the day and month are from a P.S.; in French, English, and Italian; rejects Minto's proposal in his letter to her in section B below) + 16 January 1789, St. John's Street [Edinburgh] (in French) (recd. 11 May; replied to this one and the next two on 5 January 1790, according to a note on the outside of each) + 29 March 1789 (in French) + 25 October 1789, George Street [Edinburgh] + 24 February 1790, George Street [Edinburgh] (mentions his letter of 5 January telling her of his marriage) + 19 July 1790, Logie Almond + 27 April 1791, [stamped Perth] (mostly in English, a bit in French) + + + + + Erskine, David Steuart. + + + (see Buchan) + + + + + Fisher, Miers. (1 letter) + + + 18 March 1789, Philadelphia + + + + + F[ord], M[artha] ("Mrs. Forbes" on outside of letter, also on the following letter, in what appears to be Minto's hand) (1 letter) + + + 12 September 1778, Kensington Gore (mentions WM's and Johnny's illnesses; was also anxious about George, but was reassured by the latter's letter to her) + + + + + F[ord], M[artha], to George and John [Johnstone] (sons of George) (1 letter) + + + 26 August 1778 (signed "Mother"), Kensington Gore (no address on outside; probably enclosed in the preceding, since it has the same folds; mainly about their father's actions vis-a-vis the French fleets off Sandy Hook) + + + + + Gale, R.H. (1 letter) + + + 6 April 1792, Baltimore + + + + + Garrick, D[avid], to Governor Johnstone. (1 letter) + + + 28 June 1772, Hampton + + + + + Grant, John (for Minto at Colonel Gurney, Philadelphia, also at Mr. Christie, New York) (1 letter) + + + 18 December 1786, "Ma[nre] of Roha[t]in near Keith Banffshire No. Brid.'" + + + + + Gurney, Francis. (4 letters) + + + 29 January 1787, Philadelphia + 18 February 1787, Philadelphia + 28 March 1787, Philadelphia + 25 June 1787, Philadelphia + + + + + Harpur, Robert. (1 letter) + + + 28 February 1787, New York (about Erasmus Hall) + + + + + Hubey, Nicholas. (1 letter) + + + 3 May 1792, Baltimore + + + + + Hunter, Andrew (Professor of Mathematics and Astronomy at College of New Jersey in 1804) (1 letter) + + + 10 June 1794, Woodbury [N.J.] + + + + + Hutchinson, James, and John Vaughan (secretaries of American Philosophical Society) (1 letter) + + + 6 February 1789, Philadelphia (informing Minto of his election to APS) + + + + + Imlay, [James H.]. (1 letter) + + + 3 December 1795, Allentoun [Pa.] + + + + + Irving, Thomas. (1 letter) + + + 14 December 1789, Somerset County Maryland + + + + + Jamieson, John (much published religious scholar) (7 letters) + + + 25 October 1785, Forfar + 16 November 1785, Forfar + 24 December 1785, Forfar + [3-23 February 1786] + 10 October 1787, Forfar + 15 August 1792, Forfar + 1 February 1794, Forfar + + + + + Johnstone, B[arbara], [Lady] (mother of George), to John Johnstone (brother of George), Wasterhall. (1 letter) + + + 2[-] December 1764 + + + + + Johnstone, George. (3 letters) + + + 30 May 1776, London (instructions to Minto about his sons and thoughts on education, discipline, etc.) + 30 May [1776], Erith (a kind of P.S. to the preceding letter) + 30 October 1778, London (copy in WM's hand) (see below section B, Johnstone, item a) + + + + + Kemp, John. (2 letters) + + + 5 March 1791, New York + 26 September 1796, New York (introducing a Mr. Geary from Scotland, who has charge of the Academy at Trenton) + + + + + Laurie, Joseph. (1 letter) + + + 3 March 1795, Princeton + + + + + Lawson, George. (2 letters) + + + 18 March 1786 (has a P.S. by Lawson's wife Margaret), Selkirk + March 1787, Selkirk (sent to Washington College, Annapolis; then forwarded to New York c/o Dr. Mason) + + + + + Littlejohn, Thomas B. (1 letter) + + + 22 October 1794 New York + + + + + Livingston, [?B.] H. (1 letter) + + + 28 February 1787, New York–addressed to Dr. Walter Minturn (Erasmus Hall school opens in May, and Minto is their prime candidate for principal; invites Minto to New York for a visit and interview) + + + + + Marth, John. (1 letter) + + + 2 March 1779, Malaga + + + + + Mason, John. (2 letters) + + + 4 March 1787, New York (about Erasmus Hall, accompanying letter from Rev. Dr. Livingston above) + 5 March 1791, New York + + + + + McCormick, Daniel, to George Morgan Esq. (1 letter) + + + 1 November 1794, New York + + + + + McDonald, Jo. (fellow Scottish immigrant and Presbyterian minister) (10 letters) + + + 21 September 1783, Berwick + 28 June 1784, Greenock + 19 August 1786, Albany–addressed to Minto c/o Dr. Benj[torn], Philadelphia + 11 July 1787, Albany + 29 June 1789, Albany + 10 November 1789, Albany + 11 November 1791, New Brunswick + 28 May 1792, New Brunswick + 2 November 1792, Albany + 12 July 1794, Albany + + + + + Minto, Agnes (sister of Walter Minto) (1 letter) + + + 1 March 1774 [in spite of fact that 1779 is on the outside], Edinburgh (mentions Minto's recent illness) + + + + + Minto, David (brother of Walter Minto) (1 letter) + + + 10 April 1787, place cut out + + + + + Minto, M[ary] [Skelton] (wife of Walter Minto) (1 letter) + + + 7 October [probably 1789, though could be later; note that it sounds as though early in their marriage and this, from Minto's letter to Anon. dated 1[2] July 1789: "As soon as our vacation begins, an event is to take place of the greatest importance to my future happiness. Immediately after this I am under engagements which I cannot dispense with to go to N. York."]-- addressed to Minto at Col. Chrysties Maiden Lane No. 17 New York + + + + + Minto, Nanny (sister of Walter Minto) (5 letters) + + + 18 August 1786, Edinburgh–addressed to Minto c/o "Dr. R[u]sh, Philadelphia" + 10 June 1788, Edinburgh + 26 February 1789, Edinburgh + 20 September 1794, Edinburgh + 5 May 1795, Edinburgh + + + + + Minto, Nanny, to Mrs. Col. Christie. (1 letter) + + + 14 February 1797 (has received her sad account of Walter's death and mentions the "embarrassment of Mrs. Minto's affairs" [presumably financial]; in a P.S. dated 10 March 1797 says she has received a box with a parcel of newspapers and a few articles of her brother's, but not one line from Mrs. Minto) + + + + + Minto, Robert (uncle of Walter Minto), to Walter Minto Sr. (3 letters) + + + 19 July 1775, Jamaica + 30 January 1779, Liverpool + 4 January 1783, London + + + + + Minto, Thomas (brother of Walter Minto) (12 letters) + + + (1st 5 letters numbered #15-#19, 7th numbered #20): + 23 August 1785, Crosbie, Cumberland + 13 September 1785, Liverpool + 29 September 1785, Liverpool + 14 November 1785, Liverpool + 6 February 1786, Kingston [Jamaica] + 22 March 1787, Hanover, Jamaica + 24 April 1787, Hanover, Jamaica + 10 September 1787, Hanover, Jamaica + 12 June 1789, Hanover, Jamaica + 25 June 1791, Hanover, Jamaica + 30 July 1791, Hanover, Jamaica + 5 September 1796, Hanover, Jamaica (says their brother David died on 19 August 1796, and he is uneasy about Walter's health) + + + + + Minto, Thomas, to his sister Nanny Minto. (2 letters) + + + 10 February 1781, St. James, Jamaica + 24 July 1781, St. James, Jamaica + + + + + Minto, Thomas, to his parents, Walter Minto Sr. and Agnes Waugh. (7 letters) + + + Undated [but perhaps Spring 1777, from Jamaica] ("I wrote to you from Kingston," says it has been over 3 months since he came to this country, and talks about a Negro rebellion begun by a boy "belonging to a Dr. Spence parish of Hanover next parish to St. James") + 26 July 1777, St. James, Jamaica (with P.S. to his sister Nanny) + 10 April 1778, St. James, Jamaica (includes a letter for his sister Nanny Minto beginning on page 3) + 1 August 1778, St. James, Jamaica + 21 May 1780, St. James, Jamaica + 10 February 1781, St. James, Jamaica (with P.S. dated 15 February) + 24 July 1781, St. James, Jamaica + + + + + Minto, Walter, Sr. (9 letters: a few signed by Walter Minto Sr.'s wife and/or children) + + + + Undated [between 2 November 1773 and 11 March 1775, when he was staying in East Rhynd; "176odd" on outside of letter] + 29 August 1777 (parents are very worried about Walter Jr.'s brother Thomas and uncle Robert in Jamaica; have not heard from them) + 9 February 1778 + 2 June 1779, Edinburgh + 14 June 1780, Edinburgh + 2 August 1780, Edinburgh (includes a P.S. from A. Waugh to + 22 January 1781, Edinburgh + 12 September 1782, Edinburgh--no destination, but to somewhere overseas: perhaps Ostend, since it mentions Minto coming home via there + 11 April 1787, Edinburgh + + + + + Minto, Walter, Sr., to Revd. Buist (see above) (1 letter) + + + 18 January 1790, Edinburgh + + + + + Minto, Walter, Sr., to Mary Minto. (1 letter) + + + 15 February 1798 (addressed "Dear Daughter"; says he can't give her any advice about selling the farm; mentions his daughter's death on 3 September 1797; spends most of his letter laying out his financial trouble and asking Mary Minto to send him something) + + + + + Mundell, John. (1 letter) + + + 28 April 1789, Fredericksburg Virginia + + + + + N[?ichol]nson, William. (2 letters) + + + 23 May 1786, Edinburgh + 19 June 1789, Edinburgh (mentions "our friend Chrystie," Mr. Bowre/Bowie/Bonrie, etc.) + + + + + O., [A.]. (1 letter) + + + 13 March 1786 (mentions Minto's degree, asks the name of the ship he sails on for America "in the middel of April" and when he leaves Edinburgh) + + + + + Oliver, Katharine (cousin of Minto) (1 letter) + + + 30 November 1775, Inverleithen + + + + + Oliver, Stephen. (1 letter) + + + 11 September 1794, Marton (letter of recommendation for James Somerveil) + + + + + Panton, Thomas. (1 letter) + + + 7 November 1778, Leghorn + + + + + Paterson, Samuel. (3 letters) + + + 22 May 1788, Edinburgh + 15 September 1789, Edinburgh + 21 June 1792, Edinburgh (says he received a package from Minto's father and knows to whom it should go [=Charlotte Drummond]) + + + + + Ragueneau, Abraham. (1 letter) + + + 9 September 1776, Leghorn + + + + + "Rhomboidus," Timothy. (1 letter) + + + "Paulus Mart. 5722" [1786, between February and May] ("Dear Mr. Domine Squire Doctor Mintot": joking letter with mathematical and astronomical references congratulating Minto on his doctorate from "University of St. Andrews") + + + + + Rittenhouse, David (1732-96; noted astronomer and clockmaker) (6 letters) + + + 10 March 1790, Philadelphia + 15 November 1790, Philadelphia + 26 September 1791, Philadelphia + 25 May 1792, Philadelphia + 4 April 1793, Philadelphia + 28 October 1795, Philadelphia + + + + + Rittenhouse, David, to Mary Minto. (1 letter) + + + 21 December 1795, Philadelphia (mentions Minto's severe illness) + + + + + Rochefontaine, Stephen. (2 letters) + + + 9 October 1793, Princeton + 14 February 1795, Philadelphia + + + + + Rodgers, John (noted clergyman, Revolutionary War chaplain) (1 letter) + + + 16 May 1795, New York (about his funeral oration for Witherspoon) + + + + + Rush, Benjamin (signer of the Declaration of Independence) (5 letters) + + + 5 January 1789, Philadelphia (thanks Minto for a copy of his speech; contains a recipe in French inside, in neither Rush's nor Minto's hand) + 24 March 1792, Philadelphia (wishes to send his son John to the College and requests Minto to take him into his family) + 30 April 1792, Philadelphia (same subject) + 9 May 1792, Philadelphia (same subject) + 19 September 1792, Philadelphia (his son's disgrace, has decided to take him home; immoral life at the College) + + + + + Skelton, Joseph, to Mary [Skelton] Minto. (1 letter) + + + 16 March 1797, New York (addressed "Dear Aunt," but from date this should be her brother, not a nephew; he had her letter from Toney; mentions details of the auction of someone's goods, probably her husband's, and urges her not to sell the farm for a while) + + + + + Skinner, Abraham. (1 letter) + + + Undated [1790s] (mentions Princeton) + + + + + Slop, Giuseppe A[ntonio] (1740-1808; noted Italian astronomer, professor at Pisa) (3 letters) + + + [1778, early December: before the 10th; sent to Livorno] (numbered #10) (in Italian) + [Recd. 10 September 1785] (numbered #22; with P.S. by his son, Francesco) (in Italian), Pisa + 10 February 1786 (numbered #23) (in French and Italian), Pisa + + + + + Slop, Giuseppe, to Governor Johnstone. (1 letter) + + + 13 November 1778, Pisa (in French) (see below, section B, Johnstone, item a) + + + + + Smith, B. (1 letter) + + + 14 November 1795, Trenton (has to do with a signature for a deed in Philadelphia) + + + + + Smith, Samuel [Stanhope] (President of College of New Jersey, 1795-1812) (1 letter) + + + Saturday 1 p.m. [15 November 1794 inside, perhaps by Minto], Tusculum [near Princeton] (mentions John Witherspoon dying half an hour earlier) + + + + + Snowden, Isaac, Jr., to Mary Minto. (1 letter) + + + 1 July 1797, Philadelphia (about Walter Minto's tombstone, whether it should be in Latin or English) + + + + + Steuart, Selkirk. (2 letters) + + + 20 May 1786, Bunker's Hill + 24 July 1792, Edinburgh + + + + + Stockton, R[ichar]d (son of signer of the Declaration of Independence) (1 letter) + + + Sunday 12 ‘O [?Cl] [6 July-28 September 1795, probably September], [Princeton] (has to do with legal papers for a bond or bonds signed by Minto [see section IV.B.9 and B.10 below]; a note dated 1 October 1795, found accompanying this letter, is now item B.11 in section IV. below) [Though this note is clearly connected with Stockton's letter in subject matter, it is not in the same hand, and it is uncertain whether the two were originally together in the Minto donation.] + + + + + Stone, D. (2 letters) + + + 21 December 1788, Windsor, North Carolina + 20 March 1790, Edenton [North Carolina] + + + + + Taylor, James. (2 letters) + + + 7 August 1774, Cardross + 29 November 1777, Calderhall + + + + + Thorburn, James. (1 letter) + + + 27 March 1787, South Shields–addressed to Walter Minto "at Dr. Rush's" + + + + + Tod, Ann[i]e (probably not a relative of next, since she talks about letters from Scotland and her ill father) (1 letter) + + + 15 June 1789 + + + + + Tod, James. (3 letters) + + + 26 May 1788, Erasmus Hall (Tod seems to be connected to the school in some way) + 24 October 1794, New York + 2 April 1795, New Utrecht + + + + + VanDerbilt, John. (1 letter) + + + 17 October 1787, Flatbush (as president of trustees at Erasmus Hall, releases Minto from his contract to accept appointment at College of New Jersey) + + + + + Vaughan, John. + + + (see Hutchinson) + + + + + Watson, Robert. (2 letters) + + + 3 May 1786, Duppline (he adds: "Direct for me at Dupplin by Perth"; accounts written inside in Minto's hand) + 13 May 1786, Duppline + + + + + Witherspoon, John (President of College of New Jersey, 1768-94; signer of Declaration of Independence) (2 letters) + + + 18 April 1787, Tusculum [near Princeton] + 29 August 1787, Tusculum [near Princeton] + + + + + Woodhull, John. (1 letter) + + + 2 March 1789, Freehold [N.J.] + + + + + Woofoin, Lewis. (2 letters) + + + 1 October 1794 [Trenton] (signed "Lewis Woofoin Son") + 27 [?Octo]bre 1795, Camp du Centre (recd. August 1795; Philip Woofoin begins and signs this letter, but Lewis appends an addendum and signs too; the hands--though the d's are sometimes different--and thought expressed are very similar, leading to the possibility that these two are one and the same person; but in letter from Bonrie of 27 September 1792 only one son is mentioned) + + + + + Woofoin, Philip. + + + (see preceding) + + + + + Young, James. (1 letter) + + + 27 October 1794, New York + + + + + + Minto papers - Correspondence from Walter Minto, by recipient: + + Anonymous (1) "Revd. Sir" (someone connected with the Royal Society) (1 letter) + + + 31 January 1786 (copy, from Edinburgh; Minto says: ".. it was the discovery of the new planet that drew my attention to Astronomy, about a year after I had begun the study of the Mathematics"; mentions his "honoured friend & master Professor Slop"; says that "Mr. Robison of this University has lately favoured me with a few observations of HL [= HL ligature, probably an abbreviation for the recently discovered planet by Herschel; also called "N.P." in this letter] by Professor Wilson of Glasgow": these observations are for January 16, 1786 and are on page 3, which is otherwise blank) + + + + + Anonymous (2) [= Peter Baynton] (1 letter) + + + 1[2] July 1789 (draft or copy, written on a blank leaf, on the verso of which is an address: Monsieur Walter Minto in Casa del Sigre Dottore Slop Pisa; Minto declines to be a commissioner for examining witnesses to a suit, replying to a letter of Peter Baynton dated 6 July 1789 (see section A. above); gives as reason: "As soon as our vacation begins, an event is to take place of the greatest importance to my future happiness. Immediately after this I am under engagements which I cannot dispense with to go to N. York.") + + + + + Buchan, Lord (= David Steuart Erskine) (2 letters) + + + 30 June 1784, Edinburgh (draft; draft of a letter in Italian on the reverse, perhaps for Lord Buchan) + 21 January 1786, Edinburgh (draft or copy) + + + + + Drummond, Catherine (1 letter) + + + Undated [but probably February-June1788, in response to hers of 28 January 1788, since he says that it has been 4 years since he loved her] ("Translation of part of a letter from W.M. to C.D." at top; proposes marriage; mentions the name "Catherine"–the only time her first name appears) + + + + + Ferguson, [Adam], Professor (at Edinburgh) (1 letter) + + + Undated [probably spring 1779] (tries to explain his actions vis-à-vis the Johnstone boys and also mentions "my friend Mr. Slop") (copy, very faint and difficult to read) + + + + + Johnstone, [George], Governor. (5 items) + + + 3 items written consecutively on the 8 pages of 2 folded leaves: (1) copy of a letter from Johnstone to Walter Minto (in Minto's hand) dated 30 October 1778, London [4 days after returning from North America] (complains that WM has put off the trip home from the spring to the winter after he told WM to bring them home earlier, that WM did not follow his plan of education, and about WM's "attachments" and personal characteristics); (2) copy of letter to Johnstone (in Minto's hand) dated 23 November 1778, Pisa (refutes all of Johnstone's complaints, but says he will write to the Consul tomorrow and will bring the boys home as soon as possible); (3) letter of support for WM from Slop to Johnstone (in French) dated 13 November 1778, Pisa (this last may also be a copy given to Minto by Slop for Minto's files, but it is definitely in Slop's hand) + 10 December 1778, Leghorn roads (draft or copy) (numbered # 25) + Fragment (a P.S. to an unknown letter): [probably early March 1779], [probably from Cadiz, after delivering Johnstone's sons to Captain Machell] (draft or copy) + + + + + Minto, David, Jr. (1 letter) + + + 5 March 1777, Pisa + + + + + Minto, Walter, Sr., or Walter Minto Sr. and wife (4 letters) + + + Undated [early 1776, when he first went to Johnstone's in London; probably before 17 January] + 12 January 1779, Malaga + 28 September 1781, Pisa (fragment) + 11 March 1782, Pisa + + + + + Monthly Reviewers. + + + 1 letter: 10 July 1784, Edinburgh (copy) (defends his book on Uranus against criticism) + + + + + Skelton, [Mary], Miss (later Mary Minto, wife of Walter Minto, "at Mrs. Morgan's") (1 letter) + + + Undated, Thurs. morning [1788-89] + + + + + Wauch (probably not the same as next) (1 letter in two parts) + + + Undated [1776-77; in 2nd (pages 3-4), addressed to "Dear [S]anney" (another name for Wauch), Hume is mentioned as having died, which would put it after 25 August 1776, but it is also after 7 September, when he last wrote Wauch] ("I understand Dr. Hume Esquire who had the Chief hand in sending me here [Italy] is gone to the world of spirits." "Is Allie Wauch married?") (?copy) + + + + + Waugh, Alex. (1 letter) + + + 1 September 1777, Pisa (includes letter on pages 2-3 to his sister Nanny) + + + + + + Minto papers - Correspondence with recipients other than Walter Minto: + + Buist, Revd., from Walter Minto Sr. (1 letter) + + + 18 January 1790 + + + + + Christie, Mrs. Colonel, from Nanny Minto (1 letter) + + + 14 February 1797 (with P.S. 10 March) + + + + + Clark, Mrs., from M. Chrystie (1 letter) + + + 29 October [1790's] + + + + + Johnstone, Governor George, from Garrick (1 letter) + + + 28 June 1772 + + + + + Johnstone, Governor George, from Slop (1 letter, in French) + + + 13 November 1778, Pisa (see above, section B., Johnstone, item a) + + + + + Johnstone, George and John (sons of Governor Johnstone), from Mrs. M[artha] F[ord] (1 letter) + + + 26 August 1778 + + + + + Johnstone, John, from [Lady] B[arbara] Johnstone (1 letter) + + + 2[-] December 1764 + + + + + Minto, Mary, from Walter Minto Sr. (1 letter) + + + 15 February 1798 + + + + + Minto, Mary, from David Rittenhouse (1 letter) + + + 21 December 1795 + + + + + Minto, Mary, from Joseph Skelton (1 letter) + + + 16 March 1797 + + + + + Minto, Mary, from Isaac Snowden Jr. (1 letter) + + + 1 July 1797 + + + + + Minto, Nanny, from Thomas Minto (3 letters) + + + 10 April 1778 (see under Minto, Walter Sr. and Agnes Waugh Minto) + 10 July 1781 + 24 July 1781 + + + + + Minto, Walter Sr., from Robert Minto (3 letters) + + + 19 July 1775 + 30 January 1779 + 4 January 1783 + + + + + Minto, Walter Sr. and Agnes Waugh Minto, from Thomas Minto (7 letters) + + + Undated [perhaps Spring 1777] + 10 April 1778 (includes a letter for his sister Nanny Mint beginning on page 3) + 1 August 1778 + 26 July 1779 + 21 May 1780 + 18 February 1781 + July 1781 + + + + + Reed, Joseph, from Lord Buchan (1 letter) + + + 13 May 1786 + + + + + + Minto Papers - Correspondence after Walter Minto's death: + + Nanny Minto (Minto's sister) to Mrs. Colonel Christie + + + 14 February 1797, Edinburgh (with a P.S. dated 10 March 1797) + + + + + Joseph Skelton to Mary Minto + + + 16 March 1797, New York + + + + + Isaac Snowden, Jr., to Mary Minto + + + 1 July 1797, Philadelphia + + + + + Walter Minto Sr., to Mary Minto + + + 15 February 1798, Edinburgh + + + + + + Minto-Skelton family papers - Correspondence from 1780 to 1813 (and possibly to 1824), primarily to or from Mary Skelton Minto (died late 1824): + + Anonymous (?the daughter of one of Mary Minto's siblings) to Mary Minto (1 letter) + + + 17 July 1799, New York (addressed "Dear Aunt"; received MM's letter via Mr. Godwin; she is postponing her visit to MM for a few weeks because of possible fever; says "Mrs. Chrystie & all the family is well"--she is on Long Island at the moment; will get the knives and forks in Mrs. C's absence and lists them, "Dezert" knives are for Aunt Clarke; also mentions a "Cosin John") + + + + + Chrystie, John (Columbia class of 1806; died 1813), to Mary Minto (3 letters) + + + 7 December 1805, New York (1st and 3rd addressed to "My dear friend," 2nd to "My dearest friend," and in all three he gives his and his mother's love to Miss Betsey and the Clarks; mentions his regret at not being able to attend commencement in Princeton) + 2 February 1807, New York (mainly literary banter; mentions Col. Baytie) + 4 May 1808, New York (he has a 1st lieutenant post offered, which is good for his years; he took Mary Minto's letter to "our most unfortunate Joseph" [MM's brother], wishes he could help him and his family of little ones, but cannot) + + + + + Chrystie, M, to Mary Minto (2 letters) + + + 22 January 1810, New York (must be the mother of John, much of the letter spent talking about him; also mentions "your little son Minto" [ = Walter Minto Skelton, whom she is raising]; "His father & family are well," another son has arrived [probably Thomas], all fine children; the mother has been "a great sufferer" in Joseph's troubles; mentions Joseph's salary and his "place," but "Thomas" [probably Joseph's brother] would rather give more to Joseph until something comes up that will allow him to do better) + Undated [probably after Walter Minto's death, since he is not mentioned, and perhaps after 1807, which would also fit in with the riots and the possible Detargny reference], no place (mentions Mr. Chrystie, " Mrs. Clark, sister Betsy & Miss Gau[ ]'," and Joseph, who has been looking forward to seeing her; also a Mr. Tad, "John" [probably her son], and a "Mrs. Ditennia [? = Detargny], who has visited Mary Minto–glad she is better; mentions Mr. Cuthbert calling on us, also that it is good that the "Trustees of the College are determined on a more rigid discipline" [?after riots of 1807]) + + + + + Cuthbert, M., to Mary Minto (2 letters) + + + Undated [after 1789, but no mention of Walter Minto, so probably after 1796], no place (thanks her for good feelings, mentions his or her own near-death experience ["the perils of the Ocean"], etc.; sounds like a woman, but not like a relative) + Undated (and anonymous, but a draft of the preceding, in same hand) + + + + + Gamble, John G., to Monsieur [Marin] Detargny (Alexandria) (1 letter) + + + 1 December 1802, Richmond (rejects his request to open a French school in Richmond) + + + + + Garcia del Rio, Manuel, to Dr. Santiago Drake (Havana) (1 letter) + + + 6 February 1800, Cadiz (in Spanish; recommendation for Dr. Marino Detargny) + + + + + Gibbes, Ann, to Mary Minto (1 letter) + + + 24 October 1808, Charleston (presents her son George, who is leaving for Princeton and hopes to be admitted to the College; asks her to give him good advice under her observation as a "Mother"; gives compliments to Mr. and Mrs. Clark and her sister Miss Betsy) + + + + + Hopkins, B[enjamin] B. (husband of Mary Minto's niece, Elizabeth, daughter of her brother Josiah Skelton), to Mary Minto (2 letters) + + + 14 February 1811, Philadelphia (both addressed "My dear Aunt"; about family affairs, with names that Mary Minto would be expected to know (including Ennion and Josiah); appends a note of expenses from a bill to him from the steward of the Penn' Hospital for 41 weeks of board for Marin Detargney" from 29 April 1810 to 10 February 1811, plus other expenses) + 19 January 1813, Philadelphia (long explanation about the hospital bill and "Detergney"'s situation: he may have to be sent to the overseers of the poor, and Mrs. D is also destitute and depends on relatives who could ill afford to help her husband; mentions his own financial situation; enclosed is "the interest money" drawn for you at North America Bank; his daughter Margaret Hopkins adds a note to "My dear Aunt" mentioning her [MH's] sisters Eliza and Adelaide and says to give love to "Cousin Walter") + + + + + Invitation to Miss B. Baynton (1782) + + + (see Series II, sub-series 6: Invitations) + + + + + Invitations (14) to one or both of the Skelton sisters (1780-[probably mid-1780's]) + + + (see section Series II, sub-series 6: Invitations) + + + + + Minto, M[ary Skelton], to Walter Minto (1 letter) + + + 7 October [probably 1789, though could be later] (filed in Series I: Minto Correspondence) + + + + + Minto, Nanny, to Mrs. Christie (1 letter) + + + 14 February 1797, Edinburgh (with P.S. 10 March 1797) (filed in Series I: Minto Correspondence) + + + + + Minto, Walter, to Miss [Mary] Skelton [later Minto] (1 letter) + + + Thurs. morning [1788-89] (filed in Series I: Minto Correspondence) + + + + + Minto, Walter, Sr., to Mary Minto (1 letter) + + + 15 February 1798, Edinburgh (filed in Series I: Minto Correspondence) + + + + + Rittenhouse, David, to Mary Minto (1 letter) + + + 21 December 1795, Philadelphia (filed in Series I: Minto Correspondence) + + + + + S[cudder], Mrs. H[annah], to her husband (1 letter) + + + Undated [but a few days before her death on Monday 19 + November 1781] (mentions her sister Mary, to whom she entrusts her child if it live) + + + + + Skelton, Joseph, to Mary Minto (1 letter) + + + 16 March 1797, New York (addressed "Dear Aunt," but from date this should be her brother, not a nephew; filed in Series I: Minto Correspondence) + + + + + Skelton, M[ary], to Betsey Skelton (1 letter) + + + 18 October [probably before 1780] (describes wedding of Hannah Scudder; the letter is carelessly, perhaps hurriedly, written; cf. Scudder letter above) + + + + + Snowden, Isaac, Jr., to Mary Minto (1 letter) + + + 1 July 1797, Philadelphia (filed in Series I: Minto Correspondence) + + + + + + Minto-Skelton family papers - Correspondence from 1824 to 1843, primarily to or from Walter M. Skelton (died 1848): + + Committee of the Princeton Blues (C. H. Vancleve, Ashbel Green, Chas. W. [ ]eritan) to W.M.S. (1 letter) + + + [received 25 July 1831], Princeton (thanks him for his service as Captain of the Company) + + + + + Invitation to Miss Ann Skelton (1834) + + + (see Series II, sub-series 6: Invitations) + + + + + Invitations (2) to Walter Skelton (1826, 1843) + + + (see Series II, sub-series 6: Invitations) + + + + + Maclean, John (president of College of New Jersey, 1853-68), to WMS (1 letter) + + + 18 August 1824, Princeton (thanks for note, will see him tomorrow morning in his rooms) + + + + + Skelton, Ann (sister), to WMS (at Conemaugh Salt Works, Westmoreland County) (1 letter) + + + 14 January 1832, Princeton (her mother is now in Princeton, and very sick; mentions a letter from "Thomas" to her mother in which he says he will be in Princeton soon; gives her love to Elizabeth and "Father") + + + + + Skelton, Joseph (father), to WMS (1 letter) + + + 20 January 1825, Conemaugh Salt Works (in reply to WMS's letter of 10 December regarding the death of "Aunt Minto"; mentions Thomas [brother of WMS], who is at school, also a brother Joseph and a sister Ann "wich you have never saw yet," and gives a list of siblings with birth dates; the writer works at the salt works; stained and very difficult, sometimes impossible, to read) + + + + + Skelton, Walter Minto, to Anonymous ("Gentlemen" [people connected with the college]) (1 letter, draft) + + + 29 September 1824, [Princeton] (thanks for the "honour . . bestowed, by advancing me to this honourable, yet difficult and responsible station"; mentions "the duties of my appointment" and "our beloved and venerable Hall [must be Nassau Hall]" and asks for their "assistance and cooperation") + + + + + Skelton, W. M., to John Lourey (Major, Princeton Blues) (1 letter, copy) + + + 8 July 1831, Princeton (resigns commission as Captain in the Princeton Blues) + + + + + Skelton, W. M., to John Skelton (?cousin, son of Josiah Skelton, Mary Skelton Minto's brother) (1 letter) + + + 27 June 1824, [Princeton] (appears to be a draft, or else the letter was not sent; asks for information on his father and his family: his father is in "your part of the country," and he has not heard from his mother for a long time, but she too left New York for "the western country"; mentions Aunt Minto [who is still alive], his mother's brother Amos White, his mother's brother-in-law John Bezonett) + + + + + Skelton, W. M., to Mary Skelton (sister) (1 letter) + + + [2 February 1826 on outside, probably written just before leaving for western Pennsylvania] (a copy or draft of a letter of advice to his younger sister about how to conduct herself in life, beginning "Accept the parting advice of your brother"; on page 3 begins a brief note to his mother, saying that anything he has is hers) + + + + + Skelton, W. M., to Sarah Skelton (mother) (1 letter) + + + 6 February 1832, Conemaugh Salt Works [postmarked Alexandria, Pennsylvania (mentions Thomas as being with her in Princeton and hopes T. will be able to come out to Conemaugh ASAP so as to be there when WMS is absent–he wants to get to Princeton ASAP and has to be back at Conemaugh in the spring; encloses a letter [no longer here] to stonecutter for tombstone for Mary C. Skelton, b. 25 December 1812, d. 15 July 1831) + + + + + White, Elizabeth (aunt, sister of WMS's mother), to WMS (1 letter) + + + 22 March 1827, Scarsdale (sent to WMS at "Great Salt Works, Indianna County"–1st letter addressed to WMS in western Pennsylvania; refers to the fact that his parents were not able to provide for him, that he owes a debt to his "departed aunts"; mentions WMS's mother who hopes to visit her relatives in New York, his sister Mary whom he wishes to educate, and his "cousin Jane White" who has married a man named Gant, an industrious and respectable mechanic; also mentions that she [his aunt] runs a school of 28 scholars, mostly boys; says to remember her to his mother and sister Elizabeth, both in western Pennsylvania) + + + + + + Minto-Skelton family papers - Later Correspondence, 1872-1940, chiefly Boyd: + + Duffy, James O.G. (attorney), to C.M. Hill (attorney in Freeport) (1 letter) + + + 30 March 1906, Philadelphia (subject: "the quarry leases from the Ann Skelton estate," so she must be dead; monthly rental paid during the life of leases, but the concerns controlled by H.S. Kerbaugh Inc. do not desire an extension (cf. Series II, sub-series 4: Ann Skelton, item 3) + + + + + Earhart, Harry B. (donor of the first Minto collection to the Clements Library in 1934), to "My Dear Uncle" [probably W.M. Boyd] (1 letter) + + + 7 January [18]98, "Home" (he arrived there "after an uneventful ride across country"; thanks him, Aunt Hannah, and Lizzie for their hospitality and hopes they will see more of his mother than in past years; is glad to have learned from them about her girlhood and young womanhood) + + + + + Jack[s]on, William F., Jr. (Manager of Operations, Franklin Institute), to Elizabeth Boyd (1 letter) + + + 24 August 1938, Philadelphia (thanks her for offering us the very interesting papers of Dr. Minto, former professor of mathematics at Princeton, but our funds are not sufficient to permit us to make purchases like this) + + + + + K., H.L., to Elizabeth [Boyd] (1 letter, typed) + + + 11 September 1915, Pittsburgh (titled "CURRENT NEWS OF THE DAY," regarding people in Pittsburgh, including "Helen" [McIntyre] and her new job at Shakespeare School in East End Pittsburgh) + + + + + Rayburn, Calvin (attorney), to Mrs. Hannah P. Boyd (1 letter) + + + 17 February 1887, Kittanning, PA (encloses claim for bounty and gives her instructions for filling it out; see Series II, sub-series 4: McFARLAND, item 1)buck + + + + + Robb, Charles A. (attorney), to Elizabeth Boyd (1 letter) + + + 12 January 1930, Pittsburgh (encloses a "Copy of spoken [=spirit] message" dated 11 January 1930 from "Aunt Ann Skelton" to her niece Mary Boyd, transcribed by Robb and heard by 8 persons there present; "They found and brought to me the one you desired to hear from and I inclose her message to you with this letter," room dark and didn't get down half of what she said, but she was an interesting speaker) + + + + + Ryder, Edgar M., to Ann Skelton at McVill, Armstrong County, PA (1 letter) + + + [?2]4 March [18]72, New York (addressed to Cousin Ann; "I have not been sent off yet by the spirits and I do not know when they will start me but when I go I suppose your Brother Walter will go with me he spoke through me the other day he told me not to go to a certain Medium that it woul[d] be hard for me to go . . I think he is one of the Big Guns in the Spirit world.") + + + + + Skelton, Ann, to Mary Boyd. + + + (see Robb above) + + + + + Thorsen, William B. (of W.B.T. Publishing Co.), to "Mrs." Elizabeth Boyd, Freeport (1 letter) + + + 7 April 1931, Chicago (interested in several of the books on the list she sent him, including books from 1745, 1795, 1798, Laws of College of New Jersey 1794 and 1819; ?some perhaps owned by Walter M. Skelton or even by Walter Minto) + + + + + White, Marie Earhart (Mrs. Fred H. on letterhead but she lives alone in an apartment), to ("Cousin") Elizabeth Boyd (3 letters) + + + 18 November 1937, Duluth, Minnesota (their association has been sketchy, but she enjoys seeing her in Freeport; infers from what she said last summer that things were going "pretty hard with you," and offers her 2 or 3 good dresses, but does not want to offend her) + 2 May 1939, Duluth (has just sent off a box of dresses and a couple of hats by Railway Express; will be going to Butler for perhaps 2 weeks and invites her to come over if she has a chance) + 6 September 1940, Box 45, Ann Arbor, MI (White letterhead crossed out, with the preceding in pencil above; again offers her clothes, a coat, some shoes; mentions "Harry" a few times–probably her brother [who gave the earlier donation to the Clements Library], and perhaps she has moved in with him; she cleaned things out pretty thoroughly last April and mentions her new "station") + + + + +
    +
    +
    \ No newline at end of file diff --git a/sample-ead/clements/tailyour_final.xml b/sample-ead/clements/tailyour_final.xml new file mode 100755 index 0000000..3fb4c67 --- /dev/null +++ b/sample-ead/clements/tailyour_final.xml @@ -0,0 +1,5163 @@ + + + + + + umich-wcl-M-4207tai + + + Finding Aid for Tailyour Family Papers + Collection processed and finding aid created by Daniel Livesay + + + William L. Clements Library, University of Michigan + 2009 + + + + Encoded finding aid created by Emiko Hastings, February 2009 + + The finding aid is written in English + + Finding aid prepared using Describing Archives: A Content Standard (DACS) + + + + 2009-02-19 + Original encoding from Word 2000 file using Word macros and Xmetal. + + 2019-10-23added Alexander Renny Tailyour content, M-4936 and M-4938 + + + + Manuscripts DivisionWilliam L. Clements LibraryUniversity of Michigan + Finding aid forTailyour Family Papers, 1743-2003 + Finding aid created by Daniel Livesay, July 2006 + + + + + + Tailyour family + + Tailyour family papers 1743-2003 + 1780-1840 + + Tailyour family papers + + 12.75 linear feet + + wclmss002057 + The material is in English. + The collection focuses primarily on John Tailyour, a Scottish merchant who traveled to North America and Jamaica in the 1770s and 1780s to conduct business, before finally returning to his home in Scotland in 1792. His correspondence is heavily business related, centering especially on his trading of slaves, foodstuffs, and sundry goods. It also chronicles the current events in both Jamaica and the Empire. Many of Tailyour's correspondents debate the meaning and merit of the cessation of the slave trade in the late 18th century, as well as the military events of the American and Haitian revolutions, and of the Maroon rebellion of 1795. The papers also include letters between John and his family in Scotland regarding John's mixed-race Jamaican children. He sent three of his children to Britain to be educated, which caused much family concern. Tailyour's account books and financial papers relate both to his Jamaican estate and business, and to his Scottish estate, from which he received added income from rents. The accounts for this estate continue for several decades after Tailyour’s death in 1815. A number of disparate and miscellaneous letters, war records, photographs, and realia that belonged to various members of the extended Tailyour family date mainly from the late-nineteenth and early-twentieth centuries. + + + William L. Clements Library, University of Michigan + + + + + +

    2002, 2012. M-4207, M-4208, M-4936, M-4938.

    +
    + +

    The collection is open to research.

    +
    + +

    Copyright status is unknown.

    +
    + +

    Previously owned by the Tailyour family before Clements Library acquisition.

    +
    + +

    Tailyour Family Papers, William L. Clements Library, The University of Michigan

    +
    +
    + + Biography +

    John Tailyour was born to Robert and Jean (Carnegie) Tailyour on February 29, 1755, in Marykirk, Scotland. Robert sent young John to Glasgow to work as a clerk in the merchant firm of George McCall. In 1775, McCall helped John find employment in Virginia as a factor in the Glasgow-Virginia tobacco trade, but the chaos resulting from the onset of the Revolution forced John to leave for home. He returned to America two years later to trade between New York and the West Indies, but again returned to Glasgow one year later. In one last attempt to trade in the western Atlantic, Tailyour sailed for America in 1781, but was thwarted by Cornwallis' surrender at Yorktown just days before his arrival. However, Tailyour did find work supplying British prisoners of war in Pennsylvania, until American soldiers frustrated the deal. Fed up with the emerging independence of the American colonies, John left for Jamaica in 1782, encouraged by his cousin, Simon Taylor, one of the island's wealthiest inhabitants.

    +

    In Jamaica, John Tailyour quickly flourished under the supervision of his notable cousin. Originally acting as an attorney for absentee planters, John built up enough revenue to start his own merchant house, McBean, Ballantine and Taylor in 1784. He had altered the spelling of his last name to "Taylor," hoping to capitalize on his cousin's success. Tailyour's partner Peter Ballantine became one of his closest business associates and lifelong friend. The firm began trading in plantation supplies, dry goods, and various other commodities. However, the demand for slaves in the British West Indies impelled the firm to enter that trade, and they quickly became known for their efficiency in unloading and selling slaves. John's Glaswegian network helped him build a base of merchant contacts that facilitated his success. He soon became a popular advisor to other young Scottish traders, who wanted to try their fortunes in the Caribbean market.

    +

    In 1792, Tailyour reorganized his firm with James Fairlie and renamed it Taylor, Ballantine, and Fairlie. Later that year, however, John returned to Scotland for health reasons, and soon adapted to the life of an aristocrat. In 1793, he married George McCall's daughter Mary, with whom he had ten children. He repurchased his family's estate of Kirktonhill, began renting out nearby land in Marykirk, and sold off his interest in his colonial firm in 1797. His bad health continued to burden him until his death in 1815.

    +

    The topic of slavery is prevalent in this collection, as Tailyour was involved professionally and personally with slaves. During the last quarter of the eighteenth century, the greatest profits in the slave trade were made, and Tailyour's firm certainly benefited well. The era also witnessed the advent of arguments against the slave trade, and calls for its cessation. Tailyour was unapologetic in his support of the slave trade, and vehemently castigated the emerging abolitionists. All of Tailyour's contacts did likewise, because of their own involvement with the trade.

    +

    During the mid-1780s, John took Polly Graham, one of Simon Taylor's slaves, as a common-law wife. Together they had three or four children, during John's sojourn in Jamaica. In 1790, John appealed to Simon for the freedom of Polly and their children. Simon granted the request, and Tailyour sent three of them (James, John, and Catherine) to Britain to be educated, and to remove them from the prejudices of Jamaica. Two of those children, James and John, are recorded in some detail in the collection. James became a serviceman in the East India Company army, and John worked as a clerk in a London merchant house.

    +

    After John Tailyour's death, the family continued to live off the proceeds of the Kirktonhill estate, until it was sold in the early-twentieth century. A long string of Tailyour men undertook careers in the military from the mid-nineteenth to the twentieth century. Kenneth R. H. Tailyour became a high-ranking officer in the British military in the twentieth century. A number of photographs, diaries, and war records in this collection come from his family and professional experiences, as well as those of his brother, Ian Stewart, who also served in the military.

    +
    + + + The Tailyour family papers are arranged in three series: + Series I: John Tailyour (1743-1815) + Sub-series 1: Correspondence + Letters + Letterbooks + + + Sub-series 2: Business Papers + Business papers + Account books + + + + + Series II: Tailyour Estate (post-1815) + Sub-series 1: Correspondence + Sub-series 2: Business Papers + Business papers + Account books + + + Sub-series 3: Hunting Papers + + + Series III: Tailyour Family (bulk post-1815) + Correspondence + LetterbooksAccount booksMilitary + Genealogy & Probate + Printed Materials + Illustrations, Artwork, and Poetry + Photographs + Ephemera + Realia + Audio-Visual + Miscellaneous + + + + + +

    The collection has three substantial parts. The most comprehensive and cohesive section is the one concerning John Tailyour, until his death in 1815. The second part contains business papers and accounts related to the Tailyour estate. The third part is the least integrated, and consists of a variety of family papers, photographs, military memorabilia, and other miscellanea.

    +

    The Tailyour papers date from 1743 to 2003, with the majority of the collection concentrating in the period from 1780 to 1840. Within these bulk dates, are the two largest portions of the collection: the correspondence and accounts of John Tailyour until his death in 1815, and the account records of the Tailyour estate after 1815.

    +

    Seven boxes contain John Tailyour's personal and business correspondence of 3757 letters. The letters focus on Tailyour's mercantile activities in the Atlantic market, especially on the slave trade, its profitability, and the threat posed by abolitionists. Tailyour's correspondence also chronicles personal and family matters, including the education and provision for his mixed-race children from Jamaica. In addition, the collection contains four of Tailyour's letter books of 1116 copies of retained letters that cover the period from 1780 to 1810, with the exception of the years 1786-7 and 1793-1803. In these letters, Tailyour's focus is business, particularly as it relates to the slave trade, but he also includes personal messages to his friends and family.

    +

    Tailyour's business papers contain 32 loose account records, as well as five account books documenting the years between 1789-90 and 1798-1816. These primarily concern his Kingston and Scottish estates, including the expense accounts and balance sheets for each, as well as the finances of his merchant activities during the period. Finally, 38 documents of probate records for John Tailyour mainly relate to his landed estate.

    +

    The latter portion of collection within these bulk years (1815-1840) also contains correspondence and accounts, although the 228 letters are almost entirely concerned with business accounts. These focus on Tailyour's estate after his death, with John's brother Robert as the main correspondent. Additional materials include 1761 business papers that chronicle the finances of the estate, 11 account books, and 6 hunting books. The business letters and account books detail the estate's expense accounts and receipts, as well as the balances for their annual crops, salmon fishing business, and profits derived from the rents collected on their land. The hunting books contain descriptive accounts of the family's hunts and inventories of their hunting dogs.

    +

    The third, and final, part of the collection consists of Tailyour family records (bulk post-1815), including 49 letters from various family members in the late-nineteenth and early-twentieth centuries and five letterbooks, kept by Alexander Renny Tailyour and Thomas Renny Tailyour. 4 account books are also present kept by Alexander Renny Tailyour and others. Some of the records concern the First World War, including a group of prisoner-of-war records sent from Germany, and journals kept at home that detail news of the war, and daily domestic activities.

    +

    The family history documents include 64 genealogical records and 58 probate records. Many of the genealogical items are brief notes on family history, and sketches of the family tree, including a large family tree that spans several hundred years to the present day. The probate records contain one will from the late-nineteenth century, but are otherwise entirely concerned with John Tailyour's estate in the years immediately after his death.

    +

    Of the printed records, Memoirs of my Ancestors (1884), by Hardy McCall is a genealogy of the McCall family, and Tailyour's Marykirk and Kirktonhill's estates are described in two printed booklets, one of which is an advertisement for Kirktonhill's sale in the early-twentieth century. Other printed material includes 14 various newspaper clippings concerning the family over the years, and 12 miscellaneous items.

    +

    The illustrations, artwork, and poetry comprise 14 fashion engravings, 12 sailing illustrations, a picture of a hunting cabin, two silhouettes, and a royal sketch, all of which date from the early- to mid-nineteenth century. Kenneth R. H. Tailyour's sketches are represented in two sketch books created in his younger years (1917 and 1920). Loose records of poetry, as well as a book of poems from George Taylor, are in this section.

    +

    The 221 photographs are of the Tailyour family from the late-nineteenth to the twentieth century, with the majority falling in the early decades of the twentieth century. Most are portraits of the Tailyour family from the early twentieth century, particularly Kenneth R. H. Tailyour.

    +

    The 138 pieces of ephemera are, for the most part, postcards of foxhunts during the nineteenth century. These announce the almost-weekly family foxhunts during the middle years of the nineteenth century. The 19 items of realia, include Robert Taylor's quill pen from 1826.

    +

    The audio-visual portion of the collection contains three items: a compact disc with an audio interview of John Dann, Director of the Clements Library, on National Public Radio's "The Todd Mundt Show;" a compact disc with photos of the West Indies; and a collection of photographs of the Tailyour papers in their uncatalogued state, and of the festivities surrounding the acquisition of the collection.

    +

    Finally, miscellaneous material of 18 pieces includes Robert Taylor's commonplace book of short stories, letters, and poems; the catalogue of Robert Taylor's books; James Tailyour's 1771 style and form book; and a communion book.

    +
    + +

    + +

    + + Subjects: + Scots--Jamaica--History--18th century. + Scots--Jamaica--History--19th century. + Slavery--Jamaica--History. + Slave trade--Jamaica--History. + Slaves--Emancipation--Jamaica--History. + Plantation life--Jamaica--History. + Jamaica--Race relations--History. + Merchants--Scotland--History. + Scotland--Commerce--History. + United States--History--Revolution, 1775-1783. + Haiti--History--Revolution, 1791-1804. + Jamaica--History--Maroon War, 1795-1796. + Racially mixed people--Jamaica--History. + Atlantic salmon fishing--Scotland. + Fox hunting--Scotland. + Hunting dogs--Scotland. + World War, 1914-1918--Prisoners and prisons, German. + World War, 1914-1918--United States. + + + Subjects - Visual Materials: + Tailyour family. + Tailyour, Ada. + Tailyour, George H.F. + Tailyour, George Robert. + Tailyour, Ian Stewart. + Tailyour, Joan. + Tailyour, Kenneth R.H. + Tailyour, Norman Hastings. + Tailyour, William Gordon. + Fashion prints. + Wit and humor, Pictorial. + Caricatures and cartoons. + Sailing ships. + + + Contributors: + Anderson, Alex. + Anderson, John. + Ballantine, Peter. + Dick, David. + Fairlie, James. + McCall, George, d. 1810. + McCall, John. + Renny, Thomas, d. 1799. + Tailyour, Ada. + Tailyour, Alexander Renny, 1775-1849.Tailyour, George. + Tailyour, George H. F. + Tailyour, George Robert, b. 1805. + Tailyour, Ian Stewart. + Tailyour, James. + Tailyour, Joan. + Tailyour, John, 1755-1815. + Tailyour, Kenneth R. H. + Tailyour, Mrs. H. + Tailyour, Norman Hastings. + Tailyour, Robert. + Tailyour, Thomas Renny, 1812-1885.Tailyour, William Gordon. + Taylor, George. + Taylor, James, b. 1786. + Taylor, Robert. + Taylor, Simon, 1740-1815. + + + Genre Terms: + Account books. + Birth records. + Clippings (information artifacts) + Commonplace books. + Compact discs. + Death records. + Diaries. + Engravings (prints) + Genealogies. + Journals (accounts) + Letter books. + Marriage records. + Menus. + Military commissions. + Photographs. + Poetry. + Postage stamps. + Postcards. + Ration books. + Receipts (financial records) + Recipes. + Scrapbooks. + Silhouettes. + Sketchbooks. + Vouchers. + +
    + + + + John Tailyour (1743-1815) + + + + Correspondence + + + + Letters + + +

    John Tailyour received 3,757 letters. Most of them concern his business transactions in Jamaica and Scotland. His primary business partners were John and Alex Anderson, Peter Ballantine, David Dick, James Fairlie, George and John McCall, Thomas Renny, and Robert and Simon Taylor. Many of these contacts, including the Andersons, George McCall, and Robert Taylor, stayed in Britain. The Andersons took a particular interest in the slave trade. As a merchant in the American trade, George McCall often sought Tailyour's advice on the markets there, and discussed his own struggles with business after the war. He also served as one of Tailyour's early advisors, as Tailyour began his mercantile career under McCall's tutelage. However, by the 1790s, McCall was asking for Tailyour's advice, as he sought out business positions in Jamaica through John Tailyour's contacts. Eventually McCall's son John became one of Tailyour's clerks in Jamaica.

    +

    The correspondence from John McCall, and from David Dick, Tailyour's other clerk, provides some of the most complete information on Tailyour's business and family in Jamaica, after he returned to Scotland. McCall, in particular, often visited Tailyour's Jamaican wife and children, in order to send him reports. Beginning about 1800, the content of McCall's and Dick's letters centered more around their dissolving business partnership. Both men appealed to Tailyour and his cousin Simon for support and arbitration, but the issue of dissolution was settled without them.

    +

    Peter Ballantine and James Fairlie were John Tailyour's business partners in Jamaica, and both are an additional source of information on Tailyour's colonial interests after he returned to Britain. Unfortunately, their correspondence begins the year that Tailyour left for Britain (1792), so they offer little information about the founding of their firm, Taylor, Ballantine and Fairlie. However, both Ballantine and Fairlie kept Tailyour advised on the slave, sugar, and dry goods markets, while Tailyour still owned his interest in the Jamaican firm during the 1790s. They, and others, also wrote about events that occurred in the West Indies during the 1780s and 1790s, particularly as they affected the firm's business. They regularly mentioned their concern over the Revolution in St. Domingue in the 1790s, as well as the uprising of the Maroons in 1795, as both events threatened the social stability of Jamaica and its business climate. Ballantine and Fairlie discussed personal information throughout their correspondence, and, once Tailyour sold his interest in the firm, their remarks about family and personal matters became more frequent.

    +

    As evidence of the strong ties between personal networks and business, Tailyour's brother Robert and his cousin Simon intermixed both personal and business information in their letters to Tailyour. Between 1788 and 1807, both were continually concerned about the possibility of the abolition of the slave trade. Simon also relayed his business orders to Tailyour, who still carried out work for his cousin during his stay in Jamaica. Robert, with his contacts in the East Indies, provided information on the markets there. His letters contain some of the most detailed information on the issue of Tailyour's mixed race children, including descriptions of the two boys. It was Robert who found schools for the children, as well as professions. A number of letters from the two boys, James and John, are included in the collection. James's correspondence is almost entirely centered on his entrance into the East-India Company army, as well as his initial struggles on the subcontinent after his arrival. John, who worked as a clerk, wrote about his future prospects outside the counting house, and his inability to live on his budget.

    +

    Tailyour's mother, Jean, wrote several letters, expressing her concerns about her son's colonial family, and about his future plans for returning to Britain. Tailyour's extended family wrote some of the letters, including the Carnegies (his mother's family), and the Foulertons -- Tailyour's sister Catherine married a Foulerton. Tailyour's connections through the Carnegies and Foulertons, helped him to win a spot in the East India Company army for his son. In return, he helped connect several Carnegies in Jamaica, and gave financial support and advice to the Foulertons.

    +
    + + + 1 + Adam, William, 15 October 1806-1 March 1811 + + + 6 items + + + + + + Adam & Mathie, 2 November 1796 + + + 1 item + + + + + + Adams, George W., 19 January 1804 + + + 1 item + + + + + + Allan, Robert, 29 March 1800 + + + 1 item + + + + + + Anderson, Alex, 2 November 1793-7 October 1796 + + + 3 items + + + + + + Anderson, James, 19 July 1798 + + + 1 items + + + + + + Anderson, John & Alex, 28 April 1794-17 May 1798 + + + 62 items + + + + + + Anderson, John, 4 May 1793-20 August 1795 + + + 3 items + + + + + + + Arbuthnott, Ld, 6 February 1798-25 December 1810 + + + 7 items + + + + + + Arcedeckne, Chaloner, 6 February 1796 + + + 1 item + + + + + + Badenach, James, 14 November 1802 + + + 1 item + + + + + + Baillie, John, 5 May 1802-12 May 1802 + + + 2 items + + + + + + Ballantine, John, 6 July 1793-21 July 1798 + + + 12 items + + + + + + Ballantine, Peter, 16 September 1792-28 July 1805 + + + 130 + + + + + + 2Ballantine, Peter, 27 October 1805-13 May 1810 + + + 43 items + + + + + Barbour, Robert, 6 February 1796-20 February 1796 + + + 2 items + + + + + + Barnett, John, 9 December 1803 + + + 1 item + + + + + + James Bell & Co., 5 March 1810-10 March 1810 + + + 2 items + + + + + + Bingley, Thomas, 2 July 1795-7 November 1797 + + + 4 items + + + + + + Bingley, Pitt & Bingley, 26 April 1794-1 January 1796 + + + 30 items + + + + + + Bingley, Pitt & Maslen, 18 February 1795-14 December 1796 + + + 13 items + + + + + + Bisset, Andrew, 16 September 1802 + + + 1 item + + + + + + Blair, David, 30 July 1793 + + + 1 item + + + + + + Blair, Peter, 7 May 1792 + + + 1 item + + + + + + Blane, Thomas, 2 August 1793-2 August 1794 + + + 2 items + + + + + + Bowman, John, 14 April 1793-14 November 1809 + + + 11 items + + + + + + Brand, John, 11 October 1794-26 October 1815 + + + 29 items + + + + + + Brodie, 21 November 1806-15 January 1810 + + + 2 items + + + + + + Brown, David, 5 March 1792 + + + 1 item + + + + + + Brown, John, 16 February 1809-31 October 1810 + + + 4 items + + + + + + Brown, Thomas, 13 February 1795 + + + 1 item + + + + + + Brunton, Thomas, 30 December 1799-20 January 1800 + + + 3 items + + + + + + Burn, James, 30 November 1799-25 October 1800 + + + 5 items + + + + + + Burn, R, 13 August 1800 + + + 1 item + + + + + + Burn, Robert, 22 December 1799-26 December 1800 + + + 5 items + + + + + + Burnett, Al, 17 April 1797-22 November 1800 + + + 5 items + + + + + + Burnett, John, 6 January 1800-16 December 1806 + + + 59 items + + + + + + 3Burnett, Robert, 16 May 1806-23 November 1809 + + + 16 items + + + + + + Burnett, Colonel William, 7 May 1793-8 July 1811 + + + 26 items + + + + + + Camden, Calvert & King, 14 May 1795 + + + 1 item + + + + + + Campbell, John, 12 August 1791-26 July 1792 + + + 2 items + + + + + + Carnegie, Miss A, 12 March 1811 + + + 1 item + + + + + + Carnegie, Lady A.M., 28 August 1805-3 October 1811 + + + 9 items + + + + + + Carnegie, Sir David, 9 June 1794-3 March 1805 + + + 24 items + + + + + + Carnegie, George, 17 May 1790-15 December 1810 + + + 14 items + + + + + + Carnegie, James, 12 June 1800-14 December 1806 + + + 12 items + + + + + + Carnegie, Colonel John, 3 May 1805-October 1811 + + + 8 items + + + + + + Carnegie, Susan, 10 October 1809-17 December 1809 + + + 3 items + + + + + + Carnegie, Thomas, 25 March 1800 + + + 1 item + + + + + + Chandler, Thomas, 16 April 1811 + + + 1 item + + + + + + Christian, Peter, 10 January 1805-8 March 1805 + + + 3 items + + + + + + + Christie, Alexander, 12 January 1793-26 October 1793 + + + 5 items + + + + + + Clarke, Robert, 15 November 1815 + + + 1 item + + + + + + Clarke, Thomas, 17 February 1794-24 June 1794 + + + 4 items + + + + + + Collons, William, 20 January 1794-24 March 1794 + + + 3 items + + + + + + Colquhoun, Lud, 12 February 1805-19 October 1806 + + + 7 items + + + + + + Colvill, William, 17 October 1805 + + + 1 item + + + + + + Corrie, Edgar, 31 July 1793-21 August 1806 + + + 16 items + + + + + + Cratenlong, Robert, 20 December 1798 + + + 1 item + + + + + + Crombie, Alexander, 1 May 1804-27 July 1811 + + + 13 items + + + + + + 4Dauney, Al, 16 February 1806-12 August 1807 + + + 2 items + + + + + + Dick, David, 14 August 1792-14 May 1811 + + + 91 items + + + + + + Dick, Hugh, 1 April 1796 + + + 1 item + + + + + + Dick, James, 10 January 1795-10 September 1797 + + + 8 items + + + + + + Dickson & Co., 31 January 1800-29 September 1811 + + + 9 items + + + + + + Dickson, Robt., 7 May 1800-13 August 1800 + + + 3 items + + + + + + Dodds, John, 10 August 1805 + + + 1 item + + + + + + Donnell, Joseph, 7 March 1794-3 August 1806 + + + 10 items + + + + + + Duff, R.H., 22 November 1806 + + + 1 item + + + + + + Duncan, Andrew, 23 September 1810-6 August 1815 + + + 3 items + + + + + + Dunlop, George, 25 September 1807-25 May 1808 + + + 2 items + + + + + + Duthie, James, 27 June 1801 + + + 1 item + + + + + + Earle, Thomas William, 2 November 1793-3 November 1794 + + + 8 items + + + + + + Elemer, Charles, 30 January 1798 + + + 1 item + + + + + + Fairlie, James, 16 September 1792-11 March 1811 + + + 59 items + + + + + + 5Fairlie, Mungo, 26 July 1796-20 March 1809 + + + 12 items + + + + + + Farquhar, James, 26 December 1803-12 August 1811 + + + 7 items + + + + + + Farquar, William, 19 June 1793 + + + 1 item + + + + + + Fearns, James, 8 May 1795 + + + 1 item + + + + + + Fearns, Murdock, 5 December 1793-10 June 1795 + + + 3 items + + + + + + Ferguson, James, 3 January 1811 + + + 1 item + + + + + + Fisher, Ralph, 6 January 1794-20 February 1794 + + + 3 items + + + + + + Fleming, John, 28 April 1806-13 September 1810 + + + 3 items + + + + + + Fleming, William, 18 May 1804-28 October 1806 + + + 3 items + + + + + + Fletcher, Thomas, 8 July 1811 + + + 1 item + + + + + + Forbes, William, 8 June 1793-1 December 1810 + + + 6 items + + + + + + Forrester, Robert, 8 June 1801 + + + 1 item + + + + + + Foulerton, Catherine, 21 September 1795-25 September 1811 + + + 46 items + + + + + + Foulerton, George, 10 April 1804-29 May 1811 + + + 13 items + + + + + + Foulerton, John, 14 July 1793-20 July 1812 + + + 77 items + + + + + + Foulerton, Mary, 14 March 1810 + + + 1 item + + + + + Fullertoun, John Carnegie, 18 July 1803-23 November 1805 + + + 4 items + + + + + + Foulerton, Mary Carnegie, 13 January 1806-22 June 1806 + + + 11 items + + + + + + + 6 + Gadie, Theo, 13 September 1804 + + + 1 item + + + + + + Gallraith, A, 11 August 1793-18 May 1794 + + + 3 items + + + + + + Garden, Francis, 10 July 1800-October 04 1802 + + + 5 items + + + + + + Gardiner, Alex 5 September 1808 + + + 1 item + + + + + + Gerard, Gilbert, 3 October 1799-4 September 1811 + + + 3 items + + + + + + Gilchrist, Arch, 5 September 1801-7 October 1801 + + + 2 items + + + + + + Gillespie, David, 5 November 1806-25 September 1811 + + + 3 items + + + + + + Gillis, R & Co, 20 April 1800-10 May 1800 + + + 3 items + + + + + + Glennie, John, 30 April 1800 + + + 1 item + + + + + + Gordon, James Badenack, 18 September 1809 + + + 1 item + + + + + + Graham, William C., 20 June 1798 + + + 1 item + + + + + Grahame, Arch, 6 June 1796-20 April 1797 + + + 4 items + + + + + + + Grant, George, 15 May 1793 + + + 1 item + + + + + + Gray Wear and Gray, 3 February 1806-13 December 1806 + + + 2 items + + + + + + Thomas Gray lawsuit, 26 June 1809-18 June 1810 + + + 4 items + + + + + + Greenhill, Charles, 3 November 1800-21 November 1800 + + + 2 items + + + + + + Greig, John, 21 October 1802-22 March 1811 + + + 5 items + + + + + + Grunhill, Charles, 1 October 1794-18 November 1797 + + + 8 items + + + + + + Hamilton, Hugh, 14 September 1795 + + + 1 item + + + + + + Harris, Thomas, 10 April 1794 + + + 1 item + + + + + + Harrison, Joseph, 4 February 1794-26 September 1795 + + + 5 items + + + + + + Hayhurst, Poole & Felectcher, 11 April 1793 + + + 1 item + + + + + + Henry, Alex, 18 September 1806 + + + 1 item + + + + + + Hibbert & Hibbert, 7 January 1795-8 January 1796 + + + 6 items + + + + + + Hill, Dr. George, 24 June 1797-13 October 1806 + + + 23 items + + + + + + Hindy, Thomas and son, 1 June 1793-30 September 1793 + + + 4 items + + + + + + + Hodgson, Edward, 3 February 1810 + + + 1 item + + + + + + Hodgson, John, 3 March 1794 + + + 1 item + + + + + + Holcombe, Thomas, 1 September 1794-20 December 1794 + + + 3 items + + + + + + Horn, Fredrick, 2 August 1805 + + + 1 item + + + + + + + Hugham, Taylor/Ch. Clarke, 27 September 1806-16 April 1810 + + + 3 items + + + + + + Humfrey & Man, 28 September 1793 + + + 1 item + + + + + Innes, Allan, 27 January 1802 + + + 1 item + + + + + + Innes, John, 19 May 1804-24 May 1804 + + + 2 items + + + + + + Jackson, George, 20 February 1798-24 April 1798 + + + 2 items + + + + + + Jameson, John, 20 June 1793-16 November 1793 + + + 3 items + + + + + + Jameson, William, 25 June 1800 + + + 1 item + + + + + + Jolly Lawsuit, 16 May 1784-24 October 1815 + + + 30 items + + + + + + Jones, James, 29 October 1792-2 October 1794 + + + 14 items + + + + + + Jones, Thomas, August 1796-23 December 1797 + + + 3 items + + + + + + Keith, Charles, 8 June 1804-28 September 1804 + + + 2 items + + + + + + Keith, George Skene, 24 May 1810 + + + 1 item + + + + + + Keith, John, 23 June 1806 + + + 1 item + + + + + + Kelso, William, 4 June 1810 + + + 1 item + + + + + + Key, Pat, 30 January 1796-29 April 1805 + + + 5 items + + + + + + Kidd, Alexander, 10 December 1805-21 April 1807 + + + 11 items + + + + + + King, Philip, 6 June 1792-15 March 1793 + + + 2 items + + + + + + + Lamb, William, 23 July 1795-13 December 1806 + + + 8 items + + + + + + Learmonth, John & Co., 2 July 1808-21 October 1811 + + + 2 items + + + + + + Leckie, Alex, 20 October 1793-7 January 1794 + + + 3 items + + + + + + Leckie, George, 30 December 1793 + + + 1 item + + + + + + 7Leslie, James, 19 July 1806-14 October 1811 + + + 13 items + + + + + + Leyland, Thomas, 16 January 1794-11 March 1794 + + + 5 items + + + + + + Livingston, William, 28 March 1806 + + + 1 item + + + + + + Livright, David, 20 August 1794 + + + 1 item + + + + + + Low, Andrew & Alexander, 15 August 1795-21 April 1798 + + + 3 items + + + + + + Low, John, 3 April 1798-17 March 1812 + + + 60 items + + + + + + Luther, Francis, 24 December 1810 + + + 1 item + + + + + + Lyell, Charles, 12 December 1797-26 December 1797 + + + 2 items + + + + + + Lyon & Jobson, 10 June 1797 + + + 1 item + + + + + Lyon, Paul, 30 October 1815 + + + 1 item + + + + + + MacKenzie, John, 10 July 1794-10 August 1809 + + + 5 items + + + + + + MacKenzie, Ken, 29 October 1808-27 January 1813 + + + 35 items + + + + + + MacLarty, Colin, 7 December 1800-25 December 1808 + + + 4 items + + + + + + Macleod, Alex, 7 July 1804-4 December 1804 + + + 2 items + + + + + + + Marshall, Frank & Sons, 11 May 1811-24 May 1811 + + + 3 items + + + + + Martin, Robert, 19 September 1796 + + + 1 item + + + + + + + Maule, William, 18 August 1806-30 October 1806 + + + 2 items + + + + + + McCall, Arch, 16 January 1803-5 November 1811 + + + 46 items + + + + + + 8McCall, Christina, 13 January 1809-15 February 1813 + + + 15 items + + + + + + McCall, Dick & Co., 6 March 1802-1 September 1803 + + + 4 items + + + + + + McCall, George, 23 March 1792-12 July 1805 + + + 224 + + + + + + 9 + McCall, George, 25 September 1805-17 January 1810 + + + 37 + + + + + + McCall, George, Jr., 30 October 1798-1 May 1813 + + + 59 items + + + + + + McCall, James, 15 January 1800-5 September 1811 + + + 30 items + + + + + + McCall, John, 13 August 1792-11 March 1804 + + + 113 + + + + + + 10McCall, John, 26 March 1804-3 March 1809 + + + 63 + + + + + McCall, Mary, 19 June 1809-15 October 1811 + + + 4 items + + + + + + McCall, Robert, 25 March 1809 + + + 1 item + + + + + + McCall, Samuel, 29 September 1793-19 September 1806 + + + 34 items + + + + + + McCall, Samuel, Jr., 11 September 1793-3 November 1811 + + + 103 items + + + + + + 11McNair, Robert, 17 April 1804 + + + 1 item + + + + + + Mengies, John, 22 September 1800-20 October 1809 + + + 7 items + + + + + + + Middlewood, JW, 26 February 1795 + + + 1 item + + + + + + Miles, Philip John, 5 February 1793-21 February 1794 + + + 9 items + + + + + + Miles, William, 3 September 1792-23 June 1800 + + + 13 items + + + + + + Miles, William & Son, 24 September 1794-25 October 1799 + + + 28 items + + + + + Miles, William & Son (signed by James Room), 21 March 1793-5 September 1796 + + + 9 items + + + + + Mill, James, 1 February 1800-19 February 1800 + + + 2 items + + + + + + Mill, John, 19 October 1811 + + + 1 item + + + + + + Mill, Louis, 17 November 1794 + + + 1 item + + + + + + Milm, Robert, 30 December 1800 + + + 1 item + + + + + + Milne, John, 18 March 1810 + + + 1 item + + + + + + Monro, Charles, 8 December 1804-28 March 1808 + + + 4 items + + + + + + Lord Newton, 13 April 1811 + + + 1 item + + + + + + Noble, James, 9 October 1793-21 May 1795 + + + 8 items + + + + + + Oglivy, Wm, 16 December 1793 + + + 1 item + + + + + + Orr, John, 14 October 1792-13 July 1809 + + + 5 items + + + + + + Orr, Patrick, 4 April 1798-10 September 1798 + + + 3 items + + + + + + Oswald, Alexander, 24 August 1795 + + + 1 item + + + + + + Oswald, George, 19 September 1795-28 June 1808 + + + 17 items + + + + + + Paten, James, 20 January 1796-20 February 1796 + + + 2 items + + + + + + Paterson, Dundas, 8 March 1803 + + + 1 item + + + + + + Paterson, John, 4 January 1793 + + + 1 item + + + + + + Paterson, William, 25 October 1797 + + + 1 item + + + + + + Peter, John, 28 November 1809-2 January 1810 + + + 3 items + + + + + + Peters, Alexander, 5 August 1808 + + + 1 item + + + + + + Prtheroe & Claxton, 10 April 1793 + + + 1 item + + + + + + Rainford, James, 16 May 1793-16 May 1794 + + + 2 items + + + + + + Ramsay, Sir Alex, 23 January 1798-23 September 1810 + + + 5 items + + + + + + Ranken, John, 29 March 1809-15 December 1810 + + + 2 items + + + + + + Ratlif, Joseph, 24 March 1794 + + + 1 item + + + + + + Rawlinson, William, 22 August 1793 + + + 1 item + + + + + + Reid, David, 13 December 1793 + + + 1 item + + + + + + Renny, Hercules, 22 December 1805-1 March 1808 + + + 3 items + + + + + + Renny, James, 5 October 1792-18 September 1797 + + + 14 items + + + + + + Renny, Patrick, 4 March 1796 + + + 1 item + + + + + + 12Renny, Thomas, 25 February 1793-28 December 1805 + + + 247 + + + + + + 13Renny, Thomas, 1 January 1806-1 February 1809 + + + 74 + + + + + Renwick, Ann, 13 July 1807 + + + 1 items + + + + + + Renwick, John, 20 May 1803-22 August 1811 + + + 31 items + + + + + + Ritchie, Charles, 11 December 1799-11 February 1803 + + + 7 items + + + + + + Ritchie, H, 7 May 1811 + + + 1 item + + + + + + Robertson, George, 27 June 1806 + + + 1 item + + + + + + Rogers, James, 4 February 1793 + + + 1 item + + + + + + + Ross, H. Irvine, 30 December 1808 + + + 1 item + + + + + + Russell, Francis, 28 May 1797-2 February 1806 + + + 4 items + + + + + + Sargent, Chambers & Co., 9 May 1793-20 September 1794 + + + 4 items + + + + + + Scott, David, 26 July 1795 + + + 1 item + + + + + + Scott, George Robertson, 3 November 1802-22 March 1811 + + + 7 items + + + + + + Scott, John, 28 May 1793-9 July 1811 + + + 22 items + + + + + + Scott, John & Will, 17 March 1795 + + + 1 item + + + + + + Selkrig, Charles, 25 June 1802-28 September 1802 + + + 3 items + + + + + + Shaw, Campbell & Kirkpatrick, 20 August 1793 + + + 1 item + + + + + Shaw, John George, 11 April 1793-1 June 1793 + + + 4 items + + + + + + Simpson, Henry, 23 November 1809-25 October 1811 + + + 3 items + + + + + Sims, William, 23 November 1804-27 November 1804 + + + 2 items + + + + + + + Sinclair, William, 9 May 1794-20 May 1794 + + + 2 items + + + + + + Skelton, Thomas, 19 February 1794 + + + 1 item + + + + + + Skene, George, 7 February 1796-28 November 1805 + + + 3 items + + + + + + + Smart, Will, 31 January 1807 + + + 1 item + + + + + + Smith, Alex, 23 October 1803 + + + 1 item + + + + + + Smith, George, 12 January 1794-12 January 1795 + + + 3 items + + + + + + Smith, James, 2 May 1800 + + + 1 item + + + + + + Smith, William, 16 January 1806-22 December 1806 + + + 2 items + + + + + + Souter, James, 20 November 1795 + + + 1 item + + + + + + Souther, Francis, 7 July 1807 + + + 1 item + + + + + + Spiers, Peter, 22 February 1801-4 March 1802 + + + 4 items + + + + + + Spottiswood, John, 21 December 1799-25 February 1800 + + + 3 items + + + + + + Stevenson, Robert, 6 February 1811-17 November 1811 + + + 8 items + + + + + + Stewart, John, 10 May 1793-31 March 1803 + + + 7 items + + + + + + Stewart, Rob, 24 July 1800-29 November 1800 + + + 2 items + + + + + + 14Stirling, James, 6 February 1793-5 April 1793 + + + 3 items + + + + + + Strachan, Alex, 28 January 1800-15 April 1807 + + + 2 items + + + + + + Strachan, James, 12 November 1798 + + + 1 item + + + + + + Strachan, Thomas Renny, 14 September 1798-22 October 1811 + + + 46 items + + + + + + Stuart, John, 27 January 1805-10 January 1810 + + + 4 items + + + + + + Sutherland, John & William, 4 November 1795-8 August 1803 + + + 12 items + + + + + + Tailyour, Alexander Renny, 10 October 1806-2 December 1811 + + + 24 items + + + + + + Tailyour, Hercules, 20 February 1783-22 October 1811 + + + 132 items + + + + + + 15Tailyour, Jean, 19 March 1793-13 February 1794 + + + 30 items + + + + + + Tailyour, Robert, 16 February 1743 + + + 1 item + + +

    Partnership agreement with John Parminter

    +
    +
    +
    + + + Tarleton & Rigg, 28 December 1793-5 June 1794 + + + 7 items + + + + + + Taylor & Hughan, 7 June 1806-5 November 1810 + + + 5 items + + + + + Taylor, Ballantine & Fairlie, 16 September 1792-20 May 1798 + + + 100 items + + + + + + Taylor, Hughan & Co., 27 February 1806-10 July 1811 + + + 8 items + + + + + Taylor, Hughan & Renny, 28 November 1798-23 May 1805 + + + 20 items + + + + + + + Taylor, James, 16 December 1801-21 October 1810 + + + 16 items + + + + + + Taylor, John, 22 July 1809-24 September 1811 + + + 15 items + + +

    Son of John Tailyour

    +
    +
    +
    + + + Taylor, Mary, 16 December 1792-4 October 1811 + + + 5 items + + + + + + 16Taylor, Robert, 20 October 1784-27 May 1804 + + + 235 items + + + + + + + 17Taylor, Robert, 12 June 1804-17 March 1813 + + + 180 items + + + + + + Taylor, Robert, 28 November 1806 + + + 1 item + + +

    Son of John Tailyour

    +
    +
    +
    + + + Taylor, Robert, 5 January 1808-11 July 1811 + + + 3 items + + +

    Son of Robert Taylor

    +
    +
    +
    + + + Taylor, Simon, 20 May 1791-23 May 1811 + + + 107 items + + + + + + 18Taylor, Simon, 27 April 1802-13 April 1804 + + + 9 items + + +

    Miscellaneous correspondence

    +
    +
    +
    + + + Taylor, Simon R.B., 22 November 1798-6 June 1801 + + + 8 items + + + + + + Wade, Mrs. D.W., 12 December 1792-22 November 1795 + + + 3 items + + + + + + Walker, Alex, 5 October 1796-19 September 1801 + + + 2 items + + + + + + Walker, George, 16 July 1807-21 November 1811 + + + 41 items + + + + + + Walker, James, 26 December 1807-17 April 1810 + + + 3 items + + + + + + Walker, Thompson & Co., 24 February 1808-8 April 1808 + + + 3 items + + + + + + Walker, Will, 10 September 1803-15 May 1804 + + + 2 items + + + + + + Wallace, John, 24 May 1794 + + + 1 item + + + + + + Wallis, Henry, 30 April 1798 + + + 1 item + + + + + + Warwick, Anthony, 2 September 1793-19 March 1794 + + + 2 items + + + + + + Webster, James, 17 November 1796 + + + 1 item + + + + + + White, Thomas, Jr., 20 November 1798-12 June 1799 + + + 2 items + + + + + + Williamson, William, 24 July 1795 + + + 1 item + + + + + + Wilson, James, 15 December 1804 + + + 1 item + + + + + + Wood, James, 30 November 1809-30 June 1810 + + + 4 items + + + + + + Yuille, Thomas, 27 June 1800-7 July 1800 + + + 2 items + + + + + + Misc. Correspondence, 26 August 1786-12 December 1800 + + + 5 items + + +

    Authors unknown

    +
    +
    +
    +
    + + + Letterbooks + + +

    The four letterbooks that have survived contain 1,116 retained copies of Tailyour's letters. His early letter books (1781-1785) detail his initial struggles in America, when he first tried his hand at general trade, and later attempted to provide supplies for British prisoners-of-war after the American Revolution. Both attempts failed, and by 1782, he started thinking about moving to Jamaica to work with his cousin Simon Taylor. During this time, Tailyour kept in touch with his British contacts, including George McCall, the Andersons, and his brother Hercules, whom he hoped to recruit for the American trade.

    +

    John Tailyour started his career in Kingston, Jamaica, as a trader in dry goods and sundry stores, but soon added the purchase and sale of slaves to his business. Many of his letters after 1783 focus on the condition of the slave trade and the threat from abolitionists in England. Tailyour styled himself as an expert slave trader, able to sell entire ships of slaves quickly. Much of his correspondence about the trade focuses on the kinds of issues that affected its viability, including the health of the slaves, the health of the markets, the age and sex of the slaves, and the locations of sale.

    +

    Tailyour wrote many letters about the abolitionist threat as well, and the damage he anticipated from abolition. Contrary to some accounts, Tailyour's reports on the slave trade indicate that it was robust at the end of the eighteenth century. Though he foresaw a potentially large loss of business if the trade were outlawed, Tailyour did not reflect much on the social effects of this, but he did note in 1788 that "from all the best information I ever had, it clearly appears Slaves live better by far in the West Indies than in Africa, & from my own observations I can say they in general live better than the Poor of Scotland, Ireland & probably England."

    +

    Toward the end of his life, Tailyour wrote more directly about issues concerning his health, his estate in Scotland, and the business news from his correspondents.

    +
    + + + + 1Tailyour, John Letterbook, 1781-1785 + + + + + + 1781 + + + 11 items + + + + + + + 1782 + + + 35 items + + + + + + + 1783 + + + 47 items + + + + + + + 1784 + + + 22 items + + + + + + + 1785 + + + 28 items + + + + + + + 2 + Tailyour, John Letterbook, 1788-1789 + + + + + + 1788 + + + 139 items + + + + + + + 1789 + + + 207 items + + + + + + + 3 + Tailyour, John Letterbook, 1790-1792 + + + + + + 1790 + + + 184 items + + + + + + + 1791 + + + 206 items + + + + + + + 1792 + + + 194 items + + + + + + + 4 + Tailyour, John Letterbook, 1804-1810 + + + + + + 1804 + + + 1 item + + + + + + + 1805 + + + 8 items + + + + + + + 1806 + + + 5 items + + + + + + + 1807 + + + 3 items + + + + + + + 1808 + + + 5 items + + + + + + + 1809 + + + 15 items + + + + + + + 1810 + + + 6 items + + + + +
    +
    + + + Business papers + + +

    John Tailyour's business papers comprise 32 letters and his five account books. The business papers relate to his estates in Scotland, particularly Kirktonhill. Several letters between Tailyour and his good friends Thomas Renny and Peter Ballantine contain accounts and vouchers. Tailyour wrote two letters to John Baveridge. Also included are several bonds procured in Scotland and additional contracts. For accounts regarding his estate, consult series II and III.

    +

    Tailyour's account books are divided between his pre- and post-1792 finances. Those prior to 1792 focus on his Kingston estate and his accounts regarding trade and personal expenses. Those after 1792 relate to his Scottish estates, particularly Kirktonhill and Craigo. His account journal for Kirktonhill includes personal, estate, and expense accounts, as well as several bills, receipts, and accounting balances.

    +
    + + + Documents + + + + 18John Tailyour & T. Renny Accounts, 20 June 1793-1 May 1799 + + + 3 items + + + + + + John Tailyour & T. Renny Vouchers, 1806-27 December 1806 + + + 16 items + + + + + + John Tailyour & P. Ballantine Accounts, July 1797 + + + 1 item + + + + + + John Baveridge Accounts, 1797-1801 + + + 2 items + + + + + + Scotland Bonds, 14 June 1798-13 December 1806 + + + 7 items + + + + + Contracts, 1811 2 November 1808-2 December 1811 + + + 3 items + + + + + + + Account Books + + + + 5John Tailyour Account Journal, 1789 + + + + + + 6John Tailyour Account Journal, 1790 + + + + + + 7John Tailyour Account Journal, 1798-1805 + , part 1 + + + + + + + + 8John Tailyour Account Journal, 1798-1805 + , part 2 + + + + + + + 9 + John Tailyour Account Journal, Kirktonhill, 1805-1813 + + + + + + 10John Tailyour Account Journal, 1806-1816 + + + + +
    +
    + + + Tailyour Estate (Post-1815) + + + + Correspondence + + +

    The correspondence for the Tailyour estate after 1815 almost entirely concerns estate accounts, primarily regarding division and management issues immediately after Tailyour’s death in 1815. Mid-nineteenth century accounts also focus on the Tailyour family estate. Finally, a small collection of letters from Simon Taylor to his parents in the 1860s concern his travels abroad.

    +
    + + + 19John Tailyour Estate Correspondence, 16 March 1816-20 November 1819 + + + 138 items + + + + + + Jackson, John, 29 May 1820 + + + 1 item + + + +
    + + + Business Papers + + +

    The collection's business papers after 1815 contain 1716 individual items, which divide into six large sections: Tailyour family estate accounts from 1823-36; the expense accounts from 1838-43; accounts of the family's farm from 1824-27; accounts paid between 1833-39; the salmon fishing records from 1836-47; and the vouchers and factory accounts for the family's crop between 1816-1818. Additional items include a number of receipts from Robert Taylor and some accounting letters to Brand and Burnett. Most of these accounts are for the Kirktonhill and Craigo estates, and lands rented out. The salmon fishing accounts are quite extensive, detailing the family's finances in the profitable salmon industry of northeast Scotland.Ten account books concern the post-1815 estate. These provide estate and expense accounts for the Tailyour assets. The Accounts and Legal Forms book from 1820-1821 includes a number of legal opinions and expositions on accounts and cases during this period. The rent book of 1833-36 reports personal and estate finances for the land on the family's Marykirk and Garrock estates, which were located just outside the primary Kirktonhill estate. Robert Taylor's account journal centers on his mercantile accounts in Edinburgh, and also includes a waste book. Finally, Simon Taylor's account book contains his Edinburgh merchant records.

    +
    + + + Documents + + + + Accounts, Robert Taylor & John Brand, 10 June 1815-2 March 1826 + + + 31 items + + + + + + Accounts, Robert Taylor, Robert Burness & John Grieg, November 1823-16 July 1847 + + + 18 items + + + + + + Accounts, Robert Taylor & Brand Burnett, 25 February 1840-6 July 1858 + + + 12 items + + + + + + Accounts, Robert Taylor & James Birnie, 12 October 1841 + + + 1 item + + + + + + Accounts, Robert Taylor & W & J Cook, 1 October 1842-11 November1844 + + + 6 items + + + + + + Accounts, Estate Accounts, 27 June 1823-23 January 1824 + + + 11 items + + + + + + Accounts, Estate Accounts, 11 February 1824-19 June 1824 + + + 21 items + + + + + + Accounts, Estate Accounts, 30 July 1825-17 December 1825 + + + 13 items + + + + + + Accounts, Estate Accounts, 20 July 1825-17 June 1826 + + + 13 items + + + + + + Accounts, Estate Accounts, 7 March 1827-23 June 1827 + + + 10 items + + + + + + Accounts, Estate Accounts, March 1827-21 June 1828 + + + 25 items + + + + + + Accounts, Estate Accounts, 15 July 1829-19 June 1830 + + + 11 items + + + + + + Accounts, Estate Accounts, 15 July 1832-22 June 1833 + + + 22 items + + + + + + Accounts, Estate Accounts, 20 September 1833-21 June 1834 + + + 24 items + + + + + + 20Accounts, Estate Accounts, 8 July 1834-7 February 1835 + + + 19 items + + + + + + Accounts, Estate Accounts, 8 June 1835-20 June 1835 + + + 4 items + + + + + + Accounts, Expense Accounts, 20 June 1835-16 February 1836 + + + 59 items + + + + + + Accounts, Estate Accounts, 23 October 1835-28 January 1836 + + + 14 items + + + + + Accounts, Estate Accounts, 12 February 1836-18 June 1836 + + + 11 items + + + + + + Accounts, Expense Accounts, 1 January 1838-7 June 1838 + + + 70 items + + + + + + Accounts, Expense Accounts, 22 March 1838-29 June 1839 + + + 167 items + + + + + + Accounts, Expense Accounts, 29 January 1841-27 January 1842 + + + 92 items + + + + + + 21 + Accounts, Expense Accounts, 31 January 1842-14 December 1843 + + + 112 items + + + + + + Accounts, Farm Accounts, 24 May 1824-24 November 1824 + + + 32 items + + + + + + Accounts, Farm Accounts, 26 November 1824-27 May 1825 + + + 39 items + + + + + + Accounts, Farm Accounts, 30 May 1825-2 December 1825 + + + 48 items + + + + + + Accounts, Farm Accounts, 6 December 1825-27 May 1826 + + + 24 items + + + + + + Accounts, Farm Accounts, 19 November 1826-2 June 1827 + + + 34 items + + + + + + Accounts, Farm Accounts, 14 June 1827-18 December 1827 + + + 41 items + + + + + + Accounts Paid, 8 May 1833-10 June 1835 + + + 55 items + + + + + + Accounts Paid, 24 July 1835-9 December 1836 + + + 53 items + + + + + + Accounts Paid (by Wm. Kurk), 17 July 1838-18 June 1839 + + + 9 items + + + + + + Accounts Paid, 2 June 1838-3 January 1840 + + + 53 items + + + + + + 22Accounts, Salmon Fishing, 2 December 1835-10 December 1836 + + + 28 items + + + + + + Accounts, Salmon Fishing, 14 December 1836-7 March 1838 + + + 20 items + + + + + + Accounts, Salmon Fishing, 1837 + + + 1 memo book + + + + + + Accounts, Salmon Fishing, January 1838-6 October 1838 + + + 35 items + + + + + + Accounts, Salmon Fishing, 1838 + + + 1 memo book + + + + + + Accounts, Salmon Fishing, 8 October 1838-28 November 1839 + + + 20 items + + + + + + Accounts, Salmon Fishing, February 1839 + + + 1 memo book + + + + + + Accounts, Salmon Fishing, 4 January 1840-28 December 1840 + + + 17 items + + + + + + Accounts, Salmon Fishing, 1840 + + + 1 memo book + + + + + Accounts, Salmon Fishing, 8 January 1841-8 October 1841 + + + 18 items + + + + + + Accounts, Salmon Fishing, 1841 + + + 1 memo book + + +

    Kept by William Scott at Marykirk.

    +
    +
    +
    + + + Accounts, Salmon Fishing, 9 December 1841-30 December 1842 + + + 26 items + + + + + + Accounts, Salmon Fishing, 1842 + + + 1 memo book + + + + + + Accounts, Salmon Fishing, 27 December 1842-3 November 1843 + + + 15 items + + + + + + Accounts, Salmon Fishing, 1843 + + + 1 memo book + + + + + + Accounts, Salmon Fishing, 12 December 1843-16 January 1845 + + + 18 items + + + + + + Accounts, Salmon Fishing, 1844 + + + 1 memo book + + + + + + Accounts, Salmon Fishing, 17 December 1844-9 January 1846 + + + 14 items + + + + + + Accounts, Salmon Fishing, 1845 + + + 1 memo book + + + + + + Accounts, Salmon Fishing, 1846 + + + 1 memo book + + + + + + Accounts, Salmon Fishing, 16 January 1846-2 December 1846 + + + 13 items + + + + + + Accounts, Salmon Fishing, 7 December 1846-31 December 1847 + + + 19 items + + + + + + Accounts, Salmon Fishing, 1847 + + + 1 memo book + + + + + + Accounts, Brand & Burnett, 1834-1836 + + + 14 items + + + + + + Receipts, Robert Taylor, 18 May 1816-7 September 1822 + + + 101 items + + + + + + 23Vouchers & Factory Accounts, 12 April 1808-18 July 1817 + + + 90 items + + +

    1816 crop.

    +
    +
    +
    + + + Vouchers & Factory Accounts, 1809-14 November 1819 + + + 108 items + + +

    1817 crop.

    +
    +
    +
    + + + Vouchers & Factory Accounts, 1818-1819 + + + 23 items + + +

    1818 crop.

    +
    +
    +
    +
    + + + Account Books + + + + 11 + Accounts and Legal Forms, 1820-1821 + + + + + + 12Account Journal: Rent Book, 1833-1836 + + + + + + 13Simon Taylor Account Journal, 1812 + + + + + + 14Robert Taylor, Account Journal, 1812 + + + + + + 15 + Robert Taylor, Account Journal, 1821 + + + + + + + + George Taylor, Account Journal & Cash Book, 1815, 1821 + + + + + + George Taylor, Account Journal & Waste Book, 1820 + + + + + + George Taylor, Account Journal, 1821 + + + + + + George Taylor, Account Journal, Invoices & Sales, 1821 + + + + + + 16Robert Taylor, Account Journal with misc. papers, 1834-1849 + + + +
    + + + Hunting Papers + + +

    The hunting papers catalogue the various adventures and important details of the Tailyour family hunting expeditions. The journals include descriptions of the locations of the hunts, detailed stories of the hunts themselves, and ratings of performance after each event. The lists of hunting dogs provide not only the name, but also the pedigree and some description of the dogs used by the Tailyour family for their regular foxhunts.

    +
    + + + 23 + Hunting Journal, 1818, 1827 + + + + + + Hunting Journal, 1820-1826 + + + + + + Hunting Journal, 1828-1834 + + + + + + 24Taylor, R., List of Hunting Dogs, 1824-1827 + + + + + + Taylor, R. List of Hunting Dogs, Kirktonhill & Cumberland, 1826-1830 + + + + + + Taylor, R., List of Hunting Dogs, 1826-1830 + + + +
    +
    + + + Tailyour Family (bulk post-1815) + + + + Correspondence + + +

    The correspondence of the Tailyour family after 1815 is diverse. Many are letters from friends to unnamed recipients. Others are family telegraphs, which contain brief information, including traveling details, etc. The war letters are written to and from a long line of Tailyour men, who served in the military.

    +
    + + + + Copp, R., 1 February 1885 and undated + + + 3 items + + + + + + Fenn, J F, 17 December 1868 + + + 1 item + + + + + + Lear, Edward, 24 April 1885 + + + 1 item + + + + + + Poynar, L., 4 January 1864 + + + 1 item + + + + + + Ramsay, Robert, 19 March-17 June 1864 + + + 2 items + + + + + + Smith, William, 5 January 1868 + + + 1 item + + + + + + Tailyour Family telegraphs & newspaper clippings, undated + + + 5 items + + + + + + Tailyour, Hercules, 29 March 1918 + + + 1 item + + + + + + Tailyour, K. H, 4 January 1921 + + + 1 item + + + + + + Tailyour, William & S. Scott Robinson, 3-27 August 1970 + + + 1 item + + + + + + Taylor, George, 13 August 1868 + + + 1 item + + + + + + Taylor, Simon, 22 May 1861-11 February 1864 + + + 21 items + + + + + + Taylor, Simon (to Georgie), 7 January 1864 + + + 1 item + + + + + War Letters, 23 October 1819-7 October 1920 + + + 26 items + + + + + + Watson, Robert, undated + + + 1 item + + + + + + Wood, Marian, 14 May-17 July 1959 + + + 2 items + + + +
    + Letterbooks

    The five letterbooks contain correspondence predominantly written from Great Britain and mostly detail financial and businesss affairs.

    17Tailyour Letterbook, 1796-180218Alexander Renny Tailyour Letterbook, 1815-182219Alexander Renny Tailyour Letterbook, 1823-183320Alexander Renny Tailyour Letterbook, 1833-184921Thomas Renny Tailyour Letterbook, 1854-1858
    Account Books

    The Tailyour Family Account Books consist of four volumes, primarily concerning the finances of Alexander Renny Tailyour in England and Scotland.

    22Alexander Renny Tailyour Account "Journal," 1796-181623Alexander Renny Tailyour Account "Ledger," 1797-181624Alexander Renny Tailyour Account "Ledger," 1816-184825Tailyour Rent Book, 1825-1848
    + + Military + + +

    The Tailyour family had a long tradition of military service, beginning in the nineteenth century. The collection contains military commissions and promotional records of George Robert, George H. F., and Kenneth R. H. Tailyour; a number of World War I prisoner-of-war records from Germany, including the envelopes issued by the German government to the soldiers; and World War I ration books. Also included are Mrs. H. Tailyour's journals from 1914 to 1917, with notes on the letters she received, daily news reports (often in several quick sentences), stamps she collected (and their value), war news, and assorted newspaper clippings. Finally, two nineteenth-century military books pertain to naval signals and insignia patterns.

    +
    + + + Military Commissions, 11 July 1864-29 January 1925 + + + 6 items + + + + + + Military and war paraphernalia, undated + + + 22 items + + + + + + Prisoner-of-war records, WWI + + 22 items + + + + + + Ration Books, WWI + + 13 items + + + + + + Tailyour, Mrs. H. WWI Journal, August-September 1914 + + + 1 item + + + + + + Tailyour, Mrs. H. WWI Journal, October-December 1914 + + + 1 item + + + + + + Tailyour, Mrs. H. WWI Journal, 1914-1915 + + + 1 item + + + + + + Tailyour, Mrs. H. WWI Journal, 1915 + + + 1 item + + + + + + 25Tailyour, Mrs. H. WWI Journal, 1915-1916 + + + 1 item + + + + + + Tailyour, Mrs. H. WWI Journal, 1917 + + + 1 item + + + + + + Naval Code Signals, Simon Taylor, 1832 + + + 1 item + + + + + + Scrapbook with military insignia, late 1800s + + + 1 item + + + +
    + + + Genealogy and Probate + + +

    The genealogical records include birth and baptismal records, marriage and death records, and legal documents. A large family pedigree shows a very detailed and complete sketch of the Tailyour family. The genealogical notes and descriptions vary from simple sketches to notes on family history.Most of the probate records concern John Tailyour and his estates. The majority of these focus on the years immediately following his death, although there are some receipts of interest earned on the estate for several decades after his death. The will of Mary Watson, a member of one of the Tailyour family branches, is also included.

    +
    + + + Genealogy + + + + + Birth and Baptismal Records, 6 February 1851-15 October 1904 + + + 7 items + + + + + + Marriage Records, 11 May 1841-25 March 1971 + + + 5 items + + + + + + Death Records, 19 November 1921-17 May 1960 + + + 3 items + + + + + + Legal Records, 18 September 1924 + + + 1 item + + + + + + Genealogical Descriptions, undated + + + 10 items + + + + + + Genealogical Descriptions, 11 August 1870-14 October 1964 + + + 9 items + + + + + + Genealogical Notes, undated + + + 13 items + + + + + + Genealogical Tables, undated + + + 16 items + + + + + + Family Pedigree, undated + + + 1 item + + +

    In separate tube.

    +
    +
    +
    +
    + + + Probate + + + + + Taylor, John, Balmanna Estate, November 1804-26 October 1815 + + + 20 items + + + + + + Taylor, John, Estate Interest Receipts, 30 April 1806-30 April 1816 + + + 11 items + + + + + + Taylor, John, 2 September 1816-1 March 1819 + + + 7 items + + + + + + Taylor, Robert, Estate Interest Receipts, 30 April 1817-14 December 1843 + + + 29 items + + + + + + Watson, Mary, Will, 8 March 1887 + + 1 item + + + + +
    + + + Printed Materials + + +

    The printed sources in the collection are somewhat random in scope. They include a book by Hardy Bertram McCall, Memoirs of My Ancestors, about the McCall family. It is largely a biographical and genealogical sketch of the family in the nineteenth century. Two items concern the Tailyour estates: one is a description of the estates, and the other is an early-20th-century notice for the sale of Kirktonhill that includes photographs and descriptions of the estate. A number of newspaper clippings relate to the family.

    +
    + + + 26McCall, Hardy Bertram, Memoirs of My Ancestors, 1884 + + + 1 item + + + + + + Marykirk & Kirktonhill, Descriptions, 22 November 1901-11 May 1923 + + + 2 items + + + + + + Newspaper Clippings + + 14 items + + + + + + Miscellaneous + + 12 items + + + +
    + + + Illustrations, Artwork, and Poetry + + +

    Several hand-drawn illustrations from the nineteenth century include two sketches of sailing vessels; one is a royal insignia, and another is a hunting cabin in Scotland. Fourteen engravings of fashion portraits (primarily French fashion styles) are hand colored. Two silhouettes are dated 1830. The poetry consists of loose pages of poetry and George Taylor's book of poems. One book contains a detailed, hand-colored blueprint for a tower. Two sketch-books were created by Kenneth R. H. Tailyour in his younger years. The drawings include still-life and natural scenes, as well as hand-drawn comics and humorous sketches.

    +
    + + + Fashion Engravings, circa 1815-1820 + + + 14 items + + + + + + Sailing Vessel Illustrations, circa 1820 + + + 2 items + + + + + + Taylor, George, Hunting Cabin Illustration, circa 1850 + + + 1 item + + + + + + Royal Sketches, undated + + + 1 item + + + + + + Silhouettes by Edouart, 1830 + + + 2 items + + + + + + Poetry, undated + + + 7 items + + + + + + Taylor, George, Book with poetry, undated + + + 1 item + + + + + + Architectural Plans for a tower, undated + + + 1 item + + + + + + Tailyour, KRH, Sketch Book, 25 December 1917 + + + 1 item + + + + + + Tailyour, KRH, Sketch Book, January 1920 + + + 1 item + + + +
    + + + Photographs + + +

    The photographs in this collection center mainly on the Tailyour family. Though a number of still-life pictures of street-scenes and animals are represented, most photographs are portraits of individuals. A number have been marked with identifications, but most remain unmarked, and in some cases the identity cannot be determined. Kenneth R. H. Tailyour and his immediate family are the subjects of most of the photographs. Kenneth Tailyour was the father of William Tailyour, who donated this collection to the Clements Library. The family photos are of Kenneth Tailyour's siblings, Joan, Ian Stewart, William Gordon, and Norman Hastings; his parents, George Robert and Ada Tailyour; and his grandfather, George H. F. Tailyour.

    +
    + + + Buildings and Street Scenes + + 8 items + + + + + + Dogs + + 2 items + + + + + + Horses-Hunting & Sport + + 7 items + + + + + + Horses-Portraits + + 18 items + + + + + + 27Negatives + + 7 items + + + + + + Portraits + + + + Cartwright, Pam & Tailyour, Toby + + 1 item + + + + + + McEwen, Robert + + 1 item + + + + + + Scrupster, Mary Margaret + + 1 item + + + + + + Tailyour, Ada Hutchenson + + 2 items + + + + + + Tailyour, George H. F. + + 36 items + + + + + + Tailyour, Kenneth R. H. + + 18 items + + + + + + Tailyour, Robert + + 1 item + + + + + + Tailyour Family (K. R. H. and Ian Stewart) + + 6 items + + + + + + Taylor, George + + 2 items + + + + + + Taylor, Mary + + 1 item + + + + + + Taylor, Robert + + 1 item + + + + + + Unknown + + 57 items + + + + + + Unknown (Military) + + 21 items + + + + + + Tailyour, George Robert, circa 1909 + + + 1 item + + + + + + Tailyour Family (George Robert, KRH, and Ian Stewart), circa 1909 + + + 1 item + + + + + + Tailyour Family (George Robert, George H. F., Ada, KRH, and Ian Stewart), circa 1909 + + + 1 item + + + + + + Tailyour Family (George Robert, George H. F. and K. R. H.), circa 1910 + + + 1 item + + + + + + Tailyour Family (Ada, K. R. H. and George Robert), circa 1910 + + + 1 item + + + + + + Tailyour Family (K. R. H., Ian Stewart and Joan), circa 1912 + + + 2 items + + + + + + Tailyour, Ian Stewart, circa 1913 + + + 1 item + + + + + + Tailyour, Norman Hastings, circa 1915 + + + 3 items + + + + + + Tailyour Family (KRH, Ian Stewart, Joan, William Gordon and Norman Hastings), circa 1915 + + + 1 item + + + + + + Tailyour Family (Ada, K. R. H. and Norman Hastings), circa 1916 + + + 1 item + + + + + + Tailyour Family (Ada, K. R. H., Ian Stewart and William Gordon), circa 1916 + + + 4 items + + + + + + Tailyour Family (Ada and Norman Hastings), circa 1916 + + + 1 item + + + + + + Tailyour Family (George H. F., Ada, Ian Stewart, William Gordon and Norman Hastings), circa 1918 + + + 1 item + + + + + + Tailyour Family (George H. F., K. R. H., Ian Stewart, William Gordon and Norman Hastings), circa 1918 + + + 1 item + + + + + + Tailyour Family (K. R. H. & Danise), circa 1940 + + + 2 items + + + + + + Tailyour Family (K. R. H., Danise, Hazel and Ian Stewart), circa 1965 + + + 2 items + + + + + + Miscellaneous Photographs + + 5 items + + + + + + Empty Envelopes + + 3 items + + + + +
    + + + Ephemera + + +

    The ephemera include postage stamps, menus, recipes, and especially postcards. Some postcards depict royal events and daily life. Most of the postcards, however, relate to the family foxhunts in the mid-nineteenth century. Each postcard is an announcement of a foxhunt.

    +
    + + + 28 + Food, Menus, Recipes + + 6 items + + + + + + + Postcards-Assorted + + 30 items + + + + + + Postcards-Foxhunts, 8 November 1852-16 March 1869 + + + 98 items + + + +
    + + + Realia + + +

    The realia in the Tailyour Papers include Robert Taylor's quill pen, a mini dictionary, and a mathematical and counting table.

    +
    + + + 29 + Two plastic sticks + + + + + Port wine tag + + + + + Carrying sack + + + + + Rivet, circa 1939 + + + + + + "Do Not Disturb" sign + + + + + Counting Aid + + + + + Mathematics table + + + + + Mini Dictionary, circa 1850 + + + + + + Rock with attached paper + + + + + Race Club Medallion, 1932 + + + + + + Two 25 cmes from France, 1924, 1926 + + + + + + Collar with bell + + + + + Mini wooden shoe + + + + + "Madeira" stamp + + + + + "W" and "P" stamp + + + + + Small powder horn + + + + + Large powder horn + + + + + Lead ball + + + + + 30 + Taylor, Robert, Quill pen (from Account Ledger, 1826) + + +
    + + + Audiovisual Materials + + +

    The audio-visual material includes two items. One is a compact disc recording of an interview of Clements Library Director, John Dann, by Todd Mundt for "The Todd Mundt Show" on National Public Radio. In the interview, Dann describes the acquisition of the Tailyour Papers. The other is a collection of photographs showing the Tailyour Papers as they were when they arrived at the Clements Library, and some photographs of the papers in the process of being sorted. Included within this set are a number of photographs of the reception held for the acquisition of the collection, which features John Dann, William Tailyour, the donor of the collection, Clements library curators and staff, as well as University of Michigan faculty.

    +
    + + + 28 + Audio CD of John Dann on the Todd Mundt Show + + + + + Photos of collection when it arrived, and reception for William Tailyour + + + + + CD of Tailyour West Indies Photos + +
    + + + Miscellaneous + + +

    Miscellanea include a catalogue of books from the early nineteenth century; Robert Taylor's commonplace book; an address book (probably early twentieth century); and James Tailyour's Style and Form Book (1771), including stories, poems, and writing samples; and Ada Tailyour's communion book, which contains written notations.

    +
    + + + Catalogue of Robert Taylor's Books, 1817 + + + 1 item + + + + + + Robert Taylor's Commonplace Book, 1842-1843 + + + 1 item + + + + + + Miscellaneous Address Book + + 1 item + + + + + + Miscellaneous Communion Book, Ada Hutchenson Tailyour, 20 May 1896 + + + 1 item + + + + + + Miscellaneous + + 14 items + + + + + + 29 + James Tailyour's Style & Form Book, 1771 + + + + + + Penny Black Stamps + +

    Located in Accounts, Expense Accounts, 1841-1842 and Accounts, Expense Accounts, 1842-1843.

    +
    +
    +
    +
    +
    +
    + +

    + + Biographical Sketches of Noted Individuals in the Collection: + +

    +

    + Anderson, Alex +

    +

    John and Alex Anderson were both prominent merchants in London during the late-eighteenth and early-nineteenth centuries. They were John Tailyour's regular business contacts during his early years in the American colonies, and when Tailyour was in Jamaica he acted as a factor for them. The Andersons had strong ties to the Oswald family, who were also quite important in the British mercantile trade. They were particularly concerned with the slave trade during this period, owing to their involvement in that market.

    +

    + Anderson, John +

    +

    Alex Anderson's brother, and business partner.

    +

    + Arcedekne, Chaloner +

    +

    Chaloner Arcedekne was a prominent Jamaican landholder in the late-eighteenth century. Much of his time was spent away from Jamaica; he hired Simon Taylor to act as an attorney and overseer of his plantations in his absence. As an attorney to Arcedekne (and other absentee landlords), Simon advanced his fortune, allowing him to purchase his own plantations. Simon later became one of the richest men on the island. John Tailyour used his connection with his cousin Simon to extend his business network to Arcedekne. For more information on Simon Taylor and Arcedekne's relationship, see Travel, Trade and Power in the Atlantic, 1765-1884, ed. Betty Wood, New York: Cambridge University Press, 2002.

    +

    + Ballantine, Peter +

    +

    Peter Ballantine was one of John Tailyour's closest business partners and friends. Soon after arriving in Kingston, Jamaica, Tailyour entered into a business partnership with Ballantine, creating the firm of McBean, Ballantine, and Taylor in 1784. The firm traded in general plantation goods, although soon after forming, they began also buying and selling slaves. In 1792, they reorganized and added James Fairlie, changing their name to Taylor, Ballantine, and Fairlie. Much of the impetus for forming this partnership came from Tailyour's wish to leave all of his colonial business affairs in several hands, rather than continuing to trade solely in his name when he re-settled in Britain. Although Tailyour sold his interest in the firm in 1796, he maintained his correspondence with Ballantine. Tailyour even named one of his sons after Ballantine.

    +

    + Bowman, John +

    +

    John Bowman was an educator in Yorkshire, England, in the late-eighteenth and early-nineteenth centuries. When John Tailyour asked his brother Robert to find a suitable school for his son James in 1792, Robert found John Bowman at the boarding school of Byers Green Hall, in northern England. Tailyour sent James and two of his other sons, John and Simon, to Byers Green Hall.

    +

    + Brand, John +

    +

    Brand's most notable relationship to John Tailyour came with his role as Tailyour's agent in the Napier lawsuit. Napier leased part of Tailyour's lands in Scotland, and when Tailyour claimed that he had not paid his rent, he sent Napier to prison, resulting in a lawsuit in 1800. Brand later lobbied, with Tailyour, for the construction of a bridge over the North Esk river.

    +

    + Burnett, John +

    +

    John Burnett (1764?--1810) was born in Aberdeen, and served as an advocate, advocate-depute, sheriff, judge and judge-admiral in Scotland during his career. He served as officer overseeing John Tailyour's lawsuit with Napier over unpaid rents. After the lawsuit, which Tailyour lost, Burnett solicited Tailyour for the Office of Clerk and Collector in 1803. The Burnett family had long-standing, strong connections to the Tailyour family.

    +

    See also, T. F. Henderson, "Burnett, John (1764?--1810)," rev. Eric Metcalfe, in Oxford Dictionary of National Biography, ed. H. C. G. Matthew and Brian Harrison (Oxford: OUP, 2004)

    +

    + Burnett, Col. William +

    +

    Father of John Burnett, Col. William was a procurator-at-law in Aberdeen, Scotland. He had known John Tailyour and his family a long time; he shared John's interest in hunting dogs.

    +

    + Carnegie, Sir David +

    +

    Sir David Carnegie was a son of Sir John Carnegie, who was a brother of Jean Carnegie Tailyour. Davis was John Tailyour's cousin. He was instrumental in obtaining a position for John's son James in the East India Company, through his friend Lord Sidmouth, who was registered as the official recommendation in James' cadet papers.

    +

    + Dick, David +

    +

    David Dick was one of John Tailyour's clerks in Jamaica during his residency there. After Tailyour left, Dick and John McCall helped to oversee Tailyour's accounts in the firm of Taylor, Ballantine, and Fairlie. Soon after, Dick and McCall entered into their own partnership, which combined with Tailyour's old firm for a one-eight share of all non-slave business. By 1800, Dick and McCall had begun feuding. McCall accused Dick of not consulting him in the formation of the firm Dick, Orr, and Clark, and of mishandling three thousand pounds of their partnership's capital. The two asked Simon Taylor to arbitrate the case, but Simon was not interested in the affair. Ultimately, John Tailyour sided with McCall, which produced a rift in his relationship with Dick. After Tailyour left Jamaica, Dick helped to oversee and settle the affairs of Polly Graham, Tailyour's Jamaican lover and mother of his colonial children.

    +

    + Fairlie, James +

    +

    Along with Peter Ballantine, James Fairlie was one of John Tailyour's central business partners. Tailyour met Fairlie in Jamaica sometime around 1787, and began working with him in a limited capacity. On January 1, 1792, Fairlie entered into a business partnership with Tailyour and Ballantine, forming the firm Taylor, Ballantine, and Fairlie. This was a reorganized partnership of the earlier firm McBean, Ballantine, and Taylor. In 1796, Tailyour sold his interest in the partnership, but stayed in close contact with Fairlie for the rest of his life. Fairlie often updated Tailyour on the status and well-being of his colonial family after Tailyour left Jamaica in 1792.

    +

    + Foulerton, Catherine +

    +

    John Tailyour's younger sister Catherine married John Foulerton, with whom she had several children. Catherine became quite impressed with James Taylor, John's Jamaican son, when he visited in the early 1790s. She helped to win him an interview with the East India Company, through her connection with Lady Campbell, wife of General Campbell in India.

    +

    + Foulerton, John +

    +

    John Foulerton married Catherine Tailyour, John Tailyour's younger sister. Later in life he appealed to his brother-in-law, John, to help save him from financial difficulty.

    +

    + Hill, Dr. George +

    +

    George Hill (1750--1819), son of Reverend John Hill, was born in St. Andrews, Scotland. He was trained in divinity, and was introduced to a number of notable figures while studying in Edinburgh, including David Hume and Henry Dundas. In 1772, he became a professor of Greek at St. Andrews, and professor of divinity at St. Mary's College sixteen years later. Not long after, he became that college's head. Hill became a notable scholar, particularly in the realm of theological education. He helped to oversee the education of Simon, John Tailyour's son, who studied at St. Mary's. He also educated Simon Taylor's nephew, Simon Richard Brissett.

    +

    For more information, see Donald P. McCallum, "Hill, George (1750--1819)," in Oxford Dictionary of National Biography, ed. H. C. G. Matthew and Brian Harrison (Oxford: OUP, 2004))

    +

    + Low, John +

    +

    John Low often acted as John Tailyour's legal counsel after his return to Scotland. He was an agent for the sale of the Garrock estate for Tailyour. He was also Tailyour's attorney for his lawsuit against David Gray, as well as for the suit against Alexander Jolly.

    +

    + McCall, Archibald +

    +

    John Tailyour's brother-in-law, Archibald McCall, was the son of George McCall. After his sister Mary wed Tailyour, Archibald began trading with the Taylor family. In 1803, he traveled to Kingston, and conducted a fair amount of business with Simon Taylor. This relationship appears to have dissolved around 1809, after which point he moved to London to distance himself from his Jamaican concerns. One year later he returned to Glasgow.

    +

    + McCall, George +

    +

    Father of James, John, Samuel, and Mary McCall (John Tailyour's wife), George McCall was a prosperous merchant in the Glasgow-Virginia tobacco trade. He hired Tailyour early in his life to act as a factor in Virginia, but the events of the American Revolution soon forced Tailyour's return to Glasgow. Tailyour maintained a strong business relationship with McCall after he departed for Jamaica, and upon returning to Scotland in 1792, he met and married George's daughter Mary. A dispute over Virginia tobacco debts after the American Revolution hurt McCall's finances dramatically, and he sought out alternative markets elsewhere, including Bengal, where he traveled in 1800. Soon afterward he attempted to settle his tobacco finances with Tailyour, after the Americans and British came to terms on tobacco debts. George McCall died in 1810.

    +

    + McCall, James +

    +

    Son of George McCall and brother to Mary McCall, James McCall maintained a regular correspondence with Tailyour throughout his life. He did quite well, early on, in his business affairs. He traveled to Limerick, Charleston, and eventually back to Glasgow during his career.

    +

    + McCall, John +

    +

    Son of George McCall, John held a more direct business relationship to John Tailyour than his sibling James. McCall traveled to Jamaica, prior to his sister's marriage to Tailyour, in order to get into business there. He worked under the patronage of John Tailyour and George McCall's connections in the Americas. Tailyour hired the younger McCall as a clerk in his firm. Soon afterward, Tailyour returned to Scotland, leaving McCall in charge of his finances, along with his other clerk, David Dick. The two formed a partnership, which then united in a one-eighth share of non-slave commerce with Tailyour's firm Taylor, Ballantine, and Fairlie. McCall later blamed Dick for misplacing three thousand pounds of the firm's money, and for creating a new firm, Dick, Orr and Clark, without informing him. The two asked Simon Taylor to arbitrate the dispute. He initially refused, but later sided with McCall.

    +

    John McCall's letters provide some of the most thorough accounts of John Tailyour's Caribbean family. Along with David Dick, he oversaw their well-being and often conveyed their needs to Tailyour.

    +

    + McCall, Samuel, jun. +

    +

    Brother of John, James, and Mary McCall, and son to George McCall. Samuel, like his brother James, traveled throughout the Empire for his business affairs. He later moved to London to manage the affairs of his late brother, John's, estate.

    +

    + Miles, William +

    +

    One of John Tailyour's business contacts, William Miles traded in Bristol, hoping to open up greater markets in London and the West Indies. Much of his correspondence with Tailyour concerned Miles' need for better contacts in London, with whom he might be able to secure patronage for his son Philip.

    +

    + Oswald, George +

    +

    George Oswald (1735-1819) was born near Glasgow, and was the nephew and heir of the merchant Richard Oswald. He established a tobacco-trading firm named Oswald, Dennistoun & Co. In 1764, he married Margaret Smythe; they had four sons and at least five daughters. He inherited a substantial estate from his relatives, rose to prominence, and eventually won the election as the rector of Glasgow University in 1797. John Tailyour knew Oswald through his connection with the Andersons and the McCalls, and the two kept up a regular correspondence on matters both financial and personal.

    +

    For more information, see David Hancock, "Oswald, Richard (1705?--1784)," in Oxford Dictionary of National Biography, ed. H. C. G. Matthew and Brian Harrison (Oxford: OUP, 2004).

    +

    + Renny, James +

    +

    John Tailyour described James Renny as one of his closest friends. The two were related through Tailyour's uncle Hercules Tailyour. Both were from Montrose, Scotland, and both moved to Jamaica in the 1780s. Renny also traded in slaves, and purchased some for himself. After Tailyour left Jamaica, Renny often visited Tailyour's colonial family. Renny's death in 1799 came as a severe blow to Tailyour.

    +

    + Renny, Thomas +

    +

    Brother of Patrick Renny, Thomas also had strong connections to John Tailyour and the rest of his family, but he remained in Edinburgh, unlike his brother. He also maintained close ties to the Foulertons.

    +

    Tailyour, Alexander Renny

    Alexander Renny Tailyour was the first-born son of Robert Renny and Elizabeth Jean Tailyour. He was born January 31, 1775. He added the surname Tailyour upon the death of his mother in 1806. He married Elizabeth Ramsay in April 1808. He lived in Borrowfield, and he died in 1849.

    + Tailyour, Hercules +

    +

    Hercules Tailyour was the third child of Robert Tailzour and his wife Jean, who was John Tailyour's brother. When John first went to America, Hercules hoped to establish strong commercial connections through his brother that never came to fruition. Although he dabbled in the wine and wood trade, Hercules seemed to have failed to achieve the same level of success as his brothers Robert and John. Frequent illness also thwarted his plans.

    +

    + Tailyour, Jean +

    +

    Jean Tailyour was the daughter of Sir John Carnegie, Bt of Pittarrow. She married Robert Tailzour, and the two lived on his estate of Kirktonhill, just outside of Montrose, in the northeast of Scotland. They had five children: Robert, John, Hercules, Mary, and Catherine. She died in September 1807.

    +

    + Tailyour, John +

    +

    John Tailyour was a model of the entrepreneurial and peripatetic British merchant of the eighteenth century. Throughout his life, Tailyour traveled in search of opportunity. His voyages took him from his native Scotland to North America, later to the Caribbean, and finally back to Scotland again. He was enterprising in his business, but heavily dependent on his connections for success. He rejoiced at the fortune he made in the colonies, but, like many at the time, wanted to return to the British Isles. Through his travel, trade, and social ties, John Tailyour crafted himself as a major player in the Atlantic merchant community -- in the commercial networks that helped keep the British Empire running.

    +

    John Tailyour was born to Robert and Jean (nee Carnegie) Tailyour on February 29, 1755. His parents baptized John on March 20 of that year in Marykirk, Scotland -- the neighboring town to Robert's estate of Kirktonhill, Montrose. The Tailyour family had risen in importance in Scotland with the ascension of James VI to the English throne the century before. As their name implies, the family tailored clothes. They gained prominence through their connections to the royal household, whom they had the honor to dress. By the eighteenth century, the family interests had shifted to the mercantile profession. In the early 1730s, Robert's uncle, John Tailzour, sent his son Patrick from their home in Borrowfield, Forfarshire, Scotland, to Jamaica to trade. Patrick quickly amassed a sizeable income and marred Martha Taylor, daughter of Jamaican George Taylor, whose surname he assumed (changing the name from Tailyour to Taylor). In 1740, Martha and Patrick had a son they named Simon, who would later become the richest man in Jamaica. Five years later, they had a second son John, who would later spend a significant portion of Simon's fortune on the purchase of a baronetcy in England, and all of the necessaries that came with this entrance into the gentry.

    +

    When he was young, John Tailyour worked his way into the merchant community of Scotland. He began as an apprentice at a Glasgow merchant house, under the direction of George McCall. By the 1770s, the Glasgow merchants had established a relationship with Virginia tobacco growers, and McCall's house set up a branch in the Chesapeake. John traveled to the partner house in Virginia in 1775, during a period of robust agricultural output, but the events of the American Revolution soon forced him back home. He revisited North America in 1777 to help facilitate trade between the West Indies and New York, but again returned to Glasgow one year later. Throughout these trying years, John hoped that trade between Britain and America would normalize, and, for the third time, he entered America on October 19, 1781, this time to trade in the New York sugar market. Such hopes were crushed as news of Cornwallis' surrender arrived in New York just days after John's debarkation. A desperate John sought Simon's help, but the markets were not strong enough for his cousin's consignments. In a last attempt to trade in North America, John agreed to broker a trade of food and clothes to Cornwallis' surrendered army, but the Pennsylvanian government confiscated his goods before the deal could be completed. Frustrated and uncertain, John took Simon's advice, and decided to try his luck in Jamaica. In December of 1782, he bought a brig, on which he sailed to Jamaica the following spring, arriving in Kingston on March 19, 1783.

    +

    In his first few months on the island, John Tailyour depended heavily on Simon for patronage and work. He served as an attorney for several plantations in Jamaica, a lucrative job that helped Simon amass his vast fortune. Throughout his tenure on the island, John regularly sought advice and aid from Simon, who hoped to form a strong business relationship with his cousin. John quickly established himself in the Jamaican merchant community, altered the spelling of his surname to "Taylor," and formed the merchant house of McBean, Ballantine, and Taylor (which would later become the house of Taylor, Ballantine, and Fairlie) on the first day of 1784. Although the firm originally traded in plantation supplies, the partners soon began trading in slaves. As the Jamaican sugar economy grew stronger during the eighteenth century, and as the threat of the abolition of the slave trade increased in the 1780s, slave imports spiked dramatically, which helped John to build his own moderate fortune. His contacts back in Scotland, including his former employer George McCall, formed the foundation of his trade network in Jamaica, and allowed John to tap into markets throughout the British Empire.

    +

    While in Jamaica, John began a family. He took up residence with one of Simon's slaves, Polly Graham, a mixed-race woman who cared for John during his periodic illnesses in the harsh Caribbean climate. This was not uncommon among many white planters and merchants, who far outnumbered white women on the island. Although writers in both Britain and the colonies decried the practice, the demographic realities of the islands produced few alternatives. In 1786 Polly gave birth to their first son James. In the next several years, the couple would have three other children together, John, Simon and Catherine. John made no attempt to hide this mixed-race family from his friends in Jamaica, nor from his family back in Scotland, but he did not generally broadcast his liaison beyond those circles. Most information on his Jamaican family comes from the writings of John's friends and family, not John himself.

    +

    Although John Tailyour does not discuss his Jamaican family in the letters of this collection, the papers of Simon Taylor at the Institute of Commonwealth Studies in London contain several letters from John to Simon indicating his affection and devotion to his colonial family. Indeed, in 1790, John implored Simon to free Polly and their children: "Having now for several years experienced her care & attention both while I have been in sickness & health," he wrote, "I confess myself much attached to her. . . . I feel my self more anxious to obtain this Favour than I can describe." (John Tailyour to Simon Tailyour, 3 January 1790, Simon Taylor Papers, Institute of Commonwealth Studies, London). Simon readily complied and freed John's family.

    +

    Having amassed his colonial fortune, and having obtained his family's freedom, John Tailyour began considering a move to the imperial metropolis. The tropical climate never suited John, who often complained of ill health during his residency there. He also worried about his children's opportunities as mixed-race individuals in Jamaica. When the lure of Britain called John back in 1792, he returned in the hope of transforming his colonial fortune into a British landed interest. Like many of his peers, John returned to Britain in order to legitimize his status as a merchant gentleman, both in terms of reestablishing his fortune in Britain, and of starting a lawful British family, sanctioned by the Church and untouched by African blood. He left John McCall and David Dick, his former clerks, in charge of his business affairs in Jamaica, and also entrusted them with the supervision of his colonial family. At the same time, Tailyour prepared the way for his children James, John, and Catherine (there is no record of Simon after 1793), to settle with him in Britain. He left Polly in Jamaica, however, so that he could look for a British wife. John met Mary McCall, daughter of his former employer George McCall, and married her in 1793. For several years, the couple lived in Teddington, until 1797, when John purchased his family's former estate at Kirktonhill, which had been sold in 1778.

    +

    Mary and John had ten children during their marriage: Robert (born June 6, 1794), Simon (May 30, 1796), Mary (July 21, 1799), Jean (November 20, 1801), Mary Ann (March 17, 1802), George Robert (December 3, 1805), Peter, who was also known as Patrick (March 2, 1807), Christine (September 1, 1810), Catherine (January 9, 1810), and Hercules (date unknown). John used his personal contacts to open doors of opportunity for his Jamaican children. His brother Robert was the greatest aid in this endeavor. He oversaw their education in England, helped to secure a position in the East India Company army for James, the eldest, and obtained a clerical appointment for John in London.

    +

    Despite his move to the gentler English climate, John continued to suffer ill health. In 1797, just four years after returning from Jamaica, John grew tired of his colonial business and sold his interest in the partnership of Taylor, Ballantine, and Fairlie, though he maintained his contacts with his imperial network. He now began relying on the rents from his Scottish estate, rather than his more adventurous business dealings. His health continued to decline, however, and in 1812 he suffered a debilitating stroke. Three years later, he died.

    +

    For more information on the early-modern history of the Tailyour family, see Timothy White's Long Ago and Far Away: James Taylor, His Life and Music (London: Omnibus, 2001).

    +

    See Alan Karras, Sojourners in the Sun: Scottish Migrants in Jamaica and the Chesapeake (Ithaca: Cornell U Press, 1992).

    +

    + Taylor, James +

    +

    The first son of John Tailyour and Polly Graham, James Taylor was born on August 28, 1786, in Kingston, Jamaica, and baptized in that parish. He was born a slave, but his father lobbied for, and gained, his emancipation from his owner, his cousin Simon Taylor. Although his uncle, Robert Taylor, remarked on his light skin, James' mixed-race heritage precluded him from certain opportunities in Jamaica, and John Tailyour sent him to England to be educated. Robert found a school for him in Yorkshire, under the care of John Bowman, and by May 1792, James was in England for his education. There he studied the classics, mathematics, and bookkeeping.

    +

    After James had finished his education, his father wished to secure a position for him in the military. James seems to have had a good relationship with the Tailyour family in Britain, who assisted in his professional development. Through his connections to General Campbell in India and people he met during his years as a sailor in the India trade, Robert Taylor won an interview for James with the East India Company in London. In the Company's affidavit on his parentage, James had to lie about his maternal lineage. Despite his intense fear that he would be identified as a descendant of an African slave, the interview was a success. The committee passed James on April 3, 1805, and six days later, he set sail for Madras as a cadet on the Devonshire.

    +

    Soon after arriving in India, James grew homesick and pleaded with his father and uncle to arrange a return home. In particular, he lamented the foreignness of the Indians and the ruggedness of the soldier's life. Both John and Robert chastised James for his complaints, and he soon settled down. He later obtained the rank of Brigade Major while on an expedition to the Isle de France.

    +

    (See records L/MIL/9/258/96-97 and L/MIL/9/114/211 in the British Library's India Record Office).

    +

    + Taylor, John +

    +

    The second child of John Tailyour and Polly Graham, John Taylor's date of birth is unknown, although it occurred sometime between 1787 and 1790, and most likely in Kingston, Jamaica. He was born a slave, but he was manumitted in 1790 with his mother and siblings. Like his brother James, John studied under John Bowman at a school in Yorkshire. His uncle, Robert Taylor, found a clerical position for John in London, sometime before 1809. John seemed to have languished in his occupation. He hoped either to become a merchant, or to transfer into the army, like his brother James. Both John Tailyour and Robert complained about the younger John's impatience and lack of skills as a clerk, but he seems to have won their approval by 1811. Nothing else is known of John after this date.

    +

    + Taylor, Robert +

    +

    John Tailyour's brother Robert had a successful career in the India trade as a youth, before expanding his mercantile interests in the 1790s. He eventually settled in London and, in 1789, married Margaret Ann Sleigh of Imber Court, with whom he had three children: Robert, Jean, and Simon. In 1797 he and Alexander Renny founded a merchant house, which traded in a number of goods. By 1799, the firm added Thomas Hughan as a partner, and began trading in slaves as well. Robert used his brother's old firm in Kingston, now run by David Dick and John McCall, to ship slaves to Jamaica in large numbers. Simon Taylor established a strong business relationship with Robert, using him as his principal agent. Simon also stayed with Robert when he visited London. Many of Simon's suggestions for John Tailyour, in fact, were transmitted through Robert's correspondence. By the end of the first decade of the nineteenth century, Robert's business partners had either pulled out or died, and the firm was over-committed. This destroyed his relationship with Simon, who removed Robert from his will in 1812.

    +

    Robert proved extremely helpful to John Tailyour in his search for schools and occupations for his mixed-race children. His connections in the India trade, as well as those to the East India Company, helped win John's son James a cadetship in the company. He guided the younger son John into a clerical position. (See the biography of Robert Taylor in the Simon Taylor Papers, Institute of Commonwealth Studies, London )

    +

    + Taylor, Simon +

    +

    One of the most successful businessmen in late eighteenth-century Jamaica, Simon Taylor was also one of the most successful colonists in the whole of the British Empire. Born to Patrick and Margaret Taylor in Jamaica in 1740, he attended Eton before returning to Jamaica to commence his career. He built his early fortune as one of the leading plantation attorneys for the island, overseeing a number of estates for absentee landlords, most notably for Chaloner Arcedeckne. Eventually, he began buying sugar plantations of his own, and possessed as many as six different estates at one time. Early in his life, he obtained a seat in the Jamaican Assembly for Kingston, serving in that seat from 1763-81. After his move to St. Thomas Parish in the East, he served as their representative from 1784-1810. He also served, at various times, as Custos (a Justice of the Peace), Chief Justice of the Court of Common Pleas, and Lieutenant Governor of Militia for the island.

    +

    Simon maintained strong connections to his family, including his second cousins John Tailyour and Robert Taylor. Indeed, Simon convinced John to try his luck in Jamaica, and formed a business alliance with Robert toward the end of his life. Simon's brother John benefited from Simon's wealth by spending much of his brother's money on idle living and the purchase of a baronetcy. Simon never married, but had a number of illegitimate children with his slaves -- a subject confirmed by his own letters housed at the Institute of Commonwealth Studies in London, and in Lady Nugent's diary of her time in Jamaica. Without a legitimate heir, Simon's fortune passed on to his nephew Simon Richard Brissett, son of Simon's brother John, who died in 1786. The elder Simon held a strong affection for Simon R. B., but he worried, with good reason, that the fortune would be misspent. Simon died in Port Royal, Jamaica, in 1813, with an estate estimated of one million pounds sterling. Just two years later, Simon R. B. died, and the fortune that passed on to his sister Anna Susannah was eventually wasted away by her son, George Watson Taylor.

    +

    Simon had tremendous influence not only in Jamaica, but in England as well. Although he rarely traveled to Britain during his lifetime, he made a trip to England to appeal to Parliament on behalf of the West Indies regarding the abolition of the slave trade. His connections to various parliamentarians and to Admiral Horatio Nelson gave him added legitimacy. Simon had a strong aversion to abolition, though he soon tired of the debate and became resolved to it.

    +

    See R. B. Sheridan, "Simon Taylor, Sugar Tycoon of Jamaica, 1740-1813" in Agricultural History v. 45, n. 4 (October 1971): 285-96.

    +

    Maria Nugent, Lady Nugent's Journal, Jamaica One Hundred Years Ago, ed. Frank Cundall from 1839 Journal (London: Institute of Jamaica), 1934.

    +

    The Simon Taylor Papers, Institute of Commonwealth Studies, London.

    +
    +
    +
    diff --git a/sample-ead/clements/tinder_mainEAD.xml b/sample-ead/clements/tinder_mainEAD.xml new file mode 100755 index 0000000..66c36cb --- /dev/null +++ b/sample-ead/clements/tinder_mainEAD.xml @@ -0,0 +1,886 @@ + + + + + + umich-wcl-G-tind-0001 + + + Finding Aid for David V. Tinder Collection of Michigan Photography + Collection processed and finding aid created by Joel Hickey, Leslie High, Francine Keyes, Clayton Lewis, William Lewis, Jorge Lopez-McKnight, Megan Marion, Lori Mott, Eve Neiger, Marjorie O'Brien, May Oyler, Diana Sykes, James Thiry, Jayne Ptolemy, Michael Wesenberg, Louie Miller, Claire Milldrum, Morgan Fenton, 2009-2019 + + + William L. Clements Library, University of Michigan + 2014 + + + + Encoded finding aid created by Francine Keyes, Clayton Lewis, Cheney J. Schopieray, May 2014 + + The finding aid is written in English + + Finding aid prepared using Describing Archives: A Content Standard (DACS) + + + + 2014-05-21 + Original encoding from Word 2010 file using Word macros and Xmetal. + + + + + + Graphics DivisionWilliam L. Clements LibraryUniversity of Michigan + Finding aid forDavid V. Tinder Collection of Michigan Photography, circa 1845-1980 + Finding aid created byJoel Hickey, Leslie High, Clayton Lewis, William Lewis, Jorge Lopez-McKnight, Megan Marion, Lori Mott, Eve Neiger, Marjorie O'Brien, May Oyler, Diana Sykes, James Thiry, Jayne Ptolemy, Michael Wesenberg, 2009-2014 + + + + + + Tinder, David V. + + David V. Tinder Collection of Michigan Photography circa 1845-1980 + + Tinder, David V., Collection of Michigan Photography + + Approximately 113,000 photographs and 96 volumes + + wclgrfx000189 + The material is in English + + The David V. Tinder Collection of Michigan Photography consists of over 100,000 images in a variety of formats including daguerreotypes, ambrotypes, tintypes, cartes de visite, cabinet photographs, real photo postcards, stereographs, and mounted and unmounted paper prints. The collection is primarily made up of vernacular photographs of everyday life in Michigan taken by both professional and amateur photographers from the 1840s into the mid-twentieth century. In addition to supporting local history research, the collection has resources for the study of specific events and subjects. Included are images related to lumbering, mining, suburbanization; the industrialization of cities; travel and transportation; the impact of the automobile; the rise of middle-class leisure society; fashion and dress; ethnicity and race; the role of fraternal organizations in society; and the participation of photographers in business, domestic, and social life. The collection is only partially open for research. + + + William L. Clements Library, University of Michigan + + + + + +

    Clements Library Associate Board Member David B. Walters purchased the David V. Tinder Collection of Michigan Photography in 2006. The collection is being held on deposit and donated incrementally to the Clements library in honor of Harold L. Walters, University of Michigan class of 1947, Engineering, and Marilyn S. Walters, University of Michigan class of 1950, LSA. Additional materials have been donated by Elaine Cato, Larry Filipczak, Donald Harrison, Andrew and Jill Kerkhoff, Cynthia Kerkhoff, David and Laurel Kovacs, Daisy Lovain, Peter and Cynthia Motzenbecker, Keith and Angela Steffke, David E. and Joanne Tinder, and David V. Tinder.

    +

    + F-830, F-831, F-832, F-847, F-860, F-890, F-891, F-892, F-893, F-897, F-903, F-921, F-923, F-924, F-928, F-938, F-979, F-980, F-987, F-995, F-996, F-997, F-998, F-999, F-1000, F-1004, F-1005, F-1018, F-1033, F-1035, F-1045. +

    +
    + +

    Cataloging funded in part by the Michigan Photographic Historical Society. This collection has been processed according to minimal processing procedures and may be revised, expanded, or updated in the future.

    +
    + +

    The collection is only partially open for research.

    +
    + +

    Copyright status is unknown

    +
    + +

    David V. Tinder Collection of Michigan Photography, William L. Clements Library, University of Michigan. The majority portion donated by David B. Walters in honor of Harold L. Walters, UM class of 1947 and Marilyn S. Walters, UM class of 1950.

    +
    +
    + + Biography +

    David V. Tinder was born in Lima, Ohio, in 1926, and moved to Flint, Michigan, as a child. He served in the United States Navy as an electronic technician's mate until he was honorably discharged in July of 1946. Dave Tinder attended Flint Junior College for one year before transferring to the University of Michigan, which awarded him a Bachelor of Science degree in Physics in 1949.

    +

    Tinder spent the majority of his career as a project engineer and engineering manager to new product development in the Detroit area. He worked for manufacturers and automotive suppliers including Dura Corporation, McCord Corporation, and United Technologies. Tinder developed many successful products and has been issued sixteen United States patents plus a number in foreign countries. Dave Tinder retired from United Technologies, Automotive Products Division in 1990.

    +

    Tinder began collecting antiques in the late 1950s, starting with leaded glass lamps, art glass and ceramics, Art Nouveau pewter, and Japanese bronzes. Inspired by William C. Darrah's 1964 book A History of Stereographs in America and Their Collection, he amassed a large group of international photographic stereo views. By the early 1970s he began trading his international collection for Michigan stereo views and other early photographic formats related to Michigan. Eventually this would include examples of virtually every popular photographic format used by both professional and amateur photographers in the first century of photography.

    +

    Tinder became increasingly interested in the lives and careers of the photographers represented in his collection and began creating The Directory of Early Michigan Photographers. The combination of his collection and research has led to his recognition as the leading authority on the subject of early Michigan photography.

    +
    + +

    The David V. Tinder Collection of Michigan Photography is organized primarily by photographic format, and sorted either by geographic location, photographer, or subject content. Because of the size and variety of the collection, separate finding aids describe each photographic format or subsection of the collection.

    + + The collection is arranged in the following series: + Series I. Cased Images: Cased daguerreotypes, ambrotypes, and tintypes. Primarily portraiture with some special subjects. Date range from 1840s-1860s. Approx. 95 items. + Series II. Cartes de Visite/card photographs: Alphabetized by photographer with special interest subjects sorted separately. Comprised mostly of studio portraiture. Includes small cdv sized tintypes. Date range from 1860-1900. Approx. 13,000 items. + Series III. Stereographs: Sorted by county, place name, photographer and/or publisher, with some a few special sets are grouped separately. Comprised mostly of outdoor views. Date range from 1859-1920. Approximately 6500 items. NOT PRESENTLY OPEN FOR RESEARCH. + Series IV. Cabinet Photos: Alphabetized by photographer with special interest subjects sorted separately. Comprised mostly of studio portraiture. Date range from 1868-1900. Approx. 19,000 cards. + Series V. County File: Alphabetized by county, including all 83 Michigan counties. Includes both card mounted photographs, unmounted paper prints, photomechanical prints, and large tintypes. Includes views of places, events, activities, group and individual portraits. Date range 1860s-1950s. 6599 items. + Series VI. Over-Sized File: Sorted by subject. Includes large card mounted photos and unmounted paper prints. Includes views of places, events, local scenes, group portraits, Cirkut Camera panoramas. Also includes examples of fine art photography by contemporary Michigan photographers known personally to the collector, David V. Tinder. Date range 1860s-1980s. (454 items) + Series VII. Photographers File: Alphabetized by photographer. Housed in ring binders, approximately 24 binders representing over 800 photographers. Includes both original and reproduction photo portraits of photographers, views of gallery storefronts and interiors, images of photographers in the field, and advertising samples. Approx. 1,800 items. NOT PRESENTLY OPEN FOR RESEARCH. + Series VIII. Real photo postcards: Alphabetized by Michigan County, place name, and subject. All 83 Michigan counties are represented. Date range 1906-1950s. Approx. 50,000 postcards. NOT PRESENTLY OPEN FOR RESEARCH. + Series IX. Photo albums and photographically illustrated books: In chronological order. Includes both professional and amateur photographic albums, carte de visite albums, travel collections, school albums, published books, souvenir viewbooks, and pamphlets with photographic plate illustrations. Date range 1860s-1970s. 96 items. NOT PRESENTLY OPEN FOR RESEARCH. + Series X. Framed photographs: Photographic prints in vintage decorative frames or printing frames used for exposing contact prints. NOT PRESENTLY OPEN FOR RESEARCH. + Series XI. Small formats: Small mounted prints, unmounted snapshots, tintypes, miniature souvenir portfolios. NOT PRESENTLY OPEN FOR RESEARCH. + Series XII. Detroit Publishing Company: Process related examples of mass produced lithographic prints and postcard production and advertising. NOT PRESENTLY OPEN FOR RESEARCH. + Series XIII. Henry Stephens Lumber Company: Archive material including documents, photographs, and printed advertising examples. NOT PRESENTLY OPEN FOR RESEARCH. + Series XIV. Black River lumbering photographs: Mounted albumen prints circa 1880s of lumbering operations in Alcona County, Michigan. 16 items. + Series XV. C.C. Buskirk Railroad Photographs: Railroad locomotives, lumber camps, transport of logs via truck and rail in various Michigan counties all photographed by C.C Buskirk of Big Rapids. Date range 1885-1939. 7 items. + Series XVI. Owen Fawcett theatrical photos: Photographs of the British born actor, Owen Fawcett (1838-1904) and his family. 41 items. + Series XVII. Objects and realia: Small objects and realia related to Michigan photography. NOT PRESENTLY OPEN FOR RESEARCH. + Series XVIII. Glass slides and negatives: NOT PRESENTLY OPEN FOR RESEARCH + +
    + +

    The subject contents of groupings by photographic format within the Tinder collection vary, depending in part upon how each format was historically used, and the date range of that format's popularity. For example, cartes de visite and cased images are most often formal portraits, while stereographs are likely to be outdoor views. Cabinet photographs are frequently portraits, but with less formality than the cartes de visite and cased images. The postcards and the mounted prints contain very diverse subjects. The photographers' file contains many important and rare images of photographers, their galleries, promotional images, and the activities of photographers in the field. See individual series finding aids for additional detail.

    +

    Included throughout are images by both professional and amateur photographers, although those by professionals are extant in far greater numbers.

    +
    + +

    + +

    + + Subjects: + David V. Tinder Collection of Michigan Photography. + Photographs shelf. + + + Subjects - Visual Materials: + Agriculture--Michigan. + Agricultural laborers--Michigan. + Agricultural machinery & implements--Michigan. + Athletes--Michigan. + Automobile factories. + Automobile industry workers. + Automobiles--Design and construction. + Bicycles. + Boats and boating. + Business. + Camping--Michigan. + Cities & towns--Michigan. + Copper miners--Michigan. + Copper mines and mining. + Copper smelting. + Crimes--Michigan. + Cycling--Michigan. + Disasters--Michigan. + Domestic life--Michigan. + Dwellings--Michigan. + Education--Michigan. + Electric railroads--Michigan. + Farms--Michigan. + Fraternal lodges--Michigan. + Fraternal organizations--Michigan. + Industries. + Iron miners--Michigan. + Iron mines and mining. + Labor--Michigan. + Leisure--Michigan. + Loggers--Michigan. + Logging--Michigan. + Lumber camps--Michigan. + Lumbermen. + Lumbering. + Logging railroads. + Michigan. + Mineral industries. + Mining--Michigan. + Mining machinery. + Occupations--Michigan. + Photographers--Michigan. + Railroad stations--Michigan. + Railroads--Michigan. + Railroads--Design and construction. + Roads--Design and construction. + Schools--Michigan. + Steamboats--Michigan. + Storefronts--Michigan. + Stores & shops--Michigan. + Women--Societies and clubs. + + + Genre Terms: + Albumen prints. + Ambrotypes. + Cartes de visite. + Cabinet photographs. + Card photographs. + Cyanotypes. + Daguerreotypes. + Ephemera. + Gelatin silver prints. + Glass negatives. + Lantern slides. + Panoramic photographs. + Photograph albums. + Photographic postcards. + Photographic prints. + Photomechanical prints. + Portrait photographs. + Snapshots. + Stereographs. + Tintypes. + +
    + + + + David V. Tinder Collection of Michigan Photography + + + I. Cased Images. + + + + + II. Cartes de Visite/card photographs. + + + + + III. Stereographs NOT PRESENTLY OPEN FOR RESEARCH. + + + + + + IV. Cabinet Photographs + + + + + + V. County File + + + + + Alcona County + + + + + + + Alger County + + + + + + + Allegan County + + + + + + + Alpena County + + + + + + + Antrim County + + + + + + + Arenac County + + + + + + + Baraga County + + + + + + + Barry County + + + + + + + Bay County + + + + + + + Benzie County + + + + + + + Berrien County + + + + + + + Branch County + + + + + + + Calhoun County + + + + + + + Cass County + + + + + + + Charlevoix County + + + + + + + Cheboygan County + + + + + + + Chippewa County + + + + + + + Clare County + + + + + + + Clinton County + + + + + + + Crawford County + + + + + + + Delta County + + + + + + + Dickinson County + + + + + + + Eaton County + + + + + + + Emmet County + + + + + + + Genesee County + + + + + + + Gladwin County + + + + + + + Gogebic County + + + + + + + Grand Traverse County + + + + + + + Gratiot County + + + + + + + Hillsdale County + + + + + + + Houghton County + + + + + + + Huron County + + + + + + + Ingham County + + + + + + + Ionia County + + + + + + + Iosco County + + + + + + + Iron County + + + + + + + Isabella County + + + + + + + Jackson County + + + + + + + Kalamazoo County + + + + + + + Kalkaska County + + + + + + + Kent County + + + + + + + Keweenaw County + + + + + + + Lake County + + + + + + + Lapeer County + + + + + + + Leelanau County + + + + + + + Lenawee County + + + + + + + Livingston County + + + + + + + Luce County + + + + + + + Mackinac County + + + + + + + Macomb County + + + + + + + Manistee County + + + + + + + Marquette County + + + + + + + Mason County + + + + + + + Mecosta County + + + + + + + Menominee County + + + + + + + Midland County + + + + + + + Missaukee County + + + + + + + Monroe County + + + + + + + Montcalm County + + + + + + + Montmorency County + + + + + + + Muskegon County + + + + + + + Newaygo County + + + + + + + Oakland County + + + + + + + Oceana County + + + + + + + Ogemaw County + + + + + + + Ontonagon County + + + + + + + Osceola County + + + + + + + Oscoda County + + + + + + + Otsego County + + + + + + + Ottawa County + + + + + + + Presque Isle County + + + + + + + Roscommon County + + + + + + + Saginaw County + + + + + + + St. Clair County + + + + + + + St. Joseph County + + + + + + + Sanilac County + + + + + + + Schoolcraft County + + + + + + + Shiawassee County + + + + + + + Tuscola County + + + + + + + Van Buren County + + + + + + + Washtenaw County + + + + + + + Wayne County + + + + + + + Wexford County + + + + + + + VI. Over-Sized File. NOT PRESENTLY OPEN FOR RESEARCH. + + + + + VII. Photographers File. NOT PRESENTLY OPEN FOR RESEARCH. + + + + + VIII. Real photo postcards. NOT PRESENTLY OPEN FOR RESEARCH. + + + + + IX. Photo albums and photographically illustrated books. NOT PRESENTLY OPEN FOR RESEARCH. + + + + + X. Framed photographs. NOT PRESENTLY OPEN FOR RESEARCH. + + + + + XI. Small formats. NOT PRESENTLY OPEN FOR RESEARCH. + + + + + XII. Detroit Publishing Company. NOT PRESENTLY OPEN FOR RESEARCH. + + + + + XIII. Henry Stephens Lumber Company. NOT PRESENTLY OPEN FOR RESEARCH. + + + + + XIV. Black River lumbering photographs. + + + + + XV. C.C. Buskirk Railroad Pictures. NOT PRESENTLY OPEN FOR RESEARCH. + + + + + XVI. Owen Fawcett theatrical photos. + + + + + XVII. Objects and realia. NOT PRESENTLY OPEN FOR RESEARCH. + + + + + XVIII. Glass slides and negatives. NOT PRESENTLY OPEN FOR RESEARCH. + + + + + +

    Tinder, David V. Directory of Early Michigan Photographers. This reference work contains biographical information about virtually every known commercial and significant amateur photographer in the state of Michigan from the first known appearances in the 1840s into the early twentieth century.

    +

    + + + + diff --git a/sample-ead/clements/warof1812_final.xml b/sample-ead/clements/warof1812_final.xml new file mode 100755 index 0000000..660d914 --- /dev/null +++ b/sample-ead/clements/warof1812_final.xml @@ -0,0 +1,4829 @@ + + + + + umich-wcl-M-855war + + + Finding Aid for War of 1812 Collection + Collection processed and finding aid created by Christopher Tounsel, July 2010, and Philip Heslip, March 2011 + + + William L. Clements Library, University of Michigan + 2011 + + + + Encoded finding aid created by Meg Hixon, May 2011 + + The finding aid is written in English and French + + Finding aid prepared using Describing Archives: A Content Standard (DACS) + + + + 2011-05-31 + Original encoding from Word 2007 file using Word macros and Xmetal. + + + 2013-11-21 + Addition of M-4115.2 Hosea Day document dated September 1814. + + + 2013-11-26 + Addition of M-4117.4 S. Cole ALS dated June 1, 1853. + + + 2013-12-11 + Addition of M-4035 Claiborne ALS dated September 24, 1813. + + + 2014-01-17 + Addition of M-2797 Sidmouth partially printed document, September 22, 1812; M-4417 Rebecca [Eustis] ALS October 29, 1812; and M-4146.4 Clark partially printed document, December 8, 1813. + + + 2016-03-17 + Addition of M-4397.2 (Pea Patch Island map September 23-November 1814); M-4408.4 (undated, General Committee); M-4395 (2 DsS Will Williams March 26, 1814). + + + 2017-08-31 + Addition of M-4508.5 (Samuel T. Anderson letter, Jan. 17, 1814). + + 2017-09-01 + Addition of John Widney letter copies (originals in Map Division); and Benjamin Burton ALS, Oct. 14, 1814 (M-6044.3). + + 2017-09-14 + Addition of Isaac Lyman ALS, July 17, 1813 (M-4558.6); William Graves ALS, July 11, 1813 (M-4648.2); AMs ca. March 1815 (M-4912); John Schryack DS, October 5, 1812 (M-4760.5). + + 2021-08-25 + Addition of James Monroe ALS, November 17, 1826 (M-2553). + + + + + Manuscripts DivisionWilliam L. Clements LibraryUniversity of Michigan + Finding aid forWar of 1812 Collection, 1806-1860 + Finding aid created by Christopher Tounsel, July 2010, and Philip Heslip, March 2011 + + + + + + William L. Clements Library + + War of 1812 collection 1806-1860 + + War of 1812 collection + + 2.5 linear feet + + wclmss002209 + The material is in English + + The War of 1812 collection is a miscellaneous collection of approximately 300 single items relating to the War of 1812. The papers cover many aspect of the war on both the American and British sides, including naval and military operations, regimental matters, trade issues, and state and national politics relating to the war. + + + William L. Clements Library, University of Michigan + + + + + +

    + M-855 et al..

    + + +

    Cataloging funded by the National Endowment for the Humanities (NEH) and the "We the People" project.

    +
    + +

    The collection is open for research.

    +
    + +

    Copyright status is unknown

    +
    + +

    War of 1812 Collection, William L. Clements Library, The University of Michigan

    +
    +
    + + History +

    The War of 1812 was a military conflict between the United States and Great Britain that lasted from 1812 to 1815. Fighting occurred primarily along the border between the United States and Canada, along the Eastern Seaboard, and throughout the South. The British and American navies fought on the Great Lakes and on the Atlantic Ocean. The Treaty of Ghent ended the war in December 1814, and the British victory at Fort Bowyer on February 12, 1815, marked the end of the fighting.

    +
    + +

    This collection is arranged chronologically.

    +
    + +

    The War of 1812 collection (approximately 300 items) contains miscellaneous letters and documents relating to the War of 1812. The papers cover many aspects of the war on both the American and British sides, including naval and military operations, regimental matters, trade issues, and state and national politics relating to the war. Item types include letters, memoranda, reports, orders, documents, reminiscences, financial documents, and returns.

    +
    + +

    + +

    + + Subjects: + Albany (N.Y.) + Alexandria (Va.) + Amherstburg (Ont.) + Annapolis (Md.) + Attica (N.Y.) + Augusta (Me.) + Baltimore (Md.)--History--War of 1812. + Bangor (Me.) + Bermuda. + Blechertown (Mass.) + Boston (Mass.) + Buffalo (N.Y.)--History--War of 1812. + Chippewa, Battle of, Ont., 1814. + Connecticut--History--War of 1812. + Constitution (Frigate) + Delaware--History--War of 1812. + Detroit (Mich.) + Dover (Del.) + Fairfield (Ct.) + Florida--History--War of 1812. + Fort Erie (Ont.)--History--Siege, 1814. + Fredericktown (Md.) + Gloucester (R.I.) + Kentucky--History--War of 1812 Knoxville (Tenn.) + Lake Champlain, Battle of, N.Y., 1814. + Lisbon (Portugal) + London (England) + Louisiana--History--War of 1812. + Lundy's Lane, Battle of, Ont., 1814. + Maine--History--War of 1812. + Maryland--History--War of 1812. + Massachusetts--History--War of 1812. + Michigan--History--War of 1812. + Military pensions--United States--War of 1812. + Mississippi--History--War of 1812. + Montréal (Québec) + New Gloucester (Me.) + New Jersey--History--War of 1812. + New Orleans, Battle of, New Orleans, La., 1815. + New York (N.Y.)--History--War of 1812. + New York (State)--History--War of 1812. + Newport (Ky.) + Newport (R.I.) + Niagara Frontier (N.Y.)--History--War of 1812. + Northwest, Old--History--War of 1812. + Ohio--History--War of 1812. + Ontario--History--War of 1812. + Paris, France. + Pennsylvania--History--War of 1812. + Philadelphia (Pa.)--History--War of 1812. + Pittsburgh (Pa.) + Plattsburg, Battle of, Plattsburgh, N.Y., 1814. + Portland (Me.) + President (Frigate) + Quebec. + Queenston Heights, Battle of, Ont., 1812. + Sackets Harbor, Battle of, Sackets Harbor, N.Y., 1813. + Southern States--History--War of 1812. + Tennessee. + United States. Army. Infantry Regiment, 6th. + United States--Foreign relations--1812-1815. + United States--History--War of 1812. + United States--History--War of 1812--Naval operations. + United States. Navy--History--War of 1812. + United States. War Dept. + Vermont--History--War of 1812. + Washington D.C. + West Point (N.Y.) + Wyandot Indians. + + + Contributors: + Armistead, George, 1780-1818. + Bainbridge, William, 1774-1833. + Biddle, James, 1783-1848. + Biddle, Nicholas, 1786-1844. + Binney, Amos, 1778-1833. + Buchanan, James, 1791-1868. + Campbell, George W. (George Washington), 1794-1869. + Clay, Green, 1757-1826. + Dearborn, Henry, 1751-1829. + Duane, William, 1760-1835. + Eustis, William, 1753-1825. + Freeling, Francis, Sir, 1764-1836. + Gallatin, Albert, 1761-1849. + Hull, William, 1753-1825. + Izard, George, 1777-1828. + Jackson, Andrew, 1767-1845. + King, Rufus, 1755-1827. + Larned, Simon, 1753-1817. + Loring, Joseph, 1767-1838. + Macomb, Alexander, 1782-1841. + Madison, James, 1751-1836. + Meigs, Return Jonathan, 1740-1823. + Monroe, James, 1758-1831. + Pinkney, lieutenant-colonel (Ninian), 1776-1825. + Prevost, George, Sir, 1767-1816. + Rodney, C. A. (Caesar Augustus), 1772-1824. + Russell, Jonathan, 1771-1832. + Tallmadge, Benjamin, 1754-1835. + Varnum, Joseph B. (Joseph Bradley), 1751-1821. + Wadsworth, Decius, 1768-1821. + Warren, John Borlase, Sir, 1753-1822. + + + Genre Terms: + Letters (correspondence) + Memorandums. + Receipts (financial records) + +
    + + + + War of 1812 collection + + + + 1 + + + 1806 April 16 + + . Gilbert Gardner ALS to Gayer Gardner; Isle of France. + + + 5 pages + + American cargo ships have been captured by the British and condemned at Ceylon; "it has ever appeared to me that there is a want of attention in the government of the United States towards the Citizens who unfortunately are obliged to follow the seas…they are the only Class of Citizens who are any ways Exposed to personal Insults and it appears to me that they merit a greater share of Government Protection." + + + + + + + 1806 July 14 + + . Henry Dearborn ALS to Barnabas Bidwell; Washington, [D.C.]. + + + 2 pages + + Regarding an incident on a schooner; he is not relying on information that he's heard concerning "the prisoners said to have been taken in the Schooners," and will wait on more authentic information. He also congratulates Bidwell, a U.S. Representative from Massachusetts, "on the improved state of the public affairs of Massachusetts." + + + + + + + [1806 to 1812?] + + . Nicholas Biddle AMS. + + + 1 page + + "On the Advantages of a Navy." Provides an argument on the necessity of a standing army, including the need "to protect our trade as ourselves." A navy is most needed because "we are threatened with invasion and annihilation from a country who are far superior to us in number and a navy is the only means of protecting our coast from them. A commercial country cannot subsist without a navy..." + + + + + + + 1807 June 14 + + . Tench Coxe ALS to Caesar Augustus Rodney; Philadelphia, Pennsylvania. + + + 3 pages + + Concerning the situation with Britain, which "requires so vigilant and so close an attention…" + + + + + + + 1807 June 27 + + . Christopher Fry ALS to Jacob Little; Norfolk, [Virginia]. + + + 1 page + + He communicates that a captain wants "his pilot…to Leave City Point with the Alfred…he shall want More Cash, & a Cable, which I shall have Made for him." He also mentions the impact of attack on the Chesapeake; it has "Left Business at a stand, Supplies to the British Ships are stopped, and we are now waiting to know what Steps will be taken by our Government, tho all is adgitation." + + + + + + + 1807 July 7 + + . Henry Burbeck LS to Constant Freeman; Washington, [D.C.]. + + + 2 pages + + Fitting the garrison; "The present situation of affairs renders it highly necessary…to put your Garrison in the best posible state of defense…" Mentions outfitting carriages, rammers, and cannon. "And as your own reputation and that of the Regiment depends on your efforts, I feel partcularly satisfied that with the means you posess, that nothing will be wanting on your part to be prepared whenever the crisis of defending the American Flagg shall arrive." + + + + + + + 1807 November 24 + + . William Bainbridge ALS to Charles W. Goldsborough; Philadelphia, [Pennsylvania]. + + + 3 pages + + Ready for service if the country goes to war; "I feel very anxious for the arrival of the Revenge, in order for the Government to ascertain wither Peace or War is to be the fate of our Country…in the event of the latter I trust they [his services] would be found usefull to our Country & honourable to myself." Discussing issues concerning pay. + + + + + + + 1808 February 6 + + . Peter DeWitt ALS to John DeWitt; New York. + + + 3 pages + + Letter to his father regarding hardships caused by the embargo; "our national prospects are daily becoming more and more gloomy…mercantile business more and more declining." He fears the consequences of war with England; "a war with england is as confidently apprehended as ever peace was desired--and that England will not permit us to trade with either of the other European Countries is not pretended to be doubted." Discusses matters relating to his father's western lands. + + + + + + + 1808 March 8 + + . Peter DeWitt ALS to John DeWitt; New York. + + + 6 pages + + Hardships caused by the embargo; he has heard that the embrago may not be taken off "in this city…less than one or two years." The American government will have it so that the "the people of this Country shall suffer all the disadvantages of War & not reap...the advantages of peace." Mentions the specifics of a duel, and feels that it is advantageous to settle in the Ohio country. + + + + + + + 1808 April 19 + + . Henry Dearborn LS to Israel Smith; War Department. + + + 2 pages + + Regarding a violation of embargo in Vermont; "you will perceive that a violation of the Embargo laws, is contemplated on the borders of the lake, within the State of Vermont...I am directed by the President of the United States...to request that you will afford such further assistance by the Militia...for suppressing any unlawful combination with an intention, of violating the laws of the United States, by opposing those laying an Embargo, passed in the present of Congress." + + + + + + + 1808 October 20 + + . Henry Dearborn ALS to Henry Alexander Scammell Dearborn; Washington, [D.C.]. + + + 4 pages + + Discusses Madison’s election and relations with Britain; "I preceive there will be no other Alternative but War, or a continuance of the Embargo, with such additional provisions for a strict & ridged execution of it…the honor and character of the Nation must forbid any relaxations in our measures until the European Nations shall be disposed to respect our sacred rights." + + + + + + + 1808 November 13 + + . William Eustis ALS to [Richard Cutts]; Boston, [Massachusetts]. + + + 1 page + + Regarding the benefits of employing seamen during embargo; "It is intimated to me that there is a probability of the Embargo's being continued. If that should be the case is it not desirable that the seamen...should be engaged in the Service." Speaks on the benefits of employing these men, including the fact that they will not be idle, which contributes to riots in seaport towns. The "Govr. continues & is able to do business.--it is said he will hold out & die with honor" [referring to James Sullivan, who would die on December 10, 1808]. + + + + + + + 1808 December 9 + + . John Howe ALS to Sir Francis Freeling; Washington. + + + 8 pages + + Regarding the political situation and the lack of an American Navy; "I believe Mr. Madison is at present convinced that if he plunges America into a War with England, it will involve the Country in such a scene of espence and misery, or will injure eventually his popularity, and make his administration painful in the extreme." He states that a war with France might be preferable because New England is hostile to Madison "and who have no objection to a War with France." + + + + + + + 1808 December 20 + + . Ezekiel Bacon ALS to A. Bishop; Washington, [D.C.]. + + + 3 pages + + Some are looking to war; he encloses a report from Mr. [Albert] Gallatin, "I think his views against to War…" + + + + + + + 1809 February 4 + + . William Bainbridge ALS to James Biddle; Washington, [D.C.]. + + + 1 page + + Regarding naval matters; appointment to second Lieutenant and reassignment to a new ship. Captain [Isaac] Hull has taken command of the Chesapeake. Bainbridge sends a message to Biddle's father. + + + + + + + 1809 February 13 + + . Amos A. Evans ALS to John Evans and Mary Alexander Evans; New Orleans, [Louisiana]. + + + 4 pages + + Letter from son serving on a ship; "I have not heard a word from Elkton [Maryland] since my departure." Gives a description of the houses and buildings around New Orleans; "they remind me of old castles I have read of in novels." Mentions the commercial importance of the city. + + + + + + + 1809 June 15 + + . Amos A. Evans ALS to John Evans and Mary [Alexander] Evans; New Orleans, [Louisiana]. + + + 3 pages + + Letter from son serving on a ship, mentions the embargo; "the news of the removal of the Embargo hindered it from being a proftable one…the situation of many Americans as well as Spaniards & French in the Floridas was truly wretched." Discusses matters relating to the United States' differences with Great Britain and issues regarding search and imprisonment. + + + + + + + 1810 February 24 + + . [Unknown writer] Ms. + + + 13 pages + + Proceedings and condemnation of ship Aristides (in French). + + + + + + + 1810 July 18 and 1810 July 19 + + . Joseph A. Ellery DS to William Dolliver, Jr.; Lisbon. + + + 3 pages + + Document sworn before William Jarvis, American Consul to Lisbon, testifying to William Dolliver being an American citizen. + + + + + + + 1811 February 18 + + . M.F.F. Berkeley, Baron Fitzhardinge LS to George Berkeley; Tagus River. + + + 2 pages + + Regarding impressment of four men; "The Men names in the Margin, claimed by Americans by Mr Green, Deputy Consul of the United States of America, are now on board His Majesty's Ship under my Command." One of the men was "impressed from a Portuguese Merchant Ship, not being on her Muster Rolls; the two latter were sent on board...from His Majesty's Ship...and have American Protections." + + + + + + + After 1811 May 17 + + . John O. Creighton AD. + + + 3 pages + + Regarding the Little Belt Affair, including eyewitness accounts of the skirmish between an American frigate and British sloop off the coast of North Carolina (with a six-page contemporary folio copy). + + + + + + + 1811 May 31 to 1811 June 30 + + . United States Army Sixth Infantry Regiment. Pr. Document. + + + 2 pages + + Muster Roll of Capt. George Nelson's company in the United States Sixth Infantry Regiment. + + + + + + + 1811 June 29 + + . Sat. Clark ALS to Isaac Clark; Annapolis, [Maryland]. + + + 2 pages + + Regarding the Little Belt Incident; "You have probably seen Capt. Hinghams Letters giving account of the affair of the Little Belt which is totally different from that of Comod. Rogers. It is anxiously believed here that the affair will result in War." + + + + + + + 1811 December 16 + + . Alexander Macomb ALS to Samuel Champlain; Fredericktown, Maryland. + + + 4 pages + + Regarding difficulty of getting promotion in the army; "The Doctors letter I enclosed…with Such remarks as were I deemed proper & I trust according with his wished to procure promotion in the present army." He senses "much difficulty as every one seems jealous of his own particular rights." He mentions that Congress is talking about raising 25,000 additional troops. + + + + + + + 1812 January 11 + + . Hughes and Dean Pr. letter to Brown and Ives; Liverpool, [England]. + + + 3 pages + + Regarding tensions between U.S. and Britain and anticipating the U.S. declaration of war. Discuses matters pertaining to cotton, turpentine, wheat, flour, and other crops. Includes a table with information pertaining to the stock and prices of American, Russian, and West Indian produce. + + + + + + + 1812 January 16 + + . Benjamin Tallmadge ALS; Washington, [D.C.]. + + + 4 pages + + Regarding the sentiment in Congress for war against Britain; "The Great Question now before us is the War with G. Britain. If we could draw any Safe Conclusions from the noisy, blurbering Speeches of our Kentucky & Tenesee Brethren…we might as well Say that war...[might] be the result." [presumably referencing War Hawks like Henry Clay and Felix Grundy.] He also mentions those opposed to a potential war on the facts that it would take too many men and too much money. + + + + + + + 1812 February 26 + + . Jonathan Russell ALS to Joel Barlow; London, [England]. + + + 3 pages + + News from America makes him suspect hostilities; "The information received from America gives reason to expect measures of hostility towards this country - altho it is not here believed that any such measures will be adopted…we are considered incapable of making any very formidable effort..." He makes brief reference to circumstances surrounding the British Regency; "The famous epoch of the cessation of the restrictions on the Regent [George IV] has passed..." + + + + + + + 1812 March 24 + + . Jonathan Russell ALS to Joel Barlow; London, [England]. + + + 4 pages + + Expresses the inability to having a philosophicae apparatus shipped from America because of embargo; he had requested of [Isaac] Hull's officers that sent boxes to the United States aboard the USS Constitution, which Hull refused because it was merchandize. He has made further arrangements regarding his items. + + + + + + + 1812 May 3 + + . William Eustis ALS; War Department. + + + 3 pages + + Building up of Army, including matters pertaining to stores and barracks. "The whole labour of this Department is still incumbent on the Secretary of War…Congress have passed an act authorising two additional Secretaries, assistant I should have said: and I will thank you to name two or three in whom you should have confidence." + + + + + + + 1812 June 10 + + . Jonathan Snowden ALS to Joseph Bloomfield; West Point, [New York]. + + + 1 page + + Regarding the amount of arms ready for service; "at this store there is only 379 stand of French arms…that is fit for service and they have been used formerly Should you think of calling for them, it will be necessary that you obtain an order for that purpose from the secretary of war to inable me to deliver them..." + + + + + + + 1812 June 15 + + . United States ADS to William Kelley; Urbana, [Ohio]. + + + 1 page + + Receipt from U.S. government of $30 payment for "one Pack Horse for Ohio Volunteers under command of Brigr. Genl. Wm Hull…Recd. of James Taylor," a United States agent. + + + + + + + 1812 June 26 + + . William Eustis ALS to Col. Worthington. + + + 1 page + + Appointment of general Indian Council at Brownstown, expects Tecumseh and other chiefs to attend; "By a Letter from General Hull it appears that he has appointed a general Indian Council at Brownstown at which he expects Tecumseh & the other chiefs from the Wabash & the Delawares...The council to be held in 40 Days from June 9th the date of the Letter." + + + + + 2 + + + 1812 July 5 + + . George Cranfield Berkeley LS to John Jeffery; Lisbon, Portugal. + + + 2 pages + + Thanking the merchants of the British Factory at Lisbon for an address given to him when he left. He references his retirement as Lord High Admiral of the Portuguese Navy and public life; "my regret...of departing from this Station, is considerably lessened by a knowledge of the Character of my successor, being confident you will find in his measures an Equal attention to the public Interests...I beg leave to acknowledge my Thanks for the honor, you have conferr'd upon me." + + + + + + + 1812 July 8 + + . John Hubbard ALS to Ebenezer Huntington; Hamden, [Connecticut]. + + + 3 pages + + Description of uniforms for Connecticut Militia. + + + + + + + 1812 July 9 + + . [William] Hull ALS to James Taylor; Detroit, [Michigan]. + + + 2 pages + + Request for pack horses to be transported to John H. Piatt. At the bottom Piatt writes that he "Received of James Taylor…forty pack Horses Detroit July 10th 1812 Seventy bags. thirty five pack Saddles…" + + + + + + + 1812 August 1 + + . [Henry] Bathurst LS to The Officer administering the Government New Brunswick [George Stracey Smyth]; Downing Street, [London, England]. + + + 2 pages + + Circular that all American ships are to be detained; "I transmit to you...a Copy of an Order of His Royal Highness the Prince Regent…directing that all Ships and Vessels belonging to the United States of America...within or which may hereafter arrive within the limits of any of the Ports, Harbours or Roads of any of His Majesty's Forts or Settlements abroad, should be detained...with all Persons and Effects on board the said Ships and Vessels." + + + + + + + 1812 August 16 - 1812 September 1 + + . Northwest Army DS copy, signed. + + + 8 pages + + [Michigan] Territory. 8 pages. Protest against Britain’s retention of private property taken at the surrender of Detroit, with list of property in question. Includes protests by James Taylor and James Findley. + + + + + + + 1812 August 27 + + . Nathan Sage DS. + + + 2 pages + + Certified account of Peter Buell Porter, Quartermaster General of New York State, with Henry Taft for $6. The receipt is signed by Taft. + + + + + + + 1812 August 28 + + . Henry B. Armstrong ALS to Cushion; Greenbush. + + + 1 page + + Forwarding him a commission; "I seize this opportunity of forwarding to you a Commission which I received June the 30th 1812." + + + + + + + 1812 August 30 + + . James Monroe ALS; Washington, [D.C.]. + + + 1 page + + Discusses an appointment and mentions that "disaster at Detroit." This compels him to write about the "the marshal character which must be removed." + + + + + + + 1812 August 31 + + . John Hale ALS to Sir William Amherst; Quebec. + + + 5 pages + + Report on Hull's surrender at Detroit and a map of Detroit + + + + + + + 1812 September 4 + + . Frederick Spofford ALS to Charles Spofford; Deer Isle, [Maine]. + + + 1 page + + Discusses trade conditions in war time and various voyages to Boston and Lisbon. "The War measures of our Government have almost put a stop to business in this part of the country, it is almost impossible to collect debts or do any business to advantage…it will wax worse instead of better..." + + + + + + + 1812 September 5 + + . Henry Dearborn ALS to William Eustis; Greenbush. + + + 1 page + + Discusses the return of Captain Pickney from Montreal; "at Montreal he was allowed to pass freely about…Capt McClary accompanied him from Burlington to Montreal." Mentions Governor-General Prevost, Detroit, "and the prospect of hostilities being commenced on the frontier." + + + + + + + 1812 September 9 + + . . R[eturn] J[onathan] Meigs ALS to Fort Manary Commanding Officer; Urbana, [Ohio]. + + + 1 page + + Governor Meigs directs rations to be issued to families who fled River Raisin; "You will see that Rations are issued to Andrew Race's family & the other families in Lick have fled from River Raisin…" + + + + + + + [1812] September 10 + + . Return Jonathan Meigs ALS to Col. [Alexander] Enos; Urbana, [Ohio]. + + + 2 pages + + Discusses the movements of General Harrison and stationing of troops; "Gen: Harrison is gone to Fort Wayne with 3,000 Troops chiefly Kentuckians--2,000 Kentuckians are near Dayton-I have here 1,000 Men…waiting for Instructions from the Sec at War." He mentions Col. Enos's possible command on the frontiers. + + + + + + + 1812 September 12 + + . Alexander J. Dallas ALS to John Steele. + + + 2 pages + + Pertaining to goods seized by the government under the Non Importation Acts. All goods that had been imported from Britain subsequent to the revocation of the Orders in Council can not be seized and must be returned; "all goods, imported in any vessel, sailing from England, subsequent to the alledged revocation of the Orders in Council...shall be restored to the respective claimants, upon Bond, in the manner prescribed, by law for cases of forfeiture under the Revenue system." + + + + + + + 1812 September 12 + + . John Hale ALS to Sir William Amherst; Quebec. + + + 2 pages + + Report on Hull's surrender at Detroit. + + + + + + + 1812 September 12 to 1812 October 14 + + . United States Army 7 DsS. + + + 2 pages + + Receipts for horses purchased from J. Witmore & Company. + + + + + + + 1812 September 15 + + . Gilbert Gardner ALS to Gayer Gardner; Chesapeake Bay. + + + 3 pages + + Embarking on commercial voyage despite risks of war time; he is bound for Spain. Discusses commercial matters and real estate prospects. + + + + + + + 1812 September 18 + + . Amos Stoddard ALS to James R. Butler; Pittsburgh, [Pennsylvania]. + + + 1 page + + Orders to march to Northwest Army; "It is the direction of the Secy of war, that you march your company to the northwestern Army. You will accordingly proceed with all convenient dispatch- and on your arrival report yourself to the Officer commanding that army." + + + + + + + 1812 September 19 + + . Arad Joy ALS to Ira Joy; Camp at Manchester, near Niagara Falls, [New York]. + + + 4 pages + + Describes living conditions in camp; "I am in Good Health our Regiment remain in Good Health not one yet So Sick as to go to the hospital…" Comments on life as paymaster and the routine of closing down camp at night. + + + + + + + 1812 September 22 + + . [Henry Addington, Viscount] Sidmouth Partially Printed Document to Hopkins, Gray, & Glover; Whitehall, [London, England]. + + + 1 page + + "To all Commanders of His Majesty’s Ships of War and Privateers." Granting Hopkins, Gray, & Glover a license for their unarmed vessel to bring imported American grain to Cadiz. License issued according to the 1808 "Act to permit Goods secured in Warehouses in the Port of London to be removed to the Out Ports for Exportation to any Part of Europe…" Notes restrictions on French vessels and subjects. Ensures American cargoes and vessels will not be molested "on Account of any Hostilities that may exist between His Majesty and the said United States of America." No. 63 from Eyre and Strahan, His Majesty’s Printers. + + + + + + + 1812 September 25 + + . J. Chandler AL to Daniel Chandler; Lexington. + + + 2 pages + + Refers to Hull’s surrender; "Hull's disgrace…fills the minds of people with sensations not easily described--the feds endeavour to excuse him…you mention your going to Montreal…God grant in going there you may go as conquerors not as conquered." + + + + + + + 1812 September 25 + + . William Eustis LS to Joel Barlow; War Department. + + + 2 pages + + In code [directs Joel Barlow, an American agent abroad, to assist Henry Wilson. Wilson will secretly export arms to the United States from Ostend in Belgium]. + + + + + + + 1812 September 26 + + . Thomas Sewell DS; Washington, [D.C.]. + + + 1 page + + Offer of reward for information on the person who tried to destroy his gunpowder mills; "Several attempt have been made…this month to destroy my gunpowder mills near this…There being the stronges reason for believing that the agents in this affair- may be induced by prospects of reward- I do hereby bind myself to pay...fifteen hundred dollars, for such disclosures." + + + + + + + 1812 September 28 + + . Henry Dearborn LS to Jacob Eustis; Head quarters, Greenbush. + + + 1 page + + Josiah Paine’s bill for payment due him by the U.S. government; "Mr. Payne of Portland was employed, at my request, to send an express to Passamaquoddy:--which service was performed with great dispatch.--His demand is 250…the charge is high - but it must be paid. - you will therefore please to discharge the demand." + + + + + + + 1812 September 30 + + . John Parker Boyd ALS to Henry Dearborn; Eastern Division Head Quarters, Boston, [Massachusetts]. + + + 1 page + + Acknowledging advice; he encloses an earlier letter and an order to a major in the militia, "copies of which have been forwarded to the War Department." + + + + + + + 1812 October 3 + + . John Widney ALS to Samuel Williams; Meadville, [Pennsylvania]. + + + 3 pages + + Has volunteered in Captain Harper's Company of Infantry. + +Mentions the election between Adamson Tannehill (1750-1820) and Captain Foster for General, bemoaning Tannehill's victory + +"…it is to be lamented that polliticks prevaild again[s]t Millatiry abillities." + +Uncertain if they will be sent to Buffalo or Cleveland. + +Notes his cousin William Irwin serving as a surgeon's mate. + +Acknowledges Samuel Williams's account of the "Escape of Captain Crush's Company." + +Discusses hard marches, daily camp life, and a violent attack against one of their camp sentries. + +See also John Widney ALS to Samuel Williams, May 13, 1813. + +[Original in Map Division, Small Maps 1813] +. + + + + + + 1812 October 5 + + . Ezra Canfield ALS to Mrs. Lucretia Canfield; [Batava]. + + + 2 pages + + Misses wife and family, refers to the potential American assault on Canada; "the contry is full of troops marching on the toe lines from all quarters it seems to be the opinion here that there will bee at least seventy thousands that will make an attack upon the Canadas within twenty days…" + + + + + + + 1812 October 5 + + . John Schryack DS; Camp Urbana, [Ohio]. + + + 2 pages + + Receipt for $52 received from James Taylor, Quarter Master General, for amount owed to Diament Whitaker for the use of his corn field by "the Ohio Troops on their march Northward." Signed by R[eturn] J[onathan] Meigs (1764-1825), granting the Quarter Master General permission to pay the debt. + + + + + + 1812 October 11 + + . Thomas Bodley CyS. + + + 1 page + + Copy of an appointment of James Bradshaw to Forage Master; "He will proceed on the purchase forage for the regt. and will receive information of the route from Col. Campbell…" + + + + + + + 1812 October 14 + + . John Reding, Jr. ADS; New Hampshire. + + + 2 pages + + Deposition regarding the capture of an American vessel, Abigail; "the sloop, having English Colours flying at the time, The Captain informed me he had a Protection against Capture by English Cruizers and Shew me a Licence from the British Government…" The crew believed that its load was English property and would be condemned if it entered the United States. + + + + + + + 1812 October 18 + + . Ezra Canfield ALS to Mrs. Lucretia Canfield; Lewistown. + + + 1 page + + Description of a battle between his regiment and British troops. Also describes confusion after the battle; "the british want a sesation of arms and they are not willing to give up our oficers unless our regiment may be dischargd…" + + + + + + + 1812 October 27 + + . Daniel D. Tompkins ALS to Peter Buell Porter; Buffalo, [New York]. + + + 2 pages + + Porter will be given medical supplies for the sick and wounded in hospitals at Lewiston and Black-Rock, obtain receipts from the surgeons for the supplies, and deliver the receipts back to Col. Livingston. Tompkins then dismisses him as Quartermaster General [of the New York State Militia]. + + + + + + + 1812 October 29 + + . Rebecca [Eustis] ALS to Abraham Eustis; Cambridge, [Massachusetts]. + + + 3 pages + + Upset by delays in the mail which have caused her letters to not reach Abraham before he marched for Plattsburg. Recently moved to Cambridge. Will not lie and say she is happy, but refuses to "tell you how miserable I am at intervals least it should clogg your military ardor." Hopeful for a cessation of hostilities, at least for the winter. "It seems as if heaven had really frowned upon our ill-fated country ever since the Declaration of this ill-managed war." Family news, everyone anxious about him. Addressed to Major Abraham Eustis, Plattsburg. See also D. S. Townsend ALS to Abr[aha]m Eustis, August 29, 1820, located in the Michigan Collection. + + + + + + + 1812 November 4 + + . Thomas Buford LS to Thomas L. Butler; Lexington, [Kentucky]. + + + 2 pages + + Congratulates Butler on his appointment as deputy quartermaster general and mentions supplies forwarded for the troops at Vincennes; "You have been pleased to advise me to procure and forward supplies of Provisions for the Troops at Vincennes," including flour, whiskey, soap, and candles. + + + + + + + 1812 November 9 + + . Broke, P[hilip] B[owes] Vere ALS to Dr. Hutchinson; Shannon, at sea. + + + 4 pages + + Harries the American Navy and expresses the need to humble the Americans; "The capture of poor Guerriere, tho by a very superior force will make the Yankees so insolent that perhaps they may force their ships to risque a battle - & they must be severely humbled before we can hope to make any peace with them, for their ignorance, conceit & rancour are at present beyond all bounds..." + + + + + + + 1812 November 14 + + . James Winchester ALS to John H. Piatt; Camp Miami [Maumee, Ohio]. + + + 1 page + + Letter stressing the importance of obtaining supplies; "The necessity for accumulating supplies for the army at Fort Winchester increases…redouble your exertions to send on provisions - Salt - is indispensible to save our Beef that is falling every day - Liquor we have none of, on hand." + + + + + + + 1812 November 15 + + . Amos Stoddard ALS to Lt. Bryson; Pittsburgh, [Pennsylvania]. + + + 1 page + + Regarding a paroled prisoner; "As I have found it impractiable to procure an experienced pilot at this place, to accompany a Public Boat to Cincinnati…I have availed myself of Lieutenant Darrah's offers of service on the occasion - and as he is a prisoner on parole, I have engaged, that he...be furnished with a public Horse to enable him to return over land." + + + + + + + 1812 November 17 + + . Samuel Preston ALS to Miner and Butler; Rockport, [Pennsylvania]. + + + 4 pages + + Headlined "Thoughts on the President's Message Nov. 5th 1812." He lists 18 points, which includes criticism of Madison’s speech and comments on Hull’s failed invasion of Canada; "If J. Madison is reelected to select the members of the Military Tribunal, as the Prophet said to King Hezekiah, Gen'l Hull may set his house in order." Mentions matters pertaining to trade and politics. + + + + + + + 1812 November 28 + + . Thomas Pickney ALS to Thomas A. Smith; Head Quarters, Charleston, [South Carolina]. + + + 3 pages + + Discusses the movement of regiments, specifically a Rifle Regiment and the 7th Regiment of Light Dragoons; includes another ALS, also from November 28, from Pickney to Smith on the subject. + + + + + + + 1812 November 28 + + . James W. Bryson ALS to Robert Patterson; Newport, Kentucky. + + + 1 page + + Regarding the movement of troops and supplies. + + + + + + + 1812 December 7 + + . John B. Campbell ALS to Robert Patterson; Camp at Dayton. + + + 1 page + + Request for horses to transport medical supplies, "not exceeding six with pack saddles, and lash ropes." + + + + + + + 1812 December 12 + + . Nathaniel Leonard DS; Niagara River. + + + 2 pages + + Certificate of damage to Thomas Hustler’s house through its use as a military hospital; "his dwelling house in Lewiston having been taken and kept as an hospital by the troops in the service of the United States." Appraisers have been appointed to reach a dollar amount, which assessed the damages to $300. Includes Hustler's endorsement from March 31, [1813]. + + + + + + + 1812 December 14 + + . William H. Winder ALS to Henry Grindage; Black Rock, [New York]. + + + 2 pages + + Winter quarters; "We have abandoned all design of active operations for this season on this part of the line." They have been allowed to return to Baltimore for the winter and praises the conduct of the young soldiers. + + + + + + + 1812 December 15 + + . Thomas Bodley ALS to Henry Brown; St. Marys. + + + 2 pages + + Encourages him to buy spare tonnage; "It is absolutely necessary that some person should purchase…Forage at Dayton…It is my wish you should Continue in the business." Requests money from Col. Patterson; "our boats have been frozen up & the troops in advancing are suffering..." + + + + + + + 1812 December 23 + + . James Monroe ALS to Unknown; Washington, [D.C.]. + + + 2 pages + + Regarding the defense of Sackett’s Harbor, [New York]; mentioning American vessels built on Lake Ontario, "there is danger 'lest the enemy should…destroy them. This would be truly calamitous. I hope you have taken measures for their safety…" + + + + + + + 1812 December 29 + + . John B. Campbell ADS. + + + 1 page + + Order to furnish the sick; "The Quarter Master at Dayton or his agent will furnish every thing necessary for the medical department so that the situation of those who have suffered in defence of our Country's rights and honour may be rendered as Comfortable as possible, for which the surgeons attending will make return." + + + + + + + 1812 - 1813 + + . Receipts. + + + 6 pages + + Six receipts for such supplies as corn, flour, and the feeding of public horses. + + + + + + + 1812 ca. + + . Inhabitants of New Gloucester, Maine DS; New Gloucester, [Maine]. + + + 3 pages + + Measure, including 92 signatures, supporting active defense of the U.S. in the War of 1812; "we do hereby severally engage to consider ourselves, from this time, as ENROLLED AMONG THE DEFENDERS OF THIS COUNTRY, and that we will… hold ourselves in constant readiness to appear in the Field...when the call of our Government shall require our services." + + + + + + + 1812 + + . Receipts. + + + 9 pages + + Receipts. + + + + + + + 1812-1813 + + . Documents. + + + 3 pages + + Abstracts of purchases for the army. + + + + + + + [1812 ca.] + + . Connecticut Volunteers AD; [Fairfield, Connecticut]. + + + 4 pages + + Proposed rules and regulations for the formation of a Volunteer Company of Musketry; "As soon as thirty or more men of the town of Fairfield shall have subscribed to this paper, on notice being given They shall assemble at some convenient place for the purpose of organising a volunteer comp. to serve during the war..." + + + + + + + [1812] + + . Benjamin Harrison DS. + + + 1 page + + Inventory of articles belonging to a deceased ensign, his brother Joseph Harrison. + + + + + + + [ca. 1812] + + . United States DS to The Wyandots of Solomons Town, [Ohio]; Quarter Master’s Department, North-Western Army. + + + 2 pages + + Money owed for beaver killed by General Tupper; "four Beever killed & made use of by General Tuppers detachments of Ohio Militia & estimated to weigh 1200 pounds by General Tupper..$48.00." Signed by William Henry Harrison. + + + + + + + 1813 January 19 + + . A. A. Albert Gallatin ALS to Thomas Newton; Treasury Department [Washington, D.C.]. + + + 1 page + + Concerning the need to rebuild a lighthouse; "I have the honor to enclose the copy of a letter just received from the Collector of Wilmington N.Ca. under the circumstances stated by him; no other remedy appears efficient than the rebuilding of the light house in a safer place; and this cannot be done without a legislative sanction." + + + + + + + 1813 January 25 + + . John Cotton Smith Pr. DS to Elisha Hinsdale; Hartford, [Connecticut]. + + + 1 page + + Appointment to Lieutenant of the Torrington Company of Volunteers. + + + + + + + 1813 February 1 + + . Samuel Gaxton ALS to Calvin Stebbins; Attica, [New York]. + + + 3 pages + + Events in Canada since start of war; his experiences in camp has led him to "a full knowledge of the Conduct, of the great men of our Nations; or in other words the Men in Power; and suffer me to tell you that in my opinion they are leading us all to ruin." He mentions Hull's defeat and the "attempt of Smith to invade Canada; all fruitless..." + + + + + + + 1813 February 10 and 1813 May 3 + + . B.F. Stickney ALS, ADS to Jacob Fowler; McPherson’s Block House. + + + 12 pages + + Letter and warrant for Captain Lewis, a Shawnee Chief; "you have taken a retain a horse belonging to Capt Lewis. The horse was delivered to Lewis by order of Gen Harrison... as will appear by a certificate Lewis now holds." Includes a receipt for a horse pressed into public service dated May 3, 1813 for $60. + + + + + + + 1813 February 11 + + . John Armstrong DS; Department of War, [Washington, D.C.]. + + + 1 page + + Order regarding payment of troops; "The paymaster is required to cause to be advanced to the officers non-commisioned officers and privates of two Regiments of militia, which have been called into service by Gov. Meigs in the State of Ohiol Two months pay and amoluments." + + + + + + + 1813 February 25 + + . Charles Wale Partially printed DS; Fort Royal, Martinique. + + + 2 pages + + License for safe passage for any unarmed American ship from New London (Conn.) to Fort Royal. Signed by Wale, the British Governor of Martinique. Tonnage endorsed on page two, for the Brig Godfry & Mary, New London, May 17, 1813. + + + + + + + 1813 February 20 + + . George Beale ADS to William Jones; Plattsburg, [New York]. + + + 2 pages + + Regarding payment for provisions and "the payment of the officers and men on this station." + + + + + + + 1813 February 20 + + . Ohio Legislature Document; Groton. + + + 1 page + + Regarding the Lake Erie Tax for 1812; "A Tax Bill for the Proprieters in the 1st. Section in the Town of Groton in the County of huron, in the State of Ohio, in that part called firelands, and was Levyed by the Legislator…in, and for, the year 1812, which Tax is $28..78.- and each proprietors is as followeth." + + + + + + + 1813 February 22 + + . John Clopton ALS; Representative Chamber [Washington, D.C.]. + + + 1 page + + Clopton, a U.S. Representative from Virginia, nominates George Kennon to be navy surgeon; "I have been requested to nominate Doctor George T. Kennon for the appointment of a surgeon in the navy. Though not personally acquainted with Doctor Kennon, such recommendations of him has been communicated to me that, I cannot hesitate in nominating him to you." + + + + + + + 1813 February 23 + + . W[illiam] Jones ALS to Manuel Eyre; Washington, [D.C.]. + + + 2 pages + + Regarding the non-importation act; "Nothing could justify the measure but the conviction that it is or soon will be a mere nominal Act defeated by evasion and smuggling…" + + + + + + + 1813 March 15 + + . J. Broadus DS to Frederick Spofford; Boston, [Massachusetts]. + + + 1 page + + Certificate of resignation as an ensign in the Massachusetts militia; he is honorably discharged. + + + + + + + 1813 March 18 + + . Joseph Lee Smith ALS to Joseph Kinney; Burlington, [Vermont]. + + + 1 page + + Informing Kinney that he and ensign Brower are indispensable to the regiment going to Sackett’s Harbor, and to "keep your destination a secret." + + + + + + + 1813 March 28 + + . N. Sherwood ALS to Ezra Lewis. + + + 3 pages + + He has been drafted, but his brother has gone in his place; "Harrison our Noble Commander has at that place between Six and Seven Thousand Kentucky that Noble and Patriotic Stat, are Raising three Thousand Vollen Teers and their Governor is to Command in Person." + + + + + + + 1813 April 5 + + . E. I. DuPont ALS to John Hancock; Wilmington. + + + 1 page + + Concerning delayed shipments of gunpowder; "They would be exposed to Capture by Sea & There is not yet any line of waggons running between NYork & Boston…" + + + + + + + 1813 April 25 + + . H[erbert] Sawyer ALS to John Wilson Croker; Bath. + + + 11 pages + + Report on activities of the U.S. fleet off the American coast on the outbreak of the War of 1812. + + + + + + + 1813 April 28 + + . Return Jonathan Meigs ALS to Col. Enos; Franklinton, [Ohio]. + + + 1 page + + Orders for men to search countryside for Native Americans; "Understanding that the frontiers of your Regiment are apprehensive of Danger from the Indians…you are authorized to detach from your Regiment - One Company - to scour the Country on your frontier in that Direction..." + + + + + 3 + + + 1813 May 1 + + . Sir John Borlase Warren ALS to George Cockburn; H.M.S. San Domingo off Swamp Point. + + + 3 pages + + Regarding operations along the Chesapeake shore; discusses a prisoner exchange, mentions Baltimore and Annapolis. + + + + + + + 1813 May 1 + + . Simon Larned ALS to Charles Larned; Cantonment Greenbush, [New York]. + + + 3 pages + + Regarding family news and troop movements; "The troops from all Quarters are moving to Buffaloe [sic] & Sackets Harbour…I think however we shall soon have permanent foothold on Canada side of the Lake. The Recruiting service the last winter has been very successfull." + + + + + + + 1813 May 9 + + . [Manuel Eyre] ADf to [William Jones]; Philadelphia, [Pennsylvania]. + + + 6 pages + + Concerns the defense of Philadelphia; approximately $30,000 funds will be appropriated for this purpose. Includes a partial list of resolutions pertaining to the defense. + + + + + + + 1813 May 9 and 1813 May 10 + + . Jacob Baker ALS to Isaac Launch; Fort Nelson [near Portsmouth, Virginia]. + + + 3 pages + + Description of Norfolk and Fort Nelson; "I had hoped to find Norfolk a neat and tolerable well built city but I believe I am to be disapointed in every town on this side of the ridge." Describes the building and the effect of the tide; "we are about a mile below Portsmouth in the rear of Fort Nelson a strong and most excellent fortification." + + + + + + + 1813 May 12 + + . W[illiam] Jones ALS to Manuel Eyre; Washington, [D.C.]. + + + 6 pages + + Private correspondence concerning the defense of Philadelphia. + + + + + + + 1813 May 13 + + . John Widney ALS to Samuel Williams; Concord, [Pennsylvania?]. + + + 3 pages + + Enclosing a map of Black Rock and Presque Isle on Erie [present]. Hopes William will send a map in return. Provides news of the American forces on the Niagara frontier, including the capture of York, the death of General Pike, and many deaths to a mine accident. Mentions Native Americans taken prisoner and Commodore Chauncey capturing British ships and taking possession of the lake. Includes two pen and ink maps, one of Black Rock, New York, and the other of Erie, Pennsylvania, noting military camps and positions, details of the Canadian shore, and Fort Erie. [Original in Map Division Small Maps] + + + + + + 1813 May 17 + + . [Manuel Eyre] ADf to [William Jones]; Philadelphia, [Pennsylvania]. + + + 3 pages + + Regarding the defense of Philadelphia. + + + + + + + 1813 May 19 + + . Pearl Spofford ALS to Frederick Spofford; Portland, [Maine]. + + + 2 pages + + Discusses the risks and rewards of trade during wartime; "no more goods can be had without giving an enormous price." + + + + + + 1813 May 25 + + . Morris Smith Miller ALS to [William Meredith]; Washington, [D.C.]. + + + 1 page + + Forwarding letters and best wishes. + + + + + + + 1813 May 26 + + . John Christian, Jr. ALS to Jacob Van Lear; Augusta County, [Virginia]. + + + 3 pages + + Selecting a captain; Major Henderson has resigned and Captain Abney has assumed Henderson's former post, and thus they will be left without a captain "and it is no known what will be done with us…there is also a report that General Harrison has had a battle with the Indians and has killed and taken a great number of them..." + + + + + + [1813 June 3, delivered] + + . Manuscript speech. + + + 10 pages + + Critical speech against the war with England, "Read at Petersham before Washington Benevolent Society of Barre". The writer questions the motives and justifications for war. + + + + + + + 1813 June 4 + + . E. L. Shittock ALS to General Woolsey; Sackett’s Harbor, [New York]. + + + 2 pages + + Pleas for supplies and updates on recent war events; "we have been anxiously expecting their arrival long before this…Our men are quite naked & extreemly in want of Clothing…due for Godsake forward them on with all possible expedition, on the most direct road--if it should not be possible to send all on at once..." + + + + + + + 1813 June 5 + + . State Garrison of Lt. Col. Warburton DS; Amherstburg, [Ontario]. + + + 1 page + + Details of number of troops, officers, and stations for Warburton’s garrison. + + + + + + + 1813 June 8 + + . Thomas Gholson ALS to Robert Brint [Brent]. + + + 1 page + + Regarding two claims for deceased soldiers; "It is possible the returns from the pay master may cover these two cases. Will you do me the particular favor to address to me a few lines on the situation of these claims?" + + + + + + + 1813 June 12 + + . Pearl Spofford ALS to Frederick Spofford; Boston, [Massachusetts]. + + + 1 page + + Concerning the defense of Deer Island and rumor of fleet on Lake Erie. + + + + + + + 1813 June 18 + + . Sir Francis Freeling LS to C. Saverland, Sr.; London, [England]. + + + 2 pages + + Remuneration offered to captains for losses sustained by vessels commanded by Captain Bell and Captain Rogers during missions on the American coast; Bell has been awarded £350 and Rogers £300. + + + + + + + 1813 July 6 + + . William Abney ALS to Jacob Vanlear; Augusta County, [Virginia]. + + + 2 pages + + Responds to Vanlear's news of false alarms in army camps; "that is what takes place frequently in an army sometimes through desighn in order to try the men that they may be better acquainted how to manage in case the alarm at any time should move to be true." + + + + + + + 1813 July 6 + + . Samuel P. Fitch ALS to Theophilus W. Fitch; New London, [Connecticut]. + + + 3 pages + + Discusses Stephen Decatur’s squadron being chased into New London harbor by British, an engagement to repel British, and submarine warfare. + + + + + + + 1813 July 10 + + . Morris Smith Miller ALS to William Meredith; Washington, [D.C.]. + + + 3 pages + + Representative Miller of New York discusses taxes; "You will have observed the course which our friends have adopted in regard to the taxes: the balance of opinion…that the Taxes did not afford a fair opportunity for [canvassing] the great question of peace or war. -It is expected that the President willl answer Webster on Monday..." + + + + + + + 1813 July 11 + + . William Graves ALS; Watertown, [New York?]. + + + 2 pages + + Sending Mr. Smith to "Enquire of some Engraver what the Expense of Engraving a Map would be." Has produced a 2 foot x 3.5 foot map of "the province of Upper Canada and the present Seat of War" and describes the content, including counties, waterways, military sites, and the state of land surveys. Map also covers "the Northern Frontier of the state of New York North Frontier of Ohio on Lake Erie Michigan Territory." Believes the map would sell well, "as a great Number of people are desirous to see the Countrey that the American Army are Contending for." Signed, "William Graves late Kings Surveyor of Upper Canada." + + + + + + 1813 July 11 + + . Ninian Pinkney ALS to Henry Dearborn; Niagara. + + + 3 pages + + Pinkney’s suggestions about Dearborn’s camp have been put in place, such as "removing the prisoners from the Hospitals as fast as they recovered, removing the Sick & wounded of our army, drawing in Troops from the Town to Camp…" + + + + + + + 1813 July 13 + + . Ninian Pinkney ALS to Henry Dearborn; Niagara. + + + 2 pages + + Pinkney, a junior officer in the 5th regiment, provides a report on the regiment and recruiting new men; "I…will consider it a favour if you will permit me now or after the termination of the pending events…to attend to the Recruiting Service, or to report myself to the Secretary of War, as you may think most proper..." + + + + + + + 1813 July 15 + + . Phineas Hammond ALS to Mrs. Phineas Hammond; Cantonment Burlington. + + + 4 pages + + News of what he has done in the army since he left home. He belongs to a force of 6,000 men; "I have good reason to suppose that an attack is meditated on the enemy by us, in considerable force (probably in Montreal) the issue is doubtful being untried, but I have little reason to doubt the end of a conflict of that kind, whose foundation is justice, and whose aim is peace. Yesterday we had one man shot for repeated desertion." Includes a memo by Margeret Porter from New Castle concerning Phineas Hammond. + + + + + + + 1813 July 17 + + . Isaac Lyman ALS to Cyrus King; York, [Maine]. + + + 2 pages + + Disappointed by political leaders. "I have enough to do in silently deploring the miserable condition to which our Country is reduced by the weak and wicked policy of our Rulers. My own feelings on this subject I do not wish to impart to any one most especially to you, who need (I fear) a Physician of both mind and body in the City of pestilence war and desolation." + Uncertain what the effects of recent bills may be, but notes the Federalist remembrance of "the prophet Jefferson's remark- that tax-gathers wou'd complete what useful labors did not." Believes Democracy is sickening and likely to fail, "and with it the host of Dependants who have so long consumed the peoples substance." Glad that the Senate has allowed Russell to stay home and hopes that [Daniel] Webster's (1782-1852) "resolutions will induce a development of tricks practiced by state jugglers." References "Southern war hawks" and hopes King will work towards peace. + + + + + + 1813 July 18 + + . Noah Morrison ALS to Hamilton McColester; Buffalo, [New York]. + + + 3 pages + + Account of local attack by British; "about three hundred of the British came acrost about three miles below Buffalo at Black Rock burnt the Barrick Spickt & carried away all the cannon…the Indians raised the Yell and commenced the fire So hot that the enemy were obliged to retrete in considerable of a hurry..." He lists his estimates of the casualties, includes postscript of a dangerous experience in Canada. + + + + + + + 1813 July 23 + + . William Abney ALS to Jacob Vanlear; Augusta County, [Virginia]. + + + 5 pages + + Local news, British shipping, expecting an Indian attack. + + + + + + + 1813 July 24 + + . Tho[ma]s B. Abercrombie ALS to W. Meredith; Philadelphia, [Pennsylvania]. + + + 1 page + + Recommending the wife and children of Walter Allison, who is a volunteer soldier, for aid; Meredith is part of a committee whose purpose is to assist the wives and children of volunteers under Col. Rush. + + + + + + + 1813 July 27 + + . Amos Binney DS to Nathaniel Cushing. + + + 1 page + + Contract for the purchase of anchors for the Navy; "the said Nathaniel Cushing hath agreed…to furnish for the United States Navy Department and to deliver at the Navy Yard in Charlestown…the following number, sizes, & description of Anchors and at the prices herein named..." by March 1, 1814. + + + + + + + 1813 August 6 + + . Decius Wadsworth ALS to John M. Taylor; Ordnance Department, Washington, [D.C.]. + + + 1 page + + Artillery and ammunition under order for the Northern Frontier. + + + + + + + 1813 August 8 + + . Elizabeth Lee ALS to Mary L. Sparhawk; Templeton, [Massachusetts]. + + + 1 page + + News of her husband who is serving in the Navy; he had sailed for Cadiz, captured and sent to England; "I received letter from him a few days ago since the latest dated Liverpool 12th May, he was then in good health & expected soon to have his ship in possession..." + + + + + + + 1813 August 9 and 1813 August 16 + + . Col. William A. Daingerfield, Brig. Gen. Young, et al. + + + 2 pages + + Recommendations for Thomas Monroe for military appointment; "[much] has been his moral character…that I…believe him worthy of an appointment in my [department] of the military service of the United States…" + + + + + + + 1813 August 11 + + . John Black ALS to Pearl Spofford and Frederick Spofford; Goldsboro, [Maine?]. + + + 1 page + + Trade with Boston; he requests that barrels of pork and tobacco leaves be sent. Includes an ANS of Thos. Cobb requesting grass seeds. + + + + + + + 1813 August 13 + + . [Pearl Spofford] [pseud] Peter Pinder ALS to Pearl Spofford and Frederick Spofford; St. John, [Maine]. + + + 3 pages + + Discusses trade in Canada, probably illicit, during the war; "pay good attention to our business as the times look (to me) very Black." + + + + + + + 1813 August 17 + + . George Armistead ALS to Capt. Callender Irvin; Fort Niagara, New York. + + + 2 pages + + Concerning the theft of two horses, a nearby Native American tribe’s discontent, and a British mutiny; "A Mutiny was on foot in the british Garrison which has just been discover'd & repressed it was to have taken place this evening; there intention was to have murdered all the officers burnt the Garrison plundered & burnt West Niagara...they would have met with a warm reception from our cannon & muskets." + + + + + + + 1813 August 24 + + . United States DS to Isaac White. + + + 1 page + + Receipt for $20, “for cap & clothes...in making my escape from upper Canada.” + + + + + + + 1813 September 1 + + . A. S. Brooks ALS to Westport, Massachusetts Selectmen; Fort George. + + + 1 page + + Regarding land and pay left by the deceased Joseph Brownell; Brooks has his pay and after settling his accounts has money remaining and requests that any friends authorized to receive it to inform him. He had enlisted for 5 years and "is of course entitled to 100 acres of land." + + + + + + + 1813 September 2 + + . Samuel G. Towne ALS to Pearl Spofford; St. Stephens, [Maine]. + + + 3 pages + + Concerning trade. + + + + + + + 1813 September 4 + + . William Duane ANS to Callender Irvine; Adjutant General’s Office. + + + 1 page + + “I must decline doing what is proper and correct...” + + + + + + + 1813 September 5 + + . Joseph W. Lawrence DS; Geneseo, [New York]. + + + 2 pages + + Orders for regiments in the 39th Brigade, including a list of the detachment of various captains, ensigns, lieutenants, and other soldiers from specific regiments. "The commandant of the 39th Brigade…confidently hopes and sincerely believes that the above orders will meet with promt and strict obedience." + + + + + + + 1813 September 7 + + . Alexander Neef ALS to Andrew W. Bell; Burlington, [Vermont]. + + + 2 pages + + Description of a naval expedition and his naval force, with a list of ships and guns. + + + + + + + 1813 September 18 + + . Nathaniel Z. Platt DS to Melancthon Woosley; Plattsburg, [New York]. + + + 2 pages + + Contract to build two store houses; "Platt of Plattsburgh arees to Build for the United States Two Storehouses of the following dimensions…" It is certified on verso by Woosley, dated January 5, 1814, who states "I conceive this Contract as fulfilled." + + + + + + + 1813 September 21 + + . William Duane ANS; Adjutant General’s Office. + + + 1 page + + Regarding appointment of Lieutenant Bretton Evans, and officer in the 2nd Artillery. + + + + + + + 1813 September 23 + + . James Madison LS to John Mason; Montpelier, [Orange, Virginia]. + + + 4 pages + + Regarding the harsh treatment of American prisoners of war at Halifax; "The encouragement which the Enimy seem to derive from our reluctance to retaliate their cruelty towards our military citizens in captivity, requires that an appeal should be made without delay, to their feelings for their own unfortunate people, as they have none for ours." He orders British prisoners to be placed under "a rigor of treatment" similar to those towards America prisoners. + + + + + + + 1813 September 24 + + . Ferdinand L[eigh] Claiborne ALS to Lieutenant [James?] Bayley [Bailey?]; St. Ste[ph]ens, [Alabama]. + + + 2 pages + + Directions on gathering corn, pumpkins, and guarding their horses while at pasture at Col. [James] Caller’s (1758-1819) plantation."When your Horses are feeding in the field you must keep a pickett guard near them, in order to prevent straggleing parties of Indians from stealing them; and also a guard & sentinels a sufficient distance from the house to notify you of the approach of an enemy."Orders Bailey to retreat if they "hear of a body of Indians such as might probably jeopardize your horses." "There are circumstances that may occur, but are not calculated on; however in time of war and near an enemy a good soldier ought at all times be on his guard."Being sent to Coller’s in order to ready horses for battle, and advises Bailey to take good care of them and prevent any soldier from harming the property."Should any of your command be so lost to the honorable principles becoming a soldier, as to violate this order you will after dismounting him and taking from him his equipments, send him forward under guard with the charges and witnesses, to Mount Vernon to be tried by a court Martial."Includes an order for the Quarter Master to provide Bailey with a wagon for transport. + + + + + + + 1813 September 27 + + . Jeremiah Lee, William Picket, and James Gray, Jr. DS to Charles Rich; Bridport, [Vermont]. + + + 2 pages + + Regarding arms, cartridges, and cannon lent by Charles Rich, a lieutenant colonel in the 3rd Regiment, 1st Brigade and 3rd division. + + + + + + + 1813 September 27 + + . A. Shields DS to Charles Rich; Bridport, [Connecticut]. + + + 2 pages + + Regarding cannon and cartridges delivered to Charles Rich. + + + + + + + 1813 September 29 + + . James Madison ALS to John Mason; Montpelier, [Orange, Virginia]. + + + 1 page + + Concerning the detention of seamen on British ships when war was declared; "The…detention of our Seamen who were on board British Ships when war was declared, will engage particular attention." He goes on to mention "the effect of their Testimony in proclaiming the cruelties they have suffered..." + + + + + + + 1813 September + + . Hosea Day Document; [Massachusetts]. + + + 1 page + + "Inspection and Muster Roll of Capt. Hosea Day." List of members. + + + + + + + 1813 October 5 + + . William Duane ALS to Callender Irvine; Philadelphia, [Pennsylvania]. + + + 3 pages + + Concerning Army news, including efforts to protect the Delaware River and the duty and conduct of officers. + + + + + + + 1813 October 7 + + . William Duane ALS to John M. Taylor; Adjutant General’s Office. + + + 1 page + + Issuing artillery; he orders 50 blank rounds and 50 rounds fixed ammunition to be allocated for each gun, and gives further orders regarding the movement of ammunition. + + + + + + + 1813 October 15 + + . Daniel Rose ALS to Orchard Cook; Camp Chalaugay [Châteauguay, Quebec]. + + + 1 page + + Movement of army; "I inclose a sketch of the movements of this army from Burlington to this place, the tract of the army is marked with blue." Requests that Mr. [McClintock] see the sketch. + + + + + + + 1813 October 23 + + . Bailey and Willis ALS to Daniel Sheldon, Jr.; New York. + + + 4 pages + + Discusses the running of the British blockade and gives instructions for Sheldon upon his arrival in Havana. Lists the prices of commodities, including coffee, brown sugar, and molasses. + + + + + + + 1813 October 24 + + . A[ndrew] T. Goodrich ALS to Sarah M. Goodrich; New York. + + + 3 pages + + New York’s celebration of war victories; "I informed you before that the City Hall was to be lighted on the last evening in honor of our recent victories…" He mentions Tammany Hall, Washington Hall, and the American Museum. In front of City Hall were placed "representations of all the various naval actions that have taken place during the war..." + +

    Original located in the Andrew T. Goodrich family correspondence.

    +
    +
    +
    + + + + + 1813 October 28 + + . John Monroe LS to David B. Mitchell; U.S. Department of State. + + + 5 pages + + Mitchell, the former governor of Georgia, has accepted Monroe's invitation to command forces attacking Creeks. Monroe describes the force and correspondence with the Governor of Tennessee [Willie Blount]. "The exposed situation of New Orleans, the probability that the enemy may make an attempt to take possession of it, and of other parts of that Country...increased by a knowledge that an expedition has been lately equipped from Halifax, necessarily draws our attention to that quarter." + + + + + + + 1813 November 9 + + . Thomas Barcley Pr. DS; New York. + + + 1 page + + Regarding exchange of American prisoner James Cernon, "late mate of the American vessel St Augustin." + + + + + + + 1813 November 10 + + . Robert Troup ALS to Abraham Van Vechten; Geneva, [New York]. + + + 4 pages + + Reports from Fort George and of Harrison and McClure preparing to attack Burlington. "Harison has only between 7 & 800 men with him - and they are said to be in the most miserable plight, and when they joined the troops at Fort George to resemble a moving hospital rather than a corps of efficient men." Requests information concerning opinions from Albany on the Montreal expedition and laments the death of [Jean Victor Marie] Moreau. + + + + + + + 1813 November 23 + + . David Breasley ALS to John Armstrong; Camp F[ort] Mills. + + + 2 pages + + Discusses the conduct of his regiment's paymaster and recommends "the Appointment of Second Lieut. Daniel Bunch as P. Master of the 15th Regiment." + + + + + + + 1813 November 24 + + . Ferdinand Leigh Claiborne DS to John T. Wirt; Fort Claiborne, [Alabama]. + + + 2 pages + + Regarding payment for articles purchased as presents to the "Indian Chief Pushmatahaw [Pushmataha] & other of his Warriors" by the order of Brigadier General Claiborne. Includes the acknowledged receipt of $113.82 and "three-fourths in full of the above account." + + + + + + + 1813 November 29 + + . John M. Garnett ALS to Archibald R. S. Hunter; Loretto, [Virginia]. + + + 3 pages + + Mentions the blockade; "We are…closely blockaded by his Satanic majesty's ships and unable to sell a bushel of corn or wheat." Expresses outrage at non-patriotism of pacifists; "men [who] are lost to every feeling of patriotism and sense of duty to their country - men who are avowed apologists of every crime and outrage perpetrated against us..." + + + + + + + 1813 December 4 + + . Abraham Shoemaker, Jr. ALS to Charles Thomson; Philadelphia, [Pennsylvania]. + + + 2 pages + + Regarding rent payments; "The young gentleman in whose favor, at my request, you signed a recommendation for a commission in the army received a lieutenancy and serves in that capacity at Fort George, N.C. He has been promoted to a Captaincy in the 15 Reg. U.S. Inf.y and is now attached to Genl. Wilkinson's Army on the frontier of Canada." + + + + + + + 1813 December 8 + + . Maskline Clark partially printed document to William Simmons; [Dover, Delaware]. + + + 1 page + + "The United States in account current with Lieut. Maskline Clark Jr. of the 32d Regiment U.S. Infantry."Lists expenses of Lieutenant Clark of the 32nd Regiment, U.S. Infantry."Cash paid for contingencies," including drummers, men to play the fife, prison fees for deserters, and housing. Also, expenses incurred for wood, straw, and repairs to the barracks. + + + + + + + 1813 December 20 + + . Stephen Decatur LS to William Jones; U.S. Ship United States, New London, [Connecticut]. + + + 4 pages + + Trapped in the harbor by British ships, Decatur decribes the actions of Nathaniel Seuter, a lawyer and captain in the 25th Regiment of the Rhode Island Infantry, visiting the British ships; "He admitted without hesitation, that he intended to go on board the blockading ships for the purpose of taking is wife to see them." + + + + + + + 1813 December 20 + + . George Murray ALS to Return Jonathan Meigs. + + + 1 page + + Petition to cancel fine levied upon him for not serving in Militia, "by reson of my sore affliction at that time…I had a very soreness and [pang] in my brest and lung…[I] hope that you will have compassion..." + + + + + + + 1813 December 20 + + . Alexander Neef ALS to Andrew W. Bell; Plattsburg, [New York]. + + + 6 pages + + Eyewitness account of the Battle of Chateaugay. + + + + + + + 1813 December 21 + + . William Groves ALS to William Carner; Philadelphia, [Pennsylvania]. + + + 1 page + + Description of Philadelphia meeting where it was voted to dump tea overboard to protest American war-time profiteering; "Upwards of 500 people Attended And they...agread to do with out Sugar Tea & Coffe...Before we Ajurned one moved that the Tea be thrown over Board witch was Carried Unanimes…our men are going well at the Suthard they have gained Anothe victory over the ingins killd 250...Good news Just Arrived there is An embarg Laid." + + + + + + + 1813 December 24 + + . William Reed ALS; Washington, [D.C.]. + + + 2 pages + + Regarding Madison’s administration; "We have not the slightest estimation of a change of Temper in the Administration - or…from any quarter. A gloomy stupidity seems to pervade them on every question of general policy. no business of importance has been undertaken in either house since the passage of this suicidal Embargo - The Absence of the Secy of War checks any efforts for correcting or improving that Department." + + + + + + + 1813 December 25 to 1814 January 3 + + . United States Army. 5 Manuscripts. + + + 5 pages + + Regarding payment for use of the Mohawk and Seneca Turnpike and passage over the Cayuga Bridge. + + + + + + + [1813] + + . John McNiel, Jr. Cy to Francis Cogswell. + + + 1 page + + Regarding military accounts and infantry regiment recruitment; "officers on the recruiting service must be…careful not to enlist…disordered persons…" + + + + + + + [1813] + + . Zenas Stebbins ALS to John T. Apthorp. + + + 2 pages + + Requesting pay; "Please to pay…the money that is dew to me for transporting my Pieces to [Amherst]…" Includes list of 59 soldiers in Stebbins' company of Massachusetts Artillery. + + + + + + + 1813 + + . 10 Manuscripts. + + + 13 pages + + Receipts, etc. + + + + + + + 1813 + + . 4 Manuscripts. + + + 6 pages + + Accounts. + + + + + + + 1813 + + . 15 Manuscripts. + + + 15 pages + + Receipts. + + + + + + + 1814 January 8 + + . Joseph Wiggin ALS to James Monroe; New York, [New York]. + + + 3 pages + + Regarding the attempt to obtain a passport; "I came to this City from Barton for to embark…for England, being informed that Govt would not be very - particular, in giving passports, under circumstances which had no connection with political events, and where necessity required the same." + + + + + + + 1814 January 12 + + . Rawstorne Wilson and Wilson ALS to Rowson and Son; Preston. + + + 1 page + + Regarding supply vacancies in the local militia. + + + + + + + 1814 January 17 + + . S[amuel] T. A[nderson] ALS to [Selina Anderson]; Schenectady, [New York]. + + + 2 pages + + Unhappy being away from home, "but afraid to return unless I can tell the Sec[retar]y of the Navy that the business he sent me upon, is freely and properly executed." Recent snowfall enables them to retrieve "guns and heavy articles" from Rhinebeck. Still awaiting orders from Commodore [Isaac] Chauncey (1772-1840), "about cordage to be made at Albany." "My wish- anxiety- desire- to see you is greater than I can tell you." Made the acquaintance of a Frenchman, De Launay, "a near connexion of the Gentleman of that name who was governor of the Bastile." Notes De Launay's dislike of the Bonaparte government and his emigration to America to escape it. "Buonaparte according to his opinion, draws near the close of his tyrannical career, and Europe to the end of her miseries." Will try to get more evidence concerning his title to his grandfather's property in Scotland. + + + + + + 1814 January 18 + + . Samuel Tupper ALS to Augustus Porter; Le Roy. + + + 3 pages + + Describes the burning of the city he was in; "I send you few Papers enclosed herewith which are all that I saved from the flames…I arrived at Buffaloe four daus before it was burnt with all my Papers Packed…" + + + + + + + 1814 January 19 + + . Philip Mathewson ALS to Jeffery Mathewson; Hamilton, [New York]. + + + 3 pages + + Discusses movement of local militia, describes sickness in the community, prices for food; "our militia here have been called out this fall Destined for Sackets harbour & ware marched to Brown Ville ten miles this side the harbour…" + +

    Original located in the Mathewson family papers.

    +
    +
    +
    + + + + + 1814 January 25 + + . William Jones LS to Thomas Manning and James Shapley; Treasury Department [Washington, D.C.]. + + + 3 pages + + Concerning the bounty of 21 prisoners captured and brought in by the vessel Fox, "as allowed by the act of the 2d of August last. It is considered that this bounty is not payable except upon prisoners as well captured, as brought in and delivered over, after the date of the act." Requests proof that the capture was made after August 2nd, and evidence of their being authorized to receive the money "in behalf of the owners, officers, and crew of the Fox when it will be paid." + + + + + + + 1814 January 30 + + . Benjamin Polk DS; Fort Strother [Alabama]. + + + 1 page + + Account regarding 3 muskets; accepted by Polk on October 26, 1816. + + + + + + + 1814 February 3 + + . Gordon Drummond DS. Kingston, [Canada]. + + + 10 pages + + Proceedings of the Court Martial of Israel Elsworth for deserting the 2nd Regiment Leed’s Militia. Lists the members of the Court Martial. Includes Elsworth’s testimony describing his settlement in Canada, his draft into the militia, and efforts by Doctor Schofield to acquire his farm. Schofield stated he held a commission in the militia and had authority, that "the people of the States would overcome the British Government in Upper Canada," and thus Elsworth could return to the United States. Signed by Edward Walker and John Ferguson, Judge and President of the Court Martial. Approved and signed by Gordon Drummond. + + + + + + + 1814 February 6 + + . Henry Burbeck ALS to Constant Freeman; New London, [Connecticut]. + + + 1 page + + Drawing rations; "Will you inform me whether General [Thomas] Cushing draws double rations for the command of the District, or the Commanding Officer of Fort Independence and wether he [signs] a Certificate on his subsistance Account to this effect." Burbeck certifies that he was the commanding officer at Independence and that the pay master has a certificate to that effect. + + + + + + + 1814 February 11 + + . Thomas Tingey LS to James Beatty; Navy Yard, Washington [D.C.]. + + + 1 page + + Refers to items for John Cannon for two sloops; enclosed are Cannon's receipt for "Sundry articles forwarded by his Waggons for the two sloops…The boxes & Barrels being Masked with their contints." He will write two captains designating what is intended for each. + + + + + + + 1814 February 13 + + . James Wilkinson LS to Thomas A. Smith; Camp French Mills [Covington, New York]. + + + 2 pages + + Plan to attack Prescot and Kingston, encloses an order regarding a change of command, and congratulates Smith on his promotion. "You are to understand that all the movement in and from this quarter have been directed by the Secretary of War, at the very time I had nearly completed my arrangements to Storm Prescot and attack Kingston." + + + + + + + 1814 February 14 + + . [Ragan V. Radis?] ALS to William Rhinelander & Co. + + + 1 page + + Sugar market is doing poorly. "Our Sugar Refiners have generally stopt working." Notes prices for loaf sugar, lump sugar, and molasses. Hopeful that molasses may have better sales soon, but "as our market so much depends on our political affairs makes it impossible for us to say what it may be in the spring." + + + + + + + 1814 February 18 + + . John Todd ALS to Francis Catterson. + + + 2 pages + + Request for money; "I stand in Need of a few Dolars I wish you to Send to me Eight or ten by James and Charge it to my account…" Includes receipt on back signed by James Todd stating that ten dollars was received. + + + + + + + 1814 February 21 + + . William Onderdonk, Jr. ALS to Henry F. Jones; New York. + + + 3 pages + + Bill for a schooner and news of its capture; "You will receive enclosed the bill…for Schooner Attach & cargo amounting to $255…I am very much mortified to inform you of the capture of this Schooner, & what renders it the more mortifying, is, that she was taken up the river Mississippi 12 miles above the bar & after she had passed Fort Charles, from which one Shabby General Flournoy thought it expedient to withdraw his men, which gave the enemy an undisturbed possession of the river..." + + + + + + + 1814 March 5 + + . Alexander Stewart ALS to Sir Phineas Riall; Fourteen Mile Creek [Indiana]. + + + 2 pages + + Intelligence of a British military defeat [the Battle of Longwoods]; "I regret that our Loss is very considerable." Mentions [William] Caldwell's Rangers and dealings with Native Americans. + + + + + + + 1814 March 7 + + . Sir Phineas Riall ALS to Sir Gordon Drummond; Niagara Frontier. + + + 2 pages + + Intelligence of military defeat [the Battle of Longwoods]; encloses a report made by Captain [Alexander] Stewart. "I regret to say that our loss has been very great considering the Numbers we had engaged, and that notwithstanding the Gallantry displayed on the occasion they were obliged to retire owing to the very superior Force of the enemy." Folder includes a one-page ADS return of casualties from Alexander Stewart dated March 5, 1814. + + + + + + + 1814 March 10 + + . R[uggles] Hubbard ALS to Thomas H. Hubbard; Albany, [New York]. + + + 3 pages + + Anti-Federalist, Hawkish political sentiments; "I eat no 'dirty bread…from the Stagnant pools & ditche of the Commonwealth' and am a minute man to take up arms as before against Madison and in favour of a Northern President." + + + + + + + 1814 March 11 + + . James Simpson ALS to William R. Smith; Huntingdon. + + + 1 page + + List of militia men in the Second Company of the 33rd Regiment who failed to perform military service; "who being notified to meet at Alexandria on the thirteenth of April 1813 to perform a tour of Duty in Service of the united States and Did not perform Said tour nor Send Substitutes." + + + + + + + 1814 March 21 + + . Joseph Loring DS to Samuel Hodges; Boston, [Massachusetts]. + + + 2 pages + + Orders addressed to Lt. Hodges and Lt. Manning; Hodges will relieve Lt. Lewis until further orders, and Manning will proceed with recruits to Captain Tillebrown's Company and eventually join a force under the command of Major Putnam. Includes orders to other men. + + + + + + + 1814 March 26 + + . Will Williams DS to [James] McCloskey; Detroit. + + + 1 page + + Requesting the bearer of the note be paid twelve dollars "for forty two pounds of sugar for the use of the Hospital." + +Signed by Will Williams, Hosp[ita]l Surg[eon] Mate. With United States DS to Kebiasse; Detroit; 1 page; March 26, 1814. Receipt for $12 paid by the United States government to "Kebiasse an indian" for 42 pounds of sugar to be used in the Detroit hospital. + +Acknowledges receipt of the money from James McCloskey, A[ssistant] D[eputy] Q[uarter] M[aster] G[e]n[era]l. + +Includes Kebiasse's mark, witnessed by John Roby. + + + + 4 + + + 1814 April 9 + + . Alexander Macomb ALS to Thomas Macdonough. + + + 2 pages + + News from General Wilkinson; he has been informed "that the enimy meditate some enterprizes on the lake with their flotilla." Requests that Macdonough inform him of his situation and he will try to protect him from the enemy's enterprizes. He can bring 1000 men into the field in case of attack. + + + + + + + 1814 April 13 + + . United States Treasury Pr. DS to Richard Cairns. + + + 1 page + + Pay of Richard Cairns, a corporal in Captain Joseph Cairns' Company of the 27th U.S. Infantry Regiment. He was "regularly discharged on the 6th day of April 1814 his term of service having expired on the 29th day of March 1814." + + + + + + + 1814 April 19 + + . Edmund Pendleton Gaines ALS to Dr. Thomas; Sackett's Harbor, [New York]. + + + 2 pages + + Orders to report to Major Hindman of the 2nd Artillery to serve as surgeon "until he shall be supplied with a surgeon or s. mate." + + + + + + + 1814 April 25 + + . John Armstrong LS to William Jones; War Department. + + + 2 pages + + Regarding Detroit and Michigan, army movements; "Should the Enemy reinstate himself on the Eastern-banks of the Detroit and the Huron - it's return would necessarily be much jeopardized. On the 27th Ultimo there was no force of the Enemy within 130 miles of the Detroit." + + + + + + + May 7, 1814 + + . James Gibson ALS to Callender Irvine; Lancaster, [Pennsylvania]. + + + 1 page + + Drawing money from the banks; he sends a check for Captain Irvine for $4,500, "which I wish him to get in American gold or Eastern Notes, as I am informed that Drafts on the Banks in [Philadelphia], or Notes, will not pass among the Yankees without a discount." Inquires on the best way to send him the money should he have already left Philadelphia. + + + + + + + 1814 May 13 + + . Alexander Neef ALS to Andrew W. Bell; Cantonment Plattsburg [New York]. + + + 3 pages + + Account of his expedition into Canada; "the British fleet have Gone towards the head of the lake, probably their intention is to Blockade our fleet…" He describes the make-up of both British and American forces, and expects American victory on the lake is the force is ready for the lake. Expects to be ordered to the recruitment service soon. + + + + + + + 1814 May 26 + + . Lemuel Trescott DS to Francis Haskell; District of Passamaquody, [Maine]. + + + 1 page + + Document certifying Haskell's American citizenship. + + + + + + + 1814 May 28 + + . Samuel Franklin ADS; Portland, [Maine]. + + + 1 page + + List of British prisoners on the schooner Mammoth. + + + + + + + 1814 May 31 + + . John Armstrong, Jr. LS to Isaac Shelby; War Department. + + + 1 page + + Shelby has been appointed a commission to treat Cass with North Western Native American’s; "In this mission you will be associated with General Harrison and Governor [Lewis] ." Harrison will decide the time and place for the commission to meet with them, "and you will please to communicate with him for that purpose." + + + + + + + 1814 June 3 + + . Samuel Franklin DS; Portland, [Maine]. + + + 2 pages + + Report of British prisoners brought to Portland by the schooner Mammoth, "whereof Samuel Franklin is master." Includes such information as name, rank, from what vessel captured, and national affiliation. + + + + + + + 1814 June 16 + + . Alexander Neef ALS to Andrew W. Bell; Champlain. + + + 3 pages + + Eyewitness account of the Second Battle of Lacolle Mills; "the enemy were completely vanquish'd, and only waited a summons from our Genl. to have surrendered…" + + + + + + + 1814 June 19 + + . Sir Phineas Riall ALS to Sir Gordon Drummond; Fort George. + + + 1 page + + Captain Norton has requested that wampum to be transmitted to "His Excellency the [Commander] of the Forces." Includes a 4-page ALS report of affairs from Riall [to Drummond] regarding Upper Canada and relations with Five Nations + + + + + + + 1814 June 20 to 1814 December 20 + + . Andrew Jackson ADS; Fayetteville, [Tennessee]. + + + 1 page + + Muster Roll of a company under James Blackemore. + + + + + + + 1814 June 21 + + . John Armstrong, Jr. LS to John H. Piatt; War Department. + + + 1 page + + Referring to him request for supplies for prisoners of war; "The Commisary General for Prisoners of War has applied to this Department to furnish rations for the prisoners on their march to the frontier, and has been referred to you for such suplies as he may require - the amount of which must be charged to him, as the prisoners are not supplied by this Department." + + + + + + + 1814 June 24 + + . Abel Boynton ALS; S[ackett's] Harbor, [New York]. + + + 1 page + + Concerning the paying of troops and debts, and references the British blockade. + + + + + + + 1814 June 25 + + . John H. Sheppard ALS to Mrs. S. Sheppard; Wiscasset, [Maine]. + + + 3 pages + + Discusses English prisoners brought to town and the inability of the British to land; there is "general alarm excited on this coast & particularly…by English Ships & barges." Includes a small map. + + + + + + + 1814 July 7 + + . George Izard ALS to Thomas A. Smith; Camp near Plattsburg, [New York]. + + + 1 page + + Concerning Col. Tobias Lear, commissioned to arrange a prisoner exchange. The British commander that he is supposed to meet with "has been delayed at Albany, but will probably arrive in the Course of two or three days..." He is surprised that he has not seen more deserters. + + + + + + + [1814 July 11] + + . Ms. Cy; Eastport, [Maine]. + + + 2 pages + + Article of Capitulation for the surrender of Moose Island, Maine. + + + + + + + 1814 July 16 + + . Richard W. Lawrence AL to John L. Lawrence; Lisbon, Portugal. + + + 3 pages + + Concerning the forthcoming Congress of Ghent; "As a young Diplomatist it would be certainly very desirable to be present at the Congress at Ghent; but it is apprehended here by many of our Countrymen that out Commisioners will have little else to do in that business than to sign such a Treaty as their opponent may think proper to form for them..." + + + + + + + 1814 July 22 + + . Samuel Dickinson DS to Elijah Dickinson; Bermuda. + + + 9 pages + + Regarding loss of the schooner Swan & Eliza; also includes an invoice of goods shipped on board the ship dated January 16, 1814. + + + + + + + 1814 July 26 + + . Eben[ezer] Judd ALS to Hubbard Grave. + + + 1 page + + Beacon light warning system has been ordered by the Captain General to be set up in case of British attack; he mentions them being set up in multiple towns along the sea board, including Long Hill [Connecticut]. + + + + + + + 1814 July 27, 1814 September 15, and 1815 March 2 + + . John Le Counter 3 ALsS to William Robinson; Queenston, Chippewa, and Montréal, [Quebec]. + + + 11 pages + + Regarding the Battle of Lundy’s Lane. + + + + + + + 1814 August 7 + + . Sir Henry Edward Bunbury ACyS to Lord Bathurst. + + + 8 pages + + Bunbury, the Under-Secretary of State for War and the Colonies, provides his reasons for objecting to the proposed expedition to New Orleans; "I now venture to submit to you…the principal reasons which incline me to think that it would be better & safer for The King's Service that the Enterprize should be deferred." + + + + + + + 1814 August 10 + + . J[oseph] Williamson ALS to Norman Williams; Bangor, [Maine]. + + + 3 pages + + People of Maine anxious for peace suffering from blockade. Coastal towns threatened with invasion. Comments on Brown’s victory and mentions that "I have but little hopes of peace since the downfall of Bonaparte." + + + + + + + 1814 August 20 + + . Nathaniel Taylor ALS to Patrick Taylor; Kingston, [Ontario]. + + + 4 pages + + Describes march under hard conditions from Montreal to Kingston; "the Commander of the Forces was at Montreal when we arrived & saw us next morning in a field adjaecent to the Town: it is a large papulous fine Town with good streets & regular: plenty of everything but the war makes all things extremely dear." + + + + + + + 1814 August 30 + + . [Manuel Eyre] ADf to [William Jones]. + + + 5 pages + + Report and resolutions from the Committee for the Defense of Philadelphia; "we are authorized to call upon you for such aid in resisting any attack from the enemy as will be consistent with the duties of your department to grant considering the aid of Naval resources and the personal services of the Officers seamen & Marines..." + + + + + + + 1814 August 30 + + . Edmund Palmer ALS to John Wilson Croker; HMS Hebrus on the Patuxent [Maryland]. + + + 2 pages + + Regarding the burning of War Department in Washington and a model of field magazine saved from destruction; "At the destruction of the public Works at Washington, it fell to me to burn the War Office, and amongst two or three things which I saved from the flames, is the accompanying model, which appears to be intended as a kind of field magazine for powder." + + + + + + + [post 1814 August] + + . Schuylkill and ---- Counties, [Pennsylvania] Df; [Pennsylvania]. + + + 3 pages + + Meeting minutes; draft of resolutions regarding British depredations and county offices, decries the conduct of the British military, particularly in the burning of Washington. Resolutions include establishing a Committee of Correspondence and the election of "two Candidates for Congress, eight Candidates, for the General Assembly of this Commonwealth and six Candidates for Auditors of this County." + + + + + + + 1814 September 1 + + . National Intelligence Pr. Document; Washington, D.C. + + + 4 pages + + 1870s newspaper of material related to War of 1812 taken from a National Intelligence Officer. Includes an account of the capture of Washington and the Battle of Fort Erie. + + + + + + + 1814 September 2 + + . William Onderdonk ALS to Henry F. Jones; New York. + + + 2 pages + + Camp life; "I asure you we presented rather a formidable appearance, we were under arms the whole day & marched about five or six miles…we are now in the service of Uncle Sam…I have been with our company to work & the fortifications at Harlaem; in a short time we expect to have an army of militia in & about this city of nearly twenty five thousand men." + + + + + + + 1814 September 10 + + . State of Rhode Island Document to Asahel Hawkins; Gloucester, Rhode Island. + + + 1 pages + + Receipt of 57 cents for tax upon Hawkins' property, "under the act of congress passed the 2d August, 1813, to lay and collect a direct tax within the United States." + + + + + + + 1814 September 11 + + . Henry Sewall ALS to Samuel Payson; Augusta, [Maine]. + + + 1 page + + Troop movements in Maine; he has sent orders for troops to march for Wiscasset and for three regiments to follow them. "On their arrival they will take orders from Gen. Payson or King as the case may be." + + + + + + + [post 1814 September 11] + + . Manuscript poem. + + + 1 page + + Poem regarding Thomas Macdonough’s naval victory on Lake Champlain aboard his ship, the Saratoga. + + + + + + + 1814 September 12 + + . Thomas Gooding ALS to Eben Parsons; Boston, [Massachusetts]. + + + 1 page + + Discusses people fleeing Boston and the likelihood of British attacking the city; "For my own part I do not fear it for many reasons. The Object is so small (say the destruction of the Navy Yard & the two Ships of War) the British would never be willing to sacrifice 3 or 4000 Men to accomplish it..." If in fact it does occur, he hopes it would not take place for at least 48 hours, in which time they could have the [hulks] sunk. + + + + + + + 1814 September 14 + + . Francis L. Coxe ADS; Philadelphia, [Pennsylvania]. + + + 1 page + + Committee of Defense request to Secretary of the Navy [William Jones] to allow seamen to remain in the city. Also requests guns and ammunition. + + + + + + + post 1814 September 14 + + . Manuscript song. + + + 1 page + + "The Battel of Baltimore" set to the tune of Yankee Doodle. + + + + + + + 1814 September 15 + + . Jacob Wentz DS to David Thomas. + + 1 page + + Orders to march to the Delaware; "you are hereby required personally or by a sufficient substitute, to appear properly armed and equipped…for service, at [Flourtown]…to march immediately for the Delaware." + + + + + + + 1814 September 18 + + . Zenas Stebbins DS; Blechertown, [Massachusetts]. + + + 1 page + + Provision return for company of artillery; includes table of the number of men per rank, number of days, and number of rations. + + + + + + + 1814 September 21 + + . Zenas Steebins DS; Blechertown, [Massachusetts]. + + + 1 page + + Provision return for company of artillery; includes table of the number of men per rank, number of days, and number of rations. + + + + + + + 1814 September 22 + + . U.S. Heath ADS to Joseph Hopper Nicholson + + + 1 page + + Orders to attend sermon by Dr. Inglish offering thanks for divine protection in the battle of Baltimore; Inglish had offered his church to officers and delivered a sermon to the 1st Regiment of Artillery. Troops will parade on Washington square. + + + + + + + 1814 September 23-November + + . Ms. receipt, Ms. map, and Ms.; [Pea Patch Island, Delaware]. + + + 3 pages (total) + + One-page bill for alcohol, food, lodging, horse fodder, captives, drivers, doctors, and others. + +Includes a pencil manuscript map: + +"Drawing of 'Peapatch' fortification area on Delaware R in Pa Nov 1814." + +Also includes a one-page "Draft of proposed fortifications at Pea Patch," describing the architectural processes of creating bastions and expected dimensions. + + + + + + 1814 September 24 + + . Thomas W. Morris ALS to Ann W. Morris; Camp Brandywine. + + + 2 pages + + Camp life; he has started his duties as secretary, and "this day received the agreeable intelligence of the victory at Erie the late victories has had a great effect on the Men & sight of the English is anxiously wished for…" + + + + + + + 1814 October 2 + + . Henry Denison ALS & 3 Documents to A. Glennie, Son and Co.; Ashburton [London, England]. + + + 8 pages + + Speculates on the status of 45 American prisoners on board the Cartel St. Philip, requests an order of clothing for those about to embark. Includes list of supplies for "the supply of Prisoners belonging to the U.S. Navy, about to embark for the U. States in the Cartel St. Philip," including blankets, trousers, and jackets. With three documents with names of Dartmoor prisoners and money and clothing given to them. + + + + + + + 1814 October 6 + + . New York State Militia 20th Regiment AD; Sackett’s Harbor, [New York]. + + + 1 page + + Payroll for a company of New York Militia commanded by Capt. Ira Hills of the 20th New York Regiment, commanded by Reuben Elinwood. + + + + + + + 1814 October 9 + + . John S. Noble DS to John Chaffee; Springfield, [Massachusetts]. + + + 2 pages + + Receipt for eleven balls of cannon powder "at the US Arsenal Charlestown." + + + + + + + 1814 October 14 + + . B[enjamin] Burton ALS to Lady [Catherine] Burton; Chippawa, Head Quarters, Right Division of the Army, Upper Canada. + + + 3 pages + + Lieutenant in the British Army's 19th Light Dragoons writing to his mother in Ireland. Requesting leave, "I should have made the application long since had it not been rarity for the Campaign to break up." Describes battle at Fort Erie on September 17, 1814, as the Americans attempted to break the British siege. "…think we are likely soon to have a nother bloody Battle such as we had at Lundys Lane." Brief mentions of the Battle of Lundy's Lane, Battle of Chippawa, the "storming of Fort Erie," and picket duty. "… although the War has not been much in our favor this Campain there is a very great talk of Peace which every one says must take place before it is long, that Americans must see the folly of keeping up the War." + + + + + + 1814 October 18 + + . Andrew Jackson Cy to William Lauderdale; Mobile, [Alabama]. + + + 3 pages + + Orders for the inspection of forts; three forts he will proceed to are Forts Claibourn, Jackson, and Williams. + + + + + + + 1814 October 25 + + . Joseph Williamson ALS to Norman Williams; Bangor, [Maine]. + + + 3 pages + + Mentions the Battle at Hampden and British invasion. Describes hand picked British invasion force, British officers and the British burning the town on leaving; "great war operations have been going on in the Eastn. Section - operations which have...assailed the interests of individuals & endangered their personal security. The situation of the inhabitants, when the war is brought to their very doors, cannot fail of being more or less distressing." + + + + + + + 1814 October 29 + + . G. Wheeler ALS to Mary Wheeler; Harlan Heights, Pennsylvania. + + + 3 pages + + Discusses health, camp life; "the Men are getting Sick very fast. The Barracks are so open that we are obliged to send our Sick to the General Hospital…except those that are able to procure themselves private Lodging." + + + + + + + 1814 October 29 + + . Maria Ross ALS to George Cockburn; London, [England]. + + + 3 pages + + Discusses misfortunes from the war. + + + + + + + 1814 October 29 + + . James Monroe LS to Callender Irvine; War Department. + + + 2 pages + + Orders to find smuggled goods; "if it should appear that the blankets have been smuggled, you will have them seized." Irvine is to send the Department an estimate of the appropriations his department will need for the coming year. + + + + + + 1814 October 29 + + . U.S. Army General Hospital DS; Baltimore, [Maryland]. + + + 1 page + + Order for five cords of firewood. + + + + + + + + 1814 November 4 + + . Samuel Ranlet DS to ; Edgecomb, [Massachusetts]. + + + 2 pages + + Muster roll for the Massachusetts company of artillery under Captain Samuel Ranlet. + +

    Located in Oversize Manuscripts.

    +
    +
    +
    + + + + 1814 November 8 + + . George Wilson DS. + + + 1 page + + Account certifying that Wilson delivered the items listed (rations of pork, flour, and whiskey) to Antoine Boidon, "Patronizing the said James Morrisons Boat loaded with provisions destined for the Port of France…" + + + + + + + 1814 November 11 + + . New York State Militia 20th Regiment. Pr. Document & 2 ADs. + + + 4 pages + + Muster roll and pay receipt under Capt. Ira Hills; includes notes on deserters and those discharged. Folder includes two pay receipt rolls for the regiment. + + + + + + + 1814 November 15 + + . United States Army ADS to Col. Fisk; Portsmouth, [New Hampshire]. + + + 1 page + + Military discharge, orders by Brigade Major James [Swan] which include paroling McDonough. + + + + + + + 1814 November 18 + + . Sir George Prevost LS to Sir Gordon Drummond; Montreal, [Quebec]. + + + 2 pages + + Military strategy against General McArthur, hopes of setting up American troops as prey to Indian attacks, orders to burn American mills; "I am in hopes the force under General McArthur will…fall a sacrifice to the exertions of the Indians supported, as I trust they will have been by every possible assistance..." Because the Americans have destroyed British mills, he orders Drummond to "direct the Troops under your Command no longer to abstain...from burning the Mills in the Enemy's Country..." + + + + + + + 1814 November 23 + + . Joseph McGavock ALS to Hugh McGavock; Camp near Buffalo. + + + 3 pages + + Discusses his company's involvement in the Battle at Chippewa, summarizes the Niagara Campaign. He recounts a duel; "there was a Duel fought yesterday between Doct Dade of the tenth, and Capt James Paxton, of the twelveth, Dade was Killed Dead on the spot, and Capt Paxton Mortally wounded through the body." + + + + + + + 1814 December 17 + + . Charles Carroll ALS to Robert G[oodloe] Harper; Baltimore, [Maryland]. + + + 2 pages + + Hopes to see a body of troops raised by the state; "It is much to be desired to have a body of regular troops raised by the State for its defence but I fear the means will be wanting to raise and pay a competent number." + + + + + + + 1814 December 22 + + . John Coffee DS; New Orleans, [Louisiana]. + + + 1 page + + Order to pay $8 for an express rider to take dispatches to Maj. Gen. [Andrew] Jackson. Includes confirmation stating that "The above Services were performed as charged and aught to be paid." Includes receipt dated February 22, 1815, stating that the $8 was received in full. + + + + + + + 1814 December 23 + + . William King ALS to Henry Dearborn; Boston, [Massachusetts]. + + + 3 pages + + Regarding troop movements and militia. + + + + + + + 1814 December 30 + + . Lt. Blackshear ALS to John McIntosh; Camp on Oakmulgee Creek. + + + 2 pages + + Discusses marching, during which he detached two companies to clear a road and make a bridge. + + + + + + + [1814 to 1815] + + . 2 Manuscript notebooks. + + + 33 pages + + Two notebooks about United States privateers and warships; one is nine pages in length, the other is twenty four. The nine-page manuscript is entitled, "A Journal of Privateers & U.S. vessels That Sailed from the United States In 1814 or a part of them." + + + + + + + 1814 + + . Committee of British Merchants Document. + + + 55 pages + + Letter, minutes, and a printed appendix addressed to Sir George Prevost. The minutes suggest new boundaries and provide suggestions pertaining to American forts and vessels. + + + + + + + 1814 + + . Connecticut Adjutant General’s orders Pr. Document; Connecticut. + + + 1 page + + Broadside announcing that the captain general "is informed that doubts are entertained" whether officers of the militia are allowed to discharge commissioned officers; he believes that late Governor Trumbull's orders delegating this authority to the General Officers have not been revoked. He reminds officers of the stipulations under which discharges are acceptable. Includes writing from Ebenezer Huntington regarding returns of militia and list of [officer's] names that need to be sent to his office. + + + + + + + 1814 + + . 4 Documents. + + + 7 pages + + Receipts. + + + + + + + [post 1814] + + . Unknown AL to Unknown. + + + 4 pages + + Incomplete account of an individual’s military exploits during the War of 1812, including the Battle of Sackett’s Harbor. Born in Pennsylvania in 1786, the writer includes a brief autobiography. He joined the army as a 2nd lieutenant in the 15th Infantry under Col. Pike. + + + + + 5 + + + 1815 January 2 + + . George Washington Campbell ADfS to John Armstrong; Nashville, [Tennessee]. + + + 3 pages + + Comments on economic situation, the destruction of naval forces near New Orleans; "Our gun boats on the lakes near N. Orleans have been taken or [destroyed]…Will England make peace, if not…by the result of the Congress at Vienna?" He requests to information on political affairs. + + + + + + + 1815 January 9 + + . Joseph S. Winter ALS to Elisha I. Winter; New Orleans, [Louisiana]. + + + 7 pages + + Discusses the Battle of New Orleans; "The British yesterday made a grand assault upon our Works and were repulsed with a most unprecedented loss on their side of killed & wounded & there is an armistice until 12 o'clock today for them to bury their dead…" + + + + + + + 1815 January 12 + + . Joseph S. Winter ALS to Elisha I. Winter; New Orleans, [Louisiana]. + + + 4 pages + + Describes the Battle of New Orleans; "never was there an action wherein one side suffered so much and the other so little we having lost but six men killed and nine wounded & the British lost at least 1500 killed wounded & prisoners…" Includes a breakdown of the British troops that are killed or imprisoned (wounded and unwounded). + + + + + + + 1815 January 18 to 1815 January 19 + + . T. Searl ALS to Lucy Searl; Alexandria, [Virginia]. + + + 3 pages + + Recounts his various experiences with Virginians. + + + + + + + 1815 January 19 + + . Caesar Augustus Rodney ALS to Thomas Macdonough; Senate Chamber, Dover, [Delaware]. + + + 2 pages + + Regarding Thomas Macdonough’s victory over the British fleet on Lake Champlain. + + + + + + + 1815 January 21 + + . Thomas Hamilton ALS to Farish Carter; Camp 5 miles below Hartford, [Georgia]. + + + 1 page + + Delivery of rations to Hartford; "Circumstances make it necessary that you should immediately turn your attention to the delivery at Hartford of thirty thousand Complete Rations Contemplated in a requisition…and as I am ordered to operate within the Settled limits of Georgia you will take Such Steps...to keep the Detachment...constantly furnished with thirty thousand Rations." + + + + + + + 1815 January 24 + + . U.S. Army Brigade under Coffee DS; Camp Coffee. + + + 1 page + + Report of the Brigade under John Coffee, signed by Joel Parrish Jr., "Brig Inspector." + + + + + + + 1815 January 30 + + . Joseph Bradley Varnum LS to George Thacher; Washington. + + + 32 pages + + A U.S. Representative from Massachusetts and staunch supporter of the war, Varnum defends the Republicans [Democratic-Republicans] from Thacher's charges against them. Folder includes Lawrence Kaplan's 1964 “A New Englander Defends the War of 1812." + + + + + + + 1815 February 4 + + . James Morrison ALS to Charles Simms; Washington. + + + 2 pages + + He is attempting to find transportation for the Kentucky Troops ordered to back-up Jackson’s Army. Discusses matters concerning his finances and his landlord receiving payment. + + + + + + + 1815 February 6 + + . Garrigues de Flaujac ALS to Andrew Jackson; New Orleans, [Louisiana]. + + + 2 pages + + Regarding Garrigues brigade of militia (in French). + + + + + + + 1815 February 13 + + . S[tephen] Chase ALS to Stephen Chase; Baltimore, Maryland. + + + 5 page + + Son's letter to his father, regarding previously requested advice on a commission in the army. Discussion of Maryland troops and business in Baltimore versus that in Maryland. Celebrations in Baltimore in response to news of peace. + +

    Original located in the Duane Norman Diedrich Collection.

    +
    +
    +
    + + + + + 1815 February 23 + + . James G. Almy ALS to John C. Almy; Savannah, [Georgia]. + + + 3 pages + + Regarding preparations to defend Savannah; moving women, children, books, and papers out of harm's way. Almy states that he has been in poor health, but that he would have been ready to fight, except for the news of "peace since Cockburn took St. Mary's". He further notes that the loss of "a large slave population and fear of a general insurrection has caused us a great solicitude and anxiety - upwards of 600 prime slaves have been taken off by those ruffians, and enormities committed that would disgrace Cossacks or barbarians." + + + + + + + 1815 March 2 + + . Martha Shackelford ALS to Abby P. Manning; George Town, [South Carolina]. + + + 3 pages + + Thanks to God for the end of the war; "as the blessing of Peace is once more restored to our Happy Land…may we be a Grateful people and know how to appreciate its Value…" Describes the celebration, includes lines from the hymn Thanksgiving for Victory Over Our Enemies. + + + + + + + 1815 March 8 + + . Thomas Nicholls ADS; New Orleans, Louisiana. + + + 2 pages + + Statement concerning the worth of Major David Abbot’s horse, which was killed in battle by a cannon ball; it was worth $150. Abbot served with the 3rd Regiment of Tennessee Militia. + + + + + + + 1815 March 6 + + . J.L.C. Hardy ALS to William Moultrie Reid; New Orleans, [Louisiana]. + + + 3 pages + + Regarding a skirmish fought after the Battle of New Orleans; "I have now to inform you of a very narrow Escape I had of being made a prisoner by the English…"Of the battle, "they had to lament the loss of two of their first Generals & other Officers & about 6,000 men - our whole loss was only about 200 or 300 men..." + + + + + + + 1815 March + + . Louisa C. Shaw ALS to Sir George Cockburn; Cumberland Island, [Georgia]. + + + 2 pages + + Letter of thanks and goodwill. + + + + + + + [ca. 1815 March] + + . AMs; s.l. + + + 2 pages + + List of sixteen "Prisoners," deserters from the U.S. Army, coming from six different infantry and two artillery units. Lists names, charges, promises for good behavior and payment of costs, and occasionally notes the reasons for desertion and punishments. Names of deserters include: Solomon Avery, Luther Brooks, Levi Cass, William Granger, William Hall, David Heath, Moses Heath, Samuel Hilton, Johnson Lovering, William McIntire, Moses Meeder, Samuel Merrick, William Miles, William Rines, Samuel Tibbets, and David Tucker. Reasons for desertion include family and personal illness, financial distress, following the "advice of his Father, being under age," and ignorance of the law. + + + + + + 1815 April 5 + + . Caesar Augustus Rodney, Jesse Green, and Cornelius F. Comegys LS to [Thomas Macdonough]; Dover, [Delaware]. + + + 4 pages + + Enclosing resolution of the Senate and House of Delaware concerning Macdonough’s victory on Lake Champlain, "expressing, on their behalf, their sentiments & feelings, on the subject of your late engagement, with a superior fleet of the enemy, on Lake Champlain." Folder include two page resolution dated February 10, 1815 from the Delaware House and Senate. + + + + + + + 1815 April 5 + + . John Thomas DS to John Newman; Natchez, [Mississippi]. + + + 2 pages + + Addressed to Maj. Genl. Andrew Jackson, an order for two dollars to be paid to Newman. Includes receipt on the back stating that Col. John Davies delivered the money. + + + + + + + 1815 April 16. + + . H[unter], M.A. ALS to George W. Hunter; New Orleans, [Louisiana]. + + + 3 pages + + News in New Orleans; "I was going to congratulate your mother upon the Peace, but the news of it was so soon followed by that of the war with Algiers, that I could not have that pleasure." Offers encouragement should Hunter be sent there. They arrives just as Jackson was departing; "he is almost idolised here particularly by the ladies..." + + + + + + + 1815 April 17 + + . Edmund Pendleton Gaines ALS to James Taylor; New Orleans, [Louisiana]. + + + 2 pages + + Regarding the Battle of New Orleans; "the place has been saved, the British Army covered with everlasing Shame, and ours with imperishable glory - General Jackson's name is immortalized - peace is restored." + + + + + + + 1815 June 13 + + . [James] Hall ALS to Thomas I. Wharton; Boston, [Massachusetts]. + + + 3 pages + + Discusses Bostonians' lack of regard for officers; "I am heartily sick of Boston…The people here look upon officers with disgust and terror - No gentleman who has a virgin daughter invites one willingly to his house - They seem to think we will exercise the right of Search upon all female bottoms..." Mentions being present at Governor [Caleb] Strong's induction into office. + + + + + + + [post 1815 October] + + . U.S. Army. Document. + + + 1 page + + Memo respecting Sergeant Gardiner’s appeal; the Captain General had been authorized to discharge commanding officers and sergeants "and to delegate this power to such subordinate Officers as he might think proper…The Act passed in [October] 1815 gave no such right of delegation respecting Sergeants..." + + + + + + + 1815 November 20 + + . James McCloskey ALS to [William Harris Crawford]; Quarter Master General’s Department, Detroit, [Michigan]. + + + 2 pages + + Addressed to the Secretary of War, concerns an unpaid bill of $358 for beef cattle. + + + + + + + 1815 December 15 + + . Andrew Jackson ALS to William H. Crawford; Washington, [D.C.]. + + + 3 pages + + Concerning staff organization of the army; "I conceive it a medical defect in the Act for the organization of the peace establishment that most of the important branches of the Staff have been left without a Head…I would therefore recommend as a measure of primary consequence that such officers as have been provisionally retained by retained permanently." Folder includes two-page manuscript schedule of stationary staff and division staff. + + + + + + + 1815 + + . 4 Documents. + + + 4 pages + + Receipts. + + + + + + + [1815 ca.] + + . [British Army, 100th Regiment of Foot] Pr. DS to John Guthrey. + + + 1 page + + Certifies that Guthrey, under Lieut. Col. Pilkington, was present at the capture of Moose Island, [Maine]. He "is entitled to any Emoluments arising from said Capture." + + + + + + + 1816 March 7 + + . James Monroe ALS to John Mason; Washington. + + + 1 page + + Regarding impressment and start of war; he recounts communication with Beasley during the war "stating that our impressed seamen had been delivered over, from differing frigates, to rescue them from the…fighters against their country, & [lodged] in prison." Many of them were imprisoned in Dartmoor, and the British government had demanded their release. + + + + + + + 1818 August 11 + + . F.W. Armstrong ALS; Knoxville, Tennessee. + + + 1 page + + Record of Armstrong’s promotion through the army. "Shortly After the Attack on the Chesepeak" he became lieutenant in a volunteer company, a captain in the infantry, and appointed Brigade Inspector. + + + + + + + 1818 September 21 + + . E. Mattoon Pr. DS to Zenas Stebbins; Boston, Massachusetts. + + + 1 page + + The Governor of Massachusetts [John Brooks] has accepted Stebbins' resignation as lieutenant colonel commanded and colonel by brevet of the 1st Artillery Brigade in the 4th Division of the Massachusetts Militia. He has been honorably discharged. + + + + + + + 1818 November 16 + + . Charles Colerick DS; United States. + + + 3 pages + + Regarding three months extra pay due to Colerick, a volunteer marine, for services in the Battle of Lake Erie. He served under the command of James Coburn; "I have never received any part of the extra pay…" Includes a two-page deposition by John Payne regarding Colerick, dated November 16, 1818. Payne was a captain of a troop of volunteer dragoons detached from the Kentucky militia. + + + + + + + 1818 December 18 + + . John Clement ALS to Peter Hagner; Haddenfield [New Jersey]. + + + 2 pages + + Clement seeks pay for his time as paymaster in the war; he incloses letters regarding power of attorney. + + + + + + + 1819 January 14 + + . John Clement ALS to Peter Hagner; Haddenfield, [New Jersey]. + + + 5 pages + + Clement’s seeking pay for his time as paymaster in war; he has received Hagner's letter stating that his accounts had beene examined and there "there was a balance due..of $1742.19, differing from my own statement to that Amount, with and enclosed statement shewing me how the difference had arisen, requesting me to Remove the objections to the Suspended Items made in my Account." + + + + + + + 1819 January 28 + + . John Clement ALS to Peter Hagner; Haddenfield, [New Jersey]. + + + 2 pages + + Clement’s seeking pay for his time as paymaster in war; he gives an account of his services, beginning with Madison's 1814 request of New Jersey for five thousand men. + + + + + + + 1819 February 5 + + . John Clement ALS to Joseph Bloomfield; Haddenfield, [New Jersey]. + + + 3 pages + + Regarding Clement’s time as paymaster and issues surrounding it. + + + + + + + 1819 February 10 + + . John Clement ALS to Joseph Bloomfield; Haddenfield, [New Jersey]. + + + 2 pages + + Clement seeks pay for his time as paymaster in war. + + + + + + + 1822 February 13 + + . Robert Herriot Barclay ALS to John James Douglas. + + + 6 pages + + Barclay has been considering making an application for promotion to the Duke of Buckingham, as it relates to Buckingham's speech before the House of Lords about "my defeat upon Lake Erie." Folder includes a copy of Barclay's court martial, dated September 9, 1814, and Sir George Prevost's extract of general orders relating to Barclay’s conduct on Lake Erie. Also includes a private ALS from Barclay to Douglas dated May 22, 1822. + + + + + + + 1825 August 7 + + . Sir George Cockburn ACyS to Louisa C. Shaw. + + + 4 pages + + Regarding payment, supplies, and forces under his command at Cumberland Island [Georgia]; "Gt. Britain was at the time at War with America, & Cumberland Island was taken by Force of Arms, you & your Possessions on the Island fell into our Hands, but as Individuals not carrying Arms you were respected &...orders were given not to injure your property nor to take anything belonging to you without paying for it..." + + + + + + + 1826 November 17 + + . James Monroe ALS to W[illia]m F. Thornton. + + + 2 pages + + In this letter, recently retired U.S. President Monroe requests that Captain William F. Thornton recount, in writing, details related to the reconnaissance efforts used to monitor the British following their landing at Benedict, Maryland, August 1814. + + + + + + 1831 November 16 + + . Louis McLane DS; Treasury Department, Washington, [D.C.]. + + + 3 pages + + McLane, Secretary of the Treasury, settling account of James Taylor, Quarter Master General of the Northwest Army during the war. Countersigned by Thomas L. Smith, Register of the Treasury. Includes Taylor's account from 1812. + + + + + + + 1833 October 26 + + . Jesse Duncan Elliott ALS to Samuel Smith; Navy Yard, Boston, [Massachusetts]. + + + 1 page + + Sending a small portion of supplies "which I hope will prove acceptable and useful in your own advancing age…" + + + + + + + 1834 February 22 + + . Michigan Legislative Council Pr. DS to United States Congress. + + + 2 pages + + Regarding claims of Michigan citizens for property lost, captured, or destroyed in the war; "there are many worthy citizens of the Territory of Michigan, who...suffered severe and heavy losses or property...during the late war; since...they have sought relief from the government of the United States in vain." Includes manuscript resolution, dated February 26, 1834, that a copy be transmitted to the President, Speaker of the House and the delegate in Congress from Michigan Territory. + + + + + + + 1835 April 22 + + . Andrew Mauchalk ALS; Washington, [D.C.]. + + + 4 pages + + Regrets that someone else, Dr. Wren, has received an appointment and not the recipient's father. He is "totally unacquainted with the duties of the Office...and, decidedly, the most unpopular man in Natchez." Discusses friendship with President Jackson, who has a "certain junto" around him inspecting incoming letters and is presumably responsible for Jackson's not replying to his letters yet. Vilifies George Poindexter for his role in the Battle of New Orleans. + + + + + + + 1837 January 11 + + . Daniel Turner LS to John Holmes; Newport, [Rhode Island]. + + + 2 pages + + Regarding service of Dr. Usher Parsons, his older brother, in the Battle of Lake Erie and the war; "his duties were…more important than those of any other medical officer on the Lake during the first year of the War, or until the fleet of Commodore Perry was ready to Sail." + + + + + + + 1837 February + + . Thomas Holdup Stevens LS to John Holmes; Philadelphia, [Pennsylvania]. + + + 3 pages + + Regarding service of Dr. Usher Parsons, a friend of his, in the Battle of Lake Erie and the war; "I believe Dr. Parsons is the only commissioned officer who was in the Battle of Lake Erie, who has not received from his native State some testimonial of its approbation..." + + + + + + + 1840 July 23 + + . Theodore ALS to Mary W. Cady; Suffield. + + + 3 pages + + Letterhead engraved with a medal entitled “Major General William H. Harrison / Resolution of Congress April 4, 1818. Battle of the Thames October 5, 1813.” + + + + + + + 1841 January 20 + + . [George] Ray ALS to James D. Ray; Detroit, [Michigan]. + + + 4 pages + + Reflection on the massacre at River Raisin [Frenchtown], Michigan in January 1813, "famous from the fact of its having been the place of one of the [most] brutal massacres…ever disgraced…" + + + + + + + 1847 April 12 + + . John Neal ACyS to William H. Winder; Portland, Maine. + + + 2 pages + + Concerning the military and law career of William Henry Winder. + + + + + + + 1853 June 1 + + . S. Cole ALS to Hugh D. McLellan; s.l. + + + 2 pages + + Update on Samuel Libbey’s War of 1812 pension case. Libbey served in Captain George Bender’s Company of the 9th Infantry. Unable to find his records or any proof that his disability stemmed from his service. + + + + + + + 1858 June 26 + + . Lewis Elliott ALS to Justice of the Peace; Hampden, Ohio. + + + 2 pages + + Seeking information on George King, who claims to have served in a company of volunteers; he "wants to obtain a land warrant he sais that he belonged to a Company of volunteers Commanded by Captain Blanchard…said King has made an application but his Claim is not Granted the name of Captain Blanchard not being found at Washington..." + + + + + + + 1858 December 16 + + . James Buchanan DS to John Baptiste LaPoint; Washington, [D.C.]. + + + 1 page + + Deed of 80 acres of land for War of 1812 service granted to LaPoint, a private in the Michigan militia has been granted to George M. Dewey. + +

    Located in Oversize Manuscripts.

    +
    +
    +
    + + + + + 1859 December 10 + + . James Buchanan partially printed DS to James McClellan + + + 1 page + + "In pursuance of the Act of Congress, approved MARCH 3, 1855, entitled 'An Act in addition to certain Acts granting Bounty Land to certain Officers and Soldiers who have been engaged in the Military Service of the United States…" Granting 120 acres of land for sale at Sioux City, Iowa, to James McClellan, "Private, Captain Miller's Company, Pennsylvania Militia, War of 1812." Names Jane Doak as the assignee. Secretarial signature of James Buchanan. Signed J. B. Leonard, Secretary, and J. N. Grange, Recorder of the General Land Office. Includes an image of the American flag. Recorded at the O'Brien County, Iowa, Records office on November 10, 1886, for taxation purposes. + + + + + + + 1860 February 15 + + . Stephen Champlin ALS to L.B. Chavalier; Buffalo, [New York]. + + + 1 page + + Regarding Chevalier’s painting of the Battle of Lake Erie; "I think the enclosed representation You sent me of the Squadron at the close of the Battle is perfect…I would like to submit it to Dr Parsons who I shall see either here or in Providence next Spring." + + + + + + + 1860 August 27 + + . Stephen Champlin ALS to L.B. Chevalier; Buffalo, [New York]. + + + 1 page + + Regarding Chevalier’s painting of the Battle of Lake Erie; he answers Chevalier's question by stating that "The Queen Charlotte was a full rigged ship." He congratulates him on his progress with the painting and hopes to see him in September in Cleveland. + + + + + + + [Post 1860 August 27] + + . L.B. Chevalier ACy to Stephen Champlin. + + + 1 page + + Regarding a ship, Queen Charlotte, used in the War of 1812; Chevalier called upon "Capt Miles who raised the Detroit and Queen Charlotte and filled them out in 1836…The Queen Charlotte was a Brig and no mistake about it, as the partners and steps showed conclusively. The deck was quite good..." + + + + + + + 1860 August 29 + + . Stephen Champlin ALS to L.B. Chevalier; Buffalo, [New York]. + + + 1 page + + Regarding Chevalier’s painting of the Battle of Lake Erie and in particular information regarding the ship, Queen Charlotte. He recounts his experience with the ship following the battle. + + + + + + + Undated, June 6 + + . James Biddle ALS to [William Bainbridge]; Philadelphia, [Pennsylvania]. + + + 2 pages + + Naval matters; trying to get command of a ship + + + + + + + Undated + + . William Duane ALS to Callender Irvine. + + + 1 page + + A friend has enquired to him on how to obtain 26 swords and a trumpet; Duane wishes to know how they could be obtained, if at all. + + + + + + + Undated + + . Document. + + + 2 pages + + List of names of soldiers from the District of Columbia who served in the War of 1812. + + + + + + + Undated + + . David Riddle ALS to John Lewis Thomson + + + 2 pages + + Regarding the military service of Thomas and Samuel Riddle, both veterans of the war. Samuel served on the Northern frontier and Thomas served under General Hull. Riddle's younger brother, Abram, "was about to march for the frontier when he was killed by his horse falling on him he was a sergeant of a volunteer troop of Dragoons, in the state of Ohio..." + + + + + + + Undated + + . General Committee of Defense Account to Isaac Roberdeau; s.l. + + + 1 page + + Itemized statement of "expences of topographical engineers." + +Includes expenses for transportation, surveying, and other sundries. + + + + + + Undated [after 1824 July] + + . [John Orde] Creighton ALS. + + + 4 pages + + Discusses life aboard a ship [Incomplete]. + + + + + + + Undated, after 1871 February 14 + + . Samuel V. Niles of Washington, D.C. Pr. DS. + + + 2 pages + + "War of 1812 Declaration of a Widow for Pension" incomplete. + + + + + + + Undated + + . J.P. Wheeler ALS to Zenas Stebbins. + + + 1 page + + Letter of thanks for "unexampled treatment." + + + + + + + Undated + + . AMs; s.l. + + + 2 pages + + "The Yankey Tars."Manuscript copy of a version of the folksong "The Constitution and the Guerriere."Reference to the War of 1812 naval battle between Captain James Richard Dacres (1788-1853) of the HMS Guerriere and Captain Isaac Hull (1773-1843) of the Constitution."Now Brittons you / be still since wee/ have given you your / fill and Boast no / more of Dacris your/ Grandy O / John Bull may boast/ his fill & the world/ say what they will / But the yankey tar/ for fighting are the/ Dandy O" + + +
    +
    +
    +
    diff --git a/sample-ead/clements/wilson_final.xml b/sample-ead/clements/wilson_final.xml new file mode 100755 index 0000000..ff8f276 --- /dev/null +++ b/sample-ead/clements/wilson_final.xml @@ -0,0 +1,5064 @@ + + + + + umich-wcl-M-898wil + + + Finding Aid for Wilson Family Papers + Collection processed and finding aid created by Roger King + + + William L. Clements Library, University of Michigan + 2007 + + + + Encoded finding aid created by Catalina Oyler, October 2007 + The finding aid is written in English + + Finding aid prepared using Describing Archives: A Content Standard (DACS) + + + + 2007-01-28 + Original encoding from Word 2000 file using Word macros and Xmetal. + + + + + + Manuscripts DivisionWilliam L. Clements LibraryUniversity of Michigan + Finding aid forWilson Family Papers, 1704-1884 + Finding aid created by + + Roger King + + + + + + Wilson family + + Wilson family papers 1704-1884 + + Wilson family papers + + 16.25 linear feet + + wclmss002305 + The material is in English + + The Wilson papers contain letters and documents relating to the lives and careers of three generations of the family of William Wilson, residents of Clermont, N.Y. in the mid-Hudson River Valley. + + + William L. Clements Library, University of Michigan + + + + + +

    1952. M-898, M-983.

    +
    + +

    The collection is open for research.

    +
    + +

    Copyright status is unknown.

    +
    + +

    Wilson Family Papers, William L. Clements Library, The University of Michigan

    +
    +
    + + Biography +

    In 1756, William Wilson was born into a minister's family in Wooler, Northumberland, a farming community in the Scottish borderlands. The third of four sons, William enrolled at the University of Glasgow intending for the ministry, and after receiving his bachelor's degree in 1778, succeeded his father, Alexander (1710-1777), in the pulpit of the Scots Church in Wooler. Yet William's ministerial career was short lived. Following a family squabble of an unclear nature, he abandoned the clergy, and possibly the Scottish church as well, to take up the study of medicine. The turbulence of these years was leavened, however, by his marriage to Mary Howey (1753-1801), with whom he soon began to raise a family, beginning with two sons, Henry Howey Wilson, who died in his infancy in 1782, and Alexander (1783-1805).

    +

    Having completed his medical education by 1784, William decided to emigrate to North America, but the obstinate refusal of his father-in-law to allow Mary out of his sight, led to a sundering of the Wilson household. After two months at sea, he disembarked in New York City, and traveled directly to Clermont, a small Hudson River town that served as the seat of the powerful Livingston family. Chancellor Robert R. Livingston himself may have lured Wilson to Columbia County, but it is unclear when or where the two men became acquainted. The fact that Wilson found his way so quickly to Clermont, though, and that he began to attend patients within two weeks of his arrival there, suggests that his route there was thoroughly planned.

    +

    For two years, Wilson struggled to bring his wife to America, and only the intervention of his brother, Alexander, allowed her to escape from the control of her father. Once reunited, the couple returned to the business of raising a family, producing seven more children before Mary's death in 1801. It was not until 1820 that William chose to remarry, uniting with the much younger Hannah Shufeldt (1784-1876), probably a relative of his daughter Mary's (1792-1887) husband. Wilson remained at Clermont until his death in 1828, shouldering diverse responsibilities for both the Livingston family and the residents of Columbia County. At various times, Wilson served as administrator of the Livingston's rental properties, deputy postmaster of Clermont, school supervisor, judge in the county court, physician and founder of the Medical Society of Dutchess and Columbia Counties, farmer and vice president of the Agricultural Society of Dutchess and Columbia Counties, and member of the Board of Directors of the Highland Turnpike Company.

    +

    William's eldest surviving son, Alexander, and his third son Robert Livingston Wilson (1794-1830) attended Union College before serving legal clerkships to prepare for entry into the law. Alexander's life and legal career, however, were to be tragically short. After completing his clerkship in Albany, and shortly after he was admitted to the bar, Alexander contract an unspecified disease and died in 1805 at the age of only 22. His untimely death left his wife of three months, Mary Thong Livingston (1783-1841), to bear their son, Alexander, alone.

    +

    Eleven years younger than Alexander, Robert began his clerkship in Kinderhook, but moved to New York City to study under William Slosson. His training must have been very good, for in subsequent years, Robert rose to a level of some prominence in New York legal circles. He was licensed to practice before the State Supreme Court in 1818, and in 1821 was appointed Commissioner of Deeds for the city. In addition to his law practice, Robert acted as his father's business, legal, and personal representative in New York City, and wrote frequently to his father on all matter of legal affairs and offering his professional advice. Robert's health began to deteriorate in the 1820s, and he died of an undetermined cause in 1830 at 36.

    +

    Following Alexander's death in 1805, the teenaged William Henry Wilson (1791-1884) became the eldest living Wilson boy, and was thus thrust into a position of responsibility for the family estate in Columbia County. In his late teens, William was accepted into a medical apprenticeship, after which he served as a surgeon's mate on the Lake Champlain frontier during the War of 1812. His hopes for a career in the military were dashed with the reduction in forces at the end of the war, and so William returned to Clermont, seeking a future. He briefly considered leaving the state, but in the early 1820s, his father's failing health led him to assume management of the family's many interests and responsibilities. William married a Philadelphian, Anne Hulme (1799-1881), in 1829, having two children, Anne H. and Harold (1836-1919).

    +

    The last of the Wilson brothers, Stephen Bayard Wilson (1795-1863), went to sea as a deckhand at the age of fourteen on a ship bound for Calcutta. When he reached India, he was greeted with the unpleasant surprise that war had broken out. After a period of imprisonment, Stephen made his way to England, where, according to family tradition, he was again imprisoned, gaining first hand knowledge of Dartmoor Prison. This piece of family lore, however, cannot be confirmed in the records. Upon his assuredly grateful return to the United States, Stephen set his cap on entering the military, taking and passing the eligibility examination for an ensign's commission in 1812. In these tense times, Stephen was assigned to "pirate patrol" in the Mediterranean, designed to counter the depredations of the Barbary State navies. Ultimately he attained the rank of Captain, commanding a ship in the Gulf of Mexico during the Mexican War. He married Margaret Sanderson (b. 1806) in 1828, and retired from the Navy in 1862, dying one year later.

    +

    If it can be said that the Wilson boys led successful -- though at times brief -- lives, the same cannot be said about the daughters. With a woman's role in life intimately bound up with the class position of their husband, the Wilson girls displayed a singular penchant for entering into poor matches. Frances, "Fanny" (1787-1879), was the most fortunate of William Wilson's daughters, marrying Fyler Dibblee, a member of a prominent Dutchess County family. Dibblee enjoyed modest success as a farmer and small-time merchant in Pine Plains, but the financial panic of 1819 devastated his finances, resulting in a sheriff's sale of his property, and the departure of the family for New York City.

    +

    Richard Dibblee (1787-1864), one of Fyler's brothers, married Elizabeth "Eliza" Wilson (1797-1879), and soon proved even more inept at finance. There is good indication that William Wilson bought a farm for the young couple, and he contributed much needed money to their maintenance for several years. William's second daughter, Mary Ann (1792-1887), married George A. Shufeldt against her father's wishes, and against the advice of most of the rest of the family. Shufeldt appears to have been a spend-thrift of the highest order, and like Elizabeth and Frances, Mary Ann suffered from the ill management of her husband. Finally, the fourth and youngest daughter, Alicia, "Nancy" (1799-1888), married a merchant, David Van Deusen, who died in his thirties and left a debt ridden business for his widow to contend with. Nancy was forced to buy back her own furniture from David's creditors, and eventually made her home with a married daughter.

    +
    + +

    The collection is organized by creator and type of document.

    +
    + +

    The Wilson family papers contains over 4,000 letters relating to the lives and fortunes of three generations of the family of William Wilson, residents of Clermont, N.Y, in the mid-Hudson River Valley. Virtually all of the letters in the collection were received by members of the Wilson family, with only a very few out-going drafts. Together, these present an impressively detailed perspective on many aspects of family life, political culture, agriculture, commerce, and the economy of Columbia and Dutchess County, N.Y., in the fifty years following the end of the American Revolution. As well being educated, energetic members of the social elite, the Wilsons engaged in a variety of pursuits, from the legal and medical professions, to land proprietorship, farming, and politics, and they commented extensively at every turn. A genealogical chart of the Wilson family, detailing the relationships of all those mentioned in the collection can be found in box 42:11.

    +

    The core of the Wilson papers consists of the letters received by William Wilson, who shouldered a wide variety of responsibilities in Columbia and Dutchess counties and knew their residents intimately. The breadth of his interests brought him into contact with many of the state's leading citizens, but also with the tenant farmers, medical patients, merchants and clerks. William's major pursuit in life was medicine, and his surviving papers contain seven medical daybooks (40:3; 47:9-14), providing a chronological record of his visits, diagnoses and prescriptions, as well as his fees. He also kept two notebooks dealing with the causes and symptoms of various diseases (47:15, 16), and scattered throughout his papers are letters from patients discussing their illnesses. Of particular importance are the letters relative to the deaths of Chancellor Robert R. Livingston and his wife, for whom Wilson was the attending physician (18:6-10; 19:15, 21, 23). Wilson was also a founding member of the Medical Society of Dutchess and Columbia Counties in 1796, and was associated with the founding of the New York Medical Society, as well as with the effort to establish a medical college (15:69; 16:17, 24, 44, 46, 52, 66, 70, 76, 80; 17:3, 13, 17, 23, 29; 45:19).

    +

    William Wilson was also employed as an administrator of landed property, usually for members of the Livingston family, and particularly Henry Livingston (1752/53-1823). The wide-spread unrest among "General Livingston's" tenants is discussed in many of the letters, along with more general discussions of land tenure, proprietary power, and tenant satisfaction. Wilson also served as administrator for the property of Chancellor Robert R. Livingston, especially during the latter's appointment to France, for two absentee landlords from New York City, Walter Rutherford and J. Stark Robinson (41:1, 2); and he was an executor or administrator for the estates of Robert Cambridge Livingston (1742-1794) (42:1), Peter Robert Livingston (1737-1794) (42:7), and the Chancellor (42:3-6). The materials relating to Livingston rental properties consists largely of receipts for rents received, but also include lease agreements, about twenty account books relative to the Chancellor's lands, and negotiations for the sale of land, especially the Chancellor's property in New Jersey after his death. A section of the estate documents for Robert R. Livingston relate to payment of medical, boarding, and clothing bills for Isabella and her son, Stephen, who were enslaved by Livingston (42:4). Some of the documents refer to her as Isabella Bond.

    +

    In 1791, Wilson added the office of Deputy Postmaster to his collection of responsibilities, becoming the first such agent for the town of Clermont. He was reappointed in 1803, and continued at his lucrative post until surrendering it to his son in 1825. As with everything else, Wilson saved all of his papers (42:12-15), and this the collection includes Wilson's original appointment commissions, signed by Post Master General Timothy Pickering (1:46 and 12:72), as well as the postal accounts and other records, which are generally of an administrative and bureaucratic nature. There are a few scattered items from correspondents critical of the speed and unreliability of the mails.

    +

    William Wilson also filled various political appointments in the county, and was active in state politics. As a Jeffersonian-Republican, befitting a friend of Chancellor Livingston, he played an important local role as judge of the county court, yet while many of his letters are addressed to "Judge" Wilson, virtually nothing pertaining to his official judicial activities survives in the collection apart from a series of receipts from various sheriffs and a few examinations of a woman for illegitimacy (43:44; 41:19). However Wilson corresponded with other judges and lawyers in the region, a fair amount of which has been preserved, especially from Peter Van Schaack and members of the prominent Van Ness family. Wilson's role as one of the first school supervisors in the area is represented by some scant records (41:22), as is his position as a commissioner for the granting of tavern licenses (41:23).

    +

    Wilson was involved in two other county-wide projects that had an important impact on Columbia County, and for which there is excellent material. One of these was the construction of the Highland Turnpike, which ran from Westchester County to near Albany, with gates in Columbia County. Wilson sat on its Board of Directors, and was a frequent and regular correspondent with its president, Joseph Howland (43:1, 2). Howland's are among the few letters that bear on broader national issues, and are in many ways the most interesting series of letters in the collection (see especially 17:87). Secondly, Wilson was instrumental in the establishment of the Agricultural Society of Dutchess and Columbia Counties, or the "Farm Club," as it was usually called. As (variously) president, vice president, secretary, or treasurer, Wilson was intimately involved in the operation of the organization. Of particular interest is the material relative to the annual county fairs held by the club, and the notifications from potential participants, the standards for awards, and the lists of winners (41:3-11). These records, together with the information to be gathered from the receipts from merchants, presents a detailed picture of agricultural life in the rural Hudson Valley.

    +

    In sum, those portions of the Wilson Papers that deal directly with William Wilson and his many activities provides a comprehensive picture of rural life in Columbia County and the state of New York in the forty years after the American Revolution.

    +

    The letters from Wilson's children offer insights into other aspects of life in early nineteenth-century New York. Alexander Wilson wrote many letters to his father while a student, and it is from his papers that one gets a good idea of the nature of legal education at the beginning of the nineteenth century. Alexander's early death means there is little material relating to his career as a practicing attorney, but what is lacking from Alexander is more than made up for by the papers of his younger brother, Robert. Robert kept extensive records of his practice, including a register of cases covering the entire period of his independent practice in New York, 1823-1830 (46:17), and his day books and account books, which list his professional duties preformed on behalf of clients, and his expenses, fees, and collections (40:1; 46:15,16). The Wilson Papers also includes file papers for many of the cases in which Robert participated (43:5-30), providing a broad, and occasionally deep insight into one man's legal practice in the early 19th century.

    +

    The letters of Wilson's other sons are less numerous than those of Alexander and Robert. William H. spent most of his life in Clermont, and so wrote less often, and Stephen B. was a secretive man, who simply did not write many letters. William H. wrote several letters during his tour of duty on the Lake Champlain frontier during the War of 1812 (18:43, 52; 19:18, 26, 36, 47, 56, 60, 68; 20:16, 18), but these are preoccupied with descriptions of camp life and military "politics" rather than strategy or the social impact of the war. William succeeded his father as Deputy Postmaster in 1825, and kept the same copious records as his father (42:12-15). He was not, however, as active in politics as his father, and except for a few letters relating to his run for a seat in the state senate in 1839, and some candidate lists and election return broadsides (41:25-27), there is little of political interest in William's papers. Stephen's letters are the more interesting for their rarity. When he does write, it is well worth the reading.

    +

    In addition to the letters written and collected by William, William H., and Robert L. Wilson, the Wilson Papers contain a vast quantity of documents. The largest category of this material contains an enormous number of accounts and receipts from merchants with whom the Wilsons did business. In terms of the number of items, fully half of the Wilson Papers is comprised of these accounts. Approximately 800 individual laborers, craftsmen, merchants, and business firms are represented as having done business with one or another member of the Wilson family, and the collection includes accounts for nearly every kind of household goods, from furniture to food to building materials, agricultural supplies, from seeds to fruit trees to sheep, and personal goods, from cheap "segars" to an "invalid chair" for Robert L., to wine.

    +

    The accounts (box 44 and 45:1-16) are arranged alphabetically by creditor. A complete list of merchants and firms represented in the collection is included under "Merchants" in the subject index. The accounts are a particularly valuable resource for social historians. For example the accounts of Samuel Haner (44:12) document aspects of blacksmithing; those of the Clermont grocers Bonesteel and Broadhead (44:4) reveal aspects of diet and nutrition; those of Thomas Beekman (44:2) document medicine and medical supplies; and those of Peter Outwater (45:6) provide information on transportation and commerce on the Hudson River. Receipts for payment that do not include goods or services are filed by surname (45:20-23). The collection also includes a number of the Wilsons' account books, especially William's and Robert's, which offer a view of the other side of the ledger (40:5; 46:18; 47:1, 2).

    +

    A second subdivision of the collection, and one closely related to the merchant accounts, deals with land administration. In addition to the correspondence of Henry Livingston with William Wilson mentioned above, the collection contains several subject files related to this important issue in Hudson River Valley history. Most important are the folders containing information on absentee landlords (41:1, 2); deeds (41:4); land grants (43:4); leases (43:31, 32); mortgages (45:17); various rental accounts (46:1-7); surveys and surveying (46:8); as well as William Wilson's rental account books (46:17-20).

    +

    Finally the collection contains a small body of material of an essentially genealogical or local history value, and a wide, if not very deep, collection of letters of the Livingston family. William Wilson was an executor for some of the Livingston family estates, most notably for Robert Cambridge Livingston (42:1, 2) and Robert R. Livingston (42:3-6), as well as for other estates (41:29; 42:7-10). The information included in the "genealogy" folder (42:11) is particularly helpful in interpreting the material relating to estate settlement and administration.

    +

    The local history of the town of Clermont and Columbia County appears throughout the collection, ranging from arrest warrants to local taxes, and including a very important group of papers relating to the establishment of Clermont Academy (41:16-23). As for the Livingstons, while the famous Chancellor does not overpower the collection, the Livingston family does play an important part. Over sixty members of the family are mentioned in some significant way in the Wilson Papers. Some -- like "General" Henry with his tenant problems, the administration of the estates of Walter T. Livingston (1772-1827) and the Chancellor (42:3-7), or the letters of Edward Philip Livingston (1779-1843) concerning his trip to France -- are meaningful parts of the collection (9:78, 86, 98; 10:8, 64). Other Livingstons are merely the signers of documents or letters, such as Janet Livingston Montgomery's (1743-1828) announcement that she plans to enter the Farm Club fair, a request from Mary Thong Livingston Wilson for financial assistance after the birth of Wilson's grandson, or the Chancellor's grandson, Clermont Livingston, who signed a quit claim deed for the benefit of Clermont Academy.

    +

    In sum, the Wilson papers are primarily a collection of family papers. While some members of the family participated in significant activities, and while the letters relating to those activities are important, there is a strongly personal aspect about them, and whatever broader historical significance that can be gotten from them must be gotten in the mass.

    +
    + +

    + +

    + + Subjects: + Agriculture. + Banks and banking. + Elections. + Estates (Law) + Landlord and tenant. + Law--Cases. + Medicine. + Merchants--Accounting. + New York (State) + Politics, Practical. + + + Genre Terms: + Account books. + Accounts. + Civil court records. + Daybooks. + Deeds. + Depositions. + Daybooks. + Estate administration records. + Legal documents. + Probate records. + Receipts (financial records) + Surveys. + +
    + + + + Correspondence + + + + 1 + + 1729-1794 + + + + + + 2 + + 1795-1796 + + + + + + 3 + + 1797 January-September + + + + + + 4 + + 1797 October-1798 June + + + + + + 5 + + 1798 July-December + + + + + + 6 + + 1799 January-June + + + + + + 7 + + 1799 July-1800 March + + + + + + 8 + + 1800 April-December + + + + + + 9 + + 1801 January-October + + + + + + 10 + + 1801 November-1802 August + + + + + + 11 + + 1802 September-1803 March + + + + + + 12 + + 1803 April-1804 March + + + + + + 13 + + 1804 April-1805 March + + + + + + 14 + + 1805 April-1806 August + + + + + + 15 + + 1806 September-1808 December + + + + + + 16 + + 1809 January-1811 June + + + + + + 17 + + 1811 September-1812 July + + + + + + 18 + + 1812 August-1813 December + + + + + + 19 + + 1814 + + + + + + 20 + + 1815 + + + + + + 21 + + 1816 + + + + + + 22 + + 1817 January-September + + + + + + 23 + + 1817 October-1818 May + + + + + + 24 + + 1818 June-1819 April + + + + + + 25 + + 1819 May-1820 May + + + + + + 26 + + 1820 June-1821 July + + + + + + 27 + + 1821 August-1822 May + + + + + + 28 + + 1822 June-1823 December + + + + + + 29 + + 1824-1825 January + + + + + + 30 + + 1825 February-1826 April + + + + + + 31 + + 1826 May-1827 June + + + + + + 32 + + 1827 July-1828 October + + + + + + 33 + + 1828 November-1830 January + + + + + + 34 + + 1830 February-1832 + + + + + + 35 + + 1833-1837 + + + + + + 36 + + 1838-1842 + + + + + + 37 + + 1843-1849 + + + + + + 38 + + 1850-1859 + + + + + + 39 + + 1862-1942 + + + + + + + Wilson, Robert L. + + + + 40 + 1 + Legal Day Book, 1825, 1825 June-1829 October 19 + + + + + + + Wilson, William + + + + 40 + 2 + Day Book, 1803 September 13-May 4 + + + + + + 40 + 3 + Medical Day Book, 1795 November 17-1799 January 14 + + + + + + 40 + 4 + Rental Account Book, 1792 December 31-1808 May 5 + + + + + + + Wilson, William H. + + + + 40 + 5 + Account Book, 1828 December 24-1839 June 15 + + + + + + + Absentee Landlords + + + + 41 + 1 + J. Stark Robertson, 1790 January 26-1801 December 4 + + + + + + 41 + 2 + Walter Rutherford, 1764 December 4-1808 May 21 + + + + + + + Agricultural Society + + + + 41 + 3 + Accounts, 1815 March-1816 October 28 + + + + + + 41 + 4 + Constitution, By-Laws, Minutes, 1816 January 11-1833 February + + + + + + 41 + 5 + Correspondence, 1815 December 16-1824 January 27 + + + + + + 41 + 6 + County Fair, 1817 August 25-1818 September 19 + + + + + + 41 + 7 + County Fair, 1819 March 1-November 11 + + + + + + 41 + 8 + County Fair, 1822 February 18-October 26 + + + + + + 41 + 9 + Lawsuit, 1819 August + + + + + + 41 + 10 + Membership, 1817 November 14-1821 September 19 + + + + + + 41 + 11 + Misc., ca. 1816-ca. 1830 + + + + + + + Anonymous + + + + 41 + 12 + Day Book, 1825-1826 + + + + + + + Banks and Banking + + + + 41 + 13 + + 1814 August 20-1855 [see index for complete list] + + + + + + Bridges, Highways and Railroads + + + + 41 + 14 + + 1796 October 1-1849 October 22 + + + + + + + Church Assessments + + + + 41 + 15 + + 1818 November 2-1828 December 12 + + + + + + + Clermont, N.Y. + + + + 41 + 16 + Accounts, [1799]-1803 August 3 + + + + + + 41 + 17 + Arrest warrants, 1798 April 18-1800 December 2 + + + + + + 41 + 18 + Clermont Academy, 1834 February 4-ca. 1900 + + + + + + 41 + 19 + Constable, 1798 April 9-1811 June 18 + + + + + + 41 + 20 + Elected Officials, 1795 April 7-1804 January 4 + + + + + + 41 + 21 + Misc. local history, 1811 December 1-1901 + + + + + + 41 + 22 + Schools, 1796 March 15-1824 August 1 + + + + + + 41 + 23 + Tavern licenses, 1795 March 2-1817 March 04 + + + + + + + Deeds + + + + 41 + 24 + + 1714 October 25-1846 June 11 + + + + + + + Election Returns + + + + 41 + 25 + Columbia County, 1790-1864 + + + + + + 41 + 26 + N.Y. State, 1789-1844 + + + + + + 41 + 27 + U.S., 1787-1840 + + + + + + + Elections + + + + 41 + 28 + Candidate lists, 1850s-1860s + + + + + + + Estates + + + + 41 + 29 + B-H + + + + + 41 + 30 + Cockburn, James, 1798 September-1809 January 16 + + + + + + 41 + 31 + Cockburn, James, Account with Wm. Wilson, 1786 May 6-1794 December 11 + + + + + + 42 + 1 + Livingston, Robert C. (1742-1794), Leases, 1797 January 1-1807 April 21 + + + + + + 42 + 2 + Livingston, Robert C. (1742-1794), Legal papers, accounts, misc., 1790 June 2-1809 July 03 + + + + + + 42 + 3 + Livingston, Robert R. (1746-1813), Accounts, 1812 May 1-1827 June 22 + + + + + + 42 + 4 + Livingston, Robert R. (1746-1813), Administration, Misc., 1792 November-1825 January 29 + + + + + + 42 + 5 + Livingston, Robert R. (1746-1813), Debts owed to/by estate, 1813 May 24-1823 July 22 + + + + + + 42 + 6 + Livingston, Robert R. (1746-1813), Leases and sales, 1801 May 1-1827 June 22 + + + + + + 42 + 7 + Livingston family, undated + + + + + + 42 + 8 + N-W + + + + + 42 + 9 + Wilson, Robert L., 1826 October-1833 May 20 + + + + + + 42 + 10 + Wilson, William, 1830 April 23-1855 December 3 + + + + + + + Genealogy + + + + 42 + 11 + + 1868 January 11-ca. 1930, [see index for list of families] + + + + + + General Post Office + + + + 42 + 12 + Accounts, 1810-1829 + + + + + + 42 + 13 + Accounts, 1830-1849 + + + + + + 42 + 14 + Corespondence, Misc., 1815 February 23-1842 January 23; 1935 March 6-9 + + + + + + 42 + 15 + Receipts, 1799 January 25-1849 April 1 + + + + + + + Highland Turnpike Co. + + + + 43 + 1 + Correspondence, Joseph Howland to Wm. Wilson, 1812 June 25-1825 December 29 + + + + + + 43 + 2 + Correspondence, Joseph Howland to Wm. H. Wilson, 1826 January 25-1833 June 4 + + + + + + 43 + 3 + Misc. and accounts, 1810 May-1829 February 24 + + + + + + + Land Grants + + + + 43 + 4 + + 1738 February 7-1813 April 12 + + + + + + + Law--Cases [see index for complete list of litigants] + + + + 43 + 5 + Bank, Franklin v Stephen Gould, 1823 August 29-1826 December 5 + + + + + + 43 + 6 + Bartlett, Robert v James Matthews, 1825 December 13-1827 June 4 + + + + + + 43 + 7 + Benedict, James v Dudley Shelden et al., 1828 June 20-September 22 + + + + + + 43 + 8 + Brown, John C. v George C. Lamb, 1826 June 20-December 7 + + + + + + 43 + 9 + Cantello, William J. v Charles Langlois, 1826 December-1827 October 25 + + + + + + 43 + 10 + Corbin, Francis P. v Townshend Cock and Joel Conklin, 1828 March 3-April 22 + + + + + + 43 + 11 + Corry, Samuel v John I. Webb, 1828 December 3-1829 April 16 + + + + + + 43 + 12 + Deming, Lemuel v John M. Willard, 1827 September-1828 March 4 + + + + + + 43 + 13 + Hall, Henry v Anthony Kerr, 1828 May 26-1830 May 17 + + + + + + 43 + 14 + Hamlin, Asher P. (heirs) v John van Vechten, 1825 + + + + + + 43 + 15 + Harrison, William (estate) v Edmund Elmendorph, Stephen Gould, et al., 1823 January 17-1827 March 5 + + + + + + 43 + 16 + Hattrick, Peter v Reformed Protestant Dutch Church of the City ofNew York, 1825 June-November 9 + + + + + + 43 + 17 + Langlois, Charles v William Canbtello, 1826 January 27-1828 July 18 + + + + + + 43 + 18 + Livingston, Robert R. (1746-1813) v Henry Walter, 1799 October 16-22 + + + + + + 43 + 19 + Lynch, Dominick v William P. Page, 1827 November 1-1828 May + + + + + + 43 + 20 + Lynch, Henry v Brasher, 1829 April 10 + + + + + + 43 + 21 + Lynch, Henry v. Whitehead Howard, 1827 May-1828 May 30 + + + + + + 43 + 22 + Misc. accounts and receipts, 1787 June 21-1830 June 21 + + + + + + 43 + 23 + Misc. correspondence, 1797 April 20-1829 November 04 + + + + + + 43 + 24 + Slocomb, Jared v John E. Ross, 1828 October 1-1829 April 10 + + + + + + 43 + 25 + Smith, John P. v Morris Reade, 1827 April 3-1829 October + + + + + + 43 + 26 + Stone, Frederick W. v George C. Lamb, 1826 November 30-1827 February 27 + + + + + + 43 + 27 + Thompson, William A. v John L. Norton, 1828 May 22-1830 February 18 + + + + + + 43 + 28 + Tice, John v John L. Norton, 1829 March 27-October 30 + + + + + + 43 + 29 + Van Ness, Jacob v Henry Lynk, 1799 April 27-December 19 + + + + + + 43 + 30 + Van Ness, Jacob v Henry Walter, 1799 April 26-1800 July 2 + + + + + + + Leases + + + + 43 + 31 + + 1742 May 25-1799 December 20 + + + + + + 43 + 32 + + 1801 April 15-1863 October 17 + + + + + + + Lee, John + + + + 43 + 33 + Medical Day Book, 1795 August 14-1796 December 12 + + + + + + + Legal Actions + + + + 43 + 34 + Bankruptcy, 1800 June 5-1801 September 15 + + + + + + 43 + 35 + Bonds (notes of indebtedness), 1796 May 4-1825 April 17 + + + + + + 43 + 36 + Confiscation (property), 1797 August 19-1828 October 23 + + + + + + 43 + 37 + Contracts, 1815 May-1825 May 14 + + + + + + 43 + 38 + Deed of Trust, 1816 February 26 + + + + + + 43 + 39 + Depositions, 1795 May 23-1797 September 27 + + + + + + 43 + 40 + Ejectment, ca. 1805 + + + + + + 43 + 41 + Indenture, 1795 September 7-December 10 + + + + + + 43 + 42 + Misc., 1796 October 8-1829 February 9 + + + + + + 43 + 43 + Notarized statements, 1816 November 4-1826 May 11 + + + + + + 43 + 44 + Paternity suits, 1796 October 8-1805 May 9 + + + + + + 43 + 45 + Power of Attorney, 1793 October-1827 October 11 + + + + + + 43 + 46 + Subpoenas, 1796 November 4-1803 June 11 + + + + + + + Leroy, Levi + + + + 43 + 47 + Account Book, 1846-1850 + + + + + + + Livingston, T. Ferguson + + + + 43 + 48 + Rental account, 1806 + + + + + + + Merchants' Accounts + + + + 44 + 1 + A + + + + + 44 + 2 + Bac-Bee + + + + + 44 + 3 + Bel-Bog + + + + + 44 + 4 + Bon + + + + + 44 + 5 + Bos-But + + + + + 44 + 6 + Cad-Clu + + + + + 44 + 7 + Coc-Cur + + + + + 44 + 8 + Dai-Dib + + + + + 44 + 9 + Dic-Duy + + + + + 44 + 10 + E-F + + + + + 44 + 11 + G + + + + + 44 + 12 + Hai-Haw + + + + + 44 + 13 + Hee-Hof + + + + + 44 + 14 + Hol-I + + + + + 44 + 15 + J-K + + + + + 44 + 16 + Lam-Lew + + + + + 44 + 17 + Lit-Lyn + + + + + 45 + 1 + Mac-Mey + + + + + 45 + 2 + Mid-Mye + + + + + 45 + 3 + Misc. + + + + + 45 + 4 + N + + + + + 45 + 5 + O + + + + + 45 + 6 + P + + + + + 45 + 7 + Rac-Roi + + + + + 45 + 8 + Roo-Ryk + + + + + 45 + 9 + Sag-Smi + + + + + 45 + 10 + Sny-Swo + + + + + 45 + 11 + T-U + + + + + 45 + 12 + Val-VanDyk + + + + + 45 + 13 + VanEtt-Vra + + + + + 45 + 14 + Wac-Whi + + + + + 45 + 15 + Wig-Wil + + + + + 45 + 16 + Win-You + + + + + + Mortgages + + + + 45 + 17 + + 1799 December 14-1829 October 6 + + + + + + + New York Medical College + + + + 45 + 18 + + 1810 September 17 + + + + + + + New York Medical Society + + + + 45 + 19 + + 1811 April 16-1814 January 6 + + + + + + + Receipts + + + + 45 + 20 + Livingston, 1790-1816 + + + + + + 45 + 21 + Misc., 1791-1855 + + + + + + 45 + 22 + Wilson, Robert L., 1817-1829 + + + + + + 45 + 23 + Wilson, William, 1786-1829 + + + + + + 46 + 1 + Wilson, William H., 1819-1857 + + + + + + + Rental Accounts [Lists of tenants with rent owed] + + + + 46 + 2 + Livingston family, 1790 May 17-1807 April 20 + + + + + + 46 + 3 + Misc., 1785 March 16-1803 March 7 + + + + + + + Rental, Miscellaneous + + + + 46 + 4 + + 1798 May 24-1826 June 21 + + + + + + + Rental Receipts [Individual receipts for rent paid] + + + + 46 + 5 + Livingston family, 1790-1799 + + + + + + 46 + 6 + Livingston family, 1800-1856 + + + + + + 46 + 7 + Wilson, 1799 January 9-1811 June 7 + + + + + + + Surveys and Surveying + + + + 46 + 8 + + 1741 August 18-1816 July 13 + + + + + + + Taxation, Clermont; Columbia County, N.Y.; et al. + + + + 46 + 9 + + 1787-1873 April 18 + + + + + + Wilson, Alicia Ann + + + + 46 + 10 + School exercise book, 1811 July 17-October 13 + + + + + + + Wilson, Robert L. + + + + 46 + 11 + Account Book, 1821 March 14-1827 June + + + + + + 46 + 12 + Bankbooks, 1816 March 13-1829 October 1 + + + + + + 46 + 13 + Checkbooks, 1826 May 4-1830 March 30 + + + + + + 46 + 14 + Legal Account Book, 1815 October 31-1821 December 18 + + + + + + 46 + 15 + Legal Account Book, 1824 August-1830 March 27 + + + + + + 46 + 16 + Legal Notebook, 1814 + + + + + + 46 + 17 + Register of legal cases, 1823 May 20-1830 February 22 + + + + + + + Wilson, William + + + + 46 + 18 + Account Book, 1783 December-1793 January + + + + + + 47 + 1 + Account Book, 1799-1815 + + + + + + 47 + 2 + Agricultural Notebook, 1810-1816 + + + + + + 47 + 3 + Bank Books, 1809 August 7-1814 May 31 + + + + + + 47 + 4 + Checks, 1807 + + + + + + 47 + 5 + Daybooks, 1789 September-1792 November; 1799 January 1-1803 November 3 + + + + + + 47 + 6 + Diary of passage to N.Y., 1784 April 24-June 20 + + + + + 47 + 7 + Index to account books, ca. 1795 + + + + + + 47 + 8 + Index to rent ledger, undated + + + + + + 47 + 9 + Individual medical accounts, 1791 November 1-1799 March 10 + + + + + + 47 + 10 + Medical Daybook, 1784 July 8-1797 October 23 + + + + + + 47 + 11 + Medical Daybook, 1787 December 4-1790 April 28 + + + + + + 47 + 12 + Medical Daybook, 1790 May 1-1792 August 31 + + + + + + 47 + 13 + Medical Daybook, 1793 January 20-1794 March 6 + +

    There is no folder 14.

    +
    + + + + 47 + 15 + Medical Handbook, undated + + + + + + 47 + 16 + Medical Notebook, undated + + + + + + 47 + 17 + "New Jersey Book" (land surveys and leases), 1792-1798 + + + + + + 47 + 18 + Rental Account Book, 1793-1806 + + + + + + 47 + 19 + Rental Account Book, 1794, 1797, 1799, 1801, 1803, 1807 + + + + + + 47 + 20 + Rental arrears, 1808 January 1 + + + +
    + + + Wilson, William H. + + + + 48 + Account Book, 1868 June 1-September 30 + + + + +
    + + +

    Adams, John Quincy.Letters from the Hon. John Quincy Adams to Edward Livingston. Hartford: Connecticut Anti-Masonic Tract Society, 1834.

    +

    Bard, Samuel.A Guide for Young Shepherds; or Facts and Observations on the Character and Value of Merino Sheep. New York: Collins and Co., 1811.

    +

    Livingston, Brockholst.Democracy: An Epic Poem by Aquiling Nimble-Chops, democrat. Canto first. New York: privately printed, 1794.

    +

    Livingston, Brockholst.A Faithful Picture of the Political Situation in New Orleans. Repr. ed. Boston: n.p., 1808.

    +

    Livingston, Brockholst.An Answer to Mr. Jefferson's Justification of his Conduct in the Case of the New Orleans Batture. Philadelphia: W. Fry, 1813.

    +

    Livingston, Brockholst.Letter from Edward Livingston to Roberts Vaux Regarding Advantages of Pennsylvania Prison System. Philadelphia: Joseph Harding, 1828.

    +

    Livingston, Brockholst.Rapport sur le project d'un Code penal Fait a l'Assemblée générale de l'état de la Louisiana. Paris: Antoine-Augustine Renouard, 1825.

    +

    Livingston, Brockholst.System of Penal Law, prepared for the State of Louisiana. New Orleans: Benjamin Levy, 1824.

    +

    Livingston, John (n.d.).Catalogue of law books, comprising a catalogue of a select law library, including the dates and prices of the latest editions of the most approved works ... Prepared by John Livingston. New York: Law Register, 1856.

    +

    Livingston, John.Livingston's Law Register. New York: Monthly Law Magazine, 1851.

    +

    Livingston, John Henry. Two sermons, delivered before the New-York missionary society; first on April 23d, in the Scots Presbyterian church, by the Rev. Dr. Livingston, The second on April 24th, in the North Dutch church, by the Rev. Dr. M’Knight. New York: Isaac Collins, 1799.

    +

    Livingston, John Henry. The Psalms of David, with hymns and spiritual songs. Also, the Catechism, Confession of faith, and liturgy, of the Reformed church in the Netherlands. For the use of the Reformed Dutch church in North America.. New York: G. Forman, 1796.

    +

    Livingston, Maturin.The Trial of the Hon. Maturin Livingston Against James Cheetham, for a Libel... New York: S. Gould, 1807.

    +

    Livingston, Philip.The Other Side of the Question, or, a Defense of the Liberties of North America. New York: James Rivington, 1774.

    +

    Livingston, Robert R.Essay on Sheep. New York: T. and J. Swords, 1809.

    +

    Livingston, Robert R.Essay on Sheep. Concord, New Hampshire: D. Coolidge, 1813.

    +

    Livingston, Robert R.Oration Delivered Before the Society of the Cincinnati of the State of New York. New York: Francis Childs, 1787.

    +

    Livingston, William.Eulogy on Rev. Aaron Burr. Boston: Green and Russell, 1758.

    +

    Livingston, William.A Letter to the . . . Lord Bishop of Landoff. New York: privately printed, 1768.

    +

    Livingston, William.A Review of the Military Operations in North America. London: R. and J. Dodsley, 1757.

    +

    Livingston, William.Collection of Tracts from the late Newspapers [The American Whig]. 2 vols. [1768-1769]

    +

    Livingston, William. The Independent Reflector [1754].

    +

    Sacandago Turnpike and Bridge Co. Minute Book, 1814-1819. Schenectady, New York. Manuscripts Division, Miscellaneous Bound

    +

    Skinner, Henry P. Journals, January 1, 1817-December 31, 1824. [Diary and Account Books] 4 vols. Hudson, New York. Manuscripts Division, Miscellaneous Bound

    +
    + +

    + Agricultural association of Dutchess & Columbia. The Farmers' club of the counties of Dutchess and Columbia, wishing anxiously to promote a spirit of industry and improvement in agriculture, offer the following premiums for the year 1818. Removed to: Broadsides. Agricultural association.

    +

    + The agricultural society of Columbia county, offer the following premiums for the year 1821. Removed to: Broadsides. Agricultural society.

    +

    + Encouragement to farmers, their wives, daughters, and others... the Farmer's club of Dutchess and Columbia offer the following premiums for the year 1819. Removed to: Broadsides. Agricultural association.

    +

    + Constitution and rules of the Agricultural society of Columbia county. Removed to: Broadsides. Agricultural society.

    +

    + Notice to farmers. A meeting of the board of managers of the Agricultural society of the county of Columbia, was held at the house of William B. Flagler, in the city of Hudson, on Saturday, the 20th inst. [1833]. Removed to: Broadsides. Agricultural society.

    +

    + Clermont society for the detection of horse thieves. Clermont, NY...February, 1869. Removed to: Broadsides. Clermont Society for the detection

    +

    + The lion! And it came to pass in the days of Scott and Pierce, when all parties were at enmity, that John J. Lyon was nominated and elected as Clerk of Ontario county. [185-]. Removed to: Broadsides. The lion!

    +

    Saunders, JohnAuction of wood & timber. The subscribers will dispose at public sale,...the homestead farm of the late Walter T. Livingston. 1842. Removed to: Broadsides. Saunders, John

    +

    Jay, John By His Excellency John Jay, esquire, governor of the state of New-York. A proclamation. [Warning residents of Livinston that if further riots occur militia will be sent to quell them and the participants will be punished, 1798]. Removed to: Broadsides. New York (State) Governor, 1795-1801 (John Jay)

    +

    + Know all men by these presents....[Promissory notes re money owed by or to Cornelius Low]. 1774. Removed to: Broadsides. Know all men by these presents.

    +

    + U.S. Constitution. We the people of the United States.... [Poughkeepsie: Nicholas Power, 1788] Robert R. Livingston's copy, with marginal notes. Removed to: Book Division. F 1788 Un

    +

    + A map of four farms lying near Johnstown in the Manor of Livingston, County of Columbia. Survey'd by direction of William Wilson esquire. March 1801 by Alex Thompson. Scale: 1 inch to 10 chains. 18 7/8 x 15 inches. Removed to: Map Division. Brun Guide 365.

    +

    + A map of Great Lot No. 2 in the Hardenbergh Patent. [By:] Corn[eliu]s Tappen. Scale: 1 inch to 2 miles. 11 3/4 x 18 1/2 inches. Removed to: Map Division. Brun Guide 366.

    +

    + A map [of] Lot No. 4 in the [Ha]rdenbergh Patent. Scale: 1 inch to 100 chains. 7 3/4 x 33 inches. Removed to: Map Division. Brun Guide 367.

    +

    + A map of Lot No. 4 in the Hardenbergh Patent. Surveyed and run into lots AD 1788 at the request of John R. Livingston esq. [by:] James Cockburn. Scale: 1 inch to 100 chains. 7 3/8 x 39 inches. Removed to: Map Division. Brun Guide 368.

    +

    + A map of Lot No. 1 in the Hardenbergh Pate[nt.] Scale: 1 inch to 100 chains. 10 1/4 x 32 5/8 inches. Removed to: Map Division. Brun Guide 369.

    +

    + A map of Lot No. 24 in North East Town containing 911 acres as surveyed in 1794 [by:] Alex[ande]r. Thompson. Scale: 1 inch to 10 chains. 19 1/8 x 8 1/2 inches. Removed to: Map Division. Brun Guide 370.

    +

    + Map of the northerly section of sub. div. Lot. No. 1 of the 24th allotment of the Kayaderoseras Patent. Henry Ramsay surveyor. Scale: 1 inch to 20 chains. 15 1/2 x 10 1/2 inches. Removed to: Map Division. Small [18--]Brun Guide 376.

    +

    + Map of the Second Nine Partners Tract in Dutches [!] County, protracted by a scale of one hundred chains to an inch, as divided pursuant to the acts of the Assembly. - [c.1790] 13 1/2 x 8 inches. Removed to: Map Division. Brun Guide 378.

    +

    + A map or draft of a ceartain tract and parcell of arable and low land of Collo. Henry Beekman being situate & lying within the limitts and bounds of the township of Rochester in the County of Ulster and Province of New York on the north & west side of said town on a ceartain place called by the Indians Nassosincks. on bouth sides of a ceartain creek that waters weg eg [!] Reinock or Menissincks. according and inpursuance [!] to his Indian purcheese and deed of conveyence from the trustees of Rochester, and is contned with the creek and flatts about thirteen hundred and thirty acres of low land from where the southwest bounds of the pattant of Rochester strikes the said creek to the bounds of the land belonging to the Kigstjeprew Indians. Performed the same the tenth day of October Anno Domini 1751 by me Jacob Hoornbeck. Scale: 1 inch to 20 chains. 40 1/2 x 14 3/4 inches. Removed to: Map Division. Brun Guide 379.

    +

    + [Map. Post road & Kaskutahook. Surveyed 1765]. Scale: 1 inch to 660 feet. 15 5/8 x 24 3/4 inches; with extension on verso: 9 x 15 5/8 inches. Removed to: Map Division. Brun Guide 380.

    +

    + A map shewing a number of the farms that are divided by the division line between lots no 1 & 2. surveyed in December 1803 by John Wigram. Scale: 1 inch to 10 chains. 8 x 106 inches. Removed to: Map Division. Brun Guide 381.

    +

    + Subdivision of Lot No. 12 in the Good Beerkill Tract. Performed this 4th. day of Octr. 1797. Pr. Isaac Le Fever. Scale: 1 inch to 10 chains. 15 3/8 x 20 1/2 inches. Removed to: Map Division. Brun Guide 445.

    +

    + Surveyed April 1, 1796 the tract returned to John Stevens esqr. and the lot of John Logans mostly included in the same the 6th. course which in the copy of the records is N. 74? 15' E. should be 74? West protracted from a scale of 10. ch[ains] to an inch the brook was not traversed [Signed:] Silas Condict. 31 1/2 x 12 3/4 inches. Removed to: Map Division. Brun Guide 448.

    +
    + + Partial Subject Index + + Accounts receivable + + + 40:1-3, 5 + 46:11, 14, 15, 18 + 47:1, 7, 9, 21 + + + + + Adams, John Quincy, 1767-1848 + + + 30:5 + + + + + Agricultural exhibitions--New York (State) + + + 41:6-8 + + + + + Agricultural laws and legislation--New York (State) + + + 24:78, 79 + + + + + Agricultural machinery + + + 1:6 + 3:45 + 18:30 + + + + + Agricultural Society of Dutchess and Columbia Counties + + + 20:2, 5, 8, 9, 12, 50 + 21:18, 29, 30 + 22:3, 6, 70 + 23:14, 17, 41, 57, 61 + 24:31, 95, 98, 102 + 25:5, 32, 45, 46, 74 + 27:17, 57, 58 + 30:31 + 41:3-11 + + + + + Agriculture--New York (State) + + + 2:12 + 3:48 + 6:82 + 8:1, 2 + 12:7, 8 + 15:49 + 16:59, 71 + 17:43 + 20:46, 47 + 23:23, 64, 65 + 24:85, 91 + 25:94 + 26:56, 57, 58, 65, 92 + 27:8, 38 + 29:45 + 36:9 + 47:2 + + + + + Apprentices--New York (State) + + + 19:32 + 35:6, 8 + + + + + Arrest--New York (State) + + + 41:17 + + + + + Baltimore (Md.)--Description and travel + + + 33:45 + + + + + Banking law--New York (State) + + + 33:78 + + + + + Bankruptcy + + + 43:34 + + + + + Banks and banking --New York (State) + + + 41:3 + 46:12, 13 + 47:3, 4 + Bank of Catskill + Bank of Columbia + Bank of Hudson 34:55, 56 + Hudson River Bank 34:55, 56 + 44:14 + Manhattan Bank-Poughkeepsie Branch 11:29, 78 + Middle District Bank 20:87, 88 + Bank of Plattsburgh 7:64; 28:82; 30:63 + + + + + Barbary States + + + 12:94 + + + + + Bonaparte, Jerome, b. 1805 + + + 13:34 + + + + + Books + + + 3:85 + 8:33 + 9:64 + 14:39 + 19:70 + 20:23 + + + + + Bridges--New York (State) + + + 5:1 + 21:5 + 23:68 + 26:3 + + + + + Burr, Aaron, 1756-1836 + + + 12:89 + 13:6, 9 + 15:20 + + + + + Cholera + + + 34:58, 59 + 37:76 + + + + + Churches + + + 9:70 + 12:38 + 15:46 + 18:60 + 27:35 + 36:60 + 37:18, 20, 21, 23, 27, 39, 45 + 38:8, 41 + 41:15 + + + + + Clermont (N.Y.) + + + 17:61 + 41:16, 19, 21 + + + + + Clermont Academy + + + 41:18 + + + + + Clinton, Dewitt, 1769-1828 + + + 9:94 + 15:20 + 16:73 + 17:33, 36 + 29:22 + 32:37 + + + + + Clover + + + 3:42 + 18:23 + 21:32 + 22:12, 18 + 26:70 + 27:42, 56 + 32:35, 38, 40, 41 + + + + + College of Physicians and Surgeons of the State of New York + + + 15:68 + + + + + Columbia County (N.Y.) + + + 7:33, 36 + 11:18 + 13:69, 70, 71 + 25:15 + + + + + Columbia County Medical Society + + + 14:87 + + + + + Coney Island (N.Y.) + + + 32:61 + + + + + Confiscations + + + 43:36 + + + + + Constables--New York (State) + + + 6:41, 42 + 41:19 + + + + + Coroners + + + 11:83 + + + + + Cuba--History + + + 30:54, 83 + + + + + Deeds--New York (State) + + + 35:62 + 41:24 + + + + + Depositions + + + 43:39 + + + + + Digitalis + + + 1:50 + + + + + Diseases + + + 5:34 + 9:58 + 10:5, 46 + 12:64 + 13:27 + 14:47 + 18:6, 7, 8, 9, 10, 18, 50, 55 + 19:15, 21, + 25 + 20:78, 89 + 21:36 + 25:43 + 26:68 + 27:12, 40 + 38:22 + + + + + Distribution Bill, 1837 + + + 35:66 + + + + + Draft + + + 38:3 + + + + + Dutchess and Columbia County Medical Society + + + 2:60 + + + + + Dutchess County (N.Y.) + + + 15:26 + + + + + Education + + + 10:55 + 11:40 + 16:39, 41, 84, 86 + 18:2, 65 + 19:8, 14 + See also schools + + + + + Ejectment--New York (State) + + + 43:40 + + + + + Election law + + + 29:6, 20 + + + + + Elections--New York (State) + + + 1:45, 67, 69, 75, 78, 79 + 2:1, 3, 7, 10, 13, 31, 32, 41, 43, 48, 50, 52, 54, 55, 77, 78 + 3:54 + 4:50, 54, 55, 60, 61, 69, 71, 85 + 6:6, 41, 50, 53, 54, 76, 84 + 7:48, 77 + 8:4, 76 + 11:66, 71 + 13:7, 14, 17, 18, 20, 21 + 14:1, 68, 69 + 15:23 + 16:5 + 17:32 + 19:11 + 21:7, 47 + 24:104 + 25:97 + 26:93, 99 + 28:23, 23a, 24, 25 + 30:38, 39 + 41:25, 26, 27, 28 + + + + + Embargo, 1807-1809 + + + 15:43, 73, 76 + 16:4 + + + + + Embargo, 1812 + + + 18:68, 72 + 19:35 + + + + + Europe--Politics and government + + + 8:71 + 26:34 + 28:50 + + + + + Flour-mills + + + 3:22 + 4:13, 41, 90 + 5:33 + 9:19, 61 + 10:3 + + + + + France--Description and travel + + + 10:9, 19, 28, 58, 64 + 11:15 + 12:92 + 30:84 + + + + + France--History--Revolution, 1789-1799 + + + 3:2, 20, 71 + 7:59, 63, 67 + + + + + Freemasons + + + 8:88 + 16:11 + 24:64 + + + + + Fulton, Robert, 1765-1815 + + + 20:19 + + + + + Fur trade + + + 1:2 + + + + + Genealogy + + + See under names of individual families + + + + + Glenn family + + + 42:11 + + + + + Grass + + + 27:43 + + + + + Great Britain--Politics and government + + + 13:23 + 14:30 + + + + + Guardian and ward + + + 8:36 + + + + + Hamilton, Alexander, 1757-1804 + + + 2:77 + 13:40 + + + + + Hardenburgh Patent (N.Y.) + + + 7:11 + 8:16 + 10:58 + 11:24, 33, 51, 63 + 13:77 + 15:27 + 18:15 + 23:40 + 25:56, 58, 59, 60, 64, 67 + 28:52 + 31:71, 72 + + + + + Hardware + + + 15:51 + + + + + Highland Turnpike Co. + + + 10:4, 38 + 15:24 + 16:20 + 17:22 + 18:12 + 19:69 + 23:45 + 29:21 + 31:60 + 34:51, 54 + 41:3 + 43:1, 2 + + + + + House construction + + + 8:87 + 16:60 + 32:22 + 33:48, 52, 54, 61 + 34:41, 42 + + + + + Hudson River Railroad + + + 38:6 + 41:15 + + + + + Illegitimacy + + + 43:44 + + + + + Indentured servants--New York (State) + + + 2:16, 44 + 23:28 + + + + + Iron-founding + + + 5:14, 17, 35, 49 + + + + + Jackson, Andrew, 1767-1845 + + + 24:68 + 30:74 + 32: 69, 74 + 33:1 + + + + + Jay's treaty, 1794 + + + 2:32 + 3:2, 5 + + + + + Jefferson,Thomas, 1743-1826 + + + 7:7 + 11:53 + 14:60 + + + + + Judges--New York (State) + + + 1:45 + 28:36 + 33:72 + + + + + Kossuth, Madame + + + 38:26 + + + + + Lafayette, Marie Joseph, Marquis de, 1757-1834 + + + 29:58 + + + + + Land grants--New York (State) + + + 43:4 + + + + + Landlord and tenant--New York (State) + + + 1:19, 34, 61 + 2:25, 77 + 3:38, 39, 40, 79, 93, 96 + 4:6, 34, 35, 40, 85 + 5:7, 16, 21, 22, , 26, 35, 42, 46, 55 + 6:3, 17, 48, 75, 89, 92, 94 + 7:18, 22, 45, 84 + 8:31 + 9:20 + 12:101 + 13:26 + 15:37, 73 + 41:1,2 + + + + + Law--Cases + + + 46:16, 17 + + + + + Law--Study and teaching + + + 9:52, 83, 88, 94, 100, 106 + 10:6, 42, 82 + 16:28, 87 + 19:50 + + + + + Lawsuits + + + See Law--Cases + + + + + Lawyers--Licenses + + + 20:78, 79 + 21:86 + 24:35, 89 + + + + + Leases--New York (State) + + + 1:23, 32, 33 + 2:26 + 8:80 + 43:33, 34 + 47:17 + + + + + Livingston Manor (N.Y.) + + + 11:80, 82, 88 + 12:99 + + + + + Livingston, Robert R., 1746-1813 + + + 9:78, 82, 84, 85, 86, 89, 91, 92, 95, 98, 99 + 10:8, 9, 19, 28, 58, 64 + 11:15 + 12:13, 23, 92 + + + + + Local government--New York (State) + + + See also Clermont (N.Y.) + 4:20 + + + + + Lotteries + + + 1:79 + 3:15 + + + + + Louisiana Purchase + + + 12:23 + + + + + Manufactures + + + 16:2, 3 + 21:82 + 22:43 + + + + + Medical care + + + 5:38, 54, 69 + 7:6, 72 + 8:12, 45 + 11:29 + 12:33, 52 + 15:9, 18 + 16:88 + 27:45 + 36:19 + 42:4 + + + + Medical Society of Columbia County + + + 15:69 + + + + + Medicine + + + 1:50 + 2:51, 56, 61 + 3:16, 68, 73, 85, 93, 94 + 4:43 + 5:61 + 14:48, 65, 69 + 17:21, 67 + 24:31 + 32:26, 44 + 35:61 + 47:10, 11, 12, 13, 14, 15, 16 + + + + + Medicine--Study and teaching + + + See also New York Medical College + 8:47 + 2:36, 53 + 5:56, 68 + 16:54, 64, 72, 76, 85 + 17:4, 15 + + + + + Mexican War, 1846-1848 + + + 37:26, 52, 53, 62, 67 + + + + + Middletown (Conn.)--Description and travel + + + 1:18 + + + + + Money + + + 21:57 + 26:78 + 32:40 + + + + + Monroe, James, 1758-1831 + + + 11:69 + 22:53 + 25:11 + + + + + Mortgages + + + 45:17 + + + + + Napoleon I, Emperor of the French, 1769-1821 + + + 2:4 + + + + + Napoleonic Wars, 1800-1815 + + + 18:14 + 20:29, 64 + + + + + Nativism + + + 15:16 + + + + + Naval education + + + 21:77 + + + + + Neversink Turnpike Road Co. + + + 41:14 + + + + + New Orleans (La.)--Description and travel + + + 28:74 + + + + + New York & Erie Railroad + + + 38:21 + + + + + New York (N.Y.)--Description and travel + + + 7:19 + 17:65 + 19:62 + 26:80 + 46:9 + + + + + New York (N.Y.)--Economic conditions + + + 30:53 + 35:56 + 38:77 + + + + + New York (State)--Commerce + + + 1:5 + 6:4 + 8:23 + 16:75 + + + + + New York (State)--Description and travel + + + 46:9 + + + + + New York (State)--Economic conditions + + + 7:63 + 20:67 + 36:3 + + + + + New York (State)--Surveys + + + 1:22, 43, 48, 49 + 3:38, 39, 86, 91 + 5:45, 62 + 6:69, 79, 108 + 7:8, 14, 25, 30 + 14:28, 64 + 46:8 + + + + + New York (State). Constitution + + + 27:37, 54 + + + + + New York (State). Militia + + + 38:42 + + + + + New York Medical College + + + 16:17, 44, 46, 52, 66 + 17:3, 23 + 45:18 + + + + + New York State Medical Society + + + 16:24, 44, 63, 70, 76, 80 + 17:13, 17, 29 + 45:19 + + + + + Nicarauga + + + 38:42 + + + + + Nicoll family + + + 42:11 + + + + + Notaries + + + 28:85 + 31:68 + + + + + Paternity suits + + + See Illegitimacy + + + + + Philadelphia (Pa.)--Description and travel + + + 30:80 + + + + + Politics, Practical + + + 3:57 + 4:27, 58, 73 + 5:15 + 6:6, 21, 81, 87, 90 + 7:83, 87, 88 + 8:17, 27, 75 + 9:92, 100 + 10:47, 48, 52, 53 + 11:37, 53, 59, 69, 89 + 12:12, 13, 14, 23, 89, 95 + 13:8, 9, 10, 11, 13, 59 + 14:11, 61, 71, 72, 73, 74, 75, 78, 81 + 15:19, 20, 28, 29, 30, 33, 34, 39, 43 + 16:4, 6, 73, 74, 77, 79, 85 + 17:33, 34, 35, 36, 41, 42, 46, 48, 50, 53 + 18:27 + 19:15, 66 + 20:9, 31 + 21:16, 34 + 22:16, 17, 18, 20, 21, 23, 24 + 23:57, 77 + 24:82, 83, 90, 96, 99, 100 + 25:72, 74, 80, 84, 86 + 26:48, 74, 89, 96, 102 + 28:67, 83 + 29:19, 20, 21, 22, 24, 65, 74 + 30:74 + 31:28, 33 + 32:28, 69, 74 + 34:14, 52 + 35:21, 24, 37 + 36:3, 27, 29, 30, 31, 32, 33, 40, 47 + 37:71, 73 + 38:4, 8, 39, 69, 70, 92 + 39:9 + + + + + Postal service + + + 1:46 + 2:8 + 4:79 + 12:72 + 23:50 + 24:69 + 26:30, 80 + 30:4 + 39:48, 49 + 42:14 + + + + + Postal service--Accounting + + + 42:12, 13 + + + + + Power of attorney + + + 43:45 + + + + + Prices--New York (State) + + + 2:29 + 3:20, 85 + 8:20, 30 + 9:31, 32, 34, 37, 38 + 10:49, 61 + 12:26 + 15:43 + 16:25 + 17:7, 44 + 18:19, 36 + 19:41, 42 + 20:19, 25, 39 + 25:87 + 26:92 + 27:8, 42 + 37:56 + + + + + Prisons + + + 14:41 + + + + + Promissory notes + + + 9:32 + 43:35 + + + + + Public officers + + + 28:85 + 31:68 + + + + + Railroads + + + 33:45 + + + + + Real property--New York (State) + + + 1:37, 55, 63, 65 + 2:9, 22, 27, 30, 64 + 3:3, 5, 50 + + + + + Redhook (N.Y.)--Description and travel + + + 31:66 + + + + + Rent--New York (State) + + + 1:53, 72 + 2:74 + 3:1, 11, 17, 35, 43 + 4:1, 24, 26, 52, 63, 64 + 5:55, 65 + 6:9, 19, 39, 47 + 7:9, 21 + 9:8 + 14:4, 52, 84 + 15:74 + 40:4 + 46:4, 7 + + + + + Rent--New York (State)--Livingston Manor + + + 46:3-6 + + + + + Roads--New York (State) + + + 10:4, 38 + 11:64 + 12:98 + 13:22 + 15:24 + 16:20 + 17:22 + 18:12 + 19:69 + 23:45 + 25:59, 83 + 26:3 + 29:20, 21 + 31:60 + 34:51, 54 + 41:3, 14 + 43:1, 2 + + + + + Saint Andrews Society + + + 23:26 + + + + + Sanders family + + + 42:11 + + + + + Scarlatina + + + 11:55, 57 + 24:94 + + + + + Schools--New York (State) + + + 9:2, 10, 13, 21, 24, 51 + 14:12, 13, 15 + 38:66 + 46:10 + + + + + Schools--New York (State)--Clermont + + + 41:22 + + + + + Seminole War, 2nd, 1835-1842 + + + 24:87 + + + + + Sharon (Conn.)--Description and travel + + + 30:62 + + + + + Sheep + + + 10:58 + 11:15 + 13:62 + 16:14, 16, 25, 33, 48, 69, 71 + 17:7, 10, 12, 76, 77, 87 + 18:34, 58, 59 + 19:1, 20, 24, 28, 29, 33, 35, 53 + 20:20, 24, 27, 31, 35, 59, 71, 82, 91, 92 + 21:33, 42, 74, 78 + 24:36, 52, 54, 68, 75, 80 + 25:66 + 28:77 + 29:41, 42, 46, 50, 51, 63, 65, 79, 80 + 30:40, 43, 51, 86 + 32:70, 71, 72 + + + + + Silverware + + + 38:59 + + + + + Slavery + + + 1:17, 30, 35, 74 + 2:21, 93 + 4:55 + 9:10 + 10:36 + 11:17, 73 + 12:66 + 15:38 + 16:55 + 17:80 + 18:33, 35 + 19:33 + 24:24, 74 + 29:72 + 30:48 + 42:4 + + + + Smallpox + + + 2:56 + 3:10 + 21:6 + + + + + Spain--Description and travel + + + 25:79 + + + + + Sparkling wines--New York (State)--Clermont + + + 35:41, 51 + 37:78 + 38:62 + 39:76 + + + + + Squatters + + + 1:52 + 3:8, 34, 40, 41, 62, 70, 78, 80, 86 + 4:14 + 15:62 + + + + + Steamboats--New York (State) + + + 7:48 + 17:70 + 19:30 + 22:48 + 26:87 + 33:40 + + + + + Subpoena + + + 43:46 + + + + + Tariff + + + 32:50 + 36:31 + + + + + Taverns (Inns)--New York (State)--Clermont + + + 21:23 + + + + + Taxation--Carriage + + + 19:6, 12 + + + + + Taxation--Iowa--Adair County + + + 46:9 + + + + + Taxation--New York (State) + + + 5:1 + 11:60 + 19:6, 12 + 46:9 + + + + + Taxation--New York (State)--Clermont + + + 46:9 + + + + + Ten Broeck family + + + 42:11 + + + + + Timber + + + 3:76 + 4:97 + 6:17, 32 + 7:58 + 11:22, 24, 49 + 12:15, 27, 74 + 14:10 + 16:12 + 23:22 + 26:8 + 29:78, 80, 82, 83, 84, 85 + + + + + Transportation + + + 12:28 + + + + + Trespass + + + See also Timber + 26:24 + + + + + Union College + + + 7:24 + 8:9, 16, 35, 41, 46, 51, 53 + 9:3 + 14:88 + 15:2, 40, 52, 53 + + + + + United States--History--Revolution, 1775-1783 + + + 24:4 + + + + + United States--History--1797-1801 + + + 2:4, 77 + + + + + United States--History--War of 1812 + + + 17:8, 31, 38, 44, 45, 71 + 18:42, 43, 52 + 19:18, 26, 36, 47, 56, 57, 58, 60, 62 + 20:14, 15, 16, 18, 67 + + + + + United States. Constitution + + + 1:26 + + + + + United States. Navy + + + 14:56 + 21:72 + 22:31 + 25:65 + 37:51 + + + + + Van Buren, Martin, 1782-1862 + + + 25:72 + + + + + Victoria, queen of Great Britain, 1819-1901 + + + 26:25 + 36:29 + + + + + Wages + + + 14:30 + + + + + War + + + 4:92 + + + + + Warrants (Law)--New York (State) + + + 41:17 + + + + + Washington (D.C.)--Description and travel + + + 30:80 + + + + + Washington, George, 1732-1799 + + + 3:5, 13 + 7:64 + + + + + Weather + + + 8:26, 89 + 14:60 + 29:16, 75 + 30:30, 34 + 31:48 + + + + + Wilson family + + + 33:30, 46 + 42:11 + + + + + Wool + + + 20:44, 46, 49, 63 + 21:33, 63 + 22:20, 29 + 23:45 + 25:10 + 26:7, 14, 95 + 27:23, 24 + 28:68, 70 + 29:39 + 30:20, 21, 27, 30, 32, 34, 49, 72, 80 + 31:21, 22, 36, 40 + 32:5, 7, 8, 59 + 33:58 + 34:25, 26, 51 + + + + + Yale College + + + 16:62 + + + + + Yellow fever + + + 7:19, 35, 36 + 8:43 + 9:69, 71, 92, 98 + 24:97 + 28:17, 74 + + + + + + List of accounts and law cases + + Merchants--Accounting + + + Abbott, William 44:1 + Adams, John 44:1 + Adee, David 44:1 + Ainsley, Elias 44:1 + Albany Argus 44:1 + Albion 44:1 + Alexander, J.R. 44:1 + Alling, Samuel 44:1 + Allyn, Joseph 44:1 + American 44:1 + American Express 44:1 + American Union 44:1 + Ames, Charles F. 44:1 + Andrews, Ashbel 44:1 + Andrews, Loring 44:1 + Andrews and Woodruff 44:1 + Andrum, James 44:1 + Ann Street Church 44:1 + Archer and Martin 44:1 + Arcularius, P. G. 44:1 + Armitage and Witts 44:1 + Arnoux, Anthony 44:1 + Arnoux, A. and G. A. 44:1 + Arthur, Samuel 44:1 + The Aurora 44:1 + Austin, Charles 44:1 + Austin and Andrews 44:1 + Ayer, N. W. 44:1 + Ayers, William 44:1 + Bachman, Allen 44:2 + Bachman, Allen 44:2 + Backus and Whiting 44:2 + Bacon, Edward 44:2 + Bailey, James + John T. 44:2 + Bailey and Holmes 44:2 + Baker, A. W. + Henry + William A. 44:2 + Bakewell, Thomas 44:2 + Baldwin, Joseph 44:2 + Baldwin and Cook 44:2 + Ballard, G. 44:2 + Bame, Jeremiah 44:2 + Bank of Columbia 44:2 + Bank of Hudson 44:2 + Banker and Van Tilden 44:2 + Banks, M. 44:2 + Barber, John 44:2 + Bardin, Edward 44:2 + Barker and McCindrell 44:2 + Barnes, P. 44:2 + Barney, Margaret 44:2 + Barnum, Charles P. 44:2 + Barringer, R. 44:2 + Barrington, R. 44:2 + Bartholomew, Andrew 44:2 + Barton, E. 44:2 + Bassett, Joshua 44:2 + Bayard, Stephen N. 44:2 + Becker, Peter 44:2 + The Bee 44:2 + Beekman, John 44:2 + Bell, Isabella + John 44:3 + Bement, George 44:3 + Ben 44:3 + Bender, Henry 44:3 + Bennett, Henry 44:3 + Benton, Samuel + Thomas + William 44:3 + Bernet 44:3 + Bessar, H. W. 44:3 + Best, George C. + Jacob + John 44:3 + Bigelow andd Isham 44:3 + Bininger, A. 44:3 + Blain, James 44:3 + Blass, John + Philip 44:3 + Blatner, Marks 44:3 + Bleeker, James 44:3 + Blew, Moses 44:3 + Bloodgood, James G. + Thomas 44:3 + Bogardus, James + Samuel 44:3 + Bogardus and Groat 44:3 + Bolles, John 44:3 + Bonesteel, Henry + Jacob N. 44:4 + Bonesteel and Broadhead + Bonesteel and Foland + Bonesteel and Wachaugen 44:4 + Bostwick, C. B. + R. W. 44:5 + Bourne, Mary 44:5 + Bowman, N. 44:5 + Bradstreet, Andrew 44:5 + Brand, H. Little 44:5 + Brau, James 44:5 + Brett and Bunn 44:5 + Breuster, H. and S. 44:5 + Brink, Andrew 44:5 + Broadwell, William 44:5 + Bronk, Richard 44:5 + Brooksbank, William 44:5 + Brown, E. M. + Jedediah + Thomas 44:5 + Browning, Jeremiah + Robert 44:5 + Bruce, William and Robert 44:5 + Bruce and Morrison 44:5 + Buel, Jesse 44:5 + Bunker, William J. 44:5 + Bunker and Van Siclen 44:5 + Burchsted and Barnard 44:5 + Burhans, Isaac 44:5 + Burk, James 44:5 + Burwell, Calvin 44:5 + Butler, Erastus 44:5 + Cadiness, John K. 44:6 + Caldwell, James and Son 44:6 + Campbell, Samuel 44:6 + Cantine, Peter 44:6 + Cantine and Meyer + Cantine, Van Ness and Heermance 44:6 + Capron, A. + Cyrus + William P. 44:6 + Cargill, Abraham 44:6 + Carpenter, A. 44:6 + Carr, William 44:6 + Carrique, P. Dean 44:6 + Carswell and Eaton 44:6 + Carvill, G. and C. + G. C. and H. 44:6 + Cauldwell, Ebenezer 44:6 + Champlin 44:6 + Chandler, Solomon 44:6 + Chase, G. + Mary H. 44:6 + Cholwell, J. 44:6 + Christie, T. and J. 44:6 + Church Journal 44:6 + Churchman and Parson 44:6 + City-Hall Register 44:6 + Clark and Baldwin + Clark and Bawlding + Clark and Horsford + Clark and Tallmadge 44:6 + Clow, Henry 44:6 + Clum, Henry P. 44:6 + Cockburn, James 44:7 + Cockburn, J. and G. Miller 44:7 + Coffin, Robert 44:7 + Cogswell, J. and M. 44:7 + Cole, Peter B. 44:7 + Collins, Nathan + Peter B. 44:7 + Columbia Hall 44:7 + Columbia County Mutual Insurance Co. 44:7 + Columbian 44:7 + Commercial Advertizer 44:7 + Comstock, Ebenezer 44:7 + Congress (Steamboat) 44:7 + Conklin, J. 44:7 + Cook, Palmer 44:7 + Cook and Baker 44:7 + Coon, Alex + Philip W. 44:7 + Cooper, Elisabeth + Jacob + John + Peter F. + Thomas 44:7 + Cooper and Bogardus 44:7 + Corry, Samuel 44:7 + Coster, J. 44:7 + Cotheal and Huff 44:7 + Country Post 44:7 + Cox, John 44:7 + Crapner, Alfred 44:7 + Crary, E. R. 44:7 + Crawford, George 44:7 + Crawford and Trumphorn 44:7 + Creiger, John L. 44:7 + Crook and Fowks + Crook and Ten Broeck 44:7 + Crosswell, E. 44:7 + Cultivator and Register 44:7 + Cummings, James 44:7 + Currie, Archibald and David 44:7 + Curtis, C. + Seth 44:7 + Daily Times 44:8 + Darling, Charles A. 44:8 + Darling and Power 44:8 + Daily Tribune 44:8 + Davis, Ann + David + Henry + Jabez + Jacob + John G. + William 44:8 + Day, John 44:8 + Dean and Storm 44:8 + Deane, William 44:8 + Decker, Peter + Richard 44:8 + DeHart, Cyrus 44:8 + DeLameter, G. E. 44:8 + DeLameter and heermance 44:8 + Deneger, Albert + Ephraim + George + Jonas 44:8 + Denty, M. 44:8 + DePeyster, F. 44:8 + Devereaux, E. 44:8 + DeWitt, Henry 44:8 + Dey, Anthony 44:8 + Dibblee, Fyler + Henry + H. F. + Richard H. 44:9 + Dibblee, Bostwick and Co. 44:9 + Dick, J. 44:9 + Dickson and Manny 44:9 + Dimmick, Thomas 44:9 + Dodge, William 44:9 + Donnelly, John 44:9 + Dorning, A. I. 44:9 + Doty, James 44:9 + Doyle, Louis 44:9 + Drum, Matthias 44:9 + Drummond, James P. 44:9 + Duane Street Church 44:9 + DuBois and Voorhis 44:9 + Duncan, Cato 44:9 + Dunderdale, J. and F. 44:9 + Dunkan, L. and W. 44:9 + Dunlop and Wilson 44:9 + Dunspaugh, Henry 44:9 + Dutcher, John W. 44:9 + Dutchess Democrat 44:9 + Duychinck, Gerrardus Jr. 44:9 + Dykers, Alstyne and Co. 44:9 + Eaton and Lasher 44:10 + Eclectic Magazine 44:10 + Eliot, Nathan 44:10 + Ellsworth, Henry 44:10 + Elting, J. Jr. + H. and R. + Robert 44:10 + Elting and Co + Elting and Varrick 44:10 + Elton, Cyprian + Rhesa 44:10 + Ely, R. 44:10 + Ely & Nuttman 44:10 + Emmett & White 44:10 + Eustis, F. A. 44:10 + Evans & Brown 44:10 + Evening Post 44:10 + Feary, John 44:10 + Feller, George + Philip 44:10 + Feller & Robinson 44:10 + Fields, Peter 44:10 + Finck, W. B. 44:10 + Finck and Capron 44:10 + Finkel, John 44:10 + Fish, Henry 44:10 + Fitch, Hendrick 44:10 + Flagler, Joseph 44:10 + Fletcher, Joseph 44:10 + Fletcher and Scuddle 44:10 + Foland, William 44:10 + Folger, Rueben 44:10 + Forbus, John 44:10 + Fraleigh, John P. 44:10 + Fryer and VanVliet 44:10 + Funk, William 44:10 + Fulmes, Anthony 44:10 + Gage, Hiram 44:11 + Gale, Ira + Jeremiah 44:11 + Gale and Barringer 44:11 + Gardner, G. + Joshua + Richard 44:11 + Gardner & Drayton 44:11 + Gaul, J. & D. 44:11 + Gazette of the United States 44:11 + Gerry, J. & W. 44:11 + Gelston, Cotton 44:11 + General Protestant Episcopal Sunday School Union and Church Book Society 44:11 + Gibbs, William 44:11 + Gibson, James + William 44:11 + Gifford, A. + E. 44:11 + Gilbert, Ashley 44:11 + Gill, John M. + Robert 44:11 + Godey's Lady's Book 44:11 + Gojon, Claudius F. 44:11 + Gould, E. P. + Stephen 44:11 + Gould and Banks 44:11 + Gracie and Co. 44:11 + Graham, William 44:11 + Green, Ann + Samuel 44:11 + Greenleaf, Thomas 44:11 + Gridley, O. 44:11 + Grier, John 44:11 + Grier, J., Brooks and Co. 44:11 + Haight, Benjamin + John and Nicholas + Samuel 44:12 + Hall, Aaron C. + A. C. + H. C. 44:12 + Hall, Fuller, and Barlowe 44:12 + Hallock and Shelden 44:12 + Halsted, O. 44:12 + Ham, Jeremiah + Peter C. 44:12 + Hamersley, Thomas 44:12 + Hamlin, David + G. 44:12 + Hamlin, Dibblee and Col. 44:12 + Hannah, William 44:12 + Hardenburgh, Johannes 44:12 + Harvey, John 44:12 + Hassman, John B. + P. 44:12 + Hathaway, John + S. S. 44:12 + Hatten, James 44:12 + Hattrick, Mary Lee 44:12 + Haner, Samuel 44:12 + Hawley, E. + George 44:12 + Heenberg, J. P. 44:13 + Heermance, Andrew + Martin 44:13 + Henry, William 44:13 + Herbert, John L. 44:13 + Herrick, S. H. 44:13 + Hicks, Elias 44:13 + Hicks and Merrick 44:13 + Hill, R. H. 44:13 + Hillicker, Norman 44:13 + Hitchcock, Miles 44:13 + Hoffman, A. N. + D. D. + Herman + Mrs. + Zacharius 44:13 + Hoffman and Sons + Hoffman and Van Buren + Hoffman, Van Deusen and Co. 44:13 + Holbrook, Eliot 44:14 + Holley, E. C. 44:14 + Holt, Charles 44:14 + Hopkins, George F. 44:14Irvin, Adam 44:14 + Israel, William 44:14 + Jackson, Robert 44:15 + Janson, John B. 44:15 + Jarvis, Bulkley, and Wheeler 44:15 + Jenkins, Elisha + James + Robert + Thomas 44:15 + Jenings, S. C. 44:15 + John, H. and Ogle 44:15 + Johnson, John P. + William 44:15 + Johnston, John C. 44:15 + Jones, William R. 44:15 + Jones and Clinch 44:15 + Journeay, James 44:15 + Kelly, James 44:15 + Kemper, John 44:15 + Kenney, John 44:15 + Ketchum, Joseph 44:15 + Kiersted, Luke 44:15 + King, George + Joseph + Vincent + William O. 44:15 + King & McGill 44:15 + Kingoland, Richard 44:15 + Kingston Academy 44:15 + Kirby & Yeats 44:15 + Kiss, Luke 44:15 + Knickerbocker, Edwin + Philip 44:15 + Knickerbocker and Washburn 44:15 + Kortz, John 44:15 + Labagh, John T. 44:16 + Lamb, George C. 44:16 + Lambert, James 44:16 + Lane, James + Jonathan + R. and A. 44:16 + Lansing, Turner & Co. 44:16 + Lasher, B. C. + Bostian + Elias + George B. + George C. + John G. Jr. + John L. + P. N. + Rufus 44:16 + Lasher and Shook 44:16 + Latham, James 44:16 + Lawrence, James + Joseph 44:16 + Leander 44:16 + LeBreton, Edward A. 44:16 + Lee, James + Mary 44:16 + LeRoy, Levi + Theodore 44:16 + Lescure, H. 44:16 + Lewis, Morgan + Thomas 44:16 + Littbertson, Morris 44:17 + Littell, E. 44:17 + Living Age 44:17 + Livingston, Crawford + Edward P. + Henry + M. and C. + Margaret + Peter R. + Robert + Robert R. + W. T. and J. C. + William A. 44:17 + Lodi Manufacturing Co. 44:17 + Loscher, Conrad 44:17 + Losee, Cyrus 44:17 + Lounds, Oliver M. 44:17 + Lovering, J. And S. 44:17 + Ludlow, Julian 44:17 + Luff, N. W. and Co. 44:17 + Luffman, John 44:17 + Lynch and Dibbles 44:17 + Lynk 44:17 + MacArthur, C. 45:1 + McCaskey, John 45:1 + McCrindell, James and Thomas 45:1 + McDougall, Peter M. 45:1 + McGill, William 45:1 + McKinley, George 45:1 + McKinstry and White 45:1 + McLean 45:1 + McManus, M. P. 45:1 + MacNicol, Alexander 45:1 + Macy and Hors 45:1 + Mancius, George W. 45:1 + Mandeville, William 45:12 + Mansfield, James L. 45:1 + Mansfield and Smith + Mansfield and Shirtz 45:1 + Mansion House 45:1 + Marchall, Milo 45:1 + Marquand, F. 45:1 + Martin, Edward 45:1 + Martin and Myers 45:1 + Masier, Eli 45:1 + Masier and Bennett 45:1 + Mate, J. 45:1 + Medical Repository 45:1 + Merfield, Walter 45:1 + Mennemy, Robert M. 45:1 + Merchants Canal / Transportation Line 45:1 + Merrick, Justin 45:1 + Merry's Museum45:1 + Mesier, P. A. 45:1 + Mesler and Ballard 45:1 + Methuen, James 45:1 + Meyer, G. and T. + John 45:1 + Midler, Christopher 45:2 + Miller, Peter 45:2 + Miller and Feller + Miller and Gaul + Miller and Punderson 45:2 + Mills, John 45:2 + Miner, Elisha + Eunice + Erastus 45:2 + Mink, Henry + Philip H. 45:2 + Minkler, Adam + Jacob + Kilian 45:2 + Mitchell, Charles 45:2 + Mitchell, Mr's Church 45:2 + Moffett, H. 45:2 + Moore, Benjamin + Conrad + John + John, Jr. + Philip + Samuel 45:2 + Moore and Robertson 45:2 + Morange, B. and Son + James 45:2 + Morgan, Hubbel 45:2 + Morris, R. H. 45:2 + Muldoon and Montgomery 45:2 + Museum 45:2 + Muller, Peter 45:2 + Munson, John 45:2 + Murch, Robert H. 45:2 + Murray and Beyer 45:2 + Nash, Samuel 45:2 + National Advocate 45:4 + National Democrat 45:4 + National Hotel 45:4 + Near, H. and L. 45:4 + Nelson, Thomas and Son 45:4 + New World 45:4 + New York American 45:4 + New York and Schuylkill Coal Co. 45:4 + New York Daily Advertizer 45:4 + New York Dry Dock Co. 45:4 + New York Enquirer 45:4 + New York Evening Post 45.4 + New York Herald 45:4 + New York Historical Collections 45:4 + New York Statesman 45:4 + New York Tribune 45:4 + New Yorker 45:4 + Newkirk, C. 45:4 + Nexson, William E. 45:4 + Nichols, David 45:4 + Nichols and Wilcox 45:4 + Nittebrants 45:4 + Noah's Enquirer 45:4 + Norman, Joseph P. + William E. 45:4 + Northern Whig 45:4 + Norton, John S. 45:4 + Nortwick and Miller 45:4 + Nova Scotia Coal Depot 45:4 + Noyes, S. H. 45:4 + Oakley, Daniel 45:5 + O'Dell, Isaac 45:5 + Opsley, R. and I. H. 45:5 + Outwater, Peter 45:5 + Owens, Jesse 45:5 + Paddock, John 45:6 + Palmer, William 45:6 + Paine, Catherine 45:6 + Panorama 45:6 + Park, Jacob 45:6 + Parker, Ransom 45:6 + Parkman, Thomas 45:6 + Parks, Mills 45:6 + Parley's Magazine 45:6 + Parsons, I. and C. + Jales 45:6 + Patrie, N. 45:6 + Patterson, Robert 45:6 + Paulding, Nathaniel 45:6 + Pease and Wiswall 45:6 + Pellett, Joel 45:6 + Penfold, John 45:6 + Penn, Joshua 45:6 + Penny Magazine 45:6 + Perkins, James T. 45:6 + Peters, A. S. 45:6 + Phillips, George 45:6 + Pierce, John 45:6 + Platner, Freeman 45:6 + Platt, Isaac + Israel 45:6 + Platt and Co. 45:6 + Pleasant Valley Boarding School 45:6 + The Plough Boy 45:6 + Plumb, Samuel 45:6 + Porter, James + N.B. 45:6 + Potter, P. + William P. 45:6 + Potts, Henry + Peter + William H. 45:6 + Potts and Moore 45:6 + Power, Isaac + Nicholas + Thomas 45:6 + Power and Livingston 45:6 + Pratt, Erastus 45:6 + Prober, David 45:6 + Punderson, Ebenezer + F. + Gifford 45:6 + Punderson and Van Valkenburg 45:6 + Purdy, R. L. and G. W. Betts 45:6 + Puree, Smith 45:6 + Racy, Charles 45:7 + Rathbone, J. 45:7 + Rause, H. 45:7 + Rawson, Stephen 45:7 + Raynor and Ten Broeck 45:7 + Redfield, Bernard 45:7 + Reed, Rufus 45:7 + Reed and Gage 45:7 + Reid, Isaac 45:7 + Republican Telegraph 45:7 + Reynolds, Gamaliel + James S. 45:7 + Richmond, John + L. + Thomas 45:7 + Rider, George T. 45:7 + Riely, F. 45:7 + Riggs, William H. C. 45:7 + Ripley, Charles 45:7 + Rivers, Adam 45:7 + Robertson, John 45:7 + Robinson, John + Peter 45:7 + Rockefeller, Peter + Robert 45:7 + Rockefeller and Platner + Rockefeller and Sharp + Rockefeller and Simmons 45:7 + Rodman, Thomas 45:7 + Rogers, W. T. 45:7 + Roive, Thomas 45:7 + Roome, Jacob 45:8 + Roorbach, Arthur H. 45:8 + Roraback, Uriah 45:8 + Rose and Hurley 45:8 + Rossman and McKinstry 45:8 + Row, Matthew 45:8 + Row and Reed 45:8 + Rowley, J. and D. + John + W. and D. 45:8 + Rudder, Frederick 45:8 + Russell, J. 45:8 + Rutherford, Walter 45:8 + Fyfenbergh, Alex + Peter 45:8 + Ryker, John 45:8 + Sagendorph, D. + George + H. L. 45:9 + Sagendorph and Potts 45:9 + St. Johns, Oliver R. 45:9 + Salisbury, John 45:9 + Saltback, Jacob + P. 45:9 + Sanders, John 45:9 + Schenck, Sarah 45:9 + Schermerhorn, Betsey 45:9 + Schmidt, Matthias 45:9 + Schuyler and Myers 45:9 + Scriba, Frederick + George 45:9 + Scriba, Schoeppel, and Starman 45:9 + Secor and Priest 45:9 + Seelgraph, Jacob 45:9 + Semi-Monthly Magazine 45:9 + Semi-Weekly Tribune 45:9 + Seymour and Macy 45:9 + Sewall, H. D. and H. P. 45:9 + Sharp, A. 45:9 + Sharp and DuBois 45:9 + Sharp, Granz and Co. 45:9 + Shear, H. 45:9 + Shepperd, R. T. 45:9 + Shook, J. R. 45:9 + Showers, John 45: + Shufeldt, M. 45:9 + Shults, Peter 45:9 + Simons, Titus 45:9 + Sipperly, William 45:9 + Skinner, H. D. 45:9 + Smith, Charles + Eleazer + George B. + Gilbert + Giles + James L. + John P. + Lorentz + Michael + Samuel + T. Tredwell 45:9 + Smith, Littlefield and West 45:9 + Snyder, H. + Samuel 45:10 + Southart, Jacob 45:10 + Sparkman, James D. 45:10 + Spencer, M. 45:10 + Sperry, Jacob 45:10 + Staats, J. P. + Peter + Widow 45:10 + Stebbins, Francis + William B. 45:10 + Steel, John B. 45:10 + Stephen, Coffin, and Peckham 45:10 + Stevens, J. H. 45:10 + Steward, John 45:10 + Stockholm and Browney 45:10 + Stocking, A. + Samuel 45:10 + Stoddard, Ashbel 45:10 + Stokes, ____ + H. and A. 45:10 + Stone and Corss 45:10 + Storm, Thomas 45:10 + Storrs, A. + W. and G. 45:10 + Story, Judge 45:10 + Strong, Jeremiah + Joseph + Peter 45:10 + Stuart, James 45:10 + Suides 45:10 + Swart, Cornelius + Thomas 45:10 + Swartwout, John 45:10 + Sword, T. and J. 45:10 + Talmadge and Southerland 45:11 + Tappen, Cornelius 45:11 + Taylor, John + Philip H. + Robert 45:11 + Teal, William H. 45:11 + Teats, B. 45:11 + Teller, James 45:11 + Ten Broeck, Hudson + J. V. R. + Samuel 45:11 + Ten Broeck and Benjamin 45:11 + Thomas, Thomas 45:11 + Thompson, Samuel 45:11 + Thomson, Thomas 45:11 + Throckmorton, William 45:11 + Tobey, Silas 45:11 + Tomes, Henry 45:11 + Tooker, Martin + Samuel 45:11 + Traver, John P. 45:11 + Travis and Shook 45:11 + Trempen, William 45:11 + Turcot, Peter D. 45:11 + Union College 45:11 + Union Transportation Line 45:11 + United States Fire Insurance Co. 45:11 + Valkenburgh, Christian 45:12 + Van Antwerp, P. 45:12 + Van Beuren, Henry + Peter B. 45:12 + Van Buren, P. 45:12 + Van Buren and Clow + Van Buren and Livingston + Van Buren and Reed 45:12 + Van De Bogart, R. V. 45:12 + Vandenberg and Pendleton 45:12 + Vandervoom, W. and P. L. 45:12 + Van Deusen, John + David + H. B. + P. + Richard D. 45:12 + Van Deusen and DuBois + Van Deusen and Gaul + Van Deusen and Reed 45:12 + Van Dyke, Miss 45:12 + Van Etten 45:13 + Van Horn, James 45:13 + Van Lewen, John 45:13 + Van Loew, M. D. and B. 45:13 + Van Ness, David and Son + G. B. + Jacob + 45:13 + Van Nortwick and Miller 45:13 + Van Ranst, A. M. 45:13 + Van Rensselaer, Henry R. 45:13 + Van Schaack, John + Peter 45:13 + Van Steenburgh, Jacob B. 45:13 + Van Vleck, Abraham 45:13 + Van Vleck and Cantine 45:13 + Van Valkenburgh and Rossman 45:13 + Varrick, Richard 45:13 + Villee, Cornelius 45:13 + Voris and Buckle 45:13 + Vosburgh, Martin 45:13 + Vravenburgh, William 45:13 + Wachenhagen, Augustus + Mary 45:14 + Waggoner, Peter W. 45:14 + Waite, G. and R. 45:14 + Waldo, D. R. 45:14 + Waldo and Lower 45:14 + Wall Street House 45:14 + Walsh, J. O. 45:14 + Walter, Henry 45:14 + Warren, Aaron 45:14 + Washburn, K. 45:14 + Washburn and Moore 45:14 + Watch Tower 45:14 + Watson, L. Z. + M. J. 45:14 + Watts, John 45:14 + Wawley, E. and G. 45:14 + Weaver, Adam A. 45:14 + Week, Mrs. 45:14 + Weekly Museum 45:14 + Weeks, Peter 45:14 + Welch, Jesse 45:14 + Westchester (steamboat) 45:14 + Wescott, Samuel 45:14 + Westervelt and Munson 45:14 + Westmore and Channing 45:14 + Wey, Gurden 45:14 + Wheeler 45:14 + Whitaker, Joseph + O. 45:14 + White, Ann + John + Philip + Samuel 45:14 + Whitemarsh, Sameul and Co. 45:14 + Whitney, S. 45:14 + Wigman and Clark 45:15 + Wilbur, H. + Solomon Jr. 45:15 + Wilby, William 45:15 + Wilcox, John 45:15 + Willcox, Abner 45:15 + Willetts, Doty, and Co. 45:15 + Williams, William 45:15 + Wilson, A. W. + Hannah S. + Robert L. + R. and W. + William + William H. 45:15 + Wilson and Dibblee 45:15 + Winteringham, David + Sidney 45:16 + Wiswall and Jenkins 45:16 + Wolcott, C. C. 45:16 + Wood, David + James + Timothy 45:16 + Woodworth, A. 45:16 + Wyckoff, Samuel 45:16 + Wynkoop, Arritha + Cornelius 45:16 + Yeo, S. + 45:16 + Young, Henry + J. and S. + John 45:16 + Young People's Book + 45:16 + Younglove and West + 45:16 + + + + + Law—Cases [N.B.: Both plaintiffs and defendants are included, intermixed, in the following listing, without reference to a role in a particular case.] + + + Babcock, William 43:8 + Backer, William 43:22 + Bacon, Converse 43:23 + Bandoline and Chapman 43:22 + Bank, Franklin 43:5 + Bartlett, Robert 43:6 + Bay, John 43:23 + Becker, William 43:22 + Benedict, James 43:7 + Benjamin [slave] 43:23 + Benson, Matthew 43:22 + Bentley, William N. 43:23 + Bogert, John G. 43:22 + Brasher 43:20 + Broadhead, Thomas 43:23 + Brown 43:23 + Brown, John C. 43:8 + Brown, Stephen G. 43:22 + Brown, Thomas 43:22 + Burras, Jane 43:22 + Byron, Harriet 43:22 + Byron, Willimina 43:22 + Cantello, William J. 43:17 + Capron, Cyrus 43:23 + Cheetham, James 43:22 + Clermont. [NY] 43:23 + Cock, Townsend 43:10 + Columbia County. NY 43:23 + Conant, Samuel 43:23 + Conklin, Joel 43:10 + Corbin, Francis 43:10 + Corry, Samuel 43:11 + Cox and Duffy 43:22 + Crawbuck, Peter 43:23 + Crookshank, Grace 43:23 + Crysler, Mattys 43:22 + DeLameter, [Peter?] 43:23 + Deming, Lemuel 43:12 + Dewey, Timothy 43:23 + Dodd, Moses 43:22 + Duane, Mrs. 43:22 + Dubois, Cornelius 43:22 + Duyer, Antonia and William 43:23 + Edwards, George C. 43:23 + Elmendorph, Edmund 43:15 + Elsworth, John 43:22, 23 + Fris, Jacob 43:22 + George, Hannah 43:22 + Goest, Lucas 43:22 + Gould, Stephen 43:5 + Gould, William 43:22 + Granger, [N.Y.] 43:23 + Gwyer, Charles 43:23 + Haircott, John 43:22 + Hall, Abraham (estate) 43:22 + Hall, Henry 43:13 + Hamlin, Asher P. 43:14 + Harrison, James 43:23 + Harrison, William (estate) 43:15 + Harvey, John 43:22 + Hattrick, Peter 43:16 + Haven, Herman 43:23 + Hicks, John D. 43:22 + Hillsdale, [N.Y.] 43:23 + Hoffman, Herman 43:22 + Howard, Whitehead 43:21 + Hull, Henry 43:22 + Hyslop, John (estate) 43:23 + Jackson, James ex dem Seth Jenkins 43:23 + ex dem Frederick Myer 43:23 + Jenta, Alexander 43:22 + Kane, John R. 43:22 + Kean, Paul 43:22 + Kerr, Anthony 43:22, 23 + King, E. C. 43:23 + Lamb 43:23 + Lamb, George C. 43:8, 26 + Langhorn, William W. 43:22 + Langlois, Charles 43:9, 17 + Lewis, George 43:23 + Lewis, Morgan 43:22 + Livingston, Edward P. 43:22 + Livingston, Emily M. 43:22 + Livingston, Herman 43:22 + Livingston, Maturin 43:22 + Livingston, Robert R. 43:18, 22 + Low, Isaac 43:23 + Lynch, Dominick 43:19 + Lynch, Henry 43:20, 21, 23 + Lynk, Henry 43:29 + Lynk, John 43:23 + McLean, Augustus 43:22 + March and Low (Co.) 43:22 + Mason, George 43:23 + Matthews, James 43:6 + Miller, Adrian P. 43:23 + Minor, Eunice 43:22 + Monell, George 43:22 + Moore, Thomas 43:22 + More, Jacob J. 43:22 + Munn, Stephen B. 43:23 + Murray, Robert I. 43:23 + New York City 43:23 + Norton, John L. 43:22, 23, 27, 28 + Norton, Samuel I. L. 43:23 + Olcott, John L. 43:22 + Page, William S. 43:19 + Palmer, Levi 43:22 + Parker, John 43:23 + Parker, Miles 43:22 + Peltier and Morel 43:22 + Racy, Charles 43:23 + Read, Samuel 43:23 + Reade, Morris 43:23, 25 + Reformed Protestant Dutch Church of the City of New York 43:16 + Rifenburgh, George M. 43:23 + Roe, Walter 43:22 + Rogers, Benjamin W. 43:23 + Rogers, Edward N. et al. 43:22, 23 + Rogers, Samuel 43:22 + Ross, John 43:24 + Schermerhorn, Jacob 43:22 + Schoonmaker, David 43:23 + Scott, Moses 43:23 + Scriba, [George?] 43:22 + Scriba and Schroeppel 43:23 + Scrugham, William W. 43:23 + Shelden, Dudley 43:7 + Semon and Becker 43:23 + Siem and Van Beuren 43:22 + Sims, William L. 43:22 + Skidmore, Joel 43:22 + Slocomb, Jared 43:24 + Slosson, William 43:22 + Smith, John P. 43:25 + Snyder 43:23 + Songlass, Isaac 43:23 + Spoor, David 43:22 + Steitz, Lewis 43:22 + Stevens 43:23 + Stiles, John 43:22 + Stone, Frederick W. 43:26 + Teiter, Zacharia 43:23 + Ten Broeck, Jacob 43:22 + Thompson, William A. 43:23 + Thomson, A. 43:27 + Tice, John 43:28 + Tompkins, William 43:22 + Valkenburgh, Christian 43:22 + Van Alstyne, William 43:22 + Van Beuren and Lawrence 43:22 + Van Ness, Jacob 43:23, 29, 30 + Van Ness, Peter 43:23 + Van Vechter, John (heirs of) 43:23 + Van Wickle, Evert 43:23 + Villagrand, Jerome J. d' 43:23 + Vriers, Jacob 43:22 + Wagner, Peter et al 43:22 + Waldo, Samuel 43:22 + Wallach 43:23 + Walter, Henry 43:18, 30 + Warner, Henry 43:23 + Webb, John I. 43:11 + Willard, John M. 43:12 + Williams, Jonas 43:22 + Wilson, George 43:23 + Wilson, Peter 43:22 + Wilson, William H. 43:22 + Wiltsie, Conrad 43:23 + Wiswall, Enoch 43:22, 23 + Woodward, John 43:22 + Wycoff, Ferdinand 43:22 + + + + + Estates (Law)--New York (State) + + + Broadhead, J. O. 41:29 + Broadhead, Thomas 41:29 + Cockburn, James 7:5, 19; 10:79; 41:31 + Crawford, George 41:29 + Cupper, Henry 41:29 + Dibblee, Eliza, Wilson 41:29 + Flowers, Samuel 41:29 + Greenleaf, Thomas 41:29 + Hoffman, Philip 41:29 + Hister, Sarah Hulme 41:29 + Howey, Francis 41:29 + Hubbard, Edward 41:29 + Livingston, Betsey n.d. 42:7 + Livingston, Edward P., 1779-1843 42:7 + Livingston, Peter R., 1742-1794 42:7 + Livingston, Philip n.d. 42:7 + Livingston, Robert, 1654-1728 42:7 + Livingston, Robert Jr., 1708-1790 42:7 + Livingston, Robert Cambridge, 1742-1794 5:56, 71; 6:24, 67; 8:50, 70; 11:72; 15:47; 25:51;42:1, 2 + Livingston, Robert R., 1746-1813 22:57; 29:24; 42:3, 4, 5, 6 + Livingston, Peter R., 1737-1794 42:7 + Livingston, Walter T., 1772-1827 42:7 + Livingston, William S. n.d. 42:7 + Norton 42:8 + Owens, Zeba L. 42:8 + Ray, Cornelius 42:8 + Rutsen, Cott Jacob 42:8 + Salles, Laurent 42:8 + Sanders, Jane E. Livingston 42:8 + Sloan, Rachel 42:8 + Ten Broeck, Dirk Wessells 42:8 + Ten Broeck, Samuel 42:8 + Turner, John 42:8 + Van Rensselaer, Maunsell 42:8 + Weaver, William 42:8 + Wilson, Alexander, 1783-1805 15:4; 42:8 + Wilson, Mary Thong Livingston, 1783-1841 42:8 + Wilson, Robert L., 1794-1830 42:9 + Wilson, William, 1756-1828 28:91; 33:8, 10, 15, 17; 34:34; 42:10 + Wimple, Walter V. 42:8 + + + + +
    +
    +
    diff --git a/sample-ead/scrc/ams0099.xml b/sample-ead/scrc/ams0099.xml new file mode 100755 index 0000000..bb76309 --- /dev/null +++ b/sample-ead/scrc/ams0099.xml @@ -0,0 +1,6220 @@ +umich-scl-ams0099 + + Finding aid for Lon G. Nungesser Hope for Humanity Papers, 1970-1989 + + Encoded finding aid prepared by Michelle Sweetser, December 2003 + + + University of Michigan Library (Special Collections Research Center) +

    1988 and 1989

    +
    + University of Michigan Library, Special Collections Research + Center + Harlan Hatcher Graduate Library (South) + 913 S. University Avenue + Ann Arbor, MI 48109-1190 + URL: https://www.lib.umich.edu/special-collections-research-center +
    +
    +
    + This finding aid was produced using ArchivesSpace on 2020-04-27 15:38:47 + -0400. + The finding aid is written in English +
    University of Michigan Library (Special Collections Research Center)Finding aid for Lon G. Nungesser Hope for Humanity Papers, 1970-1989 + Encoded finding aid prepared by Michelle Sweetser, December 2003Nungesser, Lon G.Lon G. Nungesser Hope for Humanity Papers 1970-19892 Linear Feetams0099The material is in English. + The Lon G. Nungesser Hope for Humanity + Papers, 1970-1989 comprise correspondence, drafts of unpublished and published manuscripts, + ideas for research projects, family history material, publishers' contracts, placement + files, and copies of his three books: Homosexual + acts, actors and identities (Praeger, 1983), Epidemic of courage: facing AIDS in America (St. Martin's, + 1986), and Notes on living until we say goodbye: a + personal guide (St. Martin's, 1988). The papers reflect Nungesser's struggle + against homophobia and particularly his battle with AIDS and coping with terminal illness. + Correspondents include Dana H. Bramel, Stuart Kellogg, and Philip G. Zimbardo. + University of Michigan Library (Special Collections Research Center) + Joseph A. Labadie Collection + + Immediate Source of Acquisition +

    Papers were donated by Lon Nungesser in 1988 and 1989.

    +
    + Conditions Governing Access +

    The collection is open for research.

    +

    Original audio cassettes have been digitized and the digital surrogates are available for + researcher use in the Special Collections Reading Room.

    +
    + Conditions Governing Use +

    Copyright has not been transferred to the Regents of the University of Michigan. Permission + to publish must be obtained from the copyright holder(s).

    +
    + Processing Information +

    Kris Kiesling, 1988; updated, July 1989.

    +
    + Preferred Citation +

    Hope for Humanity Papers, University of Michigan Library (Special Collections Research + Center)

    +
    + +

    Lonnie Gene Nungesser was born in Springfield, Mo., on May 30, 1953, to a family living + below the poverty level in the Ozark Mountains. He left home at the age of fifteen, + graduated from Mountain Grove (Mo.) High School in 1971, and entered the U. S. Coast Guard, + serving until 1973. He was licensed as a Southern Baptist minister in 1969. In 1975 he + received his Associate's Degree from the College of Alameda (Ca.), where the previous year + he had been elected the first Caucasian student body president. In 1979 Lon earned a B.A. in + psychology from Stanford University and, in 1982, an M.A. in social psychology from the + State University of New York at Stony Brook.

    +

    Lon left Stony Brook in early 1983 because of faltering health. In October of that year he + was diagnosed as having Kaposi's Sarcoma and AIDS (Acquired Immune Deficiency Syndrome) and + told he had only a few months to live. Since his diagnosis, Lon has dedicated his life to + helping others survive the experiences he has lived through - coping with terminal disease + and homophobia. To that end, Lon has written extensively. In addition to several unpublished + works, he has three books: Homosexual Acts, Actors + and Identities (Praeger, 1983); Epidemic + of Courage: Facing AIDS in America (St. Martin's, 1986); and Notes on Living until We Say Goodbye: A Personal Guide + (St. Martin's, 1988).

    +
    + +

    Although there is some memorabilia from his high school years and some personal mementoes, + the bulk of this collection reflects Nungesser's struggle against homophobia, and + particularly his battle with AIDS. The papers include published and unpublished writings, + contracts with publishers, book reviews, drafts of research projects and grant proposals, + correspondence, college placement files, articles and interviews, photographs, and + clippings. There are two videocassettes, one of a call-in talk show with Nungesser as guest, + and the other of Nungesser reading from Notes on Living until We Say Goodbye. + In addition, there are two audio cassettes of radio interviews of Nungesser. The + 1984 interview concerns Homosexual Acts, Actors and Identities and the 1988 + interview discusses his battle with AIDS and Notes on Living until We Say + Goodbye. These audio cassettes have been reformatted.

    +

    Nungesser is a prolific writer. There are several unpublished, book-length manuscripts in + the papers, as well as dissertation and grant proposals and other writings. All relate to + the social psychology of homosexuals, and several concern AIDS. Copies of Nungesser's three + books have been cataloged for the Labadie Collection.

    +

    In April 1989, Lon began sending his correspondence and writings to the Department of Rare + Books and Special Collections on computer disks. The files on these disks have been printed + and those that did not duplicate materials already in the collection were interfiled. The + disks are stored separately from the collection (in Case 2). Each of the printed files are + labeled with the name of the file and its date of creation.

    +

    The papers have been divided into five series.

    +
    Genre Terms:ContractsManuscriptsPhotographsSubjects:Alfred, Randy.Bell, Alan P., 1932-.Bem, Sandra L.Boyer, Cherrie.Bramel, Dana H., 1935- .Bullock, William D. (William David).Calder, Daniel Gillmore.De Cecco, John P.Denneny, Michael.Garfield, Sol L. (Sol Louis), 1918-.Jones, Dezie Dell, 1941-.Kalish, Harry I.Kellogg, Stuart.Koop, C. Everett (Charles Everett), 1916-.Lewis, Robert A. (Robert Alan), 1932-.Masters, William H.Minton, Henry L.Morin, Stephen F.Morrison, H.W.Rodgers, Lee.Selvin, Johnnie Barnes.Stark, Fortney H.Zimbardo, Philip G.AIDS (Disease).Homosexuality -- Psychological aspects.Gays.Social Psychology. + + + Series I: Personal/Biographical + + + +

    Series I. Personal/Biographical comprises Nungesser's statement of purpose for creating + the collection, materials relating to his high school and college education, an + unfinished family history project, a journal he began keeping in 1988 (parts of which + are duplicated in the outgoing correspondence files), and an article about him and his + Epidemic of Courage that appeared in + Stony Brook magazine. There are + several photograph and memorabilia albums containing recent and childhood photos of Lon, + photos of his family, Bill Bullock, and places of significance to Lon, as well as his + birth certificate, diplomas, clippings, greeting cards, etc. There is one restricted + folder: Placement files and resume, 1975-86.

    +
    + + + The Nungesser Papers: Hope for Humanity. Statement of purpose, 1988 + + 1 + 1 + + + + + Bible + 1 + 2 + + + + + Mountain Grove High School, Mountain Grove, MO + + + + 1970 yearbook + 1 + 3 + + + + + 1971 yearbook + 1 + 4 + + + + + 1971 memorabilia book + 1 + 5 + + + + + + College of Alameda, 1974-75 + + 1 + 6 + + + + + Who's Who among Students in American Vocational and Technical + Schools, 1974-75 + + 1 + 7 + + + + + Stanford University + + + + Application for admission/senior honors program 1974 + 1 + 8 + + + + + Graduation program, 1979 + + 1 + 9 + + + + + Graduation photo + 1 + 10 + + + + + + University of California - Berkeley. Statement of purpose for application to + graduate school, 1979 + + 1 + 11 + + + + + SUNY - Stony Brook + + + + General, 1982-84 + + 1 + 12 + + + + + "Psychology of Sex Roles." Course proposal outline, 1981 + + 1 + 13 + + + + + + Pacific Graduate School of Psychology. Admission application, 1986 + + 1 + 14 + + + + + Placement files and resume, 1975-86 + + 1 + 15 + + + + + Resumes, (Lon & Bill) 1986 + + 1 + 16 + + + + + Nungesser family history project + 1 + 17 + + + + + Personal journal, 1988 + + 1 + 18 + + + + + Notes to executor, (Lon & Bill) 1988 + + 1 + 19 + + + + + Tenant and personal information, (Lon & Bill) 1988 + + 1 + 20 + + + + + Health management charts, (Lon & Bill) 1988 + + 1 + 21 + + + + + Record of difficulty with landlord, John Renbourne, 1988 + + 1 + 22 + + + + + Statements re beating of Nov. 30, 1988 + 1 + 23 + + + + + Photo/Memorabilia albums + + + + #1 "The early years with Bill" + 1 + 24-25 + + + + + #2 "More cherished moments with Bill" + 1 + 26-27 + + + + + #3 [greeting cards] + 1 + 28-29 + + + + + #4 [greeting cards] + 2 + 1-2 + + + + + #5 "The life and times of Lonnie Gene Nungesser" + 2 + 3-5 + + + + + + Ireland, Kevin. "An epidemic of courage: AIDS patient Lon Nungesser helps + others confront an irrational killer," Stony + Brook, vol. 1 #1, Spring 1987 + + 2 + 6 + + +
    + + + Series II: Correspondence + + + +

    Series II, Correspondence consists of outgoing correspondence, arranged + chronologically, and incoming correspondence arranged alphabetically. Tora K. Bikson, + Michael Denneny, Christine Friedlander, Stuart Kellogg, Gustav Neumann, and Philip G. + Zimbardo are the most extensively represented correspondents.

    +
    + + + Outgoing, 1978-87 + + 2 + 7 + + + + + 1988 + 2 + 8 + + + + + 1989 + 2 + 9 + + + + + Outgoing correspondence, Bill's + 2 + 10 + + + + + Incoming, A - C + 2 + 11 + + + + + D - F + 2 + 12 + + + + + G - K + 2 + 13 + + + + + Kellogg, Stuart + 2 + 14 + + + + + L - M + 2 + 15 + + + + + N - S + 2 + 16 + + + + + T - Z + 16 + 2 + 17 + + + + + unidentified + 2 + 18 + + + + + Mailing list, Nov. 1988 + + 2 + 19 + + +
    + + + Series III: Writings + + + +

    Series III. Writings contains published and unpublished works from 1977 to 1989 + arranged alphabetically by title. Include copies of Nungesser's three books: Homosexual Acts, Actors and Identities, Epidemic of + Courage: Facing AIDS in America, and Notes on Living until We Say Goodbye: A Personal Guide, as well as reviews + and clippings about the books. Nungesser's unpublished writings cover a variety of + topics, including homophobia, coping with terminal illness (particularly AIDS) and the + associated stigma, and ethics in the medical profession. They vary in format from poetry + and short articles to book-length manuscripts and grant proposals.

    +
    + + + AIDS Survey questionnaire, 1986 + + 2 + 20 + + + + + "AIDS for AIDS: Actively Infused Daily Strategies for Acquired Immune + Deficiency Syndrome," 1986 + + 2 + 21 + + + + + "Armistead Maupin Talks about AIDS," Playguy, Interview by LN June 1985 + + 2 + 22 + + + + + "Can Homophobia Be Cured?" In Men in + Difficult Times, ed. by Robert A. Lewis. Englewood Cliffs, NJ: + Prentice-Hall, Essay by LN c1981. + + 2 + 23 + + + + + "Career Decision Making," 1981 + + 2 + 24 + + + + + "Dimensions of Human Response: Cognitive, Motivational and Emotional + Responses to the Human Dilemma of AIDS," [1984] + + 2 + 25 + + + + + Epidemic of Courage: Facing AIDS in + America. New York: St. Martin's Press, c1986 + + 2 + 26 + + + + Reviews and clippings + 2 + 27 + + + + + + Epidemic of Courage... German trans. Der Wille zu Leben: AIDS-Betroffene + berichten &uuml;ber ihre K&auml;mpfe und Erfolge, 1986 + + 2 + 28 + + + + + "The Experiences and Expressions of Gay Males with AIDS," 1984 + + 2 + 29 + + + + + Heroes, Hopes, and Heartbreaks: Selected Conversations about + AIDS, 1985 + + + + + chapters 1-6 + 2 + 30 + + + + + chapters 7-12 + 2 + 31 + + + + + chapters 13-14 + 2 + 32 + + + + + + "Homophobic Prejudice and Speech Disruptions," 1977 + + 2 + 33 + + + + + "Homophobic Prejudice in Homosexual Males," Senior honors thesis, + Stanford 1979. + + 2 + 34 + + + + + Homosexual Acts, Actors and + Identities. New York: Praeger, c1983 + + 3 + 1 + + + + Reviews and clippings + 3 + 2 + + + + + + "How to Read and Understand Your Own Blood Tests," 1989 + + 3 + 3 + + + + + "The Lesbian Mother as a Role Model: A Case Study and Discussion," + Co-authored by Stephanie Erickson 1977. + + 3 + 4 + + + + + "Life's Discoveries after a Life-Threatening Diagnosis: A Crash Course in + Survival," Video script 1988. + + 3 + 5 + + + + + "Life's Discoveries after a Life-Threatening Diagnosis: A Psychology Today + Audio Series," 1988 + + 3 + 6 + + + + + "Men and Emotion: An Annotated Bibliography," [1981] + + 3 + 7 + + + + + "A New Cognitive-Behavioral Program for Coping with AIDS," AmFAR grant + application 1986. + + 3 + 8 + + + + + "A New Cognitive-Behavioral Program for Coping with Human Immunodeficiency + Virus," 1986-87 + + 3 + 9 + + + + + Nightmare in Gay America: The Social and Psychological Aspects of + AIDS, 1985 + + + + + chapters 1-4 + 3 + 10 + + + + + chapters 5-8 + 3 + 11 + + + + + chapters 9-10, bibliography + 3 + 12 + + + + + + Notes on Living until We Say + Goodbye: A Personal Guide. New York: St. Martin's Press, c1988 + + + + + Hard cover copy + 3 + 13 + + + + + Paperback edition + 3 + 14 + + + + + Draft + 3 + 15 + + + + + Excerpts + 3 + 16 + + + + + "An Author's Reading in Three Parts," 1988 + + 3 + 17 + + + + + Quoted in a sermon by Richard Inlander, 1988 + + 3 + 18 + + + + + Reviews and clippings + 3 + 19 + + + + + New preface, 1988 + + 3 + 20 + + + + + + "Now We Need Men's Lib," 1981 + + 3 + 21 + + + + + Nungesser Homosexual Attitudes Inventory, 1979 + + 3 + 22 + + + + + "Nungesser's Health Psychology Coping Plan," 1988 + + 3 + 23 + + + + + "Perceived Sense of Social Stigma and Reactions to AIDS," 1986, 1988 + + 3 + 24 + + + + + "Personal Health Ethics," 1988 + + 3 + 25 + + + + + Poetry + 3 + 26 + + + + + Positive Memory Study, Proposal, consent form, requests for + volunteers 1988-89. + + 3 + 27 + + + + + "Prime Time Portraits: Tales of Personal Quests toward Positive + Memories," 1988 + + 3 + 28 + + + + + "Quality of Life and Chronic Illness," Dissertation proposal, + SUNY 1985. + + 3 + 29 + + + + + "Reports from the Front Line: Fighting the Battle against AIDS," 1989 + + 3 + 30 + + + + + "Social Stigma and Self-efficacy: A Study of the Relationship between + Attitude Dimensions that Influcence Health-Promoting Behavior, and the Quality of Life + among Men with AIDS," 1986 + + 3 + 31 + + + + + "Social Stigma and Self-efficacy: A Study of the Relationship between + Attitude Dimensions that Influence Health-Promoting Behavior, and the Quality of Life + among Men with Human Immunodeficiency Virus," Dissertation proposal, SUNY 1987. + + 3 + 32 + + + + + Spectrum of Life: Reflections of a Man Facing a Fatal Diagnosis, 1987 + + + + + chapters 1-7 + 3 + 33 + + + + + chapters 8-9, bibliography + 3 + 34 + + + + + + "Still Alive: A Crash Course in Survival," Script written for + film 1988. + + 3 + 35 + + + + + "Survival Tactics: A Personal Manual for Managing the Mortal + Condition," 1986 + + 3 + 36 + + + + + "Survival Tactics for Terminal Illness: Managing the Mortal + Condition," 1987 + + 3 + 37 + + + + + "Theoretical Bases for Research on the Acquisition of Social-Sex Roles by + Children of Lesbian Mothers," Journal of + Homosexuality, vol. 5 #3, Spring 1980 + + 4 + 1 + + + + + "Today's Teenagers: A Needs Assessment and Feasibility Study of Programs and + Services for Palo Alto Area Adolescents," 1978 + + 4 + 2 + + + + + "Trends and Issues in the Study of Homophobia," 1981 + + 4 + 3 + + + + + Consent forms from interviewees for Nightmare in Gay America and Epidemic of Courage + 4 + 4 + + + + + Contracts with publishers + 4 + 5 + + + + + Research and writings ideas - notes + 4 + 6 + + +
    + + + Series IV: Personal Appearances/Speeches + + + +

    Series IV, Personal Appearances/Speeches is comprised of typescripts, clippings, + videocassettes, and audiocassettes of speeches and interviews of Lon between 1979 and + 1988.

    +
    + + + Gay Blue Jeans Day speech, May 1979 + + 4 + 7 + + + + + Gay Life radio interview (KSAN), (cassette tape) (HOPEAUD-001) Feb. 26, 1984 + + 6 + + +

    HOPEAUD-001

    +
    +
    +
    +
    + + + Johnnie Selvin Show, (videotape) 1984 + + 4 + 9 + + + + + "The Resurrection of Inspiration," Outline for sermon Mar. 30, 1986 + + 4 + 10 + + + + + "Notes on Living" reading for Dept. of Psychology, Stanford University, + (videotape) Mar. 19, 1988 + + 4 + 11 + + + + + Lee Rodgers Show (KGO), (cassette tape) (HOPEAUD-002) Apr. 29, 1988 + + 6 + + + + Lee Rodgers Show - Side A + + +

    HOPEAUD-002-01

    +
    +
    +
    +
    + + + Lee Rodgers Show - Side B + + +

    HOPEAUD-002-02

    +
    +
    +
    +
    +
    +
    + + + Series V: Subject Files + + + +

    Series V: Suubject Files, consists of several folders of materials on a variety of + topics, including several issues of AIDS + Treatment News, a bibliography of sources dealing with the psychology of + coping with illness, and samples of resumes Lon created for other people. Also includes + a file entitled "RAM: Reforming American Medicine--Defending the Right to + Self-Knowledge" which contains articles about ethics in the medical profession, + newsletters and fact sheets from Project Inform (San Francisco), and a short information + sheet created by Nungesser.

    +
    + + + "AIDS Treatment News," 1988-89 + + 4 + 13 + + + + + Contact sheet, 1989 + + 4 + 14 + + + + + Crisis referrals, n.d. + + 4 + 15 + + + + + Game - "Jumping Perspectives" + 4 + 16 + + + + + Kabalarian Philosophy name analysis + 4 + 17 + + + + + RAM: Reforming American Medicine, 1989 + + 4 + 18 + + + + + Resources, 1989 + + 4 + 19 + + + + + Resume samples + 4 + 20 + + + + + Clippings + 4 + 21 + + +
    + + + Subject Files + + + +

    (Nungesser accretion from Lois Smith, 3-11-94)

    +
    + + + Arcadia, Ltd. + 5 + + + + + Correspondence + 5 + + + + + Ethics and health + 5 + + + + + Food bank + 5 + + + + + HarperCollins Publishers + 5 + + + + + HIPP [i.e., Health Insurance Premium Payment] + 5 + + + + + Holocaust survivors... + 5 + + + + + Hom, Fred + 5 + + + + + Homobigotry + 5 + + + + + IBS Press + 5 + + + + + Ketwig, Ken + 5 + + + + + Medical records (ring binder and loose sheets) + 5 + + + + + Peer-Counseling + 5 + + + + + Photos + 5 + + + + + Publicity pack + 5 + + + + + Receipts and 19911992 + + + 5 + + + + + Resume-personal + 5 + + + + + Siegel, Bernie + 5 + + + + + Social stigma and self-efficacy + 5 + + + + + Transcripts + 5 + + +
    + + + Writings-typescripts + + + + Axioms for caregivers, + 1991. + 5 + + + + + Cross-disability and AIDS: a peer + support training manual, 1991. + 5 + + + + + Notes from a man with + AIDS. + 5 + + + + + Book:Der Wille zu Leben, + c1986 (German translation of Epidemic of Courage). + 5 + + + + + + Miscellaneous papers + 1 box, + unsorted + + + + Audio cassettes access copies + 7 + items + 5 + + + +

    Reformatted use copies of original audio casettes. Originals have been restricted for + preservation purposes.

    +
    +
    + + + Video cassettes + 10 + items + 5 + + + + + Computer disks + 25 5.25 in. + disks + 5 + + + + + Original audio cassettes + + + +

    Contains original audio cassettes.

    +
    + + +

    Original audio cassettes have been restricted for preservation purposes. CD access + copies are located in Box 5.

    +
    + + + KGO 29 April 1988 + + 6 + 2 + + + + + KSAN Gay Life 26 February 1984 + + 6 + 1 + + +
    +
    + + + Photo Albums + + + + Photo Album One: The Early Years with Bill + + + + Lon at "Duck Pond" in E. Setauket, N.Y., moments before leaving for + CA, March, 1983. + + 1 + 1 + + + +

    (Top)

    +
    +
    + + + Bill after helping Lon pack to leave for CA. + 1 + 1 + + + +

    (Bottom)

    +
    +
    + + + Lon's Holy Vows to Bill + 1 + 2 + + + +

    Full (Full page)

    +
    +
    + + + Bill's Holy Vows to Lon photo of Bill when we met + 1 + 3 + + + +

    Full (Full page)

    +
    +
    + + + Lon near Bodega Bay, 1983 + + 1 + 4 + + + +

    (Top)

    +
    +
    + + + Bill overlooking Pacific Ocean, Spring, 1983 + + 1 + 4 + + + +

    (Bottom)

    +
    +
    + + + Lon near Bodega Bay, 1983 + + 1 + 5 + + + +

    (Top)

    +
    +
    + + + Bill in front of California wild flowers of Sonoma, California + 1 + 5 + + + +

    (Middle)

    +
    +
    + + + Bill sitting on his first car, May, 1983 + + 1 + 5 + + + +

    (Bottom)

    +
    +
    + + + Lon & Bill at a pool party, Summer of 1983 + + 1 + 6 + + + +

    (Top)

    +
    +
    + + + Bill posing at pool-side + 1 + 6 + + + +

    (Bottom)

    +
    +
    + + + Bill explaining the dive he is about to perform + 1 + 7 + + + +

    (Top)

    +
    +
    + + + Bill in the tuck and roll position - it was a perfect dive! + 1 + 7 + + + +

    (Bottom)

    +
    +
    + + + Bill & Lon "The Happy Couple." + 1 + 8 + + + +

    (Center)

    +
    +
    + + + Bill and Lon in 1984 + 1 + 9 + + + +

    (Center)

    +
    +
    + + + Bill with his two cats + 1 + 10 + + + +

    (Top)

    +
    +
    + + + Mission Dolores Park + 1 + 10 + + + +

    (Bottom)

    +
    +
    + + + Lon in Mission Dolores + 1 + 11 + + + +

    (Top)

    +
    +
    + + + Bill strikes a pose! + 1 + 11 + + + +

    (Bottom)

    +
    +
    + + + Bill in front of fire place at our home in Redwood City, + California + 1 + 12 + + + +

    (Top)

    +
    +
    + + + Bill playing flute for an elderly woman at her home, 1985 + + 1 + 12 + + + +

    (Bottom)

    +
    +
    + + + Lon kicks back with fond company, 1985 + + 1 + 13 + + + +

    (Center)

    +
    +
    + + + Bill in Bobby Reynold's and Mark Wood's home on Valentine Day, 1984 + + 1 + 14 + + + +

    (Center)

    +
    +
    + + + Jasmine on sofa + 1 + 15 + + + +

    (Top)

    +
    +
    + + + Jasmine about to attack the camera! + 1 + 15 + + + +

    (Bottom)

    +
    +
    + + + View from Sonoma mtn. + 1 + 16 + + + +

    (Top)

    +
    +
    + + + Sabrina, Jasmine's sister + 1 + 16 + + + +

    (Bottom)

    +
    +
    + + + Jasmine when she's tired of the flash + 1 + 17 + + + +

    (Top)

    +
    +
    + + + Jasmine stalking for mice + 1 + 17 + + + +

    (Bottom)

    +
    +
    + + + A Petunia bed we planted + 1 + 18 + + + +

    (Top)

    +
    +
    + + + Squash bed in garden, with beans and a Nasturtium boarder + 1 + 18 + + + +

    (Bottom)

    +
    +
    + + + Our tomato patch + 1 + 19 + + + +

    (Top)

    +
    +
    + + + A part of our flower bed + 1 + 19 + + + +

    (Bottom)

    +
    +
    + + + Jasmine looking for a bathroom in fresh dirt - ugh! + 1 + 20 + + + +

    (Top)

    +
    +
    + + + Sister's plotting a scheme to get under the mesh net in to the fresh bark + of the strawberry bed. + 1 + 20 + + + +

    (Bottom)

    +
    +
    + + + Artichoke plant behind California Poppies + 1 + 21 + + + +

    (Top)

    +
    +
    + + + Strawberry patch: The first year + 1 + 21 + + + +

    (Bottom)

    +
    +
    + + + The start of a great corn and pole bean crop + 1 + 22 + + + +

    (Top)

    +
    +
    + + + My flowers galore! + 1 + 22 + + + +

    (Bottom)

    +
    +
    + + + Wild vine + 1 + 23 + + + +

    (Top)

    +
    +
    + + + Fall crop of broccoli, turnips and carrots + 1 + 23 + + + +

    (Bottom)

    +
    +
    + + + Sabrina won the dish! + 1 + 24 + + + +

    (Top)

    +
    +
    + + + Eggplant section + 1 + 24 + + + +

    (Middle)

    +
    +
    + + + Jasmine's favorite position: The "please rub my tummy" + position. + 1 + 24 + + + +

    (Bottom)

    +
    +
    + + + Sabrina in my Moss Rose bed - She was lucky I thought it was + cute! + 1 + 25 + + + +

    (Top)

    +
    +
    + + + Fall colors show first on this berry bush + 1 + 25 + + + +

    (Middle)

    +
    +
    + + + Flower bed in Fall + 1 + 25 + + + +

    (Bottom)

    +
    +
    + + + Sabrina showing off + 1 + 26 + + + +

    (Top)

    +
    +
    + + + It's pumpkin time! + 1 + 26 + + + +

    (Middle)

    +
    +
    + + + Rows of radish + 1 + 26 + + + +

    (Bottom)

    +
    +
    + + + Lon a few days after AIDS diagnosis was confirmed + 1 + 27 + + + +

    (Center)

    +
    +
    + + + Bill in 1985 + 1 + 28 + + + +

    (Center)

    +
    +
    + + + Lon in 1985 + 1 + 29 + + + +

    (Center)

    +
    +
    + + + Bill in bedroom, 1985 + + 1 + 30 + + + +

    (Center)

    +
    +
    + + + View of Golden Gate Bridge from North of Bridge + 1 + 31 + + + +

    (Top)

    +
    +
    + + + San Gregorio Beach + 1 + 31 + + + +

    (Bottom)

    +
    +
    + + + San Gregorio Beach + 1 + 32 + + + +

    (Top & Bottom)

    +
    +
    + + + San Gregorio Beach + 1 + 33 + + + +

    (Top & Bottom)

    +
    +
    + + + San Gregorio Beach + 1 + 34 + + + +

    (Top)

    +
    +
    + + + Pond near Pacific coast + 1 + 34 + + + +

    (Bottom)

    +
    +
    + + + Pond near Pacific coast + 1 + 35 + + + +

    (Center)

    +
    +
    + + + Redwoods near Gurneville + 1 + 36 + + + +

    (Top)

    +
    +
    + + + Where the Russian River meets Pacific Ocean + 1 + 36 + + + +

    (Bottom)

    +
    +
    + + + Pacific coast at Ft. Ross + 1 + 37 + + + +

    (Top)

    +
    +
    + + + A tourist town in the Redwood forest North of S. F. 60 miles + 1 + 37 + + + +

    (Bottom)

    +
    +
    + + + The Russian River + 1 + 38 + + + +

    (Top & Bottom)

    +
    +
    + + + Downtown Gurneville, CA + 1 + 39 + + + +

    (Top)

    +
    +
    + + + The Russian River + 1 + 39 + + + +

    (Bottom)

    +
    +
    + + + Going North to Napa + 1 + 40 + + + +

    (Top)

    +
    +
    + + + Bodega Bay + 1 + 40 + + + +

    (Bottom)

    +
    +
    + + + Going South on G.G. + 1 + 41 + + + +

    (Top)

    +
    +
    + + + Gigantic Redwoods along the Russian River + 1 + 41 + + + +

    (Bottom)

    +
    +
    + + + Another day at the Russian River + 1 + 42 + + + +

    (Top)

    +
    +
    + + + Another day of sun worship in the driftwood "beach condos" at San + Gregorio + 1 + 42 + + + +

    (Bottom)

    +
    +
    + + + The driftwood shelters at San Gregorio + 1 + 43 + + + +

    Top &(Top & Bottom)

    +
    +
    + + + The first years garden + 1 + 44 + + + +

    (Top)

    +
    +
    + + + Sabrina giving Bill that "Don't you dare spray me!" look + 1 + 44 + + + +

    (Bottom)

    +
    +
    + + + Sabrina, the attack cat! + 1 + 45 + + + +

    (Top)

    +
    +
    + + + Our newly painted kitchen + 1 + 45 + + + +

    (Bottom)

    +
    +
    + + + The walkway to the garden + 1 + 46 + + + +

    (Top & Bottom)

    +
    +
    + + + Bill & Lon in their piece of paradise + 1 + 47 + + + +

    (Top)

    +
    +
    + + + Lon 18 months after AIDS diagnosis + 1 + 47 + + + +

    (Bottom)

    +
    +
    + + + Lon & Bill after Joe (Lon's former lover) died of AIDS + 1 + 48 + + + +

    (Center)

    +
    +
    + + + Cats in the flower bed + 1 + 49 + + + +

    (Top & Bottom)

    +
    +
    + + + Sabrina in my moss rose bed - again! + 1 + 50 + + + +

    (Center)

    +
    +
    + + + Lon & Bill + 1 + 51 + + + +

    (Top & Bottom)

    +
    +
    + + + Lon & Bill + 1 + 52 + + + +

    (Top & Bottom)

    +
    +
    + + + Lon & Bill + 1 + 53 + + + +

    (Top & Bottom)

    +
    +
    + + + Lon & Bill, Christmas, 1984 + + 1 + 54 + + + +

    (Center)

    +
    +
    + + + Lon & Bill exchange a Christmas Kiss, 1984 + + 1 + 55 + + + +

    (Center)

    +
    +
    + + + Lon & Bill, Christmas, 1984 + + 1 + 56 + + + +

    (Center)

    +
    +
    + + + Lon & Bill after Lon's visit to his Ozark Mountain home, June, 1985 + + 1 + 57 + + + +

    (Center)

    +
    +
    + + + Winter at the beach, 1985 + + 1 + 58 + + + +

    (Center)

    +
    +
    + + + Spring at the beach, 1986 + + 1 + 59 + + + +

    (Center)

    +
    +
    + + + Lon answering questions about coping with AIDS from a person recently + diagnosed with the virus + 1 + 60 + + + +

    (Center)

    +
    +
    + + + Jasmine imitating an Opossum + 1 + 61 + + + +

    (Center)

    +
    +
    + + + Lon going to work as the manager of a job placement agency, 1985 + + 1 + 62 + + + +

    (Top)

    +
    +
    + + + Lon's desk at the placement and resume writing agency + 1 + 62 + + + +

    (Bottom)

    +
    +
    + + + Lon after receiving his first royalty check from Homosexual Acts, Actors + and Identities, 1985 + + 1 + 63 + + + +

    (Top)

    +
    +
    + + + The royalty check itself was less than 20.00, and the mountain backdrop + represents the effort it took to write and place the manuscript + 1 + 63 + + + +

    (Bottom)

    +
    +
    + + + Bill after a gymnastics workout, 1985 + + 1 + 64 + + + +

    (Center)

    +
    +
    + + + Yes, the garden was bare, but oh what fun we had planning the next + crop! + 1 + 65 + + + +

    (Center)

    +
    +
    + + + Spring garden preparation + 1 + 66 + + + +

    (Center)

    +
    +
    + + + Bill, 1984 + + 1 + 67 + + + +

    (Top)

    +
    +
    + + + Lon (oops, the love handles are showing!) + 1 + 67 + + + +

    (Bottom)

    +
    +
    + + + The rocking chair that Lon built for Bill + 1 + 68 + + + +

    (Center)

    +
    +
    + + + Peaceful kitties + 1 + 69 + + + +

    (Center)

    +
    +
    + + + Fall, 1985 garden + 1 + 70 + + + +

    (Center)

    +
    +
    + + + Spring, 1986 garden + 1 + 71 + + + +

    (Center)

    +
    +
    + + + - the star was designed to be geometrically exact Spring, 1986 + + 1 + 72 + + + +

    (Top)

    +
    +
    + + + Lon fixing oatmeal cookies + 1 + 72 + + + +

    (Bottom)

    +
    +
    + + + The beginnings of a chicken coop + 1 + 73 + + + +

    (Top)

    +
    +
    + + + Bill trying to keep the cats out of his way while he built the chicken + coop + 1 + 73 + + + +

    (Bottom)

    +
    +
    + + + Bill, the carpenter + 1 + 74 + + + +

    (Top)

    +
    +
    + + + Bill, the beer drinking carpenter + 1 + 74 + + + +

    (Bottom)

    +
    +
    + + + Capping off the coop + 1 + 75 + + + +

    (Center)

    +
    +
    + + + I just had to start with baby chicks + 1 + 76 + + + +

    (Top 4)

    +
    +
    + + + The garden is ready to plant, Spring of 1986 + + 1 + 76 + + + +

    (Bottom)

    +
    +
    + + + Bill holding "Clarence" + 1 + 77 + + + +

    (Top)

    +
    +
    + + + Lon after tending the lettuce bed + 1 + 77 + + + +

    (Bottom)

    +
    +
    + + + The coop is done! + 1 + 78 + + + +

    (Top)

    +
    +
    + + + Lon at his tulip bed, holding "Clarence" + 1 + 78 + + + +

    (Bottom)

    +
    +
    + + + Our Rhode Island Red pullets and a hybrid Leghorn (Clarence) + 1 + 79 + + + +

    (Top)

    +
    +
    + + + The house we lived in when Lon was diagnosed and planted the + gardens + 1 + 79 + + + +

    (Bottom)

    +
    +
    + + + Lon with Dr. Cherrie Boyer, a graduate school mate + 1 + 80 + + + +

    (Top)

    +
    +
    + + + The tulip bed in Spring + 1 + 80 + + + +

    (Bottom)

    +
    +
    + + + Second crop of strawberries + 1 + 81 + + + +

    (Top & Bottom)

    +
    +
    + + + My chickletts + 1 + 82 + + + +

    (All)

    +
    +
    + + + Pre-pubescent chicks + 1 + 83 + + + +

    (Top & Bottom)

    +
    +
    + + + The star after Tulip season + 1 + 84 + + + +

    (Center)

    +
    +
    + + + When I foolishly followed a city-dweller's advice and covered the garden + with straw to prevent weeds; How the weeds grew under that straw! + 1 + 85 + + + +

    (Top & Bottom)

    +
    +
    + + + Bill's renovated garage turned Summer House + 1 + 86 + + + +

    (Center)

    +
    +
    + + + And he juggles, too! + 1 + 87 + + + +

    (Center)

    +
    +
    + + + California poppies galore + 1 + 88 + + + +

    (Top)

    +
    +
    + + + Adolescent chicks + 1 + 88 + + + +

    (Bottom)

    +
    +
    + + + All I asked for was a smile...but this will do! + 1 + 89 + + + +

    (Center)

    +
    +
    + + + A summer lunch + 1 + 90 + + + +

    (Center)

    +
    +
    + + + 1986 Summer garden: Okra, squash, corn and beans + 1 + 91 + + + +

    (Center)

    +
    +
    + + + Lon: The irrepressible conflict resolver. Typical mediation with both sides + not wanting to be there! + 1 + 92 + + + +

    (Center)

    +
    +
    + + + My how our garden grew! + 1 + 93 + + + +

    (Center)

    +
    +
    + + + Raising chickens has been fun, but what do you do with a dozen eggs a + day! + 1 + 94 + + + +

    (Center)

    +
    +
    + + + Can you find the cantaloupes in this photo? + 1 + 95 + + + +

    (Center)

    +
    +
    + + + At last a photo of the moss rose without a cat! + 1 + 96 + + + +

    (Center)

    +
    +
    + + + Erica, the hen that laid multi-colored eggs + 1 + 97 + + + +

    (Center)

    +
    +
    + + + Lon playing among the Hollyhocks + 1 + 98 + + + +

    (Center)

    +
    +
    + + + Lon letting the chickens roam the garden with Jasmine on guard + 1 + 99 + + + +

    (Center)

    +
    +
    + + + Mid-summer Marigolds + 1 + 100 + + + +

    (Center)

    +
    +
    +
    + + + Photo Album Two: More Cherished Moments with Bill + + + + The 8' tall Sunflowers I grew from tiny seeds + 2 + 1 + + + +

    (Center)

    +
    +
    + + + 1985 Spice bed + 2 + 2 + + + +

    (Center)

    +
    +
    + + + Summer, `85 flower bed + 2 + 3 + + + +

    (Center)

    +
    +
    + + + Summer '85 spice bed: Basil, sage, aloe vera, peppermint, scallions & + parsley + 2 + 4 + + + +

    (Top)

    +
    +
    + + + Ruby the Rhode Island Red hen. She was my pet, and often produced + double-yolked eggs. + 2 + 4 + + + +

    (Bottom)

    +
    +
    + + + The climbing gourdes produced bushels of Fall color. + 2 + 5 + + + +

    (Center)

    +
    +
    + + + An onion goes to seed, and Hollyhocks are mixed with Sunflowers for a + colorful background + 2 + 6 + + + +

    (Center)

    +
    +
    + + + Summer squash & fflowers at their peak of blooming, 1985 + + 2 + 7 + + + +

    (Center)

    +
    +
    + + + Summer `85 Moss Rose, Marigolds and Hollyhocks + 2 + 8 + + + +

    (Center)

    +
    +
    + + + Petunias and Pansies in full bloom at the base of a pear tree. + 2 + 9 + + + +

    (Center)

    +
    +
    + + + The chicken flock + 2 + 10 & 11 + + + +

    (Top & Bottom)

    +
    +
    + + + A new hybrid flock of young pullets, a cross between Rhode Island Reds + & Leghorns + 2 + 12 + + + +

    (Top & Bottom)

    +
    +
    + + + Jasper, the friendly rooster with no concept of time - he would crow at all + hours so we ate him! + 2 + 13 + + + +

    (Center)

    +
    +
    + + + Jasper on his roost + 2 + 14 + + + +

    (Top)

    +
    +
    + + + Vines, vines everywhere! + 2 + 14 + + + +

    (Bottom)

    +
    +
    + + + The third summer we stringed all vines on trellis' or ropes - what a + maze! + 2 + 15 + + + +

    (Top & Bottom)

    +
    +
    + + + Jasper at his best + 2 + 16 + + + +

    (Top)

    +
    +
    + + + Try finding your way in this garden jungle! + 2 + 16 + + + +

    (Bottom)

    +
    +
    + + + My "Star Flower Bed" with Petunias, Marigolds, Pansies, Moss Rose, + California Poppies, Sweet William, Carnations and Allisum. + 2 + 17 + + + +

    (Center)

    +
    +
    + + + Flower beds, 1986 + + 2 + 18 + + + +

    (Top & Bottom)

    +
    +
    + + + Flower bed & Chicken house, 1985 + + 2 + 19 + + + +

    (Center)

    +
    +
    + + + Flower bed & Chicken house, 1986 + + 2 + 20 + + + +

    (Top)

    +
    +
    + + + The hens invading Jasper's space + 2 + 20 + + + +

    (Bottom)

    +
    +
    + + + Erica on the attack of a second crop of chicks walking in her + food + 2 + 21 + + + +

    (Top)

    +
    +
    + + + Sitting among the flowers was one of my most peaceful + activities + 2 + 21 + + + +

    (Bottom)

    +
    +
    + + + The pole beans are taking over! + 2 + 22 + + + +

    (Center)

    +
    +
    + + + My prize gladiolus + 2 + 23 + + + +

    (Center)

    +
    +
    + + + Weeds beneath the straw + 2 + 24 + + + +

    (Top)

    +
    +
    + + + Chard going to seed + 2 + 24 + + + +

    (Bottom)

    +
    +
    + + + The 1986 garden on the grow + 2 + 25 + + + +

    (Top)

    +
    +
    + + + The garage turned in to a summer house + 2 + 25 + + + +

    (Bottom)

    +
    +
    + + + More weeds florishing beneath the straw + 2 + 26 + + + +

    (Top & Bottom)

    +
    +
    + + + The Star Flower Bed in transition + 2 + 27 + + + +

    (Center)

    +
    +
    + + + Chicks in the shade + 2 + 28 + + + +

    (Top)

    +
    +
    + + + Onions & chives at their peak of production + 2 + 28 + + + +

    (Bottom)

    +
    +
    + + + Gourds climbing over a walk-way beside the garage/summer house + 2 + 29 + + + +

    (Center)

    +
    +
    + + + More gourds + 2 + 30 + + + +

    (Center)

    +
    +
    + + + And more gourds! + 2 + 31 + + + +

    (Center)

    +
    +
    + + + Onions & sage in bloom; twine awaits the climbing squash + 2 + 32 + + + +

    (Center)

    +
    +
    + + + July, 1986 flower bed + 2 + 33 + + + +

    (Center)

    +
    +
    + + + Gourds on the climb + 2 + 34 + + + +

    (Top)

    +
    +
    + + + Petunias & sweet william + 2 + 34 + + + +

    (Bottom)

    +
    +
    + + + An apricot retrieved from near-death by Bill's expert landscaping skills + and knowledge of vitamin therapy + 2 + 35 + + + +

    (Top)

    +
    +
    + + + An 8' sunflower + 2 + 36 + + + +

    (Center)

    +
    +
    + + + Late summer, `86 + + 2 + 37 + + + +

    (Center)

    +
    +
    + + + Summer crop fades and goes to seed + 2 + 38 + + + +

    (Center)

    +
    +
    + + + Towering sunflowers line the garden's outer edge + 2 + 39 + + + +

    (Center)

    +
    +
    + + + Lon in 1986 garden + 2 + 40 + + + +

    (Top & Bottom)

    +
    +
    + + + A well-tanned Bill stands tall beside a towering sunflower + 2 + 41 + + + +

    (Center)

    +
    +
    + + + A fine crop of corn + 2 + 42 + + + +

    (Top)

    +
    +
    + + + Eggplant, pole beans and squash + 2 + 42 + + + +

    (Bottom)

    +
    +
    + + + Sage, rosemary, parsley, peppermint and basil + 2 + 43 + + + +

    (Top)

    +
    +
    + + + Green pole beans climbing early sweet corn with snow peas in + front + 2 + 43 + + + +

    (Bottom)

    +
    +
    + + + Winter, 1986 garden + 2 + 44 + + + +

    (Top)

    +
    +
    + + + Pole beans mixed with snow peas + 2 + 44 + + + +

    (Bottom)

    +
    +
    + + + Beans climbing behind okra and snow peas + 2 + 45 + + + +

    (Top)

    +
    +
    + + + Bill holding Ruby - which of these characters is most + apprehensive? + 2 + 45 + + + +

    (Bottom)

    +
    +
    + + + Lon & Bill on the foot-bridge at Domanine Chandon plant in Napa + Valley + 2 + 46 + + + +

    (Center)

    +
    +
    + + + Bill with his cats, Sabrina & Jasmine - 1986 + + 2 + 47 + + + +

    (Top)

    +
    +
    + + + Lon under 1986 Christmas tree + 2 + 47 + + + +

    (Bottom)

    +
    +
    + + + Lon under Christmas tree, 1986 + + 2 + 48 + + + +

    (Top)

    +
    +
    + + + Sabrina loved sleeping under the Christmas tree (1986) and waking to lots + of trinkets to paw at, like an infant in a crib with mobiles hanging. + 2 + 48 + + + +

    (Bottom)

    +
    +
    + + + Lon in front of 1986 Christmas tree + 2 + 49 + + + +

    (Top)

    +
    +
    + + + Sunnyvale apartment, `86 + + 2 + 49 + + + +

    (Bottom)

    +
    +
    + + + Lon & Bill Chistmas day, at the Boardwalk in Santa Cruz 1986, + + 2 + 50 + + + +

    (Top)

    +
    +
    + + + Sabrina & Jasmine at peace + 2 + 50 + + + +

    (Bottom)

    +
    +
    + + + Lon gleefully showing the completed autobiographical manuscript, "Spectrum + of Life". + 2 + 51 + + + +

    (Top)

    +
    +
    + + + Lon giving Bill a good morning toast before he goes off to + work, 1986 + + 2 + 51 + + + +

    (Bottom)

    +
    +
    + + + Lon's & Bill's 5th anniversary: 9/13/86 + + 2 + 52 + + + +

    (Top)

    +
    +
    + + + Bill standing at Coit Tower in S. F., Fall of 1986 + + 2 + 52 + + + +

    (Bottom)

    +
    +
    + + + Lon pondering his 5th year with Bill + 2 + 53 + + + +

    (Top)

    +
    +
    + + + Bill posing in front of the flower arrangement Lon gave him for their + anniversary + 2 + 53 + + + +

    (Bottom)

    +
    +
    + + + Bill before anniversay dinner, Sept. 13, 1986 + + 2 + 54 + + + +

    (Top)

    +
    +
    + + + Bill before Anniversary dinner, Sept., 1986 + + 2 + 54 + + + +

    (Bottom)

    +
    +
    + + + Lon at home, Summer of 1987 + + 2 + 55 + + + +

    (Top & Bottom)

    +
    +
    + + + Bill and Lon at Coit Tower in S. F., Summer of 1987 + + 2 + 56 + + + +

    (Top & Bottom)

    +
    +
    + + + Lon and Bill outside Chocolate factory, Summer, 1987 + + 2 + 57 + + + +

    (Top)

    +
    +
    + + + Billy enjoying the S.F. view from Coit Tower, Summer of 1987 + + 2 + 57 + + + +

    (Bottom)

    +
    +
    + + + Lon and Bill having a picnic in Menlo Park, California in the Summer of + 1987 + 2 + 58 + + + +

    (Center)

    +
    +
    + + + Lon and Bill in S. F., Summer `87 + + 2 + 59 + + + +

    (Center)

    +
    +
    + + + Stockings for Christmas + 2 + 60 + + + +

    (Center)

    +
    +
    + + + Lon & Bill sharing a loving Christmas Kiss, 1987 + + 2 + 61 + + + +

    (Center)

    +
    +
    + + + Lon & Bill standing in front of our 1987 Christmas tree + 2 + 62 + + + +

    (Center)

    +
    +
    + + + Lon & Bill knealing in front of 1987 Christmas tree + 2 + 63 + + + +

    (Center)

    +
    +
    + + + Bill at Shoreline Park in Mountain View, California, Feb., 1988 + + 2 + 64 + + + +

    (Center)

    +
    +
    + + + Sunrise at Shoreline Park + 2 + 65 + + + +

    (Center)

    +
    +
    + + + Lon at his work place, February, 1988 + + 2 + 66 + + + +

    (Top)

    +
    +
    + + + Bill smirking at Lon, February, 1988 + + 2 + 66 + + + +

    (Bottom)

    +
    +
    + + + Shoreline Park at dawn + 2 + 67 + + + +

    (Center)

    +
    +
    + + + Shoreline Park at dawn + 2 + 68 + + + +

    (Center)

    +
    +
    + + + Bill smiling at Lon, February, 1988 + + 2 + 69 + + + +

    (Top)

    +
    +
    + + + Bill with glasses on, February, 1988 + + 2 + 69 + + + +

    (Bottom)

    +
    +
    + + + A brisk sunrise before a storm + 2 + 70 + + + +

    (Top)

    +
    +
    + + + A bright morning before a sunny day + 2 + 70 + + + +

    (Bottom)

    +
    +
    + + + It's 5 O'clock ducks - wake up! + 2 + 71 + + + +

    (Top)

    +
    +
    + + + A string of swans + 2 + 71 + + + +

    (Bottom)

    +
    +
    + + + Bill looking for the glimmer of a sunrise through the stormy + clouds + 2 + 72 + + + +

    (Top)

    +
    +
    + + + Rose colored storm clouds + 2 + 72 + + + +

    (Bottom)

    +
    +
    + + + Bill at 5 AM without his morning coffee + 2 + 73 + + + +

    (Top)

    +
    +
    + + + Seagulls floating gracefully in the clouds + 2 + 73 + + + +

    (Bottom)

    +
    +
    + + + Ducks heading for shelter from the on-coming storm + 2 + 74 + + + +

    (Top)

    +
    +
    + + + This walkway is closed to humans, and provides a peaceful shelter to the + wildlife + 2 + 74 + + + +

    (Bottom)

    +
    +
    + + + These gulls search for a sunny spot in the stormy weather + 2 + 75 + + + +

    (Top)

    +
    +
    + + + Marshlands bird preserve at dawn + 2 + 75 + + + +

    (Bottom)

    +
    +
    + + + The storm had chased away the birds, and I, too, soon left + 2 + 76 + + + +

    (Top)

    +
    +
    + + + As the clouds thinned this gull soared high above the water + 2 + 76 + + + +

    (Bottom)

    +
    +
    + + + If I can only climb a few feet higher each time... + 2 + 77 + + + +

    (Top)

    +
    +
    + + + Happy Valentine's Day Billy, 1988 + + 2 + 77 + + + +

    (Bottom)

    +
    +
    + + + Lon & Bill celebrate receiving the bound galleys for Notes On Living Until We Say + Goodbye + 2 + 78 + + + +

    (Center)

    +
    +
    + + + Lon & Bill pose before Lon's first reading & signing for Notes... + 2 + 79 + + + +

    (Center)

    +
    +
    + + + Bill's Amaryllis + 2 + 80 + + + +

    (Center)

    +
    +
    + + + Bill ponders the beauty of Nature + 2 + 81 + + + +

    (Top)

    +
    +
    + + + Bill awakened the morning of his 26th birthday to a decorated house. I had + waited for him to fall asleep, then went shopping at all-night markets; it took + nearly all night - these are the moments that brought strength to our love in the + face of adversity + 2 + 81 + + + +

    (Bottom)

    +
    +
    + + + Bill tucks his wallet away as he plans to ride the thriller + rides + 2 + 82 + + + +

    (Top)

    +
    +
    + + + Lon before entering the amusement park where I took Bill for his birthday + gift + 2 + 82 + + + +

    (Bottom)

    +
    +
    + + + "Which way do I go?" + 2 + 83 + + + +

    (Center)

    +
    +
    + + + As I said in jest about this photo before Billy would pose for it, "A + picture is worth a thousand words" + 2 + 84 + + + +

    (Top)

    +
    +
    + + + Who would want to??? + 2 + 84 + + + +

    (Bottom)

    +
    +
    + + + - Bill comes home from his first hospitalization for PCP; KS biopsy results + came back positive on the same day Aug. 25, 1988 + + 2 + 85 + + + +

    (Center)

    +
    +
    + + + - home together at last Aug. 26th + + 2 + 86 + + + +

    (Center)

    +
    +
    + + + The exotic flower arrangement I got for Bill's second coming home after + being hospitalized for toxoplasmosis encephilitis - 10/13/1988 + + 2 + 87 + + + +

    (Center)

    +
    +
    + + + Surrounded by life-giving love, Bill finds his reasons to smile + 2 + 88 + + + +

    (Center)

    +
    +
    + + + A trip to the Pacific coast after Bill's third hospitalization when he + could walk along the sea as he resolved that God is values and awe for nature, and + that prayer is thought turned to hope. (Oct. 7 - 12) + + 2 + 89 + + + +

    (Center)

    +
    +
    + + + Billy and 1988 X-mas tree + 2 + 90 + + + +

    (Top)

    +
    +
    + + + 1988 Christmas tree brought to us freshly cut by Robin Amundson and her + family + 2 + 90 + + + +

    (Bottom)

    +
    +
    + + + Bill - New Years, 1989 + + 2 + 91 + + + +

    (Top)

    +
    +
    + + + Lon - New Years, 1989 + + 2 + 91 + + + +

    (Bottom)

    +
    +
    +
    + + + Photo Album Five: The Life and Times of Lonnie Gene Nungesser + + + + Lonnie Gene Nungesser's birth certificate, born May 30, 1953 shortly after + noon. + 5 + 1 + + + +

    (Center)

    +
    + + +

    (My mom claims that Dad made her finish milking and other chores before he would + take her to the doctor, else I would have been born sooner!)

    +
    +
    + + + Large arrow head for hunting deer, found in the corn fields of our + land. + 5 + 2 + + + +

    (Top)

    +
    +
    + + + The hills that cover our land in the Ozark Mountains - this photo is taken + where my ashes are to be spread, for it was one of my favorite places to contemplate + life beyond my own. + 5 + 2 + + + +

    (Center)

    +
    +
    + + + Small arrow head used for hunting squirrels and spearing fish; I found this + one near the opening of a natural spring. + 5 + 2 + + + +

    (Bottom)

    +
    +
    + + + The quotes were taken with me to recite while watching the sunrise + pictured + 5 + 3 + + + +

    Full (Full page)

    +
    +
    + + + A special sunrise before a storm + 5 + 4 + + + +

    (Top)

    +
    +
    + + + The beginning part of the path I walked to watch the sun rise + 5 + 4 + + + +

    (Bottom)

    +
    +
    + + + Lon at age three + 5 + 5 + + + +

    (Top, center)

    +
    +
    + + + My sister Mary to my right, and brother Donnie behind us.. + 5 + + + +

    (Left)

    +
    +
    + + + Kansas flat lands behind us, Donnie holding Mary as I sit to the + side + 5 + 4 + + + +

    Right,(Right, top)

    +
    +
    + + + Lon on left, age 2 Mary in center, 3 mths. Donnie on R., at 3 + 1/2 + 5 + 5 + + + +

    (Right, bottom)

    +
    +
    + + + Mary's second birthday Mary on left, Donnie holding the cake for her, and + Lonnie showing his disdain for having to face the bright sun + 5 + 6 + + + +

    (Top, left)

    +
    +
    + + + Lon on left, age 4 Mary Jane on right, age 2 + 5 + 6 + + + +

    (Middle, left)

    +
    +
    + + + A main street in my home town, Mtn. Grove, Missouri + 5 + 6 + + + +

    (Center, bottom)

    +
    +
    + + + Fall colors decorate the tree over-hanging Grandma's + smoke-house + 5 + 6 + + + +

    (Top, right)

    +
    +
    + + + The third-generation home in which my father was born and I was + reared + 5 + 6 + + + +

    (Middle, right)

    +
    +
    + + + Neighbor Belle's tree - the change in color warns all that Winter is around + the bend. + 5 + 7 + + + +

    (Top)

    +
    +
    + + + Lonnie at age four + 5 + 7 + + + +

    (Center)

    +
    +
    + + + One of the quotes that inspired me as a child and still does + 5 + 7 + + + +

    (Bottom)

    +
    +
    + + + My Sunday school class - on a poor attendance day! + 5 + 8 + + + +

    (Top)

    +
    +
    + + + The Pleasant Hill Baptist Church, where I learned & eventually + taught. + 5 + 8 + + + +

    (Bottom)

    +
    +
    + + + THE LAST SUPPER, a painting I did for my Mom when I was in 6th grade; my + parents have recently had it framed, and it now hangs above their kitchen + table + 5 + 9 + + + +

    (Top)

    +
    +
    + + + Certificate of Baptism + 5 + 9 + + + +

    (Bottom)

    +
    +
    + + + Certificate of License to Preach the Gospel Ministry + 5 + 10 + + + +

    Full (Full page)

    +
    +
    + + + High School Senior Photo + 5 + 11 + + + +

    (Top)

    +
    +
    + + + High School Diploma + 5 + 11 + + + +

    (Bottom)

    +
    +
    + + + Lon after Coast Guard Boot camp training + 5 + 12 + + + +

    (Top, left)

    +
    +
    + + + The quote that inspired my daily leadership activities + 5 + 12 + + + +

    (Middle, left)

    +
    +
    + + + Armed Forces I.D. card (Taken after they pulled all 4 wisdom teeth and + filled 10 others!) + 5 + 12 + + + +

    (Top, right)

    +
    +
    + + + Lon before graduation from the College of Alameda, 1975 + + 5 + 12 + + + +

    (Middle, left)

    +
    +
    + + + Lon on right, seated with his newly elected Coalition student + government + 5 + 12 + + + +

    (Bottom, left)

    +
    +
    + + + Honorable Discharge paper + 5 + 13 + + + +

    (Full page)

    +
    +
    + + + Lon in "The 01' swimmin' hole" back home, age 22 + 5 + 14 + + + +

    (Top)

    +
    +
    + + + Lon at age 23 + 5 + 14 + + + +

    (Bottom)

    +
    +
    + + + Associate in Arts degree + 5 + 15 + + + +

    Full (Full page)

    +
    +
    + + + Letter of admission to Stanford University + 5 + 16 + + + +

    Full (Full page)

    +
    +
    + + + Lon & friends at trail head that leads through Bear Valley to the + coast + 5 + 17 + + + +

    (Top)

    +
    +
    + + + Lon at the Grand Canyon + 5 + 17 + + + +

    (Middle)

    +
    +
    + + + Lon fishing at Yosimite + 5 + 17 + + + +

    (Bottom)

    +
    +
    + + + Lon in Stanford class `77 + 5 + 18 + + + +

    (Top)

    +
    +
    + + + Lon vacationing at Tahoe + 5 + 18 + + + +

    (Middle)

    +
    +
    + + + Lon in "The crystal Cave" + 5 + 18 + + + +

    (Bottom)

    +
    +
    + + + Lon's parents, 1972 + + 5 + 19 + + + +

    (Top)

    +
    +
    + + + Dad's parents, 1972 + + 5 + 19 + + + +

    (Middle)

    +
    +
    + + + Mom's parents, 1972 + + 5 + 19 + + + +

    (Bottom)

    +
    +
    + + + Grandpa Nungesser + 5 + 20 + + + +

    (Top)

    +
    +
    + + + Grandma Nungesser + 5 + 20 + + + +

    (Middle)

    +
    +
    + + + Grandpa tending garden + 5 + 20 + + + +

    (Bottom)

    +
    +
    + + + Lon at wedding party, `76 + + 5 + 21 + + + +

    (Top)

    +
    +
    + + + Lon at his wet bar, `77 + + 5 + 21 + + + +

    (Bottom, left)

    +
    +
    + + + Lon and sister Mary Jane + 5 + 21 + + + +

    (Bottom, right)

    +
    +
    + + + Lon as "Rebecca, The Pregnant Pioneer Woman", Halloween, 1977 + + 5 + 22 + + + +

    (Top)

    +
    +
    + + + One of my dinner dates with Advocate owner, David Goodstien, Esquire + 5 + 22 + + + +

    (Bottom, left)

    +
    +
    + + + Sharing Christmas cheer at my home with Dr. Don Clark & + family, 1977 + + 5 + 5 + + + +

    (Bottom, right)

    +
    +
    + + + Front page article reporting my activities on "Gay Blue Jeans + Day" + 5 + 23 + + + +

    (Center)

    +
    +
    + + + Expired drivers license + 5 + 23 + + + +

    (Bottom)

    +
    +
    + + + Stanford BA degree, with Departmental Honors + 5 + 24 + + + +

    (Full page)

    +
    +
    + + + College Senior photo + 5 + 25 + + + +

    (Top, right)

    +
    +
    + + + Lon with Honors advisor, Dr. Philip Zimbardo + 5 + + + +

    Bottom, (Bottom, left)

    +
    +
    + + + The quote that helped me get through Stanford's Honors Program + 5 + 25 + + + +

    Bottom, center)

    +
    +
    + + + First annual award in honor of Community College founder Leland Medsker, + given to a graduate who shows promise as a future University President + 5 + 26 + + + +

    (Full page)

    +
    +
    + + + New York here I am! + 5 + 27 + + + +

    (Top, left)

    +
    +
    + + + Stony Brook ID + 5 + 27 + + + +

    (Top, right)

    +
    +
    + + + Tracy Kahn, Ph.D. and I acting out an S & M ritual on stage for the + Dept. of Psych. + 5 + 27 + + + +

    (Center, left)

    +
    +
    + + + Tracy, is this an act? + 5 + 27 + + + +

    (Center, right)

    +
    +
    + + + The final line up, choreographed by Joe, second from left. + 5 + 27 + + + +

    (Bottom)

    +
    +
    + + + My first publication + 5 + 28 + + + +

    (Full page)

    +
    +
    + + + Front page article from the Fire + Island Villager, June, 1981 + + 5 + 29 + + + +

    (Full page)

    +
    +
    + + + Lon sealing his leave of absence from Ph.D. program + 5 + 30 + + + +

    (Top)

    +
    +
    + + + Lon & Bill go West! + 5 + 30 + + + +

    (Bottom)

    +
    +
    + + + Lon in his favorite spiritual place, the Stanford Chapel; quote below + helped me fall asleep without anger many nights. + 5 + 31 + + + +

    (Full page)

    +
    +
    + + + Master of Arts Degree + 5 + 32 + + + +

    (Full page)

    +
    +
    + + + My first book! 1983 + + 5 + 33 + + + +

    (Full page)

    +
    +
    + + + Press release, 1st book + 5 + 34-35 + + + +

    (Full page)

    +
    +
    + + + Another pool party! + 5 + 36 + + + +

    (Top)

    +
    +
    + + + A quote that helped me realize the value of a friend + 5 + 30 + + + +

    (Center)

    +
    +
    + + + Lon in 1983 at Twin Peaks in San Francisco + 5 + 30 + + + +

    (Bottom)

    +
    +
    + + + This photo is flanked by quotes at the top and bottom that helped me + through the weeks after my AIDS diagnosis. The photo was taken at a special luncheon + hosted for Foreign Scholars during the days between my biopsy and + diagnosis. + 5 + 37 + + + +

    (Center)

    +
    +
    + + + Lon one year after diagnosis. + 5 + 38 + + + +

    (Top & Bottom)

    +
    +
    + + + Lon & Bill among the flowers that enriched their lives in times of + stress, and offered a distraction from tragedy when they needed tending. + 5 + 39 + + + +

    (Top)

    +
    +
    + + + Another crop of chicks! + 5 + 39 + + + +

    (Bottom)

    +
    +
    + + + Lon at the camp fire + 5 + 40 + + + +

    (Center)

    +
    +
    + + + A sorta-drunk Lon trying to convince Bill we really were not + lost! + 5 + 41 + + + +

    (Center)

    +
    +
    + + + The Gladiolus was bigger than ever this year, and surrounded by Poppies and + Bachelor Buttons + 5 + 42 + + + +

    (Center)

    +
    +
    + + + Lon (1985) on the tractor he learned to drive on + 5 + 43 + + + +

    (Center)

    +
    +
    + + + News article in local paper, 1985 + + 5 + 44 + + + +

    (Full page)

    +
    +
    + + + The Ozark Mountains on our farm in Srping + 5 + 45 + + + +

    (Top)

    +
    +
    + + + Lon two years after AIDS diagnosis behind the barn built by my Grandfather + the year of my father's birth + 5 + 45 + + + +

    (Center)

    +
    +
    + + + A quote that I tucked in my wallet when I had to go to the doctor or visit + a sick friend during the first two years after my AIDS diagnosis + 5 + 45 + + + +

    (Bottom)

    +
    +
    + + + My mom, Emma, peering from the milk barn she has spent most of her working + life in + 5 + 46 + + + +

    (Center)

    +
    +
    + + + Mom & Dad (1985) inside the ol' milk barn + 5 + 47 + + + +

    (Center)

    +
    +
    + + + The Nungesser Family - front row, starting at left: Lonnie, Donnie, and + Danny. Back row, starting at left: Brenda Sue, Mary Jane, Linda Lou, Mom & Dad + (1985) + 5 + 48 + + + +

    (Center)

    +
    +
    + + + Lon on left, John David on right. John David was my neighbor and friend as + a child. He is married now, and has built the cabin in background with the rocks and + trees natural to the Ozarks. A few feet from his front door is a natural spring-fed + pond so clear you can see the rainbow stripes on the trout. + 5 + 49 + + + +

    (Center)

    +
    +
    + + + Grandma Nungesser on far left, Lon in front, Emma in back/center, and + Grandma Jarrett on far right - 1985 + + 5 + 50 + + + +

    (Top)

    +
    +
    + + + Grandma Nungesser holding this years prize white Kitten + 5 + 50 + + + +

    (Bottom)

    +
    +
    + + + "Planting Seeds of Justice" a poem by Lon G. Nungesser + 5 + 51 + + + +

    (Full page)

    +
    +
    + + + Lon's original greeting card quotes + 5 + 52 + + + +

    (Full page)

    +
    +
    + + + "About the Author" from my second book. + 5 + 53 + + + +

    (Full page)

    +
    +
    + + + Paperback jacket from Epidemic of + Courage + 5 + 54 + + + +

    (Full page)

    +
    +
    + + + Cloth jacket from Epidemic of + Courage + 5 + 55 + + + +

    (Full page)

    +
    +
    + + + Quotes about Epidemic of + Courage + 5 + 56, 57, 58 + + + +

    (Full pages)

    +
    +
    + + + Another wonderful sunrise + 5 + 59 + + + +

    (Top)

    +
    +
    + + + The quote that drove me to complete Notes On Living + 5 + 59 + + + +

    (Middle)

    +
    +
    + + + Every sunrise was special, and this one brought out the birds as it peaked + over the mountains + 5 + 59 + + + +

    (Bottom)

    +
    +
    + + + A self-help brochure I designed for coping effectively + 5 + 60 + + + +

    (Full page)

    +
    +
    + + + Bill was too giggly to give me a Christmas Kiss in 1987 + 5 + 61 + + + +

    (Center)

    +
    +
    + + + Sandy and Bill under the Christmas tree - she makes him giggle just being + in the same room. Only 11 months apart in age, they are as much friends as + siblings. + 5 + 62 + + + +

    (Center)

    +
    +
    + + + Linda Lou gets married, From left: My brother Donnie, his wife; my brother + Danny, his wife and one of their kids, Misty, in front; my Father; Linda the + beautiful bride, Jim her new husband; my mother holding one of Mary's girls; Mary + with another of her girls in front; Bob Rech, Mary's husband; Brenda Sue, Linda's + identical twin with another of Mary's girls holding a basket of rose petals; Doug + Selby, Brenda's husband. January 2, 1988. + + 5 + 63 + + + +

    (Center)

    +
    +
    + + + Mom at age 53 Dad at age 57 + 5 + 64 + + + +

    (Center)

    +
    +
    + + + Birds flirting with heaven + 5 + 65 + + + +

    (Top)

    +
    +
    + + + This pier is a safe place for many Gulls away from gusty winds + 5 + 65 + + + +

    (Bottom)

    +
    +
    + + + Clipping of an article entitled, "Shelf Life." + 5 + 66 + + + +

    (Full page)

    +
    +
    + + + Bill at work + 5 + 67 + + + +

    (Top)

    +
    +
    + + + A representation of how I see Bill when he is playing - soaring high above, + free of physical reality + 5 + 67 + + + +

    (Bottom)

    +
    +
    + + + I spent 2 hours in thankful prayer at this magnificent sight + 5 + 68 + + + +

    (Top & Bottom)

    +
    +
    + + + Bill at Santa Cruz + 5 + 69 + + + +

    (Center)

    +
    +
    + + + A card from Dr. Zimbardo + 5 + 70 + + + +

    (Center)

    +
    +
    + + + News release for Notes... + 5 + 71 + + + +

    (Full page)

    +
    +
    + + + News article featuring me + 5 + 72 & 73 + + + +

    (Full page)

    +
    +
    + + + Serene Contemplation + 5 + 74 + + + +

    (Center)

    +
    +
    + + + Jacket for Notes... + 5 + 75 + + + +

    (Full page)

    +
    +
    + + + Photo & quote are the things that have kept me living with valor and + dignity + 5 + 76 + + + +

    (Full page)

    +
    +
    + + + Quotes about Notes... + 5 + 77 - 79 + + + +

    (Full pages)

    +
    +
    + + + Flyers distributed before my first signing for Notes... + 5 + 80-81 + + + +

    (Full pages)

    +
    +
    + + + A Display case in San Francisco + 5 + 82 + + + +

    (Top)

    +
    +
    + + + Bill & I before I spoke + 5 + + + +

    (Bottom)

    +
    +
    + + + The audience gathers before I speak + 5 + 83 + + + +

    (Top)

    +
    +
    + + + Bill talking with another person from New York + 5 + + + +

    (Center)

    +
    +
    + + + After this appearance a few lingered to chat + 5 + + + +

    (Bottom)

    +
    +
    + + + Photos of my first autographing session + 5 + 84 + + + +

    (Full page)

    +
    +
    + + + Clipping from the S.F. Chronicle + 5 + 85 + + + +

    (Full page)

    +
    +
    + + + Review of Notes... in The Stanford + Daily + 5 + 86 + + + +

    (Full page)

    +
    +
    + + + Interview with me and a Review of Notes... in Au Courant, East Coast distribution + 5 + 87 + + + +

    (Full page)

    +
    +
    + + + Review of Notes... in Stanford + Book News + 5 + 88 + + + +

    (Full page)

    +
    +
    + + + Review of Notes... + 5 + 89 + + + +

    (Full page)

    +
    +
    + + + A tanned and toned Lon at his 35th birthday + 5 + 90 + + + +

    (Top)

    +
    +
    + + + Bill at his 26th birthday + 5 + 90 + + + +

    (Bottom)

    +
    +
    + + + The unedited version of my editorial on LaRouche + 5 + 91 + + + +

    (Full page)

    +
    +
    + + + An edited version of my editorial on LaRouche + 5 + 92 + + + +

    (Full page)

    +
    +
    + + + Surprize! Koop is watching you! + 5 + 93 + + + +

    (Full page)

    +
    +
    + + + Interview with me and a Review of Notes... in Edge, West Coast distribution + 5 + 94 + + + +

    (Full page)

    +
    +
    + + + Lon & Bill at an amusement park, summer `88 + + 5 + 95 + + + +

    (Top & Bottom)

    +
    +
    + + + Bill & family during his first hospitalization + 5 + 96 + + + +

    (Center)

    +
    +
    + + + Bill at home after his first hospitalization + 5 + 97 + + + +

    (Top)

    +
    +
    + + + Bill & Lon together again after Bill's second + hospitalization + 5 + 97 + + + +

    (Bottom)

    +
    +
    + + + Bill after his second hospitalization + 5 + 98 + + + +

    (Top)

    +
    +
    + + + Lon after Bill's second hospitalization (Fall, 1988) + + 5 + 98 + + + +

    (Bottom)

    +
    +
    + + + Our 7th year anniversary + 5 + 99 + + + +

    (Center)

    +
    +
    + + + Flowers to Bill during his third hospitalization (Winter, 1988) + + 5 + 100 + + + +

    (Top & Bottom)

    +
    +
    +
    +
    +
    \ No newline at end of file diff --git a/sample-ead/scrc/asis.xml b/sample-ead/scrc/asis.xml new file mode 100755 index 0000000..536d8d6 --- /dev/null +++ b/sample-ead/scrc/asis.xml @@ -0,0 +1,31097 @@ + + + + umich-scl-asis + + + Finding Aid for American Society for Information Science and Technology Records, 1925-2001 + Collection processed and finding aid created by Marilyn McNitt; Rebecca Bizonet, 2004-2005 + + + University of Michigan Library (Special Collections Research Center) + 2005 + + + + Encoded finding aid created by Rebecca Bizonet 2005 + The finding aid is written in English + + + + 20051115 + Original encoding from Word 2000 file using Word macros and Xmetal. + + + + + + Power Collection for the Study of Scholarly Communication and Information TransferSpecial Collections LibraryUniversity of Michigan + Finding aid forAmerican Society for Information Science and Technology Records, 1925-2001 + Finding aid created by Marilyn McNitt; Rebecca Bizonet, 2004-2005 + Encoded finding aid prepared by Rebecca Bizonet, 2005 + + + + + + American Society for Information Science and Technology + + American Society for Information Science and Technology Records1925-2001 1937-2000 + + 185 linear feet in 188 boxes + + + Photographs are primarily in boxes 149-156. + + + Audio material is primarily in boxes 172-187. + + + Visual material is primarily in boxes 121, 169, 173-187. + + + Most printed materials have been removed and cataloged separately. Newsletters are scattered throughout the collection. + + ASIS&T + The material is in English + ASIS&T (or ASIST) is a professional association which creates, organizes, disseminates, and applies knowledge regarding information and its transfer. ASIS&T was preceded by the American Documentation Institute (ADI), which was founded in 1937 with the goal of acquiring and indexing the knowledge of the world. Name changes followed in 1968 (ASIS) and 2000 (ASIS&T). The records consist of correspondence, business and financial documents, minutes, bylaws, memoranda, manuscript and printed journal articles, printed promotional material, microfiche, photographs, and audio and video tapes covering the society's activities (and those of its predecessor organizations) from 1925 to 2001, with the bulk falling between the 1930s through 2000. Organizational business affairs and activities, including the conceptual evolution of its purpose and mission, are well-documented in several series, most notably in the Council Files. These broad areas are also covered in the Committee Files, but in a more detailed fashion, focusing on specific activities or issues. This series also represents the scope of ASIS's liaison committees, ranging from the American Library Association to the Egyptian Society for Information Technology. Documents generated by ASIS-approved regional and student chapters and the organized professional groups within ASIS devoted to special interests (SIGs) are found in the large Chapter Files and Special Interest Groups series. The Publications series includes significant editorial and administrative documents as well as some manuscript submissions for the "Annual review of information science and technology, and the Bulletin of the American Society for Information Science." Special note may be made of the Special Libraries Association Merger Files which chronicle the history of the ultimately unsuccessful merger of ASIS and SLA. The main correspondents found in the collection include: Robert McAfee, Assistant Executive Director; Joshua I. Smith, Executive director (1973-1976); Bonnie Carroll, Councilor and President; Linda Resnik, Executive Director (1985-1988); Samuel Beatty, Executive Director (1976-1984); and John Brokenshire, ASIS Financial Officer. + University of Michigan Library (Special Collections Research Center)Power Collection for the Study of Scholarly Communication and Information Transfer + + + + +

    1988- ; additions are anticipated.

    +
    + +

    The record group is open for research, with some exceptions. See Restricted Material section below for details.

    +

    Access has been restricted to some documents in the ASIS records due to privacy and legal concerns. The restrictions are as follows:

    + + Restricted Material + Boxes 6-19: The Council Meeting Minutes are closed for a period of 30 years from the date of creation of the records unless prior permission in writing is obtained from ASIS. + Boxes 130-145: The entire Financial series is closed for a period of 30 years from the date of creation of the records unless prior permission in writing is obtained from ASIS. + Box 188: Certain tax documents have been closed for a period of 75 years from the date of creation of the records (access open 2035-2068). + +
    + +

    Copyright has not been transferred to the Regents of the University of Michigan. Permission to publish must be obtained from the copyright holder(s).

    +
    + +

    American Society for Information Science and Technology Records, University of Michigan Library (Special Collections Research Center)

    +
    + +

    Collection processed and finding aid created by Marilyn McNitt; Rebecca Bizonet, 2004-2005.

    +
    + +

    The holdings of the Special Collections Library include several other collections that researchers interested in ADI/ASIS/ASIS&T should consult. Vernon Tate's collection contains material on ASIS’s early history. He attended the organizing meeting in March 1937 and was president of ADI from 1948 to 1949. Tate also served as the editor of both the Journal of Documentary Reproduction and American Documentation. The Special Collections Library also holds the Cloyd Dake Gull Papers. Gull was president of ADI in 1960. Other related collections at the library include the National Microfilm Association Records, among other collections that form part of the Power Collection for the Study of Scholarly Communication and Information Transfer.

    +
    + +

    Most printed materials have been removed and cataloged separately.

    +
    +
    + +

    The American Society for Information Science, as it has been known for the greater part of its history, is non-profit professional association that creates, organizes, disseminates and applies knowledge regarding information and its transfer. The mission of ASIS (now known as ASIS&T or ASIST, the American Society for Information Science and Technology) is "to advance the information sciences and related applications of information technology by providing focus, opportunity, and support to information professionals and organizations." (ASIS&T web site, http://www.asist.org)

    +

    ASIS’s predecessor was founded in 1937 by Watson Davis as the American Documentation Institute (ADI). Davis and 35 other documentalists met on March 13 to create an organization devoted to the idea of acquiring and indexing the knowledge of the world.

    +

    ADI was a service organization whose members were nominated by and affiliated with scientific and profession societies, foundations and governmental agencies. Initially, its primary interest was in microfilm as an aid to learning and the dissemination of learning. Involved in developing microfilm readers, cameras and services, ADI fostered negotiations and research which resulted in the "gentlemen's agreement" covering the duplication of copyrighted materials, the establishment of programs for the storage and reproduction of auxiliary materials in support of journal editors, and the support of international science communications.

    +

    The Journal of Documentary Reproduction, edited by Vernon Tate, was published from 1938 to 1942 to serve as an impartial source for the scientific aids to learning for the members of ADI. In 1950 ADI revived their publishing program with American Documentation, edited by Vernon Tate. This publication was to serve as a clearinghouse for information about documentation.

    +

    The Presidents of ADI/ASIS were leaders in the field of documentation and information science:

    +

    + + Presidents of ADI/ASIS + + 1938-1943; 1946 + Watson Davis + + + 1944 + Keyes Metcalf + + + 1945; 1947 + Waldo G. Leland + + + 1948-1949 + Vernon D. Tate + + + 1950-1952 + Luther H. Evans + + + 1953 + E. Eugene Miller + + + 1954 + Milton O. Lee + + + 1955 + Scott Adams + + + 1956 + Joseph Hilsenrath + + + 1957 + James W. Perry + + + 1958 + Herman H. Henkle + + + 1959 + Karl F. Heumann + + + 1960 + C. Dake Gull + + + 1961 + Gerald J. Sophar + + + 1962 + Claire K. Schultz + + + 1963 + Robert M. Hayes + + + 1964 + Hans Peter Luhn + + + 1965 + Lawrence B. Heilprin + + + 1966 + Harold Borko + + + 1967 + Bernard M. Fry + + + 1968 + Robert S. Taylor + + + 1969 + Joseph Becker + + + 1970 + Charles P. Bourne + + + 1971 + Pauline A. Atherton + + + 1972 + Robert J. Kyle + + + 1973 + John Sherrod + + + 1974 + Herbert S. White + + + 1975 + Dale B. Baker + + + 1976 + Melvin S. Day + + + 1977 + Margaret T. Fischer + + + 1978 + Audrey N. Grosch + + + 1979 + James M. Cretsos + + + 1980 + Herbert B. Landau + + + 1981 + Ruth L. Tighe + + + 1982 + Charles H. Davis + + + 1984 + Don King + + + 1985 + Bonnie C. Carroll + + + 1986 + Julie A. C. Virgo + + + 1987 + Thomas H. Hogan + + + 1988 + Martha Williams + + + 1989 + Toni Carbo Bearman + + + 1990 + Tefko Saracevic + + +

    +

    (See ASIS web site at http://www.asist.org for listings of more recent presidents and other officers.)

    +

    In 1950 the Library of Congress became the home of ADI, and remained so for the next ten years. The President's Newsletter was created to facilitate communication between the members. As the number of individuals involved in documentation and information services and the resultant new principles and techniques increased, ADI, in 1952, amended its Bylaws to admit individuals as well as corporate members. Thus, ADI became a national professional society concerned with all elements and problems of information science.

    +

    The 1950s saw an increasing awareness of the potential of automatic devices for literature searching and information storage and retrieval. During the 1960s problems created by the information explosion became a national concern.

    +

    In the 1960s ADI adopted an executive director system of management. These individuals served ADI/ASIS in this capacity:

    +

    + + Execuitve Directors of ADI/ASIS + + 1960-1963 + John B. Kaiser + + + 1963 + Paul C. Janaske + + + 1964-1969 + James E. Bryan + + + 1970-1973 + Herbert R. Koller + + + 1973-1976 + Joshua I. Smith + + + 1976-1984 + Samuel B. Beatty + + + 1985-1988 + Linda Resnik + + + 1988- + Richard Hill + + +

    +

    To reflect the changes in its range of activities and the emergence of information science as an identifiable discipline, the membership changed ADI to the American Society for Information Science (ASIS). This change came into effect on January 1, 1968. ASIS emphasized that its membership was uniquely concerned with all aspects of the information transfer process.

    +

    In December 1968, the presidents of ASIS and the Special Libraries Association met to explore the possibility of merger, because of similar interests and membership. The following year, the SLA Board and the ASIS Council approved the investigation of merger possibilities, by appointing a committee to discuss the benefits and feasibility of such a venture. An "Implementation Plan" written in December 1969 was rejected by the ASIS Council. The SLA Board accepted the Plan in principle, subject to further negotiations. In April 1970, three major snags--Scope and Name, Headquarters Location, and Project Work--remained to be solved. Negotiations continued, but by August 1971 the issue was dead.

    +

    The decade of the 1970s saw continued rapid growth in ASIS. The period was not without its problems, however. The publications program was expanded. The Bicentennial Meeting on Information was very expensive to put on and not particularly well attended. This precipitated a financial crisis that forced ASIS to cut back on some of its programs. With financial assistance from its membership and related organizations, ASIS was able to weather this crisis.

    +

    Further changes occurred in the 1980s, with ASIS adding emphases on personal and office computer systems and rural and community information services and intensifying its focus on international information issues. Through the 1990s and into the 21st century, ASIS has continued to examine diverse aspects of information science, including theory, technical issues, and social ramifications, with special focuses on database development and the World Wide Web.

    +

    In 2000, ASIS underwent another name change, becoming ASIS&T (also known as ASIST), the American Society for Information Science and Technology, in an effort to better reflect the concerns and pursuits of its membership.

    +
    + +

    The ASIS records cover the period from 1925 through 2001. The bulk of the documentation covers the years 1937 through 2000. The records of the American Society of Information Science are arranged into sixteen series, as shown in the following table (series are shown in alphabetical order, rather than by their physical arrangement).

    +

    + + Summary Contents List + Administrative -- Boxes 20-24 + Annual Meetings -- Boxes 149-156 + Awards -- Boxes 97-112 + Chapters -- Boxes 36-57 + Committees -- Boxes 71-96 + Convention Audio/Video Tapes -- Boxes 173-187 + Correspondence -- Boxes 25-35 + Council -- Boxes 5-19 + Financial -- Boxes 130-145 + Grants and Contracts -- Boxes 146-148 + Irene Farkas-Conn Historical and Research Files -- Boxes 1-4 + Membership -- Boxes 113-114 + Publications -- Boxes 115-129 + Related Organizations and Subjects -- Boxes 157-171 + Special Interest Groups -- Boxes 58-70 + Special Libraries Association Merger -- Box 172 + +

    +
    + +

    For the purpose of clarity, the organization shall for the most part be referred to as "ASIS"--the name by which it has been known for most of its history and to which it is mainly referred in the records--throughout this section.

    +

    Throughout the record group, the year listed for a folder is often the fiscal year rather than calendar year. This is particularly so for records in the Financial series. The fiscal year for ASIS runs from October through September.

    +
    + +

    + +

    + + Subjects: + American Society for Information Science. Bulletin of the American Society for InformationScience, 1971-1981. + American Society for Information Science. Journal of the American Society for Information Science, 1970-1980. + Special Libraries Association. + persname + geogname + Information science -- Congresses. + Information science -- History -- 20th century. + Information science -- United States -- Societies,etc. + Information storage and retrieval systems --Research. + Information storage and retrieval systems --Standards. + Professional associations -- United States. + + + Contributors: + American Documentation Institute. + American Society for Information Science. + Special Libraries Association. + Aines, Andrew A. + Airhart, Truett. + Armstrong, Anne A. + Bearman, Toni Carbo. + Beatty, Samuel B. + Bellardo, Trudi. + Berger, Mary. + Borko, Harold. + Brokenshire, John B. + Broome, F.K. + Bryan, James Edmund, 1909- + Carroll, B. (Bonnie) + Caudra, Carlos A. + Cochrane, Pauline A. (Pauline Atherton),1929- + Creps, John E. + Crestos, James M. + Davis, Charles Hargis, 1938- + Day, Melvin S. + Debons, A. + Farkas-Conn, Irene Sekely, 1928- + Fischer, Margaret F. + Fry, Bernard Mitchell, 1915- + Garfield, Eugene. + Grosch, Audrey N., 1934- + Heilprin, Laurence B., 1906- + Herrman, Roy. + Heumann, Carl. + Holmes, Edith. + Kilgour, Frederick G. + King, Donald Ward, 1932- + Kochen, Manfred. + Koller, Herbert B. + Krcmar, Jan. + Landau, Herbert B. + Lunin, Lois F. + Marron, Harvey. + McAfee, Robert. + Mooers, Calvin N., 1919- + O'Dette, Ralph E. + Orne, Jerrold, 1911- + Plateau, Gerald O. + Resnik, Linda. + Rush, James E. + Salton, Gerard. + Saracevic, Tefko. + Sawyer, Edmond J. + Shera, Jesse Hauk, 1903- + Slater, Frank, 1928- + Smith, Joshua I. + Sophar, Gerald J. + Spaulding, Frank H. + Swanson, Rowena W. + Tighe, Ruth L. + Virgo, Julie A., 1944- + White, Herbert S. + Williams, Martha E. + Wooster, Harold. + + + Genre Terms: + Audio tapes. + Correspondence. + Financial records. + Memorandums. + Microfiche. + Minutes. + Photographs. + Reports. + Videotapes. + +
    + + + + IRENE FARKAS-CONN HISTORICAL AND RESEARCH FILES + + +

    The IRENE FARKAS-CONN HISTORICAL AND RESEARCH FILES series (3.5 linear feet) is made up of research materials compiled by Irene Farkas-Conn for her book on the history of ASIS, From Documentation to Information Science: The Beginnings and Early Development of the American Documentation Institute-American Society for Information Science (New York: Greenwood Press, 1990). Farkas-Conn was a past officer of ASIS and an information and management consultant. The series consists of original ASIS documents, various photocopies, and Dr. Farkas-Conn's notes.

    +

    In the course of her research, Farkas-Conn acquired a substantial amount of very early, original ADI/ASIS records, spanning the 1930s through the 1960s. She also received small batches of related materials from individuals involved in ASIS (past leaders including Watson Davis, Vernon Tate, Cloyd Dake Gull, and Karl Heumann). Those records considered to be the most vital (such as articles of incorporation, early Council minutes, correspondence of ASIS founders and officers, etc.), and for which no other copy exists, have been put back into something approximating their original context. In some cases, however, original documents have been left within the Farkas-Conn research files, especially when they have been annotated by Dr. Farkas-Conn and grouped by her according to a particular subject.

    +

    A small amount of materials was photocopied from the archives of other institutions, including the Smithsonian Institution Archives, the Bentley Historical Library at the University of Michigan, the Library of Congress, and Harvard University Archives. Permission to quote from or reproduce these documents must be obtained from these repositories.

    +

    Some of the material in this series pertains to Science Service and its daughter agency Bibliofilm Service, both of which were early predecessors of ADI. Science Service was an organization founded by the newspaper publisher E.W. Scripps and originally aimed at the betterment of society through the popularization of science. When Watson Davis became director of Science Service in 1933, he shifted its focus toward international scientific cooperation, publication, and bibliography. Davis established Bibliofilm Service in 1934 as an arm of Science Service that would specialize in the use of microfilm to fulfill interlibrary loan requests. Another facet of Science Service was its Auxiliary Publication Service, begun in 1936, which also sought to harness the potential of the emerging microphotography technologies. A small number of other documents pertaining to Science Service, Bibliofilm Service, and Auxiliary Publication Service can be found throughout the collection, particularly in the Related Organizations and Subjects series, but the bulk is in this series.

    +

    The Irene Farkas-Conn Research and Historical Files are divided into seven subseries: People, Committees and Administration, Related Groups, Topics, Chronological, Book Sections, and Research Files. The People subseries contains materials (both original and photocopied) by and about ASIS leaders, plus Farkas-Conn's notes. Committees and Administration refers to ADI/ASIS work and achievements. Related Groups comprises materials by and about groups affiliated with ASIS or performing similar missions, such as the International Federation for Documentation (FID). The Topics subseries and the Chronological subseries both focus on the 1930s and 1940s, with special attention paid to ADI's wartime activities. The Book Sections subseries is divided according to Farkas-Conn's planned structure for her book. In each numbered section can be found source materials, notes, and partial drafts. Also included are some of Farkas-Conn's dissertation materials and background resources. The rest of the series is comprised of the Research Files, which contain material that is more generally or loosely organized. It consists mainly of Farkas-Conn's notes, photocopies, and a small number of original documents (correspondence, reports, pamphlets, etc.).

    +

    Materials in this series span the 1930s through the 1970s. Most of Farkas-Conn's notes are undated, but appear to date from the 1970s and 1980s. In all of the subseries, an attempt was made whenever possible to retain Farkas-Conn's original folder headings. However, sometimes it was necessary to make slight changes; for example, combining multiple headings, glossing abbreviations, guessing at illegible text, and supplying missing headings.

    +
    + + + People + + + + 1 + Adams, Scott: "Adams Bibliography," 1981 + + + + + 1 + Davis, Watson, 1935-1963 + + + + + Mooers, C.N. + + + + 1 + + 1950-1961 + + + + + + 1 + + 1973-1974 + + + + + + + 1 + Power, E.B. [Power, Eugene], 1935-1975 + + +

    (includes Farkas-Conn's undated notes)

    +
    +
    + + + 1 + Rhyne, White (ASIS legal counsel), 1939-1975 + + +

    (re tax-exempt status)

    +
    +
    + + + 1 + People List, 1952 + + +
    + + + Committees and Administration + + +

    (within ADI/ASIS)

    +
    + + + 1 + ADI HQ, first decade, Admin/Director [?], 1937 + + + + + 1 + "ASIS date/copies," 1968-1974 + + + + + 1 + Annual Meetings, 1959-1967 + + 2 folders + + + + + + 1 + Chapters, SIGs + + + + + 1 + Committees [various], ca. 1963-1973 + + 2 folders + + + + + + 1 + Committees, third decade/HQ issues and others + + 2 folders + + + +

    (includes much to and from James E. Bryan)

    +
    +
    + + + 1 + HQ [Headquarters], third decade + + + + + 1 + International Relations, 1930s + + + + + 1 + Meetings Proceedings, first decade + + + + + 1 + Notes on ASIS internal history, 1976 and undated + + + + + 1 + Reports, 1964-1967 + + +
    + + + Related Groups + + + + ACLS (American Council of Learned Societies) + + + + 1 + Foreign copying, 1940 + + + + + 1 + Funding, 1935-1937 + + + + + + ACS (American Chemical Society) + + + + 1 + + 1930s + + + + + + 1 + "ACS, 30ies, Other [___?] finances," 1930s + + +

    (illegible)

    +
    +
    +
    + + + 1 + ADI-SLA, 1965 + + +

    (re proposed American Documentation Institute and Special Libraries Association merger)

    +
    +
    + + + ALA (American Library Association) + + + + 1 + Librarianship, 1945-1946 + + + + + 1 + Postwar International UWS [?], 1946-1947 + + + + + + ARIST ( Annual Review of Information Science and Technology) + + + + 1 + Proposals, 1964 + + + + + 1 + Volume I/notes, 1965 + + + + + + 1 + Auxiliary Publication Service (and ASIS History), 1936-1984 + + + + + 1 + Bibliofilm Service, ADI, 1937-1943 + + + + + 1 + Bibliofilm Service-Army Medical Library correspondence, 1940 + + + + + 1 + Carnegie Corporation, 1937 + + + + + 1 + Chemical Foundation/Watson Davis, 1935-1965 + + + + + 1 + China project, notes A-Z, 1936 + + +

    (with note "II?")

    +
    +
    + + + 1 + Conventions, public relations, publications, other topics + + + + + 1 + COSATI (Committee on Scientific and Technical Information), Recommendations for National Document Handling Systems in Science and Technology, 3rd, decade, 1965 + + + + + FID (International Federation for Documentation) + + + + 1 + "FID International"/"FID WWII," 1937-1979 + + + + + 1 + FID and other groups, 1948-1989 and undated + + + + + 1 + Oxford and London, 1938-1952 + + + + + 1 + + 1936-1939 + + + +

    (with note on folder, "Council minutes article--important for ADI postwar changes")

    +
    +
    + + + 1 + + 1957-1967 + + + +

    (mainly ADI business, but with note "Also FID")

    +
    +
    + + + 1 + Third decade, 1961-1965 + + +

    (includes original correspondence from ADI president H.P. Luhn re conflicts between FID and ADI)

    +
    +
    +
    + + + 1 + IIB (Institut International de Bibliographie) + + + + + 1 + ICSI (International Conference on Scientific Information)/Madeleine Henderson, 1958 + + + + + 1 + NAS Archives: National Academy of Sciences-National Research Council, International Relations, International Congresses: Royal Society Scientific Information Conference of 1948 1948-1960 + + + + + 2 + NSF (National Science Foundation), Science Information Task Force, 1977 + + 4 folders + + + + + + 2 + Royal Society Empire Scientific Conference, 1946 1948 + + + + + 2 + "Scientific Advisory Board, Govt. & Science," 1935 + + + + + Science Service + + + + 2 + "Science Service (Background)," 1926-1937 and undated + + + + + 2 + " Science Service docs" + + + + + + 2 + UNESCO (United Nations Educational, Scientific, and Cultural Organization), Committee of Experts on the Photographic Reproduction of Protected Works, 1968 + + + + + 2 + Various U.S. groups: ADI, ALA, NARA + + + + + 2 + Various international groups + + +
    + + + Topics, scattered dates, mainly 1930s-1970s and undated + + + + 2 + Abstracting, National Research Council conference, 1930s-1940s + + + + + 2 + Adams paper: International scene, Govt. + + +

    (and other articles on sciences and the government)

    +
    +
    + + + 2 + "ADI pol" [policy? politics?] + + + + + 2 + "ADI doctoral dissertation project" + + + + + 2 + "ADI/Funding/Copyright" + + + + + 2 + "ADI general description," 1945 + + + + + 2 + "ADI reprints" + + + + + 2 + "ADI third decade, Education, other [?]" + + + + + 2 + Background on founding of ADI + + + + + 2 + Bibliographies: Collections + + + + + 2 + Bibliography: Indexing + + + + + 2 + "Bibliography proj." [project?] + + + + + 2 + Bibliography/Subject Headings + + + + + 2 + Biographies/Institutional Histories + + + + + 2 + Classification: general/cataloging + + + + + 2 + Computers, History, Des___ [description?] + + + + + Copyright + + + + 2 + "Copyright orig." [original?], 1930s + + + + + 2 + "Copyright--SA [?]--Beginnings" + + + + + 2 + "Copyright 3rd decade" + + + + + 2 + "Mostly copyright Binkley" + + +

    (Binkley refers to Robert C. Binkley, chairman of the Joint Committee on Materials for Research)

    +
    +
    +
    + + + 2 + "Current Titles," 1939-1941 + + + + + 2 + "Docum. mtgs." [Documentalists' meetings?] + + + + + 2 + Documentalists [?] + + + + + 2 + "Documentation (Ditmas)" + + + + + 2 + Early English Books + + + + + 2 + Foreign publications, newspaper project, library cooperation + + + + + 2 + Funding, 1930s + + + + + 2 + "General Lit & Info Prof" + + + + + 2 + History/sociology of science + + + + + 2 + Information systems + + 2 folders + + + + + + 2 + "Info retr." [retrieval?]: reprints + + + + + 2 + "IS History" [Information Systems? Information Science?[, 1957-1965 and undated + + + + + 2 + Journal Publishing/Re Microfilming Journals + + + + + 2 + "Mechanical Translation" + + + + + 2 + Mechanization/Microfilming postwar + + +

    (MF=microfilming)

    +
    +
    + + + 2 + "Meetings Proceedings/1st decade" + + + + + 2 + Microfilming History/historical/Bibliog [bibliographical?] + + + + + 2 + "Org. ADI" [Organization or origins of ADI], 1937 + + +

    (includes early ADI materials and minutes of the executive committee of the Science Service, in which founding of the ADI was discussed)

    +
    +
    + + + 2 + Newspaper Project/WPA; Journals, 1930s + + +

    (first heading crossed out--but many items pertaining to this subject)

    +
    +
    + + + 2 + Preservation of paper and standardization + + + + + 2 + Publications: General/Pub. listing + + + + + 3 + Science Service Docs + + + + + 3 + "Scientific Bibliography [___?]" + + +

    (illegible)

    +
    +
    + + + 3 + Scientific Societies: other societies + + + + + 3 + Technical Reports: Access, etc. + + + + + 3 + "Transition" + + + + + 3 + "WWII," 1940-1942 + + +

    (mainly re microcopying and the war effort/intelligence uses and microfilming of foreign [mainly German] materials; includes numerous originals; see also IX in Book Sections and related folders in Chronological and Topical sections)

    +
    +
    +
    + + + Chronological, scattered dates, mainly 1930s-1970s + + + + 3 + "Early ADI. Used, refile to ch." + + + + + 3 + "To file," 1935-1937 + + + + + 3 + First decade, 1937-1950 + + + + + 3 + + 1945-1946 + + + + + + Post World War Two + + + + 3 + Reports, etc., post-WWII + + +

    (mainly re microfilming of foreign publications)

    +
    +
    + + + 3 + Publication Board Report List and organizations [?], post-WWII + + +
    + + + 3 + Third decade + + 4 folders + + + +

    (some material relating to the Education Committee)

    +
    +
    + + + 3 + "1971-D" [D=Documentation?] + + +
    + + + Book Sections, scattered dates and undated + + + + Dissertation and Background + + + + 3 + Background + + + + + 3 + Chronology + + 2 folders + + + + + + 3 + Chronology and archival sources, partial listing + + + + + Defense [part of dissertation?] + + + + 3 + Bibliographies + + + + + 3 + Historical + + + + + + 3 + Dissertation Correspondence, 1974-1980 + + +

    (includes correspondence with Vernon Tate)

    +
    +
    + + + 3 + Dissertation/JDB + + + + + 3 + Interviews + + + + + 3 + Key + + +

    (Irene Farkas-Conn's typed notes)

    +
    +
    +
    + + + Chapters + + + + I + + + + 3 + "ADI start chapters [?]" + + + + + 3 + "Used in chapter I" + + + + + + II + + + + 3 + "Ch. 2 Notes" + + + + + 3 + "Ch. II Materials" + + + + + 3 + "II" + + + + + + 3 + III + + + + + 3 + IV + + + + + 3 + VII: ADI Beginnings. Administration, Funds, Plans + + + + + 3 + VIII, IX/IX & X + + + + + IX + + + + 3 + + 1925-1942 + + + +

    (mainly re microcopying and the war effort/intelligence uses and microfilming of foreign [mainly German] materials; includes numerous originals; see also "WWII" and related folders in Chronological and Topical sections)

    +
    +
    + + + 3 + Auxiliary publications + + + + + 3 + "Current Cont. 385" + + + + + 3 + "IX" + + + + + 3 + "IX used": re foreign journals + + +
    + + + X + + + + 3 + Ch. X + + + + + 3 + "New X: Copyright and other" + + + + + + XII + + + + 3 + 1A (12) + + 2 folders + + + +

    (appears to include some notes for chapter X and possibly other chapters)

    +
    +
    + + + 4 + Dissertation[s?], International post-WWII + + +
    + + + 4 + XIII + + +

    (includes portions materials for other chapters and miscellaneous materials)

    +
    +
    + + + XV + + + + 4 + "15" + + + + + 4 + "Not used Ch. 15," 1946-49 + + + + + + 4 + XVI: "16" + + + + + Other + + + + 4 + "V. 4 used" + + + + + 4 + "Not used" + + + +
    +
    + + + Research Files, scattered dates and undated + + + + 4 + "Backup, earlier work" + + + + + 4 + Course notes, 1965-1966 + + + + + General Research, scattered dates and undated + + 27 folders + + + + + 4 + Folders 1-5 + + + + + 4 + Folders 6-27 + + + + +
    + + + COUNCIL + + +

    The COUNCIL series (14.5 linear feet) is the most comprehensive record of the activities of ASIS and its predecessor ADI. Contained within these files are the minutes of the Council, which according to the 1968 ASIS Bylaws "shall manage the affairs of the Society and shall perform the duties usually performed by the Board of Directors of a corporation." After 1981 the Council was called the Board of Directors. (For ease of use, the name of the series remains "Council," however.) The Council was required to meet quarterly and was composed of the President, the President-Elect, the immediate Past President, the Secretary, the Treasurer, one Assembly Councilor, one Cabinet Councilor, and six Councilors-at-Large. Ex-Officio members, with voice but no vote, include the chair of the Publications Committee, the Executive Director, and the Convention Chairperson for the current administrative year. The Council has two committees: Executive Committee and the Budget and Finance Committee, which are made up of the Presidents and members of the Council appointed by the President.

    +

    The Council series is divided into four subseries, which reflect the activities of the Council: Council Administration, Correspondence, Council Meeting Minutes, and Retreats.

    +

    The bulk of the series is comprised of the Council Meeting Minutes, which have been put into a primarily chronological arrangement. Early minutes, from 1937 through 1963, came from two sets of binders that were kept as part of an official office record. Generally, there is at least one complete set of minutes for each meeting from 1964 to 1985. It is usually labeled as an "Office Copy." (There is also frequently a set of minutes called the "Complete Set," but the Office Copy is usually the more detailed version.) The folders labeled "Executive Director Copy" include the handwritten notes of various executive directors or assistant directors (most of these were generated by Robert "Skip" McAfee, who was the assistant executive director of ASIS in the 1970s and early 1980s, and later by deputy executive director Peter Solomon). The "Headquarters Copy" does not usually have a complete set of attachments. These folders contain minutes, motions, correspondence, budget reports, reports of committees and Special Interest Groups (SIGs), study reports, and after 1978, microfiche. From 1981 on, the organization and number of copies of the meeting minutes varies widely.

    +

    Until 1978 the researcher will find the Council meeting minutes in the succeeding meetings folder. After that year the minutes are in the meeting date's folder.

    +
    + + + Council Administration + + + + 5 + Annual Reports, 1938-1951 + + +

    (reports at annual meetings; includes agenda and minutes)

    +
    +
    + + + 5 + Board Procedures, 1986-1991 + + + + + 5 + Early Trustee and Administration files, 1939-1941 1943-1948 1950-1951 1964 + + +

    (includes agenda, minutes, reports, correspondence)

    +
    +
    + + + 5 + Handbook, 1971 + + + + + 5 + Officer list and Board member lists, 1963 1989 + + +
    + + + Correspondence + + + + 5 + General, 1964 1966-1984 + + 10 folders + + + +

    (year 1964 re creation of the Executive Committee)

    +
    +
    + + + 5 + Alphabetical: Salton, Gerry (Gerard), re improvements to ASIS publications, 1988 + + + + + Monthly Memoranda: Executive Director to Board + + +

    (mainly monthly updates from Executive Director to Board; frequently includes minutes and other attachments; includes some folders originally labeled "Executive Director Updates" which seem to be substantially the same thing; also includes correspondence to the Board from other staff, including deputy executive director Peter Solomon)

    +
    + + + 5 + + 1971 + 1981-1987 + + + 14 folders + + + + + + 6 + + 1988-1992 + 1996-1997 + + + 8 folders + + + +
    +
    + + + Meeting Minutes + + +

    (includes attachments and related materials such as action items, board books, bylaws, draft minutes, Executive Council minutes, microfiche, etc. and annual business meeting minutes and attachments; also includes some related correspondence)

    +
    + +

    [Restricted from 30 years of date of creation or prior permission of ASIS&T.]

    +
    + + + 6 + Administrative Office Copies: agenda and minutes, 1983-1989 + + 3 folders + + + + + + 6 + Executive Director's Minutes (John Kaiser's), 1961-1963 + + 2 folders + + + +

    (includes correspondence and other materials)

    +
    +
    + + + 7 + + 1937-October 1963 + + + 9 folders + + + +

    (minutes from 1930s through early 1960s from the Irene Farkas-Conn accretion)

    +
    +
    + + + + 1964 + + + + + 7 + "Complete set," April -December 1964 + + + + + 7 + Headquarters copy?, January -December 1964 + + + + + 7 + Office copy?, October -December 1964 + + 2 folders + + + + + + + + 1965 + + + + + 7 + "Complete set," March -December 1965 + + +

    (missing some attachments)

    +
    +
    + + + 7 + Headquarters copy?, March -December 1965 + + +

    (with all attachments)

    +
    +
    + + + 7 + Office copy?, March -December 1965 + + 4 folders + + + +
    + + + + 1966 + + + + + 7 + "Complete set," February -December 1966 + + +

    (missing some attachments)

    +
    +
    + + + 7 + Headquarters copy?, February -December 1966 + + +

    (with all attachments)

    +
    +
    + + + 7 + Office copy?, June -December 1966 + + 3 folders + + + +
    + + + + 1967 + + + + + 7 + "Complete set," March -October 1967 + + +

    (without attachments)

    +
    +
    + + + 7 + Headquarters copy?, March -October 1967 + + +

    (with attachments)

    +
    +
    + + + 7 + Office copy?, March -October 1967 + + 3 folders + + + +
    + + + + 1968 + + + + + 7 + "Complete set," January -July 1968 + + +

    (without attachments)

    +
    +
    + + + 7 + Headquarters copy?, January -October 1968 + + +

    (with attachments)

    +
    +
    + + + 7 + Office copy?, January -October 1968 + + 4 folders + + + +
    + + + + 1969 + + + + + 8 + Headquarters copy?, January -October 1969 + + + + + 8 + Office copy?, January -October 1969 + + 4 folders + + + + + + + + 1970 + + + + + 8 + Binder copy, January -October 1970 + + +

    (includes typewritten originals and photocopies)

    +
    +
    + + + 8 + Office copy?, January -October 1970 + + 6 folders + + + +
    + + + + 1971 + + + + + 8 + Binder copy, January -November 1971 + + + + + 8 + Office copy, January -November 1971 + + 4 folders + + + + + + 8 + Headquarters copy, January -November 1971 + + 4 folders + + + +

    (includes typewritten and handwritten minutes)

    +
    +
    + + + 9 + Executive Director copy, April -November 1971 + + 3 folders + + + +
    + + + + 1972 + + + + + 9 + Binder copy, January -October 1972 + + + + + 9 + Office copy, January -October 1972 + + 4 folders + + + + + + 9 + Headquarters copy, January -October 1972 + + 4 folders + + + + + + 9 + Executive Director copy, January -October 1972 + + 4 folders + + + + + + + + 1973 + + + + + 9 + Binder copy, January -October 1973 + + + + + 9 + Office copy, April -October 1973 + + 3 folders + + + + + + 10 + Headquarters copy, January -October 1973 + + 4 folders + + + + + + 10 + Executive Director copy, January -October 1973 + + 4 folders + + + + + + + + 1974 + + + + + 10 + Binder copy, January -October 1974 + + + + + 10 + Office copy, January -October 1974 + + 4 folders + + + + + + 10 + Headquarters copy, January -October 1974 + + 4 folders + + + + + + 10 + Executive Director copy, January -October 1974 + + 4 folders + + + + + + + + 1975 + + + + + 10 + Binder copy, January -October 1975 + + + + + 10 + Office copy + + + + + 10 + + January 1975 + + + + + + 11 + May-October 1975 + + 3 folders + + + + + + 11 + Headquarters copy, January -October 1975 + + 4 folders + + + + + + 11 + Executive Director copy, January -October 1975 + + 6 folders + + + + + + + + 1976 + + + + + 11 + Binder copy, January -October 1976 + + + + + 11 + Office copy + + + + + 11 + + January -May 1976 + + + 2 folders + + + + + + 12 + + June -October 1976 + + + 6 folders + + + + + + 12 + Headquarters copy, January -December 1976 + + 5 folders + + + + + + 12 + Executive Director copy, January -October 1976 + + 5 folders + + + + + + + + 1977 + + + + + 12 + Binder copy, January -October 1977 + + + + + 12 + Office copy, September -October 1977 + + + + + 12 + Headquarters copy, January -September 1977 + + 4 folders + + + + + + 13 + Executive Director copy, January -October 1977 + + 4 folders + + + + + + + + 1978 + + + + + 13 + Binder copy, January -November 1978 + + + + + 13 + Office copy, January -November 1978 + + 5 folders + + + + + + 13 + Headquarters/Executive Director copy, January -November 1978 + + 4 folders + + + + + + 13 + Council Book, January -August 1978 + + 3 folders + + + + + + + + 1979 + + + + + 13 + Binder copy, January -October 1979 + + + + + Office copy + + + + 13 + + January -May 1979 + + + 2 folders + + + + + + + 14 + + July -October 1979 + + + 3 folders + + + + + + 14 + Executive Director copy, January -October (4 folders) + + + + + + + 1980 + + + + + 14 + Office copy, February -July 1980 + + 3 folders + + + + + + 14 + Executive Director copy, February -October 1980 + + 8 folders + + + +

    (some folders possibly Headquarters copy instead)

    +
    +
    +
    + + + 15 + + 1981 + + + 12 folders + + + + + + 15 + + 1982 + + + 5 folders + + + + + + 15 + + 1983 + + + 7 folders + + + + + + + 1984 + + + + + + January 30-31, 1984 + + + + + 15 + Attachments + + + + + 15 + Board Book + + + + + 15 + Motions + + + + + 16 + Minutes: with and without attachments, 3 copies + + + + + 16 + Minutes: with attachments and Executive Session minutes + + + + + + + April 26, 1984 + + + + + 16 + Attachments + + + + + 16 + Executive Session Minutes + + + + + Special Meeting + + + + 16 + Attachments + + + + + 16 + Minutes: 2 copies + + + + + 16 + Attachments: duplicate copy + + + + + + + + May 20, 1984 + + + + + 16 + Board Book + + + + + 16 + Draft Board Minutes + + + + + 16 + Executive Session Minutes + + + + + 16 + Working Papers + + 2 folders + + + + + + + + August 6-7, 1984 + + + + + 16 + Attachments + + + + + 16 + Board Book + + + + + 16 + Bylaws + + + + + 16 + Executive Session Minutes + + + + + 16 + Motions + + + + + 16 + Minutes: 2 copies + + + + + 16 + Attachments: duplicate copy + + +

    (missing attachment "Q")

    +
    +
    +
    + + + + /010/25-26, 1984 + + + + + 16 + Action Items + + + + + 16 + Board Book + + 2 folders + + + + + + 16 + Executive Session Minutes + + + + + 16 + Minutes: draft + + + + + 16 + "Agenda and Documentation": duplicate Board Book + + + +
    + + + + 1985 + + + + + + January 24-25, 1985 + + + + + 16 + Minutes + + + + + 16 + "Meeting Materials": Board Book + + + + + + May 18, 23-24, 1985 + + + + 16 + Executive Session Minutes: regarding KIPI Contract + + + + + 16 + Minutes + + + + + + 16 + August 2, 1985 Executive Session Minutes + + + + + 16 + August -October 1985 agenda, minutes, and attachments + + +

    (office/binder copy)

    +
    +
    +
    + + + + 1986 + + + + + + January 1986 + + + + + 17 + Attachments + + + + + 17 + "Board Materials" + + +

    (probably Executive Director copy? of minutes and attachments [Samuel Beatty's and/or Linda Resnik's], per note on one of the folders)

    +
    +
    + + + 17 + Final Approved Minutes + + +
    + + + + May 1986 + + + + + 17 + Attachments + + + + + 17 + Agenda and attachments: Executive Director copy? + + 2 folders + + + + + + + + July 1986 + + + + + 17 + Attachments + + + + + 17 + Agenda and attachments: Executive Director copy? + + + + + + + September -October 1986 + + + + + 17 + Attachments + + + + + 17 + "Board Materials": agenda and attachments, Executive Director copy? + + 2 folders + + + + + + 17 + Minutes + + + + + + + October 3, 1986 + + + + + 17 + Attachments + + + + + 17 + Agenda and attachments: Executive Director copy? + + + + + + 17 + January -October 1986 office/binder copy, with agenda, minutes, and attachments + + +
    + + + + 1987 + + + + + + January 1987 + + + + + 17 + Attachments + + + + + 17 + Board Book + + 2 folders + + + + + + 17 + Draft Minutes + + + + + + + May 1987 + + + + + 17 + Attachments + + + + + 17 + Board Book + + + + + 17 + Minutes + + + + + + + July 1987 + + + + + 17 + Attachments + + + + + 17 + Board Book + + + + + 17 + Minutes + + + + + + + October 1987 + + + + + 17 + Attachments + + + + + 17 + Executive Session: Notes, October 8, 1987 + + + + + 17 + Motions + + + + + + January -October 1987 agenda, minutes, and attachments + + +

    (office/binder copy)

    +
    + + + 17 + Executive Session Notes, May-October 1987 + + + + + 17 + Draft Minutes, 2 versions + + +
    +
    + + + + 1988 + + + + + 18 + February 1988 Attachments + + + + + + May 1988 + + + + + 18 + Attachments + + + + + 18 + Board Book + + + + + + July 1988 Attachments + + + + 18 + Headquarters copy + + + + + 18 + Executive Director copy (Peter Solomon's) + + + + + + + October 1988 + + + + + 18 + Draft minutes and notes: Executive Director copy (Peter Solomon's) + + + + + 18 + Board Book: Executive Director copy (Peter Solomon's) + + + + + + 18 + February -October 1988 agenda, minutes, and attachments + + +

    (office/binder copy)

    +
    +
    +
    + + + + 1989 + + + + + + February 1989 + + + + + 18 + Agenda and Draft Minutes + + + + + 18 + Attachments + + + + + 18 + Originals + + + + + 18 + Executive Director copy (Peter Solomon's) + + + + + + + May 1989 + + + + + Board Book + + + + 18 + Headquarters copy + + + + + 18 + Additional copy + + + + + + 18 + Draft agenda: Dick Hill's copy? + + + + + + + October -November 1989 + + + + + Board book + + + + 18 + Linda Resnik's copy + + +

    (includes notes for departing executive director Linda Resnik's parting remarks)

    +
    +
    + + + 18 + Richard Diener's copy + + + + + 18 + Additional copies with various notes (2 copies) + + +
    + + + 18 + Meeting notes: Dick Hill's? Linda Resnik's? + + +
    + + + 18 + February -November 1989 agenda, minutes, and attachments + + +

    (office/binder copy; incomplete set)

    +
    +
    +
    + + + + 1990 + + + + + + February 12, 1990 + + + + + 18 + Attachments + + + + + 18 + Board Book: Richard Diener's + + + + + + + May 13, 1990 + + + + + 18 + Board Book: Richard Diener's + + + + + + November 4, 8-9, 1990 + + + + 18 + Board Book: Richard Diener's + + + + + + 18 + February -November 1990 agenda, minutes, and attachments + + +

    (office/binder copy; incomplete set)

    +
    +
    +
    + + + + 1991 + + + + + + February 23, 1991 + + + + + 18 + Board Book: Richard Diener's? Richard Hill's? + + + + + + April 26 and 29, 1991 + + + + 18 + Draft agenda + + + + + 18 + Board Book: 3 copies, various ASIS officers/personnel + + + + + + + July 14, 1991 + + + + + 18 + Board Book: Executive Director copy (Peter Solomon's) + + + + + + October 27 and 30, 1991 + + + + 18 + Board Book + + + + + 18 + Attachments, incomplete + + + + + + 18 + February -April 1991 agenda, minutes, and attachments + + +

    (office/binder copy; incomplete set)

    +
    +
    +
    + + + + 1992 + + + + + + February 9, 1992 + + + + + 19 + Board Book: Executive Director copy (Peter Solomon's) + + + + + + + May 30-31, 1992 + + + + + Board Book + + + + 19 + Headquarters copy + + + + + 19 + Executive Director copy (Peter Solomon's) + + + + + + 19 + Attachments + + + + + + October 25 and 27, 1992 + + + + 19 + Board Book + + + + + + + + 1993 + + + + + + May 1993 + + + + + 19 + Board Book + + + + + + + July 1993 + + + + + 19 + Board Book + + + + + 19 + Draft agenda, notes, and attachments + + + + + + October 24 and 28, 1993 + + + + 19 + Board Book + + + + + 19 + Board Book with Attachments and Notes + + + + + + + + 1994 + + + + + 19 + Attachments, undated + + + + + + May 1994 + + + + + 19 + Board Book with Attachments and Notes + + + + + + + July 1994 + + + + + Board Book + + + + 19 + Executive Director copy (Dick Hill's) + + + + + + + + October 1994 + + + + + 19 + Board Book with Attachments and Notes + + + + + + + + 1995 + + + + + + August 1995 + + + + + 19 + Preliminary agenda and attachments + + + + + + + October 1995 + + + + + 19 + Board Book + + + + + + + + 1996 + + + + + + January 1996 + + + + + 19 + Board Book: Executive Director copy? + + + + + + + May 1996 + + + + + 19 + Board Book: Executive Director copy? + + + + + + + + 1998 + + + + + + February 1998 + + + + + 19 + Draft Minutes and attachments + + + + +
    + + + Retreats + + + + 1971 Cherry Hill, NJ Working Papers + + + + 19 + Correspondence, August -October 1971 + + 3 folders + + + + + + 19 + Reports, July -October 1971 + + 3 folders + + + + + + + 1980 Pittsburgh Working Papers + + + + 19 + Correspondence, November 1979-October 1980 + + 2 folders + + + + + + 19 + Reports, October 1975-September 1980 + + + + + + 1981 Washington, DC Working Papers + + + + 19 + Correspondence, 1980-1981 + + + + + 19 + Reports, 1980-1981 + + +

    (includes contact prints)

    +
    +
    +
    + + + 19 + Miscellaneous duplicates, ca. 1975-1989 + + +
    +
    + + + ADMINISTRATIVE + + +

    The ADMINISTRATIVE series (4.5 linear feet) contains such items as articles written about ASIS, bylaws and revisions, headquarters manuals, office diaries, legal correspondence, information on group insurance programs for members and staff, and papers written on the history of ASIS. There are also the progress reports (weekly and later monthly) of executive directors and assistant or deputy executive directors, in particular, those of Robert McAfee and Linda Resnik, at ASIS in the 1970s and 1980s. In addition, there are some folders dealing with the Organizational Structure Task Force, which was concerned with making changes in the Administrative Office of ASIS. Other files of a primarily administrative nature or which originated from ASIS's central headquarters (as opposed to with Council or the committees) are also included in this series. However, there is often considerable overlap between these files and related files in other series, particularly in the Council, Committees, and Financial series. The Administrative files are arranged alphabetically by folder title.

    +
    + + + 20 + Accreditation, 1985-1986 + + + + + 20 + Advertising, 1986 + + + + + 20 + Annual Reports, 1973 + + + + + Articles about ASIS + + +

    (individually listed by title, alphabetically, for some articles in the 1970s and 1980s otherwise, arranged chronologically; includes related correspondence)

    +
    + + + 20 + ASIS Management: Priorities, Performance and Perceptions: A Report to the ASIS Board of Directors, by Samuel B. Beatty, 1981 and undated + + + + + + ALA Yearbook + + + + + 20 + Text copy and photocopies of printed articles, 1976-1977 1979 1982 + + + + + 20 + Correspondence and galleys, 1984-1986 + + + + + 20 + Yearbook copy, 1985-1986 + + + + + + 20 + The Bowker Annual of Library and Book Trade Information, 19731986-1987 + + + + + 20 + Educational Media Yearbook, 1973-19741977 + + + + + 20 + Encyclopedia of Computer Science, 1972 + + + + + 20 + Encyclopedia of Computer Science and Technology, 1972 + + + + + 20 + "Future of ADI," 1962 + + + + + 20 + Finnegan, Gregory A. "Prologue": paper on Samuel Clement Bradford, 1981 + + + + + 20 + Information Hotline, February 1976 + + + + + 20 + Kaminecki, Sharon Pyrce, Presentation at Second Midwest Regional On-line Users' Conference, Chicago, July 1980 + + + + + 20 + "Organization Profile" in Information, May-June 1971 + + + + + 20 + Schultz, Claire K., "ASIS: Notes on Its Founding and Development," Bulletin of ASIS, vol. 2, no. 8, March 1976 + + + + + 20 + Schultz, Claire K. and Paul L. Garwig, "History of the American Documentation Institute," American Documentation, vol. 20, no. 2, April 1969 + + + + + 20 + Chronological article file, 1938-1977 + + + + + 20 + Clippings, 1985-1988 + + 2 folders + + + + + + 20 + Pamphlets and brochures, 1944-1976 and undated + + +
    + + + 20 + Articles of Incorporation and By-Laws, third edition, 1951 + + + + + 20 + "ASIS Central Files" list, 1988 + + + + + 20 + ASIS Leadership Handbook, ca. 1996 + + +

    (includes organizational chart)

    +
    +
    + + + 20 + Board of Directors: administrative, 1981-1985 + + + + + Budget + + +

    (see also Financial series)

    +
    + + + 20 + Balance sheet, Board version, May 1991 + + + + + 20 + Committees, 1979-1980 + + + + + 20 + General, 1993-1995 + + +

    (includes budgets, financial reports to Board, and related correspondence)

    +
    +
    +
    + + + 20 + Business/Marketing Plan, 1979-1986 + + + + + 20 + Careers, 1986-1987 + + + + + 20 + Certificate of incorporation: [mimeograph?], 1937 + + + + + 20 + Chapter and SIG files, [1987-1988] + + + + + 20 + Chapter files, 1968-1976 1978-1981 + + 2 folders + + + + + + Committees + + +

    (see also Committees series)

    +
    + + + 20 + Committee Administration, 1984 + + + + + 20 + Committee Reports, 1983-1984 and 1989-1990 + + + + + 20 + Committee Files, 1969-1977 1988-1990 1992-1993 + + 5 folders + + + +

    (includes material on SIGs and chapters)

    +
    +
    +
    + + + 21 + Complaints, 1980-1989 + + 3 folders + + + + + + Computer Systems + + +

    (see also Financial series)

    +
    + + + 21 + Computer search, 1984-1985 + + + + + Computer Enterprises, Inc. (CEI) + + + + 21 + Financial + + + + + Documentation Masters + + + + 21 + Report Generator, 1990 + + + + + 21 + Screens, 1990 + + + + + 21 + Financial Statement Reporting, 1990 + + + + + 21 + Database Management, 1990 + + + + + 21 + Meeting Management, 1990 + + + + + 21 + Accounts Payable, 1990 + + + + + 21 + Code Tables, 1990 + + + + + 21 + General Ledger, 1990 + + + + + + + 21 + CWS Office Systems, 1981-1982 + + +
    + + + Constitution and Bylaws + + + + 21 + Published versions, 1951-1968 + + + + + 21 + Bylaw Revisions, 1956 1966-1970 1984 + + 3 folders + + + + + + + 21 + Copyright law and auxiliary publications, 1938 + + + + + Council + + + + 21 + Council Handbook: Summaries of Action, undated + + + + + 21 + Other files, 1968-1976 + + + + + + 21 + Development Effort, 1984-1985 + + + + + 21 + Directory listings, 1984-1985 + + + + + Elections + + + + 21 + Ballot forms, 1981-1983 + + + + + 21 + Ballots and related, 1986-1988 + + 3 folders + + + + + + 21 + Biographical Information: on officer candidates, 1968-1979 + + + + + 21 + General, 1981-1986 + + 3 folders + + + + + + + Electronic Mail System + + + + 21 + Compmail, 1984 + + + + + 21 + General, 1984-1985 + + 2 folders + + + + + + + 21 + Executive Director's and Secretary's reports, 1952-1963 + + 2 folders + + + +

    (includes quarterly and annual reports)

    +
    +
    + + + 21 + Executive Director's Working Papers: notes and miscellanea, 1985-1986 1989 1994 and undated + + 3 folders + + + + + + Focus Groups + + + + 22 + Focus Group Task Force, 1988-1990 + + + + + 22 + General, 1988-1990 + + 2 folders + + + + + + + 22 + General Correspondence, 1972-1980 + + 2 folders + + + + + + Goals and Objectives + + + + 22 + Five Year Plan, 1985 and undated + + + + + 22 + Survey, 1981 + + + + + + 22 + Guide to People and Services, 1985-1992 + + + + + 22 + Handbook and Directory (Handbook & Directory), 1965 1967-1968 1981 1988-1989 + + 2 folders + + + + + + 22 + Headquarters Activity, ca. 1978 + + + + + 22 + Headquarters Bulletin, 1970-1972 + + + + + History of ASIS + + +

    (see also Irene Farkas-Conn Historical and Research Files series)

    +
    + + + 22 + Society Activities, 1968-1975 + + 4 folders + + + + + + 22 + Master's Thesis by Angela Lynn Dierking, 1975 + + + + + 22 + ASIS historical sketch, 1985 + + + + + 22 + ASIS Landmark Events, 1988 + + +
    + + + Insurance + + + + 22 + Group Insurance Plan for Members, 1967-1976 and undated + + 2 folders + + + + + + 22 + Indemnification, 1984 + + + + + 22 + Insurance Benefits, 1964 1966-1985 1987 + + 10 folders + + + + + + 22 + Liability Insurance, 1982 + + + + + + 22 + Job Descriptions, 1974 + + + + + Legal Correspondence + + + + 23 + Copyright, 1964-1977 + + + + + 23 + Corporate, 1987 + + + + + 23 + Lobbying, 1976 and 1986 + + + + + 23 + Pension, 1971-1972 + + + + + 23 + Taxation, 1963-1981 + + 3 folders + + + + + + 23 + Trademarks, 1967-1977 + + 2 folder + + + + + + 23 + Wage-Price Freeze, 1971 + + + + + 23 + Washington and Lee, 1975 + + + + + 23 + Miscellanea, 1960-1980 + + 3 folders + + + + + + + 23 + Logo, 1967-1971 + + + + + 23 + "The Management of ASIS: A Planning Discussion between Council and the Operations Planning Task Force (OPTF)," 1978 + + + + + Manual: "Headquarters Policy and Procedures" + + + + 23 + Draft, 1975 + + 2 folders + + + + + + 23 + Approved version, 1976 + + + + + 23 + Updates, 1979 + + + + + + Membership + + + + 23 + Kudos, 1987-1988 + + + + + 23 + Promotion, 1987 + + + + + + 23 + Memos, Office, 1971-1982 + + + + + 23 + Mergers: ADI and STWP (Society of Technical Writers and Publishers), 1964 + + +

    (see also Special Libraries Association Merger series)

    +
    +
    + + + 23 + Miscellanea, undated + + + + + 23 + Mission Statement, undated + + + + + 23 + Name Changes, 1963-1968 + + + + + 23 + Office Diary, 1981-1986 + + 2 folders + + + + + + Organizational Structure Task Force + + + + 23 + Correspondence and Memoranda, 1979-1980 + + + + + 23 + Reports, 1979-1980 + + + + + + Personnel + + + + 23 + Executive Director Performance Review, 1988 + + +

    [Restricted until 2063; removed to box 188]

    +
    +
    +
    + + + Policy Manual + + + + 23 + + 1979 + + + 3 folders + + + + + + 24 + 1984-85 + + 1 folder + + + + + + + 24 + Policy Statement: drafted by Manfred Kochen, 1977-1978 1982 and undated + + +

    (including 1982 update)

    +
    +
    + + + 24 + President's Address, 1956 ? + + + + + Presidents' and Executive Directors' Files + + +

    (many files collected by past executive directors or presidents and later sent to ASIS to complete the historical record; includes correspondence, reports, pamphlets, etc.)

    +
    + + + 24 + Karl F. Heumann, 1938-1970 + + + + + 24 + Eugene Jackson, 1952-1962 + + + + + 24 + John Kaiser, 1956-1970 + + + + + 24 + Simon Newman, 1959-1960 + + 2 folders + + + +
    + + + 24 + Presidents of ASIS, 1962-1967 + + + + + 24 + Press Releases, 1937 1944 1973 1976 1984-1989 + + 8 folders + + + + + + 24 + Publicity/Public Relations, 1985-1986 + + +

    (includes some press releases)

    +
    +
    + + + 24 + SIG Files, 1977-1981 + + + + + 24 + Simon Newman Fund, 1985-1986 + + + + + Site Development + + + + 24 + Site selection, 1986-1987 + + + + + 24 + Office space selection, 1990 + + + + + + Society Activities: alphabetical by topic, + + +

    (compiled for Claire Schultz by Sheryl Wormley?)

    +
    + + + 24 + A, 1968-1975 + + + + + 24 + M-, 1968-1975 + + +
    + + + 24 + Team ASIS: staff development workshop, 1990 + + + + + 24 + Technical Programs, 1976 + + + + + 24 + Watson Davis Obituary, 1967 + + + + + 24 + Weekly reports by Robert McAfee, 1974-1980 + + 4 folders + + + +

    (see also executive directors' monthly reports/memoranda in Council)

    +
    +
    +
    + + + CORRESPONDENCE + + +

    The CORRESPONDENCE series (11 linear feet) is made up of three subseries: the Early Leaders File, the Chronological File, and the Alphabetical File.

    +

    The Early Leaders File consists of correspondence to and from some of the early leaders of ADI/ASIS, including founder Watson Davis, Robert C. Binkley, and Vernon Tate, as well as materials from officers in the 1950s and 1960s, when ADI underwent its shift and expansion from a documentation institute to a professional society concerned with all aspects of the emerging discipline of information science.

    +

    The Chronological File subseries is based on an ASIS office file originally created by Robert McAfee, who served as assistant executive director from the early 1970s through the early 1980s. After McAfee left in 1982, the Chronological File was continued by succeeding ASIS officers and staff. It consists primarily of the correspondence of executive directors and deputy executive directors. It also contains correspondence from other ASIS staff and Board members. Much of this material is outgoing correspondence that includes supplementary material such as meeting minutes, brochures and scholarly papers. Because of the large number of attachments, the Chronological File offers a good representation of the functions and activities of ASIS as a whole, and not just its communications via its correspondence. Much of the correspondence from the 1990s was routine in nature (e.g. conference speaker confirmations, dues notices, donor thanks, etc.); most of this was discarded, with some samples kept.

    +

    Finally, there is an Alphabetical File subseries. This is another ASIS office file with the earliest material beginning in 1962. The bulk of this correspondence is from Joshua Smith's tenure as Executive Director (1973-1976). It also includes some attachments.

    +
    + + + Early Leaders File + + + + 25 + Watson Davis, 1937-1952 + + + + + 25 + Robert C. Binkley, 1938-1939 + + + + + 25 + Vernon Tate, 1947-1948 + + + + + 25 + Simon Newman, 1951-1954 + + +

    (includes other materials besides correspondence: minutes, reports, etc.)

    +
    +
    + + + John B. Kaiser + + +

    (includes other materials besides correspondence, e.g. notes, drafts of letters, reports, pamphlets, other documentation;)

    +
    + + + Topical files + + +

    (headings supplied by processor)

    +
    + + + 25 + Budget Committee problems, 1961 + + + + + 25 + Executive Director's reports and correspondence, 1961 + + + + + 25 + Office memorandum and correspondence, 1960 and 1962 + + + + + 25 + Retirement, 1962-1964 + + 2 folders + + + +

    (includes other topics)

    +
    +
    + + + 25 + Subscriptions procedures problems, 1961 + + + + + 25 + Working papers and correspondence, 1962-1963 + + +
    + + + 25 + General correspondence, ca. 1951-1974 + + 2 folders + + + +
    + + + Karl Heumann + + +

    (includes other materials: reports, minutes, etc.)

    +
    + + + 25 + + ca. 1953-1958 + + + + + + 25 + 1954-19561959-19611964 and undated + + 14 folders + + + +

    (includes many items [copied to Heumann] to and from other ADI leaders such as Vernon Tate, Cloyd Dake Gull, Robert Binkley, and others)

    +
    +
    +
    + + + 25 + Cloyd Dake Gull, 1960-1963 + + + + + 25 + Claire Schultz, 1962 + + + + + 25 + Other Names, 1938-1939 and 1950 + + +
    + + + Chronological File + + + + Robert McAfee, + + +

    (includes some materials of other persons, in particular Samuel Beatty)

    +
    + + + 25 + + 1970-1975 + + + 9 folders + + + + + + 26 + + 1976-August 1982 + + + 13 folders + + + +
    + + + Samuel Beatty and John Brokenshire + + +

    (includes some materials of other persons, notably a substantial amount of material from Nancy LeFebvre, her position unknown)

    +
    + + + 26 + + October 1982-December 1984 + + + 22 folders + + + + + + 27 + + January 1985-1986 + + + 8 folders + + + +

    (1986 incoming only)

    +
    +
    +
    + + + 27 + Bonnie Carroll, 1980-September 1986 + + 21 folders + + + +

    (includes some materials of other persons)

    +
    +
    + + + Linda Resnik + + +

    (includes some materials of other persons)

    +
    + + + 28 + March -1985-November 1986 + + 31 folders + + + + + + 29 + + December 1986-December 1988 + + + 31 folders + + + + + + 30 + + January -February 1989 + + + 3 folders + + + +
    + + + Dick Hill and Peter Solomon + + +

    (includes some materials of other persons; some [later?] files are just Dick Hill's and not Peter Solomon's)

    +
    + + + 30 + Outgoing correspondence: Peter Solomon, 1988-1990 + + 3 folders + + + +

    (includes some incoming correspondence)

    +
    +
    + + + 30 + + March 1989-November 1990 + + + 25 folders + + + + + + 31 + + December 1990-December 1991 + + + 25 folders + + + + + + 32 + + January 1992-April 1993 + + + 30 folders + + + + + + 33 + May 1993-July 1994 and November 1994 + + 22 folders + + + + + + 33 + January, March -April, June -December 1995 + + 13 folders + + + + + + 33 + March -June, September -October 1996 + + 3 folders + + + + + + 33 + + July -December 1997 + + + + + + 33 + March, June -September 1998 + + + + + 33 + + February 1999 + + + +
    +
    + + + Alphabetical File, 1962-1981 + + + + A + + + + 34 + General, 1971-1976 + + 3 folders + + + + + + 34 + Atherton, Pauline, 1970-1972 + + + + + + B + + + + 34 + General, 1972-1975 + + 3 folders + + + + + + 34 + Baker, Dale B., 1973-1976 + + 2 folders + + + + + + 34 + Becker, Joseph, 1968-1973 + + + + + 34 + Bryan Dinner, 1970 + + + + + + C + + + + 34 + General, 1968-1975 + + 5 folders + + + + + + 34 + Cretsos, James M., undated + + + + + + D + + + + 34 + General, 1968-1978 + + 2 folders + + + + + + 34 + Day, Melvin, 1975-1976 + + + + + 34 + Drexel Institute, 1963-1964 + + + + + 34 + Duke University Conference, 1966 + + + + + + E + + + + 34 + General, 1972-1976 + + 3 folders + + + + + + 34 + Elias, Arthur, 1965-1975 + + + + + 34 + Exhibits, 1973-1974 + + + + + + F + + + + 34 + General, 1971-1975 + + 3 folders + + + + + + 34 + FID, 1975 + + + + + 34 + Fischer, Margaret, 1974 1977 + + + + + 34 + Foreign Contacts, 1970-1971 + + + + + 34 + Funding Possibilities, 1974 + + + + + + G + + + + 34 + General, 1973-1975 + + 3 folders + + + + + + 34 + GPO, 1970-1972 + + + + + 34 + Grosch, Audrey N., 1977-1978 + + + + + + H + + + + 34 + General, 1972-1975 + + 3 folders + + + + + + 34 + Hanson, Arthur B., 1975-1977 + + + + + 34 + Herlitz, Steven K., 1964-1965 + + + + + 34 + Herrmann, Roy, 1975 + + + + + 34 + Historical Collection, 1962-1973 + + + + + 34 + Hughes, Robert, 1974 + + + + + + I + + + + 34 + General, 1971-1975 + + + + + + J + + + + 34 + General, 1973-1975 + + 2 folders + + + + + + + K + + + + 35 + General, 1973-1975 + + 2 folders + + + + + + 35 + Koller, Herbert R., 1973-1974 + + + + + 35 + Kyle, Robert, 1966-1972 + + + + + + L + + + + 35 + General, 1972-1975 + + 3 folders + + + + + + 35 + Landau, Herbert B., 1979-1980 + + + + + 35 + Landau, Robert, 1970-1971 + + 2 folders + + + + + + 35 + Lunin, Lois, 1971-1975 + + 2 folders + + + + + + + M + + + + 35 + General, 1972-1975 + + 3 folders + + + + + + 35 + Maginnis and Associates, 1981 + + + + + + N + + + + 35 + General, 1972-1975 + + 2 folders + + + + + + 35 + Newman, Simon, 1970-1976 + + + + + + O + + + + 35 + General, 1972-1975 + + 2 folders + + + + + + + P + + + + 35 + General, 1972-1976 + + 3 folders + + + + + + 35 + Papier, Lawrence, 1970 + + + + + 35 + Price, Douglas S., 1974-1975 + + + + + + Q + + + + 35 + General, 1974 + + + + + + R + + + + 35 + General, 1972-1976 + + + + + + S + + + + 35 + General, 1973-1976 + + 5 folders + + + + + + 35 + Sherrod, John, 1971-1973 + + + + + 35 + Svenonius, Elaine, 1980-1981 + + 4 folders + + + + + + + T + + + + 35 + General, 1974-1975 1978 + + 2 folders + + + + + + 35 + Taylor, Robert, 1967-1969 + + + + + + U + + + + 35 + General, 1973-1974 + + + + + + V + + + + 35 + General, 1971-1975 + + + + + + W + + + + 35 + General, 1972-1976 + + 3 folders + + + + + + 35 + Weil, Ben, 1973-1974 + + + + + 35 + White, Herbert S., 1973-1977 + + 2 folders + + + + + + 35 + Wiley and Sons, 1976-1981 + + + + + 35 + Williams, Martha, 1976-1977 + + + + + + X, Y, Z + + + + 35 + General, 1973-1975 + + + + +
    + + + CHAPTERS + + +

    The CHAPTERS series (22 linear feet) includes the records of groups of members located within a well-defined geographic area and approved by Council. Student Chapters are affiliated with a specific school of library and information science and are located under the heading "Student Chapters." This series contains general material from the Chapter Assembly and the Officers Workshops, in addition to Chapter Memos, Chapter of the Year Awards documentation, Chapter Officer Manuals, and financial information specifically regarding the chapters. A small amount of chapter financial information can also be found in the Financial series. The bulk of this series is an alphabetical arrangement of chapters by name (except that Student Chapters are grouped at the end of the list), which include their minutes, constitution and bylaws correspondence, newsletters, Chapter of the Year Award nominations and financial information. Some Chapter of the Year materials can also be found in the Awards series.

    +
    + + + 36 + Activity Reports, 1988-1989 + + + + + 36 + Boundaries, 1966 + + + + + 36 + Bylaws and Proposed Changes, 1964-1982 and undated + + 4 folders + + + + + + Chapter Assembly + + + + 36 + Advisory Committee, 1980-1986 + + + + + 36 + Award of Merit, 1981-1986 + + + + + 36 + Correspondence, 1981 + + + + + 36 + Councilor Reports, 1973-1981 + + + + + 36 + Deputy Assembly Chairman, 1976-1977 + + + + + 36 + Director Reports, 1981-1982 1987 + + + + + 36 + Duties of Councilors, 1977-1978 + + + + + 36 + Minutes and Agendas, 1962-1985 1999 + + 8 folders + + + + + + 36 + Nominations Committee, 1985-1986 + + + + + 36 + Student Chapter of the Year, 1985 + + + + + 36 + Tear Sheets, 1974-1981 + + + + + 36 + General, 1972-1991 + + 5 folders + + + + + + + 36 + Chapter Challenge Survey, 1994 + + 2 folders + + + + + + 36 + Chapter Development Fund, 1983-1986 1988 + + + + + 36 + Chapter Development Fund Ad Hoc Committee Report, 1982 + + + + + 36 + Chapter Lists, 1975-1982 + + +

    (includes contact persons lists)

    +
    +
    + + + Chapter Memos + + +

    (includes attachments)

    +
    + + + 36 + + 1973-1978 + + + 3 folders + + + + + + 37 + + 1979-1988 + + + 6 folders + + + +
    + + + 37 + Chapter Newsletter Editors Workshop, 1984 + + + + + Chapter of the Year Award + + + + 37 + Correspondence, 1974-1986 + + + + + 37 + Miscellanea, 1975-1980 and 1990 + + 2 folders + + + + + + 37 + Nominations and Jury Committee, 1976-1982 + + + + + 37 + Purpose and Checklist, 1975-1979 + + + + + 37 + Selection Criteria, 1976-1980 and undated + + + + + 37 + Statements, 1977-1984 + + + + + 37 + Tear Sheets, 1977-1980 + + + + + + Chapter Officers' Manual, 1966-1979 and undated + + 7 folders + + + + + 37 + Correspondence, 1963-1976 and undated + + + + + 37 + Manuals, 1976 1979 + + + + + 37 + Miscellanea + + + + + + Chapter Officers Workshop + + + + 37 + Agenda, 1963-1980 + + + + + 37 + Correspondence, 1965-1982 + + + + + 37 + Minutes, 1963-1978 + + + + + 37 + General, 1974-1984 + + + + + + 37 + Committees: regarding Chapter of Choice, 1981 + + + + + Correspondence + + + + General + + + + 37 + Undated and 1961-1973 + + 4 folders + + + + + + 38 + + 1974-1998 + + + 20 folders + + + + + + + 38 + Dissolution of Florida and Missouri Chapters, 1973-1977 + + + + + + Financial + + + + Annual Financial Reports + + +

    (see also Financial Statements and Individual Chapters financials)

    +
    + + + 39 + Reports, 1972-1986 + + + + + 39 + Correspondence regarding, 1966-1980 1987 + + 2 folders + + + +
    + + + 39 + Audit Preparation, 1969-1978 1990 + + 3 folders + + + + + + 39 + Bonding of Chapter Treasurers, 1978-1980 + + + + + 39 + Chapter Finance Summary, 1972-1973 1991-1992 + + 2 folders + + + + + + 39 + Chapter Project Fund, 1974-1979 + + + + + 39 + Chapter Project Grants, 1965-1969 + + + + + Chapter Rebates + + + + 39 + + 1963-1983 + 1985-1991 + 1994-1998 + + + 24 folders + + + + + + 40 + + 1999 + + + 4 folders + + + + + + + 40 + Chapter Remittances, 1971-1972 1981 1987 + + 3 folders + + + + + + 40 + Chapter Treasurers, 1979 + + + + + 40 + Correspondence, 1967-1983 and undated + + + + + 40 + Financial Report Charts, 1970-1976 + + + + + 40 + Financial Statements, 1976-1977 1981 1983-1984 1987-1992 1995-1997 + + 15 folders + + + +

    (see also Annual Financial Reports and Individual Chapters financials)

    +
    +
    + + + 40 + Guidelines for Program and Financial Planning, 1974-1978 + + +
    + + + 40 + Lending Agreement, 1976 + + + + + 40 + Membership, 1979 + + + + + 40 + Membership Procedures, 1984 + + + + + 40 + Miscellanea, 1966-1985 + + + + + 40 + Motions, 1975-1981 + + + + + 41 + Newsletters, 1982-1987 1990-1992 + + 5 folders + + + +

    (includes correspondence)

    +
    +
    + + + 41 + Officers, 1963-1989 1992-1994 1996-1998 + + 8 folders + + + + + + 41 + Policy Statements, undated + + + + + Procedures + + + + 41 + Chartering and Dissolving Chapters and Student Chapters, 1973-1981 + + + + + 41 + Voting, 1979 and undated + + + + + + 41 + Prospect Tracking System, 1989 + + + + + 41 + Publications, 1971-1973 + + + + + Questionnaires + + + + 41 + 1963 and 1979 + + + + + 41 + "Essence of Chapters", 1985 + + + + + + 41 + Slide Show on Information Science, 1979-1980 + + + + + Speakers Bureau + + + + 41 + Correspondence, 1966-1980 + + + + + 41 + Hot Topics, 1974-1980 and undated + + + + + 41 + Reports, 1974-1981 + + + + + + 41 + Starter Kit for New Chapters, 1974 1984-1986 1988 + + 2 folders + + + + + + Student Chapters + + + + 41 + Advisors, 1975-1984 + + + + + 41 + Correspondence, 1964-1983 1987-1989 1992-1998 + + 5 folders + + + + + + 41 + General, 1964-1985 + + + + + 42 + Officers' Manual, 1984 + + + + + 42 + Possible New Chapters, 1964-1982 + + + + + 42 + Seed Money, 1992 1995-1996 and 1997-1998 + + 3 folders + + + + + + + 42 + Telephone Call Record, 1974-1975 + + + + + Individual Chapters + + +

    ("Financial Reports" and "Financial" includes chapter income statements, finance-related correspondence, and information about chapter rebates)

    +
    + + + 42 + Alabama, 1976 + + + + + Arizona and New Mexico + + + + 42 + Financial, 1998 + + + + + 42 + General, 1974-1980 1998-1999 + + 3 folders + + + + + + + 42 + Australia, 1973-1974 + + + + + 42 + Baltimore, 1970 + + + + + 42 + Canada: Possible Chapters, 1963-1969 + + + + + Carolinas + + + + 42 + Annual Activity Report, 1976-1981 + + + + + 42 + Constitution and Bylaws, 1973 + + + + + 42 + Correspondence, 1966-1981 + + 2 folders + + + + + + 42 + Financial, 1973-1980 + + + + + 42 + Membership, 1973-1981 + + + + + + Central New Jersey + + + + 42 + Chapter of the Year, 1977-1985 + + 5 folders + + + + + + 42 + Constitution and Bylaws, 1975-1985 + + + + + 42 + Correspondence, 1974-1985 + + 3 folders + + + + + + 42 + Financial, 1977-1985 + + + + + 42 + Meeting Announcements, 1976-1984 + + + + + 42 + Membership Directory, 1980 + + + + + 42 + Minutes, 1976-1980 + + + + + 42 + Newsletters, 1977-1984 + + 2 folders + + + + + + 42 + Officers, 1976-1984 + + + + + + Central Ohio + + + + 42 + Annual Reports, 1975 1981-1983 + + + + + 42 + Bylaws and Constitution, 1976-1985 + + + + + 42 + Chapter of the Year, 1976-1989 + + 5 folders + + + + + + 43 + Correspondence, 1961-1987 + + 7 folders + + + + + + 43 + Financial, 1970-1986 1991-1999 + + 5 folders + + + + + + 43 + Meeting Announcements, 1965-1982 + + + + + 43 + Minutes, 1976-1987 + + 4 folders + + + + + + 43 + Miscellanea + + + + + 43 + Newsletters, 1964-1984 + + 8 folders + + + + + + 43 + Officers, 1970-1985 + + + + + 43 + Tear Sheets and Reports, 1973-1979 + + + + + 43 + Telephone Call Record, 1975 + + + + + 43 + General, 1985-1995 + + 2 folders + + + + + + + Chesapeake Bay + + + + 43 + Annual Reports, 1972-1973 + + + + + 43 + Correspondence, 1967-1978 + + + + + 43 + Financial Reports, 1968-1979 + + + + + 43 + Newsletters, 1972 + + + + + 43 + Officers, 1968-1973 + + + + + + Chicago + + + + 43 + Annual Reports, 1967-1981 + + + + + 43 + Bylaws, 1962 + + + + + 43 + Chapter of the Year, 1977-1985 + + 4 folders + + + + + + 43 + Chicago Online Users Introductory Guide, 1976-1978 + + + + + 44 + Correspondence, 1961-1985 + + 3 folders + + + + + + 44 + Financial, 1967-1986 1991-1993 and 1995-1999 + + 3 folders + + + + + + 44 + Meeting Announcements, 1976-1986 + + + + + 44 + Membership Directory, 1979 1982 + + 2 folders + + + + + + 44 + Minutes, 1981 + + + + + 44 + Newsletters, 1974-1985 + + 5 folders + + + + + + 44 + Officers, 1970-1984 + + + + + 44 + General, 1981-1987 1989 1991-1995 + + + + + + Colorado Centennial + + + + 44 + Annual Report, 1979-1980 + + + + + 44 + Bylaws, 1979 + + + + + 44 + Correspondence, 1966-1984 + + + + + 44 + Financial Reports, 1979-1985 and 1993 + + 2 folders + + + + + + 44 + Newsletters, 1979-1983 + + + + + 44 + Officers, 1979-1980 + + + + + 44 + Tear Sheets, 1979-1980 + + + + + 44 + General, 1984-1985 1988-1989 1991 + + 3 folders + + + + + + + 44 + Connecticut Valley, 1973-1974 + + + + + Delaware Valley + + + + 44 + Annual Reports, 1975-1976 + + + + + 44 + Chapter of the Year, 1975-1976 + + + + + 44 + Constitution and Bylaws, 1964-1981 and undated + + + + + 44 + Correspondence, 1959-1982 + + 4 folders + + + + + + 44 + Executive Committee, 1976 ? + + + + + 44 + Farewell Party for Stella Keenan, 1974 + + + + + 44 + Financial, 1966-1986 1991-1993 and 1995-1999 + + 5 folders + + + + + + 44 + Meeting Announcements, 1960-1983 + + 2 folders + + + + + + 44 + Membership, 1973-1976 + + + + + 44 + Minutes, 1966-1978 + + 2 folders + + + + + + 45 + Newsletters, 1964-1984 + + 5 folders + + + + + + 45 + Officers, 1962-1984 + + + + + 45 + Online Workshop, 1975 + + 2 folders + + + + + + 45 + State Activities and Governor's Conference, 1976 + + + + + 45 + Tapes, Cassette: regarding Objectives, 1975 + + + + + 45 + Tear Sheets and Press Releases, 1975-1979 + + + + + 45 + Telephone Call Record, 1974-1977 + + + + + 45 + General, 1972-19751988-1989 + + 3 folders + + + + + + + East Tennessee + + + + 45 + Annual Report, 1976-1985 + + +

    (includes support material)

    +
    +
    + + + 45 + Chapter of the Year, 1980-1982 1987-1988 + + + + + 45 + Correspondence, 1970-1979 + + + + + 45 + Directory of Information Professionals, 1988 + + + + + 45 + Financial, 1976-1986 1991-1998 + + 4 folders + + + + + + 45 + Meeting Announcements, 1974-1981 + + + + + 45 + Newsletters, 1979-1985 + + + + + 45 + Officers, 1975-1982 + + + + + 45 + General, 1985-1989 1992-1995 + + 2 folders + + + +
    + + + 45 + England, 1969-1979 + + + + + European + + + + 45 + Correspondence, 1980 + + + + + 45 + Financial, 1998 + + + + + 45 + General, 1974 1985-1987 1991-1997 1999 + + 3 folders + + + + + + + Florida + + + + 46 + Financial, 1991-1993 1995-1998 + + 3 folders + + + + + + 46 + General, 1966-1978 19891992-1993 + + 4 folders + + + + + + + 46 + Four Corners, 1980 + + + + + Frontier + + + + 46 + Annual Reports, 1973-74 + + + + + 46 + Constitution, 1972 and undated + + + + + 46 + Correspondence, 1970-1978 + + 3 folders + + + + + + 46 + Financial Reports, 1972-1977 + + + + + 46 + Meeting Notices, 1972-1974 + + + + + 46 + Minutes, 1972 + + + + + 46 + Newsletters, 1972-1975 + + + + + 46 + Officers, 1972-1974 + + + + + 46 + Petitions, 1971-1972 + + + + + + Georgia + + + + 46 + Annual Reports, 1980-1983 + + + + + 46 + Correspondence, 1979-1985 + + + + + 46 + Financial Reports, 1981-1985 and 1993 + + 2 folders + + + + + + 46 + Meeting Notices, 1980-1983 + + + + + 46 + Minutes, 1980-1984 + + + + + 46 + Newsletters, 1980-1983 + + + + + 46 + Officers, 1980-1983 + + + + + 46 + General, 1984-1989 1992 + + 2 folders + + + + + + + Indiana + + + + 46 + Annual Reports, 1976-1980 + + + + + 46 + Chapter of the Year, 1984-1985 + + + + + 46 + Constitution and Bylaws, 1980 + + + + + 46 + Correspondence, 1961-1980 + + 2 folders + + + + + + 46 + Financial, 1970-1986 1991-1993 1995-1999 + + 4 folders + + + + + + 46 + Meeting Announcements, 1969-1983 + + + + + 46 + Minutes, 1968-1981 + + + + + 46 + Miscellanea, 1969-1984 + + + + + 46 + Newsletters, 1975-1986 + + 2 folders + + + + + + 46 + Officers, 1962-1982 + + + + + 46 + General, 1982-1995 + + 2 folders + + + + + + + Los Angeles + + + + 47 + Annual Reports, 1968-1980 + + + + + 47 + Chapter of the Year, 1977-1987 1988-1989 + + 6 folders + + + + + + 47 + Conference: "Quantifying Quality," 1977 + + + + + 47 + Correspondence, 1961-1984 + + 4 folders + + + + + + 47 + Financial Reports, 1967-1986 and 1991-1999 + + 8 folders + + + + + + 47 + Meeting Announcements, 1962-1986 + + + + + 47 + Membership Directories, 1971-1974 + + + + + 47 + Minutes, 1980 + + + + + 47 + Miscellanea, 1966-1982 + + + + + 47 + Newsletters, 1961-1986 + + 4 folders + + + + + + 47 + Officers, 1983-1985 + + + + + 47 + Petitions to Form the Chapter, 1961 + + + + + 47 + General, 1985-1997 + + 2 folders + + + + + + + 48 + Louisiana, 1974-1976 + + + + + Metropolitan New York + + + + 48 + Annual Reports, 1971-1980 + + + + + 48 + Chapter of the Year, 1976-1982 + + 2 folders + + + + + + 48 + Correspondence, 1959-1984 + + 3 folders + + + + + + 48 + Financial, 1971-1986 1991-1999 + + 4 folders + + + + + + 48 + Meeting Announcements, 1960-1982 + + 2 folders + + + + + + 48 + Minutes, 1964-1984 + + + + + 48 + Newsletters, 1963-1982 + + + + + 48 + Officers, 1961-1983 + + + + + 48 + General, 1985-1996 + + + + + + 48 + Mexico, 1980 + + + + + 48 + Miami, 1978 + + + + + Michigan + + + + 48 + Annual Reports, 1976-1981 + + + + + 48 + Constitution and Bylaws, 1980 + + + + + 48 + Correspondence, 1966-1985 + + + + + 48 + Financial, 1970-1985 1987 1991-1999 + + 4 folders + + + + + + 48 + Meeting Announcements, 1972-1982 + + + + + 48 + Minutes, 1970 + + + + + 48 + Newsletters, 1972-1982 + + + + + 48 + Officers, 1969-1981 + + + + + 48 + General, 1984-1985 1991-1993 + + + + + + Minnesota + + + + 48 + Annual Reports, 1968-1984 + + + + + 48 + Chapter of the Year, 1984-1985 + + + + + 48 + Correspondence, 1966-1982 + + 3 folders + + + + + + Financial + + + + Financial Reports + + + + 48 + + 1971-1996 + + + 3 folders + + + + + + 49 + + 1997-1999 + + + 1 folder + + + + + + + Treasurer's Records: annual financial reports, receipts, bank statements, copies of cancelled checks, treasurer's reports and correspondence + + + + 49 + Bills and Related Correspondence, 1975-1979 + + + + + 49 + Chapter Income Statement, 1993 + + + + + 49 + Chapter Officer's Manual, 1992 + + + + + 49 + Ledgers, 1973-1985 + + + + + 49 + General, 1981-1994 + + 11 folders + + + + + + + + 49 + Meeting Announcements, 1970-1981 + + + + + 49 + Membership Directory, 1972 1975 + + 2 folders + + + + + + 49 + Minutes, 1970-1982 + + + + + Newsletters + + + + 49 + + 1968-1981 + + + 12 folders + + + + + + 50 + + 1981-1984 + + + 3 folders + + + + + + + 50 + Officers, 1968-1982 + + + + + 50 + Petitions to Establish, 1968 + + + + + 50 + General, 1983-1988 1992-1993 1995 + + 3 folders + + + + + + + 50 + Missouri, 1974-1978 + + + + + New England + + + + 50 + Annual Reports, 1969-1985 + + + + + 50 + Chapter of the Year, 1984-1987 + + 2 folders + + + + + + 50 + Correspondence, 1961-1985 + + 2 folders + + + + + + 50 + Financial, 1965-1986 1991-1999 + + 4 folders + + + + + + 50 + Meeting Announcements, 1972-1987 + + + + + 50 + Minutes, 1977-1978 + + + + + 50 + Newsletters, 1974-1986 + + + + + 50 + Officers, 1965-1985 + + + + + 50 + General, 1985-1989 1991-1997 + + + + + + New Jersey + + + + 50 + Chapter of the Year, 1987-1989 + + 2 folders + + + + + + 50 + Correspondence, 1975 1985-1987 + + + + + 50 + Financial, 1991-1998 + + 4 folders + + + + + + 50 + Membership Directory, 1988 + + + + + 50 + General, 1985-1992 + + 2 folders + + + + + + + 51 + Northern Europe (or North European) + + + + 51 + Financial, 1973-1984 and 1993 + + 2 folders + + + + + + + Northern Ohio + + + + 51 (cont.) + Annual Reports, 1972-1978 + + + + + 51 (cont.) + Bylaws, 1964 + + + + + 51 (cont.) + Chapter of the Year, 1976-1978 + + 2 folders + + + + + + 51 (cont.) + Correspondence, 1964-1985 + + 5 folders + + + + + + 51 (cont.) + Directories, 1982-1983 + + + + + 51 (cont.) + Financial, 1965-1985 1991-1999 + + 4 folders + + + + + + 51 (cont.) + Meeting Announcements, 1963-1984 + + + + + 51 (cont.) + Minutes, 1965-1979 + + + + + 51 (cont.) + Newsletters, 1966-1985 + + 4 folders + + + + + + 51 (cont.) + Officers, 1969-1984 + + + + + 51 (cont.) + Press Clippings, 1975 + + + + + 51 (cont.) + Northern Ohio-Pittsburgh Continuing Education Seminars, 1964-1975 + + + + + 51 (cont.) + General, 1984-1986 1988-1989 1992-1993 1995 + + + + + + 51 (cont.) + Ohio Chapters Joint Activities, 1968-1982 + + 2 folders + + + + + + Oklahoma + + + + 51 (cont.) + Annual Reports, 1984-1985 + + + + + 51 (cont.) + Correspondence, 1984 + + + + + 51 (cont.) + Directory, 1984 + + + + + 51 (cont.) + Financial, 1983-1984 1986 1992 + + + + + + Pacific Northwest + + + + 51 (cont.) + Annual Reports, 1974-1984 + + + + + 51 (cont.) + Chapter of the Year, 1976-1979 + + 3 folders + + + + + + 52 + Constitution and Bylaws, 1986 + + + + + 52 + Correspondence, 1971-1985 + + 4 folders + + + + + + 52 + Directory, 1971-1972 + + + + + 52 + Financial, 1974-1986 1991-1999 + + 5 folders + + + + + + 52 + Meeting Announcements, 1973-1986 + + + + + 52 + Minutes, 1976-1982 + + + + + 52 + Miscellanea, 1981-1984 + + + + + 52 + Newsletters, 1972-1986 + + 7 folders + + + + + + 52 + Officers, 1964-1984 + + + + + 52 + Seminar: "The World of Computers...," 1978 + + + + + 52 + General, 1985-1989 1991-1992 1994-1995 + + + + + + Pittsburgh + + + + 52 + Annual Reports, 1975-1981 1995 + + + + + 52 + Bylaws, undated + + + + + 52 + Correspondence, 11961-1984 + + 4 folders + + + + + + 52 + Financial, 1971-1985 1991-1998 + + 5 folders + + + + + + 52 + Meeting Announcements, 1973-1981 + + + + + 52 + Miscellanea, 1976-1982 + + + + + 52 + Newsletters, 1971-1980 + + + + + 52 + Officers, 1973-1983 + + + + + 52 + General, 1980 1985 1987 1988 1992-1993 1995 + + + + + + Potomac Valley + + + + 52 + Annual Reports, 1969-1973 + + + + + Chapter of the Year + + + + 52 + + 1979-1982 + + + 3 folders + + + + + + 53 + + 1983-1987 + 1989 + + + 5 folders + + + + + + + 53 + Conference, 1970 "Innovations in Communications" + + + + + 53 + Constitution and Bylaws, 1967 and undated + + + + + 53 + Correspondence, 1960-1985 + + 2 folders + + + + + + 53 + Financial, 1970-1986 1991-1999 + + 5 folders + + + + + + 53 + Meeting Announcements, 1965-1984 + + 3 folders + + + + + + 53 + Membership, 1963-1975 + + + + + 53 + Minutes, 1979-1980 + + + + + 53 + Miscellanea, 1959-1979 + + + + + 53 + Newsletters, 1969-1986 + + 3 folders + + + + + + 53 + Officers, 1960-1970 + + + + + 53 + Press Releases, 1975-1980 + + + + + 53 + Seminar-Second East Coast Instant Information Seminar and Exhibits, 1977 + + + + + 53 + Workshop: Computer Controlled Photocomposition and Automatic Typesetting, 1970-1971 + + 2 folders + + + + + + 53 + General, 1983-1989 1992-1995 + + + + + + San Diego + + + + 53 + Meeting Announcements, 1961-1979 + + + + + 53 + General, 1961-1980 + + + + + + San Francisco + + + + 54 + Annual Reports, 1969-1978 + + + + + 54 + Constitution and Bylaws, 1961 + + + + + 54 + Correspondence, 1965-1980 + + + + + 54 + Financial, 1966-1985 1991-1996 + + 3 folders + + + + + + 54 + Meeting Announcements, 1961-1979 + + + + + 54 + Membership Directories, 1968-1974 + + + + + 54 + Officers, 1962-1981 + + + + + 54 + General, 1981-1987 1991-1993 1995 + + + + + + 54 + South Texas, 1963-1968 + + + + + Southern Ohio (SOASIS) + + + + 54 + Annual Reports, 1973-1984 + + 4 folders + + + + + + 54 + Award Information, 1977 and 1981 + + + + + 54 + Chapter of the Year, 1975-1983 + + 7 folders + + + + + + 54 + Constitution and Bylaws, 1963-1974 + + + + + 54 + Correspondence, 1962-1983 + + 4 folders + + + + + + 54 + Financial, 1966-1986 1991-1999 + + 4 folders + + + + + + 54 + Guidelines for Officers and Committees, 1981 + + + + + 54 + Meeting Announcements, 1967-1985 + + + + + 54 + Membership, 1980 + + + + + 54 + Minutes, 1964-1983 + + + + + 54 + Miscellanea, 1969-1970 + + + + + 55 + Newsletters, 1973-1984 + + 8 folders + + + + + + 55 + Officers, 1963-1982 + + + + + 55 + Press Releases, 1976-1978 + + + + + 55 + Seminar-The Impact of Human Cybernetics of Information Science, 1977 + + + + + 55 + Symposium-Information: A Resource for Professionals, 1967 + + + + + 55 + Tear Sheets, 1976-1980 + + + + + 55 + General, 1984-1993 1995 + + + + + + Southern U.S. + + + + 55 + Financial, 1991-1992 + + + + + 55 + General, 1976-1986 1989 1991 1992 + + 2 folders + + + + + + + Taipei + + + + 55 + Correspondence, 1981-1989 + + 2 folders + + + + + + 55 + Miscellaneous Publications + + 4 folders + + + + + + 55 + Financial, 1991-1993 1996 and 1998 + + 3 folders + + + + + + 55 + Seminar on Optical Disk System: Information Technology, 1988 + + 3 folders + + + + + + 55 + Volume of Translations of Selected Materials, 1987 + + + + + 55 + General, 1984-1995 + + 3 folders + + + +

    (also includes Taipei Area Student Chapter materials)

    +
    +
    +
    + + + Texas + + + + 55 + Annual Reports, 1974-1985 + + + + + 55 + Chapter of the Year, 1978-1979 + + + + + 55 + Constitution and Bylaws, 1974 + + + + + 55 + Correspondence, 1965-1981 + + 2 folders + + + + + + 55 + Financial, 1975-1986 1991-1998 + + 5 folders + + + + + + 55 + Meeting Notices, 1973-1985 + + + + + 55 + Minutes, 1978-1979 + + + + + 55 + Newsletters, 1975-1985 + + 2 folders + + + + + + 55 + Officers, 1974-1980 + + + + + 55 + General, 1984-1986 1988-1989 1991-1993 1995 + + + + + + 56 + United Kingdom, 1980 + + + + + Upstate New York + + + + 56 + Annual Reports, 1969-1978 + + + + + 56 + Calendar of Meetings, 1980-1982 + + + + + 56 + Correspondence, 1961-1982 + + 2 folders + + + + + + 56 + Financial Reports, 1966-1984 and 1991-1993 + + 2 folders + + + + + + 56 + Meeting Announcements, 1967-1985 + + + + + 56 + Membership, 1965-1979 + + + + + 56 + Minutes, 1963-1977 + + + + + 56 + Miscellanea, 1970-1977 + + + + + 56 + Newsletters, 1969 and 1982-1984 + + + + + 56 + Officers, 1963-1978 + + + + + 56 + General, 1981-1989 1992-1993 + + + + + + Western Canada + + + + 56 + Annual Meeting Programs, 1974-1980 + + + + + 56 + Annual Reports, 1971-1978 + + + + + 56 + Bylaws, 1976 + + + + + 56 + Correspondence, 1968-1981 + + 7 folders + + + + + + 56 + Financial, 1970-1983 1991-1996 and 1998 + + 5 folders + + + + + + 56 + Meeting Announcements, 1969-1981 + + + + + 56 + Membership, 1979 + + + + + 56 + Newsletters, 1968-1975 + + + + + 56 + Officers, 1979-1984 + + + + + 56 + Proceedings of Annual Meeting, 1971 1987 1989-1990 + + 4 folders + + + + + + 56 + Questionnaire, 1974 + + + + + 56 + General, 1981 1986 1988-1989 1992 1993 1995 1997 + + + + + + Wisconsin + + + + 56 + Annual Reports, 1977-1982 + + + + + 56 + Constitutions and Bylaws, 1973-1974 + + + + + 56 + Correspondence, 1973-1982 + + 3 folders + + + + + + 56 + Financial, 1973-1985 1991-1998 + + 5 folders + + + + + + 56 + Meeting Announcements, 1976-1982 + + + + + 56 + Minutes, 1973-1981 + + + + + 56 + Newsletters, 1980-1983 + + + + + 56 + Officers, 1974-1983 + + + + + 56 + General, 1980 1985-1986 1988 1992 1993 1995 1999 + + + + + + Student Chapters + + + + 56 + Atlanta, 1983 + + + + + 56 + C. W. Post University, 1976-1982 + + + + + 56 + California State University, Fullerton, 1976-1977 + + + + + 56 + Capitol Area (Catholic University), 1988-1989 + + + + + 56 + Case Western Reserve University, 1966-1978 + + + + + 56 + Central New York, 1976-1982 + + + + + 56 + Columbia University, 1964-1981 1988 + + + + + 56 + Drexel University, 1964-1983 1988 + + + + + 57 + East Texas State University, 1975-1983 + + + + + 57 + Emory University, 1977 + + + + + 57 + Florida State University, 1987-1988 + + + + + 57 + Indiana University, 1967-1971 1988-1989 + + + + + 57 + Kent State University, 1974-1984 + + + + + 57 + Long Island University, 1977-1978 1988 + + + + + 57 + Louisiana State University, 1975-1979 + + + + + 57 + Nashville University Center, 1970-1976 + + + + + 57 + National Capitol Area, 1967-1984 + + + + + 57 + New Jersey, 1983 + + + + + 57 + Northern Texas, 1981-1984 + + + + + 57 + Pratt Institute, 1970 + + + + + 57 + Queens College, 1976 + + + + + 57 + Rosary College, 1988-1989 + + + + + 57 + Rutgers University, 1964-1970 1988-1989 + + + + + 57 + St. John's University, 1971-1983 + + + + + 57 + San Jose State University, 1982-1983 + + + + + 57 + Simmons College, 1975-1985 + + + + + 57 + State University of New York at Albany, 1973-1984 + + + + + 57 + Syracuse University, 1976-1983 + + + + + 57 + Taipei Area, 1984-1985 1988-1989 + + 3 folders + + + + + + 57 + Texas Woman's University, 1981-1983 + + + + + 57 + UCLA, 1976-1983 1988 + + + + + 57 + University of Alberta, 1976-1980 + + + + + 57 + University of Arizona, 1976-1978 1990-1991 + + + + + 57 + University of Chicago, 1984 + + + + + 57 + University of Cincinnati, 1974-1975 + + + + + 57 + University of Dayton, 1968 + + + + + 57 + University of Denver, 1973-1982 + + + + + 57 + University of Hawaii, 1979-1982 + + + + + 57 + University of Illinois, 1977-1982 1988 + + + + + 57 + University of Louisville, 1977 + + + + + 57 + University of Michigan, 1973-1982 1988 + + + + + 57 + University of Minnesota, 1979-1982 + + + + + 57 + University of Mississippi, 1982 + + + + + 57 + University of Missouri, 1977 + + + + + 57 + University of Oklahoma, 1975-1986 + + + + + 57 + University of Oregon, 1977 + + + + + 57 + University of Pittsburgh, 1966-1978 + + + + + 57 + University of South Carolina, 1977 + + + + + 57 + University of Southern California, 1981-1982 + + + + + 57 + University of Southwestern Louisiana, 1976 + + + + + 57 + University of Tennessee, 1982-1984 + + + + + 57 + University of Texas, Austin, 1976-1977 + + + + + 57 + University of Wisconsin, Madison, 1976 1988-1989 + + + + + 57 + University of Wisconsin, Milwaukee, 1982-1984 1988 + + + + + 57 + Wayne State University, 1979 + + + + + 57 + Western Michigan University, 1978 + + + +
    +
    + + + SPECIAL INTEREST GROUPS + + +

    The SPECIAL INTEREST GROUPS series (13 linear feet) documents those professional societies within ASIS devoted to the special interests of a portion of the membership. Each group (or SIG) holds a franchise from the parent society and meets annually with ASIS. They also hold their own meetings at varying intervals. For information on the basic role of each Special Interest Group the researcher should consult the folder labeled "Profiles", in which there are brief descriptions of each SIG in existence at the time the list was created. The following are Special Interest Groups for which we have information. (As society and research trends shift over time, new SIGs begin and older SIGs are disbanded, so the researcher is urged to look beyond this list.)

    +

    + + List of some of the ASIS Special Interest Groups: + ACT--Advanced Communications Techniques + AH---Arts and Humanities + ALP--Automated Language Processing + AOF--Automated Office of the Future, in 1984 the name was changed to OIS + BC---Biological and Chemical Information Systems + BSS--Biological and Social Sciences + CAS--Computers and Society + CBE--Cost, Budgeting and Economics + CIS--Computer Information Services + CR---Classification Research + CRS--Computerized Retrieval Services see also SDI + ED---Education for Information Science + EEI--Energy and Environment Information + FIS--Foundations of Information Science + IAC--Information Analysis Center, name changes to IAE in 1978 + IAE--Information Analysis Evaluation, formerly IAC + IGP--Information Generation and Publication + III--International Information Issues + IP---Information Publishing + IRM--Information Resources Management + ISE--Information Services to Education + LAN--Library Automation Networks + LAW--Law and Information Technology + MED--Medical Information Systems + MGT--Management of Information Activities + NDB--Numeric Data Bases + NMR--Non-Print Media and Reprographics; see also SRT + NPM--Non-Print Media + PPI--Public-Private Interface + PUB--Publication + RIS--? + RT---Reprographic Technology + SDI--Selective Dissemination of Information, name changes to CRS in 1975 + SRT--Storage and Retrieval Technology, formerly NMR + TIS--Technology, Information and Society + UOI--User On-Line Interaction + WEP--Writing, Editing, Publishing + +

    +

    Researchers interested in SIG/ED should also examine the Education Committee files in the Committees series. In addition, the Awards series contain further information on the Doctoral Forum.

    +
    + + + 58 + Administration, 1981 1984 1986 1988 1991 + + + + + 58 + Advisory Committee, undated + + + + + 58 + Affiliate Membership, 1978 + + + + + 58 + Annual Business Meeting, 1967 1977-1978 1981-1985 + + 5 folders + + + + + + 58 + Annual Meeting, 1976-1980 + + 3 folders + + + +

    (includes combinations of contributed papers, evaluations, and pre-and post-conference procedures)

    +
    +
    + + + 58 + Applications, 1967 and undated + + + + + 58 + Bulletin, 1970-1971 + + + + + 58 + Bylaws (Model), 1969-1982 + + 3 folders + + + + + + 58 + Cabinet Councilor, 1976-1981 Annual Reports + + + + + 58 + Cabinet Director + + + + + 58 + Cabinet Director Elections, 1987 + + + + + Cabinet Meetings + + + + 58 + Agenda, 1960-1985 + + + + + 58 + Minutes, 1966-1985 1989-1995 + + 9 folders + + + + + + + 58 + Cabinet Members, 1966-1967 + + + + + 59 + Cabinet Reports, 1966-1967 + + + + + 59 + Cabinet Steering Committee, 1975-1995 + + 7 folders + + + + + + 59 + Checklist for Deadlines, undated, 1968 and 1982-1985 + + + + + 59 + Classification Research Annual Report, 1983-1984 + + + + + 59 + Conference, 1981 + + + + + Correspondence + + + + 59 + + 1965-1984 + 1986-1994 + + + 20 folders + + + + + + 60 + + 1995-1996 + 1997-1998 + 1999 + + + + + + + 60 + "The Essence of SIGs" by Robert S. Tannehill, Jr. + + + + + 60 + Dissolution Process, 1991 + + + + + Financial Information + + + + 60 + Budget Form, blank, 1986 + + + + + 60 + Budgets, 1981 1983-1984 1986 + + 3 folders + + + + + + 60 + Financial Policy, 1971-1975 + + + + + Financial Reports + + + + 60 + + 1966-1989 + + + 25 folders + + + + + + 61 + + 1990-1998 + + + 8 folders + + + + + + + 61 + Funding, 1968-1981 + + + + + 61 + General, 1992-1993 + + + + + + 61 + Formation, Merger and Dissolution of SIGs + + + + + 61 + Headquarters Bulletin, 1972 + + + + + 61 + Long Range Planning Report, 1978-1982 + + + + + 61 + Membership, 1966-1984 1991 1993 + + 3 folders + + + + + + 61 + Memo, 1970 1973-1985 + + 8 folders + + + + + + 62 + Mid-Year Meeting, 1980 + + + + + 62 + Motions, 1976-1981 + + + + + 62 + Newsletter, 1974-1976 1986-19891991 + + 5 folders + + + + + + Officers + + + + 62 + General, 1968-1986 + + 3 folders + + + + + + 62 + Job Descriptions, 1980 and undated + + + + + Manual + + + + 62 + Manual, 1967 1976 1979 + + 2 folders + + + + + + 62 + Correspondence, 1967 1976 1997 + + 3 folders + + + + + + + 62 + Roster Form, blank, 1988 + + + + + 62 + Rosters, 1970-1980 + + + + + Workshop + + + + 62 + Correspondence, 1969 + + + + + 62 + Correspondence and Minutes, 1969-1976 + + + + + + + 62 + Pathfinders, 1976-1978 + + + + + 62 + Procedures, 1973 and 1979 + + + + + 62 + Profiles, 1972-1982 and undated + + + + + Project and Reserve Fund + + + + Correspondence + + + + 62 + + 1971-1981 + + + 4 folders + + + + + + 63 + + 1983-1988 + 1991 + 1993-1995 + + + 5 folders + + + + + + + 63 + Electronic Mail System, undated + + + + + 63 + Feedback, 1971 + + + + + 63 + Financial Information, 1970-1974 + + + + + 63 + Grant Application Forms, blank, undated + + + + + 63 + Policies and Procedures, 1971-1976 + + + + + + 63 + Proto-SIG: "Computing Literature and Resource Management: A Directory," 1982 + + + + + 63 + Publications, 1967-1972 1984 1990 + + + + + 63 + Reports, 1966-1986 1994 + + 2 folders + + + + + + 63 + SIG/CON, 1977-1979 1983-1984 1988 1995 + + + + + 63 + SIG of the Year, 1977-1983 1990-1991 + + 6 folders + + + + + + 63 + SIG Publication of the Year, 1991 + + + + + 63 + Statement of Purpose, undated + + + + + 63 + Steering Committee, 1977-1981 + + + + + 63 + Study Group, 1975-1976 + + + + + 63 + Subject Index to SIGs and Meeting Planning Guide, 1993-1994 + + + + + 63 + Survey: "Manpower Requirements of Information Science," 1976-1978 + + + + + 63 + Task Force on SIGs (Ad Hoc), 1975-1976 [1981-1983 ?], 1987 + + 2 folders + + + + + + 63 + Tri Society Meeting (ACS, ASIS, and SLA) Progress Report, 1978-1984 + + + + + 63 + Wish List, 1989 + + + + + Individual SIGs + + + + 63 + Purpose, undated + + + + + 63 + ACT (Advanced Communications Techniques), 1978 + + + + + AH (Arts and Humanities) + + + + 63 + Correspondence, 1968-1983 + + 5 folders + + + + + + 63 + Newsletters, 1968-1983 + + + + + 63 + General, 1988-1995 + + 3 folders + + + + + + + ALP (Automated Language Processing) + + + + 64 + Correspondence, 1966-1985 + + 2 folders + + + + + + 64 + General, 1989 1993-1995 + + 2 folders + + + + + + 64 + Newsletters, 1967-1981 + + + + + + AOF (Automated Office of the Future) + + + + 64 + Correspondence, 1979-1983 + + 2 folders + + + + + + 64 + Newsletters, 1980-1985 + + + + + + BC (Biological and Chemical Information Systems) + + + + 64 + Correspondence, 1966-1984 + + 5 folders + + + + + + 64 + Newsletters, 1974-1984 + + 2 folders + + + + + + 64 + General, 1980-1993 + + 6 folders + + + + + + + BSS (Biological and Social Sciences) + + + + 64 + Constitution and Bylaws, 1967-1975 + + + + + 64 + Correspondence, 1966-1981 + + 6 folders + + + + + + 64 + Dissolution Survey, 1985 + + + + + 64 + Newsletters, 1967-1982 + + 2 folders + + + + + + 64 + General, 1988-1994 + + 3 folders + + + + + + + 65 + CAS (Computers and Society), 1969 + + + + + CBE (Cost, Budgeting and Economics) + + + + 65 + Correspondence, 1970-1979 + + 4 folders + + + + + + 65 + Minutes, 1970-1979 + + + + + 65 + Newsletters, 1971-1977 + + + + + + CIS (Community Information Services) + + + + 65 + Correspondence, 1976-1983 + + 2 folders + + + + + + 65 + Newsletters, 1977-1980 + + + + + + CR (Classification Research) + + + + 65 + Constitution and Bylaws, 1968-1974 + + + + + 65 + Correspondence, 1965-1984 + + 5 folders + + + + + + 65 + Newsletters, 1967-1985 1989 + + 3 folders + + + + + + 65 + Proposals, 1981 + + + + + 65 + Technical Publications, 1980 + + + + + 65 + Terminology Project, 1976-1978 + + + + + 65 + Workshop Proceedings, 1990 + + + + + 65 + General, 1989-1995 + + 2 folders + + + + + + + CRS (Computerized Retrieval Services) + + + + 65 + Correspondence, 1975-1985 1991-1994 + + 2 folders + + + + + + 65 + Newsletters, 1975-1984 + + + + + + ED (Education for Information Science) + + + + 65 + Business Meeting Minutes, 1976-1980 + + + + + 65 + Bylaws, 1973 and 1975 + + + + + 65 + Careers Brochure, 1978-1982 + + + + + 65 + Conference Proceedings of the Curriculum Committee on Education in Information Science, undated + + 2 folders + + + + + + Correspondence + + + + 65 + + 1966-1968 + 1970-1976 + + + 10 folders + + + + + + 66 + + 1977-1983 + 1988 + + + 11 folders + + + + + + + 66 + FID Seminars, 1975-1977 + + + + + 66 + Newsletters, 1966-1982 + + 2 folders + + + + + + 66 + Officers, 1972-1985 + + + + + Paper Awards + + + + 66 + Doctoral Forum, 1975-1985 + + 3 folders + + + + + + 66 + Students Papers, 1977-1978 + + + + + + 66 + Profile, 1977 + + + + + Publications + + + + 66 + "Directory of Computer Education and Research," 1974-1977 + + + + + 66 + "Directory of Information Science Programs," 1980 + + + + + + 66 + Questionnaires, 1975-1982 + + 2 folders + + + +

    (1982 questionnaire includes report on continuing education)

    +
    +
    + + + 66 + Reports of Activities, 1974-1982 + + + + + 66 + Technical Sessions, 1977-1978 + + 2 folders + + + +

    (includes mixture of correspondence and papers)

    +
    +
    + + + 66 + UNESCO Newsletters, 1977-1978 + + +

    (includes correspondence)

    +
    +
    + + + 66 + Undergraduate Education, 1971-1981 + + + + + 66 + General, 1989-1994 + + 2 folders + + + +
    + + + EEI (Energy and Environment Information) + + + + 66 + Correspondence, 1979-1986 + + 3 folders + + + + + + 66 + Newsletters, 1979-1983 + + + + + + FIS (Foundations of Information Science) + + + + 66 + Correspondence, 1972-1984 + + 4 folders + + + + + + 66 + Newsletters, 1974-1985 + + + + + 66 + Reports, 1973-1983 + + + + + 66 + Technical Publications, 1975 and 1979 + + + + + 66 + General, 1988-1990 1993-1995 + + 3 folders + + + + + + + HCI (Human/Computer Interaction) (was UOI) + + + + 66 + Correspondence, 1988-1989 + + + + + 66 + Newsletters, 1989 + + + + + 66 + General, 1991-1994 + + + + + + IAC (Information Analysis Center) + + + + 67 + Bylaws, undated + + + + + 67 + Correspondence, 1966-1986 + + 6 folders + + + + + + 67 + Newsletters, 1972-1985 + + + + + + IAE (Information Analysis and Evaluation) + + +

    (was IAC)

    +
    + + + 67 + General, 1988-1989 1992-1994 + + +
    + + + IGP (Information Generation and Publication) + + + + 67 + Correspondence, 1975-1983 + + 2 folders + + + + + + 67 + Newsletters, 1976-1982 + + + + + + III (International Information Issues) + + + + 67 + Annual Report, 1993 + + + + + 67 + Business Meetings, 1992 + + + + + 67 + Chairman's Files, 1987-1993 + + 7 folders + + + +

    (Primarily Michel Menou's files. Includes IRC, ARIST, OIS materials and others.)

    +
    +
    + + + 67 + Correspondence, 1976-1984 1988-1989 + + 3 folders + + + + + + 67 + Financial, 1992-1994 + + + + + 67 + Grant-Promotional Mailing, 1984 + + + + + 67 + Hospitality Suite, 1984 + + + + + 67 + Newsletters, 1982-1985 1992-1993 + + 2 folders + + + + + + 67 + Preconference, 1984 + + + + + 67 + Task Force, 1984 + + + + + 67 + Technical Program, 1984 + + + + + 68 + General, 1986-1995 + + 4 folders + + + +
    + + + 68 + IRM (Information Resources Management), 1980 + + + + + ISE (Information Services to Education) + + + + 68 + Correspondence, 1974-1985 + + 4 folders + + + + + + 68 + Newsletters, 1975-1985 + + + + + + LAN (Library Automation Networks) + + + + 68 + Activity Report, 1984 + + + + + Correspondence + + + + 68 + + 1966-1984 + + + 9 folders + + + + + + + 68 + "Joint Survey of Library Automation Activities," 1974-1977 + + + + + 68 + Newsletters, 1967-1985 1989 + + 3 folders + + + + + + 68 + Reports, "Library Computer Program Project", 1970-1975 + + + + + 68 + General, 1988-1995 + + + + + + LAW (Law and Information Technology) + + + + 68 + Correspondence, 1973-1984 + + 2 folders + + + + + + 68 + Newsletters, 1975-1984 + + + + + 68 + General, 1987-1989 + + + + + + MED (Medical Information Systems) + + + + 69 + Correspondence, 1979-1984 + + + + + 69 + Newsletters, 1980-1985 + + + + + 69 + General, 1986 1988-1989 1991-1995 + + 3 folders + + + + + + + MGT (Management of Information Activities) + + + + 69 + Correspondence, 1974-1987 + + 2 folders + + + + + + 69 + Newsletters, 1977-1985 + + + + + 69 + General, 1988-1990 1992-1995 + + 3 folders + + + + + + + MR (Medical Records) + + + + 69 + Correspondence, 1974-1978 + + 2 folders + + + + + + + NDB (Numeric Data Bases) + + + + 69 + Correspondence, 1975-1983 1991-1994 + + 4 folders + + + + + + 69 + Newsletters, 1976-1984 + + + + + 69 + Status Reports, 1978 + + + + + 69 + General, 1988 + + + + + + 69 + NMR (Non-Print Media and Reprographics), 1980-1982 + + + + + NPM (Non-Print Media) + + + + 69 + Correspondence, 1967-1981 + + 5 folders + + + + + + 69 + Newsletters, 1971-1981 + + + + + + 69 + OIS (Office Information Systems), 1988-1990 1992-1995 + + 3 folders + + + + + + 69 + PC (Personal Computers), 1988-1989 1991-1995 + + 2 folders + + + + + + PPI (Public-Private Interface) + + + + 69 + Correspondence, 1974-1983 + + 2 folders + + + + + + 69 + Dissolution Survey, 1983-1984 + + + + + 69 + Newsletters, 1975-1982 + + + + + + PUB (Publication) + + + + 69 + Correspondence, 1982-1985 + + + + + 69 + General, 1989-1994 + + 2 folders + + + + + + + 69 + RIS (?), 1984 + + + + + RT (Reprographic Technology) + + + + 69 + Correspondence, 1966-1976 + + + + + 69 + Newsletters, 1967-1975 + + + + + + SDI (Selective Dissemination of Information) + + + + 69 + Correspondence, 1968-1976 + + 3 folders + + + + + + 69 + Newsletters, 1969-1975 + + + + + 69 + Publications, 1970 + + + + + 69 + Survey of Current Systems for Selective Dissemination of Information, 1969 + + + + + + SRT (Storage and Retrieval Technology) + + + + 70 + Correspondence, 1991-1994 + + + + + 70 + General, 1982-1984 1988-1989 + + 2 folders + + + + + + + STI (Scientific and Technical Information) + + + + 70 + General, 1993-1994 + + + + + + TIS (Technology, Information and Society) + + + + 70 + Correspondence, 1971-1986 1992-1994 + + 2 folders + + + + + + 70 + Newsletters, 1972-1984 + + + + + + UOI (User On-Line Interaction) + + + + 70 + Correspondence, 1973-1984 1989 + + 3 folders + + + + + + 70 + Newsletters, 1973-1985 + + + + + + 70 + VIS (Visualization, Images, and Sound), 1994-1995 + + + + + 70 + WEP (Writing, Editing, Publishing), 1975-1978 + + +
    +
    + + + COMMITTEES + + +

    Within the COMMITTEES series (26 linear feet) will be found records of the meetings and activities of the many ASIS committees. ASIS has three types of committees: Council committees, standing committees and ad hoc committees. Council committees include Budget and Finance, also called Operations Finance, and the Executive Committee. Standing committees include Constitution and Bylaws, Standards, Intersociety Cooperation, etc. There are three levels of ad hoc committees: commissions, which are appointed to handle matters of great significance (e.g., Commission on Long Range Planning); temporary committees, which are appointed by the president of ASIS for one or two year terms to deal with a specific problem; and task forces or subcommittees appointed by the president or committee chairperson (e.g., Operations Planning Task Force). This series is arranged with general material on committees coming first, followed by files on individual committees, arranged alphabetically.

    +

    The researcher should note that separate series have been created to reflect the functions of the most vital committees (and related activities by paid staff at ASIS headquarters), namely the Awards Committee, also known as the Awards and Honors Committee (its corresponding series being the Awards series), the Budget and Finance Committee (Financial series), the Conferences and Meetings Committee (Annual Meetings series), the Membership Committee (Membership series), and the Publications Committee (Publications series).. These separate series focus mainly on administrative or day-to-day activities, while corresponding files within the Committees series deal with the functions of the committees. There is, however, considerable overlap between materials in these separate series and that found in the Committees series.

    +

    For the most part, significant changes to or differences in committee names have resulted in each of these similarly named committees being given a separate entry. (This does not include minor differences, such as "Committee on Bibliography" versus the "Bibliography Committee" and the like.)

    +

    The Liaison Committee materials include reports from those individuals who were appointed to serve on the committees of other organizations. The name was later changed to Committee on Inter-Society Cooperation. For further information on other organizations, the researcher should consult the Related Organizations and Subjects series.

    +

    Researchers interested in Education should consult the Special Interest Groups series as well as well as the Committees series.

    +
    + + + Administrative Information + + + + 71 + Administrative Correspondence, 1985-1986 1987 + + 2 folders + + + + + + 71 + Advisory Board, 1963 and 1979 and undated + + + + + 71 + Committee Appointments, 1975 1987-1988 + + + + + 71 + Committee Structure, 1971 and undated + + + + + 71 + Committee-Administration correspondence, 1985-1986 + + + + + 71 + Forms: Motion forms, undated + + + + + 71 + General (Committee Chairs), 1963-1985 1990 [1993-1994] + + 13 folders + + + + + + 71 + Handbook for Committee Chairs, 1976 1984 1987-1988 1992-1993 + + 3 folders + + + + + + + Individual Committees + + +

    (correspondence frequently includes attachments such as reports)

    +
    + + + Ad Hoc Committees + + +

    (see also individual committees entries)

    +
    + + + 71 + General, 1965-1967 + + + + + 71 + Copyright Committee, 1966 + + + + + 71 + Steering (Orientation) Committee, undated + + +
    + + + 71 + American Revolution Bicentennial Committee, 1972-1976 + + + + + 71 + Auxiliary Publications, Committee on, 1962-1963 + + +

    (see also Publications Committee and Publications series)

    +
    +
    + + + Awards and Honors Committee + + +

    (see also Awards series)

    +
    + + + 71 + Charges and Motions, 1975-1981 + + + + + 71 + Correspondence, 1964-1986 + + 6 folders + + + +

    (includes reports and other attachments)

    +
    +
    + + + 71 + Guidelines, 1970-1979 and 1982 + + + + + 71 + Guidelines for Awards Presentation, 1979 and 1983 + + + + + 71 + List of Awards Presented, 1972-1974 and 1979 + + + + + 71 + Members, 1983 + + + + + 71 + Reports, 1965-1986 + + +
    + + + 71 + Bibliography Committee, 1962-1965 + + +

    (also called Committee on Bibliography)

    +
    +
    + + + Budget and Finance Committee + + + + 71 + Annual and Mid-Meeting Income and Expense Statements, 1970-1980 + + + + + Correspondence and Memoranda + + +

    (includes other materials)

    +
    + + + 71 + + 1964-1978 + + + 6 folders + + + + + + 72 + + 1979-1986 + + + 4 folders + + + + + + 72 + + 1993-1994 + + + 8 folders + + + +
    + + + 72 + Financial Information, 1961-1963 1970-1981 + + 5 folders + + + + + + 72 + Minutes, 1968-1981 + + 4 folders + + + + + + 72 + Miscellanea, 1981 and undated + + 2 folders + + + +
    + + + 72 + Careers Task Force, 1976-1977 + + + + + Chapter Assembly + + + + 72 + Correspondence, 1961-1969 + + 3 folders + + + + + + 72 + Minutes and Reports, 1963-1969 and 1979 + + 2 folders + + + + + + 72 + Organization, 1973-1974 + + + + + + 72 + Chapter Assembly Organization, Ad Hoc Committee on, 1973-1974 + + + + + 72 + Chapter Fund Management Committee, 1975 + + + + + Committee on Committees + + + + 72 + Bylaws, undated + + + + + 72 + Charge, undated + + + + + 72 + Committee Appointments, 1976 and 1979 + + + + + 72 + Correspondence, 1973-1976 1981 + + 5 folders + + + + + + 72 + Expenses, 1977 + + + + + 72 + Handbook for Committees, 1976 + + + + + 72 + Minutes, 1974-1976 + + 3 folders + + + + + + 73 + Reports from Other Committees, 1974-1976 + + 2 folders + + + + + + + 73 + Committees, Task Force on, 1988 and undated + + +

    (same as Task Force to Examine Committees?)

    +
    +
    + + + Conferences and Meetings Committee + + + + 73 + Annual Reports, 1974-1982 + + + + + 73 + Articles, 1989 + + + + + 73 + Budgets, 1969-1977 + + + + + 73 + Correspondence, 1967-1987 and 1994 + + 11 folders + + + + + + 73 + Handbook, 1978 + + + + + 73 + Meeting Management Manual, undated + + + + + 73 + Meeting Notes, 1989-1990 + + +

    (Peter Solomon's?)

    +
    +
    + + + 73 + Mid-year Meeting: minutes, handouts, and notes, 1993-1994 + + + + + 73 + Minutes, 1967-1986 1988-1992 + + 11 folders + + + +

    (1980s and 1990s include notes [Peter Solomon's?], correspondence, and agenda)

    +
    +
    + + + 73 + Motions, 1978-1981 + + + + + 73 + Press Releases and Articles, 1970 and 1980-1984 + + + + + 73 + Questionnaires, 1971 + + + + + 73 + Reports, 1982-1983 1985-1986 + + + + + 74 + Responsibilities and Schedules, 1971-1980 + + + + + 74 + Roster, 1976-1984 + + + + + 74 + Site Selection, 1987 + + + + + 74 + Telephone Call Record, 1970-1975 + + + + + 74 + Themes and Meeting Sites, 1963-1982 + + + + + General + + + + 74 + 1984-1990 and 1994 + + 8 folders + + + + +
    + + + Constitution and Bylaws Committee + + + + 74 + Annual Reports, 1963-1983 + + 2 folders + + + + + + 74 + Constitution and Bylaws, 1970-1976 1984 and undated + + 2 folders + + + + + + 74 + Constitution Revisions, 1956 and 1968-1979 + + + + + 74 + Correspondence and Memoranda, 1961-1962 1966-1987 + + 12 folders + + + +

    (years 1961-1962 Karl Heumann materials; includes numerous attachments)

    +
    +
    + + + 74 + Minutes, 1981-1982 + + +

    (and agenda and related)

    +
    +
    + + + 75 + Presidency, 1976-1977 + + + + + 75 + Reports, 1973-1985 + + 4 folders + + + + + + 75 + Roster, 1980-1982 + + + + + 75 + Miscellanea, 1975-1980 + + +
    + + + 75 + Contracts and Grants Committee, 1972 + + + + + 75 + Coordinate, Review and Analyze Products and Services, Task Force Group to, 1981 + + + + + 75 + Council Secretariat, 1969 + + + + + Distinguished Lecturer Committee + + + + 75 + Correspondence, 1968-1972 + + 3 folders + + + + + + 75 + Miscellanea, 1969-1971 + + +

    (includes minutes and series schedule)

    +
    +
    +
    + + + 75 + Editorial Board, 1967-1969 + + + + + Education Committee + + +

    (Subcommittee on Continuing Education frequently referred to as a committee rather than a subcommittee)

    +
    + + + 76 + Accreditation Project with DOE, 1984-1985 + + + + + 76 + Bylaws, undated + + + + + 76 + Charge, 1976-1982 + + + + + 76 + Chair's Task Folder, 1984-1985 + + + + + 76 + Correspondence and Memoranda, 1964-1988 + + 19 folders + + + +

    (includes notes and attachments such as reports and agendas, esp. 1980s files)

    +
    +
    + + + Education and Training Study + + + + 76 + Correspondence, 1966-1967 + + + + + 76 + Proposals, 1966 and undated + + + + + + 76 + Educational Assistance Center, 1971 + + + + + 76 + Educational Communication Center, 1971 + + + + + 76 + Educational Objectives, 1991 + + + + + 76 + Evaluation, 1985 + + + + + 76 + Financial, 1981-1984 + + + + + 77 + Guidelines for Submitting Proposals, 1976 + + + + + 77 + Institute for Training in Librarianship, 1975 + + + + + 77 + Meetings, 1986-1987 + + + + + 77 + Members, 1984-1985 + + + + + 77 + Mid-Year Meeting, 1988-1989 + + + + + 77 + Motions, 1983-1984 + + + + + 77 + Outstanding Information Science Teacher Award, 1982 and undated + + + + + 77 + Reports, 1966-1984 and undated + + 8 folders + + + + + + 77 + Rosters, 1975-1984 + + + + + 77 + Rural Information Services, 1984 + + + + + 77 + Student Paper Contest, 1971-1974 + + + + + Subcommittee on Accreditation and Certification + + + + 77 + Correspondence, 1970-1981 + + + + + 77 + Press Releases and Articles, 1967-1982 + + + + + 77 + Reports, 1970-1972 + + + + + 77 + Standards, 1971 + + + + + 77 + Standards Revision, 1971-1972 + + + + + 77 + Statements, 1970 + + + + + + Subcommittee on Continuing Education + + + + 77 + Brochures, 1980-1981 and undated + + + + + 77 + Budgets for Workshops, 1980 and undated + + + + + 77 + Correspondence, 1966-1980 1982 1984-1986 1989 + + 7 folders + + + + + + 77 + Directory of Educational Programs, 1971-1972 + + + + + Evaluations + + + + 77 + Annual meeting, 1988 + + + + + 77 + Blank forms, 1982 + + + + + + 77 + Mid-Year Meeting, 1994 + + + + + 78 + Minutes, 1973 + + 5 folders + + + + + + 78 + Policy and Procedure Statements, 1980-1982 and undated + + + + + 78 + Press Releases, 1969-1974 and 1984 + + + + + 78 (cont.) + Proceedings of Symposium for Educators, 1971 + + + + + 78 (cont.) + Proposals, 1973-1981 1983-1990 + + 10 folders + + + +

    (includes proposal reviews and some course evaluations; year 1988 marked "evaluated")

    +
    +
    + + + 78 (cont.) + Reports, 1972-1976 1983-1985 + + + + + 78 (cont.) + "Role of Continuing Education in ASIS," 1984-1985 + + + + + 78 (cont.) + Rosters, 1988 + + + + + 78 (cont.) + SIG/Education for Information Science, 1969-1974 + + + + + 78 (cont.) + Tear Sheets and Xeroxed Articles, 1976 and 1980 + + + + + 78 (cont.) + Telephone conversation record, 1974 + + + + + 78 (cont.) + Workshops and Conferences, 1974 and 1980 + + + + + 78 (cont.) + Miscellanea, 1969-1983 + + +
    + + + 78 (cont.) + Subcommittee on Formal Academic Programs in Information Science, 1975-1976 + + + + + 78 (cont.) + Subcommittee on Policy, 1985 + + +

    (relates to Continuing Education program)

    +
    +
    + + + 78 (cont.) + Telephone conversation record, 1975-1980 + + + + + 78 (cont.) + Workshops by Other Organizations, 1970 and 1978-1979 + + + + + 78 (cont.) + Workshop Proposals, 1971-1980 and 1984 + + + + + 78 (cont.) + Miscellanea, undated + + +
    + + + Education and Training Committee + + + + 78 (cont.) + Correspondence, 1964 + + + + + 78 (cont.) + General, 1961-1964 + + 3 folders + + + + + + + 78 (cont.) + Ethics Committee, 1959-1971 + + + + + 78 (cont.) + Examine Committees, Task Force to, undated + + + + + Executive Committee + + + + 79 + Budgets, 1975-1977 + + + + + 79 + Correspondence, 1968 and 1970-1980 + + 5 folders + + + + + + 79 + Minutes, 1970-1979 + + 9 folders + + + + + + 79 + Miscellanea, 1973-1974 + + + + + + 79 + Foreign Relations Committee, 1955-1964 + + +

    (see also International Relations Committee)

    +
    +
    + + + 79 + Future of ADI, Committee on, 1959-1962 + + + + + Future of Information Science, Ad Hoc Committee on + + + + 79 + Correspondence, 1978-1980 + + 2 folders + + + + + + 79 + Reports, 1979-1980 + + + + + + Gifts and Contributions Committee + + + + 79 + Brochures, 1978 + + + + + 79 + Contributors, 1976-1977 + + + + + 79 + Correspondence, 1976-1979 + + + + + 79 + Miscellanea, 1977 + + + + + 79 + Reports, 1977-1978 + + + + + 79 + Solicitation Program, 1976-1977 and undated + + + + + + 79 + Government Relations Committee, 1965-1966 + + + + + 79 + Guidelines for ASIS Handbooks Committee, 1978 + + + + + 79 + Information Retrieval Technology, Committee on, 1962 + + + + + 79 (cont.) + Information Science and Technology Data Base Committee, 1980 + + + + + 79 (cont.) + Innovative Events Committee, 1972 + + + + + 79 (cont.) + Interface Committee, 1980 + + + + + Inter-Society Cooperation, Committee on (CISCO) + + + + 79 (cont.) + Charge, 1977-1981 + + + + + Correspondence + + + + 79 (cont.) + + 1965-1976 + + + 4 folders + + + + + + 80 + + 1977-1987 + + + 9 folders + + + + + + + 80 + Guidelines, 1971-1979 + + + + + 80 + "Information Science Organizations: A Brief Description of the ... ASIS Affiliated Organizations," 1977 + + + + + 80 + Liaison Organizations, 1973-1974 and 1981-1982 + + + + + 80 + Liaison Representatives, 1973-1985 + + + + + 80 + Logo, 1976 + + + + + 80 + Minutes, 1984 + + + + + 80 + Policy Statement, 1973 + + + + + 80 + Procedures, 1984 + + + + + 80 + Reports, 1965-1985 and 1987 + + 3 folders + + + + + + 80 + Responsibilities of Liaison Representatives, 1974 and undated + + + + + 80 + Tear Sheets, 1974-1976 + + + + + 80 + Miscellanea, 1981 and undated + + + + + + 80 + International Information Program Task Force, 1981 + + + + + International Relations Committee + + +

    (see also Foreign Relations Committee)

    +
    + + + 80 + Abstract, 1985 + + + + + 80 + Charge, 1981 + + + + + 80 + Correspondence, 1970-1989 + + 10 folders + + + + + + 80 + Discussion Papers, 1973-1974 + + + + + 80 + FID and Other International Organizations, 1980-1981 + + + + + 80 + Issues, 1981 + + + + + 80 + Members, 1972 1980-1984 and ca. 1985 + + + + + 80 + Minutes and Reports, 1971-1978 1980-1987 and 1990 + + 3 folders + + + + + + 80 + Motions, 1980-1981 1985 and 1990 + + + + + 80 + Proposals, 1981 + + + + + 80 + Purpose, 1974-1976 + + + + + 80 + Tear Sheets, 1976 and 1980 + + + + + 80 + Miscellanea, 1971-1981 + + +
    + + + 80 + Leadership Development Committee, 1994-1995 + + 2 folders + + + + + + 80 + Legislative Committee, 1966 + + + + + Liaison Committee + + + + 81 + Correspondence, 1965-1974 1979 1983-1988 + + 12 folders + + + + + + 81 + Guidelines, 1966-1974 + + + + + 81 + "Information for Liaison Representatives of ADI," 1966 + + + + + 81 + Reports, 1963-1973 + + 2 folders + + + + + + 81 + Representatives, 1965-1972 + + + + + 81 + Miscellanea, 1966-1967 + + + + + Individual Liaisons + + + + 81 + ASLIB (formerly Association of Special Libraries and Information Bureaux), 1974 + + + + + American Association for the Advancement of Science (AAAS) + + + + 81 + Correspondence, 1962-1975 and 1984-1989 + + 4 folders + + + + + + 81 + Directory, 1968 1970 and 1987 + + + + + 81 + Section T, 1985-1988 + + + + + 81 + Miscellanea, 1974 + + + + + + 81 + American Association of Law Libraries (AALL), 1968-1974 + + + + + 81 + American Association of Medical Record Librarians, 1968-1969 + + + + + 81 + American Chemical Society, 1967-1973 + + + + + 81 + American Council of Learned Societies (ACLS), 1967-1973 + + + + + American Federation of Information Processing Societies (AFIPS) + + + + 81 + Awards Committee, 1966-1971 and 1986-1987 + + + + + 81 + Committee on Abstracts, 1966-1969 + + + + + 81 + Committee on Social Implications, 1966-1970 + + + + + 81 + Constitution and Bylaws, 1961 1965 and 1968 + + + + + 81 + Correspondence, 1963-1976 and 1982-1988 + + 8 folders + + + + + + 81 + Education Committee, 1965-1973 and 1984 + + 2 folders + + + + + + 81 + General, 1985-1987 + + + + + 82 + Headquarters Newsletters, 1973 + + + + + 82 + Information Dissemination Committee, 1967-1973 + + + + + 82 + Information Processing Personnel Survey, 1968 + + + + + 82 + Officers and New Members, 1965-1966 + + + + + 82 + Press Releases and Advertising, 1967-1969 and 1985-1987 + + + + + 82 + Reports, 1965-1966 1970 1972 and 1988 + + + + + 82 + Technology in Education + + + + + + 82 + American Institute of Chemical Engineers (AICE), 1965 1968-1973 + + + + + American Library Association (ALA) + + + + 82 + Ad Hoc Joint Committee on National Library Information Systems (CONLIS), 1966-1969 + + + + + 82 + Annual Reports, 1965 and 1971-1972 + + + + + 82 + Conference on Inter-Library Communications and Information Networks, 1969 + + + + + 82 + Conferences, 1969 + + + + + 82 + Correspondence, 1964-1975 + + + + + 82 + Information Science and Automation Division (ISAD), 1969 1973-1974 and undated + + + + + + American Library Association (ALA) + + + + 82 + Invitation List, 1969 + + + + + 82 + New York World's Fair Advisory Committee, 1963-1965 + + + + + + 82 + American Mathematical Society, 1967 + + + + + American Medical Record Association (AMRA) + + + + 82 + Correspondence, 1970-1973 + + + + + 82 + Fact Sheets and Brochures, 1967-1972 + + + + + 82 + Handbook, 1972 + + + + + 82 + Membership Roster, 1972 + + + + + + American National Standards Institute (ANSI) + + + + 82 + PH-5, 1969-1971 + + + + + 82 + X-3 on Computers and Information Processing, 1966-1973 + + + + + 82 + Z-39, 1965-1974 + + 2 folders + + + + + + 82 + Z-85, 1970 + + + + + + 82 + American Society for Cybernetics, 1971-1972 + + + + + 82 + American Society for Engineering Education (ASEE), 1968-1971 + + + + + 82 + American Society of Indexers (ASI), 1971-1976 + + + + + 82 + American Society of Scientific and Engineering Translators (ASSET), 1966-1968 + + + + + 82 + Association for Computational Linguistics, 1964-1974 + + + + + Association for Computing Machinery (ACM) + + + + 82 + Special Interest Group on Information Retrieval, 1967-1973 + + + + + 82 + Special Interest Committee on Language Analysis and Studies in the Humanities (SICLASH), 1968-1971 + + + + + 82 + General, ca. 1988 + + + + + + 82 + Association for Educational Communications and Technology (AECT), 1973-1975 + + + + + 82 + Association for Health Records (AHR), 1970-1973 + + + + + 82 + Association for Library and Information Science Education (ALISE), 1983-1988 + + + + + 82 + Association for Systems Management (ASM), 1972-1973 + + + + + 82 + Association Internationale des Documentalistes (AID), 1967 + + + + + 82 + Association of American Library Schools (AALS), 1973-1974 + + + + + 82 + Association of College and Research Libraries (ACRL), 1989 + + + + + 82 + Association of Data Processing Service Organizations (ADAPSO), 1982 + + + + + 82 + Association of Earth Science Editors (AESE), 1972-1976 + + + + + 82 + Association of Population/Family Planning Libraries and Information Centers, 1974 + + + + + 82 + Association of Research Libraries (ARL), 1971-1973 + + + + + 82 + Association of Scientific Information Dissemination Centers (ASIDIC), 1971-1974 + + + + + 82 + Canadian Association for Information Science (CAIS), 1974-1975 + + + + + 82 + Committee for the Future, 1976 + + + + + 82 + Committee on National Library Information Systems (CONLIS), 1966-1968 + + + + + 82 + Computers and the Humanities Advisory Council, 1969-1974 + + + + + 82 + Conference on Population and Housing Census Users (CPHCU), 1966-1967 + + + + + 82 + Council of Biology Editors (CBE), 1969-1974 + + + + + 82 + Council of Communication Societies, 1965-1971 + + 2 folders + + + + + + Council of National Library Associations (CNLA) + + + + 82 + Correspondence, 1965-1970 + + 2 folders + + + + + + 82 + Minutes and Agenda, 1968-1969 + + + + + + 82 + Documentation Abstracts, Inc., 1972 + + +

    (later name Information Science Abstracts, see also)

    +
    +
    + + + 82 + Drug Information Association (DIA), 1966-1973 + + + + + 82 + Educom, 1966-1967 + + + + + 82 + Egyptian Society for Information Technology, 1980-1982 + + + + + 82 + European Association of Scientific Information Dissemination Centers (EUSIDIC), 1971-1972 + + + + + 82 + Fall Joint Computer Conference, 1965-1969 + + + + + 83 + Federal Government Micrographics Council (FGMC), 1976 + + + + + Federal Library Committee + + + + 83 + Correspondence, 1970-1973 + + + + + 83 + Minutes and Reports, 1971-1972 + + + + + + 83 + Geoscience Information Society (GIS), 1971-1974 + + + + + 83 + Health Science Communications Association (HeSCA), 1972-1974 + + + + + 83 + Information Industry Association (IIA), 1972-1973 + + + + + 83 + Information Science Abstracts (ISA), 1971-1974 + + +

    (earlier name Documentation Abstracts, see also)

    +
    +
    + + + 83 + Institute of Information Science (IIS), 1980-1981 + + + + + 83 + Institute of Management Sciences (TIMS), 1972-1974 + + + + + 83 + International Association of Documentalists and Information Officers (AID), 1967 + + + + + 83 + International Communications Association (ICA), 1972-1974 + + + + + International Federation for Documentation (FID) + + + + 83 + Catalogue, 1968-1969 + + + + + 83 + Correspondence, 1965-1973 + + + + + 83 + Reports, 1967-1968 + + + + + 83 + Yearbooks, 1967-1970 + + + + + + 83 + International Federation for Information Processing (IFIP), 1968 + + + + + 83 + Israel Society of Special Libraries and Information Centers, 1968 + + + + + 83 + Japan Association of Agricultural Librarians and Documentalists, 1967 + + + + + 83 + Japan Documentation Society, 1969 + + + + + 83 + Joint Council on Educational Telecommunications (JCET), 1969-1971 + + + + + 83 + Librarians' Automation Group (New South Wales), 1968 + + + + + 83 + Library Automated Systems Information Exchange, 1970 + + + + + 83 + Library Automation Research and Consulting (LARC), 1971-1973 + + + + + 83 + Library of Congress Task Force on Automation, 1968-1971 + + + + + 83 + Medical Library Association (MLA), 1967-1975 + + + + + 83 + Miscellanea, 1971-1972 + + + + + 83 + Modern Language Association, 1966-1967 + + + + + 83 + Music Library Association, 1966-1973 + + + + + 83 + National Book Committee, Inc., 1969-1970 + + + + + 83 + National Computer Conference, 1975 + + + + + 83 + National Engineering Information Conference, 1969 + + + + + 83 + National Federation of Science Abstracting and Indexing Services (NFSAIS), 1967-1971 + + + + + 83 + National Microfilm Association (NMA), 1963-1974 + + + + + 83 + National Translations Center, 1968-1973 + + + + + 83 + Office of Critical Tables, 1966-1970 + + + + + 83 + Society for Information Display, 1967-1973 + + + + + 83 + Society for Technical Communication (STC), 1964-1976 + + + + + 83 + Society of American Archivists (SAA), 1973 + + + + + 83 + Society of Technical Writers and Publishers (STWP), 1966-1971 + + + + + Special Libraries Association + + + + 83 + Correspondence, 1965-1973 + + 3 folders + + + + + + Meetings + + + + 83 + Montreal and Detroit, 1969-1970 + + + + + 83 + Toronto, 1973-1974 + + + + + 83 + Chicago, 1974-1975 + + + + + 83 + Denver, 1975-1976 + + + + + 83 + New York, 1977 + + + + + 83 + Kansas City, 1977 + + + + + 83 + Detroit, 1982 + + + + + + + 83 + Speech Association of America, 1967-1969 + + + + + 83 + Task Force on Automation and Cooperation (TFAC), 1968-1972 + + + + + 83 + UNESCO-ICSU Central Committee to Study the Feasibility of a World Science Information System (UNISIST), 1970 + + + + + 83 + United States Book Exchange, 1964-1977 + + + + + United States National Committee International Federation for Documentation (USNCFID) + + + + 84 + Correspondence, 1964-1974 + + 5 folders + + + + + + 84 + Members, 1966-1969 + + + + + 84 + Minutes and Reports, 1964-1973 + + + + + 84 + Programs, 1966-1973 + + + + + + Universal Circulation System (UNICIRC) + + + + 84 + Correspondence, 1971-1975 + + + + + 84 + Exhibition Materials, 1972 + + + + + 84 + Press Releases, 1972 + + + + + 84 + Telephone Call Record, 1971-1972 + + + + + + 84 + Urban Regional Information Systems Association (URISA), 1971 + + + + + 84 + World Simulation Organization, 1972-1975 + + +
    +
    + + + Long Range Planning, Commission on + + + + 84 + Charge and Organization, 1968 and 1974 + + + + + 84 + Correspondence, 1967-1976 and 1989 + + 11 folders + + + + + + 84 + Members, 1974 + + + + + 84 + Minutes, 1974-1975 + + + + + 84 + Mission and Goals, 1973-1975 and undated + + + + + 84 + Press Releases and Tear Sheets, 1974-1975 and 1989 + + + + + 84 + Reports, 1971-1975 and 1988-1989 + + 2 folders + + + + + + + Marketing Committee + + + + 84 + Charge, 1981-1984 + + + + + 84 + Correspondence, 1979-1984 and undated + + + + + 84 + Membership, 1983-1984 + + + + + 84 + Placement Services Questionnaire Results, undated + + + + + 84 + Plan and Budget, 1980 1982 and 1986 + + + + + 84 + Reports, 1979-1987 + + + + + Survey Reports + + + + 84 + Preliminary, undated + + + + + 84 + + 1979-1980 + + + + + + + 84 + Telephone Conversation Record, 1980 + + + + + 84 + Miscellanea, 1979-1984 + + + + + + Membership Committee + + + + 85 + Agenda, 1981-1984 + + + + + 85 + Annual Reports, 1975-1983 + + + + + Career Brochures + + + + 85 + Correspondence, 1964-1983 + + 2 folders + + + + + + 85 + Examples, 1977-1979 + + + + + + 85 + Charge, 1981 + + + + + 85 + Correspondence, 1961-1962 1964-1986 and undated + + 15 folders + + + + + + 85 + Focus Group, 1989 + + + + + 85 + Manual, 1979 + + + + + 85 + Membership Reports, 1969-1979 1981-1992 and 1995 + + 6 folders + + + +

    (reports on ASIS membership statistics

    +
    +
    + + + 85 + Membership Services, 1974-1981 + + + + + 85 + Minutes, 1968-1984 + + 3 folders + + + + + + 85 + Motions, 1981 and undated + + + + + 85 + Papers Regarding Membership, 1971-1981 + + + + + 85 + Plans, 1975-1980 + + + + + 86 + Reports, 1966-1981 1984 1986-1988 1991-1992 and 1994 + + 6 folders + + + +

    (general reports on committee activities)

    +
    +
    + + + 86 + Roster, 1970-1983 + + + + + 86 + Student Membership, 1965-1968 + + + + + 86 + Surveys and Questionnaires, 1980-1981 and undated + + + + + 86 + Tear Sheets and Press Releases, 1974-1981 + + + + + 86 + Telephone Conversation Record, 1974 + + + + + 86 + Miscellanea, 1994 and undated + + +
    + + + 86 + National Convention Committee, 1969 + + + + + Networking Committee + + +

    (disbanded in 1986 per original folder label)

    +
    + + + 86 + Action Plan, 1980 + + + + + 86 + Charge, 1981-1982 + + + + + 86 + Correspondence, 1971-1985 + + 3 folders + + + + + + 86 + Membership, 1979-1984 + + + + + 86 + Minutes, 1975-1980 + + + + + 86 + Miscellanea, 1972-1984 + + + + + 86 + "Network Planning Paper," 1978 + + + + + 86 + Papers, 1966 and 1979-1981 + + + + + 86 + Press Releases and Tear Sheets, 1979-1982 + + + + + 86 + Reports, 1974-1984 + + +
    + + + Nominations Committee + + + + 86 + Bylaws, undated + + + + + 86 + Candidate Biography and Position Statements, A-Z, undated + + 4 folders + + + + + + 86 + Candidates for ASIS Office (Successful and Unsuccessful), 1964-1975 + + + + + 86 + Charge, 1981 + + + + + 86 + Correspondence, 1965-1982 + + 10 folders + + + + + + 86 + Handbook, 1979 + + + + + 86 + Reports, 1964-1984 + + + + + Tellers Committee + + + + 86 + Correspondence, 1961 + + + + + 86 + Reports, 1965-1976 + + + + + + 86 + Miscellanea, 1968-1981 + + + + + + Operations Planning Task Force (OPTF) + + + + 87 + Correspondence, 1976-1980 + + + + + 87 + Motions, 1978 + + + + + Report + + + + 87 + Drafts, April -June 1978 + + 3 folders + + + + + + 87 + Final, October 1978 + + + + + + 87 + Survey of ASIS Membership Activities, 1978 + + 3 folders + + + + + + 87 + Survey to Evaluate Products, Services and Activities, 1977-1978 + + 4 folders + + + + + + 87 + Survey to Evaluate Units and Their Functions, 1977 + + 4 folders + + + + + + + Organization of Information, Committee on (COI) + + + + 87 + Miscellanea, 1961-1964 + + + + + 87 + Reports, 1961-1965 + + + + + + Organizational Structure, Task Force on + + + + 87 + Committee Charges, 1979 + + + + + 87 + Committee Reports, 1979 + + + + + 87 + Correspondence, 1979-1980 + + + + + 87 + Miscellanea, 1979 and undated + + + + + 87 + Report on Committees' Roles and Functions, undated + + + + + + Placement Service Committee + + + + 87 + Annual Reports and Minutes, 1981 and undated + + + + + 87 + Bibliography and Lecture, undated + + + + + 87 + Brochures, undated, 1976 and 1981 + + + + + 87 + Correspondence, 1962-1981 1983-1984 + + 10 folders + + + + + + 88 + Forms, 1968 + + + + + 88 + Instructions, 1966-1976 + + + + + 88 + Job Listings, 1976 + + + + + 88 + Manual: Placement Service Reference Manual, 1979 + + + + + 88 + Members, 1967 + + + + + 88 + Notes, 1973 and undated + + + + + 88 + Plans for Placement Service, 1973 and undated + + + + + 88 + Questionnaires, 1978 ca. 1979 and undated + + 2 folders + + + + + + 88 + Registration, 1965-1967 + + + + + 88 + Resumes, 1968 1971-1972 + + 3 folders + + + + + + 88 + Statistics, 1962-1973 + + + + + 88 + Miscellanea, 1970-1981 + + + + + + Planning Committee + + +

    (see also Long-Range Planning Committee)

    +
    + + + 88 + Correspondence, 1985 + + + + + 88 + Notes, 1989 + + +

    (Peter Solomon's?)

    +
    +
    + + + 88 + Questionnaire, 1988 + + + + + 88 + Reference Materials, 1981-1986 + + + + + 88 + General, 1990 + + +
    + + + 88 + Products and Services Task Force, 1978-1980 + + + + + Professional Enhancement Committee + + + + 88 + Brochure, 1973-1975 + + + + + 88 + Charge, 1981 + + + + + 88 + Correspondence, 1970-1977 + + 2 folders + + + + + + 88 + Membership, 1972-1976 + + + + + 88 + Miscellanea, 1970 + + + + + 88 + Papers, 1974-1976 + + + + + 88 + Reports, 1972-1976 + + + + + Survey, 1973 + + + + 88 + Miscellanea + + + + + Questionnaire + + + + 88 + Academic + + + + + 88 + Information and Computer Center Managers + + + + + 88 + Information Systems and Computer Specialists + + + + + 88 + Librarians + + + + + 88 + Managers and Administrators + + + + + 88 + Students + + + + + 88 + Unemployed + + + + + 88 + Unknown + + + + + + 88 + Results + + + + + + 88 + Tear Sheets and Press Results, 1972-1976 + + + + + 88 + Telephone Call Record, 1972-1975 + + + + + + Professional Leadership Committee + + +

    (also or later called "Professional Leadership and Development Programs Committee" and "Professional Leadership Development Program")

    +
    + + + 88 + Agreement, 1981 + + + + + 88 + Annual Meeting, 1991 + + + + + 88 + Correspondence, 1979-1982 and 1984 + + 2 folders + + + + + + 88 + Membership, 1978 + + + + + 88 + Miscellanea, 1979-1982 + + + + + 88 + Reports and Minutes, 1979-1982 and undated + + + + + 88 + Tear Sheets, 1979-1980 + + + + + 88 + Workshop Participants, 1979-1981 + + +
    + + + 88 + Professional Relations, Committee on, 1962 + + 2 folders + + + + + + 89 + Professional Salaries Committee, 1971 + + + + + Professionalism Committee + + + + 89 + Agreement, 1981 + + + + + 89 + Charge, 1981-1982 and 1986 + + + + + 89 + Correspondence, 1980-1986 and 1989 + + + + + 89 + Goals, 1980 + + + + + 89 + Members, 1980 + + + + + 89 + Motion, 1981 + + + + + 89 + Minutes and Reports, 1981-1987 and 1989 + + + + + + Proprietary Rights/Use, Committee on + + + + 89 + Charter, undated + + + + + 89 + Congressional Bills, 1968-1971 includes ASIS Resolution + + + + + 89 + Correspondence, 1966-1976 and undated + + 6 folders + + + + + + 89 + Members, 1968-1970 + + + + + 89 + Miscellanea, 1973 + + + + + 89 + Papers Regarding Copyright, 1968-1972 and undated + + 2 folders + + + + + + 89 + Proposal, 1969 + + + + + 89 + Reports and Minutes, 1968-1972 + + + + + 89 + Tear Sheets and Press Releases, 1970-1975 + + + + + 89 + Williams and Wilkins vs. National Library of Medicine, 1970-1972 + + + + + + Public Affairs Committee + + + + 89 + Charge, 1981 and 1986 + + + + + 89 + Contacts, 1989-1990 + + + + + Correspondence + + + + 89 + + 1966-1970 + 1974-1985 + + + 9 folders + + + + + + 90 + 1986-1989 and undated + + 3 folders + + + + + + + Issue Briefs and Bills + + + + 90 + General, 1979-1986 + + 2 folders + + + + + + 90 + Informing the Nation, 1989 + + 2 folders + + + + + + + 90 + Members, 1980 and 1984-1986 + + + + + 90 + Miscellanea, 1976-1982 + + + + + 90 + Motions and Actions, 1976 and 1979-1981 + + + + + 90 + Occupational Standards, 1982 + + + + + 90 + Papers by Individuals, 1975-1984 + + + + + 90 + Papers by Organizations, 1978-1982 + + + + + 90 + Position Statements, 1987 + + + + + 90 + Press Releases, 1981-1984 + + + + + 90 + Reports and Minutes, 1968-1982 and 1984-1989 + + 5 folders + + + + + + 90 + Tear Sheets, 1968-1985 + + 2 folders + + + + + + Testimony before Congress + + + + 90 + General, 1975-1981 + + 2 folders + + + + + + 90 + HR 3137 1981 + + + + + 90 + HR 8395 1987 + + + + + + 90 + Videotape: correspondence and other materials re PAC videotape, 1987-1988 + + + + + + 90 + Public Relations Committee, 1962-1963 and 1986-1987 + + 2 folders + + + + + + Publications Committee + + +

    (see also Publications series)

    +
    + + + 91 + ASIS Publications Catalog, undated + + + + + 91 + Action Plan, 1982-1983 + + + + + 91 + Agenda, 1969-1986 + + 2 folders + + + + + + 91 + Annual Reports, 1970-1984 + + + + + 91 + Articles: regarding Publications, 1969 and 1982 + + + + + 91 + Awards Criteria, 1972-1982 + + + + + 91 + Bylaws, ca. 1985 + + + + + 91 + Charge, 1980-1982 + + + + + 91 + Contracts, 1986-1987 and undated + + + + + 91 + Copyright Policy, 1979 + + + + + 91 + Correspondence, 1964-1991 + + 25 folders + + + +

    (includes attachments such as agenda, minutes, and reports, especially 1990 and after)

    +
    +
    + + + 91 + Editor Review, 1979 and 1983 + + + + + 91 + Editorial Guide, undated + + + + + 91 + Editors' Reports, 1964-1982 + + + + + 92 + Exchange Agreements, 1962-1969 + + + + + 92 + Exchange Denials or Refusals, 1966-1970 + + + + + Financial Information + + + + 92 + Balance Sheet, 1972-1973 + + + + + 92 + Budgets, 1968-1984 + + + + + 92 + Financial Reports, undated, 1972 and 1980 + + + + + 92 + Statement of Income, 1972 + + + + + 92 + General, 1986 + + + + + + 92 + Guidelines, undated + + + + + 92 + History of Publications Program, 1975 + + + + + 92 + Issues and Concerns, 1985 + + + + + 92 + Inventory, 1976 + + + + + 92 + Members, 1971-1984 and undated + + + + + 92 + Mid-Year Meeting, 1989 + + + + + 92 + Minutes, 1969-1988 and undated + + 20 folders + + + + + + 93 + Minutes: Manuscript, 1985-1986 and undated + + 2 folders + + + + + + 93 + Minutes: from Documentation Abstracts, 1971 and 1973 + + + + + 93 + Motions and Resolutions, 1964-1981 1987 and undated + + 2 folders + + + + + + 93 + Objectives, undated + + + + + 93 + Pergamon Press Agreement, 1976-1977 + + + + + 93 + Policy Statements, 1971-1982 + + + + + 93 + Press Releases and Tear Sheets, 1971-1973 1988-1989 + + 2 folders + + + + + + 93 + Procedures Subcommittee, 1976 + + + + + Proposals + + + + 93 + Correspondence Proposals, 1972-1979 + + + + + Project Proposals + + + + 93 + Proposals for New Publications, 1968-1981 + + + + + 93 + ADI/ASIS Publications (Serials) Programs, 1982 + + + + + + Publication Proposals + + + + 93 + Forms, 1973 + + + + + 93 + Manuscripts, 1973-1980 + + + + + 93 + Summary, undated + + + + + + 93 + General, 1987 + + + + + + 93 + Publications Program, 1971-1973 + + + + + 93 + Resolution, undated + + + + + 93 + Reports, 1965-1973 1984-1987 and 1991 + + 2 folders + + + + + + 93 + Reports to Board of Directors, 1974-1984 + + 2 folders + + + + + + 93 + Responsibilities, 1986 + + + + + 93 + Sales Reports, 1973-1974 + + + + + 93 + Schedules, 1972 + + + + + SIG Related Publications + + + + 93 + Correspondence, 1972-1982 + + + + + 93 + Format, 1976 + + + + + + 93 + Surveys, 1989-1991 + + + + + 93 + Task Force, 1988 + + + + + 93 + Tech Memo, 1969 + + + + + 93 + Telephone Record, 1971 + + + + + 93 + Miscellanea, 1970-1973 1985 and undated + + + + + ASIS Joint Publications + + + + 93 + Annual Review of Biomedical Communications, 1969-1970 + + + + + 93 + FID, 1975-1976 + + + + + 93 + Information Science Abstracts: Proposal, 1975 + + + + + + Key Papers + + + + + 93 + Agreement, 1981 and 1984 + + + + + 93 + Correspondence, 1971-1979 + + + + + 93 + Proposals, undated, 1973-1976 and 1982 + + + + + 93 + Reports, 1975-1976 + + + + + 93 + Schedule, 1980 + + + + + + + Scientific Information Notes + + + + + 93 + Correspondence, 1968-1969 + + + + + 93 + Financial Information, 1968 + + +

    (includes grant proposal)

    +
    +
    +
    +
    + + + ASIS Publications + + + + + ARIST + + + + + 93 + Correspondence, 1965-1981 and undated + + + + + 93 + Proposals, 1969-1975 + + + + + 93 + Reports, 1971-1975 + + + + + + + BASIS + + + + + 93 + Proposals, 1973 and undated + + + + + 93 + Reports, 1975-1978 and 1983 + + + + + 93 + Schedule, undated + + + + + + + JASIS + + + + + 93 + Correspondence, 1971-1982 and 1990 + + 2 folders + + + + + + 93 + Proposals, 1973 and 1979 + + + + + + 93 + Proceedings, 1968-1974 + + + +
    + + + Research Committee + + + + 94 + Charge, 1980-1981 + + + + + 94 + Correspondence, 1964 1981-1989 and 1994 + + 4 folders + + + + + + 94 + Members, 1981-1984 + + + + + 94 + Motion, 1984-1986 + + + + + 94 + Reports, 1965-1987 + + 2 folders + + + + + + 94 + Miscellanea, 1955 and 1980-1981 + + + + + + 94 + Research and Technical Development, Committee on, 1962 + + + + + 94 + Science, Committee on, 1980-1981 + + + + + 94 + Science Industry Committee, 1972 + + + + + 94 + Special Membership Committee, 1961-1962 + + + + + 94 + Sponsored Projects Committee, 1967-1968 + + + + + Standards Committee + + + + 94 + ANSI Subcommittee J, 1978-1979 + + +

    (originally part of "Office Binder")

    +
    +
    + + + 94 + Ballot Proposals, 1971-1982 + + 2 folders + + + + + + 94 + Ballots: Z39, 1986-1987 + + 6 folders + + + + + + 94 + Charge, 1979-1981 + + + + + Correspondence + + +

    (includes ballots and other attachments)

    +
    + + + General + + + + 94 + + 1968-1979 + + + 6 folders + + + + + + 95 + + 1980-1987 + + + 13 folders + + + + + + + Office Binder + + + + 95 + General, 1978-1979 + + + + + 95 + To and from Standards Committee, 1979-1981 + + + + + 95 + Re Standards Committee, 1979-1981 + + + +
    + + + Members + + + + 95 + Main listings, 1974-1984 + + + + + 95 + Office Binder, 1979-1981 + + + + + + Minutes + + + + 95 + Main minutes, 1971 1980 and 1987 + + 2 folders + + + + + + 95 + Office Binder minutes, 1978-1981 + + 2 folders + + + + + + + 95 + Miscellaneous Office Binder materials, 1978-1979 + + + + + 95 + Motions, 1973 + + + + + 95 + Press Releases, 1972-1979 + + + + + 95 + Reference, 1981-1984 + + +

    (originally part of "Office Binder")

    +
    +
    + + + Reports + + + + 95 + Annual, 1975-1984 + + + + + 95 + Quarterly, 1982-1984 + + + + + 95 + Office Binder, 1978-1981 + + 2 folders + + + + + + 95 + Miscellaneous, 1973-1984 + + + + + + Standards + + + + 95 + General, 1966-1972 and undated + + + + + Office Binder + + + + 95 + Standards voted on, 1978-1979 + + + + + 95 + PH5, 1979-1981 + + + + + 95 + X3, 1978-1981 + + + + + Z39 + + + + 95 + Bylaws, 1978-1979 + + + + + 95 + Correspondence, 1979-1981 + + + + + 95 + Fundraising, 1978-1979 + + + + + 95 + Voice of Z39, 1978-1979 + + + + + + Z39, PH5, X3 + + + + 95 + Meetings, 1978-1979 + + + + + 95 + Votes and Comments, 1978-1979 + + + + + + + Z39 + + + + 96 + Ballots and related, 1981-1988 + + 26 folders + + + +

    (originally in three bound volumes; includes a small number of comments on other standards)

    +
    +
    + + + 96 + Reports, 1986 + + 2 folders + + + +

    (includes ballots)

    +
    +
    +
    +
    + + + 96 + Tear Sheets, 1971-1979 + + +
    + + + 96 + State of the Art Publications, Committee on, 1962 + + + + + 96 + Statistics and Information Committee, 1965 + + + + + 96 + Student Membership Committee, 1966 + + +
    +
    + + + AWARDS + + +

    The AWARDS series (16 linear feet) contains materials about awards given by ASIS. These awards include the following:

    +

    + + ASIS AWARDS + The Award of Merit + Best Chapter/SIG Publication + Dissertation Scholarship + Distinguished Lecturer Award + Distinguished Service Award + Information Science Book Award + Kaskela Award + JASIS Paper Award + Non-Print Media Award + Outstanding Information Science Teacher Award + Student Paper Contest + Watson Davis Award + +

    +

    This series is arranged into two groups: first general awards-related materials, and then individual awards, arranged alphabetically by award name. The researcher will find a small amount of material on the Student Paper Contest in the Committees series under the Education Committee, which sponsored the contest. Materials regarding Chapters of the Year are found in the Chapters series.

    +
    + + + General + + + + 97 + Annual Activities Report, undated + + + + + 97 + Certificates of Appreciation, 1974-1978 + + + + + 97 + Certificates of Recognition, 1990-1994 + + + + + 97 + Correspondence, 1969-1999 + + 16 folders + + + + + + 97 + Financial Information, 1976-1980 + + + + + 97 + Guidelines, 1979 + + + + + 97 + Jury, 1995 + + + + + 97 + Minutes, 1981 + + + + + 97 + Miscellanea, 1970-1986 + + + + + 97 + Photographs of Award Ceremonies, 1971-1983 + + + + + 97 + Press Releases, 1977-1981 + + + + + 97 + Reports, 1974-1981 + + + + + + Individual Awards + + + + Award of Merit + + +

    ("Nominee Documentation" folders contain large amounts of correspondence)

    +
    + + + 97 + Jury, 1983-1984 and 1987 + + + + + 97 + Nominations Committee, 1973-1981 + + + + + 97 + Nominees, 1964-1970 and 1984 + + 2 folders + + + + + + 97 + Rules, 1971-1982 + + + + + 97 + + 1964-1965 + + + 2 folders + + + + + + + 1968 + + + + + 97 + Correspondence + + + + + 97 + Nominee Documentation + + + + + 97 + Press Releases + + + + + + + 1969 + + + + + 98 + Correspondence + + + + + 98 + Nominee Documentation + + + + + + + 1970 + + + + + 98 + Correspondence + + + + + 98 + Nominee Documentation + + + + + + 98 + + 1971-1987 + + + 24 folders + + + + + + 99 + + 1988-1997 + + + 11 folders + + + +
    + + + 99 + Best Chapter Electronic Publication Award, 1998-1999 + + + + + 99 + Chapter Event of the Year Award, 1991 1995-1999 + + 5 folders + + + + + + 100 + Chapter Member of the Year Award, 1991 1995-1999 + + 7 folders + + + + + + Chapter of the Year Award + + + + 100 + General, 1982-1997 + + 29 folders + + + + + + 101 + Correspondence, 1998-1999 + + + + + 101 + Nominee Documentation 1998-2000 + + 13 folders + + + + + + + Chapter/SIG Best Publication Award + + +

    (same as Chapter Publication of the Year?)

    +
    + + + 101 + Correspondence, 1969-1973 + + + + + 101 + Criteria, 1972 + + + + + 101 + Samples, 1970 and 1972-1973 + + + + + 101 + General, 1990-1991 1994-1995 1996-1997 1998-1999 + + 4 folders + + + +
    + + + 101 + Dissertation Scholarship, 1979-1982 + + + + + 101 + Distinguished Lecturer Award, 1981 + + + + + 101 + Distinguished Service Award, 1968 + + + + + Doctoral Forum Award + + + + 101 + + 1974-1989 + + + 7 folders + + + + + + 102 + + 1990-1996 + + + 9 folders + + + + + + + 103 + Humphrey Award, 1978-1981 + + + + + Information Science Book Award + + + + 103 + Correspondence, 1969-1991 1995-1999 + + 11 folders + + + + + + 103 + Guidelines, 1978-1979 + + + + + 103 + Miscellanea, 1975-1980 + + + + + 103 + Publicity, 1977-1980 + + + + + + ISI Doctoral Dissertation Award + + + + 103 + + 1983-1991 + + + 12 folders + + + + + + 104 + + 1995-1999 + + + 4 folders + + + + + + + 104 + ISI Doctoral Dissertation Proposal Scholarship Award, 2000 + + + + + 104 + ISI/ASIS Citation Analysis Research Award, 1999 + + + + + 104 + James B. Cretsos Leadership Award, 1996-1999 + + 3 folders + + + + + + JASIS Paper Award + + + + 104 + Correspondence, 1969-1984 1988-1989 + + 2 folders + + + + + + 104 + Miscellanea, 1979-1984 + + + + + + 104 + Kaskela Award for the Best Newsletter, 1972-1976 + + + + + 104 + Luhn (H. P) Memorial Scholarship Fund, 1965-1967 + + + + + 104 + Non-Print Media Award, 1969-1981 + + + + + Outstanding Information Science Teacher Award + + + + 104 + + 1979 + + + + + + + 1980 + + + + + 104 + Correspondence + + + + + 104 + Nominees + + + + + 104 + Press Releases and Tear Sheets + + + + + + + 1981 + + + + + 104 + Correspondence + + + + + 104 + Guidelines + + + + + 104 + Nominees + + + + + + + 1982 + + + + + 104 + Correspondence + + +

    (includes Guidelines and Press Releases)

    +
    +
    + + + 104 + Nominees + + 2 folders + + + +
    + + + 105 + + 1983-2000 + + + 20 folders + + + +

    (includes correspondence and nominee submissions)

    +
    +
    +
    + + + 106 + Pratt-Severn Best Student Research Paper Award, 1996-1997 1999 + + 3 folders + + + +

    (was Student Paper Contest?)

    +
    +
    + + + 106 + Research Award, 1985 1990 1995-1998 + + 2 folders + + + + + + SIG of the Year Award + + + + 106 + + 1983-1988 + 1989 + + + 8 folders + + + + + + 107 + + 1991-1999 + + + 11 folders + + + + + + + 108 + SIG Member of the Year Award, 1992-1996 1999 + + 6 folders + + + + + + 108 + SIG Publication of the Year Award, 1992-1997 + + 5 folders + + + + + + 108 + Student Chapter of the Year Award, 1988-1991 1994-1999 + + 8 folders + + + + + + 109 + Student Paper Contest, 1972-1983 1985-1991 1995 + + 21 folders + + + + + + UMI Doctoral Dissertation Award + + + + 110 + + 1997 + 1999 + + + 10 folders + + + + + + 111 + + 2000-2001 + + + 25 folders + + + + + + + 112 + Watson Davis Award, 1976-1986 1988-1989 1992 1994 1996-1997 + + 16 folders + + + +
    +
    + + + MEMBERSHIP + + +

    The MEMBERSHIP series (2 linear feet) contains materials relating to membership services and promotional materials. It also includes membership lists, reports, and surveys. (There are also some materials on the Operations Planning Task Force. The researcher should consult the Committees series for further material relating to this committee. MEMALERT was an attempt by the Southern Ohio Chapter of ASIS to make membership in ASIS more personal. All new memberships were sent to them, after which they would notify the other local chapters as to who the new members were, so those chapters could contact them. This idea was developed when national headquarters could no longer cope with the flood of new memberships.

    +
    + + + 113 + Advertising, 1992-1993 + + + + + 113 + Alternative Memberships, 1975-1976 + + + + + 113 + Associated Organizations Membership Lists, 1965-1966 + + + + + 113 + Benefits, 1985-1986 + + + + + 113 + Biographies, 1984-1988 + + + + + 113 + Brochures, 1966 1970 1973 + + + + + 113 + Correspondence, 1956-1982 1985-1989 and undated + + 7 folders + + + + + + 113 + Donors, 1988-1989 + + + + + 113 + Exit Interviews, undated + + + + + 113 + Financial Information, 1991-1992 + + + + + 113 + Hardship/Refunds, 1985-1987 + + + + + 113 + Individuals, 1952 1961 and 1978 + + + + + 113 + Inquiries, general, 1985-1986 + + + + + Institutional Membership + + + + 113 + Benefits, 1968-1978 + + + + + 113 + Brochures, 1969-1979 + + + + + 113 + Correspondence, 1981-1991 + + + + + 113 + Financial Information, 1971-1977 + + + + + 113 + Lists, 1960-1977 + + + + + 113 + Procedures, 1979 and undated + + + + + + 113 + International Membership, 1985-1988 + + + + + 113 + Internship: Minority Leaders Fellowship Program, 1988 + + + + + 113 + Lapsed Members, 1971-1977 + + + + + 113 + Manual: "A Collection of Ideas about ASIS Membership Promotion," 1979 + + + + + 113 + MEMALERT, 1971-1978 + + + + + 113 + Member Insurance, undated + + + + + Member Loan Program + + + + 113 + Correspondence, 1968-1981 1985 + + + + + 113 + Reports, 1977-1981 + + + + + + 113 + Membership Campaign, 1971-1980 + + 2 folders + + + + + + 113 + Membership Committee, 1977-1978 + + + + + 113 + Membership Directory, 1969 + + + + + 113 + Membership Finders List, 1975 + + + + + 113 + Membership Lists, 1940 1949 1951-1952 and 1960-1965 + + + + + 113 + Membership Profile, 1980 + + + + + 113 + Membership Promotion, 1964 and 1968 + + + + + 113 + Membership Record Automation, 1970-1974 + + + + + 113 + Membership Record Procedures, 1980-1981 + + + + + 113 + Membership Renewal, 1992 + + + + + 113 + Membership Statistics, undated, 1954 and 1968 + + + + + 113 + Membership Survey Results, 1971 1980 + + 2 folders + + + + + + 113 + Miscellanea, 1967-1974 + + + + + 113 + New Member Kit, undated + + + + + 113 + Operations Planning Task Force, 1978 + + +

    (includes survey of membership services and activities)

    +
    +
    + + + 113 + Paper: "How I Sell the Idea of Information Science as a Profession," 1977 + + + + + 113 + Procedure for 2nd Mailing to Inquiries, 1993 + + + + + Questionnaires + + + + 113 + Correspondence, 1974-1976 + + + + + 113 + Membership Profile, 1974-1975 1987 + + + + + 114 + Planning, 1987 + + 2 folders + + + + + + + 114 + Reports, 1963-1980 1991-1996 1998-1999 + + 7 folders + + + + + + 114 + Student Membership, 1972-1982 + + +
    + + + PUBLICATIONS + + +

    The PUBLICATIONS series (15 linear feet) contains materials pertaining to the various journals and monographs published by ASIS. General material is followed by materials of and about individual publications, arranged alphabetically by title. All printed materials (except for some newsletters) have been separated from the records. The journals and other publications can be found in the University Library holdings. Some manuscript papers, submitted to BASIS and JASIS, are included under the volume in which they were printed. Publications Committee minutes are located in the Committees series.

    +
    + + + General + + + + Advertising + + + + 115 + ASIS Ads in Other Publications, 1980 and undated + + + + + 115 + Publication Marketing: Samples, 1986-1987 and undated + + + + + 115 + 50th Anniversary, 1987 + + + + + + 115 + ASIS logo, undated + + + + + 115 + Author Contracts, 1974-1981 + + + + + 115 + Auxiliary Publications, 1941-1967 and undated + + + + + Book Reviewers + + + + 115 + Correspondence, 1974-1975 + + + + + 115 + Journal Lists, undated, 1974 and 1976 + + + + + + 115 + Book Reviews and Announcements, 1975-1977 + + 3 folders + + + + + + 115 + Catalog of Publications, 1972-1973 + + + + + 115 + Cataloging in Publication, 1972-1975 + + + + + 115 + Complimentary Copies, 1975-1976 + + + + + Contracts + + + + 115 + Herlitz, 1964 + + + + + 115 + Kraus Reprint Corporation, 1964-1977 + + + + + 115 + Microfiche Systems Corporation, 1972-1974 + + + + + 115 + University Microfilms, 1961-1972 + + + + + + 115 + Copyright, 1972-1973 + + + + + 115 + Copyright Releases, 1969-1982 + + 5 folders + + + + + + 115 + Correspondence, 1965-1982 + + 5 folders + + + + + + Editorial Board + + + + 115 + Correspondence, 1965-1969 + + + + + 115 + Reports, 1963-1969 + + + + + + 115 + Editorial Review, 1978-1979 + + + + + Financial Information + + + + 115 + Budgets, 1971-1975 + + + + + 115 + Publication Sales, 1973-1976 + + + + + 115 + Receipts and Disbursements, 1971-1974 + + + + + 115 + Statement of Income, 1973-1974 + + + + + + 115 + History, ca. 1975 + + + + + 115 + Job Descriptions, 1974-1976 + + + + + Knowledge Industry Publications, Inc. (KIPI) + + + + 115 + Agreement, 1977-1981 and 1985 + + + + + 115 + Catalogs, 1979-1982 + + + + + 115 + Correspondence, 1977-1982 + + + + + + 115 + Monograph/Series Editor Search, 1980-1982 + + + + + 115 + Monographs, 1975-1980 + + + + + 116 + News Releases, 1974-1976 + + + + + 116 + Pergamon-Maxwell, 1972-1973 + + + + + 116 + Pergamon Negotiations, 1977 + + + + + 116 + Policy Guidelines, 1971-1982 + + + + + 116 + Port City Press, 1972-1976 + + + + + Procedures + + + + 116 + General, 1971-1973 + + + + + 116 + Reduction, 1970-1973 + + + + + + 116 + Program Status Report, undated + + + + + Proposed Publications + + + + 116 + Correspondence, 1972-1980 + + + + + 116 + Proposals, 1972-1980 + + + + + + 116 + Publications Agreement, undated + + + + + 116 + Publications Committee Minutes, 1969-1975 + + 3 folders + + + + + + 116 + Publications Lists, 1965-1981 + + + + + 116 + Publications Schedules, 1975-1977 + + + + + 116 + Publicity, 1979 + + + + + 116 + Publishers' Bids, 1975-1976 + + + + + 116 + Report to the ASIS Publications Committee on the ADI/ASIS Publications (Serials) Program, 1982 + + + + + 116 + Reprint Policy, 1970-1972 + + +

    (includes correspondence)

    +
    +
    + + + 116 + Reprints Permission, 1970-1976 + + 2 folders + + + + + + 116 + Royalty Payments, 1969 + + + + + 116 + Sales Reports, 1966-1977 + + 3 folders + + + + + + 116 + Surveys: Readership/Publications Surveys, 1987 + + + + + 116 + Technical Program Activities, 1976 + + + + + 116 + "Topics" Reference Files, 1982-1987 + + + + + 116 + UNESCO Editors Symposium, 1972 + + + + + 116 + Yellow Pages Ideas, 1988-1990 + + +
    + + + Individual Publications + + + + ARIST ( Annual Review of Information Science and Technology) + + + + 116 + Advisor Roster, 1966-1971 + + + + + 116 + Advisors, 1966-1972 + + + + + 116 + Advisory Board Reports, 1965-1968 + + + + + 116 + Authors and Typist's Guide, 1971 + + + + + Bibliographic Support, 1968-1972 + + + + 116 + General Information, December 1971-January 1972 + + + + + 116 + Correspondence, 1970-1972 + + + + + 116 + Final Report, 1970 + + + + + 116 + Journal Coverage, 1968-1972 + + + + + 116 + Journals Dropped, 1971 + + + + + 116 + Proposal, 1969-1970 + + + + + 116 + Users' Reactions, 1969 + + + + + + Bibliographic Support, 1972-1975 + + + + 116 + General Information, 1972-1975 + + + + + 116 + Journals Selected, 1973 + + + + + 117 + Statistics, 1975 + + + + + + 117 + Bibliography, 1968-1975 + + 2 folders + + + + + + 117 + Brochures, 1966-1972 + + + + + 117 + Chapter Reprint Series, 1976 + + + + + 117 + Chapter, Titles and Author Addresses, Vol. 1-20, 1985 + + + + + 117 + Contracts: with North and Battelle, 1970 + + + + + 117 + Conversion Chart, undated + + + + + 117 + Correspondence, 1965-1975 + + 15 folders + + + + + + 117 + Cost Data, 1971-1972 + + + + + 117 + Cumulative Index, 1975 + + +

    (includes correspondence with Jessica Harris)

    +
    +
    + + + 117 + Editor Selection Committee, 1974 + + 2 folders + + + + + + 117 + Editorial Policy, 1979 + + + + + 117 + Editorial Process, 1968-1972 + + + + + + Encyclopedia Britannica + + + + + 117 + Agreement, 1967-1972 + + 2 folders + + + + + + 117 + Correspondence, 1967-1972 + + 4 folders + + + + + + + 118 + Final Reports: "Impact Study of the Annual Review of Information Science and Technology," 1968 + + + + + 118 + Foreign Language Coverage, 1971 + + + + + 118 + "Guide for the Preparation of Bibliographic References," 1975 + + + + + 118 + HEW Grant Information, 1968-1971 + + + + + 118 + Index, 1972-1976 + + + + + 118 + Journals, 1970-1971 + + + + + 118 + Manpower Requirements, 1973 + + + + + 118 + Manuscript Outlines, 1969-1975 and undated + + + + + 118 + Merged Listing, 1970 and 1974 + + + + + 118 + National Science Foundation Grant, 1964-1967 + + + + + 118 + Progress Reports, 1965-1970 + + 2 folders + + + + + + Proposals + + + + 118 + National Library of Medicine, 1973-1974 + + + + + 118 + From ADI to NSF, undated + + + + + 118 + To Publishers (non-NSF), 1964-1965 + + + + + + 118 + Publishers, 1965-1967 + + + + + 118 + Reviews and Evaluations, 1967-1974 + + 2 folders + + + + + + 118 + Speeches, 1971 and undated + + + + + System Development Corporation + + + + 118 + Correspondence, 1965-1972 + + 3 folders + + + + + + 118 + Proposal: from Carlos Cuadra, 1972-1973 + + + + + + 118 + Vol. 1-11: Table of Contents, 1966-1976c + + + + + 118 + Volume 6: Bibliographic Support, 1969-1971 + + 2 folders + + + + + + Volume 7 + + + + 118 + Bibliographic Support, 1969-1971 + + + + + Chapter + + + + 118 + Introduction, 1972 + + + + + 118 + Outlines, 1972 + + + + + 118 + Summaries, 1972 + + + + + + 118 + Correspondence, 1971-1973 + + + + + + Volume 8 + + + + 118 + Author Correspondence, 1972-1973 + + + + + 118 + Authors, undated + + + + + 118 + Chapter Summaries, 1973 + + + + + + Volume 9 + + + + 118 + Author Correspondence, 1973-1974 + + + + + 118 + Authors, 1973-1974 + + + + + 118 + Bibliographic Support, May-September 1973 + + 4 folders + + + + + + 118 + Chapter Outlines, 1973 + + + + + + Volume 10 + + + + 118 + Authors, undated + + + + + 119 + Bibliographic Support, 1974 + + + + 119 + Outline, 1975 and undated + + + + + 119 + + July 1974-January 1975 + + + 6 folders + + + + + + + 119 + Chapter Outlines, 1975 + + + + + 119 + Complimentary Book List, undated + + + + + 119 + Correspondence, 1974-1976 + + + + + + Volume 11 + + + + 119 + Bibliographic Support, October -November 1975 + + + + + 119 + Chapters, 1976 + + + + + 119 + Correspondence, 1975-1977 + + + + + 119 + Task and Manpower Requirements, undated + + + + + + Volume 12 + + + + 119 + Authors, 1976 + + + + + 119 + Correspondence, 1976-1977 + + + + + + Volume 13 + + + + 119 + Correspondence, 1977 + + + +
    + + + + American Documentation + + + + + 119 + Copyright, 1968-1969 + + + + + Correspondence + + + + 119 + Gull, C.D.: re Jesse Shera contract, 1960 + + + + + 119 + General, 1961 + + + + + + 119 + Royalty Payments, 1968-1974 + + + + + 119 + Subscriptions: Watson Davis, 1951 + + + + + + Annual Meeting + + +

    (draft or proof copies)

    +
    + + + 119 + Collected Papers and Abstracts, 1986 + + + + + 119 + Final Program, 1987-1988 + + +
    + + + 119 + Archival Automation Symposium Proceedings Correspondence, 1982 + + + + + 119 + The Auerbach Annual Best Computer Papers, 1979-1981 + + + + + BASIS ( Bulletin of the American Society for Information Science) + + + + Advertising + + + + 119 + General, 1974-1980 1983-1984 + + 2 folders + + + + + + 119 + Ad Prospects, 1987 and undated + + + + + 119 + Advertisements, 1983-1985 + + 3 folders + + + + + + 119 + Extra Forms, undated + + + + + Monthly advertiser lists + + + + 119 + + February 1987-1991 + + + + + + 119 + + April 1990-1991 + + + + + + 119 + + August 1986-1990 + + + + + + 119 + + October 1986-1990 + + + + + + 119 + + December 1986-1990 + + + + + + + 119 + Rates, 1988 + + + + + + Advisory Board + + + + 119 + Correspondence, 1974-1979 + + + + + 119 + Members, 1974-1977 + + + + + 119 + Minutes, 1979 + + + + + + 119 + Biographies, undated + + + + + 120 + Columnists, 1974-1980 + + + + + 120 + Complimentary Copies, 1974-1980 + + + + + Contributing Editors + + + + 120 + General, 1974-1979 + + + + + 120 + Abbott, George, 1978-1981 + + + + + 120 + Aines, Andrew, 1975-1980 + + + + + 120 + Albert, Theodore, 1975 + + + + + 120 + Atchison, William, 1975 + + + + + 120 + Auerbach, Isaac, 1975 + + + + + 120 + Berninger, Doug, 1978 + + + + + 120 + Bracken, Marilyn, 1974-1975 + + + + + 120 + Brandhorst, W. Theodore, 1974-1976 + + + + + 120 + Brong, Gerald, 1975-1980 + + + + + 120 + Burchinal, Lee, 1974-1976 + + + + + 120 + Butler, Brett, 1975-1979 + + + + + 120 + Caponio, Joseph F, 1978 + + + + + 120 + Chartrand, Robert L., 1974-1975 + + + + + 120 + Clemens, Thomas, 1975 + + + + + 120 + Cotton, Ira, 1975-1978 + + + + + 120 + Day, Melvin, 1975-1976 + + + + + 120 + Deahl, Thomas, 1974 + + + + + 120 + Debons, Anthony, 1975 + + + + + 120 + Edward, Charles, 1977-1978 + + + + + 120 + Engle, Ralph L., Jr., 1974-1979 + + + + + 120 + Henderson, Madeline, 1982 + + + + + 120 + Herner, Saul, 1979 + + + + + 120 + Herrmann, Roy, 1975 + + + + + 120 + Hlava, Marjorie M. K., 1979 + + + + + 120 + Hoshovsky, Alexander G., 1975 + + + + + 120 + Kadec, Sarah Thomas, 1978 + + + + + 120 + Katz, Ruth, 1975 + + + + + 120 + Kenney, Brigitte L., 1975 + + + + + 120 + Kuney, Joseph H., 1975-1977 + + + + + 120 + Lancaster, F. Wilfred, 1979 + + + + + 120 + Meadows, Charles T., 1975 + + + + + 120 + Mersley, Roy, 1978-1979 + + + + + 120 + Richardson, John, 1975-1976 + + + + + 120 + Sessions, Vivian, 1975-1976 + + + + + 120 + Summit, Roger, 1974-1976 + + + + + 120 + Taylor, Robert S., 1975 + + + + + 120 + Werdel, Judith A., 1974-1980 + + + + + 120 + Williams, Martha, 1975-1976 + + + + + + 120 + Copyright, 1974-1982 + + + + + 120 + Correspondence, 1974-1982 + + 5 folders + + + + + + 120 + Correspondence, of Lois Lunin, 1974-1980 + + + + + 120 + Early History, 1973-1974 + + +

    (includes correspondence dealing with publication of BASIS)

    +
    +
    + + + 120 + Editor Search: correspondence dealing with, 1980 + + + + + 120 + Editor Search: correspondence with Anne Armstrong and Edith Holmes, 1980 + + + + + 120 + Editorial Board, 1973-1979 + + +

    (includes minutes)

    +
    +
    + + + 120 + Evaluation Survey, 1980 + + + + + 120 + Evaluation Survey Report, 1980 + + + + + 121 + Fact Sheets, 1975-1980 + + + + + 121 + Federal Information Update: Sources, 1988-1989 + + + + + 121 + Historical, 1987-1988 + + + + + 121 + Incites, 1974-1975 + + + + + 121 + Index, 1975-1976 + + + + + 121 + Info News, 1975 + + + + + 121 + Information Reader Card, 1978 + + + + + 121 + Infy/Ffrogs, 1974 and undated 1979 + + +

    (cartoon sketches intended to be used as information science-related teaching aids and publicity)

    +
    +
    + + + 121 + Inside ASIS, 1987 + + + + + 121 + Internship, 1978 + + + + + 121 + Layout and Format, 1975-1976 + + + + + 121 + Letters to the Editor: A-Z, 1974-1981 + + 4 folders + + + + + + 121 + Media Info, 1988 and undated + + + + + 121 + News, 1974-1978 + + + + + 121 + Newsletter for Editors, 1974-1979 + + + + + 121 + Placement, 1974 + + + + + 121 + Printing, 1983-1988 + + + + + 121 + Procedures, 1974-1980 + + + + + 121 + Production Schedule, 1975-1980 + + + + + 121 + Progress Reports, 1975-1980 + + + + + 122 + Promotion and Advertising, 1974-1980 + + + + + 122 + Proposals, 1973 + + + + + 122 + Publications by Lois Lunin, undated, 1971 and 1974 + + + + + 122 + Remittances, 1987-1988 + + 2 folders + + + + + + 122 + Reviews, 1974 + + + + + 122 + Style Guide, 1974-1980 + + + + + Survey Questionnaire + + + + 122 + Questionnaires, 1973 1980 + + 2 folders + + + + + + 122 + Analysis, 1973 + + + + + + 122 + Trademark, 1973-1974 + + + + + 122 + Miscellanea, 1979-1981 + + + + + Individual Issue Manuscripts + + +

    (includes some correspondence)

    +
    + + + Volume 1 + + + + 122 + no. 1, June -July 1974 + + + + + 122 + no. 2, August -September 1974 + + + + + 122 + no. 3, October 1974 + + + + + 122 + no. 4, November 1974 + + + + + 122 + no. 5, December 1974 + + + + + 122 + no. 6, January 1975 + + + + + 122 + no. 7, February 1975 + + + + + 122 + no. 8, March 1975 + + + + + 122 + no. 9, April 1975 + + + + + 122 + no. 10, May 1975 + + + + + + Volume 2 + + + + 123 + no. 1, June -July 1975 + + 4 folders + + + + + + 123 + no. 3, September -October 1975 + + 2 folders + + + + + + 123 + no. 4, November 1975 + + + + + 123 + no. 5, December 1975 + + + + + 123 + no. 6, January 1976 + + + + + 123 + no. 7, February 1976 + + + + + 123 + no. 8, March 1976 + + + + + 123 + no. 9, April 1976 + + 3 folders + + + +

    (never published, includes mock-up)

    +
    +
    + + + 123 + no. 10, May 1976 + + +

    (never published, includes mock-up and index to volume 2)

    +
    +
    +
    + + + Volume 3 + + + + 123 + no. 1, October 1976 + + + + + 123 + no. 2, December 1976 + + 3 folders + + + + + + 124 + no. 3, February 1977 + + + + + 124 + no. 4, April 1977 + + + + + 124 + no. 5, June . 1977 + + + + + 124 + no. 6, August 1977 + + + + + + Volume 4 + + + + 124 + no. 1, October 1977 + + + + + 124 + no. 2, December 1977 + + + + + 124 + no. 3, February 1978 + + + + + 124 + no. 4, April 1978 + + + + + 124 + no. 5, June 1978 + + + + + 124 + no. 6, August 1978 + + + + + + Volume 5 + + + + 124 + no. 1, October 1978 + + + + + 124 + no. 2, December 1978 + + + + + 124 + no. 3, February 1979 + + + + + 124 + no. 4, April 1979 + + + + + 124 + no. 5, June 1979 + + + + + 124 + no. 6, August 1979 + + + + + + Volume 6 + + + + 125 + no. 1, October 1979 + + + + + 125 + no. 2, December 1979 + + + +
    +
    + + + 125 + BLIS ( Bibliography on Library and Information Science), 1976 + + + + + 125 + Bibliographic Control for the Information Sciences, 1967-1969 + + + + + 125 + Cable Libraries Newsletter, 1972-1974 + + 2 folders + + + + + + 125 + Computer Science Resources: A Guide to Professional Literature, 1980-1982 + + + + + 125 + Computer-Readable Bibliographic Data Bases: A Directory and Data Sourcebook, 1976-1982 + + + + + 125 + Consultants Directory, 1971-1972 + + + + + 125 + Continuing Library and Information Science Education: A Final Report to the National Commission on Libraries and Information Science, 1970-1974 + + + + + 125 + Copyright Study Group, 1973 + + + + + 125 + Cost Reduction for Special Libraries and Information Centers, 1972-1974 + + + + + 125 + Curricula in Information Science, 1968-1971 + + + + + + Directory of Education for Information Science + + + + + 125 + Correspondence and Press Releases, 1971-1972 + + + + + 125 + Manuscript, 1971-1972 + + + + + + + Directory of Information Science Schools + + + + + 125 + Correspondence, 1971-1973 + + + + + 125 + Meeting Notes, 1971-1973 + + + + + 125 + Miscellanea, 1971-1973 includes Proposal for Long Range ASIS Project in Education for Information Science + + + + + + 125 + Documentation Abstracts, 1966 + + + + + 125 + ERIC Clearinghouse, 1975-1976 + + + + + 125 + Energy Information Resources, 1974 + + + + + 125 + FID Publications: to be distributed in U.S. and Canada, 1975-1976 + + + + + 125 + FILS (A Study of the Feasibility and Desirability of Developing a Consolidated File of Information Sciences), 1975 + + + + + Handbook & Directory + + + + Advertising + + + + 125 + Ad Copy, 1985 + + + + + 125 + Ad Orders, 1989-1990 + + + + + 125 + Display Ads, 1988-1991 + + + + + 125 + Insertion Order, 1992 + + + + + 125 + General, 1987-1989 + + + + + + 125 + History, 1985-1987 + + + + + 125 + Ideas, 1987-1988 + + + + + 125 + Marketing Plan, 1989-1991 + + + + + 125 + General, 1984 + + + + + + 125 + Hans Peter Luhn: Pioneer of Information Science, Correspondence Regarding, 1964-1968 and 1973 + + 2 folders + + + + + + 125 + Information News: survey, 1965 + + + + + 125 + Information Science Abstracts, 1971-1982 + + + + + 125 + The Invisible Medium: The State of the Art of Microform and a Guide to the Literature, 1973-1974 + + + + + JASIS (Journal of the American Society for Information Science) + + + + 126 + Catalogs, 1978-1980 + + + + + 126 + Circulation, 1974-1976 + + + + + Contracts + + + + 126 + Aspen Systems, 1974 + + + + + 126 + Port City Press, 1964-1972 + + + + + + 126 + Correspondence, 1970-1983 + + 4 folders + + + + + + 126 + Editorial Advisory Board, 1975 + + + + + 126 + Editor's Reports, undated, 1972 and 1975 + + + + + 126 + Information Sheets, undated + + + + + 126 + Miscellanea, undated + + + + + 126 + News Releases, 1975-1980 + + + + + 126 + Proposed Plan for Publication, 1973 + + + + + 126 + Publishers' Bids, 1971-1979 + + + + + 126 + Rates, 1973 + + + + + 126 + Retreat, 1980 and undated + + + + + 126 + Subscription Review, 1977 + + + + + 25 Year Cumulative Index Proposals + + + + 126 + Aspen Systems Corporation, 1974-1975 + + + + + 126 + Hilmark United Corporation, 1973-1974 + + + + + 126 + Information Engineering, 1974 + + + + + 126 + Institute for Scientific Information, 1974 + + + + + 126 + University City Science Center, 1974 + + + + + + Wiley and Sons + + + + 126 + Annual Reports, 1976-1978 + + 2 folders + + + + + + 126 + License Agreement, 1977 + + + + + + + Joint Ventures + + + + Library and Reference Facilities in the Area of the District of Columbia + + + + 126 + 9th Edition, 1975 + + + + + 126 + 10th Edition, 1978 + + + + + 126 + 11th Edition, 1982 + + + + + 126 + Correspondence, 1970-1978 + + 2 folders + + + + + + + + + Key Papers Series + + + + + 127 + Advisory Board, 1975 + + + + + 127 + Correspondence, 1969-1982 + + 3 folders + + + + + + 127 + Costs, Budgeting and Economics of Information Systems, 1976 + + + + + 127 + Design and Evaluation, 1976 + + + + + 127 + Miscellanea, 1971-1975 + + + + + 127 + Reviews, 1972-1973 + + + + + 127 + Sales Reports, 1971 + + + + + 127 + Use of Computer Based Bibliographic Services, 1973 + + + + + + 127 + Literature Notes, 1964-1966 + + + + + 127 + MARC Development Office, "Data Preparation Manual: MARC Verifiers," 1973 + + + + + 127 + MARC Ed Decision, 1970 and 1974 + + + + + Membership Directory + + + + 127 + ADI Abbreviations, undated + + + + + 127 + Directories, 1971-1975 and 1978-1983 + + 10 folders + + + + + + + National Auxiliary Publications Service + + + + 127 + Agreement, 1937 and undated + + + + + 127 + Correspondence, 1962-1974 + + 3 folders + + + + + + 127 + Miscellanea, undated + + + + + 127 + Papers, 1945-1968 regarding the NAPS + + + + + 127 + Promotion, 1979-1981 + + + + + 127 + Reports, 1965-1966 + + + + + 127 + Specifications, 1967 + + + + + + 127 + News Releases, 1965-1981 + + 12 folders + + + + + + Newsletter + + + + 127 + Bid, 1971 + + + + + 127 + Correspondence, 1970-1976 + + + + + + National Information Retrieval Colloquium + + + + 127 + 10th, 1974 + + + + + 127 + 11th, 1975 + + + + + + 127 + Omnibus Copyright Revision: Comparative Analysis of the Issues, 1973-1974 and 1977 + + 3 folders + + + +

    (years 1974 and 1977 include Reviews)

    +
    +
    + + + + On-Line Information Retrieval: Guide to Systems and to the Literature + + + + + 127 + Correspondence, 1972-1976 + + + + + 127 + Drafts, 1972-1976 + + + + + + Proceedings + + + + Contracts + + + + 128 + Adrienne Press, 1966 + + + + + 128 + Consolidated/Drake, 1970 + + + + + 128 + Greenwood Press, 1968-1973 + + + + + 128 + Spartan Books, 1964-1965 + + + + + 128 + Thompson Books, 1967 + + + + + + 128 + Procedures, 1968-1974 + + + + + Individual Meetings + + +

    (some volumes/years include correspondence)

    +
    + + + 128 + Vol 5, 1968 + + + + + 128 + Vol 6, 1969 + + +

    (includes correspondence)

    +
    +
    + + + 128 + Vol. 7, 1970 + + +

    (includes correspondence)

    +
    +
    + + + 128 + Vol 8, 1971 + + +

    (includes microfiche)

    +
    +
    + + + Vol. 9, 1972 + + + + 128 + Correspondence + + + + + 128 + Regarding audio tapes, 1972-1973 + + + + + 128 + Video tape + + + + + + 128 + Vol. 10, 1973 + + + + + 128 + Vol. 11, 1974 + + + + + 128 + Vol. 12, 1975 + + + + + Vol. 13, 1976 + + + + 128 + Copyright + + + + + 128 + Papers + + 9 folders + + + + + + + 128 + Vol. 18: Copyright Permissions, 1981 + + + + + Vol. 23 + + + + 128 + Copyright Permissions, 1986 + + + + + 128 + Correspondence, 1986 + + + +
    +
    + + + + Review of Biomedical Communication + + + + + 128 + Advisory Board, 1972-1974 + + + + + 128 + Medical Journal List, 1972 + + + + + Proposals + + + + National Library of Medicine + + + + 128 + Proposal, undated + + + + + 129 + Revised Proposal, 1972-1974 + + + + + + + 1973 + + + + + 129 + Proposal, 1973 + + + + + 129 + Correspondence, 1973 + + + + + + + 1974 + + + + + 129 + Proposal, 1974 + + + + + 129 + Proposal Rewrite, + + + + + + 129 + Miscellanea, 1965-1975 + + + + + + + 129 + Survey of Commercially Available Computer-Readable Bibliographic Data Bases, 1970-1974 + + + + + 129 + Union Catalog of Library Programs, 1974 + + +
    + + + Printed Material + + +

    (mainly newsletters)

    +
    + + + ASIS Newsletters + + +

    (various continuations and names changes; early newsletters are President's Newsletter, consisting of typed, mimeographed sheets)

    +
    + + + 129 + American Documentation Institute President's Newsletter, no. 1-8, February 1951-August 1954 + + + + + + American Documentation Institute Newsletter + + + + + 129 + No. 1-6, January -October 1955 + + + + + 129 + January /February 1956-September 1960 + + +

    (May be some missing issues)

    +
    +
    +
    + + + 129 + ADI Newsletter or Newsletter of the American Documentation Institute, n.s.: vol 1 no. 1-vol. 6 no. 6, May 1961-November /December 1967 + + 4 folders + + + + + + 129 + ASIS Newsletter or Newsletter of the American Society of Information Science: vol. 7 no. 1-vol. 8 no. 1-3 and vol. 8 no. 6-vol. 13 no. 6, January /February 1968-May/June 1969 and November /December 1969-June 1974 + + 6 folders + + + + + + 129 + ASIS News: vol. 1 no. 1-vol. 1 no. 5, vol. 2 no. 2-vol. 3 no. 9, vol. 3 no. 1-vol. 5 no. 6, vol. 5-no. 8-vol. 6 no. 3, vol. 6 no. 5-vol. 6 no. 10, April -August 1981November 1981-June 1983September 1983-March 1985May 1985-February 1986April -September 1986 + + 3 folders + + + +
    + + + 129 + NFAIS Notes (National Federation of Abstracting & Information Services): Introduction and vol. 1 no. 1-7, 9-13, December 1985January -July 1986 + + + + + 129 + Perspectives On…, May 1980-May 1989 + + 7 folders + + + +

    (some issues May be missing; formed a pull-out section of JASIS)

    +
    +
    +
    +
    + + + FINANCIAL + + +

    [Restricted for 30 years of date of creation without prior permission of ASIS&T.]

    +
    + +

    The FINANCIAL series (15 linear feet) is composed of ASIS's accounting records, consisting mainly of audited financial statements, balance sheets, budgets, ledgers, investment reports, journals, revenue and expense reports, and financial statements and reports. For the period of 1967 to 1972, and for other scattered dates, individual ASIS chapters sent their financial reports to national headquarters. This chapter financial information is included in this series, but much more can be found in the Chapters series. For further financial information, the researcher should consult other series, in particular files of the Budget and Finance Committee in the Committees series. Also, a great deal of financial information is attached to correspondence in the Chronological subseries of the Correspondence series (including budgets, financial reports, and audits).

    +

    Also included in the Financial series are ASIS's insurance, pension and tax records, as well as personnel files. Only personnel files of a general nature--such as procedural manuals--have been retained.

    +
    + + + 130 + Abel, Richard and Company: regarding Bankruptcy, 1975-1976 + + + + + 130 + Accounting Partner Reports, 1985 + + + + + 130 + Accounts Payable + + + + + 130 + Accounts Payable Operator Instructions manual, 1982 + + + + + Accounts Receivable + + + + 130 + "Accounts Receivables" notes, undated + + + + + 145 + Accounts Receivable Report, 1976 + + 3 folders + + + +

    (oversized)

    +
    +
    + + + 130 + Aged Open Invoice Report, 1994 + + + + + 130 + Manual Invoice Registers, October 1991-1993 + + 3 folders + + + + + + 130 + Sales, 1990 + + +
    + + + 130 + Annual Meeting Financial Graph Originals, 1984 + + + + + 130 + ARIST Journal, 1968-1970 + + + + + Audit Materials + + + + 130 + Working Papers, 1981-1993 + + 10 folders + + + + + + Audited Financial Statements + + + + 130 + + 1960-1972 + + + 11 folders + + + + + + 130 + + 1974-1991 + 1993-1995 + + + 14 folders + + + + + + + 131 + Audits by Arthur Andersen and Company, 1971-1974 + + 2 folders + + + + + + 131 + Correspondence + + + + + 131 + Audit: re financial shortfalls, 1976 + + + + + Auditor's correspondence, 1975-1980 + + + + 131 + Deloitte, Haskins, & Sells, 1983 + + + + + 131 + Feddemann, Lesche, & Tate, 1988 + + + + + 131 + Heumann, Karl: re budget and audits, 1952-1958 + + + + + + + Balance Sheets + + + + 131 + + 1972-1973 + + + 7 folders + + + + + + 132 + 1974-19761978-19801982-1988 and 1990-1991 + + 18 folders + + + +

    (some years include other materials: projections, income statements, annual meeting information, etc.)

    +
    +
    + + + 132 + Trial Balance Sheets, 1986-1987 + + 6 folders + + + +

    (see also General Ledger Trial Balance Sheets)

    +
    +
    +
    + + + Board Financials + + + + 133 + Executive Director Miscellaneous Financial Materials, 1985 and 1994-1996 + + 2 folders + + + + + + 133 + Monthly Reports to the Board, 1988-1995 + + 7 folders + + + +

    (contains aggregated monthly financial data)

    +
    +
    + + + General + + +

    (includes balance sheets, income statements and other financial reports to the Board)

    +
    + + + 133 + 1986 and 1988-1992 + + 11 folders + + + + + + 134 + + 1993 + + + 4 folders + + + +
    + + + 134 + Projections, 1984 + + + + + 134 + Miscellaneous, 1989-1992 + + 2 folders + + + +
    + + + Budget + + + + 135 + Budget and Planning Process, 1986 + + + + + 135 + Budget Preparation, 1983 1986 1988-1989 1991 and 1996-1997 + + 7 folders + + + + + + 135 + Budgets, 1983 1985-1986 1988-1995 + + 14 folders + + + + + + + 136 + Cash Disbursements Journal, 1990 and 1995 + + 2 folders + + + + + + Cash Flow + + + + 136 + Cash Flow Analysis, 1989 + + + + + 136 + Cash Flow Projections, 1987 + + + + + + Cash Receipts + + + + 136 + "1998 Cash Receipts," 2000 + + + + + 136 + Reports, 1978-1981 + + + + + + 136 + Census Bureau Reports, 1972-1977 + + + + + 136 + Chapter Financial Reports, 1967-1970 and 1972 + + 3 folders + + + + + + 136 + Chart of Accounts, 1974-1976 and 1982 + + 4 folders + + + + + + 136 + Closing Ledger, 1975 + + + + + 136 + Commission and Inter Company Reports, 1974-1976 + + 3 folders + + + + + + Computer Services + + +

    (see also Administrative series)

    +
    + + + 136 + ASIS Computer, 1984-1986 + + + + + 136 + Computer, 1984-1985 + + + + + 136 + Computer/LE File, 1986-1987 + + + + + 136 + Computer Maintenance Contract, 1983-1985 + + + + + 136 + Membership Records Automation, 1974-1975 + + + + + 136 + National Labor Association Processing Company, 1974-1976 + + + + + 136 + Proposals, 1968-1973 + + 3 folders + + + + + + 136 + Service Bureaus, 1974 + + + + + 136 + Smith, Abbott DEC Computer System Proposal, 1985 + + +
    + + + 136 + Continuing Education Proposals, 1981-1982 + + + + + 136 + Correspondence, 1975-1977 and 1984-1985 + + 2 folders + + + + + + 136 + Cumulative Sales Report, 1975 + + + + + Financial Statements and Reports + + + + 136 + Financial Reports, 1981 + + + + + 136 + Preliminary Financial Statements, 1989 + + + + + 137 + Financial Statements, 1981 1990 1996 + + 4 folders + + + + + + 137 + Monthly Detailed Financial Statements, 1986 and 1988-1994 + + 9 folders + + + +

    (contains aggregated monthly financial data)

    +
    +
    +
    + + + 138 + Fixed Assets, 1987 + + + + + General Journal Files + + +

    (see also Journal and General Ledger)

    +
    + + + 138 + Adjusting/General Journal Entries (AJEs), 1991 and 1993 + + 2 folders + + + + + + 138 + General Journal, 1990 + + + + + 138 + General Journal Entries, 1995 + + + + + 138 + General Journal Posting, 1993-1994 + + 2 folders + + + +
    + + + General Ledger Files + + + + 139 + Detailed General Ledger, 1991 + + 2 folders + + + + + + 139 + Detail Trial Balance General Ledger, 1990 + + + + + General Ledger + + + + 139 + + 1972 + + + 4 folders + + + + + + 140 + 1973-19761991 (21 folders and one oversize folder) + + +

    (year 1991 includes related materials)

    +
    + +

    (oversize materials stored in box 145)

    +
    +
    +
    +
    + + + 140 + Gross Revenue Trends, 1976 + + + + + 141 + Income and Expense Comparisons, 1983-1984 + + + + + 141 + Insurance, 1976-1991 + + 4 folders + + + +

    (see also Administrative series)

    +
    +
    + + + 141 + Inventory, 1975 + + + + + 141 + Investment Reports, 1967-1972 + + 5 folders + + + + + + 141 + James E. Bryan, Inc.: re Administrative Fee, 1963-1969 + + + + + 141 + Journal, 1965-1968 and 1974-1975 1977 1981 and 1987 + + 9 folders + + + + + + 141 + Loans + + + + + 141 + Member Loan Program, 1981-1982 + + + + + 141 + Working Capital Loan, 1988 + + + + + 141 + General, 1990 + + + + + 145 + Management Analysis Report, 1975 + + +

    (oversize)

    +
    +
    + + + 141 + Miscellaneous Financial Reports, 1976 + + 2 folders + + + + + + 141 + Morentz, James, 1976 Consulting Services + + + + + 141 + "Omnibus Copyright Legislation": regarding Royalties, 1973-1976 + + + + + 141 + Pension and Benefits + + + + + 141 + Group Pension Administration Manual, 1976-1991 + + 2 folders + + + +

    (see also Administrative series)

    +
    +
    + + + Personnel + + + + 141 + Manual, ca. 1987-1988 + + + + + 141 + Pension and Retirement + + + + + 141 + New England Life, 1988 1992 + + + + + 141 + Position Descriptions, 1988 + + + + + 141 + Secretary Orientation Materials, 1988 + + + + + + 142 + Revenue and Expense Reports, 1974-1976 + + 10 folders + + + + + + Salary and Time Allocations + + + + 142 + + 1986-1989 + + + 7 folders + + + + + + 143 + + 1997 + + + + + + + 143 + Sales Journal and Purchase Registers, 1976-1977 + + 2 folders + + + + + + 144 + Special Interest Groups Financial Files + + +

    (see also Special Interest Groups series)

    +
    + + + 144 + Budget, 1986 + + + + + 144 + General, 1985-1986 1992-1993 + + 4 folders + + + +
    + + + 144 + Statement of Income, 1988 + + + + + Taxes + + + + 144 + Advertising about, 1970 + + + + + 144 + Annual Reports for Foreign and Domestic Corporations, 1981-1988 + + + + + 144 + DC Sales Tax Exemption, 1982 + + + + + 144 + Employer's Quarterly Tax Returns: Forms 941 and 941-T and related, 1960-1961 1973-1979 1981-1985 1987-1993 + + 4 folders + + + +

    [Restricted for 75 years from date of creation; removed to box 188]

    +
    +
    + + + 144 + Internal Revenue Service + + + + + 144 + Correspondence, 1985-1987 + + + + + 144 + IRS Problem, 1983-1985 + + + + + 144 + General, 1961-1975 + + 3 folders + + + + + + 144 + Personal Property Tax, 1962-1975 + + + + + 144 + State Income Tax Reports, 1961-1972 + + + + + 144 + Tax Deposit Forms, 1985 + + + + + 144 + Tax Exempt Status: Forms 990 and 990T and related, 1976-1984 + + + + + 144 + Unrelated Business Income Tax, 1967-1969 + + +
    + + + 144 + Transaction Journal, 1974-1976 + + 3 folders + + + + + + 144 + Treasurer's Reports and Financial Statements, 1951-1961 + + 2 folders + + + + + + 144 + Union First Bank, 1979 + + +
    + + + GRANTS AND CONTRACTS + + +

    The GRANTS AND CONTRACTS series (3.5 linear feet) documents ASIS's quest for the financing of certain publications and research projects. ASIS received funds for projects from the Council on Library Resources, the National Library of Medicine, and the National Commission on Libraries and Information Science. The National Science Foundation supported several grants for ASIS. The best documented was the study to "Investigate the Research and Development Planning Priorities of the Scientific and Technical Information Community," 1974-1975. The U.S. Office of Education sponsored the "Feasibility Study for a Consolidated File of Information Sciences" (FILS).

    +
    + + + 146 + America in the Information Age, 1976 + + + + + 146 + ASIS Policy, 1972-1975 + + + + + 146 + Council on Library Resources Grant #553: To Support Videotaping of Technical Sessions at Annual Meeting, includes Final Report, 1973 + + + + + 146 + Department of Health, Education and Welfare: Administrative Closeouts of Grants/Contracts, 1976-1981 + + + + + 146 + Microcard Editions: Reprint Rights to American Documentation, 1961-1972 + + + + + 146 + National Commission on Libraries and Information Science: Bibliographic Support Project, 1972 + + + + + 146 + National Library of Medicine, Grant #119: Education for Information Science, Documentation, 1970 + + + + + National Science Foundation + + + + Grants + + + + 146 + Demonstration, Test and Evaluation of Innovative Meeting Formats to Improve Scientific Communication, 1972 + + 2 folders + + + + + + 146 + Development of ADI Seminar Tutorial Programs and Materials in Information Science, 1967-1969 + + + + + 146 + Innovative Presentations and Information Dissemination at a Technical Meeting, 1969-1971 + + + + + Investigate the Research and Development Planning Priorities of the Scientific and Technical Information Community + + + + 146 + Advisory Board, 1974-1975 + + + + + 146 + Attachments, 1974-1975 + + + + + 146 + Background Papers, 1974-1975 + + 2 folders + + + + + + 146 + Bills Incurred, 1975 + + + + + Chapter + + + + 146 + Correspondence, 1974-1975 + + + + + 146 + Forum, May 14, 1975 + + + + + 146 + Forum Reactions, 1975 + + + + + 146 + Meetings, 1975 + + + + + 146 + Responses + + 2 folders + + + + + + 146 + Results + + + + + + 146 + Chronology, 1974-1975 + + + + + 146 + Comments on Drafts, 1976 + + + + + 146 + Consultant's Work, 1975 + + + + + 147 + Draft Issue Paper, 1975 + + + + + 147 + Final Report, 1976 + + 2 folders + + + + + + 147 + Finances, 1974-1977 + + + + + 147 + Liaison Contacts, 1974-1975 + + + + + 147 + Miscellaneous Notes, scattered dates + + + + + 147 + Proposals, 1974 + + + + + 147 + Publicity, 1975 + + + + + 147 + SIG Contacts, 1975 + + + + + 147 + Status Report, April 1975 + + + + + 147 + Transparencies and Charts + + 2 folders + + + + + + 147 + Working Papers, 1974-1977 + + 6 folders + + + + + + + 147 + Investigate the Planning Requirements of the Scientific and Technical Information Community, 1975-1980 + + +

    (same as above?)

    +
    +
    + + + 148 + Preparation and Publication of 1963 Annual Meeting Papers, 1963-1966 + + + + + Support of the Annual Review of Information Science and Technology + + + + 148 + Volumes 1-2, 1964-1966 + + + + + 148 + Volumes 3-5, 1967-1971 + + + + + + 148 + Support of the Continued Growth and Expansion in Activities of the American Documentation Institute, 1963-1964 + + + + + 148 + Symposium on State of the Art of Documentation and Information Retrieval at 1961 Annual Meeting, 1961-1962 + + + + + 148 + Workshop in Computer Controlled Photocomposition and Automatic Typesetting, 1970-1971 + + +
    + + + 148 + Grants Pending, 1969-1971 + + + + + 148 + Guidelines for a National Program for Science and Technical Information by Joseph Becker, 1975-1976 + + + + + 148 + Miscellaneous Grant Information and Forms, 1963-1972 + + + + + 148 + Office of Science Information Service: regarding Budget Cuts, 1974-1975 + + + + + Proposals + + + + 148 + Forum: Frontiers of Information Science, 1984-1985 + + + + + 148 + Support of the Publication of Information Science News, 1968 + + + + + 148 + Systematic Documentation of the Literature of Documentation, 1961-1963 + + 2 folders + + + + + + 148 + Miscellaneous Grants, 1963 + + + + + + Science Information Activities Task Force + + + + 148 + Charter, 1976 + + + + + 148 + Summary Minutes, January -June 1977 + + 2 folders + + + + +
    + + + 148 + Spartan Books: regarding the Hans Peter Luhn Publication, 1966-1971 + + + + + 148 + U.S. Air Force Office of Scientific Research Grant: Parameters of Information Science for Annual Meeting, 1964 + + + + + U.S. Office of Education + + + + Feasibility Study for a Consolidated File of Information and Library Sciences (FILS) + + + + 148 + Abstract, 1975 + + + + + 148 + Background, 1974 + + + + + 148 + Budget, undated + + + + + 148 + Correspondence, 1975 + + + + + 148 + Evaluation, 1975 + + + + + 148 + Miscellanea + + + + + 148 + Proposal, 1975 + + + + + + 148 + Project to Develop Comprehensive Bibliographies in the Field of Information Science and Technology, 1968-1969 + + + +
    + + + ANNUAL MEETINGS + + +

    The ANNUAL MEETINGS series (8 linear feet) is arranged chronologically by meeting and then alphabetically by genre. Topics include minutes of the annual business meeting, evaluation of the meeting, exhibitors, placement service, programs, proceedings, and registration lists. Documentation of specific meetings varies greatly in terms of quantity and quality. The records of Mid-Year Meetings and other major events are also included in this series. Audio tapes and videotapes of papers presented at the various sessions will be found in the CONVENTION AUDIO/VIDEO TAPES series.

    +
    + + + General Information + + + + 149 + Change Point Schedule, 1981 + + + + + 149 + Conceptual Definition, 1973-1974 of Mid-Year Meetings + + + + + 149 + Conference and Meetings Guidebook edits, 1995 + + + + + 149 + Exhibits, 1986-1988 + + + + + 149 + Financial Information, 1969-1975 + + + + + 149 + Handbook, 1980-1984 + + 7 folders + + + + + + 149 + Meeting Evaluations and Forms 1983-1986 1990-1994 + + 2 folders + + + + + + 149 + Proposals, dates, 1986-1991 + + + + + 149 + Questionnaire, 1972 + + + + + 149 + Registration Totals, 1953-1966 + + + + + + Individual Meetings + + + + 149 + 1938-1954 Washington, DC + + 16 folders + + + + + + 149 + 1954 Cleveland, OH + + + + + 149 + 1955 Philadelphia, PA + + + + + 149 + 1956 New York, NY + + + + + 149 + 1957 Chicago, IL + + + + + 1959 Bethlehem, PA + + + + 149 + Abstracts + + + + + 149 + Registration and Minutes + + + + + 149 + Papers + + + + + 149 + Program + + + + + + 149 + 1960 Berkeley, CA + + + + + 1961 Boston, MA + + + + 149 + Annual Business Meeting + + + + + 149 + General + + + + + + 1962 Hollywood-By-The-Sea, FL + + + + 149 + Correspondence + + + + + 149 + Proceedings + + + + + 149 + Reports and Program + + + + + 149 + Symposium on the Designer's Responsibility and his Methodology + + + + + + 1963 Chicago, IL + + + + 149 + Correspondence + + 2 folders + + + + + + 149 + Financial Information + + + + + 149 + Miscellanea includes Programs and Evaluation, + + + + + 149 + Registration + + + + + 149 + Reports + + 2 folders + + + + + + + 1964 Philadelphia, PA + + + + 149 + Air Force Office of Scientific Research Grant, 1964-1965 + + + + + 149 + Annual Meeting Report + + + + + 149 + Exhibitors + + + + + 149 + Exhibits Committee + + + + + 149 + Exhibit Invitation + + + + + 150 + Financial Information + + + + + 150 + Minutes + + + + + 150 + Miscellanea + + 2 folders + + + +

    (includes programs and correspondence)

    +
    +
    + + + 150 + Program and Printing Committee + + + + + 150 + Publicity Committee + + + + + 150 + Registration Lists + + + + + 150 + Registration, Receptionists, Identification Committee + + + + + 150 + Treasurers Report + + +
    + + + 1965 Washington, DC + + + + 150 + Abstracts + + + + + 150 + Annual Business Meeting + + + + + 150 + Miscellanea includes Correspondence, Exhibits and Resolutions + + + + + 150 + Press Releases + + + + + 150 + Programs + + + + + 150 + Registration Lists + + + + + + 1966 Santa Monica, CA + + + + 150 + Annual Business Meeting + + + + + 150 + Convention Committee Minutes + + + + + 150 + Correspondence + + + + + 150 + Evaluation + + + + + 150 + Exhibit Photographs + + + + + 150 + Exhibitors + + + + + 150 + Financial Information + + + + + 150 + News Releases + + + + + 150 + Placement Service + + + + + 150 + Proceedings + + + + + 150 + Programs + + + + + 150 + Reports + + + + + 150 + Student Session + + + + + + 1967 New York, NY + + + + 150 + Annual Business Meeting + + + + + 150 + Exhibitors + + + + + 150 + Final Reports + + + + + 150 + Financial Information + + + + + 150 + Miscellanea + + + + + 150 + Office Meetings and Functions + + + + + 150 + Placement Service + + + + + 150 + Press Releases + + + + + 150 + Proceedings (Publication and Distribution) + + + + + 150 + Programs + + + + + 150 + Progress Reports (Meetings of Convention Committee) + + + + + + 1968 Columbus, OH + + + + 150 + Annual Business Meeting + + + + + 150 + Evaluation + + + + + 150 + Exhibits + + + + + 150 + Final Reports + + + + + 150 + Financial Information + + + + + 150 + Mailing List (Foreign) + + + + + 150 + Miscellanea + + + + + 150 + Placement Service + + + + + 150 + Program + + + + + Registration + + + + 150 + Alphabetic Listing + + + + + 150 + Company + + + + + 150 + Zip Code + + + + + + 150 + Schedule + + + + + 150 + Steering Committee includes Minutes + + + + + + 1969 San Francisco, CA + + + + 150 + Annual Business Meeting + + + + + 150 + Awards + + + + + 150 + Chapter Assembly + + + + + 150 + Chapter Officers' Workshop + + + + + 150 + Evaluation by Donald W. King + + + + + 150 + Exhibitors + + + + + 150 + Final Program + + + + + 150 + Financial Information + + + + + 150 + Hubert H. Humphrey + + + + + 150 + Mailing Lists + + + + + 150 + Miscellanea includes Forms and Procedures + + + + + 150 + NSF Grant Application: "Support for Innovative Presentations and Information Dissemination at a Technical Meeting" + + + + + 150 + News Releases + + + + + 150 + Placement Service + + + + + 150 + Proceedings, Modified Double KWIC Coordinate Index for + + + + + 150 + Proceedings, Publishers + + + + + 150 + Programs + + + + + 150 + Program Activity Notebook + + + + + 150 + Program, Technical + + + + + 150 + Publications Committee Minutes + + + + + 150 + Publicity + + + + + 150 + Registration Lists + + + + + 150 + Reports + + + + + 150 + Thesaurus Workshop + + + + + + 1970 Philadelphia, PA + + + + 150 + Annual Business Meeting + + + + + 150 + Evaluation + + + + + 150 + Financial Information + + + + + 150 + Miscellanea + + + + + 150 + News Releases + + + + + 150 + Placement Service + + + + + 150 + Proceedings + + + + + 150 + Program + + + + + 150 + Registration Lists + + + + + 150 + Report of the Public Relations Committee + + + + + 150 + Schedule of Council, Committee and SIG Meetings + + + + + 150 + Tutorial + + + + + 150 + Workshop: "Computer Photocomposition" + + 2 folders + + + + + + + 1971 Denver, CO + + + + 150 + Annual Business Meeting + + + + + 150 + Comments + + + + + 150 + Evaluation + + + + + 150 + Financial Information + + +

    (includes transactions for 1969-1970)

    +
    +
    + + + 150 + Miscellanea + + + + + 150 + News Releases + + + + + 150 + Placement Service + + + + + 150 + Proceedings + + + + + 150 + Proceedings Microfiche + + + + + 150 + Program: "Global and Long Distance Decision Making" + + + + + 150 + Programs + + + + + 150 + Registration + + + + + 150 + Reports + + + + + 150 + Speakers Handbook + + + + + 150 + Tutorials + + +
    + + + 1972 Washington, D.C + + + + 150 + Annual Business Meeting + + + + + 150 + Conference Newsletter + + + + + 150 + Contributed Papers + + + + + 150 + Evaluation + + + + + 152 + Financial Information + + + + + 152 + International Information Retrieval Network + + + + + 152 + Miscellanea + + + + + 152 + News Releases + + + + + 152 + Open Forum + + + + + 152 + Program + + + + + + 152 + 1972 Mid-Year Meeting: Dayton, OH + + + + + 1973 Los Angeles, CA + + + + 152 + Annual Business Meeting + + + + + 152 + Miscellanea + + + + + 152 + Open Forum + + + + + 152 + Program + + + + + + 152 + 1973 Mid-Year Meeting: Bloomington, MN + + + + + 1974 Atlanta, GA, 1974 + + + + 152 + Annual Business Meeting + + + + + 152 + Evaluation + + + + + 152 + Exhibitors + + + + + 152 + Financial Information + + + + + 152 + Miscellanea + + + + + 152 + Open Forum + + + + + 152 + Participants + + + + + 152 + Placement Service + + + + + 152 + Program + + + + + + 152 + 1974 Mid-Year Meeting: Johnston, PA + + + + + 1975 Boston, MA + + + + 152 + Annual Business Meeting + + + + + 152 + Evaluation + + + + + 152 + Exhibitors + + + + + 152 + Financial Information + + + + + 152 + Keynote Address + + + + + 152 + Miscellanea + + + + + 152 + Open Forum + + + + + 152 + Photographs + + + + + Placement Service + + + + 152 + Employee Resumes + + + + + 152 + Employer Listings + + + + + + 152 + Program + + + + + 152 + Registration + + + + + 152 + Workshop: "Project to Investigate the Planning Requirements of the STI Community" + + + + + + 152 + 1975 Mid-Year Meeting: Portland, OR + + + + + 1976 Bicentennial Meeting, Washington, DC + + + + 152 + Addresses + + + + + 152 + Application for Recognition from the American Revolution Bicentennial Administration + + + + + American Revolution Bicentennial Committee + + + + 152 + Relations with ASIS + + + + + 152 + Ruth Tighe's Files + + + + + + 152 + Artifacts includes Correspondence and Photographs for Display + + + + + 152 + Articles about Meeting for BASIS + + 3 folders + + + + + + 153 + Career Counseling + + + + + 153 + Career Profile Contest + + + + + 153 + Committee Minutes + + + + + 153 + Correspondence + + + + + 153 + Exhibits + + + + + 153 + FOIA (Freedom of Information Act) + + + + + 153 + Financial Information + + + + + 153 + Funding + + + + + 153 + Mailing Lists + + + + + 153 + Miscellanea + + 3 folders + + + + + + 153 + Morentz Copies + + + + + 153 + News Releases + + + + + 153 + Participants/Speakers + + +

    (includes letter from Hubert H. Humphrey)

    +
    +
    + + + 153 + Photographs + + + + + 153 + Post Conference Reports + + + + + 153 + Program + + + + + SYNCON (Synergistic Convergence) + + + + 153 + Discussion Guides + + + + + 153 + Miscellanea + + + + + 153 + Participants + + + + + 153 + Reports + + + +
    + + + 1976 San Francisco, CA + + + + 153 + Annual Business Meeting + + + + + 153 + Committee Minutes + + + + + 153 + FID-ASIS Cooperative Arrangements + + + + + 153 + Financial Information + + + + + 153 + Miscellanea + + + + + 153 + Open Forum + + + + + 153 + Paper Presenters + + + + + 153 + Placement Service + + + + + 153 + Program + + + + + 153 + Registration + + + + + + 1977 Chicago, IL + + + + 153 + Annual Business Meeting + + + + + 153 + Correspondence + + + + + 153 + Exhibits + + + + + 153 + Financial Information + + + + + 153 + Open Forum + + + + + + 153 + 1977 Mid-Year Meeting: Syracuse University, Syracuse, NY + + + + + 1978 New York, NY + + + + 153 + Annual Business Meeting + + + + + 153 + Conference Management Manual + + + + + 153 + Correspondence + + + + + 153 + Doctoral Forum + + + + + 153 + Exhibits + + + + + 153 + Financial Information + + + + + 153 + Information Science Theater + + + + + 153 + Minutes + + + + + 153 + Miscellanea includes Photographs + + + + + 153 + News Releases + + + + + 153 + Newsletters + + + + + 153 + Open Forum + + + + + 153 + Placement Service + + + + + 153 + Programs + + + + + Registration Lists + + + + 153 + Chapters + + + + + 153 + Company/Organization Affiliation + + + + + 153 + General + + + + + 153 + Non-U.S. Attendees + + + + + 153 + SIG + + + + + + 153 + SIG Rush + + + + + 153 + Telecommunications + + + + + 153 + Workshops + + + + + + 153 + 1978 Mid-Year Meeting: Houston, TX, 1978 + + + + + 1979 Minneapolis, MN + + + + 153 + Annual Business Meeting + + + + + 153 + Attendees + + + + + 153 + Correspondence + + + + + 153 + Doctoral Forum + + + + + 153 + Evaluation + + + + + 153 + Exhibits + + + + + 153 + FID + + + + + 154 + Financial Information + + + + + 154 + Information Science Theater + + + + + 154 + Minutes + + + + + 154 + Miscellanea + + 2 folders + + + + + + 154 + Newsletters + + + + + 154 + Placement Service + + + + + 154 + News Releases + + + + + 154 + Proceedings: table of contents, index + + + + + 154 + Program + + + + + 154 + Registration List + + + + + 154 + Sessions + + + + + 154 + Workshops + + + + + + 1979 Mid-Year Meeting: Banff, Alberta, Canada + + + + 154 + Financial Information + + + + + 154 + Registration + + + + + + 1980 Anaheim, CA + + + + 154 + Annual Business Meeting + + + + + 154 + Career Advisory Service + + + + + 154 + Career Development Forum + + + + + 154 + Doctoral Forum + + + + + 154 + Evaluation + + + + + 154 + Exhibitors Reservations + + + + + 154 + Exhibits + + + + + 154 + Financial Information + + + + + 154 + Information Science Theater + + + + + 154 + Miscellanea + + + + + 154 + News Releases + + + + + 154 + Newsletters + + + + + 154 + Photographs + + + + + 154 + Programs + + + + + 154 + Registration + + + + + 154 + Steering Committee Minutes + + + + + 154 + Survey + + + + + 154 + Workshop + + + + + + 1980 Mid-Year Meeting: Pittsburgh, PA + + + + 154 + Financial Information + + + + + 154 + Miscellanea + + + + + 154 + Papers + + + + + 154 + Presidents' Forum + + + + + 154 + Program + + + + + 154 + Report + + + + + 154 + Speakers + + + + + + 1981 Washington, DC + + + + 154 + Annual Business Meeting + + + + + 154 + Career Advisory Service + + + + + 154 + Committee + + + + + 154 + Doctoral Forum + + + + + 154 + Evaluation + + + + + 154 + Exhibitors Lists + + + + + 154 + Exhibits + + + + + 154 + Financial Information + + + + + 154 + Information Science Theater + + + + + 154 + Minutes + + + + + 154 + Miscellanea + + + + + 154 + News Releases + + + + + 154 + Program + + + + + + 154 + 1981 Mid-Year Meeting: Durango, CO + + + + + 1982 Columbus, OH + + + + 154 + Annual Meeting Committee Minutes + + 2 folders + + + + + + 154 + Committee Reports + + 2 folders + + + + + + 154 + Conference and Meetings Report (Final draft) + + + + + 154 + Financial Information + + + + + 154 + Miscellanea + + + + + 154 + Program + + + + + 154 + Registration + + + + + + 1983 Washington, DC + + + + 154 + Planning + + + + + 155 + Program + + + + + + 1984 Philadelphia, PA + + + + 155 + Correspondence + + + + + 155 + Evaluations + + + + + 155 + Final Report + + + + + 155 + Invitation + + +

    (includes ms. notes)

    +
    +
    + + + Planning + + + + 155 + Timeline, Change Point Schedule, and Conference Manual + + + + + + 155 + Preliminary Program + + +

    (includes 1983 Preliminary Program and correspondence)

    +
    +
    + + + 155 + Publicity + + + + + 155 + Registration Lists + + + + + 155 + General + + 3 folders + + + +
    + + + 155 + 1984 Mid-Year Meeting: Bloomington, IN + + + + + 155 + 1985 Las Vegas, NV + + + + + 155 + 1985 Mid-Year Meeting: Ft. Lauderdale, FL + + + + + 155 + 1986 Chicago, IL + + + + + 1987 Boston, MA + + + + 155 + Conference Notebook + + + + + 155 + Correspondence + + + + + 155 + Reports + + + + + + 1988 Mid-Year Meeting: Ann Arbor, MI + + + + 155 + Call for papers, 1987 + + + + + 155 + General + + + + + + + 1989 + + + + + Annual Business Meeting + + + + 155 + Notes, October 1989 + + +

    (possibly Peter Solomon's or Dick Hill's)

    +
    +
    +
    +
    + + + 1989 Mid-Year Meeting: San Diego, CA + + + + 155 + Abstracts + + +

    (contains meeting program)

    +
    +
    +
    + + + 1990 Mid-Year Meeting: Ft. Lauderdale, FL + + + + 155 + Abstracts + + + + + 155 + Handout + + + + + 155 + Reports + + 2 folders + + + + + + 155 + Miscellaneous + + + + + + 1991 Mid-Year Meeting: Santa Clara, CA + + + + 155 + Final Program + + + + + + 1992 Mid-Year Meeting: Albuquerque, NM. + + + + 155 + Financial Information + + + + + 155 + Proceedings + + + + + + 156 + 1993 Columbus, OH + + + + + 156 + 1993 Mid-Year Meeting: Knoxville, TN: Financial Information + + + + + 156 + : Alexandria, VA + + + + + 156 + 1994 Mid-Year Meeting: Portland, OR + + + + + 156 + 1995 Chicago, IL + + + + + 156 + 1995 Mid-Year Meeting: Minneapolis, MN + + + + + 156 + 1996 Baltimore, MD + + + + + 156 + 1996 Mid-Year Meeting: San Diego, CA + + + + + 156 + 2000 Information Architecture Summit: Boston, MA: Materials for Reading/Handouts + + + + + 156 + 2001 Information Architecture Summit: San Francisco, CA: Handouts and Supplementary Materials + + +
    +
    + + + RELATED ORGANIZATIONS AND SUBJECTS + + +

    The RELATED ORGANIZATIONS AND SUBJECTS series (14 linear feet) is made up of materials about other organizations that are interested in information, information storage, and its transferal. Examples of such organizations include the American Federation of Information Processing Societies, American Library Association, American National Standards Committee, Catholic University Home Study Program, Information Industry Association, International Federation for Documentation, National Commission on Libraries and Information Science, and Special Libraries Association. Most of these organizations had liaison relationships with ASIS. Material regarding the White House Conference on Library and Information Services is included.

    +

    Also included in this series are subject files, pertaining to some aspect of information science, amassed by ASIS officers or staff but without a clear link to any one committee, unit, or outside organization.

    +
    + + + 157 + ADI Newsletter Symposium, 1965 + + + + + 157 + Africa Centre for Information Services, 1985 + + + + + 157 + Academic Press, 1972 + + + + + 157 + Access Information, Inc., 1980 + + + + + 157 + Affirmative Action Register, 1979 + + + + + American Association for the Advancement of Science (AAAS) + + + + Annual Meeting + + + + 157 + San Francisco, 1974 + + + + + 157 + New York, 1975 + + + + + 157 + Boston, 1976 + + + + + 157 + Denver, 1977 + + + + + 157 + Washington, D.C, 1978 + + + + + 157 + Houston, 1979 + + + + + 157 + San Francisco, 1980 + + + + + + 157 + Consortium of Affiliates, 1980 + + + + + 157 + General Correspondence + + 2 folders + + + +

    (years 1974-1977 include handbook; year 1979 includes summary report)

    +
    +
    +
    + + + 157 + American Chemical Society (ACS), 1976-1977 + + + + + 157 + American Council of Learned Societies, 1940 1947 + + + + + American Federation of Information Processing Societies (AFIPS) + + + + 157 + ASIS Membership Audits, 1982-1985 + + + + + 157 + Constitution and Bylaws, 1988 and undated + + 2 folders + + + + + + 157 + Correspondence, 1965-1982 + + 12 folders + + + + + + 157 + Directors Reports, 1977-1979 + + + + + 157 + Directory, 1975-1976 + + 2 folders + + + + + + 157 + Directory of Speakers on History of Computing, 1982 + + + + + 157 + Education Committee, 1970-1981 + + + + + 157 + Education Projects, 1983-1988 + + + + + 157 + Executive Directors Round Table, 1975 + + + + + 157 + Financial Information, 1965-1972 1984-1985 1987-1988 + + 3 folders + + + + + + 157 + Government Activities, 1988 + + + + + 157 + Headquarters Newsletters, 1973-1981 + + 5 folders + + + + + + 158 + Master Calendar of Information Processing Meetings, 1975-1981 + + + + + 158 + News Releases, 1976-1982 + + + + + 158 + Reports, 1985-1987 + + 2 folders + + + + + + 158 + Reports to ASIS Board, 1983-1988 + + + + + 158 + Status Reports, 1983-1988 + + 3 folders + + + + + + 158 + Technology in Education, 1985-1986 + + + + + 158 + Washington Activities Committee, 1977 + + + + + 158 + Washington Reports, 1976-1982 + + 2 folders + + + + + + 158 + White House Briefings, 1978-1979 + + + + + 158 + General, 1984-1985 1989 + + 2 folders + + + + + + + 158 + American Institute of Aeronautics and Astronautics, 1970-1971 + + + + + 158 + American Institute of Physics, 1965-1966 and 1977 + + + + + American Library Association (ALA) + + + + 158 + Accreditation Project, 1984-1988 + + 3 folders + + + + + + 158 + Annual Conference, Detroit, 1970 + + + + + 158 + Book Fellows Project, 1986-1988 + + + + + 158 + Committee on the Status of Women in Librarianship, 1981 + + + + + Correspondence + + + + 158 + Regarding ASIS Participation at ALA Convention, 1971-1973 + + + + + 158 + Regarding Opportunities for Advanced Study and CASES (Center for Advanced Study in Information Science), 1972-1978 + + + + + + 158 + ERIC Clearinghouse on Library and Information Science, 1968-1972 + + + + + 158 + Financial Assistance for Library Education, 1983-1984 + + + + + 158 + General Correspondence, 1970 and 1972-1980 + + 2 folders + + + + + + Information Science and Automation Division (ISAD) + + + + 158 + Symposium, 1969-1971 + + + + + + 158 + Library Administration and Management Association (LAMA), 1985 + + + + + Library Information Technology Association (LITA), 1985 + + + + 158 + Telecommunications Committee, 1975-1976 + + + + + + 158 + New York World's Fair Library Exhibit with SLA and ASIS, 1964 + + + + + 158 + General, 1984-1988 + + + + + + 159 + American Medical Writers Association, undated + + + + + American National Standards Committee + + +

    (see also Standards Committee in Committees series)

    +
    + + + Z-39 + + + + 159 + Bylaws, Amendments and Additions, 1979-1980 + + + + + Correspondence, 1975-1976 + + + + 159 + Committees Financial, 1979-1980 + + + + + 159 + Miscellaneous, undated + + + + + 159 + Nominating, 1979-1980 + + + + + + 159 + Correspondence, 1977-1980 + + + + + 159 + Draft Standards, 1976-1978 + + + + + Newsletter + + + + 159 + + News about Z-39 + + + + + + 159 + Voice of Z-39, 1979-1980 + + + + + + 159 + Secretariat Transfer to ASIS, 1975 + + + + + 159 + Subcommittee I Program, 1975 + + + +
    + + + 159 + American Personnel and Guidance Association, 1977 + + + + + 159 + American Revolutionary Bicentennial Administration, 1975 + + + + + 159 + American Society for Cybernetics Forum, 1974-1981 + + 2 folders + + + + + + 159 + American Society of Association Executives (ASAE), 1972-1978 1984-1985 + + 3 folders + + + + + + 159 + American Society of Indexers, undated + + +

    (includes "Directory of Courses on Indexing in Canada and the United States")

    +
    +
    + + + 159 + American University, 1978 + + + + + 159 + American University School of Government and Public Administration, 1959 + + + + + 159 + Applied Communication Research, 1975 + + + + + 159 + Architecture and Engineering Performance Information Center, 1983 + + + + + 159 + Archival Informatics Newsletter, 1988 + + + + + 159 + Asia Foundation, 1985 + + + + + 159 + Aspen Systems Corporation, 1974 + + + + + 159 + Associated Information Managers (AIM), 1987 + + + + + ASLIB (Association of Special Libraries and Information Bureaux) + + + + 159 + Annual Report, 1976 + + + + + 159 + Brochures, 1977-1978 + + + + + 159 + Correspondence, 1983-1988 + + + + + + 159 + Association for Computing Machinery (ACM), 1967-1974 1978 1989 + + + + + 159 + Association for Information and Image Management (AIIM), 1989 + + + + + 159 + Association for Systems Management (ASM), 1978-1980 + + + + + 159 + Association of Colleges and Research Libraries (ACRL), 1985 + + + + + 159 + Association for the Development of Religious Information System (ADRIS), 1973-1976 + + +

    (includes directory and newsletters)

    +
    +
    + + + 159 + Association of Data Processing Service Organizations, 1977-1980 + + + + + 159 + Association of Interface Committee, 1979-1980 + + + + + 159 + Association of Independent Information Professionals, (AIIP), 1988-1992 + + 2 folders + + + + + + 159 + Association of Record Managers and Administrators, Inc. (ARMA), 1984-1986 1988-1989 + + + + + 159 + Association of Research Libraries, 1973 + + + + + 159 + Association of Scientific Information Dissemination Centers (ASIDIC), 1973 + + + + + 159 + Association Friends, 1979 + + + + + 159 + Auerbach, 1975 + + + + + 159 + Baltimore Region Institutional Studies Center (BRISC), 1975 + + + + + 159 + Battelle, 1974-1976 + + + + + 159 + Bio-Sciences Information Service, 1975-1976 + + + + + 159 + Bowker, R.R.: regarding Bowker Annual, 1975-1980 + + + + + Canadian Association for Information Science + + + + 159 + General Information, 1970-1982 + + + + + 159 + Membership Lists, 1973 + + + + + 159 + Newsletters, 1971-1974 + + + + + + Catholic University Home Study Program + + + + 160 + Agreement, 1976 + + + + + 160 + Bibliographic Support, November 1971-December 1975 + + 5 folders + + + + + + 160 + Budget, 1975-1976 + + + + + Correspondence + + + + 160 + Regarding Establishment and Administration, 1974-1977 + + + + + 160 + Regarding Reprint Rights, 1976-1977 + + + + + 160 + Requesting Information about Program, 1976-1977 + + + + + + 160 + Marketing, 1976 + + + + + 160 + Minutes, 1975 + + + + + Modules + + + + 160 + I, Motivation in the Organizational Setting, undated + + + + + 160 + I, Papers on Motivation, 1975-1976 + + + + + 160 + II, 1976 + + +

    (includes readings)

    +
    +
    + + + 160 + II-IV, 1976 + + +

    (includes readings)

    +
    +
    +
    + + + 160 + Registrants, 1976 + + + + + 160 + Reports: on the Motivation Module, 1976 + + +
    + + + 160 + Center for Office Technology, 1985 + + + + + 160 + Center for Program Development and the Handicapped, 1975-1976 + + + + + 160 + Center for Strategic International Studies (CSIS) + + + + + 160 + Central Documentation Program, Central Air Documents Office (CADO): joint Navy-Air Force program, ca. 1948 + + +

    (Eugene B. Jackson's copy of a manual)

    +
    +
    + + + 160 + Chemical Abstracts Service, 1982 + + + + + 160 + China, 1980 + + + + + 160 + Civil Service, 1969 and 1972 regarding Classification and Salary Schedule + + + + + 160 + Coalition on Government Information, 1988 + + + + + 160 + Commission on New Technological Uses of Copyrighted Works, National (CONTU), ca. 1974 and 1978 + + + + + 160 + Commission on Software Issues, 1980-1984 + + + + + 160 + Committee on Scientific and Technical Information, 1965-1972 + + + + + Committee to Investigate Copyright Problems Affecting the Communication of Scientific and Educational Information, Inc. (CICP) + + +

    (primarily Gerald Sophar's files)

    +
    + + + 160 + Copyright, 1958-1959 + + + + + 160 + Corporate Documents, 1960-1973 + + + + + Tax Documents + + +

    [Restricted until 2048; removed to box 188]

    +
    + + + 160 + Taxes Paid, 1966 + + + + + 160 + Tax Returns, 1969-1970 + + + + + 160 + Tax-Exempt Application, 1967-1973 + + +
    +
    + + + 160 + Computer in American Education, Conference on, 1965-1966 + + + + + Computer Readable Bibliographic Data Bases + + + + 160 + Correspondence and Reports, 1976-1980 + + 2 folders + + + + + + + 160 + The Computer Workshop of Northern Virginia, Inc., 1980 + + + + + 160 + Conference on Foreign Journals, ADI, 1942 + + + + + 160 + Conference on Population and Housing Census Users, 1965-1968 + + + + + 160 + Conference on the History and Heritage of Science and Information Systems, 1999 + + + + + 160 + Congressional Clearinghouse on the Future, 1977-1980 + + + + + Continuing Library Education Network and Exchange (CLENE) + + + + 161 + Abstract, 1976 + + + + + 161 + Continuing Education Communicator, 1980 + + + + + 161 + Correspondence, 1975-1980 + + 2 folders + + + + + + 161 + Minutes, 1976 + + + + + 161 + Newsletters, 1975-1976 and 1980 + + + + + Reports + + + + 161 + Final, 1975-1976 + + + + + 161 + Monthly and Quarterly, 1975-1976 + + + + + + + 161 + Contracts, 1980 + + + + + 161 + Conversion of Serials Project (CONSER), 1973-1976 + + + + + 161 + Copyright, 1976 1979-1981 1986-1989 + + 3 folders + + + + + + Copyright Clearance Center, Inc. (CCCI) + + + + 161 + First Year Operating Experience, 1979 + + + + + 161 + Handbook for Serial Publishers, 1977-1978 + + + + + 161 + News Releases and Brochures, 1979 + + + + + + 161 + Copyright Revision Bill, 1976-1977 + + + + + 161 + Corporate Ownership and Position Statement (COPS), 1977 + + + + + 161 + Corporate Ownership Reports Access (CORA), 1976-1977 + + + + + 161 + Corporation for Open Systems, (COS), 1988 + + + + + 161 + Council for Computerized Library Networks (CCLN), 1979 + + + + + 161 + The Council for Exceptional Children, 1974 + + + + + 161 + Council of Communication Societies (CCS), 1970-1972 and 1977 + + + + + 161 + Council of Library Association Executives (CLAE), 1979 + + + + + Council on Library Resources (CLR) + + + + 161 + Correspondence, 1972-1976 + + + + + 161 + Miscellanea, 1976-1977 + + + + + 161 + Newsletters: "Recent Developments," 1972-1982 + + + + + + 161 + Council of Professional Associations on Federal Statistics, 1982 + + + + + 161 + Council on Documentation Research, 1958-1960 + + + + + Council on Library Associations + + + + 161 + Correspondence, 1977-1979 + + + + + 161 + Minutes, 1978-1980 + + + + + 161 + News Releases and Brochures, 1978-1981 + + + + + + 161 + Crawford Information Systems, 1977 + + + + + 161 + Curriculum Development, 1972 + + + + + 161 + DEVSIS Newsletter, 1975 + + + + + 161 + Data Processing Management Association (DPMA), 1977-1978 1987 + + + + + 161 + Dataflow Systems, 1976-1979 + + + + + 161 + Definitions of Information Science, 1970 and 1973 + + + + + Directories + + + + 161 + Articles About, 1969-1977 + + + + + 161 + Correspondence, 1971 and 1979-1981 + + + + + + Documentation Abstracts + + +

    (later name Information Science Abstracts, see also)

    +
    + + + 161 + Board Correspondence, 1964-1969 + + 3 folders + + + + + + 161 + Correspondence, 1965-1979 + + 3 folders + + + +

    (includes correspondence with SLA, ACS, Aslib, et al.)

    +
    +
    + + + 161 + Reports, 1965-1966 + + + + + 161 + Minutes, 1966-1969 + + 2 folders + + + +
    + + + 162 + Documentation Society, undated + + + + + 162 + Domestic Council Committee on the Right of Privacy, 1976 + + + + + 162 + Drug Information Association, 1975 + + + + + 162 + Educational Media Yearbook, 1975-1976 + + + + + Educational Resources Information Center (ERIC) + + + + 162 + Correspondence, 1976-1980 + + + + + 162 + Miscellanea, 1976-1977 + + + + + 162 + Publications, 1978 + + + + + 162 + Quarterly Progress Reports, 1977 + + + + + + 162 + Electronic Mail Association, 1985 + + + + + ERIC Clearinghouse on Library and Information Sciences + + + + 162 + Annual Reports, 1970-1973 + + 2 folders + + + + + + 162 + Correspondence, 1968-1970 and undated + + + + + Proposals to the National Science Foundation + + + + 162 + + September 1, 1969 + + + + + + 162 + + September 10, 1969 + + + + + + 162 + + October 1, 1969 + + + + + + + Proposals to the U.S. Office of Education + + + + 162 + + September 1, 1969 + + + + + + 162 + + October 1, 1969 + + + + + + 162 + + October 14, 1969 + + + + + + + + 162 + Encyclopedia of Library and Information Science, undated + + + + + 162 + Engineering Information, Inc., 1982 + + + + + 162 + European Association of Information Services (EUSIDIC), 1986 + + + + + 162 + The European On-Line Information Network (EURONET), 1976 + + + + + 162 + FASEB Placement Service, 1965 + + + + + 162 + F. W. Faxon Company, 1978 + + + + + 162 + Federal DP Expo, 1981 + + + + + 162 + Federal Information Research Science and Technology Network, 1969 + + + + + 162 + Federal Library and Information Committee (FLICC), 1988 + + + + + Federal Library Committee (FLC) + + + + 162 + Agenda and Summary, 1971-1973 and 1980 + + + + + 162 + Annual Reports, 1974 + + + + + 162 + Executive Secretary's Comments, 1972 + + + + + 162 + Miscellanea, 1972 and 1979 + + + + + 162 + Study of Federal Library/Information Service Staffing, 1978 + + + + + + 162 + Federal Professional Association, 1980-1981 + + + + + 162 + Foundation Center, 1976 and 1979 + + + + + 162 + German Foundation for International Development, 1975 + + + + + 162 + IDCAS, undated + + + + + 162 + ISTDB (Information Science and Technology Data Base), undated + + + + + 162 + Illinois State Library Advisory Committee on Education and Training, 1971-1975 + + + + + 162 + Inform Seminars, 1980 + + + + + 162 + Information and Publishing Systems, 1978 + + + + + 162 + The Information Bank, 1976-1979 + + + + + 162 + Information Clearinghouse, 1975 + + + + + 162 + Information Engineering, 1974-1975 + + + + + Information Industry Association (IIA) + + + + 162 + Bulletin, 1970 + + + + + 162 + Conferences, 1970-1976 + + + + + 162 + Correspondence, 1971-1980 + + + + + 162 + Information Action, 1971 + + + + + 162 + Membership Lists, 1970 + + + + + 162 + Minutes, 1970 + + + + + 162 + Miscellanea, 1971-1972 + + + + + 162 + News Releases, 1974-1980 1988 + + + + + 162 + Progress Report, 1983 + + + + + + 162 + Information Manager, 1979 + + + + + 162 + Information Resources Administration Councils (IRAC), 1983-1986 + + + + + 162 + Information Retrieval and Library Automation, 1979 + + + + + 162 + Information Science Abstracts (ISA), 1975-1978 and 1982-1983 + + 2 folders + + + +

    (earlier name Documentation Abstracts, see also)

    +
    +
    + + + 162 + Information Science and Technology Association, Japan (INFOSTA), 1988 + + + + + 162 + Information Science Corporation, 1979-1980 + + + + + 162 + Information Specialists, 1979 + + + + + 162 + Information Technology Associates, 1979 + + + + + 162 + Information Utilities Conference, 1981 + + + + + 162 + Infoscope, 1981 + + + + + 162 + Infoterm, 1985 + + + + + 162 + Institute for Information Policy and Research, 1980 + + + + + 162 + Institute of Electrical and Electronics Engineers (IEEE),1984-1985 1988 and undated + + + + + 162 + Institute of Information Scientists (IIS), 1971-1981 1983-1984 + + + + + 162 + Intergovernmental Bureau for Informatics (IBI), 1981 + + + + + 162 + International Center for Information Technologies (ICIT), 1988 + + + + + 162 + International Conference on Computer Communications, 1972-1973 + + + + + 162 + International Cultural and Trade Center Foundation, 1974 + + + + + International Federation for Documentation (FID) + + + + 162 + Budget, 1975 + + + + + Committees + + + + 162 + Committee on Linguistics in Documentation, 1975-1980 + + + + + 163 + Documentation Terminology Committee, 1976 + + + + + 163 + Education and Training Committee, 1971-1973 and 1980 + + + + + 163 + Executive Committee, 1976 + + + + + 163 + Program Committee, 1974-1976 + + + + + United States National Committee + + + + 163 + Correspondence, 1974-1981 + + + + + 163 + Minutes, 1975 + + + + + 163 + Nominations, 1976 + + + + + 163 + Program Committee, 1974-1975 + + + + + + + 163 + Correspondence, 1973-1976 1980-1983 1986 1988 + + 5 folders + + + +

    (year 1975 re publication distribution)

    +
    +
    + + + Council + + + + 163 + Agenda, 1975 + + + + + 163 + Reports, 1975 + + + + + + 163 + Dues Structure, 1976 + + + + + 163 + Financial Information, 1974-1975 + + + + + 163 + Miscellanea, 1975-1981 + + + + + 163 + Reports, 1972 and undated + + + + + 163 + Statutes, 1983 + + + + + Symposia and Conferences + + + + 33rd Conference of FID and International Congress on Documentation, Tokyo, 1967 + + + + 163 + List of Participants + + + + + + 163 + The Hague, 1974 + + + + + Brussels, 1975 + + + + 163 + Memos + + + + + 163 + Papers + + + + + 163 + Program and List of Participants + + + + + 163 + Reports + + + + + + 163 + Finland, 1985 + + + + + Mexico City, 1976 + + + + 163 + Agenda and Program + + + + + 163 + Correspondence, 1975-1976 + + + + + 163 + News Releases + + + + + 163 + Regulations + + + + + + 163 + Edinburgh, 1978 + + + + + 163 + Copenhagen, 1980 + + + + + 163 + Hong Kong, 1982 + + + +
    + + + 163 + International Federation for Information Processing (IFIP), 1977-1980 1983-1986 + + + + + 163 + International Federation of Library Associations (IFLA), 1981 1985 1989 + + + + + 163 + International Office of Bibliography, undated + + + + + 163 + International Organization for Standardization (ISO), 1975 + + + + + 163 + Joint Agreements Group (JAG), 1969 + + + + + 163 + Joint Venture, 1975 + + + + + King Research, Inc. + + + + 164 + Correspondence, 1978 + + + + + 164 + Paper: "Concepts for Evaluating Information Centers" with attachments + + 16 folders + + + + + + + 164 + Knowledge Industry Publications, INC. (KIPI), 1978-1980 + + + + + 164 + Latham Press Corporation, 1976 + + + + + Legislation + + + + 164 + Bills, 1969 + + + + + 164 + Correspondence, 1969 + + + + + + 164 + Librarian of Congress: Opposition to Appointment of Daniel Boorstin, 1975 + + + + + 164 + The Library Automation Research and Consulting Association, 1971-1973 + + + + + 164 + Library Education, 1970-1972 and 1979 + + + + + 164 + Library Journal, 1978 + + + + + 165 + Library of Congress Network Advisory Committee, 1978 + + + + + 165 + Library Partnership Act, 1975 + + + + + 165 + Marc Update Service, 1975-1977 + + + + + 165 + Medical Library Association (MLA), 1946 1975 1984 1988 1989 and undated + + + + + 165 + Microcard Editions, 1975-1976 + + + + + 165 + Miscellanea, 1976-1981 + + + + + 165 + National Academy of Science, 1976 + + + + + 165 + National Advisory Commission on Libraries, 1967 + + + + + 165 + National Association for State Information Systems (NASIS), 1975 + + + + + 165 + National Association of Government Archives and Records Administration (NAGARA), 1983-1987 + + + + + 165 + National Association of State Information Resource Executives (NASIR), 1990-1991 + + + + + 165 + National Audio Visual Association (NAVA), 1972-1973 + + + + + National Auxiliary Publications Service (NAPS) + + + + 165 + Agreement between ASIS and Microfiche Systems Corporation, 1972 + + + + + 165 + Agreement between ASIS and Research and Microfilm Publications, undated + + + + + 165 + Correspondence, 1968-1973 + + 4 folders + + + + + + + 165 + National Bureau of Standards, 1964 regarding the Symposium on Statistical Association Methods for Mechanized Documentation + + + + + The National Center for Law Information + + + + 165 + Miscellanea, 1971-1974 + + + + + 165 + Proposal: "National Center for Law Information Concept: A Discussion," 1970 + + + + + + 165 + National Citizens Committee for Broadcasting, 1979 + + + + + National Commission on Libraries and Information Science (NCLIS) + + + + 165 + Annual Report, 1985-1986 + + + + + Correspondence + + + + 165 + + 1971-1976 + + + 3 folders + + + + + + 166 + + 1977-1988 + + + 3 folders + + + + + + + 166 + Meeting Agenda, 1979-1980 + + + + + 166 + Membership List, 1973 + + + + + 166 + Miscellanea, 1970-1975 + + + + + 166 + News Releases, 1971-1982 + + 5 folders + + + + + + 166 + Paperwork Reduction Act, 1989-1990 + + + + + 166 + Proposal: regarding the National Program for Libraries and Information Science, 1973 + + + + + 166 + Report Drafts, 1974 + + + + + 166 + Reprints and Photocopies, 1974 and 1978 + + + + + 166 + Study: "Elements of Information Resources Policy..." by Anthony G. Oettinger, 1975 + + + + + 166 + Task Force on American National Standards Institute Committee, 1977 + + +

    (includes Activities and Future Directions)

    +
    +
    + + + Testimony + + + + 166 + Before Subcommittee on Education of the Senate Labor and Public Welfare Committee, 1969 + + + + + 166 + Before NCLIS, 1974 + + + +
    + + + 166 + National Computer Conference (NCC), 1975-1976 1985-1986 + + 2 folders + + + + + + 166 + National Council on Quality Continuing Education, Information, Library, Media Personnel, 1980 + + + + + National Federation of Abstracting and Indexing Services (NFAIS) + + + + 166 + ANSI Z-39 and Standards, 1977-1981 + + + + + 166 + Annual Report, 1974 and 1980 + + + + + 166 + Assembly Business Meeting, 1979-1980 + + + + + 166 + Board of Directors Minutes, 1977-1980 + + + + + 166 + Brochures, including History of Organizations, scattered dates + + + + + 166 + Budget, 1978-1979 + + + + + 166 + Bylaws, 1978 + + + + + 166 + Conferences, 1975-1980 1985 + + + + + 166 + Correspondence, 1971-1987 + + 8 folders + + + + + + 166 + Financial Information, 1980 + + + + + 166 + Government and International Relations Committee, 1979 + + + + + 166 + Marketing Committee, 1975-1979 includes Minutes + + + + + 166 + Member Service Supplement, 1974-1981 + + + + + 166 + Membership, 1973-1981 includes 1978 Directory + + + + + 166 + Miscellanea, 1978 + + + + + 166 + News Releases, 1974-1981 + + + + + 166 + Newsletters, 1977-1979 + + + + + 166 + Officers, 1973-1974 + + + + + 166 + Reports, 1974 + + + + + + 166 + National Indian Omnibus Library Bill, undated + + + + + 167 + National Information Retrieval Colloquium (NIRC), 1976 + + + + + 167 + National Information Standards Organization (NISO), 1981-1989 + + + + + 167 + National Labor Association Processing Company, 1975-1977 + + + + + 167 + National Library of Medicine, 1971-1972 and 1975 + + + + + National Micrographics Association + + + + 167 + Association Interface Committee, 1980 + + + + + 167 + Miscellanea, 1974-1981 + + +

    (includes membership directory)

    +
    +
    +
    + + + 167 + National Online Circuit, 1980 + + + + + 167 + National Periodicals Center, 1979-1981 + + + + + National Science Foundation (NSF) + + + + 167 + Congressional Committee Membership, 1976 + + + + + 167 + Correspondence, 1963-1980 + + 10 folders + + + + + + 167 + Information Science and Technology, 1974-1978 + + + + + 167 + Miscellanea, scattered dates + + + + + 167 + Office of Science Information Services, 1973-1974 + + + + + 167 + Organizational Directory and Chart, 1974 and 1980 + + + + + 167 + Program Announcements, 1977-1979 + + + + + 167 + Projects, 1963 and 1975 + + + + + 167 + Proposals, 1978-1979 + + + + + Science Information Activities Task Force + + + + 167 + Charter, 1976 + + + + + 167 + Correspondence, 1977 + + + + + 167 + History, 1977 + + +

    (includes miscellanea)

    +
    +
    + + + 167 + Membership, 1977 + + + + + 167 + Minutes, 1977 + + +
    + + + 167 + Statements: before Congressional Committees, 1974-1975 and 1978 + + +
    + + + 167 + National Technical Information Service (Department of Commerce), 1973-1977 + + + + + 167 + National Telecommunications and Information Administration (Department of Commerce), 1978-1979 + + + + + 167 + National Translation Center, 1975 + + + + + 167 + New Worlds Video, 1976 + + + + + 167 + North Atlantic Treaty Organization (NATO), 1966 and 1975-1976 + + + + + 168 + Online Review, 1980-1981 + + + + + 168 + On-Line Systems, 1979-1980 + + + + + 168 + On-Line Users, 1976 + + + + + 168 + Orb Foundation, 1975 + + + + + 168 + Organization for Economic Cooperation and Development (OECD), 1974 and 1978 + + + + + 168 + Oriental Science Literature Service, ADI, 1941 + + + + + 168 + Pennsylvania Library Association, 1987 + + + + + 168 + People's Republic of China, 1987 + + + + + 168 + Pittsburgh, University of, undated + + + + + 168 + Placement Services, 1962-1968 and 1979 + + + + + 168 + Policy Studies Organization, 1979 + + + + + 168 + President's Committee on Science and Technology, 1977 + + + + + 168 + PRC Computer Center, 1975 + + + + + 168 + President's Forum, 1980-1982 + + 2 folders + + + + + + 168 + Privacy Protection Study Commission, 1975-1976 + + + + + 168 + Program for Information Managers, 1978 + + + + + 168 + Program on Information Technologies and Public Policy, 1975-1976 + + + + + 168 + Public Relations, 1979-1980 + + + + + 168 + Reprint Requests, 1975-1979 + + + + + 168 + The Research Libraries Group, 1978-1980 + + + + + 168 + The Ringgold Corporation, 1975-1976 + + + + + 168 + Saracevic, Tefko, 1975 + + + + + 168 + Science Associates International, 1971 and 1975-1976 + + + + + Science Information Council (NSF, Office of Science Information Service) + + + + 168 + Agendas, 1959-1974 + + + + + 168 + Contents, 1959-1971 + + + + + 168 + Meetings, 1959-1963 + + 3 folders + + + + + + + 168 + Science Service, 1925-1952 + + +

    (organization headed by Watson Davis; predecessor to ADI)

    +
    +
    + + + 168 + Scientific Research Society, 1988 + + + + + 168 + Simulation Councils, Inc., 1967 + + + + + 168 + Smithsonian Science Information Exchange (SSIE), 1974 + + + + + 168 + Society for Scholarly Publishing, 1978-19791987 + + + + + 168 + Society for Technical Communication, 1974-1978 + + + + + 168 + Society of National Association Publications (SNAP), 1976 + + + + + 168 + Spartan Books, 1964-1967 + + + + + Special Libraries Association + + + + 169 + Annual Meetings, 1971-1980 + + 6 folders + + + + + + 169 + Articles and Tear Sheets, 1970-1980 + + + + + 169 + Brochures, 1979 and undated + + + + + 169 + Correspondence, 1947 1970-1988 + + 3 folders + + + + + + 169 + Financial Information, 1975 + + + + + 169 + News Releases, 1976-1980 + + + + + + 169 + State of New Jersey: Governor's Commission on Science and Technology, 1985 + + + + + UNESCO (United Nations Educational, Scientific, and Cultural Organization) + + + + 169 + Editors of Documentation, 1972 + + + + + General Information Program (PGI) + + + + 169 + Agenda and Program, 1978-1979 + + + + + 169 + Correspondence, 1948-19491975 1978-1979 1982-1984 + + 2 folders + + + + + + 169 + Papers, 1968 1977-1979 + + + + + + 169 + Information and Documentation Systems, Meeting on, 1975 + + + + + + 169 + UNISIST, 1971 + + + + + 169 + UNISIT, 1978-1980 + + + + + 169 + USNCFID, 1959-1960 1976 + + +

    (includes Correspondence)

    +
    +
    + + + 169 + U. S. Asiatic Company, 1976 + + + + + United States + + + + Civil Service Commission + + + + Correspondence + + + + 169 + Civil Service Qualification Standards, GS 1410 and 1411 1971-1982 + + + + + 169 + Civil Service Qualification Standards, GS 1412 1973-1976 + + + + + 169 + Standards of U. S. Civil Service Commission, 1971 + + + + + + + Congress + + + + 169 + House Resolution 4461 1975-1980 + + + + + 169 + House Subcommittee on Science, Research and Technology, 1974 + + + + + 169 + Office of Technology Assessment, 1989 + + + + + 169 + Subcommittee on Patent and Information Policy, 1978 + + + + + + Department of + + + + 169 + Agriculture, 1981 Reports from the Office of the Secretary + + + + + Commerce + + + + 169 + National Technical Information Service (NTIS), 2000 + + + + + + Education + + + + 169 + Correspondence and News Releases, 1981 + + + + + 169 + Project Reports: "A Library and Information Science Research Agenda for the 1980s" 1981 + + + + + 169 + Projects, 1982 + + + + + + + 169 + Education, Office of: Summary Synthesis, 1976 + + + + + 169 + Management and Budget, Office of, 1980 + + +

    (regarding Information System Policy)

    +
    +
    + + + 169 + National Commission for UNESCO, 1981 + + + + + 169 + Personnel Management, Office of, 1982 + + +
    + + + 169 + Universities, 1972-1973 + + + + + 169 + University Microfilms, 1963-1970 + + + + + 169 + University of California: Institute of Library Research, 1973 + + + + + 169 + University of Chicago: Graduate Library School, 1968 + + + + + 169 + Urban Information Interpreters, 1973 + + + + + 169 + Urban Regional Information Systems Association (URISA), 1971-1973 + + + + + 169 + Videotapes, 1971-1972 + + + + + 169 + Welding and Testing Technology Exhibition and Conference (WATTec), 1987 + + + + + 170 + White House, 1974-1975 + + + + + White House Conference on Library and Information Services (WHCLIS) + + + + 170 + Agenda, 1979 + + + + + 170 + Clippings File, 1979 + + + + + 170 + Company Brochures, 1979 + + + + + 170 + Conference Brochures, 1979-1980 + + + + + 170 + Conference Dates, 1978 + + + + + 170 + Congressional Resolutions, 1970-1974 + + + + + 170 + Correspondence and Memoranda, 1978-1981 and undated + + 8 folders + + + + + + 170 + Delegates and Alternates, 1979 + + + + + 170 + Discussion Guides, 1979 + + + + + 170 + Films on Library and Information Sciences, 1979 Catalog + + + + + 170 + Glossary of Library and Information Science Terms, undated + + + + + 170 + Group Summary, 1979 + + + + + 170 + History, 1979 + + + + + 170 + Invitees and Attendees, May 1979-February 1980 and undated + + 4 folders + + + + + + 170 + Issue Papers, 1979 + + + + + 170 + Issues and Resolutions, 1979 + + + + + 170 + Miscellanea, 1979 + + + + + 170 + News Releases, 1977-1980 + + 2 folders + + + + + + 170 + On-Line Databases, 1979 + + + + + 170 + Planning Program, July 1979 + + + + + 170 + Policy, undated + + + + + 170 + Pre-White House Conference, 1979 + + + + + 170 + Program, 1979 + + + + + Proposals and Statements + + + + 170 + ASIS, 1978-1980 + + + + + 170 + Miscellaneous Organizations, 1973-1974 and 1978-1980 + + + + + 170 + National Commission on Libraries and Information Science, 1974 and 1978-1979 + + + + + 170 + Special Libraries Association, 1974 + + + + + + 170 + Reference Book Collection, 1979 + + + + + 170 + Resolutions, 1979-1980 + + + + + 171 + State and Territorial Conferences + + 4 folders + + + + + + 171 + Summary and Final Report, undated + + + + + 171 + Theme Conference Summary, 1978-1979 + + + + + 171 + WHC Update, 1979 + + + + + 171 + World Congress of Universal Documentation, 1937 + + + + + + White House Conference on Library and Information Services II + + + + 171 + General, 19891990 + + + + + + 171 + Zator Company: Calvin Mooers, 1950-1962 + + +
    + + + SPECIAL LIBRARIES ASSOCIATION MERGER + + +

    The SPECIAL LIBRARIES ASSOCIATION MERGER series (1 linear foot) documents the process ASIS and SLA went through when they considered merging their organizations. The merger was not completed.

    +
    + + + 172 + Annual Reports: of SLA Special Representative to ASIS, 1972-1974 + + + + + 172 + Articles regarding 1970-1971 + + + + + 172 + Chronology ASIS/SLA Merger Discussions, 1968-1970 + + + + + 172 + Comparison of ASIS and SLA, 1969-1970 + + + + + 172 + Correspondence, 1969-1975 + + 10 folders + + + + + + 172 + Feasibility Study, 1969-1970 + + + + + 172 + Financial Information, 1968-1971 + + 3 folders + + + + + + 172 + Implementation Plan, 1969-1970 + + + + + Joint Operating Group + + + + 172 + Correspondence, 1963-1966 + + 2 folders + + + + + + 172 + Reports, 1963-1966 + + + + + 172 + General, 1921-1957 1963-1971 and undated + + 3 folders + + + +

    (years 1921-1957 primarly photocopies)

    +
    +
    +
    + + + 172 + Membership, undated + + + + + 172 + Minutes, 1969-1970 + + + + + 172 + Miscellanea, 1969-1970 + + + + + 172 + Motions, 1969-1970 + + + + + 172 + Paper: "ERIC/CLIS: An Information Resource for Librarians," 1970 + + + + + 172 + Proposal Advantages, 1969 + + + + + 172 + Questionnaire, 1970-1971 + + + + + 172 + Reel-to-Reel tapes, undated + + + + + 172 + Reports, 1970 + + + + + Special Libraries Association + + + + 172 + Brochures, 1969-1970 and undated + + + + + 172 + Division Manual, 1970 + + + + + + 172 + Tear Sheets and Photocopies, 1969-1971 + + 2 folders + + + +
    + + + CONVENTION AUDIO/VIDEO TAPES + + +

    The CONVENTION AUDIO/VIDEO TAPES series comprises sixteen linear feet, the bulk of which includes tapes of papers presented at the annual meetings, in addition to annual business meetings, plenary sessions, doctoral forums, special forums, special panels, and symposia. The tapes are arranged chronologically by convention starting in 1972. Most of the cassette boxes are labeled with a list of the titles and numbers assigned to all the tapes which were created. The library does not hold a complete set of tapes, however. Though there are some missing tapes for every convention, the convention tapes in this collection provide good documentation of the topics discussed at the annual meetings.

    +

    There are a few scattered videotapes for the 1975, 1977, and 1980 conventions. Most of them are videocassettes in unidentified non-VHS formats. There are also two open reel (reel-to-reel) videotapes.

    +

    A small amount of additional visual materials, including microfiche and photographs, is scattered throughout the collection.

    +
    + + + 1972 Convention (Washington, D.C.) + + + + T1-T3 + + 1 folder + + + + + 173 + International Information Systems Under Development [T-1A-C] + + + + + 173 + Modern Parliamentary Information Systems [T2] + + + + + 173 + Libraries and International Information Exchange [T3A-C] + + + + + + T4-T6 + + 1 folder + + + + + 173 + International Uses of All U.S. Data Bases [T4A-B] + + + + + 173 + International Cooperation: Information Science Education and Research [T5A-B] + + + + + 173 + Shaping of International Information Systems by Technology [T6A-B] + + + + + + T6-T8 + + 1 folder + + + + + 173 + Shaping of International Information Systems by Technology [T6C] + + + + + 173 + Social, Political and Economic Factors in International Information Flow [T7A-B] + + + + + 173 + Highlights [T8] + + + + + + 1-7 + + 1 folder + + + + + 173 + SIG/Costs, Budgeting, and Economics (CBE) [1 and 1A] + + + + + 173 + Costing Information Activities: Information Supply [2A] + + + + + 173 + Costing Information Activities: Information Demand [2B] + + + + + 173 + SIG / Automated Language Processing (ALP) [3] + + + + + 173 + SIG/Technology, Information and Society (TIS) [4 A-B] + + + + + 173 + SIG/Foundations of Information Science (FIS) [5A-B] + + + + + 173 + Opening Session [6] + + + + + 173 + Copyright Debate [7 A-B] + + + + + + 8-14 + + 1 folder + + + + + 173 + Epitome Session [8 A-B and 9 A-B] + + + + + 173 + SIG/Technology, Information and Society (TIS) [10 A-B] + + + + + 173 + SIG/Information Analysis Centers (IAC) [11] + + + + + 173 + Intersociety Panel [12 A-B] + + + + + 173 + Epitome Session Contributed Papers [13 A-B and 14 A] + + + + + + 14-20 + + 1 folder + + + + + 173 + Epitome Session Contributed Papers [14 B] + + + + + 173 + SIG/Arts and Humanities (AH) [15 A-B] + + + + + 173 + SIG/Automated Language Processing (ALP) [16 A-B] + + + + + 173 + Plenary Session [17] + + + + + 173 + Certification Debate [18 A-B] + + + + + 173 + Epitome Session Contributed Papers [19 A-B and 20 A-B] + + + + + + 21-27 + + 1 folder + + + + + 173 + SIG/Behavioral and Social Sciences (BSS) [21 A-B] + + + + + 173 + SIG/Reprographic Technology (RT) [22 A-B] + + + + + 173 + SIG/Costs, Budgeting and Economics (CBE) [23] + + + + + 173 + Panel: Annual Review of Information Science and Technology (ARIST) [24 A-B] + + + + + 173 + Panel: U.S-U.S.S.R. Symposium on Scientific and Technical Information [25 A-B] + + + + + 173 + Epitome Session Contributed Papers [26 A-B and 27 A] + + + + + + 27-33 + + 1 folder + + + + + 173 + Epitome Session Contributed Papers [27 B] + + + + + 173 + SIG/Non-Print Media (NPM) [28 A-B] + + + + + 173 + Network Interconnection Panel [29 A-B] + + + + + 173 + Doctoral Forum [30 A-B] + + + + + 173 + SIG/Classification Research (CR) [31 A-B] + + + + + 173 + Plenary Session [32] + + + + + 173 + SIG/User On-Line Interaction (UOI) [33 A-B] + + + + + + 33-40 + + 1 folder + + + + + 173 + SIG/User On-Line Interaction (UOI) [33 C] + + + + + 173 + Epitome Session Contributed Papers [35 A-B and 36 A-B] + + + + + 173 + SIG/Foundations of Information Science (FIS) [37 A-B] + + + + + 173 + Plenary Session [39] + + + + + 173 + Panel: National Commission on Libraries and Information Science [40 A-B] + + + + + + 41-48 + + 1 folder + + + + + 174 + Epitome Session Contributed Papers [41 A-B and 42 A-B] + + + + + 174 + SIG/Library Automation and Networks (AL) [43 A-B] + + + + + 174 + Nato Institute, 1972-1973 [45] + + + + + 174 + Micrographics Panel [46 A-B] + + + + + 174 + Epitome Session Contributed Papers [47 A-B] + + + + + 174 + Federation of Information Users [48 A] + + + + + + 48-49 + + 1 folder + + + + + 174 + Federation of Information Users [48 B] + + + + + 174 + SIG/Education for Information Science (ES) [49 A-B] + + + + + + + 1973 Convention (Los Angeles, CA) + + + + 6-39 + + 1 folder + + + + + Plenary Session + + + + 174 + Opening Session [6] + + + + + 174 + Economics of Information Systems [17] + + + + + 174 + The New York Times Information Bank [32] + + + + + 174 + The Politics of Information [39] + + + + + + + + 1974 Convention (Atlanta, GA) + + + + 174 + Annual Business Meeting [A-B] + + 1 folder + + + + + + + 1975 Convention (Boston, MA) + + + + 1-5 + + 1 folder + + + + + 174 + Focussing on the Desirability of a Wise-Type System, Parts 1 and 2 [1] + + + + + 174 + Dealing with the Feasibility of a Wise-Type System, Part 1 [3] + + + + + 174 + Organization and Distribution of Primary Social Science Data in a Computerized Setting, Part 2 [5] + + + + + + 12-15 + + 1 folder + + + + + 174 + Copyright: A Semi-Structure Free-For-All, Part 1 [12] + + + + + 174 + Contribution to Information in the Behavioral and Social Sciences, Part 2 [14] + + + + + 174 + Trends in Classification, Parts 1 and 2 [15] + + + + + + 16-17 + + 1 folder + + + + + 174 + Trends in Accessing and Analyzing Numerical Data, Parts 1 and 2 [16] + + + + + 174 + Library Networks [17] + + + + + + 18-19 + + 1 folder + + + + + 174 + Toward a National Policy in Information, Parts 1 and 2 [18] + + + + + 174 + Education and Careers in Information Science, Parts 1 and 2 [19] + + + + + + 20-21 + + 1 folder + + + + + 174 + Plans and Funding for Nationwide Information Programs and Services, Parts 1 and 2 [20] + + + + + 174 + Special Problems in Storing and Retrieving Humanities Material, Parts 1 and 2 [21] + + + + + + 22-23 + + 1 folder + + + + + 174 + National Instructional Materials Information System, Parts 1 and 2 [22] + + + + + 174 + State Legislative Information Systems and Services, Parts 1 and 2 [23] + + + + + + 24-25 + + 1 folder + + + + + 174 + Information Support for the Congress, Parts 1 and 2 [24] + + + + + 174 + Similarities and Differences in Systems Requirements for On-Line Batch Retrieval, Parts 1 and 2 [25] + + + + + + 26-27 + + 1 folder + + + + + 174 + Educational Information Resources: After ERIC, What?, Parts 1 and 2 [26] + + + + + 174 + Microform Library Catalogs: Now More Than Ever, Parts 1 and 2 [27] + + + + + + 28-29 + + 1 folder + + + + + 174 + Retrieval Vocabularies: Indexing, Switching Mechanisms, and Text Manipulation, Parts 1 and 2 [28] + + + + + 174 + International Programs and Issues in Information Science and Technology, Parts 1 and 2 [29] + + + + + + 30-31 + + 1 folder + + + + + 175 + Microprocessors and Recent Technological Innovations, Parts 1 and 2 [30] + + + + + 175 + Facing Change: Planning National and International Systems, Parts 1 and 2 [31] + + + + + + 32-33 + + 1 folder + + + + + 175 + Toward a Unified Theory of Information, Parts 1 and 2 [32] + + + + + 175 + Satellite-Mediated Medical Communications Experiments: An Evaluator's Perspective, Parts 1 and 2 [33] + + + + + + 34-36 + + 1 folder + + + + + 175 + Thoughts on Improving User Interfaces From a Non-Information Retrieval Point of View 1, Parts 1 and 2 [34] + + + + + 175 + ERIC Data Base Users Conference [35] + + + + + 175 + Clustering and Discrimination Techniques Secondary Sources [36] + + + + + + 37-38 + + 1 folder + + + + + 175 + Thoughts on Improving User Interfaces from a Non-Information Retrieval Point of View 2, Parts 1 and 2 [37] + + + + + 175 + Networks: Confrontation and Cooperation: Views from CCLN, Parts 1 and 2 [38] + + + + + + 39 + + 1 folder + + + + + 175 + Reports of National and International Education Program Studies, Parts 1 and 2 [39] + + + + + + 40-41 + + 1 folder + + + + + 175 + Report of ASIS Project to Investigate the Planning Requirements of the Scientific and Technical Information Community, Parts 1 and 2 [40] + + + + + 175 + Teleprocessing and Information Networks, Parts 1 and 2 [41] + + + + + + 42-43 + + 1 folder + + + + + 175 + Using On-Line Information Services: Human Factors and Cost Recovery, Parts 1 and 2 [42] + + + + + 175 + Knowledge Management: Policy Dimensions of the Public-Private Interaction, Parts 1 and 2 [43] + + + + + + 44-45 + + 1 folder + + + + + 175 + Obtaining Quick, Inexpensive Hard Copy from Microfilm and Computer Systems, Parts 1 and 2 [44] + + + + + 175 + Clinical Data, Medical Records, and the New Technology, Parts 1 and 2 [45] + + + + + + 46-48 + + 1 folder + + + + + 175 + Pricing: A Rational Mechanism for Allocating Information [46] + + + + + 175 + Trends in Current Research in Automated Language Processing [47] + + + + + 175 + Biological, Chemical, and Medical Information Systems, Parts 1 and 2 [48] + + + + + + 49 + + 1 folder + + + + + 175 + Doctoral Forum, Parts 1 and 2 [49] + + + + + + 50-51 + + 1 folder + + + + + 175 + Medical Library Association Program: The Information Revolution in Medicine, Parts 1 and 2 [50] + + + + + 175 + ERIC Data Base Users Conference, Parts 1 and 2 [51] + + + + + + Reel-to-Reel tapes + + + + 175 + Keynote Address + + + + + + Videotapes + + + + 175 + Videotape Log + + + + + 175 + 2A + + + + + 175 + 3A + + + + + 175 + 6A + + + + + 176 + 8A + + + + + 176 + 9A + + + + + 176 + A10 + + + + + 176 + A11 + + + + + 176 + A12 + + + + + 176 + A13 + + + + + + + 1977 Convention (Chicago, IL) + + + + 6-25 + + 1 folder + + + + + 176 + Working with the Copyright Clearance Center, tapes 1 and 2 [6] + + + + + 176 + Opening Session [11] + + + + + 176 + Computer/Telecommunications Infrastructure, tapes 1 and 2 [13] + + + + + 176 + NSF Science Information Activities Task Force, tapes 1 and 2 [14] + + + + + 176 + Technological Implications, tapes 1 and 2 [15] + + + + + 176 + Information Science Programs, tapes 1 and 2 [16] + + + + + 176 + Social Impacts on Information Management, tapes 1 and 2 [20] + + + + + 176 + Minicomputers, Microprocessors, and Information Science, tapes 1 and 2 [22] + + + + + 176 + The Information Analysis Function, tapes 1 and 2 [23] + + + + + 176 + Management of the Medical Record, tapes 1 [25] + + + + + + 25-37 + + 1 folder + + + + + 176 + Management of the Medical Record, tapes 2 and 3 [25] + + + + + 176 + Evaluation of Information Systems, tapes 1 and 2 [26] + + + + + 176 + On-Line User Monitoring to Improve User Interaction, tapes 1 and 2 [27] + + + + + 176 + Classification: The Foundations of Knowledge, tapes 1 and 2 [28] + + + + + 176 + The Prophet Motive: The Special Librarian of 1985, tapes 1 and 2 [29] + + + + + 176 + The Information Marketplace in the 1980s, tapes 1-3 [33] + + + + + 176 + Economic Impacts on Information Management [34] + + + + + 176 + Is There an Information Manager in the House? [36] + + + + + 176 + Analysis of Library Networks, tapes 1-3 [37] + + + + + + 38-49 + + 1 folder + + + + + 177 + New Concepts and Processes in Applying Information, tapes 1 and 2 [38] + + + + + 177 + National Data Base for Non-Print Media, tapes 1 and 2 [39] + + + + + 177 + Information in Conferences: 1976 ASIS Annual Meeting [40] + + + + + 177 + + Economics of Bibliographic Networking [41] + + + + + + 177 + Indexing: Where Are We, Where Should We Go?, tapes 1 and 2 [44] + + + + + 177 + Ethics in Computers and Information, tapes 1 and 2 [45] + + + + + 177 + Recent Developments in Humanities Research, tapes 1 and 2 [46] + + + + + 177 + Copyright Restrictions on Educational Information Services, tapes 1 and 2 [47] + + + + + 177 + Doctoral Forum, tapes 1 and 2 [48] + + + + + 177 + National On-Line Users Forum, tapes 1 and 2 [49] + + + + + + 52-73 + + 1 folder + + + + + 177 + Litigation Support Systems, tapes 1 and 2 [52] + + + + + 177 + Computer Conferencing, tapes 1 and 2 [53] + + + + + 177 + Education for Community Information Services, tapes 1 and 2 [54] + + + + + 177 + ASIS President's Open Forum, tapes 1 and 2 [61] + + + + + 177 + Software [63] + + + + + 177 + STI, Minicomputers and Text Processing [65] + + + + + 177 + Federal Information Policies, tapes 1-3 [66] + + + + + 177 + Library Automation and Networking, tapes 1 and 2 [67] + + + + + 177 + Future Consideration for Information Management [69] + + + + + 177 + ASIS Annual Business Meeting, tapes 1 and 2 [73] + + + + + + 73-90 + + 1 folder + + + + + 177 + ASIS Annual Business Meeting, tape 3 [73] + + + + + 177 + The Pimpernel Revisited [76] + + + + + 177 + The Structure and Methodology of Information Exchange [78] + + + + + 177 + National Library and Information Service, tapes 1-3 [79] + + + + + 177 + Managing Complex Information Activities, tapes 1 and 2 [80] + + + + + 177 + Discussion and Description of Particular Systems [82] + + + + + 177 + Information Sciences: Professional Opportunities for the Handicapped [83] + + + + + 177 + Management of Information Networks, tapes 1 and 2 [87] + + + + + 177 + The Information Analysis Function, tapes 1 and 2 [88] + + + + + 177 + Advanced Aspects of Management for Information Dissemination, tapes 1 and 2 [89] + + + + + 177 + Electronic Alternatives to Journal Publications, tapes 1 and 2 [90] + + + + + + 91-100 + + 1 folder + + + + + 177 + Training for On-Line Retrieval Use, tapes 1 and 2 [91] + + + + + 177 + Review of Numeric Data Activities, tapes 1 and 2 [92] + + + + + 177 + JASIS, tapes 1 and 2 [100] + + + + + + 177 + Videotape (Reel), Copyright Session, no. 1 + + + + + + 1978 Convention (New York, NY) + + + + 177 + Business Meeting + + 2 tapes + + + + + + General Session 2-3 + + 1 folder + + + + + 177 + General Information Age in Perspective: Dissemination of Information [G2] + + + + + 177 + The Information Age in Perspective: Use of Information for Decision-Making and Control [G3] + + + + + + 2A-D + + 1 folder + + + + + 177 + How to Be an Entrepreneur in the Information Industry [2A-D] + + + + + + 10-14 + + 1 folder + + + + + 178 + Indexing Quality: Thesauri and Automated Authority Control [10] + + + + + 178 + Simplified User Access to Information [11] + + + + + 178 + Vocabulary Control Theory and Thesaurus Generation [13] + + + + + 178 + Theoretical Considerations: The Information Age, Forecasting Activity, and Citedness [14] + + + + + + 15-19 + + 1 folder + + + + + 178 + Measures of the Nature and Use of the Scientific and Technical Literature [15] + + + + + 178 + Should the Scientific Article Be Redesigned for Life in the 21st Century and If So, Why? [18] + + + + + 178 + Automatic Approaches to Vocabulary Control [19 A-B] + + + + + + 20-22 + + 1 folder + + + + + 178 + The Place of Information Theory in Information Science [20 A-B] + + + + + 178 + Entropy Decline in Representing Document Content [22] + + + + + + 23-26 + + 1 folder + + + + + 178 + Collection and Analysis of Information [23] + + + + + 178 + Medical Records: Key to Modern Health Care System [24 A-B] + + + + + 178 + User Group of On-Line Educators [26] + + + + + + 30-33 + + 1 folder + + + + + 178 + Indexing Theory and Automatic Indexing and Retrieval [30] + + + + + 178 + Computer Processing of Text Information [31] + + + + + 178 + Channels for the Distribution of Social Service Information: Institutions, Media and People [32] + + + + + 178 + Data Base Management Systems (DBMS): Major Computer Tools for Libraries [33] + + + + + + 35-38 + + 1 folder + + + + + 178 + Current Applications and Future Trends in Numeric Data Bases and Systems [35] + + + + + 178 + Computer Conferencing and Personal Computers [36] + + + + + 178 + Data Bases in the Arts and Humanities [37] + + + + + 178 + Library Automation: Cataloging and Circulation Systems [38] + + + + + + 40-42 + + 1 folder + + + + + 178 + Computerized Systems: Prototypes [40] + + + + + 178 + User Interfaces to Emerging Office Systems [41] + + + + + 178 + Law Enforcement in the Information Age [42] + + + + + + 43-46 + + 1 folder + + + + + 178 + Automation and Evaluation of Inter-Library Loan Operations [43] + + + + + 178 + Computer-Based Retrieval Systems for Various Audiences [45] + + + + + 178 + Holography: Potentials and Problems in Future Information Systems [46] + + + + + + 47-49 + + 1 folder + + + + + 178 + Energy Information and the Public Energy Outreach Programs [47] + + + + + 178 + Information-Sharing Networks: Specific Systems [48] + + + + + 178 + ASIS President's Open Forum: An Exciting Year for ASIS [49 A-B] + + + + + + 50-52 + + 1 folder + + + + + 178 + JASIS Open Forum [50] + + + + + 178 + Doctoral Forum [51] + + + + + 178 + Update on AACR II and the Closing of the LC Card Catalogs [52] + + + + + + 56-59 + + 1 folder + + + + + 178 + User Studies: Personal Characteristics and Usage Patterns [56] + + + + + 178 + Marketing of Information Analysis Products and Services [57] + + + + + 178 + Scientific Information in the Public Sector [58] + + + + + 178 + On-Line Search Strategies: Users' Case Studies [59] + + + + + + 60-65 + + 1 folder + + + + + 178 + Values and Information Transfer [60] + + + + + 178 + Budgeting, Pricing, and Productivity Assessment Problems for Information Services [61] + + + + + 178 + Searching of Retrieval Systems and Data Bases: Problems, Methods, and Approaches [64] + + + + + 178 + Publishing, Copyright, and Acquisitions [65] + + + + + + 66-68 + + 1 folder + + + + + 178 + International Dimensions of Social Science Information [66] + + + + + 178 + Problems in Information Studies Outside Library Schools [67 A-B] + + + + + 178 + How to Painlessly Promote Your Information Center for Pun and Profit [68] + + + + + + 79 + + 1 folder + + + + + 178 + The White House Conference in Perspective: Where Are Information Services? [79] + + + + + + + 1979 Convention (Minneapolis, MN) + + + + 8 + + 2 folders + + + + + 178 + Workshop on the Use and Management of Numeric Data Base Services: A Program for Practitioners and Educators [8 A-G] + + + + + + 15-19 + + 1 folder + + + + + 178 + Access to Information: Alternatives for Society [15] + + + + + 178 + Numeric Data Bases: Decision-Making Tools for the 1980s [16] + + + + + 178 + Community Information Services: Who Benefits? Who Pays? [17] + + + + + 178 + The Role of Information Science in the Office of the Future Concept: An Introduction [19] + + + + + + 20-24 + + 1 folder + + + + + 179 + Update for Information Managers: Opportunities and Challenges Posed by the New Technologies [20 A-B] + + + + + 179 + Medical Information Systems [24 A-B] + + + + + + 27-28 + + 1 folder + + + + + 179 + Computer Crime and Computer Security:Impact on Information Systems [27 A-B] + + + + + 179 + American-Aided Indexing [28] + + + + + + 34-39 + + 1 folder + + + + + 179 + International Classification Research Forum [34] + + + + + 179 + Special Session 3: Co-Citation Analysis in Investigation of the Structures of Scientific Specialties [37 A-B] + + + + + 179 + Contributed Paper Session 2: Information Science Activities and Emerging Policy Issues [39] + + + + + + 41-42 + + 1 folder + + + + + 179 + Personal Computing for Information Professionals [41 A-B] + + + + + 179 + Contributed Paper Session 3: Information Clients and Services: Improving the Interface [42 A-B] + + + + + + 43-46 + + 1 folder + + + + + 179 + Transnational Informing: Rethinking the Process [43 A-B] + + + + + 179 + Videodisc [46] + + + + + + 47 + + 1 folder + + + + + 179 + National Periodicals Center [47 A-B] + + + + + + 58-59 + + 1 folder + + + + + 179 + Special Session 5: Shaping the Future of Information Science [58 A-B] + + + + + 179 + The National Bibliographic System: Factors in the Development of a Governance Structure [59 A-B] + + + + + + 60-63 + + 1 folder + + + + + 179 + Contributed Paper Session 5: Improving Information Access for Health and the Handicapped [60 A-B] + + + + + 179 + ASIS Annual Business Meeting [63 A-C] + + + + + + 71-76 + + 1 folder + + + + + 179 + National On-Line Circuit: A Look at On-Line User Groups: Current Activities [71 A-B] + + + + + 179 + An Introduction to Automated Information Publishing and Text-Editing [76] + + + + + + 80-83 + + 1 folder + + + + + 179 + Contributed Paper Session 6: From Models to Systems: Developing and Choosing Alternatives [80 A] + + + + + 179 + The Use of Technology in the Creative Process [81] + + + + + 179 + Career Development Forum: Where the Jobs Are: Career Paths in the Information Profession [83 A-B] + + + + + + 85-86 + + 1 folder + + + + + 179 + What Makes a "Good" On-Line Search? What Makes a "Good" On-Line Searcher? [85 A-B] + + + + + 179 + On Foundations of Information Science [86 A-B] + + + + + + 88-89 + + 1 folder + + + + + 179 + Automated Legal Research and Manual Research: A Comparison in Efficiency [88 A-B] + + + + + 179 + Organizational Theory and Information Science: Some Implications for Design and Evaluation [89 A-B] + + + + + + + 1980 Convention (Anaheim, CA) + + + + G1 + + 1 folder + + + + + 179 + Opening Session: Keynote Address: Trends in Telecommunications Technology [G1] + + + + + + 1-4 + + 1 folder + + + + + 179 + Organizational Communication [1] + + + + + 179 + The Researcher and Online Searching: Training the End User [2] + + + + + 179 + Miniforum on Indexing [3] + + + + + 179 + Selecting a Vendor [4] + + + + + + 5-9 + + 1 folder + + + + + 179 + Human Factors in Information Management [5] + + + + + 179 + Intra-Organizational Electronic Mail [7] + + + + + 179 + Environmental Information: Definition and Dissemination [8] + + + + + 179 + Legal Implications of the Construction, Distribution and Uses of Machine-Readable Data [9] + + + + + + 10-11 + + 1 folder + + + + + 180 + Online Library Reference Services [10 A-B] + + + + + 180 + Doctoral Forum [11 A-B] + + + + + + 12-14 + + 1 folder + + + + + 180 + Database Ownership: Issues and Case Studies [12] + + + + + 180 + Management Workshop/Clinic [13 A-B] + + + + + 180 + Use of Computers in Medical Decision-Making Process [14 A-B] + + + + + + 15-19 + + 1 folder + + + + + 180 + Electronic Messaging [15] + + + + + 180 + Evaluating Library and Information Services [16] + + + + + 180 + Text and Data Storage and Transmission [17] + + + + + 180 + Access to the Fine Arts [18] + + + + + 180 + Basic Orientations, Constructs, and Measurements in Information Science [19] + + + + + + 20-25 + + 1 folder + + + + + 180 + Career Development Forum: The Variety of Careers in Online Information Retrieval...What They're All About [20] + + + + + 180 + Research in Library and Information Science: Some Viewpoints by Researchers, Funders, and Users [21] + + + + + 180 + Computing in the Study of Language and Literature [23] + + + + + 180 + Office Electronic Support Systems: An Evaluative Analysis [24] + + + + + 180 + Communicating Technical Information to the Public [25] + + + + + + 26-29 + + 1 folder + + + + + 180 + Exhibitors' Product Seminar [26] + + + + + 180 + Appropriateness: A Key to Technology Transfer and Repackaging of Information [27] + + + + + 180 + The Online Searcher's Needs and the Challenge of Meeting Them [28] + + + + + 180 + Economics and/of Information [29] + + + + + + 30-32 + + 1 folder + + + + + 180 + Consumer Affairs: Energy and the Environment [30] + + + + + 180 + The Challenge of Developing a Basic Science of Information [31] + + + + + 180 + Human Communication Via Computer: Results of the EIES Operational Trails [32 A-B] + + + + + + 33-34 + + 1 folder + + + + + 180 + Informatic Communication and Multi-Way Video [33 A-B] + + + + + 180 + Occupational Survey of Information Professionals [34 A-B] + + + + + + 35-36 + + 1 folder + + + + + 180 + Classification of Questions and Indexing [35 A-B] + + + + + 180 + Information Resources in Occupational Safety and Health [36 A-B] + + + + + + 37-39 + + 1 folder + + + + + 180 + Packaging and the Online Search Service: Communications with the End User [37 A-B] + + + + + 180 + Non-Bibliographic Databases Online [38] + + + + + 180 + Computer Conferencing and Inter-Organizational Communications [39] + + + + + + 40-43 + + 1 folder + + + + + 180 + Miniforum on Computer System Design [40] + + + + + 180 + Computer-Mediated Communication: Basic Science Aspects of Its Analysis [41] + + + + + 180 + International Networking: An Overview of the European Scene [42] + + + + + 180 + Mid-Career Quandaries [43] + + + + + + 44-46 + + 1 folder + + + + + 180 + Innovative Dissemination [44] + + + + + 180 + Database Combinations: Sorts and Merges [45] + + + + + 180 + Special Computer Architectures: A Breakthrough in Searching Textual Data? [46] + + + + + + 47-49 + + 1 folder + + + + + 180 + Cross-National Census Data for Public Policy-Makers [47 A-B] + + + + + 180 + Vocabulary Control in Integrated Information Systems: Speculations for the Eighties [48] + + + + + 180 + A Roundtable: Evolving Techniques in Managing the Public-Private Interface [49] + + + + + + 50-53 + + 1 folder + + + + + 180 + Special Computer Architectures for Textual Searching: A Technical Discussion [50] + + + + + 180 + Information Policy Analysis and Its Place in the Curriculum [51] + + + + + 180 + Applying the Evaluation Function to Information Programs and Services [52] + + + + + 180 + The Online Catalog [53] + + + + + + 54-55 + + 1 folder + + + + + 180 + Communicating Biomedical Information to Health Practitioners [54 A-B] + + + + + 180 + Information Needs of Less-Developed Areas [55 A-B] + + + + + + 56-57 + + 1 folder + + + + + 180 + Information Clearinghouses and Federal/Non-Federal Relationships [56 A-B] + + + + + 180 + Communicating Information Productively [57 A-B] + + + + + + 58-59 + + 1 folder + + + + + 180 + An Update on Audiovisual Information Sources [58 A-B] + + + + + 180 + Aids for the User of Online Information Retrieval Systems [59 A-B] + + + + + + 61-65 + + 1 folder + + + + + 181 + Computer Graphics [61] + + + + + 181 + Library Databases and Catalogs: Development and Access [62] + + + + + 181 + Social Science Information for Public Policy-Makers [63] + + + + + 181 + Miniforum on Bibliometrics [64] + + + + + 181 + Organizational Behavior and Information Use [65] + + + + + + 66-69 + + 1 folder + + + + + 181 + Interconnection: Improving Communications for Technology Transfer Enhancement [66] + + + + + 181 + Problems in the International Transmission of Data [67] + + + + + 181 + Bibliometrics and Citation Analysis [68] + + + + + 181 + Staff Development in Communication [69] + + + + + + 70-73 + + 1 folder + + + + + 181 + The Place of the Recipient in Information Science [70] + + + + + 181 + Information Services: Time Management and Setting Priorities [71] + + + + + 181 + Library Resource Sharing, Automation, and Decision Support [72] + + + + + 181 + The Role of Information Professional Societies in the Development of Government Information Policy [73 A-B] + + + + + + 74-76 + + 1 folder + + + + + 181 + A New Look At the Theory-Practice Dichotomy Issues in Information and Library Science Education [74 A-B] + + + + + 181 + Examining the Public-Private Sector Interface [75] + + + + + 181 + Research on the Human-Computer Interface for Information Work [76] + + + + + + 77-79 + + 1 folder + + + + + 181 + Mini-and Micro-Computer Applications [77] + + + + + 181 + User Characteristics and Studies [78] + + + + + 181 + Energy Information Design and Display [79 A-B] + + + + + + 80 + + 1 folder + + + + + 181 + Medlars III System: NLM's Automation Plans for the Eighties [80] + + + + + + Convention Video Cassette Tapes + + + + 181 + Annual Meeting + + 1 tape + + + + + + 181 + Tapes 1-2 and 4-5 + + 4 tapes + + + + + + 182 + Fifth Tape + + 1 tape + + + + + + 182 + Miscellaneous Videocassette + + 1 tape + + + + + + + + 1981 Convention (Washington, D.C.) + + + + 182 + Business Meeting + + 1 folder + + + 1 tape + + + + + + G1-4 + + 1 folder + + + + + 182 + Plenary Session I: Information and Creativity [G1] + + + + + 182 + Plenary Session III: Alliances for Innovation and Productivity in a Changing Economy: Information Providers, Carriers, and Users [G3] + + + + + 182 + Plenary Session IV: The Sciences of Information: Looking Over the Fences [G4] + + + + + + 22-25 + + 1 folder + + + + + 182 + Federal Information: Its Dissemination, Diffusion, Use and Usefulness [22] + + + + + 182 + Access to Archives: An Interdisciplinary Approach [23] + + + + + 182 + Information Materials: Management and Access [24] + + + + + 182 + Research Surveys of Library Organizations [25] + + + + + + 26-29 + + 1 folder + + + + + 182 + The Creation and Distribution of Socio-Economic Databases [26] + + + + + 182 + Doctoral Forum [27] + + + + + 182 + The User Pulse: Integrating Information for Decision-Making [28] + + + + + 182 + Litigation Support Technology and Use [29] + + + + + + 31-34 + + 1 folder + + + + + 182 + Computer Graphics [31] + + + + + 182 + World Information Issues; Part I: Overview [32] + + + + + 182 + Training for Online Searching [33] + + + + + 182 + User's Needs Come First in Online and Other Systems [34] + + + + + + 35-38 + + 1 folder + + + + + 182 + New Directions for Information Science Education [35] + + + + + 182 + Assessing Energy Information Needs for the Future [36] + + + + + 182 + Designing Numeric Database Systems [38] + + + + + + 40-43 + + 1 folder + + + + + 183 + World Information Issues; Part 2: Information Transfer to Less-Developed Countries (LDCs) [40] + + + + + 183 + Current Research in the Information Sciences; Part 1 [42] + + + + + 183 + Transfer of Information to the User Community [43] + + + + + + 45-47 + + 1 folder + + + + + 183 + Computer Literacy: What Is It? How Do We Teach It? [45] + + + + + 183 + Use of Numeric Databases in the Corporate, Academic and Business Environments [46 A-B] + + + + + 183 + Managing Office Productivity [47 A-B] + + + + + + 51-53 + + 1 folder + + + + + 183 + World Information Issues; Part 3: Case Studies for Specific Less-Developed Countries (LDCs) [51] + + + + + 183 + Federal Statistical Data Access Programs [52] + + + + + 183 + Stalking the (Wild) Referee: Journal Editors Look at the Refereeing Process [53] + + + + + + 54-56 + + 1 folder + + + + + 183 + Online Databases: Resources By and About Women, Minorities, and the Disabled: Analysis and Case Studies [54] + + + + + 183 + Enhancement of Information Transfer [55] + + + + + 183 + Cost-Effective Instant Information [56] + + + + + + 61-66 + + 1 folder + + + + + 183 + On the Construction and Use of Creative Ontologies: A Concerted Defense Against Solipsism in Information and Its Management [61] + + + + + 183 + Research Advances in Information Science [65 A-B] + + + + + 183 + Legislative Issues [66] + + + + + + 67-68 + + 1 folder + + + + + 183 + Computers and Music [67 A-B] + + + + + 183 + Update on Information and Referral [68 A] + + + + + + 68-69 + + 1 folder + + + + + 183 + Update on Information and Referral [68 B] + + + + + 183 + New and/or Innovative Approaches to Information Publishing [69 A-B] + + + + + + 70-73 + + 1 folder + + + + + 183 + How to Plan and Select an Online Catalog [70 A-B] + + + + + 183 + Medical Information Networks [71] + + + + + 183 + Computer Conferencing [73] + + + + + + 77-78 + + 1 folder + + + + + 183 + Barriers to Information for Industry [77 A-B] + + + + + 183 + Associative Indexing and Searching: History, Applications and State of the Art [78 A-B] + + + + + + 79 + + 1 folder + + + + + 183 + Office Automation Report [79 A-B] + + + + + + 80-82 + + 1 folder + + + + + 183 + Through the Looking Glass: Publishing 1990 [80 A-B] + + + + + 183 + The User Interface: A Major Barrier to the Diffusion of the Microcomputer [82] + + + + + + 83-87 + + 1 folder + + + + + 183 + Career Paths for Information Professionals [83] + + + + + 183 + Network Advisory Committee Open Forum [84] + + + + + 183 + A Library and Information Science National Research Agenda for the 1980s A Progress Report [86 A-B] + + + + + 183 + Multi-System Searching [87] + + + + + + 88-89 + + 1 folder + + + + + 183 + Automated Acquisitions: Integration W/Other Automated Systems [88 A-B] + + + + + 183 + Management Information for Information Managers: The Economic Impact of Information [89 A-B] + + + + + + 90-99 + + 1 folder + + + + + 183 + Use of Small Computers in Medicine [90] + + + + + 183 + The Meaning of User Studies [99] + + + + + + 100-103 + + 1 folder + + + + + 184 + Use of Managerial Principles in Information Work [100] + + + + + 184 + The Bridge Between Information Science and the Automated Office [101] + + + + + 184 + Beyond the Classroom: Varieties in Continuing Education [102] + + + + + 184 + Information Organization in the Arts and Humanities [103] + + + + + + 104-107 + + 1 folder + + + + + 184 + Federal Research Funding for Information Science [104] + + + + + 184 + International Transferability of Information [105 A-B] + + + + + 184 + Micrographics and Word Processing [107] + + + + + + 110-118 + + 1 folder + + + + + 184 + Office Automation [110] + + + + + 184 + Natural Language Text Processing [117] + + + + + 184 + Progress in Document Retrieval and Document Selection [118] + + + + + + 120-124 + + 1 folder + + + + + 184 + Current Research in the Information Sciences; Part 2 [120] + + + + + 184 + Classification Research Forum [121] + + + + + 184 + Basic Approaches to Fundamental Research in Information Science [124] + + + + + + 127-129 + + 1 folder + + + + + 184 + Videotex [127] + + + + + 184 + Studies of Computer-Mediated Communication Systems: A Syntheses of Findings [128] + + + + + 184 + Software for Information Management Systems [129] + + + + + + 130-133 + + 1 folder + + + + + 184 + Applications of Mini-and Micro-Computers for Information Systems; Part 1 [130] + + + + + 184 + Indexing for Information Resource Management [131] + + + + + 184 + Models of Interpretation in Observation and Communication [132] + + + + + 184 + Policies for the Dissemination of Federal Information [133] + + + + + + 135-138 + + 1 folder + + + + + 184 + Machine Translation in the 1980s [135 A-B] + + + + + 184 + Data Quality Control: Theory and Application [136] + + + + + 184 + Applications of Mini-and Micro-Computers for Information Systems; Part 2 [137] + + + + + 184 + Humanizing the User/Computer Interface [138] + + + + + + 141 + + 1 folder + + + + + 184 + [Paperwork Reduction Act of 1980 (PL 96 511)] [141] + + +

    (title taken from tape)

    +
    +
    +
    +
    + + + 1982 Convention (Columbus, Ohio) + + + + G1-3 + + 1 folder + + + + + 184 + Plenary Session I: Keynote Address: Office Innovation [G1] + + + + + 184 + Plenary Session II: Panel on How the Executive Views His Own Information Problems: What the Situation Was Five Years Ago, What It Is Now, and What It Will Be In the Next Five Years [G2] + + + + + 184 + Plenary Session III [G3] + + + + + + 21-25 + + 1 folder + + + + + 184 + Briefing 1: Computer Communication Networks: An Overview [21] + + + + + 184 + Contributed Paper Session 1: Development and Use of Specialized Databases [22] + + + + + 184 + Contributed Paper Session 2: Research in Text Processing [23] + + + + + 184 + Product/Service Review 1 [25] + + + + + + 26-29 + + 1 folder + + + + + 184 + Symposium on United States Information Science Education for Foreign Students [26] + + + + + 184 + Symposium on Information Explosion or Information Indigestion [27] + + + + + 184 + Panel on Coordination and Management of Automated Services [28] + + + + + 184 + Symposium on International Uses of Non-Print Materials [29] + + + + + + 34-39 + + 1 folder + + + + + 184 + Contributed Paper Session 3: New Modes of Information Interaction in the Organization: 1 [34] + + + + + 184 + Panel on Future Trends in the Delivery of Information [36] + + + + + 184 + Symposium on Man-Machine Interaction [37] + + + + + 184 + Special Symposium 1: The Results and Implications of the ERIC Cost and Usage Study [39] + + + + + + 40-42 + + 1 folder + + + + + 184 + Exhibitors' New Products Seminar [40 A-B] + + + + + 184 + Special Panel Session 1: Information Entrepreneurship: Starting Out: Part 1 [42 A-B] + + + + + + 46-48 + + 1 folder + + + + + 184 + Contributed Paper Session 4: Networks and Information Exchange [46] + + + + + 184 + Symposium on Ideas for Fundamental Research on Man-Machine Interaction: An Open Forum [47] + + + + + 184 + Panel on Information Systems Consultants Overseas: Change Agents in Need of Change? [48] + + + + + + 50-54 + + 1 folder + + + + + 184 + Special Panel Session 2: Ohio in Information History [50] + + + + + 184 + Symposium on Classification of Noise [54] + + + + + + 60-62 + + 1 folder + + + + + 184 + Contributed Paper Session 5: Information Systems and Human Behavior [60] + + + + + 184 + Contributed Paper Session 6: New Modes of Information Interaction in the Organization: 2 [61] + + + + + 184 + Information Science Theater Presentation 2: Computer Imagery As a Communications Tool [62] + + + + + + 63-67 + + 1 folder + + + + + 184 + Symposium on Computer Processing of Chinese Library Materials and Computer-Assisted Chinese Language Instruction; Part 1 [63] + + + + + 184 + Symposium on Selective Technologies for the Dissemination of Information [65] + + + + + 184 + Special Panel Session 3: Home Information Systems [66] + + + + + 184 + Special Presentation 1: The Human Side of Future Information Systems [67] + + + + + + 72-75 + + 1 folder + + + + + 185 + Symposium on Online Retrieval of Fine Arts Information [72] + + + + + 185 + Symposium on Subject Access to Numeric Databases [73] + + + + + 185 + Symposium on Existing Energy and Environmental Information Systems [74] + + + + + 185 + Symposium on Selection Criteria in Electronic Data Publishing [75] + + + + + + 76-77 + + 1 folder + + + + + 185 + Panel on the Online Public Access Catalog Projects: Findings [76 A-B] + + + + + 185 + Special Panel Session 4: Information Entrepreneurship: Within an Organization: Part 2 [77 A-B] + + + + + + 78-79 + + 1 folder + + + + + 185 + Special Presentation 2: How to Use the Beilstein Handbook of Organic Chemistry [78 A-B] + + + + + 185 + Symposium on Computer Processing of Chinese Library Materials and Computer-Assisted Chinese Language Instruction; Part 2 [79 A-B] + + + + + + 80-84 + + 1 folder + + + + + 185 + Contributed Paper Session 7: Organizational Interactions in Publishing [80] + + + + + 185 + Product/Service Review Panel 2: Automated Serial Control Systems [81] + + + + + 185 + Symposium on Information for Waste Management [82] + + + + + 185 + Panel on Outreach, Training, and Evaluation: A Cycle for Microcomputer Use [83] + + + + + 185 + Symposium on Numeric Database Services: Where Do We Stand? Where Do We Go? [84] + + + + + + 95-99 + + 1 folder + + + + + 185 + Contributed Paper Session 8: Advances in Understanding of Information Science [95] + + + + + 185 + Contributed Paper Session 9: Evaluation of Information Systems [96] + + + + + 185 + Product/Service Review 2 [97] + + + + + 185 + Product/Service Review Panel 3: Electronic Mail [98] + + + + + 185 + Symposium on Integration of Information Resources in the Office of the Future [99] + + + + + + 101-106 + + 1 folder + + + + + 185 + Special Symposium 3: Information Management for the Legal Profession [101] + + + + + 185 + Special Symposium 4: Research in Subject Access at OCLC [102 A-B] + + + + + 185 + Contributed Paper Session 10: Teaching of Library and Information Sciences [104] + + + + + 185 + Information Science Theater Presentation 3: Battle of the Library Superstars: Professional Techniques in Library Instruction Video Tape Production [106] + + + + + + 111-115 + + 1 folder + + + + + 185 + Special Symposium 5: Directions, Problems, and Opportunities in Automated Litigation Support [110] + + + + + 185 + Briefing 4: Information Theory as Applied to Information Science [111] + + + + + 185 + Contributed Paper Session 12: Monitoring and Evaluation of Information Interactions [112] + + + + + 185 + Panel on Online Searching Process, Productivity, and Payoff [115] + + + + + + 116-119 + + 1 folder + + + + + 185 + Panel on How Technical Innovation Reaches the Classroom and Theoretical Research Reaches the Field [116] + + + + + 185 + Symposium on Trends in Information Technology in the Legal Environment [117] + + + + + 185 + Special Panel Session 6: The Role of the Institution in the Information Community [118] + + + + + 185 + Tutorial on So You Want to be an Author [119 A-B] + + + + + + 120-126 + + 1 folder + + + + + 185 + Contributed Paper Session 13: Aspects of the Delivery of Information Services [120] + + + + + 185 + Contributed Paper Session 14: Applications of New Technologies to Information Systems [121] + + + + + + 120-126 + + 1 folder + + + + + 185 + Contributed Paper Session 15: Information Interactions Among Health Science Professionals [122] + + + + + 185 + Symposium on Zen and the Art of Motorcycle Maintenance: A Holistic View of Quality as It Relates to Information Science [125] + + + + + 185 + Special Symposium 6: Tools for Information Resources Management [126] + + + + + + 136-139 + + 1 folder + + + + + 185 + Panel on the Role of the For-Profit Sector in Library Networks [136] + + + + + 185 + Contributed Paper Session 16: Educational Applications of Information Technology [137] + + + + + 185 + Contributed Paper Session 17: Research in Library Automation; Part 1 [138] + + + + + 185 + Panel on End-User Databases [139] + + + + + + 140-143 + + 1 folder + + + + + 185 + Doctoral Forum [140] + + + + + 185 + Symposium on the Perspectives on the Study of Human-Computer Interaction [142] + + + + + 185 + Special Symposium 7: The Value of Information [143 A-B] + + + + + + 146-148 + + 1 folder + + + + + 185 + Contributed Paper Session 18: Research in Library Automation; Part 2 [146] + + + + + 185 + Contributed Paper Session 19: Providing Access to Information in the Medical and Health Sciences [147] + + + + + 185 + Information Science Theater Presentation 4: The Magic of Animation: The Disney Studio's Approach to Communication Through Art [148] + + + + + + 150-155 + + 1 folder + + + + + 185 + Panel on Unix in the Library [150] + + + + + 185 + Contributed Paper Session 20: Human Factors in Information System Design [152] + + + + + 185 + Contributed Paper Session 21: Information Interactions in the University Library [153] + + + + + 185 + Late-Breaking Developments [155] + + + + + + 156-158 + + 1 folder + + + + + 185 + Panel on Information Management Education [156] + + + + + 185 + Symposium on Recent Topics in Medical Information Systems [157] + + + + + 185 + Special Panel Session 8: The Application of Research to Information Retrieval Systems [158] + + + + + + 185 + Unidentified tapes + + 2 folders + + + 9 tapes + + + + + + + Information Science: What Is It?: slide presentation, 1979 + + 6 slide trays and 3 audio cassettes + + 6 minutes 15 seconds + + + + 186 + Left projector tray, copies 1-3, and audio + + + + + 187 + Right projector tray, copies 1-3, and audio + + + +
    + + + Restricted Materials + + + + 188 + Materials from various series + + + +
    +
    +
    diff --git a/sample-ead/scrc/lha.xml b/sample-ead/scrc/lha.xml new file mode 100755 index 0000000..d1e4bdc --- /dev/null +++ b/sample-ead/scrc/lha.xml @@ -0,0 +1,3309 @@ + + + + umich-scl-lha + + + Finding Aid for Lincoln Highway Association Records, 1911-1941 + Collection processed and finding aid created by Cassandra A. Schmitt. + + + University of Michigan Library (Special Collections Research Center) + 2008 + + + + Encoded finding aid created by Sally Vermaaten 01252008 + The finding aid is written in English + + + + 20080125 + Original encoding from Word 2000 file using Word macros and Xmetal. + + + + + + University of Michigan Library (Special Collections Research Center) + University of Michigan Library (Special Collections Research Center) + University of Michigan + Finding aid forLincoln Highway Association Records, 1911-1941 + Finding aid created by Cassandra A. Schmitt, Kathleen Dow, 2007 + Encoded finding aid prepared by Sally Vermaaten, 2008 + + + + + + Lincoln Highway Association + + Lincoln Highway Association Records 1911-1941 1912-1930 + + 6 linear ft. and 1 portfolio + + THC-LHA + The material is in English + Formed in 1913 by Carl G. Fisher, Frank A. Seiberling, and Henry B. Joy, the Lincoln Highway Association was made up of representatives from the automobile, tire, and cement industries. The Association aimed to plan, fund, construct, and promote the first transcontinental highway in North America. The route ran from New York to San Francisco, and covered approximately 3,400 miles. The Detroit headquarters of the Association closed in 1928. This collection contains: correspondence, particularly between members of the Association and government officials; meeting minutes; reports, bulletins, and newsletters published by the Association; motorist maps of the route; and annotated editions of The Complete Official Road Guide of the Lincoln Highway. Photographs from the Lincoln Highway Association Records have been digitized and are accessible online at the Lincoln Highway Digital Image Collection (http://quod.lib.umich.edu/l/linchigh). The Digital Image Collection contains over 3,000 images including views of construction underway, towns and cities, markers, bridges, cars, camp sites, scenic views, and snapshots of Association directors and field secretaries traveling the route. + University of Michigan Library (Special Collections Research Center) + + + + +

    Donated by Gael Hoag and H.C. Ostermann in 1937.

    +
    + +

    The collection is open for research.

    +
    + +

    Copyright has been transferred to the Regents of the University of Michigan. Contact the Special Collections Library for permission to publish.

    +
    + +

    Lincoln Highway Association Records, University of Michigan Library (Special Collections Research Center)

    +
    + +

    Processed by Cassandra A. Schmitt, Kathleen Dow, 2007.

    +
    + +

    The majority of the photographs from the original archive have been rehoused and digitized. They may be viewed at the Lincoln Highway Digital Image Collection.

    +
    +
    + +

    The Lincoln Highway Association formed in July 1913 for the purposes of building the first transcontinental highway in North America. The idea was promoted by Carl G. Fisher beginning in September 1912 under the name "The Coast-to-Coast Rock Highway". Fisher was behind the creation and paving of the Indianapolis Motor Speedway and the organization of the first Indianapolis 500 in 1911. He founded the Prest-O-Lite Company, which made carbide headlights for automobiles. Fisher promoted his idea among other businessmen in the automobile industry. He felt that the highway would promote business as well as provide citizens with an enjoyable route throughout the towns and countryside.

    +

    Fisher's 1912 estimate for the gravel highway was ten million dollars. Funds would be used to purchase materials with the idea that labor and machinery would be provided by the municipalities the route passed through. Fisher's fundraising efforts were an immediate success. He gained support from the automobile industry as different companies pledged to support one percent of their revenues' to the highway. Donations by individuals in the amount of five dollars also began to arrive. Men such as Frank A. Seiberling of the Goodyear Tire Company and Henry B. Joy of the Packard Motor Car Company were influential in gaining more support from the automobile industry, despite the fact that Henry Ford and the Ford Motor Company refused to support the project.

    +

    Briefly located in Indianapolis, the headquarters of the Lincoln Highway Association settled in Detroit, Michigan. In July 1913 the Lincoln Highway Association was incorporated and the group of businessmen exclaimed their purpose, "To procure the establishment of a continuous improved highway from the Atlantic to the Pacific, open to lawful traffic of all description without toll charges: such highway to be known, in memory of Abraham Lincoln, as 'The Lincoln Highway.'" The proposed highway was named after Lincoln to honor the fallen president as well as to appeal to American citizens' sense of patriotism and thereby gain support and funding for the project. The new board of directors began planning the route of the highway, beginning in New York City and ending in San Francisco, California. The goal was to find the shortest route from coast to coast while passing through towns and scenic locations to provide an enjoyable drive.

    +

    Throughout its history, the Association was organized and administered by businessmen from the automobile industry. The group ran many public events to gain support for the highway and awarded donations with certificates, membership cards, and pins. A system of consuls was developed in order to help manage the situation and communication regarding the highway along the route. The board appointed one consul for each state who in turn named consuls for various counties and towns. The consul system also enabled more people to become involved in the operations of the Association.

    +

    When completed, the route ran through twelve states including: New York, New Jersey, Pennsylvania, Ohio, Illinois, Iowa, Nebraska, Wyoming, Utah, Nevada, and California and spanned approximately 3,400 miles. The route was strenuous and some areas were still treacherous to pass by automobile. The Lincoln Highway Association began constructing "seedling miles," or paved sections, along the route with the support of the cement and steel companies. The Association hoped this would create more support and demand for the Lincoln Highway as well as increase its use and value. The construction of "seedling miles" halted in 1919 when the Association felt the public was fully behind the construction of paved roadways.

    +

    The route underwent slight changes to make it more direct as well as easier to pass. Several sections of the route received considerably more attention than others including the "Ideal" Section in Indiana and what became known as the Seiberling Section through Utah and Nevada. The highway throughout Utah and Nevada was a concern as the sparse population, poor infrastructure, and inhospitable geography made travel difficult.

    +

    In July 1919, Henry C. Ostermann embarked on the first Army Transcontinental Motor Convoy across the Lincoln Highway accompanied by seventy-two vehicles and 297 men. The group included both military personal as well as civilians. The convoy was used as training, testing of military vehicles, and served as a test of the stability of the roads and bridges on the Lincoln Highway. The trip lasted sixty-two days and included numerous repairs on military vehicles as well as the rebuilding of bridges that did not support the heavy loads. The convoy was successful in convincing the military that paved roads were essential to the country's national defense. In turn, federal funding for paved highways exploded.

    +

    In 1922 the Association began construction on the "Ideal" Section between Schererville and Dyer, Indiana. This 1.3 mile stretch had concrete paving ten inches thick and allowed up to four lanes of traffic with its forty foot width. The section was illuminated for night driving. The "Ideal" Section was yet another tactic by the Lincoln Highway Association to gain support and use for improvement of their route. It was during this time that the Lincoln Highway began competing with other transcontinental routes for attention, money, and use.

    +

    By 1925 the Federal Highway System was well developed and numbered routes east-west as well as north-south covered the map. The prominence of the federal system lead to a decline for named highways, including the Lincoln Highway. Portions of the Lincoln Highway were marked with numbered federal routes at this time.

    +

    The Lincoln Highway Association officially disbanded at the end of 1927 after realizing their mission to begin an intercontinental network of highways succeeded. The organization continued to have informal meetings sporadically for several subsequent years. In 1928, the Boy Scouts of America erected 3,000 markers along the route of the Lincoln Highway. The cement markers were designed by the Association and intended to keep motorist on the route. The red, white, and blue makers carried the Lincoln Highway insignia and directional arrows pointed motorists to the continuation of the route.

    +

    The Interstate Highway Act of 1956 further eroded the use of the Lincoln Highway. Routes were redirected outside of towns to decrease traffic. Interstate 80 took over as the transcontinental highway across the middle of the country. Interstate 80 runs along the same basic route as the old Lincoln Highway in many locations, but is straighter, quicker, and ultimately shorter than the original Lincoln Highway. Many portions of the Lincoln Highway lay unused and in ruins today, other portions are still used as local routes through many states, and in some areas the old, abandoned highway can be seen running alongside the current Interstate 80. Only a fraction of the original 3,000 markers remain.

    +

    Sources:

    +

    Hokanson, Drake. The Lincoln Highway: Main Street Across America . Iowa City, Iowa: University of Iowa Press. 1999.

    +
    + +

    The Lincoln Highway Association Records date from 1911 to 1993 with the bulk of materials concentrated before 1930. The records are divided into five series: Official Business (1912-1941), Correspondence (1912-1929), Planning (1914-1940), Publicity (1911-1993), Publications (1915-1935), Jens Jensen Drawings (1922-1924) and Miscellaneous.

    +

    The Lincoln Highway Association archive was donated to the University of Michigan's Transportation Library in 1937. The archive was transferred to the Special Collections Library in 1992.

    +

    Communication was frequent between members of the Association as well as with officials from towns, counties, states, and the federal government. Correspondence and meeting minutes make up an important part of the collection. The Association published reports, bulletins, and newsletters to keep board members and the public aware of the Highway's progress. Maps of the driving route along with mileages were provided for motorists for navigation as were five editions of The Complete Official Road Guide of the Lincoln Highway .

    +

    Photographs from the Lincoln Highway Association Records have been digitized and are accessible online at the Lincoln Highway Digital Image Collection (http://quod.lib.umich.edu/l/linchigh). The Digital Image Collection contains over 3,000 images including views of construction underway, towns and cities, markers, bridges, cars, camp sites, scenic views, and snapshots of Association directors and field secretaries traveling the route.

    +
    + +

    + +

    + + Subjects: + Bement, Austin. + Chapin, Roy D. (Roy Dikeman), 1880-1936. + Fisher, Carl G. (Carl Graham), 1874-1939. + Hoag, Gael. + Jensen, Jens, 1860-1951. + Joy, Henry B. (Henry Bourne), 1864-1936. + Ostermann, Henry C., d. 1920. + Pardington, Arthur. + Lincoln Highway Association. + Associations, organizations, etc. -- 20th century -- Indiana -- Indianapolis. + Associations, organizations, etc. -- 20th century -- Michigan -- Detroit. + Automobile travel -- United States -- 20th century. + Roads -- Esthetic considerations. + Roads -- United States -- Design and construction -- 20th century. + Roadside architecture -- United States. + Scenic byways -- United States -- 20th century. + Transportation, Automotive -- United States. + United States -- Description and travel -- 1910- + Detroit (Mich.) -- History -- 20th century. + Lincoln Highway. + Lincoln Highway -- Guidebooks. + + + Genre Terms: + Correspondence. + Drawings. + Logs (records). + Minutes. + Maps. + Travel guidebooks. + Photographs. + +
    + + + + Official Business + + +

    The Official Business series (1912-1941) contains records relating to operational functions of the Association and consists of several subseries including Meeting Minutes, Reports, Bulletins, and Legal Documents.

    +

    Meeting Minutes (1913-1926) contains the official meeting minutes and accompanying documents for the Board of Directors (1913-1925), Executive Committee (1923-1941), Organization Committee (1913-1915), and the Annual Meeting (1923-1926). Meeting minutes were concentrate heavily on the finances of the Lincoln Highway Association. Details of fundraising efforts and explanations of how money was spent on building costs, contractors, and so on, are present in the minutes. Meeting minutes were housed in black leather binders with "[name of the committee], Lincoln Highway Association" in gold printing. The binders are retained as artifacts and are located in Box 5.

    +

    The Reports subseries (1914-1923) includes official reports from the Lincoln Highway Association. These include Annual Reports, Technical Committee Meeting Reports, and a number of miscellaneous reports. The purpose of the majority of reports is to describe progress on the construction of the Lincoln Highway. Some reports are specifically focused for internal organization use while others were written for the Department of Agriculture or other government bodies.

    +

    Bulletins (1912-1926) include three main subcategories: "Bulletins from Secretary's Office," "Directors' Bulletins," and "To Directors, Officers, and Founders." The Association used these bulletins as a form of communication to provide their officials with up-to-date information regarding the activities of the organization. The changes in category stated above were different names of the same bulletin, which remained consistent in content and form. It appears that bulletins were issued on a weekly or semi-weekly basis. The typical bulletin was one to two pages in length and authored by the Secretary of the Association.

    +

    The Legal Documents suberies (1913-1927) is a mix of internal and external records containing several varieties of documents. Founding Documents/Internal resolutions contains records pertinent to the establishment of the organization including the prospectus and incorporation papers of the Lincoln Highway Association. Internal resolutions passed by various boards within the Association are also present. Contracts/Resolutions with States includes documents from Indiana and Utah with the Association regarding the construction of the Lincoln Highway. Legislative Documents contains copies of bills from both the Senate, House of Representatives, and state governments. Financial Statements/Reports is relatively small, consisting of scattered formal financial statements. A majority of this information is out of context. For more records dealing with financial information see the Meeting Minutes subseries and the Correspondence series. Hearings/Briefs before the Secretary of Agriculture contain the transcripts and published version of a report concerning the Lincoln Highway in Utah and Nevada given on May 14, 1923.

    +
    + + + Meeting Minutes + + + + Board of Directors + + + + 1 + + July 1, 1913 + + + + + + 1 + + July 1, 1913-September 29, 1913 + + + + + + 1 + + October 27, 1913-October 6, 1914 + + + + + + 1 + + November 10, 1914 + + + + + + 1 + + December 1, 1915-November 9, 1916 + + + + + + 1 + + January 26, 1918 + + + + + + 1 + + December 30, 1918 + + + + + + 1 + + December 30, 1919 + + + + + + 1 + + April 17, 1920-December 4, 1920 + + + + + + 1 + + December 28, 1920 + + + + + + 1 + + May 27, 1921-December 28, 1921 + + + + + + 1 + + December 28, 1921 + + + 2 folders + + + + + + 1 + + January 19, 1923 + + + + + + 1 + Business Meeting, 1925 + + + + + + Executive Committee + + + + 1 + + August 14, 1923-December 7, 1923 + + + + + + 1 + + January 17, 1924-December 1, 1923 + + + + + + 1 + + May 22, 1924-January 19, 1925 + + + + + + 1 + + January 21, 1925 + + + + + + 1 + + January 21, 1925-April 21, 1926 + + + + + + 1 + + April 21, 1926-October 30, 1926 + + + + + + 1 + + September 27, 1927-October 31, 1927 + + + + + + 1 + + October 31, 1927-March 3, 1928 + + + + + + 1 + + July 22, 1929-December 16, 1936 + + + + + + 1 + + April 15, 1937-October 1, 1941 + + + + + + + Organization Committee + + + + 1 + + April 21, 1913-May 9, 1913 + + + + + + 1 + + May 10, 1913-September 10, 1913 + + + + + + 1 + + December 16, 1913 + + + + + + 1 + + January 12, 1914-August 4, 1915 + + + + + + + Annual Meeting + + + + 1 + Correspondence, 1925 + + 2 folders + + + + + + 1 + Correspondence, 1926 + + 2 folders + + + + + + 1 + Menus, 1923-1926 + + + + + 1 + Minutes, 1926 + + + + + + + Reports + + + + Annual Reports + + + + 1 + + 1914 + + + + + + 1 + + 1915 + + + + + + 1 + + 1916 + + + + + + 1 + + 1917 + + + + + + 1 + + 1918 + + + 2 folders + + + + + + 1 + + 1920 + + + 3 folders + + + + + + 1 + + 1921 + + + 2 folders + + + + + + Port. 1 + 1921 (Draft copy with illustrations in 2 volumes, "The Lincoln Highway, Eighth Year of Progress, Nineteen Twenty-One.") + + + + + 1 + Undated draft + + + + + + Technical Committee Meeting Reports/Minutes + + + + 1 + Resolutions, 1920 List of Members + + + + + 1 + Meeting Minutes, 1920 "Ideal" Section + + + + + 1 + Meeting Minutes, 1921-1922 "Ideal" Section + + + + + 1 + April 23, 1921-September 17, 1921 "Ideal" Section + + + + + 1 + November 1, 1921-July 15, 1922 "Ideal" Section + + + + + 1 + July 15, 1922 "Ideal" Section + + + + + 1 + November 3, 1922-May 1, 1923 "Ideal" Section + + + + + 1 + October 31, 1923-November 22, 1923 "Ideal" Section + + + + + + Miscellaneous Reports + + + + 1 + + 1916 + + + + + + 1 + + 1920 + + + + + + 1 + + 1921-1922 + + + + + + 1 + + 1922 + + + + + + 1 + + Undated + + + + + + 1 + An "Ideal Section" on the Lincoln Highway, ca. 1919 + + + + + + + Bulletins + + + + Bulletins from Secretary's Office + + + + 1 + + September 19, 1912-August 15, 1913 + + + + + + + Directors' Bulletins + + + + 1 + + January 26, 1914-April 6, 1914 + + + + + + 1 + + April 13, 1914-July 14, 1914 + + + + + + 1 + + July 27, 1914-February 10, 1915 + + + + + + + To Directors, Officers, and Founders + + + + 1 + + January 22, 1916-April 12, 1916 + + + + + + 1 + + April 15, 1916-July 1, 1916 + + + + + + 1 + + July 15, 1916-December 23, 1916 + + + + + + 1 + + June 23, 1919-December 22, 1921 + + + + + + 1 + + January 17, 1922-January 31, 1922 + + + + + + 1 + + February 4, 1922-April 10, 1922 + + + + + + 1 + + April 11, 1922-June 12, 1922 + + + + + + 1 + + June 19, 1922-August 11, 1922 + + + + + + 1 + + August 21, 1922-October 9, 1922 + + + + + + 1 + + October 16, 1922-October 23, 1922 + + + + + + 1 + + November 6, 1922-December 26, 1922 + + + + + + 1 + + January 3, 1923-April 9, 1923 + + + + + + 1 + + April 16, 1923-July 2, 1923 + + + + + + 1 + + July 9, 1923-August 27, 1923 + + + + + + 1 + + September 13, 1923-October 15, 1923 + + + + + + 1 + + November 5, 1923-December 31, 1923 + + + + + + 1 + + January 5, 1924-March 9, 1925 + + + + + + 1 + + March 16, 1925-May 25, 1925 + + + + + + 1 + + June 1, 1925-July 27, 1925 + + + + + + 1 + + August 3, 1925-October 12, 1915 + + + + + + 1 + + October 19, 1925-December 28, 1925 + + + + + + 1 + + January 5, 1926-March 24, 1926 + + + + + + 1 + + April 5, 1926-June 14, 1926 + + + + + + 1 + + June 25, 1926-October 11, 1926 + + + + + + 1 + + October 20, 1926-December 27, 1926 + + + + + + + + Legal Documents + + + + Founding Documents/Internal Resolutions + + + + 1 + + May 1913-June 1913 + + + + + + 1 + + August 10, 1913-September 14, 1914 + undated + + + + + + 1 + August 2, 1926 undated + + + + + + Contracts/Resolutions with States + + + + Indiana + + + + 1 + + April 22, 1921-April 26, 1921 + undated + + + + + + + Utah + + + + 1 + + March 16, 1916-March 21, 1918 + + + + + + 1 + + July 20, 1920-June 14, 1925 + + + + + + + + Legislative Documents + + + + 1 + + 1917-1924 + undated + + + + + + + Financial Statements/Reports + + + + 1 + + May 7, 1913-September 15, 1914 + + + + + + 1 + + May 5, 1916-November 10, 1927 + + + + + + + Hearings/Briefs for Secretary of Agriculture + + + + 2 + Hearing Before the Secretary of Agriculture. Lincoln Highway in Utah and Nevada. Hart, Dice & Carlson, Shorthand Reporters, Washington, D.C., May 14, 1923 + + + + + 2 + Photocopy LH in Utah, Nevada, pp. i-49 + + + + + 2 + Photocopy LH in Utah, Nevada, pp. 50-99 + + + + + 2 + Photocopy LH in Utah, Nevada, pp. 100-143 + + + + + A Brief for the Lincoln Highway in Utah and Nevada Addressed to The Secretary of Agriculture, Washington D.C. A Study of Western Road Strategy Designed to Aid in Determining the Road of Most Immediate Importance Connecting Salt Lake City, Utah, with California. Prepared by The National Headquarters, The Lincoln Highway Association, Detroit, Michigan, March 15, 1923. + + + + 5 + Paperback Copy + + + + + 5 + Roy D. Chapin's Copy + + + + + 5 + Boxed Leather Copy + + + + + + + + 2 + Medals + + + + + 2 + H.C. Ostermann Memorial + + +
    + + + Correspondence + + +

    The Correspondence series (1912-1929) contains incoming and outgoing correspondence between members of the Lincoln Highway Association, interested individuals and organizations, and federal and state governments. Subseries include: Car Companies, Subscription/Contributions, Federal Government, State Government, Automobile Club of Southern California, and Miscellaneous. Three subseries cover correspondence regarding specific areas along the Lincoln Highway and include the "Ideal" Section, Seiberling Section, and Utah/Nevada. Within the each subseries, the correspondence is organized by correspondent and then chronologically. This series is not comprehensive and does not contain all the collections' correspondence. Some correspondence remains in other series in order to provide context for the themes and topics addressed within the correspondence.

    +

    The Car Companies subseries (1912-1917) includes correspondence between major automobile companies, their representatives, and board members of the Lincoln Highway Association. Key players include Henry Ford and the Ford Motor Company, Will J. Dobyns from the Fisher Automobile Company, Hudson Motor Car Company, Packard Motor Car Company, Union Carbine Company, the American Automobile Association, and Austin Bement, Carl G. Fisher, Henry B. Joy, and Arthur R. Pardington. The majority of correspondence relates to solicitation of funds, donations, subscriptions, discussions of the philosophy of the highway, and some early organizational business between the future board members.

    +

    The subseries Subscriptions/Contributions (1912-1919) provides records of money donated to the cause of building the Lincoln Highway. This is important financial information that is lacking from official organizational records. This series can help to show what individuals and businesses were interested in promoting the Lincoln Highway as well as answer other financial questions regarding donations to the Association. Individuals, representatives of industry, and board members of the Lincoln Highway Association author the letters throughout this subseries. There are also several examples of blank subscription forms.

    +

    The Federal Government (1912-1923) and State Government (1913-1923) subseries deal with exchanges between the Association and the respective governments. Topics for both governments include seeking support for the highway project, both legislatively and financially. Correspondence from the Federal government includes letters between the Department of Agriculture, Secretary of War H.L. Scott, Colonel Theodore Roosevelt, and President William Howard Taft. Letters are present from state governors and agencies in New York, New Jersey, Indiana, Illinois, Nebraska, Utah, and California.

    +

    The Automobile Club of Southern California (1915) has a small exchange of letters between Fred Baker, President of the club in 1915 and Henry B. Joy discussing the Lincoln Highway project. The Automobile Club of Southern California was one of the earliest auto clubs in the country. The organization was active in promoting the cause of the Lincoln Highway, other roads, and published maps and road guides for motorists.

    +

    The Miscellaneous subseries (1912-1925) contains correspondence between Association members including Austin Bement, Carl G. Fisher, Henry B. Joy, individual supporters, and steel and concrete companies.

    +

    The "Ideal" Section subseries (1920-1929) deals with the construction, problems, and issues surrounding the Lincoln Highway between Dyer and Schererville, Lake County, Indiana. Letters are arranged by correspondent and include Vice-President and Secretary of the LHA Austin Bement, Edsel Ford, the landscrape architect Jens Jensen, and the consulting engineer W. G. Thompson.

    +

    The Seiberling Section subseries (1916-1923) deals with portions of the route in Utah. Correspondence is arranged by association members: Austin Bement, Carl G. Fisher, Gael S. Hoag, Henry B. Joy, Henry C. Ostermann, Frank A. Seiberling, and miscellaneous authors. The section of the Highway is named after Frank A. Seiberling, who worked strenuously to solve the problems this section of the route presented.

    +

    The Utah/Nevada suberies (1912-1927) covers discussion of the Highway throughout Utah and Nevada, especially dealing with problems of routing. Correspondents include Austin Bement, Carl G. Fisher, Gael S. Hoag, Henry B. Joy, Henry C. Ostermann, Arthur R. Pardington, Frank A. Seiberling, Secretary of Agriculture Henry C. Wallace, and miscellaneous authors.

    +
    + + + Car Companies + + + + 2 + + September 6, 1912-November 29, 1912 + + + + + + 2 + + February 7, 1913-July 31, 1913 + + + + + + 2 + + August 4, 1913-September 9, 1913 + + + + + + 2 + + September 11, 1913-October 13, 1913 + + + + + + 2 + + October 14, 1913-November 20, 1913 + + + + + + 2 + + March 4, 1914-September 22, 1914 + + + + + + 2 + + October 14, 1914-March 20, 1917 + + + + + + + Subscriptions/Contributions + + + + 2 + Blank forms + + + + + 2 + + September 18, 1912-October 22, 1912 + + + + + + 2 + + October 24, 1912-February 4, 1913 + + + + + + 2 + + February 4, 1913-June 10, 1914 + + + + + + 2 + + March 1919 + undated + + + + + + + Federal Government + + + + 2 + + September 24, 1912-May 4, 1923 + + + + + + + State Governments + + + + 2 + + September 13, 1913-July 20, 1923 + + + + + + + Auto Club of California + + + + 2 + + May 4, 1915-August 6, 1915 + + + + + + + Miscellaneous + + + + 2 + + October 10, 1912-November 25, 1913 + + + + + + 2 + + December 19, 1913-November 25, 1925 + + + + + + + "Ideal" Section-Indiana + + + + Bement, Austin + + + + 2 + + January 22, 1920-August 5, 1920 + + + + + + 2 + + September 10, 1920-January 3, 1923 + + + + + + 2 + + February 14, 1923-October 4, 1923 + + + + + + 2 + + November 19, 1923-September 9, 1925 + + + + + + + Ford, Edsel + + + + 2 + + March 11, 1924-September 3, 1925 + + + + + + + Jensen, Jens + + + + 2 + + May 3, 1922-May 25, 1928 + + + + + + 2 + + November 7, 1928-June 6, 1929 + + + + + + + 2 + Thompson, W.G. May 11, 1923-September 14, 1923 + + + + + + Seiberling Section-Utah/Nevada + + + + Bement, Austin + + + + 2 + + January 12, 1916-February 8, 1916 + + + + + + 2 + + February 9, 1916-June 23, 1916 + + + + + + 2 + + July 5, 1916-March 23, 1918 + + + + + + 2 + + March 27, 1918-May 10, 1918 + + + + + + 2 + + May 22, 1918-April 18, 1919 + + + + + + 2 + + April 24, 1919-July 10, 1919 + + + + + + 2 + + July 10, 1919-September 20, 1919 + + + + + + 2 + + January 23, 1919-April 15, 1926 + + + + + + + Fisher, Carl G. + + + + 2 + + February 8, 1916-January 12, 1918 + + + + + + + Hoag, Gael S. + + + + 2 + + April 5, 1916-May 30, 1920 + + + + + + + Joy, Henry B. + + + + 2 + + January 22, 1916-October 14, 1916 + + + + + + 2 + + October 16, 1916-November 27, 1916 + + + + + + 2 + + December 9, 1916-May 20, 1926 + + + + + + + Ostermann, Henry C. + + + + 2 + + December 3, 1915-February 21, 1918 + + + + + + + Seiberling, Frank A. + + + + 2 + + May 16, 1916-May 28, 1920 + + + + + + + Miscellaneous + + + + 2 + March 19,1919-August 7, 1923 + + + + + + + Utah/Nevada + + + + Bement, Austin + + + + 2 + + December 4, 1915-May 24, 1917 + + + + + + 2 + + July 2, 1917-October 7, 1918 + + + + + + 2 + + June 18, 1919-October 22, 1919 + + + + + + 2 + + October 23, 1919-February 12, 1923 + + + + + + 2 + + February 12, 1923 + + + + + + 2 + + March 28, 1923-June 2, 1924 + + + + + + 2 + + June 23, 1924-August 19, 1926 + + + + + + 2 + + August 26, 1926-September 19, 1927 + + + + + + + Fisher, Carl G. + + + + 2 + + August 11, 1913-September 11, 1919 + + + + + + + Hoag, Gael S. + + + + 2 + + August 15, 1912-January 12, 1916 + + + + + + 2 + + January 25, 1916-March 6, 1916 + + + + + + 2 + + May 1, 1916-April 23, 1920 + + + + + + 2 + + February 12, 1922-April 24, 1923 + + + + + + 2 + + September 15, 1925-October 26, 1927 + + + + + + + Joy, Henry B. + + + + 2 + + May 26, 1914-July 16, 1920 + + + + + + 2 + + July 20, 1920 + + + + + + 2 + July 20, 1920-Februrary 10, 1923 + + + + + 2 + + December 21, 1923-November 19, 1924 + + + + + + 2 + + May 4, 1926-October 13, 1927 + + + + + + + Ostermann, Henry C. + + + + 2 + + February 23, 1915-October 7, 1919 + + + + + + + Pardington, Arthur R. + + + + 2 + + August 22, 1913-March 27, 1915 + + + + + + + Seiberling, Frank A. + + + + 2 + + October 5, 1918-February 10, 1921 + + + + + + + Wallace, Henry C. + + + + 2 + + 1922-June 6, 1923 + + + + + + 2 + + June 7, 1923-June 18, 1923 + + + + + + 2 + + June 28, 1923-December 21, 1923 + + + + + + + Miscellaneous + + + + 2 + + September 13, 1913-February 7, 1920 + + + + + + 2 + + February 21, 1920-January 4, 1922 + + + + + + 2 + + March 13, 1923-August 27, 1924 + + + + + + 2 + Letter book & Blueprints, 1920-1921 + + + + +
    + + + Planning + + +

    The Planning series (1914-1940) covers details relating to planning the route of the Lincoln Highway. The series is divided into the subseries Documents Relating to Utah, 1921-1924, Routing, and Markers.

    +

    Documents Relating to Utah, 1921-1924 is a collection of a variety of records. Originally housed in a grey binder the contents include correspondence, editorials, reports, and press releases regarding the Lincoln Highway in Utah. The first document is an index covering all of the documents in this section. The index was created when the binder was assembled, presumably by an Association member.

    +

    Routing (1914-1930) includes correspondence covering the route through Ohio, Wyoming, Utah, Nevada, and California. Penciled routes, proposed mileages, and road log books all shed light on the detailed routing process. Other information regarding the route including rail roads and campsites is also present.

    +

    Markers (1925-1940) includes correspondence, notes, and sketches regarding the construction and placement of markers along the entire route of the Lincoln Highway. In addition, an original "Log of 1928 Markers" lists the locations of all the markers along the Highway. The original 3,000 markers were placed by the Boy Scouts of America.

    +
    + + + Documents Relating to Utah, 1921-1924 + + + + 5 + Binder, Small + + + + + 2 + + October 26, 1921-November 9, 1921 + + + + + + 2 + + January 26, 1922-February 2, 1922 + + + + + + 2 + + February 27, 1922-January 26, 1923 + + + + + + 2 + September 16, 1922-December 1922 + + + + + 2 + + December 15, 1922-February 12, 1923 + + + + + + 2 + + March 28, 1923-May 24, 1923 + + + + + + 2 + + April 16, 1923-September 26, 1923 + + + + + + 2 + + July 6, 1923-January 18, 1924 + + + + + + + Routing + + + + Correspondence + + + + Ohio + + + + 3 + + January 22, 1914-January 31, 1916 + + + + + + 3 + + February 11, 1916-June 13, 1921 + + + + + + 3 + + June 14, 1921-June 25, 1921 + + + + + + 3 + + June 25, 1921-March 14, 1930 + + + + + + + Wyoming + + + + 3 + + May 7, 1914-December 21, 1918 + + + + + + + Utah, Nevada, California + + + + 3 + + February 22, 1917-July 7, 1919 + + + + + + + + Mileages + + + + Penciled Routes + + + + 3 + Utah, Nevada, California + + 6 Folders + + + + + + + Proposed Mileages + + + + 3 + Utah, Nevada, California + + 5 folders + + + + + + + Log Books + + + + 3 + + 1921 + 1923 + 1926 + + + + + + 3 + + 1920 undated + + + + + + 3 + + 1918 + 1930 undated + + + + + + + + Miscellaneous + + + + 3 + Blueprint of Routes, Wyoming, Utah, Nevada + + + + + 3 + Rail Road Crossing Information, 1927 + + 2 folders + + + + + + 3 + Campsite and Filling Station, "Ideal" Section + + + + + + + Markers + + + + Notes & Correspondence + + + + 3 + + June 1, 1925-February 8, 1934 + + + + + + + Correspondence + + + + 3 + February 10, 1934-January 1940 + + + + + + Notes & Sketches + + + + 3 + + undated + + + + + + + 3 + Log of 1928 Markers + + + + + Photocopy of 1928 Log + + + + 3 + Cover-Pennsylvania 10 + + + + + 3 + Pennsylvania 11-West Virginia + + + + + 3 + Ohio-Ohio 19 + + + + + 3 + Ohio 20-Illinois 4 + + + + + 3 + Illinois 5-Iowa 4 + + + + + 3 + Iowa 5-Iowa 25 + + + + + 3 + Iowa 26-Nebraska 3 + + + + + 3 + Nebraska 4-Nebraska 23 + + + + + 3 + Nebraska 24-Wyoming 2 + + + + + 3 + Wyoming 3-Utah 5 + + + + + 3 + Nevada-California 10 + + + + + 3 + California 11-California 22 + + + + +
    + + + Publicity + + +

    The Publicity series (1911-1993) includes materials devoted to promoting the construction and use of the Lincoln Highway as well as celebrating the Highway's achievements. The series is divided into subseries including Speeches and Essays, Published Articles, Newspaper Clippings, Editorials, Press Releases, and Press Sheets.

    +

    Speeches and Essays (1913-1924) covers a variety of topics relating to the Lincoln Highway. Board members of the Association authored the majority of essays in the collection. Typical speeches and essays focused on the extreme need for the Lincoln Highway as well as the benefits the Highway would provide.

    +

    Published Articles (1918-1992) contains original articles written about the Lincoln Highway. These include articles written by board members in promotion of the Lincoln Highway as well as scholars and enthusiasts celebrating the Lincoln Highway's achievements.

    +

    Newspaper Clippings (1911-1926) are original articles published about the Lincoln Highway. The majority of clippings come from local and regional newspapers. Clippings regarding California and Utah are the most plentiful in the collection.

    +

    The Editorials subseries (1916-1926) contains editorials about the Lincoln Highway. Two folders discuss the Highway in general as well as various places along the route. There is a sub section devoted specifically to the "Ideal" Section in Indiana (1915-1922). This section seems to have been artificially created at a later date. The editorials come from a variety of sources, but are all typed in the same format and style. Two folders cover correspondence regarding editorials.

    +

    The Press Releases and Press Sheets subseries (1917-1924) contain official statements and updates by the Association from Detroit, Michigan. The subsections "Ideal" Section and Utah contain releases specifically focused on the development of the Lincoln Highway in these areas.

    +
    + + + Speeches and Essays + + + + 3 + + September 1913 + undated + + + + + + 3 + + 1915-1917 + + + + + + 3 + April 4, 1917April 26, 1917 + + + + + 3 + + March 1923-March 5, 1924 + + + + + + 3 + Undated, "Ideal" Section + + + + + + Published Articles + + + + 3 + + 1918-1993 + + + + + + 3 + Iowan, 1983 + + + + + 3 + Smithsonian, 1985 + + + + + 3 + Lincoln Highway Days, 1992 + + + + + + Newspaper Clippings + + + + 3 + + May 16, 1911-October 15, 1916 + + + + + + California + + + + 3 + November 5, 1916-December 1921 + + + + + + Utah + + + + 3 + + August 31, 1915-October 22, 1916 + + + + + + 3 + + June 17, 1923-December 1, 1926 + undated + + + + + + + + Editorials + + + + 3 + November 21, 1916-October 1926 undated + + + + + 3 + + March 19, 1923-June 3, 1923 + undated + + + + + + "Ideal" Section + + + + 3 + + July 8, 1915-August 14, 1922 + + + + + + 3 + + August 14, 1922-August 27, 1922 + + + + + + 3 + August 27, 1922-October 1922 + + + + + 3 + + October 1, 1922-October 15, 1922 + + + + + + + Correspondence + + + + 3 + + November 16, 1916-January 3, 1917 + + + + + + 3 + + June 7, 1923-December 7, 1926 + + + + + + + + Press Releases + + + + 3 + April 18, 1917 undated + + + + + "Ideal" Section + + + + 3 + + August 1921-October 4, 1922 + + + + + + 3 + + December 11, 1922-June 1, 1923 + + + + + + 3 + + June 15, 1923-January 28, 1924 + + + + + + 3 + + Undated + + + + + + + Utah + + + + 3 + Binder, Large + + + + + 3 + + October 25, 1920 + + + + + + 3 + + January 22, 1922 + + + + + + 3 + + April 17, 1922-October 24, 1922 + + + + + + 3 + + February 3, 1923 + + + + + + 3 + + March 3, 1923-May 28, 1923 + + + + + + 3 + + June 13, 1923-March 24, 1924 + + + + + + + + Press Sheets + + + + Port. 1 + Scrapbook of "Lincoln Highway Press Sheets, starting with last issue September 1918" (Vol. V No. 38 to Vol. VI No. 3), with loose "Special" bulletins laid-in after last pasted-in press sheets + + + +
    + + + Publications + + +

    The Publications series (1915-1935) covers materials published by the Association as well as materials about the Lincoln Highway. The main subseries are Newspapers, Road Guides, and Maps.

    +

    A scrapbook contains articles and incoming correspondence to Gael S. Hoag and Frank A. Seiberling regarding the book, The Lincoln Highway: The Story of a Crusade that Made Transportation History , published by the Association in 1935. The majority of letters came from supporters requesting copies of the book and praising its success including: officials from the Department of Agriculture, Roads, Public Works and other governmental bodies, libraries and universities, industry, engineers, and auto clubs. Letters and clippings are not in chronological order and cover the period 1935-1939.

    +

    The Newspapers subseries (1915-1926) includes runs of The Lincoln Highway (1915-1919) and the Lincoln Highway Forum (1918-1926).

    +

    Road Guides contains printed local guides for portions of the route running through Colorado, Wyoming, Utah, Nevada, and California. The second, third, and fourth editions of The Complete Official Road Guide of the Lincoln Highway are included. These volumes are particularly special as they were the personal copies of Association board members Henry C. Ostermann (2nd edition) and Gael S. Hoag (3rd and 4th editions). All three copies include hand written notes throughout the guides by their owners.

    +

    The Maps subseries (1905-1935) contains maps covering geography and roads on the national, regional, state, and local scale. National maps cover the national highway systems. Regional maps include national and state roads for more than one state. State maps include California, Colorado, Nevada, and Utah. Several maps depict the paved and dirt roads throughout several national parks. All maps are listed individually within their category and dates are provided when available.

    +

    Route maps along the Lincoln Highway provide mileages for specific sections of the highway and usually come in small strips. There is a complete route map set published by the Lincoln Highway Association detailed the drive from New York to San Francisco. Another important contribution to the route maps section includes maps published by the Automobile Club of Southern California. These route maps cover portions of the Lincoln Highway as well as other regional routes such as the Midland Trail and the Coast Route.

    +
    + + + 5 + Correspondence Scrapbook, 1935-1939 + + + + + Newspapers + + + + + The Lincoln Highway + + + + + 4 + + October 6, 1915-December 8, 1915 + + + + + + 4 + December 15, 1915-Februrary 23, 1916 + + + + + 4 + + March 1, 1916-April 26, 1916 + + + + + + 4 + + May 3, 1916-June 28, 1916 + + + + + + 4 + + July 12, 1916-August 30, 1916 + + + + + + 4 + + September 6, 1916-October 18, 1916 + + + + + + 4 + + November 1, 1916-December 20, 1916 + March 1917 + March 1919 + + + + + + + + Lincoln Highway Forum + + + + + 4 + + May 1918-August 15, 1919 + + + + + + 4 + September 1, 1919-Februrary 15, 1920 + + + + + 4 + + March 15, 1920-December 15, 1920 + + + + + + 4 + + February 1921-October 1921 + + + + + + 4 + + November 1921-December 1922 + + + + + + 4 + + May 1923-November 1923 + + + + + + 4 + + January 1924-March 1925 + + + + + + 4 + + April 1925-February 1926 + + + + + + 4 + + March 1926-December 1926 + + + + + + + + Road Guides + + + + Printed Guides + + + + 4 + Colorado, Wyoming + + + + + + Printed Guides + + + + 4 + Utah, Nevada, California + + 2 folders + + + + + + + Printed Mileages + + + + 4 + Utah, Nevada, California + + 2 folders + + + + + + + The Complete Official Road Guide of the Lincoln Highway. The Lincoln Highway Association. National Headquarters, Detroit, Michigan. + + + + 5 + H.C. Ostermann's Second Edition, 1916 + + + + + 5 + Gael S. Hoag's Third Edition, 1918 + + + + + 5 + Gael S. Hoag's Fourth Edition, 1921 + + + + + + + Maps + + + + National Maps + + + + 4 + National Maps Envelope, 1935 + + + + + 4 + Pikes Peak Ocean-To-Ocean Highway, 1915 + + + + + + United States System of Highways + + + + + 4 + November 11, 1926 Corrected to July 15, 1930 color + + + + + 4 + November 11, 1926 Corrected to July 1, 1935 color + + + + + + + Regional Maps + + 2 folders + + + + + 4 + The Pasear, Inyo Good Road Club, ca. 1915 + + + + + 4 + Mountains to Coast Road Map, Lincoln Highway Garage Company of Ely, Nevada, 1918 + + + + + 4 + Western Pacific Railroad, Feather River Route through California, Nevada, Utah, Corrected to June 1, 1921 + + + + + 4 + Utah Map Showing State Road System, State Road Commission, 1922 together with: + + + + + 4 + Road Map of the State of Nevada, Department of Highways, undated, color + + + + + 4 + Map of Strategic Routes Between Salt Lake City, Utah and California, Lincoln Highway Association, undated, 2 copies in color, 1 copy in black and white + + + + + 4 + Utah and Nevada Regional Lincoln Highway Map, Proposed by Salt Lake, undated (2 copies) + + + + + + State Maps + + 4 folders + + + + + 4 + City Map of Los Angeles, 1905 + + + + + 4 + Main Roads in Colorado, State Highway Commission of Colorado, December 1911 + + + + + 4 + Security Automobile Road Map of San Diego County, 1911 + + + + + 4 + Security Automobile Road Map of Los Angeles and Adjacent Counties, 1912 + + + + + 4 + Utah, Maps of State Roads, State Road Commission, 1915-1916 color (annotated) + + + + + 4 + Southeastern California, The Federal Aid Highway System Progress Map, Department of Agriculture, Bureau of Public Roads, November 9, 1921 Corrected to August 31, 1935 + + + + + 4 + Southwestern California, The Federal Aid Highway System Progress Map, Department of Agriculture, Bureau of Public Roads, November 9, 1921 Corrected to August 31, 1935 + + + + + 4 + Central California, The Federal Aid Highway System Progress Map, Department of Agriculture, Bureau of Public Roads, November 9, 1921 Corrected to September 1, 1936 + + + + + 4 + Northern California, The Federal Aid Highway System Progress Map, Department of Agriculture, Bureau of Public Roads, November 9, 1921 Corrected to December 1, 1936 + + + + + 4 + Utah Map Showing State Road System, State Road Commission, 1922 (annotated) + + + + + 4 + Utah, Types of Surfacing on Sate Road System, November 1, 1922 + + + + + 4 + Utah Map Showing State Road System, State Road Commission, 1923 (2 copies) + + + + + 4 + Map Showing Construction Progress, State Highway System of Nevada, December 8, 1923 + + + + + 4 + State Road Map of Utah, State Road Commission, 1926 color (2 copies) + + + + + 4 + Partial Nevada State Road Map, undated, color + + + + + 4 + Hotel Plaza, San Francisco, undated, color + + + + + + National Park Maps + + + + 4 + Eldorado National Forest, California, Mt. Diablo Meridian, U.S. Department of Agriculture, Forest Service, 1916 + + + + + 4 + Automobile Guide Map Showing Roads in the Yosemite National Park, California, Department of the Interior, National Park Service, March 1, 1916 + + + + + 4 + Automobile Guide Map Showing Roads in the Glacier National Park, Montana, Department of the Interior, National Park Service, 1917 + + + + + 4 + Automobile Guide Map Showing Roads in the Mount Rainier National Park, Washington, Department of the Interior, National Park Service, 1917 + + + + + 4 + Map Showing All Routes into Yosemite National Park, California State Automobile Association, undated, color + + + + + + Route Maps + + + + National Route Maps, Lincoln Highway Association + + 3 folders + + + + + 4 + General Map of Transcontinental Routes with Principal Connections, American Automobile Association, 1912-1913 (annotated) + + + + + 4 + Map of the Midland Trail Showing Every City, Town, Village, and Hamlet Throughout Its Entire Length, Midland Trail Association, October 1915 color + + + + + 4 + The Lincoln Highway, Lincoln Highway Association, 1924March 1, 1928 color + + + + + 4 + Lincoln Highway, New York to San Francisco, 17 Maps, Lincoln Highway Association, undated + + + + + 4 + Lincoln Highway, New York to San Francisco, 17 Maps, Lincoln Highway Association, undated (16 Maps present-annotated) + + + + + + Regional Route Maps + + 2 folders + + + + + 4 + Stockton to Sacramento, Route and Map Bureau, California State Automobile Association, undated + + + + + 4 + Los Angeles to Witter and Santa Ana, undated + + + + + 4 + Main Roads Between San Francisco-Lake Tahoe and Reno, Nevada, undated + + + + + 4 + Portion of Great Salt Lake, Utah, undated + + + + + 4 + Automobile Route East of the Sierras from Los Angeles to Lake Tahoe, Touring Bureau, Route and Map Service, Automobile Club of Southern California, Part One and Two, 1912 + + + + + 4 + Sacramento to Silver Fork and Sacramento to Auburn, Route and Map Bureau, California State Automobile Association, February 10, 1915 + + + + + 4 + Automobile Roads from San Francisco to Sacramento via Sacramento Causeway, Route and Map Bureau, California State Automobile Association, undated + + + + + 4 + San Francisco to Stockton, Route and Map Bureau, California State Automobile Association, undated + + + + + 4 + Automobile Roads from San Francisco to Sacramento via Martinez, Cordelia & Davis also via Sausalito, Black Point, Napa & Cordelia, California State Automobile Association, undated (annotated) + + + + + 4 + Automobile Roads of San Francisco Contra Costa and Alameda Counties, Touring Bureau, California State Automobile Association, undated (annotated) + + + + + 4 + Omaha to Chicago and Philadelphia, Touring Bureau, Route and Map Service, Automobile Club of Southern California, undated + + + + + 4 + Official Lincoln Highway Guide Thru Iowa, Midland Map & Engineering Company, 1820 + + + + + 4 + Ely to Salt Lake City, Touring Bureau, Route and Map Service, Automobile Club of Southern California, 1917 + + + + + 4 + Stockton to Sacramento, Route and Map Service, Automobile Club of Southern California, February 10, 1915 + + + + + 4 + Silver Fork, California to Reno, Nevada and Truckee, California to Reno, Nevada, Route and Map Service, Automobile Club of Southern California, February 10, 1915 + + + + + 4 + Auburn to Truckee, Route and Map Service, Automobile Club of Southern California, February 7, 1915 + + + + + + Automobile Club of Southern California + + + + 4 + Sacramento to Salt Lake City Case, undated + + + + + 4 + Sacramento to Lake Tahoe & Reno via Placerville, undated + + + + + 4 + Reno to Ely, 1918 + + + + + 4 + Ely to Salt Lake City, 1917 undated + + 2 folders + + + + + + 4 + Salt Lake City to New York Case, undated + + + + + 4 + Salt Lake City to Omaha, 1919 undated + + 5 folders + + + + + + 4 + Omaha to Chicago & Philadelphia, undated + + 3 folders + + + + + + 4 + Philadelphia to New York, undated + + + + + 4 + Miscellaneous Maps Case, undated + + + + + 4 + Los Angeles to Ely via the Midland Trail, undated + + 3 folders + + + + + + 4 + Sacramento & Lake Tahoe via Truckee, undated + + + + + 4 + Los Angeles to San Francisco via the Coast Route, 1917-1918undated + + + + + 4 + Miscellaneous Routes, 1918 undated + + 3 folders + + + + + + +
    + + + Miscellaneous + + +

    The Miscellaneous series is comprised of scrapbooks, photographs, stationery, and correspondence between the Lincoln Highway Association and the University of Michigan. The series' correspondence deals with the transfer of records to the Transportation Library, Engineering Department, lending of photographs, and the transactions between the library and Walt Disney Productions regarding several reels of film about the Lincoln Highway. Photographs include shots of the highway previously published as well as original photos of several board members. Photographs from the collection have been digitized and are accessible online at the Lincoln Highway Digital Image Collection. The Lincoln Highway Digital Image Collection contains over 3,000 images including views of construction underway, towns and cities, markers, bridges, cars, camp sites, scenic views, and snapshots of Association directors and field secretaries traveling the route.

    +
    + + + Photographs + + + + 4 + On the Road + + + + + 4 + Directors + + 3 folders + + + + + + + 4 + Stationery + + + + + University of Michigan Correspondence + + + + 4 + + May 20, 1943-December 1, 1945 + + + + + + 4 + + December 3, 1945-October 3, 1946 + + + + + + 4 + + October 5, 1946-January 9, 1947 + + + + + + 4 + + February 14, 1947-February 8, 1973 + + + + + + Walt Disney Productions + + + + 4 + + October 9, 1957-October 30, 1957 + + + + + + 4 + + October 30, 1957-December 13, 1957 + + + + + + 4 + + December 20, 1957-May 6, 1958 + + + + + + + 6 + Scrapbooks of clippings and mock-ups of publicity brochures (5 items) + + + +
    + + + Jens Jensen Drawings + + +

    The Jens Jensen Drawings series (1922-1924) includes seven sketches by the landscape architect for a Campsite and Filling Station located in the Ideal Section, Lake County, Indiana, which was never built. The drawings are in color pencil on onion paper. Six of the sketches portray the general plan of the campsite from an aerial view. One sketch includes the designs for grease and wash racks, filling station and museum, stove and incinerator, and the camp fire.

    +
    + + + Port. 1 + "A Preliminary Sketch for the Camp Site-Ideal Section-Lincoln Highway. Lake County-Indiana. June 1923" (26in x 36.5in; color) + + + + + Port. 1 + "A Preliminary Sketch for the Camp Grounds-Ideal Section-Lincoln Highway. Lake County-Indiana. December 1922" (26in x 36.5in; color) + + + + + Port. 1 + "A Preliminary Sketch for the Camp Site-Ideal Section-Lincoln Highway. Lake County-Indiana. July 1923" (21.5in x 38.5in; b&w) + + + + + Port. 1 + "A Preliminary Sketch for the Camp Site-Ideal Section-Lincoln Highway. Lake County-Indiana. December 1923" (16.5in x 37in; color) + + + + + Port. 1 + "Campsite with Estimates, [July ] 1924" (16in x 39.5in; color) + + + + + Port. 1 + "Details for Camp Site-Ideal Section-Lincoln Highway. Lake County-Indiana. May 1924" (11.75in x 38.5in; color) + + + + + Port. 1 + "A Preliminary Sketch for the Camp Site-Ideal Section-Lincoln Highway. Lake County-Indiana. May 1924" (drawing: 25in x 35in; framed: 28.25in x 41.25in; color) (CANTILEVER WEST) + + +
    +
    +
    +
    diff --git a/sample-ead/scrc/waldman.xml b/sample-ead/scrc/waldman.xml new file mode 100755 index 0000000..9977ba3 --- /dev/null +++ b/sample-ead/scrc/waldman.xml @@ -0,0 +1,26219 @@ + + + + umich-scl-waldman + + + Finding Aid for the Anne Waldman Papers, + 1945-2012 + + Anne Waldman Papers + Finding aid prepared by Rebecca Bizonet, Daniel Santamaria (2001-2002), Rosemary Pal (2013-2014), Beth Myerowitz (2015). + + + University of Michigan Library (Special Collections Research Center) +
    + 913 S. University Avenue + 8th Floor, Harlan Hatcher Graduate Library + Ann Arbor, Michigan, 48109-1190 + (734) 764 9377 + special.collections@umich.edu +
    + 2001-2015 +
    +
    + + This finding aid was produced using the Archivists' Toolkit + 2015-11-13T12:49-0500 + + eng + +
    + + + University of Michigan Library (Special Collections Research Center) + Finding Aid for the Anne Waldman Papers, + + Finding aid prepared by Rebecca Bizonet, Daniel Santamaria (2001-2002), Rosemary Pal (2013-2014), Beth Myerowitz (2015). + + + + + + Waldman, Anne, 1945- + + Anne Waldman Papers + 1945-20121965-2000 + + + 119.5 Linear feet (85 record center boxes, 7 ms. boxes, 4 large flat oversize boxes, 10 medium flat oversize boxes, 2 small flat oversize boxes and 2 portfolios.) + + Printed material in boxes 77-80 and Portfolio 1; Artwork in boxes 81, 82, 99-108, and Portfolio 2; Photographs in boxes 83, 84, and 98 (includes slides); Audiovisual materials in boxes 85-92 (including reformatted copies). + waldman + The material is in + English. + + American poet; co-founder of the Jack Kerouac School of Disembodied Poetics at Naropa University. Papers include correspondence, poems, essays, photographs, art, biographical material, and audiovisual materials. + University of Michigan Library (Special Collections Research Center) + + + + Separated Materials note +

    Published books and serials have been cataloged separately.

    +
    + + + Immediate Source of Acquisition note +

    Acquired from Anne Waldman, beginning in 1998. Selected Naropa material donated by Naropa University in 2012.

    +
    + + Conditions Governing Access note +

    The collection is open for research. Access to material in Boxes 27 and 43 is restricted.

    +

    The restrictions are as follows: Correspondence in box 27 has been closed for the lifetime of the donor. Student and Faculty evaluations in box 27 have been closed for a period of 75 years from the date of the creation of the records (2063-2064). Journals in box 43 have been closed for the lifetime of the journal authors.

    +
    + + Conditions Governing Use note +

    Copyright has not been transferred to the Regents of the University of Michigan. Permission to publish must be obtained from the copyright holder(s).

    +

    + + + +

    Anne Waldman Papers, University of Michigan Library (Special Collections Research Center)

    + + +

    Finding aid prepared by Rebecca Bizonet, Daniel Santamaria (2001-2002), Rosemary Pal (2013-2014), Beth Myerowitz (2015).. +

    +
    +
    + +

    Internationally recognized and acclaimed poet Anne Waldman has been an active member of the “Outrider” experimental poetry community, a culture she has helped create and nurture for over four decades as writer, editor, teacher, performer, magpie scholar, infra-structure curator, and cultural/political activist. Her poetry is recognized in the lineage of Whitman and Ginsberg, and in the Beat, New York School, and Black Mountain trajectories of the New American Poetry. Yet she remains a highly original “open field investigator” of consciousness, committed to the possibilities of radical shifts of language and states of mind to create new modal structures and montages of attention. Her work is energetic, passionate, panoramic, fierce at times. She is the author of more than 40 books, including the mini-classic Fast Speaking Woman, a collection of essays entitled Vow to Poetry and several selected poems editions including Helping the Dreamer, Kill or Cure and In the Room of Never Grieve. She has concentrated on the long poem as a cultural intervention with such projects as Marriage: A Sentence, Structure of The World Compared to a Bubble, and Manatee/Humanity, which is a book-length rhizomic meditation on evolution and endangered species, and the monumental anti-war feminist epic The Iovis Trilogy: Colors in the Mechanism of Concealment, a 25 year project.

    +

    She was one of the founders and directors of The Poetry Project at St. Marks’s Church In-the-Bowery, working there for twelve years. She also co-founded with Allen Ginsberg the celebrated Jack Kerouac School of Disembodied Poetics at Naropa University, the first Buddhist inspired University in the western hemisphere, in 1974. Ginsberg has called Waldman his “spiritual wife.” She is a Distinguished Professor of Poetics at Naropa and continues to work to preserve the school’s substantial literary/oral archive. She has edited and co-edited many collections based on the holdings of the Kerouac School including Civil Disobediences andBeats at Naropa. She is also the editor of Nice to See You, an homage to poet Ted Berrigan, The Beat Book, and co-editor of The Angel Hair Anthology.

    +

    She has been a fellow at the Rockefeller Foundation’s Bellagio Center, a fellow at the Civitella Ranieri Foundation in Umbria, and has held the Emily Harvey residency in Venice. She has worked at the Institute of American Indian Arts in Santa Fe and at the Women’s Christian College in Tokyo. She has presented her work at conferences and festivals around the world, most recently in Wuhan, Beijing, Berlin, Nicaragua, Prague, Kerala, Mumbai, Calcutta, Marrakech, and Madrid. Her work has been translated into numerous languages.

    +

    Waldman works with the anti-nuclear Guardianship Project in Boulder and was arrested in the 1970s with Allen Ginsberg and activist Daniel Ellsberg at Rocky Flats, which led to a commitment to the accountability for nuclear waste to future generations, a vow that according to Waldman is “a nearly quarter of a million year project.”

    +

    “Waldman’s work is the antithesis of stasis. . . . She is a flame,” as one reviewer has noted.

    +

    She has also collaborated extensively with a number of artists, musicians, and dancers, including George Schneeman, Elizabeth Murray, Richard Tuttle, Donna Dennis, and Pat Steir, and the theatre director Judith Malina. Her play “Red Noir” was produced by the Living Theatre and ran for nearly three months in New York City in 2010. She has also been working most recently with other media including audio, film and video, with her husband, writer and video/film director Ed Bowes, and with her son, musician and composer Ambrose Bye. Publishers Weekly recently referred to Waldman as “a counter-cultural giant.”

    +

    “Cyborg on the Zattere,” with music by composer Steven Taylor and 12 performers, including cellist Ha-Yang Kim and reed instrumentalist Marty Erlich and a Renaissance trio, premiered at the Douglas Dunn Salon in Spring of 2011. This “Poundatorio” takes on the “knot” of Ezra Pound, his poetics and politics. It includes settings for parts of the Pisan Cantos.

    +

    She was active in Occupy Art, an offshoot of Occupy Wall Street in NYC, and has recently been involved in projects around the theme of Symbiosis, which studies the interaction between two or more different biological species. “The living together of unlike organisms,” a challenge for our times. How to include the cyborg? How to insure / take better care of the “human” in relation. Fight the pipelines and induced hydraulic fracturing. More arts in education!

    +

    Waldman is a recipient of 2013 Guggenheim Fellowship, the Poetry Society of America’s Shelley Memorial Award, and has recently been appointed a Chancellor of The Academy of American Poets. The Huffington Post named her one of the top advocates for American poetry.

    +

    Waldman divides her time between New York City and Boulder, Colorado.

    +

    ("About," annewaldman.org. Retrieved 2015-08-31)

    +
    + +

    The Anne Waldman papers are divided into sixteen series: Biographical; Correspondence and Name File; Writing; Journals and Notebooks; Editing and Publishing; Naropa; Other Activities; Personal; Early Years; Family; Handmade Books; Printed Material; Art; Photographs, Slides, and Negatives; Audiovisual; and Oversize. Researchers should note that books and serial publications from Waldman's library have been separated from the collection and cataloged individually.

    +

    + + + Biographical -- Box 1 + + Correspondence + + Name File -- Boxes 2-21 + Miscellaneous Correspondence -- Boxes 21-24 + Unidentified and Outgoing Correspondence -- Box 25 + Email -- Box 26 + + + + Writing + + Early Work and Fiction -- Box 28 + Essays, Speeches, and Interviews -- Boxes 28-29 + Poetry -- Boxes 29-38 + + + + Journals and Notebooks -- Boxes 39-43 + + Editing and Publishing + + Small Press and Little Magazine -- Boxes 44-46 + Books -- Boxes 46-56 + + + + Naropa -- Boxes 56-63 + + Other Activities -- Boxes 64-65 + + Personal -- Boxes 65-67, oversize box 96 + + Early Years -- Boxes 67-69, oversize box 97 + + Family -- Boxes 69-72, oversize box 95 + + Handmade Books -- Boxes 73-76 + + Printed Material + + Broadsides -- Box 77, oversize boxes x + Posters, Flyers, and Programs -- Boxes 77-79, portfolio 1, oversize box 98 + Clippings -- Box 79-80 + + + + Art -- Boxes 81-82, portfolio 2, oversize boxes 99-108 + + Photographs, Slides, and Negatives -- Boxes 83, 84, 98 + + Audiovisual + + Sound Recordings -- Boxes 85-90 + Videotapes and Digital Files -- Box 91-92 + + + + Oversize - - Boxes 93-108 + +

    +
    + +

    The Anne Waldman Papers were purchased by the Special Collections Library in 1998. Periodic additions to the collection have been made.

    +

    The papers document Waldman's personal and professional life from childhood to adulthood in great detail, and provide a rich and unique source for the study of American poetry. The collection includes textual material, photographs, audiovisual material, and artwork that extensively document Waldman's writing, publishing and performance efforts; her administrative leadership and teaching activities at the Poetry Project at St. Mark's Church-in-the-Bowery and Naropa University's Writing and Poetics program; and her relationships and interactions with a remarkable number of prominent poets, writers, and artists.

    +

    The + Biographical series (approximately .5 linear feet) contains biographical summaries written by Waldman and others, resumes, travel and work itineraries, and publicity material such as press releases, pamphlets, and quotes and "blurbs" for books.

    +

    A highlight of the series is Waldman's autobiographical essay and drafts for the + Contemporary Authors' series. A small folder of poems written about Waldman is also included. The researcher should note that additional material written about Waldman can be found in the Correspondence and Name File Series.

    +

    The + Correspondence and Name File series (25 linear feet of material, divided into several subseries) provides insight into Waldman's professional activities and relationships, and her personal relationships with many poets, writers, and artists. Poets including Allen Ginsberg, Ted Berrigan, Joe Brainard, Tom Clark, Diane di Prima, Kenward Elmslie, Joanne Kyger, Bernadette Mayer, Ron Padgett, and many others are well represented in the series, as are visual artists such as Alex Katz, Jasper Johns, Robert Mapplethorpe, Larry Rivers, and James Rosenquist. Material in the Correspondence and Name File was created during Waldman's college years and adulthood (approximately 1962-1999). Correspondence from Waldman's childhood and teenage years, and correspondence with family members can be found in the Early Years and Family series respectively.

    +

    The Name File subseries is an alphabetical file consisting primarily of more prominent personalities and frequent correspondents. Although the bulk of the material in the Name File is correspondence, manuscripts and other material created by or related to the person listed may also be found in the files. Where large amounts of material related to a person exist, the type of material has been grouped by genre and indicated separately in the finding aid. In cases where the type of material is not listed separately, the file contains mainly correspondence, but may also include small amounts of other material, most likely manuscripts. The researcher should note that some manuscripts submitted to Waldman and a small amount of correspondence related to Waldman's specific publishing ventures or specific subjects have been left with the appropriate subject file or organizational records.

    +

    The Miscellaneous Correspondence subseries contains more routine correspondence. This subseries is arranged alphabetically.

    +

    The Unidentified and Fragments subseries consists of approximately .75 linear feet of material from correspondents who did not identify themselves, identified themselves by their first name only, or whose signatures were illegible. This material is arranged chronologically, and is divided in to unidentified correspondence and unidentified manuscripts. Although every effort was made to arrange correspondence in the appropriate place in the Name File and Miscellaneous Correspondence subseries, researchers interesting in viewing all the correspondence from a particular person may want to examine the Unidentified and Fragments subseries.

    +

    The series also includes two folders of Anne Waldman's outgoing correspondence, as well as several folders of printouts of Waldman's outgoing and incoming email. The email correspondence spans the years 1997 and 2009. Researchers should note that there is substantial overlap between the Email and Correspondence and Name File subseries.

    +

    The + Writing series (11 linear feet) consists of Anne Waldman manuscripts and other material, such as correspondence, administrative files, and ephemera, related to her writing. This series is divided into five subseries: Early Work; Fiction; Essays, Speeches, and Interviews; Poetry; and Contributions to Other Works.

    +

    The Fiction sub-subseries is divided into Drama and Short Stories. Much of this material is also early work, from Waldman's college years or shortly thereafter. Within Drama and Short Stories, the pieces are arranged alphabetically by title.

    +

    Essays, Speeches, and Interviews comprises Waldman's prose work, consisting of essays, articles, speeches and addresses, and interviews, as well as book blurbs, introductions, forewords, and reviews. Many of these pieces exist in various stages, from handwritten notes to published articles. The Essays grouping contains essays and articles written for various publications. The Speeches grouping, arranged chronologically, consists of speeches and speaker introductions made by Waldman at various events. Undated material is located at the end of the section. The Interviews grouping is divided into interviews of Anne Waldman by others, arranged chronologically, and interviews of others, which for the most part have Waldman as either interviewer or co- interviewee. These interviews are arranged alphabetically by name of interviewee.

    +

    Also included in the Essays, Speeches, and Interviews subseries are "Biographical Sketches" of other authors. (Biographical and autobiographical sketches of Anne Waldman can be found in the Biographical series.) Most of these sketches appear to have been written by Waldman, although some were contributed by the authors themselves. In addition, the researcher will find a Notes grouping, made up of Waldman's loose collected notes, both literary jottings and everyday work lists. Some of the notes are of unknown authorship, although a few appear to have been Reed Bye's.

    +

    The Poetry subseries is divided into two sub-subseries, Published Works and Single Titles. Although Waldman's poetry can be found throughout the Writing series--and indeed throughout the entire collection--the bulk of it resides here. Published Works incorporates Waldman's stand-alone or collected works, most but not necessarily all of which have been published. The Published Works sub-subseries begins with an Alphabetical File containing Waldman's shorter works intended for publication. These files are arranged alphabetically by title.

    +

    A Collaborations section of collaborations between Waldman and others, and a Translations section, with a small number of works by others which Waldman translated or helped translate into English are also included in the Published Works subseries. The Collaborations section is arranged alphabetically by collaborator. The translation section contains only three works, which are arranged alphabetically according to the original author.

    +

    The Published Work subseries also contains three linear feet of separate material for + Iovis I, II, and III and + Kill or Cure. This material consists generally of original manuscripts (handwritten drafts and typescripts) of single poems, drafts of the whole work, proofs, and a small amount of related correspondence. The Iovis I and Iovis II files strongly reflect Waldman's work process for the creation of these long, fragmentary epic poems. Namely, the Notes Drafts, and Research Material files, which have been left almost as-is, consist of seemingly randomly arranged clippings, correspondence, previously written material, and many different current drafts, merged together. The researcher may find this portion of the collection difficult to use, owing to its haphazard arrangement. Items which seemed of special significance have been flagged or pulled and foldered separately, the "Questions for men for Iovis" being one example. In some cases, the original has been removed and placed elsewhere within the collection. Details are noted in the contents list. Among these items are poems by Waldman's son, Ambrose, and letters written by Anne Waldman's grandfather to his future wife (due to extremely their fragile condition, the originals have been removed and placed in separate storage). The other portions of the Iovis material present a clearer arrangement, consisting as they do of draft and proof copies of the entire work. The + Iovis III portion to date is quite small, consisting only of a version of Waldman's journal entries from a trip to Vietnam in 2000.

    +

    The material used in Kill or Cure has a clearer organization, although it should be noted that much of the content and order within the "Drafts/Collected Poems" portion remains unclear. It was impossible to ascertain whether some of the pieces included in the original folders labeled "Kill or Cure" were originally intended for the book and not used, or if they became misfiled. Too, some material may be missing, removed by the author from its original location in order to be used for other purposes, such as the creation of Iovis II . In fact, there is considerable overlap between some of the material in + Iovis and + Kill or Cure, the latter being published in between + Iovis I and + Iovis II .

    +

    Single Titles consists of the many loose poems that were originally scattered throughout the collection and which could not be easily placed within the context of a larger work. They are arranged alphabetically by title or first line. There are several folders of poem fragments as well, found at the end of this grouping. In the case of some of these poems, it has been difficult to ascertain whether they are in fact fragments or are rather complete, untitled poems. In general, when the title of a poem has undergone changes, all of the drafts of that poem have been grouped under what appears to be the latest version of the title. There may, however, be some exceptions to this arrangement.

    +

    Contributions to Other Works is a small subseries consisting of pieces which Waldman wrote for publication in larger works by other authors. Both poetry and prose works are represented here.

    +

    The + Journals and Notebooks series (5 linear feet) consists of more than 110 journals, notebooks, appointment books, and address books kept by Anne Waldman. (For the sake of convenience, all of these items are referred to here as "journals.") A small number of journals kept by others is also represented. The journals offer a diverse array of content, from random jottings and to-do lists, to literary notes and drafts, to intensely personal diaries. In some cases distinct literary pieces have been recorded, and sometimes the line between journal and handmade book is somewhat blurred. There are collaborative works, such as those with Bill Berkson and Reed Bye. Other pieces were clearly written for friends such as Joe Brainard, Jim Carroll, and others.

    +

    The Journals and Notebooks series is broken into two subseries, Anne Waldman and Others, representing journals kept by Waldman and journals kept by others. The Anne Waldman subseries is arranged chronologically by decade, from the 1960s through the 1990s. There are many undated journals as well. The Others subseries contains journals by Lewis Warsh (including one that was co-written with Waldman) and journals very likely by Reed Bye. Of note within one of the journals from the 1970s in the Anne Waldman subseries is a drawing of Anne Waldman made by Bob Dylan.

    +

    The + Editing and Publishing series (approximately 12.5 linear feet) is comprised of Anne Waldman's work in editing and publishing, often as a joint venture with those in her circle. The most important subseries, Small Press and Little Magazine, represents her work with The Poetry Project at St. Mark's Church-in-the-Bowery, Angel Hair, Full Court Press, and Rocky Ledge. For the most part, all of the Small Press and Little Magazine files consist of a mixture of the literary--manuscript contributions, drafts, mockups, proofs--and the administrative--reports, correspondence, sales and expense records, and so forth.

    +

    Perhaps the most significant portion of Small Press and Little Magazine, the Poetry Project grouping is divided into General, Adventures in Poetry, The World, and St. Mark's Church. "General" consists of correspondence; administrative material such as reports, notes, and budgets; poster, flyers, and other performance-related material, including speeches and introductions to Poetry Project events. Correspondence is related to the running of the Poetry Project, the newsletter in particular. Much of this correspondence appears to have been managed and kept by Frances Waldman, who edited the Poetry Project Newsletter from 1976 to 1978. There are also loose poems, which were printed and distributed singly, and many issues of the Poetry Project Newsletter (although not a complete run), along with original manuscript submissions for the newsletter.

    +

    Adventures in Poetry was a mimeographed literary magazine edited and published at St. Mark's Church by Larry Fagin using Poetry Project resources. A small number of submissions and publications appear here.

    +

    The most important division within the Poetry Project grouping are the files relating to The World, the magazine of the Poetry Project, which Waldman directed from 1968 through the late 1970s. Included are what can loosely be labeled "Administrative Material" as well as Submissions. Two files of Administrative Material are topical in nature, including an Author-title Index from 1979. In addition, there are the usual minutes, mailing lists, and the like. Submissions are for the most part arranged alphabetically by author. There are also two folders with material specific to individual issues of The World . Items of unknown authorship are placed at the end of these files. The researcher may find the aforementioned Author-title Index of some assistance in identifying these submissions.

    +

    "St. Mark's Church" refers to items which are church-specific; that is, related to St. Mark's as a religious institution or physical entity rather than to the Poetry Project: Such concerns as building preservation and restoration, youth projects, and church services are covered. Much of this material appears to have been maintained by Frances Waldman, including but not limited to files which are labeled as hers.

    +

    The Angel Hair files consist of material from Angel Hair Books and Angel Hair magazine, both of which Waldman co-founded and co-edited with Lewis Warsh. Press and magazine materials are commingled. Angel Hair is divided into Catalogues, Administrative Material, Proofs, and Submissions.

    +

    Full Court Press, which Waldman started with Ron Padgett and Joan Simon, was dedicated to publishing quality editions of out-of-print works. The volume of material in this collection is quite slim, consisting of only one folder.

    +

    Rocky Ledge refers to the mimeographed magazine, + Rocky Ledge, which Waldman started with Reed Bye in Boulder. It was published in eight issues from 1978 to 1981. Some books were also published through Rocky Ledge Cottage Editions. There is a folder of general Administrative Material and another slim folder of manuscripts published by Rocky Ledge Cottage Editions. In keeping with the original organization of the material, the rest of the files are arranged by the individual issue of + Rocky Ledge , with administrative materials mixed in with each issue of the magazine. Types of material found in the Rocky Ledge files include draft or mockup versions of the magazine; manuscript submissions; correspondence; cover art, both originals and facsimiles; receipts; and editors' notes. In some cases, the original manuscript submissions appear to have been used in the creation of the draft versions of the magazine. A separate division deals with submissions that were either not used in + Rocky Ledge, may not have been intended for use in + Rocky Ledge in the first place, or are unidentified.

    +

    Also included is a small amount of material labeled "Cherry Valley." Waldman summered in this small New York town in the late 1970s, Waldman's family and Allen Ginsberg maintained houses there for a time, and some work produced by Waldman and her circle was published by "Cherry Valley Editions." However, the exact nature and extent of literary activity from this period and location is unclear, and extant files in this collection are unrevealing.

    +

    The rest of the Editing and Publishing is divided along the lines of the individual book titles which Waldman edited or co-edited: The Beat Book, Nice to See You, Out of This World, Talking Poetics, and Disembodied Poetics.

    +

    The Beat Book files consist of some correspondence and, primarily, a draft version and a proof version of the work. Nice to See You, which is a tribute to poet Ted Berrigan, consists mainly of submissions by friends of Berrigan's. There are also files of background material, notes, a small number of photographs, correspondence, a draft, proofs, and publicity and reviews. Out of This World is an anthology of work from The Poetry Project. The Out of This World files consists of correspondence (dealing mainly with publishing permissions), early versions of the preface and introduction, drafts, and proofs.

    +

    Both + Talking Poetics and + Disembodied Poetics are anthologies of lectures delivered at Naropa University by Writing and Poetics Department faculty and visiting poets. These files are comprised mainly of transcripts of these lectures; manuscript reworkings and revisions by the authors; correspondence between authors, editors, and publishers; and various drafts of the whole work. In some cases, the name referenced in the correspondence file is the subject of the correspondence rather than its author. Administrative material is also included.

    +

    In the Talking Poetics files, the Drafts and Proofs section is divided into Early Work and Complete Drafts. Much of the Early Work section is fragmentary in nature, in particular, the Early Drafts material. Although at some time all of the individual pieces of Early Drafts were collated and paginated, much is missing or has been placed elsewhere. The existing pieces are now arranged alphabetically by author. Particularly noteworthy in this section is a handwritten John Cage score, a part of his work Lecture IV. Complete Drafts are arranged by page number.

    +

    The Disembodied Poetics files are arranged in a similar fashion, with individual pieces placed in the Early Contributions and Ideas and Early Drafts portions and later, more complete drafts arranged in or nearly in book order. It should be noted that the designations of the drafts as "A," "B," and "C" were assigned during processing and do not necessarily reflect chronological order. The order within each draft follows the table of contents for that draft, none of the drafts being paginated as a whole.

    +

    The subseries, General Publishing, consists of miscellaneous contracts, proposals, copyright application material, and financial material covering royalties, honoraria, book sales, and so on. The Unpublished material subseries consists mainly of miscellaneous pieces of writing that could be part of books that are published or unpublished or drafts of works with an unknown title.

    +

    The + Naropa series (8 linear feet) consists of material related to Waldman's involvement with the Naropa Institute, now Naropa University, in Boulder, Colorado. It is comprised of the following subseries: Course Material, Administrative Material, Conferences and Panels, Publications, Printed Material, Other Teaching Activities, and Personal.

    +

    Course Material is divided into the following sub-subseries: Anne Waldman, Others, and Summer Writing Program. Anne Waldman course material is arranged chronologically and topically and contains many sourcebooks or bound copies of readings for her classes. Course material of others is arranged primarily chronologically, as is, for the most part, material from the Summer Writing Program. The Summer Faculty and Visiting Poets folder under Course Material includes contracts, correspondence and resumes from guest lecturers such as Amiri, Baraka, Ted Berrigan, Diane Di Prima, Tom Clark, Robert Creeley, Kenward Elmslie, Joy Harjo and Harry Smith and is organized alphabetically. Administrative Material is divided into General, Writing and Poetics Department, and Summer Writing Program. Within all levels of the Administrative Series can be found correspondence which includes emails, memos, minutes and reports, planning material, notes, etc. "Early Planning Material" within the Writing and Poetics Department files includes documents penned by Anne Waldman and Allen Ginsberg which formulate aspects of the founding of the Jack Kerouac School of Disembodied Poetics. Also included in the Writing and Poetics files are departmental newsletters. Student and instructor evaluations also appear. Evaluation files, barring those of Anne Waldman, are closed due to privacy legislation and concerns.

    +

    Conferences and Panels consists of notes for talks given at Naropa along with transcripts and schedules. Speeches and Interviews covers those speeches and interview given at Naropa, although there may be some overlap with material in the Writing series. Speeches are arranged chronologically. "A Declaration of Interdependence," although grouped with Speeches, is not a speech per se, but rather a protest document mirroring in structure the Declaration of Independence. It was penned by multiple authors, including many Naropa faculty members as well as other poets and activists. Interviews are listed alphabetically by interviewee.

    +

    Publications consist of Campus Periodicals (student newsletters and literary magazines); Class Publications, including those of the Summer Writing Program; and a small number of works by faculty members. Printed Material consists of Catalogs and Brochures; Posters, Flyers, and Programs; and Clippings. Arrangement at the folder level is chronological. Additional class publications can be found within the Course Material subseries.

    +

    In addition to her role at Naropa, Waldman has taught at several other institutions. These activities are reflected in the Other Teaching Activities subseries, which includes work at the Schule für Dichtung in Vienna and the Stevens Institute of Technology in New Jersey, among other institutions. Because the bulk of Waldman's teaching activities is tied up with Naropa, these files are included within the Naropa series. Material for each institution is arranged chronologically.

    +

    The final subseries of the Naropa series is Personal, which includes ephemera, correspondence, topical files, contracts, and notes. Correspondence is both incoming and outgoing and consists of both Naropa-related 'official' correspondence that is addressed solely to Waldman and correspondence that is personal in nature but which refers to Naropa (here, there will naturally be some overlap with Waldman's correspondence in the Correspondence and Name file series). Material within folders is arranged chronologically.

    +

    The + Other Activities series is comprised of 1 linear foot of material, and documents Waldman's activities outside of writing and publishing. The series includes material related to conferences and festivals that Waldman attended or participated in, as well as material related to Bob Dylan's Rolling Thunder Revue Tour, various video and audio recording projects, and attempts to sell Waldman's archive, or portions of it. The series also includes a significant amount of material documenting Waldman's involvement in social protest issues.

    +

    The + Personal series is a topical file consisting of 1.5 linear feet of material not primarily related to Waldman's writing or professional activities. Material documenting Waldman's interest in Buddhism and her 1967 wedding to Lewis Warsh can be found in the series. Of particular note is a collection of memorabilia, including material from Waldman's travels, and various playbills, museum programs and ticket stubs. Legal and financial records, as well as various and unidentified notes, jottings and telephone messages, are also included in this series.

    +

    The + Early Years series contains 2 linear feet of material documenting Waldman's school years, as well as her early interests in writing, acting and drama. The series includes material from Waldman's elementary school, middle school, high school and college years. Early writings can be found in each of the Pre-High School, Friends Seminary and Bennington College subseries, as well as the Early and Unidentified Writings subseries. Highlights include childhood and family newsletters titled "Our Life and Times" and "The Penguin News," school publications in which Waldman was first published, production material from Waldman's high school newspaper (of which she was editor), and manuscripts and typescripts of early poems. The Friends Seminary and Bennington College subseries contain class notes and papers, a high school report card, college grade reports and other school-related material. The Bennington College subseries also includes correspondence and notes from Howard Nemerov and other professors.

    +

    The Acting and Theater subseries includes material from various productions, theater companies and organizations with which Waldman was involved in the 1950s and 1960s. The Correspondence subseries consists primarily of correspondence from Waldman's middle school and high school friends, but also includes a folder of notes that appear to be notes passed in class. This folder also includes school love poems that appear to have been written for Waldman. The Early and Unidentified Writing subseries consists primarily of unidentified or undated material that could not filed with the other subseries.

    +

    The + Family series (approximately 4 linear feet and 1 oversize box) includes material related to Waldman's mother, father, brother, son and other relatives.

    +

    The bulk of the series is comprised of material created by, or related to Waldman's mother, Frances Waldman. The Frances Waldman subseries includes 1.5 linear feet of correspondence between Waldman and her mother, spanning the years 1958-1981. Several folders of Frances Waldman's correspondence with other people, including many New York poets and writers, can also be found in the subseries.

    +

    The subseries also includes several folders of Frances Waldman's manuscripts, translations and miscellaneous material. Although the majority of the material related to other family members is correspondence, manuscripts and other material can also be found in the series. Of special note are the manuscripts found with the Ambrose Bye material, which include some poems written with or transcribed by Anne Waldman.

    +

    The + Handmade Books series (3 linear feet) is comprised of one-of-a-kind books made by Waldman and her friends. Often they were presented as gifts on special occasions. They are divided into three subseries: Anne Waldman, representing books by Waldman; Collaborations, representing collaborations between Waldman and others; and Others, that is, works by others.

    +

    Included in Others are books printed at Naropa University either through a print workshop or class, or through the school's Kavyayantra Press. Within the Waldman subseries, books are listed alphabetically by title, with untitled books at the back. Collaborations, all of which have Waldman as a coauthor, are arranged alphabetically by the collaborator's last name, as are works in the Others subseries.

    +

    Many of the handmade books bear inscriptions indicating maker, recipient, date, and other information, which has not been included in the contents listing. Included in the Handmade Books series are some limited edition volumes, such as those produced by Waldman's Erudite Fangs Press.

    +

    The + Printed Material series (4 linear feet, 1 oversize box, and 1 portfolio) encompasses the subseries Broadsides; Posters, Flyers, and Programs; and Clippings. Broadsides are broken down into those by Anne Waldman, Collaborations (between Waldman and others), and Others--that is, works by others. Within these divisions, work is arranged alphabetically, first by author, then by title. Also included in Broadsides are postcards and bookmarks printed by various small presses. Oversize broadsides are housed separately.

    +

    Material in the Posters, Flyers, and Programs subseries is for the most part grouped chronologically. Separate, topical divisions have been made for undated material. Small press book catalogs and newsletters are included as separate divisions. Oversize posters are housed separately. The section labeled "Newsletters" consists of should really be viewed as a set of clippings, consisting as it does of single issues of various newsletters and some journals, most of which appear to have been saved for particular articles.

    +

    Clippings are arranged in rough chronological order by decade, where date is known. The vast majority of the clippings pertain to Waldman and her circle, although some clippings reflect topical interests. Some of these appear to have been saved by Waldman's mother, Frances LeFevre Waldman. In some cases, whole publications have been saved, either due to their content or to their rare or unusual nature.

    +

    + Art (1 linear foot, 10 oversize boxes, and 1 portfolio) is made up of artworks by Waldman and her family and friends, as well as various pieces she has collected over the years. Work in many different media exists, including prints, paintings, sketches, drawings, and collages. Much of Waldman's work consists of prints done while a student at Bennington College. There are also exquisite corpses (collaboratively created pictures and writings, done in-the-round) by Anne Waldman, Reed Bye, and Ambrose Bye. According to Waldman, this was a frequent after-dinner pastime when Ambrose was young, and friends and guests, such as Bobbie Louise Hawkins, were invited to participate.

    +

    Cover Art includes "Collaborations," which consist of collaborative book-length works and not just cover art per se. Additional cover art may be found in the among the Rocky Ledge files within the Editing and Publishing series. Noteworthy among the artists represented are George Schneeman and Joe Brainard.

    +

    The + Photographs, Slides and Negatives series consists of approximately 2.5 linear feet of photographic materials documenting a variety of subjects, including Waldman's childhood and school years, her large circle of friends and colleagues, and her publishing and performance activities.

    +

    The Personal subseries contains personal and informal photographs of Waldman and others. Photographs in the "Family and childhood" folder include photographs of Waldman as a child, as well as other family members. The high school and college photographs include several photographs of Waldman as a young actress. The bulk of the Personal subseries consists of the "Friends and colleagues" photographs. These photographs include images of many prominent late twentieth century poets, Waldman's husbands and significant others, and other friends and colleagues. Waldman herself is pictured in some of the friends and colleagues photographs.

    +

    One of the strengths of the Professional subseries is the large amount of photographs of Waldman performing. The performance photographs, which date from the late 1960s to mid 1990s, sometimes include images of other poets and performers. Also included are several folders of portraits and publicity photographs, photographs created for various book and publishing projects, photographs of Bob Dylan's Rolling Thunder Revue Tour, and photographs documenting Waldman's activities at Naropa University and the St. Marks Poetry Project. The St. Mark's photographs include images of New York School and other poets performing at the church. The Professional subseries also includes several photographs taken by photographer, poet, and filmmaker Gerard Malanga. Although Malanga photographs can be found within several of the groupings in the Professional subseries, the majority can be found within the portraits grouping. A Malanga portrait of Waldman and her mother, Frances, has been filed with the family photographs.

    +

    The Outsize subseries consists of photographs too large to be housed with the rest of the photograph series. The highlights of the outsize photographs include two photographs taken by Allen Ginsberg which include handwritten captions by Ginsberg.

    +

    The Albums and Scrapbooks subseries complements the friends and colleagues photographs found in the Personal subseries. In addition to photographs documenting Waldman's travels in Greece and Egypt in the early sixties, the albums contain numerous photographs of Waldman and her circle in the late sixties and early seventies. Photographs of Lewis Warsh, Michael Brownstein, Joe Brainard, Ron Padgett, Ted Berrigan, Tom Clark, Bill Berkson, and others can all be found in the albums. The albums have been arranged chronologically.

    +

    The Slides and Negatives subseries consists primarily of miscellaneous and unidentified slides and negatives. The subseries does contain a few slides of Waldman performing.

    +

    The researcher should note that a small number of photographs sent to Waldman by specific correspondents can be found within the Correspondence and Name File series.

    +

    The + Audiovisual Series has been divided into four subseries: Sound Recordings, Video Tapes, DVDs, and Digital Files. The series provides a unique perspective on Waldman's activities, and thus complements and expands the manuscript and photographic holdings. Including recordings of readings, lectures, and interviews given by Waldman and others, the series strongly represents the sounds and voices of late 20th century American poetry.

    +

    The Sound Recordings subseries has been organized according to format, including LPs and 45s, Compact Discs, Reels, and Audio Cassettes. In order to facilitate access, each sound recording has been numbered. Recordings are numbered sequentially within each subseries. Titles indicated in quotation marks in the finding aid are quoted directly from the labels of the recordings. In a few cases, particularly within the Commercial Recordings grouping, quotation marks are also used to indicate the title of a poem or work.

    +

    The LPs and 45s, Compact Discs, and Reels represent a relatively small part of the subseries. The LPs and 45s include the 1977 LP "John Giorno and Anne Waldman," as well as Waldman's "Uh-Oh Plutonium" 45, and a "voice-o-graph" recording of Waldman and Michael Brownstein. The Compact Discs subseries consists of commercial recordings of Waldman, including a live 1991 performance in Amsterdam which includes an accompanying booklet of poems.

    +

    Reels include recordings related to a variety of subjects. Included are Waldman performances at radio stations and elsewhere, television shows related to poetry, a commercial recording of + Fast Speaking Woman , and a recording of Waldman while acting. To facilitate access, the recordings in this group have been transferred onto recordable compact discs. The numbering and labeling of the compact discs corresponds to the numbering of the reels.

    +

    The largest part of the subseries is comprised of Cassettes, which include readings and lectures by Waldman and other poets, interviews, radio broadcasts featuring Waldman, commercial recordings, Waldman's recording projects, and other miscellaneous recordings. Spanning the years 1971-2002, the readings include recordings of Waldman reading with Ted Berrigan, Allen Ginsberg, Diane di Prima, Gary Snyder and others. In addition, there are several recordings of readings not by Anne Waldman, including performances by Ginsberg, John Ashbery, Robert Creeley, Philip Whalen and others. Lectures by Waldman at Naropa Institute and in other settings, and lectures by William Burroughs, Allen Ginsberg, Ted Berrigan, Carl Rakosi, and Peter Orlovsky are included.

    +

    Interviews and conversations represent the strongest part of the series. In addition to an interview of Waldman conducted by Larry Fagin, tapes of interviews of Joe Brainard, Edwin Denby, Diane di Prima, Robert Duncan, Allen Ginsberg, and Philip Whalen are included, many conducted by Waldman. There are two recordings of "conversations," one with Waldman, Clark Coolidge, Lewis MacAdams, and others, and one with Waldman, Tom Clark, Lewis Warsh, Lewis MacAdams, and Philip Whalen. Of note is a cassette recording of Allen Ginsberg orally composing the introduction to + Talking Poetics from Naropa Institute: Annals of the Jack Kerouac School of Disembodied Poetics. To facilitate access, the cassette recordings have been transferred onto recordable compact discs. The numbering and labeling of the compact discs corresponds to the numbering of the cassette tapes.

    +

    Video recordings consists of 42 VHS videocassettes, one 8mm film reel and ten DVDs. The readings, performances and lectures grouping includes performances from 1990 to 1998 and is the primary strength of the subseries. In addition to Waldman's performances, the tapes include readings by Allen Ginsberg, Gary Snyder, Michael McClure, Ed Sanders and others. Most of the tapes in the programs and television shows grouping were produced commercially or for television shows. The highlight of the grouping is a tape which includes seven episodes of "Word One," a Boulder, Colorado cable access television show hosted by Waldman, which includes performances by Allen Ginsberg, Kenward Elmslie and other poets. The programs and television shows grouping also includes a tape of "poetry videos" from the Manhattan Poetry Video Project, including music videos of Waldman's "Uh-Oh Plutonium," Allen Ginsberg's "Father Death Blues," and Bob Holman's "Rapp It Up." The personal and miscellaneous grouping includes a videotape copy of a home movie of Waldman, Lewis Warsh, Ted Berrigan and others. DVD copies of the first 27 videotapes and the film reel in the subseries (WALDVID-1 to WALDVID-27) are available for viewing in the reading room of the Special Collections Library, with advance notice for retrieval and setup. The ten original DVDs in the subseries are labeled with the prefix WALDDVD- and consist mainly of Anne Waldman poetry readings, and collaborative events such as Transatlantic Howl! A Dedication to Allen Ginsberg, a multivenue event featuring poetry readings and poetic theatre pieces celebrating Ginsberg's poem + Howl.

    +

    The Digital Files subseries includes backups of email correspondence, files on Waldman's poems and books, such as parts I and II of the Iovis Trilogy and the anthology + Civil Disobediences, and interviews. Most of these materials are stored on floppy disks and have not been transferred to viewable digital media.

    +

    + + + + Genre Terms: + Artists' books. + Audiotapes. + Correspondence. + Diaries. + Drafts (documents) + Drawings. + Manuscripts for publication. + Manuscripts. + Paintings. + Photographs. + Poems. + Posters. + Slides (photographs). + Student projects. + Videotapes. + + + Subjects: + Boulder (Colo.) -- Intellectual life -- 20th century. + New York (N.Y.) -- Intellectual life -- 20th century. + United States.--Intellectual life--20th century. + Abbott, Keith, 1944- + Abrams, Sam + Alcalay, Ammiel + Anderson, Laurie, 1947- + Andrews, Bruce, 1948- + Antler, 1946- + Ashbery, John, 1927- + Ball, Gordon + Banks, Russell, 1940- + Baraka, Amina + Baraka, Imamu Amiri, 1934- + Baxter, Glen + Beltrametti, Franco + Berkson, Bill + Bernstein, Charles, 1950- + Berrigan, Ted + Berssenbrugge, Mei-Mei, 1947- + Bly, Robert + Bockris, Victor, 1949- + Boudin, Jean + Brainard, Joe, 1942-1994 + Brand, Stewart + Brautigan, Richard + Bremser, Bonnie, 1939- + Brook, Donna, 1944- + Brooks, Gwendolyn, 1917-2000 + Brownstein, Michael, 1943- + Bukowski, Charles + Burckhardt, Rudy + Burroughs, William S., 1914-1997 + Bye, Ambrose + Bye, Reed + Cage, John + Carroll, Jim + Chr?ibkova´, Marie, 1969- + Clark, Tom, 1941- + Clay, Steven, 1951- + Codrescu, Andrei, 1946- + Cohen, Ira + Collom, Jack, 1931- + Coolidge, Clark, 1939- + Cope, David,, 1948- + Corso, Gregory + Creeley, Robert, 1926-2005 + Denby, Edwin, 1903-1983 + Di Prima, Diane + Dorn, Edward + Duncan, Robert Edward, 1919-1988 + Dunn, Douglas + Dworkin, Andrea + Dylan, Bob, 1941- + Eigner, Larry, 1927- + Elmslie, Kenward + Eshleman, Clayton + Fagin, Larry + Faithfull, Marianne + Ferlinghetti, Lawrence + Field, Thalia,, 1966- + Ford, Charles Henri + Foss, Phillip + Foye, Raymond, 1957- + Galassi, Jonathan + Gallup, Dick, 1941- + Ginsberg, Allen, 1926-1997 + Giorno, John + Glassgold, Peter, 1939- + Goldberg, Natalie + Greenwald, Ted + Grooms, Red + Guest, Barbara + Gustafson, Jim + Guston, Philip, 1913-1980 + Hall, Donald, 1928- + Hawkins, Bobbie Louise, 1930- + Hejinian, Lyn + Heller, Michael, 1937- + Hershon, Robert + Hiler, Jerome. + Hollo, Anselm + Holman, Bob, 1948- + Hornick, Lita R., 1927- + Horowitz, Michael, 1938- + Hoyem, Andrew + Jacquette, Yvonne, 1934- + Johns, Jasper, 1930- + Johnston, Alastair, 1950- + Katz, Alex, 1927- + Kelly, Robert, 1935- + Kerouac, Jan, 1952- + Kesey, Ken + Kinnel, Galway. + Koch, Kenneth, 1925-2002 + Kornblum, Allan, 1949- + Kostelanetz, Richard + Kyger, Joanne + Lacy, Steve + LeFevre, Frances + Lenhart, Gary + Lesniak, Rose, 1955- + LeSueur, Joe + Levertov, Denise, 1923-1997 + Levine, Les, 1935- + Lifshin, Lyn + Mac Low, Jackson + MacAdams, Lewis, 1944- + Malanga, Gerard + Mapplethorpe, Robert + Mayer, Bernadette + McClure, Michael + McGrath, Thomas, 1916-1990 + McNaughton, Duncan + Meltzer, Richard + Merwin, W. S., (William Stanley), 1927- + Mikolowski, Ann + Mikolowski, Ken + Moore, Honor, 1945- + Morice, Dave, 1946- + Myles, Eileen + Nations, Opal L. + Nemerov, Howard + Noel, Susan + North, Charles, 1941- + Notley, Alice, 1945- + Oliver, Akilah + Oliver, Douglas + Oppenheimer, Joel, 1930-1988 + Orlovsky, Peter, 1933-2010 + Osman, Jena + Padgett, Ron, 1942- + Patchen, Mirian. + Perloff, Marjorie + Rakosi, Carl, 1903-2004 + Reed, Ishmael, 1938- + Reed, Lou + Ricard, Rene, 1946- + Richey, Joseph + Rivers, Larry, 1925-2002 + Rockwell, Martha. + Rosenquist, James, 1933- + Rosenthal, Bob, 1950- + Rothenberg, Jerome, 1931- + Sakaki, Nanao + Sanders, Ed + Saroyan, Aram + Scalapino, Leslie + Schelling, Andrew + Schiff, Harris + Schjeldahl, Peter + Schneeman, George + Schuyler, James + Shepard, Sam, 1943- + Sike´liano`s, Eleni + Silliman, Ronald, 1946- + Smedman, Lorna + Smith, Pat. + Smith, Patti + Snyder, Gary, 1930- + Swenson, Cole, 1955- + Swenson, May + Talese, Gay + Tanner, Wesley B. + Tarn, Nathaniel + Taylor, Steven. + Thomas, Lorenzo, 1944-2005 + Torregian, Sotère + Trungpa, Cho¨gyam, 1939-1987 + Tysh, Christine. + Tysh, George, 1942- + Veitch, Tom + Vogelsang, Arthur + Wakoski, Diane + Wang, Ping, 1957- + Warsh, Lewis + Washington, Jerome, 1939- + Whalen, Philip + Wieners, John, 1934-2002 + Wilentz, Ted + Wilkie, Britton + Wright, Rebecca, 1942- + Yates, Katie + Zweig, Ellen, 1947- + American poetry -- 20th century. + Artists -- United States. + Authors and publishers. + Beat generation -- United States. + Bohemianism -- United States -- History -- 20th century. + Buddhism and education -- United States. + Experimental poetry, American. + Oral interpretation of poetry. + Performance art -- United States. + Poetics. + Poetry -- Study and teaching. + Poetry -- United States. + Poetry. + Poets, American. + Politics and literature. + Social change in literature. + Spiritual life--Buddhism--United States. + Women authors, American. + Women poets, American. + Women publishers--United States. + + + + + + Biographical + + +

    The Biographical series is comprised of approximately .5 linear feet of material. The series contains biographical summaries written by Waldman and others, resumes, travel and work itineraries, and publicity material such as press releases, pamphlets, and quotes and "blurbs" for books.

    +
    + + + Biographical summaries and statements, undated + + 1 + + + + + Contemporary Authors autobiographical essay and manuscripts, 1992 + + 1 + + + + + Publicity packets, flyers and pamphlets, 1974-2004, undated + + 1 + + + + + Press releases and reviews, 1970-2004, undated + + 1 + + + + + Quotes and "blurbs," undated + + 1 + + + + + Resumes, undated + + 1 + + + + + Travel and work itineraries, 2002, 2006 and undated + + 1 + + + + + Various poems about Anne Waldman, 1986-1998, undated + + 1 + + + + + Tributes + 1 + + + + + Columbia Spectator newspaper with annotations by Jonathan Cott, September-December, 1962 + + 1 + + + + + U.S. passport, January 18, 1978 - January 17, 1983 + + 1 + + + + + + Correspondence and Name File + + +

    The Correspondence and Name File series consists of 25 linear feet of material, divided into several subseries. The series provides insight into Waldman's professional activities and relationships, and her personal relationships with an astounding number of poets, writers, and artists.

    +
    + + + Name File + + + + Abbott, Keith, 1990, 2000-2001, undated + + 2 + + + + + Abbott, Steve, 1979 + + 2 + + + + + Abish, Walter, 1975 + + 2 + + + + + Abrams, Michael, 1972-1981, undated + + 2 + + + + + Abrams, Sam + + + + Correspondence, 1977-1997 + + 2 + + + + + Manuscripts, 1989-1994 + + 2 + + + + + + Acconci, Vito, undated + + 2 + + + + + Acker, Kathy, 1973-1977 + + 2 + + + + + Adam, Helen, 1976-1986, undated + + 2 + + + + + Alcalay, Ammiel (3 folders), 2004-2009 + + 2 + + + + + Aletti, Vince, undated + + 2 + + + + + Allen, Deborah, 1977 + + 2 + + + + + Allen, Donald, 1968-1994, undated + + 2 + + + + + Allen, Michael, 1972 + + 2 + + + + + Allione, Tsultim and Constanzo, 1978-1982, undated + + 2 + + + + + Alpert, Barry, 1971-1972 + + 2 + + + + + Amussen, Robert (The Bobbs-Merrill Company), 1968-1980 + + 2 + + + + + Anania, Michael, 1973 + + 2 + + + + + Anderson, Erik, 1992, 2006 + + 2 + + + + + Anderson, Laurie, 1985 + + 2 + + + + + Andre, Michael, undated + + 2 + + + + + Andrews, Bruce + + + + Correspondence, 1971-1989 + + 2 + + + + + Manuscripts and printed, 1986, undated + + 2 + + + + + + Anglesey, Zoe, 1986-1992 + + 2 + + + + + Antler, 1975-1995, undated + + 2 + + + + + Aponte, Carlos, undated + + 2 + + + + + Ardinger, Rick (Limberlost Press), 1992 + + 2 + + + + + Aronowitz, Al, 1976 + + 2 + + + + + Ashbery, John, + + + + Correspondence, 1966-1992 + + 2 + + + + + Poetry photocopies, undated + + 2 + + + + + Flyer and introduction, undated + + 2 + + + + + + Ashley, Robert, 1982 + + 2 + + + + + Atlas, James, 1979 + + 2 + + + + + Augustine, Jane, 1986-1996, 2004 + + 2 + + + + + Autin, David, 1973, 1986 + + 2 + + + + + Ayden, Erje, 1971 + + 2 + + + + + Ayers, Ian, 1998 + + 2 + + + + + Balash, Muriel (WCBS-TV), 1975 + + 2 + + + + + Baldwin, Gordon, 1974-1996, undated + + 2 + + + + + Ball, Gordon + + + + Correspondence, 1974-1991, 2000, 2007 + + 2 + + + + + Portfolio: + Selected Photographs of the Beat Generation, photocopy 1994 + + 2 + + + + + + Ballou, Ronald (The Chapel Press), 1971 + + 2 + + + + + Bamber, Linda (Tufts University), 1980 + + 2 + + + + + Bamberger, Bill and Janet (2 folders), 1975-1997, 2000, undated + + 2 + + + + + Banks, Russell, 1972-1974 + + 2 + + + + + Baraka, Amiri and Amina, 1977-2004, undated + + 2 + + + + + Barba, Sharon and Joanna Cattonar (University of New Mexico), 1980 + + 2 + + + + + Bardwell, Leland, undated + + 2 + + + + + Bartlett, Jennifer, 1971 + + 2 + + + + + Bartlett, Lee ( + American Poetry Review ), 1984-1985, 2001 + + 2 + + + + + Bathurst, Bill, 1969-1988, undated + + 2 + + + + + Baude, Dawn, 1993-1995 + + 2 + + + + + Baxter, Glen, 1978-1979 + + 2 + + + + + Becher, Anne, 1987, 2001 + + 2 + + + + + Beck-Rex, Marguerite, 1976 + + 2 + + + + + Beltrametti, Franco, 1977-1994, undated + + 2 + + + + + Benamov, Michel, 1974 + + 2 + + + + + Benn, Soyo, 1979, undated + + 2 + + + + + Berg, Karen, undated + + 2 + + + + + Berge, Carol, 1973 + + 2 + + + + + Berke, Roberta, 1974 + + 2 + + + + + Berkson, Bill + + + + Manuscripts, 1968, undated + + 2 + + + + + Printed and miscellaneous, 1973, 1974 and undated + + 2 + + + + + Correspondence (6 folders), 1966-2006, undated + + 3 + + + + + + Berman, Paul, 1980 + + 3 + + + + + Bernstein, Charles, 1979-1992, 2004, undated + + 3 + + + + + Berrigan, Anselm, 1994, 2000-2004 + + 3 + + + + + Berrigan, David and Kate, 1982-2004, undated + + 3 + + + + + Berrigan, Edmund, 1991 + + 3 + + + + + Berrigan, Sandy + + + + Correspondence (2 folders), 1970-1987, 2000, 2004, undated + + 3 + + + + + Manuscripts, 1969, undated + + 3 + + + + + + Berrigan, Ted + + + + Correspondence (2 folders) 1966-1983, undated + + 3 + + + + + Manuscripts + + + + Poetry, undated + + 3 + + + + + Prose, 1970, undated + + 3 + + + + + + Printed material, 1969-1971, undated + + 3 + + + + + Lectures and Teaching material, 1976, undated + + 3 + + + + + Flyers and artwork, undated + + 3 + + + + + Clippings, 1983, undated + + 3 + + + + + Miscellaneous, 1967, undated + + 3 + + + + + + Berssenbrugge, Mei-Mei + + + + Correspondence, 1982-1998, 2002, undated + + 3 + + + + + Manuscripts, undated + + 3 + + + + + + Bertholf, Robert (University of Buffalo), 1995-1996 + + 3 + + + + + Bey, Hakim, undated + + 3 + + + + + Billote, Louise, 1977, undated + + 3 + + + + + Blackburn, Paul, 1971 + + 3 + + + + + Blake, Bill, 1977 + + 3 + + + + + Blaser, Robin, 1992-1993, 2000, undated + + 3 + + + + + Bly, Robert, 1974-1977 + + 3 + + + + + Bockris, Victor, 1974-1980, undated + + 3 + + + + + Bodien, Richard, 1979 + + 3 + + + + + Boelitz, Martin, 1962-1964, undated + + 3 + + + + + Bonanno, David (American Poetry Review), 1988 + + 3 + + + + + Bootman, Tyler, undated + + 3 + + + + + Borregard, Angela, undated + + 3 + + + + + Borrus, Beth, 1995 + + 3 + + + + + Boudin, Jean and Leonard, 1975-1986, undated + + 3 + + + + + Bowering, George, 1973 + + 3 + + + + + Boyack, Jimmy, 1971 + + 3 + + + + + Boyers, Marion, 1974 + + 3 + + + + + Bradshaw, David, 1997 + + 3 + + + + + Brainard, Joe + + + + Correspondence (3 folders), 1967-1991, undated + + 3 + + + + + Correspondence (5 folders), 1967-1991, undated + + 4 + + + + + Manuscripts + + + + I Remember (2 folders), undated + + 4 + + + + + "Little Known Facts About People," undated + + 4 + + + + + Miscellaneous manuscripts, 1972, undated + + 4 + + + + + + Printed material, 1972-1994, undated + + 4 + + + + + Interview by Anne Waldman, 1978, undated + + 4 + + + + + Obituary and memorial, 1994 + + 4 + + + + + Photographs, undated + + 4 + + + + + Flyers and ephemera, 1987, undated + + 4 + + + + + Finding Aid for Joe Brainard Archive, Mandeville Department of Special Collections, University of California, San Diego, 1992 + + 4 + + + + + + Braman, Sandra, 1992 + + 4 + + + + + Bramness, Hanne, 1982-1993 + + 4 + + + + + Brand, Stewart, 1975-1978 + + 4 + + + + + Brautigan, Richard, 1970, undated + + 4 + + + + + Bremser, Bonnie, + + + + Correspondence, 1970-1979 + + 4 + + + + + Manuscript of memoir, undated + + 4 + + + + + + Bremser, Ray, 1970 + + 4 + + + + + Brenner, Summer, 1979, undated + + 4 + + + + + Brody, Jim, 1966-1979, undated + + 4 + + + + + Brook, Donna, 1973, undated + + 4 + + + + + Brooks, Gwendolyn, 1973, 2000 + + 4 + + + + + Brooks, Steve, undated + + 4 + + + + + Broughton, James, 1987 + + 4 + + + + + Broumas, Olga, 1992-1995, undated + + 4 + + + + + Brown, Lee Ann (The Poetry Project), 1989-1990, 2002, undated + + 4 + + + + + Brown, Rebecca, 1973-1984, undated + + 4 + + + + + Brownstein, Michael + + + + Correspondence (6 folders), 1966-2000, undated + + 4 + + + + + Manuscripts, 1980, undated + + 4 + + + + + Printed material, undated + + 4 + + + + + Notes for Anne Waldman, undated + + 5 + + + + + Notes, jottings and miscellaneous, undated + + 5 + + + + + + Bruck, Rolf, 1986-1991 + + 5 + + + + + Bruckner, Don, 1972 + + 5 + + + + + Buchanan, Ann, 1974 + + 5 + + + + + Bukowski, Charles, 1971-1978 + + 5 + + + + + Bunge, Nancy, 1981 + + 5 + + + + + Bunting, Basil, 1978 + + 5 + + + + + Burch, Marcia (Penguin Books), 1973 + + 5 + + + + + Burckhardt, Rudy, 1967-1995, undated + + 5 + + + + + Burger, Mary, undated + + 5 + + + + + Burk, Ronnie, 1980 + + 5 + + + + + Burns, Skip, 1973 + + 5 + + + + + Burroughs, William + + + + Correspondence (2 folders), 1976-1996, undated + + 5 + + + + + Interview by Anne Waldman, 1978 + + 5 + + + + + Post cards, announcements and clippings, undated + + 5 + + + + + Funeral and memorial, 1997 + + 5 + + + + + + Bush, Rebecca, 1994, undated + + 5 + + + + + Butts, Wally, 1979 + + 5 + + + + + Bye, Reed + + + + Correspondence + + + + Anne Waldman (6 folders), 1976-2001, 2006, undated + + 5 + + + + + Other correspondents (6 folders), 1971-1987, undated + + 5 + + + + + + Manuscripts + + + + "Border Theme", undated + + 5 + + + + + "Poems 1978" + 5 + + + + + Miscellaneous poems and notes, 1979, undated + + 5 + + + + + Journal entries, 1979-1980, undated + + 5 + + + + + Heart's Bestiary cover mock-ups, undated + + 5 + + + + + + Naropa Course notes, 1981 + + 5 + + + + + Miscellaneous, 1979, 2002, undated + + 5 + + + + + + Caddel, Richard, 1979 + + 5 + + + + + Cage, John, 1973 + + 5 + + + + + Campbell, Marc (Lodestar Press), undated + + 5 + + + + + Cantrill, Arthur and Corrine, 1973 + + 5 + + + + + Cardarelli, Joe, 1989-1992 + + 5 + + + + + Carella, Simone, 1980 + + 5 + + + + + Carey, Steve, 1971, undated + + 5 + + + + + Carey, Tom, 1978 + + 5 + + + + + Carroll, Jim + + + + Correspondence, 1969-1974, undated + + 5 + + + + + Manuscripts (2 folders), 1982, undated + + 5 + + + + + + Carroll, Paul, 1971-1973 + + 5 + + + + + Carson, Anne, 2005 + + 5 + + + + + Carstairs, Jaime, 1974-1998, undated + + 5 + + + + + Cerevalo, Joe, 1986, undated + + 5 + + + + + Cheatham, David, 1980, undated + + 6 + + + + + Chester, Laura, 1987-1990 + + 6 + + + + + Chribkova, Marie (One Woman Press), 2001 + + 6 + + + + + Clark, Angelica, 1970-1975, 2000-2006, undated + + 6 + + + + + Clark, Tom + + + + Correspondence (4 folders), 1965-1995, 2001, undated + + 6 + + + + + Manuscripts + + + + Poetry, 1971-1986, undated + + 6 + + + + + Prose, undated + + 6 + + + + + + Printed material, 1971, undated + + 6 + + + + + Artwork, 1968-1970, undated + + 6 + + + + + Miscellaneous, 1967-1968, undated + + 6 + + + + + + Clay, Steve (Granary Books), 1996-2001, undated + + 6 + + + + + Cleamon, Peter, 1976 + + 6 + + + + + Cobb, Noel, 1974-1975, undated + + 6 + + + + + Codrescu, Andrei + + + + Correspondence (2 folders), 1969-1995, undated + + 6 + + + + + Manuscripts, undated + + 6 + + + + + + Cohen, Ira, 1986-1992, undated + + 6 + + + + + Cohen, Jonathan, 1992 + + 6 + + + + + Cohn, Jim + + + + Correspondence, 1978-2001, undated + + 6 + + + + + Manuscripts, 1981, undated + + 6 + + + + + + Coleman, Victor, 1980 + + 6 + + + + + Collom, Jack + + + + Correspondence, 1971-1994, 2005-2006 + + 6 + + + + + Manuscripts + + + + "Answering Something Plato Said," 1988 + + 6 + + + + + 'The Blue Heron," undated + + 6 + + + + + "The Drift of Things," 1978 + + 6 + + + + + "Haiku in Great Literature of the West," undated + + 6 + + + + + "Travel South in the Summer," 1978 + + 6 + + + + + "Trip to Mexico," 1979 + + 6 + + + + + "Winning," undated + + 6 + + + + + "8-Ball," 1992 + + 6 + + + + + Miscellaneous poems (2 folders), 1978-1987, undated + + 6 + + + + + + Poster and broadsides, 1988, undated + + 6 + + + + + Miscellaneous, undated + + 6 + + + + + + Colville, Georgiana, 1989 + + 6 + + + + + Connor, Julia, 1989-2002 + + 6 + + + + + Cook, Albert, 1974 + + 6 + + + + + Coolidge, Clark + + + + Correspondence, 1971-1994, undated + + 6 + + + + + Manuscripts + + + + "The Crystal Text," undated + + 6 + + + + + Ted Berrigan material, 1983 + + 6 + + + + + Miscellaneous manuscripts, 1973-1982, undated + + 6 + + + + + + Interview questionnaire, 1995 + + 6 + + + + + + Cooper, Dennis, 1979-1982, undated + + 6 + + + + + Cope, David, 1985-1998, 2001-2002 + + 6 + + + + + Corbett, Bill, 1973-1997, 2002 + + 6 + + + + + Corman, Cid, 1980 + + 6 + + + + + Corso, Gregory, 1971, 1977, undated + + 6 + + + + + Cott, Jonathan + + + + Correspondence (2 folders), 1962-1994, 2002, undated + + 7 + + + + + Manuscripts, 1980-1986, undated + + 7 + + + + + + Coultas, Brenda, 2001, 2005 + + 7 + + + + + Cox, Bill, 1973-1974 + + 7 + + + + + Crabtree, Lee, 1968-1973, undated + + 7 + + + + + Creeley, Robert + + + + Correspondence, 1971-1997, undated + + 7 + + + + + University of New Mexico M.A. thesis, Selected Poems (1957-1959), 1959 + + 7 + + + + + Printed Material, 1973-1984 + + 7 + + + + + + Creson, Steve, 1987-1993 + + 7 + + + + + Curtis, Jackie, undated + + 7 + + + + + Crispell, Marilyn 2001-2002 + + 7 + + + + + Daley, John, 1977, 1980 + + 7 + + + + + Dalrymple-Hollo, Jane, 1984, undated + + 7 + + + + + Dardzinski, Dennis, 1974 + + 7 + + + + + Darras, Jaques, 1970 + + 7 + + + + + Dart, Melinda, 1977 + + 7 + + + + + Davidson, Michael, 1979-1980 + + 7 + + + + + Davies, Alan, 1975-1995 + + 7 + + + + + Davis, Gray Harriman, 1968 + + 7 + + + + + Davison, Matthew, 1973 + + 7 + + + + + Dawson, Fielding, 1974-1994 + + 7 + + + + + DeCoursey, Peggy, 1975, 2001 + + 7 + + + + + Degroote, Bernard, 1975 + + 7 + + + + + Della Terza, Grazia, 1984-1987, 2002 + + 7 + + + + + De Loach, Allen (Empire State College), 1971-1977 + + 7 + + + + + DeLynn, Jane, undated + + 7 + + + + + Dematrakis, Johanna, 1980 + + 7 + + + + + Denby, Edwin + + + + Correspondence, 1973-1979, undated + + 7 + + + + + Manuscripts, 1981, undated + + 7 + + + + + Interview, 1978 + + 7 + + + + + Biographical, 1974-1997 + + 7 + + + + + + Dennis, Donna, 1974-1984, undated + + 7 + + + + + Desjardins, Marc, undated + + 7 + + + + + Devore, Darrell, undated + + 7 + + + + + DeWys, Margaret, 1984 + + 7 + + + + + DiPietro, Robert (Lordly & Dame, Inc.), 1978 + + 7 + + + + + Dibbell, Charlie, 1977 + + 7 + + + + + Di Prima, Diane + + + + Correspondence (3 folders), 1974-2012, undated + + 7 + + + + + Manuscripts, 1975-1988, undated + + 7 + + + + + Printed Material, 1976-1984, undated + + 7 + + + + + Course and workshop descriptions, 1987, undated + + 7 + + + + + + di Prima, Jeanne, 1976 + + 7 + + + + + Disch, Tom, undated + + 7 + + + + + Dmytriw, Linda, 1973 + + 7 + + + + + Dominic, Magie, 1993 + + 7 + + + + + Donegan, Pat, 1980-1984 + + 7 + + + + + D'Or, Vic, (The Eternal Network), 1977 + + 7 + + + + + Dorfman, Elisa, 1975, undated + + 7 + + + + + Dorje, Shakya, 1977-1980, undated + + 7 + + + + + Dorn, Ed + + + + Correspondence, 1974-1992 + + 7 + + + + + Printed material, 1971-1987 + + 7 + + + + + + Dorn, Harold, 1981 + + 7 + + + + + Dorsky, Nick + + + + Correspondence (3 folders), 1970-1994, 2009, undated + + 7 + + + + + Manuscript, undated + + 7 + + + + + Biographical, undated + + 7 + + + + + + Douthit, Peter (World Poetry Bout Association), 1994 + + 7 + + + + + Dragonette, Ree, undated + + 7 + + + + + Ducornet, Rikki, 1992 + + 7 + + + + + Duncan, Robert + + + + Correspondence, 1976-1988 + + 7 + + + + + Interviews, 1978, undated + + 7 + + + + + + Dunn, Douglas + + + + Correspondence (4 folders), 1975-2001, undated + + 8 + + + + + Correspondence (7 folders), 1975-2001, undated + + 8 + + + + + Manuscripts, 1997 + + 8 + + + + + Postcards, flyers, and announcements, 1987-1988, undated + + 8 + + + + + Artwork, undated + + 8 + + + + + + Dunn, Ethan, 1986, undated + + 8 + + + + + Dunn, S.K., 1978, undated + + 8 + + + + + Dunning, Steven, 1977, undated + + 8 + + + + + Duplessis, Rachel Blau, 1995-1997, 2001, 2004 + + 8 + + + + + DuRoi, Denise, 1981-1983, undated + + 8 + + + + + Dworkin, Andrea, 1965, undated + + 8 + + + + + Eigner, Larry, 1986, undated + + 8 + + + + + Einhorn, Nikolaus (S Press Tonbanduerlag), 1979 + + 8 + + + + + Eisenberg, Barry, 1974-1975 + + 8 + + + + + Ekner, Reidar, 1978-1983 + + 8 + + + + + Elisov, Tania + + + + Correspondence, 1990-1998, undated + + 8 + + + + + Manuscripts, 1993-1998, undated + + 8 + + + + + + Emigholz, Heinz, 1979 + + 8 + + + + + Elliot, Jai, 1976 + + 8 + + + + + Ellison, John (Broken Moon Press), 1993 + + 8 + + + + + Elmslie, Kenward + + + + Correspondence (3 folders), 1969-1994, undated + + 8 + + + + + Manuscripts + + + + "City Junket," undated + + 8 + + + + + Poetry, 1969, undated + + 8 + + + + + Biographies and writing exercises, 1968, undated + + 8 + + + + + + Printed Material, 1970-1977 + + 8 + + + + + Posters and Flyers, undated + + 8 + + + + + + Elovich, Richard, 1976-1980 + + 8 + + + + + Epstein, Jason (Random House), 1980 + + 8 + + + + + Eshleman, Clayton, 1971-2006, undated + + 8 + + + + + Facey, Steve, 1972-1977, undated + + 8 + + + + + Fagin, Larry + + + + Correspondence, 1969-1994, 2001, undated + + 8 + + + + + Manuscripts, 1968-1969, undated + + 8 + + + + + Interview(?), undated + + 8 + + + + + "Proust Questionnaire" completed by Anne Waldman, 1971 + + 8 + + + + + Broadsides, posters, and artwork, 1977, undated + + 8 + + + + + Miscellaneous, undated + + 8 + + + + + + Faithfull, Marianne, 1988-1989 + + 8 + + + + + Farrah, George, 1973 + + 8 + + + + + Faulwell, Dean, 1972 + + 8 + + + + + Feliu, Denise, 1971 + + 8 + + + + + Felver, Chris, 1994 + + 8 + + + + + Ferlinghetti, Lawrence + + + + Correspondence, 1974-1994, 2001-2003, undated + + 8 + + + + + Manuscripts and printed material, 1975-1994, undated + + 8 + + + + + + Ferrari, Mary + + + + Correspondence, 1969-1993 + + 9 + + + + + Manuscripts, undated + + 9 + + + + + + Field, Edward, 1977 + + 9 + + + + + Field, Thalia, 1999-2003 + + 9 + + + + + Fielding, Kent, undated + + 9 + + + + + Fischer, Norman, 1981-1995 + + 9 + + + + + Fishbach, Chris (Coffeehouse Press), 2000-2003, 2006 + + 9 + + + + + Fisher, Grant, 1974-1975 + + 9 + + + + + Fisketjon, Gary (Random House), 1980 + + 9 + + + + + Fitzsimmons, Thomas, undated + + 9 + + + + + Folkins, Caroline, 1973 + + 9 + + + + + Ford, Charles Henri, 1972-1995, undated + + 9 + + + + + Foss, Phillip, 1984-1992 + + 9 + + + + + Foster, Ed, 1981-1997, undated + + 9 + + + + + Fox, Elizabeth, 1978-1985, undated + + 9 + + + + + Fox, Siv Cedering, undated + + 9 + + + + + Foye, Raymond, 1986-1993 + + 9 + + + + + Frankel, Adrienne, 1979, undated + + 9 + + + + + Franks, David, 1970-1993, undated + + 9 + + + + + Fraser, Kathleen, 1986-2001 + + 9 + + + + + Fredricks, Claude, 1966-1977, undated + + 9 + + + + + Freilicher, Jane, 1981, undated + + 9 + + + + + Friedman, Ed + + + + Correspondence, 1986-1993, undated + + 9 + + + + + "Desert Industry," manuscript, 1979 + + 9 + + + + + + Friedman, Jon, 1979 + + 9 + + + + + Friedman, Richard, 1972-1974 + + 9 + + + + + Friend, Ethelyn (Stearns), 1983-1995 + + 9 + + + + + Funkhouser, Christopher, 1997, 1999 + + 9 + + + + + Galassi, Jonathan, 1976-1984 + + 9 + + + + + Gallup, Dick + + + + Correspondence, 1975-1976 + + 9 + + + + + Manuscripts, 1978, undated + + 9 + + + + + + Galuis, Kristen, 1972 + + 9 + + + + + Gardner, Geoffery, 1978-1979 + + 9 + + + + + Garland, Peter + + + + Correspondence, 1985-1986 + + 9 + + + + + "The Bone Show," manuscript and score, 1987 + + 9 + + + + + + Gay, Pamela, 1974 + + 9 + + + + + Gere, Richard, 1988 + + 9 + + + + + Germaine, Edward, 1974 + + 9 + + + + + Gierach, John, undated + + 9 + + + + + Gilbert, Alan (2 folders), 2001-2009 + + 9 + + + + + Gill, Charles (Archer Press), 1977-1978 + + 9 + + + + + Gill, Neil, undated + + 9 + + + + + Gillfillan, Merrill, 1971 + + 9 + + + + + Gilliat, Sarah, undated + + 9 + + + + + Ginsberg, Allen + + + + Correspondence (3 folders), 1970-1995, undated + + 9 + + + + + Manuscripts + + + + Howl (labeled "second working copy") (5 folders), 1986 + + 9 + + + + + Introduction for William Burroughs' + Letters to Allen Ginsberg, 1953-1957, edited by Ron Padgett 1981 + + 9 + + + + + Letters to Yugoslavia (Vojo Sindolic) from "Beat Scene", 1981-1992 + + 9 + + + + + Miscellaneous poetry manuscripts, 1973-1976 + + 9 + + + + + Miscellaneous prose manuscripts, 1969-1985 undated + + 9 + + + + + + Printed material + + + + Poetry and broadsides, 1977-1977 + + 9 + + + + + Clippings (2 folders), 1979-1994 + + 10 + + + + + Programs and invitations, 1979-2005 + + 10 + + + + + + Miscellaneous + + + + Biographical summary, ca. 1978 + + 10 + + + + + Ginsberg Trust, 1994-1998 + + 10 + + + + + Interviews,(audio cassette in audiovisual series) 1976-1996 + + 10 + + + + + Interview with Vojo Sindolic, 1986 + + 10 + + + + + Memorials and obituaries (2 folders), 1997 + + 10 + + + + + Anne Waldman's speech for tree planting memorial at St. Mark's Church-in-the-Bowery August 18, 1999 + + 10 + + + + + Rhino compact disc boxed set ( + Allen Ginsberg: A Recorded History) correspondence and liner notes by Anne Waldman, 1993 + + 10 + + + + + Teaching material, 1983 + + 10 + + + + + Travel itineraries, 1979-1996 + + 10 + + + + + Anne Waldman "notes on a conversation with Allen G," 1994 + + 10 + + + + + Various, undated + + 10 + + + + + Allen Ginsberg's necktie (red and blue stripe) + 10 + + + + + + Notes + + + + Door notes and messages for Anne Waldman, undated + + 10 + + + + + "Rinpoche lectures": photocopies (2 folders), 1973 + + 10 + + + + + Miscellaneous notes and jottings, undated + + 10 + + + + + + + Giorno, John + + + + Correspondence, 1970-1986, undated + + 10 + + + + + Manuscripts, 1973-1974, undated + + 10 + + + + + Flyers, posters, and announcements, 1968-1971, undated + + 10 + + + + + Giorno Poetry Systems + + + + Contracts with Anne Waldman, 1978-1980 + + 10 + + + + + Press Releases, 1970, undated + + 10 + + + + + + + Glasser, Jane Ellen, 1973, undated + + 10 + + + + + Glassgold, Peter (New Directions Publishing), 1976-1991 + + 10 + + + + + Glenn, Tamela, undated + + 10 + + + + + Godfrey, John, 1980, undated + + 10 + + + + + Goheen, Ellen R., 1980 + + 10 + + + + + Goldberg, Jeff, undated + + 10 + + + + + Goldberg, Natalie + + + + Correspondence, 1986-1994, undated + + 10 + + + + + Manuscript, + Long Quiet Highway, 1993 + + 10 + + + + + + Golde, Morris, 1973-1980 + + 10 + + + + + Goldfarb, Sidney, 1974 + + 10 + + + + + Goldstein, Richard, 1971 + + 10 + + + + + Goodell, Larry, 1977 + + 10 + + + + + Goodfriend, Gloria, 1971 + + 10 + + + + + Gordon, Kirpal Singh, undated + + 10 + + + + + Granville-Smith, Maureen, 1974 + + 10 + + + + + Graverholz, James W. 1999 + + 10 + + + + + Gray, Darrell, 1969 + + 10 + + + + + Gray, Francine, 1974 + + 10 + + + + + Gray, Paul, 1975 + + 10 + + + + + Green, Galen, 1973 + + 10 + + + + + Greenspan, Eliot, 1991 + + 10 + + + + + Greenwald, Ted + + + + Correspondence, 1975-1976, undated + + 10 + + + + + Manuscript, "Native Land," 1976 + + 10 + + + + + + Griffin, Tom, undated + + 10 + + + + + Grimm, David (6 folders), 1963-1976, undated + + 11 + + + + + Groffsky, Maxine ( + The Paris Review), 1973, undated + + 11 + + + + + Grooms, Red, 1984, undated + + 11 + + + + + Grossinger, Richard, 1984, undated + + 11 + + + + + Gruntz, George, 1972-2004 + + 11 + + + + + Guarino, Mariangela (City Lights Italia), 1998-2002 + + 11 + + + + + Guest, Barbara, 1973-2002, undated + + 11 + + + + + Gunreben, Ulrich, 1979 + + 11 + + + + + Guravich, Donald, 1980 + + 11 + + + + + Gustafson, Jim, 1979, undated + + 11 + + + + + Guston, Philip, 1971-1977 + + 11 + + + + + Hacker, Marilyn, 1973 + + 11 + + + + + Haden-Guest, Hadley, 1974 + + 11 + + + + + Haerdter, Micheal, 1978 + + 11 + + + + + Haines, Randa, 1964-1968 + + 11 + + + + + Hall, Donald, 1971-1994, undated + + 11 + + + + + Hall, James Baker, 1977, undated + + 11 + + + + + Hall, Steven (2 folders), 1976-1979, undated + + 11 + + + + + Hall, Susan, 1973-1989 + + 11 + + + + + Hallett, Marta (Stonehill Publishing), 1975-1980, undated + + 11 + + + + + Hamill, Juan, undated + + 11 + + + + + Hamilton, Steve, 1974 + + 11 + + + + + Hamlin, Louise, 1994,2001 + + 11 + + + + + Hammersley, Richard, undated + + 11 + + + + + Hampson, Robert, 1977, 2006 + + 11 + + + + + Hansen, Al, 1966 + + 11 + + + + + Haring, Cynthia, 1977-1979 + + 11 + + + + + Harryman, Carla, 1993-1997 + + 11 + + + + + Hartman, Yukihede Maeshima, 1992 + + 11 + + + + + Hartz, Jim, undated + + 11 + + + + + Harwood, Lee, 1970-1991 + + 11 + + + + + Havelin, Jim, 1974-1975 + + 11 + + + + + Haviaras, Stratis, 1980-1982 + + 11 + + + + + Hawkins, Bobbie Louise, + + + + Correspondence, 1973-2006 + + 11 + + + + + Manuscripts, 1993, undated + + 11 + + + + + + Hawkins, Ralph, 1974 + + 11 + + + + + Haynes, Douglas, 1978, undated + + 11 + + + + + Hejinian, Lyn, 1976-1993, 200, 2003, undated + + 11 + + + + + Heliczer, Piero, 1973 + + 11 + + + + + Heller, Michael, 1980-1991 + + 11 + + + + + Hemenway, Anne, 2000-2002 + + 11 + + + + + Henderson, David, 1970-1993 + + 11 + + + + + Hershon, Bob, 1990-1993 + + 11 + + + + + Hertz, Amy (Henry Holt and Company), 1991 + + 11 + + + + + Hickox, Fayette, 1975 + + 11 + + + + + Higgins, Dick, 1969-1973 + + 11 + + + + + Hiler, Jerry, 1971-1992, 1999 + + 11 + + + + + Hillinghouse, Mark, 1984-1985 + + 11 + + + + + Hinchey, John, 1979-1980 + + 11 + + + + + Hine, Daryl (Poetry Magazine), 1973 + + 11 + + + + + Hintze, Christian Ide (Schule für Dichtung), 1991-1999, undated + + 11 + + + + + Hobson, Gerald, undated + + 11 + + + + + Hodgekiss, Peter, (Galloping Dog Press), 1978 + + 11 + + + + + Hoffman, Andy, 1986-2007, undated + + 11 + + + + + Holland, Joyce, 1972 + + 11 + + + + + Hollo, Anselm + + + + Correspondence (2 folders), 1972-2006, undated + + 12 + + + + + Manuscripts, 1998, undated + + 12 + + + + + Printed Material, 1979-1991 + + 12 + + + + + Biographical, undated + + 12 + + + + + + Hollowell, Amy, 1999-2000 + + 12 + + + + + Holman, Bob, 1979-1992, 1996, 2000-2006 + + 12 + + + + + Hoogstraten, Harry and Suze, 1979-1980, undated + + 12 + + + + + Hoover, Paul ( + Oink and + Columbia Poetry Review ), 1984-2002 + + 12 + + + + + Hopper, Jack, 1966 + + 12 + + + + + Horne, Jed ( + People Magazine), 1975 + + 12 + + + + + Hornick, Lita + + + + Correspondence, 1973-1984, undated + + 12 + + + + + Manuscripts and announcements, 1991, undated + + 12 + + + + + + Horowitz, Michael, 1969-1980, undated + + 12 + + + + + Hough, Lindy, 1975, 2000, undated + + 12 + + + + + Hourwich, Sasha, 1958-1967, undated + + 12 + + + + + Howe, Susan, undated + + 12 + + + + + Howard, Snooks, undated + + 12 + + + + + Hoyem, Andrew, 1970-1978 + + 12 + + + + + Hrdy, Becky, 1973 + + 12 + + + + + Hrebeniak, Michael, undated + + 12 + + + + + Hudson, Lee (University of Texas Austin), 1979 + + 12 + + + + + Hudspith, Vicki, 1984, 2001, undated + + 12 + + + + + Hughes, Helena, 1978-1980, undated + + 12 + + + + + Humann, Klaus, 1978 + + 12 + + + + + Hunt, Laird, 1995-2004 + + 12 + + + + + Hunter, Robert, 1992-1993 + + 12 + + + + + Hurwitz, Sidney, 1974 + + 12 + + + + + Hussey-Freke, Ambrose, 1980-1981 + + 12 + + + + + Irby, Kenneth, 1989-1993, 2000-2002 + + 12 + + + + + Jackson, Haziel, undated + + 12 + + + + + Jackson, Richard, 1979 + + 12 + + + + + Jacob, John, 1974 + + 12 + + + + + Jacquette, Yvonne, 1987-1989, undated + + 12 + + + + + Janovy, Jennifer, 1991 + + 12 + + + + + Jarnot, Lisa, 1996-2007 + + 12 + + + + + Jenkins, Joyce ( + Poetry Flash), 1978-1995, undated + + 12 + + + + + Johns, Jasper, 1972-1984, undated + + 12 + + + + + Johnson, Kent, 1988-1991 + + 12 + + + + + Johnston, Alastair, 1977-1998 + + 12 + + + + + Jordan, Dawn, undated + + 12 + + + + + Joris, Pierre, 1973-1974, 2000, undated + + 12 + + + + + Josek, Jiri, 1993-2002 + + 12 + + + + + Kahn, Paul, 1975 + + 12 + + + + + Kaiser, Thomas, 1972 + + 12 + + + + + Kaminker, Karin, 1993-2002 + + 12 + + + + + Kamsler, Mark, 1978 + + 12 + + + + + Kass, Ray, 1975 + + 12 + + + + + Katz, Alex and Ada, 1968-1980, undated + + 12 + + + + + Katz, Eliot, 1981-2007 + + 12 + + + + + Katz, Leandro, 1994, 2002, undated + + 12 + + + + + Katz, Steve, 1985, undated + + 12 + + + + + Katz, Vincent, 1986-2004 + + 12 + + + + + Kearney, Margaret + + +

    (also known as Tapa Kearney)

    +
    + + + Correspondence, 1978-1979, undated + + 12 + + + + + Manuscripts, undated + + 12 + + +
    + + + Kellner, Michael, 1979 + + 12 + + + + + Kelly, Robert, 1977 + + 12 + + + + + Kensho, Hugo, 1970 + + 12 + + + + + Kerouac, Jan, undated + + 12 + + + + + Kerouac, Jack, 1962 + + 12 + + + + + Kesey, Ken + + + + Correspondence, 1975-1999 + + 12 + + + + + Lecture transcript and photograph, 1975 + + 12 + + + + + Miscellaneous, 1976, undated + + 12 + + + + + Knott, Beverly (Follett Publishing Company), 1968 + + 12 + + + + + + Kicknosway, Faye (also known as Morgan Blair), 1974 + + 12 + + + + + Kimball, George, 1969 + + 12 + + + + + Kimberly, Nick, 1970-1974 + + 12 + + + + + King, Basil, undated + + 12 + + + + + King, Denyse, 1980 + + 12 + + + + + King, Kenneth, 1973-1976 + + 12 + + + + + Kinnel, Galway, 1993 + + 12 + + + + + Kirschenbaum, David, 1993, 2007 + + 12 + + + + + Kissam, Ed, undated + + 12 + + + + + Kite, Mary, 2001-2004 + + 12 + + + + + Knight, Arthur and Glee, 1975 + + 13 + + + + + Knipscheer, Jos, 1979 + + 13 + + + + + Knowles, Christopher, undated + + 13 + + + + + Koch, Kenneth + + + + Correspondence, 1969-1994 + + 13 + + + + + Printed material, undated + + 13 + + + + + Biographical, 1977, undated + + 13 + + + + + + Koethe, Jolen, 1979 + + 13 + + + + + Kohler, Michael, 1972-1988, undated + + 13 + + + + + Koller, Jim, 1980 + + 13 + + + + + Kong, Gail (Coordinating Council of Literary Magazines), 1972-1973 + + 13 + + + + + Kornblum, Allan + + + + Correspondence, 1979-1995, 2000-2006, undated + + 13 + + + + + Coffee House Press, royalty statements, contracts, and miscellaneous, 1984-1996, 2001, undated + + 13 + + + + + + Kostakis, Peter ( + Milk Quarterly and + Yellow Press), 1975 + + 13 + + + + + Kostelanetz, Richard, 1973-1976 + + 13 + + + + + Kramer, Robert, undated + + 13 + + + + + Krauss, Ruth, 1969, undated + + 13 + + + + + Kraut, Shelley, 1976-1981 + + 13 + + + + + Kray, Elizabeth (Academy of American Poets), 1970 + + 13 + + + + + Krieger, Ian, 1984 + + 13 + + + + + Kumar, Radha, 1974, undated + + 13 + + + + + Kurtz, Vivian, 1977-1993, undated + + 13 + + + + + Kush (?) (Cloudhouse Poetry Archives), 1986-1998 + + 13 + + + + + Kyger, Joanne + + + + Correspondence (4 folders), 1971-2004, undated + + 13 + + + + + Manuscripts, undated + + 13 + + + + + Printed Material, 1973, undated + + 13 + + + + + Interview: photocopy, 1983 + + 13 + + + + + Artwork and miscellaneous, undated + + 13 + + + + + + Lacy, Steve, 1984-1998, 2001, undated + + 13 + + + + + Lake, Eva, 1979, undated + + 13 + + + + + Lally, Michael, 1973-1979, undated + + 13 + + + + + Landes-Levi, Louise, 1991-1997 + + 13 + + + + + Landry, John, 1979 + + 13 + + + + + Langdell, Cheri Davis, 1982 + + 13 + + + + + Larkin, Joan, 1980 + + 13 + + + + + Larsen, Wenche, 1990 + + 13 + + + + + Laughlin, James + + + + Correspondence, 1976-1997 + + 13 + + + + + Printed Material, 1986-1995 + + 13 + + + + + Memorials and obituaries, 1997 + + 13 + + + + + + Lauterbach, Ann, 1981-1983, 2006, undated + + 13 + + + + + Lawrance, Scott, 1979 + + 13 + + + + + Lazzeri, Simone, 1979-1981 + + 13 + + + + + Lea, Sonya, 2000-2002 + + 13 + + + + + Lea, Sydney, 1974 + + 13 + + + + + Lehnert, Richard, 1972 + + 13 + + + + + Lemaine, Gerard-Georges, 1979-1983 + + 13 + + + + + Lenhart, Gary, 1980-1989 + + 13 + + + + + Lerner, Eric, 1979-1980 + + 13 + + + + + Lesniak, Rose + + + + Correspondence, 1975-1989, undated + + 13 + + + + + Manuscripts, 1977-1978 + + 13 + + + + + Out There Productions video projects, 1984-1985 + + 13 + + + + + + LeSueur, Joe + + + + Correspondence, 1991 + + 13 + + + + + Manuscript, + Four Apartments: an Intimate Memoir of Life with Frank O'Hara, 1991 + + 13 + + + + + Interview, 1991 + + 13 + + + + + + Levendosky, Charlie, 1979-1980 + + 13 + + + + + Levertov, Denise, 1994, undated + + 13 + + + + + Levine, Les, 1973-1977 + + 13 + + + + + Levine, Naomi, 1976 + + 13 + + + + + Lewis, Harry, 1973-1975 + + 13 + + + + + Lewis, Joel, 1992 + + 13 + + + + + Leyland, Winston ( + Gay Sunshine), 1974 + + 13 + + + + + Lichtenstein, Grace, 1980 + + 13 + + + + + Liebhart, Ernst, 1989 + + 13 + + + + + Lifshin, Lyn, 1976-1987, undated + + 13 + + + + + Lloyd, Allan, 1977 + + 13 + + + + + Loidl, Chris, 1990-2001 + + 13 + + + + + London, Sara, 1992 + + 13 + + + + + Loomis, Ed, 1973 + + 13 + + + + + Lopate, Carol, undated + + 13 + + + + + Low, Steven, 1976-1988, undated + + 13 + + + + + Lustig, Shelley, 1982-1992 + + 13 + + + + + Lynn, Lynn, 1979-1980, undated + + 13 + + + + + MacAdams, Lewis + + + + Correspondence, 1969-1999, undated + + 14 + + + + + Manuscripts, undated + + 14 + + + + + + McAdams, Phoebe, 1972-1980 + + 14 + + + + + MacArthur, Mary (Creative Artist Public Service Program), 1976-1977 + + 14 + + + + + MacBeth, George, 1974 + + 14 + + + + + Machovic, Martin, 1990, 1999 + + 14 + + + + + MacInnis, Jamie, 1979 + + 14 + + + + + MacKay, Bill, 1973, undated + + 14 + + + + + Mac Low, Jackson + + + + Correspondence, 1975-1994 + + 14 + + + + + Manuscripts, 1980-1994 + + 14 + + + + + + MacNaughton, Ann, 1992, 1999 + + 14 + + + + + Major, Clarence, 1973 + + 14 + + + + + Malanga, Gerard + + + + Correspondence, 1965-1991 + + 14 + + + + + Printed Material, 1968-1970, undated + + 14 + + + + + + Malmude, Steve, 1974-1978 + + 14 + + + + + Maluff, Saul, 1962 + + 14 + + + + + Mapplethorpe, Robert, 1973 + + 14 + + + + + Margolis, Susan, 1972-1973 + + 14 + + + + + Marlatt, Daphne, 1978-1982 + + 14 + + + + + Marron, John, 1973, undated + + 14 + + + + + Martin, John (Black Sparrow Press), 1974-1975 + + 14 + + + + + Masters, Barbara, 1987-1997, undated + + 14 + + + + + Masters, Greg, 1979-1992, undated + + 14 + + + + + Masterson, Robert, 1990-1997 + + 14 + + + + + Matthews, Harry, 1969-1974 + + 14 + + + + + Matthias, John, 1974 + + 14 + + + + + Mayer, Bernadette + + + + Correspondence (4 folders), 1969-2002, undated + + 14 + + + + + Manuscripts + + + + Poetry, undated + + 14 + + + + + Prose, undated + + 14 + + + + + + Printed, undated + + 14 + + + + + Photographs, undated + + 14 + + + + + Miscellaneous, undated + + 14 + + + + + + Mayer, Musa, 1994 + + 14 + + + + + McCall, Anthony, 1974 + + 14 + + + + + McClure, Michael + + + + Correspondence, 1973-2007, undated + + 14 + + + + + Manuscripts, 1976-1992 + + 14 + + + + + Printed material, 1972-1991, undated + + 14 + + + + + + McCrary, Jim + + + + Correspondence, 1991-1992 + + 14 + + + + + Manuscripts, 1991-1992 + + 14 + + + + + + McCullough, Frances, 1976 + + 14 + + + + + McGrath, Thomas, 1974 + + 14 + + + + + McKenna, Thomas, undated + + 14 + + + + + McNaughton, Duncan, 1969-1987 + + 14 + + + + + Meltzer, Richard, 1971-1988 + + 14 + + + + + Merwin, W.S., 1975 + + 14 + + + + + Messerli, Doug (Sun and Moon Press) + + + + Correspondence, 1978-1997 + + 14 + + + + + Manuscript, + The Adventures Of, undated + + 14 + + + + + + Mikolowski, Ann and Ken, 1972-1995, 2002 + + 14 + + + + + Miles, Alex, 1974 + + 14 + + + + + Miles, Barry, 1974, undated + + 14 + + + + + Miller, Stephen Paul (The Poetry Newsletter), undated + + 14 + + + + + Minukin, Marta, 1970 + + 14 + + + + + Mitchell, Donald, 1974 + + 14 + + + + + Mitchell, Greg ( + Crawdaddy magazine), 1974 + + 14 + + + + + Mitgang, Esther (Stonehill Publishing and Harmony Books), 1977-1985 + + 14 + + + + + Mohrenn, Wolfgang, undated + + 14 + + + + + Montag, Tom, 1973 + + 14 + + + + + Moon, Susan, 1997 + + 14 + + + + + Moore, Honor, 1973-2009 + + 14 + + + + + Morgan, Bill, 1994-2007 + + 14 + + + + + Morgan, John and Linda, 1984-2001, undated + + 14 + + + + + Morice, David, 1980-1994, undated + + 14 + + + + + Morrisey, Stephen, 1976 + + 14 + + + + + Morrison, Madison, 1973-1974, undated + + 15 + + + + + Morrow, Bradford, 1982-1993 + + 15 + + + + + Moscrip, Amos, 1976 + + 15 + + + + + Mottram, Eric, 1978-1979 + + 15 + + + + + Mukpo, Sawang Osel Rangdrol(?), 1992 + + 15 + + + + + Mulford, Wendy, 1979 + + 15 + + + + + Mulligan, John, 1979 + + 15 + + + + + Mullins, Brighde (DIA Center for the Arts), 1994 + + 15 + + + + + Mundhenk, Michael, 1980 + + 15 + + + + + Munger, Nicky, 1963-1975, undated + + 15 + + + + + Murray, Catherine, 1983 + + 15 + + + + + Myles, Eileen, 1979-1989 + + 15 + + + + + Nash, Susan, 1973 + + 15 + + + + + Nations, Opal, 1971-1977, undated + + 15 + + + + + Nemerov, Howard, 1966-1990 + + 15 + + + + + Nicosia, Gerald, 1994-1998, 2007 + + 15 + + + + + Nielsen, Bonnie, 1976 + + 15 + + + + + Noel, Dan, 1982 + + 15 + + + + + Noel, Susan K., 1977-2004, undated + + 15 + + + + + Nolan, Pat, 1976, undated + + 15 + + + + + Norbu, Tshering, 1974-1979 + + 15 + + + + + Norris, Kathleen (Academy of American Poets), 1971 + + 15 + + + + + Norse, Harold, 1979-1994 + + 15 + + + + + North, Charles, 1978-1988, 2000, 2002, 2005-2007, undated + + 15 + + + + + Notley, Alice + + + + Correspondence(2 folders), 1971-2004, undated + + 15 + + + + + Manuscripts, 1975-1983, undated + + 15 + + + + + + Ochester, Ed, undated + + 15 + + + + + O'Connor, Michael Patrick, 1970-2002 + + 15 + + + + + Odell, Jay, 1972 + + 15 + + + + + O'Gallagher, Liam, 1969-1973 + + 15 + + + + + O'Hara, Frank, 1960, undated + + 15 + + + + + O'Hare, Lynn, 1974 + + 15 + + + + + Ohnemus, Gunter, 1991 + + 15 + + + + + O-Lan(?), 1972, undated + + 15 + + + + + Oldenburg, Patty, undated + + 15 + + + + + Oliver, Akilah, 1993, 2001, 2005-2006 + + 15 + + + + + Oliver, Doug + + + + Correspondence, 1978-1994, 2000, undated + + 15 + + + + + Printed material and miscellaneous, 1984, undated + + 15 + + + + + + Olmstead, Marc, 1976, 1997 + + 15 + + + + + Olson, Kirby, 1980, undated + + 15 + + + + + Olthuis, Norbert, 1962-1969, undated + + 15 + + + + + O'Neil, Hank, 1983 + + 15 + + + + + Oppenheimer, Joel, 1974 + + 15 + + + + + Orlovsky, Peter, 1971-1977 + + 15 + + + + + Osborne, John, 1974-1975 + + 15 + + + + + Osman, Jena, 1993-2003 + + 15 + + + + + Ostriker, Alicia, undated + + 15 + + + + + Oughton, John, 1973-1978 + + 15 + + + + + Owen, Maureen, 1975-1991, 2000, undated + + 15 + + + + + Owens, Rochelle, 1974 + + 15 + + + + + Pacheco, Joe + 15 + + + + + Padgett, Ron + + + + Correspondence (7 folders), 1969-2004, undated + + 15 + + + + + Manuscripts + + + + "Moveable Basketballs," undated + + 15 + + + + + Editorial notes on Allen Ginsberg introduction to William Burroughs' + Letters to Allen Ginsberg, 1981 + + 15 + + + + + Miscellaneous poetry manuscripts (2 folders), 1967-1972 + + 15 + + + + + Miscellaneous prose manuscripts, undated + + 16 + + + + + + Printed material, 1967-1972, undated + + 16 + + + + + Photographs and artwork, undated + + 16 + + + + + Notes and jottings, undated + + 16 + + + + + Full Court Press + + + + Correspondence, 1973-1983, undated + + 16 + + + + + Legal documents and miscellaneous, 1973-1983, undated + + 16 + + + + + + + Parmalee, Dorothy, 1992-1995, 2002 + + 16 + + + + + Paschen, Elise, 1988-1993 + + 16 + + + + + Pasqui, Graziana Rossi, 1984 + + 16 + + + + + Patchen, Miriam, 1972-1997 + + 16 + + + + + Patterson, Bobo, 1979 + + 16 + + + + + Paverd, Laurence, 1997, 2001, undated + + 16 + + + + + Pearlman, Bill, 1974 + + 16 + + + + + Pelton, Helen, 1986-1989, undated + + 16 + + + + + Pennington, Tim, 1975, undated + + 16 + + + + + Perlmutter, Sheryl (University of North Carolina), 1981 + + 16 + + + + + Perloff, Marjorie, 1975-1976, 2001 + + 16 + + + + + Perreault, John, 1972-1974, 1986 + + 16 + + + + + Perry, Charles ( + Rolling Stone), undated + + 16 + + + + + Peters, Nancy + + + + Correspondence (2 folders), 1971-1997, 2000, 2007, undated + + 16 + + + + + City Lights Books royalty statements and miscellaneous, 1978-1994, undated + + 16 + + + + + + Pettet, Simon, 1990 + + 16 + + + + + Peyes, Craig, 1972 + + 16 + + + + + Peyrafitte, Nicole, 1997-2002, undated + + 16 + + + + + Phillips, Bryan, 1994 + + 16 + + + + + Phillips, William ( + Partisan Review), 1974-1981 + + 16 + + + + + Phipps, Wanda, 1993-1997 + + 16 + + + + + Pickard, Tom, 1975-1983, undated + + 16 + + + + + Pietsch, Michael (Harmony Books), 1988 + + 16 + + + + + Ping, Wang + + + + Correspondence, 1989-1997 + + 16 + + + + + Manuscript, + Of Flesh and Spirit, undated + + 16 + + + + + + Piper, Adrian, 1969 + + 16 + + + + + Pivano, Fernanda, 1977-1980 + + 16 + + + + + Plymell, Charles, 1971-1975, 1986, undated + + 16 + + + + + Pollet, Sylvester, 1996-1998 + + 16 + + + + + Pomeroy, Joe, undated + + 16 + + + + + Pommy-Vega, Janine, 1974-1981, 2000 + + 16 + + + + + Porter, Anne, 1975 + + 16 + + + + + Posset, Benn, 1979 + + 16 + + + + + Post, Jon, 1978-1979 + + 16 + + + + + Pozzi, Giantonio, 1979, 2001, undated + + 16 + + + + + Presson, Bill, 1972 + + 16 + + + + + Prevallet, Kristen, 1993-2003, undated + + 16 + + + + + Price, Laurie, 1981 + + 16 + + + + + Pritchard, Norman Henry, 1973 + + 16 + + + + + Pritchett, Patrick, 1997-2003 + + 16 + + + + + Pritikin, Renny, 1985 + + 16 + + + + + Puttmann, Christian, 1974 + + 16 + + + + + Quasha, George, 1974-1975, 1999-2001 + + 16 + + + + + Quinlan, Jim (Creative Music Studio), 1978 + + 16 + + + + + Quirk, Mindy, 1984 + + 16 + + + + + Quist, Susan, 1975 + + 16 + + + + + Rachlis, Eugene (Bobbs-Merrill Company), 1974 + + 16 + + + + + Raines, Bob, 1970 + + 16 + + + + + Rakosi, Carl, 1979-1992 + + 16 + + + + + Ramke, Bin ( + Denver Quarterly), 1992 + + 16 + + + + + Ramstedt, Martin, 1990-2001, 2006 + + 16 + + + + + Randall, Margaret, 1978 + + 16 + + + + + Randell, Elaine, 1976 + + 16 + + + + + Randolph, Leonard (National Endowment for the Arts), 1973-1974. undated + + 16 + + + + + Ratcliff, Carter, 1974 + + 16 + + + + + Ravage, Alan (Bantam Books), 1971 + + 16 + + + + + Rawlings, Carol, 1979 + + 16 + + + + + Raworth, Tom, 1971-1978, 2002, undated + + 16 + + + + + Reed, Ishmael, 1975, undated + + 16 + + + + + Reed, Kim, 1979-1980 + + 16 + + + + + Reed, Lou, 1978, undated + + 16 + + + + + Reker, Mary Lou, undated + + 16 + + + + + Renwick, Vanessa, 1993 + + 16 + + + + + Reynolds, John, 1974 + + 16 + + + + + Rezek, John, ( + OUI magazine), 1974 + + 16 + + + + + Reznikoff, Charles, 1970 + + 16 + + + + + Ricard, Rene, 1976, undated + + 16 + + + + + Richards, Brian (Bloody Twin Press), 1987-1988 + + 16 + + + + + Richey, Joe + + + + Correspondence (2 folders), 1982-2002, undated + + 16 + + + + + Manuscripts, 1994-1997, undated + + 16 + + + + + + Riley, Denise, 1980-1984, undated + + 17 + + + + + Rivers, Larry, 1983 + + 17 + + + + + Roark, Randy, 1982-2003, undated + + 17 + + + + + Roberts, Frances, 1978 + + 17 + + + + + Robertson, Michael, 1974 + + 17 + + + + + Robinson, Peter (Cambridge Poetry Festival), 1979 + + 17 + + + + + Rockwell, Martha + + + + Correspondence (5 folders), 1965-1979, undated + + 17 + + 5.0 folders + + + + + + Manuscripts, undated + + 17 + + + + + Artwork, undated + + 17 + + + + + Miscellaneous, undated + + 17 + + + + + + Rodefer, Stephen, 1973-1986, undated + + 17 + + + + + Rodney, Janet, 1993 + + 17 + + + + + Rome, David, 1984 + + 17 + + + + + Rooney, J.K., 1964, undated + + 17 + + + + + Rosenberg, David, 1978, undated + + 17 + + + + + Rosenberg, Mike, undated + + 17 + + + + + Rosenquist, James, 1974 + + 17 + + + + + Rosenthal, Bob + + + + Correspondence, 1979-1986 + + 17 + + + + + Manuscript "India Journal," 1985 + + 17 + + + + + + Rosenthal, M.L., 1975 + + 17 + + + + + Rothenberg, Jerome + + + + Correspondence, 1973-2002, undated + + 17 + + + + + Manuscripts, 1976, undated + + 17 + + + + + Printed, 1970-1994 + + 17 + + + + + Interview, 1976, 1995, undated + + 17 + + + + + Syllabus, undated + + 17 + + + + + + Rowan, Peter, 1986 + + 17 + + + + + Rubin, Deborah, 1965 + + 17 + + + + + Ruggia, James, 1986, undated + + 17 + + + + + Rumaker, Michael, 1983 + + 17 + + + + + Ruppert, Jim, undated + + 17 + + + + + Russakoff, Molly, 1979 + + 17 + + + + + Ruuttila, Eero (?), 1976 + + 17 + + + + + Ryan, Bill (KCSU, Fort Collins), 1979 + + 17 + + + + + Sabina, Maria, undated + + 17 + + + + + Sakaki, Nanao, 1979-1991, 1999, undated + + 17 + + + + + Sander, Ellen, 1974 + + 17 + + + + + Sanders, Ed + + + + Correspondence, 1973-2001, undated + + 17 + + + + + Manuscripts + + + + "The Gobble Gang Poems," 1962-1964 + + 17 + + + + + Miscellaneous, undated + + 17 + + + + + + + Sandy, Stephen, 1975 + + 17 + + + + + Santoli, Al, 1976 + + 17 + + + + + Santos, Cristian, 1990, undated + + 17 + + + + + Saroyan, Aram, 1967, 1986, 2001, undated + + 17 + + + + + Savage, Tom, 1976-2003 + + 17 + + + + + Sawyer-Laucanno, Christopher, 1991 + + 17 + + + + + Scalapino, Leslie + + + + Correspondence, 1985-2004 + + 17 + + + + + Manuscript, "New Time," 1995 + + 17 + + + + + + Schaff, David, 1975 + + 17 + + + + + Schecter, Danny, 1980 + + 17 + + + + + Schelling, Andrew + + + + Correspondence (1 folder of photocopies of 1998 faxes) (3 folders), 1985-2002, undated + + 18 + + 3.0 folders + + + + + + Manuscripts + + + + Poems of Mirabi (2 folders), undated + + 18 + + + + + Twilight Speech: Essays and Translations from Indian Asia, undated + + 18 + + + + + The Cane Groves of Narmada River: 100 Poems from Old India, 1996 + + 18 + + + + + The Cane Groves of Narmada River: Erotic Poems from Old India, 1998 + + 18 + + + + + Old Growth: Selected Poems & Notebooks, 1987-1994 + 18 + + + + + + Printed, undated + + 18 + + + + + Miscellaneous, undated + + 18 + + + + + + Schelling, Robert and Karen, 1998, undated + + 18 + + + + + Schiff Harris, 1970-1992, undated + + 18 + + + + + Schjeldahl, Peter, + + + + Correspondence, 1973-1994, undated + + 18 + + + + + Manuscript, "From a Honeymoon Journal," 1974 + + 18 + + + + + + Schmidt, Eric, 1972 + + 18 + + + + + Schmidt, Jurgen, 1983-2007, undated + + 18 + + + + + Schmidt, Paul, 1984 + + 18 + + + + + Schneeman, Carolee, 1976-1992, 2002 + + 18 + + + + + Schneeman, George + + + + Correspondence, 1971-1976, undated + + 18 + + + + + Miscellaneous, undated + + 18 + + + + + + Schneeman, Katie, 1979-1980, undated + + 18 + + + + + Schneeman, Elio, 1983-1998 + + 18 + + + + + Schneider, David, + + + + Correspondence 1977, undated + + 18 + + + + + Manuscript, + Side Effect: A Journal of Zen Life with Philip Whalen, undated + + 18 + + + + + + Schuchat, Simon, 1973-1977 + + 18 + + + + + Schulman, Bonnie Jean, 1985, 2002 + + 18 + + + + + Schumacher, Michael, 1986 + + 18 + + + + + Schultzman, Steve, 1974 + + 18 + + + + + Schumaker, Jack, 1978 + + 18 + + + + + Schuyler, James + + + + Correspondence, 1971-1989 + + 18 + + + + + Manuscripts + + + + Freely Espousing: Poems by James Schuyler: final galley, 1969 + + 18 + + + + + Fragments and miscellaneous, undated + + 18 + + + + + + + Schwartz, Judy, 1963-1966 + + 18 + + + + + Schwartz, Stephen, 1975, undated + + 18 + + + + + Schwerner, Armand, 1989-1995, undated + + 18 + + + + + Scott, Mark, 1991 + + 18 + + + + + Segal, Lauren, 1966 + + 18 + + + + + Seidman, Hugh, 1988 + + 18 + + + + + Shank, Tom, 1967 + + 18 + + + + + Shanley, Don, undated + + 19 + + + + + Sharp, Andrea ( + Co-Evolution Quarterly), 1976, undated + + 19 + + + + + Shelton, Cindy, 1980 + + 19 + + + + + Shepard, Sam, 1971-1974 + + 19 + + + + + Shevlin, Paul, 1979-1980 + + 19 + + + + + Shippee, Paul 1973-1997 + + 19 + + + + + Shively, Charlie, 1974 + + 19 + + + + + Shukofsky, Eileen, 1974 + + 19 + + + + + Sikelianos, Chris, 1973-1976 + + 19 + + + + + Sikelianos, Eleni + + + + Correspondence, 1988-2006, undated + + 19 + + + + + Manuscripts + + + + Unbridled, 1994 + + 19 + + + + + What I Learned from the Sea, 1992 + + 19 + + + + + Miscellaneous, undated + + 19 + + + + + + + Sikelianos, Gina, 1992 + + 19 + + + + + Sikelianos, Mark, 1964-1984 + + 19 + + + + + Silliman, Ron, 1977-1994, undated + + 19 + + + + + Simon, Joan, 1973-1979, undated + + 19 + + + + + Sindolic, Vojo, 1984-1985, 2003 + + 19 + + + + + Skelt, Peterjon, 1988-1997 + + 19 + + + + + Skerl, Jennie, 1984 + + 19 + + + + + Slaba, Paula, 1990-1993, undated + + 19 + + + + + Sloman, Joel, 1969 + + 19 + + + + + Slovak, Paul (Penguin Group), 1999-2004, undated + + 19 + + + + + Smedman, Lorna + + + + Correspondence, 1980-1994, 1999-2001, undated + + 19 + + + + + Manuscripts, undated + + 19 + + + + + Printed material (comics), 1979, undated + + 19 + + + + + + Smith Alex (University of Connecticut), 1980 + + 19 + + + + + Smith, Pat, 1986-1993 + + 19 + + + + + Smith, Patti, 1970, 2004, undated + + 19 + + + + + Smith, William Tyler, 1995-1997 + + 19 + + + + + Snyder, Gary + + + + Correspondence, 1975-1994, 2000, undated + + 19 + + + + + Printed material, 1985, undated + + 19 + + + + + + Sonbert, Warren, 1971-1990, undated + + 19 + + + + + Sonders, Miriam, 1973 + + 19 + + + + + Spahr, Julianna, 1998-2001 + + 19 + + + + + Sparks, E.H. (American Biographical Institute), 1970 + + 19 + + + + + Spaulding, Ida, 1977 + + 19 + + + + + Spellman, Robert, 1994, 2000 + + 19 + + + + + Spiegel, Ricky, 1978 + + 19 + + + + + Spragens, Alan, 1976 + + 19 + + + + + Stainton, Albert and Rita, 1971-1972 + + 19 + + + + + Stanford, David (Viking Penguin), 1993-2000 + + 19 + + + + + Stangos, Nikos, 1970 + + 19 + + + + + Stanton, Suzanne, 1964-1976 + + 19 + + + + + Stavrou, Theofanis (University of Minnesota), 1984 + + 19 + + + + + Steinberg, Jeffrey (Stonehill Publishing), 1973-1978 + + 19 + + + + + Stephens, Michael, 1971-1974 + + 19 + + + + + Stephens, Ron, 1972-1973, undated + + 19 + + + + + Sterling, Frank, undated + + 19 + + + + + Stoianoff, Ellen ( + Mademoiselle), 1969 + + 19 + + + + + Stolp, 1971 + + 19 + + + + + Stolz, Gary, 1974 + + 19 + + + + + Stone, Arlene, 1976 + + 19 + + + + + Stover, Virginia, 1979-1986 + + 19 + + + + + Strauss, David Levi, 1986-1989 + + 19 + + + + + Streit, Bernhard, 1980 + + 19 + + + + + Stroffolino, Chris, 1986, 1991 + + 19 + + + + + Swenson, Cole, 1999-2005 + + 19 + + + + + Swenson, May, undated + + 19 + + + + + Sundstrom, John, undated + + 19 + + + + + Sukewich, Ron, 1974 + + 19 + + + + + Surman, Diana (University of Durham), 1979 + + 19 + + + + + Sykes, Michael, 1990 + + 19 + + + + + Sylvester, Jocelyn, undated + + 19 + + + + + Talese, Gay (Random House), 1970 + + 19 + + + + + Tallman, Warren, 1979-1986 + + 19 + + + + + Tanner, Wesley, 1976, 2002, undated + + 19 + + + + + Tarn, Nathaniel + + + + Correspondence, 1973-1994, undated + + 19 + + + + + Printed material, 1984, undated + + 19 + + + + + + Tate, James, 1972 + + 19 + + + + + Taylor, Simon, undated + + 19 + + + + + Taylor, Steven, 1989-2009 + + 19 + + + + + Teague, Kathleen, 1972, undated + + 19 + + + + + Terrell, Caroll (National Poetry Foundation), 1985-1986 + + 19 + + + + + Theser, Sharon, undated + + 19 + + + + + Thiel, Nichole, 1970, undated + + 19 + + + + + Thomas, Lorenzo, 1973-1994, 2001-2003, undated + + 20 + + + + + Thompson, Bill, 1973-1977 + + 20 + + + + + Thrasher, Shelley, 1986 + + 20 + + + + + Torgoff, Martin, 1992, undated + + 20 + + + + + Tonkinson, Carole, 1995 + + 20 + + + + + Toonkel, Jane (Bantam Books), 1971 + + 20 + + + + + Torregian, Sotere, 1973-2009, undated + + 20 + + + + + Towle, Tony, 1970-1971, 1986 + + 20 + + + + + Trungpa, Chogyam, 1974-1978 + + 20 + + + + + Turner, Peter (Shambhala Publications), 1980-1994 + + 20 + + + + + Tuschen (John?), 1983 + + 20 + + + + + Tysh, Chris and George, 1979-2002 + + 20 + + + + + Van Der Horst, Marian, undated + + 20 + + + + + Vas Dias, Robert, 1973 + + 20 + + + + + Veitch, Tom + + + + Correspondence (2 folders), 1972-1979, undated + + 20 + + + + + Manuscript, "Cooked Zeroes," 1969 + + 20 + + + + + + Velie, Alan, undated + + 20 + + + + + Verastegui, Enrique, 1978 + + 20 + + + + + Verdiglione, Armando, 1980 + + 20 + + + + + Vermont, Charlie, 1973 + + 20 + + + + + Veseley, Rainer, 1993, 2001 + + 20 + + + + + Violi, Paul, 1982, 1986 + + 20 + + + + + Vogelsang, Arthur ( + American Poetry Review), 1974 + + 20 + + + + + Voight, Ellen, 1980 + + 20 + + + + + Von Handorf, Dorothy, undated + + 20 + + + + + Wachtel, Andi, 1971 + + 20 + + + + + Wade, Amanda, 1970 + + 20 + + + + + Wagner, Michael, 1979, undated + + 20 + + + + + Wakoski, Diane, 1976-1993, 2001 + + 20 + + + + + Waller, Nancy, 1987-1993 + + 20 + + + + + Walters, Martin, 1974 + + 20 + + + + + Warlow, Francis, undated + + 20 + + + + + Warsh, Lewis + + + + Correspondence + + + + Anne Waldman (11 folders), 1965-2002, undated + + 20 + + + + + Others, 1966-1974 + + 20 + + + + + + Manuscripts, 1973-1993, undated + + 21 + + + + + Angel Hair material, 1969 + + 21 + + + + + + Warshall, Peter, undated + + 21 + + + + + Washington, Jerome, 1989-1991 + + 21 + + + + + Watson, Frank, 1971 + + 21 + + + + + Webb, Marilyn, undated + + 21 + + + + + Wehrli, Peter, 1979 + + 21 + + + + + Weiland, Andreas, 1985 + + 21 + + + + + Weiser, Karen, 2005 + + 21 + + + + + Welliver, Neil, 1982 + + 21 + + + + + Wetzsteon, Ross ( + The Village Voice), 1972 + + 21 + + + + + Whalen, Phillip + + + + Correspondence, 1969-1991, undated + + 21 + + + + + Manuscripts, 1975, 1980 + + 21 + + + + + Printed material, 1977, undated + + 21 + + + + + Interview by Anne Waldman, 1971 + + 21 + + + + + + Wiater, Michael, 1976 + + 21 + + + + + Widder, Bernhard, 1993-1994, 1998, undated + + 21 + + + + + Wieners, John, 1968-1970 + + 21 + + + + + Wilentz, Ted, 1979-1999 + + 21 + + + + + Wiley, Joel, undated + + 21 + + + + + Wilk, David (National Endowment for the Arts), 1979 + + 21 + + + + + Wilkie, Britt + + + + Correspondence, 1970-1974, undated + + 21 + + + + + Manuscripts, 1976, undated + + 21 + + + + + Printed, 1978, undated + + 21 + + + + + Artwork, undated + + 21 + + + + + + Williams, Galen (The Poetry Center), undated + + 21 + + + + + Willis, Elizabeth (2 folders), 1999-2006 + + 21 + + + + + Wilson, Ann, 1975, undated + + 21 + + + + + Wilson, Bob, 1977-1991, 2007 + + 21 + + + + + Winard, Barbara, 1992 + + 21 + + + + + Winkfield, Trevor, 1971-1974 + + 21 + + + + + Witkowski, Annie, 1980 + + 21 + + + + + Wohlforth, Robert (Farrar, Strauss, and Giroux, Inc), 1965 + + 21 + + + + + Wojnarowicz, David, 1976 + + 21 + + + + + Wolfe, Doug, 1983-1987 + + 21 + + + + + Wolfe, Michael, 1981 + + 21 + + + + + Wright, Giles, 1979 + + 21 + + + + + Wright, John, 1992 + + 21 + + + + + Wright, Rebecca, 1970-1977 + + 21 + + + + + Wurger, Bernard, 1969 + + 21 + + + + + Yaguchi, Yorifumi, 1976 + + 21 + + + + + Yates, Katie + + + + Correspondence, 1989-1997, undated + + 21 + + + + + Manuscripts, 1991-1994, undated + + 21 + + + + + + Yoch, James (University of Oklahoma), 1972 + + 21 + + + + + Youdon, Tsering, 1991-2002, undated + + 21 + + + + + Zarro, Richard, 1970 + + 21 + + + + + Zavatsky, Bill, 1982 + + 21 + + + + + Zessi, Elaine, 1983 + + 21 + + + + + Zweig, Ellen, 1977, undated + + 21 + + +
    + + + Miscellaneous Correspondence + + + + A-B (12 folders), 1960s-2000s, undated + + 21 + + + + + C-H (35 folders), 1960s-2000s, undated + + 22 + + + + + I-R (50 folders), 1960s-2000s, undated + + 23 + + + + + S-Z (30 folders), 1960s-1990s + + 24 + + + + + 2000-2002 + 24 + + + + + 2003-2009 + 24 + + + + + + Unidentified and Fragments + + + + Unidentified correspondence (26 folders), 1962-2000s, undated + + 25 + + + + + Unidentified manuscripts, undated + + 25 + + + + + + Anne Waldman outgoing correspondence + + + + Various correspondents, 1964-2009, undated + + 25 + + + + + + Email + + + + Incoming 1997-1998 + + + + + September 1997- May 1998, (Disk 1) + 26 + + + + + April 1998-July 1998, (Disk 2) + 26 + + + + + September 1997-December 1997, (Disk 1) + 26 + + + + + June 1998, (Disk 2) + 26 + + + + + March 1998-April 1998, (Disk 1) + 26 + + + + + April 1998-June 1998, (Disk 2) + 26 + + + + + December 1997-March 1998, (Disk 1) + 26 + + + + + June 1998-July 1998, (Disk 2) + 26 + + + + + + Outgoing ca. 1997-1998 + + + + + October 1997 - April 1998, (Disk 3) + 26 + + + + + November 1997 - January 1998, (Disk 3) + 26 + + + + + ca. April 1998, (Disk 4) + 26 + + + + + 1999, (Disk 4) + 26 + + + + + 1999 + 26 + + + + + + + Correspondence-Restricted + + + + Various restricted correspondence, scattered dates + + 27 [closed] + + +

    [RESTRICTED]

    +
    +
    +
    +
    + + + Writing + + +

    The Writing series (11 linear feet) is the second-largest series in the collection. It consists of Anne Waldman manuscripts and other material, such as correspondence, administrative files, and ephemera, related to her writing. This series is divided into five subseries: Early Work; Fiction; Essays, Speeches, and Interviews; Poetry; and Contributions to Other Works.

    +

    + + + + Early Work, 1964-1967 + + + + + College Impressions: Three Short Stories 1962 + + 28 + + + + + Bennington pieces, 1966 + + 28 + + + + + Critiqued poems (critical notes possibly by Howard Nemerov) (2 folders), undated + + 28 + + + + + Early poems, ca. 1966 + + 28 + + + + + Old poems, first drafts, copies, etc., undated + + 28 + + + + + Loose poems, 1966 + + 28 + + + + + Collaborations with Lewis Warsh, 1966, undated + + 28 + + + + + Stratford and Main Street Kingship, ca. 1963 + + 28 + + + + + 1965, 1966-1967 (2 folders), + 28 + + + + + Piece based on + King Lear, undated + + 28 + + + + + Early Poems, 1964-1967 + + 28 + + + + + Poems. 1965-1966. Bennington. New York City, 1965-1966 + + 28 + + + + + Poems. 1965-1966-1967, + 28 + + + + + Dream and other poems, undated + + 28 + + + + + Poems for others in Anne's circle, undated + + 28 + + + + + Wonder and other poems, undated + + 28 + + + + + The Girl You Left Behind in Millville. Poem on sketchpad. "Original for Lewis", circa 1967 + + 28 + + + + + + Fiction (drama and short stories) + + + + Short Stories + + + + Sundays are Sundays, undated + + 28 + + + + + Way a Deer Might: A Story, 1975 + + 28 + + + + + Girls, undated + + 28 + + + + + + Drama + + + + Let's Get This Show on the Road! or the Collective Amnesia, for Kenward Elmslie, 1969 + + 28 + + + + + Objects of Desire: A Play or In It Erotic, undated + + 28 + + + + + Plasma in the Casbah, undated + + 28 + + + + + Salome, undated + + 28 + + + + + The Signs, undated + + 28 + + + + + The Stoop, undated + + 28 + + + + + Untitled piece, undated + + 28 + + + + + + + Essays, Speeches and Interviews + + + + Essays + + + + "Access to Poetry" + 28 + + + + + "Anne Waldman: Friday Night" and "from 'Words are energy' Notes" + 28 + + + + + "A Brief Memoir: The Kerouac School of Disembodied Poetics at Naropa Institute" + 28 + + + + + "Buddhist Poetry," undated + + 28 + + + + + "The description of the 6 Realms of Existence is continually useful," undated + + 28 + + + + + "'Fast Speaking Woman' & the Dakini Principle," undated + + 28 + + + + + "Deviant Identities": first draft, 1995 + + 28 + + + + + "Gender and the Wisdom Boy: Secular/Sexual Musings," piece for Shambhala book + Beneath a Single Moon, 1991 + + 28 + + + + + "Hags, Nuns and Magpie Scholars"(includes "Sleep Shade" poems), undated + + 28 + + + + + "'I Is Another': Dissipative Structures": 2 drafts and poem "Eyes In All Heads to be Looked Out Of," undated + + 28 + + + + + "I traveled to India in April," undated + + 28 + + + + + "Kali Yuga Poetics": various drafts plus additional materials, undated + + 28 + + + + + "Making It New: Poetry Magic," undated + + 28 + + + + + "Mandala of Poetics," undated + + 28 + + + + + "Mina Loy: leave me my final illiteracy 'of memory's languor,'" undated + + 28 + + + + + "Mind Is Shapely Art Is Shapely": various drafts, undated + + 28 + + + + + "Moving Right Along," undated + + 28 + + + + + "Naming the Kavyayantra Press": first draft, 1994 + + 28 + + + + + "Never reject anything," undated + + 28 + + + + + Pat Steir article for Bomb magazine, Spring 2003 + + 28 + + + + + "The Performance Poem," undated + + 28 + + + + + "Poetry As Siddhi," undated + + 28 + + + + + "The Poetry Project & Me," undated + + 28 + + + + + "Poetry Energy Circus," undated + + 28 + + + + + "Primo Festival Internationale dei Poeti Castel Porziano": transcription of journal entries and newspaper articles, ca. 1979 + + 28 + + + + + "Professorial Poetics," ? ca. 1993 + + 28 + + + + + "Rocky Flats: Warring God Charnel Ground," for + Tricycle magazine, 1992 + + 28 + + + + + "The Sleepers," undated + + 28 + + + + + "Some Notes on various publications & books," undated + + 28 + + + + + "Some Thoughts on Publishing," ca. 1985 + + 28 + + + + + "Spirit in Poetry," undated + + 28 + + + + + "Towards A Definition," undated + + 28 + + + + + Untitled (or title unknown) + + + + Account of first LSD trip, ca. 1965 + + 28 + + + + + Description of travels in Japan, 1973 + + 28 + + + + + On Balanchine: possibly by or with Reed Bye, ? ca. 1983 + + 28 + + + + + Annotated list of periodicals read, undated + + 28 + + + + + Piece for + Teachers and Writers magazine, undated + + 28 + + + + + On Gary Snyder, undated + + 28 + + + + + On poetic lineage, undated + + 28 + + + + + Unknown + 28 + + + + + + Reviews, Blurbs, Forewords + + + + " + What Happened to Kerouac: A Remarkably Clean Taste," with Reed Bye: film review, 1986 + + 28 + + + + + Blurb for + Obscenities: Poems by Sam Abrams, undated + + 28 + + + + + Foreword, + Women of the Beat Generation: page proofs and press packet, 1996 + + 28 + + + + + "Intro for New Edition of + Scriptum," City Lights; plus piece "Jack Kerouac Dream," 1994 + + 28 + + + + + Review of + Talking Pictures by Rudy Burckhardt, undated + + 28 + + + + + Introduction, + Kentucky Ham by William Burroughs, Jr., 1984 + + 28 + + + + + Review of + How I Read Gertrude Stein by Lew Welch, undated + + 28 + + + + + + + Speeches + + + + "Who was here 16 years ago?": introduction of Allen Ginsberg and Peter Orlovsky at Columbia University, 1975 + + 28 + + + + + Introduction for MoMA Second Thursday Poetry Reading, ca. 1970s + + 28 + + + + + "Program for Gertrude Stein Reading at New College," 1982 + + 28 + + + + + "Anne Waldman: Saturday Afternoon: The Poetries of Tibet," Green Gulch, 1987 + + 28 + + + + + "'Rendering the Future': from Opening Comments, Symposium, The Poetry Project, St. Mark's Church In-the-Bowery," 1988 + + 28 + + + + + Introduction for Salman Rushdie at the University of Colorado, 1992 + + 28 + + + + + "Notes from an Introduction Creeley/Ginsberg Feb 1994" 1994 + + 29 + + + + + "Introduction for Town Hall NYC Reading," 1994 + + 29 + + + + + Acceptance speech for honors at National Poetry Association, San Francisco, 1994 + + 29 + + + + + "AW reading on radio KGNU Boulder": excerpt from Salman Rushdie's + The Satanic Verses, undated + + 29 + + + + + Key note address for the Association of Writers and Writing Programs Conference : "Small Press Heaven: Poetics from the Floating World." 2010 + + 29 + + + + + "Intriguing Objects Exercise/Show & Tell (for a group)": class exercise, undated + + 29 + + + + + Notes on Victor H. Cruz, undated + + 29 + + + + + "Introduction of old mentor Howard Nemerov," undated + + 29 + + + + + Introduction for Naropa 20th anniversary reunion, undated + + 29 + + + + + Re Objectivists conference at Naropa: pp. 3-5 of a larger, unknown work, undated + + 29 + + + + + Address on poetics: handwritten draft, undated + + 29 + + + + + Notes for a talk about collaboration with George Schneeman. The Poetry Project, May 9, 2007 + + 29 + + + + + + Interviews + + + + Of Anne Waldman + + + + Naropa interviews and talks, transcribed by Bonnie Shulman [and others?], with notes by Frances Waldman, ca. 1976-1977 + + 29 + + + + + "Interviews/Waldman": several interviews conducted by Dick Gallup, Marilyn Webb for + Rolling Stone, and two unidentified, one possibly by Naropa students, and 1977, undated + + 29 + + + + + "Dreamer... Outrider... Poet," Beat Scene, undated + + 29 + + + + + Conversation between Anne Waldman and Larry Fagin, ca. 1979 + + 29 + + + + + "Interview with Anne Waldman," conducted by Vicki Hudspith, ca. 1980 + + 29 + + + + + Anne Waldman interview conducted by Virginia Stover at Naropa, 1980 + + 29 + + + + + Interview with Anne Waldman conducted by Nancy Bunge, ca. 1983 + + 29 + + + + + "H.D.: Objectivism, Imagism, and Feminism," Diane di Prima, Jane Augustine, and Anne Waldman, 1987 + + 29 + + + + + "Scribing Anne Waldman, 'Portrait of a Hag,'" conducted by Kris Ellis, 1991 + + 29 + + + + + "Interview RE 'Nun's poems'," conducted by Jim McCrary, 1991 + + 29 + + + + + "Illuminati in the Void: Anne Waldman Interview," conducted by Jim Cohn, 1994 + + 29 + + + + + "Interview with Anne Waldman 7th March '94. A living and Breathing Organism," conducted by Judy Kravis for + Teaching Literature, 1994 + + 29 + + + + + "Anne Waldman Transcript": re first LSD experience, [conducted by?] Charles E. Hayes, ca. 1998 + + 29 + + + + + "Yab-Yum and a 1.000 Dollars: Dialogue with Anne Waldman," conducted by Christian Ide Hintze, updated 1990, 1998 + + 29 + + + + + "Radical Presence: An Interview with Poet and Activist Anne Waldman," by Sonya Lee Ralph for + Tricycle Magazine, 2001-2002 + + 29 + + + + + Untitled, interview by Richard Eskow for + Tricycle magazine, draft, undated + + 29 + + + + + "Questions for Bobbie Louise Hawkins from A.W. August 14/97," 1997 + + 29 + + + + + "Interview with Anne Waldman," conducted by Sharon Brooks, undated + + 29 + + + + + Conducted by M. Hillringhouse, undated + + 29 + + + + + "Vow to Poetry: Interview," conducted by Randy Roark, undated + + 29 + + + + + Fragments, undated + + 29 + + + + + Miscellaneous, 1980-2000, undated + + 29 + + + + + + With Others + + + + "Anne Waldman and Jim Cohn Interview Ted Berrigan: To Propitiate the Gods," undated + + 29 + + + + + "Notes for Aaron Fischer/February 27/97": re Ted Berrigan, 1997 + + 29 + + + + + "An Interview with Edwin Denby," 1981, 1997 + + 29 + + + + + "Talking with Red Grooms," 1984 + + 29 + + +

    (parts used in + Iovis )

    + + + + + "Interview with Dr. William Ed. Williams," conducted by Mark Hillringhouse, 1981 + + 29 + + + + + Interview with Ernesto Cadenal, 2001 + + 29 + + + + + + + Biographical Sketches + + +

    (most by Anne Waldman, unless otherwise noted; some appear to have been contributed by the authors themselves)

    +
    + + + "Joel Oppenheimer, 1930-1988" + 29 + + + + + "Mylo Quam: A Biography," by Mylo Quam, 1977 + + 29 + + + + + Tom Veitch and Michael Brownstein, undated + + 29 + + + + + Assorted + 29 + + +
    + + + Notes: literary and work-related, undated + + 29 + + + + + Bibliography draft (includes correspondence) 1985 + + 29 + + + + + + Poetry + + + + Published Work + + + + Alphabetical File + + + + Alphabetic Tesserae [sic], 1994 + + 29 + + + + + A's Book, undated + + 29 + + + + + Au Lit/Holy, with Eleni Sikelianos and Laird Hunt (2 folders), 1998 + + + + + Notes, drafts, and proofs + 29 + + + + + Mockups, includes correspondence with Brad O'Sullivan, 1997 + + 29 + + + + + + Baby Breakdown + + + + 1967-1970 + 29 + + + + + Rejects from + Baby Breakdown, 1968 + + 29 + + + + + Correspondence with Bobbs-Merrill, 1970 + + 29 + + + + + + Blue Mosque + + + + "Blue Mosque" piece, four versions + 29 + + + + + Typed manuscript, plus cover art + 29 + + + + + Copy of corrected page proofs, plus additional typed MSS + 29 + + + + + Corrected proofs, plus front matter, some additions, cover art possibilities, notes + 29 + + + + + "New Proofs," plus front matter, correspondence + 29 + + + + + "Collages for Blue Mosque, the poem" + 29 + + + + + + The Bone Telephone and + The Bone Telephone Returns, (labeled "Life Notes collaboration work Tom Clark") undated + + 30 + + + + + Fait Accompli/ + Femifesto, alphabetic, includes cover art, 1992 + + 30 + + + + + Fast Speaking Woman + + + + Italian translation, ca. 1978 + + 30 + + + + + Drafts + 30 + + + + + "Old Possibilities for expanded + Fast Speaking Woman" + 30 + + + + + Fast Speaking Woman and + White Eyes: early selections from, 1973-1975 + + 30 + + + + + + First Baby Poems (2 folders) + 30 + + + + + Four Travels, with Reed Bye, 1979 + + 30 + + + + + Get Serious, undated + + 30 + + + + + Giant Night, undated + + 30 + + + + + Hag of Beare: drafts, notes, research material, and correspondence, 1989, undated + + 30 + + + + + Helping the Dreamer: Early table of contents, undated + + 30 + + + + + Her Story, undated + + 30 + + + + + Hotel Room, with drawings by Steve Brooks, 1975-1978 + + 30 + + + + + Interstices of (Female) Imagination (includes original collage for cover), 1993 + + 30 + + + + + Invention, with Susan Hall, undated + + 30 + + + + + Journals and Dreams, undated + + 30 + + + + + Kin, with Susan Rothenberg, 1996 + + 30 + + + + + Life Notes, undated + + + + + Draft + 30 + + + + + "Pages for Life Notes?" + 30 + + + + + + Light & Shadow: 2 theme binders, one entitled "Light & Shadow," the other "Anne Waldman--Poems," undated + + 30 + + + + + Lokapala: first draft (includes calligraphy by Andrew Schelling intended for cover), 1978 + + 30 + + + + + Loom Down Through the Narrow (originally for a + 1978 Gertrude Stein course at Naropa) + 30 + + + + + Makeup on Empty Space + + + + Review in Toothpaste Press Catalog, undated + + 30 + + + + + Table of Contents and Photocopies + 30 + + + + + + Millenium Sutras [sic]; labeled "Autonomedia/Millenium Sutras", undated + + 30 + + + + + Montreal, 1975 + + 30 + + + + + No Hassles + + + + Edited Typescripts + 30 + + + + + "Drafts: No Hassles & others" + 30 + + + + + Illustrations and poems + 30 + + + + + + Not a Male Pseudonym, with drawings by Julia Connor (2 folders), 1974, 1980, 1989-1990 + + 30 + + + + + Notes on Sitting Beside a Noble Corpse + 30 + + + + + On the Wing, with others, 1968 + + 30 + + + + + Polar Ode, with Eileen Myles, 1972 + + 30 + + + + + Polemical Poems, with Jack Collom, Anselm Hollo, 1997 + + 30 + + + + + The Quenching of the Lamp: Versions from the Therigatha and Theragatha, with Andrew Schelling (may include material from + Songs of the Sons and Daughters of Buddha, another volume of selected translations from the + Therigatha and the + Theragatha ) + 30 + + + + + Self-Portrait, with Joe Brainard, 1971 + + 30 + + + + + Shaman (includes correspondence with Jürgen Schmidt, 1989) + 30 + + + + + Skin Meat Bones + + + + Poems, alphabetical order, A-R + 30 + + + + + Poems, alphabetical order, S-Z + 30 + + + + + Nichole Thiel score and other material: correspondence, publicity, copies of cover art, reviews, notes, ca. 1985-1986 + + 30 + + + + + + Sleep Shade: draft, undated + + 30 + + + + + Snoring in New York: sonnet sequence + 30 + + + + + Songs of the Sons and Daughters of Buddha, with Andrew Schelling (some folders comprised of loose poems found throughout the collection; also includes material from + The Quenching of the Lamp and + Monks and Nuns, which are other volumes of selected translations from the + Theragatha and the + Therigatha ) + + + + Clean draft + 31 + + + + + Annotated draft + 31 + + + + + Monks and Nuns short version + 31 + + + + + Miscellaneous drafts + 31 + + + + + + Speak Gently in Her Bardo, with Susan Noel + 31 + + + + + Sphinxeries: "Originals of Sphinxeries" + 31 + + + + + Suffer the Mysterium, 1993 + + 31 + + + + + Sun the Blond Out + 31 + + + + + Tell Me About It: Poems for Painters, 1989 + + 31 + + + + + 31 Leaves for Autumn, undated + + 31 + + + + + Troubairitz + + + + Correspondence regarding translation 1998-2002 + + 31 + + + + + "Xerox of working draft of + Troubairitz & original notebook…" (original at the New York Public Library) + 31 + + + + + "A's Look Early Draft of + Troubairitz " [also called "A's Book"], undated + + 31 + + + + + Troubariste, "draft one of many," 1992 + + 31 + + + + + "Troubariste (Troubairitz)," 1992, undated + + 31 + + + + + Notes on vocabulary, 2001 and undated + + 31 + + + + + + Up Thru the Years, 1970 + + 31 + + + + + Unidentified partial manuscript, and later, ca. 1985 + + 31 + + +

    (unpublished "selected"?)

    +
    +
    + + + West Indies Poems, 1971 + + 31 + + +
    + + + Collaborations (Anne Waldman with…) + + + + Ted Berrigan. + Memorial Day (2 folders), 1971 + + 31 + + + + + Joe Brainard interviews, undated + + 31 + + +

    (includes "DeWarr's Profile")

    +
    +
    + + + Franco Beltrametti, Reed Bye, Suse Hahn, Harry Hoogstraten. + Hanging Out in Amsterdam, 1978 + + 31 + + + + + Reed Bye + 31 + + +

    (originally Reed Bye's folders)

    +
    +
    + + + Jack Collom, Chris Collom, Phil Garrison, et al. various collaborations, 1972-1980 + + 31 + + + + + "Collaborations with Anne," undated + + 31 + + + + + Reed Bye, Douglas Dunn. + The Secret of the Waterfall + + + + Drafts, notes, publicity material (2 folders) + 31 + + + + + Program, printed material, clippings + 31 + + + + + "Originals": drafts + 31 + + + + + + Jayne Cortez and Cara Benson, 2009 + + 31 + + + + + Allen Ginsberg, Zen Mountain Monastery. + Wide Awake Writing, April 27-29, 1990 + + 31 + + + + + Bernadette Mayer, "The Basketball Article": ephemera and related, includes untitled piece re women's basketball + 31 + + + + + Althea Schelling. Desdemona. Erudite Fangs Editions, 2007 + + 31 + + + + + Andrew Schelling et al., + Sources of Poetry with Anne Waldman and Andrew Schelling, Zen Mountain Monastery, April 10-12, 1992 + + 31 + + + + + Vajra Regent Osel Tendzin, + Poems 1985, undated + + 31 + + + + + Ann Wilson. + Solo Pablo Rimbeau: "performance which included reading of 'Fast Speaking Woman'," undated + + 31 + + + + + Noah Saterstrom. + Soldatesque/Soldiering with Dreams of Wartime. Draft, undated + + 31 + + + + + Randy Roark. + One Night, 2001 + + 31 + + +

    Published in a limited edition of 500, 26 of which are lettered and signed. A and W editions included.

    +
    +
    + + + Steir, Pat. + Cry Stall Gaze. Drafts, undated + + 31 + + +
    + + + Translations + + + + Mahmoud Darwish + 31 + + + + + Mercedes Durand, "Nonsyntactical Jazz" + 31 + + + + + Nizar Qabanni, ca. 1988 + + 31 + + + + + + Iovis, Bk. I ( + Iovis: All Is Full of Jove) + + + + Notes, Drafts, and Research Material, ca. 1960s, 1978-1990 + + + + + Bennington College Notebook: Myth, Ritual, and Literature with Stanley Edgar Hyman + 32 + + + + + Questions for men for Iovis + 32 + + + + + Other (16 folders) + 32 + + + + + + Collated Drafts + + + + Early version, Cantos I-XIII (2 folders) + 32 + + + + + Iovis I-XIV, 1990 + + 32 + + + + + Iovis I-XIV, 1990-1991 + + 32 + + +

    (signed)

    +
    +
    + + + Iovis Omnia Plena, Early Draft, ca. 1990-1992 + + 32 + + + + + Iovis Omnia Plena: "Thread Through the maze," I-XXI, 1990-1993 + + + + + I-IX, pp. 1-114 + 32 + + + + + X-XXI, pp. 115-256 + 32 + + + + + + Faxed proofs, December 14, 1992 + + 33 + + + + + Loose numbered pages + 33 + + + + + Miscellaneous drafts and older work, undated + + 33 + + +
    +
    + + + Iovis, Bk. II ( + Iovis Book Two) + + + + Notes, Drafts, and Research Material + + + + Correspondence + + + + William Sterling re Latin translations, 1994-1995 + + 33 + + + + + Peter Lamborn Wilson (a.k.a. Hakim Bey): "blurb for Iovis?," undated + + 33 + + + + + Correspondence re + Iovis I and/or used in + Iovis II 1984-1997, undated + + 33 + + + + + + Note tablets, undated + + 33 + + + + + Nuclear power clippings and poem draft, 1989 + + 33 + + +

    (unclear whether for Bk. I or II)

    +
    +
    + + + So Help Me Sappho, typescript + 33 + + + + + Writings by Ambrose and others, undated + + 33 + + + + + Proofs and drafts, undated + + 33 + + + + + Includes sketch by Ambrose + 33 + + + + + Includes acrostic poem by Ambrose + 33 + + + + + Includes letter written by Anne Waldman's grandfather, John Waldman, Sr., and copy of "Evangelle," an account of a trip to Ken Kesey's farm + 33 + + + + + Other (12 folders), ca. 1976-1995 + + 33 + + +
    + + + Full Drafts and Proofs + + + + Early version (2 folders), undated + + 33 + + + + + Collated draft, undated + + + + + pp. 1-14 + 34 + + + + + Added-in pages + 34 + + + + + pp. 45-79 + 34 + + + + + pp. 80-146 + 34 + + + + + pp. 147-206 + 34 + + + + + pp. 207-239 plus additional materials + 34 + + + + + pp. 240-274 + 34 + + + + + + Table of Contents: loose page, version unknown + 34 + + + + + Spiral-bound draft, undated + + + + + I-X: pp. 1-111 + 34 + + + + + XI-XIX: pp. 112-215 + 34 + + + + + XX-XXVIII/Coda: pp. 126-295 + 34 + + + + + + Copy: Publisher's copy proofs, 1996 + + + + + I-V: publisher's correspondence, front matter, pp. 1-56 + 34 + + + + + VI-XIII: pp. 57-139 + 34 + + + + + XIV-XVIII: pp. 140-200 + 34 + + + + + XIX-Coda: pp. 201-266 + 34 + + + + + + Edited copy: edited at Coffee House Press, ca. 1996-1997 + + + + + Publisher's correspondence, front matter, pp. 1-96 + 34 + + + + + pp. 97-192 + 34 + + + + + pp. 193-288 + 34 + + + + + pp. 289-384 + 34 + + + + + + Proofs (4 folders), ca. 1996-1997 + + + + + I-V: publisher's correspondence, front matter, pp. 1-68 + 34 + + + + + VI-XII: pp. 69-163 + 34 + + + + + XIII-XVIII: pp. 164-242 + 34 + + + + + XIX-end: pp. 243-324, plus illustrations and miscellaneous additions and corrections + 34 + + + + +
    + + + Iovis, Bk. III: draft entitled "Exclusion 'Dark Arcana's' Imbroglio," parts of a journal kept in North Vietnam (2 folders), May 2000 + + 34 + + + + + Iovis, Bk. III drafts and notes (2 folders), undated + + 34 + + + + + The Iovis Trilogy: Colors in the Mechanism of Concealment, notes and drafts, 2011 + + 34 + + + + + Kill or Cure 1994 + + + + + Early Version + + + + Foreword: "A Note on This Book" + 35 + + + + + Table of Contents: includes most of the poems from this list + 35 + + + + + Contents: includes other poems, in table of contents order + 35 + + + + + Not in table of contents + 35 + + + + + + Draft: pp. 1-84 + 35 + + + + + Draft: pp. 1-206 + 35 + + + + + Drafts/Collected Poems + + + + A-K + 35 + + + + + L-P + 35 + + + + + R-W + 35 + + + + + Miscellaneous and fragments + 35 + + + + + + Oficina Legal de la Mujer: publication from Christian Santos in Nicaragua, referenced in "Managua Sketches" + 35 + + + + + "Credo" + 35 + + + + + Pieces used in + Kill or Cure + 35 + + + + + Miscellaneous loose poems + 35 + + + + + Essays: "Mandala of Poetics," "The Poetics of Tibet," "Poetry as Energy, Siddhi, Terma: Notes," "The Sleepers," 1987, undated + + 35 + + + + + Bound Proofs: inscribed by Anne, "Reading copy" + 35 + + + + + Bound Proofs, copy 2 + 35 + + + + + Cover + 35 + + + + + Galleys, April 1995 + + + + + pp. iii-48 + 35 + + + + + pp. 49-129 + 35 + + + + + pp. 133-200 + 35 + + + + + pp.201-269 + 35 + + + + + + Galleys, Manuscript and Layout Pages, April 1995 + + + + + pp. 1-47 + 35 + + + + + pp. 48-100 + 35 + + + + + pp. 101-166 + 35 + + + + + pp. 167-235 + 35 + + + + + Final Art + 35 + + + + + + Galleys: Rough Pages, March 1995 + + + + + pp. iii-48 + 35 + + + + + pp. 49-132 + 35 + + + + + pp. 133-200 + 35 + + + + + pp.201-266 + 35 + + + + + + Review lists, undated + + 35 + + + + + + Beat Roots. Drafts and correspondence. Illustrated by George Schneeman 2006 + + 35 + + + + + In the Room of Never Grieve: New and Selected Poems, 1985-2003 (2 folders) 2008 + + + + + Drafts + + + + January 23, 2002, (2 folders) + 35 + + + + + July 17, 2003, (4 folders) + 36 + + + + + July 29, 2003, (4 folders) + 36 + + + + + July 31, 2003, (4 folders) + 36 + + + + + Undated, (4 folders) + 36 + + + + + + + Manatee/Humanity, 2009 + + + + + Draft (2 folders), + August 2008 + 36 + + + + + Drafts (8 folders), undated + + 37 + + + +
    + + + Single Titles + + +

    ("fl" stands for "first line")

    +
    + + + A Basque + 37 + + + + + A Birthday Sonnet, for Dorothy Bye (by Anne Waldman and Reed Bye) + 37 + + + + + A Child's Garden of Verses + 37 + + + + + A Coney Island of the Mind [or "In highschool"], 1958 + + 37 + + + + + A Daughter's Lament in May [?] [possibly for early version of Kill or Cure] + 37 + + + + + A decision has been reached! [fl] + 37 + + + + + A Drum & a Guitar & in a Painting by Picasso + 37 + + + + + A Guston, homage to Philip Guston, master painter + 37 + + + + + A Heart, For Ambrose + 37 + + + + + A Letter, March 21, 1991 + + 37 + + + + + A man is humming a Spanish song: O the barrio I have not [fl] + 37 + + + + + A Moment's Tender Presence + 37 + + + + + A Name as Revery + 37 + + + + + A Slice at That + 37 + + + + + A stain of ignorance [fl--possibly forms part of larger work] + 37 + + + + + A Story About A Magician [and] A List for a Child + 37 + + + + + Abortion + 37 + + + + + Abrochese el Cinturon de Seguridad + 37 + + + + + "Accrostic," plus "Sun Set Moon Up," and by Lenika Miosol Vazaquez, "On a Plane Flight," August 6, 1987 + + 37 + + + + + Acrostic + 37 + + + + + Acoustical + 37 + + + + + "addiction" chant + 37 + + + + + Adventures in India + 37 + + + + + after Archilochos, for Anselm Hollo + 37 + + + + + After Campfire Ring Around the Moon September + 37 + + + + + After Praxilla + 37 + + + + + After Sappho + 37 + + + + + After the Greek [or "After the Greek Anthology"] + 37 + + + + + After the + Lament of the Flutes for Tammuz + 37 + + + + + After-Dinner Entertaining [exists also in a slightly different version as "Midnight Snacks"] + 37 + + + + + Agrippa + 37 + + + + + Ali + 37 + + + + + Alice Annual [or "Annual Alice"] + 37 + + + + + All Hands + 37 + + + + + All the Past Is Silence + 37 + + + + + After Hadewijc + 37 + + + + + All This Every Day [book review; book by Joanne Kyger] + 37 + + + + + Alphabet Cali + 37 + + + + + Alphabeto Sudamericano + 37 + + + + + Always guessed and later knew [fl; includes other poems, from folder labeled "drafts & discarded Poems 1976-1980] + 37 + + + + + Ambapali Speaks [from the + Therigatha or the + Theragatha ] + 37 + + + + + Amendment 2 + 37 + + + + + American Birds + 37 + + + + + American Manners [photocopy from published work] + 37 + + + + + American Mythology + 37 + + + + + American Renter + 37 + + + + + An Accent O Each Shape + 37 + + + + + Anarchy Reggae + 37 + + + + + Ancient Song Rising + 37 + + + + + Andrew's Birthday + 37 + + + + + Anne la Morn + 37 + + + + + Appetite + 37 + + + + + April Dream [note attached "from + Kill or Cure"] + 37 + + + + + Arioso + 37 + + + + + Around the House [partial?] + 37 + + + + + Artemis + 37 + + + + + Artist Room + 37 + + + + + As (Certain) Blue + 37 + + + + + Asleep In Your Arms + 37 + + + + + Aspetti un Momento! + 37 + + + + + At 47 Fall '72 Reflect Colombia NY Express [?] [Originally "Conquer"] + 37 + + + + + At midnight wanted to be with just one [fl] + 37 + + + + + Athens + 37 + + + + + Autodidact [or "Acrostic"] + 37 + + + + + Autumn Poem [or "Autumn Fall Poem," "Leaves"; for + Rocky Ledge ?] + 37 + + + + + Ayansem [or "Ansem"], for Jane Hollo + 37 + + + + + Azalea Blooming Today + 37 + + + + + Baby Breakdown, for Bill Berkson + 37 + + + + + Baby's Pantoum + 37 + + + + + Backyard Poems + 37 + + + + + Bali [includes various versions or related works?] + 37 + + + + + Ballade + 37 + + + + + Balzac + 37 + + + + + Barbara + 37 + + + + + Bardo Corridor [a version also appears as "Corridoror"] + 37 + + + + + Be Happy O Sad World + 37 + + + + + Be kind economists [fl] + 37 + + + + + Bean Sprouts for Phil Whalen [title?] + 37 + + + + + Bedroom Shadow + 37 + + + + + Beethoven's Birthday [plus poem "Steven"; also includes version entitled "On Beethoven's Birthday," from a folder labeled "c. 1976-1980"] + 37 + + + + + Bellini + 37 + + + + + Bench [or "Johnny Bench"] + 37 + + + + + Bernoulli Effect Song + 37 + + + + + Berthe Morisot + 37 + + + + + Big Atlantic Purse + 37 + + + + + Bird with the Herd [by Larry Fagin and Anne Waldman] + 37 + + + + + Bluehawk + 37 + + + + + Bobbie Louise + 37 + + + + + Bonnie rode Molly the palomino up here one [fl] + 37 + + + + + Books You All Should Read + 37 + + + + + Boots for A Black Hat Dancer + 37 + + + + + Born Again Blues + 37 + + + + + Both, Both + 37 + + + + + Brautigan + 37 + + + + + Breakfast + 37 + + + + + Breathe in the malady, the malaise, the warnings of the megalopolis citadels [fl] + 37 + + + + + Bremen + 37 + + + + + Bride + 37 + + + + + Brinks of Fame: Monologue + 37 + + + + + Buddha Family Qualities [with subtitle or alternate title "Ratna"] + 37 + + + + + Bye + 37 + + + + + Cabal [one version missing p. 2] + 37 + + + + + Cabin [one version missing pp. 1-2] + 37 + + + + + Cabin Dreams + 37 + + + + + Call to the Good Roof Dream + 37 + + + + + Can't Touch This [missing p. 4] + 37 + + + + + Cantilena + 37 + + + + + Canyon [early title "Drive up Canyon"] + 37 + + + + + Canyon Lessons Narration ["End of Romance" separate or part of poem?] + 37 + + + + + Canzone + 37 + + + + + Cats & Dogs + 37 + + + + + CBGB's, Mudd Club [fl] + 37 + + + + + Celestial Black & White + 37 + + + + + Cento [plus fragment?] + 37 + + + + + Chair (for The End of Time) + 37 + + + + + Chicago + 37 + + + + + Child Chant + 37 + + + + + Childish Ode to the Journalists of the Hackneyed Poetry World [final title?] + 37 + + + + + Child's Poem + 37 + + + + + Child's Story + 37 + + + + + Christmas Gists, for Reed + 37 + + + + + Circulin + 37 + + + + + Cittipatti Blues + 37 + + + + + City Suite [orig. called "NY Suite"] + 37 + + + + + Clark Late Birthday + 37 + + + + + Code: Intensification of Shade + 37 + + + + + Colors, for Michael Herrick + 37 + + + + + Complaint + 37 + + + + + Constellations + 37 + + + + + Contra Chant + 37 + + + + + Contraband [note attached " + Blue Mosque: some rejected in final cuts"] + 37 + + + + + Correspondence + 37 + + + + + Coup de Grace + 37 + + + + + Credo + 37 + + + + + Crime Work, for Charlotte Carter + 37 + + + + + Crystals form rapidly [fl], for Reed Bye [prev. titles "Going Down", "Malachite"?] 1976 + + 37 + + + + + curious [fl] + 37 + + + + + Curse [also called "Iran Contra Spell"] + 37 + + + + + Cutting/for Reed Bye + 37 + + + + + Cut up, Front Seat + 37 + + + + + D + 37 + + + + + Dance + 37 + + + + + Daughter's Lament in May + 37 + + + + + Dear Creeley [p. 14 doesn't seem to go with rest, but is all part of "Dear Creeley" section of + Iovis I ] + 37 + + + + + Dear Luncheon Meat [letter, possibly to Douglas Dunn?] + 37 + + + + + Dear Mr. Madigan [fl; correspondence piece] + 37 + + + + + Dear Sky Box [partial] + 37 + + + + + Definition of Water Meditation [or "Legend of Desire to Rule Water"] + 37 + + + + + Demilitarized Zone [with subtitle or alternate titles "War" and "(Redonda)"] + 37 + + + + + Democracy + 37 + + + + + Demon Chant + 37 + + + + + Denyse DuRoi's poems are complex weaves, meanderings [fl; review or blurb] + 37 + + + + + Desert Storm [or "Tormiento del Deserto"?] + 37 + + + + + Desideratum + 37 + + + + + Dialogue [or "Dialogue: Conversation at Nine Thousand Feet"; one copy missing p. 1] + 37 + + + + + Diamond + 37 + + + + + Diatribe: A Curse + 37 + + + + + Discourse Coloradan [copy 3 has p. 1 only] + 37 + + + + + Distinct Ardent + 37 + + + + + Dopey Brains Awake + 37 + + + + + Dossier + 37 + + + + + Dramatic House + 37 + + + + + [Dream poems and narratives] + + + + Dream [fl: Thickhead spring air"] + 37 + + + + + Dream [fl: "Last night I dream my bones are hollow"] + 37 + + + + + dream March 28.76 + 37 + + + + + Dream about being in two plays at Bennington… [fl; description of a dream] + 37 + + + + + April 19/20 + 37 + + + + + May 4 + 37 + + + + + Morning May 4 + 37 + + + + + dream/ smoke tobacco [first two lines] + 37 + + + + + + Drugs + 37 + + + + + Dual it ee [or "Duality"' plus other poems and notes] + 37 + + + + + Dying + 37 + + + + + Early June in Colorado + 37 + + + + + Echos + 37 + + + + + Edwin Denby on Gertrude Stein + 37 + + + + + E.E. UU + 37 + + + + + El Rito + 37 + + + + + Elegy, for Kate Berrigan Morrison (1965-1987) + 37 + + + + + Elysium + 37 + + + + + End of Spin + 37 + + + + + Epilogue [Anne Waldman's or other's?] + 37 + + + + + Epiphany + 37 + + + + + Epithalamium + 37 + + + + + especially if you sing it accurately, smiles [fl] + 37 + + + + + Esteem, for A.N. [Alice Notley] + 37 + + + + + Everything around is touched by her [fl; part of another poem?] + 37 + + + + + Eye Ball Movie + 37 + + + + + Eyes in All Heads to Be Looked out of [plus "Cut"] + 37 + + + + + Expiration after Donne + 37 + + + + + Extracts/Poems, Letters, Notes from a Journal [continues: "(South American) Colombia only July 6-August 6,/1972"; "published in + The World"] + 37 + + + + + Falling in Love on Red Oaks Lane [and cutups; related?] + 37 + + + + + Fast Speaking Woman + 37 + + + + + February Ether: Sky's No Limit + 37 + + + + + First Winter Days + 37 + + + + + 5 Ghost of Days for Charles North + 37 + + + + + 5 Lovers in 5 Acts [short play] + 37 + + + + + Five Poems for Ron Padgett + 37 + + + + + Flat recurrent rain [fl] + 37 + + + + + for Alice Notley + 37 + + + + + for Frances + 37 + + + + + for Harry Smith + 37 + + + + + For Immediate of previous [cutup appropriation] January 6, 1976 + + 37 + + + + + for Jimmy [includes notes, other poems?] + 37 + + + + + For Joan + 37 + + + + + For Reed + 37 + + + + + For Robert Creeley [or "for R.C."; p. 3 May not belong] + 37 + + + + + For Ruth [Ruth Sikelianos] + 37 + + + + + For Steven ["(Steven Lowe)"; in folder labeled "c. 1976-1980"] + 37 + + + + + for Ted Berrigan + 37 + + + + + Four Corners + 37 + + + + + Frances + 37 + + + + + Friday Night + 37 + + + + + From a Class Discussion, August 19, 1975 + + 37 + + + + + (from a continuing work) in Spanish [fragments of larger work?] + 37 + + + + + from + Iovis Omnia Plena + 37 + + + + + from A Palm Reading for ALW ? [notes from a palm reading] 1985 + + 37 + + + + + from dream to dream to dream [fl; part of larger work?; includes Spanish translations] + 37 + + + + + from Shaman, to Bob Dylan + 37 + + + + + From the Dream Journal + 37 + + + + + Fuck Up + 37 + + + + + Genetics + 37 + + + + + George Schneeman Peoples the Sky + 37 + + + + + Glasnost + 37 + + + + + Glenn Branca + 37 + + + + + Goddess of Wisdom Whose Substance Is Desire, for Joanne Kyger + 37 + + + + + Granny in the Apple + 37 + + + + + Gringo + 37 + + + + + Grotte [from + Iovis Omnia Plena] + 37 + + + + + Guest + 37 + + + + + Guise, for Lewis + 37 + + + + + Gut Convinced + 37 + + + + + Habanera ["for birthday of J.M.W."] + 37 + + + + + Hag of Beare (Caillech na Beara) ["Version by Anne Waldman & John Wright"] + 37 + + + + + Halloween + 37 + + + + + "Hannah's Ware" and "Alice's Street Near the Palace" in + The Germ, 1998 + + 37 + + + + + He + 37 + + + + + He sweeps in, little boxer [fl] + 37 + + + + + Hecate + 37 + + + + + Helping the Dreamer + 37 + + + + + Him + 37 + + + + + History + 37 + + + + + Holy Cows + 37 + + + + + Hopes & Fears [includes one version with attached note, "from + Skin Meat Bones"] + 37 + + + + + House of the Senses + 37 + + + + + Housework [p. 2 related or no?] + 37 + + + + + How Does the Dalmatian Get Its Spots? + 37 + + + + + How I Became (Biblical) [Alternate title "North America"? Also called, "How I Became Biblical"] + 37 + + + + + How the Sestina (Yawn) Works + 37 + + + + + "I am blinded by a fiery circle," for James Schuyler + 37 + + + + + I Bow at Bodhgaya + 37 + + + + + I had such a mother [fl] + 37 + + + + + I Stand Humble Before That Standing Within Me Which Speaks with Me [fl?] + 37 + + + + + I tell you again, "My heart is pinched" [fl; last word unclear; part of larger work? By Anne Waldman?] + 37 + + + + + I wanna go [fl] + 37 + + + + + I went. I enjoyed myself. I went again--SM [fl; fragment?] + 37 + + + + + I Wept unto a Car + 37 + + + + + Icy Rose [attached note, "Made into Broadside"] + 37 + + + + + "If there's one thing I'm sick of…" [quotations; fragment?] + 37 + + + + + I'll take romance [fl; fragment?] + 37 + + + + + I'm far away from home [fl] + 37 + + + + + I've got a girl shadow [fl] + 37 + + + + + In a Public Place + 37 + + + + + In Being Musical + 37 + + + + + In Dusseldorf, however [fl; part of larger work?] + 37 + + + + + In Paterson + 37 + + + + + In Ruins: A dream + 37 + + + + + In the snowy night [fl; this poem crossed out; also includes "Heart's Dentist," or part of it] + 37 + + + + + In This Or Any Other + 37 + + + + + In Toronto + 37 + + + + + Inamorata + 37 + + + + + Incident + 37 + + + + + India + 37 + + + + + Inside Dallas + 37 + + + + + Insides Like the Sea, for Peter Warshall + 37 + + + + + Interior Egg [with other poems attached] + 37 + + + + + Invitation To A Picture Hanging, for Jasper Johns [note attached, "Poems for Painters?"] + 37 + + + + + Invocation for Raising Windhorse + 37 + + + + + Iovis Omnia Plena [w/note, "draft of Kerouac Section Iovis I"] + 37 + + + + + is it happening [fl] + 37 + + + + + Is You + 37 + + + + + It Sounds It + 37 + + + + + Italian City Sonnet + 37 + + + + + Jabs, to Ted Berrigan + 37 + + + + + Jackie Curtis [with clipping] + 37 + + + + + Jane was exceedingly plain [fl; includes other limericks] + 37 + + + + + Journal Nicaragua + 37 + + + + + Jump + 37 + + + + + Jumpin' with My Friend Memory + 37 + + + + + Jurassic + 37 + + + + + Just to Swoon in Another Way + 37 + + + + + Kali Yuga Blues + 37 + + + + + Kill or Cure [one version missing p. 1] + 37 + + + + + Killin Floor Blues + 37 + + + + + Kind Of [plus another poem, "The Mirror"] + 37 + + + + + L + 37 + + + + + Lad of the Malign + 37 + + + + + Lady on a Rooster (looking at a picture of a Hindu goddess), for Angelica Clark + 37 + + + + + Last Night + 37 + + + + + Last Poem + 37 + + + + + Legend of Desire to Rule Water [plus "Request," "To Down a Phantom," and other material] + 37 + + + + + Legs + 37 + + + + + Lent + 37 + + + + + Lesson [includes poem "Election"] + 37 + + + + + Lethal Blue, for Amber + 37 + + + + + Letter to Miss Idona Hand [plus "What are you?"] + 37 + + + + + Libertad + 37 + + + + + Light & Shadow + 37 + + + + + light/ shadow/ shine [first lines] + 37 + + + + + Lines for Elio Schneeman + 37 + + + + + Lines to a Celebrated Friend [for Allen Ginsberg] + 37 + + + + + Lives of Great Men + 37 + + + + + Lokapala + 37 + + + + + Long As + 37 + + + + + lore + 37 + + + + + Los Caprichos [or "The Hermitage," "The Eske"] + 37 + + + + + Loud Concerts + 37 + + + + + Love Letter, for Steven Lowe + 37 + + + + + Love Poem + 37 + + + + + Love's Tombstone + 37 + + + + + Lullaby + 37 + + + + + Mclure + 37 + + + + + Magician, for Susan Hall + 37 + + + + + Mahadeviyakka Speaks [from the + Therigatha or the + Theragatha ?] + 37 + + + + + Mahayana Lament + 37 + + + + + Malachite [plus "Nootka Love Song" and Frank O'Hara quote] + 37 + + + + + Mammalian, undated + + 37 + + + + + Man Traveling [title deleted] + 37 + + + + + Managua Sketches [one version missing last page] + 37 + + + + + Manifesto + 37 + + + + + many/ advocations/ or/ alterations [first lines; fragment?] + 37 + + + + + Marianne Moore reading + 37 + + + + + Mark/ you there [first lines; "for Mark Sikelianos on Ruth's death"] + 37 + + + + + Mars + 37 + + + + + Martyrology + 37 + + + + + Matriarchly + 37 + + + + + Mauve Flowers of the Ubiquitous Wisteria ["from Cabin"] + 37 + + + + + Men & Women + 37 + + + + + Mesa + 37 + + + + + Mesmer + 37 + + + + + Miami (Democratic Convention) + 37 + + + + + Michael caught a little sunfish [fl; collaboration, possibly written w/Michael (Brownstein?)?] + 37 + + + + + Midnight Snacks [a version also appears as "After-Dinner Entertaining"] + 37 + + + + + Mirage + 37 + + + + + Model Folding In The Reign Of Tut Equals Voltri XIX, [for?] David Smith + 37 + + + + + Monochrome (Night) + 37 + + + + + Mother's Curse [missing p. 2-?] + 37 + + + + + Mountains! Mountains! [fl] + 37 + + + + + Mummy Case of Artemidorus with Painted Portrait + 37 + + + + + Muse + 37 + + + + + Mushroom + 37 + + + + + My Credo + 37 + + + + + My Own Eyes Did This Sonnet + 37 + + + + + Name, for John Waldman + 38 + + + + + Names & Places, from a Journal + 38 + + + + + Narcolepsy [with Ted Berrigan] + 38 + + + + + Nerves + 38 + + + + + Net Life [and "Panegyric"] + 38 + + + + + New Landlord + 38 + + + + + New Year Sing Air [or "The Don Season"?] + 38 + + + + + Night Wing + 38 + + + + + 9 Mechanical Poems, for Ron + 38 + + + + + Nine O'clock [includes "Diction" and "To Love"] + 38 + + + + + 19 objects laid out on the table can I remember them all? [fl; poem or journal entry?] + 38 + + + + + No Fun Lung + 38 + + + + + No man's eye has ever [fl] + 38 + + + + + No Nonsense + 38 + + + + + No Suffer + 38 + + + + + No way out of nicotine [fl; fragment?] + 38 + + + + + Nomad's Song + 38 + + + + + Not Done + 38 + + + + + Notes on Sitting Beside a Noble Corpse [Full title, "Notes on Sitting Beside a Noble Corpse--Light Breeze Stirring the Curtains, Blue--Faint Tremor of His Blue Shroud"] + 38 + + + + + notes watching Douglas Dunn dance, 1975 + + 38 + + + + + Notorious [note attached, "from Fast Speaking Woman"] + 38 + + + + + (November) Language Has Wings + 38 + + + + + Nutrient + 38 + + + + + O Husband! + 38 + + + + + O I See + 38 + + + + + O I See How, Now, for Chogyam Trungpa, Rinpoche + 38 + + + + + O Moon + 38 + + + + + Object Notes [by Anne Waldman?] + 38 + + + + + Ode to 437 East 12th + 38 + + + + + Ode to Last Night + 38 + + + + + Ode To My Skirts + 38 + + + + + Ode to Speech + 38 + + + + + Off + 38 + + + + + Old Dream Ritual + 38 + + + + + Old Homage Ritual, for Jerry + 38 + + + + + Om Tare Tutth Tare Sarva Artha Siddhi Siddhi Kuru Swaha [p. 2 related?] + 38 + + + + + On Being Painted, by Alex Katz + 38 + + + + + On Considering Certain Personal Attacks [eventually "Under My Breath"; attached note on one draft, "from + Kill or Cure"] + 38 + + + + + On East Hill, for Edwin Denby + 38 + + + + + On Memorial Day I forget everything, exquisite corpse collaboration with "Bernadette, Lewis, Jack, Reed, Anne, Steve Malmude, Carol, Allison" + 38 + + + + + On My Birthday + 38 + + + + + On what is her liveliness rooted? [fl; fragment? Last page related?] + 38 + + + + + One Night Stand ["Kenward Elmslie song"] + 38 + + + + + One Taste + 38 + + + + + Open Address to Senator Jesse Helms + 38 + + + + + Orchids & Mum + 38 + + + + + Ostensive [plus "Rondure"] + 38 + + + + + Our Past [attached note, "Blue Mosque"] + 38 + + + + + Ousted + 38 + + + + + Out There + 38 + + + + + Paean: May I Speak Thus? + 38 + + + + + Painted Ships on Which the Little Ships Ride, for Reed [attached note, "from + Makeup on Empty Space "] + 38 + + + + + Palinode (Walk) + 38 + + + + + Panegyric + 38 + + + + + Parable [by Anne Waldman or another?] + 38 + + + + + Paraphrase of Edwin Denby on the "New York School" + 38 + + + + + Past Life + 38 + + + + + Patacara Speaks [from the + Therigatha or the + Theragatha ] + 38 + + + + + paying for heat [fl; poem?] + 38 + + + + + Pearls of India + 38 + + + + + People Coming Up the Stairs + 38 + + + + + Performance + 38 + + + + + Peripatetic + 38 + + + + + Persephone + 38 + + + + + Petrarch + 38 + + + + + Philosophia Perennis + 38 + + + + + Phone Dictation + 38 + + + + + Photograph + 38 + + + + + Pictures of Poets + 38 + + + + + Picturesque + 38 + + + + + Pieces Of An Hour + 38 + + + + + Pink Lady + 38 + + + + + Pitch + 38 + + + + + Pith Alarum [partial] + 38 + + + + + Plane Work: Rattle Up A Deer [attached note, "Pub. in Journals & Dreams 'plane work' w/B.M."; with Bernadette Mayer] + 38 + + + + + Plutonium Chant + 38 + + + + + Poem + 38 + + + + + Poem Elegiac + 38 + + + + + Poem en Forme de la Bouche + 38 + + + + + Poem for Charles North + 38 + + + + + Poem for Jim Carroll + 38 + + + + + Poem for Ramsey Clark + 38 + + + + + Poem for the Streets of New York City + 38 + + + + + Poem from Bed + 38 + + + + + Poem to Michael Wagner [per attached note] + 38 + + + + + Poems & Notes & Letters from a Journal (South America), July 1972 + + 38 + + + + + Poems [from "Fast Speaking Woman" and "Some of the Things I See for You"] + 38 + + + + + Poets + 38 + + + + + Polemic + 38 + + + + + Postcard from Tairona Colombia, SA [original title or subtitle "Dear Bernadette"] + 38 + + + + + Practices of the Night [correct p. 3 or no?] + 38 + + + + + Pressure + 38 + + + + + priests part/devoted throng [first lines; fragment?] + 38 + + + + + Private Rooms + 38 + + + + + Protection Amulets [and "Amulets," from among loose notes on travels, originally from a journal?] + 38 + + + + + Puer ["later part of Iovis I"] + 38 + + + + + Putting Makeup on Empty Space + 38 + + + + + Pygmy Heaven + 38 + + + + + Questions for DD [Douglas Dunn] + 38 + + + + + Questions for Kenneth Koch + 38 + + + + + Quick Alchemy [review] + 38 + + + + + Ram, for Anselm + 38 + + + + + Recent Correspondence + 38 + + + + + Red Faces [by Gertrude Stein] + 38 + + + + + Red Hat Lama + 38 + + + + + Redonda + 38 + + + + + Reds (She Makes Sense Of Her Surroundings) + 38 + + + + + Reed Bye + 38 + + + + + replenish making twine if you like, for Andrew + 38 + + + + + Request (for 2 female voices), in homage John Giorno + 38 + + + + + Resisting Each Other + 38 + + + + + Resplendent Things + 38 + + + + + Revenge [handwritten draft, may contain additional material] + 38 + + + + + Rex Iudeorum + 38 + + + + + Robert Lowell, for Creeley + 38 + + + + + Rocky Flats: Relative Truth from the Warring God Realm: An Investigative Poetics, dedicated to Ed Sanders + 38 + + + + + Ronaural + 38 + + + + + Rondeau + 38 + + + + + Rooms + 38 + + + + + Rudeste + 38 + + + + + Rushing in the dark last night [fl; fragment?] + 38 + + + + + Russian Nelli + 38 + + + + + Sad Cypress + 38 + + + + + Saint + 38 + + + + + St. Mark's Place + 38 + + + + + Sandinista + 38 + + + + + Sat A.M. + 38 + + + + + Schiaparelli + 38 + + + + + Scientist + 38 + + + + + Seattle + 38 + + + + + Seldom Here + 38 + + + + + Self Other Both Neither + 38 + + + + + Sending & Receiving + 38 + + + + + Sestina + 38 + + + + + Sex and Intrigue (She Seduces A Terrorist & Has To Leave Town), for Kathy Acker [two of the drafts: p. 1 only] + 38 + + + + + Shapely Writing + 38 + + + + + She + 38 + + + + + She Chant + 38 + + + + + Shirt, for Gertrude + 38 + + + + + Silent Man, for Carl + 38 + + + + + Silver E + 38 + + + + + Similar Alike + 38 + + + + + Sine Qua Non Coccoon + 38 + + + + + Sister Death + 38 + + + + + Sisters + 38 + + + + + Skin Meat Bones + 38 + + + + + Slide Piana [or "Slide Piano"] + 38 + + + + + Sober Up [alternate title "Sobering"] + 38 + + + + + Some Notes + 38 + + + + + Some Things in the House that are Joe Brainard + 38 + + + + + Something for You + 38 + + + + + Some of the Things I See for You, for Michael + 38 + + + + + Sonnet + 38 + + + + + Sophisticated Poem + 38 + + + + + Sounds like doors to me [fl; fragment?] + 38 + + + + + South + 38 + + + + + Speech + 38 + + + + + Spending Money + 38 + + + + + Split + 38 + + + + + Squawk! [fl] + 38 + + + + + Step Any Talk Back a Step + 38 + + + + + Stileto [sic] + 38 + + + + + Strange Days Ahead [review of Michael Brownstein book, + Strange Days Ahead ] + 38 + + + + + Summer Plans [or "Streaks remembering Frances"] + 38 + + + + + Suppose a Game [early title, "The Agreement"] + 38 + + + + + "Susan" (and "Mary") + 38 + + + + + Suspicion + 38 + + + + + Swanity + 38 + + + + + Swiss Banker + 38 + + + + + Taking Gary Snyder to the Airport + 38 + + + + + Tall Town Stun, for Yvonne + 38 + + + + + T.C. + 38 + + + + + Teardrops + 38 + + + + + Teen Angel + 38 + + + + + Tell A Story About A Threshold Here + 38 + + + + + Telling You + 38 + + + + + Ten Books Are Sustaining + 38 + + + + + Thanksgiving November Fall on[?] Birthday + 38 + + + + + The brow sweeps the sky like a rainbow [fl] + 38 + + + + + "The Clean Air and the Open Window Invite Me to Write to You" + 38 + + + + + The Construction Site + 38 + + + + + The Day After Memorial Day + 38 + + + + + The dog that barked for 4 hours & the rooster that/ crowed for 2 [first lines] + 38 + + + + + The Don Season [also exists as earlier version "New Year Sing Air"?] + 38 + + + + + The Feel of Milk + 38 + + + + + The first of the undecoded messages was… [fl; fragment?] + 38 + + + + + The Flying Diary + 38 + + + + + The Good Roof [Root?] Protection + 38 + + + + + The HYENA speaks of Rotten bananas near [fl?] + 38 + + + + + The Land (old ballad) + 38 + + + + + The light green sea with white foam [fl; looks like a collaboration, collaborator unknown] + 38 + + + + + The Little Girl Who Liked Ice + 38 + + + + + The Lover Without Ostensible Motive [p. 2 related?] + 38 + + + + + The Interior of Our Aircraft (to acquaint you with) + 38 + + + + + The Midway [also includes "Inside Dallas"] + 38 + + + + + The Network + 38 + + + + + The Nun Abutsu [from the + Therigatha or the + Theragatha ?] + 38 + + + + + The Official Version + 38 + + + + + The Other + 38 + + + + + The POEM of Dad's Birthday [by Anne Waldman and Ambrose Bye] + 38 + + + + + The Problem, after Laura (Riding) Jackson + 38 + + + + + The Romance Thing + 38 + + + + + The Sofa Is Black + 38 + + + + + The span of life in these hills [or "hells"?] is also/ exact… [first lines; fragment?] + 38 + + + + + The Tundra & the Waves + 38 + + + + + The Vast [plus "The Domain dispersal" and "Another Breton Field in Brittany"; by Anne Waldman?] + 38 + + + + + The Wonderful Shapes of Elizabeth Murray + 38 + + + + + THC News + 38 + + + + + There's a man down the hall who's much [fl; fragment?] + 38 + + + + + Things to Do at Home (Woman) + 38 + + + + + Thinking About You + 38 + + + + + Thinking of Chloe + 38 + + + + + Thinking Right Inside the Thing + 38 + + + + + This dark day this day this poor sad human day [fl; might be called "Devil's Work: Plutonium"] + 38 + + + + + This November, for Ted + 38 + + + + + Though I have a dozen lovers [fl; fragment?] + 38 + + + + + Thoughts of the Dolphin, for my son Ambrose & in support of the efforts of Greenpeace on behalf of the dolphins + 38 + + + + + 3 Epiphanies + 38 + + + + + 3 Padgetts + 38 + + + + + "Three Stars" [fl; part of larger piece?] + 38 + + + + + Tigress [or "Excavation"?] + 38 + + + + + To a Roofer + 38 + + + + + To a Young Poet + 38 + + + + + To Down a Phantom + 38 + + + + + To Each a Willed By + 38 + + + + + To Greet a Letter-Carrier [by Anne Waldman?] + 38 + + + + + to John + 38 + + + + + To My Former Husband + 38 + + + + + to place these waters down for you [fl; fragment?] + 38 + + + + + To Steve Carey + 38 + + + + + To the Censorious Ones + 38 + + + + + To the Russian Poet [and other works, attached: "I Wept Unto a Car"; "Circles"; "Tan"; "Saint"; "Troit," for Ann and Ken [Mikolowski?]; "Battery"; "Let's Get This Show on the Road! or The Collective Amnesia," for Kenward Elmslie; "Light & Shadow"] + 38 + + + + + To the Seventies + 38 + + + + + Toast + 38 + + + + + Today I write in the context of 4 white walls [first sentence of prose piece; May exist elsewhere under another title] + 38 + + + + + Too Bad Trains [or "Obsolete"?] + 38 + + + + + Toronto Untitled + 38 + + + + + Tough Instinctive + 38 + + + + + Toupee + 38 + + + + + Tract + 38 + + + + + Trait [orig. title "Traits"] + 38 + + + + + Traveler ["Homage to Basho the Traveler"] + 38 + + + + + trim or no : frost [fl; by Anne Waldman?] + 38 + + + + + Triolet + 38 + + + + + True [plus "Shut Up"] + 38 + + + + + True Stories from the Orient Express [comprised of "Contraband" and "The Bulgarian Conductor"] + 38 + + + + + True Story of Being at the Pool + 38 + + + + + Turkish Truckstop + 38 + + + + + Turning Into, for Molly + 38 + + + + + TV Marnie [or simply, "Marnie"] + 38 + + + + + 12 Hours + 38 + + + + + Two Men + 38 + + + + + 2 Nozzle Relics + 38 + + + + + Ubi Sunt + 38 + + + + + "Uh-Oh Plutonium!" and other poems, in Spanish translation + 38 + + + + + Uncharacteristic + 38 + + + + + Up to the very top I'm all forever green [fl] + 38 + + + + + valentine + 38 + + + + + Valentine Sonnets for Reed Bye [attached note, "Valentine Sonnets by Anne," "1978 ?"] + 38 + + + + + Valentines + 38 + + + + + Van Gogh's Room [attached note, "Countries"] + 38 + + + + + Various River + 38 + + + + + Vermeer cut-up with Ambrose's help + 38 + + + + + Village Blues + 38 + + + + + Villanelle + 38 + + + + + Virgil Variations, for Edmund Joseph Berrigan + 38 + + + + + Vision [alternate title, "Vision (Dope) & The Blood Body"] + 38 + + + + + Volcano + 38 + + + + + Wait [or "Waiting"] + 38 + + + + + Wake Up Poem + 38 + + + + + Walk Around Time [and/or "Pump & Painting"] + 38 + + + + + Wall + 38 + + + + + War [or "In Ruins"] + 38 + + + + + Warrior (song to myself) + 38 + + + + + Watervliet + 38 + + + + + Weather + 38 + + + + + Well Gone Dry + 38 + + + + + West Point + 38 + + + + + What Happened to Kerouac [review of + What Happened to Kerouac, by Reed Bye and Anne Waldman] + 38 + + + + + What the Rocks Say, after Desnos [attached note, " + Journals and Dreams (some rejects)"] + 38 + + + + + What's Around + 38 + + + + + What's Really Mine + 38 + + + + + While You Were Out More Concerning Love ["Collaboration w/Rene Ricard & A.W."] + 38 + + + + + White Eyes + 38 + + + + + White Rice + 38 + + + + + Who I was & what I wanted & what I did & what happened [fl; has another title?] + 38 + + + + + Wide Awake Workshop/ Snapshot Poetics + 38 + + + + + Wide Receiver + 38 + + + + + Widowed + 38 + + + + + Winding + 38 + + + + + Window On The World, [attached note, "1978--Draft of B-Day poem for T. Berrigan"] + 38 + + + + + Winter River + 38 + + + + + Within A Budding + 38 + + + + + Within With Within + 38 + + + + + Woman Girl, Lover, Wind in Foothills A Poet [title?; last page related?] + 38 + + + + + Wonder + 38 + + + + + Writing Writing Writing Writing Research Dreaming Walking [for a Naropa course?] + 38 + + + + + Yard Heap Chant ["written for Earth Day 1997"] + 38 + + + + + Yes & No + 38 + + + + + you mean nothing to me but noise [fl; fragment?] + 38 + + + + + You Reduce Me To An Object Of Desire + 38 + + + + + You, Robert Lowell, for Robert Creeley + 38 + + + + + You See All This Freedom??????????? + 38 + + + + + Young Love + 38 + + + + + you're like ice + 38 + + + + + Miscellaneous, undated + + 38 + + + + + Fragments + + +

    (May include some whole, untitled works)

    +
    + + + Partial proofs of an unidentified work, sent from Phillip Gallo at Hermetic Press, 1996-1997 + + 38 + + + + + General + 38 + + +
    + + + Miscellaneous photocopies of published poetry + 38 + + + + + Unidentified: title and sometimes author unknown (4 folders), + 38 + + +
    +
    + + + Contributions to Other Works + + + + Best Minds: A Tribute to Allen Ginsberg, plus correspondence, 1984 + + 38 + + + + + Going on Our Nerve, 2002 + + 38 + + + + + The Pleasures of the Flesh: Poems, selected by Barbara and Sam Abrams, undated + + 38 + + + + + Poems for the Millennium: the University of California Book of Modern & Postmodern Poetry, Jerome Rothenberg and Pierre Joris, eds. + 38 + + + + + The New Amazing Grace, Ed Sanders, ed., ? ca. 1994 + + 38 + + + + + Belladonna *26 [Things] Seen/Unseen. Published for reading at Bluestockings Women's Bookstore, Spring 2002 + + 38 + + + + + Thuggery and Grace, co-edited with Erik Anderson.Issue #4 draft. November 2008 + + 38 + + + + + Magazine submissions, 1995-2003 + + 38 + + + + + Calendar poems by Anne Waldman and illustrations by Rikki Ducornet, drafts included, undated + + 38 + + +

    Signed copy out of 201 copies 26 signed by author and artist,

    +
    +
    + + + Rules of the House by Tsering Wangmo Dhompa, 2002 + + 38 + + +
    + + + Miscellaneous + 38 + + +
    + + + Journals and Notebooks + + +

    The Journals and Notebooks series (5 linear feet) consists of more than 110 journals, notebooks, appointment books, and address books kept by Anne Waldman. A small number of journals kept by others is also represented. The journals offer a diverse array of content, from random jottings and to-do lists, to literary notes and drafts, to intensely personal diaries.

    +

    + + + + Anne Waldman (journals, notebooks, appointment books) + + + + 1960s + 39 + + 17 volumes and 1 envelope) + + + +

    (includes some pages of Frances Waldman's address book?)

    + + + + + 1970s + 40 + + 38.0 volumes + + + +

    (includes a journal, + ca. 1974-1977 with a portrait of Anne by Bob Dylan)

    +
    +
    + + + 1980s + 41 + + 17.0 volumes + + + + + + 1990s + 41 + + 2.0 volumes + + + +

    (includes one oversize calendar from + 1990 stored in box 31)

    +
    +
    + + + 1990s and + undated + 42 + + 32.0 volumes + + + + + + + Others + + + + [Bye, Reed] + + + + Loose pages, 1977 + + 43 + + +

    [RESTRICTED]

    +
    +
    + + + + 1979 + + 43 + + +

    [RESTRICTED]

    +
    +
    +
    + + + Warsh, Lewis + + + + + 1960-1961 + + 43 + + +

    [RESTRICTED]

    +
    +
    + + + Journal written with Anne Waldman, undated + + 43 + + +

    [RESTRICTED]

    +
    +
    +
    +
    +
    + + + Editing and Publishing + + +

    The Editing and Publishing series (approximately 12.5 linear feet) is comprised of Anne Waldman's work in editing and publishing, often as a joint venture with those in her circle. The Small Press and Little Magazine subseries, represents her work with The Poetry Project at St. Mark's Church-in-the-Bowery, Angel Hair, Full Court Press, Rocky Ledge, and Cherry Valeey.

    +

    The remainer of the series is arranged by individual book titles, and miscellaneous contracts, proposals, copyright application material, and financial material. Unpublished materials includes miscellaneous pieces of writing that could be part of books that are published or unpublished or drafts of works with an unknown title.

    +
    + + + Small Press and Little Magazine + + + + The Poetry Project at St. Mark's Church-in-the-Bowery + + + + General + + + + Correspondence + + + + Daniel Kane to Anne Waldman re dissertation on the Poetry Project, November 1997 + + 44 + + + + + Frances LeFevre: incoming + + + + Newsletter requests, notes, and ephemera, 1977-1978 + + 44 + + + + + Newsletter submissions with cover letters, 1971-1980, undated + + 44 + + + + + Newsletter submission and church-related material, 1974-1979, undated + + 44 + + + + + Assorted, 1971-1974 + + 44 + + + + + + + Loose Poems: distributed singly, undated + + 44 + + + + + Administrative Material: schedules, reports, notes, minutes, budgets, 1974-1981, undated + + 44 + + + + + Study Abroad on the Bowery Program (2 folders), 2005-2006 + + 44 + + + + + Bowery Arts & Science, LTD. 2007, 2009 + + 44 + + + + + Performances + + + + Programs and Flyers, 1970-1997, undated + + 44 + + + + + Catalogue of Audio (and Video) Tapes: Readings, Performances, Workshops and Lectures at the St. Mark's Poetry Project, 1970-1979, compiled by Harvey Lillywhite + 44 + + + + + Readings & Events at the St. Mark's Poetry Project, 1966-2004, undated + + 44 + + + + + Speeches and Introductions, 1975-1984, undated + + 44 + + + + + + The Poetry Project Newsletter + + + + Manuscript submissions and letters, 1977-1978 + + 44 + + + + + Newsletter issues + + + + #1-28, 1973-1975 + + 44 + + + + + #31-42, January 1976-February 1977 + + 44 + + + + + #44-50, April 1977-December 1977 + + 44 + + + + + #51-60, January 1978-December 1978 + + 44 + + + + + #61-79, January 1979-January 1981 + + 44 + + + + + #80-109, February 1981-November 1984 + + 44 + + + + + #111-120, January 1985-March 1986 + + 44 + + + + + #127-135, April 1988-January 1990 + + 44 + + + + + #136-147, #149, February 1990-May 1993 + + 44 + + + + + #154-219, November 1994-June 2009 + + 44 + + + + + + + + Adventures in Poetry: edited and published at St. Mark's Church by Larry Fagin + + + + Manuscript fragments: + Belgrade, November 19, 1963, Frank O'Hara + 44 + + + + + Publications, 1972-1973,1975 + + 44 + + + + + + The World + + + + Administrative Material + + + + Author-title Index, 1979 + + 45 + + + + + Material re + Dreams by Peter Schjeldahl, 1973, undated + + 45 + + + + + Other: minutes, mailing lists, etc., 1972, undated + + 45 + + + + + + Submissions: manuscripts and related correspondence, alphabetical by author, plus additional folders + + + + A-B + 45 + + + + + C + 45 + + + + + D-L + 45 + + + + + M-O + 45 + + + + + P-W + 45 + + + + + "Submissions for + The World #11," undated + + 45 + + + + + "Submissions for + The World #23," undated + + 45 + + + + + "Used in + The World [,] possible anthology," ca. 1971 + + 45 + + + + + Loose Published Pages: John Giorno and Anne Waldman, 1972-1974, undated + + 45 + + + + + Author unidentified (2 folders) + 45 + + + + + + + St. Mark's Church + + + + Oral History Project, undated + + 45 + + + + + Preservation and Rehabilitation Project, 1978-1980 and undated + + 45 + + + + + Miscellaneous, 1972 and undated + + 45 + + + + + Citizens to Save St. Mark's + + + + Clippings, press releases, newsletters (3 folders), ca. 1978-1981, undated + + 45 + + 3.0 folders + + + + + + Correspondence, 1979-1980 + + 45 + + + + + + + + Angel Hair, co-edited with Lewis Warsh (includes Angel Hair Books and Angel Hair magazine) + + + + Catalogues + + + + #1, 5, 6, 8, 1968-1973 + + 45 + + + + + "Angel Hair Archive #2," 1973 + + 45 + + + + + + Administrative Material + + + + Correspondence: "Requests for Catalogues Free Copies etc.," 1969-1971, undated + + 45 + + + + + Angel Hair Sales Book, 1971-1974 + + 45 + + + + + + Proofs + + + + Joe Brainard, I Remember More (includes final publication) (2 folders), 1971-1972 + + 45 + + + + + Anne Waldman, "Icy Rose" galley proof, 1971 + + 45 + + + + + + Submissions + + + + Author unknown + + + + "Dark Brew," undated + + 45 + + + + + Transformations, undated + + 45 + + + + + + Lorenzo Thomas, + Fit Music: California Songs, 1970 + + 45 + + + + + B. [Britton] Wilkie, + Limits of Space and Time, undated + + 45 + + + + + Lewis MacAdams [and Bill Bathurst and Keith Abbott?], poems, ca. 1969 + + 45 + + + + + Angel Hair Anthology drafts (2 folders), 1999-2000 + + 45 + + + + + + Publications + + + + Angel Hair Magazine: Issues #2-6 (2 folders) Fall 1966-Spring 1969 + + 45 + + + + + Angel Hair Books: + Asylum Poems by John Wieners, 1969 + + 45 + + + + + Angel Hair Books: + Girl Machine by Kenward Elmslie, 1971 + + 45 + + + + + Angel Hair Books: + Cuba by Tapa Kearney, 1978 + + 45 + + + + + + + Full Court Press: promotional material, certificate of ownership, 1973, undated + + 46 + + + + + Rocky Ledge, co-edited with Reed Bye, 1978-1981 + + + + + Administrative Material: correspondence, mailing lists, orders, bills, 1978-1986, undated + + 46 + + + + + Rocky Ledge Cottage Editions book press + + + + Manuscripts + + + + Susan Noel, Bronze Age + 46 + + + + + Anghelos Sikelianos, Frances LeFevre trans., Poems of the Greek Resistance: page layouts + 46 + + + + + + + Rocky Ledge magazine + + + + General: "Press-Type" lettering materials + 46 + + + + + #1 + + + + "Rocky Ledge Easter 1979": mockup version of magazine + 46 + + + + + Original manuscripts and correspondence, 1979 + + 46 + + + + + Cover art: original, copies, early drafts, plus receipts and editors' notes, ca. 1979 + + 46 + + + + + + #2 + + + + Draft Versions + 46 + + + + + Cover art, correspondence, receipts + 46 + + + + + + #3 + + + + Draft versions + 46 + + + + + Cover art, correspondence, receipts, notes + 46 + + + + + + #4 + + + + Draft version + 46 + + + + + Original manuscripts, correspondence, receipts, notes + 46 + + + + + Cover art + 46 + + + + + + #5 + + + + Draft version + 46 + + + + + Original manuscripts, correspondence, eds. planning notes + 46 + + + + + Cover Art: Alex Katz + 46 + + + + + + #6 + + + + Original manuscripts, correspondence + 46 + + + + + Rejects, correspondence + 46 + + + + + + #7 + + + + Original manuscripts, correspondence + 46 + + + + + Rejects, correspondence + 46 + + + + + + #8 + + + + Draft version + 46 + + + + + Rejects + 46 + + + + + + Apparent submissions for + Rocky Ledge + + + + Tapa Kearney, Denyse King, Mushka Kochan, Susan Keith Noel, Laurie Price + 46 + + + + + Laurie Price and Jim Cohn, Interview with Clark Coolidge, July 1980 + + 46 + + + + + Elizabeth Fox, + New York, December 8-29, 1980 + + 46 + + + + + Unidentified poems from + Rocky Ledge + 46 + + + + + + + + Cherry Valley: "Cherry Valley Summer 1977" + 46 + + + + + + Books + + + + The Beat Book + + + + Correspondence, 1995, 2007, undated + + 46 + + + + + Introduction: first draft + 46 + + + + + "Some BEAT Poetry Places" draft + 46 + + + + + Draft + + + + Table of contents + 46 + + + + + Introduction, pp. 1-8 + 46 + + + + + Gregory Corso, pp. 9-27 + 46 + + + + + Jack Kerouac, pp. 28-72 + 46 + + + + + Neal Cassady, pp. 73-79 + 46 + + + + + Allen Ginsberg, pp. 80-112 + 46 + + + + + Peter Orlovsky, pp. 113-120 + 46 + + + + + Diane di Prima, pp. 121-145 + 46 + + + + + John Wieners, pp. 146-165 + 46 + + + + + William S. Burroughs, pp. 166-215 + 46 + + + + + Amiri Baraka, pp. 216-241 + 47 + + + + + Lawrence Ferlinghetti, pp. 242-257 + 47 + + + + + Joanne Kyger, pp. 258-274 + 47 + + + + + Lew Welch, pp. 275-291 + 47 + + + + + Lenore Kandel, pp. 292-303 + 47 + + + + + Philip Whalen, pp. 304-318 + 47 + + + + + Bob Kaufman, pp. 320-333 + 47 + + + + + Michael McClure, pp. 334-352 + 47 + + + + + Gary Snyder, pp. 353-379 + 47 + + + + + Some BEAT Poetry Places, pp. 380-387 + 47 + + + + + Biographical Sketches + 47 + + + + + Bibliography + 47 + + + + + + Proofs: Front matter, pp. 1-374, ?, ca. 1996 + + + + + Front matter, pp. 1-42 + 47 + + + + + pp. 43-82 + 47 + + + + + pp. 83-142 + 47 + + + + + pp. 143-198 + 47 + + + + + pp. 199-259 + 47 + + + + + pp. 260-301 + 47 + + + + + pp. 302-336 + 47 + + + + + pp. 337-374 + 47 + + + + + + + Nice to See You: Ted Berrigan tribute + + + + Background material: biographical sketch, C.V., bibliography, etc. + 47 + + + + + Anne Waldman's notes + 47 + + + + + Photographs: photographs, negatives, and related correspondence, 1983, undated + + 47 + + + + + Correspondence (3 folders) 1983-1989 + + 47 + + + + + Draft + + + + Introduction, front matter, and index + 47 + + + + + A-B + 47 + + + + + C-F + 47 + + + + + G-L + 47 + + + + + M-P + 47 + + + + + R-S + 47 + + + + + T-Z and unknown + 47 + + + + + Letters: Ted Berrigan to friends, 1962-1982 + + 47 + + + + + + Submissions not included: by Ted Berrigan and others + 47 + + + + + Page Proofs: pp. 150-156 only + 47 + + + + + Publicity and Reviews, 1985-1991 + + 47 + + + + + Miscellaneous drafts (2 folders) + 47 + + + + + + Out of This World: + The World magazine anthology + + + + Correspondence (3 folders), 1978-1992 + + 47 + + + + + Early Versions + + + + Preface by Allen Ginsberg: annotated photocopy + 47 + + + + + Table of Contents: "Checklist Copy" + 47 + + + + + Notes and contents + 47 + + + + + "Possibilities for [World Anthology]": poems by Anne Waldman + 47 + + + + + Introduction, 1978 + + 47 + + + + + Introduction, 1980 + + 47 + + + + + Jacket Design, 1991 + + 47 + + + + + + Draft: "Original Manuscript" with editors' marks + + + + Front matter, pp. 1-79 + 47 + + + + + pp. 80-200 + 47 + + + + + pp. 201-308 + 48 + + + + + pp. 309-391 + 48 + + + + + pp. 392-493 + 48 + + + + + pp. 494-583 + 48 + + + + + pp. 584-695a (missing pp. 696-698) + 48 + + + + + pp. 699-723, plus Acknowledgements + 48 + + + + + + Bound Proofs, Uncorrected, removed from collection and catalogued as + Out of This World: an anthology of the St. Mark's Poetry Project, 1966-1991, call number PS 615 .O981 1991b; shelved in Special Collections 1991 + + 48 + + + + + + Talking Poetics: Naropa lecture anthology, edited with Marilyn Webb, + + + + Correspondence + + + + Marilyn Webb correspondence and notes, 1976-1977, undated + + 48 + + + + + General, 1977, undated + + 48 + + + + + Algarin, Miguel, 1977-1978 + + 48 + + + + + Berrigan, Ted, 1978 + + 48 + + + + + Brownstein, Michael, 1977 + + 48 + + + + + Cage, John, 1978 + + 48 + + + + + Coolidge, Clark, 1977-1978 + + 48 + + + + + Dorn, Ed, 1978 + + 48 + + + + + Duncan, Robert, 1978 + + 48 + + + + + MacAdams, Lewis, 1975-1978 + + 48 + + + + + Mac Low, Jackson, 1977-1978 + + 48 + + + + + Padgett, Ron, 1977-1978 + + 48 + + + + + Rosenthal, Bob, 1978 + + 48 + + + + + Rothenberg, Jerome, 1977-1978, undated + + 48 + + + + + Warsh, Lewis, 1978 + + 48 + + + + + Whalen, Philip, 1977-1978 + + 48 + + + + + O'Hara, Frank: re Frank O'Hara; correspondents include Jane Ellman to Nina Garfinkel at Knopf, plus Allen Ginsberg and Anne Waldman, 1978 + + 48 + + + + + Stein, Gertrude: re Gertrude Stein; Marilyn Webb to Ann Bujalski, 1977 + + 48 + + + + + King, Carolyn Rose at Shambhala to Marilyn Webb, 1978 + + 48 + + + + + + Permissions needed and footnotes + 48 + + + + + Drafts and Proofs + + + + Early Work + + + + Versions of front matter + 48 + + + + + Introduction by Allen Ginsberg + 48 + + + + + Front matter and introduction + 48 + + + + + Transcripts + + + + Dorn, Ed [Edward], June 8, 1977 + + 48 + + + + + Mac Low, Jackson, August 12, 1975 + + 48 + + + + + Padgett, Ron + + + + "Not edited yet," August 3, 1975 + + 48 + + + + + "Stoically Bedazzled": edited, partial version + 48 + + + + + + + Early Drafts + + + + Berrigan, Ted, untitled + 48 + + + + + Cage, John, original score, "Empty Words with Relevant Material," part 4 of + Lecture IV + 48 + + + + + Duncan, Robert, "Notes from a Talk" + 48 + + + + + Mac Low, Jackson, "The Poetics of Chance and the Politics of Simultaneous Spontaneity, or the Sacred Heart of Jesus" + 48 + + + + + Whalen, Philip, "The Name of the Magical History Song" + 48 + + + + + Unidentified fragments + 48 + + + + + + + Complete Draft + + + + Introduction and preface, pp. 0-VII, and unnumbered + 48 + + + + + Berrigan, Ted. "The Art of Writing Poetry," p. 1-22 + 48 + + + + + Duncan, Robert. "Warp and Woof: Notes from a Talk," pp. 23-35 + 48 + + + + + McClure, Michael. "Cinnamon Turquoise Leather: (A Personal Universe Deck)," pp. 36-56 + 48 + + + + + Burroughs, William S. "It Belongs to the Cucumbers: On the Subject of Raudive's Tape Voices," pp. 52-72 + 48 + + +

    (partial)

    +
    +
    + + + Brownstein, Michael. "Imagination for Adults," pp. 73-93 + 48 + + + + + Dorn, Edward. "Strumming Language," pp. 94-110 + 48 + + + + + Coolidge, Clark. "Arrangement," pp. 111-135 + 48 + + + + + Cage, John, "Empty Words with Relevant Material," pp. 136-167 + 48 + + + + + Mac Low, Jackson. "The Poetics of Chance and the Politics of Simultaneous Spontaneity or the Sacred Heart of Jesus (Revised and Abridged)," pp. 169-198 + 48 + + + + + Padgett, Ron. "Stoically Bedazzled," pp. 199-231 + 48 + + + + + Whalen, Philip. "Sudden Histories, Natural Jumps," pp. 261-269 + 48 + + + + + di Prima, Diane. "Light/and Keats," pp. 270-308 + 48 + + + + + Rothenberg, Jerome. "Changing the Present, Changing the Past," pp. 309-350 + 48 + + + + + Algarin, Miguel. "Volume and Value of the Breath in Poetry," pp. 351-372 + 48 + + + + + Sanders, Ed. "The Content of History Will Be Poetry," pp. 373-404 + 48 + + + + + Ginsberg, Allen. "Visions of Ordinary Mind: (1948-1955): Discourse w/Questions & Answers," pp. 405-449, and unnumbered + 48 + + + + + Appendices and biographical notes, pp. 450-467 + 48 + + + + + Notes and footnotes + 48 + + +
    + + + Proofs, version 1: pp. 222-429 only + 48 + + + + + Proofs, version 2 + + + + Front matter and pp. 1-221 + 49 + + + + + pp. 222-429 + 49 + + + + + + Galley proofs, partial + 49 + + +
    + + + Reviews: review by Jascha Kessler, undated + + 49 + + +
    + + + Disembodied Poetics: Naropa lecture anthology, + + + + Correspondence + + + + Waldman, Anne et al., re planning, 1990, undated + + 49 + + + + + General correspondence and notes, 1991-1992, undated + + 49 + + + + + Proposal versions, undated + + 49 + + + + + Publishers' correspondence: City Lights and University of New Mexico, 1991-1992, undated + + 49 + + + + + + Legal and Administrative + + + + Contract with Broken Moon Press, 1993 + + 49 + + + + + Anthology Royalty Info, 1995 + + 49 + + + + + + Drafts and Proofs + + + + Early Contributions and Ideas + + + + Anne Waldman's notes, undated + + 49 + + + + + Ginsberg, Allen + + + + Visiting Poetics lecture transcript (includes notes by Allen Ginsberg, + 1990-1991 and Peter [Orlovsky?], 1992), 1976 + + 49 + + + + + "Revolutionary Poetics," lecture transcript transcribed by Kimi Sugioka, 1989 + + 49 + + + + + Allen Ginsberg and William S. Burroughs talks, transcript by Steven Taylor, 1992 + + 49 + + + + + + Orlandi, Robin. "Women's Studies Letter" (written by a Naropa student), July 21, 1992 + + 49 + + + + + Waldman, Anne. "WRITING WRITING WRITING WRITING RESEARCH DREAMING WALKING" (from a Naropa MFA course), July 14, 1992 + + 49 + + + + + Whalen, Philip. Letter to Joanne Kyger, September 19, 1968 + + 49 + + + + + Wilson, Peter Lamborn. Correspondence and musical piece, "Harmonium," by Steven Taylor, 1992 + + 49 + + + + + + Early Drafts + + + + Schelling, Andrew and Waldman, Anne. Introduction and acknowledgements + 49 + + + + + Table of contents + 49 + + + + + Biographical notes + 49 + + + + + "A Declaration of Interdependence" by David Cope, Anne Waldman, and other poets + 49 + + + + + Baraka, Amiri. Edited transcript of Naropa lecture, 1992 + + 49 + + + + + Collom, Jack. "Eco-Lit: A Birdwalk in Tanglewood" and "Before and Afterword," ca. 1992 + + 49 + + + + + Coolidge, Clark. Naropa lecture on Kerouac, 1991 + + 49 + + + + + di Prima, Diane. "H.D.'s Angel Magic," 1988 + + 49 + + + + + DuCornet, Rikki. "Alphabets and Emperors (Reflections on Kafka and Borges)," undated + + 49 + + + + + Hawkins, Bobbie Louise. "The Sounding Voice: A Rhapsody," undated + + 49 + + + + + Hejinian, Lyn. "The Quest for Knowledge in the Western Poem," 1990 + + 49 + + + + + Hollo, Anselm. "Notes From a Poetry (Reading) Life," undated + + 49 + + + + + Howe, Susan: Correspondence re permission to use Susan Howe material, 1992 + + 49 + + + + + Hunt, Erica: Correspondence only, 1992 + + 49 + + + + + Mackey, Nathaniel. Lecture, 1991 + + 49 + + + + + Mayer, Bernadette. "From: A Lecture at the Naropa Institute, 1989" + 49 + + + + + Notley, Alice. "Epic, and Women Poets," undated + + 49 + + + + + Sanders, Ed. "Bicameral Nature Poetry," 1990 + + 49 + + + + + Scalapino, Leslie. "Merely Modern," undated + + 49 + + + + + Schelling, Andrew. "Jataka Mind: A Garland for Environmentalists," and "Mounting the Poetry Vehicle," undated + + 49 + + + + + Thomas, Lorenzo. Lecture, July 24, 1989 + + 49 + + + + + Waldman, Anne. "I is Another: Dissipative Structures," undated + + 49 + + + + + Warshall, Peter. Edited versions of a lecture, undated + + 49 + + + + + Wilson, Peter Lamborn. "Sacred Drift: On the Road with Doctor Maximus," undated + + 49 + + + + + + Draft [A] + + + + Introduction-Collom + 49 + + + + + Hollo-Whalen interview + 49 + + + + + Burroughs-Howe + 49 + + + + + Coolidge-Schelling + 49 + + + + + + Draft [B] + + + + Introduction-Hollo + 49 + + + + + Hunt-Lamborn Wilson + 49 + + + + + Whalen interview-Howe + 49 + + + + + Ginsberg, "Negative Capability"-"Biographies": cover page only, plus Hawkins + 49 + + + + + + Draft [C] + + + + Introduction-Mayer + 50 + + + + + Notley-Schelling, "Mounting the Poetry Vehicle" + 50 + + + + + Hejinian-Whalen interview + 50 + + + + + Sanders-Burroughs + 50 + + + + + Howe-Scalapino + 50 + + + + + Tarn-Biographies, plus Hawkins + 50 + + + + + + + + Triptych: Poets and Madonnas, edited with Red Grooms 1992 + + 50 + + + + + Marriage: A Sentence + + + + Drafts + + + + September 29, 1999 + 50 + + + + + October 13, 1999 (includes two author photos) + 50 + + + + + November 23, 1999 (2 folders) + 50 + + + + + Bound copy, undated + + 50 + + + + + Advance uncorrected proofs, undated + + 50 + + + + + + + Vow to Poetry: Essays, Interviews and Manifestos + + + + Drafts + + + + March 14, 2001, (2 folders) + 50 + + + + + June 2001 (2 folders) + 50 + + + + + Two spiral bound copies, undated + + 50 + + + + + Uncorrected galley, 2001 + + 51 + + + + + Undated, (11 folders) + 51 + + + + + + + Dark Arcana: Afterimage or Glow, draft and dust jacket mock-up, 2002-2003 + + 51 + + + + + Civil Disobediences: Poetics and Politics edited with Lisa Birman + + + + Drafts + + + + Anselm Hollo's and Lisa Birman's copy (4 folders), March 18, 2004 + + 51 + + + + + September 09, 2003 (4 folders), + 52 + + + + + Dharma Poetics and Revolutionary Poetics, November 21, 2003 + + 52 + + + + + Gnosis and Aesthetics, November 21, 2003-December 2, 2003 + + 52 + + + + + Talking Poetics and Ancestral Presences, November 21-December 2, 2003 + + 52 + + + + + November 21, 2003 (3 folders) + 52 + + + + + February 11, 2004, "Kristin's Proof", (3 folders) + 52 + + + + + March 18, 2004, "Heather's copy", (6 folders), + 53 + + + + + May 11- May 13, 2004 + 53 + + + + + Warshall, Peter. Symbiosis. undated + + 53 + + + + + + + Nine Nights Meditation, edited with Donna Dennis, draft, 2004 + + 53 + + + + + Structure of the World Compared to a Bubble, 2004 + + + + + Draft, + April 30, 2004 + 53 + + + + + Draft, + July 23, 2004 + 53 + + + + + Drafts, advanced uncorrected proofs, undated + + 53 + + + + + Drafts, including dust jacket cover (2 folders), undated + + 54 + + + + + + Outrider, draft and dust jacket mock-up 2006 + + 54 + + + + + Martyrdom, draft, 2007-2008 + + 54 + + + + + Matriot Acts, 2010 + + + + + Matriot Acts, draft "first version," Summer 2007 + + 54 + + + + + Matriot Acts, draft, undated + + 54 + + + + + + Red Noir, drafts (4 folders), Structure of the World Compared to a Bubble, 2008 + + 54 + + + + + Beats at Naropa: An Anthology edited with Laura Wright, draft (2 folders), September 19, 2009 + + 54 + + + + + Beats at Naropa, miscellaneous, 1983-2009 and undated + + 54 + + + + + General Publishing Material + + + + Contracts, 1970-1998, 2009, undated + + 54 + + + + + Proposals, 1973- c.1984 + + 54 + + + + + Copyright applications, 1976-1983 + + 54 + + + + + Financial: royalties, honoraria, book invoices, other, 1969-1999, undated + + 54 + + + + + + Unpublished Materials + + + + The Beats and Beyond: Annals of the Jack Kerouac School, draft, (2 folders) + 54 + + + + + Miscellaneous writings and drafts (4 folders) + 54 + + + + + MIscellaneous writings and drafts (13 folders) + 55 + + + +
    + + + Writings by others (6 folders) 2001-2010 + + 55 + + + + + Writings by others (7 folders) + 56 + + +
    + + + Naropa + + +

    The Naropa series (8 linear feet) consists of material related to Waldman's involvement with the Naropa Institute, now Naropa University, in Boulder, Colorado. It is comprised of the following subseries: Course Material, Administrative Material, Conferences and Panels, Publications, Printed Material, Other Teaching Activities, and Personal.

    +
    + + + Course Material + + + + Anne Waldman + + + + 1976-1979 + 56 + + + + + 1980-1984 + 56 + + + + + 1985-1986 + 56 + + + + + 1987-1989 + 56 + + + + + 1990-1999 + 56 + + + + + Arthur's class, February 7, 1985 + + 56 + + + + + Shamanic Poetries, 1985-1987 + + 56 + + + + + Writing Workshops (2 folders), 1986 + + 56 + + + + + Word Women, Summer 1986 + + 56 + + + + + American Women Avant Garde, Spring 1987 + + 56 + + + + + Performance Writing, 1989,1990, 2006 + + 56 + + + + + American Tantra, 1993 + + 56 + + + + + Cultural Poetic Interventions, Summer 2003 + + 56 + + + + + Meditation and Dharma Poetics Seminar (with Reed Bye), Summer 2003-2004 + + 56 + + + + + Feminafesto Poetics, Summer 2004 + + 56 + + + + + Rogue State Poetics, July 2-8, 2007 + + 56 + + + + + Practicums, 2005-2012 + + 56 + + + + + Endangered/Engendered:What's hidden? What's revealed? Summer 2009 + + 56 + + + + + Performance Evolution, Summer 2010 + + 56 + + + + + Gertrude Stein Seminar, undated + + 56 + + + + + Notes: Women Writers, undated + + 56 + + + + + Shapely Writing, undated + + 56 + + + + + Source Material (4 folders), + 57 + + + + + Miscellaneous (2 folders), undated + + 57 + + + + + Miscellaneous notes and jottings + 57 + + + + + + Others + + + + Jane Augustine + 57 + + + + + Lee Ann Brown, undated + + 57 + + + + + William S. Burroughs + + + + + 1975-1983 + + 57 + + + + + Course on Burroughs, 1978 + + 57 + + + + + + Reed Bye, 1981-1985, undated + + 57 + + + + + Clark Coolidge, + 57 + + + + + Patricia Donegan, 1980, 2006 + + 57 + + + + + Kenward Elmslie + 57 + + + + + Allen Ginsberg (4 folders), 1976-1994, undated + + 57 + + + + + Bobbie Louise Hawkins, 1990 + + 57 + + + + + Anselm Hollo, 1989-1993, undated + + 57 + + + + + Bernadette Mayer, 1978-1993 + + 57 + + + + + Andrew Schelling, undated + + 57 + + + + + Gary Snyder, undated + + 57 + + + + + Philip Whalen, 1977 + + 57 + + + + + Lewis Warsh 1977-1978 + + 57 + + + + + Miscellaneous, unknown or multiple instructors (4 folders), 1975-2011, undated + + 58 + + + + + + Summer Writing Program + + + + General Information (2 folders), 1997-2006 + + 58 + + + + + Master Schedules (drafts included) (8 folders), 1987-2011, undated + + 58 + + + + + Summer catalog, 1988-2006 + + 58 + + + + + Performance as Everyday Life, Joanne Kyger, 1989 + + 58 + + + + + Naropa Summer Anne Waldman, 1992 + + 58 + + + + + Source Material: excerpt from + Ethnocriticism, Arnold Krupaut, undated + + 58 + + + + + MFA Sourcebooks (2 folders), 1978, 1997, 2001-2008 + + 58 + + + + + MFA Sourcebooks (7 folders), + 59 + + + + + Summer Faculty and Visiting Poets (4 folders), 1978-1982 + + 59 + + + + + Miscellaneous, 1981-2011 and undated + + 59 + + + + + + + Administrative Material + + + + General + + + + Academic Planning Material, undated + + 59 + + + + + Correspondence (2 folders), 1974-2011 + + 59 + + + + + Minutes and Reports (2 folders), 1985-2011 + + 59 + + + + + Budgets, 1978-2010 + + 59 + + + + + Grant Proposals, 1977-1992, undated + + 60 + + + + + Faculty biographies and resumes (includes potential faculty candidates), 1974-2005 + + 60 + + + + + Release Forms, 1980-2007 + + 60 + + + + + Students (paperwork, writing samples and scholarships), 1994 + + 60 + + + + + Faculty Handbook, 1983-1984 + + 60 + + + + + + Writing and Poetics Department + + + + Early Planning Material + + +

    (includes material on the founding of the Jack Kerouac School of Disembodied Poetics)

    +
    + + + Allen Ginsberg's folder: material drafted by Allen Ginsberg and Anne Waldman, 1975-1980, undated + + 60 + + + + + General, 1976-1977 + + 60 + + +
    + + + Academic Planning Material, 1988-2011, undated + + 60 + + + + + Evaluations + + + + Student Evaluations, 1988-1989, undated + + 60 + + +

    [RESTRICTED-Removed to Box 21]

    +
    +
    + + + Instructor Evaluations, 1989-1990 + + 60 + + +

    [RESTRICTED-removed to Box 21]

    +
    +
    + + + Anne Waldman's Evaluations, 1989-1991, 1994 + + 60 + + +
    + + + Correspondence + + + + + 1985-2005, undated + + 60 + + + + + Re Shambhala publication, unknown, 1994 + + 60 + + + + + + Minutes and Reports, 1977-2006 + + 60 + + + + + Catalog Drafts (2 folders), undated + + 60 + + +
    + + + Summer Writing Program + + + + Correspondence, 1976-2011, undated + + 60 + + + + + General (5 folders), ca. 1987-2011, undated + + 60 + + + + + Convocation Schedules, 2003-2009 + + 60 + + + + + + Audio Archive Preservation and Access Project (3 folders), 1974 - 2004, 2010 + + 60 + + + + + Low-residency MFA, 2005 + + 60 + + +
    + + + Conferences and Panels, undated + + + + + General or unknown (2 folders), undated + + 61 + + + + + Dharma Poetics Talk, transcripts (3 folders), 1982 + + 61 + + + + + Personal Geography, transcripts of Robin Blaser, Robert Creeley and Michael Ondaatje, 1999 + + 61 + + + + + Naropa-Prameni International Poetics Festival, master schedule, May 11-18, 2003 + + 61 + + + + + Borders panel, 2004 + + 61 + + + + + Socratic Rap, 1998, 2005, undated + + 61 + + + + + + Speeches and Interviews + + + + Speeches (by Anne Waldman; includes other material: notes, schedules, etc.) + + + + General (2 folders), 1977-2011, undated + + 61 + + + + + A Declaration of Interdependence, David Cope et al., 1990 + + 61 + + + + + + Interviews + + + + William Burroughs Interviewed, Rick Fields (interviewees also include Lewis MacAdams, Anne Waldman, and Allen Ginsberg), undated + + 61 + + + + + Interview with Victor Hernandez Cruz, Eleni Sikelianos, 1991 + + 61 + + + + + Open Secrets interview of Allen Ginsberg, transcript, 1974 + + 61 + + + + + A Plea for Ginny, Allen Ginsberg, 1996 + + 61 + + + + + Transcription of talk by Kobun Chino Sensei, ca. 1974 + + 61 + + + + + Robert Duncan interview, 1978 + + 61 + + + + + From a conversation with Kenneth Koch, January 11, 1980 + + 61 + + + + + Surprise Each Other: The Art of Collaboration, interview with Lisa Birman, 1998-1999 + + 61 + + + + + Ferlinghetti Rap, interview with Lawrence Ferlinghetti, 1998 + + 61 + + + + + Interview with Anne Waldman for Ronna Johnson and Nancy Grace's book + Girls Who Wore Black: Women Writing the Beat Generation, 2001-2002 + + 61 + + + + + + + Publications + + + + Campus Periodicals: student newsletters and bulletins (3 folders) 1972-2010, undated + + 61 + + + + + Submissions, undated + + 61 + + + + + Class Publications + + + + Boulder Work: women-only apprentice class, August 1979 + + 61 + + + + + The Drunken Book, Fall 1991 + + 61 + + + + + Balls, Practice of Poetry I, Fall 1993 + + 61 + + + + + Eleavenings: Plays on Word 1995 + + 61 + + + + + At the Same [T]ime, 1996-1997 + + 61 + + + + + Summer Writing Program + + + + Astarte 1.1: Anne Waldman's personal copy, 1992 + + 61 + + + + + ca. 14 lines, July 1992, July 1993 + + 61 + + + + + Camp Kerouac, Summer 1986 + + 61 + + + + + Manifesto, undated + + 62 + + + + + Summer Langue, July 1993 + + 62 + + + + + The Third Mind, 1994 + + 62 + + + + + Something Worth Proposing, June 2000 + + 62 + + + + + Radical Interventions, 2001 + + 62 + + + + + Invention/Intervention: Activism as Performance, 2003 + + 62 + + + + + Wake Up, 2004 + + 62 + + + + + summer stock 2, 2006 + + 62 + + + + + Summer Writing Magazine (6 folders), 1988, 1993-2012 + + 62 + + + + + Radical Interventions 2001 + + 62 + + + + + + + Other + + + + Cassandra: A musical drama by Ed Sanders, performed July 24, 1993 + + 62 + + + + + Aa day in the life of p. by kari edwards, 2001 + + 62 + + + + + Reader for the Future [?], Carla Harryman, ed.[?], undated + + 62 + + + + + Press Releases, 1977-1982, undated + + 62 + + + + + Kavyayantra Press Reading Series programs 2009-2010 + + 62 + + + + + + + Printed Material + + + + Catalogs and Brochures + + + + General Naropa (5 folders), 1976-1999 + + 62 + + + + + General Naropa, 2000-2007 + + 63 + + + + + Writing and Poetics Program (3 folders), undated + + 63 + + + + + + Posters, Flyers, and Programs + + + + General (2 folders), 1973-2011, undated + + 63 + + + + + Karmapa Black Crown Ceremony, 1974 + + 63 + + + + + On the Road: the Jack Kerouac Conference, July 23, 1982-August 1, 1982 + + 63 + + + + + + Clippings + + + + General, 1979-2011 + + 63 + + + + + Naropa Poetry Wars by Tom Clark, June 1980 + + 63 + + + + + Kerouac Conference, July 1982 + + 63 + + + + + Allen Ginsberg Memorials, 1997-1998 + + 63 + + + + + + + Other Teaching Activities + + + + Arvon, 2003 + + 63 + + + + + Naropa study abroad program, Bali, 1997-2003 + + 63 + + +

    Includes correspondence regarding program

    +
    +
    + + + Schule für Dichtung, Vienna, 1992-1999, 2007 + + 63 + + + + + Stevens Institute of Technology, Hoboken, NJ + + + + Instructor Evaluations, ca. 1982 + + 63 + + + + + Cut Up Sonnets, Anne Waldman Writing Apprenticeship, 1980 + + 63 + + + + + + Omega Writing and Meditation Retreat, 1994 + + 63 + + + + + New College: Gertrude Stein: A Reading, 1982 + + 63 + + + + + New England College MFA Program in Poetry, 2005 + + 63 + + +
    + + + Personal + + +

    (includes ephemera, personal correspondence)

    +
    + + + Buddhism and health-related material, undated + + 63 + + + + + Contracts, 1974-1990, 2002 + + 63 + + + + + Correspondence (3 folders), 1980-2012, undated + + 63 + + + + + Ephemera, 1975-1976, undated + + 63 + + + + + Miscellaneous business cards + 63 + + + + + Notes + + + + Buddhist and astrology-related, manuscripts by others, 1973, undated + + 63 + + + + + Work and performances, 1979, 1993, 1994, 2002, undated + + 63 + + + + + "Anne Private," undated + + 63 + + + +
    +
    + + + Other Activities + + +

    The Other Activities series is comprised of 1 linear foot of material, and documents Waldman's activities outside of writing and publishing. The series includes material related to conferences and festivals that Waldman attended, material related to Bob Dylan's Rolling Thunder Revue Tour, various video and audio recording projects, attempts to sell Waldman's archive, and significant documentation of Waldman's involvement in social protest issues.

    +
    + + + Activism + + + + John Sinclair Freedom Rally, 1972 + + 64 + + + + + Rocky Flats and nuclear energy and weapons protests, 1975-1986, undated + + 64 + + + + + Oxfam America, 1986-1987 + + 64 + + + + + Nicaraguan Cultural Alliance, 1987 + + 64 + + + + + Council on Counterpoetics, 1989 + + 64 + + + + + Boulder AIDS Project/BECAP ethics committee, 1994-1995 + + 64 + + + + + Toward Freedom Foundation advisory board, 1994-1995 + + 64 + + + + + The Not in Our Name Statement of Conscience presents: Poems Not Fit for the White House. Lincoln Center, program. February 17, 2003 + + 64 + + + + + Miscellaneous social issues, 1969-1998, undated + + 64 + + + + + + Conferences and Festivals + + + + International Symposium on Ethnopoetics, University Of Wisconsin, Milwaukee, 1975 + + 64 + + + + + Cambridge Poetry Festival, 1977 + + 64 + + + + + "The Second Sex: Thirty Years Later," conference, 1979 + + 64 + + + + + Second International Festival of Poets, Rome, 1980 + + 64 + + + + + Festival of India (Tour of Indian Poets), 1985 + + 64 + + + + + River City Reunion, Lawrence, KS, 1987 + + 64 + + + + + Poetry Days, Oslo, 1989 + + 64 + + + + + Vancouver Art Gallery Readings (with Diane Di Prima), 1989 + + 64 + + + + + Taos Poetry Circus and World Championship Poetry Bout, 1989-1991 + + 64 + + + + + Dalai Lama visit, New Mexico, 1991 + + 64 + + + + + The Beat Generation Conference, New York University, 1994 + + 64 + + + + + The Writings of Jack Kerouac, New York University, 1995 + + 64 + + + + + The Recovery of the Public World, Vancouver, 1995 + + 64 + + + + + National Festival of Women's Writing (Female Eye Festival), London?, 1995 + + 64 + + + + + Civitella Ranieri Foundation Fellowship, Italy, 2001 + + 64 + + + + + Atlantic Center for the Arts, Artists-in-Residence, 2002 + + 64 + + + + + Makeup on Empty Space: A Celebration of Anne Waldman, University of Michigan, Ann Arbor (2 folders), 2002 + + 64 + + + + + Institut de cultura, Barcelona (inlcudes printouts of W.S. Rendra poems), May 2003 + + 64 + + + + + Highway 61 Revisited: Dylan's Road from Minnesota to the World (2 folders), March 24-27, 2007 + + 64 + + +

    Includes notes and drafts for talk given at conference.

    +
    +
    + + + International Conference on the 20th Century American Poetry, Wuhan China, 2007 + + 64 + + + + + New England College. Paradise is Stranged: Women of the New York School. Talk notes, 2007 + + 64 + + + + + Miscellaneous conferences (3 folders), 1985-2011 + + 65 + + +
    + + + Recording Projects + + + + Lannan Literary Video, 1990-1996 + + 65 + + + + + Miscellaneous audio and video recordings, 1991, undated + + 65 + + + + + + Rolling Thunder Revue Tour with Bob Dylan, 1975 + + 65 + + + + + Sale of archive (includes index of archive ca. 1975) (2 folders), 1976-1992 + + 65 + + + + + "Street Works" performance, 1969 + + 65 + + + + + 17 Ibarra. Anthology of writing from the Luminous Details workshop. Original work by Andrew Schelling and Joanne Kyger. Patzcuaro, Mexico, January 8-15, 2000 + + 65 + + + + + Entanglement film script. Directed by Ed Bowes and written by Anne Waldman, 2007 + + 65 + + + + + Time-Contradiction film script draft. Directed by Ed Bowes and Anne Waldman, 2010 + + 65 + + + + + Follow the Sandpiper, script, undated + + 65 + + + + + Add-Verse program for video and photography art installation inlcuding Anne Waldman, 2003-2005 + + 65 + + + + + Miscellaneous, 2003, 2009 + + 65 + + +
    + + + Personal + + +

    The Personal series is a topical file consisting of 1.5 linear feet of material documenting Waldman's interest in Buddhism, her 1967 wedding to Lewis Warsh, a collection of memorabilia from Waldman's travels, and various playbills, museum programs and ticket stubs. Legal and financial records, as well as various and unidentified notes, jottings and telephone messages, are also included.

    +
    + + + Address and phone number lists, undated + + 65 + + + + + Buddhist related material + + + + Buddhist "practice," undated + + 65 + + + + + Vajradhatu Seminary, Alberta Canada, 1979-1980 + + 65 + + + + + Miscellaneous (4 folders), 1979-2010, undated + + 65 + + + + + + Childbirth information, 1980 + + 65 + + + + + Financial records + + + + Bank statements, 1962-2000 + + 65 + + + + + Bills and receipts, 1971-1988, 2003-2004, 2010, undated + + 66 + + + + + Pay stubs, 1966-1987 + + 66 + + + + + Food stamp and unemployment benefit applications, 1976-1979 + + 66 + + + + + Taxes, 1975-1976, 1989-1990, 1992, 1999, 2009, 2011 + + 66 + + + + + + Legal records + + + + 33 St. Mark's Place apartment lease, 1979 + + 66 + + + + + 33 St. Mark's Place sublet suit, 1982, and 1984-85 + + 66 + + + + + Summons regarding Rocky Flats Protest, 1978 + + 66 + + + + + Miscellaneous, 1974-1987 + + 66 + + + + + + Memorabilia + + + + Awards, 1979-2003, undated + + 66 + + +

    Includes National Endowment for the Arts, Literature Fellowship Recipient certificate, 1979

    +
    +
    + + + Boz Scaggs autograph, 1978 + + 66 + + + + + Cards and greetings (2 folders) 1967-2008, undated + + 66 + + + + + Clipping book, 1975-1976 + + 66 + + + + + Playbill, museum programs, exhibit catalogs and invitations, scattered dates (4 folders) + 66 + + + + + Ticket stubs, 1977-1998, 2002, undated + + 66 + + + + + Travel + + + + France, 1963 + + 66 + + + + + Greece and Egypt, 1963-1964 + + 66 + + + + + South America, 1972, undated + + 66 + + + + + India, 1973 + + 66 + + + + + India and Nepal, 1978 + + 66 + + + + + India, 1984-1985 + + 66 + + + + + Miscellaneous travel (2 folders), scattered dates + + 66 + + + + + + Miscellaneous scattered pieces, 1974-2004, undated + + 66 + + +
    + + + Notes and jottings + + + + Health related, undated + + 66 + + + + + Telephone messages, ca. 1976 + + 66 + + + + + Miscellaneous printouts undated + + 66 + + + + + Miscellaneous (4 folders), undated + + 67 + + + + + + Wedding with Lewis Warsh, 1967 + + 67 + + + + + Wedding with Ed Bowes schedule with script, August 2, 2003 + + 67 + + + + + Friends Seminary (High School) + + + + Coursework + + + + Papers and reports, 1959-1962 + + 67 + + + + + English quizzes, worksheets, and notes, 1960-1961, undated + + 67 + + + + + History timelines, undated + + 67 + + + + + Multiple subject notebook, 1958 + + 67 + + + + + Multiple subject notebook, 1961-1962 + + 67 + + + + + American history notebook, undated + + 67 + + + + + Chemistry lab reports, 1960 + + 67 + + + + + Miscellaneous and unidentified notes and assignments, undated + + 67 + + + + + + Diploma and commencement material, 1962 + + 67 + + + + + Newsletter, directory, and printed material + 67 + + + + + Writing + + + + Poetry manuscripts, 1958-1960 + + 67 + + + + + Quest Literary Magazine, 1960-1962 + + 67 + + + + + The Stove: Friends Seminary literary magazine, Waldman contributor, 1958-1962 + + 67 + + + + + The Oblivion: Friends Seminary newspaper, Waldman contributor and editor + + + + Submissions and production material, 1961, undated + + 67 + + + + + Page mock-ups, 1960-1961 + + 67 + + + + + Proofs, undated + + 67 + + + + + Published newspaper, 1955-1962 + + 67 + + + + + + + Report Card, 1959 + + 67 + + + + + Yearbook, 1959 + + 67 + + + + + Miscellaneous and unidentified, 1959, undated + + 67 + + + + + + Correspondence, 1996 + + 67 + + +
    + + + Early Years + + +

    The Early Years series contains 2 linear feet of material documenting Waldman's school years, as well as her early interests in writing, acting and drama.

    +

    + + + + Pre-High School + + + + Autograph book, P.S. 8, 1956 + + 67 + + + + + Grace Church School diploma and commencement material, 1956 + + 67 + + + + + Music recitals, 1955-1956 + + 67 + + + + + Third grade composition book and vocabulary book, undated + + 67 + + + + + Writing + + + + "Our Life and Times": Family Newsletter, 1955 + + 67 + + + + + "The Penguin News": childhood newsletter, undated + + 67 + + + + + The Scribbler: school publication including Waldman writing, 1957 + + 67 + + + + + + Miscellaneous, 1955-1958, undated + + 67 + + + + + + Bennington College + + + + Clippings, 1965, undated + + 68 + + + + + Commencement program, 1966 + + 68 + + + + + Course descriptions and printed material, 1962-1966 + + 68 + + + + + Event programs and announcements, 1963-1964, undated + + 68 + + + + + Grade reports, 1962-1966 + + 68 + + + + + Notes, notebooks, and handouts + + + + Shakespeare, 1965 + + 68 + + + + + Poetry and Theory, undated + + 68 + + + + + Spoken English, undated + + 68 + + + + + Introduction to French Literature, 1963 + + 68 + + + + + Form and Milieu in Art, 1964 + + 68 + + + + + Blues lyrics handout with notes, undated + + 68 + + + + + + Papers (2 folders), 1962-1966 + + 68 + + + + + Professor comments and correspondence, 1966, undated + + 68 + + + + + Miscellaneous, 1964, undated + + 68 + + + + + + Acting and Theater + + + + Children's Theatre of Greenwich House, 1956-1962 + + 68 + + + + + Senior Play, 1962 + + 68 + + + + + American Shakespeare Festival, 1961-1963 + + 68 + + + + + Philadelphia Theater for Children, 1963 + + 68 + + + + + Bennington: various productions, 1964-1966 + + 68 + + + + + "The Snipers," 1966 + + 68 + + + + + Acting resumes, 1961-1966 + + 68 + + + + + Tiara from childhood play, undated + + 68 + + + + + Miscellaneous and unidentified scripts, undated + + 68 + + + + + + Early and Unidentified Writings + + + + Poetry, undated + + 68 + + + + + Prose, undated + + 68 + + + + + School papers and notes, undated + + 68 + + + + + + Correspondence + + + + 1956-1960, undated (7 folders) + 68 + + + + + 1961-1962, undated (6 folders) + 69 + + + + + School notes and love poems (primarily to Anne Waldman), undated + + 69 + + + + + + + Family + + +

    The Family series (approximately 4 linear feet and 1 oversize box) includes material related to Waldman's mother, father, brother, son and other relatives. The bulk of the series is comprised of material created by, or related to Waldman's mother, Frances Waldman.

    +

    Although the majority of the material related to other family members is correspondence, manuscripts and other material can also be found in the series. Of special note are the manuscripts found with the Ambrose Bye material, which include some poems written with or transcribed by Anne Waldman.

    +
    + + + Frances Waldman + + + + Correspondence + + + + Anne Waldman, outgoing (17 folders), 1958-1977 + + 69 + + + + + Anne Waldman, outgoing (5 folders), 1978-1981, undated + + 70 + + + + + Anne Waldman, outgoing, empty envelopes (2 folders), scattered dates + + 70 + + + + + Anne Waldman, incoming (2 folders), 1955-1980, undated + + 70 + + + + + Other correspondents (7 folders), 1924-1982, undated + + 70 + + + + + + Manuscripts and translations + + + + "The Border Guards: Poems of the Greek Resistance," 1980 + + 71 + + + + + "Christ in Rome" (2 folders) undated + + 71 + + + + + "Mikos Theodorakis: The Broken Revolution" (2 folders), 1970, undated + + 71 + + + + + Cesar Moro poems, undated + + 71 + + + + + Miscellaneous (3 folders), 1966-1977, undated + + 71 + + + + + + Printed material, 1973 + + 71 + + + + + Miscellaneous + + + + Letters to Alice LeFevre (1 folder) 1910-1937 + + 71 + + + + + Birth certificate and family bible information, 1942, undated + + 71 + + + + + Christmas card list and envelopes, 1971 + + 71 + + + + + Church of the Ascension, 1979-1981, undated + + 71 + + + + + Condolence letters to Anne Waldman on death of Frances Waldman, 1982 + + 71 + + + + + Greek material, 1972-1977, undated + + 71 + + + + + Handmade cards from Anne Waldman, 1948, undated + + 71 + + + + + New Year's Eve party list, 1980 + + 71 + + + + + Play, "Joan of Arc: A Spiritual Entertainment," 1979 + + 71 + + + + + Programs and invitations, 1966-1982 + + 71 + + + + + Spanish class, undated + + 71 + + + + + Fragments, notes and miscellaneous, scattered dates + + 71 + + + + + + + John Waldman + + + + Birth certificate: photocopy, 1907 + + 71 + + + + + College and University Business article, 1952 + + 71 + + + + + Pace College yearbook and printed material, scattered dates + + 71 + + + + + Miscellaneous, undated + + 71 + + + + + Correspondence + + + + Anne Waldman (outgoing) (5 folders), 1961-1994, undated + + 72 + + + + + Anne Waldman (incoming) (3 folders), 1956-1992, undated + + 72 + + + + + Frances Waldman, 1978, undated + + 72 + + + + + Other correspondents, 1974-1993, undated + + 72 + + + + + + + Carl Waldman + + + + Correspondence with Anne Waldman (2 folders), 1964-2009, undated + + 72 + + + + + Manuscripts, 1969, undated + + 72 + + + + + School material, 1957-1963 + + 72 + + + + + Miscellaneous, undated + + 72 + + + + + + Ed Bowes + + + + E-mail, 2003, 2008 + + 72 + + + + + Interview by Anne Waldman, "Inside Consciousness, Conversation with Ed Bowes," first draft, undated + + 72 + + + + + + Ambrose Bye + + + + Correspondence + + + + Anne Waldman, 1993-1996, undated + + 72 + + + + + Other correspondents, 1990-1993, undated + + 72 + + + + + + Manuscripts + + + + A Day in the Life manuscripts and production material, undated + + 72 + + + + + Miscellaneous manuscripts (some with Anne Waldman), 1982-1985, undated + + 72 + + + + + School Papers, 1994, undated + + 72 + + + + + + Handmade cards for Anne Waldman, undated + + 72 + + + + + Recording collaborations with Anne Waldman + 72 + + + + + Miscellaneous + 72 + + + + + + Ted Waldman + + + + Correspondence, 1982 + + 72 + + + + + + Ruth Le Fevre + + + + Correspondence, 1964-1973, undated + + 72 + + + + + Manuscripts, undated + + 72 + + + + + Clippings, 1920s, 1930s + + 72 + + + + + Scripts and plays, 1934-1939, undated + + 72 + + + +
    + + + Handmade Books + + +

    The Handmade Books series (3 linear feet) is comprised of one-of-a-kind books made by Waldman and her friends. Often they were presented as gifts on special occasions. They are divided into three subseries: Anne Waldman, representing books by Waldman; Collaborations, representing collaborations between Waldman and others; and Others, that is, works by others.

    +

    + + + + Anne Waldman + + + + A Novel: appropriation of a tiny paintbox, colophon reads "Gulf War, USA, Laugh NO Tears Press," undated + + 73 + + + + + A Ritual Poem to Please Mothers, #2 of 2, 1994 + + 73 + + + + + Baby's Pantoum, Christmas 1980 + + 73 + + + + + Birthday Sestina, undated + + 73 + + + + + Birthday Sonnet and Three Recent Poems, March 3, 1988 + + 73 + + + + + Blue Iznic Tile Recompense, 1995 + + 73 + + + + + Book of Squares and Rectangles, June 1969 + + 73 + + + + + Change Fire City Nap: appropriation of a tourist map of Florence, Italy, May 1998 + + 73 + + + + + Chen: appropriation, ca. 1995 + + 73 + + + + + Clock, undated + + 73 + + + + + Con Afecto Sincero [or + South America ], 1972 + + 73 + + + + + Dominoes: a little book of poems for Frances on her birthday, March 3, 1970 + + 73 + + + + + 8 Poems, Christmas 1972 + + 73 + + + + + Fast Speaking Woman: calligraphy edition hand-lettered and inked by Moira Collins, 1975 + + 73 + + + + + Feminafesto, 2011 + + 73 + + + + + I Like the Tinge Is Fresh, undated + + 73 + + + + + I Wrote This in the Country, March 1973 + + 73 + + + + + Image of a Saint, undated + + 73 + + + + + Inside Dallas, November 19, 1971 + + 73 + + + + + Interstices of (Female) Imagination, #2 of 50, signed, Erudite Fangs Press, Boulder, 1993 + + 73 + + + + + Little Arrows, 1979 + + 73 + + + + + Little Book for Hannah Weiner, 1997 + + 73 + + + + + Little Clarier Book. Venice, Italia, February 25, 2008 + + 73 + + + + + Maghreb: Au Lit/Holy: The Poems of Lesley Lefevre, undated + + 73 + + + + + Makeshift (little poems), for Joe, pre-birthday 1971 + + 73 + + + + + Marriage Poem for Mark and Kay [or + Epithalamium ], May 1994 + + 73 + + + + + May a Rain: appropriation, 1994 + + 73 + + + + + Memoirs of an Elephant, May 14, 1970 + + 73 + + + + + Men: appropriation, Malaysia Books, 1996 + + 73 + + + + + Mother and Child, 1989, 1993 + + 73 + + + + + New Day, June 11, 1968 + + 73 + + + + + Occasion, 1980 + + 73 + + + + + One in a Million, 1972 + + 73 + + + + + Piccolo: appropriation, undated + + 73 + + + + + Poems and Pictures, June 11, 1971 + + 73 + + + + + Power Booth, undated + + 73 + + + + + Red, 1990 + + 73 + + + + + Reed Bye Birthday Schedule, 1979 + + 73 + + + + + Seattle, November 20-21, 1972 + 73 + + + + + 6 Young Poems for Joe Brainard, 1971 + + 73 + + + + + Sleep Shade, Erudite Fangs Press, in an edition of 2 copies, 1994 + + 73 + + + + + Thirty One Leaves for Autumn, 1979 + + 73 + + + + + 3 Poems with Sports, 1971 + + 73 + + + + + To the Poet Turning 30, 1978 + + 73 + + + + + Train Compositions for Joe Brainard, 1971 + + 73 + + + + + Upadessa: Cycle of Desire, Rigpa Editions, 1994 + + 73 + + + + + Was Any Exit A Very Large Gulf: a novel, undated + + 73 + + + + + Untitled + + + + "Announcing," March 11, 1969 + + 73 + + + + + "for my beloved Reed Bye," February 1978-September 1978 + + 73 + + + + + Birthday card, June 11, 1964 + + 73 + + + + + "Radio and Television Coverage Welcomed": scrapbook/journal, undated + + 73 + + + + + Notebook with glued-in images, undated + + 73 + + + + + Telephone messages with beadwork cover, 1967 + + 73 + + + + + + + Collaborations + + + + Brainard, Joe + + + + Real Life, 1967 + + 74 + + + + + Untitled journals, undated + + 74 + + + + + + Bye, Ambrose. + Galvanometer Alphabet Poem, 1994 + + 74 + + + + + Riley, Naomi L. + Plane Ride (Anne Waldman's goddaughter), August 19, 1978 + + 74 + + + + + Schelling, Althea. + The Silver and the Gold, Election Day Press, Boulder, 1996 + + 74 + + + + + Schelling, Althea (photographer). + Desdemona. Six Strokes of Sarasvati an edition of 7, 2007 + + 74 + + + + + Schelling, Andrew. + Epithalamium (attached note, "coll. w/Andrew Schelling for Julia Connor [and] Jim Anderson's Marriage"), April 2001 + + 74 + + + + + Schelling, Andrew. + Sources of Poetry, Zen Mountain Monastery, April 10, 1992-April 12, 1992 + + 74 + + + + + Schneeman, (?). + Dear Elizabeth. Words by Ed Bruce. Inscribed "for Ed December 07, 2008". + 74 + + + + + Author(s) unknown. + Athens, ca. 1969 + + 74 + + + + + Quaalude (facsimile). Inscribed "Happy Birthday and Love, Anne and Joe". Calais, Vermont, August 1973 + + 74 + + + + + Various authors. Ambrose Bye's baby book: scrapbooks compiled with many contributions from Anne Waldman, Reed Bye, and friends; includes wedding photos of Anne and Reed (scanned facsimile), 1980-1981 + + 74 + + + + + Collection 1967 + + + + + Berrigan, Ted + + + + The Adventures of Wonder Woman + 74 + + + + + The Michael Brownstein Story + 74 + + + + + + Brownstein, Michael + + + + A Hunter's Prayer + 74 + + + + + The Fucking Story + 74 + + + + + + Dennis, Donna. [title: illustration of an empty speech balloon] + 74 + + + + + Fagin, Larry and Inglis, Joan. + 3 Fam Sto + 74 + + + + + Padgett, Ron. + New York Poets + 74 + + + + + Ricard, Rene + + + + a comedy of errors + 74 + + + + + The Mother of Necessity + 74 + + + + + + Schjeldahl, Peter. + Killed + 74 + + + + + Waldman, Anne + + + + Angel Hair Records 1967 + 74 + + + + + Book Rate + 74 + + + + + The Silver Box + 74 + + + + + The Ted Berrigan Story + 74 + + + + + + Waldman, Anne and Berrigan, Ted. + The Lew Warsh Story + 74 + + + + + Warsh, Lewis. + 2 Poems + 74 + + + + + + + Others + + + + Baraka, Amina and Baraka, Amiri. + 5 Boptrees: hand-colored photocopy, 1992 + + 74 + + + + + Berkson, Bill + + + + Latest Works, April 2, 1974 + + 74 + + + + + Quiet World, 1971 + + 74 + + + + + Silver, November 27, 1970 + + 74 + + + + + Telephone Message, 1971 + + 74 + + + + + + Berkson, Bill; Carroll, Jim; Fagin, Larry; Veitch, Tom. + Things We'd Like to Do to Anne Waldman, April 2, 1970 + + 74 + + + + + Berkson, Bill; Brownstein, Michael; Padgett, Ron. On cover: "Dear Michael, here are two of the Brenda Poems," February 18, 1969 + + 74 + + + + + Berrigan, David; Berrigan, Kate; and Berrigan, Sandy. + A Picture Book for Anne, undated + + 74 + + + + + Berrigan, Ted + + + + A Boke for Anne and Lewis on their Wedding, ca. 1967 + + 74 + + +

    (with contributions from many others)

    + + + + + How to Do a Sonnet etc., 1967 + + 74 + + + + + A Little Birthday Bouquet for Anne, 1974 + + 74 + + + + + Xmas Art Boke for Anne and Lewis, 1967 + + 74 + + + + + + Berrigan, Ted and Brainard, Joe. + The Drunken Boat: photocopy of published work, 1974 + + 74 + + + + + Berrigan, Ted; Brainard, Joe; Notley, Alice; Dine, Jim; et al.? Untitled. Folder of art and poetry for Anne Waldman and Michael Brownstein (cover and perhaps some of the artwork by Jim Dine), ca. 1970 + + 74 + + + + + Black, Noel A. November to June, 2000 + + 74 + + + + + Brainard, Joe + + + + For You From Me, undated + + 74 + + + + + 10 Mini-Essays for Anne With Love, Joe, Christmas 1972 + + 74 + + + + + Some Train Notes, February 10, 1971 + + 74 + + + + + Correspondence, Ron Padgett to Anne Waldman re gift of handmade books by Joe for Anne, May 30, 1994 + + 74 + + + + + Purple book for Anne undated + + 74 + + + + + + Brainard, Joe and Hall, Steven. + Love My Lover, A Valentine for Anne, undated + + 74 + + + + + Brownstein, Michael. + IS IT?, undated + + 74 + + + + + Bye, Ambrose. A Day in the Life, 1993 + + 74 + + + + + Bye, Reed + + + + Anne's April 2 1979 Birthday Book, April 2, 1979 + + 74 + + + + + April for Anne, 1981 + + 74 + + + + + Birthday Book, "A Cottage Book," 1980 + + 74 + + + + + 13 Favardin (Birthday in Teheran), 1982 + + 74 + + + + + + Clark, Tom + + + + Crying in the Chapel, 1967 + + 74 + + + + + Disappearing Usages, 1970 + + 74 + + + + + + Clark, Tom and Clark, Angelica. + Xmas Book for Anne and Lewis from Tom and Angelica, 1968 + + 74 + + + + + (Davis, Ken Angel), + Spectrums: Watercolor, 2009 + + 74 + + + + + Dunn, Douglas + + + + A letter to Anne, undated + + 74 + + + + + Alta Souvenir, July 20, 1979 + + 74 + + + + + arms folded, 2009 + + 74 + + + + + [Best Rest], September 1977 + + 74 + + + + + This Little Book, 1977 + + 74 + + + + + Untitled, cover "Anne," inscription "for Anne toward 1980. love, Doug," undated + + 74 + + + + + Untitled, April 29, 1979 + + 74 + + + + + + Elmslie, Kenward and Brainard, Joe. + The Baby Book: published work with art and other handmade additions, 1965, ca. 1980 + + 75 + + + + + Evans, Curtis and Hundausen, Evan, eds. + Anne Waldman Cereal: zine from Naropa Summer Writing Program, 2000 + + 75 + + + + + Fagin, Larry, with photos by Rudy Burckhardt. + Poems 1970, 1970 + + 75 + + + + + Gatza, Geoffrey. + A Poem: Fantasia Lights. Poem inside a small cigarrette box, undated + + 75 + + + + + Hejinian, Lyn. + The Unfollowed, 2011 + + 75 + + + + + Holland, Joyce, ed. + Matchbook: rare serial, No. E and H, undated + + 75 + + + + + Hollo, Anselm and Hollo, Jane. + Zoaire's Poem: handmade greeting card, 1995 + + 75 + + + + + Hubbard, Elbert and Willis, Elizabeth. + Little Journeys, 1998 + + 75 + + + + + Kane, Daniel; Kane, Gillian and Wakefield, Stacy. + All the Aldas, August 08, 2002 + + 75 + + + + + Kite, Mary. + Tyro, March 24, 2006 + + 75 + + + + + Michaelis, Catherine. + May Day Customs and Beliefs, 2002 + + 75 + + + + + Notley, Alice. + Anne, 1974 + + 75 + + + + + Padgett, Ron + + + + An Adventures in Poetry Pirate Edition, 1972 + + 75 + + + + + True Facts from Nature: For Anne, April 1974 + + 75 + + + + + wishing you a good year, April 1971 + + 75 + + + + + + Ricard, Rene. + The Rose Without Thorns (in metal box, along with photograph of Bill Berkson in 19th-century attire), undated + + 75 + + + + + Scalapino, Leslie; Estrin, Jerry; Davies, Alan; Moriarty, Laura; Cole, Norma; Howe, Fanny. + War: limited edition publication, O Books, "0/3," ca. 1991-1993 + + 75 + + + + + Schelling, Andrew + + + + Right in the Pocket, December, 1998 + + 75 + + + + + Winter Solstice Poems 1991-1992 + + 75 + + + + + Dates in December: A Valentine for Anne, February 1996 + + 75 + + + + + Six Haibun for The Turning Seasons 2000 + + 75 + + + + + + Schiff, Harris. + Secret Clouds: original typed manuscript edition later published by Angel Hair Books, 1969 + + 75 + + + + + Schjeldahl, Peter. + Think About That!, undated + + 75 + + + + + Searls, Damion. A History of Printing in America, 2003 + + 75 + + + + + Sikelianos, Eleni and Hunt, Laird. + L &E, September 03, 2000 + + 75 + + + + + Ulmer, Spring. + Older than Trains, undated + + 75 + + + + + Warsh, Lewis + + + + Life After Death, 1971 + + 75 + + + + + The Little Red Book #4, September 1996 + + 75 + + + + + Stash, 1970 + + 75 + + + + + Targets, April 2, 1971 + + 75 + + + + + True Colors, 1970 + + 75 + + + + + Warsh, Lewis, with contributions from Dennis, Donna; Lesser, Eugene; Snyder, Gary; Creeley, Robert; et al.? + Birthday Book, 1970 + + 75 + + + + + + Wille, Andrew. + See Also and + Look at Him. Miniature book, 2006 + + 75 + + + + + Yates, Katie. + Is It Happening: limited run publication, BOOG Literature, 1992 + + 75 + + + + + Naropa print workshop and letter press class projects (6 folders), 1999 + + 75 + + + + + Unidentified. MA TA FA UA, undated + + 75 + + + + + Untitled: scrapbook for Anne Waldman, started for her birthday with contributions from various friends, ca. 1970-1972 + + 76 + + + +
    + + + Printed Material + + +

    The Printed Material series (4 linear feet, 1 oversize box, 1 portfolio) encompasses the subseries Broadsides; Posters, Flyers, and Programs; and Clippings.

    +

    Broadsides are broken down into those by Anne Waldman, Collaborations (between Waldman and others), and Others--that is, works by others. Material in the Posters, Flyers, and Programs subseries is for the most part grouped chronologically. Separate, topical divisions have been made for undated material. Clippings are arranged in rough chronological order by decade, where date is known.

    +
    + + + Broadsides + + + + Anne Waldman + 77 + + + + + Collaborations + 77 + + + + + Others + + + + A-L + 77 + + + + + M-Z and unidentified + 77 + + + + + + Postcards and Bookmarks + 77 + + + + + Card game/sayings + 77 + + + + + + Posters, Flyers, and Programs + + + + 1960s (2 folders) + 77 + + + + + 1970s + + + + 1970-1971 + 77 + + + + + 1972-1973 + 77 + + + + + 1974-1976 + 77 + + + + + 1977-1978 + 77 + + + + + 1979 + 77 + + + + + c. 1960s/1970s + 77 + + + + + + 1980s + + + + 1980-1981 + 77 + + + + + 1982-1984 + 77 + + + + + 1985-1989 + 77 + + + + + c.1980s + 77 + + + + + + 1990s + + + + 1990-1991 + 77 + + + + + 1992-1993 + 77 + + + + + 1994-1999 + 78 + + + + + c.1990s + 78 + + + + + + 2000s (7 folders) + 78 + + + + + Material (by topic) Undated + + + + + Book publication announcements + 78 + + + + + Boulder (includes Naropa) + 78 + + + + + Buddhist-related + 78 + + + + + City Lights, undated + + 78 + + + + + Douglas Dunn, undated + + 78 + + + + + Giorno Poetry Systems, ca. 1978-? + + 78 + + + + + 98 Greene St. Loft, NY + 78 + + + + + The Poetry Project at St. Mark's, undated + + 78 + + + + + Postcards: artist exhibition announcements, etc. + 78 + + + + + Miscellaneous (3 folders), + 78 + + + + + + Book Presses: catalogs, publicity, etc. + + + + City Lights Books, 1975-1997 + + 78 + + + + + New York State Small Press Association, 1977-1978 + + 78 + + + + + Toothpaste Press/Coffee House Press, 1979-2002 + + 78 + + + + + Z Press, Kenward Elmslie, 1977-1980, undated + + 79 + + + + + Other + + + + A-L + 79 + + + + + M-Z + 79 + + + + + + + Newsletters + + + + 1970s (2 folders) + 79 + + + + + 1980s + 79 + + + + + 1990s (2 folders) + 79 + + + + + 2000s (3 folders) + 79 + + + + + Folklore Center, 1966-1968 + + 79 + + + + + Quadrille: Bennington College alumni newsletter, 1969-1976 + + 79 + + + + + + + Clippings + + + + 1960s (2 folders) + 79 + + + + + 1970s (15 folders) + 79 + + + + + 1970s (3 of 15 folders) + 80 + + + + + 1980s (12 folders) + 80 + + + + + 1990s (6 folders) + 80 + + + + + 2000s (2 folders) + 80 + + + + + Undated (3 folders) + 80 + + + + + Miscellaneous articles and printouts (3 folders) + 80 + + + +
    + + + Art + + +

    (stored in boxes 81, 82, 99-108, and one portfolio; grouped by size and/or medium)

    +
    + +

    Art (1 linear foot, 10 oversize boxes, and 1 portfolio) is made up of artworks by Waldman and her family and friends, as well as various pieces she has collected over the years. Work in many different media exists, including prints, paintings, sketches, drawings, and collages.

    +
    + + + Baumann, Verena. Untitled watercolor. "Painting by Swiss artist Verena Baumann at George Schneeman's funeral." New York City, 2009 + + 81 + + + + + Beltrametti, Franco. + portraits de trobairitz, 1991 + + 81 + + + + + Berrigan, Ted. + Hi folks: ballpoint pen + 81 + + + + + Blatter, Wolf Dietrich. 2 photo collages, 1993 + + 81 + + + + + Brainard, Joe + + + + Poems [heart drawing]: collage & mixed media, Valentine's Day 1978 + + 81 + + + + + "Sigh": pen & ink drawing, undated + + 81 + + +

    (cover art?)

    +
    +
    + + + Drawing of a cherry: pen + 81 + + +
    + + + Brownstein, Michael. "Is Being Forged": drawing, felt tip pen + 81 + + + + + Bye, Reed? [Anne Waldman's guess]. 2 watercolors + 81 + + + + + Cole, Norma. "Porno Murder: We Poetry": photocopy, 1995 + + 81 + + + + + Copp, Fletcher. + Artist Hero Series: Giotto, collage, 1977 + + 81 + + + + + Dunn, Douglas. + + + + Appropriation of Red Grooms catalog, 1976 + + 81 + + + + + Here's a piece of my ceiling: collage, mixed media, undated + + 81 + + + + + + Elovich, Richard (secretary to William S. Burroughs). Collage, undated + + 81 + + + + + Fagin, Larry. "When I think of the thought machines I whistle softly to myself": collage, 1973 + + 81 + + + + + Gross, Mimi + + + + Three portrait sketches of Anselm Berrigan, undated + + 81 + + + + + Dharamsala, India, copies of sketches 2008 + + 81 + + + + + + Guttman, Kaitlyn. "Third Mind" workshop booklet cover: collage, 1993 + + 81 + + + + + Jacquette, Yvonne. "To Anne (Xerox print)": photocopy, undated + + 81 + + + + + Kearney, Tapa. + Ridiculous Interiors: photo collage + 81 + + + + + Notley, Alice and Oliver, Doug. Watercolor card and letter + 81 + + + + + Pittore, Carlo. Stamp art, photocopies of sketches, flyer, 1986, undated + + 81 + + + + + Smith, Jesse (Patti Smith's daughter). Card decorated with chewing gum sticks, 2000 + + 81 + + + + + Smith, Patti. First line reads "devotions. to Arthur Rimbaud": print, #20, undated + + 81 + + + + + Trungpa, Chogyam, Rinpoche. Calligraphy, undated + + 81 + + + + + Waldman, Anne + + + + "'Birthday Collage' for DADDY," collage on cardboard, 1978 + + 81 + + + + + "Hand of the Poet": handprint, undated + + 81 + + + + + "pearl of red ceiling": collage, undated + + 81 + + + + + "Self Portrait," ca. 1973 + + 81 + + + + + Drawing with caption "TV Sleep," undated + + 81 + + + + + Footprint, undated + + 81 + + + + + Landscape: drawing, 1969 + + 81 + + + + + Original cover for limited edition of + So Help Me Sappho: collage, undated + + 81 + + + + + Cutout collages (2 folders), ca. 1966 + + 81 + + + + + Birthday collage and poem for Reed Bye, 1980 + + 81 + + + + + Miscellaneous, 1991 + + 81 + + + + + + Waldman, Anne and Clark, Tom. Miscellaneous drawings and writings, undated + + 81 + + + + + Waldman, Anne and Englebardt, Jill. copy of painting with writing on cardstock, undated + + 81 + + + + + Waldman, Anne and Giorno, John. Poem on construction paper, April 17, 1971 + + 81 + + + + + Waldman, Anne; Bye, Reed; Bye, Ambrose; Hawkins, Bobbie Louise; et al.? Exquisite corpse drawings and poems (2 folders), ca. 1980s + + 81 + + + + + Wilkie, Britton, "For 'In April '--3 illustrations": pen & ink drawings and pencil sketch of Anne Waldman, undated + + 81 + + + + + Various authors and unidentified. Reproductions: Jacquette, Yvonne; Stanton, Susan; Freilicher, Jane; Baxter, Glen; Waldman, Anne; and unidentified. Mimeographs and photocopies of sketches and drawings + 81 + + + + + Miscellaneous, 1991, undated + + 81 + + + + + Unidentified + + + + G______? [illegible], Ann. [possibly Ann Lauterbach?] "Crack in the World": color drawing (cover?) with wax additions, 1987 + + 81 + + + + + L___? [illegible]. Birthday card for Anne: drawing, undated + + 81 + + + + + _____?, Angela and _____?, Ebbe [last names not given]. Wedding invitation, "Angela and Ebbe": felt tip pen, undated + + 81 + + + + + [Schneeman, George?] + Hi Anne: pen & ink drawing + 81 + + + + + "So are you!": photograph with text, undated + + 81 + + + + + Painting: red flowers, undated + + 81 + + + + + Skeleton print, undated + + 81 + + + + + Collage, undated + + 81 + + + + + Miscellaneous drawings (includes drawings possibly by Joe Brainard and George Schneeman), (2 folders), 1970, undated + + 81 + + + + + Miscellaneous watercolors, undated + + 81 + + + + + Miscellaneous art in silk folder, undated + + 82 + + + + + Oil painting. + Rene WW?, 1967 + + 82 + + + +
    + + + Photographs, Slides, and Negatives + + +

    The Photographs, Slides and Negatives series consists of approximately 2.5 linear feet of photographic materials documenting a variety of subjects, including Waldman's childhood and school years, her large circle of friends and colleagues, and her publishing and performance activities.

    +
    + + + Photographs + + Photographs + + + + + Personal + + + + Family and childhood, 1946-1976, undated + + 83 + + + + + High school and college, 1959-1963, undated + + 83 + + + + + Anne Waldman snapshots and informal photographs, 1969-1982, undated + + 83 + + + + + Friends and colleagues (6 folders), 1966-1997, undated + + 83 + + 6.0 folders + + + + + + Artwork, 1987, undated + + 83 + + + + + Miscellaneous and unidentified, 1970-2003, undated + + 83 + + + + + + Professional + + + + Naropa Institute, 1982-1998, undated + + 83 + + + + + Performances and speaking engagements (5 folders), 1969-1996, undated + + 83 + + + + + Performances by others + 83 + + + + + Allen Ginsberg, undated + + 83 + + + + + Lawrence Ferlinghetti and John Giorno, 1998 + + 83 + + + + + Douglas Dunn, 1975-1976, undated + + 83 + + + + + Portraits (4 folders), 1966-1991, undated + + 83 + + + + + Publishing and book cover photographs + + + + Baby Breakdown, 1968 + + 83 + + + + + No Hassles, 1971 + + 83 + + + + + First Baby Poems, 1983 + + 83 + + + + + Identikit (Jim Brody), undated + + 83 + + + + + Photograph of Cesar Moro for Frances Waldman book of translations, undated + + 83 + + + + + + Rolling Thunder Revue, 1976 + + 83 + + + + + St. Mark's Poetry Project, 1968-1997 + + 83 + + + + + Schule für Dichtung in Wien, 1992-1994 + + 83 + + + + + + + Slides and Negatives + + + + Performances, undated + + 84 + + + + + Personal + + + + Jerry Hiler photographs of Ambrose Bye on 5th Avenue, New York, 1983 + + 84 + + + + + Miscellaneous negatives, undated + + 84 + + + + + + Miscellaneous slides, undated + + 84 + + + + + + Albums and Scrapbooks + + + + Album (includes travel to Egypt and Greece), ca. 1963 + + 84 + + + + + Hand-bound scrapbook (includes photos of Anne Waldman, Lewis Warsh, Waldman/Warsh Wedding, Ted Berrigan, Tom Clark, Lee Harwood, Jonathan Cott, Martha Rockwell and others), ca. 1966-1967 + + 84 + + + + + Album, (includes photos of Anne Waldman, Lewis Warsh, Joe Brainard, Michael Brownstein, others) 1960s + + 84 + + + + + Scrapbook (includes photos of Ted Berrigan, Lewis Warsh, Tom and Angelica Clark, Kenward Elmslie, Joe Brainard, Michael Brownstein, Bill Berkson, Lewis MacAdams, and others), ca. 1970-1971 + + 84 + + + + + Album (includes photo of Anne Waldman, Michael Brownstein, Ron Padgett, Dick Gallup, Nick Dorsky), ca. early 1970s + + 84 + + + +
    + + + Audiovisual + + +

    The Audiovisual Series has been divided into four subseries: Sound Recordings, Video Tapes, DVDs, and Digital Files. The series provides a unique perspective on Waldman's activities, and thus complements and expands the manuscript and photographic holdings. Including recordings of readings, lectures, and interviews given by Waldman and others, the series strongly represents the sounds and voices of late 20th century American poetry.

    +
    + + + Sound Recordings + + + + LPs and 45s + + + + (WALDPHON-1) "John Giorno and Anne Waldman" (Giorno Poetry Systems, GPS-010-011), 1977 + + 85 + + 12 inch, 33 rpm) + + + + + + (WALDPHON-2, WALDPHON-3 and WALDPHON-4) Anne Waldman, "Uh-Oh Plutonium" (Hyacinth Girls Music, HG 001), 1982 + + 85 + + 3.0 copies + + + 7 inch, 45 rpm) + + + + + + (WALDPHON-5) Labeled "Anne Waldman and Michael Brownstein," undated + + 85 + + 6 inch, 45 rpm "voice-o-graph" recording) + + + + + + (WALDPHON-6) Bob Dylan "George Jackson," labeled "given to me by Bob Dylan, November 1971" (Columbia, 4-45516), 1971 + + 85 + + 7 inch, 45 rpm) + + + + + + + Reels + + +

    (Open reel tapes have been reformatted to compact disc. Request corresponding CD-R copies WALDCDR-1 through WALDCDR-9.)

    +
    + + + (WALDRR-1)"Channel 13 program on Frank O'Hara and Ed Sanders" (CD access copy available as WALDCDR-1), 1966 + + 85 + + 7 inch reel, 3 ¾ ips + + + + + + (WALDRR-2) "Anne Waldman recording for Architectural League Event" (CD access copy available as WALDCDR-2), 1968 + + 85 + + 5 inch reel, ? ips + + + + + + (WALDRR-3) "Brain/Baby: The Poetries of Michael Brownstein and Anne Waldman (KPFA-FM Radio, Berkeley, CA) (CD access copy available as WALDCDR-3), 1971 + + 85 + + 10 inch reel, ? ips + + + + + + (WALDRR-4) Anne Waldman poetry reading on WUOM, Ann Arbor (CD access copy available as WALDCDR-4), 1971 + + 85 + + 7 inch reel, 3 ¾ ips + + + + + + (WALDRR-5) Anne Waldman "Fast Speaking Woman" (S Press Tapes, no. 55) (CD access copy available as WALDCDR-5), 1977 + + 85 + + 5 inch reel, ? ips + + + + + + (WALDRR-6) "Anne Waldman Musical Garden" (CD access copy available as WALDCDR-6), 1988 + + 85 + + 5 inch reel, 15 ips + + + + + + (WALDRR-7) "Anne Waldman England Drama" (includes Lady Anne's speech from Richard III, Act I, Scene II, and Solange from the Maids by Jean Genet) (CD access copy available as WALDCDR-7), undated + + 85 + + 5 inch reel, ? ips + + + + + + (WALDRR-8) "Ann Waldman" (CD access copy available as WALDCDR-8), undated + + 85 + + 7 inch reel, 15 ips + + + + + + (WALDRR-9) Unidentified reel (CD access copy available as WALDCDR-9), undated + + 85 + + 7 inch Reel, ? ips + + + +
    + + + Compact Discs + + + + (WALDCD-1 and WALDCD-2) "Anne Waldman, Recorded Live in Amsterdam 6-2-91": includes wood case and booklet (Soyo Records), 1991 + + 85 + + 2.0 copies + + + + + + (WALDCD-3) Anne Waldman, "Alchemical Elegy: Selected Songs and Writings" (Fast Speaking Music), 2001 + + 85 + + + + + (WALDCD-4) Anne Waldman, Romantic Poems, undated + + 85 + + + + + (WALDCD-5) Allen Ginsberg, interviewed by Jack Foley, KPFA, October 4, 1996 + + 85 + + + + + (WALDCD-6) Anne Waldman and Andrew Schelling, "Northwestern Exposure", the Legacy of Allen Ginsberg, April 22, 2001 + + 85 + + + + + (WALDCD-7) Anne Waldman with Paul Nelson, "Northwestern Exposure", Oppositional Poetics, May 11, 2002 + + 85 + + + + + (WALDCD-8 and WALDCD-9) Bob Dylan Tribute, Town Hall, May 19, 2001 + + 85 + + + + + (WALDCD-10) Anne Waldman, "Battery," December 17, 2002 + + 85 + + + + + (WALDCD-11) Anne Waldman and Cecelia Woloch, MFA Poetry Reading, January 6, 2003 + + 85 + + + + + (WALDCD-12) "Anne Waldman, Rhizomic & Radical Poetics," January 7, 2003 + + 85 + + + + + (WALDCD-13) New England College MFA Poetry Program, MPE Audio Compilation, Faculty and Student Lectures, January 2007 + + 85 + + + + + (WALDCD-14 and WALDCD-15) Anne Waldman at Buffalo State University, April 13, 2007 + + 85 + + + + + (WALDCD-16) Anne Waldman & C. Fitz, Bowery Poetry Club, New York City, April 20, 2007 + + 85 + + + + + (WALDCD-17) Prague Writers Festival, 2001 Nights: The Art of Storytelling, Laterna Magika Theatre, June 7-11 2009 + + 85 + + + + + (WALDCD-18) Anne Waldman, Romantic Poems, undated + + 85 + + + + + (WALDCD-19) Going Vocal, the Jack Kerouac School of Disembodied Poetics, 2011 + + 85 + + + + + (WALDCD-20) Anne Waldman, SWP, Class #1, undated + + 85 + + + + + + Cassettes + + +

    (Cassettes have been reformatted to compact disc. Request CD-R in corresponding WALDCA-R- number.)

    +
    + + + Readings + + + + Anne Waldman + + + + (WALDCA-1) "Memorial Day" with Ted Berrigan, St. Marks Church In-The-Bowery (CD access copy available), May 5, 1971 + + 86 + + + + + (WALDCA-2) Cherry Valley Labor Day Reading with Michael Brownstein, Charley Plymell, John Giorno, Ray Bremser, Michael Andre, Susan Quist, Cherry Valley, NY (CD access copy available - 2 CDs), 1974 + + 86 + + + + + (WALDCA-3) "Dawn of Tantra," poetry reading with Diane di Prima, and Allen Ginsberg, Naropa Institute (CD access copy available - 2 CDs), July 30, 1974 + + 86 + + 2.0 cassettes + + + + + + (WALDCA-4) "Dawn of Tantra," poetry reading with Diane di Prima, and Allen Ginsberg, Naropa Institute (CD access copy available - 2 CDs), July 30, 1974 + + 86 + + + + + (WALDCA-5) "Potpourri of Poetry" with Allen Ginsberg, Chogyam Trungpa, Ted Berrigan, Diane di Prima, Philip Whalen, Naropa Institute (CD access copy available), Summer 1975 + + 86 + + + + + (WALDCA-6) Poetry Reading with Allen Ginsberg and Michael Brownstein, Naropa Institute (CD access copy available - 2 CDs), April 2, 1976 + + 86 + + 2.0 cassettes + + + + + + (WALDCA-7) Poetry Reading with Allen Ginsberg and Michael Brownstein, Naropa Institute (CD access copy available - 2 CDs), April 2, 1976 + + 86 + + + + + (WALDCA-8) "Anne Waldman: Chants and Poems" (CD access copy available), August 1, 1976 + + 86 + + + + + (WALDCA-9) Poetry Reading with Allen Ginsberg (CD access copy available), August 3, 1977 + + 86 + + + + + (WALDCA-10 ) Reading with Reed Bye, Michael Kohler, Germany (CD access copy available - 2 CDs), February 16, 1978 + + 86 + + + + + (WALDCA-11) Reading (CD access copy available - 2 CDs), November 11, 1978 + + 86 + + + + + (WALDCA-12) Reading with Gary Snyder, University of Texas at Austin (CD access copy available), April 19, 1979 + + 86 + + 2.0 cassettes + + + + + + (WALDCA-13) Reading with Gary Snyder, University of Texas at Austin (CD access copy available), April 19, 1979 + + 86 + + + + + (WALDCA-14) Anne Waldman, Swarthmore College (CD access copy available), March 16, 1980 + + 86 + + 2.0 cassettes + + + + + + (WALDCA-15) Anne Waldman, Swarthmore College (CD access copy available), March 16, 1980 + + 86 + + + + + (WALDCA-16) Poetry reading with Clark Coolidge and Dick Gallup, Naropa Institute (CD access copy available - 2 CDs), July 2, 1980 + + 86 + + + + + (WALDCA-17) Anne Waldman, Harbor Front (CD access copy available - 2 CDs), July 24, 1984 + + 86 + + + + + (WALDCA-18) Anne Waldman, San Francisco Art Institute (CD access copy available - 2CDs), July 9, 1985 + + 86 + + + + + (WALDCA-19) Reading with Allen Ginsberg, Stephen Taylor (CD access copy available - 2 CDs), July 10, 1985 + + 86 + + + + + (WALDCA-20) Naropa Summer Series reading, July 1985 + + 86 + + + + + (WALDCA-21) Performance (CD access copy available - 2 CDs), July 16, 1987 + + 86 + + + + + (WALDCA-22) Performance with Susan Edwards (CD access copy available), October 7, 1987 + + 86 + + + + + (WALDCA-23) Performance, Lawrence (KS?) (CD access copy available), 1987 + + 86 + + + + + (WALDCA-24) Joel Oppenheimer memorial reading (CD access copy available - 2 CDs), February 2, 1989 + + 86 + + + + + (WALDCA-25) Reading with Allen Ginsberg, Naropa Institute (CD access copy available - 2 CDs), July 25, 1989 + + 86 + + 2.0 cassettes + + + + + + (WALDCA-26) Reading with Allen Ginsberg, Naropa Institute (CD access copy available - 2 CDs), July 8, 1989 + + 86 + + + + + (WALDCA-27) Reading with Jerome Washington, Penny Lane, Boulder Colorado (CD access copy available - 2 CDs), October 2, 1989 + + 86 + + + + + (WALDCA-28) Reading at QE2, Albany, NY (CD access copy available - 2 CDs), October 7, 1989 + + 86 + + + + + (WALDCA-29) Reading and question and answer session at "CHS," (CD access copy available - 2 CDs), December 12, 1990 + + 86 + + + + + (WALDCA-30) Reading at Prince George of Cumberland, London, England? (CD access copy available - 2 CDs), August 7, 1990 + + 86 + + + + + (WALDCA-31) Reading at The Mean Fiddler, London, England, August 8, 1990 + + 86 + + + + + (WALDCA-32) Reading, Hanover? (CD access copy available - 2 CDs), February 9, 1991 + + 86 + + + + + (WALDCA-33) Reading, Nuyorican Poets Café (CD access copy available - 2 CDs), April 16-18, 1992 + + 86 + + 2.0 cassettes + + + + + + (WALDCA-34) Reading, Nuyorican Poets Café (CD access copy available), April 16-18, 1992 + + 86 + + + + + (WALDCA-35) "American Renegades: Kenneth Patchen, d.d levy, D.R. Wagner" Reading with Jack Collom, D.R.Wagner, Ed Sanders, Kent Taylor, Ingrid Swanberg, Anselm Hollo, B.L. Kennedy, Miriam Patchen, Colorado University Art Galleries (CD access copy available - 2 CDs), September 12, 1992 + + 86 + + 2.0 cassettes + + + + + + (WALDCA-36) "American Renegades: Kenneth Patchen, d.d levy, D.R. Wagner" Reading with Jack Collom, D.R.Wagner, Ed Sanders, Kent Taylor, Ingrid Swanberg, Anselm Hollo, B.L. Kennedy, Miriam Patchen, Colorado University Art Galleries (CD access copy available - 2 CDs), September 12, 1992 + + 86 + + + + + (WALDCA-37) Reading, University of Houston (CD access copy available - 2 CDs), April 22, 1993 + + 86 + + + + + (WALDCA-38) Reading, Palmer Vineyards, Aquebogue, New York (CD access copy available), July 2, 1993 + + 86 + + + + + (WALDCA-39) Reading with Allen Ginsberg, DIA (CD access copy available - 2 CDs), February 8, 1994 + + 86 + + +

    (second cassette, WALDCA-40, blank)

    +
    +
    + + + (WALDCA-41) Performance with Robert Creeley, and Stephen Taylor, Naropa Institute (CD access copy available - 2 CDs), July 8, 1994 + + 86 + + + + + (WALDCA-42) Performance with Robert Creeley, and Stephen Taylor, Naropa Institute (CD access copy available - 2 CDs), July 8, 1994 + + 86 + + + + + (WALDCA-43) Reading with Allen Ginsberg, Diane di Prima, Michael Ondaatje, Eileen Myles, Fox Theater (CD access copy available - 2 CDs), July 27, 1994 + + 86 + + 2.0 cassettes + + + + + + (WALDCA-44) Reading with Allen Ginsberg, Diane di Prima, Michael Ondaatje, Eileen Myles, Fox Theater (CD access copy available - 2 CDs), July 27, 1994 + + 86 + + + + + (WALDCA-45) Reading with David Henderson, TNI Studio (CD access copy available - 2 CDs), July 13, 1995 + + 86 + + + + + (WALDCA-46) "Symposium, Second Night," St. Marks Poetry Project, New York, New York (CD access copy available), May 2, 1997 + + 86 + + + + + (WALDCA-47) Reading "LCK," Lowell, MA (CD access copy available - 2 CDs), October 4, 1997 + + 86 + + 2.0 cassettes + + + + + + (WALDCA-48) Reading "LCK," Lowell, MA (CD access copy available - 2 CDs), October 4, 1997 + + 86 + + + + + (WALDCA-49) Ted Berrigan memorial reading (CD access copy available - 2 CDs), undated + + 86 + + 2.0 cassettes + + + + + + (WALDCA-50) Ted Berrigan memorial reading (CD access copy available - 2 CDs), undated + + 86 + + + + + (WALDCA-51) Reading, Naropa Institute (CD access copy available), undated + + 86 + + + + + (WALDCA-52) Reading (CD access copy available - 2 CDs), undated + + 86 + + +
    + + + Others + + + + (WALDCA-53) John Ashbery, "The Skaters," Washington Square Gallery, New York, New York (CD access copy available - 2 CDs), August 23, 1964 + + 86 + + + + + (WALDCA-54) Allen Ginsberg and Robert Lowell reading (CD access copy available - 2 CDs), February 23, 1977 + + 86 + + + + + (WALDCA-55) Allen Ginsberg and Kenneth Koch reading at the Poetry Project (CD access copy available - 2 CDs), May 9, 1979 + + 86 + + + + + (WALDCA-56) Jack Collom, Robert Creeley and Carl Rakosi reading, Naropa Institute (CD access copy available - 2 CDs), June 20, 1979 + + 86 + + + + + (WALDCA-57) Helen Adam reading (CD access copy available), August 2, 1979 + + 86 + + + + + (WALDCA-58) Carl Rakosi, Philip Whalen, Allen Ginsberg reading (CD access copy available - 2 CDs), September 19, 1979 + + 86 + + 3.0 cassettes + + + + + + (WALDCA-59) Carl Rakosi, Philip Whalen, Allen Ginsberg reading (CD access copy available - 2 CDs), September 19, 1979 + + 86 + + + + + (WALDCA-60) Carl Rakosi, Philip Whalen, Allen Ginsberg reading (CD access copy available - 2 CDs), September 19, 1979 + + 86 + + + + + (WALDCA-61) Frances Waldman reading Sappho, with B-side Ed Sanders reading Sappho (CD access copy available - 2 CDs), undated + + 86 + + + + + (WALDCA-62) Barbara Schmitz reading (CD access copy available), undated + + 86 + + + + + (WALDCA-63) Gertrude Stein reading, "cast of thousands" (CD access copy available), undated + + 86 + + + + + (WALDCA-64) Gertrude Stein reading, New College, California (CD access copy available - 2 CDs), December 14, 1982 + + 86 + + 2.0 cassettes + + + + + + (WALDCA-65) Gertrude Stein reading, New College, California (CD access copy available - 2 CDs), December 14, 1982 + + 86 + + + +
    + + + Classes and Lectures + + + + Anne Waldman + + + + (WALDCA-66) "Art of Poetry: The Best of Naropa Institute, '74" (CD access copy available - 2 CDs), ca. 1974 + + 86 + + +

    (Includes lectures and readings from Waldman, Allen Ginsberg, Diane di Prima, John Giorno, Chogyam Trungpa)

    +
    +
    + + + (WALDCA-67) "Waldman/Naropa/504" (CD access copy available - 2 CDs), June 10-11, 1975 + + 86 + + + + + (WALDCA-68) "Anne Waldman II" (CD access copy available - 2 CDs) June 17, 1975 + + 86 + + + + + (WALDCA-69) "Waldman Course II (CD access copy available - 2 CDs), June 10, 1975 + + 86 + + + + + (WALDCA-70) "Anne Waldman N.I. 503," with Lewis McAdams and Ted Berrigan (CD access copy available - 2 CDs), June 24, 1975 + + 86 + + + + + (WALDCA-71) "Anne Waldman N.I. 503" (CD access copy available - 2 CDs), June 26, 1975 + + 86 + + + + + (WALDCA-72) "Anne Waldman," July 22, 1975 + + 86 + + + + + (WALDCA-73) "Dick Gallup, Anne Waldman Naropa summer class" (CD access copy available - 2 CDs), 1975 + + 86 + + + + + (WALDCA-74) Anne Waldman Naropa class with Dick Gallup and Michael Brownstein, June 23, 1976 + + 86 + + 2.0 cassettes + + + + + + (WALDCA-75) Anne Waldman Naropa class with Dick Gallup and Michael Brownstein (CD access copy available - 2 CDs), June 23, 1976 + + 86 + + + + + (WALDCA-76) "John Ashbery at Anne Waldman's Class, Stevens Institute of Technology," March 1, 1982. B-side "Kenneth Koch at Anne Waldman's Class, Stephen's Institute of Technology" (CD access copy available - 2 CDs), March 4, 1982 + + 86 + + + + + (WALDCA-77) Anne Waldman, "Nurturing in Times of Peril," Naropa Institute, May 24, 1986 + + 86 + + + + + (WALDCA-78) Lecture, Naropa Institute (CD access copy available - 2 CDs), July 24, 1989 + + 86 + + + + + (WALDCA-79) "Class with Anne Waldman, Michael Brownstein, Joanne Kyger" (CD access copy available), undated + + 86 + + + + + (WALDCA-80) "Anne Waldman, afternoon class with Brownstein and Kyger," undated + + 86 + + + + + (WALDCA-81) "Anne Waldman, 1st 15 minutes of Fridays Class" (CD access copy available - 2 CDs), undated + + 86 + + + + + (WALDCA-82) "Anne Waldman Tuesday Class" (CD access copy available - 2 CDs), undated + + 86 + + + + + (WALDCA-83) "Anne Waldman, Wed. 11:00, Student Readings" (CD access copy available), undated + + 86 + + + + + (WALDCA-84) "Anne Waldman" (CD access copy available - 2 CDs), undated + + 86 + + 3.0 cassettes + + + + + + (WALDCA-85) "Anne Waldman" (CD access copy available - 2 CDs), undated + + 86 + + + + + (WALDCA-86) "Anne Waldman" (CD access copy available - 2 CDs), undated + + 86 + + + + + (WALDCA-87) "Writing Inside Out: Anne Waldman, Saturday" (CD access copy available - 2 CDs), undated + + 86 + + + + + (WALDCA-88) "Writing Inside Out: Anne Waldman, Sunday" (CD access copy available - 2 CDs), undated + + 86 + + + + + (WALDCA-89) "Anne 503, Dante, March 23" (CD access copy available - 2 CDs), undated + + 86 + + + + + (WALDCA-90) "Anne Waldman -- Readings by Meltzer and Vega" (CD access copy available - 2 CDs), undated + + 86 + + + + + (WALDCA-91) "Anne Waldman -- Reading by Goldfarb" (CD access copy available - 2 CDs), undated + + 86 + + + + + (WALDCA-92) "Anne Waldman, Stein Class" (CD access copy available - 2 CDs), undated + + 86 + + +

    (B-side "Gertrude Stein reading?)

    +
    +
    + + + (WALDCA-175) Lecture, Anne Waldman and Steven Taylor, Tattered Cover, April 1, 2002 + + 86 + + +
    + + + Others + + + + (WALDCA-93) Gregory Bateson "Ecology of the Mind" Naropa Institute (CD access copy available), July 21, 1974 + + 86 + + + + + (WALDCA-94) William Burroughs "Visiting Poetics, Naropa" (CD access copy available - 2 CDs), June 10, 1975 + + 86 + + 2.0 cassettes + + + + + + (WALDCA-95) William Burroughs "Visiting Poetics, Naropa" (CD access copy available - 2 CDs), June 10, 1975 + + 86 + + + + + (WALDCA-96) "Allen Ginsberg Class," Naropa, March 29, 1976 + + 86 + + + + + (WALDCA-97) "What's Going On: Naropa Cont. Poets Lecture" (CD access copy available - 2 CDs), January 21, 1977 + + 86 + + + + + (WALDCA-98) "Carl Rakosi Poetry Workshop" (CD access copy available - 2 CDs), June 22, 1979 + + 86 + + 2.0 cassettes + + + + + + (WALDCA-99) "Carl Rakosi Poetry Workshop" (CD access copy available), June 22, 1979 + + 86 + + + + + (WALDCA-100) "Ted Berrigan lecture number 2" (CD access copy available), August 9, 1979 + + 86 + + + + + (WALDCA-101) Peter Orlovsky Poetry Workshop, Naropa Institute, with Anne Waldman, Reed Bye, (CD access copy available), March 7, 1980 + + 86 + + + +
    + + + Interviews and conversations + + + + Anne Waldman + + + + (WALDCA-102) Anne Waldman interviewed by Larry Fagin (CD access copy available), ca. 1979 + + 87 + + + + + (WALDCA-103) Conversation with Anne Waldman, Bill (Berkson?), Clark Coolidge, Lewis MacAdams, Mike (Brownstein?) (CD access copy available - 2 CDs), undated + + 87 + + + + + + Others + + + + (WALDCA-104) Joe Brainard interviewed by Anne Waldman (CD access copy available - 2 CDs), 1978, undated + + 87 + + 2.0 cassettes + + + + + + (WALDCA-105) Joe Brainard interviewed by Anne Waldman (CD access copy available), 1978, undated + + 87 + + + + + (WALDCA-106) "Edwin Denby Speaking" (with Anne Waldman) (CD access copy available), June 30, 1981 + + 87 + + + + + (WALDCA-107) Diane di Prima, interviewed by Anne Waldman, (CD access copy available - 2 CDs), 1978 + + 87 + + + + + (WALDCA-108) Robert Duncan interview, (CD access copy available), July 21, 1978 + + 87 + + + + + (WALDCA-109) "Interview with Phil Fonberger" (CD access copy available - 2 CDs), undated + + 87 + + + + + (WALDCA-110) Allen Ginsberg interview for + Out of This World Anthology (CD access copy available - 2 CDs), July 15, 1986 + + 87 + + 2.0 cassettes + + + + + + (WALDCA-111) Allen Ginsberg interview for + Out of This World Anthology (CD access copy available), July 15, 1986 + + 87 + + + + + (WALDCA-112) Peter Orlovsky + Rocky Ledge interview (CD access copy available), September 2, 1980 + + 87 + + + + + (WALDCA-113) Philip Whalen interviewed by Anne Waldman (CD access copy available - 2 CDs), 1971 + + 87 + + 2.0 cassettes + + + +

    (1 cassette labeled "with Tom Clark, Lewis Warsh, Lewis MacAdams, etc.")

    +
    +
    + + + (WALDCA-114) Philip Whalen interviewed by Anne Waldman (CD access copy available - 2 CDs), 1971 + + 87 + + + + + (WALDCA-177) "Arnoldo" (4 microcassettes and RCA player), 2005 + + 87 + + +
    +
    + + + Radio Broadcasts + + + + (WALDCA-115) Anne Waldman interview, KAIR Boulder, CO (CD access copy available), January 29, 1985 + + 87 + + + + + (WALDCA-116) Jazz Lives -- Anne Waldman, KGNU (CD access copy available), December 3, 1986 + + 87 + + + + + (WALDCA-117) Anne Waldman profile, NPR Morning Edition (CD access copy available), November 3, 1987 + + 87 + + + + + (WALDCA-118) "New Letters on the Air," a production of + New Letters magazine (CD access copy available), December, 1988 + + 87 + + + + + (WALDCA-119) Public Radio Book Show -- Anne Waldman (CD access copy available), 1989 + + 87 + + + + + (WALDCA-120) Anne Waldman at Alvin's, WDET, Detroit (CD access copy available - 2 CDs), December 20, 1990 + + 87 + + + + + (WALDCA-121) Allen Ginsberg interview, KPFA San Francisco (CD access copy available - 2 CDs), 1996 + + 87 + + + + + (WALDCA-122) "The Energy Circus," NPR (CD access copy available - 2 CDs), undated + + 87 + + + + + (WALDCA-123) Skaldic Cauldron, WAIF, Cincinnati (CD access copy available - 2 CDs), undated + + 87 + + + + + (WALDCA-174) Art Aloud Broadcast: Professional Liars, Presidents and Poets, KGNU 88.5 FM, undated + + 87 + + + + + (WALDCA-176) Allen Ginsberg and Gregory Corso, KCRW radio interview, undated + + 87 + + + + + + Recording Projects + + + + (WALDCA-124) "Experimental Prose," Richard Kostelantz (includes reading by Anne Waldman) (CD access copy available), ca. 1976 + + 87 + + + + + (WALDCA-125) "Duality" (CD access copy available), 1988 + + 87 + + + + + (WALDCA-126) "Anne Waldman session, 10/18/88" (CD access copy available), 1988 + + 87 + + + + + (WALDCA-127) "Eyes In All Heads," audio mix (CD access copy available), 1989, undated + + 87 + + 2.0 cassettes + + + + + + (WALDCA-128) "Eyes In All Heads," audio mix (CD access copy available - 2 CDs), 1989, undated + + 87 + + + + + (WALDCA-129) "Anne Waldman -- Curse and Other Poems" (CD access copy available), 1991 + + 87 + + + + + (WALDCA-130) "Anne Waldman's Blues" (CD access copy available), undated + + 87 + + + + + (WALDCA-131) "Ann Waldman -- Kali Yuga Blues" (CD access copy available), undated + + 87 + + + + + (WALDCA-132) "Anne Waldman -- cut #1 from + Crack in the Sky" (CD access copy available) undated + + 87 + + + + + (WALDCA-133) "Anne Waldman -- Said So and Corridor" (CD access copy available) undated + + 87 + + + + + (WALDCA-134) "Skin, Meat, Bone -- no vocal," undated. B-side tarot card reading with Susan Edwards (CD access copy available), 1985 + + 87 + + + + + (WALDCA-135) "Skin, Meat, Bone -- with guide vocal," and B-side "Two Hearts" (CD access copy available), undated + + 87 + + + + + (WALDCA-136) "Two Hearts -- Second Attempt" (CD access copy available - 2 CDs), undated + + 87 + + + + + (WALDCA-137) Unidentified (labeled "Ann Waldman -- Said So") (CD access copy available), undated + + 87 + + + + + (WALDCA-138) Unidentified ("Corridor?") (CD access copy available - 2 CDs), undated + + 87 + + + + + + Commercial Recordings + + + + (WALDCA-139) Raul Hausmann, + Sound Reel and Interview (S Press Tonband no. 5) (CD access copy available), 1971 + + 87 + + + + + (WALDCA-140) Allen Ginsberg, + Live at St. Mark's, New York City (S Press Tapes, no. 48/49) (CD access copy available), 1976 + + 87 + + + + + (WALDCA-141) Anne Waldman, + Fast Speaking Woman (S Press Tapes, no. 55) (CD access copy available), 1977 + + 87 + + 3.0 cassettes + + copy #1: 23 minutes, copies #2 and #3: 30 minutes + + + + + (WALDCA-142) Anne Waldman, + Fast Speaking Woman (S Press Tapes, no. 55) (CD access copy available), 1977 + + 87 + + + + + (WALDCA-143) Anne Waldman, + Fast Speaking Woman (S Press Tapes, no. 55), 1977 + + 87 + + + + + (WALDCA-144a) + Black Box 16: audio serial with works by Gary Blackman, Ellen Carter and Chris Mason, Laura Cheter, Lunne Dreyer, Russell Edson, Kenward Elmslie, Theodore Enslin, Chasen Gaver, Barry Garelick, Marina LaPalma, John Logan, Honor Moore, Margot Treitel, Janine Pommy-Vega (CD access copy available), 1979 + + 87 + + + + + (WALDCA-144b) + Black Box 16: audio serial with works by Gary Blackman, Ellen Carter and Chris Mason, Laura Cheter, Lunne Dreyer, Russell Edson, Kenward Elmslie, Theodore Enslin, Chasen Gaver, Barry Garelick, Marina LaPalma, John Logan, Honor Moore, Margot Treitel, Janine Pommy-Vega (CD access copy available), 1979 + + 87 + + + + + (WALDCA-145) Michael Kohler, "Naropa -- Sendung" (S-Press Tapes) (CD access copy available), 1979 + + 87 + + + + + (WALDCA-146 and WALDCA-147) Anne Waldman, + Crack in the World, 1986 + + 87 + + 2.0 cassettes + + + + + + (WALDCA-148) Anne Waldman, + Eyes in All Heads (Phoebus Productions) (CD access copy available), 1990 + + 87 + + + + + (WALDCA-149) + The Muse in the Body: Love Poems by Women: features Anne Waldman and others, Audio Literature (CD access copy available), 1996 + + 87 + + + + + (WALDCA-150) Reed Bye, untitled, (S Press Tapes) (CD access copy available), undated + + 87 + + + + + (WALDCA-151) "Hollteufel: Friss Was I Sog" (S Press Tapes) (CD access copy available), undated + + 87 + + + + + (WALDCA-152) Will Staple, poems from + Passes for Human (CD access copy available), undated + + 87 + + + + + + Personal and Miscellaneous + + + + Audio Letters and Mix Tapes + + + + (WALDCA-153) Audio letter from fan (CD access copy available), undated + + 87 + + + + + (WALDCA-154) "AW to DD" (CD access copy available), 1976, undated + + 87 + + 3.0 cassettes + + + + + + (WALDCA-155) "AW to DD" (CD access copy available), 1976, undated + + 87 + + + + + (WALDCA-156) "AW to DD" (CD access copy available), 1976, undated + + 87 + + + + + (WALDCA-157) "DD to AW" (CD access copy available), 1975 + + 87 + + + + + (WALDCA-158) "DD to AW" (CD access copy available), + 87 + + + + + (WALDCA-159) "Letter to Anne Waldman," from Chris in Vienna (CD access copy available), undated + + 87 + + + + + + Poetry recordings, cassette copies + + + + (WALDCA-160) "Dial-A-Poem" record, with Ed Sanders, Aram Saroyan, Philip Whalen, Ted Berrigan, Michael Brownstein, William Burroughs (CD access copy available), undated + + 87 + + + + + (WALDCA-161) Jack Kerouac with Steve Allen (Fantasy Records?) (CD access copy available), undated + + 87 + + + + + (WALDCA-162) "Poetry Tape," with Wallace Stevens, Gertrude Stein, Robert Creeley, William Carlos Williams (CD access copy available), undated + + 87 + + + + + (WALDCA-163) Ezra Pound, Vladimir May akovsky, ?Sergej Jesenin, Giuseppe Ungaretti (CD access copy available), undated + + 87 + + + + + (WALDCA-164) Gertrude Stein recording (CD access copy available), undated + + 87 + + + + + (WALDCA-165) Gertrude Stein, Frank O'Hara, Edwin Denby, Ted Berrigan recordings (CD access copy available), undated + + 87 + + + + + + Miscellaneous + + + + (WALDCA-166) Chants (CD access copy available), undated + + 87 + + + + + (WALDCA-167) Bob Dylan live recording of Rolling Thunder Revue, Boston, MA, with B-side, "Nashville, Tenn." (CD access copy available - 2 CDs), November 21, 1975, April 13, 1997 + + 87 + + + + + (WALDCA-168) " + Furtive Edna -- 'Change Yr Name' and 'popcorn'" (Kenward Elmslie, one act play) (CD access copy available), undated + + 87 + + + + + (WALDCA-169) Allen Ginsberg orally composing introduction to + Talking Poetics, with Anne Waldman (CD access copy available), undated + + 87 + + + + + Non-poetry lectures + + + + (WALDCA-170) Clive Backster plant lecture (CD access copy available), undated + + 87 + + + + + (WALDCA-171) "Conway Sel-Ropa and Body of Light" (CD access copy available - 2 CDs), undated + + 87 + + + + + (WALDCA-172) "Trungpa" (CD access copy available), undated + + 87 + + + + + + (WALDCA-173) Anne Waldman tarot cart reading (CD access copy available - 2 CDs), undated + + 87 + + + + + + + Reformatted user copies on CD + + + + WALDCA-01 through WALDCA-52 + 88 + + + + + WALDCA-53 through WALDCA-101 + 89 + + + + + WALDCA-102 through WALDCA-173 + 90 + + + +
    +
    + + + Video Tapes + + + + (WALDVID-1) "Cloud House Poetry Archive," Anne Waldman, Ed Sanders, Gary Snyder, Nanao Sakaki, Naropa Summer Program (DVD access copy available), July 1990 + + 91 + 2 hours, 3 minutes + + + + + (WALDVID-2) Anne Waldman at Naropa Institute, (with Eliot Greenspan, Steven Taylor) (DVD access copy available), 1990-1991 + + 91 + 2 hours, 44 minutes + + + + + (WALDVID-3) Boulder Theater (DVD access copy available), July 12, 1991 + + 91 + 3 hours, 32 minutes + + + + + (WALDVID-4) Anne Waldman Performance, Vienna (DVD access copy available), January 26, 1991 + + 91 + 1 hour, 46 minutes + + + + + (WALDVID-5) Anne Waldman Lecture, Vienna (DVD access copy available), January 27, 1991 + + 91 + 2 hours, 9 minutes + + + + + (WALDVID-6) Anne Waldman, Amiri Baraka, Allen Ginsberg, Steven Taylor, Naropa Performing Arts Series (DVD access copy available), July 25, 1992 + + 91 + 2 hours, 4 minutes + + + + + (WALDVID-7) Anne Waldman, Jim Cohn, Dave Cope, AIDS benefit poetry reading, Grand Rapids Community College (DVD access copy available), May 1, 1992 + + 91 + 1 hour, 47 minutes + + + + + (WALDVID-8) Anne Waldman, Aubrey Carton, Victor Sanders (DVD access copy available), June 20, 1992 + + 91 + 53 minutes + + + + + (WALDVID-9) Anne Waldman, Steven Taylor, Allen Ginsberg, Paula Gunn, Naropa Performing Arts Series (DVD access copy available), June 30, 1992 + + 91 + 1 hour, 57 minutes + + + + + (WALDVID-10) Anne Waldman, + Iovis, Boulder Bookstore (DVD access copy available), March 11, 1993 + + 91 + 1 hour, 16 minutes + + + + + (WALDVID-11) Waldman Family Home Movies; Anne Waldman, Allen Ginsberg, Robert Hunter, Naropa Performing Arts Series (DVD access copy available), July 11, 1993 + + 91 + 2 hours, 3 minutes + + + + + (WALDVID-12) Anne Waldman, Ed Sanders, Allen Ginsberg, Michael McClure, Naropa Performing Arts Series (DVD access copy available), July 31, 1993 + + 91 + 3 hours, 1 minute + + + + + (WALDVID-13) Anne Waldman, Allen Ginsberg, Paul McCartney, "The Return of the Reforgotten," Royal Albert Hall, London (DVD access copy available), October 16, 1995 + + 91 + 5 hours, 14 minutes + + + + + (WALDVID-14) Anne Waldman, Ed Sanders, Stephen Taylor, Joanne Kyger, Bobbie Louise Hawkins, (David?) Henderson, Fox Theatre Reading (DVD access copy available), July 8, 1998 + + 91 + 2 hours, 0 minutes + + + + + (WALDVID-15) Anne Waldman at QE 2 (Albany?) (DVD access copy available), undated + + 91 + 32 minutes + + + + + (WALDVID-16) "The Manhattan Poetry Video Project" (Allen Ginsberg "Father Death Blues," Anne Waldman "Uh-Oh, Plutonium," Bob Holman "Rapp It Up." Produced by Rose Lesniak/Out There Productions) (DVD access copy available), 1984 + + 91 + 15 minutes + + Umatic ¾ inch tape) + + + + + + (WALDVID-17) "Eyes In All Heads: the Poetry of Anne Waldman" (performed by Anne Waldman, Marni Grant and Phil Wang) (DVD access copy available), 1988 + + 91 + 1 hour, 0 minutes + + + + + (WALDVID-18) "Battle of the Bards" (World Heavyweight Poetry Championship, with Anne Waldman, Victor Hernandez Cruz. Directed by Lewis MacAdams) (DVD access copy available), 1990 + + 91 + 59 minutes + + + + + (WALDVID-19) "Anne Waldman," (produced by Lannan Literary Videos) (DVD access copy available), 1991 + + 91 + 1 hour + + + + + (WALDVID-20) "Word One" (public access television show hosted by Anne Waldman, featuring readings by prominent poets) (DVD access copy available), 1993 + + 91 + 6 hours, 51 minutes + + + + + (WALDVID-21) Allen Ginsberg Memorial, Cloudhouse Poetry Archives (DVD access copy available), 1997 + + 91 + 2 hours, 3 minutes + + + + + (WALDVID-22) "Modern American Poets," (William Carlos Williams, Gary Snyder, Frank O'Hara. Produced by Channel Four Television/Optic Nerve, London?) (DVD access copy available), undated + + 91 + 1 hour 30 minutes + + + + + (WALDVID-23) Home movie with Anne Waldman, Lewis Warsh, Ted Berrigan, Tom Clark (DVD access copy available), undated + + 91 + 22 minutes + + no sound + + + + + + (WALDVID-24) Experimental film with slides by Althea Crawford, Music by Azalia Snail (DVD access copy available), undated + + 91 + 14 minutes + + + + + (WALDVID-25) Rosanne Mello, "Untitled Piece," (with accordian) (DVD access copy available), undated + + 91 + 4 minutes + + + + + (WALDVID-26) "Anne Waldman-Assorted Singles" and "Eyes In All Heads Audio Mix": audio of Waldman, video of home shopping television channel (DVD access copy available), undated + + 91 + 1 hour, 50 minutes + + + + + (WALDVID-27) Anne Waldman, Michael Brownstein (?), and others in home movie, Boulder (DVD access copy available), undated + + 91 + 5 minutes + + + + + (WALDVID-28) + Word One, #1-7, hosted by Anne Waldman: duplicate copy made by library staff in for the University of Michigan Special Collections Library exhibit, 1993, 2002 + + 91 + 6 hours, 51 minutes + + + + + (WALDVID-29) "An Anne Waldman Anthology: Copied from Selected Videos in the Waldman Archive." Made by library staff for the University of Michigan Special Collections Library exhibit, 2002 + + 91 + 7 hours 10 minutes + + + + + (WALDVID-30) AWS-1 Keynote Speaker, Andrei Codrescu, March 13, 2002 + + 91 + + + + + (WALDVID-31) AWS-2 Anne Waldman, The Early Years. Moderator: Chris Tysh, panelists: Eleni Sikelianso, Joanne Ryger, Ken Padgett, March 14, 2002 + + 91 + + + + + (WALDVID-32) AWS-3, "Publishings and the Small Press Scene." Moderator: Bill Morgan, panelists: Steve Clay Allan Kornblum, Ken Mikolowski, March 14, 2002 + + 91 + + + + + (WALDVID-33) AWS-4 "Buddist Influences, Naropa U., and the Kack Kerouac School of Diembodied Poetics." Moderator: David Cope, panelists: Laura Bardwell, Anselm Hollo, March 14, 2002 + + 91 + + + + + (WALDVID-34) AWS-5 Afternoon Reading featuring Andrei Codrescu, Johnny Floyd, Molly Raynor, John Liberzon, Eseohe Arhebamen, Janet Osmond, Ken Mikolowski, Antler, Akila Oliver, March 14, 2002 + + 91 + + + + + (WALDVID-35) AWS-6 "Evening Readings," Eleni Silelianos, Lorenzo Thomas, with introduction by Anselm Hollo, and Rachel Blau DuPlessis, Ron Padgett with introduction by Bill Morgan, March 14, 2002 + + 91 + + + + + (WALDVID-36) AWS-7 "Politics and Feminism." Moderator: Pamela Trotman Reid, panelists: Maria Damon, Akilah Oliver, Heather Thomas, March 15, 2002 + + 91 + + + + + (WALDVID-37) AWS-8 "Anne Waldman as Performer and Collaborator." Moderator: Kathryn Beam, panelists: Jena Osman, Kristin Prevallet, and Steven Taylor, March 15, 2002 + + 91 + + + + + (WALDVID-38) AWS-9 "Critical Overview: Anne Waldman's Role in 20th Century American Poetics." Panelists: Alan Gilbert, Rachel Blau DuPlessis and Lorenzo Thomas, March 15, 2002 + + 91 + + + + + (WALDVID-39) AWS-10 "Afternoon Readings." Laura Bardwell, Emily Brandt, David Cope, Dave Gardner, Katie Gill, Kristin Hatch, Mike Marcinkowski, Yukan Rymar, Heather Thomas, Chris Tysh, March 15, 2002 + + 91 + + + + + (WALDVID-40) AWS-11 "Evening Readings." Welcome by Peggy Daub. Mei-mei Berssenbrugee, Anselm Hollo, Joanne Kyger, Anne Waldman with Steven Taylor, March 15, 2002 + + 91 + + + + + (WALDVID-41) AWS-12 "Addendum I-IV." I. Anne Waldman, "Make Up On Empty Space." II. Exhibit (with Anne Waldman soundtrack). III. Library Opening Remarks. IV. Whitman's Leave of Grass, March 13-15, 2002 + + 91 + + + + + (WALDVID-42) Anne Waldman at West Chester University, West Chester, Pennsylvania, 2004 + + 91 + + + + + Reformatted user copies on DVD. WALDVID-1 through WALDVID-27 + 92 + + + + + + DVDs + + + + (WALDDVD-1) Anne Waldman and Ed Bowes, Words and Pictures, "The Menage," poem by Carl Rakosi, 2003 + + 92 + + + + + (WALDDVD-2) Anne Waldman and Ed Bowes, "Colors in the Mechanism of Concealment," 2004 + + 92 + + + + + (WALDDVD-3) "Transatlantic Howl!, A Dedication to Allen Ginsberg," October 14, 2004 + + 92 + + + + + (WALDDVD-4) "Radical's Reunion: Rocky Flats Truth Force 10th," 2006 + + 92 + + + + + (WALDDVD-5)"Buddhism and the Beat Generation with Anne Waldman," March 16, 2006 + + 92 + + + + + (WALDDVD-6) Anne Waldman and Steve Taylor, "Cyborg on the Zattere," New York City, 2011 + + 92 + + + + + (WALDDVD-7) American Road, ca. 2013 + + 92 + + + + + (WALDDVD-8) Anne Waldman Reading at Bard, November 6, 2008 + + 92 + + + + + (WALDDVD-9) Cecilia Viana reading at Bard, November 6, 2008 + + 92 + + + + + (WALDDVD-10) "Naked Lunch at 50," School of Visual Arts, October 10, 2009 + + 92 + + + + + + Digital Files + + + + (WALDDIG-1)Iovis Backup (Floppy disk), 1989 + + 92 + + + + + (WALDDIG-2) Iovis 2 (Floppy disk), 1994 + + 92 + + + + + (WALDDIG-3)Iovis 2 (Floppy disk), undated + + 92 + + + + + (WALDDIG-4) Iovis 2: I-VI, VII-XIV (Floppy disk), January 29, 1995 + + 92 + + + + + (WALDDIG-5) Iovis 2: I-VI, VII-XIV, New Arrangement (Floppy disk), January 29, 1995 + + 92 + + + + + (WALDDIG-6) Iovis 2: I-XIV (Floppy disk), February 28, 1995 + + 92 + + + + + (WALDDIG-7) Iovis 2, backup, I-XIV (Floppy disk), September 16, 1995 + + 92 + + + + + (WALDDIG-8) Iovis 2 backup (Floppy disk), September 18, 1995 + + 92 + + + + + (WALDDIG-9) Iovis 2 (Floppy disk), October 22, 1995 + + 92 + + + + + (WALDDIG-10) Email Correspondence, Incoming (Floppy disk), September 1997-April 1998 + + 92 + + + + + (WALDDIG 11) Email Correspondence, Incoming (Floppy disk), April 27, 1998-July 30, 1998 + + 92 + + + + + (WALDDIG 12) Email Correspondence, Outgoing (Floppy disk), September 17, 1997-April 24, 1998 + + 92 + + + + + (WALDDIG-13) Email Correspondence, Outgoing (Floppy disk), April 25, 1998-July 25, 1998 + + 92 + + + + + (WALDDIG-14) Email Correspondence, recent emails (Floppy disk), April 7, 1999-June 30, 1999 + + 92 + + + + + (WALDDIG-15) Email Correspondence, recent emails (Floppy disk), July 1, 1999-November 30, 1999 + + 92 + + + + + (WALDDIG-16) Email Correspondence, recent emails (Floppy disk), December 1999 + + 92 + + + + + (WALDDIG-17) Email Correspondence, recent emails (Floppy disk), January 1, 2000-February 29, 2000 + + 92 + + + + + (WALDDIG-18) Email Correspondence, recent emails (Floppy disk), March 2, 2000-April 1, 2000 + + 92 + + + + + (WALDDIG-19) Anne Waldman, + Troubairitz, Eine Ubersetzung (Floppy disk), 1996 + + 92 + + + + + (WALDDIG-20) Anne Waldman and Ambrose Bali, writing (Floppy disk), 1998 + + 92 + + + + + (WALDDIG-21) Current Naropa Anthology (Floppy disk), 1999 + + 92 + + + + + (WALDDIG-22) Randy Roark (Floppy disk), undated + + 92 + + + + + (WALDDIG-23) Autobiography (Floppy disk), undated + + 92 + + + + + (WALDDIG-24) Writing from Powerbook (Floppy disk), undated + + 92 + + + + + (WALDDIG-25) Interview with Anne Waldman (Floppy disk), undated + + 92 + + + + + (WALDDIG-26) Vow to Poetry - Coffee House Press (Floppy disk), undated + + 92 + + + + + (WALDDIG-27) Vow to Poetry, full file. Uncut version of text/interviews (Floppy disk), undated + + 92 + + + + + (WALDDIG-28) Beat Poets and Artists, 1965 (Floppy disk), undated + + 92 + + + + + (WALDDIG-29) Anne Waldman's Archives and Ambrose Materials (Floppy disk), undated + + 92 + + + + + (WALDDIG-30) "Kali Yuga Poetics" (Floppy disk), undated + + 92 + + + + + (WALDDIG-31) Beat Files _____? Introduction (Floppy disk), undated + + 92 + + + + + (WALDDIG-32-1) Civil Disobediences, A-J (Floppy disk), undated + + 92 + + + + + (WALDDIG-32-2) Civil Disobediences, K-Z (Floppy disk), undated + + 92 + + + + + (WALDDIG-33) Structure of the World (Floppy disk), undated + + 92 + + + + + (WALDDIG-34) Poetics Book #1 (Floppy disk), undated + + 92 + + + + + (WALDDIG-35) 1.HD20 Global Back-up #1 (Floppy disk), undated + + 92 + + + + + (WALDDIG-36) 2.HD20 Global Back-up #2 (Floppy disk), undated + + 92 + + + + + (WALDDIG-37) 3.HD20 Global Back-up #3 (Floppy disk), undated + + 92 + + + + + (WALDDIG-38) 4.HD20 Global Back-up #4 (Floppy disk), undated + + 92 + + + + + (WALDDIG-39) 5.HD20 Global Back-up #5 (Floppy disk), undated + + 92 + + + + + (WALDDIG-40) 6.HD20 Global Back-up #6 (Floppy disk), undated + + 92 + + + + + (WALDDIG-41) 7.HD20 Global Back-up #7 (Floppy disk), undated + + 92 + + + + + (WALDDIG-42) 8.HD20 Global Back-up #8 (Floppy disk), undated + + 92 + + + + + (WALDDIG-43) 9.HD20 Global Back-up #9 (Floppy disk), undated + + 92 + + + + + (WALDDIG-44) 10.HD20 Global Back-up #10 (Floppy disk), undated + + 92 + + + + + (WALDDIG-45) 11.HD20 Global Back-up #11 (Floppy disk), undated + + 92 + + + + + (WALDDIG-46) 12.HD20 Global Back-up #12 (Floppy disk), undated + + 92 + + + + + (WALDDIG-47) 13.HD20 Global Back-up #13 (Floppy disk), undated + + 92 + + + + + (WALDDIG-48) 14.HD20 Global Back-up #14 (Floppy disk), undated + + 92 + + + + + (WALDDIG-50) 16.HD20 Global Back-up #16 (Floppy disk), undated + + 92 + + + + + (WALDDIG-51) 17.HD20 Global Back-up #17 (Floppy disk), undated + + 92 + + + + + (WALDDIG-52) 18.HD20 Global Back-up #18 (Floppy disk), undated + + 92 + + + + + (WALDDIG-49) 15.HD20 Global Back-up #15 (Floppy disk), undated + + 92 + + + + + (WALDDIG-53) 19.HD20 Global Back-up #19 (Floppy disk), undated + + 92 + + + + + (WALDDIG-54) 20.HD20 Global Back-up #20 (Floppy disk), undated + + 92 + + + + + (WALDDIG-55) 21.HD20 Global Back-up #21 (Floppy disk), undated + + 92 + + + + + (WALDDIG-56) 22.HD20 Global Back-up #22 (Floppy disk), undated + + 92 + + + + + (WALDDIG-57) 23.HD20 Global Back-up #23 (Floppy disk), undated + + 92 + + + + + (WALDDIG-58) Marriage: A Sentence, pages 15, 17, 18, 58, 24, 25, for newsletter (Floppy disk), undated + + 92 + + + + + (WALDDIG-59) "A Declaration of Interdependence," Naropa Institute (Floppy disk), July 1990 + + 92 + + + + + (WALDDIG-60) "Kerouac" lecture, (5 1/4" Floppy disk), undated + + 92 + + + + + (WALDDIG-61) Anne Waldman's Calendar (Floppy disk) (label has been placed over shutter and read-write slot), undated + + 92 + + + + + (WALDDIG-62) "Backup" (Zip disk), undated + + 92 + + + + + (WALDDIG-63) Lisa Berman, Naropa Summer Writing Program, Western Digital My Passport Hard Drive [closed], undated + + 92 + + + +
    + + + Various series-Oversize + + + + Oversize: Poetry Project, Naropa/Boulder, and Other, 1968-2012 + + 93 + + + + + Oversize: Poetry Project, Naropa/Boulder, and Other, 1968-2002 + + 94 + + + + + Oversize: Family, John Waldman, Anne Waldman scrapbook + 95 + + + + + Oversize: Personal, Memorabilia: T-shirts: + Fast Speaking Woman shirt and two political shirts, Allen Ginsberg tribute shirt and Bowery Poetry Club cloth bag. undated + + 96 + + + + + Oversize: Early Years, Pre-High School Scrapbook, scattered dates + + 97 + + + + + Oversize: Printed Material + + + + Anne Waldman and others + 98 + + + + + Miscellaneous + B + 8 + 1 + + + + + + Oversize: Photographs + + + + Photographs by Allen Ginsberg + + + + Anne Waldman and William Burroughs, 1984 + + 98 + + + + + Anne Waldman in make-up chair, 1984 + + 98 + + + + + + Naropa Institute, Allen Ginsberg Library dedication, 1993 + + 98 + + + + + Performance, ca. 1973 + + 98 + + + + + Portraits, 1983, undated + + 98 + + + + + Rolling Thunder Revue, 1975 + + 98 + + + + + + Oversize: Art + + + + Bradner, K.L. Paintings on paper (3), undated + + 99 + + + + + Brown, Molly? [Anne Waldman's guess] Portrait of Carl Waldman: pencil + 99 + + + + + Heym, Virginia. Portrait of Anne Waldman: pencil, 1986 + + 99 + + + + + Kean, K.K. + The Byrd Hoffman School of Byrds: 18 Small Plays & a Concert: offset prints of drawings for Deafman Glance, plus painted envelope, 1973 + + 99 + + + + + Landis/Lanois?, _______? Oil pastels: appropriated Anne Waldman flyers, undated + + 99 + + + + + Schneeman, George. Portrait of Anne Waldman: print (3 copies), undated + + 99 + + + + + Schneeman, George. Collage, 1969 + + 99 + + + + + Schneeman, George. + Foxes in the Henhouse, 2004 + + 99 + + + + + Schneeman, George and Anne Waldman. Homage to Allen G. Portfolio of copies of sketches, 1997 + + 99 + + + + + Schneeman, George and Michael Brownstein. + Ninth Symphony: print, with poem by Michael Brownstein, 1972 + + 99 + + + + + Schneeman, George and Eileen Myles. + For Reed: print, 256/275, with poem by Eileen Myles, 1979 + + 99 + + + + + Schneeman, George. Print of blue and green shirts, undated + + 99 + + + + + Schneeman, George. Landscape, labeled "#5": watercolor, 1995 + + 99 + + + + + Wilkie, Britton. + Anne Waldman: paint on paper, 1972 + + 99 + + + + + Schneeman, George. Calendars: Eight prints, 1970-1984 + + 99 + + + + + Waldman, Anne (?). Prints (6), undated + + 100 + + + + + Waldman, Anne. + Instrument of General Disarmament: drawing and collage with text + 100 + + + + + Braindard, Joe. Portrait of Anne Waldman: pencil, ca. 1967 + + 100 + + + + + Rotenberg, Tina. Portrait of Anne Waldman: pencil, 1998 + + 100 + + + + + Waldman, Anne. Collage on cardboard, with elephant, undated + + 100 + + + + + Wilkie, Britton. "For the Waldmans/--my hotel room in Luxembourg/with love from Britt Wilkie/Spring 1977": watercolor, 1977 + + 100 + + + + + Wilkie, Britton. Pen & ink drawing, "p.22": spaceship and baby, undated + + 100 + + + + + Wilkie, Britton. "Oil Painting Sec. 1.": still life, oil painting, undated + + 100 + + + + + Wilkie, Britton. Labeled "9": watercolor, undated + + 100 + + + + + "Lucentio": paint & collage, childhood drawing, undated + + 100 + + + + + Unidentified. Prints of birds, mythological creature (2), undated + + 100 + + + + + Sree Jagannathji engravings, India, undated + + 100 + + + + + Unidentified. Designs on a pink background: prints, undated + + 100 + + + + + Corso, Gregory. Anne ghost drawing: pen and ink, undated + + 101 + + + + + Corso, Gregory. Portrait of Anne Waldman on notepaper + 101 + + + + + Duncan, Robert. "Bombay Gin" drawing: pen and ink, 1976-1978? + + 101 + + + + + Wilkie, Britton. "Mechanicals" book layout pages [by Britton Wilkie?], undated + + 101 + + + + + Cover art, Bowes, Ed. + Moving by Bernadette May er: photographs with Anne Waldman's editorial notes, published 1971 + + 101 + + + + + Cover art, Brainard, Joe. + West Indies Poems by Anne Waldman: pen & ink, cover and other illustrations, published 1972 + + 101 + + + + + Cover art, Burckhardt, Rudy. + Rocky Ledge 6: pen & ink drawings, undated + + 101 + + + + + Cover art, Erbacher, Bruce. + Bronze Age by Susan Noel: original and draft, published 1981 + + 101 + + + + + Cover art, Hamlin, Louise. + Blue Mosque by Anne Waldman: watercolor, 1988 + + 101 + + + + + Cover art, Hiler, Jerome. + Some Magic at the Dump by Reed Bye: drawing, published 1978 + + 101 + + + + + Cover art, Schneeman, George. + Airplanes by Tom Clark: pen & ink, published ca. 1966 + + 101 + + + + + Cover art, Schneeman, George. + Oranges by Frank O'Hara: pen & ink, plus reproduction, published ca. 1969-1970 + + 101 + + + + + Cover art, Schneeman, George. + Limousine Kids on the Ground by Elizabeth Fox: pen & ink plus reproductions, published 1983 + + 101 + + + + + Cover art, Schneeman, George. + Parade of the Caterpillars by Larry Fagin, published 1968 + + 101 + + + + + Cover art, Schneeman, George. + Ted Berrigan: An Annotated Checklist: color proof only, ca. 1998 + + 101 + + + + + Cover art, Schneeman, George. + Young Manhattan different cover versions and invoice, 1998-1999 + + 101 + + + + + Cover art, Schneeman, George. + Gasper Still in His Cage by Reed Bye, rejected cover, undated + + 101 + + + + + Thomas, Cecilio. + Fit Music by Lorenzo Thomas: photocopy (?) reproduction, published 1970 + + 101 + + + + + Cover art, Clark, Tom. + The World 11 + 101 + + + + + Cover art, Clark, Tom. + The World #? + 101 + + + + + Cover art, Fagin, Larry. + The World 10 + 101 + + + + + Cover art, Goldberg, Mike. + The World 16: felt tip pen & collage + 101 + + + + + Cover art, Goldberg, Mike. Alternate design for + The World 16: pencil + 101 + + + + + Cover art, Jacquette, Yvonne. + The World 21: pen and ink, undated + + 101 + + + + + Cover art, Mayer, Rosemary? [Anne Waldman's guess.] Drawings for + Rocky Ledge cover (2): pen & ink + 101 + + + + + Cover art, Veitch, Rick. + The World 15: pen & ink + 101 + + + + + Cover art, mimeograph reproductions, + The World 24: Pat Padgett + 101 + + + + + Cover art, mimeograph reproductions, + The World 25: Joe Brainard + 101 + + + + + Cover art, mimeograph reproductions, + The World 30: Larry Rivers + 101 + + + + + Cover art, mimeograph reproductions, + The World 28: Alex Katz + 101 + + + + + Cover art, mimeograph reproductions, + The World 26: Mimi Gross + 101 + + + + + Brainard, Joe. Unfinished collaboration with Anne Waldman and Reed Bye: pen & ink + 102 + + + + + Cover art, collaborations, + O My Life!, Schneeman, George. Cover: pen & ink, undated + + 102 + + + + + Cover art, collaborations for + O My Life!, Waldman, Anne. Print done while at Bennington College, Vincent Longo, instructor + 102 + + + + + Cover art, collaborations, Proofs for + O My Life! + 102 + + +

    (May includes other materials)

    +
    +
    + + + Cover art, collaborations, Brainard, Joe; Dennis, Donna; Schneeman, George; Waldman, Anne; et al.? + No Hassles: drawings and photographs, published 1971 + + 102 + + + + + Flyer/poster art, Jacquette, Yvonne. Kenneth Koch at St. Marks Church in-the-Bowery + 102 + + + + + Flyer/poster art, Schneeman, George. + Announcement for Iovis II: pen & ink, 1997 + + 102 + + + + + Flyer/poster art, Schneeman, George and Waldman, Anne. "Poet's Giant Christmas Celebration," undated + + 102 + + + + + Flyer/poster art, Schneeman, George. Michael Brownstein and Vito Hannibal Acconci reading: pen & ink, undated + + 102 + + + + + Flyer/poster art, [Schneeman, George?] "John Wieners at St. Marks Church in-the-Bouwerie," undated + + 102 + + + + + Unidentified , Newspaper collages, 1983, undated + + 102 + + + + + Cover art, Schneeman, George. + Four Travels by Reed Bye and Anne Waldman: pen & ink with glued-on pieces, published 1979 + + 103 + + + + + Cover art, Schneeman, George. + Half a Tourist by Annie Witkowski: pen & ink, published 1980 + + 103 + + + + + Waldman, Anne (?). Prints (51), undated + + 103 + + + + + Hunter, Maureen. Two Portraits of Anne Waldman: prints (for cover of + Kill or Cure), undated + + 103 + + + + + Hunter, Maureen. Image for Robert Hunter book, Penguin: print, undated + + 103 + + + + + Sikelianos, Gina. Watercolor, undated + + 103 + + + + + Wilkie, Britton. Woodcut prints of man, man & giraffe (2), undated + + 103 + + + + + Wilkie, Britton. Icon, labeled "??????" (Michael): painting on wood, undated + + 103 + + + + + Waldman, Anne. + In June: collage & painting with text "As fine disc sinks over blue Rocky, daughter thinks of father's birthday," inscription on back reads "for Daddy--with much love, Anne, June 1980" + 103 + + + + + Unidentified. Watercolor with stampings, undated + + 103 + + + + + Cover art, Schneeman, George. + The World 3, 8, 12: pen & ink + 104 + + + + + Cover art, Schneeman, George. + The World #?: pen & ink, and plastic film + 104 + + + + + Cover art, Boyce, Jack. + The World 5, 15 cover design: pen & ink, conti crayon + 104 + + + + + Cover art, Dennis, Donna. + The World 17: photograph + 104 + + + + + Jacquette, Yvonne. Signed print: photocopy, door and tile, 1968 + + 104 + + + + + Flyer/poster art, Rothstein, S. Poster for Empire State College poetry reading by Anne Waldman: pen, colored pencil, June 1976 + + 104 + + + + + Brainard, Joe. Some Notes on Doing a Cover Design for "Highway to the Sky" by Michael Brownstein: pastel & other media + 105 + + +

    (inscribed "For Anne with love, Joe")

    +
    +
    + + + Brainard, Joe. Original postcard with cigarette: watercolor, undated + + 105 + + + + + D'Arcangelo, Allan. "Work for Anne Waldman": color photocopy of three artworks, 1997 + + 105 + + + + + Cover art, Murray, Elizabeth. + Her Story by Anne Waldman and Elizabeth Murray: cover art proofs, published 1990 + + 105 + + + + + Jacquette, Yvonne. "Rt. 1 Intersection: 180 degrees": Hand-colored Xerox, 1978 + + 106 + + + + + Notley, Alice. "Archaic" watercolor of heart, 1987 + + 106 + + + + + Schiffin, Herb. + Three Worlds, inscribed "'three Worlds' 1972--for Anne": painting on canvas, 1972 + + 106 + + + + + Mikolowski, Ann. Miniature oil painting on linen of Allen Ginsberg and Anne Waldman, 1988 + + 107 + + + + + Mask of Anne Waldman's face, 1980 + + 107 + + + + + Ritcheson, Amber. Portraits of Anne Waldman and others on tiles with hemp string, undated + + 107 + + + + + Waldman, Anne. Large textured print, black-and-white, undated + + 108 + + + + + Waldman, Carl. Painting with glued-on objects, undated + + 108 + + + + + Waldman, Anne (?). Prints (15), undated + + 108 + + + + + Corso, Gregory; Ginsberg, Allen; McClure, Michael; Waldman, Anne; Whalen, Philip. + Five/I/'77: 5 lithographed sheets and cover, 1977 + + 108 + + + + + Dermisache, Mertha. + Diario No. 1 Año 1, limited-run serial publication, offset print, 1972 + + 108 + + + + + Gordon, Louise. Still life: crayon, undated + + 108 + + + + + Pozzi, Gianantonio. + why isn't she here yet?: pen & ink, 1977 + + B + 8 + 2 + + +
    +
    + +
    +
    diff --git a/sample-ead/scrc/weber.xml b/sample-ead/scrc/weber.xml new file mode 100755 index 0000000..e439364 --- /dev/null +++ b/sample-ead/scrc/weber.xml @@ -0,0 +1,19259 @@ + + + umich-scl-weber + + + Finding Aid for the Edward C. Weber Papers, 1949-2005 + + Edward C. Weber Papers + Finding aid prepared by Gavin Strassel, Jerry Marshall + + + University of Michigan Library (Special Collections Research Center) +
    + 913 S. University Avenue + 8th Floor, Harlan Hatcher Graduate Library + Ann Arbor, Michigan, 48109-1190 + (734) 764 9377 + special.collections@umich.edu +
    + 2012-1013 +
    +
    + + This finding aid was produced using the Archivists' Toolkit + 2016-12-06T14:07-0500 + + eng + +
    + + + University of Michigan Library (Special Collections Research Center) + Finding Aid for the Edward C. Weber Papers, + Finding aid prepared by Gavin Strassel, Jerry Marshall + + + + + + Weber, Edward Charles, 1922- + + Edward C. Weber Papers 1949-2006 + + 28.0 Linear feet (54 manuscript boxes, 1 oversized box.) + + Printed material in boxes 1-54. + Photographic material occasionally attached to correspondence in boxes 1-54. Box 55 + contains two oversized items, each framed in wood. + weber + The material is in English. + Edward C. Weber (1922-2006) was long-time curator of the + University of Michigan Special Collection’s Joseph A. Labadie Collection of radical + history. Under his stewardship, the Labadie Collection grew into one of the premier + and most forward-thinking holdings of materials relating to radical and protest + groups from the United States and around the world. The Edward C. Weber Papers are + made up of the subject’s correspondence and biographical materials, written from + 1949 to 2006. The bulk of the collection, the correspondence is mostly comprised of + Weber’s letters soliciting materials on behalf of the Labadie Collection or fielding + reference questions from researchers, as well as personal correspondence from the + his family and friends. The collection’s materials are comprised of letters (typed + and handwritten), printed out emails, postcards, greeting cards, news clippings, + photographs, printed biographical materials, framed commendations, and other + miscellaneous paper materials. + + University of Michigan Library (Special Collections Research Center)Joseph A. Labadie Collection + + + + + Immediate Source of Acquisition Note +

    Acquired from Edward Weber and his associates. In addition, folders containing + Weber’s solicitations on behalf of the Special Collections were taken directly + from the Joseph A. Labadie Collection in 2008.

    +
    + + Conditions Governing Access Note +

    The collection is open for research.

    +
    + + Conditions Governing Use Note +

    Copyright has not been transferred to the Regents of the University of Michigan. + Permission to publish must be obtained from the copyright holder(s).

    +
    + + +

    Edward C. Weber Papers, University of Michigan Library (Special Collections Research Center)

    +
    + + +

    Longtime curator of the Joseph A. Labadie Collection within the University of + Michigan’s Special Collections, Edward C. Weber (1922-2006) was a critical figure + within the University’s library system and an active supporter of various + marginalized communities.

    +

    Born September 14, 1922 in Rochester, NY, he earned an undergraduate degree from the + University of Rochester followed by a master’s degree in American literature from + Columbia University. He made his way to the Ann Arbor area to attend the University + of Michigan’s library school in 1952. While a student, he began working part-time as + a reference librarian at the university’s Social Science Library. He continued + working within the library system after completing his education and became head of + the Labadie Collection in 1960 (Daub, 2006).

    +

    A prominent resource within the University of Michigan’s Special Collections, the + Labadie Collection is the oldest publicly-accessible collection for radical history, + containing items from a diverse array of social protest and radical movements that + date from the nineteenth to twenty-first centuries. Under Weber’s guidance and + persistent outreach, the Labadie Collection developed rich holdings for the Sixtie’s + anti-war, modern anarchism, gay liberation, radical feminism, pacifism, and ecology + movements. By actively providing representation to these marginalized communities + within the library’s holdings, the Labadie Collection was for a period one of the + few significant scholarly resources for gay, feminist, and anti-war studies. By the + time Weber retired in 2000, the Labadie Collection had grown six-fold and was firmly + entrenched as a primary resource for scholarship of the history of radicalism + ("History").

    +

    Besides managing the Labadie Collection, Weber was critical for developing + collections regarding Latin American studies, theater, and minority literature for + the university’s library system (Daub, 2006). In addition to his work within the + library, Weber was a proud member of the local Ann Arbor community, participating as + manager of the Cinema Guild for 37 years and actively supporting the University + Musical Society (Retzloff, 2006).

    +

    Edward Weber passed away at the age of 83 on April 11, 2006.

    +

    References:

    + +

    “History”. MLibrary. http://www.lib.umich.edu/labadie-collection/history [Accessed + 3/21/2013]

    +

    “Joseph Labadie Anarchy Collection. (December 24, 1998). C-SPAN School Bus. http://www.c-spanvideo.org/program/117475-1 + [Accessed 3/21/2013]

    +

    Retzloff, Tim. (April 20, 2006). “Edward Weber, retired Labadie Collection curator at + U of M, dies at 83”. Pride Source: Between the Lines + News. http://www.pridesource.com/article.html?article=18419 [Accessed + 3/21/2013]

    +
    + + +

    The Edward C. Weber Papers consists of Weber’s correspondence with organizations, + publishers, researchers, associates, family, and friends, along with biographical + materials created for his retirement and memorial services. The collection provides + a snapshot of the Joseph A. Labadie Collection and his work there for a 40 year + period (1960-2000), as well as a portrait of his personal relationships with friends + and family from 1949 to 2005.

    +

    The Biographical Materials series contains materials from Weber’s retirement + celebration and memorial service. The first folder contains past articles and + correspondence on paper stock, reprinted for Weber’s memorial service in 2006. The + second set of items relate to Weber’s retirement in 2000. This includes a flyer for + his retirement celebration, articles about his retirement, and copied certificates + of commendation. In addition, two framed items of commendation are housed in an + oversized box.

    +

    The Correspondence series makes up the majority of the collection and is comprised of + 27 linear feet of paper material housed in 54 manuscript boxes, foldered + alphabetically by correspondent or corresponding organization. Individual letters, + cards, photographs and other types of written communication are arranged + chronologically within each subject’s folder(s). The majority of folders are + dedicated to outreach by Weber to various radical groups and individuals soliciting + material donations to contribute to the Labadie Collection. His written responses to + reference inquiries for items within the Labadie Collection make up another + significant segment of the series. Most of these materials are typewritten letters + officially sent on behalf of the Labadie Collection and University of Michigan + Special Collections. Some later letters were written by Labadie Collection + assistants during Weber’s time there and with his knowledge. Since Weber never used + email, his letters sent on behalf of the Labadie Collection were typed on a manual + or electric typewriter. There are occasional handwritten notations on some of these + letters and a few emails printed out so he could read them. Other folders in the + series contain personal correspondence from friends, family, and other associates. + These items are made up mostly of handwritten notes, postcards, greeting cards, + newspaper clippings, printouts of emails, occasional photographs, and other + miscellaneous items. Many of the folders were removed from the general Labadie + correspondence files in 2008 and a listing was made of them at that time. The rest + of the series is made up of personal correspondence Weber stored in his home.

    +

    Within the series are several notable, lengthy correspondence partners including + Theodore Adams (1950-2004, 21 folders), James Q. Belden (1952-2000, 11 folders), + George Nick (1949-1991, 12 folders), Curtis and Clarice Rodgers (1961-2005, 18 + folders), and Henry Van Dyke (1950-2004, 12 folders). The series also includes + correspondence from notable individuals such as civil rights activist Malcolm X, + graphic novelist Harvey Pekar, former Secretary of State Eliot Abrams, the White + Panther Party, among many others.

    +

    Abbreviations:

    +

    LC=Labadie Collection ECW=Edward C. Weber

    +
    + + Subjects: + Labadie Collection (Harlan Hatcher Graduate + Library) + Librarians -- Ann Arbor (Mich.) + Radicalism -- Library resources + Radicalism--United States--History + + Genre Terms: + Correspondence. + + + + + + Biographical Materials + + + + Memorial Items (2006) + 1 + + + + + Retirement party materials + 1 + + + + + + + Correspondence + + + + A is A + 1 + + + + + A Batalha + 1 + + + + + AKA Books + 1 + + + + + AAH Examiner + 1 + + + + + AMPO (Tokyo, Japan) + 1 + + + + + AMS Press Film Service + 1 + + + + + A.C.E.P.P.O.S. (Association pour la Conservation Etude de la + Presse Ouvriere et Syndicate) + 1 + + + + + AFL-CIO Library + 1 + + + + + AFL-CIO News (Washington DC) + 1 + + + + + ALF Support Group (Toronto) + 1 + + + + + AMS Press Film Service + 1 + + + + + ABAS (Newark, NJ) + 1 + + + + + Abcarian, Gilbert + 1 + + + + + Abels, Kurt (reference: Karl Heinzen) + 1 + + + + + Abolitionist/Outlook (Newark, NJ) + 1 + + + + + About Face (New York, NY) + 1 + + + + + Abrams, Elliott (U.S. Secretary of State) + 1 + + + + + Abrams, Irving S. (Pioneer Aid and Support Association) + 1 + + + + + Accion Libertaria (Argentina) + 1 + + + + + Accuracy in Academia + 1 + + + + + Achebe Enterprises + 1 + + + + + Acorn + 1 + + + + + Action (New York) + 1 + + + + + L’Action Europeene (Paris) + 1 + + + + + Activist (Buffalo) + 1 + + + + + Activist, The (Oberlin) + 1 + + + + + Adamic Knights of the Ku Klux Klan + 1 + + + + + Adams, Graham, Jr.(reference: Paterson Strike, 1913) + 1 + + + + + Adams, Dr. Paul L. + 1 + + + + + Adams, Theodore S. (8 of 21 folders) + 1 + + + + + Adams, Theodore S. (10 of 21 folders) + 2 + + + + + Adams, Theodore S. (3 of 21 folders) + 3 + + + + + Adel, Hilda + 3 + + + + + Adkins, Charles (reference: Spanish Socialist Workers Party) + 3 + + + + + Adler, Joseph + 3 + + + + + Adler, Joyce Sparer + 3 + + + + + Advocate (Los Angeles) + 3 + + + + + Advocators (Detroit) + 3 + + + + + Aegis (Washington DC) + 3 + + + + + Africa and the World (London) + 3 + + + + + Africa Bureau, The + 3 + + + + + Africa Publications Trust + 3 + + + + + Africa Research Group + 3 + + + + + African Agenda (Chicago) + 3 + + + + + African Americans for Humanism + 3 + + + + + African Communist, The (London) + 3 + + + + + African National Congress/Sechaba Publications + 3 + + + + + Afro-American Magazine (New York) + 3 + + + + + Afro-American Museum of Detroit + 3 + + + + + Afros Expressions (Waukegan, Ill.) + 3 + + + + + After Stonewall (Winnipeg, Manitoba) + 3 + + + + + Against the Wall (Westfield, NJ) + 3 + + + + + Agel, Jerome B. (reference: I.W.W) + 3 + + + + + Agitazione del Sud (Palermo, Italy) + 3 + + + + + Agora (Toulouse, France) + 3 + + + + + Aimer, Ron G. (reference: Red Scare in Detroit) + 3 + + + + + Ain’t I A Woman (Iowa City) + 3 + + + + + Ajoblanco (Barcelona) + 3 + + + + + Akbar, Na’im + 3 + + + + + Akwesasne Notes (Rooseveltown, NY) + 3 + + + + + Albania Report (New York) + 3 + + + + + Albany Trust – Man and Society (London) + 3 + + + + + Albatross (East Orange, NJ) + 3 + + + + + Albro, Ward S. (reference: Ricardo Flores Magon) + 3 + + + + + Aleksandrov, Grigori (Moscow) + 3 + + + + + Alianza Federal de Pueblos Libres + 3 + + + + + Alive and Trucking Theater + 3 + + + + + Alive Magazine (Ontario, Canada) + 3 + + + + + Alland, Alexander Jr. + 3 + + + + + All Points of View (San Antonio, TX) + 3 + + + + + Allen, Bruce (reference: Carl Harp, North American Anarchist, + Strike!) + 3 + + + + + Allen, Ernest Jr. (reference: Moslem Sunrise) + 3 + + + + + Allen, Julia M. (reference: Grace Hutchins, Anna Rochester) + 3 + + + + + Alternate Society (Ontario, Canada) + 3 + + + + + Alternative Rides Again (New York) + 3 + + + + + Alternative Press Index (Centre) + 3 + + + + + Alternate Publishing + 3 + + + + + Alternatives Foundation (Modern Utopian, Visions) + 3 + + + + + Altherr, Marco (reference: First International) + 3 + + + + + Amazon Quarterly (Oakland, CA) + 3 + + + + + American Antiquarian Society + 3 + + + + + American Arts Documentation Centre, U. of Exeter, England + 3 + + + + + American Atheists, Inc. + 3 + + + + + American Book Publishers Council, Inc. + 3 + + + + + American-Chilean Council + 3 + + + + + American Civil Liberties Union + 3 + + + + + American Civil Liberties Union of New Jersey + 3 + + + + + American Civil Liberties Union of Northern California + 3 + + + + + American Civil Liberties Union of Southern California + 3 + + + + + American Civil Liberties Union (Washington, D.C.) + 3 + + + + + American Committee on Africa + 3 + + + + + American Dialog (New York) + 3 + + + + + American Federationist (Washington DC) + 4 + + + + + American Flag Committee Newsletter (Philadelphia) + 4 + + + + + American Friends Service Committee + 4 + + + + + American Heritage Magazine (reference: IWW) + 4 + + + + + American Institute for Marxist Studies + 4 + + + + + American Nazi Party + 4 + + + + + American Nonconformist (Winfield, KS) + 4 + + + + + American Opinion (Belmont, MA) + 4 + + + + + American Report (New York) + 4 + + + + + American Splendor (contains postcard from Harvey Pekar + 4 + + + + + Americans for Democratic Action (Leon Shull) + 4 + + + + + America’s Future + 4 + + + + + AMEX-Canada (Toronto) + 4 + + + + + Les Amis de Panait Istrati ( Cahiers) + 4 + + + + + Amnesty International + 4 + + + + + Among Friends (New York) + 4 + + + + + Ammunition (UAW) (Detroit) + 4 + + + + + An Phoblacht (Ireland) + 4 + + + + + Anamika (New York) + 4 + + + + + L’anarchie (Raymond Beaulation) (France) + 4 + + + + + Anarchism et non-violence (France) + 4 + + + + + Anarchismo (Italy) + 4 + + + + + Anarchist, The (Australia) + 4 + + + + + Anarchist Alliance of Aotearoa ( The State Adversary) (New + Zealand) + 4 + + + + + Anarchist Black Dragon (Montrèal) + 4 + + + + + Anarchist Feminist Notes (Jamaica Plain) + 4 + + + + + Anarchist Federation of Britain + 4 + + + + + Anarchist Group, The + 4 + + + + + Anarchives (France) + 4 + + + + + L’Anarcho-Syndicaliste (France) + 4 + + + + + Anarchos (Greece) + 4 + + + + + Anarchos (New York) + 4 + + + + + Anarchy Magazine (London) (also contains info on Russian + anarchists during revolution) + 4 + + + + + Anderson, Olive M. (reference: Hiawatha Village Association) + 4 + + + + + Andréas, Bert (reference: Karl Heinzen, German radicals, IWMA) + 4 + + + + + Animal Liberation Front Support Group (Canada) + 4 + + + + + Ann Arbor Argus + 4 + + + + + Ann Arbor District Library + 4 + + + + + Ann Arbor Metro Times + 4 + + + + + Ann Arbor Tenants Union + 4 + + + + + Annunziata, Frank (reference: general inquiry) + 4 + + + + + Anthony, Elizabeth A. + 4 + + + + + Anti-Apartheid Movement + 4 + + + + + Anti-Apartheid News (London) + 4 + + + + + Anti-Castration League + 4 + + + + + Antipode (Mass.) + 4 + + + + + Antorcha (Mexico) (Enrique Flores Magon) + 4 + + + + + ApaEros (Corvallis, OR) + 4 + + + + + Apfelbaum, Charles + 4 + + + + + Aphra (New York) + 4 + + + + + Appeal to Reason (Chicago) + 4 + + + + + Appeal to Reason (Thousand Oaks, CA) + 4 + + + + + Appalachian Movement Press + 4 + + + + + Aranoff, S. + 4 + + + + + Arbetaren (Sweden) + 4 + + + + + Archer, Dane + 4 + + + + + Archief en Museum van de Socialistische Arbeidersbeweging + 4 + + + + + Archives Project, The + 4 + + + + + Arcos, Federico + 4 + + + + + Arena Three (London) (superseded by Gay Girl) + 4 + + + + + Arguimbau, Ellen H. (reference: Colorado Coal Miners Strike 1901) + 4 + + + + + Arnold, Ronnie (reference: Ross Barnett) + 4 + + + + + Aronson, Ronald + 4 + + + + + Aronson, Stacey L Parker (reference: Spanish Civil War poetry) + 4 + + + + + Arthur Morgan School + 4 + + + + + Arvind, Savir (Trikon) + 4 + + + + + Ashbaugh, Carolyn (Lucy Parsons) + 4 + + + + + Askatasuna (Spain) + 4 + + + + + Assembly of Captive European Nations + 4 + + + + + Asociacion Isaac Puente: Centro de Documentación Estudios + Anarquistas (Spain) + 4 + + + + + Association for the Study of Negro Life and History + 4 + + + + + Association for Union Democracy + 4 + + + + + Association Max Sterner du Kébec ( La Feuille) (Montréal) + 4 + + + + + Association of Eritrean Students in North America + 4 + + + + + Association of Libertarian Feminists + 4 + + + + + Astral Projection (New Mexico) + 4 + + + + + Ater, P. J. ( Lookout) (Seattle) + 4 + + + + + Atlanta Inquirer + 4 + + + + + Atlantis News (Saugerties, NY) + 4 + + + + + Atobá (Brazil) + 4 + + + + + Attack (Wash. DC) (National Youth Alliance) + 4 + + + + + Attica Brigade (Fight Back!) (New York) + 4 + + + + + Aube, Edwin L. (reference: United Steel Workers) + 4 + + + + + Auderson, Charlotta + 5 + + + + + Auerbach, Jerold S. (reference: La Follette Civil Liberties + Committee) + 5 + + + + + Augur, The (Eugene, OR) + 5 + + + + + Augusta Courier + 5 + + + + + Avakumovic, Ivan (reference: anarchism) + 5 + + + + + Avatar (Boston) + 5 + + + + + Ayer, Hugh M. (reference: Labor, Indiana, 1940s) + 5 + + + + + Ayers, Rick + 5 + + + + + Ayn Rand Letter (New York) + 5 + + + + + Azania News (Tanzania) + 5 + + + + + Azione Diretta (Switzerland) + 5 + + + + + Azione Nonviolenta (Italy) + 5 + + + + + BB Books + 5 + + + + + B.C. Blackout (British Columbia) + 5 + + + + + BLK (Los Angeles) + 5 + + + + + Babilonia (Italy) + 5 + + + + + Babylon Press + 5 + + + + + Backall, Morris (reference: Haymarket) + 5 + + + + + Bacon, Gordon T. + 5 + + + + + Bad Haircut (Olympia, WA) + 5 + + + + + BAD Press (Cambridge, MA) + 5 + + + + + Bagnall, Carlene + 5 + + + + + Bailey, Richard and Carol + 5 + + + + + Bailey, Hubert + 5 + + + + + Baker, Deane + 5 + + + + + Bales, James D. (reference: communism, Inprecor) + 5 + + + + + Balis, Samuel (reference: Nicolai V. Chaikovski) + 5 + + + + + Ballantine, Betty + 5 + + + + + Ballantine, David (Ian) + 5 + + + + + Balliot, Bob (reference: Bill Hawywood murder trial) + 5 + + + + + Balzer, Anitra (reference: Schmidt-Caplan case 1910) + 5 + + + + + Bandiera Rossa (Italy) + 5 + + + + + Bandwagon (South Africa) + 5 + + + + + Bar None (Somerville, MA) + 5 + + + + + Barb, The (Atlanta) + 5 + + + + + Barisonzi, Jeannette (reference: Lucy Parsons, Jo Labadie, Emma + Goldman’s literary heirs) + 5 + + + + + Baskin, Alex (reference: death masks of Sacco and Vanzetti, + Bingo, Ralph Chaplin, Art Young, etc.) + 5 + + + + + Barkun, Michael (reference: Coxey’s Army) + 5 + + + + + Barlow, Jennifer + 5 + + + + + Basen, Neil (reference: Kate Richards O’Hare, National Socialist, + Caroline A. Lowe + 5 + + + + + Bart, Philip (reference: Blacks in the left-wing trade union + movement) + 5 + + + + + Bartoletti, Efrem (from William Morgan, Curator of the Labadie + Collection) + 5 + + + + + Basic Pamphlets + 5 + + + + + Bassett, Dr. David + 5 + + + + + Bates, Scott (reference: homosexuality of Jesus) + 5 + + + + + Batterham, David (bookseller) + 5 + + + + + Battler (Australia) + 5 + + + + + Battye, John H. (reference: Richard Trevellick) + 5 + + + + + Bauls of the Brickyard (Indiana) + 5 + + + + + Baum, Janet + 5 + + + + + Baxandall, Lee (reference: Harriet Orcutt, May Beals, Lois + Waisbrooker, socialist culture in the U.S.) + 5 + + + + + Baxandall, Rosalyn (reference: Elizabeth Gurley Flynn) + 5 + + + + + Bay Area Students Committee + 5 + + + + + Bay Area Reporter ( Bay Times) + 5 + + + + + Bay Area Worker (San Francisco) + 5 + + + + + Beals, Carleton (reference: Jack Johnson) + 5 + + + + + Beam, Dorothy (re: Joseph Beam) + 5 + + + + + Beam, Joe (reference: Blacklight) + 5 + + + + + Beck, Bruce + 5 + + + + + Becker, Heiner + 5 + + + + + Beffel, John Nicholas (re: Covington Hall manuscript, obituaries, + IWW) + 5 + + + + + Befreiung (Colon, Germany) + 5 + + + + + Belden, James Q. (11 of 11 folders) + 6 + + + + + Bell, The (Birmingham, England) + 7 + + + + + Bell and Howell (Micro Photo Division) + 7 + + + + + Bellamy, Joyce M. (reference: John Francis Bray) + 7 + + + + + Bendler, Mary K. + 7 + + + + + Benedict, Russell G. (Univ. of Nevada; Collectors of + Nuttiness/CON) + 7 + + + + + Benito, Aldrich + 7 + + + + + Benjamins, John (Antiquariat) + 7 + + + + + Benjelloun, Abdelmajid (reference: 1936 revolt against Franco in + northern Morocco) + 7 + + + + + Bennett, Blythe Allison (reference: songs and posters of the + Spanish Civil War) + 7 + + + + + Benni + 7 + + + + + Bentley Historical Collections (see also Michigan Historical + Collections) + 7 + + + + + Bentley, Wilder + 7 + + + + + Berbier, Mitch (reference: LGBT, white supremacists as + minorities) + 7 + + + + + Berch, Victor A. (Brandeis Univ. – Spanish Civil War materials) + 7 + + + + + Le Berdache (Montrèal) + 7 + + + + + Berg, Margaret + 7 + + + + + Bergin, Barry + 7 + + + + + Berkeley Barb + 7 + + + + + Sanford Berman + 7 + + + + + Berndt, Louise + 7 + + + + + Bernecker, Walther (reference: Spanish Civil War) + 7 + + + + + Bernstein, Anna J. + 7 + + + + + Bernstein, Dennis + 7 + + + + + Berry, Mrs. Elizabeth (reference: Emma Goldman) + 7 + + + + + Bertrand Russell Archives + 7 + + + + + Bertrand Russell Peace Foundation + 7 + + + + + Bers, Gunter (reference: Wilhelm Hasselmann) + 7 + + + + + Bersin, Mollie Klapper (reference: Sunrise Cooperative Farm + Community) + 7 + + + + + Bessie, Dan + 7 + + + + + Beth Hatefutsoth-Museum of the Jewish Diaspora + 7 + + + + + Between the Lines (Detroit, MI) + 7 + + + + + Between the Lines (Newtown, PA) + 7 + + + + + Betzold, Michael (re: Sunrise Cooperative Farm Community) + 7 + + + + + Beyond Baroque (Venice, CA) + 7 + + + + + Biafra (Lisbon, Portugal) + 7 + + + + + Biehl, Janet + 7 + + + + + Bilalian News (ECW letter to the Editor) + 7 + + + + + Bingham, Emily (reference: Max Edgeworth Lazarus) + 7 + + + + + Binkley, Dave (reference: The Emancipator) + 7 + + + + + Bi-Plane (New York) + 7 + + + + + Birmingham GLF ( Gladrag - England) + 7 + + + + + Birth Press (Tuli Kupferberg) + 7 + + + + + Birula, Katherine (reference: William Walker Atkinson) + 7 + + + + + Bit (London) + 7 + + + + + Bittelman, Alex + 7 + + + + + Bjerke, John A. (reference: IWW in Oregon, Justice) + 7 + + + + + Black and Red (Detroit) + 7 + + + + + Black and Red (Manchester, England) + 7 + + + + + Black and White Men Together (Chicago) + 7 + + + + + Black and White Men Together (San Diego) + 7 + + + + + Black and White Men Together (San Francisco) + 7 + + + + + Black Bart Brigade (Canyon, CA) + 7 + + + + + Black Cat Press (Alberta, Canada) + 7 + + + + + Black Collegian (New Orleans) + 7 + + + + + Black Dialogue (New York) + 7 + + + + + Black Dwarf (London) + 7 + + + + + Black Flag (London) + 7 + + + + + Black, Henry T. (Book dealer) + 7 + + + + + Black Images (Toronto) + 7 + + + + + Black Knight Anarchist Group-London + 7 + + + + + Black Liberator, The (Chicago) + 7 + + + + + Black Liberator, The (Cuyahoga Community College) + 7 + + + + + Black Liberation Front of Canada + 7 + + + + + Black Lung Bulletin (Virginia) + 7 + + + + + Black News (New York) + 7 + + + + + Black/Out (Philadelphia, Detroit, New York) + 7 + + + + + Black Panther (Oakland, CA) + 7 + + + + + Black Poetry Journal (San Francisco) + 7 + + + + + Black Politics (Berkeley) + 7 + + + + + Black Power (San Francisco) + 7 + + + + + Black Rap, The (Urbana, IL) + 7 + + + + + Black Rose (Somerville, MA) + 7 + + + + + Black, Sally W. (Trenton State College) + 7 + + + + + Black Scholar, The (San Francisco) + 7 + + + + + Black Sports (New York) + 7 + + + + + Black Star (San Francisco) + 8 + + + + + Black Star (Tucson, AZ) + 8 + + + + + Black Sun Books + 8 + + + + + Black Theatre (New York) + 8 + + + + + Black Times (Albany, CA) + 8 + + + + + Black Vanguard (Danville, IL) + 8 + + + + + Black Voice (Montreal) + 8 + + + + + Black Voice, The (United Black Workers- Newark, NJ) + 8 + + + + + Black Workers Congress (Detroit, MI) + 8 + + + + + Black World, The (Pacoima, CA) + 8 + + + + + Blacklight (Washington DC) + 8 + + + + + Blackman, Selma (reference: Rosika Schwimmer) + 8 + + + + + Blackside, Inc. + 8 + + + + + Blade, The (Washington DC) + 8 + + + + + Blatt, Martin (reference: Ezra Heywood + 8 + + + + + Bluestein, Abe (reference: Hippolyte Havel) + 8 + + + + + Blum, Antoinette (reference: Les Socialistes Allemands contre la + Guerre et le Militariisme) + 8 + + + + + Blumberg, Leonard (reference: Ben Reitman, Albert Parsons) + 8 + + + + + Bockman, Philip (re: “Stonewall 25”) + 8 + + + + + Body Politic (Toronto) + 8 + + + + + Boeck, George + 8 + + + + + Bogen, Nancy (reference: Hippolyte Havel) + 8 + + + + + Bograd, Mark (reference: use of IWW images for American + Landscapes) + 8 + + + + + Bolduc, Lucie (Inc.) + 8 + + + + + Boletin A.I.T. (Caracas, Venezuala) + 8 + + + + + Boletin de Informacion Libertaria (Miami) + 8 + + + + + Bonanno, Alfredo + 8 + + + + + Bond, The (New York) + 8 + + + + + Bookchin, Murray + 8 + + + + + Booklegger Press + 8 + + + + + Books (Book dealer – England) + 8 + + + + + Boonin, Harry D. (reference: Voltairine de Cleyre, Broadstreet + Riot) + 8 + + + + + Boos, Florence (reference: Max Nettlau, Victor Dave) + 8 + + + + + Boris, Eileen (reference: John Ruskin, William Morris) + 8 + + + + + Borle, Caroline (reference: images for Homestead Strike + documentary, The River Ran Red) + 8 + + + + + Borrowed Times (Missoula, MT) + 8 + + + + + Boss (New York) + 8 + + + + + Boston Public Library + 8 + + + + + Boston, Raymond J. (reference: John Francis Bray) + 8 + + + + + Botero, Ebel + 8 + + + + + Bottum, Olivia + 8 + + + + + Bouchier, David (reference: New Left, ecology, women’s movement) + 8 + + + + + Boulware, Marcus (reference: Lucy Thurman, Women’s Christian + Temperance Union) + 8 + + + + + Bound Together (San Francisco) + 8 + + + + + Bowling Green State University + 8 + + + + + Boyd, Melba + 8 + + + + + Brademas, John (U.S. Representative) + 8 + + + + + Bradford, Rod (reference: D.M. Bennett, Josephine Tilton, Stephen + Pearl Andrews) + 8 + + + + + Bradshaw, James A. + 8 + + + + + Bradshaw, James Stanford + 8 + + + + + Brady, Marcelino Flanter (re: universal homosexual + rights-Santiago, Chile) + 8 + + + + + Branch, Ed (reference: James T. Farrell) + 8 + + + + + Brand (Sweden) + 8 + + + + + Brand, Benjamin (Emma Goldman’s essay, “Herschel Feibel Grynspan + and his Tormentors”) + 8 + + + + + Brandt, Charlton J. (reference: Syndicalist League of North + America; Jay Fox; William Z. Foster) + 8 + + + + + Bratach Dubh (Anarchist publishers - Scotland) + 8 + + + + + Brazier, Richard D. (reference: Little Red Songbook) + 8 + + + + + Breakout! Collective. (London) + 8 + + + + + Breitbart, Myrra (reference: Boletín de Información) + 8 + + + + + Breslow, Lori (reference: Josiah Warren) + 8 + + + + + Breton, R. Yves ( Krach – Montreal) + 8 + + + + + Brewer, David Whitney + 8 + + + + + Brick (AL) + 8 + + + + + Bridge (Chicago) + 8 + + + + + Brinkley, Alan (reference: Charles E. Coughlin, Huey Long) + 8 + + + + + British Anarchism Survey (Martyn Everett) (reference: E.T. Craig, + Ambrose Cuddon, Henry Seymour, Charlotte Watson) + 8 + + + + + British Columbia Federation of Labor (reference: B.C. IWW) + 8 + + + + + British Council of Churches + 8 + + + + + Broadsheet (Australia) + 8 + + + + + Broadside/Free Press (Cambridge, MA) + 8 + + + + + Broadside Press (Detroit) + 8 + + + + + Brock, Kenneth D. + 8 + + + + + Brockway, Darrell (reference: Daniel DeLeon) + 8 + + + + + Broderick, William D. (donation) + 8 + + + + + Broken Arrow (Detroit) + 8 + + + + + Brook, Michael (reference: Swedish-American radicalism) + 8 + + + + + Brooks, Anna Marie (reference: Frederick William Roman, Utopian + Society + 8 + + + + + Brooks, Frank H. (reference: Dyer D. Lum + 8 + + + + + Brother (Berkeley, CA) + 8 + + + + + Brown, Charles C. (reference: review of Jack Lively book on + Alexis de Tocqueville) + 8 + + + + + Brown, David (Left Bank Books/Black Eye Press) + 8 + + + + + Brown, F. + 8 + + + + + Brown, Jay and Peggy + 8 + + + + + Brown, M. R. (reference: Ben Fletcher) + 8 + + + + + Brown, Melvin P. (re: donation of Lyndon LaRouche materials) + 8 + + + + + Brown, Ruth and Jim (4 folders) + 9 + + + + + Brownstone, The (New York) + 9 + + + + + Bruccoli, Matthew (reference: Sanctuary) + 9 + + + + + Brundage Hill Research Publications (re: Black Lesbian + Bibliography) + 9 + + + + + Brunson, Isaiah (Brooklyn CORE) + 9 + + + + + Bubka, Tony (reference: Harlan County Coal Strike; Ralph Chaplain + stickers) + 9 + + + + + Buchanan, Patrick J. ( From the Right) + 9 + + + + + Buchstein, Fred (reference: Josiah Warren) + 9 + + + + + Buckingham, Peter H. (reference: Frank P. O’Hare) + 9 + + + + + Buckley, John M. (reference: William D. Haywood) + 9 + + + + + Bufe, Chaz + 9 + + + + + Buffalo Gay Services + 9 + + + + + Bugle, The (Milwaukee) + 9 + + + + + Buhle, Paul + 9 + + + + + Bulletin Intérieur (France) + 9 + + + + + Bulletin [of International Socialism] (New York) + 9 + + + + + Bulletin of Anarchist Research (Tom Cahill) + 9 + + + + + Bulletin Publications (New York) + 9 + + + + + Burgmann, Verity N. (reference: Australia IWW) + 9 + + + + + Burke, Storey + 9 + + + + + Burkland, Edna + 9 + + + + + Burley, Laurel (reference: POUM) + 9 + + + + + Burmese Relief Centre + 9 + + + + + Burning Spear (Ann Arbor) + 9 + + + + + Burros, R. (Proletarian Party Press) + 9 + + + + + Burrows, Kenneth David (reference: Sacco and Vanzetti) + 9 + + + + + Business Media Resources (reference: images of immigrants for An + American Portfolio) + 9 + + + + + Butler, Susan + 9 + + + + + Butts, Charles L. (re: Mississippi Free Press) + 9 + + + + + CERMTRI (Paris) + 9 + + + + + C.H.E. (Campaign for Homosexual Equality – England) + 9 + + + + + C.I.O News (Washington DC) + 9 + + + + + C.I.O.-U.A.W. + 9 + + + + + C.I.R.A. (Centre International de Recherches sur l’Anarchisme) + 9 + + + + + C.L.G.H. Newsletter (Annandale-on-Hudson, New York) + 9 + + + + + C.N.T. + 9 + + + + + COFFLA (Common Front for Latin America) (Maryland) + 9 + + + + + COSMEP (Committee of Small Magazines and Publishers) + 9 + + + + + C.V.M. Newsletter (Council for Voluntary Military) (Chicago) + 9 + + + + + Cage and the Doorkey, The (California) + 9 + + + + + Cahiers des Amis de Han Ryner + 9 + + + + + Cahiers de L’Humanisme Libertaire (Paris) + 9 + + + + + Cahn, William (reference: American labor history, Richard + Trevellick) + 9 + + + + + Cain, Frank M. (reference: IWW photographs) + 9 + + + + + Cain, James W. (donation) + 9 + + + + + Cakwebe, Duke C. + 9 + + + + + Calderon, Francine (reference: Elizabeth Gurley Flynn) + 9 + + + + + Caldwell, J. T. (The Strickland Press, Guy Aldred, No Traitors’ + Gait) + 9 + + + + + California Black Rose ( Bicicleta) + 9 + + + + + California Socialist (Los Angeles) + 9 + + + + + California State University (Fullerton) + 9 + + + + + Call, Jack (Metaphrast of the Emanations & Chief of Protocol) + 9 + + + + + Callaloo (Lexington, KY) + 9 + + + + + Camacho Escamez, Diego (reference: Emma Goldman, Buenaventura + Durruti) + 9 + + + + + Camp, Helen C. (reference: Elizabeth Gurley Flynn) + 9 + + + + + Campbell, Tim ( GLC Voice) + 9 + + + + + Camp Ink (Campaign Against Moral Persecution) (Australia) + 9 + + + + + Camp News (Chicago) + 9 + + + + + Campaign for a Democratic Foreign Policy + 9 + + + + + Campaigner, The (National Caucus of Labor Committees) (New York) + 10 + + + + + Campos, Martha (Donation; see SVF: Labor – U.S. – Mergers – Gulf + Oil Company) + 10 + + + + + Canadian Gay Archives (Toronto) + 10 + + + + + Canadian Lesbian and Gay Rights Coalition ( NGRC) (Ottowa) + 10 + + + + + Canadian Women’s Educational Press (Toronto) + 10 + + + + + Candour:The British Views-Letter (London) + 10 + + + + + Cantine-Wohlfahrt, Thérèse + 10 + + + + + Cantsin, Elliot + 10 + + + + + Capital Voice, The (Washington DC) + 10 + + + + + Caplan, Ron (reference: Alexander Berkman) + 10 + + + + + Capsule News (Arlington, VA) + 10 + + + + + Caracol (San Antonio, TX) + 10 + + + + + Cardinal Mindszenty Foundation ( Mindszenty Report) (St. Louis) + 10 + + + + + Carey, Dennis P. (reference: J. William Loyd) + 10 + + + + + Carey, Kevin + 10 + + + + + Carey, Peter + 10 + + + + + Caribbé (Philadelphia) + 10 + + + + + Caribbean Workers Weekly (London) + 10 + + + + + Carillon, The (Saskatchewan) + 10 + + + + + Carlson, Andrew R. (reference: German radicals and newspapers) + 10 + + + + + Carlson, Peter (reference: William D. Haywood) + 10 + + + + + Carolina Plain Dealer (Durham, NC) + 10 + + + + + Carpenter, Karen (reference: Women in the IWW) + 10 + + + + + Carr, Mary M. + 10 + + + + + Carr, Robert ( Smurfs in Hell) + 10 + + + + + Carroll, Celeste + 10 + + + + + Carson, Robe (reference: Journal of Orgonomy) + 10 + + + + + Cary, Michael D. (reference: MC5, White Panther Party) + 10 + + + + + Casciato, Art (reference: League of American Writers) + 10 + + + + + Casey, Anne + 10 + + + + + Cash, Harvey (reference: Casa Reports) + 10 + + + + + Cashin, Richard (re: donation) + 10 + + + + + Caswell, Lucy S. (reference: general) + 10 + + + + + Catalyst (Culver City, CA) + 10 + + + + + Catalyst (Exeter, England) + 10 + + + + + Catanese, Lynn Ann (reference: Emma Goldman; conscription) + 10 + + + + + Catholic Worker (New York) + 10 + + + + + Cavalier (Mount Morris, IL) + 10 + + + + + Cawood, Richard (complaint about Labadie Collection’s hours of + service) + 10 + + + + + Cazden, Robert (reference: German-American radicalism) + 10 + + + + + Center, Don B. (reference: general) + 10 + + + + + Center for Educational Productions (reference: making a + documentary film on IWW) + 10 + + + + + Center for Information on Latin America ( Grito y Fusil) + 10 + + + + + Center for Inquiry (Paul Kurtz) + 10 + + + + + Center for Libertarian Studies + 10 + + + + + Center for Research Libraries (CRL) + 10 + + + + + Center for Rural Studies ( People and Land) + 10 + + + + + Center for Socialist History ( CSH Interbulletin) + 10 + + + + + Center for United Labor Action + 10 + + + + + Center for the Study of Armament and Disarmament + 10 + + + + + Center for the Study of Popular Culture (Letter from ECW to David + Horowitz – no reply) + 10 + + + + + Central American Peace & Democracy Watch Bulletin + (Washington DC) + 10 + + + + + Central Committee for Conscientious Objectors + 10 + + + + + Central Distribution (Oakland, CA) + 10 + + + + + Centre de Documentació Histórico-Social (Barcelona) + 10 + + + + + Centro D’Iniziativa Gay (Milano) + 10 + + + + + Centro Documentazione Anarchica + 10 + + + + + Centro Studi Libertari “G. Pinelli” (Milano) + 10 + + + + + Century Books, Inc. + 10 + + + + + Cerne, Lisa (reference: women in the Civil Rights Movement) + 10 + + + + + Chadwyck-Healey + 10 + + + + + Challenge/Desafio (New York) + 10 + + + + + Chamberlin, Brewster S. (reference: Knights of Labor Yearbook + 1891) + 10 + + + + + Champion, Michael + 10 + + + + + Chapel Hill Freedom Committee + 10 + + + + + Chatfield, E. Charles (reference: pacifism) + 10 + + + + + Chavis, John (Curator, Education Division, Detroit Historical + Museum) (reference: Joseph Labadie) + 10 + + + + + Chelsea House Publishers (reference: photos of Emma Goldman) + 10 + + + + + Chenoweth, Donald J. (reference: New International) + 11 + + + + + Cherny, Robert W. (reference: Harry Bridges) + 11 + + + + + Chersi, Andrea (reference: Robert Reitzel) + 11 + + + + + Chicago Public Library + 11 + + + + + Chicago Seed + 11 + + + + + Chicano Publications ( El Chicano) + 11 + + + + + Chile Solidarity Committee ( For a Free Chile) + 11 + + + + + China Rights Annals (Armonk, NY) + 11 + + + + + Chinese Information Service + 11 + + + + + Ching, Erik (reference: El Salvador 1900-11940) + 11 + + + + + Chosen Books + 11 + + + + + Christian Anti-Communism Crusade + 11 + + + + + Christian Crusade (Tulsa) + 11 + + + + + Christian Economics (Buena Park, CA) + 11 + + + + + Christian Renewal (Sussex, England) + 11 + + + + + Christian Vanguard (Hollywood) + 11 + + + + + Chronicle of Current Events (New York) + 11 + + + + + Chroniques des strategies présentes (France) + 11 + + + + + Church & State (Silver Spring, MD) + 11 + + + + + Church of the Christian Crusade (Charles Secrest) + 11 + + + + + Church League of America + 11 + + + + + Church of Eternal Life & Liberty ( Live and Let Live) + 11 + + + + + Churchill, Tom (reference: Eugene Barnett; Centralia) + 11 + + + + + Churchill, Marilyn (Southern Tenant Famer’s Union) + 11 + + + + + Cinema Educational Guild, Inc. + 11 + + + + + Citizen News (San Francisco) + 11 + + + + + Citizens Committee for a Free Cuba + 11 + + + + + Citizens Councils of America ( The Citizen) (Jackson, MS) + 11 + + + + + Citizens Report (Metairie, LA) + 11 + + + + + Civil Disorder Research Institute ( Civil Disorder Digest) + 11 + + + + + Civilisation Libertaire (Paris) + 11 + + + + + Claeys, Gregory (reference: Chartist Tracts for the Times, Josiah + Warren, John Francis Bray) + 11 + + + + + Clark, Carolyn C. (2 folders) + 11 + + + + + Clark, Norman (reference: Everett, IWW) + 11 + + + + + Clark, Thomas (reference: right-wing political speeches) + 11 + + + + + Class Struggle (October League) (Bell Gardens, CA) + 11 + + + + + Class War (London) + 11 + + + + + Clayton, Melford W. (reference: general) + 11 + + + + + Clements, Joyce M. (reference: 1934 San Francisco General Strike) + 11 + + + + + Clydeside Anarchists (Glasgow, Scotland) + 11 + + + + + Coal Miners Research Project + 11 + + + + + Coday, William (4 folders) + 11 + + + + + Coe, Kate (reference: bombing of A. Mitchell Palmer’s house) + 12 + + + + + Coffin, Jean-Christophe (reference: Italian immigrants) + 12 + + + + + Cohen, Carl + 12 + + + + + Cohen, Irving R. (reference: Charles Erskine Scott Wood) + 12 + + + + + Cohen, Ronald D. (reference: political folk music recordings + 12 + + + + + Colarocco, Pasquale (bust of Carlo Tresca requested by ECW) + 12 + + + + + Colby, David C. (reference: gay politics and the media) + 12 + + + + + Cole, Terry W. (reference: George F. Vanderveer and the IWW) + 12 + + + + + Colectivo de Concientizacion Gay (Puerto Rico) + 12 + + + + + Collart, Yves M. (reference: French radical immigrants) (no + reply) + 12 + + + + + Collector’s Network, ALA + 12 + + + + + Colman, Sam + 12 + + + + + Columbia University Library + 12 + + + + + Combat (New York) + 12 + + + + + Come Out (New York) + 12 + + + + + Come Together (London) + 12 + + + + + Comegys, Robert G. (reference: Freethought: a Liberal Journal) + 12 + + + + + Comité d’Urgence Anti-Répression Homosexuelle (CUARH) (Paris) + 12 + + + + + Comité pro Presos de España (New York) + 12 + + + + + Comment (London) + 12 + + + + + Committee Against Violations of Human Rights in El Salvador (New + York) + 12 + + + + + Committee for a Democratic Spain ( Spain Today) (New York) + 12 + + + + + Committee for Freedom in Mozambique, Angola, and Guine (London) + 12 + + + + + Committee for Nonviolent Action (New York) + 12 + + + + + Committee for the Free World ( Contentions) (New York) + 12 + + + + + Committee of Ten Million (Norborne, MO) + 12 + + + + + Committee of U.S. Bolsheviks (New York) + 12 + + + + + Committee on the Name Negro (New York) + 12 + + + + + Committee to Aid the Monroe Defendants (New York) + 12 + + + + + Committee to Defend Francisco Molina (New York) + 12 + + + + + Committee to Protest Absurd Censorship (New York) + 12 + + + + + Committee to Secure Justice for Morton Sobell (New York) + 12 + + + + + Committee to Support the Revolution in Iran (Wayne State + University) + 12 + + + + + Committees of Correspondence + 12 + + + + + Common Sense (Washington DC) + 12 + + + + + Communist Viewpoint (Toronto) + 12 + + + + + Communist Workers Party ( Workers Viewpoint) + 12 + + + + + Community Research and Action group ( Community) (Manchester, + England) + 12 + + + + + Community Times (West Lafayette, IN) + 12 + + + + + Comunidad (Stockholm) + 12 + + + + + Comunidad de Orgullo Gay (Puerto Rico) + 12 + + + + + Comunidad Ibérica (Mexico) + 12 + + + + + Conari Press (reference: Mother Jones) + 12 + + + + + Confidencial (Costa Rica) + 12 + + + + + Congdon, Kirby ( Magazine 6) + 12 + + + + + Conlin, Joseph R. (reference: William D. Haywood, IWW) + 12 + + + + + Connections (Madison) + 12 + + + + + Conservative Viewpoint (Washington DC) + 12 + + + + + Constitution (New York) (reference: IWW + 12 + + + + + Constitutional Alliance, Inc. (Lansing) + 12 + + + + + Consumption (Seattle) + 12 + + + + + Contemporary Issues (London) + 12 + + + + + Conyers, John, Jr. (re: Vietnam War) + 12 + + + + + Cooke, Epsey M. (reference: Spanish Civil War) + 12 + + + + + Copeland, Tom (reference: Wesley Everest; Centralia; IWW) + 12 + + + + + COQ (Copenhagen) + 12 + + + + + Cork Workers Club (Ireland) + 12 + + + + + Cornell University – Dept. of Manuscripts and University Archives + (reference: Henry Bool) + 12 + + + + + Cornell University – New York State School of Industrial and + Labor Relations + 12 + + + + + Cornford, Daniel (reference: Western Watchman) + 12 + + + + + Cornish, R. S. (reference: John Beverly Robinson) + 12 + + + + + Cornuault, J. + 12 + + + + + Coughlin, Michael E. + 12 + + + + + Council Against Communist Aggression + 12 + + + + + Council for the Defense of Freedom + 12 + + + + + Council of American-Soviet Friendship + 12 + + + + + Council of Federated Organizations (COFO) + 12 + + + + + Council(s) on Religion and the Homosexual + 12 + + + + + Councilor, The (Shreveport, LA) + 12 + + + + + Count Down (Wichita, KS) + 12 + + + + + Counterdraft (Los Angeles) + 12 + + + + + Counterpoint + 12 + + + + + Country Women (Albion, CA) + 12 + + + + + Court TV (reference: Roseberg-Sobell Case) + 12 + + + + + Cowan, Geoffery (reference: LA Times bombing, McNamara brothers, + Clarence Darrow) (no reply) + 12 + + + + + Cowell, Sidney (reference: Clara Cowell) + 12 + + + + + Cox, Marion (Mr.) (reference: Morals vs. Art by Anthony Comstock) + 12 + + + + + Coy, Patrick G. (reference: Christian Anarchism) + 12 + + + + + Cozzie, Eugene O. (sale of materials from 1969 sit-in at + University of Chicago) + 12 + + + + + Crazie (New York) + 12 + + + + + Creswell, Stephen (reference: Mississippi Socialist Party) + 12 + + + + + Crichton, Kevin John (reference: Nazi Party in Thuringia) + 12 + + + + + Crisálida (Guadalajara, Mexico) + 13 + + + + + Criterion, The (Honolulu, HI) + 13 + + + + + Crompton, Lewis (Lincoln-Omaha Council on Religion and the + Homosexual) + 13 + + + + + Cross & the Flag, The + 13 + + + + + Crow, Suzanne, J. (reference: 1964 Freedom Summer; Project + Mississippi; Edward L. Koch) + 13 + + + + + Crowley, Louise (Provos) + 13 + + + + + Crucible, The (Duluth, MN) + 13 + + + + + Crusader (Denham Springs, LA) (KKK) + 13 + + + + + Crusader (North Carolina) + 13 + + + + + Cuadernos de Formacion e Interpretacion Libertaria (Spain) + 13 + + + + + Cuba, Ministerio de Industrias + 13 + + + + + Cuba Socialista (Havana, Cuba) + 13 + + + + + Cuban-American National Foundation + 13 + + + + + Cuban Historical Trust + 13 + + + + + Cugini, Joseph (reference: American and British labor culture) + 13 + + + + + Culpepper, Betty (reference: John Birch Society, Julia Brown, + George Schuyler) + 13 + + + + + Culter, Lois (reference: Spanish Civil War, AIT Plenums) + 13 + + + + + Cummings, Mary V. (reference: Henry and Elizabeth Vincent) + 13 + + + + + Cunliffe, David ( Global Tapestry) (re: Anarchist publications in + England) + 13 + + + + + Cunneen, Chris (reference: Ragnar Redbeard, Arthur Desmond, + Richard Thurland, Eagle and the Serpent, Lion’s Paw) + 13 + + + + + Cunningham, Hyacinth ( Befreiung) (anarchists visiting from + Germany) + 13 + + + + + Cunningham, Dr. Valentine (reference: Spanish Civil War) + 13 + + + + + Cusick, Lois (reference: Spanish Civil War) + 13 + + + + + Cutler, Barry (Paedophile Information Exchange) (Kent, England) + 13 + + + + + Cyclamen Books (1) (England) + 13 + + + + + Cyclamen Books (2) (England) + 13 + + + + + Dabakis, Melissa (reference: Haymarket, Waldheim Cemetery, + Pioneer Aid and Support Society) + 13 + + + + + Dahl, Frank A. (reference: Moscow Daily News) + 13 + + + + + Dahlen, Gladys L. (reference: Joe Hill song) + 13 + + + + + Dahlmann, Dittmar (reference: Makhno movement) + 13 + + + + + Daily Planet (Coconut Grove, FL) + 13 + + + + + Daily World, The (New York) + 13 + + + + + Daitz, Howard C. (offering glass-plate negatives of Trotsky, + Lenin, etc.) + 13 + + + + + Daley, Richard M. (Mayor of Chicago) + 13 + + + + + D’Allante, Davina + 13 + + + + + Dallas Historical Society (reference: Albert Brisbane) + 13 + + + + + Dallas Notes + 13 + + + + + Darch, Colin (reference: foreign language anarchist newspapers) + 13 + + + + + Darling, Dick + 13 + + + + + Dart Bulletin (Red Bank, NJ) + 13 + + + + + Dartmouth College Library (reference: Underground press, + Elizabeth Gurley Flynn, IWW) + 13 + + + + + Dartmouth Review (NH) + 13 + + + + + Das Anarchiv (Frankfurt, Germany) + 13 + + + + + D’Attilio, Robert (reference: Sacco-Vanzetti) + 13 + + + + + Daughters of Bilitis + 13 + + + + + Davies, Katherine + 13 + + + + + Davis, Horace B. (sale of political pamphlets) + 13 + + + + + Davis, Jim (reference: Contemporary History Project) + 13 + + + + + Davis, Peter (re: cooperatives) + 14 + + + + + Davis, Rodney O. (reference: Henry Vincent) + 14 + + + + + Dawley, Alan (reference: Knights of Labor, 8-hour movement) + 14 + + + + + Dawn Press + 14 + + + + + Dawson, Michael (reference: African Blood Brotherhood) + 14 + + + + + Day, Hem + 14 + + + + + Dealbar (Sao Paolo) + 14 + + + + + Dearborn, Mary (reference: Louise Bryant, Art Young) + 14 + + + + + Deboo, Jeffrey ( + 14 + + + + + Deceno, Carlos (reference: gays in Latin America) + 14 + + + + + Dede, Bonnie + 14 + + + + + Deep Ecologist (Australia) + 14 + + + + + Defenders of the American Constitution ( Task Force) + 14 + + + + + Defense de l’Homme (France) + 14 + + + + + DeLeon, David (reference: American anarchism) + 14 + + + + + DeLeon, Solon + 14 + + + + + DeLeonist, The (New York) + 14 + + + + + Dellinger, David (from ECW; no reply) + 14 + + + + + Deminoff, William (reference: Mary Herma Aikin) + 14 + + + + + Demeril, Sinan (re: William F. Ringle collection) + 14 + + + + + Demokatia (New York) + 14 + + + + + Dennison, Elizabeth J. (reference: Russian anarchists in exile) + 14 + + + + + Densmore, Kathleen (reference: Maxion Lieber, Felix Morrow, + Robert Cantwell) + 14 + + + + + Denton, Richard (reference: general) + 14 + + + + + DePastino, Todd (reference: Rebel Voices, IWW, Hobohemia) + 14 + + + + + DeShazo, Peter C. (reference: IWW in Chile) + 14 + + + + + Desperate Living (Baltimore, MD) + 14 + + + + + Despite Everything (Berkeley, CA) + 14 + + + + + Despres, Leon M. + 14 + + + + + Destiny Magazine (MA) + 14 + + + + + Detroit Atheist League + 14 + + + + + Detroit Historical Society (reference: Samuel Goldwater) + 14 + + + + + Detroit Labor News + 14 + + + + + Detroit Public Library + 14 + + + + + Deveney, John (reference: Free Love Movement) + 14 + + + + + DeWitt, Miriam Hapgood (reference: Hutchins Hapgood) + 14 + + + + + DeYoung Press (Hull, IA) + 14 + + + + + Dialogue (Ottawa, Canada) + 14 + + + + + Dialogue on Liberty (Sterling, VA) + 14 + + + + + Diament, Ann Lewin + 14 + + + + + Diamond, Dan + 14 + + + + + Diario Las Americas (Miami, FL) + 14 + + + + + Dickinson, Z. Clark + 14 + + + + + Diedrich, Maria (reference: Ottilie Assing and Frederick + Douglass) + 14 + + + + + Dierenfield, Bruce J. (reference: Student Peace Union) + 14 + + + + + Dieterich, H.R. (reference: George Herron) + 14 + + + + + Dietz, Kathleen M. (reference: SCLC) + 14 + + + + + Diez, Angel + 14 + + + + + Diez, Lain (re: publications from Chile) + 14 + + + + + Diggins, John P. (reference: Carlo Tresca) + 14 + + + + + Diggs, Alfred + 14 + + + + + Dilgard, David (reference: Everett massacre, Walker C. Smith) + 14 + + + + + Dillingsham, Beth (re: E. Haldeman-Julius donation) + 14 + + + + + Dill, Robert (re: San Diego State U’s Daily Aztec, 1970 student + protests) + 14 + + + + + DiMango, Angelo (Italian anarchists in the U.S., Arturo + Giovanitti) + 14 + + + + + Dinse, John (reference: New Left) + 14 + + + + + Diplomat Magazine (Chicago) + 14 + + + + + Direct Action (Austalia) + 14 + + + + + Direct Action (Manchester, England) + 14 + + + + + Direct Action (Voluntown, CT) + 14 + + + + + Direkte Aktion (Cologne, West Germany) + 14 + + + + + Discussion Bulletin (Grand Rapids, MI) + 14 + + + + + Distant Drummer (Philadelphia) + 14 + + + + + Dixon Line (Los Alamitos, CA) + 14 + + + + + Dixon, Mary (re: Kill Your Television) + 14 + + + + + Dixon, R. A. N. (reference: Francisco Franco, Juan March) + 14 + + + + + Dobbs, Bill (re: Stonewall 25, LGBT history) + 14 + + + + + Dobbs, John + 14 + + + + + Dock of the Bay (San Francisco, CA) + 14 + + + + + Documents Anarchistes (France) + 14 + + + + + Dodd, George (re: Human Rights Party) + 15 + + + + + Doherty, Bob + 15 + + + + + Dolgin, Erica Lynn (re: Black Legion) + 15 + + + + + Dollar Hollar + 15 + + + + + Dollars & Sense (Somerville, MA) + 15 + + + + + Domanski, Olga + 15 + + + + + Dommergues, Paulette Schubert (reference: Black Nationalist + movements) + 15 + + + + + Donaldson, Randall (reference: Robert Reitzel) + 15 + + + + + Donnen, James W.(reference: Alexander Berkman) + 15 + + + + + Donohue, Cathy (reference: labor interest in the development of + cooperatives) + 15 + + + + + Door (San Diego) + 15 + + + + + Dorsch Memorial Library/Monroe County Library System + 15 + + + + + Dorsey, David F. + 15 + + + + + Dougherty, Richard M. + 15 + + + + + Dove, The (Central Valley, NY) + 15 + + + + + Dover Publications + 15 + + + + + Draper, Hal + 15 + + + + + Draper, Theodore + 15 + + + + + Draper, Timothy Dean (reference: general) + 15 + + + + + Drews, Cristina + 15 + + + + + Drinnon, Richard (reference: Emma Goldman) + 15 + + + + + Drum (Philadelpha) + 15 + + + + + Drummer (Philadelphia) + 15 + + + + + Duberman, Martin (reference: Paul Robeson) + 15 + + + + + Dubin, Barbara (reference: Josiah Warren ; Peaceful + Revolutionist) + 15 + + + + + DuBois, Paul Z. (reference: Paul Leicester Ford + 15 + + + + + Dubose, Herman + 15 + + + + + Duke University (re: donation of Socialist Party materials) + 15 + + + + + Dumpster Times (Akron, OH) + 15 + + + + + Dunbar, G. S. (reference: Elisée Reclus) + 15 + + + + + Duplex Planet (Saratoga Springs, NY) + 15 + + + + + Duroselle-Melish, Caroline + 15 + + + + + Dutch Society for the Integration of Homosexuality COC + 15 + + + + + Dwyer, John F. (re: offer to sell records of Political Committee + of CPUSA 1927) + 15 + + + + + Dwyer, Richard (reference: labor education sources for + bibliography) + 15 + + + + + Dykeman, Therese (reference: Gates of Freedom by Voltairine de + Cleyre) + 15 + + + + + Dykes, Brent (reference: Outweek) + 15 + + + + + Dymny, Jerzy (IWW) + 15 + + + + + Dyson, Lowell K. (reference: radical farm organizations in the + U.S.) + 15 + + + + + EIDOS + 15 + + + + + ELF (Eritrea Liberation Front) Foreign Information Center + 15 + + + + + ETHIC (End the Horror of Infant Circumcision) + 15 + + + + + Early, Frances (reference: photo of Agnes Inglis for her book, + War’s Heretics) + 15 + + + + + East African Literature Bureau + 15 + + + + + East Village Other (New York) + 15 + + + + + East-West Digest (England) + 15 + + + + + Eberle, Ray (reference: socialism; St. Louis) + 15 + + + + + Ebner, David (reference: Benjamin Tucker) + 15 + + + + + Ebner, Michael (reference: 1912 Passaic, NJ IWW strike) + 15 + + + + + Echols, Alice (reference: photographs of Jane Alpert and David + Hughey) + 15 + + + + + Eckling, Robert C. (reference: IWW free speech fight, Spokane + 1908-1909) + 15 + + + + + Eco Contemporaneo (Buenos Aires) + 15 + + + + + Edcentric Magazine (Eugene, OR) + 15 + + + + + Editions Minkoff (re: History of the 2nd International) + 15 + + + + + Edizioni Revista Marxista Europa (Italy) + 15 + + + + + Edmonson, Robert G. (reference: IWW; note: researcher rejected + due to academic level) + 15 + + + + + Edwards, Rebecca (reference: Mary E. Lease) + 15 + + + + + Effeminist (Berkeley, CA) (previously Agape and Action) + 15 + + + + + Efficacy (Harlingen, TX) (previously Innovator) + 15 + + + + + Ego (Marseille, France) + 15 + + + + + Ehrbar, Hans G. (reference: Mehrwert) + 15 + + + + + Einstein Papers Project (reference: Clarté) + 15 + + + + + Elliker, Calvin + 15 + + + + + Embardo, Ellen E. (Alternative Press Collection) (re: + questionnaire for Alternative Materials in Libraries) + 15 + + + + + Emergency Civil Liberties Committee + 15 + + + + + Emery, Larry S. + 15 + + + + + Emory, R. K. (reference: general) + 15 + + + + + Emig, Günther (reference: Erich Mühsam) + 15 + + + + + Emma Goldman Papers Project + 15 + + + + + Empty Closet (Rochester, NY) + 15 + + + + + Emirch, Arthur C. (3 folders) + 15 + + + + + Engelhart, Margaret S. (re: Robert Hayden) + 16 + + + + + Engelhart, Stephen (re: Morrison Swift) + 16 + + + + + Engelman, Peter C. (reference: Victor Dave; Nettlau essay on Dave + 16 + + + + + Englander, Bob + 16 + + + + + Enlisted Times (San Francisco, CA) + 16 + + + + + Entz, Gary R. (reference: Josiah Warren; A.C. Cuddon; 19th + century intentional communities) + 16 + + + + + Eötvös Klub (Karolyi, Hungary) (anarchist group) + 16 + + + + + Epica Task Force + 16 + + + + + Epstein, Dona J. (reference: 1903 Haymarket memorial meeting) + 16 + + + + + Epstein, William (reference: Benjamin Tucker) + 16 + + + + + Erickson Educational Foundation + 16 + + + + + Ericson, Edward E., Jr. (reference: SDS) + 16 + + + + + Eriksson, Jerker A. (reference: Aino Malmberg) + 16 + + + + + Esch, Marvin (Congressman) (re: Guerilla Warfare Advocates in the + United States) + 16 + + + + + Escuela Moderna, La (Calgary, Alberta) + 16 + + + + + Esler, Anthony + 16 + + + + + Esprit (Toronto, Ontario) + 16 + + + + + Esse Più (Milano, Italy) + 16 + + + + + Essenes of Kosman (Montrose, CO) + 16 + + + + + L’Europe Réelle (Lausanne, Switzerland) + 16 + + + + + Evanier, David (reference: Rosenberg; Sobell; Walter Goldwater) + 16 + + + + + Everett, Martyn (reference: Rudolf Rocker; British anarchism) + 16 + + + + + Everson, Judith (reference: Janus; Der Pionier; Karl Heinzen) + 16 + + + + + Ewing, Michael (reference: IWW; Woodrow Wilson assassination + plot) + 16 + + + + + Ex-Priests International (contains only empty envelope) + 16 + + + + + Exile Press (Cotati, CA) + 16 + + + + + Exit (South Africa) + 16 + + + + + Exit Magazine (New York) + 16 + + + + + Eynon, Bret (re: Contemporary History Project) + 16 + + + + + Eyre, David L. (reference: Mother Jones) + 16 + + + + + F.C.I. News (London) + 16 + + + + + F.C.N.L. Washington Newsletter + 16 + + + + + F.I.D.H. + 16 + + + + + FPS: Youth Liberation (Ann Arbor, MI) + 16 + + + + + Fact (New York) + 16 + + + + + Fact Sheet Newsletter (Thailand) + 16 + + + + + Facts on File + 16 + + + + + Fag Rag (Boston) + 16 + + + + + Faigin, Henry + 16 + + + + + Fair Play for Cuba Committee + 16 + + + + + Falk, William (re: Rage, Mayday, Writing on the Wall, Torch/La + Torcha) + 16 + + + + + Falling Wall Press + 16 + + + + + Falzone, Mike A. + 16 + + + + + Fandata Publications ( Fandom Directory) + 16 + + + + + Far East Reporter (New York) + 16 + + + + + Farmer, Louis + 16 + + + + + FaTGirl Zine (San Francisco) + 16 + + + + + Faulkner, J. Kaye (reference: Ralph Chaplin) + 16 + + + + + Fed Up! (Washington DC) + 16 + + + + + Federación Libertaria Argentina + 16 + + + + + Federalist (Washington DC) + 16 + + + + + Fédération Anarchiste (reference: Voline) + 16 + + + + + Fédération Nationale des Travailleurs Déportés et Réfractaires + (Brussels) + 16 + + + + + Federation of Southern Cooperatives + 16 + + + + + Feeney, Joan V. (reference: Black activism in America + 16 + + + + + Feingold, Eugene + 16 + + + + + Felicani, Aldino ( Controcorrente) + 16 + + + + + Fellman, Michael D. (reference: Josiah Warren) + 16 + + + + + Fellowship of Reconciliation + 16 + + + + + Feminary, A (Chapel Hill, NC) + 16 + + + + + Feminist Press (Old Westbury, NY) + 16 + + + + + Feral Publications (Australia) + 16 + + + + + Ferguson, Moira (reference: Gertrude Nafe) + 16 + + + + + Fernandez-Gatell, Inc. + 16 + + + + + Feuille Anarchiste, La (Paris) + 16 + + + + + Feuerwerker, Albert + 16 + + + + + Feurer, Rosemary (reference: The Unionist) + 16 + + + + + Fey, Ingrid E. (reference: Movimiento de la Izquierda + Revolucionaria) + 16 + + + + + Fieger, Geoffrey N. + 16 + + + + + Field, Edward + 16 + + + + + Fier, Roberta L. (reference: New Playwright’s Theatre) + 16 + + + + + Fiery Cross, The (United Klans of America ) (Tuscaloosa, AL) + 16 + + + + + Fiese + 16 + + + + + Fidre, Jeanette + 16 + + + + + Fifth Estate (Detroit, MI) + 16 + + + + + Fifth Freedom (Buffalo, NY) + 16 + + + + + Fighting Woman (New York, NY) + 16 + + + + + Finkelstein, Ed (reference: general) + 16 + + + + + Finn, J.F. (reference: general) + 16 + + + + + Fiore, Jeanette + 16 + + + + + Firing Line (Indianapolis, IN) + 17 + + + + + Firstlight Pictures (reference: Hoover Dam, Boulder Dam for PBS + documentary) + 17 + + + + + Fishbaine, Ben (Sonoma County TV Turn-Off) + 17 + + + + + Fisher, David (reference: Home Colony) + 17 + + + + + Fisher, Patricia (re: By-laws of the Republic of New Africa) + 17 + + + + + Fisk University, Race and Poverty Research Department. + 17 + + + + + Flashlight (Palo Alto, CA) + 17 + + + + + Flicker, Mrs. Robert + 17 + + + + + Flint, Maruerite + 17 + + + + + Flood, Reneé Sansom (reference: Clara Bewick Coby; Leonard Wright + Colby; Wounded Knee 1890) + 17 + + + + + Fluxus West (San Diego, CA) + 17 + + + + + Focus Midwest (St. Louis, MO) + 17 + + + + + Foley, Barbara (reference: John Reed Clubs) + 17 + + + + + Folk, Richard A. (reference: Socialist Party of Ohio, 1900-1925) + 17 + + + + + Folke, Mrs. Edith (reference: labor songs composed in Canada) + 17 + + + + + Follett, Richard J. (reference: One Institute Quarterly) + 17 + + + + + Folsom, Franklin (reference: Lucy Parsons photograph; + unemployment in the U.S. + 17 + + + + + Foner, Jack (reference: Captain William Edward Pattison French; + William Buwalda) + 17 + + + + + Foner, Philip S. (reference: various IWW and labor questions) + 17 + + + + + Forbes, Ella (reference: Malcolm X) + 17 + + + + + Ford, Mrs. Merrily (reference: Henry Vincent) + 17 + + + + + Forristal, Brian (reference: Sacco and Vanzetti) + 17 + + + + + Forum (Berlin) + 17 + + + + + Forum for a Just World + 17 + + + + + Forum for Contemporary History (Santa Barbara, CA) + 17 + + + + + Foss, Karen (reference: National Organization for Women; Women’s + Equity Action League) + 17 + + + + + Fourth International (London) + 17 + + + + + Fourth International (Chicago) + 17 + + + + + Fouts, Kenneth B. (reference: Eugene V. Debs) + 17 + + + + + Fox, David (re: sent photocopy of Emma Goldman postcard) + 17 + + + + + Fox, John (reference: Reuben Papers, Whittaker Chambers) + 17 + + + + + Frager, Cheshire (re: donation of Jack Frager Papers) + 17 + + + + + Frager, Jack (re: donation of his papers) + 17 + + + + + Frager, Michelle (re: donation of Jack Frager Papers) + 17 + + + + + Fragments: A Quarterly Journal of Individual Opinion (Bellerose, + NY) + 17 + + + + + Fraley, Jim + 17 + + + + + Fram, Joel (re: donation) + 17 + + + + + Franeta, Sonja (re: gay groups in Russia) + 17 + + + + + Frank, Adelaide Schulkind (re: Alexis Ferm; Covington Hall) + 17 + + + + + Fraser, James (reference: The Mass Strike by Rosa Luxemburg) + 17 + + + + + Frazier, Nancy R. (re: survey of underground press publications + held by libraries) + 17 + + + + + Fredericks, Shirley F. (POUM; Federica Montseny + 17 + + + + + Free: Gay Liberation of Minnesota (Minneapolis, MN) + 17 + + + + + Free China Weekly (Taipei) + 17 + + + + + Free Door (aka: San Diego Door, Teaspoon Door, Good Morning + Teaspoon) + 17 + + + + + Free Men ( Options) (Columbia, MD) + 17 + + + + + Free Palestine (Washington, DC) + 17 + + + + + Free School, The. (Albany, NY) + 17 + + + + + Free Soul Magazine (Hartland, VT) + 17 + + + + + Free Soul Magazine (Hartland, VT) + 17 + + + + + Free Southern Theater + 17 + + + + + Free Speech Movement (Berkeley, CA) + 17 + + + + + Free Star (Hyattsville, MD) + 17 + + + + + Free West Indian (Grenada) + 17 + + + + + Free Women’s Press (Berkeley, CA) + 17 + + + + + Freedman, Eleanor (reference: Modern School, Stelton) + 17 + + + + + Freedom Bookshop (London) + 17 + + + + + Freedom House + 17 + + + + + Freedom News (London) + 17 + + + + + Freedom Press (London) + 17 + + + + + Freedomways (New York) + 17 + + + + + Freethinker, The (London) + 17 + + + + + Freethinkers of America + 17 + + + + + Freethought Today (Annie Laurie Gaylor) (Madison, WI) + 17 + + + + + Freeworld Times (Minneapolis, MN) + 17 + + + + + Frei Arbeiter Stimme (New York) + 17 + + + + + Freie Presse (Wetzlar,Germany) + 17 + + + + + Frenette, Geraldine (2 folders) + 17 + + + + + Frenkel, Susanna (reference: Two Harbors Socialist) + 17 + + + + + Frente Homosexual de Accion Revolutionaria (Mexico) + 17 + + + + + Frente Obrero (Uruguay) + 17 + + + + + Fricke, Ernest B. (reference: WPA, unemployed councils, Voice of + the Workers) + 17 + + + + + Fricke, James P. (reference: Brotherhood of Telegraphers, Knights + of Labor) + 17 + + + + + Friedburg, Gerald (reference: Socialism in America, 1901-1919) + 17 + + + + + Friedheim, Robert (reference: Seattle General Strike + 17 + + + + + Friedland, William H “Bill” (reference: IWW) (letters date from + 1953-1999) + 17 + + + + + Friedlander, Robert A. (reference: Spanish Civil War) + 17 + + + + + Friedman, David + 17 + + + + + Friedman, Roger (re: offer of Newsstand) + 17 + + + + + Friends of Malatesta (Buffalo, NY) + 17 + + + + + Friends of the Filipino People (Washington DC) + 17 + + + + + Friends Suburban Project (Media, PA) + 17 + + + + + Frihetliga Arbetsgruppen (Sweden) + 17 + + + + + Frisancho, Roberto + 17 + + + + + Fritz, Alvin + 17 + + + + + Frizzell, Robert W. (reference: Dr. Herman Schröder) + 17 + + + + + Le Frondeur (France) + 17 + + + + + Fuendo, Jim and June + 18 + + + + + Fulton, George + 18 + + + + + Fuller, Thomas (re: offer of anarchist newspapers) + 18 + + + + + Fund for Public Information + 18 + + + + + Fundación Pablo Iglesaias (reference: Partido Socialista Obrero) + 18 + + + + + Fuori (Torino, Italy) + 18 + + + + + Furey, Lee (reference: Arturo Giovannitti) + 18 + + + + + Fusca, James A. (reference: Cuban Invasion of April 17, 1961) + 18 + + + + + G.A.G. (Grupo de Acción Gay) (Buenos Aires) + 18 + + + + + G. I. Press Service (Student Mobilization Committee to End the + War in Vietnam) + 18 + + + + + G. K. Hall & Co. Publishers + 18 + + + + + GLC Voice (Minneapolis) + 18 + + + + + G.P.U. News (Gay People’s Union) (Milwaukee) + 18 + + + + + Gaceta Informativa (Mexico) + 18 + + + + + Gai Pied (Paris) + 18 + + + + + Gallagher, Dorothy (reference: Carlo Tresca) + 18 + + + + + Gallagher, Margaret (reference: Il Proletario, Benito Mussolini) + 18 + + + + + Gallo, El (Denver, CO) + 18 + + + + + Gambone, Larry (re: Saint Che) + 18 + + + + + Gamson, William A. (re: donation of Brandeis student protest + materials) + 18 + + + + + Ganley, Ann + 18 + + + + + Garber, Eric (reference: defense of homosexuality in the + anarchist movement) + 18 + + + + + Garcia, Guillermo + 18 + + + + + Garcia Duran, J. (reference: Spanish Civil War materials) + 18 + + + + + Gareth Stevens, Inc. (reference: permission to reproduce covers + of Spanish Civil War pamphlets) + 17 + + + + + Garlin, Martha (re: donation of Masses and Metropolitan) + 18 + + + + + Garlock, Jonathan (reference: Knights of Labor Journal) + 18 + + + + + Garriaud, Joëlle (reference: Hippolyte Havel) + 18 + + + + + Garrison, Lora D. (reference: Elizabeth Gurley Flynn) + 18 + + + + + Garver, John W. (re: donation of 1960s material) + 18 + + + + + Gasperini, Laurent (re: donation of Arcadie) + 18 + + + + + Gauche, La (Brussels) + 18 + + + + + Gawrych, G.W. + 18 + + + + + Gay (New York) + 18 + + + + + Gay Activists Alliance (San Francisco) + 18 + + + + + Gay and Lesbian Historical Society of Northern California + 18 + + + + + Gay and Lesbian Latinos Unidos (Los Angeles) + 18 + + + + + Gay Atheists League of America + 18 + + + + + Gay Community News (Boston) + 18 + + + + + Gay Hotsa (Bilbao, Spain) + 18 + + + + + Gay Information Group (London) + 18 + + + + + Gay Insurgent (Philadelphia) + 18 + + + + + Gay Journal (London) + 18 + + + + + Gay Left (London) + 18 + + + + + Gay Liberation Press (Sydney, Australia) + 18 + + + + + Gay Liberator (Detroit) + 18 + + + + + Gay News (London) + 18 + + + + + Gay News Germany + 18 + + + + + Gay Post (New York) + 18 + + + + + Gay Scotland (Edinburgh) + 18 + + + + + Gay Social Democrats (London) + 18 + + + + + Gay Studies Newsletter (Toronto) + 18 + + + + + Gay Sunshine Press (San Francisco) + 18 + + + + + Gay Switchboard (Berkeley, CA) + 18 + + + + + Gay West (Saskatoon, Saskatchewan) + 18 + + + + + Gaybeat (Cincinnati, OH) + 18 + + + + + Gaycon Press Newsletter (San Francisco) + 18 + + + + + Gayer, Dixon (re: White Students League) + 18 + + + + + Gelbert, Bruce-Michael + 18 + + + + + Gemorah, Solomon (reference: Lawrence Gronlund) + 18 + + + + + George, Elizabeth (reference: IWW) + 18 + + + + + Georgia Straight (Vancouver, BC) + 18 + + + + + Georgian, Richard (reference: Alexis Georgian) + 18 + + + + + Gerard, C. E. (reference: SDS, “America and the New Era”) + 18 + + + + + German Television (reference: photographs of American anarchists) + 18 + + + + + Germinal (Trieste, Italy) + 18 + + + + + Gerrits, Lyle W. (reference: audio recordings of IWW songs) + 18 + + + + + Gersten, Raoul (reference: Henry-Louis de la Grange) + 18 + + + + + Gessell, Robert W. + 18 + + + + + Gettleman, Marvin + 18 + + + + + Gettelman, Marvin (re: donation of Communist Party shop papers) + 18 + + + + + Ghosh, Ishita (reference: Nigeria) + 18 + + + + + Gierstl, Bernhard (reference: Augustin Souchy) + 18 + + + + + Giffin, Frederick C. (reference: Bill Haywood; Mary Marcy) + 18 + + + + + Gilbert, Dennis (reference: Sandinista Party) + 18 + + + + + Gildzen, Alex + 18 + + + + + Gillis, Sunny Labadie (re: great nephew of Jo Labadie) + 18 + + + + + Gillmor, Daniel S. (re: donation of Friday) + 18 + + + + + Gilman, Lois (reference: Hamtramck) + 18 + + + + + Ginger, Ann Fagan + 18 + + + + + Gingles, Carl E. + 18 + + + + + Ginsburg, Steve (re: his survey of rural gay men) + 18 + + + + + Ginzburg, Ralph (reference: Ezra Heywood) + 18 + + + + + Gittings, Barbara (re: Gay Bibliography) + 18 + + + + + Givens, Maureen + 18 + + + + + Glaberman, Martin + 19 + + + + + Glad Day Press (re: New Patriot) + 19 + + + + + Glaser, Martha (reference: Association Silk Workers) + 19 + + + + + Glasnost – American Edition + 19 + + + + + Glazer, Joe (re: Joe Hill album) + 19 + + + + + Glenn, Robert W. (reference: Haymarket case) + 19 + + + + + Glenn, Susan A. (reference: immigrant garment workers 1880s-1920) + 19 + + + + + GLOB (London) + 19 + + + + + Global Tapestry (Lancashire, England) + 19 + + + + + Goddard College (reference: anarchist movement in Russia; Russian + anarchist works in English) + 19 + + + + + Gold, Edith (re: daughter of Abraham Zubrin, friend of Emma + Goldman) + 19 + + + + + Golden Legend, Inc. + 19 + + + + + Goldenfeld, Gene (re: collecting of materials on Blue Cross/Blue + Shield strike of 1988) + 19 + + + + + Goldenseal: The Magazine of West Virginia Traditional Life (re: + photograph of Mother Jones) + 19 + + + + + Goldman, Hilliard (re: Bendler donation of Inglis letters, + cycling through Europe, etc.) + 19 + + + + + Goldman, Jon (reference: general info) + 19 + + + + + Goldstein, Leonard (The Goldstein Group) + 19 + + + + + Goldwater, Walter (re: Reuben Papers, Spanish Revolution) + 19 + + + + + Golin, Steve (reference: photograph for his book, The Fragile + Bridge) + 19 + + + + + Gómez Peláez, F. (reference: Spanish Civil War holdings in the + Labadie) + 19 + + + + + Gonzaga University, Spokane, WA (reference: Jay Fox) + 19 + + + + + Good Times (San Francisco) + 19 + + + + + Goodhue, F. M. (re: purchase of Commonwealth College materials) + 19 + + + + + Goodman, Dena (reference: Henry Bool) + 19 + + + + + Goodway, David (reference: John Cowper Powys) + 19 + + + + + Goosens, Miles (reference: IWW 19114-1924) + 19 + + + + + Gordon, I. Linda (reference: Moses and Lillian Harman) + 19 + + + + + Gordon, Michael (reference: Irish –American radicalism in NYC + 1879-1886) + 19 + + + + + Gorn, Elliott (reference: Mother Jones) + 19 + + + + + Gosling, Bill + 19 + + + + + Goss, Robert T. (reference: B. Traven) + 19 + + + + + Gosse, Van (reference: IWW, Paterson Silk Strike of 1913; Cuban + revolution) + 19 + + + + + Gotthelf, Alan (reference: Catholic Worker, Ammon Hennacy) + 19 + + + + + [Gowen, Michigan] Daily News (Gowen, MI) (reference: Michigan Ku + Klux Klan) + 19 + + + + + Graduate Institute of International Studies (reference: + International Möbel-Arbeiter Union) + 19 + + + + + Graeber, Dr. I. – Trade Union Courier (reference: William L. + Hutcheson; Saginaw) + 19 + + + + + Graffiti Magazine (New York) + 19 + + + + + Graham, David J. (reference: The New Testament Basis of Pacifism + by G.H.C. MacGregor) + 19 + + + + + Granhaus, Odd-Stein (reference: Scandinavian-American radical + movement 1860-1940) (no reply) + 19 + + + + + Granma (Cuba) + 19 + + + + + Grapes of Wrath (Charleston, SC) + 19 + + + + + Grass Eye (Manchester, England) + 19 + + + + + Grass Roots (Texas) + 19 + + + + + Grass Roots Forum (San Gabriel, CA) + 19 + + + + + Graswurzelrevolution (West Berlin, Germany) + 19 + + + + + Graves, Dan W. + 19 + + + + + Graves, Goddard (reference: The Weatherman Songbook) + 19 + + + + + Gray, Carole (re: developing Freethought collection) + 19 + + + + + Gray, Katherine + 19 + + + + + Gray, Richard (reference: genocide of indigenous people) + 19 + + + + + Graymont, Barbara (reference: Daniel De Leon; Herman Richter) + 19 + + + + + Great Speckled Bird (Atlanta, GA) + 19 + + + + + Greater Detroit UAW Unemployed Coordinating Committee + 19 + + + + + Greater Kansas City Missouri Labor Council (reference: Great + Southwest Strike of 1886) + 19 + + + + + Greater New York Society for the Prevention of Cruelty to the + Human Animal + 19 + + + + + Green Anarchist (Oxford, England) + 19 + + + + + Green, Charles S. (reference: general) + 19 + + + + + Green, Martin (reference: Elizabeth Gurley Flynn, Bill Haywood, + Paterson Strike, IWW) + 19 + + + + + Green Mountain Dyke News (Vermont) + 19 + + + + + Green Mountain Quarterly (Editions) (Oshkosh, WI) + 19 + + + + + Green Revolution (School of Living) + 19 + + + + + Green, Robert S. (aka Shane Green) (re: Anarchist Black Dragon, + Carl Harp) + 19 + + + + + Green, Whitney (reference: IWW film footage) + 19 + + + + + Greenberg, Gerald (reference: Work People’s College) + 19 + + + + + Greene, Christina (Kate Richards O’Hare) + 19 + + + + + Greene, Lorenzo J. (reference: negro history + 19 + + + + + Greene, Robert J. (re: donation of Workmen’s Circle material) + 19 + + + + + Greenham Commons Women’s Peace Encampment (re: donation of + newsletter) + 19 + + + + + Greenleaf (New Hampshire) + 19 + + + + + Greensboro Civil Rights Fund (re: purchase of Greensboro Massacre + collection) + 19 + + + + + Greenway, Judy (reference: women in the English Anarchist + movement, Dora Marsden + 20 + + + + + Greenwood Reprint Corp. + 20 + + + + + Greer, Rosalyn D. (re: Ron Greer) + 20 + + + + + Gregg Press, Inc. (re: The Invisible Empire by Albion Winegar + Tourgee) + 20 + + + + + Gregorich, Barbara (reference: women and girls playing baseball) + 20 + + + + + Gremios Democraticos (Buenos Aires, Argentina) + 20 + + + + + Grenada Newsletter, The (Grenada, West Indies) + 20 + + + + + Greib, Aimee J. (reference: National Negro Labor Council) + 20 + + + + + Grimes, Andy (re: donation of co-operative materials) + 20 + + + + + Grimes, Ted + 20 + + + + + El Grito (Berkeley, CA) + 20 + + + + + El Grito del Norte (Española, New Mexico) + 20 + + + + + Gross, Jesse (re: donation of labor materials and death of Agnes + Inglis) + 20 + + + + + Grossman, Luanne (re: Agnes Inglis research paper) + 20 + + + + + Grossner, David (reference: Black community in Philadelphia, IWW, + Ben Fletcher) + 20 + + + + + Group Research Report (Washington DC) + 20 + + + + + Groupe Libertaire Louise-Michel (Paris, France) + 20 + + + + + Groves, Jay Voelker + 20 + + + + + Grubbe, Dennis + 20 + + + + + Grupo Gay de Bahia (Brazil) + 20 + + + + + Guardian (New York) + 20 + + + + + Guardian Art Room Workers Association + 20 + + + + + Guenther, Karl W. (re: Agnes Inglis) + 20 + + + + + Guerena, J.L. (reference: general) + 20 + + + + + Guerin, Daniel (reference: Grigorii Maximoff) + 20 + + + + + Guerinot, Joe V. + 20 + + + + + Guindehi, Salah + 20 + + + + + Gunns, Albert F. (reference: Centralia massacre of 1919) + 20 + + + + + Gutman, Herbert G. (reference: John Francis Bray, Depression of + 1873-78, labor movement) + 20 + + + + + Habari (Mansfield, OH) + 20 + + + + + Haber, Al (good Weber bio info) + 20 + + + + + Hachey, R. Lawrence + 20 + + + + + Hacker, Abbe (re: The Anarchist Influence on the I.W.W.) + 20 + + + + + Haddad, Carol (reference: Eugene Debs) + 20 + + + + + Haessler, Carl + 20 + + + + + Hager, Lore (reference: German-American anarchists in Chicago in + the 1880s) + 20 + + + + + Haggin, Bernard + 20 + + + + + Haglund, Elizabeth + 20 + + + + + Hahn, Manfred (reference: pre-Marxist socialism, John Francis + Bray) + 20 + + + + + Haight Ashbury Tribune (San Francisco, CA) + 20 + + + + + Haines, Bill (reference: underground military press movement) + 20 + + + + + Hale, Jeff A. (reference: White Panther Party, etc.) + 20 + + + + + Halker, Bucky (re: order for LP from Revolting Records) + 20 + + + + + Halik, Connie + 20 + + + + + Hall, Roger P. (reference: sources for anarchist books) + 20 + + + + + Hall, Tim (re: Communist Voice, Workers Advocate, Struggle) + 20 + + + + + Halsema, Jim (from ECW re: donation of Philippine collection) + 20 + + + + + Hamburger, Joseph (reference: John Francis Bray) + 20 + + + + + Hamilton, Charles H. (re: donation of Libertarian Analysis) + 20 + + + + + Hamilton, James (reference: Josephine Herbst) + 20 + + + + + Hannan, Dolores J. + 20 + + + + + Hannote, Dean (reference: article by Ted Rausch in gay magazine) + 20 + + + + + Hansen, Jodi (reference: of blacks in the labor movement. See + paper in uncat. ms file) + 20 + + + + + Hapotoc (Amsterdam, Holland) + 20 + + + + + Harcourt Brace Jovanovich, Inc. (reference: IWW photographs) + 20 + + + + + Hard Times (Washington DC) + 20 + + + + + Harding, Susan (Spanish anarchism, offer to donate Peirats Volume + 2) + 20 + + + + + Harger, Richard (re: Shockley’s Sterilization Plan) + 20 + + + + + Harlan, Robert Dale (personal letter from ECW) + 20 + + + + + Harllee, John T. (re: Southern Libertarian Messenger) + 20 + + + + + Harrington, Helma (re: Seven Seas Press acquisition) + 20 + + + + + Harris, Craig (re: donation of radical literature) + 20 + + + + + Harris, Mark (reference: Randolph Bourne) + 20 + + + + + Hart, Jeffrey ( Dartmouth Review, personal letter from ECW) + 20 + + + + + Hartnett, Edith + 20 + + + + + Harvard Gay & Lesbian Review + 20 + + + + + Harvard Journal of Negro Affairs + 20 + + + + + Haskell, Gordon K. (re his autobiography, A Missionary + Shachtmanite) + 20 + + + + + Hauben, Ronda (reference: Flint Sit-Down Strike, Sidney Fine) + 20 + + + + + Hawley, Nancy (re: Female Liberation Newsletter) + 20 + + + + + Haymarket Books (re: order for Maoism and the Soviet Union) + 20 + + + + + Hayward, Harry (reference: The Crisis in the CPUSA) + 20 + + + + + Heaton, Paul (re: Campaign for Equality) + 21 + + + + + Heatwave (London, England) + 21 + + + + + Heberling, David (reference: Terence Powderly) + 21 + + + + + Helaine Victoria Enterprises (re: postcard of Agnes Inglis) + 21 + + + + + Help (London) + 21 + + + + + Hellwig, David J. (reference: Black attitudes toward immigrants + in the U.S.) + 20 + + + + + Hennacy, Ammon + 21 + + + + + Henry, Barbara (reference: Lesbian periodicals) + 21 + + + + + Heppel, Alan (reference: IWW during the 1918 trials) + 21 + + + + + Heraclitus (New South Wales) (re: Max Nomad) + 21 + + + + + Herald of Freedom (Zarephath, NJ) + 21 + + + + + Herman, Gordon L. (re: order for Night of Moons) + 21 + + + + + Hermon, Harry, M.D. (reference: sexual freedom movement) + 21 + + + + + Herrick, Mary Darrah (reference: Almeda Sperry) + 21 + + + + + Her-Self (Ann Arbor, MI) + 21 + + + + + Hersh, Robert (reference: images for Spanish Civil War pictorial + history) + 21 + + + + + Hertzberg, Richard (reference: graphic leaflets of the 1960s) + 21 + + + + + Hill, Herbert (NAACP) + 21 + + + + + Hill, Peter (reference: movies about intentional communities and + communes) + 21 + + + + + Highlander Folk School + 21 + + + + + Hillegas, Jan (re: Freedom Information Service) + 21 + + + + + Hilton, Robert Lee + 21 + + + + + Hinze, Virginia Neal (reference: German radicalism in Chicago: + 1848-1920) + 21 + + + + + Historia y Sociedad (Mexico) + 21 + + + + + Historical Society of Michigan + 21 + + + + + Historical Society of Pennsylvania (re: Voltairine de Cleyre) + 21 + + + + + Hobby, Daniel T. (reference: role and ideology of labor + organizers during the Progressive Era, 1900-1917) + 21 + + + + + Hobo Foundation + 21 + + + + + Hodder & Stoughton, Ltd. (re: Hard Travellin’ by Kenneth + Allsop) + 21 + + + + + Hodges, Donald C. (re: publications of Philosophical Study of + Dialectical Materialism) + 21 + + + + + Hodgins, Tina (reference: Frank Little) + 21 + + + + + Hoerder, Dirk (reference: general) + 21 + + + + + Hoffer, Dale C. (reference: American aviators in Spanish Civil + War) + 21 + + + + + Hoglund, A. William (reference: Finnish represented in the ACPFB + Papers) + 21 + + + + + Hogue, Jany (reference: Boletín de Información– CNT) + 21 + + + + + Hoisington, Wm. A., Jr. (reference: holdings of the Communist + International) + 21 + + + + + Hokanson, Nels M. (reference: Swedes in the IWW) + 21 + + + + + Holbrook, Mrs. Stewart (re: donation of IWW materials) + 21 + + + + + Holden, Mrs. Edna M. (re: donation of Emma Goldman materials) + 21 + + + + + Holding, Richard + 21 + + + + + Holton, Dr. R. (reference: IWW in Britain) + 21 + + + + + Holy Family + 21 + + + + + Holzkampen, Charlot Associates and Communications (reference: + Elizabeth Gurley Flynn) + 21 + + + + + Homegrown (Providence, RI) + 21 + + + + + Homosexuelle Initiative (Vienna, Austria) + 21 + + + + + Hook, Sidney + 21 + + + + + Hoover Institute on War, Revolution, and Peace + 21 + + + + + Hope, Warren (reference: Carlo Tresca) + 21 + + + + + Horn, Frances E. (re: wish to sell Joe Hill postcards) + 21 + + + + + Horn, Max (reference: Intercollegiate Socialist Society) + 21 + + + + + Horseshit Magazine (Hermosa Beach, CA) + 21 + + + + + Hotchkiss School, Edsel Ford Memorial Library (reference: + holdings on homosexual materials) + 21 + + + + + Houle, Peter + 21 + + + + + Hovey Street Press (re: book order for Comrade George by Eric + Mann) + 21 + + + + + Howell, Mary E. (reference: Commonwealth College) + 21 + + + + + Howes, Robert W. (reference: Latin American gay publications) + 21 + + + + + Howson, Embrey B. (reference: Jacob Coxey) + 21 + + + + + Hug, Heinz (Erich Mühsam, Der Arme Teufel) + 21 + + + + + Hughes, C. Alvin (reference: Southern Negro Youth Congress) + 21 + + + + + Human Rights Internet Reporter (Cambridge, MA) + 21 + + + + + Human Voice, The (Ann Arbor, MI) + 21 + + + + + Humanizing City Life (Worthington, OH) + 21 + + + + + Humphries, Martin (order for Searching for a Destination) + 21 + + + + + Hunt, Richard P. (reference: first observation of Labor Day) + 21 + + + + + Huntington, William S. (Communist Party activities in the United + Mineworkers of America) + 21 + + + + + Hurley, Gerard + 21 + + + + + Hurley Books (re: purchase of Morrison Swift Papers; Moral + Re-Armament) + 21 + + + + + Hutchinson, Earl (reference: blacks in Socialist organizations) + 21 + + + + + Huxley, Christopher V. (reference: English labor movement + 21 + + + + + Hyde, J. W. (Hobo songs and poems from the 1930s) + 21 + + + + + Hyde Park Socialist (London) + 21 + + + + + Hyperion Press (re: order for After You’re Out by Jay Young) + 21 + + + + + I. F. Stone’s Weekly + 21 + + + + + IFCO News (New York) + 21 + + + + + IMG Publications (International Marxist Group) + 22 + + + + + ISM Press (reference: photo of Elizabeth Gurley Flynn for + publication) + 22 + + + + + Iglehart, Ruth (re: donation of 18th Convention of the Socialist + Party) + 22 + + + + + Illeborg, Steen (reference: IWW) + 22 + + + + + Illini Review (from ECW re: pro-Sandinista movement on campus) + 22 + + + + + Illinois Labor History Society + 22 + + + + + Illinois State Historical Society (re: Edward Aveling letter) + 22 + + + + + Illustrated Paper (Mendocino, CA) + 22 + + + + + Imani (New York) + 22 + + + + + Immigrant Aid Society of Americas + 22 + + + + + Imprimis (Hillsdale, MI) + 22 + + + + + In a Nutshell (Chicago, IL) + 22 + + + + + In Magazine (Iowa City) + 22 + + + + + Independent, The (Secaucus, NJ) + 22 + + + + + Independent Socialist Press + 22 + + + + + Indiana Historical Society Library + 22 + + + + + Indiana State University (Eugene V. Debs Project) + 22 + + + + + Indiana University Library (re: New Left Notes) + 22 + + + + + Indigena + 22 + + + + + The Individualist (London) (Henry Meulen, Personal Rights + Assocation) + 22 + + + + + Industrial Defense Bulletin (Toronto) + 22 + + + + + Industrial Unionist (Oldham, England) + 22 + + + + + Industrial Worker (Chicago) + 22 + + + + + Industrial Workers of the World + 22 + + + + + Informacny Materialy (Berlin, Germany) + 22 + + + + + Informat (West Berlin) + 22 + + + + + Information Centre for Polish Affairs (U.K.) + 22 + + + + + Ingham, John N. (reference: general) + 22 + + + + + Inglis, Katherine S. + 22 + + + + + Inner City Light (New York) + 22 + + + + + Inside Story (London) + 22 + + + + + Institut Municipal d’Historia de Barcelona (reference: Boletín de + Información CNT-FAI) + 22 + + + + + Institute for Social Justice + 22 + + + + + Institute for the Study of Nonviolence Journal (Palo Alto, CA) + 22 + + + + + Institute for Workers’ Control (Nottingham, England) + 22 + + + + + Institute of Contemporary Arts (London) + 22 + + + + + Institute of the Black World (Atlanta, GA) + 22 + + + + + Institute on Religion and Democracy (Washington DC) + 22 + + + + + Instituto di Storia C.N.R. (Florence, Italy) + 22 + + + + + Instituto Lambda (Barcelona) + 22 + + + + + Instituto Lambda de Colombia (Bogotá) + 22 + + + + + Instituto Socialista di Studi Storici (Florence, Italy) + 22 + + + + + Insurgent (New York) + 22 + + + + + Integrity (Fort Valley, GA) + 22 + + + + + Intercontinental Press (New York) + 22 + + + + + International (London) + 22 + + + + + International Anarchism (Selby, England) + 22 + + + + + International Confederation for Disarmament and Peace (London) + 22 + + + + + International Defence and Aid Fund for Southern Africa (London) + 22 + + + + + International Humanist and Ethical Union (Utrecht, Holland) + 22 + + + + + International Institute of Social History (Amsterdam, Holland) + 22 + + + + + International Marxist Review (London) + 22 + + + + + International Revolution (Sweden) + 22 + + + + + International Socialism (Socialist Review Publishing Co.) + 22 + + + + + International Socialism (London) + 22 + + + + + International Socialist (formerly: Independent Socialist) (New + York) + 22 + + + + + International Socialist Journal (Rome, Italy) + 22 + + + + + International Socialist Review (New York) + 22 + + + + + International Spartacist Tendency (New York) + 22 + + + + + International Times (London) + 22 + + + + + International Typographical Union + 22 + + + + + International Union of Electrical, Radio, and Machine Workers + 22 + + + + + International Worker (New York) + 22 + + + + + International Workers’ Party (New York) + 22 + + + + + Internationale Gesellschaft für Menschenrecht (West Germany) + 22 + + + + + Internationale Situationniste (Paris) + 22 + + + + + Interrogations (Torino, Italy) + 22 + + + + + Iran Solidarity Newsletter (Manchester, England) + 22 + + + + + Irish Gay Rights Movement (Dublin, Ireland) + 22 + + + + + Irish Liberation Press + 22 + + + + + Irons, Priscilla Long (reference: Mother Jones) + 22 + + + + + Isca, Valerio + 22 + + + + + Issues & Actions (New York) + 22 + + + + + It’s About Time/Lesbian Separatist Group (Seattle, WA) + 22 + + + + + JRS Productions (re: John Reed Story) + 22 + + + + + Jack, W. H. R., Mrs. (re: books for sale from late husband’s + library) + 22 + + + + + Jackson, Robert (reference: John Francis Bray) + 22 + + + + + Jackson, Peter M. (re: sale of John Francis Bray letters) + 22 + + + + + Jacobs, Ron (reference: images for Weather Underground article) + 23 + + + + + Jacobson, Kristi A. (reference: Upton Sinclair’s The Jungle) + 23 + + + + + Jamaica Gaily News (Kingston, Jamaica) + 23 + + + + + Jamieson, K.I (reference: William Francis Barnard; William C. + Owen) + 23 + + + + + Janus Society (Harrisburg, PA) + 23 + + + + + Jeansonne, Glen (reference: Militant right) + 23 + + + + + Jeffreys-Jones, R. (reference: U.S. industrial relations + 1890-1910) + 23 + + + + + Jenner, Demila (reference: Lucy Parsons) + 23 + + + + + Jensen, Richard (reference: speeches by William D. Haywood) + 23 + + + + + Jericho (Portland, OR) + 23 + + + + + Jervey, Edward D. (reference: Elmina Slenker) + 23 + + + + + Jeune Taupe (Paris) + 23 + + + + + Jewish Liberation Project (New York) + 23 + + + + + Jewish Museum (re: their exhibit “The Dreyfus Affair”) + 23 + + + + + Jewish Right, The (Sierra Madre, CA) + 23 + + + + + Johanningsmeier, Ed (reference: William Z. Foster; Syndicalist + League of North America) + 23 + + + + + John Birch Society + 23 + + + + + John Dos Passos Newsletter (Lawrence, KA) + 23 + + + + + Johnson, Charles T. (reference: 9th and early 20th century + socialism and anarchism) + 23 + + + + + Johnson, Oakley (reference: various research topics) + 23 + + + + + Johnson, Paul R. (re: writings about homosexuality in the Bible) + 23 + + + + + Johnston, Margaret R. (reference: Elizabeth Freeman and Rebecca + Shelley) + 23 + + + + + Johnston, Richard (reference: C.L. “Gunplay” Maxwell; IWW) + 23 + + + + + Join Hands (San Francisco, CA) + 23 + + + + + Jones, Ann (mother of Bob Brubaker) + 23 + + + + + Jones, Rev. Ashton B. (re: Koinonia Foundation) + 23 + + + + + Jones, Bill and Fran + 23 + + + + + Jones, Dr. Charles E. (reference: Black Panther Party) + 23 + + + + + Jones, Deborah + 23 + + + + + Jones, Derik (re: La Prensa) + 23 + + + + + Jones, Gary (reference: IWW and Bolshevik Revolution) + 23 + + + + + Jones, Jim P. + 23 + + + + + Jones, Katherine J. (reference: woman question among American + socialists 1900-1920) + 23 + + + + + Jones, Maldwyn A. (reference: Robert Watchorn + 23 + + + + + Jones, Mark + 23 + + + + + Jones, R. W. (reference: Solidarity – UK) + 23 + + + + + Jones, Raymond + 23 + + + + + Joseph, D. George (reference: drug use in the U.S from 1920-1940) + 23 + + + + + Joughin, Louis (re: index to Sacco-Vanzetti articles in L’Adunata + dei Refrattari) + 23 + + + + + Journal Gay Internacional (Sao Paulo, Brazil) + 23 + + + + + Journal of Female Liberation (Boston, MA) + 23 + + + + + Journal of Modern History (re: The Dreyfus Affair) + 23 + + + + + Journal of Psychedelic Drugs (Beloit, WI) + 23 + + + + + Journal on Political Repression (New York) + 23 + + + + + Judd, Richard (reference: Socialist Party in Ohio municipal + politics, 1900-1920) + 23 + + + + + Juicy News (formerly Adam’s Apple Hardcore) (Fort Wayne, IN) + 23 + + + + + Julian Review + 23 + + + + + Jungblut, Gerd W. (Erich Mühsam; Der Arme Teufel) + 23 + + + + + K., Walter + 23 + + + + + Kahn, Lori (reference: Rosenberg case) + 23 + + + + + Kalamazoo Institute of Arts (re: loan of material for their + exhibit, “Artists in Revolt”) + 23 + + + + + Kales, David A. (reference: history of Canadian Trotskyism) + 23 + + + + + Kalkanis, Nick + 23 + + + + + Kallman, Theodore P. (reference: Josiah Warren) + 23 + + + + + Kameny, Franklin E. + 23 + + + + + Kalaidjian, Walter (reference: leftist poets published in “little + magazines” of the 1920s and 30s) + 23 + + + + + Kann, Kenneth (reference: Chicago labor movement to 1886) + 23 + + + + + Kansas State Historical Library (re: microfilming of anarchist + and socialist periodicals) + 23 + + + + + Kaplan, Justin (reference: Lincoln Steffens) + 23 + + + + + Kaplow, Julian (3 folders) + 24 + + + + + Kaplowitz, Julian + 24 + + + + + Kapp, Yvonne (reference: Edward Aveling photograph for her + biography of Eleanor Marx) + 24 + + + + + Kartemquin Films, Ltd. (reference: newsreel footage of Eugene + Debs) + 24 + + + + + Kasano, Shigeru (reference: John Francis Bray) + 24 + + + + + Kaufman, Murray (reference: Eugene Debs scrapbooks in the Labadie + Collection) + 24 + + + + + Kay, Tamara (reference: Ezra and Angela Heywood) + 24 + + + + + Keene, Judith (reference: Spain in the 1930s) + 24 + + + + + Keep Left (London) + 24 + + + + + Keil, Hartmut (reference: Robert Reitzel; German workers in the + U.S.) + 24 + + + + + Keim, Willard (reference: Johann Most) + 24 + + + + + Keller, Charles (re: establishing a Labadie Art Collection) + 24 + + + + + Kelley, Ken (re: Ann Arbor Argus, Bret Eynon) + 24 + + + + + Kelley, Wm. D., Jr. (reference: sheet music for “We Have Fed You + All a Thousand Years”) + 24 + + + + + Kelly, Andrea (reference: Spanish Civil War) + 24 + + + + + Kelvin, Morris (reference: William Morris) + 24 + + + + + Kennedy, Hubert (reference: John Henry Mackay) + 24 + + + + + Kennedy, Stetson (re: various donations including 1956 Hungarian + newspapers) + 24 + + + + + Kennys Bookshops (re: sale of anarchist newspapers) + 24 + + + + + Kent State University (reference: seeking materials about May 4, + 1970 events) + 24 + + + + + Kepner, Jim + 24 + + + + + Kerber, Gerry (reference: IWW, Centralia) + 24 + + + + + Kerr, Peter (re: referrals to librarians at Berkeley, WSHS, + Temple) + 24 + + + + + Kessler, June (reference: Durruti) + 24 + + + + + Key List Mailing (San Francisco) + 24 + + + + + Khronika Press ( Chronicle of Human Rights in the U.S.S.R.) + 24 + + + + + Kick It Over (Toronto) + 24 + + + + + Kimmel, Michael S. (reference: Stephen Pearl Andrews, Moses + Harmon, Ezra Heywood) + 24 + + + + + King, Arnie (prisoner letter) + 24 + + + + + King, Jean Ledwith (reference: John Pancner/Panzner) + 24 + + + + + Kirkup, James + 24 + + + + + Kleinberg, Judith G. (re: her term paper , “An In-Depth Study of + the Underground Press of the 1960s”) + 24 + + + + + Klejment, Anne M. (reference: Port Huron Statement) + 24 + + + + + Klibaner, Irwin (reference: radical movements and their + relationship to Negroes since the 1890s) + 24 + + + + + Klipsun (Bellingham, WA) (reference: photograph of Wesley + Everest) + 24 + + + + + Knepper, Robert (re: donation) + 24 + + + + + Knieriem, Michael (reference: Carl de Haas) + 24 + + + + + Knight, Rolf (re: oral histories of Canadian working people) + 24 + + + + + Knueppel, Christoph (reference: George Schumm) + 24 + + + + + Koblenz, Leonard (reference: article he published in Hammer and + Tongs in 1948) + 24 + + + + + Koga, Nancy (reference: propaganda of the Communists during the + Spanish Civil War) + 24 + + + + + Kogan, Bernard (reference: Haymarket, esp. Schwab, Fielden and + Neebe) + 24 + + + + + Koizumi, Takashi (reference: John Francis Bray) + 24 + + + + + Koka, Karen + 24 + + + + + Kommunistiche Korrespondenz (Berlin, West Germany) + 25 + + + + + Koontz, Alan P. (reference: Individual Action; The Struggle; + Minus One; Ego; Emma Goldman) + 25 + + + + + Korcheck, Robert A. (reference: poetry of the Sacco-Vanzetti + case; Matilda Rabinowitz) + 25 + + + + + Korn, Sarah (IWW women strikers at Lawrence and Patterson; + Solidarity) + 25 + + + + + Kornbluh, Joyce (includes letters from Archie Green; Lee Furey; + Royce Ferguson) + 25 + + + + + Kosmerick, Todd J. (reference: article on IWW for Labor’s + Heritage) + 25 + + + + + Koszyk, Kurt (reference: Joseph Weydemeyer) + 25 + + + + + Kovach, Ronald (reference: Josiah Warren) + 25 + + + + + Kraft, Barbara S. (reference: Holt Papers; Ford Peace expedition) + 25 + + + + + Kramer, Aaron + 25 + + + + + Krammer, Arnold (reference: Spanish Civil War) + 25 + + + + + Kresge Art Museum (re: borrowing materials for their exhibit, + “Prints of the French Revolution) + 25 + + + + + Krieger, Nancy (reference: Marie Equi) + 25 + + + + + Kropotkin Society + 25 + + + + + Kropotkin’s Lighthouse Publications + 25 + + + + + Krummel, D.W. + 25 + + + + + Krupp Comic Works + 25 + + + + + KU African, The (Lawrence, KS) + 25 + + + + + Kudzu, The (Jackson, MS) + 25 + + + + + Kupferberg, Tuli + 25 + + + + + Kwaida Publications + 25 + + + + + LSM Information Center + 25 + + + + + Labidee, H. R. (reference: Agnes Inglis mentioned in Ray Ginger’s + The Bending Cross) + 25 + + + + + Labadie, Laurance + 25 + + + + + Labor: a Weekly Newspaper Owned by the Railroad Workers of the + U.S. and Canada (Washington DC) + 25 + + + + + Labor Action and New International (New York) + 25 + + + + + Labor Historians Newsletter (Detroit?) + 25 + + + + + Labor History (New York) + 25 + + + + + Labor Museum and Learning Center of Michigan (re: Knights of + Labor exhibit) + 25 + + + + + Labor Publications + 25 + + + + + Labor Research Association + 25 + + + + + Labor’s Heritage + 25 + + + + + Labour Movement Library and Archive, The (Arbejderbevaegelsens + Bibliotek og Arkiv) + 25 + + + + + Labour Worker [changed title to Socialist Worker] (London) + 25 + + + + + Ladder, The + 25 + + + + + Lader, Lawrence (reference: Margaret Sanger) + 25 + + + + + LaGroc + 25 + + + + + Lahaeye, Jean-Francois (re: donation of La Gazette du Ringard de + Banlieu) + 25 + + + + + Lahr, Oonagh (re: Walsh/Lahr Wobbly photos) + 25 + + + + + Laissez Faire Books (re: anarchist calendar) + 25 + + + + + Lakewood Library (reference: Home Colony ; Washington State) + 25 + + + + + Lallement, Jimmy (re: French anarchist materials) + 25 + + + + + Lamarre, Jean (reference: 19th century French-Canadian + immigration to the Midwest) + 25 + + + + + Lambda (Torino, Italy) + 25 + + + + + Lambda (Barcelona, Spain) + 25 + + + + + Lambert, Dennis K. (reference: Der Arme Teufel) + 25 + + + + + Lamont, Corliss + 25 + + + + + Lampião (Rio de Janeiro, Brazil) + 25 + + + + + Lancaster Independent Press + 25 + + + + + Langbord, Eva (re: donation of Emma Goldman materials) + 25 + + + + + Langbord, Sadie + 25 + + + + + Langston Hughes Society + 25 + + + + + La Lanterne Noir (France) + 25 + + + + + LaPorte, Thomas A. + 25 + + + + + Lappen, Henry (re: Black and Green; Clamshell Alliance) + 25 + + + + + Lasron, David R. (reference: Socialist Party, Socialist Labor + Party, IWW of Ohio) + 25 + + + + + Lashof, Judith P. + 25 + + + + + Laskin, Joshua (reference: Marx Edgeworth Lazarus) + 25 + + + + + Latin America Review of Books (London) + 25 + + + + + Lavender & Red Union + 25 + + + + + Law Reform Review (Pasadena, CA) + 25 + + + + + Lawrence, Franklin + 25 + + + + + Lazarus, Louis (reference: Workers International Industrial + Union) + 25 + + + + + Lazerow, Jama (reference: Boston labor in the mid 1890s) + 25 + + + + + League for Industrial Democracy (from ECW re: article about + Grenada) + 25 + + + + + Leaves of Twin Oaks + 25 + + + + + LeBlanc, André E. (reference: L’Emancipation) + 25 + + + + + LeBrun, John L. (reference: index to Catholic Worker) + 25 + + + + + Lee, Mark W. (reference: speeches of William D. Haywood) + 25 + + + + + Lee, Dustin (from ECW re: Affirmative Action) + 25 + + + + + Lee, Martha (reference: ecology movement, radical + environmentalism) + 25 + + + + + Lee, Paul + 25 + + + + + Leeder, Elaine (reference: Rose Pesotta) + 25 + + + + + Leeds, Gertrude (reference: The Comintern) + 25 + + + + + Leekley, Brian (reference: general) + 25 + + + + + Left Bank Books + 25 + + + + + Leftward (Toronto, Canada) + 26 + + + + + Legg, W. Dorr (re: One Institute) + 26 + + + + + Leidecker, Eugene + 26 + + + + + Lemar International (re: subscription to Marijuana Review) + 26 + + + + + Lentz, Richard (reference: Martin Luther King, Jr.) + 26 + + + + + Leon, D. H. (reference: Benjamin Tucker; Joseph Ishill; American + anarchists) + 26 + + + + + Lerner Publications Co. (reference: reproduction of photograph of + Eugene Debs) + 26 + + + + + Lesbian Archive and Information Centre (London) + 26 + + + + + Lesbian Herstory Archives (re: newsletter subscription) + 26 + + + + + Lesbian Tide (Hollywood, CA) + 26 + + + + + Leuchtenburg, William (including telegram) (reference: Spanish + Civil War) + 26 + + + + + Leutner, Robert W. (re: donation of Les Temps Nouveaux) + 26 + + + + + Levasseur, Richard L. (reference: birth dates of anarchists for + 1984 calendar) + 26 + + + + + Levi, Steven C. (reference: George Hinton Henry; Alaska; LA Times + bombing in 1910) + 26 + + + + + Leviathan Publications + 26 + + + + + Levitt, Linda (reference: Americans in the Spanish Civil War) + 26 + + + + + LeWarne, Charles P. (reference: communitarian experiments in + western Washington) + 26 + + + + + Lewin, Edward B. (reference: Seattle General Strike of 1919) + 26 + + + + + Lewis, Evon (4 folders) + 26 + + + + + Lewis, Leona + 26 + + + + + Lewis, Muriel + 26 + + + + + Lewis, Steven L. (reference: lesbian and gay history of the 1920s + and 1930s) + 26 + + + + + L’Homme Libre (France) + 26 + + + + + Lianios, George + 26 + + + + + LIB Shinjuku Center (Tokyo, Japan) + 26 + + + + + Liberated Librarians Newsletter (Philadelphia) + 26 + + + + + Liberation (London) + 26 + + + + + Liberation News Service (New York) + 26 + + + + + Liberation Support Movement (Canada) + 26 + + + + + Liberator, The (New York) + 26 + + + + + Liberman, Esther (reference: Alexander Berkman) + 26 + + + + + Liberman, Michael (reference: William Morris) + 26 + + + + + Libero International (Japan) + 26 + + + + + Libertäre Blätter (Zurich) + 26 + + + + + Libertarian (Devon, U.K.) + 26 + + + + + Libertarian, The (Wenonah, N.J.) + 26 + + + + + Libertarian Analysis (New York) + 26 + + + + + Libertarian Broadsides (Ralph Myles) + 26 + + + + + Libertarian Connection (Los Angeles) + 26 + + + + + Libertarian Forum (New York) + 26 + + + + + Libertarian League (re: Checklist of Anarchist Periodicals, 1965) + 26 + + + + + Libertarian Teacher (see Libertarian Education) (Leicester, + England) + 26 + + + + + Liberté, La (Paris, France) + 27 + + + + + Liberty (Port Townsend, WA) (letter to editor from ECW) + 27 + + + + + Liberty (New York) + 26 + + + + + Library of Congress + 27 + + + + + Library of Michigan (re: offer of $ to Jo Labadie for his + collection) + 27 + + + + + Library of Social History (reference: general) + 27 + + + + + Lichtenberg, Virgil L. (reference: socialism in Iowa; The Iowa + Reform; George Davis Herron) + 27 + + + + + Lichtenstein, Peter M. (reference: producers’ or worker + cooperatives in the U.S.) + 27 + + + + + Lidtke, Vernon (reference: German socialists in 19th and early + 20th centuries; essay on Labadie holdings) + 27 + + + + + Life Line (Dallas, TX) + 27 + + + + + Light & Flower Co. (distributors of underground newspapers) + 27 + + + + + Lindsey, Barbara (reference: Detroit uprising) + 27 + + + + + Linden Lane Magazine (Princeton, NJ) + 27 + + + + + Linzer, Elliott (re: donation of radical literature via Paul + Avrich) + 27 + + + + + Lipton, Arthur + 27 + + + + + Liptzin, Stanley (reference: Ferrer Modern School, Stelton) + 27 + + + + + List, David (reference: IWW antiwar activities in Great Lakes + region) + 27 + + + + + Little Free Press + 27 + + + + + Littlefield, Warren (re: NBC radio plays of 1939-1940; funny + reply from ECW) + 27 + + + + + Loader, Jayne (Workers International Relief) + 27 + + + + + Lobster (Hull, UK) + 27 + + + + + Loew-Tatelbaum, Brenda (re: donation) + 27 + + + + + Logan, Maurice (reference: Labadie family genealogy) + 27 + + + + + Logos (Montreal) + 27 + + + + + Lomax Poll and Tribune (Los Angeles) + 27 + + + + + Lombardi-Nash, Michael + 27 + + + + + London School of Economics (reference: Science of Revolutionary + Warfare by Johann Most) + 27 + + + + + London Workers Bulletin (London) (rejection letter) + 27 + + + + + Long Beach Free Press (Long Beach, CA) + 27 + + + + + Lookout (Seattle, WA) + 27 + + + + + Loomis, Mildred J. (re: donation) + 27 + + + + + Loomis, Ralph + 27 + + + + + Los Angeles Committee for Protection of Foreign Born + 27 + + + + + Los Angeles Free Press + 27 + + + + + Los Angeles Gay Scientists (includes ECW letter explaining + Labadie LGBT holdings) + 27 + + + + + Lotta Operaia (Rome, Italy) + 27 + + + + + Lougee, Wendy (from ECW re: purchases and transfers) + 27 + + + + + Loughery, John (reference: history of gay life in U.S. from the + 1920s; includes ECW) + 27 + + + + + Louisiana State Library (re: Llano Colonist on microfilm) + 27 + + + + + Louisiana State University (reference: Covington Hall) + 27 + + + + + Louisiana Worker (New Orleans) (Kathryn Davies) + 27 + + + + + Lowe, Malcolm + 27 + + + + + Lowman, Jacquelyn (reference: pacifism and conscientious + objection) + 27 + + + + + Lubitz, Wolfgang (reference: American Trotskyist history) + 27 + + + + + Lubkeman, Lynn (reference: Emma Goldman; Agnes Smedley) + 27 + + + + + Lubow, Sylvia (reference: “Digest of California Criminal + Syndicalism Cases”) + 27 + + + + + Lumberjack News (Davenport, CA) + 27 + + + + + Lumer, Hyman (re: literary executor of Elizabeth Gurley Flynn) + 27 + + + + + Luna, Nitza (reference: early history of photography in Cuba, + Dominican Republic and Puerto Rico) + 27 + + + + + Lunt, Richard D. (reference: UMW and Hitchman Coal case, + 1907-1917) + 27 + + + + + Lutte Communiste (Paris, France) + 27 + + + + + Lutte Ouvriere (Belgium) + 27 + + + + + Lutte Ouvriere (Paris, France) + 27 + + + + + Lynch, Enrique (re: possible donation of Marta Lynch Papers) + 27 + + + + + Lynch, Patrick (reference: Jacob Margolis) + 27 + + + + + Lyons, Christopher (re: purchase of Berkeley Independent + Socialist Club materials) + 27 + + + + + Lyttle, Bradford (reference: anarchism) + 27 + + + + + Lysander Spooner Society + 27 + + + + + Mabee, Carleton (reference: Sit-ins; civil rights movement) + 27 + + + + + MacGill, Hugh C. (reference: Modern Times, Josiah Warren) + 27 + + + + + MacKay-Gessellschaft, Das Sekretariat der (Hanover, Germany) + 27 + + + + + MacKay Society (New York) + 27 + + + + + Maddaloni, Arnold + 27 + + + + + Mager, Mary Caroline (reference: role of popular culture in the + Spanish Republic, 1931-39) + 27 + + + + + Maglin, Arthur (re: subscription information for Crazie + Agit-Prop) + 27 + + + + + Magnavite, Laura (reference: candidates for inclusion in + Historical Encyclopedia of Chicago Women) + 27 + + + + + Magner, Lois N. (reference: picnic for radicals at home of Eliza + Burt Gamble, 1912, etc.) + 27 + + + + + Mahaffy, Cheryl (reference: press coverage of Ford Motor Co., + including left press) + 28 + + + + + Mahoney, Ronald J. (reference: The Credit Foncier of Sinaloa by + Albert Kimsey Owen) + 28 + + + + + Mainely Gay + 28 + + + + + Maitland, David + 28 + + + + + Makuch, Andrew + 28 + + + + + Malcolm X + 28 + + + + + Malcriado, El (Keene, California) + 28 + + + + + Malet, Michael (reference: Makhnovist and anarchist movements; no + reply) + 28 + + + + + Mancini, Matthew (reference: American anarchism 1880-1910) + 28 + + + + + Mandler, Jeffery (reference: British anarchism 1880s to early + 1900s) + 28 + + + + + Manikoff, Jane Holt (re: Ford Peace Expedition and Holt Papers) + 28 + + + + + Marcha (Montevideo, Uruguay) + 28 + + + + + Marcus, Irwin M. (reference: Ben Fletcher, IWW) + 28 + + + + + Margaret Sanger Papers (reference: Patrick Quinlan, John + Rompapas, John Nicholas Beffel) + 28 + + + + + Margolies, Rick (reference: Agnes Inglis’s manuscript on + cooperatives) + 28 + + + + + Marijuana Review (Mill Valley, CA) + 28 + + + + + Mark, Arthur (reference: Ferrer Modern Schools in the U.S.) + 28 + + + + + Marquette University (re: Dorothy Day Catholic Worker Collection) + 28 + + + + + Marsh, Margaret S. + 28 + + + + + Marsiske, Hans-Arthur (Wilhelm Weitling) + 28 + + + + + Martel, Frank X. (reference: Voltairine de Cleyre; literary heir) + – file not in box + 28 + + + + + Martel, Frank X. (re: 1952 donation from Detroit and Wayne County + Federation of Labor) + 28 + + + + + Martin, James J. + 28 + + + + + Martin Luther King, Jr. Memorial Center and Papers Project + 28 + + + + + Martin Sostre Defense Committee + 28 + + + + + Martin, Virginia (reference: Joe Hill, IWW) + 28 + + + + + Martucci, Enzo + 28 + + + + + Marx Memorial Library + 28 + + + + + Marxist-Leninist Party USA – Detroit Branch + 28 + + + + + Maryknoll Fathers + 28 + + + + + Maryland, University of (re: Human Rights Project) + 28 + + + + + Massillon Museum (reference: Jacob Sechler Coxey) + 28 + + + + + Masters, Anthony (reference: Emma Goldman’s literary heir) + 28 + + + + + Matonis, Jon (reference: monetary freedom movements; E.C. Riegel) + 28 + + + + + Matthesius, Joachim + 28 + + + + + Mattachine Midwest + 28 + + + + + Matthews, Henry (reference: Voltairine de Cleyre) + 28 + + + + + Maverick (Santa Clara, CA) + 28 + + + + + Mayday (See Hard Times) + 28 + + + + + Mayer, Henry C. (reference: Journal of the Knights of Labor; coal + mine unions) + 28 + + + + + McAdam, Doug (reference: Freedom Summer; Bob Moses + 28 + + + + + McCabe, Terrence W. (reference: IWW; was present at some events + in 1918-1922) + 28 + + + + + McCallister, Frank + 28 + + + + + McClelland, John M., Jr. (reference: Ralph Chaplin; IWW; Labadie + Collection history during the 1950s) + 28 + + + + + McClure, Betsy + 28 + + + + + McCool, B. B. (reference: IWW; 1919 Chicago raid on + Communists-Spartacan movement) + 28 + + + + + McCormack, A. Ross (reference: IWW in the Canadian West) + 28 + + + + + McCormick, Charles H. (reference: Jacob Margolis) + 28 + + + + + McCown, Robert A. (re: Midwest Archives Conference panel, + Documenting the Extremes, 1984) + 28 + + + + + McDade, Thomas M. (reference: Mooney-Billings case) + 28 + + + + + McDaniel, George W. (reference: Smith Wildman Brookhart) + 28 + + + + + McElroy, Wendy (re: index to Liberty) + 28 + + + + + McEvoy, James (re: return of 400 xerox copies of letters) + 28 + + + + + McFadden, Charles (reference: Theodore Roosevelt; Charles F. + Potter; Arthur Garfield Hays) + 28 + + + + + McGarvey, Bruce E. (re: donation of Karl E. Pauli Papers) + 28 + + + + + McGill-Queen’s University Press (reference: photograph of Mikhail + Bakunin) + 28 + + + + + McGregor Magazine Agency + 28 + + + + + McKinley, Blaine (reference: Voltairine de Cleyre; Anarchos + Institute; Haymarket + 28 + + + + + McLay, Farquhar (re: publications from Clydeside Press) + 28 + + + + + McLean, Lois C. (reference: Mother Jones) + 28 + + + + + McLellan, D. (re: sending gay publications from U.K.) + 28 + + + + + McLoughlin, Doris (re: Workingmen’s Institute Library at New + Harmony) + 28 + + + + + McNabb, Willis J., III (reference: general inquiry about holdings + on sexual relations) + 28 + + + + + McNeal, Merritt (re: Humbolt) + 28 + + + + + McWhorter, George T. (re: University of Louisville’s + Ishill/Oriole Press holdings, etc.) + 28 + + + + + Measure (New York) + 28 + + + + + Meditation Centre Kosmos (Amsterdam) + 28 + + + + + Meixner, Laura L. (reference: photo from Red Portfolio: Cartoons + for Socialism) + 28 + + + + + Meister, George (re: donation of IWW membership book dated 1919) + 28 + + + + + Melancou, Philip (reference: Henry S. Salt) + 28 + + + + + Mellon, Katherine M. (reference: Ethel A. Johnson; The Crusader; + Did You Know?) + 28 + + + + + Mellon, Knox, Jr. (reference: Job Harriman) + 28 + + + + + Meltzer, Albert (re: Black Flag; Kate Sharpley Library) + 28 + + + + + Menta, Ed (reference: materials for production of Joe Hill at + Kalamazoo College) + 28 + + + + + Mercantile Library (reference: John Francis Bray) + 28 + + + + + MERIP Reports (Middle East Research & Information Project) + 28 + + + + + Merkel-Melis, Renate (reference: Edward Aveling; Circular to the + Sections of the Socialist Labor Party) + 28 + + + + + Merriam-Webster Company (re: errors Webster’s Biographical + Dictionary) + 28 + + + + + Messer-Kruse, Timothy (reference: photograph of Joshua King + Ingalls) + 28 + + + + + Metro, The (Detroit) + 28 + + + + + Metro-Cat of Rochester (Rochester, NY) (letter from ECW) + 29 + + + + + Metro Times, The (Detroit) + 29 + + + + + Mett, Roderick Michael (reference: anarcho-syndicalist social + theory during the Spanish Civil War) + 29 + + + + + Metzler, Marshall (reference: Scott Nearing; Gustavus Myers; + Matthew Josephson) + 29 + + + + + Mewitt, Alan (re: death of Mewitt; reminiscences from ECW) + 29 + + + + + Meyer, Stephen (reference: UAW in Detroit, 1905-1921) + 29 + + + + + Meyers, Arthur S. (reference: resources for underground press + materials in libraries) + 29 + + + + + Michael, Jason (personal letter from ECW about his relationship + with his father, no reply) + 29 + + + + + Michel, Dee (re: Thesaurus for Lesbian and Gay Studies) + 29 + + + + + Michelson, Clare + 29 + + + + + Michigan Alliance of Cooperatives + 29 + + + + + Michigan Archivists Association (re: bibliography of manuscript + collections in Michigan libraries) + 29 + + + + + Michigan Dept. of State + 29 + + + + + Michigan Historical Collections (see also: Bentley Historical + Collection) + 29 + + + + + Michigan Historical Museum (reference: photos for exhibit on + Michigan history) + 29 + + + + + Michigan Militant Newsletter (Detroit) + 29 + + + + + Michigan NORML + 29 + + + + + Michigan Organization for Human Rights (MOHR) + 29 + + + + + Michigan Review + 29 + + + + + Michigan State University + 29 + + + + + Microfilming Corporation of America + 29 + + + + + Midnight Special (New Orleans, LA) + 29 + + + + + Midwest Libertarian Library Association + 29 + + + + + Mihelic, Mrs. Thelma (re: donation of issues of Labor Herald) + 29 + + + + + Mile High Underground (Denver, CO) + 29 + + + + + Miles, Barry (reference: biography of William S. Burroughs) + 29 + + + + + Miles, Dione + 29 + + + + + Miles, Robert E. + 29 + + + + + Militant, The (New York) + 29 + + + + + Millar, F. David (reference: Canadian ALU, WFM, IWW, SLP, SLTA) + 29 + + + + + Miller, Ed + 29 + + + + + Miller, Howard S. (reference: Kate Austin, includes letter from + her literary heir) + 29 + + + + + Miller, Jay (reference: Thybald Trust’s Wild Irons) + 29 + + + + + Miller, Joseph T. (reference: Josiah Warren) + 29 + + + + + Miller, J. Wesley (re: 1960s radicalism; article on Madison + poster collection) + 29 + + + + + Miller, Martin A. (reference: Kropotkin, T. Piro) + 29 + + + + + Miller, Mitchell H. (from Libertarian Workers Group) + 29 + + + + + Miller, Robert J. (reference: photograph of Hastings William + Sackville Russell Bedford) + 29 + + + + + Miller, Sally M. (reference: Johann Most; Emma Goldman; Alexander + Berkman; Knights of Labor) + 29 + + + + + Miller, Timothy (re: 60s Commune Project donation from University + of Kansas) + 29 + + + + + Miller, Worth Robert (reference: Henry Vincent) + 29 + + + + + Millet, Martha (re: offer of poetry, literary and social + criticism) + 29 + + + + + Mindszenty Report (St. Louis, MO) + 29 + + + + + Miner’s Art Group + 29 + + + + + Mineworker, The (Doncaster, Yorks, England) + 29 + + + + + Minnegasco (re: seeking radical literature on how to steal gas) + 29 + + + + + Minnesota Center for Book Arts (re: loan of lesbian periodicals + for exhibition)\ + 29 + + + + + Minnesota Coalition for Battered Women (reference: seeking issues + of Out and About) + 29 + + + + + Minnesota, University of (re: donation of anti-communist and + right wings pamphlets) + 29 + + + + + Minnesota University Women’s History Sources Survey + 29 + + + + + Minus 5 (Hong Kong) + 29 + + + + + Mirror (Guyana, South America) + 29 + + + + + Mishark, John W. (re: offer of 19th century German radical + literature) + 29 + + + + + Missey, Jim (reference: Ammon Hennacy; Christian anarchism; + Catholic Workers) + 29 + + + + + Mississippi Free Press (Jackson, MS) + 29 + + + + + Mississippi Gay Alliance + 29 + + + + + Mississippi Newsletter (Tougaloo, MS) + 29 + + + + + Missouri Historical Review (reference: Emma Goldman) + 29 + + + + + Mitts, Chuck + 29 + + + + + Mizell, Michael (reference: Mary Marcy; Lucy Parsons + 29 + + + + + Mockingbird Press (includes note from Tuli Kupferberg) + 29 + + + + + Modesto, Zapata (reference: Joe Hill) + 29 + + + + + Mole, The/Old Mole (Cambridge, MA) + 29 + + + + + Mole Express (Manchester, England) + 29 + + + + + Molin, L. (reference: Free Society) + 29 + + + + + Monaghan, Jim (reference: Patrick Trench; Lois Orr + 29 + + + + + Money (Craryville, NY) (Scott, John G., ed.) (re: Inglis; Mother + Earth) + 29 + + + + + Monroe Defense Committee + 29 + + + + + Monsen, Anders (reference: European individualist anarchists) + 29 + + + + + Montana: The Magazine of Western History (reference: photographs + for article on IWW) + 29 + + + + + Montano, Randolph (reference: Lois Orr literary rights) + 29 + + + + + Montgomery, Jeffery (letter to Anne Oakey) + 29 + + + + + Montrose Voice (Houston, TX) + 29 + + + + + Moody, J. Carroll (reference: steelworks; National Recovery + Administration 1929-1935) + 29 + + + + + Mooers, Deborah S. (reference: IWW cartoons and posters) + 29 + + + + + Moore, E. B. (re: donation of photographs of South Dakota during + the harvest of 1916) + 29 + + + + + Moore, Joseph (reference: was Augusto Sandino an anarchist?) + 29 + + + + + Moores, Harold S. (reference: American freemasonry) + 29 + + + + + Moral Re-Armament + 29 + + + + + Morea, Benn (re: subscription to Black Mask) + 29 + + + + + Morell, Gilbert W. (reference: letter to Sidney Fine re: Illinois + labor movement after WWI) + 30 + + + + + Moreno, M. (re: Partido Obrero de Unificación Marxista) + 30 + + + + + Mornati, Fiorenzo (reference: Vilfredo Pareto) + 30 + + + + + Mornin, Edward (reference: John Henry Mackay) + 30 + + + + + Morris, David (reference: Carl Harp) + 30 + + + + + Morris, George ( The Worker) + 30 + + + + + Morris, James K. (reference: The Can Opener) + 30 + + + + + Morris, John P. (reference: Joseph Buchanan) + 30 + + + + + Morton, Marion J. (reference: Emma Goldman, for his book, Nowhere + at Home) + 30 + + + + + Moslem Students Society + 30 + + + + + Mountain Review (Whitesburg, KY) + 30 + + + + + Mother (Stanford, CA) + 30 + + + + + Mother’s Defense Committee + 30 + + + + + Mothershed, S. W. (re: from ECW about clearing house for + librarians on Black History—no reply) + 30 + + + + + Motive Magazine (Nashville, TN) + 30 + + + + + Moure, Daniel Seijas (re: translation of L. Labadie essay; offer + to sell Spanish books) + 30 + + + + + Mouth of the Dragon Press (New York) + 30 + + + + + Movement, The (San Francisco) + 30 + + + + + Movement for a New Society (Philadelphia) + 30 + + + + + Movement for Colonial Freedom (London) + 30 + + + + + Movimiento Liberatario Cubano (Miami) ( Guángara Libertaria) + 30 + + + + + Movimento Libertário Portugues (Lisbon) + 30 + + + + + Movimento Nonviolento (Verona, Italy) + 30 + + + + + Movimento por la Paz (Cuba) + 30 + + + + + Mugford, Eldred George (re: donation of his dissertation: The + Film Producer and His Craft) + 30 + + + + + Muhammad Speaks (Chicago) + 30 + + + + + Mujeres Libres (France) + 30 + + + + + Mullholland, Kate (Catherine) + 30 + + + + + Muller, Robert H. (reference: questions by anti-Semitic and right + wing materials are in the Labadie) + 30 + + + + + Munksgaard International Publishers (reference: Joe Hill) + 30 + + + + + Muñoz, V. (reference: American libertarians; The Peaceful + Revolutionist; donation of books) + 30 + + + + + Muntaqim, Jalil Abdul (re: request for a copy of his pamphlet for + the Labadie) + 30 + + + + + Murphy, J. Austin (re: donation of his book to the Labadie) + 30 + + + + + Murphy, Mary (reference: Women in the IWW + 30 + + + + + Murray Newsletter + 30 + + + + + Murry, Bernice E. (reference: Mother Earth Bulletin; Voltairine + de Cleyre; The Word; etc.) + 30 + + + + + Murtagh, Pat (reference: history of anarchism in Canada) + 30 + + + + + Museum of African American History (re: loan of materials for + exhibition on Black Newspapers) + 30 + + + + + Museum of North Idaho (re: loan of materials for exhibition on + labor history) + 30 + + + + + Museum of Photographic Arts (re: loan of materials for exhibition + on Worker Photography + 30 + + + + + Music Sales Corporation ( Sing Out) + 30 + + + + + Musser, Necia (reference: The Crusader Newsletter) + 30 + + + + + Mutch, George E. (3 folders) + 30 + + + + + Mutnick, Barbara (re: donation of pamphlets by Trotsky and + Schachtman) + 30 + + + + + Myers, Brian W. (reference: general) + 30 + + + + + Myers, Michael (reference: Lucy Parsons; Cassius Cook; Carl Nold) + 30 + + + + + Myers, William F. (reference: movements against Italian fascism; + Tresca; Salvemini; Rolland; etc.) + 30 + + + + + N.S.C.A.R. (National Student Coalition Against Racism: Student + Mobilizer) + 30 + + + + + N.U.C. (New University Conference) + 30 + + + + + Nadel, Stanley (reference: Protocols of the Internationale + Möbel-Arbeiter) + 30 + + + + + Naftel, Avi + 30 + + + + + Naiko, Grace K. + 30 + + + + + Naison, Mark (reference: Communist Party in Harlem during the + Depression) + 30 + + + + + Nash, George H., III (reference: Communism in the U.S. 1930s and + 40s) + 30 + + + + + National Alliance (New York) + 30 + + + + + National Archives of Canada (re: Eva Langbord and Emma Goldman) + 30 + + + + + National Chronicle (Hayden Lake, Idaho) + 30 + + + + + National Coalition of Black Gays + 30 + + + + + National Committee Against Discrimination in Housing + 30 + + + + + National Committee for Rural Schools + 30 + + + + + National Council for Civil Liberties (U.K.) + 30 + + + + + National Economic Council, Inc. + 30 + + + + + National Film Board of Canada (reference: Labour movement in + Canada, IWW) + 30 + + + + + National Forecast (Topton, NC) + 30 + + + + + National Front News (Croyden, Surrey, England) + 30 + + + + + National Gay Archives (Los Angeles) + 30 + + + + + National Gay Student Center (Washington DC) + 30 + + + + + National Geographic Society (reference: “The Rebel Girl”) + 31 + + + + + National Guardian (New York) + 31 + + + + + National League for Social Understanding (Los Angeles) + 31 + + + + + National Peace Literature Service + 31 + + + + + National Right to Work Committee + 31 + + + + + National Socialist White People’s Party (Arlington, VA) + 31 + + + + + National Task Force on Prostitution ( Coyote Howls) + 31 + + + + + National Urban League (reference: Black nationalist materials) + 31 + + + + + Needham, Claire + 31 + + + + + Negro Universities Press (reference: The Messenger) + 31 + + + + + Neidle, Cecyle (reference: anarchism in the U.S.; Agnes Inglis) + 31 + + + + + Nelson, Garrison (reference: Truman Nelson) + 31 + + + + + Nelson, Truman (reference: Ezra Heywood; Lucifer) + 31 + + + + + Nelson, Walter M. (re: donation of The Liberator; Agnes Inglis) + 31 + + + + + Nemeth, Luc (reference: Michele Schirru) + 31 + + + + + Neperiodajo (Japan) (letter in Esperanto) + 31 + + + + + Nestle, David (re: PopReal) + 31 + + + + + Nettleton, Allan (reference: IWW, Everett) + 31 + + + + + Neufeld, John (reference: Joseph Labadie and his printshop) + 31 + + + + + Neuhaus, John (reference: IWW music and songbooks; Industrial + Worker) + 31 + + + + + New Agora, The (Lansing, MI) + 31 + + + + + New Albania (Tirana, Albania) + 31 + + + + + New America (New York) + 31 + + + + + New American Movement (Chicago, IL) + 31 + + + + + New City Songster (Kent, England) + 31 + + + + + New Dawn (San Francisco, CA) + 31 + + + + + New England Free Press (Boston, MA) + 31 + + + + + New Guard: See Young Americans for Freedom + 31 + + + + + New Horizons for Youth (Philadelphia, PA) + 31 + + + + + New Left Notes (Boston, MA) + 31 + + + + + New Life (London, England) + 31 + + + + + New Mexico Review & Legislative Journal (Santa Fe, NM) + 31 + + + + + New Mexico State University Chicano Affairs Office (re: + subscription to La Raza Habla) + 31 + + + + + New Order (Arlington, VA) + 31 + + + + + New Patriot (Chicago, IL) + 31 + + + + + New Politics (New York) + 31 + + + + + New Solidarity (New York) + 31 + + + + + New Spectre (Bath, Somerset, England) + 31 + + + + + New Voice (Sacramento, CA) + 31 + + + + + New World Review (New York) + 31 + + + + + New York City League for Sexual Freedom + 31 + + + + + New York Labor News + 31 + + + + + New York Public Library + 31 + + + + + New York School of Printing (reference: Josiah Warren) + 31 + + + + + New York University. Tamiment Library + 31 + + + + + New Yorker Films (re: Improper Conduct-documentary about Cuban + homosexuals) + 31 + + + + + Newbill, James (reference: IWW; Yakima Valley 1933) + 31 + + + + + Newborn Rights Society + 31 + + + + + Newman, Edgar Leon (reference: French worker poetry of the 19th + century) + 31 + + + + + News From Nowhere (Edmonton, Alberta) + 31 + + + + + Newsman’s Gadfly (Mt. Vernon, IA) + 31 + + + + + Newsstatements (Quebec, Canada) + 31 + + + + + Newswest (Los Angeles, CA) + 31 + + + + + Newton, Robert + 31 + + + + + Ngai, Mae M. (reference: deportation of Chinese-American leftists + in the 1950s) + 31 + + + + + Nick, George (1 of 12 folders) + 31 + + + + + Nick, George (2 - 6 of 12 folders) + 32 + + + + + Nick, George (7 - 12 of 12 folders) + 33 + + + + + Nickel Review (Syracuse, NY) + 33 + + + + + 1976 Committee, The (Des Plaines, IL) + 33 + + + + + Nishimoto, Koichi (reference: Daniel De Leon; Socialist Labor + Party) + 33 + + + + + Nissen, Tony (reference: organized labor in the U.S. during the + Civil War) + 33 + + + + + Nkoli, Simon (letter from ECW-no reply) + 33 + + + + + Nkombo (New Orleans, LA) + 33 + + + + + No Limits (Madison, WI) + 33 + + + + + No More Fun and Games (Cambridge, MA) + 33 + + + + + Noir et Rouge (Paris, France) + 33 + + + + + Nomad, Max (re: donation of his library) + 33 + + + + + Non-Aligned Members of the June 12th Coalition + 33 + + + + + Nonoyama, M. (reference: Leviatán; La Libertad; Solidaridad + Obrera; Blanco) + 33 + + + + + Nordland Press ( TRUD!)(Essex Falls, NJ) + 33 + + + + + North bi Northwest (Seattle, WA) + 33 + + + + + North Carolina Center for Student Rights + 33 + + + + + North Carolina Coalition for Gay & Lesbian Equality (ECW + gifts justification for collecting LGB) + 33 + + + + + North Carolina University Library (reference: The Crusader; + Robert F. Williams) + 33 + + + + + North Country Anvil (Millville, MN) + 33 + + + + + North Star (Berkeley, CA) + 33 + + + + + Northern Ireland Gay Rights Association (Belfast) (includes + report of 1976 DUP repression) + 33 + + + + + Northern Micrographics, Inc. (reference: radicalism of the right) + 33 + + + + + North-West Archives and Labour History Project (Derry, Northern + Ireland) + 33 + + + + + Northwestern University Library (re: exchange of materials and + procedures) + 33 + + + + + Notarstefano, F. (re: offer to donate libertarian materials) + 33 + + + + + Nouvel Ordre Social (Geneva, Switzerland) + 33 + + + + + Novak, Derry (reference: Peter Kropotkin) + 33 + + + + + Nova Falç, La (Perpignan, France) + 33 + + + + + Now! Magazine (San Francisco, CA) + 33 + + + + + Nowlin, Bill (reference: Emma Goldman; Alexander Berkman; + includes note from Ian Ballantine) + 34 + + + + + Nuestra Lucha (Immokalee, FL) + 34 + + + + + Nungesser, Lonnie G. (reference: homosexual stereotypes + 34 + + + + + Nuntius, The (Houston, TX) (re: Our Community) + 34 + + + + + Nuovi Tempi (Rome, Italy) + 34 + + + + + O Protesto (Brazil) + 34 + + + + + O.S.P.A.A.A.L. (Havana, Cuba) + 34 + + + + + Oakland Post (Berkeley, CA) + 34 + + + + + Oakland Unified School District + 34 + + + + + Oakland University (reference: underground press publications) + 34 + + + + + Objectivist (New York, NY) + 34 + + + + + O’Brien, Francis L. (re: jury duty for ECW) + 34 + + + + + O’Brien, George Harman (reference: Lillian Harman’s descendants; + donations to Labadie Collection) + 34 + + + + + Obvious, The (Weare, NH) + 34 + + + + + O’Bryan, Mike (reference: United Mine Workers Journal) + 34 + + + + + O’Connor, Thomas F. (reference: origin of the Sacco-Vanzetti + trial; John Nicholas Beffel) + 34 + + + + + Oestreicher, Richard (reference: photographs for his book, + Solidarity and Fragmentation) + 34 + + + + + Of Human Rights (Washington DC) + 34 + + + + + Off Our Backs (Washington DC) + 34 + + + + + O’Gorman, Angie (reference: Gertrude B. Kelly) + 34 + + + + + O’Hair, Madalyn Murray + 34 + + + + + Ohio Lesbian Archives + 34 + + + + + Ohio State University + 34 + + + + + Okike (Amherst, MA) + 34 + + + + + Olmsted, Audrey (reference: Elizabeth Gurley Flynn) + 34 + + + + + Om (Amsterdam, Holland) + 34 + + + + + Omega (re: several anonymous donations) + 34 + + + + + On Target (Norborne, MO) + 34 + + + + + One, Inc. + 34 + + + + + One in Detroit + 34 + + + + + O’Neil, David + 34 + + + + + Onna (Tokyo) + 34 + + + + + Onubogu, Harold N. + 34 + + + + + Onward (Gainesville, FL) + 34 + + + + + Open Head Press ( Fanatic) (London, England) + 34 + + + + + Operation Bootstrap (Shreveport, LA) + 34 + + + + + Ophelia Editions (New York, NY) + 34 + + + + + Oppenheim, Lucy (re: job possibility in the LC) + 34 + + + + + Opus Gay (Lisbon, Portugal) + 34 + + + + + Oracle (Los Angeles, CA) + 34 + + + + + Orbach, Harold (re: donations to LC) + 34 + + + + + Orbis Publishing, Ltd. (reference: photographs for illustrated + history of America) + 34 + + + + + Organization of Solidarity for the Peoples of Africa, Asia & + Latin America (see O.S.P.A.A.A.L.) + 34 + + + + + Orpheus (Phoenix) + 34 + + + + + Orr, Charles A. (re: donations) + 34 + + + + + Orr, Laura (re: literary heir of Lois and Charles Orr) + 34 + + + + + Orth-Gutmann, Renate (reference: Robert Reitzel) + 34 + + + + + Orvis, Dellis (reference : John Orvis ; Sovereigns of Industry) + 34 + + + + + O’Sullivan, Judith (reference: women in American labor) + 34 + + + + + Osborne, James (reference: Paterson, NJ strike of 1913; Italian + anarchist movement of Paterson) + 34 + + + + + Other Countries: Black Gay Voices (New York)) + 34 + + + + + Other Scenes (New York, etc.) + 34 + + + + + Otter, Laurens + 34 + + + + + Our American Heritage Committee News Bulletin (Oklahoma City, OK) + 34 + + + + + Our Generation (Montréal, Quebec) + 34 + + + + + Outlines (Chicago) + 34 + + + + + Overthrow (New York) + 34 + + + + + Oz Magazine (London) + 34 + + + + + P., Phillip + 34 + + + + + P.A.R. Journal (People Against Racism) (Detroit) + 34 + + + + + P.E.T.A. (People for the Ethical Treatment of Animals) + 34 + + + + + P.O.S.R.I.P. (People Organized to Stop Rape of Imprisoned + Persons) + 34 + + + + + Pacesetters (Philadelphia, PA) + 34 + + + + + Pacific Collective (M-L) (Berkeley, CA) + 34 + + + + + Pacific Historian (reference: Ralph Chaplin; Alexander Berkman) + 34 + + + + + Pacific Libertarian (Makiki, HI) + 34 + + + + + Pacific Street Production Corporation (reference: anarchists in + NYC; radical gathering places in NYC) + 35 + + + + + Padilla, Raymond (reference: Mexican-American serials in the LC) + 35 + + + + + Paedophile Information Exchange (Kent, England) + 35 + + + + + Pa’fuera! (San Juan, Puerto Rico) + 35 + + + + + Page, Warren (3 folders) + 35 + + + + + Pagni, Charlotte (re: thank you to ECW for class presentation) + 35 + + + + + Paley, Richard P. (reference: Spanish Civil War) + 35 + + + + + Palmer, Ann (reference: Emma Goldman’s speeches) + 35 + + + + + Panarizon Publishing Corp. (reference: Joe Hill’s Rebel Girl + sheet music) + 35 + + + + + Paolella, Edward C. + 35 + + + + + Park, James (re : his book offered to LC, Authentic Love : An + Existential Vision) + 35 + + + + + Parker, Franklin (re: donation of his paper on Myles Horton for + inclusion in LC) + 35 + + + + + Parker, S.E. (Sid) (letters dating from 1949-1998) + 35 + + + + + Parola del Popolo, La (Chicago, IL) + 35 + + + + + Parrish, Timothy C. (reference: Spanish Civil War; UGT; CNT; + Riojo region) + 35 + + + + + Parry, Carl E. (donation of his Labor Legislation of Michigan, + 1909 for inclusion in LC) + 35 + + + + + Partido Obrero Revolucionario ( Lucha Obrera) (La Paz, Bolivia) + 35 + + + + + Patch, Margaret (reference: Witchcraft in Uganda—article in + Transition) + 35 + + + + + Pathfinder Press (New York) + 35 + + + + + Patino, Carlos + 35 + + + + + Patterson Museum (re: Edwin C. Walker’s literary executor) + 35 + + + + + Pawa, J. M. (reference: British IWW members imprisoned in + Leavenworth) + 35 + + + + + Paxton, Evan (reference: Voltairine de Cleyre) + 35 + + + + + Payne, Kenneth (reference: Mike Gold; radical American literature + of the 1930s) + 35 + + + + + Paz y Justica (Buenos Aires, Argentina) + 35 + + + + + Paz y Liberacion (Hollywood, CA; Houston, TX) + 35 + + + + + Peace & Freedom News (Berkeley, CA) + 35 + + + + + Peace Press (London) see International Confederation for + Disarmament and Peace + 35 + + + + + Peace News (London) + 35 + + + + + Peacedom Digest (Chicago) + 35 + + + + + Pearlman, George (reference: first Labor Day in 1882; Central + Labor Union; Machinists and + 35 + + + + + Blacksmiths Union; Thomas Wilson Talbot; Matthew Maguire) + 36 + + + + + Pearson, Mark (re: donation of libertarian materials) + 36 + + + + + Pedu, Richard K. + 36 + + + + + Peking Review (Peking, China) + 36 + + + + + Pennington, Jack G. (re: bibliography of radical literature) + 36 + + + + + People, The (Sydney, Australia) + 36 + + + + + People and Land (San Francisco, CA) + 36 + + + + + People’s Bicentennial Commission (Washington, DC) + 36 + + + + + People’s Bookseller (Tallahassee, FL) ( P.M. Newsletter) + 36 + + + + + People’s Press (San Francisco, CA) + 36 + + + + + People’s Tribune (Chicago, IL) (Communist Labor Party) + 36 + + + + + People’s Voice (Bellflower, CA) (CPUSA) + 36 + + + + + People’s World (San Francisco, CA) + 36 + + + + + Pereira, Raimundo + 36 + + + + + Perelli, John Jr. (reference: Emma Goldman’s life in Rochester, + NY) + 36 + + + + + Perlman, Lorraine + 36 + + + + + Perlstein, Daniel (reference: Elizabeth Gurley Flynn) + 36 + + + + + Pernicone, Nunzio (reference: Carlo Tresca’s literary heir) + 36 + + + + + Peron, Jim (re: Christianity and homosexuality) + 36 + + + + + Perseus House, Inc. + 36 + + + + + Pesotta, Rose (from ECW, no reply) + 36 + + + + + Petal Paper, The (Fairhope, AL) + 36 + + + + + Petermann, Alfred G. (reference: Giessen Emigration Society; Karl + Heinzen; German periodicals) + 36 + + + + + Peters, David (reference: Joseph Slight: Glassworkers) + 36 + + + + + Petersen, Peter L. (reference: Henry Vincent; Edwin and Thomas + Meredith) + 36 + + + + + Peterson, Bendix + 36 + + + + + Peterson, Joyce (reference: Auto workers in non-union period) + 36 + + + + + Peterson, Karl (reference: John Dos Passos) + 36 + + + + + Petrick, Arthur (reference: Anthony Bimba; American Committee for + the Protection of Foreign Born) + 36 + + + + + Phelps, Christopher (reference: Emanuel Kanter) + 36 + + + + + Phelps, James (reference: Benjamin Tucker) + 36 + + + + + Philadelphia Gay News + 36 + + + + + Philippines Research Center (Storrs, CT) + 36 + + + + + Phipps, Stanley G. (reference: labor history) + 36 + + + + + Phoenix News and Views (Phoenix Society) (Kansas City, MO) + 36 + + + + + Pianeta Fresco (Torino, Italy) + 36 + + + + + Piehl, Mel (reference: Catholic Worker; Ammon Hennacy) + 36 + + + + + Piehler, Harold (reference: Henry Vincent; Leopold Vincent; + Populist movement in Kansas) + 36 + + + + + Pierce, Roy (re: transfer of French political surveys from ISR to + LC) + 36 + + + + + Pierian Press (reference: genocide in Bangladesh) + 36 + + + + + Pilk, Inez (aka ECW) + 36 + + + + + Pink Triangle (Malaysia) + 36 + + + + + Pink Triangle (New Zealand) + 36 + + + + + Pink Triangle Press (Hong Kong) + 36 + + + + + Pinkham, Harold B. (to various employees in the LC) + 36 + + + + + Pinto, Vincent A. (reference: Lawrence textile strike of 1912) + 36 + + + + + Pintzuk, Edward C. (reference: Jewish trade unions in Detroit) + 36 + + + + + Plain Rapper (Palo Alto, CA) + 36 + + + + + Plain Truth, The (Champaign, IL) + 36 + + + + + Pl’Asada – Grupo Anarchico (Italy) + 36 + + + + + Poland, Jefferson + 36 + + + + + Polansky, Janet (reference: Helen Marot; Women’s Trade Union + League) + 36 + + + + + Polenburg, Richard (reference: anarchism in the U.S. from + 1912-1922) + 36 + + + + + Pollock, Mordeca Jane (reference: wants copy of First Essay on + the Political Rights of Women) + 36 + + + + + Poor Richard’s Reports (Society of Separationists) (Austin, TX) + 36 + + + + + Pope, Daniel A. (reference: Emma Goldman; American anarchists) + 36 + + + + + Popeye (San Francisco) + 36 + + + + + Porpoise Press (Provincetown, MA) + 36 + + + + + Porter, David (reference: Spanish Civil War; Emma Goldman; + literary heir) + 36 + + + + + Porter, Harold Irving (reference: assassination of John F. + Kennedy) + 36 + + + + + Portuguese and Colonial Bulletin (London) + 36 + + + + + Pothen, Philip P. + 36 + + + + + Powell, Anton (re: sending copy of pamphlet, “Marked for Life” + for inclusion in LC) + 36 + + + + + Powers, Lila (re: donation of Don Werkheiser Papers) + 36 + + + + + POZ Magazine (New York) + 36 + + + + + Practical Anarchy (Glasgow, Scotland) + 36 + + + + + Prairie Fire Distribution Committee (San Francisco) + 37 + + + + + Preece, Harold (reference: seeking copy of his article, “The + Passion of Sacco and Vanzetti”) + 37 + + + + + Preston, John (re: author of The Big Gay Book; wants to include + info on LC) + 37 + + + + + Price, Doug (re: purchase of photographs for LC) + 37 + + + + + Price, Isabel B. (reference: Gerald L.K. Smith) + 37 + + + + + Prickett, James (reference: American Communist Party and + Communist front groups + 37 + + + + + Prikopa, John I (re: donation of his book) + 37 + + + + + Princeton University (reference: James Keir Hardie; death of + Agnes Inglis) + 37 + + + + + Prison and Jail Project of North Carolina + 37 + + + + + Prisoners’ Union ( The Outlaw) + 37 + + + + + Programma Comunista, Il (Milano, Italy) + 37 + + + + + Progressive Labor (New York) + 37 + + + + + Progressive Workers Movement (Vancouver, BC) + 37 + + + + + Protesta, La (Argentina) (includes letters from Freedom Press) + 37 + + + + + Protos (Los Angeles, CA) + 37 + + + + + Prum, Michel (reference : John Francis Bray) + 37 + + + + + Psych-Agitator (Stony Brook, NY) + 37 + + + + + Pterodactyl (Grinnell, IA) + 37 + + + + + Public Affairs Press (reference: Socialist Party, IWW) + 37 + + + + + Puce Mongoose (Garwood, NJ) + 37 + + + + + Pudup, Mary Beth (reference: Ku Klux Klan during Reconstruction) + 37 + + + + + Puebla Institute (New York) + 37 + + + + + Punto Crítico (Zacatecas, Mexico) + 37 + + + + + Purdue University Library (reference: seeking bibliographies on + homosexuality for acquisition) + 37 + + + + + Purdy/Kresge Library, Wayne State University (re: ECW to borrow + André Gill materials for exhibit) + 37 + + + + + Pushpin, Lubalin & Peckolick (reference: images of pacifism + and anti-war movements) + 37 + + + + + Pyrmid Periodical (New York, NY) + 37 + + + + + Quam-Wichham, Nancy (reference: California oil workers; IWW; + Socialist Party) + 37 + + + + + Quartich, Bernard (re: Dachine Rainer papers) + 37 + + + + + Qué Hacer? (Costa Rica) + 37 + + + + + Quest: a feminist quarterly (Washington DC) + 37 + + + + + Quarterly Intercsange (San Francisco, CA) + 37 + + + + + RFD (Iowa; Tennessee) + 37 + + + + + Race Relations Information Center ( Race Relations Report) + (Nashville, TN) + 37 + + + + + Radical Education (London, England) + 37 + + + + + Radical Education Project (Detroit, MI) + 37 + + + + + Radical Historians Caucus (Somerville, MA) + 37 + + + + + Radical History Review (New York) + 37 + + + + + Radical Individualist (Portland, OR) + 37 + + + + + Radical Religion (Berkeley, CA) + 37 + + + + + Radio Free People (New York) + 37 + + + + + Radosh, Ronald (letters from ECW) + 37 + + + + + Rafferty, Edward (reference: Lester Frank Ward) + 37 + + + + + Rag, The (Austin, TX) + 37 + + + + + Rahman, Ajile A. (reference: Muhammed Speaks) + 37 + + + + + Rainer, Dachine + 37 + + + + + Rally Magazine (Wauwatosa, WI) + 37 + + + + + Ramer, Richard (book dealer) + 37 + + + + + Rampart College Newsletter (Santa Ana, CA) + 37 + + + + + Ramparts Magazine (Berkeley, CA) + 37 + + + + + Ramsey, Cheryl Y. + 37 + + + + + Ramsey, Ronald (reference: Honoré Joseph Jaxon) + 37 + + + + + Ramsey, Jerold (reference: Redpath’s Weekly) + 37 + + + + + Rand Corporation (reference: The Alternative Press) + 37 + + + + + Randolph, A. Philip (re: The Messenger) + 37 + + + + + Random House (reference: photograph of Margaret Sanger for The + American Century textbook) + 37 + + + + + Rank and File (London, England) + 37 + + + + + Rappaport, Philip (reference: pictorial history of working women + in America) + 37 + + + + + Rapport, Beatrice (daughter of Carlo Tresca) + 37 + + + + + Rasmussen, Bill + 37 + + + + + Rat, The (New York) + 37 + + + + + Rational Individualist (Silver Spring, MD) + 37 + + + + + Raza, La (Los Angeles, CA) + 37 + + + + + Reade, Maxwell + 37 + + + + + Reader’s Digest (reference: Joe Hill sheet music for American + Folklore and Legend) + 37 + + + + + Realist (San Francisco, CA) + 38 + + + + + Reason (re: letter from ECW regarding None Dare Call It + Treason/Reason) + 38 + + + + + Rebel Voices (New York) – file not in box + 38 + + + + + Rebellion News (Roxbury, MA) + 38 + + + + + Recht Voor Allen (Amsterdam, Holland) + 38 + + + + + Recon Publications + 38 + + + + + Reconstruir (Buenos Aires, Argentina) + 38 + + + + + Red Balloon (Port Jefferson, NY) + 38 + + + + + Red Books (London, England) + 38 + + + + + Red House Books (San Francisco, CA) + 38 + + + + + Red Lion Press (Montréal, Quebec) + 38 + + + + + Red Menace (Toronto, Ontario) + 38 + + + + + Red Mole (London, England) + 38 + + + + + Red Notes (London, England) + 38 + + + + + Red Papers (San Francisco, CA) + 38 + + + + + Red Times (Detroit, MI) + 38 + + + + + Redding, R.W. (reference: Ralph Chaplin) + 38 + + + + + Reddy, Enver + 38 + + + + + Redfern, Walter (reference: Georges Darien; L’Ennemi du Peuple; + etc.) + 38 + + + + + Rediker, Marcus (reference: Alexander Berkman; Johann Most) + 38 + + + + + Reed, Theodore L. (donation of materials relating to SDS and + SLID) + 38 + + + + + Reeve, Carl (reference: James Connolly) + 38 + + + + + Reflections the Free South Review (Chapel Hill, NC) + 38 + + + + + Réfractaire (Le Pré Saint Gervais, France) + 38 + + + + + Regeneración, (Mexico) + 38 + + + + + Regeneración (Los Angeles, CA) + 38 + + + + + Reich, Eva (re: donation of Wilhelm Reich microfilms) + 38 + + + + + Reichard, Richard (reference: Nordstern) + 38 + + + + + Reichert, William O. (reference: Josiah Warren; American + anarchism) + 38 + + + + + Reid, Thomas (reference: history of Trotskyism in North American + to 1960) + 38 + + + + + Reid-Farr, Robert F. (letter from ECW) + 38 + + + + + Reintjes, Monique (reference: Odette Keun) + 38 + + + + + Reinsdorf, Walter D. (reference: wants microfilm of Freiheit) + 38 + + + + + Reiser, Robert S. (reference: photos for book about working + people in the U.S.) + 38 + + + + + Reisman, Gail (reference: Emma Goldman material on microfilm) + 38 + + + + + Reiss, Ansgar (reference: Gustav (von) Struve) + 38 + + + + + Reitz, Thomas (re: Leon Kramer Collection at UW-Green Bay) + 38 + + + + + Relgis, Eugen + 38 + + + + + Rene Guyon Society + 38 + + + + + Renegade, The (Tacoma, WA) + 38 + + + + + Renshaw, Patrick (reference: IWW) + 38 + + + + + Research Foundation for Jewish Immigration (reference: + German-speaking refugees from Nazism) + 38 + + + + + Resist Newsletter (Cambridge, MA) + 38 + + + + + Resistance (New York) (letter from David Weick) + 38 + + + + + Resistance Publications ( Chilean Resistance Courier) (Oakland, + CA) + 38 + + + + + Resistenza (Torino, Italy) + 38 + + + + + Resource Center for Philippine Concerns (Hong Kong) + 38 + + + + + Respond (Boston, MA) + 38 + + + + + Retherford, Sylvia E. (reference: Lois Waisbrooker) + 38 + + + + + Rethinking Marxism (Northampton, MA) + 38 + + + + + Retzloff, Tim + 38 + + + + + Reuben, William (re: donation of papers) + 38 + + + + + Reuther Library (re: ECW article in Labor History) + 38 + + + + + Review of Radical Political Economics (Ann Arbor, MI) + 38 + + + + + Review of the News (Belmont, MA) + 38 + + + + + Revisionist Press, The (re: Laurance Labadie’s writing for + publication) + 38 + + + + + Revista Acracia (Costa Rica) + 38 + + + + + Revolt (Sweden?) (seized by U.S. Customs on charges of + obscenity) + 38 + + + + + Revolution (Chicago, IL) (RCP) + 38 + + + + + Revolution Socialiste (Martinique, West Indies) + 38 + + + + + Revolutionary Age (Seattle) + 38 + + + + + Revolutionary Autoworkers Committee (Detroit, MI) + 38 + + + + + Revolutionary People’s Communication Network (New York) + 38 + + + + + Revolutionary Union (San Francisco, CA) + 38 + + + + + Revolutionary Workers Congress (Detroit, MI) + 38 + + + + + Revolutionary Workers Party (Red Flag) (London, England) + 38 + + + + + Reynolds, Paul (re: donation of anarchist materials from former + SRAF member) + 38 + + + + + Rhodes, James B. (reference: Socialist Party presidential + campaign of 1920) + 38 + + + + + Ribuffo, Leo P. (reference: Gerald L.K. Smith) + 38 + + + + + Ricci, James (re: article on Sunrise Community in Detroit Free + Press) + 38 + + + + + Rice, Warner (re: death of Mary Rice) + 38 + + + + + Rich, Janet (reference: hidden history and culture of gay women + and men) + 38 + + + + + Richardson, Ronald – wasn’t on finding aid + 38 + + + + + Richter, John Henry (re: microfilming Readers Speak Out!) + 38 + + + + + Riché, Nicole Tucker (re: literary rights of Benjamin Tucker) + 38 + + + + + Richter, John Henry (re: Du Bois, Aptheker, Hugo Rolland, + Comunita) + 38 + + + + + Rickman, Ray (reference: Justice Marshall) + 38 + + + + + Riddle, Dave (reference: Warren Tank Plant march of April 1971) + 38 + + + + + Rodinger, Robert (reference: microfilming of gay newspapers) + 38 + + + + + Right to Work Campaign (London, England) + 38 + + + + + Riley, Monica (reference: Nation of Islam) + 38 + + + + + Rimmer, Robert (re: The Harrad Experiment) + 38 + + + + + Rinehart, Blanche (reference: Philip Taft; International + Typographical Union of Detroit; Gompers) + 38 + + + + + Rischin, Moses (reference: Abraham Cahan) + 38 + + + + + Rising Up Angry (Chicago) + 38 + + + + + Ritchie, Gladys (reference: Port Huron Statement; Tom Hayden; + SDS; rhetoric of student protest) + 38 + + + + + Ritter, Gretchen (reference: antimonopolism; Greenbacks; IWW; + Knights of Labor, etc.) + 38 + + + + + Rivera, Bob (reference: copies of IWW Walsh-Lahr photos; IWW; + E.G. Flynn; Palmer Raids, etc.) + 39 + + + + + Robb, Pauline Forman (re: Sunrise Community donation) + 39 + + + + + Robert F. Williams Tribute Committee (letter from ECW-no + response-returned) + 39 + + + + + Roberts, Joe (reference: anti-revisionist communist movement in + U.S. from 1940s to 1970s) + 39 + + + + + Roberts, John (re: donation of New Left materials) + 39 + + + + + Robertson, Martha + 39 + + + + + Robie, Carroll H. (re: donation of human sexuality books by + Walter Robie) + 39 + + + + + Robilotta, Peter (reference: Ralph Chaplin autograph book) + 39 + + + + + Robinson, Cedric (reference: Abraham Lincoln Brigade; role of + Blacks in the Spanish Civil War) + 39 + + + + + Robinson, Jo Ann O. (reference: A.J. Muste) + 39 + + + + + Rochester, N.Y., Public Library (re: Stella Cominsky Ballantine) + 39 + + + + + Rock, Allan L. (re: donation of his papers, personal matters) + 39 + + + + + Rock and Roll Hall of Fame + 39 + + + + + Rodger Friedman Antiquarian Books + 39 + + + + + Rodgers, Curtis and Clarice (1 - 11 of 18 folders) + 39 + + + + + Rodgers, Curtis and Clarice (12 - 18 of 18 folders) + 40 + + + + + Rodrigo, Antonina (re: donation of books) + 40 + + + + + Rodriguez, Oriente Neber Diaz (re: gay movement in Uruguay) + 40 + + + + + Roediger, Dave (reference: Covington Hall; John Nicholas Beffel) + 40 + + + + + Roewer, Edward W. (re : great grandson of Karl Heinzen) + 40 + + + + + Rogow, Zack (re: donation of anarchist materials—Bookchin; + Anarchos) + 40 + + + + + Rolies, Jan (reference: Iwan Block) + 40 + + + + + Rolland, Hugo (re: donation of Italian anarchist materials) + 40 + + + + + Rolland, Siphra (re: donation of husband Hugo Rolland’s + materials) + 40 + + + + + Rollman, Mary + 40 + + + + + Romano, Rene (reference: black-white interracial marriage in the + U.S. from 1945-1990; Club of Tomorrow in Detroit) + 40 + + + + + Romberg, Bill (reference: music about Milwaukee; G. Vail + Williams; R.W. Wooby) + 40 + + + + + Romer, James H. (reference: bibliography of current left + movements) + 40 + + + + + Rooks, Marjorie (Putnam) (reference: The Story of New Harmony) + 40 + + + + + Rooks, John and Marjorie + 40 + + + + + Rooks, JC + 40 + + + + + Roosevelt, James + 40 + + + + + Root & Branch (Somerville, MA) + 40 + + + + + Roots (New York) + 40 + + + + + Roper, William L. (reference: Joe Hill; James O. Morris) + 40 + + + + + Rosary College (re: From Radical Left to Extreme Right) + 40 + + + + + Rosalik, Bernard (re: donation of WWI Polish posters) + 40 + + + + + Roseman, Herbert C. (re: donation of Laurance Labadie books + belonging to Roseman) + 40 + + + + + Rosemont, Henry (reference: David Boyd’ The Labor Movement of + Detroit) + 40 + + + + + Rosemont, Franklin (reference: various anarchist and IWW + questions) + 40 + + + + + Rosen, Nancy (reference: photographs of Olivia and Helen + Rossetti) + 40 + + + + + Rosenberg, Marc (re: donation of SDS scrapbook of Queens College + Chapter) + 40 + + + + + Rosenberg, Mark (re: Amalgamation Party; The Printing Worker) + 40 + + + + + Rosenblum, Henry (reference: Individualist anarchists; Minus One) + 40 + + + + + Rosenthal, Anton (reference: history of anarchism and IWW in + Latin America) + 40 + + + + + Rosenthall, Susan A. (re: donation of The Radical Therapist; + Rough Times; Issues in Radical Therapy) + 40 + + + + + Rosenzweig, Roy (reference: unemployed organizations in Britain + and U.S. in 1930s) + 40 + + + + + Rosini, Vincent (reference: Orrin Giddings Cocks; National + Committee for Better Films) + 40 + + + + + Ross, Greg + 40 + + + + + Ross, Marc (reference: Peter J. McGuire) + 40 + + + + + Rossi, Bob (re: American Federation of Miners; offer to sell his + books) + 40 + + + + + Rossman, Michael (re: political posters; AOUON Archive) + 40 + + + + + Rosswurm, Kevin (reference: IWW strike in Akron, OH, 1913) + 40 + + + + + Rosswurm, Steven (reference: general info) + 40 + + + + + Rostenberg and Stern Rare Books + 40 + + + + + Roth, Robert (reference: project to microfilm all LGBT materials + for NGTF) + 40 + + + + + Roth, Susan (reference: American radical and underground + newspapers) + 40 + + + + + Rotstein, Andrew (reference: October League) + 40 + + + + + Roy, Nena + 40 + + + + + Rudenko-Rudolph, Hryhorij Nestor (reference: donation of + manuscript on anarchist history) + 40 + + + + + Rudolph, Jim and A. + 40 + + + + + Ruge, Valice (re: donation of Arnold Ruge papers) + 40 + + + + + Ruja, Harry (reference: Bertrand Russell bibliography) + 40 + + + + + Rush, E.L. + 40 + + + + + Russell, Francis (reference: letter from Vanzetti to Rose + Pesotta, 1927) + 41 + + + + + Russell, Robert R. (reference: donation of his letters to the + editor) + 41 + + + + + Russo, Johnny (re: offer to send Antikrat; in prison for + bombings) + 41 + + + + + Ruta (Caracas, Venezuela) + 41 + + + + + Rutledge, Leigh W. + 41 + + + + + S.O.S.!!!, U.S.A., Ship of State (Salem, MA) + 41 + + + + + SRAFprint Co-op (Social Revolutionary Anarchist Federation) + 41 + + + + + St. Francis of Assisi House (re: publications on Catholic + radicalism) + 41 + + + + + Saint Amour, Michele + 41 + + + + + Saint Laurent, Ronald (reference: anarchists in the Portuguese + Revolution of 1974-75) + 41 + + + + + Sabatini, Peter (reference: marginalization of anarchism after + 1900) + 41 + + + + + Saenz, Gil (re: donation of his book of poetry) + 41 + + + + + Salem, Dorothy (reference: photograph of Lucy Parsons) + 41 + + + + + Salemme, Antonio (re: sent photographs of Paul Robeson statue) + 41 + + + + + Salerno, Salvatore (reference: anarchist influences in the IWW; + Irving Abrams; Thomas Hagerty) + 41 + + + + + Salted Feathers (Portland, OR) + 41 + + + + + Salter, John R. (re: donation of his articles on Ralph Chaplin, + Mississippi, etc.) + 41 + + + + + Samizdat Bulletin (San Mateo, CA) + 41 + + + + + Samoff, Joel (re: inaccessibility of LC materials with long reply + from Anne Okey) + 41 + + + + + Samuel Gompers Papers, The (reference: want copies of all Gompers + letter in LC) + 41 + + + + + San Diego’s Daily Impulse + 41 + + + + + San Francisco African-American Historical & Cultural Society + (formerly S.F. Negro etc.) + 41 + + + + + San Francisco Ball + 41 + + + + + San Francisco Bay Area Gay & Lesbian Historical Society + 41 + + + + + San Francisco Mime Troupe + 41 + + + + + San Francisco Public Library + 41 + + + + + Sandos, James A. (reference: William C. Owen) + 41 + + + + + SANE World (Washington DC) + 41 + + + + + Sanger, Alexander C. (reference: Margaret Sanger) + 41 + + + + + Sanity (Montreal, Québec) + 41 + + + + + Sannes, Erling (reference: Knights of Labor in the Dakota + Territory; George Schilling) + 41 + + + + + SantaVicca, Edmund F. (re: donation of bibliography on sexual + minorities) + 41 + + + + + Sappho (London, England) + 41 + + + + + Sasquatch Books (reference: IWW photos book on Washington state + history) + 41 + + + + + Satter, Mark J. (reference: Haymarket trial transcripts) + 41 + + + + + Savage, Ronald J. (reference: Father Thomas J. Haggerty) + 41 + + + + + Sayles, Alan (reference: American anarchism) + 41 + + + + + Scanlan, Eleanor H. (reference: biographical info for Michigan + Index to Labor Union Periodicals) + 41 + + + + + Scarafoni, Deborah + 41 + + + + + Schaffer, Constance + 41 + + + + + Schaber, Ralph F. (re: donation of Truth Seeker and other + freethought publications) + 41 + + + + + Schapsmeier, Walter (reference: Walter Lippmann) + 41 + + + + + Scharnau, Ralph W. (reference: native American anarchism; Josiah + Warren) + 41 + + + + + Scheips, Paul J. (reference: Knights of Labor song) + 41 + + + + + Schild, Jochen (reference: political rhetoric of the right and + left in the USA since 1955) + 41 + + + + + Schindehuette, Reinhard M. (reference: early AFL and its + affiliated unions) + 41 + + + + + Schlagenhauff, Annette (reference: ideas on art and revolution in + France in the 1920s) + 41 + + + + + Schlichter, Robert (re: subscriptions to his publications Report + and Review; May Day!) + 41 + + + + + Schmaltz, William (reference: George Lincoln Rockwell; American + Nazi Party) + 41 + + + + + Schmu, Ma (reference: Max Nettlau; Chinese translation of + Godwin’s On Property; Sifo) + 41 + + + + + Schniderman, Saul (re: Talkin’ Union; donation of labor + materials) + 41 + + + + + Schoeps, Julius H. (reference: Ferdinand Freiligrath; Karl + Heinzen) + 41 + + + + + Schoffman, Stuart (reference: Benjamin Tucker) + 41 + + + + + Scholarly Resources, Inc. + 41 + + + + + Scholastic, Inc. (reference: IWW; Wesley Everest; Ricardo Flores + Magon) + 41 + + + + + Scholten, Pat (reference: Mother Jones; Ella Reeve Bloor; + Elizabeth Gurley Flynn; Rose Schneiderman; Agnes Nestor) + 41 + + + + + School of Living + 41 + + + + + School Stopper’s Textbook + 41 + + + + + Schuck, Robert + 41 + + + + + Schultz, Gretchen + 41 + + + + + Schulze, David (reference: IWW and unemployed in Western Canada + in 1913-14) + 41 + + + + + Schwantes, Carlos A. (reference: anarchist literature in the + Pacific Northwest; Jacob Coxey) + 41 + + + + + Schwarz, Bob (reference: Malcolm X appearance in Michigan) + 42 + + + + + Schwertz, Dr. Joseph S., Sr. (re: ECW request for copy of High + School Reform) + 42 + + + + + Schwoegler, Stephen J. (reference: Frank Little) + 42 + + + + + Scott, Laurence + 42 + + + + + Scottish Homosexual Rights Group + 42 + + + + + Scottish Lesbian Feminists (re: Red Herring) + 42 + + + + + Screw (New York) + 42 + + + + + Searles, Richard (reference: Joseph and Laurance Labadie’s + writings) + 42 + + + + + Sears, Hal D. (reference: Moses and Lillian Harman; Edwin C. + Walker) + 42 + + + + + Sechaba Publications (African National Congress) + 42 + + + + + Sébastien, Jean (reference: microfilm of MacKnight Black’s + poetry) + 42 + + + + + See Sharp Press (donation of materials; wants copy of Fabbri's + "Bourgeois Influences on Anarchism") + 42 + + + + + Seeger, Peggy (re: New City Songster) + 42 + + + + + Seiatel (Buenos Aires, Argentina) + 42 + + + + + Seidler, Murray (reference: Norman Thomas; New America) + 42 + + + + + Sekyere, Festus Owusu (Ghana) + 42 + + + + + Self Management Group of Western Australia (formerly The West + Australian Anarchist Federation) + 42 + + + + + Sell, Evelyn (reference: Socialist Workers Party 1968 election + campaign) + 42 + + + + + Sellars, Nigel (reference: IWW in Oklahoma) + 42 + + + + + Selma Inter-religious Project + 42 + + + + + Selmer, Kristin + 42 + + + + + Selth, Jeff (reference: contemporary commune, nudism, sexual + freedom movement, no reply) + 42 + + + + + Selvin, David F. (reference: photographs of Haywood and Debs for + book on American labor leaders) + 42 + + + + + Senza, Patria + 42 + + + + + Seme Anarchico (Italy) + 42 + + + + + Serendipity Books (re: purchase of Free Society) + 42 + + + + + Seretan, L. Glen (reference: Daniel DeLeon; Socialist Labor + Party; etc.) + 42 + + + + + Serlin, David (reference: Charles Ashleigh; Claude McKay; William + Rollins, Jr.) + 42 + + + + + Seven Days (New York) + 42 + + + + + Seven Seas Press + 42 + + + + + Shackleford, Martin (re: donation of book on Kennedy + assassination) + 42 + + + + + Shadley, Bob (reference: communes in the United States) + 42 + + + + + Shah, Nayan (reference: anti-Chinese legislation; white labor + attitudes toward Chinese workers in the U.S.; Agnes Inglis’s settlement + work) + 42 + + + + + Shanahan, Bill (reference: Liberty, Benjamin Tucker; letter from + ECW about visit to Bubbling Waters) + 42 + + + + + Shanks, Phil (reference: Songs of the Wobblies; IWW) + 42 + + + + + Shanley, R.V. (reference: Spanish Civil War) + 42 + + + + + Shapiro, Chaim (re: donation of radical pamphlets from W.A.N. + Collier) + 42 + + + + + Shapiro, Herbert (reference: Walter Drew; Lincoln Steffens; + Progressive Movement) + 42 + + + + + Sharbach, Sarah (reference: Modern School Magazine; Louise + Olivereau) + 42 + + + + + Sharma, Om P. + 42 + + + + + Sharp, Kathleen (reference: women in radical groups 1890-1920) + 42 + + + + + Shaw, Alan + 42 + + + + + Shaw, Bruno (reference: Robert LaFollette; Socialist Party + platform of 1924; Prohibition Party) + 42 + + + + + Shaver, Joe (reference: offer of anarchist materials) + 42 + + + + + Shea, Robert (re: sending LC copies of No Governor) + 42 + + + + + Sheaffer, Louis (reference: Charles Ashleigh; Terence Carlin; + Hippolyte Havel) + 42 + + + + + Sheldon, John (reference: “The Joe Hill Case” by James O. Morris) + 42 + + + + + Shelby, Deborah (reference: survey of archives housing lesbian + and gay materials) + 42 + + + + + Sher, Laurel (reference: Alternatives in Print) + 42 + + + + + Sherward, Diane (reference: Laurance Labadie Papers) + 42 + + + + + Shiley, James + 42 + + + + + Shilts, Randy (reference: homosexual experience in the military) + 42 + + + + + Shively, Charles (reference: homosexual writers and literary + figures) + 42 + + + + + Shor, Francis (reference: Joseph Cohen; Sunrise Farm Cooperative) + 42 + + + + + Shore, Elliott (reference: Allan Benson; Appeal to Reason; Debs + scrapbooks) + 42 + + + + + Sibley, Abigail (reference: Teacher’s International Review) + 42 + + + + + Sicherman, Barbara (reference: ACPFB Papers; Alice Hamilton) + 42 + + + + + Sides, Ann B. (reference: William Buwalda who attended a speech + by Emma Goldman) + 42 + + + + + Silberman, Ellen G. (reference: permission to use IWW image in + Invisible America) + 42 + + + + + Silver, Madeline (reference: Attitudes Toward Homosexuality + Scales; Lon Nungesser) + 42 + + + + + Silverman, Max (reference: silver movement; monetary reform) + 42 + + + + + Silverman, Shulman & Baker, P.C. (reference: thanks for use + of photograph for European history examination) + 42 + + + + + Sinclair, Glenn (reference: Canadian student activist + organizations; radical Canadiana) + 42 + + + + + Singerman, Robert (anti-Semitism; anti-Jewish materials in LC) + 42 + + + + + Singham, Nancy L. (reference: publishing activities of socialist + and communist parties) + 42 + + + + + Sipe, Gregory (reference: general inquiry about anarchist + holdings in LC) + 42 + + + + + Sipapu (Evanston, IL) + 42 + + + + + Siren Newsletter (Chicago, IL) + 42 + + + + + Sitcoff, Harvard (reference: Civil Rights Movement in the 1940s) + 42 + + + + + Situationist International (New York) + 42 + + + + + Skyhorse/Mohawk Offense/Defense Committee + 42 + + + + + Slate (Berkeley, CA) + 42 + + + + + Slatter, John (reference: Peter Kropotkin) + 42 + + + + + Slawikowski, John (re: compiling bibliography on American + anarchism) + 43 + + + + + Slight, Joseph + 43 + + + + + Sloothak, Mike (re: trading of duplicates with Gerber Hart + Library) + 43 + + + + + Sluder, Claude L. (reference: music of Josiah Warren; New + Harmony) + 43 + + + + + Smith, Anthony T. (re: Alliance for Equal Opportunity; homosexual + prisoner rights at Angola and other U.S. prisons) + 43 + + + + + Smith, David (reference: general inquiry regarding LC holdings on + Trotskyism and Fourth International) + 43 + + + + + Smith, Gibbs M. (reference: Joe Hill; Industrial Worker; IWW) + 43 + + + + + Smith, Jessie Carney (reference: photo of Lucy Parsons for + publication on Notable Black Women) + 43 + + + + + Smith, Robert W. (reference: farmers’ crusade of the 1890s; + Populist Movement) + 43 + + + + + Smith, W. T. (reference: IWWs in the Kuzbas; Russia) + 43 + + + + + Smithsonian Institution (reference: Josiah Warren; Charles Coffin + Jewett; John Punchard Jewett) + 43 + + + + + Smolinski, Gerald K. (reference: IWW report by Howard Scott) + 43 + + + + + Smyrna Press (re: purchase of Detroit, I Do Mind Dying) + 43 + + + + + Snow, Richard (reference: SDS; SSOC) + 43 + + + + + Snowberger, Garnet (re: offer of two issues of Truth Seeker from + 1965) + 43 + + + + + Snyder, Robert (reference: Tin Can Tourists) + 43 + + + + + Social Democrats, USA + 43 + + + + + Social Protest Project, UC Berkeley + 43 + + + + + Sociale Diffusion (Montréal, Canada) + 43 + + + + + Socialist Affairs (London, England) + 43 + + + + + Socialist Forum (New York) + 43 + + + + + Socialist Labor Party (re: donation of SLP publications) + 43 + + + + + Socialist Labour League (London) + 43 + + + + + Socialist Party of Michigan + 43 + + + + + Socialist Party USA + 43 + + + + + Socialist Reconstruction (New York) + 43 + + + + + Socialist Workers 1976 California Campaign + 43 + + + + + Socialist Workers Party + 43 + + + + + Society for the Protection of Personal Privileges (Tel Aviv, + Israel) + 43 + + + + + Society of Lesbian and Gay Anthropologists (SOLGA) + 43 + + + + + Sol III (Philadelphia, PA) + 43 + + + + + Soldiers of the Cross (Englewood, CO) + 43 + + + + + Solé, M. Angels (re: offer to sell clandestine materials from + Francoist Spain) + 43 + + + + + Solidarite Ouvriere (France) (reply from IWW regarding CNT in + Spain) + 43 + + + + + Solidarity (Aberdeen) + 43 + + + + + Solidarity (London) + 43 + + + + + Solidarity (North London) + 43 + + + + + Solidarity (South London) + 43 + + + + + Solidarity Newsletter (Philadelphia, PA) + 43 + + + + + Solidarity Bookshop (Chicago) + 43 + + + + + Solomon, Mark (re: purchase of Harrington Collection of Seven + Seas Books) + 43 + + + + + Solvick, Stanley D. (Reuther Library) (reference: Elizabeth + Gurley Flynn recording; New America Movment) + 43 + + + + + Sonn, Richard (reference: European anarchism) + 43 + + + + + Sonn, William J. (reference: European anarchist movement) + 43 + + + + + Sons of Liberty (Hollywood, CA) + 43 + + + + + Soriano, Scott (reference: Voltairine de Cleyre) + 43 + + + + + Sosnik, Nancy (re: CSPAN School Bus program) + 43 + + + + + Souchy, Augustin (reference: Erich Mühsam) + 43 + + + + + Source (Washington DC) + 43 + + + + + South Slovenian Socialist Labor Federation (Cleveland, OH) (re: + donation of Radnicka Borba) + 43 + + + + + Southern Africa (New York) + 43 + + + + + Southern Christian Leadership Conference (Atlanta) + 43 + + + + + Southern Conference Educational Fund + 43 + + + + + Southern Gay Liberator (Delray Beach, FL) + 43 + + + + + Southern Libertarian Messenger (Atlanta) + 43 + + + + + Southern Libertarian Review (Arlington, VA) + 43 + + + + + Southern Regional Council (Atlanta) + 43 + + + + + Southern Rural Research Project (Selma, AL) + 43 + + + + + Southern Student Organizing Committee (Nashville, TN) + 43 + + + + + Southwest Intergroup Relations Council (Austin, TX) + 43 + + + + + Southwick, Leslie (reference: James B. Weaver; B.J. Chambers; + Greenback Party) + 43 + + + + + Sozialistisches Osteuropakomitee (Hamburg, Germany) + 43 + + + + + Space City (Houston, TX) + 43 + + + + + Spadafore, Joseph (re: various biographical and intellectual + subjects) (Italian-American anarchist) + 43 + + + + + Spady, James (reference: Negro-Caucasian Club; Oakley Johnson; + Erdmann Beynon) + 43 + + + + + Spalek, John M. (re: Internationale wissenschaftliche + Korrespondenz zur Geschichte der Deutschen Arbeiterbewegung) + 43 + + + + + Spahn, Theodore (reference: Madalyn Murray O’Hair; Ayn Rand) + 43 + + + + + Spanish Information Network + 43 + + + + + Spanish Refugee Aid, Inc. + 43 + + + + + Spark, The (Progressive Labor Movement - Berkeley) + 43 + + + + + Spark, The (Baltimore; Detroit) + 43 + + + + + Spartacist, The (New York) + 43 + + + + + Spartacus International Ltd. (Amsterdam) (Pan Magazine) + 43 + + + + + Speak Out (Detroit) + 43 + + + + + Spearhead (London) + 43 + + + + + Special Operations Research Center (reference: Black Nationalism) + 44 + + + + + Spectacular Times (London) + 44 + + + + + Spectator, The (Berkeley, CA) + 44 + + + + + Spectator, The (Bloomington, IN) + 44 + + + + + Spectre (Ann Arbor) + 44 + + + + + Spectrum (London) + 44 + + + + + Spencer, Lisa (donation of The Black Rose) + 44 + + + + + Spider Magazine (Oakland, CA) + 44 + + + + + Spiegelman, Willard (reference: gay journalism) + 44 + + + + + Spitze, Glenna D. (reference: Voltairine de Cleyre; Emma Goldman) + 44 + + + + + Spokesman, The (Bertrand Russell’s publication) (Nottingham, + England) + 44 + + + + + Spokeswoman, The (Chicago, IL) + 44 + + + + + Spotlight on South Africa (see: Sechaba Publications) + 44 + + + + + Sprague, Jo (reference: speeches by or about women) + 44 + + + + + Sprout, Richard (re: donation of anarchist materials) + 44 + + + + + Sprout, The (Denver, CO) + 44 + + + + + Spurlock, John (reference: photographs for book on Free Love + Movement) + 44 + + + + + Sputnik (English edition) + 44 + + + + + Square (Westwood Village Square, West Los Angeles, CA) + 44 + + + + + Staebler, Neil (re: T. Casey Brennan) + 44 + + + + + Stand Up (Eugene, OR) + 44 + + + + + Stangis, Pat + 44 + + + + + Starring, Robert + 44 + + + + + State Historical Society of Wisconsin (Jim Danky) + 44 + + + + + State University of New York at Stony Brook (reference: Oakley + Johnson materials in LC) 1 of 2 + 44 + + + + + State University of New York at Stony Brook (re: purchase of + previously owned LC pamphlet) 2 of 2 + 44 + + + + + Statecraft (Alexandria, VA) + 44 + + + + + Statements (Berkeley, CA) + 44 + + + + + Stavis, Barrie (reference: Joe Hill, IWW, White Pine Shorty) + 44 + + + + + Steele, Richard W. (reference: U.S government treatment of aliens + during 1938-1945; ACPFB) + 44 + + + + + Steichman, Kate R. (re: donation of books) + 44 + + + + + Steid, Charles (reference: bibliography of bisexuality) + 44 + + + + + Stein, Gordon (freethought; ethnic anti-clerical; anti-religious + publications and movements) + 44 + + + + + Stein, Gordon (estate of) (re: purchase of books) + 44 + + + + + Stein, Harry (reference: Lincoln Steffens) + 44 + + + + + Stelle Letter (Stelle, IL) + 44 + + + + + Stemer, Stella Anne + 44 + + + + + Stephens, Michael P. (reference: bibliography of Charles H. Kerr + Co. publications) + 44 + + + + + Stern, Madeleine B. (reference: biography of Stephen Pearl + Andrews) + 44 + + + + + Stern, Der (Hamburg, Germany) + 44 + + + + + Stevens, David (reference: Julia Orvis; writing biography of John + Montgomery Ward) + 44 + + + + + Stevenson, Billie Jean (reference: dissertation on ideology of + American anarchism in late 19th century) + 44 + + + + + Stewart, Mrs. M. V. (reference: Emma Goldman) + 44 + + + + + Stewas, R.C. + 44 + + + + + Stich, Klaus Peter (reference: John H. Mackay and George Schumm + correspondence) + 44 + + + + + Stoddard, Richard (book dealer) + 44 + + + + + Stoddard, Roger E. (re: Chuck Dodson; LC holdings on sexual + freedom) + 44 + + + + + Stoffle, Carla (re: purchases of materials for LC) + 44 + + + + + Stoffle, Carla (re: purchases of materials for LC) + 44 + + + + + Stop the War (re: subscription to Revelator) + 44 + + + + + Story, Ian + 44 + + + + + Stowasser, Horst (re: subscription to Schwarze Tinte) + 44 + + + + + Stowe, Leland + 44 + + + + + Straight Creek Journal (Denver, CO) + 44 + + + + + Strassberg, Jerome (reference: Emma Goldman) + 44 + + + + + Street, Richard (reference: California farm workers) + 44 + + + + + Strong, Anna Louise (letter from ECW) + 44 + + + + + Strong, David + 45 + + + + + Strottman, Jeff (English language anarchist serials; anarchist + self-education) + 45 + + + + + Struggle (Detroit, MI) + 45 + + + + + Struggle Continues, The (London, England) + 45 + + + + + Struik, Dirk J. (reference: John Francis Bray) + 45 + + + + + Stucky, Mrs. Sol (reference: Victor Berger) + 45 + + + + + Student Federalist (Washington DC) + 45 + + + + + Student Mobilization Committee to End the War in Vietnam + 45 + + + + + Student Non-Violent Coordinating Committee (SNCC) + 45 + + + + + Student Peace Union Bulletin (New York) + 45 + + + + + Student Press Law Center (letter from ECW) + 45 + + + + + Students for a Democratic Society + 45 + + + + + Studies on the Left (New York) + 45 + + + + + Suagr, Theresa J. (reference: the Dearborn Colony) + 45 + + + + + Subversity (York, England) + 45 + + + + + Sugiarto, Stephanus E. (wants information about local gay + newspapers) + 45 + + + + + Sullivan, Mark (reference: Laurance Labadie; Benjamin Tucker) + 45 + + + + + Sullivan, William A. (reference: Bill Haywood; WFM; strikes in + copper mines of northern Michigan) + 45 + + + + + Summerfeld, Mary Ellen (reference: Black Panther newspaper) + 45 + + + + + Summers, Charles + 45 + + + + + Summers, Claude J. (re: his article on Maurice) + 45 + + + + + Sun Pub. Co. (Albuquerque, NM) + 45 + + + + + Sun (Detroit, Ann Arbor) + 45 + + + + + Sun Reporter (San Francisco) + 45 + + + + + Sundergeld, Hans (reference: Francisco Ferrer; Modern School) + 45 + + + + + Survival of American Indians Assn. (Tacoma, WA) + 45 + + + + + Survival Network Information Center (New Orleans, LA) + 45 + + + + + Suttles, Shirley (reference: IWW; Walker Smith; Centralia) + 45 + + + + + Sutton, Anthony C. (reference: Francis Tandy; Free Competition) + 45 + + + + + Sveriges Arbetares Centralorganisation (SAC) (Stockholm, Sweden) + 45 + + + + + Swados, Harvey (re: negative statement about the Labadie + Collection) + 45 + + + + + Swallow, Mrs. Marvin R. (reference: Spanish language anarchist + periodicals of the 1930s) + 45 + + + + + Swancara, Frank (re: purchase of issues of The Truth Seeker) + 45 + + + + + Swanson, Dorothy (Head Librarian, Tamiment Library) (reference: + Independent Socialist Mimeographica) + 45 + + + + + Swann Galleries, Inc. + 45 + + + + + Swarr, Amanda (reference: LGBT general info) + 45 + + + + + Swarts, Valerie R. (reference: women’s suffrage movement) + 45 + + + + + Swedish Pioneer Historical Quarterly (reference: portrait of Joe + Hill) + 45 + + + + + Sweeny (Oakville, Ontario) + 45 + + + + + Swinging Coq (contains documents of confiscation by U.S. for + obscenity) + 45 + + + + + Sykore, George and Jane + 45 + + + + + Sylvester & Orphanos (Booksellers) + 45 + + + + + Syndicalist Workers Federation (England) + 45 + + + + + Synergistic Press + 45 + + + + + Synthesis (San Pedro, CA) + 45 + + + + + Syracuse University Press (reference: photographs of Bill + Haywood, etc.) + 45 + + + + + Taconic Foundation, Inc. + 45 + + + + + Tactics (Arlington, VA) + 45 + + + + + Taft, Mrs. Philip (re: donation of correspondence between Inglis + and Philip Taft about Bray) + 45 + + + + + Take Over (Madison, WI) + 45 + + + + + Takeda, Yoshimi + 45 + + + + + Talalay, Kathy (reference: Phillippa Schuyler) + 45 + + + + + Talkin’ Union (re: donation of materials to LC) + 45 + + + + + Tamarkin, Stanley R. (reference: Rose Pastor Stokes) + 45 + + + + + Tamiment Institute Library (various correspondence 1961-1996) + 46 + + + + + Tampa Red & Black (Tampa, FL) + 46 + + + + + Tamtam (Vienna, Austria) (includes letter from ECW about LGBT + matters) + 46 + + + + + Tannen, Holly + 46 + + + + + Tap (New York, NY) + 46 + + + + + Tarver, John (reference: lumber industry in the Trans-Mississippi + South from 1880-1920) + 46 + + + + + Tasmanian Gay and Lesbian Rights Group (Tasmania, Australia) + 46 + + + + + Tax, Meredith (reference: radical women, 1890-1920) + 46 + + + + + Taylor, Mrs. Allen (offer to sell Helen Augur book with letters) + 46 + + + + + Taylor, Sue D. (reference: Ellis Island Anarchist Weekly) + 46 + + + + + Teamsters for a Democratic Union (Cleveland, OH) + 46 + + + + + Technocracy, Inc. (Rushland, PA) + 46 + + + + + Tekla, Tad (re: donation of materials to LC) + 46 + + + + + Temple University, Contemporary Culture Center + 46 + + + + + Tercer Sol Bookstore, El + 46 + + + + + Terra Lliure (Paris, France) + 46 + + + + + Terrorism and Political Violence (London) + 46 + + + + + Terrorism Research Centre (Cape Town, South Africa) (reference: + bombing of Army Math Research Center in Madison, WI, 1970) + 46 + + + + + Texas Observer (Austin, TX) + 46 + + + + + Theisen, James (reference: Ralph Chaplin poem, “Adam Revisits + Paradise”) + 46 + + + + + Third World Reports (London) + 46 + + + + + This Magazine (Toronto) + 46 + + + + + Thomas, Hulan G. (reference: Highlander Folk School) + 46 + + + + + Thomas, Joan (widow of Ammon Hennacy; many letters from ECW) + 46 + + + + + Thomas, Roy R. (reference: Louis Post) + 46 + + + + + Thompson, Arthur W. (reference: Russian Revolution of 1905) + 46 + + + + + Thompson, Lawrence S. (reference: Bloody Monday riot in + Louisville, KY in 1855) + 46 + + + + + Thompson, William + 46 + + + + + Thomson, George C. (re: his book The Quest for Truth about + Kennedy assassination) + 46 + + + + + Thorne, Ahrne (reference: Sacco & Vanzetti commemorative + flyer) + 46 + + + + + Thorne, Paula (re: donation of materials to LC; many letters + between her and ECW) + 46 + + + + + Thorsen, Niels (reference: Laurence Gronlund/Peter Lofgreen) + 46 + + + + + Thornton, Jerry + 46 + + + + + Thunder (Peoples Progressive Party) + 46 + + + + + Thunder and Lightning (National White American Party) (Olympia, + WA) + 46 + + + + + Thunderbolt, The (Marietta, GA) + 46 + + + + + Thurner, Arthur W. (reference: Michigan copper miner’s strike of + 1913-1914) + 46 + + + + + Thwin, Tun + 46 + + + + + Tierra y Libertad (Mexico) + 46 + + + + + Tietjen, Randall (reference: Clarence Darrow—includes publication + permission from Darrow family) + 46 + + + + + Timberlake, Charles E. (reference: American communes in Russia in + the 1920s and 30s) + 46 + + + + + Timberlane Press + 46 + + + + + Times Change Press + 46 + + + + + Timko, Mike (reference: Josiah Warren) + 46 + + + + + Tirabassi, Maddalena (reference: Italian-American anti-fascism, + 1918-1941) + 46 + + + + + Tobin, Michael (re: Hapotoc; donation of The Vision Our Time + Demands) + 46 + + + + + Todd, Alden (re: Laurence Todd’s memoir) + 46 + + + + + Tomato Publications + 46 + + + + + Tonelli, Lisa (reference: Barnet Braverman) + 46 + + + + + Tonkovich, Andrew (reference: American anarchism; de Cleyre; + Berkman; Brown) + 46 + + + + + Torch, The (Revolutionary Socialist League, Highland Park, MI) + 46 + + + + + Tormey, James J. (re: The Papers of Betty Gannett) + 47 + + + + + Toronto Anarchist Group + 47 + + + + + Toronto Libertarian and Anarchist Group + 47 + + + + + Tortorelli, Federico (reference: Josiah Warren; Stephen Pearl + Andrews) + 47 + + + + + Touzot, Jean (jobber) + 47 + + + + + Towanda Public Library (reference: want to borrow specific IWW + and WFM materials) + 47 + + + + + Toy, Eckard V. Jr. (reference: KKK; fascist groups; Silver + Shirts; neo-Nazis; American Bund, etc.) + 47 + + + + + Trans-Love Energies (Detroit, MI) + 47 + + + + + Transformation (Toronto, Ontario) + 47 + + + + + Transition (Accra, Ghana) + 47 + + + + + Trautmann, Frederick (reference: Johann Most) + 47 + + + + + Travailleurs Deportes et Refractaires (Brussels) + 47 + + + + + Tribune (London) + 47 + + + + + Tri-Continental Information Center (New York) + 47 + + + + + Tri-Continental Magazine (Havana, Cuba) + 47 + + + + + Tripp, Anne H. (reference: Agnes Inglis; IWW) + 47 + + + + + Tripp, Paivi (reference: anarchist movement in Chicago in the + 1880s; Haymarket) + 47 + + + + + Trud! (New Jersey) + 47 + + + + + Trueblood, Chris ( The Gay Marxist- Manchester, England; includes + info about gay groups in U.S.) + 47 + + + + + Truth (Oak Park, IL) (Trotskyists) + 47 + + + + + Truth, The (Danbury, NH) + 47 + + + + + Truth Seeker, The (San Diego, CA) + 47 + + + + + Tsang, Daniel (LGBT serials in the Labadie Collection) + 47 + + + + + Tsusuki, Chughichi (reference: Eleanor and Edward Aveling-letter + missing from LC) + 47 + + + + + Tuchman, Arleen (reference: Dr. Marie Elizabeth Zakrzewska; Karl + Heinzen) + 47 + + + + + Tucker, Tommy (reference: 1912 Lawrence textile strike) + 47 + + + + + Tugas, Patrica (Ellis) (re: CSPAN program on LC) + 47 + + + + + Tulane University (re: Covington Hall; “Labor Struggles in the + Deep South”) + 47 + + + + + Turbow, Will (former LC student assistant) + 47 + + + + + Turnbull, Richard C. (reference: 1907 IWW strike in Portland, OR) + 47 + + + + + Turner, Jean-Rae (reference: IWW photos for book on Passaic + County, NJ) + 47 + + + + + Turning Point (Brooklyn, NY) + 47 + + + + + Tuttle, Carlson (re: loaning to LC of Lawrence Gracia manuscripts + – not found in MIRLYN) + 47 + + + + + Twavay (Dominica) + 47 + + + + + Tyler, Robert (reference: technocracy movement; IWW; Howard + Scott) + 47 + + + + + Tyson, David B. (reference: Misc. microfilm #2 containing Fair + Play, Firebrand, Liberty Library) + 47 + + + + + UFAHAMU (Los Angeles, CA) + 47 + + + + + Ulrick, John (reference: wants political cartoons digitized and + put online for his web page) + 47 + + + + + Uhuru (Montreal, Quebec) + 47 + + + + + Ukranian-American (New York, NY) + 47 + + + + + Ukranian Quarterly (New York, NY) + 47 + + + + + Umanita Nova (Rome, Italy) + 47 + + + + + Umbra (New York, NY) + 47 + + + + + Umbral (Paris, France) + 47 + + + + + Uncommon Books + 47 + + + + + Underground (New York, NY) + 47 + + + + + Underground Press Syndicate + 47 + + + + + Union Democracy in Action (New York, NY) + 47 + + + + + Union des Groupes Anarchistes-Communistes (Paris, France) + 47 + + + + + Union W.A.G.E. (Berkeley, CA) + 47 + + + + + United Federation of Teachers + 47 + + + + + United Front Press, Inc. (San Francisco, CA) + 47 + + + + + United Klans of America (Tuscaloosa, Alabama) + 47 + + + + + United Mine Workers of America (reference: 100th anniversary + celebration) + 47 + + + + + United States Information Services (USIS) (LC request for Grenada + publications) + 47 + + + + + U.S. President’s Committee on Migratory Labor (LC request for + Migratory Labor Notes) + 47 + + + + + United World Federalists + 47 + + + + + Unity (San Francisco, CA) (League of revolutionary Struggle, + M-L) + 47 + + + + + Unity and Struggle (Newark, NJ) + 47 + + + + + University Centers for Rational Alternatives, Inc. + 47 + + + + + University Microfilms + 47 + + + + + University of California, Berkeley, Library (re: starting a + social protest research collection) + 47 + + + + + University of California, Berkeley, Regional Oral History Office + 47 + + + + + University of California, Los Angeles, Institute for Social + Science Research (re: starting an immigration research collection) + 47 + + + + + University of California, Los Angeles, Library (re: order for + copy of Police Malpractice and the Watts Riot) + 47 + + + + + University of California, San Diego (reference: Lois Orr Papers; + Spanish Civil War materials) + 47 + + + + + University of Cincinnati (John J. and James B. McNamara Papers) + 47 + + + + + University of Connecticut (re: Collectors Network) + 47 + + + + + University of Illinois, Institute of Labor and Industrial + Relations + 47 + + + + + University of Illinois Library (letter to Harriet Jameson) + 47 + + + + + University of Kansas, Wilcox Collection of Contemporary Political + Movements + 47 + + + + + University of Michigan, Institute for Social Research (re: + donation of French Parliamentary Surveys) + 47 + + + + + University of Michigan Language Laboratory (re: converting audio + tapes) + 47 + + + + + University of Minnesota (re: donation of right wing materials) + 47 + + + + + University of Minnesota, Immigration History Research Center + 47 + + + + + University of Missouri, Labor Education Program (reference: list + of active labor history archives) + 47 + + + + + University of Saskatchewan (re: request of Edmund SantaVicca’s + bibliography) + 47 + + + + + University of Utah Press (reference: biography of Joe Hill; need + permissions) + 47 + + + + + University of Washington Libraries + 47 + + + + + University of Wisconsin Library, Green Bay (reference: Leon + Kramer) + 47 + + + + + University of Wisconsin Library, Madison + 47 + + + + + University Place Book Shop + 47 + + + + + Unveiling Cuba (New York, NY) (letters from ECW re: Cuba and + Castro) + 47 + + + + + Up Against the Wall Street Journal + 47 + + + + + Up From the Bottom (San Diego, CA) + 47 + + + + + Up from Under (New York, NY) + 47 + + + + + Update (San Diego) + 47 + + + + + Upfront America (Houston, TX) + 47 + + + + + UPSurge (Louisville, KY) + 47 + + + + + Urban Guerrilla, The (TUG) (San Francisco, CA) + 48 + + + + + U.S.A. Magazine (New York, NY) + 48 + + + + + USSF (United States Servicemen’s Fund) (re: subscription to About + Face) + 48 + + + + + Utas, I. L. (re: donation of materials) + 48 + + + + + V.E.P. News (Voter Education Project) + 48 + + + + + V.O.H. (Voice of Hope Publishing) + 48 + + + + + Valk, Annie (reference: lesbians and gays in the post WWII + period) + 48 + + + + + Vallvé, Frederic (re: letter of thanks for assistance with + research) + 48 + + + + + Vancouver Women’s Caucus + 48 + + + + + Van den Dungen, Peter (reference: pacifist literature) + 48 + + + + + Vandersypen, Karla + 48 + + + + + Vandervort, Bruce (reference: Victor Griffuelhes; CGT; post-WWI + anarcho-syndicalist movements) + 48 + + + + + Van Dyke, Henry (1 - 7 of 12 folders) + 48 + + + + + Van Dyke, Henry (8 - 12 of 12 folders) + 49 + + + + + Vanguard (London) + 49 + + + + + Vanguard Books (Chicago) + 49 + + + + + Van Ingen, Patricia (re: sale of books to LC) + 49 + + + + + Van Liew, Donald + 49 + + + + + Van Notten, Eleanore (reference: Harlem Renaissance; Wallace + Thurman) + 49 + + + + + Van Vechten, Carl + 49 + + + + + Van Wienen, Mark (reference: American protest poetry of WWI—no + written reply) + 49 + + + + + Vash, Ernest + 49 + + + + + Vector Magazine (San Francisco, CA) + 49 + + + + + Vega-Byrnes, Thomas + 49 + + + + + Veleker, Wilma Haywood (reference: William D. Haywood) + 49 + + + + + Velvet Fist, The (Toronto, Canada) + 49 + + + + + Venable, Alan (reference: Homestead Strike) + 49 + + + + + Venceremos Brigade (New York) + 49 + + + + + Venning, Philip (reference: Charlotte Wilson) + 49 + + + + + Ventana, Gay (Bogotá, Colombia) + 49 + + + + + Ventura, Gracia (re: thank you note from ECW for donation to LC) + 49 + + + + + Verlag Detlev Auverman KG (reference: Fanal; Rundbrief) + 49 + + + + + Vetsel, Judy + 49 + + + + + Veysey, Laurence R. (reference: anarchism; Ferrer Modern School; + Stelton) + 49 + + + + + Vial, Rebecca (reference: Kate Bradford Stockton) + 49 + + + + + Viet/nam Bulletinen (Stockholm, Sweden) + 49 + + + + + Vietnam International, see International Conf. for Disarmament + and Peace + 49 + + + + + Vilanova, Antonio (reference: underground activities of Spanish + political refugees during WWII) + 49 + + + + + Village Voice, The (New York) + 49 + + + + + Vitó (Curacao, West Indies) + 49 + + + + + Viva Eu (Sao Paulo, Brazil) + 49 + + + + + Vivancos, Eduardo (re: letter from ECW—no reply) + 49 + + + + + Vocations for Social Change + 49 + + + + + Voelker, Don (reference: Wadsworth Manufacturing Co. strike of + 1919) + 49 + + + + + Vogel, Virgil J. (re: Tad Tekla) + 50 + + + + + Voice of Liberty (Decatur, Georgia) + 50 + + + + + Voice of the Black Community (Decatur, Illinois) + 50 + + + + + Voice of the Women’s Liberation Movement (Chicago) + 50 + + + + + Voland, Joseph F. (reference: IWW) + 50 + + + + + Von Holdt, Bob (re: ECW inquiry about The Movement) + 50 + + + + + Voss, Edward (re: donations to LC) + 50 + + + + + Voz Chicana, La (San Juan, Texas) + 50 + + + + + Voz Proletaria (Buenos Aires, Argentina) + 50 + + + + + Voz Socialista (Caracas, Venezuela) + 50 + + + + + Vyverberg, Henry (5 folders) + 50 + + + + + Wachsberger, Ken + 50 + + + + + Wade, Harry (reference: John Francis Bray) + 50 + + + + + Wagman, Frederick (re: letter from ECW about Elizabeth Gurley + Flynn) + 50 + + + + + Wagner, Janet (reference: Josiah Warren; Stephen Pearl Andrews; + Modern Times) + 50 + + + + + Wagner, Steve (re: publisher of Appeal to Reason and Seattle + Sexual Freedom League Bulletin) + 50 + + + + + Wald, Alan + 50 + + + + + Walden, Eleanor (reference: Armistice Day; Centralia, Wash.) + 50 + + + + + Walk a Crooked Mile Books (reference: T.E. Lawrence letter to + James Handley) + 50 + + + + + Walker, Bill/IALGAL (reference: LGBT publications and general + inquiry about LC) + 50 + + + + + Wallach, Bill (re: LC grant proposal to NEH) + 50 + + + + + Walsh, James (re: bibliography of SDS publications) + 50 + + + + + Walsh, James P. (reference: Vincent Hallinan) + 50 + + + + + Walter, Karl & Bertha (re: ECW request for Karl’s book, Many + Maternities) + 50 + + + + + Walter, Nicolas (reference: Kropotkin’s Paroles d’un Révolté ; + Alarm) + 50 + + + + + Walter, Scott (reference : free school movement of 1960s-70s; + Youth Liberation, etc.) + 50 + + + + + Wanderer, The (St. Paul, MN) + 50 + + + + + WAP-World Information Exchange (LC letter requesting materials) + 50 + + + + + War and Peace Foundation (reference: request for exhibit + materials; Rosika Schwimmer) + 50 + + + + + War/Peace Report (New York, NY) + 50 + + + + + War Resisters’ International (London, England) + 50 + + + + + War Resister League (New York, NY) + 50 + + + + + Ward, Fritz (reference: Laurance Labadie) + 50 + + + + + Warfield, Gregory (reference: extreme right wing press; KKK; + American Nazi Party; John Birch; etc.) + 50 + + + + + Warford, William S., Rev. (reference: Joe Hill) + 50 + + + + + Warren, Lyman (re: loan—and return of [Josiah] Warren family + bible and Winships Historical Brighton) + 50 + + + + + Warsaw Voice + 51 + + + + + Was Tun (West Germany) + 51 + + + + + Washington Blade + 51 + + + + + Washington (State) Dept. of Corrections (re: ECW inquiry of Carl + Harp) + 51 + + + + + Washington State Historical Society (reference: Utopian colony + newspapers; Ralph Chaplin) + 51 + + + + + Washington State Library (reference: Utopian colony newspapers; + Lois Waisbrooker; Home colony) + 51 + + + + + Wasserman, Harvey (reference: The Masses; Mother Earth) + 51 + + + + + Water Tunnel (State College, PA) + 51 + + + + + Watner, Carl (reference: various anarchist topics) + 51 + + + + + Watson, David + 51 + + + + + Watson, William (reference: to Curator William Barkley; IWW; + Ralph Chaplin’s poems) + 51 + + + + + Watts, Theodore (re: indexing of New Masses; Anvil; Liberator, + etc. also some letters from ECW describing health issues) + 51 + + + + + Way, Steward (reference: Rebel Song Book; Agnes Inglis; Michigan + Socialist House—1930s) + 51 + + + + + Wayne State University, African American Educational Archives + (re: survey of oral history sources) + 51 + + + + + Wayne State University, German-American Bibliographic Guide + Project (re: survey of materials) + 51 + + + + + Wayne State University, Reuther Library + 51 + + + + + Wayne State University, Purdy-Kresge Library (loan of materials + to LC for exhibit) + 51 + + + + + W.E.B. Dubois Clubs of America + 51 + + + + + Weaver, Mollly (re: Great Labor Arts Exchange) + 51 + + + + + Weber, David E. (reference: James W. Ford; Negro Worker) + 51 + + + + + Weber, David M. (reference: New Left; SDS;Tom Hayden; Port Huron + Statement) + 51 + + + + + Weber, Edward C. (2 folders) + 51 + + + + + Weber, Joanne + 51 + + + + + Weber, S. + 51 + + + + + Webster, J. R. (reference: anarchist publications 1925-1936) + 51 + + + + + Webster, Paul M. (reference: permission for copy of Augustin + Souchy manuscript) + 51 + + + + + Weekly Crusader (Tulsa, OK) + 51 + + + + + Weihs, Ron (reference: writing play about IWW; Don Stewart) + 51 + + + + + Weik, Mrs. Mary Hays (re: sending Window on the World to LC) + 51 + + + + + Weine, Seth Joseph (reference: looking for rare pamphlet: Sodom + in Union Square) + 51 + + + + + Weiner, Lynn (reference: wants to make a poster of Emma Goldman + photograph) + 51 + + + + + Weinrich, Peter (reference: bibliography of radical movements in + Canada 1870-1975) + 51 + + + + + Weintraub, Hy (reference: Andrew Furuseth) + 51 + + + + + Weir, Stan (reference: Longshore Jobs Defense Committee; Bayard + Rustin; Mike Harrington) + 51 + + + + + Weis, James A. (reference: Gerald L.K. Smith) + 51 + + + + + Weisberg, Harold (re: sale of books about JFK assassination) + 51 + + + + + Weisert, John J. (reference: Karl Heinzen; Janus; Der Pionier) + 51 + + + + + Weissborn, Henry (re: response to LC inquiry from IWW, Houston, + TX branch) + 51 + + + + + Weissman, Gordy + 51 + + + + + Weller, Ken (re: birth of socialist movement 1880-1900; Laurence + Gronlund) + 52 + + + + + Wellman, Saul (re: donation of his pamphlet collection on Spanish + Civil War + 52 + + + + + Wells, Ruth L. (re: worked in LC with Agnes Inglis; donated + scrapbook and other materials) + 52 + + + + + Wellesley Historical Society (re: Denton family papers) + 52 + + + + + Weltner, Charles L., State Rep. (re: ECW request for KKK + materials) + 52 + + + + + Wendt, Matthias (reference: J. William Lloyd) + 52 + + + + + Wenzer, Kenneth C. (reference: Alexander Berkman) + 52 + + + + + Werkheiser, Don (re: donation of his papers to LC) + 52 + + + + + Werly, John M. (reference: American right-wing movements; William + Dudley Pelley) + 52 + + + + + Werntz, Ted (reference: American Labor Union; Herman Richter) + 52 + + + + + West End Catholic Worker (re: Mutual Aid) + 52 + + + + + Westacott, Jane (re: thank you for tour of LC) + 52 + + + + + Western Destiny (Los Angeles, CA) + 52 + + + + + Western Maritime Press + 52 + + + + + Western Review Institute + 52 + + + + + Western Socialist (Detroit, MI) + 52 + + + + + Western Voice (Vancouver, BC) + 52 + + + + + Wexler, Alice R. (reference: Emma Goldman; Max Baginski) + 52 + + + + + Wheatley, Robert H. (re: access to his “The Value of the Labadie + Collection of the University of Michigan to the Study of the Spanish + Civil War”) + 52 + + + + + Wheeler, Bernard L. (re: seeking a copy of Free Vistas) + 52 + + + + + Whitcomb, John M. (reference: IWW; Mathew Schmidt; Ernest + Unterman; Chicago trial) + 52 + + + + + White, Lula M. (reference: IWW; Lawrence strike 1912) + 52 + + + + + White, Scoop (reference: International Typographical Union + records) + 52 + + + + + White American (Birmingham, AL) + 52 + + + + + White Nationalist Newsletter (Asheville, NC) + 52 + + + + + White Panther Party (letter signed by Genie Plamondon) + 52 + + + + + Whitehead, Fred (includes letter of support from ECW) + 52 + + + + + Whitesell, David (former employee) + 52 + + + + + Who Killed Kennedy Committee (London) + 52 + + + + + Wicklund, Alfred (reference: The Socialist Voice-Oakland, CA) + 52 + + + + + Wiethoff, William E. (reference: Elizabeth Gurley Flynn; + Patterson Strike) + 52 + + + + + Wilcock, John (re: his publication Other Scenes) + 52 + + + + + Wilcox, Laird (re: his Directory of the American Right) + 52 + + + + + Wilder, Una (re: Maxwell Reade; E. Haldeman-Julius; Dillingham + collection of LBBs) + 52 + + + + + Will, Thomas E. (reference: a young person looking for books + about anarchism) + 52 + + + + + Willard, Tim (reference: Toledo Auto Lite Strike of 1934) + 52 + + + + + William Winters Comments (Los Angeles, CA) (re: exchange of + letters with Nancy Flowers) + 52 + + + + + Williams, Joyce (reference: Victoria Woodhull; Josiah Warren) + 52 + + + + + Wilmington 10 Defense Committee + 52 + + + + + Wilson, Ann Bentley (reference: IWW; Paterson strike of 1913) + 52 + + + + + Wiltz, John Edward (reference: 19th century American anarchism) + 52 + + + + + Win Magazine (New York) + 52 + + + + + Wind and Chaff (New York) + 52 + + + + + Winkelmann, Edward (reference: Johann Most) + 52 + + + + + Winslow, Gordon W. (reference: Cuban newspapers Libertad and + Tiempo) + 52 + + + + + Winters, Donald E., Jr. (reference: IWW; American religion in the + Progressive Era; Minnesota’s Iron Range) + 52 + + + + + Wisconsin Gas Co. (reference: articles about how to steal gas in + YIPL and TAP) + 52 + + + + + Wisconsin State Historical Society + 52 + + + + + Wisconsin Women Library Workers (reference: photo of Agnes Inglis + for their postcard series) + 52 + + + + + Wise, Judith (re: suggests radical publications for LC— Arm the + Spirit, Wildcat, Clash) + 52 + + + + + Wisenberg, Sandi + 52 + + + + + Wisotsky, Isidore (re: autobiography sent to LC) + 52 + + + + + Wixson, Douglas (reference: little magazine and proletarian + publications of the 1920s) + 52 + + + + + Wobbly (Berkeley, CA) + 52 + + + + + Wolf, Sam (reference: British and French anarchist movements) + 52 + + + + + Women’s History Research Center (Berkeley, CA) + 52 + + + + + Woman’s World (New York, NY) + 52 + + + + + Women: A Journal of Liberation (Baltimore, MD) + 52 + + + + + Women Now (Supersedes Socialist Women) (Nottingham, England) + 52 + + + + + Wood Heat Quarterly (Wolcott, VT) + 52 + + + + + Woodford, Arthur (reference: photos of Joseph Labadie and Richard + Trevellick) + 52 + + + + + Woodstock Anarchist Party (Sydney, Australia) + 52 + + + + + Woodworth, Fred + 52 + + + + + Worcester Punch (Worcester, MA) + 52 + + + + + Wordsworth, Gerard + 52 + + + + + Worker, The (New York, NY) + 52 + + + + + Worker’s Democracy (St. Louis, MO) (quotes Lenin regarding + librarians) + 52 + + + + + Workers News Service (Ewa Beach, HI) + 52 + + + + + Workers Press (London, England) + 53 + + + + + Workers Solidarity Movement (Dublin, Ireland) + 53 + + + + + Workers Vanguard (Toronto, Ontario) + 53 + + + + + Workers Viewpoint (New York, NY) + 53 + + + + + Workers World (New York, NY) + 53 + + + + + Workforce (see also: Vocations for Social Change) + 53 + + + + + Workmen’s Circle, The (New York) + 53 + + + + + World Association of World Federalists + 53 + + + + + World Federalist Youth, USA + 53 + + + + + World Prophetic Ministry + 53 + + + + + World Revolution (Progressive Labor Party) + 53 + + + + + World to Win (San Francisco, CA) + 53 + + + + + Wortman, Roy (reference: IWW; Paul Sebastyen; Toledo 1919 strike; + E.S.Rose) + 53 + + + + + Wreszin, Michael (reference: Dwight MacDonald; B.J. Widdick) + 53 + + + + + Wuest, Florence + 53 + + + + + Wunderlich, Roger (reference: Josiah Warren) + 53 + + + + + Wutke, Eugene R. (reference: Technical Alliance) + 53 + + + + + Wye, Christopher G. (reference: The Negro in Cleveland during + Depression and War years) + 53 + + + + + Wyman, Mark (reference: Western Federation of Miners + 53 + + + + + Xerox University Microfilms (re: microfilming of The Black + Panther and Los Angeles Free Press) + 53 + + + + + Yanosky, Ronald (reference: Henry George) + 53 + + + + + Yashima, Yukari (reference: Spanish Civil War) + 53 + + + + + Yaswan, Gordon + 53 + + + + + Yearley, C. K. (reference: Richard Trevellick; Peter Kropotkin) + 53 + + + + + Yelensky, Boris (re: donation of Sunrise Cooperative papers) + 53 + + + + + Yoffe, Mark (re: setting up international counterculture archive + at GWU) + 53 + + + + + Young, Allen (re: wrote book about treatment of gays in Cuba) + 53 + + + + + Young, Gordon + 53 + + + + + Young, John (reference: seeking info on grandfather’s union + membership) + 53 + + + + + Young Americans for Freedom + 53 + + + + + Young Guard (London) + 53 + + + + + Young Lords’ Party + 53 + + + + + Young People’s Socialist League + 53 + + + + + Young Socialist (Ceylon, Sri Lanka) + 53 + + + + + Young Socialist (New York) + 53 + + + + + Young Socialist (Toronto) + 53 + + + + + Young Socialist Forum (New York) + 53 + + + + + Youth Action News (Alexandria, VA) + 53 + + + + + Youth Against War and Fascism (New York) + 53 + + + + + Youth Liberation (Ann Arbor, MI) + 53 + + + + + Zabawa, Bruce M. + 53 + + + + + Zakrzewski, Karl (reference: Spanish Civil War) + 53 + + + + + Zane, David + 53 + + + + + Zanger, Martin (reference: Upton Sinclair’s role in 1923 IWW + maritime strike in San Pedro, CA) + 53 + + + + + Zanjani, Sally S. (reference: Nevada Socialist Party 1890-1920) + 53 + + + + + Zapata Books (reference: various U.S. left wing publications, + 1940s-1970s) + 53 + + + + + Zavala, Iris M. (reference: Spanish Thought in the 18th and 19th + centuries) + 53 + + + + + Zero Population Growth + 53 + + + + + Zilber, Jacob (reference: IWW trials of Thomas Tracy and Britt + Smith) + 53 + + + + + Zimbabwe Review + 53 + + + + + Zimmerman, Roy W. (reference: Josiah Warren) + 53 + + + + + Zinn, Roslyn (reference: Women political prisoners of 19th and + 20th centuries) + 53 + + + + + Zonderman, David A. (reference: Karl Heinzen, Ezra Heywood, + Josiah Warren) + 53 + + + + + Zubal, John T. (book dealer) + 53 + + + + + Zube, John (contains microfiche) + 53 + + + + + Zukowski, Jenny (thank you to ECW) + 53 + + + + + Zuleta Ruiz, Leon/Movimento de Liberacion Homosexual (Colombia) + 53 + + + + + Zweiback, Timothy (reference: wants microfilm of “The Detroit + Labor press 1839-1899”) + 53 + + + + + Zwieg, Arnulf (personal friend of ECW) ( 2 folders) + 53 + + + + + Unidentified correspondents + 54 + + + + + + Realia + + + + Framed commendations + 55 (o.s.) + + + + +
    +
    diff --git a/spec/fixtures/bhl/umich-bhl-032.xml b/spec/fixtures/bhl/umich-bhl-032.xml new file mode 100755 index 0000000..ea93c74 --- /dev/null +++ b/spec/fixtures/bhl/umich-bhl-032.xml @@ -0,0 +1,105 @@ + + +umich-bhl-032Finding aid for Women in Science and Engineering Program (University of Michigan) recordsFinding aid created by Michelle Sweetser, August 2002; Steven Gentry, May 2020.Bentley Historical Library

    April 2005

    This finding aid was produced using ArchivesSpace on 2020-05-29 12:23:24 -0400.The finding aid is written in EnglishDescribing Archives: A Content Standard2005-03-28Original encoding from Word 6.0 file using Word macros and Xmetal.2012-12-12Web site and oral histories added.2016-11-21Updated Conditions Governing Use Note.2020-05-20Added 2018 and 2020 accessions (172440 and 171585).
    Bentley Historical Library University of MichiganFinding aid for Women in Science and Engineering Program (University of Michigan) recordsFinding aid created by Michelle Sweetser, August 2002; Steven Gentry, May 2020. + + + + Bentley Historical Library + + + Women in Science and Engineering Program (University of Michigan) records 1888-1928 + 1888-1889 + + University of Michigan. Women in Science and Engineering Program. + + 032 Bimu 2 + + 3.0 linear feet + + + 79.7 GB (online) + + + 1 archived websites + + 1974-1996 + 2004-2019 + The material is in English. + Established in 1980 as part of the Center for Continuing Education of Women (now CEW+), the Women in Science and Engineering Program (WISE) has sought to increase the number of women who major in and seek advanced degrees in mathematics, science and technical fields. WISE has offered internships, resource guides, programming, and the Warner-Lambert lecture series towards this goal. In addition to supporting women at the collegiate level, WISE offers a variety of K-12 programs for students of any gender identity, although they are primarily aimed at women and girls. + +Records include correspondence; physical and digital materials related to programming efforts, including the Warner-Lambert lecture series and Girls in Science and Engineering summer camp; funding proposals; research papers and talks by WISE staff members; and clippings and documents related to the establishment of WISE. Planning files for the Girls and Science and Technology (GASAT) IV Conference 1987 are included as well as digital transcripts and recordings from an oral history project that sought to preserve the history of University of Michigan alumnae in the sciences and engineering. + + +

    The record group (donor no. 9222) was received from the unit in June 2002. Additional accessions were received in March 2018 and January 2020.

    +

    Periodic additions to the records are expected.

    +

    Restrictions apply; see item listing for details.

    Access to select audiovisual content in the Programming series is restricted to the reading room of the Bentley Historical Library.

    +

    Copyright is held by the Regents of the University of Michigan but the collection may contain third-party materials for which copyright is not held. Patrons are responsible for determining the appropriate use or reuse of materials.

    +

    [item], folder, box, Women in Science and Engineering Program (University of Michigan) records, Bentley Historical Library, University of Michigan.

    [item], [URL], Women in Science and Engineering Program (University of Michigan) records, Bentley Historical Library, University of Michigan

    +

    +
    +

    In 1980, the University of Michigan established the Women in Science Program as part of the Center for Continuing Education of Women (now Center for Education of Women+, or CEW+), with Dr. Barbara Sloat as the program's first director. The program has sought over the years to increase the number of women and girls who major and seek advanced degrees in mathematics, science, and technical fields, particularly via programming efforts which are open to students of any gender identity. In 1994, the program changed its name to Women in Science and Engineering (WISE) to reflect support for women in science as well as engineering. While WISE had always supported women in engineering (made apparent by many early programming endeavors), the common interpretation of "science" at the time excluded engineering. The name change was designed to bridge the gap in terminology.

    In its initial years, the program was funded by joint contributions from the College of Literature, Science, and the Arts; the College of Engineering; the Medical School; the Horace H. Rackham School of Graduate Studies; and the Office of the Vice President for Academic Affairs. In the two decades since its inception, WISE applied for and received considerable funds from outside sources while continuing to work under the auspices of CEW. Today, WISE is an independent program supported by the College of Engineering; the College of Literature, Sciences and Arts; and the Office of the Provost. The director of WISE reports to the Vice Provost for Engaged Learning.

    WISE has supported undergraduate and graduate women through a variety of programs, including workshops, roundtable discussions, "tray lunches," and conferences. Prominent in the early years was the Women in Science Workshop, offered each fall for incoming women in both the College of Literature, Science, and the Arts and College of Engineering who were interested in science and mathematics-related majors and careers. The workshop afforded students the opportunity to meet female scientists and obtain information about science and engineering programs at the university.

    Of particular significance is the Warner-Lambert Lecture Series, begun in 1981 with a gift of $15,000. This gift from the Warner-Lambert Foundation allowed WISE to co-sponsor, with departments across campus, lectures by visiting women scientists as well as sponsor university-wide lectures by outstanding women scientists. Faculty members across campus were invited to submit nominations for speakers, which were then reviewed by a faculty advisory committee. Well over 100 women scientists were brought to campus as a direct result of this program.

    In addition to supporting internships in the sciences for undergraduate women in cooperation with the College of Literature, Science, and the Arts, WISE and University Housing established the Women in Science and Engineering Residence Program (WISE RP) in 1993. Designed for first- and second-year students who are majoring in science, technology, engineering, mathematics, pre-health, nursing or kinesiology, WISE RP supports WISE's mission by developing a community learners via study groups, peer mentoring, coursework, and events. WISE has also provided counseling and advising services, as well as resource guides, for students.

    WISE has also sought from early on to encourage girls and minorities in K-12 schools to take an interest in science. With the support of a Sigma Xi pre-college education grant, WISE sponsored two "Science Day on Campus" events in 1988 and brought local high school girls to campus to get career information and tours of the laboratories of female scientists. Among the other pre-college programs supported by WISE were Summerscience for Girls and high school internships. Summerscience, first held in 1989 with funding from the Young Scholars program of the National Science Foundation, brought nearly 50 girls to campus to do hands-on projects in the sciences. Additional NASA funding in the second year allowed the program to expand to 75 students. In 1992, a joint project by Warner-Lambert/Parke-Davis and the Women in Science Program received federal funding from the National Institute of Health Science Education Award Program. The joint project -- "Science for Life: A Summer Program for High School Women" -- placed twenty high school women between their junior and senior years in research laboratories for a six-week period.

    Other K-12 programs that WISE has offered have included the Girls in Science and Engineering (GISE) Camp, a summer camp that focused on STEM topics (e.g. chemistry, engineering, robotics, human genetics, and physics) and the Southeast Michigan Science Fair, which is sponsored by the University of Michigan and Washtenaw Community College. WISE has also been involved in the FIRST LEGO League, an international program designed to introduce pre-college students to STEM topics via a robotics competition. WISE offered a variety of K-12 summer programs in 2020, including the GISE Camp, Python Bootcamp, Girls in Music and Technology (GiMaT) summer commuter program, and Electrify Tech Camp.

    WISE staff have also conducted a number of scientific research projects on campus and made themselves available to give papers and talks at local, state, and national events and conferences. The program has also been involved in international efforts encouraging girls in scientific fields, as exemplified by WISE staff members hosting the 1987 Girls and Science and Technology (GASAT) IV conference in Ann Arbor. Founded in 1979 by researchers in Northern Europe who were concerned with the participation of girls and women in scientific fields, GASAT held international conferences bringing individuals around the world together to discuss their work on issues relating to girls and science.

    WISE, along with its programs and staff, has received several awards over the years, including a National Science Foundation Recognition Award for the Integration of Research and Education (1997), Presidential Award for Excellence in Science, Mathematics, and Engineering Mentoring (2000), and Maria Mitchell Women in Science Award (presented to WISE's second Director, Cinda-Sue Davis, in 2000).

    After receiving a grant from the Alumnae Council Birthday Greeting Committee in 2004, the Women in Science and Engineering Program, under the direction of Dr. Cinda-Sue Davis, initiated an oral history project to collect and preserve the oral histories of University of Michigan alumnae in the sciences and engineering. Interview subjects were selected based on their integrity, social consciousness, and citizenship, and not simply on their technical ability or accomplishments. Furthermore, the oral histories focus on the whole interview subject, not simply her experience in a technological field. Interview subjects spoke candidly about their hopes, fears, regrets, and triumphs in all aspects of their lives: education, career, marriage, family, and retirement. They have discussed at length how their treatment and experiences led to, sidetracked, or thwarted their attempts as scientists, engineers, or technicians. The Women's History in Michigan Science and Engineering Oral History Project completed its interviews in 2007. The project resulted in a website (which provided this description) as well as audio recordings and transcripts.

    + Directors of the Women in Science and Engineering Program + + 1980-1984 + + Barbara Sloat + + + + 1984-2019 + + Cinda-Sue Davis + + + + 2019- + + Melissa Gross + + + +
    +

    The WISE records (3.0 linear feet and digital files (online)) reflect the changing approaches that WISE took to encourage and support women in the sciences and engineering, as well as the changing organizational structure of the program. Specific formats include correspondence, digital photographs and videos, grant applications and program proposals, oral histories, research studies and talks, publications, reports, web archives, and background material on women and sciences at the University of Michigan. Prominently represented in the collection are WISE's various programming efforts as well as the Women's History in Michigan Science and Engineering Oral History Project.

    +

    Arranged in 7 series: 1. Administrative. 2. Outreach. 3. Programming. 4. Research. 5. Girls and Science and Technology (GASAT) IV. 6. Women's History in Michigan Science and Engineering Oral History Project 7. Archived Website.

    + +

    + +

    + Engineering -- Study and teaching. + Human genetics -- Study and teaching. + Robotics -- Study and teaching. + Science -- Study and teaching. + Women college students -- Michigan -- Ann Arbor. + Women engineers. + Women in engineering. + Women in science. + Women scientists. + Digital file formats. + Oral histories (document genres). + Photographs. + Web sites. + Ajzenberg-Selove, Fay, 1926- + Buckley, Paulita. + Carter, Barbara (Barbara Quinn) + Connable, Tenho. + FIRST Robotics Competition. + Frank, Margaret (Margaret Barson) + Holter, Francis. + Kelly, Marilee. + Natvig, Anne. + Patterson, Dorothy (Dorothy Lewis) + Pilchard, Patricia. + Shumway, Sally. + Sloat, Barbara F. + University of Michigan -- Camps. + University of Michigan. Women in Science and Engineering Program. + London, Ted, 1963- +
    + Administrative1.25 linear feet1977-1996

    The Administrative series (1.25 linear feet) is an alphabetically arranged sequence providing insight into the day-to-day operation and structure of the WISE program. Records describe the history and creation of the WISE program, and also include correspondence and documents relating to early funding arrangements. Also of note are position papers and listings of program activities and accomplishments that describe the program's early endeavors and justify its purpose and existence.

    Background/HistoryAdvisory Committee19801984-19851Funding Arrangements19811Grade Point Average Comparisons19811Internship Committee19801Minority Engineering Program Office ReportJuly 19791News Clippings1Newsletters1981-1982198419861Position Papers1980-19821Program Activities and Accomplishments1980-19841987-19881Science and Technology Workforce19891Women Faculty Instructional Rankings19801Women in Academic Science Discussion Group19901Women in Science and Technology Equal Opportunity Act19801Women in Science Brochures, ca.1980-19901Women's Caucus Efforts1977-19791Correspondence1980-19811198312 folders198412 folders198512 folders198612 folders198712 folders198812 folders198912 folders199012 folders199122 folders1992219932199421995219962FundingDevelopment Office Contact198119832IBM Proposal for Internships1985-19872Shell Funds for Women's Careers1982-19862Solicitations19912MiscellaneousKing/Chavez/Parks College Day Program1988-19892Science Development Council1988-19892
    Outreach1980-1992

    The Outreach series (0.25 linear feet) includes a number of papers and talks given by WISE staff at various conferences, workshops, and educational group meetings. These records provide snapshots of the WISE program as well as more personal reflections on the program's development and purpose, while at the same time situating it in national context. The series also contains various directories and listings created by WISE to aid students in locating resources in the sciences.

    High School Outreach Program1982-19852Papers"Determinants of Choice of Undergraduate Concentrations in the Sciences, Mathematics, and Engineering at the University of Michigan," 1989.2"Women in Science: A University Program of Intervention, Outreach, and Research." Presented at the Second International Interdisciplinary Congress on Women19842ResourcesBibliography: Holdings in the CEW Library198119922Departmental Resources Persons Listing19802Resource Directory of Michigan Women in the Sciences19832Resource List of National Organizations of and for Women in Science1980-198119912Resource Locator: Careers in the Health Sciences19802Women and Science Acquisitions19842Science By Mail Volunteer Program1989-19902Talks/AddressesMichigan Science Teachers Association19902Science Workshop for Secondary Teachers19872St. Cloud State University Conference on Women in Mathematics19892State Superintendent's Special Committee on Minorities, Females and Handicappers19852Washtenaw Intermediate School District19902
    Programming1974-19751980-19962004-20112017-2018

    The Programming series (1.0 linear feet and digital files (online)) provides the researcher with the greatest insight into the main work of WISE -- a vast array of programming efforts -- and its changing strategies and priorities.

    The series includes digital photographs and videos from various WISE programs, particularly its FIRST LEGO League teams and Girls in Science and Engineering (GISE) Camp; documentation related to the 2017 "Hidden Figures: When the Computer Wore a Skirt: NASA's Human Computers" exhibit; as well as reports for various grants, program proposals, fliers, and other information about WISE programming efforts over the decades.

    Files are arranged alphabetically by topic, event, or program name.

    Career FairsHigh Tech Career Connections19862Math and Science Career Fair19822New Detroit Career Awareness Fair19822Willow Run Intermediate School19832Women's Career Fair4 folders1980-19832ConferencesImage and Professionalism19812Options and Opportunities in Industry19832Women in Science, Engineering and Mathematics Regional Conference: Creating an Academic Community19932ENGAGE (ENGineering for HumAnity and ServinG SociEty)

    (ENGAGE was a non-residential one-week program for high school students that involved participants meeting other students and touring sites to learn more about computers.)

    Photographs2009

    [DCP2 479]

    Online
    ExhibitsHidden Figures bicentennial exhibit documentationcirca 2017-2018

    [access item]

    Online
    FIRST LEGO League (FLL)

    (Includes material related to one of the University of Michigan's For Inspiration and Recognition of Science and Technology (FIRST) LEGO League Teams, the M Go Blue Bots.)

    Journal entries2005

    [access item]

    Online
    Orientation presentation2005

    [access item]

    Online
    M Go Blue Bots Logo2006

    [access item]

    Online
    Nanotechnology notes and related material2006

    [access item]

    Online
    Photographs2006

    [access item]

    Online
    Photographs and videos2007

    [access item]

    Online
    Training presentations and related documentation2007

    [access item]

    Online
    Photographs and videocirca 2008

    [access item]

    Online
    Future Science, Future Engineering (FSFE) CampVideo2004

    [access item]

    Online

    [Access to this material is restricted to the reading room of the Bentley Historical Library]

    Girls in Science and Engineering (GISE) Camp

    (Includes material related to one or more of camp's activities or topics, including cardboard canoes, chemistry, computer science, engineering, gaming for girls, geodesic structures, human genetics, physics, and/or robotics.)

    Photographs2005

    [access item]

    Online
    Presentation2006

    [access item]

    Online
    Photographs2006

    [access item]

    Online
    Photographs, videos, and related material2007

    [access item]

    Online
    Photographs and videos2008

    [access item]

    Online
    Photographs2011

    [access item]

    Online
    Graduate Experience Program (GEP)19962Graduate student programming photographs2006

    [access item]

    Online
    LS&A/Women In Science Program Internships in the Sciences for Undergraduate Women1989-19902Medical Student Interface19892Miscellaneous programs and eventsPhotographs2004-2005

    [access item]

    Online

    (Includes digital photographs of the following programs and topics: M Go Blue Bots, Sally Ride Science Festival, Science Fair, Tech Day Breakfast, and WISE Residence Program (RP).)

    Photographs2006

    [access item]

    Online
    Pipeline Program1989-19902Roundtable DiscussionsPositive Options for Women Scientists19862Sally Ride Science Festival photographs and related material2005

    [access item]

    Online
    Science Day on CampusProgram19832

    (includes photographs)

    19842

    (includes photographs)

    198521986219872
    Report to Shell Companies Foundation19852
    Science for Life Program19932Sloane Proposal -- Summer Math Program for Undergraduate Women19892Southeast Michigan Science FairPhotographscirca 2004

    [access item]

    Online
    Photographs2005

    [access item]

    Online
    Presentation2006

    [access item]

    Online
    Summer Internship Program198421985219862198721988319893Final Grant Report19853Proposal1982-19843"Summer Internships in the Sciences for High School Women: A Model Program at the University of Michigan,"19853Summer Research Experience for Minority High School Women19913Summerscience for GirlsGrant Proposal1988-19893Interim ReportJuly 19893Program19893Program (includes photos)19903Program19943Tray Lunches"Do You Really Need a Ph.D. to Get a Job in Mathematics or Science?,"19853Dual Career Couples19853Highest Paying Careers in the Sciences19853Science Writing Careers, ca.19893Women in Technology In England: An Affirmative Action Perspective19863Trevor Field2007

    (Trevor Field, founder of PlayPumps International, visited the campus in 2007. WISE was one of several institutions that sponsored his visit.)

    Fliers and related material

    [access item]

    Online
    Interview with Ted London

    [access item]

    Online
    Photographs

    [access item]

    Online
    Warner-Lambert Lecture SeriesFlyers1981-19903Guidelines Memo1981-19903History/Proposal1974-19751980-19833List of LecturersBy Co-Sponsoring Department19913By Year1981-19893Nominations1981-19903Press Releases and Publicity3WorkshopsCareer Options: The Mathematics Degree19833Careers in Computer Science19813Careers in Science19823Careers in Technology19823Careers in the Health Sciences19813Public Health Careers19833Resume Writing19843Surviving and Thriving in Graduate and Professional School19833Training and Development19803Women and Science7 folders1980-19863Women in Medicine19803Women in Medicine and Dentistry19823Women in Science19803Women in Technology19833
    Research1983-1990

    WISE conducted a number of independent research efforts focusing on students at the University of Michigan, which are documented in the Research series (0.15 linear feet). The results of these studies and questionnaires help the researcher understand perceptions and attitudes toward science among students at the university and contextualize WISE's programming direction and goals.

    Experiences of Math/Physics Majors19903Factors that Influence Women's Pursuit of Scientific Fields1983-19843Survey of University of Michigan Seniors' Career Aspirations, Especially Toward Careers in Science: Academic and Non-Academic Determinants1986-19873
    Girls and Science and Technology (GASAT) IV1985-1988

    The Girls and Science and Technology (GASAT) IV series (0.35 linear ft.) includes correspondence relating to the GASAT conference held in Ann Arbor as well as documentation on the fundraising efforts and strategies used to underwrite the conference.

    Correspondence4 folders1985-19883Fundraising2 folders1986-19873Michigan Sesquicentennial Handout19873Publicity19873
    Women's History in Michigan Science and Engineering Oral History Project2007

    The Women's History in Michigan Science and Engineering Oral History Project series includes digital recordings and transcripts of University of Michigan alumnae.

    Audio recordingsAjzenberg-Selove, Fay2007

    [download zip file]

    Online
    Buckley, Paulita2007

    [download zip file]

    Online
    Carter, Barbara2007

    [download zip file]

    Online
    Connable, Tenho2007

    [download zip file]

    Online
    Frank, Margaret2007

    [download zip file]

    Online
    Holter, Francis2007

    [download zip file]

    Online
    Kelly, Marilee2007

    [download zip file]

    Online
    Natvig, Anne2007

    [download zip file]

    Online
    Patterson, Dorothy2007

    [download zip file]

    Online
    Pilchard, Patricia2007

    [download zip file]

    Online
    Shumway, Sally2007

    [download zip file]

    Online
    Sloat, Barbara2007

    [download zip file]

    Online
    Transcripts2007

    [download zip file]

    Online
    Archived WebsiteArchived Women in Science and Engineering homepage, 2010-[ongoing]

    [view item]

    Online
    + + + Related Material +

    Researchers may wish to consult the following collections also held at the Bentley Historical Library: Center for the Education of Women (University of Michigan) records and the Women's History in Michigan Science and Engineering (University of Michigan) Web Archives.

    +
    +
    +
    diff --git a/spec/integration/ingest_pipeline_spec.rb b/spec/integration/ingest_pipeline_spec.rb new file mode 100644 index 0000000..924e972 --- /dev/null +++ b/spec/integration/ingest_pipeline_spec.rb @@ -0,0 +1,61 @@ +# frozen_string_literal: true + +require 'rails_helper' + +# End-to-end test of the ingest automation state machine (Layer 2). +# Drives the whole event chain with the inline ActiveJob adapter, mocking only the +# two external boundaries (indexer + packager). Proves the wiring +# ingest.file -> index.success -> html.success -> pdf.success -> ingest.success +# without Solr or Redis. +RSpec.describe 'Ingest automation pipeline', type: :job do + include ActiveJob::TestHelper + + let(:ead_id) { 'umich-bhl-032' } + let(:repo_id) { 'bhl' } + let(:file) { '/tmp/umich-bhl-032.xml' } + let(:events) { [] } + + before do + # Enable the feature flag for the whole chain. + arclight = double('arclight', enable_ingest_automation: true) + allow(Rails.configuration.x).to receive(:arclight).and_return(arclight) + + # Mock external boundaries only. + allow(FindingAid::IndexFromEad).to receive(:call).with(file, repo_id).and_return(ead_id) + allow(FindingAid::PackageArtifact).to receive(:call) + + # Record every dispatched event to assert the full sequence. + allow(IngestAutomation::Dispatch).to receive(:call).and_wrap_original do |orig, event, details, **kw| + events << event + orig.call(event, details, **kw) + end + end + + after do + clear_enqueued_jobs + clear_performed_jobs + end + + it 'runs ingest.file -> index -> html -> pdf -> ingest.success' do + perform_enqueued_jobs do + IngestAutomationJob.perform_later('ingest.file', repo_id: repo_id, file_path: file) + end + + expect(FindingAid::IndexFromEad).to have_received(:call).with(file, repo_id) + expect(FindingAid::PackageArtifact).to have_received(:call).with(ead_id, 'html') + expect(FindingAid::PackageArtifact).to have_received(:call).with(ead_id, 'pdf') + # The event sequence proves html was packaged before pdf. + expect(events).to eq(%w[ingest.file index.success html.success pdf.success ingest.success]) + end + + it 'halts on index failure' do + allow(FindingAid::IndexFromEad).to receive(:call).and_raise(FindingAidIndexError, 'bad xml') + + perform_enqueued_jobs do + IngestAutomationJob.perform_later('ingest.file', repo_id: repo_id, file_path: file) + end + + expect(events).to include('index.failure') + expect(FindingAid::PackageArtifact).not_to have_received(:call) + end +end diff --git a/spec/jobs/build_suggest_job_spec.rb b/spec/jobs/build_suggest_job_spec.rb new file mode 100644 index 0000000..2686aad --- /dev/null +++ b/spec/jobs/build_suggest_job_spec.rb @@ -0,0 +1,26 @@ +# frozen_string_literal: true + +require 'rails_helper' + +RSpec.describe BuildSuggestJob, type: :job do + include ActiveJob::TestHelper + + before do + allow(Solr::BuildSuggest).to receive(:call) + end + + after do + clear_enqueued_jobs + clear_performed_jobs + end + + it 'queues the job on the index queue' do + expect { described_class.perform_later } + .to have_enqueued_job(described_class).on_queue('index') + end + + it 'delegates to the build suggest service' do + expect { described_class.perform_now }.not_to raise_error + expect(Solr::BuildSuggest).to have_received(:call) + end +end diff --git a/spec/jobs/delete_finding_aid_job_spec.rb b/spec/jobs/delete_finding_aid_job_spec.rb new file mode 100644 index 0000000..826b0a4 --- /dev/null +++ b/spec/jobs/delete_finding_aid_job_spec.rb @@ -0,0 +1,28 @@ +# frozen_string_literal: true + +require 'rails_helper' + +RSpec.describe DeleteFindingAidJob, type: :job do + include ActiveJob::TestHelper + + let(:eadid) { 'eadid.slug' } + + before do + allow(FindingAid::DeleteFromIndex).to receive(:call) + end + + after do + clear_enqueued_jobs + clear_performed_jobs + end + + it 'queues the job on the delete queue' do + expect { described_class.perform_later(eadid) } + .to have_enqueued_job(described_class).with(eadid).on_queue('delete') + end + + it 'delegates deletion to the service' do + expect { described_class.perform_now(eadid) }.not_to raise_error + expect(FindingAid::DeleteFromIndex).to have_received(:call).with(eadid) + end +end diff --git a/spec/jobs/ingest_automation_index_job_spec.rb b/spec/jobs/ingest_automation_index_job_spec.rb new file mode 100644 index 0000000..d7f0f87 --- /dev/null +++ b/spec/jobs/ingest_automation_index_job_spec.rb @@ -0,0 +1,45 @@ +# frozen_string_literal: true + +require 'rails_helper' + +RSpec.describe IngestAutomationIndexJob, type: :job do + include ActiveJob::TestHelper + + let(:src_path) { 'path/to/file.xml' } + let(:repo_id) { 'repo' } + let(:ead_id) { 'ead123' } + + before do + allow(FindingAid::IndexFromEad).to receive(:call).and_return(ead_id) + end + + after do + clear_enqueued_jobs + clear_performed_jobs + end + + it 'queues the job' do + expect { described_class.perform_later(src_path, repo_id) } + .to have_enqueued_job(described_class).with(src_path, repo_id).on_queue('index') + end + + it 'delegates indexing to the service' do + expect { described_class.perform_now(src_path, repo_id) }.not_to raise_error + expect(FindingAid::IndexFromEad).to have_received(:call).with(src_path, repo_id) + end + + it 'enqueues an index.failure event when indexing fails' do + allow(FindingAid::IndexFromEad).to receive(:call).and_raise(FindingAidIndexError, 'boom') + allow(IngestAutomationJob).to receive(:perform_later) + expect { described_class.perform_now(src_path, repo_id) }.not_to raise_error + expect(IngestAutomationJob).to have_received(:perform_later) + .with('index.failure', src_path: src_path, repo_id: repo_id, ead_id: nil, err_msg: 'boom') + end + + it 'enqueues an index success event when indexing succeed' do + allow(IngestAutomationJob).to receive(:perform_later) + expect { described_class.perform_now(src_path, repo_id) }.not_to raise_error + expect(IngestAutomationJob).to have_received(:perform_later) + .with('index.success', src_path: src_path, repo_id: repo_id, ead_id: ead_id) + end +end diff --git a/spec/jobs/ingest_automation_job_spec.rb b/spec/jobs/ingest_automation_job_spec.rb new file mode 100644 index 0000000..43a1c9c --- /dev/null +++ b/spec/jobs/ingest_automation_job_spec.rb @@ -0,0 +1,39 @@ +# frozen_string_literal: true + +require 'rails_helper' + +RSpec.describe IngestAutomationJob, type: :job do + before do + allow(IngestAutomation::Dispatch).to receive(:call) + end + + describe 'queue' do + it 'is enqueued on the default queue' do + expect(described_class.new("event", {}).queue_name).to eq('ingest') + end + + it 'enqueues the job' do + expect { described_class.perform_later("event", {}) } + .to have_enqueued_job(described_class).on_queue('ingest') + end + end + + describe '#perform' do + it 'does not dispatch when automation is disabled' do + arclight_options = double('arclight_options', enable_ingest_automation: false) + allow(Rails.configuration.x).to receive(:arclight).and_return(arclight_options) + + expect { described_class.perform_now('event', {}) }.not_to raise_error + expect(IngestAutomation::Dispatch).not_to have_received(:call) + end + + it 'delegates event handling when automation is enabled' do + details = { repo_id: 'repo', file_path: '/tmp/file.xml' } + arclight_options = double('arclight_options', enable_ingest_automation: true) + allow(Rails.configuration.x).to receive(:arclight).and_return(arclight_options) + + expect { described_class.perform_now('ingest.file', details) }.not_to raise_error + expect(IngestAutomation::Dispatch).to have_received(:call).with('ingest.file', details, logger: anything) + end + end +end diff --git a/spec/jobs/ingest_automation_package_job_spec.rb b/spec/jobs/ingest_automation_package_job_spec.rb new file mode 100644 index 0000000..34ba180 --- /dev/null +++ b/spec/jobs/ingest_automation_package_job_spec.rb @@ -0,0 +1,43 @@ +# frozen_string_literal: true + +require 'rails_helper' + +RSpec.describe IngestAutomationPackageJob, type: :job do + include ActiveJob::TestHelper + + let(:identifier) { 'eadid.slug' } + let(:format) { 'html' } + + before do + allow(FindingAid::PackageArtifact).to receive(:call) + allow(IngestAutomationJob).to receive(:perform_later) + end + + after do + clear_enqueued_jobs + clear_performed_jobs + end + + it 'queues the job on the index queue' do + expect { described_class.perform_later(identifier, format) } + .to have_enqueued_job(described_class).with(identifier, format).on_queue('index') + end + + it 'delegates packaging to the service' do + expect { described_class.perform_now(identifier, format) }.not_to raise_error + expect(FindingAid::PackageArtifact).to have_received(:call).with(identifier, format) + end + + it 'enqueues a success event when packaging succeeds' do + expect { described_class.perform_now(identifier, format) }.not_to raise_error + expect(IngestAutomationJob).to have_received(:perform_later) + .with('html.success', ead_id: identifier) + end + + it 'enqueues a failure event when packaging fails' do + allow(FindingAid::PackageArtifact).to receive(:call).and_raise(Boxwalker::GenerateError, 'boom') + expect { described_class.perform_now(identifier, format) }.not_to raise_error + expect(IngestAutomationJob).to have_received(:perform_later) + .with('html.failure', ead_id: identifier, err_msg: 'boom') + end +end diff --git a/spec/jobs/ingest_record_job_spec.rb b/spec/jobs/ingest_record_job_spec.rb new file mode 100644 index 0000000..be18e3a --- /dev/null +++ b/spec/jobs/ingest_record_job_spec.rb @@ -0,0 +1,27 @@ +# frozen_string_literal: true + +require 'rails_helper' + +RSpec.describe IngestRecordJob, type: :job do + include ActiveJob::TestHelper + + let(:id) { 'id' } + + before do + allow(FindingAid::IngestRecord).to receive(:call) + end + + after do + clear_enqueued_jobs + clear_performed_jobs + end + + it 'queues the job' do + expect { described_class.perform_later(id) }.to have_enqueued_job(described_class).with(id).on_queue("ingest") + end + + it 'delegates ingest record work to the service' do + expect { described_class.perform_now(id) }.not_to raise_error + expect(FindingAid::IngestRecord).to have_received(:call).with(id) + end +end diff --git a/spec/lib/um_arclight/traject/ead2_config_spec.rb b/spec/lib/um_arclight/traject/ead2_config_spec.rb new file mode 100644 index 0000000..a62bce8 --- /dev/null +++ b/spec/lib/um_arclight/traject/ead2_config_spec.rb @@ -0,0 +1,215 @@ +# frozen_string_literal: true + +require "rails_helper" +require "traject" +require "traject/nokogiri_reader" + +RSpec.describe "um_arclight/traject/ead2_config.rb" do + before(:context) do + fixture_path = Rails.root.join("spec/fixtures/bhl/umich-bhl-032.xml") + record = File.open(fixture_path, "r:UTF-8:UTF-8") do |file| + CompressedReader.new(file, {}).first + end + indexer = Traject::Indexer::NokogiriIndexer.new.tap do |i| + i.settings do + provide "repository", "bhl" + provide "writer_class_name", "Traject::ArrayWriter" + end + i.load_config_file(Rails.root.join("lib/um_arclight/traject/ead2_config.rb")) + end + @result = indexer.map_record(record) + end + + let(:result) { @result } + + describe "identification" do + it "maps id from eadid" do + expect(result["id"]).to eq [ "umich-bhl-032" ] + end + + it "maps ead_ssi from eadid" do + expect(result["ead_ssi"]).to eq [ "umich-bhl-032" ] + end + + it "maps unitid_ssm" do + expect(result["unitid_ssm"]).to include "032 Bimu 2" + end + end + + describe "title" do + # CompressedReader collapses whitespace in the XML string, but Nokogiri's .text + # still concatenates text nodes across element boundaries which can + # introduce adjacent spaces from both sides of the tag. + it "maps title_ssm from archdesc/did/unittitle" do + expect(result["title_ssm"].first).to match(/Women in.*Science.*and.*Engineering.*Program/) + end + + it "maps title_tesim from archdesc/did/unittitle" do + expect(result["title_tesim"].first).to match(/Women in.*Science.*and.*Engineering.*Program/) + end + + it "maps normalized_title_ssm combining title and date" do + expect(result["normalized_title_ssm"].first).to match(/Women in.*Science.*and.*Engineering.*Program/) + end + + it "maps collection_title_tesim from normalized_title_ssm" do + expect(result["collection_title_tesim"]).to eq result["normalized_title_ssm"] + end + + it "maps collection_ssim from normalized_title_ssm" do + expect(result["collection_ssim"]).to eq result["normalized_title_ssm"] + end + end + + describe "level" do + it "maps level_ssm as 'collection' regardless of archdesc @level" do + expect(result["level_ssm"]).to eq [ "collection" ] + end + + it "maps level_ssim with the original level label and Collection" do + expect(result["level_ssim"]).to include "Record Group" + expect(result["level_ssim"]).to include "Collection" + end + end + + describe "dates" do + it "maps unitdate_inclusive_ssm with direct children" do + # This fixture's unitdate[@type="bulk"] is nested inside , not + # a direct child, so only direct-child inclusive dates are mapped. + expect(result["unitdate_inclusive_ssm"]).to include "1974-1996" + expect(result["unitdate_inclusive_ssm"]).to include "2004-2019" + end + + it "maps normalized_date_ssm" do + expect(result["normalized_date_ssm"].first).not_to be_nil + end + + it "maps date_range_isim as an array of integers" do + expect(result["date_range_isim"]).to all be_an(Integer) + expect(result["date_range_isim"]).not_to be_empty + end + end + + describe "repository" do + it "maps repository_ssm from the configured repository name" do + expect(result["repository_ssm"]).to eq [ "University of Michigan Bentley Historical Library" ] + end + + it "maps repository_ssim from the configured repository name" do + expect(result["repository_ssim"]).to eq [ "University of Michigan Bentley Historical Library" ] + end + end + + describe "creator" do + it "maps creator_ssm from origination" do + expect(result["creator_ssm"].first).to include "University of Michigan" + end + + it "maps creator_ssim from origination" do + expect(result["creator_ssim"].first).to include "University of Michigan" + end + + it "maps creator_corpname_ssim" do + expect(result["creator_corpname_ssim"]).to include "University of Michigan. Women in Science and Engineering Program." + end + end + + describe "physical description" do + it "maps extent_ssm with one entry per physdesc" do + expect(result["extent_ssm"]).to include "3.0 linear feet" + expect(result["extent_ssm"]).to include "79.7 GB (online)" + expect(result["extent_ssm"]).to include "1 archived websites" + end + + it "maps extent_tesim from extent_ssm" do + expect(result["extent_tesim"]).to eq result["extent_ssm"] + end + end + + describe "controlled access" do + it "maps access_subjects_ssim from controlaccess subjects" do + expect(result["access_subjects_ssim"]).to include "Women in science." + expect(result["access_subjects_ssim"]).to include "Women engineers." + end + + it "maps access_subjects_ssm from access_subjects_ssim" do + expect(result["access_subjects_ssm"]).to eq result["access_subjects_ssim"] + end + + it "maps genreform_ssim from controlaccess" do + expect(result["genreform_ssim"]).to include "Photographs." + end + end + + describe "searchable notes" do + it "maps bioghist_tesim" do + expect(result["bioghist_tesim"]).not_to be_empty + end + + it "maps scopecontent_tesim" do + expect(result["scopecontent_tesim"]).not_to be_empty + end + + # Note: this fixture nests inside . The DESCGRP_FIELDS + # loop maps accessrestrict_tesim from the descgrp XPath, so it is populated. + it "maps accessrestrict_tesim from descgrp/accessrestrict" do + expect(result["accessrestrict_tesim"]).not_to be_empty + end + + it "maps acqinfo_ssim from descgrp/acqinfo" do + expect(result["acqinfo_ssim"]).not_to be_empty + end + end + + describe "counters" do + it "maps component_level_isim as 0 for top-level" do + expect(result["component_level_isim"]).to eq [ 0 ] + end + + it "maps sort_isi as 0 for top-level" do + expect(result["sort_isi"]).to eq [ 0 ] + end + + it "maps total_component_count_is" do + expect(result["total_component_count_is"].first).to be > 0 + end + end + + describe "components" do + it "maps nested component documents" do + expect(result["components"]).not_to be_empty + end + + it "maps 7 top-level c01 components" do + expect(result["components"].length).to eq 7 + end + + describe "first component" do + subject(:component) { result["components"].first } + + it "has an id built from root id and ref id" do + expect(component["id"].first).to start_with "umich-bhl-032_" + end + + it "has normalized_title_ssm" do + expect(component["normalized_title_ssm"].first).to include "Administrative" + end + + it "has collection_ssim pointing to root" do + expect(component["collection_ssim"]).to eq result["normalized_title_ssm"] + end + + it "has repository_ssim from root" do + expect(component["repository_ssim"]).to eq [ "University of Michigan Bentley Historical Library" ] + end + + it "has component_level_isim of 1" do + expect(component["component_level_isim"]).to eq [ 1 ] + end + + it "has parent_ssi pointing to root id" do + expect(component["parent_ssi"]).to include "umich-bhl-032" + end + end + end +end diff --git a/spec/models/user_spec.rb b/spec/models/user_spec.rb new file mode 100644 index 0000000..ab0cd83 --- /dev/null +++ b/spec/models/user_spec.rb @@ -0,0 +1,84 @@ +# frozen_string_literal: true + +require 'rails_helper' + +RSpec.describe User, type: :model do + subject(:user) { described_class.new(email: 'user@example.com', password: 'password123') } + + describe 'validations' do + it 'is valid with an email and password' do + expect(user).to be_valid + end + + it 'requires an email' do + user.email = '' + expect(user).not_to be_valid + expect(user.errors[:email]).to include("can't be blank") + end + + it 'requires a valid email format' do + user.email = 'not-an-email' + expect(user).not_to be_valid + expect(user.errors[:email]).to be_present + end + + it 'requires the email to be unique (case-insensitively)' do + described_class.create!(email: 'user@example.com', password: 'password123') + duplicate = described_class.new(email: 'USER@example.com', password: 'password123') + expect(duplicate).not_to be_valid + expect(duplicate.errors[:email]).to include('has already been taken') + end + + it 'requires a password' do + user.password = nil + expect(user).not_to be_valid + expect(user.errors[:password]).to include("can't be blank") + end + + it 'requires the password and its confirmation to match' do + user.password_confirmation = 'mismatch' + expect(user).not_to be_valid + expect(user.errors[:password_confirmation]).to be_present + end + end + + describe 'devise modules' do + it 'enables the expected devise modules' do + expect(described_class.devise_modules).to include( + :database_authenticatable, + :registerable, + :recoverable, + :rememberable, + :validatable + ) + end + + it 'authenticates with the correct password' do + user.save! + expect(user.valid_password?('password123')).to be(true) + expect(user.valid_password?('wrong')).to be(false) + end + + it 'encrypts the password rather than storing it in plain text' do + user.save! + expect(user.encrypted_password).to be_present + expect(user.encrypted_password).not_to eq('password123') + end + end + + describe 'attributes' do + it 'defaults guest to false' do + expect(described_class.new.guest).to be(false) + end + end + + describe 'Blacklight integration' do + it 'exposes email as the displayable login key' do + expect(described_class.string_display_key).to eq(:email) + end + + it 'includes Blacklight::User' do + expect(described_class.ancestors).to include(Blacklight::User) + end + end +end diff --git a/spec/rails_helper.rb b/spec/rails_helper.rb new file mode 100644 index 0000000..2a13311 --- /dev/null +++ b/spec/rails_helper.rb @@ -0,0 +1,85 @@ +# frozen_string_literal: true + +# This file is copied to spec/ when you run 'rails generate rspec:install' +require 'spec_helper' +require 'fileutils' +ENV['RAILS_ENV'] ||= 'test' +require_relative '../config/environment' +# Prevent database truncation if the environment is production +abort("The Rails environment is running in production mode!") if Rails.env.production? +ENV['FINDING_AID_DATA'] ||= Rails.root.join('tmp/spec/data').to_s +# Uncomment the line below in case you have `--require rails_helper` in the `.rspec` file +# that will avoid rails generators crashing because migrations haven't been run yet +# return unless Rails.env.test? +require 'rspec/rails' +# Add additional requires below this line. Rails is not loaded until this point! + +# Requires supporting ruby files with custom matchers and macros, etc, in +# spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are +# run as spec files by default. This means that files in spec/support that end +# in _spec.rb will both be required and run as specs, causing the specs to be +# run twice. It is recommended that you do not name files matching this glob to +# end with _spec.rb. You can configure this pattern with the --pattern +# option on the command line or in ~/.rspec, .rspec or `.rspec-local`. +# +# The following line is provided for convenience purposes. It has the downside +# of increasing the boot-up time by auto-requiring all files in the support +# directory. Alternatively, in the individual `*_spec.rb` files, manually +# require only the support files necessary. +# +# Rails.root.glob('spec/support/**/*.rb').sort_by(&:to_s).each { |f| require f } + +# Ensures that the test database schema matches the current schema file. +# If there are pending migrations it will invoke `db:test:prepare` to +# recreate the test database by loading the schema. +# If you are not using ActiveRecord, you can remove these lines. +begin + ActiveRecord::Migration.maintain_test_schema! +rescue ActiveRecord::PendingMigrationError => e + abort e.to_s.strip +end +RSpec.configure do |config| + config.before(:suite) do + FileUtils.rm_rf(ENV['FINDING_AID_DATA']) + FileUtils.mkdir_p(ENV['FINDING_AID_DATA']) + end + + config.after(:suite) do + FileUtils.rm_rf(ENV['FINDING_AID_DATA']) + end + + # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures + config.fixture_paths = [ + Rails.root.join('spec/fixtures') + ] + + # If you're not using ActiveRecord, or you'd prefer not to run each of your + # examples within a transaction, remove the following line or assign false + # instead of true. + config.use_transactional_fixtures = true + + # You can uncomment this line to turn off ActiveRecord support entirely. + # config.use_active_record = false + + # RSpec Rails uses metadata to mix in different behaviours to your tests, + # for example enabling you to call `get` and `post` in request specs. e.g.: + # + # RSpec.describe UsersController, type: :request do + # # ... + # end + # + # The different available types are documented in the features, such as in + # https://rspec.info/features/8-0/rspec-rails + # + # You can also infer these behaviours automatically by location, e.g. + # /spec/models would pull in the same behaviour as `type: :model` but this + # behaviour is considered legacy and will be removed in a future version. + # + # To enable this behaviour uncomment the line below. + # config.infer_spec_type_from_file_location! + + # Filter lines from Rails gems in backtraces. + config.filter_rails_from_backtrace! + # arbitrary gems may also be filtered via: + # config.filter_gems_from_backtrace("gem name") +end diff --git a/spec/services/finding_aid/delete_from_index_spec.rb b/spec/services/finding_aid/delete_from_index_spec.rb new file mode 100644 index 0000000..43f8d96 --- /dev/null +++ b/spec/services/finding_aid/delete_from_index_spec.rb @@ -0,0 +1,23 @@ +# frozen_string_literal: true + +require 'rails_helper' + +RSpec.describe FindingAid::DeleteFromIndex do + let(:eadid) { 'eadid.slug' } + let(:connection) { instance_double(RSolr::Client) } + let(:index) { instance_double(Blacklight::Solr::Repository, connection: connection) } + + before do + allow(Blacklight).to receive(:default_index).and_return(index) + allow(connection).to receive(:delete_by_query) + allow(connection).to receive(:commit) + end + + it 'deletes documents matching the ead id and commits' do + expect { described_class.call(eadid) }.not_to raise_error + expect(connection).to have_received(:delete_by_query).with("ead_ssi:#{eadid}") + expect(connection).to have_received(:delete_by_query).with("parent_ssim:#{eadid}") + expect(connection).to have_received(:delete_by_query).with("id:#{eadid}") + expect(connection).to have_received(:commit) + end +end diff --git a/spec/services/finding_aid/index_from_ead_spec.rb b/spec/services/finding_aid/index_from_ead_spec.rb new file mode 100644 index 0000000..098bc22 --- /dev/null +++ b/spec/services/finding_aid/index_from_ead_spec.rb @@ -0,0 +1,42 @@ +# frozen_string_literal: true + +require 'rails_helper' + +RSpec.describe FindingAid::IndexFromEad do + let(:src_path) { Rails.root.join('spec/fixtures/bhl/umich-bhl-032.xml') } + let(:repo_id) { 'bhl' } + + context 'when source open fails' do + before do + allow(File).to receive(:open).with(src_path, 'r:UTF-8:UTF-8').and_raise(StandardError, 'boom') + end + + it 'raises FindingAidIndexError' do + expect { described_class.call(src_path, repo_id) } + .to raise_error(FindingAidIndexError, 'boom') + end + end + + context 'when source open succeed' do + let(:src_path) { Rails.root.join('spec/fixtures/bhl/umich-bhl-032.xml') } + let(:dest_path) { File.join(ENV['FINDING_AID_DATA'], 'xml', 'bhl', 'umich-bhl-032.xml') } + let(:dest_dir) { File.join(ENV['FINDING_AID_DATA'], 'xml', 'bhl') } + let(:indexer_context) { double("context", output_hash: { "id" => [ "umich-bhl-032" ] }) } + let(:indexer) { instance_double(Traject::Indexer::NokogiriIndexer) } + + before do + allow(Traject::Indexer::NokogiriIndexer).to receive(:new).and_return(indexer) + allow(indexer).to receive(:load_config_file) + allow(indexer).to receive(:process_record).and_return(indexer_context) + allow(indexer).to receive(:complete) + allow(FileUtils).to receive(:mkdir_p).with(dest_dir).and_return(true) + allow(FileUtils).to receive(:copy_file).with(src_path, dest_path, preserve: true, dereference: true, remove_destination: true).and_return(true) + end + + it 'return ead_id and make an archive copy of source file available for downloads' do + expect(described_class.call(src_path, repo_id)).to eq "umich-bhl-032" + expect(FileUtils).to have_received(:mkdir_p).with(dest_dir) + expect(FileUtils).to have_received(:copy_file).with(src_path, dest_path, preserve: true, dereference: true, remove_destination: true) + end + end +end diff --git a/spec/services/finding_aid/ingest_record_spec.rb b/spec/services/finding_aid/ingest_record_spec.rb new file mode 100644 index 0000000..d516ee9 --- /dev/null +++ b/spec/services/finding_aid/ingest_record_spec.rb @@ -0,0 +1,51 @@ +# frozen_string_literal: true + +require 'rails_helper' + +RSpec.describe FindingAid::IngestRecord do + let(:id) { 'id' } + let(:findingaid) do + instance_double( + 'Findingaid', + id: 1, + reposlug: 'reposlug', + eadslug: 'eadslug', + state: 'uploaded', + error: nil, + eadurl: 'title' + ) + end + let(:path) { File.join(ENV['FINDING_AID_DATA'], 'findingaids', findingaid.id.to_s) } + let(:repository) { instance_double(Blacklight.repository_class) } + let(:catalog_controller) { instance_double('CatalogController', helpers: helpers) } + let(:helpers) { double('helpers', blacklight_config: 'blacklight_config') } + let(:response) { instance_double('Blacklight::Solr::Response', documents: [ document ]) } + let(:document) { instance_double('SolrDocument') } + + before do + stub_const('Findingaid', Class.new do + def self.find(_id); end + end) + allow(Findingaid).to receive(:find).with(id).and_return(findingaid) + allow(findingaid).to receive(:state=) + allow(findingaid).to receive(:save!).and_return(true) + allow(findingaid).to receive(:eadurl=) + allow(findingaid).to receive(:eadurl).and_return('title') + allow(IngestAutomationIndexJob).to receive(:perform_now).with(path, findingaid.reposlug).and_return(true) + allow(Blacklight.repository_class).to receive(:new).with('blacklight_config').and_return(repository) + allow(repository).to receive(:search).and_return(response) + allow(CatalogController).to receive(:new).and_return(catalog_controller) + allow(document).to receive(:[]).with('title_ssm').and_return([ 'title' ]) + allow(Rails.logger).to receive(:info) + end + + it 'indexes and marks finding aid as indexed' do + expect { described_class.call(id) }.not_to raise_error + + expect(IngestAutomationIndexJob).to have_received(:perform_now).with(path, findingaid.reposlug) + expect(findingaid).to have_received(:state=).with('indexing') + expect(findingaid).to have_received(:eadurl=).with('title') + expect(findingaid).to have_received(:state=).with('indexed') + expect(findingaid).to have_received(:save!).twice + end +end diff --git a/spec/services/finding_aid/package_artifact_spec.rb b/spec/services/finding_aid/package_artifact_spec.rb new file mode 100644 index 0000000..602c265 --- /dev/null +++ b/spec/services/finding_aid/package_artifact_spec.rb @@ -0,0 +1,58 @@ +# frozen_string_literal: true + +require 'rails_helper' + +RSpec.describe FindingAid::PackageArtifact do + let(:identifier) { 'eadid.slug' } + let(:generator) { instance_double(Package::Generator) } + + before do + generator_class = Class.new do + def initialize(identifier:); end + + def generate_html; end + + def generate_pdf; end + end + stub_const('Package::Generator', generator_class) + + allow(Package::Generator).to receive(:new).with(identifier: identifier).and_return(generator) + allow(generator).to receive(:generate_html) + allow(generator).to receive(:generate_pdf) + end + + context 'when the format is html' do + it 'generates html' do + expect { described_class.call(identifier, 'html') }.not_to raise_error + expect(generator).to have_received(:generate_html) + expect(generator).not_to have_received(:generate_pdf) + end + end + + context 'when the format is pdf' do + it 'generates pdf' do + expect { described_class.call(identifier, 'pdf') }.not_to raise_error + expect(generator).to have_received(:generate_pdf) + expect(generator).not_to have_received(:generate_html) + end + end + + context 'when the format is unsupported' do + it 'raises a GenerateError without generating' do + expect { described_class.call(identifier, 'txt') } + .to raise_error(Boxwalker::GenerateError, identifier) + expect(Package::Generator).not_to have_received(:new) + end + end + + context 'when generation fails' do + before do + allow(generator).to receive(:generate_html).and_raise(StandardError, 'boom') + end + + it 're-raises as a GenerateError' do + expect { described_class.call(identifier, 'html') } + .to raise_error(Boxwalker::GenerateError, identifier) + end + end +end diff --git a/spec/services/ingest_automation/dispatch_spec.rb b/spec/services/ingest_automation/dispatch_spec.rb new file mode 100644 index 0000000..daf57b8 --- /dev/null +++ b/spec/services/ingest_automation/dispatch_spec.rb @@ -0,0 +1,49 @@ +# frozen_string_literal: true + +require 'rails_helper' + +RSpec.describe IngestAutomation::Dispatch do + let(:logger) { instance_double(Logger, info: nil, error: nil) } + + before do + allow(IngestAutomationIndexJob).to receive(:perform_later) + allow(IngestAutomationPackageJob).to receive(:perform_later) + allow(IngestAutomationJob).to receive(:perform_later) + end + + it 'dispatches ingest.file to IndexFindingAidJob' do + details = { repo_id: 'repo', file_path: '/tmp/example.xml' } + + described_class.call('ingest.file', details, logger: logger) + + expect(IngestAutomationIndexJob).to have_received(:perform_later).with('/tmp/example.xml', 'repo') + end + + it 'dispatches index.success to html packaging' do + details = { ead_id: 'eadid', src_path: '/tmp/example.xml', archive_path: '/tmp/archive.xml' } + + described_class.call('index.success', details, logger: logger) + + expect(IngestAutomationPackageJob).to have_received(:perform_later).with('eadid', 'html') + end + + it 'dispatches html.success to pdf packaging' do + described_class.call('html.success', { ead_id: 'eadid' }, logger: logger) + + expect(IngestAutomationPackageJob).to have_received(:perform_later).with('eadid', 'pdf') + end + + it 'dispatches pdf.success to ingest.success event' do + described_class.call('pdf.success', { ead_id: 'eadid' }, logger: logger) + + expect(IngestAutomationJob).to have_received(:perform_later).with('ingest.success', ead_id: 'eadid') + end + + it 'log unknown event' do + details = { ead_id: 'eadid' } + + described_class.call('unknown.event', details, logger: logger) + + expect(logger).to have_received(:error).with("Unknown ingest event for Finding Aid -- event: unknown.event, details: #{details.inspect}") + end +end diff --git a/spec/services/package/generator_spec.rb b/spec/services/package/generator_spec.rb new file mode 100644 index 0000000..e8889ea --- /dev/null +++ b/spec/services/package/generator_spec.rb @@ -0,0 +1,132 @@ +# frozen_string_literal: true + +require 'rails_helper' + +RSpec.describe Package::Generator do + subject(:generator) { described_class.new(identifier: identifier) } + + let(:identifier) { 'umich-test-9999' } + + before do + allow(generator).to receive(:fetch_doc) do |_identifier| # rubocop:disable RSpec/SubjectStub + SolrDocument.new( + 'id': 'umich-test-9999', + 'normalized_title_ssm': [ 'Finding Aid' ], + 'ead_author_ssm': [ 'Finding Aid written by E. A. Document' ], + 'repository_ssm': [ 'University of Michigan Bentley Historical Library' ] + ) + end + + allow(generator).to receive(:fetch_components) do |_identifier| # rubocop:disable RSpec/SubjectStub + [ + SolrDocument.new( + 'id': 'umich-test-9999-01', + 'normalized_title_ssm': [ 'Component 1.0' ], + "component_level_isim": [ 1 ], + 'total_digital_object_count_isim': [ 1 ], + "parent_ssim": [ 'umich-test-9999' ], + 'digital_objects_ssm': [ + { + 'label': 'Digital Object', + 'href': 'https://quod.lib.umich.edu/x/xyzzy/x-9999-01/01', + 'role': 'image-service', + 'xpointer': nil + }.to_json + ], + 'repository_ssm': [ 'University of Michigan Bentley Historical Library' ] + ) + ] + end + + allow(generator).to receive(:get) do |url| # rubocop:disable RSpec/SubjectStub + response = double('response') # rubocop:disable RSpec/VerifiedDoubles + output = mock_get(url) + allow(response).to receive(:body) do + output + end + response + end + allow(generator).to receive(:download_and_cache) # rubocop:disable RSpec/SubjectStub + end + + it 'generate HTML for an identifier' do + generator.build_html + doc = generator.doc + + expect(doc.xpath('//div[@id="summary"]//dl/dd[contains(., "Finding Aid written by E. A. Document")]').first).to be_truthy + expect(doc.css('style#utility-styles').first).to be_truthy + + # count that the components are in the doc + expect(doc.css('.al-contents-ish article')).not_to be_empty + end + + it 'modify HTML for to generate PDF' do + generator.build_html + generator.build_pdf_html + doc = generator.doc + + expect(doc.css('m-website-header')).to be_empty + expect(doc.css('header').first).to be_truthy + end +end + +def mock_get(url) # rubocop:disable Metrics/MethodLength + if url.start_with?('/catalog') + <<-HTML + + + Finding Aid + + + + + + + + + +
    +
    +
    + +
    +
    Finding Aid Repository
    +
    + +
    + +
    +
    +
    +
    Scope
    +
    Blah blah blah
    +
    +
    +
    +
    +
    +

    This will be replaced.

    +
    +
    + + + + HTML + elsif url.start_with?('/assets/') + 'main { border: 1px solid #666; }' + end +end diff --git a/spec/services/solr/build_suggest_spec.rb b/spec/services/solr/build_suggest_spec.rb new file mode 100644 index 0000000..b6cad9d --- /dev/null +++ b/spec/services/solr/build_suggest_spec.rb @@ -0,0 +1,34 @@ +# frozen_string_literal: true + +require 'rails_helper' + +RSpec.describe Solr::BuildSuggest do + let(:http) { instance_double(Net::HTTP) } + let(:response) { instance_double(Net::HTTPOK, value: nil, body: '{"responseHeader":{"status":0}}') } + + before do + allow(ENV).to receive(:fetch).and_call_original + allow(ENV).to receive(:fetch).with('SOLR_URL', anything).and_return('http://solr.example.com:8983/solr/') + allow(Net::HTTP).to receive(:start).and_yield(http) + allow(http).to receive(:read_timeout=) + allow(http).to receive(:request_get).and_return(response) + allow($stdout).to receive(:puts) + end + + it 'requests the Solr suggester build endpoint' do + expect { described_class.call }.not_to raise_error + expect(Net::HTTP).to have_received(:start).with('solr.example.com', 8983) + expect(http).to have_received(:request_get).with('/solr/suggest', 'Accept' => 'application/json') + expect(response).to have_received(:value) + end + + context 'when Solr returns a non-2XX response' do + before do + allow(response).to receive(:value).and_raise(Net::HTTPServerException.new('500', response)) + end + + it 'raises the error' do + expect { described_class.call }.to raise_error(Net::HTTPServerException) + end + end +end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb new file mode 100644 index 0000000..d7a7fad --- /dev/null +++ b/spec/spec_helper.rb @@ -0,0 +1,96 @@ +# frozen_string_literal: true + +# This file was generated by the `rails generate rspec:install` command. Conventionally, all +# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`. +# The generated `.rspec` file contains `--require spec_helper` which will cause +# this file to always be loaded, without a need to explicitly require it in any +# files. +# +# Given that it is always loaded, you are encouraged to keep this file as +# light-weight as possible. Requiring heavyweight dependencies from this file +# will add to the boot time of your test suite on EVERY test run, even for an +# individual file that may not need all of that loaded. Instead, consider making +# a separate helper file that requires the additional dependencies and performs +# the additional setup, and require it from the spec files that actually need +# it. +# +# See https://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration +RSpec.configure do |config| + # rspec-expectations config goes here. You can use an alternate + # assertion/expectation library such as wrong or the stdlib/minitest + # assertions if you prefer. + config.expect_with :rspec do |expectations| + # This option will default to `true` in RSpec 4. It makes the `description` + # and `failure_message` of custom matchers include text for helper methods + # defined using `chain`, e.g.: + # be_bigger_than(2).and_smaller_than(4).description + # # => "be bigger than 2 and smaller than 4" + # ...rather than: + # # => "be bigger than 2" + expectations.include_chain_clauses_in_custom_matcher_descriptions = true + end + + # rspec-mocks config goes here. You can use an alternate test double + # library (such as bogus or mocha) by changing the `mock_with` option here. + config.mock_with :rspec do |mocks| + # Prevents you from mocking or stubbing a method that does not exist on + # a real object. This is generally recommended, and will default to + # `true` in RSpec 4. + mocks.verify_partial_doubles = true + end + + # This option will default to `:apply_to_host_groups` in RSpec 4 (and will + # have no way to turn it off -- the option exists only for backwards + # compatibility in RSpec 3). It causes shared context metadata to be + # inherited by the metadata hash of host groups and examples, rather than + # triggering implicit auto-inclusion in groups with matching metadata. + config.shared_context_metadata_behavior = :apply_to_host_groups + +# The settings below are suggested to provide a good initial experience +# with RSpec, but feel free to customize to your heart's content. +=begin + # This allows you to limit a spec run to individual examples or groups + # you care about by tagging them with `:focus` metadata. When nothing + # is tagged with `:focus`, all examples get run. RSpec also provides + # aliases for `it`, `describe`, and `context` that include `:focus` + # metadata: `fit`, `fdescribe` and `fcontext`, respectively. + config.filter_run_when_matching :focus + + # Allows RSpec to persist some state between runs in order to support + # the `--only-failures` and `--next-failure` CLI options. We recommend + # you configure your source control system to ignore this file. + config.example_status_persistence_file_path = "spec/examples.txt" + + # Limits the available syntax to the non-monkey patched syntax that is + # recommended. For more details, see: + # https://rspec.info/features/3-12/rspec-core/configuration/zero-monkey-patching-mode/ + config.disable_monkey_patching! + + # Many RSpec users commonly either run the entire suite or an individual + # file, and it's useful to allow more verbose output when running an + # individual spec file. + if config.files_to_run.one? + # Use the documentation formatter for detailed output, + # unless a formatter has already been configured + # (e.g. via a command-line flag). + config.default_formatter = "doc" + end + + # Print the 10 slowest examples and example groups at the + # end of the spec run, to help surface which specs are running + # particularly slow. + config.profile_examples = 10 + + # Run specs in random order to surface order dependencies. If you find an + # order dependency and want to debug it, you can fix the order by providing + # the seed, which is printed after each run. + # --seed 1234 + config.order = :random + + # Seed global randomization in this process using the `--seed` CLI option. + # Setting this allows you to use `--seed` to deterministically reproduce + # test failures related to randomization by passing the same `--seed` value + # as the one that triggered the failure. + Kernel.srand config.seed +=end +end